Repository: imagegridworth/IG-VLM Branch: main Commit: 00d11ab4f835 Files: 43 Total size: 12.0 MB Directory structure: gitextract_pka9nsld/ ├── .gitignore ├── LICENSE ├── README.md ├── data/ │ ├── multiple_choice_qa/ │ │ ├── EgoSchema.csv │ │ ├── IntentQA.csv │ │ ├── NExT_QA.csv │ │ ├── STAR.csv │ │ └── TVQA.csv │ ├── open_ended_qa/ │ │ ├── ActivityNet_QA.csv │ │ ├── MSRVTT_QA.csv │ │ ├── MSVD_QA.csv │ │ └── TGIF_FrameQA.csv │ └── text_generation_benchmark/ │ ├── Consistency_QA1.csv │ ├── Consistency_QA2.csv │ ├── Generic_QA.csv │ └── Temporal_QA.csv ├── eval_gpt4v_multiplechoice.py ├── eval_gpt4v_openended.py ├── eval_gpt4v_textgeneration_openended.py ├── eval_llava_multiplechoice.py ├── eval_llava_openended.py ├── eval_llava_textgeneration_openended.py ├── evaluation/ │ ├── __init__.py │ ├── direct_answer_eval.py │ ├── gpt3_consistency_utils.py │ └── gpt3_evaluation_utils.py ├── model_processor/ │ ├── __init__.py │ ├── base_model_inference.py │ ├── gpt4_model_processor.py │ └── llava2_model_processor.py ├── pipeline_processor/ │ ├── __init__.py │ ├── gpt4_pipeline.py │ ├── llava_pipeline.py │ └── record.py ├── requirements.txt └── vision_processor/ ├── __init__.py ├── base_frame_extractor.py ├── base_post_processor.py ├── decorator_processor.py ├── fps_extractor.py ├── fps_gridview_processor.py ├── gridview_generator.py └── video_validation.py ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ pipeline_processor/.DS_Store .DS_Store ================================================ FILE: LICENSE ================================================ Copyright <2024> Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ================================================ FILE: README.md ================================================

IG-VLM: An Image Grid Can Be Worth a Video: Zero-shot Video Question Answering Using a VLM

[Paper URL]
Stimulated by the sophisticated reasoning capabilities of recent Large Language Models(LLMs), a variety of strategies for bridging video modality have been devised. A prominent strategy involves Video Language Models(VideoLMs), which train a learnable interface with video data to connect advanced vision encoders with LLMs. Recently, an alternative strategy has surfaced, employing readily available foundation models, such as VideoLMs and LLMs, across multiple stages for modality bridging. In this study, we introduce a simple yet novel strategy where only a single Vision Language Model (VLM) is utilized. Our starting point is the plain insight that a video comprises a series of images, or frames, interwoven with temporal information. The essence of video comprehension lies in adeptly managing the temporal aspects along with the spatial details of each frame. Initially, we transform a video into a single composite image by arranging multiple frames in a grid layout. The resulting single image is termed as an image grid. This format, while maintaining the appearance of a solitary image, effectively retains temporal information within the grid structure. Therefore, the image grid approach enables direct application of a single high-performance VLM without necessitating any video-data training. Our extensive experimental analysis across ten zero-shot video question answering benchmarks, including five open-ended and five multiple-choice benchmarks, reveals that the proposed Image Grid Vision Language Model (IG-VLM) surpasses the existing methods in nine out of ten benchmarks. ## Requirements and Installation * Pytorch * transformers * Install required packages : pip install -r requirements.txt ## Inference and Evaluation We provide code that enables the reproduction of our experiments with LLaVA v1.6 7b/13b/34b and GPT-4V using the IG-VLM approach. For each VLM, we offer files that facilitate experimentation across various benchmarks:Open-ended Video Question Answering (VQA) with datasets such as MSVD-QA, MSRVTT-QA, ActivityNet-QA, and TGIF-QA, Text Generation Performance VQA for CI, DO, CU, TU, and CO, Multiple-choice VQA including NExT-QA, STAR, TVQA, IntentQA, and EgoSchema. * To conduct these benchmark experiments, please prepare data download and a QA pair sheet. * The QA pair sheet should follow the format outlined below and must be converted into a CSV file for use. ```bash # for open-ended QA sheet, it should include video_name, question, answer, question_id and question_type(optional) # for multiple-choice QA sheet, it should include video_name, question, options(a0, a1, a2, .. ), answer, question_id and question_type(optional). # question_id should be unique. # example of multeple-choice QA | video_name | question_id | question | a0 | a1 | a2 | a3 | a4 | answer | question_type(optional) | |------------|-------------|-------------------------------------------------------|---------------|-------------|----------|----------------|-----------------|------------|-------------------------| | 5333075105 | unique1234 | what did the man do after he reached the cameraman? | play with toy |inspect wings| stop |move to the side|pick up something| stop | TN | ... ``` * For experimenting with LLaVA v1.6 combined with IG-VLM, the following command can be used. Please install the LLaVA code to the execution path. Please make sure to reinstall it every time for reproductions. The llm_size parameter allows the selection among the 7b, 13b, and 34b model configurations: ```bash # Open-ended video question answering python eval_llava_openended.py --path_qa_pair_csv ./data/open_ended_qa/ActivityNet_QA.csv --path_video /data/activitynet/videos/%s.mp4 --path_result ./result_activitynet/ --api_key {api_key} --llm_size 7b ``` ```bash # Text generation performance python eval_llava_textgeneration_openended.py --path_qa_pair_csv ./data/text_generation_benchmark/Generic_QA.csv --path_video /data/activitynet/videos/%s.mp4 --path_result ./result_textgeneration/ --api_key {api_key} --llm_size 13b ``` ```bash # Multiple-choice VQA python eval_llava_multiplechoice.py --path_qa_pair_csv ./data/multiple_choice_qa/TVQA.csv --path_video /data/TVQA/videos/%s.mp4 --path_result ./result_tvqa/ --llm_size 34b ``` * When conducting experiments with GPT-4V combined with IG-VLM, the process can be initiated using the following command. Please be aware that utilizing the GPT-4 vision API may incur significant costs. ```bash # Open-ended video question answering python eval_gpt4v_openended.py --path_qa_pair_csv ./data/open_ended_qa/MSVD_QA.csv --path_video /data/msvd/videos/%s.avi --path_result ./result_activitynet_gpt4/ --api_key {api_key} ``` ```bash # Text generation performance python eval_gpt4v_textgeneration_openended.py --path_qa_pair_csv ./data/text_generation_benchmark/Generic_QA.csv --path_video /data/activitynet/videos/%s.mp4 --path_result ./result_textgeneration_gpt4/ --api_key {api_key} ``` ```bash # Multiple-choice VQA python eval_gpt4v_multiplechoice.py --path_qa_pair_csv ./data/multiple_choice_qa/EgoSchema.csv --path_video /data/EgoSchema/videos/%s.mp4 --path_result ./result_egoschema_gpt4/ --api_key {api_key} ``` ================================================ FILE: data/multiple_choice_qa/EgoSchema.csv ================================================ ,video_name,question_id,question,answer,a0,a1,a2,a3,a4 1,0074f737-11cb-497d-8d07-77c3a8127391,1ZdZ8aUcBNzndj135bqFrxb9L816EMGp1,"Taking into account all the actions performed by c, what can you deduce about the primary objective and focus within the video content?",C is cleaning dishes.,C is cooking.,C is doing laundry.,C is cleaning the kitchen.,C is cleaning dishes.,C is cleaning the bathroom. 2,00b9a0de-c59e-49cb-a127-6081e2fb8c8e,1bVNvPX6BNPIqcqMk-ZJr6WLsXNQybg64,"What was the primary purpose of the cup of water in this video, and how did it contribute to the overall painting process?",To clean the paintbrush.,To provide a source of water for the paintbrush.,To provide a place to store the paintbrush.,To provide a place to dispose of the paintbrush.,To provide a place to rest the paintbrush.,To clean the paintbrush. 3,00f93e1e-cf4e-4835-88b4-4ad68216e86f,1X6J8bS-ntnAqB7zmXpxi4X4esnbe2U5g,"What is the overarching theme of the video, considering the activities performed by both characters?","The overarching theme of the video is that people can be both engaged in challenging activities and enjoying leisurely activities at the same time. the video shows that it is possible to be both productive and relaxed, and that it is important to find a balance between the two.","The overarching central theme presented in the video is that individuals can be both sociable and independent simultaneously. the visual content demonstrates that it is entirely possible to be both connected to others meaningfully and to savor solitary moments, emphasizing that it is crucial to find a harmonious balance between these two aspects.","The overarching theme of the video is that people can be both engaged in challenging activities and enjoying leisurely activities at the same time. the video shows that it is possible to be both productive and relaxed, and that it is important to find a balance between the two.","The primary, overarching theme presented in the video emphasizes that individuals can truly be both creative and practical simultaneously. the enlightening video demonstrates the realistic possibility of being both highly imaginative and remarkably efficient, while stressing the significance of discovering an equilibrium between these two essential aspects.","The overarching theme of the video is that people can be both ambitious and humble. the video shows that it is possible to be both driven and modest, and that it is important to find a balance between the two.","The primary overarching theme presented in the video is that individuals can simultaneously possess and exhibit both intelligence and emotional aspects. effectively, the video demonstrates that the coexistence of rational and intuitive qualities is feasible, emphasizing the significance of establishing equilibrium between these two crucial elements." 4,00faf954-74f7-4aa3-8b29-4a5dff4f9518,17vdvmp5BUcxwdUl_Rhq4WYpa_AVeA_IN,"What is the primary sequence of actions performed by c throughout the video, and how do these actions relate to the overall task being performed?","C scoops clay into the brick mold, removes clay from the brick mold, scoops mortar from a pile of mortar on the floor, slams mortar into the brick mold, scoops excess mortar from the brick mold, throws excess mortar on the pile of mortar in his front, adds clay from the floor on the brick mold, and drops brick from brick mold beside already made bricks on the floor.",C cleans brick mold with his hand.,"C scoops clay into the brick mold, removes clay from the brick mold, scoops mortar from a pile of mortar on the floor, slams mortar into the brick mold, scoops excess mortar from the brick mold, throws excess mortar on the pile of mortar in his front, adds clay from the floor on the brick mold, and drops brick from brick mold beside already made bricks on the floor. then, c cleans brick mold with his hand.","C scoops clay into the brick mold, removes clay from the brick mold, scoops mortar from a pile of mortar on the floor, slams mortar into the brick mold, scoops excess mortar from the brick mold, throws excess mortar on the pile of mortar in his front, adds clay from the floor on the brick mold, drops brick from brick mold beside already made bricks on the floor. then, c takes a break.","C scoops clay into the brick mold, removes clay from the brick mold, scoops mortar from a pile of mortar on the floor, slams mortar into the brick mold, scoops excess mortar from the brick mold, throws excess mortar on the pile of mortar in his front, adds clay from the floor on the brick mold, drops brick from brick mold beside already made bricks on the floor. then, c goes to sleep.","C scoops clay into the brick mold, removes clay from the brick mold, scoops mortar from a pile of mortar on the floor, slams mortar into the brick mold, scoops excess mortar from the brick mold, throws excess mortar on the pile of mortar in his front, adds clay from the floor on the brick mold, and drops brick from brick mold beside already made bricks on the floor." 5,011b8b73-0ce4-4843-95ef-33b79610d212,1KBR1maSs1bDk8t2NoDYy4a7ohamJh_3W,What can be deduced about c's level of expertise in the task by observing the kind of adjustments made throughout the video?,C is an experienced woodworker. he was able to cut the wood to size and install it on the wall with few adjustments.,C is a novice woodworker. he was not able to cut the wood to size and install it on the wall without making several adjustments.,C is an expert woodworker. he was able to cut the wood to size and install it on the wall without making any adjustments.,C is a professional woodworker. he was able to cut the wood to size and install it on the wall in a timely and efficient manner.,C is an experienced woodworker. he was able to cut the wood to size and install it on the wall with few adjustments.,"C is an amateur woodworker. he was able to cut the wood to size and install it on the wall, but he took a long time to do so." 6,01a144a5-24d2-4a5a-af01-1f318d674bed,1anVTpq9jkxU4YZn4myvTQbApwJKpXRZE,What is the overall purpose of c's actions in this video? how do the actions of the man contribute to this purpose?,C is playing a game of dominoes with a man. the man's actions contribute to the purpose of the video by providing c with an opponent to play against.,C is trying to build a tower out of tiles. the man's actions contribute to the purpose of the video by providing c with a steady surface to build on.,C is trying to solve a puzzle. the man's actions contribute to the purpose of the video by providing c with clues to help solve the puzzle.,C is trying to create a work of art. the man's actions contribute to the purpose of the video by providing c with inspiration and feedback.,C is trying to teach the man how to play dominoes. the man's actions contribute to the purpose of the video by providing c with a willing student.,C is playing a game of dominoes with a man. the man's actions contribute to the purpose of the video by providing c with an opponent to play against. 7,026a2f15-c454-4c28-80e0-24c85d7f4ecf,11rO7KATZd93vslfUasfXG5hxg2KpYAYu,"Considering the sequence of events, what can be inferred about the importance of precision and accuracy in the character's actions, and how is this demonstrated within the video?",Precision and accuracy are important in the character's actions because they ensure that the wood is cut to the correct size.,Precision and accuracy are important in the character's actions because they ensure that the wood is cut in a straight line.,"Precision and accuracy are incredibly important in the character's actions, as they ensure that the wood is cut evenly and consistently.","In the character's actions, precision and accuracy are extremely important since they guarantee that the wood is cut safely and efficiently.",Precision and accuracy are important in the character's actions because they ensure that the wood is cut to the correct size.,Precision and accuracy are crucial in the character's actions since they ensure that the wood is cut efficiently and quickly. 8,02925d7a-a5db-4127-8c31-b232e78b684d,1usf3-VVMamu8wKEbEef0kAamdUYA96Tv,Summarize the most important aspects of c's actions in the video and explain how these key elements contribute to the overall purpose of the activities depicted.,The most important aspects of c's actions in the video are that he is breaking concrete and cleaning the wooden bench. these actions are important because they are necessary to complete the task of repairing the wooden bench.,The most important aspects of c's actions in the video are that he is wiping his face. this action is important because it is necessary to keep c's face clean.,The most important aspects of c's actions in the video are that he is breaking concrete and cleaning the wooden bench. these actions are important because they are necessary to complete the task of repairing the wooden bench.,The most important aspects of c's actions in the video are that he is holding his shirt. this action is important because it is necessary to keep c's shirt from getting dirty.,The most important aspects of c's actions in the video are that he is walking towards the wooden bench. this action is important because it is necessary to get to the wooden bench so that c can start cleaning it.,The most important aspects of c's actions in the video are that he is picking up the plastic bowl plate and the brush. these actions are important because they are necessary to get the tools that c needs to clean the wooden bench. 9,03657401-d4a4-40d0-9b03-d7e093ef93d1,1mf6ayT_bXvYEKPEs6ABSJkfNbOh9xeYt,"Based on the video, what crucial points indicate a change in c's approach to knife sharpening and handling? explain their significance in relation to the video's overall goal.","The crucial points that indicate a change in c's approach to knife sharpening and handling are when they first check the knife, when they adjust the electric knife sharpener, and when they wrap the towel around the knife. these points show that c is becoming more careful and precise in their knife sharpening process.","The crucial points that indicate a change in c's approach to knife sharpening and handling are when they first check the knife, when they adjust the electric knife sharpener, and when they wrap the towel around the knife. these points show that c is becoming more careful and precise in their knife sharpening process.","The crucial points that indicate a change in c's approach to knife sharpening and handling are when they first check the knife, when they sharpen the knife on a whetstone, and when they check the knife again. these points show that c is becoming more experienced in their knife sharpening process.","The crucial points that indicate a significant change in c's approach to knife sharpening and handling arise when they initially examine the knife, when they expertly sharpen the knife on a honing steel, and when they carefully check the knife again for sharpness. these particular points demonstrate that c is gradually becoming more confident in mastering their knife sharpening process.","The crucial points that indicate a significant change in c's approach to knife sharpening and handling techniques are when they first carefully check the knife, thoroughly sharpen it using a ceramic knife sharpener, and attentively examine the knife again afterward. these particular points demonstrate that c is gradually becoming more knowledgeable and skilled about knife sharpening methods.","The crucial points that illustrate a significant change in c's approach to knife sharpening and handling include when they initially inspect the knife, when they sharpen the knife using a manual knife sharpener, and when they thoroughly check the knife again. these essential points clearly demonstrate that c is progressively becoming more skilled in the art of knife sharpening." 10,0437cf5f-5014-47d6-b4b3-f299380aa688,1yMEnRX6yX9eDXCAq93yuRphAkTqjwQXj,"While performing repetitive actions, were there any key deviations that had significant impact on the overall process? explain what was different about them and why they were important in the context of the video.","While performing repetitive actions, there were no key deviations that had significant impact on the overall process.","While performing repetitive actions, there were no key deviations that had significant impact on the overall process.","While performing repetitive actions, there was a key deviation that had a significant impact on the overall process. the character accidentally dropped one of the books.","While performing repetitive actions, there was a key deviation that had a significant impact on the overall process. the character ran out of cleaning supplies.","While performing repetitive actions, there was a key deviation that had a significant impact on the overall process. the character got tired and had to take a break.","While performing repetitive actions, there was a key deviation that had a significant impact on the overall process. the character found a book that they were interested in and started reading it." 11,049249dc-bdad-48c4-bdc0-511814c5781c,17UkGdV1XNQsKd8cNyq_tYcXDsClNUW6N,"What were the key steps c took in cleaning the dog mat from start to finish, and what tools were used in the process?","C picks up a dog mat, puts it in the sink, washes it with soap and water, and then rinses it off.","C picks up a dog mat, puts it in the sink, washes it with soap and water, and then dries it off.","C picks up a dog mat, puts it in the sink, washes it with soap and water, and then puts it in the dryer.","C picks up a dog mat, puts it in the sink, washes it with soap and water, and then puts it in the washing machine.","C picks up a dog mat, puts it in the sink, washes it with soap and water, and then puts it in the dishwasher.","C picks up a dog mat, puts it in the sink, washes it with soap and water, and then rinses it off." 12,04c51dba-1dcb-4b8f-a62c-efc363561d7b,1YVII_jAe9p49iBHDL8gfI53CmKI9RckX,"Out of all the actions that took place, identify the most significant one related to food preparation and explain its importance in the context of the video.",C stirring the food in the pot.,C picking up the spoon from the pot lid.,C scraping food off the lid.,C placing the spoon on the white chopping board.,C eating remnants of food from the pot lid.,C stirring the food in the pot. 13,057f8774-15c2-4e2e-b9fd-75f26d4b3b83,1YtO86-D91P5KHmfOG8GeP4M9Lvg-gQ1C,What is the overall objective of the woman's actions throughout the video and how do her actions contribute to that objective?,The woman is making dough.,The woman is making a fire.,The woman is cleaning her house.,The woman is cooking food.,The woman is making dough.,The woman is taking a break. 14,05ad5736-88f5-42bb-ac9f-689e199c50de,12QMqiMJN1Fta2LR9LuROZUEGs7R2HSAx,Summarize the process c uses to prepare her brush for painting and how it contributes to the artwork's quality.,"C loosens the color intensity on the paint brush in her right hand in the small cup on the floor, which allows her to create a more subtle and nuanced effect.","C cleans the paint brush in her right hand in the small cup on the floor, which helps to keep the brush clean and free of debris.","Skillfully, c mixes paint on the paint board using the brush in her right hand, which enables her to effortlessly create a wide variety of different colors and shades for her artwork.","Skillfully, c picks paint from the paint board using the brush in her right hand, which conveniently allows her to apply paint gracefully onto the canvas.","C loosens the color intensity on the paint brush in her right hand in the small cup on the floor, which allows her to create a more subtle and nuanced effect.","Carefully, c paints with the paint brush skillfully on the art work displayed on the canvas, which is the ultimate, final step in the entire painting process." 15,05defeef-40bd-4b08-b341-72879a6cf63e,1JujdbF_EtCJvX95brKxLBYLPIw70h_nO,What is the overall process and purpose of the actions performed by c in the video?,C is molding bricks with mortar and wet clay.,C is molding bricks with mortar and wet clay.,"Currently, c is diligently working on constructing a wall.","Currently, artist c is diligently working on creating a unique sculpture.","Currently, young c is actively playing and having fun with mud.",C is doing a science experiment. 16,05f1fc03-0c9e-4fd4-9d85-bb7be4e69234,1DwMMX0x80_sus_RGLUZael6gAFsHw_Km,Describe the overall goal achieved by c throughout the video and explain how the various trowels were used in working with the cement cast.,C is smoothing the cement cast with a flooring trowel and a bucket trowel.,C is attempting diligently to break the solid cement cast surrounding it.,C is attempting to carefully remove the solid cement cast from their body.,C is trying to repair the cement cast.,C is smoothing the cement cast with a flooring trowel and a bucket trowel.,C is attempting to creatively embellish the sturdy cement cast for aesthetics. 17,0688f66e-f115-49c6-85ff-712bf4f4a758,1-DMMIbchyLpwR9W_Cm4vTWh05nsNhwUr,Explain the significance of the peeler and the knife in the video and their respective roles in the preparation process.,"The peeler is used to remove the skin of the carrots, while the knife is used to cut the stem and taproot, and to cut the carrots into smaller pieces.","The peeler is used to cut the stem and taproot of the carrots, while the knife is used to peel them.","The peeler is commonly utilized to expertly cut the carrots into significantly smaller pieces, while the knife is employed to carefully peel them and competently cut the stem and taproot.","The knife is conveniently used to remove the delicate skin of the carrots, while the peeler efficiently is used to cut the stem and taproot precisely, and to cut the carrots into consistently smaller pieces.","The knife is employed to precisely slice the stem and taproot of the carrots, whereas the peeler is effectively utilized to cut them into smaller, manageable pieces.","The peeler is used to remove the skin of the carrots, while the knife is used to cut the stem and taproot, and to cut the carrots into smaller pieces." 18,06899b20-702f-450f-8422-2ae6dc9a6da8,1I8Htr32_z9qpdEyGPITR0K49OkLYBID3,"In the process of creating the final dough piece, can you identify three main stages that c goes through, and explain how her methods and techniques change during each stage?","C goes through three main stages in creating the final dough piece: combining the ingredients, kneading the dough, and shaping the dough.","C goes through three main stages in creating the final dough piece: combining the ingredients, kneading the dough, and baking the dough.","C goes through three main stages in creating the final dough piece: combining the ingredients, kneading the dough, and letting the dough rise.","C goes through three main stages in creating the final dough piece: combining the ingredients, kneading the dough, and adding the toppings.","C goes through three main stages in creating the final dough piece: combining the ingredients, kneading the dough, and shaping the dough.","C goes through three main stages in creating the final dough piece: combining the ingredients, kneading the dough, and freezing the dough." 19,0725f410-3cf9-4f24-98ac-6610d1038ab1,1SSGMhzog1rt-jooBn5dQX_85zYqU12r0,"Identify the critical steps taken by c to organize and prepare the engine oil for use on the lawn mower, and highlight the importance of these actions in the overall video narrative.",The critical steps taken by c to organize and prepare the engine oil for use on the lawn mower were opening the carton of engine oil and picking containers of engine oil from the carton.,The critical steps taken by c to organize and prepare the engine oil for use on the lawn mower were adjusting the torch light and hanging it on the rail.,The critical steps taken by c to organize and prepare the engine oil for use on the lawn mower were opening the carton of engine oil and picking containers of engine oil from the carton.,The critical steps diligently taken by c to efficiently organize and prepare the engine oil for optimal use on the lawn mower involved skillfully using the wrench on the lawn mower and subsequently removing the wrench from the lawn mower.,The crucial steps executed by c to systematically organize and prepare the engine oil specifically for use on the lawn mower included walking into a designated store room and effortlessly carrying a carton of the essential engine oil.,The vital critical steps carefully taken by c to effectively organize and efficiently prepare the engine oil for optimal use on the lawn mower included diligently dropping the carton of engine oil on the lawn mower and thoroughly cleaning the floor. 20,0750fa27-b049-4ded-9dd1-d495ffe23e75,1mACMcXDB31_Z_BNx3hTEbGbIhBg4UaPB,Identify the three key phases of c's actions in the video and explain the significance of each phase.,"The three key phases of c's actions in the video are preparation, assembly, and cleaning.","The three key phases of c's actions in the video are preparation, assembly, and cleaning.","In the video, the three crucial key phases of c's actions consist of thorough preparation, careful disassembly, and meticulous cleaning.","In the video, the three key crucial phases of c's actions notably include assembly, disassembly, and thorough cleaning.","The three key phases of c's actions in the video are preparation, testing, and cleaning.","In the video, the three crucial key phases of c's actions consist of assembly, meticulous testing, and thorough cleaning." 21,07a9d3ee-6d81-4bb4-ba24-f8555f8b1929,1nIZBaNrGtBuz0ntLah_BGYQtKhYapOme,"What was the primary tool used by c in the video, and how did c utilize this tool in order to create a desired outcome?",The primary tool used by c in the video is a rake.,The primary tool used by c in the video is a rake.,The primary tool used by c in the video is a shovel.,"In the video, the primary tool prominently utilized by character c is a gardening instrument known as a hoe.","In the video, the primary tool predominantly utilized by c is, interestingly, a pickaxe.","In the video, the primary tool utilized by individual c is indeed a wheelbarrow for transporting materials." 22,07d7128e-0684-4c6b-81cb-3ecb76c2e6ec,1kZwWSdOX-_E6KxPLXPFiFTnBCHrnUhaD,"Summarize the overarching process demonstrated in this video, and compare the key similarities and differences between the various stages of the process.",The video shows a person painting a picture. the person starts by putting down their phone and rolling up their sleeves. they then dip their brush in water and apply paint to the paper. they continue to apply paint until the picture is complete.,The video shows a person painting a picture. the person starts by putting down their phone and rolling up their sleeves. they then dip their brush in water and apply paint to the paper. they continue to apply paint until the picture is complete.,"The video footage displays a person skillfully making a sandwich. initially, the individual starts by placing down their phone, proceeding to gather the necessary ingredients. following this, they meticulously assemble the sandwich before enjoying and consuming it.","The video depicts a person engaged in doing their laundry. initially, the person starts by putting down their phone, and taking out the laundry. subsequently, they wash, dry, and neatly fold the laundry.","The short video displays a person diligently cooking dinner. initially, the individual sets aside their phone, assembles all the necessary ingredients, proceeds to cook the meal skillfully, and finally enjoys eating it.",The video shows a person cleaning their house. the person starts by putting down their phone and gathering the cleaning supplies. they then clean the house and put away the cleaning supplies. 23,07fefc78-cfd2-4e04-8489-8ce4287158dd,1yHM1pStcw3gqWWPPcPypzFwrlP_e7oIe,"Summarize the primary elements involved in the process depicted in the video, focusing on the essential components.","The primary elements involved in the process depicted in the video are clay, soil, and a box. the clay is used to create the desired shape, the soil is used to keep the clay moist and prevent it from cracking, and the box is used to hold the clay and soil in place.","In the process portrayed in the video, the primary elements involved are clay, water, and a mold. the clay is utilized to create the desired shape, while the water keeps the clay moist, preventing cracks, and the mold securely holds the clay in its place.","The primary elements involved in the process depicted in the video are clay, sand, and a stick. the clay is used to create the desired shape, the sand is used to keep the clay moist and prevent it from cracking, and the stick is used to mold the clay into the desired shape.","The primary elements involved in the process depicted in the video are clay, paint, and a brush. the clay is utilized to create the desired shape or form, while the paint serves to artistically decorate the clay surface, and the brush is skillfully used for applying the paint.","The primary elements involved in the process shown in the video are clay, fire, and a kiln. the clay is skillfully used to create the desired shape, the fire effectively hardens the clay, and the kiln is crucially employed to control the temperature of the fire.","The primary elements involved in the process depicted in the video are clay, soil, and a box. the clay is used to create the desired shape, the soil is used to keep the clay moist and prevent it from cracking, and the box is used to hold the clay and soil in place." 24,080eb552-9103-4f3e-a7e9-3417c1c0bcec,12KQLxpobjnbMKlZG7uJRXvKC7SZE06m-,What is the primary focus of activity in the video and how does interaction between c and the child contribute to this?,C is knitting a scarf. the child interacts with c by talking to her and occasionally touching the scarf.,C is making a hat. the child interacts with c by talking to her and occasionally touching the hat.,C is making a sweater. the child interacts with c by talking to her and occasionally touching the sweater.,C is making a pair of gloves. the child interacts with c by talking to her and occasionally touching the gloves.,C is making a blanket. the child interacts with c by talking to her and occasionally touching the blanket.,C is knitting a scarf. the child interacts with c by talking to her and occasionally touching the scarf. 25,083c5e8e-4546-40e9-857e-b9b967e5007a,1Cth7b4wIXCYAYCEraJ_h_kK2aTob0YtU,What are the primary components that c interacted with while working on the laptop and what was the overarching goal of this sequence?,"C interacted with the laptop's motherboard, chips, and wires. the overarching goal of this sequence was to remove the motherboard from the laptop.","C interacted with the laptop's screen, keyboard, and mouse. the overarching goal of this sequence was to clean the laptop.","C interacted with the laptop's battery, hard drive, and optical drive. the overarching goal of this sequence was to upgrade the laptop's components.","C interacted with the laptop's case, bezel, and keyboard deck. the overarching goal of this sequence was to repair the laptop.","C interacted with the laptop's motherboard, chips, and wires. the overarching goal of this sequence was to remove the motherboard from the laptop.","C interacted with the laptop's power button, volume buttons, and sleep button. the overarching goal of this sequence was to configure the laptop's settings." 26,08c5a715-ee90-4bba-8b8b-5f0834620f78,1In9bwXNgVEvBW1v-1bGuvdEvbeDpO6x4,How does c interact with the camera during the video and what might be the reason behind these adjustments?,C adjusts the camera to get a better view of the bed and the cloths.,"Casually, c adjusts the camera angle skillfully to achieve a more visually appealing view of herself.","C skillfully adjusts the camera angle to achieve a better, enhanced view of the entire room.","Casually, c adjusts the camera angle to get a more improved, better view of the entrance door.",C adjusts the camera to get a better view of the window.,C adjusts the camera to get a better view of the bed and the cloths. 27,096734f9-4368-4470-8a7e-3b166b5ac753,1S9R6xUb3xArHVwb0iBlMUj4W0fI6g0x7,"What activities contribute to c's main goal in the video, and how do they relate to each other?",C is studying for a test.,C is studying for a test.,"Currently, c is in the process of writing a book diligently.","Currently, the student c is diligently taking notes in class.","Currently, c is diligently preparing an engaging presentation for the audience.",C is doing homework. 28,0a8109fe-15b9-4f5c-b5f2-993013cb216b,1QRVMu2_YcwZJh6GPZ_-wf2zM21j9zOuD,"In your own words, what was the primary function of the scrapper throughout the video? discuss how it contributed to the overall process without mentioning specific actions.",The correct answer to question 2 is: the primary function of the scrapper throughout the video is to cut the dough into small pieces.,"Inaccurately, the wrong response to question 2 states: the primary purpose of the scrapper throughout the entire video is to effectively remove excess dough from the wooden plank.","Inaccurately, question 2's incorrect response states: the primary purpose of the scrapper present in the video is to shape and form the dumplings.","Inaccurately, the wrong answer to question 2 states: the primary function of the scrapper, as shown in the video, is essentially to knead the dough.",The wrong answer to question 2 is: the primary function of the scrapper throughout the video is to roll out the dough.,The correct answer to question 2 is: the primary function of the scrapper throughout the video is to cut the dough into small pieces. 29,0a8b2c9d-b54c-4811-acf3-5977895d2445,1JJVdVovLEstuz2Dx9BZMKpQUu1VJYFlB,"Describe the overall process that c is engaged in throughout the video, and how his actions contribute to accomplishing this activity.",C is cooking a meal.,C is cleaning the kitchen.,C is preparing a snack.,C is making a cheese sauce.,C is making a cheese fondue.,C is cooking a meal. 30,0aadf5ce-07eb-4934-9e07-317a46bc0b21,1cDO2Faklhsk3EYl9pTU0iDxG4cRMeHN3,"Based on the actions described in the video, what can be inferred as the primary goal or task being performed by the character c?",C is building a shelf.,C is building a shelf.,C is repairing a shelf.,C is taking apart a shelf.,C is cleaning a shelf.,C is painting a shelf. 31,0b4529ac-5a4e-4d30-b6b6-c6504c509c0c,1OnyebpJ1pZfj5nvXDS9JzbDttQjy0pxN,"How did c's behavior evolve throughout the video, and what stages of engagement with the tasks can you identify?","C's behavior evolved throughout the video as he became more and more engaged with his work. he started out by looking at the laptop and typing on it, but then he started to take notes and draw on the ipad. he also took a break to drink some coffee and adjust the camera.","During the video, c's behavior gradually evolved as he became increasingly bored. initially, he began by looking at the laptop and typing on it; however, he soon started to fidget and look around the office space. additionally, he took a short break to drink some coffee and adjust the camera's position.","C's behavior evolved throughout the video as he became more and more frustrated. he started out by looking at the laptop and typing on it, but then he started to make mistakes and erase his work. he also took a break to drink some coffee and adjust the camera.","C's behavior evolved throughout the video as he became more and more engaged with his work. he started out by looking at the laptop and typing on it, but then he started to take notes and draw on the ipad. he also took a break to drink some coffee and adjust the camera.","C's behavior evolved throughout the video as he became more and more excited. he started out by looking at the laptop and typing on it, but then he started to smile and laugh. he also took a break to drink some coffee and adjust the camera.","Gradually, c's behavior evolved throughout the video as he became increasingly exhausted. initially, he started out by attentively looking at the laptop and typing on it, but eventually he began to yawn and stretch. he also took a brief break to drink some coffee and adjust the camera's position." 32,0c17076e-7677-4ecf-b56b-53fa147ac81c,1UEVadK58lAPn7M2NOAgj_tg4rkT44Ulx,"How would you briefly describe the sequential order of the process that c performed on the dough, from initial handling to final placement on the tray?","C first rolled the dough on the table, then rolled it on the flour, and finally placed it in the tray.","Initially, c first carefully rolled the dough on the flour, then smoothly rolled it on the table, and finally, gently placed it in the awaiting tray.","C first placed the dough in the tray, then rolled it on the table, and finally rolled it on the flour.","Initially, c carefully rolled the dough on the table, then skillfully placed it in the tray, and ultimately, gently rolled it on the flour.","Initially, c first carefully placed the dough in the tray, then gently rolled it on the flour, and ultimately smoothly rolled it on the table.","C first rolled the dough on the table, then rolled it on the flour, and finally placed it in the tray." 33,0c481667-9303-4f4a-b331-0b412aaafa2d,1A8ALlrzGSUNHyDzrJlB22c0ubCqWEfqs,"In the context of this video, what would you consider to be the critical moments or turning points that demonstrated the artist's proficiency and thought process? explain your reasoning.",The critical moments or turning points in the video were when the artist switched from using a paintbrush to using a color pen. this change in tools allowed the artist to add more detail and color to the painting.,The critical moments or turning points in the video were when the artist started painting and when the artist finished painting. these moments were important because they marked the beginning and end of the creative process.,The critical moments or turning points in the video were when the artist switched from using a paintbrush to using a color pen. this change in tools allowed the artist to add more detail and color to the painting.,The critical moments or turning points in the video were when the artist added details to the painting and when the artist removed details from the painting. these moments were important because they showed how the artist's vision for the painting evolved over time.,The critical moments or turning points in the video were when the artist used a light touch and when the artist used a heavy touch. these moments were important because they showed how the artist controlled the flow of paint and ink.,The critical moments or turning points in the video were when the artist used a warm color palette and when the artist used a cool color palette. these moments were important because they showed how the artist used color to create a mood or atmosphere. 34,0c51c89d-d86b-45de-a1cf-c65153a7fbc1,1SwgjqkFnci6UaYdqwBo1b8yhmxMndEz9,"What is the overall task being accomplished in the video, and what key repetitive actions did c perform to achieve this goal?",C is grating ginger.,C is grating ginger.,C is peeling ginger.,"Currently, c is actively engaged in chopping ginger meticulously.","Currently, c is carefully slicing ginger into thin pieces.","Currently, c is carefully dicing ginger into small pieces." 35,0d173aa3-9a94-4ba4-84bc-949d3254a63d,13NxY_u8_QZMqyukITqkUZtBs_ayh4ayD,Summarize the key differences between c's actions involving the first sack and his actions with the subsequent sacks.,"The key difference between c's actions involving the first sack and his actions with the subsequent sacks is that c does not open the first sack. instead, he simply pours its contents into the dough mixer. this suggests that c may have already opened the first sack before the video began.","The key difference between c's actions involving the first sack and his actions with the subsequent sacks is that c does not open the first sack. instead, he simply pours its contents into the dough mixer. this suggests that c may have already opened the first sack before the video began.","The key difference between c's actions involving the first sack and his actions with the subsequent sacks is that c does not fold the first sack. instead, he simply places it on the counter. this suggests that c may not have needed to fold the first sack because it was already empty.","The key difference between c's actions involving the first sack and his actions with the subsequent sacks is that c does not operate the dough mixer with the first sack. instead, he simply pours its contents into the dough mixer. this suggests that c may have already operated the dough mixer with the first sack before the video began.","The key difference between c's actions involving the first sack and his actions with the subsequent sacks is that c does not operate the scale with the first sack. instead, he simply pours its contents into the dough mixer. this suggests that c may have already operated the scale with the first sack before the video began.","The key difference between c's actions involving the first sack and his actions with the subsequent sacks is that c does not operate the dough mixer with the first sack. instead, he simply pours its contents into the dough mixer. this suggests that c may have already operated the dough mixer with the first sack before the video began." 36,0d977872-1093-4c7b-b372-f9734293ebe8,1MQPh6_uV0H_cstqR5ZzsQktdLcWWt-Am,"In your own words, explain the thought process and reasoning behind c's actions throughout the video, making sure to compress the information without just listing the actions that occurred.",C is a sculptor who is creating a plaster sculpture. c starts by cutting the plaster into small pieces. c then shapes the plaster pieces into a sculpture. c finally smooths the surface of the sculpture.,C is a sculptor who is creating a plaster sculpture. c starts by cutting the plaster into small pieces. c then shapes the plaster pieces into a sculpture. c finally smooths the surface of the sculpture.,C is a baker who is making a cake. c starts by mixing the ingredients. c then bakes the cake. c finally frosts the cake.,C is a skilled painter who is diligently painting a beautiful picture. c begins by carefully mixing the paints. c then artistically paints the captivating picture. c finally frames the completed picture perfectly.,"C is a talented musician who is skillfully playing a song. initially, c starts by carefully tuning the instrument. c then skillfully plays the entire song. finally, c passionately sings the beautiful song.",C is a talented writer who is diligently writing a book. c initially starts by brainstorming creative ideas. c then writes the engaging book. c ultimately and finally publishes the remarkable book. 37,0db8a74b-042d-401c-9f0f-ea404514c769,1WveMaYAoVErZh-X_DSU2CbMZZ3_wMn3q,"Describe the significance of the paint brush and oil in c's work on the art piece, and how c alternates between using them.","The paint brush is used to apply paint to the artwork, while the oil is used to thin the paint.","The paint brush is used to apply paint to the artwork, while the oil is used to thin the paint.","The paint brush, a vital tool, is skillfully utilized to apply oil gracefully onto the artwork, whereas the paint is importantly employed to effectively thin the oil.",The paint brush is used to apply both paint and oil to the artwork.,"The oil is typically used to apply paint effectively to the artwork, while the paint brush plays a crucial role in thinning the paint evenly.","The oil and paint brush, as artistic tools, are both utilized to effectively apply paint to enhance the artwork's appearance." 38,0e4804e0-85fa-48bc-ada3-a94167b06e53,1Rng4RornsBcycFRuxrczsP-AwRBodpdw,"Based on the actions in the video, what was the primary objective that c was trying to accomplish and what tool did he use repeatedly to check the accuracy of his work?",C was trying to attach a cable channel to the wall. he used a spirit level to check the accuracy of his work.,C was trying to install a new window. he used a spirit level to make sure the window was level.,C was attempting to fix a leak located in the wall. he utilized a spirit level tool to ensure the applied patch was perfectly level.,C was trying to attach a cable channel to the wall. he used a spirit level to check the accuracy of his work.,"C was attempting to hang a picture carefully. utilizing a spirit level, he ensured the picture was perfectly level and straight.","C was attempting to construct a shelf. diligently, he utilized a spirit level to ensure the shelf remained perfectly level and even." 39,0f181d98-5036-4990-b397-62e934e168ef,1FVxjlf-8CD4nz-gZpkIH8UaXidslJX9q,Can you summarize the primary objective and the steps c took throughout the video to achieve it? ensure your answer captures the essence of the video without listing all actions.,"C's primary objective was to disassemble the wooden bench. he did this by removing nails from the bench with a nail gun, adjusting nails with his hand, and detaching wooden parts from the bench.","The main aim of c's primary objective was to create and build a new, sturdy wooden bench.",The primary objective for c was to thoroughly repair and restore the wooden bench.,C's primary objective was to thoroughly clean and sanitize the wooden bench's surface.,"C's primary objective was to disassemble the wooden bench. he did this by removing nails from the bench with a nail gun, adjusting nails with his hand, and detaching wooden parts from the bench.",C's primary objective was to paint the wooden bench. 40,0f75f8eb-e104-4221-b4fc-8426367d2b63,1zkB4HISzEts0BM8LLoOV6IYvNNv_1Axu,"From the sequence of events, identify the most crucial moments in the video that indicate a shift in focus or a progression in the task being performed.","The most crucial moments in the video are when c collects potatoes from the bag, when the man washes the potatoes, and when c throws the potatoes into the sink.","The most crucial moments in the video are when c collects potatoes from the bag, when the man washes the potatoes, and when c throws the potatoes into the sink.",The most crucial moments in the video are when c and the man interact.,The most crucial moments depicted in the video involve when character c and the man diligently clean up after cooking the potatoes together.,"The highly significant, most crucial moments in the video occur when both person c and the man partake in devouring the potatoes.","In the video, the most crucial moments to observe are when both person c and the unidentified man carefully store the potatoes." 41,0f9d1d44-8a15-4135-a77e-d64064afc1e4,1K7q3pmLxEDiwvHdmk-X7KfJP6Q3R4qn9,"Identify the two most important moments in the video that are critical to achieving the key objective, and provide a brief rationale for why you chose them. remember to compress the information and avoid simply listing actions.",The two most important moments in the video are when c picks up the plant and when c puts the plant in the tin. these are the two actions that are directly related to watering the plant.,The two most important moments in the video are when c mixes soil in a basin and when c puts the plant in the basin. these are the two actions that are directly related to repotting the plant.,The two most important moments in the video are when c closes a window and when c opens a window. these are the two actions that are directly related to adjusting the temperature of the room.,The two most important moments in the video are when c puts on a sweater and when c closes a door. these are the two actions that are directly related to getting warm.,The two most important moments in the video are when c walks towards a laptop and when c opens a laptop. these are the two actions that are directly related to checking the weather forecast.,The two most important moments in the video are when c picks up the plant and when c puts the plant in the tin. these are the two actions that are directly related to watering the plant. 42,10054e44-9575-408c-941c-a3b96789dc96,1X9h-8m9MbYZu7BUC-h7Keab3s5KcFryj,"What is the primary goal of the actions performed by c and the man throughout the video, and how does it evolve over time?",The primary goal of the actions performed by c and the man throughout the video is to build a domino chain.,The primary goal of the actions performed by c and the man throughout the video is to play a game of chess.,The primary goal of the actions performed by c and the man throughout the video is to solve a puzzle.,The primary goal of the actions performed by c and the man throughout the video is to build a domino chain.,The primary goal of the actions performed by c and the man throughout the video is to create a work of art.,The primary goal of the actions performed by c and the man throughout the video is to have a conversation. 43,101628a9-37be-4555-99c0-589ced677ee6,1qOi2Q0qoueFYJFcFvTKnKV5j25qnOvo8,"In what sequence did the person interact with a variety of necessary tools and materials to complete the primary objective, and how were those steps related to one another?","The person in the video first used the glue machine to apply glue to the black paper. next, they used the needle and thread to stitch the black paper to the white paper. finally, they folded the paper and trimmed it to create a finished craft.","The person in the video first used the glue machine to apply glue to the black paper. next, they used the needle and thread to stitch the black paper to the white paper. finally, they folded the paper and trimmed it to create a finished craft.","In the video, the person initially utilized the needle and thread to precisely stitch the black paper to the white one. subsequently, they employed the glue machine for applying adhesive to the black paper surface. eventually, they skillfully folded the paper and neatly trimmed the edges, resulting in a completed craft.","In the video, the person initially used the scissors skillfully to cut the black paper. afterwards, they applied glue to the black paper using the glue machine. in the end, they carefully folded and trimmed the paper, resulting in a beautifully finished craft.","The person in the video first used the scissors to cut the white paper. next, they used the glue machine to apply glue to the white paper. finally, they folded the paper and trimmed it to create a finished craft.","In the video, the person initially used the scissors to accurately cut both the black paper and the white paper. subsequently, they skillfully used the glue machine to apply adhesive to the black paper. in the end, they neatly folded the paper and precisely trimmed it, resulting in a polished, finished craft." 44,111b7189-cc45-438c-8144-ded1eed0f6c2,1Jfc_cVRcetSwx3ReylA5cLaI3FaD5BHA,What are the key techniques and steps c utilized to work with the clay and clay mould throughout the video? please summarize them succinctly.,C uses a clay mould to shape the clay into bricks.,C uses a hoe to shape the clay into bricks.,C uses a clay mould to shape the clay into bricks.,"Carefully, c employs his skillful hands to progressively mold the clay into sturdy bricks.","Carefully, c employs a wheel for shaping the clay effectively into well-formed bricks.","C skillfully uses a high-temperature kiln to carefully shape the malleable clay into strong, durable bricks." 45,13b86f2e-c0a4-44f3-a871-2138576aa127,1I_Fo7VDPXBXAcosIlZy2iv8tNRCLRNRK,"Compare the significance of c rubbing her right hand together with her other actions in the video, and identify why she might have been doing this frequently.","C rubbed her right hand together when she was thinking, planning, or trying to solve a problem.",C rubbed her right hand together when she was nervous or anxious.,"Often, when feeling bored or restless, c unconsciously rubbed her right hand together gently.",C would often rub her right hand together gently whenever she felt particularly happy or quite excited.,"C rubbed her right hand together when she was thinking, planning, or trying to solve a problem.","Whenever she felt sad or frustrated, c instinctively rubbed her right hand together for comfort." 46,13da1294-2b42-4ef6-8dd6-ff651ef4571f,1TYHOXh7Gm8FrOxk_elJlWFBx1yOrvDzG,Summarize the core process and sequence of actions taken by c to paint the ceramic artwork.,"C picks up a ceramic art from the metal stool, rotates the table, looks at the ceramic art, dips the paint brush in the paint container, paints the ceramic art with a paint brush, rotates the ceramic art, dips the paint brush in the paint container, paints the ceramic art with a paint brush, and repeats these steps until the ceramic art is painted.","C picks up a ceramic art from the metal stool, rotates the table, looks at the ceramic art, dips the paint brush in the paint container, paints the ceramic art with a paint brush, rotates the ceramic art, dips the paint brush in the paint container, paints the ceramic art with a paint brush, and repeats these steps until the ceramic art is painted.","Carefully, c picks up a ceramic art piece from the metal stool, skillfully rotates the table, closely looks at the ceramic art, dips the paint brush in the paint container, meticulously paints the ceramic art with a paint brush, and then gently puts the ceramic art back on the metal stool.","C picks up a ceramic art from the metal stool, rotates the table, looks at the ceramic art, dips the paint brush in the paint container, paints the ceramic art with a paint brush, and then throws the ceramic art on the ground.","C carefully picks up a delicate ceramic art piece from the metal stool, smoothly rotates the table, closely examines the ceramic art, expertly dips the paint brush in the paint container, skillfully paints the ceramic art with a paint brush, and then humorously eats the ceramic art.","C carefully picks up a ceramic art piece from the metal stool, skillfully rotates the table, closely examines the ceramic art, dips the paint brush in the paint container with precision, attentively paints the ceramic art using a paint brush, and then happily sings a song." 47,1417b854-3022-401a-b01c-6f87e12f847b,1WHhRTSYtcEM8Tp1lNSdGL4DwZtZKGwDK,"Based on the actions performed in the video, what could be the possible overarching theme or purpose of the person's movements?",The individual's movements were intended to stretch and exercise the body.,The particular individual's bodily movements were deliberately intended to skillfully perform a beautifully choreographed dance routine.,The individual's movements were intended to stretch and exercise the body.,The particular individual's precise movements were deliberately intended to execute a martial arts routine skillfully.,The individual's movements were intended to perform a yoga routine.,"The individual's fluid, slow movements were deliberately intended to effectively perform a traditional tai chi routine seamlessly." 48,1541b81e-cc80-4201-a636-9a39c2d20faa,18QLP0SFcP7MBFdQRO-MJyPBmezngujF3,"In your understanding, which specific actions in the video contributed the most to successfully executing the main tasks, and why do you think they were critical in the larger context of the video?","The most important actions in the video were turning on the washing machine, sorting the clothes, and making breakfast.","In the video, the most important actions demonstrated were going to bed, waking up, and getting ready for work efficiently.","The most important actions in the video were playing video games, watching tv, and eating dinner.","The most important actions in the video were turning on the washing machine, sorting the clothes, and making breakfast.","In the video, the most important actions featured were walking the dog, going to the park, and engaging in playing fetch.","The most important actions highlighted in the video involved going to the bathroom, taking a refreshing shower, and getting dressed appropriately." 49,15bae307-992b-4359-9fe0-3f622f957d42,1qvs-dhGjsspmEDpOrJZNkNPokFAT1emU,"In your own words, summarize the key actions c repeatedly performs throughout the video without simply listing them out.",C repeatedly touches her hair and walks her dog.,"The individual, c, continuously and repeatedly ceases their walking motion.","Continuously, c repeatedly waves her right hand multiple times.","Continuously, c takes plastic paper using her right hand, performing the action repeatedly.",C repeatedly takes plastic paper with her left hand.,C repeatedly touches her hair and walks her dog. 50,16eb6914-00e7-4692-a7d7-d6ba36f61a5d,1vysaSjVJx3ibYFwCot9GYFH0USV9IdaP,What is the primary action performed with the frying pan at the beginning and the main purpose of using a frying pan in the context of this video? please highlight the significance of this action in the overall cooking process.,The primary action performed with the frying pan at the beginning is to wash it. the main purpose of using a frying pan in the context of this video is to cook the food. washing the frying pan ensures that the food will not be contaminated with bacteria.,The primary action performed with the frying pan at the beginning is to open it. the main purpose of using a frying pan in the context of this video is to store the food. opening the frying pan allows the food to breathe and prevents it from becoming stale.,The primary action performed with the frying pan at the beginning is to close it. the main purpose of using a frying pan in the context of this video is to cook the food. closing the frying pan helps to keep the heat in and prevents the food from splattering.,The primary action performed with the frying pan at the beginning is to put it on the stove. the main purpose of using a frying pan in the context of this video is to cook the food. putting the frying pan on the stove allows the food to heat up evenly.,The primary action performed with the frying pan at the beginning is to wash it. the main purpose of using a frying pan in the context of this video is to cook the food. washing the frying pan ensures that the food will not be contaminated with bacteria.,The primary action performed with the frying pan at the beginning is to take it off the stove. the main purpose of using a frying pan in the context of this video is to cook the food. taking the frying pan off the stove allows the food to cool down before it is served. 51,1794015e-26c9-47ae-b147-b7ff04998cf5,1lf0oxFaaFVidUCQzS15CYixIgs1A_icg,What can be inferred about c's assessment of the plants during the video? explain how their actions reflect their evaluations.,C believes that the plants are healthy and need to be pruned.,C believes that the plants are unhealthy and need to be replaced.,C believes that the plants are healthy and need to be pruned.,C believes that the plants are not getting enough water and need to be watered more often.,C believes that the plants are not getting enough sunlight and need to be moved to a sunnier spot.,C believes that the plants are infested with pests and need to be treated with pesticides. 52,17d3ed08-b062-4197-9497-d06c6fd4f562,1nmd4EnYaNQOuF2J3VFE8zFMwczNMxiNn,"What is the primary process being undertaken in this video, and how does it consist of both repetitive actions and brief moments of interpersonal interaction?",C is making kaliche ladoo balls.,"Currently, c is in the process of making a delightful cake.",C is making kaliche ladoo balls.,"Currently, c is in the process of making a delicious pie.","Currently, c is in the process of making a delicious pizza.",C is making a sandwich. 53,1a22bcef-adcd-4bf7-ab3a-5a1a0a8b1edf,1_OopoxABeT_EkPB6EwFPrEZZXGson2Gr,"Sythesize the information from the video and provide a brief, high-level description of the overall cooking technique used in this video. be concise and avoid listing individual actions.",The overall cooking technique used in this video is stir-frying. stir-frying is a cooking method that involves cooking food quickly over high heat in a small amount of oil. the food is typically cut into small pieces so that it cooks quickly. stir-frying is a popular cooking method in many asian cuisines.,"In this video, the primary, overall cooking technique employed is boiling. boiling, as a cooking method, involves preparing food in water or another liquid that reaches boiling point. generally, the food is cooked until reaching a tender state. this prevalent cooking method is suitable for vegetables, pasta, and eggs.","The overall cooking technique used in this video is baking. baking is a cooking method that involves cooking food in an oven. the food is typically cooked until it is golden brown and cooked through. baking is a common cooking method for bread, cakes, and pies.","In this instructional video, the primary cooking technique demonstrated is roasting. roasting is a popular cooking method that requires heating food in an oven at high temperatures. generally, the food is cooked until it reaches a browned, fully cooked state. this technique is frequently utilized when preparing meat, poultry, and various vegetables.","In this video, the overall cooking technique demonstrated is grilling. grilling is a particular cooking method that involves preparing food over direct heat. generally, the food is cooked until it becomes browned and properly cooked through. grilling is quite a common cooking method, typically used for meat, poultry, and various vegetables.",The overall cooking technique used in this video is stir-frying. stir-frying is a cooking method that involves cooking food quickly over high heat in a small amount of oil. the food is typically cut into small pieces so that it cooks quickly. stir-frying is a popular cooking method in many asian cuisines. 54,1a463736-fb76-45e4-862f-5bd77f5ee60e,1xeCrlkVexmIAgosYdH8hLWLyIplzBHHP,"How was technology incorporated into the process during the later part of the video, and why might it have been relevant for the artist?",The artist used a phone to look up reference images. this was relevant for the artist because it allowed him to see what other people had done with similar materials and techniques.,The artist used a computer to design the 3d model. this was relevant for the artist because it allowed him to create a more complex and detailed model than he could have done by hand.,The artist used a printer to print out the 3d model. this was relevant for the artist because it allowed him to create a physical object that he could then work on and modify.,The artist used a camera to take pictures of the process. this was relevant for the artist because it allowed him to document the process and share it with others.,The artist used a social media platform to share the finished product. this was relevant for the artist because it allowed him to get feedback from others and promote his work.,The artist used a phone to look up reference images. this was relevant for the artist because it allowed him to see what other people had done with similar materials and techniques. 55,1a48816e-0a15-4f4b-a181-df70568bb6ad,1Y8eF8ITo5WrR6Jdgkadc6O0-Zk5gCly3,"What was the main purpose of the actions performed by both c and the man throughout the video, and how did their roles differ?","C and the man were assembling a railing. c was responsible for gathering the tools and materials, while the man was responsible for welding the railing together.","Casually, c and the man were enjoying a friendly game of catch. skillfully, c was tossing the railing towards the man, and the man was expertly catching it.","Industriously, c and the man were diligently working together on a construction project. skillfully, c was building the sturdy frame of a house, while the man was carefully putting up the strong walls.","In the garage, c and the man were diligently working on a car together. enthusiastically, c was changing the vehicle's oil, while the man was expertly changing its tires.","C and the man were assembling a railing. c was responsible for gathering the tools and materials, while the man was responsible for welding the railing together.","C and the man were working on a boat. c was painting the hull, and the man was fixing the engine." 56,1b332cec-98c0-4428-bf7b-d6477235f025,14BeJjnx8w6qaLG7b5vVsclRuVvIqGxJR,Identify a recurring action in the video and explain how it contributes to the understanding of the characters' goals and motivations in the scene.,"A recurring action in the video is the characters' use of their phones. the characters are seen using their phones to communicate with each other, to look up information, and to pay for items. this suggests that the characters rely on their phones to help them to navigate the world around them.","A recurring action highlighted in the video is the characters' consistent use of their sturdy baskets. frequently, the animated characters are observed utilizing their baskets to transport various items. this strongly implies that these characters exhibit organized and efficient qualities.","In the video, a recurring action prominently involves the characters' use of their eyes. throughout the scene, the characters are frequently seen looking around the supermarket. this visual storytelling suggests that the characters are notably curious and observant.",A recurring action in the video is the characters' use of their mouths. the characters are seen talking to each other. this suggests that the characters are social and communicative.,A recurring action evident in the video is the characters' frequent use of their hands. the characters are consistently seen picking up and skillfully putting down items. this strongly suggests that the characters are quite active and significantly engaged.,"A recurring action in the video is the characters' use of their phones. the characters are seen using their phones to communicate with each other, to look up information, and to pay for items. this suggests that the characters rely on their phones to help them to navigate the world around them." 57,1bd933df-3575-4fa7-839f-765c7108259e,12HyD15rvJ0ScOIqDhjrvDCk2136daGp3,What are the similarities and differences in c's handling of the saxophone throughout the video?,"C holds the saxophone with both hands when playing it, and with her left hand when not playing it.","C holds the saxophone with both hands when playing it, and with her left hand when not playing it.","C holds the saxophone with her right hand when playing it, and with her left hand when not playing it.",C holds the saxophone with both hands at all times.,C holds the saxophone with her left hand at all times.,"C holds the saxophone with her right hand when playing it, and with both hands when not playing it." 58,1bf1fdea-6f44-4d3a-b5c0-6852aaada71b,1wmg8ATre8fFhVWrbXKjXqdJ2M9Ofxvdj,"From the video, identify the key turning points or crucial moments and explain why you think these events are the most important.",The key turning points or crucial moments in the video are when c tackles the ball.,"The key turning points or crucial moments in the video are when c walks, jogs, and kicks the ball.","The key turning points or crucial moments in the video are when c walks, sits, and stands.",The key turning points or crucial moments in the video are when c tackles the ball.,"The key turning points or crucial moments in the video are when c walks, puts his hands on his knees, and lifts his hands.","The key turning points or crucial moments in the video are when c walks, adjusts the camera, and gestures with his hands." 59,1c1c9e3b-2392-4de9-a0cf-3d53ef302353,1Ae4rQmZx9mlE2Ta_jKrq-L0tmDJ7Sej1,"Based on the evolving interactions between the man and c, what is the overarching activity they are engaged in throughout the video?",Playing cards,Having a conversation,Eating lunch,Working on a project,Watching a movie,Playing cards 60,1dace116-5838-4b5b-9876-54bbfb6b1e06,1l2PafonwvIQTEP3b5Jpwn-7s1arKCLJJ,Describe the main purpose of c's actions in the video and the steps taken to achieve it.,C is trying to fix a mini printer.,"Currently, c is attempting to construct a small, compact mini printer device.",C is trying to disassemble a mini printer.,C is trying to fix a mini printer.,"Currently, c is diligently attempting to clean a small-sized mini printer.","C is attempting to embellish a small, compact mini printer with decorations." 61,1e4ce899-0b37-44f2-9c89-dcd06c61a94f,1h-BIj1H6G6lv8QIG6VZ0kNKRD_aW_vMS,"Summarize the primary objective and the process that c follows throughout the video to achieve it, and identify one deviation from this process. make sure you're capturing the essence of the video without listing all the individual steps.",C picks flowers and puts them on a string.,"Casually, c selects blossoms, picks flowers gently, and then places them carefully in a designated bag.",C picks flowers and puts them in a vase.,"Carefully, c selects flowers, plucks them gently, and consumes them with delight.","Casually, c picks various flowers and joyfully gives them to someone else appreciatively.",C picks flowers and puts them on a string. 62,1e99206e-c4f1-4d0e-8caf-d8795acdbda9,139Uah9kEQ7VIcWAoI9Rx142EyLQxBsAU,"In the context of the entire video, what can you conclude about the main task being performed by c? be concise and focus on the central goal.",C is preparing a meal.,"Currently, c is meticulously cleaning her kitchen area.",C is chopping vegetables.,"Currently, c is diligently preparing a delicious smoothie.","Currently, c is in the process of making a delicious salad.",C is preparing a meal. 63,1eb2f153-055f-4004-ad55-154359af8025,1aytG9P3SghO_j8Rahtgbqec3TyvjPkl8,"Summarize the process that c goes through while painting the wardrobe, and identify any key interactions or interruptions that occur during this process.","C dips the paintbrush into the paint, turns it, and then paints the wardrobe with it. he repeats this process until the wardrobe is painted.","C opens a paint can, pours the paint into a coconut shell, and then uses the paintbrush to paint the wardrobe.","C stands up from a chair, adjusts the chair with his right leg, and then drops the paintbrush on a newspaper on a pavement. he then opens a paint can on the newspaper on the pavement, drops the paint can cover on the newspaper on the pavement, pours the paint in the coconut shell into the paint can on the pavement, picks up the paint can cover on the newspaper on the pavement, closes the paint can with the cover, and then picks up the paint can cover on the newspaper on the pavement and closes the paint can with the cover.","C interacts with a boy, dips the paintbrush into the paint in the coconut shell in his left hand, turns the paintbrush, rubs the paintbrush on the side of the coconut shell, paints the wardrobe with the paintbrush with his right hand, dips the paintbrush into the paint in the coconut shell in his left hand, turns the paintbrush, hits the paintbrush on the coconut shell, paints the wardrobe with the paintbrush with his right hand, dips the paintbrush into the paint in the coconut shell in his left hand, turns the paintbrush, paints the wardrobe with the paintbrush with his right hand, stands up from a chair, adjusts the chair with his right leg, drops the paintbrush on a newspaper on a pavement, opens a paint can on the newspaper on the pavement, drops the paint can cover on the newspaper on the pavement, pours the paint in the coconut shell into the paint can on the pavement, picks up the paint can cover on the newspaper on the pavement, closes the paint can with the cover, and then picks up the paint can cover on the newspaper on the pavement and closes the paint can with the cover.","C dips the paintbrush into the paint, turns it, and then paints the wardrobe with it. he repeats this process until the wardrobe is painted.","C dips the paintbrush into the paint, turns it, and then paints the wardrobe with it. he repeats this process until the wardrobe is painted, but he also interacts with a boy and stands up from a chair and adjusts the chair with his right leg." 64,1efd3bbf-4096-4317-913c-7d89778badf1,1CbEzfHEl2-xfwsSBHlQIdjPucDKgdOGl,Describe the general activity in the room and how the different characters and their actions contribute to this environment.,C is painting on a canvas pad at a table. the man is mopping the floor around the table. the cat is wandering around the room.,Charlie is diligently cleaning the table. a kind man is eagerly helping her out. their curious cat is playfully getting in the way.,"Currently, c is diligently writing a letter. nearby, the man is intently reading a book. meanwhile, the cat is peacefully taking a nap.",C is doing homework. the man is watching tv. the cat is playing with a toy.,"Currently, c is diligently working on a project. the tired man is taking a short break. meanwhile, the curious cat is exploring the house extensively.",C is painting on a canvas pad at a table. the man is mopping the floor around the table. the cat is wandering around the room. 65,1f0bdc87-aa40-4fb3-934e-10e9bc19ec4c,1KpEk4VZobfmreG_qJG3pPiJSGXgI5fjJ,"Describe the overarching process followed by the character ""c"" in the video, focusing on the main stages of creating the final product.",C starts by picking up a piece of molding clay. he then rolls the clay with his fingers until it is smooth. he then dips the clay in some solutions and puts it on a sculpture. he continues to roll the clay with his fingers and dip it in solutions until the sculpture is complete. he then stands up and puts the sculpture on the end of the table.,C starts by picking up a piece of molding clay. he then rolls the clay with his fingers until it is smooth. he then dips the clay in some solutions and puts it on a pottery wheel. he continues to roll the clay with his fingers and dip it in solutions until the pottery is complete. he then stands up and puts the pottery on the end of the table.,C starts by picking up a piece of molding clay. he then rolls the clay with his fingers until it is smooth. he then dips the clay in some solutions and puts it on a board. he continues to roll the clay with his fingers and dip it in solutions until the board is complete. he then stands up and puts the board on the end of the table.,C starts by picking up a piece of molding clay. he then rolls the clay with his fingers until it is smooth. he then dips the clay in some solutions and puts it on a knife. he continues to roll the clay with his fingers and dip it in solutions until the knife is complete. he then stands up and puts the knife on the end of the table.,C starts by picking up a piece of molding clay. he then rolls the clay with his fingers until it is smooth. he then dips the clay in some solutions and puts it on a tissue paper. he continues to roll the clay with his fingers and dip it in solutions until the tissue paper is complete. he then stands up and puts the tissue paper on the end of the table.,C starts by picking up a piece of molding clay. he then rolls the clay with his fingers until it is smooth. he then dips the clay in some solutions and puts it on a sculpture. he continues to roll the clay with his fingers and dip it in solutions until the sculpture is complete. he then stands up and puts the sculpture on the end of the table. 66,1f0ebef9-1ad7-41f1-951c-5309b1e55341,1IBNqGFTflo8s1PTku_XqcXD-1BwtTglo,What was the main purpose and objective of c's actions in the video?,C is preparing samples for testing.,"Currently, individual c is diligently cleaning the laboratory space.",C is preparing samples for testing.,C is preparing a presentation.,"Currently, c is accurately taking inventory of the existing supplies in storage.","Currently, c is in the process of preparing a delicious meal." 67,1fa3efdb-e85d-4d47-82ab-b216d9020388,16WHnubdDExA7iA2JvFBdwP4fCUvQgG_n,"Describe the overall process c is carrying out in the video, focusing on the core tasks and their significance.",C is pruning the plants in the garden.,"Currently, c is meticulously harvesting the various plants present in the well-maintained garden.",C is watering the plants in the garden.,"Currently, c is carefully fertilizing the various plants located within the garden area.",C is pruning the plants in the garden.,"Currently, c is meticulously weeding the plants situated in the vibrant garden." 68,20520eff-abdf-4d4f-94ad-cc751a8960d0,1LJyW_OCIhwRUoHZ-708phIXvZ-Obqbsu,"Summarize the overall process c undergoes to shape, modify, and finalize the pottery piece, focusing on the core techniques utilized.","C first centers the clay on the pottery wheel, then uses a modelling tool to shape it into a bowl. she then smoothes the surface of the bowl with her hands and the modelling tool. finally, she removes the bowl from the pottery wheel and cleans the modelling tool.","C first centers the clay on the pottery wheel, then uses a modelling tool to shape it into a vase. she then smoothes the surface of the vase with her hands and the modelling tool. finally, she removes the vase from the pottery wheel and cleans the modelling tool.","C first centers the clay on the pottery wheel, then uses a modelling tool to shape it into a bowl. she then smoothes the surface of the bowl with her hands and the modelling tool. finally, she removes the bowl from the pottery wheel and cleans the modelling tool.","C first centers the clay on the pottery wheel, then uses a modelling tool to shape it into a plate. she then smoothes the surface of the plate with her hands and the modelling tool. finally, she removes the plate from the pottery wheel and cleans the modelling tool.","C first centers the clay on the pottery wheel, then uses a modelling tool to shape it into a cup. she then smoothes the surface of the cup with her hands and the modelling tool. finally, she removes the cup from the pottery wheel and cleans the modelling tool.","C initially centers the clay carefully on the pottery wheel, then skillfully uses a modelling tool to shape it into a pot. she then smoothly smoothes the pot's surface using her hands and the modelling tool. ultimately, she removes the finished pot from the pottery wheel and diligently cleans the modelling tool." 69,20e97dbe-dfd5-489c-9244-bad5064ccbb1,1V-u1CneuqsHGFqKF9J9rAjr6NNZhPi6f,Describe the key sequence of events taking place in this video that shows c's process of creating art. focus on summarizing the workflow rather than listing individual actions.,"C starts by looking at the laptop. they then lift the paintbrush and wipe it on a cloth. they then lift the paintbrush and paint on the art board. they continue to do this, wiping the brush on the cloth frequently, until they are finished.","C commences by carefully examining the art board. they then skillfully lift the paintbrush and gently paint on the art board's surface. persistently, they continue to do this, wiping the brush on the cloth frequently, until they are ultimately satisfied and finished.","C starts by looking at the cloth. they then lift the paintbrush and wipe it on the cloth. they then lift the paintbrush and paint on the art board. they continue to do this, wiping the brush on the cloth frequently, until they are finished.","C starts by looking at the laptop. they then lift the paintbrush and wipe it on a cloth. they then lift the paintbrush and paint on the art board. they continue to do this, wiping the brush on the cloth frequently, until they are finished.","Initially, c starts by attentively observing the sky. next, they then gently lift the paintbrush and carefully paint on the sky's surface. diligently, they continue performing this task, frequently wiping the brush on the cloth, until they finally complete the artwork.","Initially, c starts by carefully observing the flowers. afterward, they then gently lift the paintbrush and skillfully paint on the flowers. persistently, they continue to do this essential task, wiping the brush on the cloth frequently, until they finally are finished." 70,21195533-2e83-48ce-ab48-a754c4fd61fc,1ouWialdfgG8JqSEaEuOm17bQ514mNo5G,"What is the primary objective of c's actions throughout the video, and how can you concisely describe the two main methods he employs?",C is pruning the fence.,"Currently, individual c is engaged in cutting down several trees.",C is clearing brush.,"Currently, c is meticulously trimming the overgrown hedges outside.","In the garden, c is diligently removing dead branches from trees.",C is pruning the fence. 71,217fe8d0-dfc8-407b-86be-269378c5259a,10RGywTcd0N4qOYLKbzrCP8q3bs6G0MyM,"What is the primary objective of c's actions throughout the video, and how do his methods evolve over time to achieve it?",C is trying to make a basket.,"Currently, c is diligently attempting to skillfully repair a damaged basket.",C is attempting to creatively embellish and adorn a woven basket.,C is trying to break a basket.,"Cunningly, c is attempting to quietly steal a woven basket.",C is trying to make a basket. 72,223164c8-abed-4f1a-8f7c-4088c89d3ece,1ab6iOz61a9coPokmrHao6rmexiqTr-p-,"What is the primary technique c applies to join the two pieces of cloth, and how does she ensure they are properly aligned throughout the process?",C uses a sewing machine to join the two pieces of cloth.,C uses a pair of scissors to join the two pieces of cloth.,C uses a sewing machine to join the two pieces of cloth.,C uses a needle and thread to join the two pieces of cloth.,C uses a glue gun to join the two pieces of cloth.,C uses a stapler to join the two pieces of cloth. 73,22627b14-0f17-4a45-9661-5ac979e0a4c2,1BpOZUitym-IlTmXwY8BkiQgq-8dNir_n,"Determine the primary purpose of c's actions in the video, and explain the importance of the repetitive actions involved in this process.",C is painting a piece of furniture. the repetitive actions are necessary to ensure that the paint is applied evenly.,"In the kitchen, c is diligently making a cup of coffee. the repetitive actions, or steps, are necessary to ensure that the coffee concoction is mixed evenly throughout.",C is stirring a pot of soup. the repetitive actions are necessary to ensure that the soup is cooked evenly.,C is painting a piece of furniture. the repetitive actions are necessary to ensure that the paint is applied evenly.,C is diligently washing dishes. the repetitive actions performed are extremely necessary to ensure that every single dish is thoroughly clean.,"Currently, c is diligently brushing his teeth. these repetitive actions are crucial and necessary to effectively ensure that his teeth remain ultimately clean and healthy." 74,2297b62e-33bc-4910-8d80-e304526b537d,1Z46TBcNFOAH0-3qA4wBALbEMXQMVRbGY,"Summarize the steps taken by c to complete the tasks in this video. don't list every action narrated, but rather focus on major components and how they're executed.","C folds the dress, places it on the ironing board, irons it, and then folds it again.","C folds the dress, places it on the ironing board, and then hangs it up.","C folds the dress, places it on the ironing board, and then packs it.","C folds the dress, places it on the ironing board, and then washes it.","C folds the dress, places it on the ironing board, and then irons it and hangs it up.","C folds the dress, places it on the ironing board, irons it, and then folds it again." 75,22a479e6-4054-4520-89a7-c7d068eadbe3,1oz08aacs5VN2R1FdLQF4xLaFlmo9z4bO,Identify the two main activities c engages in throughout the video and explain how he shifts focus between them.,C's main activities are eating and watching a movie.,C's main activities are eating and operating a laptop.,C's main activities are watching a movie and operating a laptop.,"C's main activities are eating, watching a movie, and operating a laptop.",C's main activity is eating.,C's main activities are eating and watching a movie. 76,22b86648-340c-4338-b46e-5eaba3a44b06,1IGL4wvcj4apVCsGu32WzkcQ_2CQQAHub,"Describe the primary aim of the actions that c is performing in the video, and address how his techniques for completing the task evolve throughout the video.",C is cutting and assembling metal pieces to build a structure.,C is repairing a metal object.,"In the workshop, c is skillfully creating a beautiful work of art using metal materials.","Currently, c is carefully dismantling a large metal structure with precision.",C is cutting and assembling metal pieces to build a structure.,C is carefully cleaning a shiny metal object with precision. 77,22d22f02-bc87-4f8a-9596-5b77146d4e41,1XTrY-XerDVz69QMOVL8mUX7AhLBkpFWd,"What significant change happens in the transition from the first half to the second half of the video, and how does that influence the focus of c's actions?",The significant change that happens in the transition from the first half to the second half of the video is that c finishes preparing the cake and starts serving it.,The significant change that happens in the transition from the first half to the second half of the video is that c changes clothes.,The significant change occurring in the transition from the first half to the second half of the video involves c moving to a completely different room.,The significant change that happens in the transition from the first half to the second half of the video is that c finishes preparing the cake and starts serving it.,The notable and significant change occurring in the transition from the first half to the second half of the video involves c beginning to utilize a different tool.,"In the video, the substantial change occurring during the transition from the initial half to the latter half is that character c begins engaging with another individual." 78,22e620ee-82bc-44d5-adde-f555710585e2,1_HEwA5vySwuBXvP8KC1p--uzO-wIivNc,"From a high-level perspective, how would you describe the interaction or relationship between c and the lady, and their respective roles in the process depicted in the video?","C is the person who wraps the nylon paper around the molten dough, while the lady is the person who provides the dough paste.","C is essentially the individual who supplies the dough paste; meanwhile, the lady acts as the person carefully wrapping the nylon paper around the freshly molten dough mixture.","C and the lady, working together, are both jointly responsible for carefully wrapping the nylon paper around the hot, molten dough.",Both c and the lady share equal responsibility for supplying the dough paste required.,C and the lady are not related to each other.,"C is the person who wraps the nylon paper around the molten dough, while the lady is the person who provides the dough paste." 79,23c1f3cd-c790-47c0-ae6a-7e4af28b8819,1FOFfSW-UMwie4uQ4v7i2nA73Vvc1Uv2t,Describe the primary interaction between c and the man in the video. focus on their overall aim and activity.,C and the man are playing chess.,C and the man are playing checkers.,C and the man are playing a game of tic-tac-toe.,C and the man are playing chess.,C and the man are playing a game of solitaire.,C and the man are not playing any game at all. 80,2487a677-28a5-4767-a03b-f34e3f7ba151,1phHVeAIIkF-WNsG-eWF6Fdm0a5qIYbcr,"In the video, describe and analyze the primary objects the person is using to wash various types of plates. what are their purposes, and how are they used differently depending on plate material or a specific task?","The person uses a sponge scourer, a steel scourer, and a tap to wash the plates. the sponge scourer is used to remove dirt and grime from the plates, while the steel scourer is used to remove tough stains. the tap is used to rinse the plates and to apply soap.","The person uses a sponge scourer, a steel scourer, and a dishwashing liquid to wash the plates. the sponge scourer is used to remove dirt and grime from the plates, while the steel scourer is used to remove tough stains. the dishwashing liquid is used to create suds, which help to loosen dirt and grime.","The person uses a sponge scourer, a steel scourer, and a dishwasher to wash the plates. the sponge scourer is used to remove dirt and grime from the plates, while the steel scourer is used to remove tough stains. the dishwasher is used to rinse the plates and to dry them.","The person uses a sponge scourer, a steel scourer, and a tap to wash the plates. the sponge scourer is used to remove dirt and grime from the plates, while the steel scourer is used to remove tough stains. the tap is used to rinse the plates and to apply soap.","The person uses a sponge scourer, a steel scourer, and a sink to wash the plates. the sponge scourer is used to remove dirt and grime from the plates, while the steel scourer is used to remove tough stains. the sink is used to rinse the plates and to drain them.","The person uses a sponge scourer, a steel scourer, and a bucket to wash the plates. the sponge scourer is used to remove dirt and grime from the plates, while the steel scourer is used to remove tough stains. the bucket is used to rinse the plates and to soak them." 81,249a0fc4-ccf4-4e6f-9ca5-29f11cf5e1ad,1wetznX-3Ki4e1GynmQ2No52fOgvcV25P,"How would you summarize the primary objective c is trying to achieve throughout the video in one sentence, considering the recurring drilling and removing actions they performed?",C is trying to attach tile backer washers to the tile backer board.,"Currently, c is attempting to carefully drill holes into the tile backer board's surface.",C is attempting to carefully take off tile backer washers that are located on the tile backer board.,C is trying to attach tile backer washers to the tile backer board.,C is trying to clean the tile backer board.,"Currently, c is attempting to carefully paint the tile backer board surface." 82,24f4b88e-2294-4017-a669-9e27c07d44e7,1VhWVJno2Kh2zam35a9cK64X46bJJa0Wb,How would you concisely describe the overall process that c undertakes in order to prepare the plantain flower throughout this video?,"C chops and slices the plantain flower, then arranges it in a tray.","C chops and slices the plantain flower, then arranges it in a tray.","Carefully, c slices the plantain flower into small, manageable pieces for cooking.","Carefully, c peels away the outer layers of the plantain flower.","Carefully, c skillfully cooks the delicious plantain flower in the kitchen.",C eats the plantain flower. 83,2622c5be-1147-4a6a-bd4a-cca88b4aa4f7,188DlMni_Q3NtRTaEtynRxw4jWXmolUCw,"How would you describe the efficiency and effectiveness of c's actions while performing tasks related to the main activity, considering the sequence and steps throughout the video?",C's actions are efficient and effective.,C's actions are efficient and effective.,C's actions are inefficient and ineffective.,C's actions are neither efficient nor effective.,C's actions are efficient but ineffective.,C's actions are effective but inefficient. 84,263666b2-3229-429a-b5a7-defc6433dc29,1LYnutS8l4YYrJPB6ve6ntFoG5JmkHqLa,Summarize the primary technique used by c to create and refine the flower pot. how did c utilize the tools and materials available to her?,C uses her hands to smoothen the flower pot and to add more clay to it. she also uses a cup of water to keep her hands wet.,C uses a hammer and chisel to shape the flower pot.,C uses her hands to smoothen the flower pot and to add more clay to it. she also uses a cup of water to keep her hands wet.,"Skillfully, c uses a pottery wheel to carefully shape the beautiful flower pot with ease.","Carefully, c employs a mold to accurately shape the flower pot's design.","Creatively, c employs her hands to skillfully shape the flower pot, and subsequently utilizes a kiln to thoroughly bake it." 85,27829009-0f7e-4217-ac44-468c564e1275,1jKehkleQkX9TxRJixDNRYSeQCR8rKphH,"Rather than listing all the actions, provide a concise description of c's activity between breaks and how it contributes to the overall video.","C takes some paint from the paint can with the paint brush, and then paints the wall with the paint brush.","C takes some paint from the paint can with the paint brush, and then puts the paint brush back in the paint can.","C takes some paint from the paint can with the paint brush, and then wipes the paint brush on a rag.","C takes some paint from the paint can with the paint brush, and then throws the paint brush away.","C takes some paint from the paint can with the paint brush, and then eats the paint brush.","C takes some paint from the paint can with the paint brush, and then paints the wall with the paint brush." 86,287d71bd-8911-40fa-b6f9-515c5b0eaf60,1V-OXPvhTUn8bTD2Zdmf_1mEhvoUvlseM,"What is the main objective of c’s actions throughout the video, and how does it change, if at all?",C is trying to clean the wall.,"Currently, c is attempting to carefully paint the entire wall surface.",C is trying to repair the wall.,"Currently, c is attempting to creatively decorate the wall with various items.",C is trying to clean the wall.,"Currently, c is actively attempting to construct a sturdy wall." 87,293f6799-01e3-485c-8e89-bfd0e0c7b545,1Ph8vLixP9oE0fH3ft19q_lkW4qn0fBGL,"Considering the entire video, discuss the significance of the chocolate drinking and card-dice interactions in terms of building a central theme or narrative.","The significance of the chocolate drinking and card-dice interactions in terms of building a central theme or narrative is that they show how the players are trying to relax and have fun while they are playing the game. the chocolate drinking shows that the players are enjoying themselves, and the card-dice interactions show that they are taking the game seriously.","The significance of the chocolate drinking and card-dice interactions in terms of building a central theme or narrative is that they show how the players are trying to compete against each other. the chocolate drinking shows that the players are determined to win, and the card-dice interactions show that they are using all of their skills to try to do so.","The significance of the chocolate drinking and card-dice interactions in terms of building a central theme or narrative is that they show how the players are trying to relax and have fun while they are playing the game. the chocolate drinking shows that the players are enjoying themselves, and the card-dice interactions show that they are taking the game seriously.","The significance of the chocolate drinking and card-dice interactions in terms of building a central theme or narrative is that they show how the players are trying to communicate with each other. the chocolate drinking shows that the players are open to sharing their thoughts and feelings, and the card-dice interactions show that they are willing to listen to each other's ideas.","The significance of the chocolate drinking and card-dice interactions in terms of building a central theme or narrative is that they show how the players are trying to connect with each other. the chocolate drinking shows that the players are interested in getting to know each other better, and the card-dice interactions show that they are willing to work together to achieve a common goal.","The significance of the chocolate drinking and card-dice interactions in terms of building a central theme or narrative is that they show how the players are trying to escape from reality. the chocolate drinking shows that the players are looking for a way to relax and forget about their problems, and the card-dice interactions show that they are trying to create a world of their own where they can be whoever they want to be." 88,2a9d3ac9-ee8e-4bbf-aaad-19c8c54c8794,1-M-ertNIO4rU09cCILYzdexli_L2lq6E,"What is the primary task being carried out in the video, and what steps does the individual take to accomplish this task?",The individual is processing leaves.,The individual is preparing a meal.,The individual is processing leaves.,The individual is cleaning the floor.,The individual is making a craft.,The individual is playing a game. 89,2b627c1c-73ea-4096-aa3b-9894291dffdb,1LX72cBVfwQ_OzrN2Dh9pYr9QU61A7uuU,Describe the overall process that takes place in the kitchen in this video. what is the primary task being completed and how does it transition to other tasks?,C is preparing a flatbread.,C is making a pizza.,"Currently, c is in the kitchen enthusiastically making a delicious cake.",C is preparing a flatbread.,"Currently, c is in the process of making a delicious pie.","Currently, c is in the process of preparing a sandwich." 90,2b8d1e50-3ba7-492a-8a0b-104eb659c27b,1DkivPvKtDnmYasz_2lYRI6ZpE5NAOrP0,"By analyzing c's activities in this video, determine their overall focus or intention, and describe the progression of tasks leading to its fulfillment.",C's overall focus or intention in this video is to set up their work station and start working on their computer.,C's overall focus or intention in this video is to set up their work station and start working on their computer.,"The central objective in this video, c's overall focus or intention, is to engage in conversation with the person.",C's overall focus or intention in this video is to eat the wrapper.,C's overall focus or primary intention in this specific video content is to effectively play the guitar.,The primary objective and intention in this particular c's video is to demonstrate how to effectively clean the cloth. 91,2c3c743d-96fd-4772-ba8c-e28f5a6ea741,1Nawq40nrYpgrX_CVJD2-8qxll18HdLBx,"In this video, there are two primary activities involving cards and dice. summarize these activities and how they are related.",The two primary activities involving cards and dice are shuffling and dealing.,"In gaming, the two primary activities frequently involving cards and dice consist of rolling and throwing actions.","In recreational games, the two primary activities involving cards and dice typically consist of counting and adding numbers.","In gaming, the two primary activities involving playing cards and dice are typically matching and sorting for various games.",The two primary activities involving cards and dice are drawing and painting.,The two primary activities involving cards and dice are shuffling and dealing. 92,2d0cbcf9-3ae9-4149-8d45-8b31dfc0631c,1_84-QLx14nwuMlFubqiLRYpyQ1CoYpEZ,Summarize the primary steps c follows in preparing and processing the dough throughout the video.,"C takes dough from the dough divider, sprinkles flour on it, and rolls it out. he then places the dough in a tray and repeats the process.","Carefully, c takes dough from the dough divider, gently sprinkles sugar on it, and firmly rolls it out. next, he meticulously places the dough in a tray and diligently repeats the entire process.","C takes dough from the dough divider, sprinkles water on it, and rolls it out. he then places the dough in a tray and repeats the process.","C takes dough from the dough divider, sprinkles flour on it, and rolls it out. he then places the dough in a tray and repeats the process.","C carefully takes dough from the dough divider, gently sprinkles salt on it, and evenly rolls it out. next, he neatly places the dough in a tray, and diligently repeats the entire process.","Carefully, c takes dough from the dough divider, gently sprinkles nothing on it, and skillfully rolls it out. next, he then places the flattened dough in a tray and diligently repeats the process." 93,2d954171-9ee2-4538-b1fd-80f4f77e6a06,1MKtxdISbIrTkDkfN2qGmy20gqVDc7glu,"What was the central purpose of the video, considering the wide range of actions performed by ""c""?",To turn a piece of wood on a lathe machine.,To effectively sharpen a knife with precision.,To build a table.,The process involves taking steps to repair a damaged chair.,To carefully create and design an artistic sculpture.,To turn a piece of wood on a lathe machine. 94,2e22aafd-1fbb-4e73-ab6f-d8f628b66ba1,1aHIVq2CrUfu-pwuU_J0Km6izHuB1CWe8,"In the context of the video, what key activity does c engage in multiple times during the sequence, and what is their primary objective in doing so?",C cleans the mats.,C assembles the washing machine.,C looks around.,C puts the machine down.,C walks forward.,C cleans the mats. 95,2eda56d2-a9ea-4591-a822-552235568446,1AEm9B7CXtie68cMzPkVnDyFVmSntqFs8,Analyze the video and explain why the interactions between the woman and c could be considered essential in this particular task.,The interactions between the woman and c were essential in this particular task because they allowed them to work together efficiently and effectively.,The interactions between the woman and c were not essential in this particular task because they could have easily worked separately.,The interactions between the woman and c were essential in this particular task because they allowed them to work together efficiently and effectively.,The interactions between the woman and c were essential in this particular task because they allowed them to share ideas and solve problems together.,The interactions between the woman and c were essential in this particular task because they allowed them to motivate each other and stay on track.,The interactions between the woman and c were essential in this particular task because they allowed them to compete with each other and see who could finish the task first. 96,2ef57a94-853e-4f98-a8e0-d0d5d95526ce,1hh8nRAGrR8b7LNgF55xj8PXQkFZLWw9f,"What could be a possible reasoning behind c's repetitive action of picking up and throwing cloths, and how does this action evolve over the course of the video?",C is trying to clean the house.,C is trying to clean the house.,"C is deliberately attempting to create a disorganized, chaotic mess.","Currently, c is making an effort to participate in regular exercise activities.","Currently, c is making an effort to find amusement and entertain herself independently.",C is trying to train her dog. 97,2f192c07-9e89-40d6-bc8c-418e92563bd9,1uvzCbFxRwG8vnSg_TJvb44y8vXkjInBH,"In this video, identify the recurring three-step process that c executes multiple times and explain its significance or purpose in the overall video context.","C cuts the cotton wool, drops it on her lap, and then pulls it with her hand.","C cuts the cotton wool, drops it on the floor, and then picks it up with her hand.","C cuts the cotton wool, drops it in a bag, and then pulls it out with her hand.","C cuts the cotton wool, drops it on her lap, and then pulls it with her hand.","C cuts the cotton wool, drops it in a box, and then pulls it out with her hand.","C cuts the cotton wool, drops it in a drawer, and then pulls it out with her hand." 98,2f814211-32de-4e8f-b26e-096ab47d20e8,1yJg8Jw_8Shwq0QbFT9pQQwImiz1ib9BC,"How does c demonstrate efficient use of tools and resources to achieve his main goal in this video, and what strategies does he adapt in the process?","C uses a saw, a chisel, and a mallet to repair the furniture.","C uses a hammer, a screwdriver, and a saw to repair the furniture.","C skillfully utilizes a screwdriver, a wrench, and a durable hammer to effectively repair the damaged furniture.","In the workshop, c skillfully uses a saw, a chisel, and a wrench to effectively repair the damaged furniture.","C skillfully utilizes a saw, a trusty screwdriver, and a sharp chisel to efficiently repair the damaged furniture.","C uses a saw, a chisel, and a mallet to repair the furniture." 99,2faa1516-ed55-4a96-a4be-09c402cf2c76,11r9esLbiprU8tjHM8ULLIapf0frfPMfP,What is the overall objective of the actions performed by c throughout this video?,To make cotton wool balls.,To make a cotton wool sculpture.,To make a cotton wool hat.,To make cotton wool balls.,To make a cotton wool wig.,To make a cotton wool beard. 100,2fcb501a-827c-4b31-95c2-5b0ca4895a00,188zZWcBEVpxzs6K9ouLnXuF9DPglBomD,"In the video, what actions were repetitive (performed more than once) and why were these actions important in achieving the final outcome?",C sewed the cloth together and cut the excess fabric.,"Carefully, c aligned the cloth accurately with the sewing machine for stitching.",C folded the cloth.,"Carefully, c ironed the fabric cloth, ensuring its smoothness.","Carefully, c washed the cloth with utmost diligence.",C sewed the cloth together and cut the excess fabric. 101,30e895e3-c176-43aa-9471-e9027f0b9518,1TQj-cwcnY1EcKNP_Q72a7_L8m_ZiMzSz,"Considering the main actions in the video, how would you summarize the video's central activity, and what role does the interaction with the girl play in this context?","C is painting a shelf. the interaction with the girl is a brief distraction, but does not affect the central activity.","While c is meticulously cleaning a shelf, the brief interaction with the girl serves as a minor interruption, but ultimately does not affect the central activity being performed.","Currently, c is constructing a shelf diligently. the fleeting interaction with the girl serves as a brief interruption, yet it does not impact or influence the central activity significantly.","C is painting a shelf. the interaction with the girl is a brief distraction, but does not affect the central activity.","C is repairing a shelf. the interaction with the girl is a brief interruption, but does not affect the central activity.","Currently, c is diligently decorating a shelf. the brief, friendly interaction with the girl momentarily interrupts, but ultimately does not affect the central activity at hand." 102,3127e6b0-83c8-4211-b695-3ee349d2f89b,1LX-Dxumy20nY-LkOjwyrESpfR8wkZ00u,"Provide a brief summarization of the significant steps c took to prepare the mango, highlighting only the key moments that contributed to the overall process.","C holds down the slice of mango on the chopping board with her left hand, then cuts it with the knife in her right hand. she then turns the slice of mango and cuts it again. she repeats this process until the mango is cut into small pieces.","C holds down the slice of mango on the chopping board with her right hand, then cuts it with the knife in her left hand. she then turns the slice of mango and cuts it again. she repeats this process until the mango is cut into small pieces.","C holds down the slice of mango on the chopping board with her left hand, then cuts it with the knife in her right hand. she then turns the slice of mango and cuts it again. she repeats this process until the mango is cut into large pieces.","C holds down the slice of mango on the chopping board with her left hand, then cuts it with the knife in her right hand. she then turns the slice of mango and cuts it again. she repeats this process until the mango is cut into small pieces.","C holds down the slice of mango on the chopping board with her right hand, then cuts it with the knife in her left hand. she then turns the slice of mango and cuts it again. she repeats this process until the mango is cut into small pieces, but she does not remove the mango from the chopping board between cuts.","C holds down the slice of mango on the chopping board with her left hand, then cuts it with the knife in her right hand. she then turns the slice of mango and cuts it again. she repeats this process until the mango is cut into small pieces, but she does not cut all the way through the mango on each cut." 103,3181b730-2539-46d5-b818-86db8965515a,1reC2yJaEY0_8mShJEq1NM3mtd6HR35HB,Describe the primary repetitive process that c is performing throughout the video and explain its significance in the overall context.,C is drilling holes in the metal.,C is drilling holes in the metal.,"Currently, the person named c is skillfully cutting the metal material.",C is sanding the metal.,"Currently, c is carefully polishing the metal surface with precision.","Currently, c is meticulously painting the metal surface with precision." 104,319b2c1d-e7cf-4fad-9230-4610c69fdccc,1axDN4vazgWK_AMxJoT_EyVVm6HPkfmQk,"In this video, what is c's overarching process that includes molding, filling, pouring, and scraping?","C molds the clay, fills the mold with sand, and pours the sand into the mold.","C molds the clay, fills the mold with water, and pours the water into the mold.","C molds the clay, fills the mold with sand, and pours the sand into the mold.","Carefully, c molds the clay precisely, fills the mold gently with air, and pours the air meticulously into the mold itself.","Casually, c molds the moist clay, carefully fills the mold with fine sand, and gently throws the sand into the prepared mold.","Carefully, c molds the clay, then fills the created mold with sand, and finally puts the packed sand in the mold." 105,31c47e50-5044-4eae-8314-ebc4b1d0c1fe,18C2bCPaFuJ5azsNGSYWfHyt4N9JAMCRz,"Which individual moments can you identify as key developments in the video's narrative, and why do these instances stand out above the rest?",The key developments in the video's narrative are the man's placement of the tiles on the scrabble board and the woman's eating of the soup. these moments stand out above the rest because they show the two characters engaged in their respective activities.,The key developments in the video's narrative are the man's placement of the tiles on the scrabble board and the woman's eating of the soup. these moments stand out above the rest because they show the two characters engaged in their respective activities.,The key developments in the video's narrative are the man's picking up the pen and the woman's picking up the spoon. these moments stand out above the rest because they show the two characters preparing to engage in their respective activities.,The primary key developments in the video's narrative involve the man diligently writing in the note and the woman contentedly eating from the fork. these distinctive moments stand out above the rest since they effectively show the two characters successfully completing their respective engaging activities.,The key developments within the video's narrative are notably the man's action of placing the pen down and the woman's act of placing the spoon down. these defining moments stand out above the rest since they illustrate the two characters consciously taking a break from their respective ongoing activities.,The key developments in the video's narrative are the man's picking up the fork and the woman's picking up the pen. these moments stand out above the rest because they show the two characters switching activities. 106,3223ece4-dc21-4ca9-8e78-2af8036ec4e8,13ltGXnErbDUYUrbw-0Z0rfyxfflBUbOJ,"Describe how c's actions progress towards the final goal, and what key modification does he make to the vespa scooter?",C's actions progress towards the final goal of replacing the battery in the vespa scooter.,C's actions progress towards the final goal of replacing the engine bearing in the vespa scooter.,C's actions progress towards the final goal of replacing the plastic panel in the vespa scooter.,C's actions progress towards the final goal of replacing the battery in the vespa scooter.,C's actions progress towards the final goal of removing the screws on the vespa scooter seat.,C's actions progress towards the final goal of removing the screws on the metal guard. 107,329c45dd-202d-4787-8734-f3900a0df321,1OxWK30zVdpuqA1vQgU5Nl2kJfGN7RT2N,"Based on the video, summarize the key steps in the process that c undertook while preparing the tray and working with the foil.","C prepared the tray by unfolding foil, cutting foil, and placing foil on the tray.","Carefully, c prepared the serving tray by skillfully unfolding the aluminum foil on it.",C prepared the tray by cutting foil.,"Carefully, c prepared the tray by thoughtfully placing foil securely on the tray's surface.","C prepared the tray by unfolding foil, cutting foil, and placing foil on the tray.","Carefully, c prepared the tray by unfolding, then cutting foil, and finally arranging the foil neatly on the tray itself." 108,330a2524-55c2-4c1e-bc01-8d5eef614978,1gb0QXM__KeACTrSzf2SVUGqksLtlRvHD,Identify two critical moments in the video where c adjusts the lawn mower and explain the importance of these adjustments in the context of the overall task.,"The two critical moments in the video where c adjusts the lawn mower are when they adjust the steering of the lawn mower at the beginning of the video, and when they adjust the hand brake several times throughout the video.","The two critical moments in the video where c adjusts the lawn mower are when they adjust the seat of the lawn mower at the beginning of the video, and when they adjust the hand brake several times throughout the video.","The two crucial instances in the video, where c adjusts the lawn mower, are when they pick up a stick, and subsequently when they discard the stick away.","The two critical moments in the video where c adjusts the lawn mower are when they adjust the steering of the lawn mower at the beginning of the video, and when they adjust the hand brake several times throughout the video.","In the video, the two critical moments where the individual, c, adjusts the lawn mower are specifically when they forcefully kick a stick aside, and subsequently when they kick yet another stick.","The two crucial instances in the video where person c adjusts the lawn mower involve when they firmly hold the lawn mower using both hands, and when they carefully hold the lawn mower with just their left hand." 109,3311f1b2-495a-4712-9989-ef8519be3cc7,1bZvyzByTneFZIblnFCMUXawE23sKRHDN,"In the context of selecting and organizing clothes, explain the significance of the different actions performed by c and how they collectively contribute to the overall purpose.","The different actions performed by c are all essential in the process of selecting and organizing clothes. c first removes the clothes that he is currently wearing, and then puts them on a hanger. he then hangs the clothes on a rod, and takes a new outfit from the closet. c tries on the new outfit, and looks in the mirror to see how it looks. if he is not happy with the outfit, he will take it off and try on another one. once c finds an outfit that he is happy with, he will put it on and wear it.","The various actions executed by c are all crucial in the process of cleaning clothes efficiently. c initially removes the clothes he is currently wearing, then places them in the washing machine. next, he washes the clothes thoroughly, and dries them in the dryer. finally, c methodically folds the clothes and organizes them away.","The different actions performed by c are all essential in the process of selecting and organizing clothes. c first removes the clothes that he is currently wearing, and then puts them on a hanger. he then hangs the clothes on a rod, and takes a new outfit from the closet. c tries on the new outfit, and looks in the mirror to see how it looks. if he is not happy with the outfit, he will take it off and try on another one. once c finds an outfit that he is happy with, he will put it on and wear it.","The different actions performed by c are all essential in the process of ironing clothes. c first removes the clothes that he is currently wearing, and then puts them on an ironing board. he then irons the clothes, and puts them away.","The various distinct actions executed by c are all fundamentally essential in the comprehensive process of mending clothes. initially, c carefully removes the clothes that he is currently wearing, and then diligently looks for any tears or holes. subsequently, he skillfully mends the tears or holes, afterwards, he neatly puts the clothes away.","The various actions executed by individual c are all crucial in the sewing process of garments. initially, c removes the clothes he is presently wearing, and then carefully dismantles them. following that, he skillfully sews the clothes back together and neatly stores them away." 110,340a76ff-7144-4b31-906f-8a43ed866bc0,1eF9CXiybsL4XBHu8jC8OWvhjQ0LLJsM7,"Describe the primary purpose of this video in a single, concise statement.",A man makes dough using a spiral mixer.,"In his kitchen, a man skillfully makes a cake from scratch.",A man makes bread.,A man skillfully prepares and bakes delicious pizza.,"In the kitchen, a man skillfully prepares and bakes delicious cookies.",A man makes dough using a spiral mixer. 111,34125d63-5dc5-44dd-af35-1d6528b37f74,1q0RtjUIbasF2XsOtmM5ShZosA533naG4,"Summarize the main objective of the video and discuss the important steps in the process, without recounting the specific actions in detail.",The main objective of the video is to show how to grind and polish iron rods.,The main objective of the video is to show how to grind and polish iron rods.,The primary purpose of this video presentation is to effectively demonstrate the process of making iron rods.,The primary aim of this instructional video is to clearly demonstrate the proper technique for sharpening iron rods effectively.,The main objective of the video is to show how to weld iron rods.,The primary aim of the video is to effectively demonstrate the process of cutting iron rods with ease. 112,358bdb29-d3e8-4af7-99e8-4d81da2d77b1,1-b8vqVNB8exwf6YC6KmgUbKcFCIPHYb9,"Based on the character's actions, what are two key tools or objects they utilized to accomplish their goal, and why are these tools significant?",The two key tools or objects that the character utilized to accomplish their goal are the marker and the table saw.,The two key tools or objects that the character utilized to accomplish their goal are the marker and the table saw.,The two key tools or objects that the character utilized to accomplish their goal are the wood plank and the box.,The two key tools or objects that the character utilized to accomplish their goal are the engineer square and the pencil.,The two key tools or objects that the character utilized to accomplish their goal are the left hand and the right hand.,The two key tools or objects that the character utilized to accomplish their goal are the floor and the table. 113,35ba0822-a2fd-46e5-890a-2aab45f3ce6a,1Ro4kmm_WbxUHs8EvyftJeuoFwccK4Ar3,How would you describe the pattern of behavior c exhibits while interacting with the various items in the video?,C exhibits a pattern of behavior that is focused and efficient.,"Character c consistently exhibits a pattern of behavior that appears disorganized, confused, and especially chaotic.","Characteristically, person c exhibits a consistent pattern of behavior that is noticeably slow and quite deliberate in nature.",Characteristic c consistently exhibits a pattern of behavior that is noticeably careless and rather sloppy.,C exhibits a pattern of behavior that is playful and carefree.,C exhibits a pattern of behavior that is focused and efficient. 114,36424b90-8a32-44b3-8db1-ad8bc3b222d0,1msp2zUAY5Dc6ynK8ogKu_SrpxnCkJmNf,Can you provide a concise summary of the main objective and the actions taken by individual 'c' in preparation for this objective?,"Individual 'c' is preparing to use a brush cutter to cut grass. he first fills the brush cutter with fuel, then puts on safety gloves, and finally assembles the brush cutter and starts it up.","Individual 'c' is preparing to use a lawnmower to cut grass. he first fills the lawnmower with fuel, then puts on safety gloves, and finally assembles the lawnmower and starts it up.","Individual 'c' is preparing to use a brush cutter to cut grass. he first fills the brush cutter with fuel, then puts on safety gloves, and finally assembles the brush cutter and starts it up.","Individual 'c' is preparing to use a chainsaw to cut down a tree. he first fills the chainsaw with fuel, then puts on safety gloves, and finally assembles the chainsaw and starts it up.","Individual 'c' is preparing to use a weed whacker to trim weeds. he first fills the weed whacker with fuel, then puts on safety gloves, and finally assembles the weed whacker and starts it up.","Individual 'c' is preparing to use a power drill to drill holes in a wall. he first fills the power drill with batteries, then puts on safety glasses, and finally assembles the power drill and starts it up." 115,38ebfa83-3667-43af-989e-6354440f9265,1aBciy-PjQ1DOaTmrQFb-PTKuVC9pwAdA,"In the context of the entire video, what was the main objective of c's interactions with the pen, book, and table?",To complete a written task.,"To organize the pen, book, and table.",To complete a written task.,To take a break from reading.,To get ready to write.,To write a letter. 116,39423dd1-6c62-4927-b9f9-8252352847eb,116avuhcK47XqTij_iP0RCFGMgsCdYhcD,What notable similarities can be observed between the man and the woman's interactions with their cups throughout the video?,"Both the man and the woman pick up their cups with their right hands, drink from them, and then place them back on the table.","Both the man and the woman pick up their cups with their left hands, drink from them, and then place them back on the table.","Simultaneously, both the man and woman proceed to pick up their cups using their right hands, take a sip, and subsequently place them back on their laps gently.","Both the man and the woman pick up their cups with their right hands, drink from them, and then place them back on the table.","Simultaneously, both the man and the woman pick up their respective cups with their left hands, carefully drink from them, and then gently place them back on their laps.","Simultaneously, both the man and the woman carefully pick up their cups with their right hands, take a drink from them, and then deliberately throw them on the floor." 117,39860abe-ce5a-4e57-a234-b25b0e81beec,1hynsWFUkJ6v9fNcdwrSC7MTbxqgHS7pt,"Among all the actions in the video, which ones can be considered the most essential for achieving the desired outcome, and why?",The most essential actions for achieving the desired outcome are dipping the paint brush into the paint container and painting the edge of the window and the wall.,The most essential actions for achieving the desired outcome are cleaning the window and the wall.,The most essential actions for achieving the desired outcome are dipping the paint brush into the paint container and painting the edge of the window and the wall.,The most crucial and essential actions for successfully achieving the desired outcome primarily involve repairing the window and the wall.,The most crucial and essential actions for successfully achieving the desired outcome involve meticulously decorating both the window and the wall surfaces.,The most essential actions for successfully achieving the desired outcome primarily involve protecting both the window and the adjacent wall. 118,3993ba01-6a9f-49ad-b9f8-2e4083509c6e,10mTDlFLcdnroV4Smo0uFGjk-s2AgSGt4,"What might be the overall purpose of c and the woman's actions during the video, and how do these actions indicate their possible intentions or goals?",C and the woman are exploring the house and interacting with the objects inside.,C and the woman are trying to find a way to escape the house.,C and the woman are trying to find a way to turn off the lights.,C and the woman are trying to find a way to open the door.,C and the woman are trying to find a way to get to the top of the stairs.,C and the woman are exploring the house and interacting with the objects inside. 119,39aade26-1db8-4d3f-965e-841d5dc9981a,1mlkWln8asXttpn_940bM7jSriIOd9-fi,Assess the importance of the tools used by c in the video and explain how they contributed to achieving the overall purpose of the tasks performed.,The tools used by c in the video were essential for achieving his goal.,The tools used by c in the video were essential for achieving his goal.,The tools used by c in the video were not essential for achieving his goal.,The tools used by c in the video were helpful but not essential for achieving his goal.,The tools used by c in the video were unnecessary for achieving his goal.,The tools used by c in the video were harmful for achieving his goal. 120,39b6ed4d-c5cb-4ad9-922b-6fda4e4a1531,1CM5hwg_vJcX-Tbygbam-C4CYe2N80TSd,What can be inferred as the primary reason behind c's repeated actions involving the cards and their significance in the context of the video?,C is trying to win the card game.,C is trying to impress the woman.,C is trying to teach the woman how to play cards.,C is trying to pass the time.,C is trying to solve the puzzle.,C is trying to win the card game. 121,3a4f4d5c-c8fa-4bb1-8e80-7c22cab54116,1jOyXRRAxmy1pjbTtcvDrIi1jH36mgPsH,"Keeping in mind the ability to compress information, what would be a concise explanation for the main objective and key decisions behind c's actions during the video?",C is trying to decide what clothes to wear.,C is diligently attempting to clean and wash the clothes thoroughly.,"Currently, c is attempting to carefully fold and organize the clothes.",C is trying to decide what clothes to wear.,C is trying to iron the clothes.,"Currently, c is attempting to carefully pack the clothes into luggage." 122,3a94a8d4-9b0f-49d9-9479-80ccf3a9ac3a,1tDz4FsdYAcr0uw0hiczO2wPL1MLz0WyI,"From the sequence of actions, identify a turning point or moment where c's focus shifts to a different task. explain why you believe this is the most significant part of the video.",The turning point is when c unfastens the hub axle.,The turning point is when c unfastens the hub axle.,The crucial turning point occurs when character c picks up the screwdriver from the table.,The pivotal turning point occurs when character c decides to put on the gloves.,The turning point is when c removes the tire.,"The critical turning point occurs when character c successfully patches the hole, fixing it." 123,3adf2393-e574-4462-aff3-824873b6a9ed,1YF-3Kogn_YvAPcQOZnPefYOsN8xwK-GA,What is the central theme of the video and how do c's actions throughout the video support this narrative?,"The central theme of the video is the process of painting a craft model. c's actions throughout the video support this narrative by showing him gathering his materials, preparing his workspace, and then painting the model.",The central theme of the video is the importance of preparation. c's actions throughout the video support this narrative by showing him carefully gathering his materials and preparing his workspace before he begins painting.,The central theme of the video is the satisfaction of completing a task. c's actions throughout the video support this narrative by showing him working diligently on the model and then taking pride in his work when it is finished.,"The central theme of the video is the process of painting a craft model. c's actions throughout the video support this narrative by showing him gathering his materials, preparing his workspace, and then painting the model.",The central theme of the video is the importance of following instructions. c's actions throughout the video support this narrative by showing him carefully following the instructions that came with the model.,The central theme of the video is the importance of being creative. c's actions throughout the video support this narrative by showing him adding his own personal touches to the model. 124,3af2be23-926f-4b17-9b49-4ad090bc9e31,1XvJtjqR_1vl_0euQm2KWptRHlS85uHd9,"From the list of different actions performed by c in the video, identify three critical or recurring activities, and discuss their significance in the overall context of the video.","The three critical or recurring activities that c performs are rinsing, folding, and squeezing the turbans.","The three critical or recurring activities that c performs are washing, rinsing, and folding the turbans.","The three critical or recurring activities that c performs are rinsing, folding, and squeezing the turbans.","The three crucial or repeatedly occurring activities that c performs consist of folding, squeezing, and effectively drying the turbans.","The three critical tasks or repeatedly occurring activities that c performs consistently are thoroughly rinsing, precisely squeezing, and neatly folding the turbans.","The three critical or recurring tasks that c consistently performs include washing, folding, and carefully squeezing the turbans." 125,3c63a6f6-842c-4d66-aa7f-2e36e1c73110,1ZJfqYB2ivmQNZVU9iiXqpzF75F6TBy4_,What are the main objectives and activities that c is performing throughout the video? keep your answer concise and avoid listing all the actions.,C is performing an experiment on plants.,C is watering the plants.,"Currently, c is actively engaged in fertilizing the plants diligently.","Currently, c is carefully pruning and caring for the plants diligently.",C is performing an experiment on plants.,"Currently, c is carefully repotting the various plants indoors." 126,3e700f0b-b4a9-4000-92b7-f0fa3be55161,14Paw7nhB-YW-gd8bLzGOBhKhlp6XePIw,"In the context of the video, discuss the most important sequence of interactions between c and the lady, focusing on the purpose of their conversation.",C and the lady are discussing the ingredients for a meal.,C and the lady are discussing the weather.,"Casually, c and the lady engage in discussing the recent news events together.",C and the lady are discussing the ingredients for a meal.,"During the conversation, both c and the lady are ardently discussing their plans for the day's activities.","Currently, c and the lady engage in a conversation, discussing their respective families' details." 127,3f61b913-9920-4fbd-ba0f-93f41c255279,1Suqrb53SDUUDq7mqv7UJPwTuIeGbSDmp,Identify and evaluate the most important activities that changed the course of events in the video and their potential implications.,"The most important activities that changed the course of events in the video are c's decision to play the card game, c's frustration with the game, and c's eventual abandonment of the game. these events serve to highlight c's playful and impulsive nature, as well as c's difficulty in focusing on tasks that require sustained attention.","The most crucial activities that altered the course of events in the video are c's decision to brush the cat, c's boredom with brushing the cat, and c's eventual choice to stop brushing the cat. these particular events serve to emphasize c's short attention span and their lack of perseverance.","The most important activities that changed the course of events in the video are c's decision to play with the dog, c's exhaustion from playing with the dog, and c's eventual decision to take a break from playing with the dog. these events serve to highlight c's high energy levels and need for physical activity.","The most significant and impactful activities that drastically changed the course of events in the video are c's decision to drink from the cup, c's clumsiness, and the following spilling of the cup, and c's eventual responsible decision to clean up the mess. these events effectively serve to emphasize and showcase c's lack of coordination and attention to detail.","The most important activities that changed the course of events in the video are c's decision to play the card game, c's frustration with the game, and c's eventual abandonment of the game. these events serve to highlight c's playful and impulsive nature, as well as c's difficulty in focusing on tasks that require sustained attention.","The most significant activities that drastically altered the course of events in the video are c's intentional decision to walk around the house, c's eventual boredom with wandering around the house, and c's subsequent choice to find something else to engage in. these impactful events serve to emphasize c's underlying restlessness and persistent need for stimulation." 128,402503fc-6f1b-4865-aea2-98f82349f1a4,1vnvAOhSmwUDWjUVp7eRVcRZ2tIQQsVSa,Explain how c's actions throughout the video contributed to completing a specific task in a concise manner. what was the primary intent or goal behind the actions?,C's actions throughout the video contribute to completing the task of soldering a metal rod.,"Throughout the entire video, c's actions consistently contribute to successfully completing the task of building a house efficiently.",C's actions throughout the video contribute to completing the task of soldering a metal rod.,C's actions throughout the video contribute to completing the task of cooking a meal.,"Throughout the entire video, c's actions consistently contribute to successfully completing the task of cleaning a room efficiently.",C's consistent actions throughout the entire video significantly contribute to successfully completing the task of writing a well-structured paper. 129,4070a4e2-14d5-4618-9889-dd18a416e2b5,1Vodar4smr0ciocTNSHAcE-dW4vGrkXnI,"How would you characterize the general progression of c's actions throughout the video, and what might have motivated these actions?",C is creating a piece of art by using powder paint to draw on the floor.,"Currently, c is happily playing an entertaining game of hopscotch outdoors.","Currently, c is creating quite a significant mess around.",C is trying to communicate something.,C is creating a piece of art by using powder paint to draw on the floor.,"Currently, c is diligently practicing and improving their handwriting skills." 130,40c8c634-c4a1-4a00-a480-0aa652e7246e,19qLYO1Hhj97-HNmjsEpOwgJ0admxTlcK,"In the context of the entire video, which key actions by c and the woman demonstrate the progression of their tasks?","The key actions that demonstrate the progression of c's task are picking up a can of chicken noodle soup, opening the kitchen cabinet, placing the can of chicken noodle soup in the cabinet, and closing the kitchen cabinet. the key actions that demonstrate the progression of the woman's task are picking up a can of soup, opening the kitchen cabinet, placing the can of soup in the cabinet, and closing the kitchen cabinet.","The key actions that clearly demonstrate the progression of c's task include picking up a sachet of corn flakes, opening the kitchen cabinet, carefully placing the sachet of corn flakes into the cabinet, and finally closing the kitchen cabinet. the key actions that similarly demonstrate the progression of the woman's task involve picking up a can of soup, opening the kitchen cabinet, placing the can of soup securely in the cabinet, and closing the kitchen cabinet.","The key actions that demonstrate the progression of c's task are picking up a can of chicken noodle soup, opening the kitchen cabinet, placing the can of chicken noodle soup in the cabinet, and closing the kitchen cabinet. the key actions that demonstrate the progression of the woman's task are picking up a can of soup, opening the kitchen cabinet, placing the can of soup in the cabinet, and closing the kitchen cabinet.","The key actions that clearly demonstrate the progression of c's task are picking up a can of soup, skillfully opening the kitchen cabinet, carefully placing the can of soup inside the cabinet, and finally closing the kitchen cabinet. the vital actions that effectively demonstrate the progression of the woman's task are picking up a bowl, effortlessly opening the kitchen cabinet, placing the bowl inside the cabinet, and securely closing the kitchen cabinet.","The key actions that demonstrate the progression of c's task are picking up a pot, opening the kitchen cabinet, placing the pot in the cabinet, and closing the kitchen cabinet. the key actions that demonstrate the progression of the woman's task are picking up a phone, opening the kitchen cabinet, placing the phone in the cabinet, and closing the kitchen cabinet.","The essential key actions showcasing the progression of c's task involve picking up flowers, skillfully opening the kitchen cabinet, carefully placing the flowers inside the cabinet, and then closing the kitchen cabinet securely. similarly, the crucial actions that demonstrate the progression of the woman's task include picking up a phone, adeptly opening the kitchen cabinet, securely placing the phone in that cabinet, and finally closing the kitchen cabinet." 131,410a6007-f759-4f9a-8196-0dad61934929,1Bukb4UmUNOIXhV0cdTYtRm6C7-3tUBHL,"Summarize the overarching focus of the video, considering the primary activity shared by both c and the child. how does this activity evolve throughout the video?","C and the child play a card game together. the child is initially interested in the game, but becomes bored and distracted after a while. c tries to keep the child's attention, but eventually gives up and puts the cards away.","C and the child play a card game together. the child is initially interested in the game, but becomes bored and distracted after a while. c tries to keep the child's attention, but eventually gives up and puts the cards away.","C and the young child calmly watch a movie together. at first, the child is pretty interested in the movie, but later becomes bored and easily distracted after a while. patiently, c tries to keep the child's attention focused, but eventually gives up and turns off the movie.","C and the young child engage in playing a board game together. at first, the child shows interest in the game, but soon becomes bored and easily distracted. c makes an effort to maintain the child's attention, but ultimately admits defeat and puts the game away.","C and the child read a book together. the child is initially interested in the book, but becomes bored and distracted after a while. c tries to keep the child's attention, but eventually gives up and puts the book away.","C and the young child play outside together cheerfully. the child is initially very interested in playing, but gradually becomes bored and distracted after a while. c persistently tries to keep the child's attention, but eventually admits defeat and goes inside." 132,41e8027c-6c31-4e95-86b1-109eb4b9a470,1OxchDNHg2zmmrckXmhUViRRDvAgD63hw,"Discuss the primary objective c focuses on in this video, and relate it to the actions they perform throughout the video.",C's primary objective in this video is to sharpen his tools.,C's primary objective in this video is to clean his workspace.,C's primary objective in this video is to sharpen his tools.,C's primary objective in this video is to fix a broken knife.,C's primary objective in this video is to make a sandwich.,C's primary objective in this video is to test the sharpness of his knives. 133,425f2fb4-a2a7-4925-94b5-25f6b0b85f78,1Xab5vL-6OirXcyl_Zjtd3NKBXmJ26oNC,"Identify the key steps that c consistently repeats, and infer the potential purpose behind these actions.","C consistently picks up a block, throws it on the ground, and then picks up another block.","C consistently picks up a block, shakes it, and then throws it on the ground.","C consistently picks up a block, moves it around, and then throws it on the ground.","C consistently picks up a block, touches it, and then throws it on the ground.","C consistently picks up a block, wraps it around his waist, and then throws it on the ground.","C consistently picks up a block, throws it on the ground, and then picks up another block." 134,429e2791-b050-4184-9837-de7c201f94c8,1h3FqK-monpqUqoof0Dy9IKmNxd1ZxUxk,"Considering the entire video, discuss the overall importance of c's actions in the context of the scene, and identify any potential motivations behind those actions.","C's actions in the video are important because they show how a customer interacts with a cashier at a store. she places her items on the counter, the cashier fills the cash register machine and packages her items, and she pays for her items and leaves.","In the video, c's actions are crucial as they demonstrate how a customer effectively engages with a restaurant's waiter. indeed, she places her order, the waiter dutifully fulfills it and delivers her meal, after which she pays for the food and departs.","In the video, c's actions hold significance as they demonstrate a typical customer interacting with a medical professional at a hospital setting. she explains her symptoms, the doctor assesses her condition and provides a diagnosis, finally, she covers the cost for her session and exits.","C's actions in the video are important because they show how a customer interacts with a police officer at a police station. she reports a crime, the police officer takes her statement and investigates the crime, and she thanks the police officer and leaves.","C's actions in the video are important because they show how a customer interacts with a cashier at a store. she places her items on the counter, the cashier fills the cash register machine and packages her items, and she pays for her items and leaves.","C's actions in the video are important because they illustrate how a customer interacts with a teacher at a school setting. she inquires by asking a question, the teacher responds by answering her question, and she expresses gratitude by thanking the teacher before departing." 135,444d82d2-987c-4a6a-8f81-5f1edd9447f7,1RLcQYF2tLoZxXDAdGccCsu18o33Ww-VM,"What is the overarching goal of c's actions throughout the video, and how do his actions progress towards that goal?",C is building a table.,C is repairing a table.,"Currently, c is carefully disassembling a wooden table piece by piece.","Currently, c is meticulously cleaning a table thoroughly.","Currently, c is diligently painting a wooden table carefully.",C is building a table. 136,455ec904-69ad-4f53-829b-c1eb2ffab59a,1kMik8doEENLZGAl2b7TnhvIsyhk2mTTJ,"What was the primary objective of c throughout the video, and how did the choice of tools evolve to accomplish this goal?",C's primary objective throughout the video was to dig a hole.,"In the video, c's primary objective all along was essentially to plant a single tree successfully.",C's primary objective throughout the video was to dig a hole.,C's primary objective pursued throughout the entire video was to effectively remove unwanted weeds.,"Throughout the video, c's primary objective was to consistently level the ground effectively.",C's primary objective throughout the video was to test the soil. 137,4561a47c-7756-4e36-ab43-80d11230b2ae,11qkuUl6X2O5tYQqQoyT28S6XLi2dYTqp,Compare and contrast the traffic patterns that c encounters throughout the video. what can you infer about the location and time based on these observations?,"The traffic patterns that c encounters throughout the video are relatively light and consistent. there is a steady stream of cars, but there are no major traffic jams or slowdowns. this suggests that the video is taking place during a non-peak travel time, such as early morning or late evening.","The traffic patterns that c encounters in the entire video are very heavy and quite inconsistent. numerous traffic jams and constant slowdowns occur often. this strongly suggests that the video is happening during a peak travel time, possibly like rush hour.","The traffic patterns that one encounters during the video are quite light and inconsistent, as observed. there are extended long periods of time when no cars appear on the road, followed by brisk short bursts of vehicular activity. this observation strongly suggests that the video is portraying a rural, less populated area.","The traffic patterns that one encounters throughout the video appear quite heavy and consistently dense. there is a steady, unbroken stream of cars on the road, visible at all times. this observation suggests that the video is likely taking place in a major city.",The traffic patterns that c encounters throughout the video are very light and consistent. there are no cars on the road at all. this suggests that the video is taking place in a ghost town.,"The traffic patterns that c encounters throughout the video are relatively light and consistent. there is a steady stream of cars, but there are no major traffic jams or slowdowns. this suggests that the video is taking place during a non-peak travel time, such as early morning or late evening." 138,456447c2-98ca-4285-94dc-d2f0d1b398f6,18WycmLSn_RlS9ZvPuOmbuSQ0AzCwZvTA,"How would you describe the overall end goal of c's actions throughout the video, demonstrating an understanding of his various card and game piece manipulations?",C is trying to win a game of solitaire.,C is trying to build a house of cards.,C is trying to sort the cards by suit.,C is trying to find a matching pair of cards.,C is trying to make a pattern with the cards.,C is trying to win a game of solitaire. 139,45e313dd-9b30-444e-9577-b15a21cb59b4,1l5DBdpD5dKxL138T3MzgWQcRoIJaseoP,"Instead of listing individual actions, provide a concise description of c's overall objective during the video and how the activities in the kitchen contributed to that goal.",C's overall objective was to sanitize her hands. the activities in the kitchen contributed to this goal by providing her with a bowl of water.,C's main overall objective was simply to drink water. the activities happening in the kitchen effectively contributed to this goal by providing her with a clean bowl of water.,C's primary overall objective was to thoroughly wash her hands. the various activities occurring in the kitchen contributed significantly to this goal by conveniently providing her with a clean bowl of water.,C's overall objective was to sanitize her hands. the activities in the kitchen contributed to this goal by providing her with a bowl of water.,C's overall objective was to water a plant. the activities in the kitchen did not contribute to this goal.,"C's predominant overall objective was to thoroughly clean her cat. the unrelated activities happening in the kitchen, however, did not contribute to achieving this specific goal." 140,45fd8bca-c836-4601-b2c8-cc2a08cf8f86,18nU6jlMMySGTnSx9e8_5THBq8g2GKTuP,"Based on the entire video, what can you infer about c's primary goal in the scene, and how did the objects being moved relate to that goal?","C's primary goal in the scene is to clean the floor. the objects being moved (the chair, stool, and dining table) are in the way of c's cleaning efforts, so she moves them out of the way.","In the scene, c's primary objective or goal is to systematically rearrange the furniture items. the objects being moved, which include the chair, stool, and dining table, are being repositioned to new, designated locations within the room.",C's main objective in the scene is obtaining exercise. relocating the objects around the room serves as an ideal method for acquiring some exercise.,C's primary goal in the scene is essentially to create a mess. actively moving various objects around the room serves as an effective method to make a mess.,C's primary goal in the scene is to play a game. moving the objects around the room is a good way to play a game.,"C's primary goal in the scene is to clean the floor. the objects being moved (the chair, stool, and dining table) are in the way of c's cleaning efforts, so she moves them out of the way." 141,46853bef-9052-428d-8e61-df684147f4af,1FB0ZC9Q1yzevTAH-fVFI3mvZfPHsjydk,How does c's behavior change throughout the video? consider his actions and focus on notable shifts in his engagement or the way he participates in the activity.,C's behavior changes throughout the video as he becomes more engaged in the game.,"The gradual shift in c's behavior changes throughout the video, as he increasingly becomes more frustrated and annoyed with the challenging game.",C's behavior changes throughout the video as he becomes more engaged in the game.,"Noticeably, c's behavior progressively changes throughout the video as he gradually becomes more bored with the game over time.",C's behavior changes throughout the video as he becomes more tired of the game.,"C's behavior undergoes noticeable changes throughout the video, particularly as his hunger gradually increases, making him more hungry." 142,46e1aee1-adea-4c9c-ac5b-9d933a3d3a43,1HRnjm9WO6SFLe9VkpDG8eUPuj2yJcfkh,"Comparing the instances in which c washes different items, what can you deduce about the order of importance or priority given to each item cleaned?","C washes the sieve, bowl, spoon, plates, and pan in that order.","Conscientiously, c washes the items - plates, bowl, spoon, sieve, and pan carefully in that specific order.","Carefully, c washes the bowl, sieve, spoon, plates, and pan sequentially in that precise order.","C washes the sieve, bowl, spoon, plates, and pan in that order.","Carefully, c washes the spoon, bowl, sieve, plates, and pan sequentially in that specific order.","C washes the pan, plates, bowl, sieve, and spoon in that order." 143,470dad8b-6c95-440c-b990-5b123ec64497,1A8TAotz88evGI3VQru3V9W6JZF5HwZJk,"Given all the interactions between c and various items, what could be the primary purpose behind c's actions in the workshop?",C is organizing the wood in the workshop.,C is cleaning the wood in the workshop.,C is organizing the wood in the workshop.,C is repairing the wood in the workshop.,C is building something with the wood in the workshop.,C is painting the wood in the workshop. 144,478c970e-3ca2-492a-8af7-f442d8255971,1mJ5t9pv6xFEXrHUP1eTxG67Wgwz7V30G,What were the primary steps c took to prepare and taste the paste in the blender before and after adding a new ingredient?,"C added a powder to the blender, turned on the blender, tasted the paste, and turned off the blender.","Casually, c added a specific powder to the blender, swiftly turned on the blender, carefully tasted the paste, and then added more powder as needed.","C added a powder to the blender, turned on the blender, tasted the paste, and turned off the blender.","Casually, c added a powder to the blender, then turned on the blender, carefully tasted the paste, and finally added more water.","Casually, c added some powder to the blender, switched on the blender, tasted the semi-solid paste, and incorporated extra vegetables.","C added a powder to the blender, turned on the blender, tasted the paste, and added more oil." 145,47a2b871-0153-461f-b1a4-806f76e67313,1xpc6DWuxFlbWl6aKJCD4PbEhst2drZrN,"In the context of interactions between people and objects, what would you consider the most essential actions, and why?",Picking up and eating food,Picking up and eating food,Arranging and placing various objects systematically on the table,Scratching a plate,Observing shows while comfortably watching television at home,Engaging and interacting with people effectively and positively 146,47b87299-5e31-4299-8bbc-51fe567ebd40,1S-aGihnpN-jVEpaBj3GmfLlzyF_BsSMG,"What could be the primary reason behind a series of actions c performs with cards, such as collecting, shuffling, dropping, and exchanging them with the person?",C is trying to win the card game.,C is trying to impress the person.,C is trying to win the card game.,C is trying to teach the person how to play cards.,C is trying to pass the time.,C is trying to make the person laugh. 147,47f4c828-f238-459f-91c3-6b221db54c5b,1O-QcvHKHIWyBBr-xWGwSVbIbHC9Kw7kz,"Describe the overall sequence of events in the video, paying special attention to how the character interacts with objects and maintains cleanliness throughout their activities in the kitchen.","The character prepares a meal, eats it, and then uses their laptop.","The main character creates a sandwich, and subsequently enjoys eating it.","The main character skillfully prepares a meal, later consumes and enjoys it wholeheartedly.","The character prepares a meal, eats it, and then uses their laptop.",The primary character simply prepares a tasty snack and subsequently consumes it with pleasure.,"The character prepares a meal, eats it, and then uses their phone." 148,48274a18-9691-48e2-8ddd-45018251f81b,1mJsuOl9K6Z4VjKI-5nKXL4oE6w1gBEQL,Describe the recurring steps c takes in processing each mango slice and explain how she maintains control throughout.,"C turns the mango slices on the tray with her left hand, dices the mango slices on the tray with the knife in her right hand, and then moves the diced mango on the tray with the knife in her right hand.","Carefully, c turns the mango slices on the tray using her right hand, skillfully dices the mango slices present on the tray with the knife in her left hand, and subsequently moves the diced mango on the same tray with the knife situated in her left hand.","C turns the mango slices on the tray with her left hand, dices the mango slices on the tray with the knife in her right hand, and then moves the diced mango on the tray with her left hand.","While c turns the mango slices present on the tray using her right hand, she dices those mango slices neatly on the tray with the knife held in her right hand, and subsequently moves the resulting diced mango pieces on the same tray utilizing her right hand.","C turns the mango slices on the tray with her left hand, dices the mango slices on the tray with the knife in her right hand, and then moves the diced mango on the tray with the knife in her right hand.","Carefully, c turns the mango slices on the tray using her left hand, skillfully dices the mango slices on the tray employing the knife in her left hand, and subsequently moves the finely diced mango pieces on the tray with her right hand." 149,48820caf-070d-4977-b36b-df37b45b4137,1JxoPV68YCizMnxFa3LppY08vlqhLQmPf,"What was the primary activity that c consistently performed throughout the video, and how did it evolve over time?",C was weaving a cloth.,C was making a basket.,"While sitting comfortably, c was diligently sewing a beautiful shirt.","While sitting comfortably, c was carefully knitting a beautifully designed scarf.","Casually, c was diligently crocheting a cozy, warm blanket in her spare time.",C was weaving a cloth. 150,4b0acb04-e6c9-4eb3-809f-4fe8eb5c41d0,1qovwFhwfsyVSMIdpfB8ioan-YhWu0hN5,What were the primary objectives of the actions performed by c in this video?,To crochet a piece of fabric.,To make a yarn ball.,To tangle the yarn.,To untangle the yarn.,To count the lines on the crochet fabric.,To crochet a piece of fabric. 151,4b7495f1-e2c2-4d69-bbf4-c2dabeb5e634,1GN0xUhLl2WXf7AtbXjX7NKIbloUeFGK1,Which parts of the video can be considered most essential to achieving c's ultimate goal and why? consider the impact of these parts on the overall process.,The most essential parts of the video are the parts where c grinds the iron rods and marks them with chalk.,The most essential parts of the video are the parts where c grinds the iron rods and marks them with chalk.,The most crucial and essential parts of the video involve the instances where object c rolls down a nylon on the iron rods effortlessly.,The most crucial and essential parts of the video involve the segments where character c picks up and handles the iron rods.,The most crucial and essential parts of the video involve the segments where character c places down the iron rods carefully.,The most essential parts of the video are the parts where c turns the iron rods. 152,4bd1cbed-07c1-444b-9a3f-783a159e4367,1WY22ohV7bUXOSZVJVbyjfQR9uIMvim8N,"Identify and explain the key sub-processes that c performs during the video in order to transfer ingredients, add seasonings, and clean utensils. compress your answer into a brief, yet comprehensive, explanation.",C transfers ingredients by picking them up with her hands or a spoon and placing them in the pot. she adds seasonings by opening the containers and pouring them into the pot. she cleans utensils by rinsing them under water and placing them in the sink.,C transfers ingredients by picking them up with her hands or a spoon and placing them in the pot. she adds seasonings by opening the containers and pouring them into the pot. she cleans utensils by rinsing them under water and placing them in the sink.,"Cece transfers ingredients, chopping them into small pieces, then diligently adding them to the pot. she adds various seasonings, mixing them together in a separate bowl before incorporating them into the pot. she cleans cooking utensils, thoroughly washing them in the sink using soap and water.","C carefully transfers ingredients by swiftly scooping them out of a container with a spoon, and then diligently adds them to the pot. she expertly adds seasonings by evenly sprinkling them over the ingredients in the pot. she efficiently cleans utensils by gently wiping them down with a damp cloth.","Carefully, c transfers ingredients by pouring them from a container right into the pot. then, she adds flavorful seasonings by adding them directly to the pot itself. lastly, she cleans utensils by efficiently placing them in the dishwasher.",C transfers ingredients by using a food processor to chop them into small pieces. she adds seasonings by adding them directly to the pot. she cleans utensils by placing them in the sink to soak. 153,4c6290c6-bc98-4c95-b63b-03886849fb57,1nx13asMJLk3TtpPO_u0lKIJWTOdEmROM,How would you describe the relationship between the actions c performs with the washing machine and the steps taken to complete the main task? consider the actions and their order in your analysis.,"The relationship between the actions c performs with the washing machine and the steps taken to complete the main task is that c uses the washing machine to clean the clothes. c opens the washing machine, removes the dirty clothes, puts the clothes in the washing machine, and closes the washing machine. c then turns on the washing machine and waits for the cycle to finish. when the cycle is finished, c opens the washing machine and removes the clean clothes. c then hangs the clothes to dry.","The relationship between the actions c performs with the washing machine and the steps taken to complete the main task is that c utilizes the washing machine for drying the clothes. however, this is incorrect because c actually does not dry the clothes using the washing machine itself.","The relationship between the actions c performs with the washing machine and the steps taken to complete the main task is that c uses the washing machine to clean the clothes. c opens the washing machine, removes the dirty clothes, puts the clothes in the washing machine, and closes the washing machine. c then turns on the washing machine and waits for the cycle to finish. when the cycle is finished, c opens the washing machine and removes the clean clothes. c then hangs the clothes to dry.",The relationship between the actions c performs with the washing machine and the necessary steps taken to complete the main task is that c erroneously uses the washing machine to fold the clothes. this is incorrect because c does not actually fold the clothes inside the washing machine.,The relationship between the actions c performs with the washing machine and the steps taken to complete the main task is that c uses the washing machine to iron the clothes. this is incorrect because c does not iron the clothes in the washing machine.,"The relationship between the actions c performs involving the washing machine and the steps taken to successfully complete the main task is that c improperly uses the washing machine to store the clothes. however, this is incorrect because c should not store the clothes in the washing machine." 154,4c778f65-eeca-4280-a608-d17b0c9493c2,18DUYb_aWEAZYIKDAMFoX-yayXbFMyM_J,"After completing the painting task, what actions does c take to prepare for their next activities on the construction site?","C puts the paint brush and paint tin away, wipes his hands, and puts on his phone.","C puts the paint brush and paint tin away, wipes his hands, and puts on his phone.","Carefully, c puts the paint brush and paint tin away, thoroughly washes his hands, and then proceeds to puts on his phone.","Carefully, c puts the paint brush and paint tin away, dries his hands thoroughly, and then puts on his phone without delay.","Carefully, c puts the paint brush and paint tin away, thoroughly sanitizes his hands, and then puts on his phone to make a call.","C puts the paint brush and paint tin away, lotions his hands, and puts on his phone." 155,4ca1c82d-232c-4ffc-bad0-69f9aa992aef,1F_Ni54ilb--2VN_reD8Xa6uLGLrRGnIJ,"Considering all the actions performed by c, what can you infer about the overall goals or objectives of her actions throughout the video?",C's overall goal in the video is to keep her house clean and tidy.,C's primary overall goal in the video is ultimately to make her beloved child genuinely happy and content.,C's primary overall goal portrayed in the video content is ultimately to make herself feel genuinely happy.,C's overall goal in the video is to get a bottle of water.,C's overall goal in the video is to keep her house clean and tidy.,C's primary and overall goal within the video is to engage in conversation and chat with her beloved child. 156,4ded71d2-1117-4ed6-a821-b8d76bb251ad,12GTlBtXgcduORspp_GNP53XgpRiBD8D2,"What overarching goal does c accomplish throughout the video, and how do their actions contribute to this objective?",C's overarching goal is to paint the wooden furniture.,C's overarching goal is to paint the wooden furniture.,"C's predominant, overarching goal and objective is to efficiently clean and maintain the wooden furniture surfaces.",The principal overarching goal of c is to effectively repair and restore the damaged wooden furniture.,C's overarching goal is to decorate the wooden furniture.,C's primary overarching goal is to efficiently sell the high-quality wooden furniture to customers. 157,4e0b4961-1c21-4025-9ba6-0b526e3aaf3c,1TwdDnRRA38OXN_htOfD06PBeNSqK3ksv,Determine the main goal c achieves at the end of the video and explain which tools and equipment were involved over the course of the actions.,The main goal c achieves at the end of the video is to clean all of the dishes.,The main goal c achieves at the end of the video is to use up all of the soap.,The main goal c achieves at the end of the video is to use up all of the water.,The main goal c achieves at the end of the video is to use up all of the energy.,The main goal c achieves at the end of the video is to clean all of the dishes and put them away.,The main goal c achieves at the end of the video is to clean all of the dishes. 158,4e0e4bbb-a86c-4c8d-bd05-87a52f037561,1yL3a-EOGwnt9bZrM81tZGyoC1kpuTVGQ,"Throughout the video, what specific actions or events could be considered as turning points or key moments that may alter the character's approach or objective?",The turning point in the video is when c starts to cut the weeds.,The turning point in the video is when c starts to cut the weeds.,The turning point in the video is when c starts to touch the plants.,The turning point in the video is when c starts to walk around the garden.,The turning point in the video is when c starts to examine the plants.,The turning point in the video is when c starts to fold the stems of the plants. 159,4e1e182e-0592-4397-8654-a628d783990b,14lJKUwUIAR3dff1wl7XjUj7uCLrbZB9W,Identify and discuss the key steps taken by c to securely install the dust cap on the axle.,C uses a hammer to tap the dust cap into place.,C uses a screwdriver to pry the dust cap into place.,C uses a wrench to tighten the dust cap into place.,C uses a pliers to grip the dust cap and turn it into place.,C uses a hammer to tap the dust cap into place.,C uses a socket wrench to tighten the dust cap into place. 160,4edbb602-0b90-4fac-998f-d352e71f1246,1uwhe75FCwM5llgpVFSSE5OLlDl0L_NJ4,How do the repeated manipulations of cotton wool by c contribute to the final product?,The repeated manipulations of cotton wool by c contribute to the final product by making it more compact and easier to use.,"The repeated, skillful manipulations of cotton wool by c significantly contribute to enhancing the final product by making it more visually appealing and colorful.","The continuous, repeated manipulations of cotton wool by 'c' significantly contribute to enhancing the final product, ultimately making it more pleasantly fragrant.",The repeated manipulations of cotton wool by c contribute to the final product by making it more compact and easier to use.,The repeated manipulations of cotton wool by c contribute to the final product by making it more absorbent.,"Through the repeated manipulations of cotton wool, performed by c, contribute significantly to the final product, ultimately making it more robust and durable." 161,4feae43e-cef6-46a0-a256-28b6e210b6a2,1wJOZrBz8DBJiwhGfgRpdwCdmf8ef7qP3,"After observing the video, which sequence of actions signify a shift in focus between c and the man, and what is the primary reason for this shift?",The sequence of actions that signify a shift in focus between c and the man is when c starts to shoot the ball more often.,The sequence of actions that signify a shift in focus between c and the man is when the man starts to run towards the hoop more often.,The sequence of actions that signify a shift in focus between c and the man is when c starts to pass the ball to the man more often.,The sequence of actions that signify a shift in focus between c and the man is when the man starts to pass the ball to c more often.,The sequence of actions that signify a shift in focus between c and the man is when c starts to shoot the ball more often.,The sequence of actions that signify a shift in focus between c and the man is when c starts to dunk the ball more often. 162,505834f9-c164-4ca7-9f4c-a37bd55e359d,1rniX4FEOEwXkElp3hZqIAZgHKzyhUz3h,"Considering all the actions taken with the measuring bottle, summarize and describe the process that c goes through to obtain, mix, and ultimately use the liquid contents for another task.","C first opens the measuring bottle and pours some liquid from a gallon into it. then, c shakes the measuring bottle to mix the liquid. finally, c uses the micropipette to take some of the liquid out of the measuring bottle and injects it into the chair.","C first opens the measuring bottle and pours some liquid from a gallon into it. then, c shakes the measuring bottle to mix the liquid. finally, c uses the micropipette to take some of the liquid out of the measuring bottle and drinks it.","C first opens the measuring bottle and pours some liquid from a gallon into it. then, c shakes the measuring bottle to mix the liquid. finally, c uses the micropipette to take some of the liquid out of the measuring bottle and injects it into the chair.","Initially, c first opens the measuring bottle carefully and pours some liquid from a gallon container into it. next, c gently shakes the measuring bottle to evenly mix the liquid inside. lastly, c skillfully uses the micropipette to extract some of the liquid from the measuring bottle and deliberately pours it onto the floor.","Initially, c first opens the measuring bottle and carefully pours some liquid from a gallon into it. subsequently, c shakes the measuring bottle thoroughly to mix the liquid well. finally, c utilizes the micropipette to extract some of the liquid out of the measuring bottle and transfers it into a designated container.","C first opens the measuring bottle and pours some liquid from a gallon into it. then, c shakes the measuring bottle to mix the liquid. finally, c uses the micropipette to take some of the liquid out of the measuring bottle and sprays it on the chair." 163,509e6545-5fff-4f73-ae0f-524dfa8b3c2c,1Zsg7XodMLPtz8Op0Bi32DseFyZHgt-Lf,"Based on c's actions, what is the significance of the wooden crates and the blocks with respect to the fork lift's involvement in the video?",The wooden crates and the blocks are used to transport the bricks. the bricks are placed on the wooden crates and then stacked on top of each other. the fork lift is used to move the wooden crates and the bricks.,The wooden crates and the blocks are used to transport the bricks. the bricks are placed on the wooden crates and then stacked on top of each other. the fork lift is used to move the wooden crates and the bricks.,The wooden crates and the blocks are used to build a structure. the blocks are stacked on top of each other to create a wall. the fork lift is used to move the wooden crates and the blocks into position.,The wooden crates and the blocks are used to create a barrier. the blocks are stacked in front of the wooden crates to create a wall. the fork lift is used to move the wooden crates and the blocks into position.,The wooden crates and the blocks are used to create a display. the blocks are stacked on top of each other to create a pyramid. the fork lift is used to move the wooden crates and the blocks into position.,The wooden crates and the blocks are used to create a sculpture. the blocks are stacked in a variety of shapes to create a work of art. the fork lift is used to move the wooden crates and the blocks into position. 164,5107687e-257e-4ea0-b63c-38431c2940f9,1nh0WkJzTtz8HYmWsvvB0lDPnMXoy_DHU,"From the actions c performed, what can you infer about the purpose and process of their activity? provide a brief explanation without simply listing the actions.",C is doing laundry.,C is cleaning the house.,C is packing a bag.,C is doing the dishes.,C is cooking dinner.,C is doing laundry. 165,51688142-10e7-48ab-adef-2caa5448b456,1IY4NHlMEHau-hZ4Rm6MDLFuqmtdgeKZs,"How does the introduction of the palm frond contribute to the development of the final product, and why might c have chosen to include it?",The palm frond contributes to the development of the final product by providing a decorative element.,The palm frond contributes to the development of the final product by providing a structural element.,The versatile palm frond significantly contributes to the development of the final product by providing a highly functional and essential element.,The palm frond contributes to the development of the final product by providing a decorative element.,The palm frond significantly contributes to the ultimate development of the final product by reliably providing a crucial protective element.,"The palm frond significantly contributes to the development of the final product by providing an essential nutritional element, enriching its value." 166,5194fe97-3fbc-4e3a-860b-4eb7fac7482b,135is8imkkyGNK70RCFXCvXQrTOk5rxyQ,"Instead of listing individual details, what is the overarching objective c is trying to achieve in this video, considering all the actions taken with the electric drill and the metal frame?",C is trying to fix a metal frame into a tile.,C is trying to remove tile residues from the hole saw of the electric drill.,C is trying to hold the electric drill in both hands.,C is trying to drill into the hole in the tile with the electric drill in both hands.,C is trying to place the electric drill in both hands on the tile.,C is trying to fix a metal frame into a tile. 167,51bea80c-3f6f-4406-ac56-9af2a547b2bf,1RSA2YLiyDSshR26HQfz2X83G0Us2egqx,"In this video, what is the main task that c and the woman are engaged in, and how does their interaction with each other evolve over the course of the video?",C and the woman are peeling pomegranates.,C and the woman are eating pomegranates.,C and the woman are playing with pomegranates.,C and the woman are selling pomegranates.,C and the woman are peeling pomegranates.,C and the woman are buying pomegranates. 168,530a5959-0ba6-4fde-9b19-494ef51fed33,1wN6namjZxURN_b9Xh1ce38QG3yS7Gkcl,"In the context of the video, discuss the role of social interactions, distractions, and the characters' behavior in relation to the primary activity.",The social interactions in the video are positive. the man and the girl are both seen interacting with each other in a friendly and supportive way.,The social interactions in the video are negative. the man and the girl are both seen arguing with each other. this is likely making their meal less enjoyable.,The social interactions in the video are neutral. the man and the girl are both seen eating their meal in silence. this is likely not having a significant impact on their meal experience.,The social interactions in the video are nonexistent. the man and the girl are both seen eating their meal alone. this is likely making their meal less enjoyable.,The social interactions in the video are forced. the man and the girl are both seen talking to each other only because they feel obligated to. this is likely making their meal less enjoyable.,The social interactions in the video are positive. the man and the girl are both seen interacting with each other in a friendly and supportive way. 169,532bcfc7-d64a-4bdd-ba30-76e95136674e,1NQylIWhxIxphAYr7O4VxLeCRrBldAgp8,"Summarize and compare the techniques used by c to cut branches and interact with the environment, explaining the significance of using his left and right hands as well as both hands together.",C uses his left hand to hold branches and his right hand to use the pliers and cutter. he also uses both hands to pull branches out of the way.,C uses his left hand to hold branches and his right hand to use the pliers and cutter. he also uses both hands to pull branches out of the way.,"While working, c uses his left hand to hold branches securely and his right hand to skillfully utilize the pliers and cutter. additionally, he resourcefully uses his feet to pull obstructing branches out of the way.","C skillfully uses his dominant right hand to grasp branches firmly, and his left hand to expertly wield the pliers and cutter. additionally, he cleverly employs his feet to pull any obstructive branches out of the way.",C uses both hands to hold branches and his feet to use the pliers and cutter.,"Cleverly, c utilizes his feet to firmly hold branches, while skillfully employing his hands to effectively operate the pliers and cutter." 170,53bd3263-96b7-426a-b869-b14457ef3f84,1KcdzKXu1bywEKKA6mpDHtL9luY1IHAax,Analyze and outline the person's approach to the primary activity shown in the video; describe any possible improvements or changes they could make to increase their effectiveness in the task.,"The person's approach to removing the plants from the ground is to first put on gloves, then touch the plants to identify which ones they want to remove, and then pull them out of the ground and put them in a bucket.","The person's approach is to first check the plants, then wipe the pavement, and then point at a plant.","The individual's chosen approach involves initially playing with the dog, subsequently engaging with a bug on the pavement, and ultimately proceeding to remove the plants from the ground.","The individual's approach initially involves carefully removing the plants from the ground, subsequently inspecting them, later diligently wiping the pavement clean, and finally gesturing towards them.","The individual's chosen approach involves initially removing the plants from the ground, subsequently inspecting them, afterwards wiping the pavement clean, subsequently pointing at the plants, and finally engaging in play with the dog.","The person's approach to removing the plants from the ground is to first put on gloves, then touch the plants to identify which ones they want to remove, and then pull them out of the ground and put them in a bucket." 171,545b2fb0-402b-4400-9ad3-cb017a47ad48,1ThpRzbC0kFTCqeKwXY2gxC3SZ1wbxbyK,Can you summarize the overall purpose of the video and describe how the main character c achieved their goal?,C is trying to fix a lawn mower.,"Currently, c is attempting to construct a lawn mower from scratch.","Currently, c is attempting to skillfully paint a lawn mower with precision.",C is trying to mow the lawn.,"Currently, c is actively attempting to successfully sell a lawn mower to someone.",C is trying to fix a lawn mower. 172,548cbaae-8311-4709-9822-185e18ff895b,18F7CY7y5FHbLcwOM2lIkwwhRAhgfOBVn,Analyze the overarching theme of the video and c's primary objective. how do the actions c is performing contribute to their purpose?,C is cleaning the house.,C is preparing to cook dinner.,C is cleaning the house.,C is taking a shower.,C is getting ready for bed.,C is doing laundry. 173,5599b364-197b-41eb-8aa7-02a50de5f59e,13hjpBukZr77nQkmEN7cgh1qBWnHkoxps,"Identify two critical sub-steps within the video, highlighting the significance of each in relation to the broader process. explain how these sub-steps contribute to the desired outcome without listing individual actions.",The two critical sub-steps in the video are dropping the dough into the frying pan and turning the dough over.,The two critical sub-steps in the video are adding the batter to the frying pan and cooking the batter until it is golden brown.,The two critical sub-steps in the video are dropping the dough into the frying pan and turning the dough over.,The two critical sub-steps in the video are adding the ingredients to the bowl and mixing the ingredients together.,The two critical sub-steps in the video are pouring the batter into the pan and flipping the pancakes over.,The two critical sub-steps in the video are adding the syrup to the pancakes and eating the pancakes. 174,55ea09ed-4590-4e59-8753-40a64d67abd9,1YkQyg07hdY1tBilc2sckDQooY8H9VLaZ,"What is the central problem being addressed in the video, and how does c gradually progress to solve it?",C is adjusting the lawn mower's pulley.,C is adjusting the lawn mower's blade.,C is adjusting the lawn mower's engine.,C is adjusting the lawn mower's carburetor.,C is adjusting the lawn mower's pulley.,C is adjusting the lawn mower's spark plug. 175,57055009-9f69-4f1c-b4cf-7ac0a079e4ca,1zoVUDzor5xOpgi70bmhOSA78yY_ddkFN,"Describe the overall process and purpose of c's actions throughout the video, focusing on the main steps she took in her activity.",C is painting a picture.,C is cleaning a paintbrush.,C is painting a picture.,C is preparing a cup of water.,C is resting her hand on the table.,C is rubbing the bristles of the paintbrush. 176,57420efd-6d84-462f-b03d-f45133760d79,1g4Stp8lkU4Ux9O7wG_ziZs60Ds_U6k6g,Identify the key recurring steps c uses when cleaning various objects in the video. can you summarize these steps into a general approach or strategy for cleaning?,"C's key recurring steps are rinsing, washing, and rinsing again.","C's key recurring steps are washing, rinsing, and drying.","C's key recurring steps are rinsing, washing, and putting in the dishwasher.","C's key recurring steps are washing, rinsing, and putting in the oven.","C's key recurring steps are rinsing, washing, and putting in the freezer.","C's key recurring steps are rinsing, washing, and rinsing again." 177,5748bb14-fa12-4c6e-b0cd-e2cdadb75889,1G6eHUQ-9BoDXPMhwxTSnErHlfwM5_72b,"Analyze the sequence of events in the video, then identify and explain the significance of c interacting with the black bag.",C interacts with the black bag to get a better grip on the paint brush.,C interacts with the black bag to clean it.,"Cleverly, c interacts with the inconspicuous black bag, intending to conceal and hide it securely.","The character c interacts with the mysterious black bag, intending to properly throw it away.",C interacts with the black bag to get a better grip on the paint brush.,"Casually, c interacts with the sizeable black bag, intending to carefully put it away." 178,5782e464-db9e-4bee-88f7-6c2f6727854b,1hQ2fY8PBWjP8jpeGF2n6IEXGDuIWDrMa,"As a general summary, what is the main activity that c is performing throughout the video, and what two types of seeds does he deal with using the same process?",C is grinding chia seeds and wheat.,"Currently, c is actively cooking chia seeds and nutritious wheat in the kitchen.","Currently, c is carefully cleaning chia seeds and wheat grains as a task.",C is grinding chia seeds and wheat.,"Carefully, c is sorting and separating chia seeds from wheat kernels efficiently.",C is packaging chia seeds and wheat. 179,57ae157f-e1ea-4dc1-ad67-8a34f6de0356,1FTN2nd3PRsVflKorQ_b8hviiA-YTiW8r,"In the context of the video, identify two critical actions that c performed and explain their importance for the long-term video understanding.","The two critical actions that c performed were picking up the seedlings and dropping them in the container in his left hand. the importance of these actions is that they allowed c to prepare the soil and seedlings for planting, and to plant the seedlings in the flower pots.",The two critical actions that c performed were pouring soil into the flower pots and adjusting the placement of the plants in the flower pots. the importance of these actions is that they allowed c to prepare the soil and seedlings for planting.,The two critical actions that c performed were putting his right hand in a sand container on the table and removing his right hand from the sand container on the table. the importance of these actions is that they allowed c to pick up the particles from the sand container.,The two critical actions that c performed were carrying an empty container from the table and dropping the empty container on the table. the importance of these actions is that they allowed c to prepare the empty container for receiving the sand from the sand container.,"The two critical actions that c performed were picking up the seedlings and dropping them in the container in his left hand. the importance of these actions is that they allowed c to prepare the soil and seedlings for planting, and to plant the seedlings in the flower pots.",The two critical actions that c performed were picking the trowel from the table and holding the sack on the table with his left hand. the importance of these actions is that they allowed c to prepare the trowel for planting the seedlings. 180,594255d7-0253-467d-abf6-c1b83ed0ff62,1WCkuXWl-jDOrsKp_Kc23io0FdlR-fMmG,"Identify the two main categories of activities c participates in throughout the video and, focusing on the most critical actions, briefly explain the goals of each category.",The two main categories of activities c participates in are labeling mortars and using the phone.,The two main categories of activities c participates in are cleaning and repairing.,The two main categories of activities c participates in are decorating and vandalizing.,The two main categories of activities c participates in are moving around and checking on the seedlings.,The two main categories of activities c participates in are labeling mortars and using the phone.,The two main categories of activities c participates in are operating the phone and walking around. 181,59c88bb6-c714-402b-a504-796b671ef785,1LtH2e2LMxjMkG7q9uApOJfJihUNV5wJD,"What can you infer about the key goal c is attempting to achieve within this video, judging by their actions?",C is trying to remove all of the wallpaper from the room.,C is trying to fold the wallpaper.,"Currently, c is attempting to place the wallpaper carefully in the dustbin for disposal.",C is trying to remove all of the wallpaper from the room.,"Currently, c is attempting to walk around the room, exploring the area.","Curiously, c is cautiously attempting to reach out and touch the intriguing wallpaper nearby." 182,59dcde1d-f210-48fc-b888-5574d8962a2c,1ZdUYpjzlGhNKE2PC8JK0UHtQW6jHTEHm,Summarize the overall process demonstrated in the video and identify two materials used by c to stir the paint in the coconut shell.,C stirs the paint in the coconut shell with a paint brush and a piece of wood.,C stirs the paint in the coconut shell with a paint brush and a piece of wood.,"Casually, c stirs the paint thoroughly inside the coconut shell, utilizing a repurposed bottle cover.","Carefully, c stirs the paint inside the coconut shell using his hands, mixing it well.","Enthusiastically, c stirs the paint carefully inside the coconut shell with a thin wooden stick.",C stirs the paint in the coconut shell with a spoon. 183,5a992458-f01e-49db-bb84-502c3ccedc7c,1-m3bLn-tVOwwNPqP7I-HAk4Kz9dv8bE_,"What was the primary goal of c in the video, and how did their interactions with the person contribute to this objective?",C's primary goal in the video is to set up their work station and start working on their computer.,"In the video, c's main objective or primary goal is essentially to communicate and talk to the person.",C's primary goal in the video is to eat the wrapper.,"C's primary goal, while demonstrating in the video, is to skillfully play the guitar with enthusiasm.",C's primary objective in the video presentation is to efficiently clean the cloth thoroughly.,C's primary goal in the video is to set up their work station and start working on their computer. 184,5b6b26d5-a6dd-459d-829c-98a3034f3741,1-gmQSBDZ1dy3jWa1QRWvM-qohwZPAseS,Identify and summarize the key steps c takes to prepare materials and tools before and during their work with the leaves. how do these steps contribute to the overall leaf-folding process?,"C prepares materials and tools by gathering leaves, scissors, and pins. he then folds the leaves and secures them with pins.","C prepares materials and tools by gathering leaves, scissors, and pins. he then folds the leaves and secures them with pins.","Carefully, c prepares materials and essential tools by diligently gathering leaves, scissors, and adhesive glue. he skillfully then folds the collected leaves and firmly secures them using the glue.","C prepares materials and tools by gathering leaves, scissors, and tape. he then folds the leaves and secures them with tape.","C diligently prepares materials and tools by carefully gathering leaves, scissors, and string. he then skillfully folds the leaves and expertly secures them with string.","In the process, c prepares essential materials and tools by diligently gathering leaves, scissors, and wire. next, he carefully folds the leaves and firmly secures them using the wire." 185,5d15c716-f179-462c-84a6-fa94e9d14e94,1vHJg1nqPlue6BT-wQJsbT3UGFRv0tBbz,"In the video, what was the main focus of c's activity, and how was it being executed in different ways in the garage?",C was working on a wood project in the garage.,C was cleaning the garage.,"One day, c was diligently organizing the cluttered garage space.","Recently, c was diligently searching for something specific within the cluttered garage.","Casually, c was taking a short break in the spacious garage.",C was working on a wood project in the garage. 186,5d744ae9-c7f7-43b0-b284-54de70ca1340,13SEhztCFiK3H_2XA3QWMPVPz_LhZpETe,"What was the overall purpose of c's actions in the video, and how did he adapt his approach in order to achieve that purpose?","C's overall purpose in the video was to paint the wall. he adapted his approach by using a paint brush at first, and then switching to a paint roller. he also took breaks to look around and remove any drips from the wall.",C's overall purpose in the video was to clean the wall. he adapted his approach by using a wet cloth to wipe down the wall. he also took breaks to look around and make sure that he was cleaning the entire wall.,C's overall purpose in the video was to decorate the wall. he adapted his approach by using different colors of paint to create a design on the wall. he also took breaks to look around and make sure that the design was symmetrical.,"C's overall purpose in the video was to paint the wall. he adapted his approach by using a paint brush at first, and then switching to a paint roller. he also took breaks to look around and remove any drips from the wall.",C's overall purpose in the video was to make the wall look more interesting. he adapted his approach by using different textures and patterns to create a visually appealing wall. he also took breaks to look around and make sure that the wall was balanced.,"C's overall purpose in the video was to make the wall look more professional. he adapted his approach by using high-quality paint and tools to create a smooth, even finish. he also took breaks to look around and make sure that the wall was free of imperfections." 187,5e43992d-adb3-4bf0-8d8e-221b895b7c9a,1M2RYC1-igcfLsVaYsIAGt2P4oxpoOOe4,"What are the key elements involved in preparing the dish and in what sequence do they occur? provide a concise summary, focusing on essential information.","The key elements involved in preparing the dish are parsley, onion, salt, vinegar, and spices. the parsley is washed and squeezed, the onion is chopped, the salt is added, the vinegar is added, and the spices are added. the dish is then cooked.","The key elements involved in preparing the dish are parsley, onion, salt, vinegar, and spices. the parsley is washed and chopped, the onion is chopped, the salt is added, the vinegar is added, and the spices are added. the dish is then served.","The key elements involved in preparing the dish are parsley, onion, salt, vinegar, and spices. the parsley is washed and squeezed, the onion is chopped, the salt is added, the vinegar is added, and the spices are added. the dish is then cooked.","The key elements involved in preparing the dish are parsley, onion, salt, vinegar, and spices. the parsley is washed and squeezed, the onion is chopped, the salt is added, the vinegar is added, and the spices are added. the dish is then stored in the refrigerator.","The key elements involved in preparing the dish are parsley, onion, salt, vinegar, and spices. the parsley is washed and chopped, the onion is chopped, the salt is added, the vinegar is added, and the spices are added. the dish is then cooked and served.","The key elements involved in preparing the dish are parsley, onion, salt, vinegar, and spices. the parsley is washed and squeezed, the onion is chopped, the salt is added, the vinegar is added, and the spices are added. the dish is then cooked, stored in the refrigerator, and served." 188,5f584429-b12b-4b15-9975-bf0cbfeaf2bc,1oy26nuZdYL9UYQo-yZDi9z81L_mznl0C,What actions can be inferred as the primary steps involved in constructing the wooden frame in this video?,"C cuts wood, measures the frame, and secures the frame.","C cuts wood, measures the frame, and secures the frame.","C skillfully cuts wood, meticulously measures the frame, then carefully paints the frame beautifully.","C diligently cuts wood, carefully measures the frame, skillfully nails the frame, ensuring accuracy.","Carefully, c cuts wood pieces, precisely measures the frame size, and securely glues the frame together.","C cuts wood, measures the frame, and sands the frame." 189,5f8fa774-ebfd-4721-b060-b33e166f1f93,1CtzYJCclFhD4cyFIQ8kbYLkfMpzCjmq7,"Considering all the actions in the video, how did c modify their method in checking and sharpening the knife to optimize the process?","C modified their method in checking and sharpening the knife by using a towel to wrap around the knife. this helped to protect their hands from the sharp blade. they also adjusted the electric knife sharpener to a lower setting, which helped to prevent the knife from becoming too sharp.","C modified their method in checking and sharpening the knife by using a whetstone instead of an electric knife sharpener. this helped to give the knife a sharper edge. they also sharpened the knife at a higher angle, which helped to make the edge more durable.","C modified their method in checking and sharpening the knife by using a honing steel instead of an electric knife sharpener. this helped to straighten the knife's edge. they also sharpened the knife at a lower angle, which helped to make the edge more forgiving.","C modified their method in checking and sharpening the knife by using a ceramic knife sharpener instead of an electric knife sharpener. this helped to give the knife a sharper edge that was also more durable. they also sharpened the knife at a higher angle, which helped to make the edge more resistant to chipping.","C modified their method in checking and sharpening the knife by using a manual knife sharpener instead of an electric knife sharpener. this helped to give the knife a sharper edge that was also more durable. they also sharpened the knife at a lower angle, which helped to make the edge more resistant to chipping.","C modified their method in checking and sharpening the knife by using a towel to wrap around the knife. this helped to protect their hands from the sharp blade. they also adjusted the electric knife sharpener to a lower setting, which helped to prevent the knife from becoming too sharp." 190,5fa41401-fc83-40d7-bbed-ff04dc83704e,12afKANwbUMdASmDb7XIaiHVUQtOjP2sy,Summarize the primary activity throughout the video and describe the significance of the coconut shell in that activity.,The primary activity throughout the video is painting a wardrobe. the coconut shell is used to hold the paint.,The primary activity throughout the video is painting a wardrobe. the coconut shell is used to hold the paint.,The primary activity throughout the video is sitting in a chair. the coconut shell is used to hold the chair.,The primary activity throughout the video is standing up and sitting down. the coconut shell is used to hold the person's balance.,The primary activity throughout the video is kicking a chair. the coconut shell is used to hold the person's foot.,The primary activity throughout the video is turning a paintbrush. the coconut shell is used to hold the paintbrush. 191,5fe9843b-0b74-4505-b864-86eb53c25cc6,1TwEZ-C_qrvxb2r22H8ugs7JZQZw9gBfO,"Analyzing the video, what can you deduce c’s main objective is in this sequence of events? provide a summary of the process.",C's main objective is to water the lawn.,C's main objective is to clean the truck.,C's main objective is to fix the hose.,C's main objective is to water the lawn.,C's main objective is to take a picture of the lawn.,C's main objective is to get in the truck. 192,5ff686f3-b211-4fad-97a0-70e134e09bd5,1RBD7OPXYtjnbnM7C_O9hyABQf3lIxYP5,Describe the primary activities of both individuals in the video and compare how they differ in terms of their focus and engagement.,"C is reading a book, while the lady is operating a laptop. c is more focused and engaged in his activity than the lady is in hers.","C is reading a book, while the lady is watching tv. c is more focused and engaged in his activity than the lady is in hers.","C is reading a book, while the lady is talking on the phone. c is more focused and engaged in his activity than the lady is in hers.","C is reading a book, while the lady is taking a nap. c is more focused and engaged in his activity than the lady is in hers.","C is reading a book, while the lady is playing a video game. c is more focused and engaged in his activity than the lady is in hers.","C is reading a book, while the lady is operating a laptop. c is more focused and engaged in his activity than the lady is in hers." 193,619fdd7a-03df-49b6-995e-2bba10a3d7f5,1jj65fCZ9d11_DPcT0w8_gsdDwapiS9VA,How did c's interaction with the man influence her crafting process and actions throughout the video?,C's interaction with the man did not influence her crafting process or actions throughout the video.,"Strikingly, c was deeply inspired by the artistic man to ingeniously create a beautiful flower-like red glitter paper design.",C was annoyed by the man's presence and tried to ignore him.,C's interaction with the man did not influence her crafting process or actions throughout the video.,"Confidently, c was attempting to impress the interested man by showcasing her exceptional crafting skills.","In a creative manner, c was attempting to communicate with the man by expressing herself through her crafting skills." 194,61e8261b-3c01-4c25-b293-80fad4083edb,1iuNhKxA7dhrzDat8-z5z3U2lErPmvKdS,Describe the main tasks that c is performing in this video and how these tasks are related to each other.,C is installing a roof.,C is repairing a roof.,C is cleaning a roof.,C is installing a roof.,C is painting a roof.,C is installing solar panels on a roof. 195,628e252f-e743-4054-92fd-b0ed6983571d,1zmSlrV0CqmEr7I4hroEcRDK9h2Lbvvy2,"What are the primary activities c and the man are engaged in, and how do they differ in focus or involvement with the dog?","C is making breakfast, while the man is playing with the dog.","C is making breakfast, while the man is playing with the dog.","Currently, c is actively playing with the dog outdoors, while the man is occupied making breakfast inside.","Currently, c and the man are both actively engaged in preparing breakfast together.",C and the man are both playing with the dog.,"Currently, c is working diligently, while the man is happily playing with the dog nearby." 196,631682a5-5574-41a8-904f-7ee96fc93683,1ZWZGTSwMxyIZQler-8brThRydKuhfn26,Analyze the overall process that c follows in the video. what is the main objective of the actions performed?,C is cutting pieces of cloth.,"Currently, c is diligently sewing together various pieces of cloth.",C is cutting pieces of cloth.,"Currently, c is diligently folding various pieces of cloth.",C is ironing pieces of cloth.,"Currently, c is carefully packing various pieces of cloth together." 197,640ad606-0376-48cb-bc6a-14bc34ec4eaa,1nrT3oS3EEDdgxxQOd0NYoqwF9UDQUI-s,"Describe the process c follows throughout the video to prepare the jackfruit seeds. how do her steps change over time, and what do you think is her primary goal?","C peels the jackfruit seeds, cuts them in half, and removes the flesh.",C eats the jackfruit seeds.,"C peels the jackfruit seeds, cuts them in half, and removes the flesh.","Casually, c throws the discarded jackfruit seeds away without hesitation.","Concerning gardening, plants the jackfruit seeds diligently.","Casually, c hands over the abundant jackfruit seeds to an appreciative individual nearby." 198,643d9ff3-8780-4c7f-84e2-290c16b8c3c1,1A3c_SWhd6kKofI4b_MBRus8E2Bj3inB6,"In this video, what do you consider to be the primary objective of the main character (c)? please include a summary of the crucial actions performed that support your conclusion.",C's primary objective in this video is to organize the various items in the kitchen.,C's primary objective in this video is to organize the various items in the kitchen.,"In this video, c's primary objective or main goal is to thoroughly clean and tidy up the kitchen area.",C's primary objective in this video is to cook a meal.,"In this particular video, c's primary objective is essentially to amuse and entertain the guests thoroughly.",C's primary objective in this particular video is solely focused on attempting to take a peaceful nap. 199,6472e377-b65c-461a-a750-9b28a673dc86,1pyv_9zSke_b0wtKvBU9XI45-Ve54WZB1,What are the main components involved during the process of tidying and organizing the kitchen in this video?,"**putting away utensils, cleaning up the counter, and organizing the fridge.**",Washing the dishes.** this is not correct because the person in the video does not wash any dishes.,Cooking.** this is not correct because the person in the video does not cook anything.,Setting the table.** this is not correct because the person in the video does not set the table.,"**putting away utensils, cleaning up the counter, and organizing the fridge.**",Taking out the trash.** this is not correct because the person in the video does not take out the trash. 200,65a204f7-b699-4b08-b3de-b5004433a004,1AXcz1VHr1PI5CrXIfUsNbI8BTwutt--O,What is the primary purpose of the interaction between c and the man in the video?,The man is helping c to cook the chapatis.,The man is trying to steal the chapatis.,The man is helping c to cook the chapatis.,The man is giving c cooking instructions.,The man is trying to teach c how to cook chapatis.,The man is trying to impress c with his cooking skills. 201,65b96025-dc4e-44d9-a75d-a995f11e19d0,1eZ-ksJJfYosFd2N5pwbsuMRy_9PDiqrV,"What was the main purpose of the actions performed by c throughout the video, and how did various objects, such as the cloth, silicone, and detergent, contribute to that purpose?",C was cleaning the oven.,"On the stove, c was carefully cooking eggs for breakfast.",C was making a cake.,"Earlier today, c was diligently doing the dishes in the kitchen.","In the kitchen, c was busily preparing a delicious meal for dinner.",C was cleaning the oven. 202,66032b30-cf5a-4c41-bc2d-b4ca772f0488,1GJCcv-1zDAkEDXz-hcnDrIpHi6-tn7Oq,"What is the primary activity c is engaged in throughout the video, and how do his actions with various tools contribute to that task?","C is engaged in measuring various objects in the video. he uses a foldable ruler to measure the length, width, and height of several objects, including a piece of wood, a plank of wood, and a piece of trim.","C is engaged in measuring various objects in the video. he uses a foldable ruler to measure the length, width, and height of several objects, including a piece of wood, a plank of wood, and a piece of trim.","Currently, c is actively engaged in the process of building a piece of furniture meticulously.",C is currently engaged in the process of repairing a damaged piece of furniture meticulously.,C is engaged in cleaning a piece of furniture.,"Currently, c is actively engaged in organizing and assembling a specific piece of furniture." 203,662d710e-54ea-4e63-bfc3-8f4e14873fd4,1pBwG0KiHUekk85EaflFpnPvGHzlso90Z,"How would you compress the overall purpose of c's actions in the video into a single, concise statement?",C's overall purpose in the video is to play soccer.,C's overall purpose in the video is to warm up.,C's overall purpose in the video is to cool down.,C's overall purpose in the video is to play soccer.,C's overall purpose in the video is to celebrate.,C's overall purpose in the video is to reflect on the game. 204,66ae46ba-63c5-41b1-ab18-33a5561660f9,1Tl2nLuo2kt-5C7et8M8QDFTecOnDrJ8T,How did c's process in the kitchen reflect effective organization and management of items on the counter and inside the fridge? provide specific examples to support your answer.,"C organized the items on the counter and inside the fridge by placing them in logical locations. for example, he placed the flour on the steel wall cabinet, the water bottle on the sink top, and the chips on the shelf. he also placed the jug under the running tap, the bag of flour under the table, and the bin under the desk.",C did not organize the items on the counter and inside the fridge. he simply placed them wherever he could find space.,"C organized the items on the counter and inside the fridge by placing them in logical locations. for example, he placed the flour on the steel wall cabinet, the water bottle on the sink top, and the chips on the shelf. he also placed the jug under the running tap, the bag of flour under the table, and the bin under the desk.","Carefully, c organized the items on the counter and inside the fridge by color coordination. for instance, he placed the flour on the steel wall cabinet, the water bottle strategically on the sink top, and the chips neatly on the shelf. moreover, he also placed the jug under the running tap, the bag of flour securely under the table, and the bin conveniently under the desk.","Carefully, c organized the items on the counter and inside the fridge by size. for instance, he placed the flour on the steel wall cabinet, the water bottle on the space-saving sink top, and the crunchy chips on the shelf. moreover, he strategically placed the jug under the running tap, the bag of flour under the sturdy table, and the bin under the wooden desk.","Carefully, c organized the items on the counter and inside the fridge methodically by type. for instance, he deliberately placed the flour on the steel wall cabinet, the water bottle on the sink top, and the chips on the shelf. additionally, he also positioned the jug under the running tap, the bag of flour under the table, and the refuse bin under the desk." 205,685d5e48-5e07-4522-88aa-4307207d15c9,1kpbVcIkzVaXqMXF4zctnr7ryNQmkgYYZ,"Based on the video, discuss the key moments where ""c"" made adjustments and their possible significance in achieving the desired outcome.",C makes adjustments to the clay pot by hitting it with the wood plank and adjusting it with both hands. c makes these adjustments until the clay pot is the desired shape.,C makes adjustments to the clay pot by dipping it in the pot of water and hitting it with the wood plank. c makes these adjustments until the clay pot is the desired shape.,C makes adjustments to the clay pot by hitting it with the wood plank and adjusting it with both hands. c makes these adjustments until the clay pot is the desired shape.,C makes adjustments to the clay pot by hitting it with the wood plank and adjusting it with one hand. c makes these adjustments until the clay pot is the desired shape.,C makes adjustments to the clay pot by dipping it in the pot of water and adjusting it with one hand. c makes these adjustments until the clay pot is the desired shape.,"C makes adjustments to the clay pot by hitting it with the wood plank and adjusting it with both hands, then dipping it in the pot of water. c makes these adjustments until the clay pot is the desired shape." 206,689396c1-fc87-48f1-bdaf-00bc5efb3d4f,1aiRCgfMyGOG8tBPnHeLtt-fSuzjUJ6pA,"What was the main dish prepared in the video, and which key ingredients were used?","The main dish prepared in the video is a stir-fry of spring onions, peppers, and leaves.","In the video, the main dish skillfully prepared by the chef is a delicious, hearty soup.",The main dish prepared in the video is a salad.,"In the video, the primary dish skillfully prepared by the chef is a delicious curry.","In the video, the primary main dish showcased and prepared is indeed a delicious stew.","The main dish prepared in the video is a stir-fry of spring onions, peppers, and leaves." 207,68cd8a82-f3ea-4816-8dca-045616a41f25,1ge93JMNcq-V6Q79uKNxeOaQwHP-h-0e7,"Taking into account the majority of the actions performed by c, what can you deduce was the central objective within the garage environment?",The central objective within the garage environment was to fix a bolt.,The central objective within the garage environment was to clean the garage.,The central objective within the garage environment was to fix a bolt.,The central objective within the garage environment was to assemble a piece of furniture.,The central objective within the garage environment was to repair a car.,The central objective within the garage environment was to build a birdhouse. 208,68e0bb20-414d-42ef-a0a0-e821efbe8e06,1whGYIBLbWhU360VqPLkK-09GuVvutnwg,"Explain how c utilized various tools throughout the video, and how those tools contributed to the overall goal of preparing the vacuum cleaner.","C used the pair of scissors to cut the metal rod, the phone to inspect the metal pipe, and the metal rod to clean the metal pipe.","C used the pair of scissors to cut the metal pipe, the phone to clean the metal pipe, and the metal rod to inspect the metal pipe.","C used the pair of scissors to cut the metal rod, the phone to inspect the metal pipe, and the metal rod to clean the metal pipe.","C used the pair of scissors to cut the metal rod, the phone to inspect the metal pipe, and the vacuum cleaner to clean the metal pipe.","C used the pair of scissors to cut the metal pipe, the vacuum cleaner to inspect the metal pipe, and the metal rod to clean the metal pipe.","C used the pair of scissors to cut the metal pipe, the vacuum cleaner to clean the metal pipe, and the phone to inspect the metal pipe." 209,68f6ddfd-bf42-4bee-b1c9-a48db428e586,1ySH9v2JmtcKRXhU84YQ9URP0uz3ksKEq,"Based on the various steps undertaken by c, what is the primary goal of this video and how do the different actions contribute to achieving this goal?",C is preparing a meal.,C is cleaning the kitchen.,C is doing the dishes.,C is preparing a meal.,C is taking out the trash.,C is making a salad. 210,69786e7e-9a77-4192-a8b7-01c56de1fa82,1aLyklMohXaMqt76jEiosbnCjHsIhfxF2,"What is the primary method used by c to handle both the lemons and the pruning shears, and why might this method be advantageous in achieving her goals?",C uses her right hand to hold the pruning shears and her left hand to hold the lemons.,"C skillfully uses her dominant right hand to securely hold the lemons, and her left hand to firmly grip the pruning shears.",C uses her right hand to hold the pruning shears and her left hand to hold the lemons.,"Carefully, c skillfully employs both hands to firmly hold the pruning shears, ready for usage.","Carefully, c utilizes both hands to firmly hold the lemons in place.",C does not use her hands at all. 211,6a0b0189-25fd-46f8-9d1a-99912de3d5f5,1LSPq9TThUqNhrGJjXFq18_UdMUD_fjKk,"In the context of the entire video, which actions most contribute to the overall theme and why? analyze the importance of these activities as they relate to the main story being portrayed.",C's actions in the video show that she is a caring and responsible person.,"The evidence of c's actions, as seen in the video, clearly demonstrates that she is notably a lazy and utterly irresponsible individual.",C's actions in the video show that she is a creative and imaginative person.,C's actions in the video show that she is a caring and responsible person.,"The subtle cues in c's actions throughout the video evidently demonstrate that she is a rather shy, introverted person by nature.","The video displays c's actions, clearly indicating that she is a confident, self-assured, and outgoing person, effortlessly socializing." 212,6b8b47be-786f-4436-b70b-796c1b70f975,1zs7c2hN2B82JzM7LiqVc5Je-A5RCUZ5o,Analyze the video and summarize the main task being performed by c throughout the sequence. what is the general purpose of his actions and how do they contribute to that purpose?,C is changing the oil in a lawn mower.,"Currently, c is meticulously cleaning the lawn mower outside.",C is changing the oil in a lawn mower.,"Currently, c is diligently working on repairing the lawn mower effectively.",C is adjusting the lawn mower.,"Currently, c is carefully inspecting the lawn mower's condition and performance." 213,6c2c9e3b-935d-4dbf-8f1d-7876a5210518,1bzYIdgNUerUdgacjYn7F-TAenyTpoDvh,"In this video, what is the primary occupation or focus of c's attention while they engage with their surroundings? support your answer with specific examples or explanations.",C's primary occupation or focus of attention while they engage with their surroundings is the cat.,C's primary occupation or main focus of attention when interacting or engaging with their surroundings is primarily the appreciation of art.,C's primary occupation or focus of attention while they engage with their surroundings is the pathway.,C's primary occupation or focus of attention while they engage with their surroundings is the cat.,"C's primary occupation or focus of attention, when they actively engage with their surroundings, is predominantly the man.",C's primary occupation or main focus of attention while they actively engage with their surroundings largely involves appreciating the scenery. 214,6c8fe7a9-3917-4397-b73b-90d93371b008,18pPjYuDgNrcRQU2QcclvIzMatgVfhbKW,"What were the primary steps c followed to attach the planks to the stair railing? consider summarizing the entire process, including the tools used and any changes in his approach.","C drilled the plank on the stair railing with the drill driver, then placed the plank on the stair railing and drove in the wood screws with the drill driver.","C drilled the plank on the stair railing with the drill driver, then placed the plank on the stair railing and drove in the wood screws with the hammer.","Carefully, c drilled the plank on the stair railing with the hammer, after that, c placed the plank on the stair railing meticulously and drove in the wood screws securely with the drill driver.","Carefully, c placed the wooden plank on the stair railing, then firmly drilled the plank onto the stair railing utilizing the drill driver, and finally drove in the wood screws using the hammer.","Carefully, c placed the sturdy plank on the stair railing, then firmly drilled the wooden plank onto the stair railing using the hammer, and finally drove in the wood screws with the dependable drill driver.","C drilled the plank on the stair railing with the drill driver, then placed the plank on the stair railing and drove in the wood screws with the drill driver." 215,6c901d03-3413-41a8-9aa0-8f9f6ed6b6f1,1_DyJYOjC2mxkd563RJJCRTnbC7OypQRu,"Summarize the unique ways in which the three individuals prepared and ate their tacos, focusing on the most prominent differences.","The three individuals prepared and ate their tacos in different ways. the man used a fork to eat his tacos, while the woman and child used their hands. the man also ate his tacos with both hands, while the woman and child ate their tacos with one hand.",The three individuals prepared and ate their tacos in the same way. they all used a fork to eat their tacos.,"Interestingly, the three individuals prepared and consumed their tacos in unique ways. the adult man utilized a fork for eating his tacos, whereas the woman and child employed their hands. the woman additionally devoured her tacos using both hands, while the young child managed to eat her tacos using only one hand.","In distinct manners, the three unrelated individuals prepared and consumed their tacos. the adult man utilized a fork for eating his tacos, whereas the woman and child relied on their hands. impressively, the woman managed to eat her tacos with both hands, while the child skillfully ate his tacos with just one hand.","The three individuals, following the same method, prepared and consumed their tacos in an identical way. they all consistently used their hands to eat their delicious tacos.","The three individuals prepared and ate their tacos in different ways. the man used a fork to eat his tacos, while the woman and child used their hands. the man also ate his tacos with both hands, while the woman and child ate their tacos with one hand." 216,6d2092d3-8e9c-4097-841c-beec3c816410,1dV5qd4-p_QqkxmYylQkm0CVR2Yyon3IU,"What was the main purpose of c's actions up until he began drilling the nails, and how did his actions contrast with those after he began drilling the nails?","C's actions up until he began drilling the nails were focused on preparing the tools and materials for the task at hand. he drew a line on the worktable, selected the appropriate drill bit, fixed it into the power drill, and drilled a hole in the worktable. after he began drilling the nails, his actions were focused on assembling and securing the wooden structure.","C's actions up until he began drilling the nails were focused on preparing the tools and materials for the task at hand. he drew a line on the worktable, selected the appropriate drill bit, fixed it into the power drill, and drilled a hole in the worktable. after he began drilling the nails, his actions were focused on assembling and securing the wooden structure.","C's actions up until he began drilling the nails were focused on assembling and securing the wooden structure. he drew a line on the worktable, selected the appropriate drill bit, fixed it into the power drill, and drilled a hole in the worktable. after he began drilling the nails, his actions were focused on preparing the tools and materials for the task at hand.","C's actions up until he began drilling the nails were primarily concentrated on repairing the wooden structure. he carefully drew a line on the worktable, meticulously selected the appropriate drill bit, securely fixed it into the power drill, and skillfully drilled a hole in the worktable. after he started drilling the nails, his subsequent actions were focused on disassembling the wooden structure.","C's actions up until he began drilling the nails were focused on destroying the wooden structure. he drew a line on the worktable, selected the appropriate drill bit, fixed it into the power drill, and drilled a hole in the worktable. after he began drilling the nails, his actions were focused on rebuilding the wooden structure.","Up until he started, c's actions were concentrated on creating a work of art. he carefully drew a line on the worktable, meticulously selected the suitable drill bit, securely fixed it into the power drill, and skillfully drilled a hole in the worktable. however, after he began drilling the nails, his subsequent actions were focused on intentionally destroying the work of art." 217,6dd07731-937c-4b63-b296-0a947ffe6996,18aDTQXDVusiG0UDwbJxO4rNUF4O3ce0X,Can you identify a recurring pattern in c's actions and explain its significance in the context of the video?,"C repeatedly picks up and puts down objects, such as the laptop, cables, and charger. this suggests that c is trying to decide what to pack and how to pack it.","Casually, c repeatedly glances and looks around the room, which strongly suggests that c is attempting to locate or find something.","C repeatedly moves around the room, which suggests that c is trying to get comfortable.","Frequently, c repeatedly utilizes the laptop, clearly indicating that c is diligently attempting to complete and finish work.","C repeatedly picks up and puts down objects, such as the laptop, cables, and charger. this suggests that c is trying to decide what to pack and how to pack it.","C persistently and repeatedly covers the pen, which strongly suggests that c is apparently attempting to hide something." 218,6e72ace9-3ea8-4928-b1b9-07cd2787bdbc,1CYI0iTDpiDipOEF_FCycNl4l91S6uz2J,What was the main purpose of c using tissue paper and what was the overall impact of this action on the dessert bowl's presentation?,C used tissue paper to wipe the edges of the dessert bowl to make it look neat and tidy.,C used tissue paper to decorate the dessert bowl.,"Carefully, c utilized used tissue paper to effectively absorb any possible excess moisture present from the cake batter.",C used tissue paper to wipe the edges of the dessert bowl to make it look neat and tidy.,"Carefully, c utilized used tissue paper to effectively prevent the batter from sticking to the bowl's sides.","Carefully, c utilized used tissue paper for maintaining the batter's warmth, keeping it warm." 219,6f116779-b97d-4d3d-bbea-cdb2ab43447e,1pxHlAeKsjbMrLPIZPWwZbzVpiiuTpME7,What is the primary focus of the video regarding the interactions between the woman and c?,The primary focus of the video regarding the interactions between the woman and c is that they are working together to clean the house.,The primary focus of the video regarding the interactions between the woman and c is that they are working together to clean the house.,"The primary focus of the video, which showcases the interactions between the woman and c, is evidently highlighting that they are engaging in a heated argument.","The primary focus of the video, which showcases the interactions occurring between the woman and the man, clearly suggests that they are engaging in flirtatious behavior.",The primary focus of the video regarding the interactions between the woman and c is that they are having a conversation.,"The primary focus illustrated in the video, regarding the interactions occurring between the woman and c, portrays that they are actively engaged in playing a game." 220,6f42ba6a-cb2a-428f-bffb-7a15abd94727,1Y3CpT8ZAqPalw8nKzOfcYEI85oZvTRSK,"Identify the primary tools and ingredients c used throughout the video, and discuss how they contributed to the overall dessert preparation process.","The primary tools and ingredients c used throughout the video were a spatula, a strainer, a dessert bowl, cocoa powder, and tissue paper. the spatula was used to spread the batter in the bowl. the strainer was used to sieve the cocoa powder into the bowl. the dessert bowl was used to hold the batter. the cocoa powder was used to add flavor and color to the batter. the tissue paper was used to wipe the edges of the bowl.","The primary tools and ingredients c used throughout the video were a spatula, a strainer, a dessert bowl, cocoa powder, and tissue paper. the spatula was used to spread the batter in the bowl. the strainer was used to sieve the cocoa powder into the bowl. the dessert bowl was used to hold the batter. the cocoa powder was used to add flavor and color to the batter. the tissue paper was used to wipe the edges of the bowl.","The primary tools and ingredients c used throughout the video were a mixing bowl, a whisk, a baking dish, flour, sugar, eggs, and butter. the mixing bowl was used to mix the batter. the whisk was used to beat the eggs. the baking dish was used to bake the cake. the flour was used to add structure to the cake. the sugar was used to add sweetness to the cake. the eggs were used to add moisture to the cake. the butter was used to add flavor and richness to the cake.","The primary tools and ingredients c used throughout the video were a muffin tin, a spoon, chocolate chips, flour, sugar, eggs, and butter. the muffin tin was used to bake the muffins. the spoon was used to scoop the batter into the muffin tin. the chocolate chips were used to add flavor and color to the muffins. the flour was used to add structure to the muffins. the sugar was used to add sweetness to the muffins. the eggs were used to add moisture to the muffins. the butter was used to add flavor and richness to the muffins.","The primary tools and ingredients c used throughout the video were a cake pan, a spatula, chocolate frosting, flour, sugar, eggs, and butter. the cake pan was used to bake the cake. the spatula was used to spread the frosting on the cake. the chocolate frosting was used to add flavor and color to the cake. the flour was used to add structure to the cake. the sugar was used to add sweetness to the cake. the eggs were used to add moisture to the cake. the butter was used to add flavor and richness to the cake.","The primary tools and ingredients c used throughout the video were a mixing bowl, a whisk, a baking sheet, flour, sugar, eggs, and butter. the mixing bowl was used to mix the batter. the whisk was used to beat the eggs. the baking sheet was used to bake the cookies. the flour was used to add structure to the cookies. the sugar was used to add sweetness to the cookies. the eggs were used to add moisture to the cookies. the butter was used to add flavor and richness to the cookies." 221,70532caf-5e89-46da-9d1d-b77af403dce6,1U76f1NYIBEFUSrUBMyx21S9HJ55WVnJC,Discuss the primary focus of the individual actions portrayed in the video and the overall purpose of these actions. how do the character's behaviors align with this purpose?,The primary focus of the individual actions portrayed in the video is to read a book. the character's behaviors align with this purpose by consistently reading the book and making minor adjustments to their position to maintain comfort.,"The primary focus of the individual actions portrayed in the video is to relax. the character's behaviors align with this purpose by sitting in a comfortable position, adjusting their body as needed, and taking breaks to look around the room.",The primary focus of the individual actions portrayed in the video is to read a book. the character's behaviors align with this purpose by consistently reading the book and making minor adjustments to their position to maintain comfort.,The primary focus of the individual actions portrayed in the video is to socialize. the character's behaviors align with this purpose by looking around the room and making eye contact with the other person in the room.,The primary focus of the individual actions portrayed in the video is to work. the character's behaviors align with this purpose by sitting at a desk and using a laptop.,The primary focus of the individual actions portrayed in the video is to exercise. the character's behaviors align with this purpose by stretching and moving their body. 222,715ae2dd-58ed-4abf-b4e2-0348fb12f611,1OlScJzcEKWY2BQr99w3rtklMbJHFTdTN,"Taking into account all steps performed by c, which techniques and tools were crucial for achieving the desired outcome? explain why these were vital in c's process.","The rolling pin, the spatula, and the oven were crucial for achieving the desired outcome.","The essential ingredients, the flour, the water, and the vital yeast, were absolutely crucial for achieving the desired, successful outcome.","The rolling pin, the spatula, and the oven were crucial for achieving the desired outcome.","The essential tools, the cutting board, the knife, and the bowl, were absolutely crucial for achieving the desired culinary outcome.","The pizza sauce, the cheese, and the pepperoni were crucial for achieving the desired outcome.",The girl's significant presence was absolutely crucial for successfully achieving the desired outcome in the situation. 223,719432f6-c6eb-44f1-a005-b22e0c4312e6,1L4hu10HZhI3UsFO6kWidSyK8tLgUW8xp,"Describe the relationship between the measuring, writing, and cutting activities observed in the video, and explain their purpose in the context of the overall task being performed.","The measuring, writing, and cutting activities are all part of the process of measuring a wall and cutting a piece of wood to fit it. the measuring tape is used to measure the width of the wall, the paper is used to write down the measurements, and the wood cutter is used to cut the wood to the correct size.","The measuring, writing, and cutting activities actively contribute to the process of making a paper airplane. utilizing the measuring tape, one measures the paper's length, writing down the measurements on the paper itself, and finally, a wood cutter carefully trims it to the desired size.","The measuring, writing, and cutting activities, essential components of constructing a house, are all part of the process. the measuring tape is utilized to accurately measure the length of the walls, the paper is employed to record the measurements, and the wood cutter safely cuts the wood to the precise size needed.","The measuring, writing, and cutting activities are all part of the process of making a cake. the measuring tape is used to measure the ingredients, the paper is used to write down the measurements, and the wood cutter is used to cut the cake into pieces.","The measuring, writing, and cutting activities are all part of the process of measuring a wall and cutting a piece of wood to fit it. the measuring tape is used to measure the width of the wall, the paper is used to write down the measurements, and the wood cutter is used to cut the wood to the correct size.","In dressmaking, the measuring, writing, and cutting activities are all essential parts of the process of creating a dress. the measuring tape is utilized to accurately measure the body, while the paper records the necessary measurements, and the wood cutter efficiently cuts the fabric to the proper size." 224,71d00225-7ea5-46a0-8015-9b5a667f619a,1yCVMO4XerasN84VFxmIZ_XeGqugDiSZ4,Analyze the video and identify the main components of the dish being prepared. what are the most significant ingredients and techniques used during the cooking process?,"The main components of the dish being prepared are eggs, garlic, oil, food, spices, and a pan. the most significant ingredients are eggs and garlic. the most significant techniques are stirring, pouring, and dicing.","The main components of the dish being prepared are eggs, garlic, oil, food, spices, and a pan. the most significant ingredients are eggs and garlic. the most significant techniques are stirring, pouring, and dicing.","The main components of the dish being prepared are milk, sugar, and chocolate. the most significant ingredients are milk and sugar. the most significant techniques are blending, pouring, and stirring.","The main components of the dish being prepared are lettuce, tomatoes, cucumbers, and onions. the most significant ingredients are lettuce and tomatoes. the most significant techniques are chopping, adding, and tossing.","The main components of the dish being prepared are bread, mayonnaise, cheese, lettuce, tomato, and ham. the most significant ingredients are bread and mayonnaise. the most significant techniques are spreading, adding, and putting together.","The main components of the dish being prepared are pizza crust, tomato sauce, cheese, pepperoni, sausage, and mushrooms. the most significant ingredients are pizza crust and tomato sauce. the most significant techniques are spreading, adding, and baking." 225,726b34e3-7d63-4ae8-b850-ddc581494dfe,1hfxOHLbjhNTpSMsQ1M0SY4bq9DcdXIqz,"Summarize the main activities c gets involved in during the video, and explain how these activities are interconnected.",C eats chips and uses an ipad.,C eats chips and watches tv.,C eats chips and talks to her friends.,C eats chips and uses an ipad.,C eats chips and plays games.,C eats chips and reads a book. 226,72d99202-1167-4dba-a5bc-07c16b5cb849,1MaqB7HNgnL7UtDlUSwB8TxR4u0ijp11q,"What is the recurrent activity performed by c in the video, and how does it contrast with the woman's activities?",C repeatedly picks up and drops cans of chicken noodle soup from the kitchen shelf. the woman does not perform this action.,"C continuously picks up and drops sachets of corn flakes from the kitchen shelf, again and again. contrarily, the woman does not perform this action.",C repeatedly picks up and drops cans of chicken noodle soup from the kitchen shelf. the woman does not perform this action.,"Continuously, c picks up and drops cans of soup from the kitchen cabinet numerous times. however, the woman refrains from performing this particular action.","Consistently, c repeatedly picks up and drops bowls from the kitchen cabinet. meanwhile, the woman does not perform this action at all.",C repeatedly picks up and drops pots from the kitchen cabinet. the woman does not perform this action. 227,7375e9bb-cffa-4495-8720-635d2d8c256e,17eksm6UTtSs422lWjaHrGEut4JL9daV_,"Based on the events in the video, what are the key steps and tools c uses to achieve their main objective? provide a concise breakdown without listing every single action.","C uses a trowel to spread concrete on the bricks, and then uses a hammer to level the bricks.","C uses a trowel to spread concrete on the bricks, and then uses a saw to cut the bricks.","Skillfully, c uses a trowel to carefully spread concrete on the bricks, and then utilizes a sharp chisel to break the bricks effectively.","Carefully, c utilizes a trowel to evenly spread concrete on the bricks, and subsequently employs a level to accurately measure the bricks' alignment.","C diligently uses a trowel to evenly spread concrete on the bricks, and afterward, skillfully uses a brush to carefully paint those bricks.","C uses a trowel to spread concrete on the bricks, and then uses a hammer to level the bricks." 228,73ecc613-5e39-4348-94ba-ee6cb197367a,1kNFs14o96IHQ4n6BAxIcl-9OWMZ9EaVq,"Based on the video, what additional activity was c engaged in while primarily focusing on working on the baby swing chair?",C was also talking to a woman while assembling the baby swing chair.,C was also listening to music while assembling the baby swing chair.,C was also talking to a woman while assembling the baby swing chair.,"Concurrently, c was attentively watching tv while skillfully assembling the comfy baby swing chair.","Concurrently, c was eating as well as meticulously assembling the baby's comfortable swing chair.","Curiously, c was also dozing off intermittently while diligently assembling the baby swing chair." 229,73ecef43-37f0-4f09-ad82-1bcc5031577e,1yvmwj8txwD8873_RGzO2aooE02-2FkvN,Describe the primary objective of the person in the video and explain how they accomplished it without listing specific actions.,The person in the video is trying to install a metal rod into a hole in a concrete staircase.,The person in the video is trying to install a metal rod into a hole in a concrete staircase.,The individual featured in the video is attempting to repair a damaged staircase that appears to be broken.,The individual featured in the video is attempting to construct a brand new staircase design.,"In the video, the individual featured is attempting to thoroughly clean a heavily soiled staircase.",The person in the video is trying to decorate a staircase. 230,740db272-61ce-43c8-88a9-46d669d93bfb,1v4TXePhzza5RFU8SFRPuTS1ce6U08l_A,"What is the primary objective of the character in this video, and how does their approach change throughout the process?",The primary objective of the character in this video is to prepare dough.,The primary objective of the character in this video is to make a pizza.,The primary objective of the character in this video is to bake a cake.,The primary objective of the character in this video is to cook a meal.,The primary objective of the character in this video is to prepare dough.,The primary objective of the character in this video is to clean the kitchen. 231,742dd0fc-018f-4e1f-b2fb-e04d38c97894,1KPF9FYFc1YE8cRHpsQFDNlhBSkIXj2OI,Identify and discuss the three most critical turning points or moments within the video that significantly impacted the progression of the events.,"The three most critical turning points or moments within the video are when the man drops a card on the table, when c talks to the man, and when the man drums on the table with his hand.","The three most critical turning points or moments within the video are when the man picks up a card from the table, when c picks up a card from the table, and when c plays a card.","The three most critical turning points or moments within the video are when the man plays a card, when c plays a card, and when the man wins the game.","The three most critical turning points or moments within the video are when the man loses the game, when c wins the game, and when the man and c shake hands.","The three most critical turning points or moments within the video are when the man and c start playing the game, when the man and c stop playing the game, and when the man and c leave the table.","The three most critical turning points or moments within the video are when the man drops a card on the table, when c talks to the man, and when the man drums on the table with his hand." 232,7431615c-e482-4669-8d5e-1d916af17d4d,1R7Logo3Rs5E1LwHtqjS7CqxKDEkD0tjN,"Describe the overarching process c is conducting in the laboratory, focusing on the purpose of their actions rather than the specific steps taken.",C is conducting an experiment to test the growth of seedlings.,"Currently, c is thoroughly cleaning and tidying the laboratory space.",C is preparing for a presentation.,"Currently, person c is thoroughly inventorying supplies in stock.",C is conducting an experiment to test the growth of seedlings.,"Currently, c is meticulously taking inventory of all the laboratory's essential equipment and tools." 233,74de03a0-1911-4663-a4e7-071423c1c518,1PBV-nnbXPcRLvTvQqo_2SME0yRcLbYNg,"Given the repetitive nature of certain actions in the video, can you identify a main, overarching task being accomplished by 'c'? describe that task without listing individual actions.",C is embroidering a pattern.,C is sewing a button.,"Currently, c is diligently knitting a beautifully designed scarf with care.",C is embroidering a pattern.,"Currently, c is meticulously and creatively crocheting a warm hat.","Currently, an individual named c is meticulously weaving together a lovely basket." 234,752578b3-efa3-4312-96d7-0bed2ea7576a,1nZqqfEmJyhIuU-R0xsxswDKTylJBarEp,"What is the overall objective that c is trying to achieve throughout these actions in the video, and how do the different steps contribute to this objective?",C is trying to create a painting.,C is trying to clean her laptop.,C is trying to organize her supplies.,C is trying to make a cup of tea.,C is trying to create a painting.,C is trying to answer a phone call. 235,76dc3143-7f05-47de-85d4-619de9a3882b,1fHKfetX7ipUMe1wLyAwxD4yLVgzWpp0n,"What was the primary task that c was focused on throughout the video, and how did different actions contribute to its completion?",C was focused on creating a mold for a spoon.,C was focused on creating a mold for a spoon.,"Diligently, c was entirely focused on cleaning the workshop area thoroughly.","Concentrating diligently, c was primarily focused on organizing and overseeing the successful workshop preparations.","Concentrated diligently, c was solely focused on carefully repairing the workshop's interior.",C was focused on taking inventory of the workshop. 236,7741f012-a2a4-4ca8-a6fc-a4ab51c98262,1aK5RRqwYs_ZYA81cP_FyUTvoxFWmvl24,"What is the primary intention of the individual in the video, and how does the systematic process they follow contribute to that goal?",The individual is making a brick.,The individual is making a sculpture.,"In this scenario, the creative individual is diligently making an artistic vase by hand.",The single person present is actively engaged in creating a ceramic pot.,The single individual is currently involved in making a decorative plate.,The individual is making a brick. 237,776d7dcf-6a44-4db3-9d37-8a75635388c0,1oHtxyXy7oj84FtM6n1Hr7BKaFqyEfKQ8,What is the significance of c's actions involving the electronic scale and mixing the dough in the video?,"C is using the electronic scale to measure the amount of dough, and the mixer to mix the dough.","C is using the electronic scale to measure the amount of dough, and the mixer to mix the dough.","C is using the electronic scale to measure the amount of flour, and the mixer to mix the flour.","Carefully, c is utilizing the precise electronic scale to accurately measure the required amount of water, and employing the mixer to effectively mix the water.","Currently, c is diligently utilizing the electronic scale to precisely gauge the amount of yeast needed, and employing the mixer to blend the yeast effectively.","Carefully, c is utilizing the precise electronic scale to accurately measure the required amount of salt, and employing the mixer to effectively blend the salt." 238,77d42c88-589b-487f-84f3-b7631a8c9f2e,19f63VFaad9RX8U4V7nMKLw6CJhRTpkod,Can you describe the relationship between c and the woman by analyzing their overall interactions throughout the video? provide a summary that clearly demonstrates your ability to compress information from the video.,C and the woman are friends.,"Coincidentally, both c and the unidentified woman happen to be strangers to each other.","Surprisingly, in this unusual situation, c and the woman are practically bitter enemies.",C and the woman are lovers.,"C and the woman, both working together, are considered as coworkers in the workplace.",C and the woman are friends. 239,796151ae-22ad-434d-9cb3-ea79096cfce7,1bSDAHrXDESsGspzxIVED758RHW6W7tLx,"Considering the significant parts of the video, what would you infer is the primary objective of c's work?",C's primary objective is to make bricks.,C's primary objective is to make a sculpture.,C's primary objective is to make a vase.,C's primary objective is to make a pot.,C's primary objective is to make a plate.,C's primary objective is to make bricks. 240,7981baa1-eb63-4ba6-9bde-cf35249e682c,1ZApQWn10Ol9oFSKPXBLmD-P3Vv5DDs6A,"In the context of this video, what is the primary task c is working on and what steps are involved in completing this task?",C is working on repairing a lawn mower.,C is working on building a new lawn mower.,C is working on cleaning a lawn mower.,C is working on painting a lawn mower.,C is working on repairing a lawn mower.,C is working on sharpening a lawn mower. 241,7a8cd905-114c-430d-b058-0a0b8a4d0111,1kgVHKMbomAv0enf6HoLwAgvzqPsyjMYn,"From the series of actions, determine the main goal of the video and highlight the steps that were most crucial in achieving that goal.","The main goal of the video is to create a model out of clay. the most crucial steps in achieving this goal are shaping the clay, stitching it together, and dipping it in glue.","The main goal of the video is to create a design out of clay. the most crucial steps in achieving this goal are scratching the clay, filling in the scratches, and creating a design.","The main goal of the video is to create a piece of art out of clay. the most crucial steps in achieving this goal are cutting the clay, sticking the pieces together, and creating a design.","The main goal of the video is to create a snack out of clay. the most crucial steps in achieving this goal are poking the clay, filling in the holes, and making the clay edible.","The main goal of the video is to create a toy out of clay. the most crucial steps in achieving this goal are rolling the clay, sticking the ball together, and making the ball comfortable to hold.","The main goal of the video is to create a model out of clay. the most crucial steps in achieving this goal are shaping the clay, stitching it together, and dipping it in glue." 242,7ad240de-34ab-4694-a6be-05a47e14793f,1890boYrlG9VmEdWzwskuwHIVHnhT5-cr,How does c ensure that their paintbrush is clean and prepared for each painting action? identify the primary strategies they use throughout the video.,"C dips the paintbrush in water, then rubs it on the table to remove excess paint.","C dips the paintbrush in paint, then rubs it on the table to remove excess paint.","Carefully, c dips the paintbrush into water, and then gently rubs it on the sketch to remove any excess paint present.","C dips the paintbrush in water, then rubs it on the table to remove excess paint.","Casually, c dips the fine paintbrush gently into the paint, then smoothly rubs it on the sketch to remove any excess paint effectively.","Curiously, c doesn't clean the paintbrush while transitioning between painting the sketch and the book." 243,7ba34dd0-aa19-49ae-9bb9-81247f21e39e,1dMAYE-4jhVGNBKn15uN8ELjJhtfVa14e,Describe the role of the man in this video and how he aids in c's work. focus on the essential contributions the man makes to the process.,The man helps c by cleaning the table and providing him with a bucket.,The man helps c by cleaning the table and providing him with a bucket.,The man helps c by kneading the dough.,The helpful man supports c by diligently rolling out the dough evenly.,The kind man willingly assists c by carefully cutting the dough with precision.,The kind man generously helps person c by skillfully baking the dough for them. 244,7bdd6287-196e-44f6-a099-13a267016f9f,1uh5HxSDR2hsOxaKHW6Lqq98BijPM0t-H,"Based on the video, identify and briefly explain the two most significant techniques that contributed to the completion of the drawing.",The two most significant techniques that contributed to the completion of the drawing are the use of a micron needle and the use of a watercolor pencil.,"In the artwork, the two most significant techniques that greatly contributed to the successful completion of the drawing are skillfully using a micron needle and effectively employing a brush.","Among the various methods, the two most significant techniques greatly contributing to the successful completion of the drawing are primarily the utilization of a watercolor pencil and the skilled application of a brush.",The two most significant techniques that contributed to the completion of the drawing are the use of a micron needle and the use of a watercolor pencil.,"The two most significant techniques, which greatly contributed to the successful completion of the drawing, involve using a precise micron needle and a straight ruler.",The two most significant techniques that contributed to the completion of the drawing are the use of a watercolor pencil and the use of a ruler. 245,7cccb681-3447-410f-8747-6937d146725c,1PfP6EN9-39iPgTvxb72MDPyZHWfI2cv_,"Compare and contrast c's process of dealing with the grain in the tray, the pot, and the aluminum container. what can you infer about the purpose of each of these actions?","C spreads the grain in the tray to make it easier to sieve, and she pours it into the pot to cook it. she opens the aluminum container to store the cooked grain.","Carefully, c spreads the grain evenly in the tray, allowing it to dry, then pours it diligently into the pot for soaking. enthusiastically, she opens the nearby aluminum container to add the necessary water.","C spreads the grain in the tray to make it easier to sieve, and she pours it into the pot to cook it. she opens the aluminum container to store the cooked grain.","C spreads the grain in the tray to cool it, and she pours it into the pot to heat it up. she opens the aluminum container to add salt.","Carefully, c spreads the grain evenly in the tray to aerate it, then gently pours it into the pot to thoroughly mix it. next, she diligently opens the aluminum container to skillfully add the flavorful spices.","Carefully, c spreads the grain evenly in the tray, separating it from the chaff, then pours it into the pot for grinding. next, she opens the nearby aluminum container and adds some flour to it." 246,7dcf85fb-1217-4eb7-b9c8-cc2ab06507fe,1dRYb7MqjvOxHQkNzOUCaoMEQbWv4VVFO,"How does c use her right leg and her right hand in a coordinated manner, and what conclusions can you draw about the purpose of these movements?",C uses her right leg and right hand to help her balance as she moves. she often places her right hand on her chest or abdomen to help her maintain her balance. she also uses her right hand to push off the ground as she moves.,"Creatively, c uses her right leg and right hand prominently to express herself. she frequently waves her right hand energetically or kicks her right leg high in the air.",C uses her right leg and right hand to help her balance as she moves. she often places her right hand on her chest or abdomen to help her maintain her balance. she also uses her right hand to push off the ground as she moves.,C consistently uses her dominant right leg and right hand to effectively communicate with others. she frequently points using her right hand and skillfully makes gestures with her right leg.,C uses her right leg and right hand to manipulate objects. she often picks up objects with her right hand or kicks objects with her right leg.,"C predominantly utilizes her right leg and right hand to perform various tasks. she frequently uses her right hand to open doors or turn on light switches. additionally, she employs her right leg to walk or run comfortably." 247,803c8ecf-9448-48b6-8bf2-debd052dbe43,1PuaJW7cfItglllVu7JaKAGnneK7iSdi7,"What was the primary joint activity the woman and c were engaged in throughout the video, and how did they collaborate in this process?",The woman and c were engaged in the joint activity of creating a mosaic.,The woman and c were engaged in the joint activity of creating a mosaic.,"Together, the woman and c were actively engaged in the joint activity of cooking a meal.",The woman and c were engaged in the joint activity of cleaning.,"The woman, along with c, were actively engaged together in the enjoyable joint activity of playing a game.","The woman and person c were enthusiastically engaged in the joint, shared activity of watching an entertaining movie together." 248,80e5c962-37d4-4394-825c-e4c81b539e78,1CBNdt_KsjKMV2XMRxQsOxYPuhRj1msHK,"Can you explain the overall purpose of the actions that both c and the man performed in the video, based on their interactions with the cards on the board?",C and the man are playing a card game.,C and the man are enthusiastically playing a strategic board game together.,"Currently, c and the man are actively engaged in playing a video game together.","Currently, c and the man are actively engaged in playing a physically demanding game together.",C and the man are playing a card game.,C and the man are playing a mental game. 249,811deb7d-78a8-4aed-8a7e-cb340ce8670d,166owJw6f9ogWXs6xKj3JGyRdIY_qdokd,Identify the primary action performed by character c throughout the course of the video and explain how the auxiliary actions complement this activity.,Character c cuts the vegetables.,Character c washes the vegetables.,"The character, named c, diligently peels the vegetables with care.",The character named c skillfully chops the various vegetables with ease.,Character c cuts the vegetables.,"The character ""c"" skillfully prepares and cooks the nutritious vegetables." 250,811f0bb6-5bde-4e87-a182-bcf09def0c06,1h57yVemaC-5cGTPKbDbnwFmgXxFYhWdg,"Describe the primary activity of c throughout the video that highlights his multitasking ability, and provide reasoning for his adjustments between different actions.",C is multitasking by playing the ukulele and operating the phone at the same time.,"Concurrently, c is multitasking by skillfully playing the ukulele and singing beautifully at the same time.",C is multitasking by playing the ukulele and dancing at the same time.,"Concurrently, c is multitasking skillfully by playing the ukulele and eating delicious food at the same moment.",C is multitasking by playing the ukulele and operating the phone at the same time.,"Curiously, c is skillfully multitasking by simultaneously playing the ukulele and sleeping at the same time." 251,81ba0fd6-cc69-410d-9e2d-8317fd22cce8,1z4D13_hIqiBDQlt5uCosnAs4eBWG8oYi,"In the context of the video, what is the primary purpose of the character's actions and how do they achieve this purpose?",The character is making dough.,The character is making bread.,"In this scene, the main character is enthusiastically making a delicious pizza.",The main character is joyfully making delicious cookies at home.,The main character in the story is skillfully making a delicious cake.,The character is making dough. 252,82486477-661d-4116-85ae-4fc095503679,1D9X7h8FnVnWFpmI3q6tfFzv_n2VqH8o8,"In terms of the overall objective, what did c use the scissors for during the video, and how did this action evolve through multiple steps?",C used the scissors to cut out the fish puzzle piece from the puzzle sheet.,C used the scissors to cut out the bird puzzle piece from the puzzle sheet.,C used the scissors to cut out the fish puzzle piece from the puzzle sheet.,C used the scissors to cut out the pop-up fish puzzle piece from the puzzle sheet.,C used the scissors to cut out the waste sheet from the puzzle sheet.,C used the scissors to cut out the glue container from the puzzle sheet. 253,824c2b85-b40b-4bbd-82bf-70468f9c042b,1kw7-KBi1EPYG2iu4ofIU0mOr6B-mv6AC,Compare the man and c's interactions with potatoes throughout the video. what pattern emerges regarding their respective roles?,"C collects potatoes from the bag and gives them to the man, who washes them and then throws them into the sink.",C and the man wash the potatoes together.,"Collaboratively, c and the man decide to cook the potatoes together as a team.","C collects potatoes from the bag and gives them to the man, who washes them and then throws them into the sink.",Charlie and the man happily eat the delicious potatoes together while enjoying the meal.,"Collaboratively, c and the man diligently clean up after preparing and cooking the potatoes together." 254,8345d177-0ed4-4965-8455-bd17d2b42399,18fQNqKvRBpFI6nDkGaGCdqctS3vtCAJp,"Describe how the fabric on the embroidery hoop was prepared and used throughout the video, while highlighting the main transitions and actions it underwent.",The fabric on the embroidery hoop was prepared by c drawing a pattern on it with a pen. she then used a needle and thread to embroider the pattern. she shifted the fabric between her hands and turned it as needed to embroider the entire pattern.,The fabric on the embroidery hoop was prepared by c sewing it together. she then used a needle and thread to embroider the pattern. she shifted the fabric between her hands and turned it as needed to embroider the entire pattern.,The fabric on the embroidery hoop was prepared by c cutting it out of a larger piece of fabric. she then used a needle and thread to embroider the pattern. she shifted the fabric between her hands and turned it as needed to embroider the entire pattern.,The fabric on the embroidery hoop was prepared by c buying it from a store. she then used a needle and thread to embroider the pattern. she shifted the fabric between her hands and turned it as needed to embroider the entire pattern.,The fabric on the embroidery hoop was prepared by c using a computer to design the pattern. she then printed out the pattern and used a needle and thread to embroider it onto the fabric. she shifted the fabric between her hands and turned it as needed to embroider the entire pattern.,The fabric on the embroidery hoop was prepared by c drawing a pattern on it with a pen. she then used a needle and thread to embroider the pattern. she shifted the fabric between her hands and turned it as needed to embroider the entire pattern. 255,83acbfe5-4c09-440c-ab8b-62479b2915df,1eOzwIofaWtLPJ96LhMIHOq2zNTbxpuNj,Compare and contrast c's interactions with the wooden mechanical model pieces and the instruction manual throughout the video. what do these interactions reveal about c's approach to the task?,C interacts with the wooden mechanical model pieces more frequently and carefully than with the instruction manual.,C interacts with the instruction manual more frequently and carefully than with the wooden mechanical model pieces.,C interacts with both the wooden mechanical model pieces and the instruction manual with equal frequency and care.,C interacts with the wooden mechanical model pieces more frequently and carefully than with the instruction manual.,C interacts with the wooden mechanical model pieces more frequently but less carefully than with the instruction manual.,C interacts with the instruction manual more frequently but less carefully than with the wooden mechanical model pieces. 256,8412d579-54b7-47ee-92e5-68b9c845dc59,199VSPkgedu8zhJfkchF2S862HlfKkSaC,"What are the different types of equipment and tools that c uses throughout the process, and how do they contribute to his overall efficiency and productivity?","C uses a wooden peel board, an oven, and a tray.","C uses a wooden peel board, an oven, a tray, and an oven peel.","C uses a wooden peel board, an oven, a tray, and a dough cutter.","C uses a wooden peel board, an oven, a tray, and a rolling pin.","C uses a wooden peel board, an oven, and a tray.","C uses a wooden peel board, an oven, a tray, and a whisk." 257,84389a11-7dc2-4e1d-80b1-e44d8787424a,1tVIbxRU3D7a-7q6dFhowFFk9pgYmfC8S,Describe how c's actions transition from focusing on the book to the tablet. what key events signify this shift in focus?,The subject's focus shifts from the book to the tablet when she stands up and walks into the room.,"The subject's focus noticeably shifts away from the book, transitioning towards the tablet, as she carefully adjusts the camera position.",The subject's focus shifts from the book to the tablet when she drops the pencil.,The subject's focus evidently shifts from the book to the tablet as she persistently drags the nearby chair.,"The subject's focus noticeably shifts from the book over to the tablet when she carefully opens the tablet device, revealing its content.",The subject's focus shifts from the book to the tablet when she stands up and walks into the room. 258,84bd1e04-370a-4e4a-9255-776f8d8e38ad,1cEdZWILgHXsKZrlMZAcxBWpLzb9iAydA,"If you were to condense the primary actions of the video into a single objective or process, what would that be?",Cleaning the floor.,Moving the chair.,Touching the shelf.,Touching the cat.,Cleaning the floor.,Moving the guitar bag. 259,84d775ff-e0ee-4072-b0ce-7d7cb04af615,1jSB-_WpQNyfUAryigDju0RDgwuW5y5wW,"Based on the video, what can be inferred about c's level of skill and care while handling the cloth and scissors, and how does that reflect on the significance of the task being carried out?",C was very skilled and careful while handling the cloth and scissors.,C was not very skilled and careful while handling the cloth and scissors.,C was neither skilled nor careful while handling the cloth and scissors.,C was very skilled and careful while handling the cloth and scissors.,C was skilled but not careful while handling the cloth and scissors.,C was careful but not skilled while handling the cloth and scissors. 260,855f0685-fc29-463f-a796-8b68a722174f,1FlR9y6vJoF7-h73xjtkB1wvkN-vRoJSb,"Analyze the interactions between c and the woman in the video, focusing on their primary collaborative goal. what can you conclude about the purpose of their actions?",C and the woman are preparing a meal for the baby.,"Currently, both c and the woman are diligently cleaning the kitchen together.",C and the woman are doing laundry.,"Casually, c and the lovely woman are diligently packing a delightful picnic together.",C and the woman are preparing a meal for the baby.,"Currently, c and the woman together are diligently setting the table beautifully for dinner." 261,8670020b-15c9-4ea9-acb5-71613dac2e9d,1hBir8f_YfO2gq3r0YVtUX-mK4zJEjyN7,How would you describe the interaction between c and the woman and its significance in the context of the overall video?,The interaction between c and the woman was brief and friendly.,The verbal interaction that occurred between person c and the woman appeared quite hostile and tense.,The interaction between c and the woman was romantic.,The communication and interaction between individual c and the woman remained highly professional throughout.,"Surprisingly, the interaction between c and the woman was practically nonexistent in that situation.",The interaction between c and the woman was brief and friendly. 262,86cb525a-d61c-46f1-9c5f-cc7284184900,1qIQYSE1NQFgL4QCwuhzx3M-w-sq8exmo,Identify the three main components of character c's task flow that were repeated multiple times during the video. how are these components interconnected and why are they crucial for the completion of his objective?,"The three main components of character c's task flow are gathering ingredients, preparing the dough, and baking the bread.","The three main components of character c's task flow are cleaning the table, repairing the oven, and baking a cake.","The three main components of character c's task flow are gathering ingredients, preparing the dough, and making a pizza.","The three main components of character c's task flow are gathering ingredients, kneading the dough, and baking the bread.","The three main components of character c's task flow are gathering ingredients, shaping the dough, and baking the bread.","The three main components of character c's task flow are gathering ingredients, preparing the dough, and baking the bread." 263,86d91c31-1bfe-4f99-a803-7466c8d801d1,1oyEciOKyXMGgITH-s1lX1HQcM8OloA5E,"What is the primary purpose or task that c completes at the parking lot, and how does this compare to earlier actions in the video?",To put the shopping bags in the car boot.,You will need to carefully fold the receipt into a smaller size.,Leisurely stroll to walk around the extensive parking lot area.,In order to open the car boot effortlessly.,To move the supermarket stroller.,To put the shopping bags in the car boot. 264,86de4235-953e-458f-a951-40314e92a33b,1CBMAqJUmId5Nr2deERNyJnEzsCOtwPnS,"What is the main objective of c throughout the video, and how does it relate to the actions performed?",C's main objective is to water the plants.,C's main objective is to open the window.,C's main objective is to adjust the blinders.,C's main objective is to put away his sweater.,C's main objective is to water the plants.,C's main objective is to walk around the room. 265,87555387-5ded-400b-b273-fe5b16c853e2,19ODjwuQtUT1-N80jAZJwxVIpTobLpwIA,"What is the primary objective of c's actions throughout the video, and how do her activities contribute to achieving this goal?",C is preparing grain to be cooked.,C is cleaning grain.,C is meticulously sorting grain with great attention.,The container labeled c is currently storing grain securely inside.,C is preparing grain to be cooked.,"Currently, person c is actively engaged in planting grain seeds." 266,876d37d8-07f5-4508-b458-631b3e2c6fab,1LQx-YuSYeoeDrlCnmePrZqCHZYfnjedY,"Considering the high-level details in the video, how would you summarize the central objective that c is trying to accomplish?",C is trying to color a picture.,C is trying to color a picture.,C is trying to arrange the containers on the table.,C is trying to fix the camera.,C is trying to pick up the crayons.,C is trying to put the papers in the crayon box. 267,88254e8e-6d05-4d2d-98b4-cd76f6412ac3,1ioWp9kOl320umx8x2Br6WByLE_t7iCA0,What was the purpose of the series of actions that c took in both the room and the bathrooms?,C was installing tiles in the bathroom.,"While at home, c was diligently cleaning the bathroom area.","Earlier today, c was diligently painting the bathroom walls and ceiling.","Recently, c was actively engaged in remodeling the bathroom interior.",C was repairing the bathroom.,C was installing tiles in the bathroom. 268,8955952a-946c-4841-895f-1fe0e2f000fb,18bwWkC8IqgmhHX6PZweXphKVUXx-aB2K,Identify the most important parts of the video that demonstrate c's main objective and summarize them in one or two sentences.,"The most important parts of the video that demonstrate c's main objective are when he washes the meat, chops it into two halves, and puts it in two plastic bags in the fridge.","The most important parts of the video that demonstrate c's main objective are when he washes the meat, chops it into two halves, and puts it in two plastic bags in the fridge.","The most crucial and significant parts of the video, which effectively demonstrate c's primary objective, are the moments when he thoroughly washes the meat and skillfully chops it into two equal halves.",The most crucial parts of the video that effectively exhibit c's primary objective are when he diligently washes the meat and securely puts it in two separate plastic bags in the refrigerator.,The most important parts of the video that demonstrate c's main objective are when he chops the meat into two halves and puts it in two plastic bags in the fridge.,"The most crucial and significant parts of the video that effectively demonstrate c's primary objective are when he thoroughly washes the meat, diligently chops it into two equal halves, and securely places it in the refrigerator." 269,8b462af5-dd9e-49a8-ab0a-92e28b7d7dd4,1XakMxrwPDcrTaW7vcfF7nAmBbeSxvPMc,"In the context of the video, identify the main objective that c is working towards and explain how their interaction with various objects helps achieve that goal. please compress the information and avoid listing each action.",C is trying to set up a tent.,C is trying to set up a tent.,"Currently, c is diligently attempting to repair a damaged, broken table.","Currently, c is actively attempting to construct a warm fire.",C is trying to cook a meal.,C is diligently attempting to clean up and organize the campsite area. 270,8b7c0c9a-49f0-4908-a5ea-4ef273aa0591,1S8C4DPyclJp8gnnmCdT5SHujyT1yXw3m,What can be deduced about the overall purpose of c's various actions throughout the video?,C is cleaning up his kitchen.,"Currently, person c is diligently preparing a delicious meal.",C is packing for a trip.,C is cleaning up his kitchen.,"Casually, c is occupied with doing some light gardening tasks outdoors.","Cheerfully, c is enthusiastically playing games with his children today." 271,8bebd8f4-f4e4-40bc-8bee-8db39904b85e,1EYRv5ThrSYT8nLhAylsoTx1a76tR5-FR,"In the context of the entire video, how would you describe the primary focus of c's actions in terms of his goals and the objects he interacted with?",C is cleaning and preparing the kitchen.,C is cleaning and preparing the kitchen.,C is cooking.,"Currently, c is in the process of enjoying their meal.","Currently, c is occupied with doing their laundry task.","Currently, c is in the bathroom, taking a refreshing shower." 272,8d8954ef-5b61-46f6-9829-67bb3994501c,1WkXuXDn_CBJ_B3tjKhh91aoBqnWq_f46,Provide a high-level summary of the main tasks c performs in the video and explain how these tasks are related to each other.,"C goes to the laundry room, puts his laundry in the washing machine, and then goes back to his apartment.","C heads towards the laundry room, places his laundry carefully in the washing machine, and afterwards proceeds to the nearby store.","C goes to the laundry room, puts his laundry in the washing machine, and then goes to the park.","Casually, c goes to the shared laundry room, carefully puts his soiled laundry in the washing machine, and afterwards, he promptly goes to the nearby gym.","Casually, c goes to the nearby laundry room, places his laundry neatly in the washing machine, and soon after, heads to catch a movie.","C goes to the laundry room, puts his laundry in the washing machine, and then goes back to his apartment." 273,8d9d33d2-a95d-4fad-b378-f80c31a635cd,1AkM412fmDWa1HOtpoEFyTrIhgvu10hPx,"Based on the actions in the video, explain the process c follows during her painting session and how she maintains her tools. please compare and contrast her actions in the first and second half of the video.","C follows a process of dipping the paintbrush in the container, cleaning it on the tissue paper, taking paint from the palette, and then painting on the desk. she maintains her tools by cleaning the paintbrush on the tissue paper and by dropping it into the container when she is not using it.","C follows a process of dipping the paintbrush in the container, cleaning it on the tissue paper, taking paint from the palette, and then painting on the canvas. she maintains her tools by cleaning the paintbrush on the tissue paper and by dropping it into the container when she is not using it.","C meticulously follows a process of dipping the paintbrush in the container, cleaning it on the tissue paper, taking paint from the palette, and then carefully painting on the wall. she deliberately maintains her tools by cleaning the paintbrush on the tissue paper and diligently dropping it into the container when she is not using it.","C carefully follows a precise process of dipping the paintbrush into the container, thoroughly cleaning it on the tissue paper, taking some paint from the palette, and then skillfully painting on the floor. to maintain her tools, she consistently cleans the paintbrush on tissue paper and safely drops it into the designated container when not in use.","C meticulously follows a process of dipping the paintbrush in the container, gently cleaning it on the tissue paper, carefully taking paint from the palette, and then artistically painting on the air. she diligently maintains her tools by thoroughly cleaning the paintbrush on the tissue paper and by securely dropping it into the container when she is not actively using it.","C follows a process of dipping the paintbrush in the container, cleaning it on the tissue paper, taking paint from the palette, and then painting on the desk. she maintains her tools by cleaning the paintbrush on the tissue paper and by dropping it into the container when she is not using it." 274,8db459bf-bf84-45b2-9fc0-f5c370a6da1a,1CCy0ky7rk5cYUYMIzb5aL1bT17I6J-0I,"Considering the various objects and locations c interacts with in the video, summarize the overarching experimental process taking place, mentioning the primary items and their functions.",C is conducting a science experiment to test the properties of tubes.,C is making a model of a tube.,"Currently, individual c is thoroughly cleaning multiple tubes efficiently.",C is conducting a science experiment to test the properties of tubes.,"Currently, c is actively involved in repairing a variety of tubes.","Currently, c is efficiently disposing of numerous glass tubes." 275,8dc8d368-2123-494b-8a6c-d4c41824277e,1V9nbNRNuQcVNXhqEeYO6WFbDIplPVsxn,"Explain the main activities that c and the man are engaged in during the video, and describe the relationship between these activities.","C is painting a picture, and the man is cleaning the dining room.","Currently, c is cooking a delicious meal, while the man is diligently setting the table nearby.","C is doing laundry, and the man is folding clothes.","C is painting a picture, and the man is cleaning the dining room.","Currently, c is occupied writing a letter diligently, while the man is thoroughly reading an interesting book.","Currently, c is playing a video game intently, and the man nearby is watching tv leisurely." 276,8dea8a9c-df89-4a86-946e-12378ec817c0,1C_NjTKKlGNgUsW58sn8V-B1TX4tt73Ts,Summarize in one sentence the overall goal and motivation for c’s actions throughout the video.,C is trying to clean the books.,"Currently, individual c is actively attempting to read through the various books.","Currently, c is attempting to efficiently organize and arrange the books.","Currently, c is actively attempting to carefully repair and restore the damaged books.",C is trying to clean the books.,C is trying to steal the books. 277,8e7a90b7-4fe4-4693-b732-501b42dc07ee,1z3oCCMYbUwAjQ1iKxSi_hah0eaHZMawa,Analyze the structure of the video and summarize the primary phases of the activity that c is engaging in.,C fixes a sandal.,C fixes a sandal.,C cleans a shoe.,"Casually, c skillfully repairs a damaged shoe with ease.","In the workshop, c meticulously crafts and creates a shoe.","Mr. c effectively sells a high-quality, comfortable shoe to customers." 278,8ed3e07e-233a-4b07-9dd3-2bb972776d54,1k2Rjl26q_yZZvZc51gFhZb-NupOTHQON,What are the primary activities that c performs in the kitchen while being intermittently distracted by their mobile phone?,C toasts bread and eats it.,"Casually, c decides to make a delicious sandwich for lunch.",C cooks a meal.,C toasts bread and eats it.,"Every day, c diligently cleans the kitchen thoroughly.","Occasionally, c browses the internet for various information and entertainment purposes." 279,8eed2026-9f16-4004-92dd-9a31eceefa32,1lJu1j3G3PKtRZtzoGfUTwreZKsS66ZsY,"Identify the most significant sequences of actions in the video, highlighting their relevance to the character's main purpose. what conclusions can be drawn from these sequences?","The most significant sequences of actions in the video are when the character picks up a piece of clothing, folds it, and puts it away in the drawer.","In the video, the most significant sequences of actions primarily occur when the character deliberately opens and subsequently closes the drawer.","The most significant sequences of actions in the video are when the character picks up a piece of clothing, folds it, and puts it away in the drawer.","In the video, the most significant sequences of actions involve the character strategically moving clothes around on the bed.",The most significant sequences of actions in the video are when the character picks up socks.,The most significant sequences of actions showcased in the video occur when the main character selects and picks up a jumper. 280,901ae1fe-5be2-495b-9506-9ec2a28d8ae0,1mzOd9vRkJI4NC-sl0oUVFnKOfMCtiP9h,"Identify the primary theme present throughout the video, and provide key actions or scenes that support your assessment of this theme.","The primary theme present throughout the video is cleanliness. this is evident in the fact that c washes her hands multiple times, interacts with the man in a friendly way, and wipes her hands on a tissue paper.","The primary theme present throughout the video is anxiety. this is evident in the fact that c stares at her hand, touches her shoes, and looks around.","In the video, the primary theme consistently present throughout is nervousness. this is clearly evident due to the fact that character c repeatedly stares at her hand, fidgets with her shoes, and constantly looks around.","The primary theme present throughout the video is cleanliness. this is evident in the fact that c washes her hands multiple times, interacts with the man in a friendly way, and wipes her hands on a tissue paper.",The predominant primary theme present consistently throughout the entire video is friendliness. this aspect is clearly evident in the fact that character c interacts with the man in a genuinely friendly way.,The most noticeable primary theme present throughout the entire video is politeness. this aspect is clearly evident in the fact that character c courteously shakes the man's hand. 281,90c3f31b-3b44-4b9a-a684-cef313a45c32,1vzjMKKVEOcwyGYqYx9r5STpxlicRF65Y,"Analyze how c's interactions with various objects (e.g., stool, paint can, paint brush, craft model) throughout the video contribute to the overall outcome of the video.","C's interactions with various objects (e.g., stool, paint can, paint brush, craft model) throughout the video contribute to the overall outcome of the video by helping him to complete the task of painting the model. for example, he uses the stool to reach the paint cans, he uses the paint brush to apply the paint to the model, and he uses the craft model as the object to be painted.","C's interactions with various objects (e.g., stool, paint can, paint brush, craft model) throughout the video contribute to the overall outcome of the video by helping him to learn about the process of painting. for example, he uses the stool to get a better view of the model, he uses the paint can to see how the paint looks, and he uses the paint brush to experiment with different techniques.","C's interactions with various objects (e.g., stool, paint can, paint brush, craft model) throughout the video contribute to the overall outcome of the video by helping him to complete the task of painting the model. for example, he uses the stool to reach the paint cans, he uses the paint brush to apply the paint to the model, and he uses the craft model as the object to be painted.","C's interactions with various objects (e.g., stool, paint can, paint brush, craft model) throughout the video contribute to the overall outcome of the video by helping him to relax and de-stress. for example, he uses the stool to sit down and take a break, he uses the paint can to make a mess and get some energy out, and he uses the paint brush to create something beautiful.","C's interactions with various objects (e.g., stool, paint can, paint brush, craft model) throughout the video contribute to the overall outcome of the video by helping him to connect with his creativity. for example, he uses the stool to get a better view of the model, he uses the paint can to see how the paint looks, and he uses the paint brush to experiment with different techniques.","C's interactions with various objects (e.g., stool, paint can, paint brush, craft model) throughout the video contribute to the overall outcome of the video by helping him to express himself. for example, he uses the stool to sit down and think about what he wants to paint, he uses the paint can to make a mess and get some energy out, and he uses the paint brush to create something beautiful." 282,916476da-a699-4132-b5cb-ae992e647b1b,1VTKHN_aleWT1AxAw8BAxSdvKpOO6P2tD,"Summarize the primary interaction between c and the book throughout the video, while explaining the importance of this interaction relative to c's main action.",C uses the book as a surface to draw on.,C uses the book as a surface to draw on.,"In their free time, c frequently utilizes the informative book to enjoy reading.","Casually, c utilizes the informative book as a valuable resource to compose writing.",C uses the book to prop up his/her hand.,"Casually, c picks up the book, and then uses it to cover his/her face discreetly." 283,91c07a84-f635-45c7-94d0-c82149d48476,1ZcFH8cH7kqjsoeKRcY6pqC9ifij4EWw_,"What were the primary tasks c performed in this video regarding the wall stickers, and how are these tasks connected?",C packed wall stickers in plastic bags and then put them in a carton box.,"C organized wall stickers, papers, and nylons in the workshop.",C put wall stickers in a container and then carried the container around the workshop.,C unfolded papers and put wall stickers on them.,C packed wall stickers in plastic bags and then put them in a carton box.,C put wall stickers in a container and then put the container in a storage room. 284,9377c192-d46d-4016-9db4-df8007dbe82b,1ePLRLPGPBb2mel30eVrc7mb4xw1Kh7jZ,"Summarize the two primary tasks c completes in the video, and explain how they relate to one another.",C chops the courgette and mixes it with salt.,C chops the courgette and cooks it.,C chops the courgette and eats it.,C chops the courgette and puts it in a jar.,C chops the courgette and mixes it with salt.,C chops the courgette and throws it away. 285,93a92b6f-5ed2-4b2c-9f9c-a6307e1fb256,15coSy1m1FfFkkSYQayC4GmLS2cUfqTVn,"Based on the video, what are the three main types of tools that c uses, and how do their roles in shaping the iron differ from one another?","The three main types of tools that c uses are a welding handle, a hammer, and a measuring tape. the welding handle is used to weld the iron, the hammer is used to shape it, and the measuring tape is used to ensure that it is the correct length.","The three main types of tools that c uses are a welding handle, a hammer, and a saw. the welding handle is used to weld the iron, the hammer is used to shape it, and the saw is used to cut it to the correct length.","The three primary types of tools that c employs are a welding handle, a chisel, and a hammer. the welding handle is utilized to weld the iron effectively, the chisel is applied to shape it accurately, and the hammer is employed to drive the chisel efficiently.","The three primary types of tools that c employs are a welding handle, a screwdriver, and a hammer. utilizing the welding handle to efficiently weld the iron, the screwdriver skillfully removes screws from the iron, while the hammer is effectively utilized to drive the screws securely back in.","The three main types of tools that c uses are a welding handle, a hammer, and a measuring tape. the welding handle is used to weld the iron, the hammer is used to shape it, and the measuring tape is used to ensure that it is the correct length.","The three primary types of tools that c utilizes are a welding handle, a wrench, and a hammer. to weld the iron, the welding handle is employed; the wrench serves to turn nuts on the iron, while the hammer effectively loosens them." 286,93b1de09-2f89-4b4b-94ac-9d2d94df3d66,143e37FWd0L1twiizHhm81YHCwjGpb4uT,"Based on the video, identify the primary responsibility of the person referred to as ""c"" and describe how their activities contribute to the overall scene.",C is responsible for keeping the construction site clean and free of debris.,C is responsible for building the construction site.,"The individual, c, is responsible for the crucial task of maintaining the construction site efficiently.",Person c is responsible for meticulously inspecting the construction site for safety and progress.,C is responsible for keeping the construction site clean and free of debris.,"The individual, c, is duly responsible for meticulously repairing and maintaining the construction site." 287,941978b4-19f2-4ca8-8dce-0b8777022c3f,1H8YoOHp0Zqej2qCO_xhshzG5fi0dQRV7,"Based on c's actions throughout the video, which parts of the video would you consider most critical for understanding the objective of c's work? describe the significance of these actions in the context of c's project.","The most critical parts of the video for understanding the objective of c's work are when c cuts the casing of the frame with the dovetail saw, when c breaks the casing off the frame with the hammer and sharpening stone, and when c measures the casing of the frame with the measuring tape.","The most critical parts of the video for understanding the objective of c's work are when c lays the frame on the plank, when c adjusts the sharpening stone and hammer on the plank, and when c grabs a box of tools from a corner of the workshop.","The most critical parts of the video for understanding the objective of c's work are when c cuts the casing of the frame with the dovetail saw, when c breaks the casing off the frame with the hammer and sharpening stone, and when c measures the casing of the frame with the measuring tape.","The most critical parts of the video for comprehending the main objective of c's work include moments when c opens the toolbox, notably when c takes a dovetail saw from the toolbox, and finally when c closes the toolbox.","The most critical parts of the video for effectively understanding the objective of c's work are when c pushes the toolbox with his leg, when c skillfully adjusts the plank on the table, and when c precisely cuts the casing of the frame with the dovetail saw.","Among the most critical parts of the video for understanding the primary objective of c's work are instances when c turns the frame around the plank, when c expertly adjusts the plank on the table surface, and crucially when c carefully cuts the casing of the frame using the precise dovetail saw." 288,943374f4-4514-4e22-827b-7452b91e5559,1iYq5UGrgqWQW6Pyy15fFijHE1oO2paQz,"Identify the main purpose of c's adjustments in the video, and explain the importance of these adjustments in the context of the entire video.","C's adjustments are designed to maintain the tension in the yarn and to prevent her finger from becoming sore. she adjusts the position of her finger, the amount of pressure she applies, and the speed at which she crochets. these adjustments help her to crochet more efficiently and to avoid pain.","C's adjustments are specifically designed to generate a more complex pattern. she meticulously adjusts the position of her stitches, the diverse type of stitches she utilizes, and the order in which she effortlessly stitches them. these vital adjustments assist her in creating a more detailed, intricate pattern.","C's adjustments aim to create a more vibrant, colorful pattern. she modifies the yarn color choice, the sequence she uses the hues, and the technique for combining them. these adaptations help her achieve a more visually appealing colorful pattern.","C's adjustments are designed to maintain the tension in the yarn and to prevent her finger from becoming sore. she adjusts the position of her finger, the amount of pressure she applies, and the speed at which she crochets. these adjustments help her to crochet more efficiently and to avoid pain.","C's adjustments are designed to create a more textured pattern. she changes the type of yarn she is using, the way she stitches the yarn, and the way she combines the stitches. these adjustments help her to create a more textured pattern.","C's precise adjustments are intentionally designed to create a more symmetrical pattern. carefully, she modifies the position of her stitches, the specific type of stitches she employs, and the particular order in which she stitches them. these alterations greatly assist her in establishing a more symmetrical pattern." 289,9442baab-3daf-4b8d-9ad5-f8c5269ad78f,1JQb3quZJMfUPuRLrXIntmtSerWg5_vKL,"In testing your ability to compress information from the video, what was the main technique used by c in perfecting the shape and structure of the flower pot?",C used a wet hand to smoothen the flower pot.,C used a dry hand to smoothen the flower pot.,C used a wet hand to smoothen the flower pot.,"Carefully, c employed a specific tool to effortlessly smoothen the surface of the clay flower pot.","Carefully, c utilized her delicate fingers to gently smoothen the surface of the flower pot.","Carefully, c utilized a brush to gently smoothen the surface of the flower pot." 290,94f6e8bd-b65d-4fd0-b2a9-75b69397fe2e,1HhE0jmcFXI8QlGAjAec_r74VKqeJmZcm,"In order to test your ability to compress information, describe the main steps that character c took to accomplish their objective, without listing individual actions.","C took a knife, a piece of wood, and a gadget. they then sharpened the knife on the piece of wood.","C took a knife, a piece of wood, and a gadget. they then sharpened the knife on the piece of wood.","Casually, c picked up a phone, a water bottle, and a handy gadget. afterward, they promptly proceeded to make a significant phone call.","Casually, c picked up a knife, grabbed a piece of wood, and a chair nearby. they then started cutting the wood.","Casually, c picked up a knife, a small piece of wood, and a filled water bottle. after that, they thoroughly cleaned the knife's blade.","C took a knife, a piece of wood, and a bag. they then put the knife in the bag." 291,951ccf40-1a99-4138-a441-4edf16af5446,1glmWwde59ht0HVatfuhAX93nKTqzH_Zb,"What is the main task that c is repetitively performing throughout the entirety of the video, and what purpose do you think this serves in the overall context of the video?",C is repetitively picking up bricks from the ground and placing them on top of a stack.,C is repetitively picking up bricks from the ground and throwing them in the air.,C is repetitively picking up bricks from the ground and placing them on top of a stack.,"Constantly and repeatedly, c is picking up bricks from the ground and persistently placing them into his pocket.","Constantly, c is repetitively picking up bricks from the ground, then skillfully using them to construct a stable wall.","Continuously, c is persistently picking up bricks from the ground and skillfully using them to construct a durable house." 292,9557e88b-8880-4f64-88ec-815452f8ee4c,1hhRdqmr8ErG7ktWkdjS6Ht4A08kPA2O9,Summarize the events that occurred within the kitchen setting and explain how they represent c's primary goal in that environment.,C is preparing to make a sandwich.,C is preparing to make a sandwich.,"Currently, c is actively cleaning and tidying up the kitchen area.","Currently, c is in the process of doing their laundry.","Currently, c is thoughtfully packing a nutritious lunch.",C is baking a cake. 293,95688752-a39c-4863-b6f6-58847cc04640,18JVVc57jH8TOjHjsYcgCj-SutB85vi25,"Describe the overall process of preparing the dish in this video, focusing on the most important steps in creating the final product.","C cuts the cucumber, onion, and capsicum, and then places them on a plate.","Carefully, c places the fresh cucumber, onion, and capsicum precisely in a mixing bowl.","Carefully, c cuts the cucumber, onion, and capsicum, and then places them into a blender for mixing.","C places the cucumber, onion, and capsicum in a frying pan.","Carefully, c places the fresh cucumber, onion, and colorful capsicum into a large salad bowl.","C cuts the cucumber, onion, and capsicum, and then places them on a plate." 294,960f4df3-e414-48ae-8f29-188ab5eeca0b,1n115HVFl5pXXUk6OzTQGnRxmv0gNePxR,Why do you think c continually moves and adjusts the camera? what can you infer about her intentions?,The woman is trying to get a better view of the food she is cooking.,"In the kitchen, the woman is attempting to take a clear snapshot of the delicious food she is currently preparing.",The woman is trying to get a better view of the food she is cooking.,The woman is attempting to diligently record a video showcasing the delicious food she is currently cooking.,The woman is trying to show someone else how to cook the food.,The woman is diligently trying to find a suitable recipe for the food she is currently cooking. 295,9748f410-2316-4a2f-9893-56f8f240dc67,1o_0mJm2IYuV-Ac2nssiMIs4ndpkWcCet,"Comparing the main activities of the two distinct areas shown in the video, were they addressed equally or was one given more attention? provide a summarized reasoning.",The kitchen was given more attention than the living room.,The two areas were addressed equally.,The living room was given more attention than the kitchen.,"The kitchen was given more attention in the beginning, but the living room was given more attention towards the end.","The living room was given more attention in the beginning, but the kitchen was given more attention in the middle.",The kitchen was given more attention than the living room. 296,9796f529-40ca-4e74-89ed-6a25efb24c8c,11G2MMmLfeUHkrT_YNbnUHMgeny4Z09-t,"Considering the multiple actions in the video, identify one key step that was the most crucial and why it was important for the success of the person's activity. briefly elaborate on the purpose of this step.","The most crucial step in the painting process was ensuring that the paint was applied evenly. this was achieved by dipping the paintbrush in the paint and then wiping the paintbrush on the edge of the paint can. this ensured that the paintbrush was not overloaded with paint, which would have resulted in uneven application.",The most crucial step in the painting process was making sure that the paint was applied quickly and efficiently. this was achieved by moving the paintbrush swiftly across the surface of the wood material.,"The most crucial step in the painting process was ensuring that the paint was applied smoothly and uniformly. this was successfully achieved by applying gentle light pressure with the paintbrush, and by using elongated, even, consistent strokes.","The most crucial step in the painting process was ensuring that the paint was applied evenly. this was achieved by dipping the paintbrush in the paint and then wiping the paintbrush on the edge of the paint can. this ensured that the paintbrush was not overloaded with paint, which would have resulted in uneven application.","The most crucial step in the painting process involved ensuring that the paint was applied neatly and uniformly. this impeccable result was achieved by utilizing a steady hand, and by meticulously avoiding drips and runs throughout.","The most crucial step in the painting process was ensuring that the paint was applied thoroughly. this was achieved by painting all surfaces of the wood, including the edges and corners." 297,97dc6bb7-7eed-45f7-bdb0-269ab8c2f639,1aufDmphj1duYOHVzJQ3ZI-LQBbiAh-6R,"What key adjustments did c make to the lawn mower, and how can those adjustments be concisely described as a whole?","C adjusted the lawn mower's engine, pipe, and bottom.","C adjusted the lawn mower's engine, pipe, and bottom.",C adjusted the lawn mower's wheels.,"Carefully, c adjusted the lawn mower's sharp blades to achieve optimal cutting height.","Carefully, c adjusted the height of the lawn mower's handle for more comfortable use.","Carefully, c adjusted the lawn mower's comfortable seat for a better fit." 298,97f80e1c-164d-4072-8ee9-980e366eec6c,167cJqcLZBJI9Xtcsa6hrOjBXTptB_uAg,Identify and elaborate on any recurring actions or patterns in c's approach towards processing the jute mallow and the leaf stick.,"C's approach towards processing the jute mallow and the leaf stick is repetitive and systematic. she follows the same steps for each item, with the only difference being that she uses her right hand to pluck the leaves from the jute mallow and her left hand to pluck the leaves from the leaf stick.","In her work, c's approach towards processing the jute mallow and the leaf stick is not repetitive or systematic at all. instead, she diligently changes her approach for each individual item, considering the item's unique size and shape.","In processing jute mallow and leaf stick, c's approach is repetitive yet unsystematic, as she follows identical steps for each, however, the order of execution sometimes varies.","C's approach towards processing the jute mallow and the leaf stick is systematic but not repetitive. she follows the same steps for each item, but she does not always use the same hand for each step.","C's approach towards processing both the jute mallow and the leaf stick is distinctively neither repetitive nor systematic. she dynamically changes her approach for each individual item, depending on factors like the item's size, shape, and even her current mood.","C's approach towards processing the jute mallow and the leaf stick is repetitive and systematic. she follows the same steps for each item, with the only difference being that she uses her right hand to pluck the leaves from the jute mallow and her left hand to pluck the leaves from the leaf stick." 299,98031100-bf7c-418b-a985-c1c1123bf72a,1oJm4-qwYNkOra_Rkh5rXFa8aLgBinFPx,"What are the main activities of the character c in the video, and how do these activities relate to one another?",C washes the dishes and cleans the kitchen counter.,C washes the dishes and cleans the kitchen counter.,"In the kitchen, c skillfully prepares and cooks a delicious meal.","Casually, c goes into the kitchen, skillfully prepares a delicious snack.",C cleans the oven.,"Occasionally, person c takes responsibility and does the laundry for everyone." 300,98427b0b-20ed-45bb-b772-91573ce90b5a,17sIUWJIhjWfblutEc_NEvhczx7wE1nmn,How would you describe the overall process shown in the video and the main purpose behind the actions performed?,C is ironing a dress.,C is carefully folding a dress with precision.,"In the room, c is carefully hanging a beautiful dress on the rack.",C is ironing a dress.,"Currently, c is carefully packing a beautiful dress in her bag.",C is washing a dress. 301,98989bb7-999a-4f03-bc4b-84ff7addb090,12KWxGUBcOVuHSO2J8x1kZim6HaCz93Gy,"Based on the video's content, describe the primary purpose of the actions performed by the character throughout the video. do not list the actions, but instead, provide a summary that highlights the overall goal.","Based on the video's content, the primary purpose of the actions performed by the character throughout the video is to clean the books.","Based on the video's content, the primary purpose of the actions performed by the character throughout the video is to read the books.","Based on the video's content, the primary purpose of the actions performed by the character throughout the video is to organize the books.","Based on the video's content, the primary purpose of the actions performed by the character throughout the video is to get rid of the books.","Based on the video's content, the primary purpose of the actions performed by the character throughout the video is to show off the books.","Based on the video's content, the primary purpose of the actions performed by the character throughout the video is to clean the books." 302,994aecb6-ded3-4d5f-8f52-f0038a6dc057,1xiRBQbGCq-piFdLrv0wVh__jYROjuYmq,Compare and contrast the behaviors of the two characters in the video. how do their actions reflect their respective priorities or interests?,"The two characters in the video have different priorities and interests. the man is focused on reading the book, while the woman is focused on other activities, such as moving around the room and adjusting her position.",The two characters in the video have the same priorities and interests. they are both focused on reading the book.,"The two characters in the video have opposite priorities and interests. the man is focused on reading the book, while the woman is focused on other activities, such as watching tv or talking on the phone.","The two characters in the video have different priorities and interests. the man is focused on reading the book, while the woman is focused on other activities, such as moving around the room and adjusting her position.","The two characters in the video have complementary priorities and interests. the man is focused on reading the book, while the woman is focused on providing him with support, such as making sure he has a comfortable chair to sit in and a cup of coffee to drink.","The two characters in the video have no priorities or interests. they are both just sitting there, doing nothing." 303,9a267805-2e0d-45a9-b3a4-bfdc9ee48363,1yj29HQq7aByj-6JK20RvbmRxtP7uX6l8,"Summarize the overall process c undertook in creating and refining the pottery item in the video, and identify two distinct phases in this process.",C first creates a rough shape of the pottery item by hitting it with a wood plank. he then uses a clay mold to give the pottery item its final shape.,"Initially, c first skillfully creates a rough shape of the pottery item by using his hands. afterward, he then employs a clay mold to give the pottery item its precise final shape.","Initially, c first creates a rough basic shape of the pottery item by skillfully using a clay mold. following that, he then carefully uses his hands to accurately give the pottery item its final desired shape.",C first creates a rough shape of the pottery item by hitting it with a wood plank. he then uses a clay mold to give the pottery item its final shape.,C first creates a rough shape of the pottery item by using a wood plank. he then uses his hands to give the pottery item its final shape.,"Initially, c skillfully creates a rough outline of the pottery item using his hands. he subsequently employs a wood plank to provide the pottery item with its definitive, final shape." 304,9a6f0324-9516-461a-a9c7-e08b639e48ea,1d03apNk1AbohiYiwr00PDvamcxCT7oTx,"In the context of the video, can you identify and contrast the main foci of group and individual activities taking place?","The main focus of the group activities is to exercise, while the main focus of the individual activities is to get ready for the exercise.","The main focus of the group activities is to exercise, while the main focus of the individual activities is to get ready for the exercise.","The primary emphasis of the group activities remains to socialize with others, whereas the main concentration of individual pursuits is to engage in exercise.","The main focus of the group activities is to learn, while the main focus of the individual activities is to exercise.","The primary objective of the group activities is to engage in competition, whereas the main emphasis of the individual activities is to participate in exercise sessions.","The central aim of the group activities predominantly involves performing, whereas the primary objective for individual activities primarily centers on exercising." 305,9af82064-62c5-4373-a94a-6815c0b6b53a,1PKdfY78E8ITTq8REu0xTk3Is_jUE9QWO,Identify the primary activity in the first part of the video (before c starts dealing with the knife) and compare it to the main activity in the second part of the video (after c starts dealing with the knife). what changes between these two parts regarding c's actions?,"C was walking around in the first part of the video, and then started sharpening a knife in the second part.","C was sharpening a knife in the first part of the video, and then started walking around in the second part.","C was preparing a meal in the first part of the video, and then started cleaning up in the second part.","C was walking around in the first part of the video, and then started sharpening a knife in the second part.","C was working on a project in the first part of the video, and then took a break in the second part.","C was doing nothing in the first part of the video, and then started doing something in the second part." 306,9d29050a-be36-4574-8bc6-6830031a5f32,1x9GJe--2OhM8qsCI5pNq2KI4kJF4t-nR,"How do c's actions with the apparel evolve throughout the video, and how does this demonstrate their intent or purpose?",C's actions with the apparel evolve throughout the video as they become more familiar with the task of getting dressed.,C's actions with the apparel evolve throughout the video as they become more frustrated with the task of getting dressed.,C's actions dealing with the apparel gradually evolve throughout the video as they become increasingly more tired of the seemingly endless task of getting dressed.,"Throughout the video, c's actions with the apparel progressively evolve as they increasingly become more bored with the mundane task of getting dressed.","C's actions with the apparel gradually evolve throughout the video, as they progressively become more distracted by various other things around them.",C's actions with the apparel evolve throughout the video as they become more familiar with the task of getting dressed. 307,9d578253-ae7e-4445-bbfc-974a5e540857,1KdPb-aljXibfP5WD6G6eBOmYQl6QKioI,"Analyzing c's interactions with the dough, condense his actions into a single concise statement that describes the primary purpose and outcome of his actions throughout the video.",C is preparing dough to make bread.,"Currently, c is diligently preparing dough in order to create a delicious pizza.",C is preparing dough to make bread.,"Currently, c is diligently preparing dough in order to create delicious homemade pasta.",C is preparing dough to make cookies.,"Currently, c is diligently preparing dough in order to create a delicious cake." 308,9d83c60a-5d84-4bea-8325-56beed585df2,1Sitjogdpl_iN8hkgBWV4rMMH8aF05fet,"Considering the interactions between c and the woman, how would you describe the overall dynamics between them throughout the video?",C and the woman are having a friendly conversation.,C and the woman are arguing.,C and the woman are giving each other directions.,C and the woman are flirting.,C and the woman are having a friendly conversation.,C and the woman are strangers who are just passing the time. 309,9de66400-05ec-4173-93c9-16c2cc9d881d,13ChOxlY4qvGmj-GQuvGFYRb-JqgBBrfZ,"Describe how c's actions change after interacting with a girl and opening a door, and explain the significance of those changes in relation to the overall video.",C's actions change after interacting with the girl and opening a door in that he becomes more focused on his task.,C's actions change after interacting with the girl and opening a door in that he becomes more focused on his task.,"C's actions notably change after interacting with the girl and opening a door, in that he becomes more playful and lighthearted.","C's actions noticeably change after interacting with the girl and opening a door, resulting in him becoming significantly more frustrated.","C's actions gradually change after interacting with the girl, and upon opening a door, he becomes more relaxed and at ease.",C's actions change after interacting with the girl and opening a door in that he becomes more confused. 310,9e50476f-2e77-46f3-8b06-f1005ee55974,1HfSDesh-yuuswh55Um8ch4yjoaw2IxLe,Identify the pattern of actions related to handling the box within the video. what can you infer about the importance of these specific actions throughout the process?,"C lifted the box, placed it on the ground, and taped it shut.","C lifted the box, placed it on the table, and taped it shut.","C lifted the box, placed it on the ground, and taped it shut.","C lifted the box, placed it on the shelf, and taped it shut.","C lifted the box, placed it in the car, and taped it shut.","C lifted the box, placed it on the conveyor belt, and taped it shut." 311,9f440443-9672-47a0-89ee-8a9b22e0431a,18YnKP4zIEs4Hft-b3awgSJH8gWZ7puH6,"What was the primary focus of the actions in the video, and how did these actions contribute to the overarching objective?",C was preparing a meal.,C was preparing a meal.,C was cleaning the kitchen.,C was doing laundry.,C was working on a project.,C was taking a nap. 312,a004e80f-f4cd-4e62-9848-dd825cc6a398,1En-uVVa97iTF9cKu6akW89SwdU-J-2KF,What can you deduce as the purpose of using the filing machine and adjusting the bag of the iron throughout the video?,C is using the filing machine to file the iron.,"Currently, c is skillfully utilizing the high-quality filing machine to effectively sharpen the sturdy iron piece.",C is using the filing machine to clean the iron.,"Currently, c is skillfully using the specialized filing machine to repair and restore the damaged iron.",C is using the filing machine to file the iron.,C is skillfully employing the filing machine in order to embellish and decorate the iron piece. 313,a01f7c76-f257-4e86-aa86-9ce823fc5a74,1p56ojMSqPC8CNUMhYnKyDgraOsQb0vUI,"How would you briefly describe the overall theme of the video, considering the variety of actions performed by c?",C is building a wall.,"Currently, c is actively working on demolishing a wall with care.",C is building a wall.,"Currently, c is diligently working on repairing a damaged wall.",C is cleaning a wall.,"Currently, c is actively painting a wall with dedication." 314,a07ac4b3-d2b8-48cb-bdad-5ab8da3f77a6,1azQZR-VpC7KtPCxaFa-G9gCUKUh-X-lo,"Analyze the character's behavior and actions after finishing the meal. identify the high-level transition in the video, and describe how this transition relates to the main theme.",The character transitions from eating to cleaning up.,"In the story, the character seamlessly transitions from eating a meal to comfortably resting afterward.","Eventually, the character smoothly transitions from eating their meal to diligently working on tasks.",The character transitions from eating to cleaning up.,"Gradually, the character transitions smoothly from eating a meal to engaging in playful activities.",The character transitions from eating to sleeping. 315,a0a00d56-0f2d-4f3d-ae12-ee5bc4c7ba19,1BiX5pBvzMUvfS49FT4UUaC8z3SYrFEwe,What is the primary objective of the actions being performed in this video?,To make a clay block.,To make a sand block.,To make a clay and sand block.,To make a clay sculpture.,To make a clay block.,To make a sand sculpture. 316,a203b4a9-0639-43c8-b05d-cbcbacb77f48,1C46w5lDQpPOeSWXbB4wuRiPN_-6TWPtm,"What is the overall goal of the actions performed by ""c"" in the video?",C is sewing a piece of fabric.,"Currently, c is diligently cleaning her reliable sewing machine with care.","Carefully, c is skillfully threading a fine needle with precision.","Currently, c is carefully cutting fabric for a project.",C is ironing fabric.,C is sewing a piece of fabric. 317,a2142f6c-561c-4b6f-bac8-35e8a1022e93,1QQwliWE3Z1s-mFOn63znLuzse_0J33Jd,Describe how the man and c's interactions in the video reflect their approach to performing their tasks while taking into account the importance of collaboration and communication.,"The man and c's interactions in the video reflect their approach to performing their tasks while taking into account the importance of collaboration and communication. the man is focused on the task at hand and does not seem to be interested in talking to c. c, on the other hand, is more interested in talking to the man and seems to be trying to build a rapport with him. this difference in approach is likely due to their different roles in the project. the man is responsible for the physical labor, while c is responsible for the communication and coordination of the project.","In the video, the man and person c's dynamic interactions reflect their strategic approach to performing their tasks, while also carefully considering the vital importance of competition.","The man and c's interactions in the video reflect their approach to performing their tasks while taking into account the importance of collaboration and communication. the man is focused on the task at hand and does not seem to be interested in talking to c. c, on the other hand, is more interested in talking to the man and seems to be trying to build a rapport with him. this difference in approach is likely due to their different roles in the project. the man is responsible for the physical labor, while c is responsible for the communication and coordination of the project.","In the video, the man and c's interactions demonstrate their approach to performing their tasks efficiently while taking into account the significance of maintaining independence.",The man and c's interactions in the video reflect their approach to performing their tasks while taking into account the importance of teamwork.,"In the video, the man and c's interactions effectively demonstrate their approach to performing their tasks diligently while taking into account the crucial importance of proactive leadership skills." 318,a317149f-1286-4160-9070-e575c42b8cc2,1SJFkrf2USKWOZ3P2KnJgnp9Kh6e7N8vM,"Summarize the most important actions that c performed, including the context, and explain their impact on the progression of the video.","The most important actions that c performed were washing her hands, interacting with the man, and wiping her hands on a tissue paper. washing her hands was important because it showed that she was concerned about cleanliness. interacting with the man was important because it showed that she was friendly and outgoing. wiping her hands on a tissue paper was important because it showed that she was concerned about cleanliness.","The most important actions that c performed were picking up the glasses, handing them to the man, and shaking his hand. picking up the glasses was important because it showed that she was helpful. handing them to the man was important because it showed that she was friendly. shaking his hand was important because it showed that she was polite.","The most important actions that c performed were washing her hands, interacting with the man, and wiping her hands on a tissue paper. washing her hands was important because it showed that she was concerned about cleanliness. interacting with the man was important because it showed that she was friendly and outgoing. wiping her hands on a tissue paper was important because it showed that she was concerned about cleanliness.","The most important actions that c performed were staring at her hand, touching her shoes, and looking around. staring at her hand was important because it showed that she was nervous. touching her shoes was important because it showed that she was anxious. looking around was important because it showed that she was lost.","The most important actions that c performed were turning on the water tap, cleaning her hands, and pressing the soap dispenser. turning on the water tap was important because it showed that she was ready to wash her hands. cleaning her hands was important because it showed that she was concerned about cleanliness. pressing the soap dispenser was important because it showed that she was using soap to wash her hands.","The most important actions that c performed were walking backwards, wiping her hands on her clothes, and walking. walking backwards was important because it showed that she was backing away from something. wiping her hands on her clothes was important because it showed that she was trying to clean them. walking was important because it showed that she was moving forward." 319,a31720b8-01aa-40c7-b469-9aa5992a4f06,1lXAAJmDLJQruQwc3eAxDhI-bgLgHLXGY,"What was the primary objective of the video, and how did c's actions contribute to its completion?",The primary objective of the video is to show how to prepare a solution in a laboratory setting.,The primary objective of this instructional video is to demonstrate accurately how to use a burette effectively.,The primary objective of the video is to show how to prepare a solution in a laboratory setting.,The primary objective depicted in the video is to effectively demonstrate how to properly sterilize lab equipment safely and thoroughly.,The primary objective of the video is to show how to read a book.,The primary objective of this instructional video is to demonstrate exactly how to properly walk in a laboratory room safely. 320,a3982726-af49-4b8e-8f45-6f803952ba68,15y_NYgDa_aAh92vfr9VhxXqE5rSakss-,"Describe the main process the subject is performing on the steel tube and flange in the video, without listing each action separately.",The subject is assembling a steel tube and flange.,The individual subject is skillfully disassembling a solid steel tube and its sturdy flange component.,The subject is assembling a steel tube and flange.,The subject is cleaning a steel tube and flange.,"Currently, the subject is meticulously inspecting a sturdy steel tube and robust flange.",The main subject is focused on repairing a damaged steel tube and attached flange. 321,a4663dd4-73e2-4e2a-b66b-731527a10c2c,1rOvKRitEace6F92icvBhDF6NDBAj0pTx,How would you summarize the primary task that 'c' is carrying out throughout the video and describe the general process? consider only the most essential steps.,C is cooking broccoli.,C is making a salad.,C is making soup.,C is making macaroni and cheese.,C is cooking broccoli.,C is making a stir-fry. 322,a46b0bc8-65d6-4831-91cb-d2495859b8a2,1snJQh88SwPzGtMAc-BJDG3CWCT6IHAHX,"How did c and the man communicate and interact, and what actions did they perform concurrently during their interactions?",C and the man do not communicate or interact at all during the video.,C and the man do not communicate or interact at all during the video.,"Casually, c and the man engage in conversation, chatting to each other about essential groceries.",C and the man argue about the groceries.,"In cooperation, c and the man assist one another in getting the groceries ready for use.","Concurrently, both mr. c and the man deliberately ignore each other while they efficiently prepare the groceries for storage." 323,a4a6faba-8686-4282-808f-88e8447e4b95,11CPmSC0lhWF35j_sOxk6uvd0wlb7opc_,"Based on c's actions throughout the video, deduce the purpose of their interaction with both the pen and the book, and explain the significance of these actions as they contribute to the most important parts of the video.",C is trying to express themselves creatively.,"Currently, c is attempting to pass the time by engaging in activities.",C is trying to express themselves creatively.,"Currently, c is actively attempting to find a solution for a particular problem.","C is making an effort to communicate, attempting to connect with someone.",C is trying to learn something. 324,a4aec5e6-f1a4-43c4-b631-61a4afdcdc32,1BcDvzLyqh4Px3qwMTMBzfDWfmhvaPioc,What key transitional moments can be observed in the video where c switches from one activity to another? explain how these transitions contribute to the overall video narrative.,"The key transitional moments in the video are when c turns the knob on the stove, when c looks at their phone, and when c opens the oven. these transitions contribute to the overall video narrative by showing that c is making progress in their cooking process.","The key transitional moments in the video are when c lifts the whisk, when c picks up the spoon, and when c puts the whisk down. these transitions contribute to the overall video narrative by showing that c is stirring the soup.","In the video, the key transitional moments are when character c looks around, when c pulls open the drawer, and finally when c lifts the lid. these significant transitions contribute effectively to the overall video narrative by clearly illustrating that c is intently searching for something.","In the video, the key transitional moments to note are when character c looks at their watch, when c picks up the tissue, and when c drops the tissue in the box. these critical transitions contribute significantly to the overall video narrative by effectively showing that c is taking a brief break.","The key transitional moments in the video are when character c walks, when c moves the phone, and when c picks up the glove. these critical transitions contribute significantly to the overall video narrative by visibly demonstrating that c is actively moving around within the kitchen.","The key transitional moments in the video are when c turns the knob on the stove, when c looks at their phone, and when c opens the oven. these transitions contribute to the overall video narrative by showing that c is making progress in their cooking process." 325,a4bf0ad8-0ea8-40f5-bdf4-fc0a39a61d65,1m00e5jskm-FnqBUAlgo7yeYzCxKWnOhV,"Explain the primary purpose of the actions taken by c involving the test tubes, containers, and the sterilizer machine.",C was preparing a solution for a laboratory experiment.,C was carefully cleaning up the area after conducting a laboratory experiment.,C was storing a solution for future use.,"In the laboratory, scientist c was cautiously disposing of a potentially harmful chemical solution.","In the lab, c was meticulously testing a potential solution.",C was preparing a solution for a laboratory experiment. 326,a56b297f-35c0-471a-b346-a53c291e0dae,1SRTOXx-K2GlTWRnbKHMaIszwhHDrehmF,"Considering the long-term sequence of actions performed by ""c"" in the video, what can you infer as the main objective of these actions?",To change the radiator fluid in the car.,To inspect and verify the oil level accurately in the car's engine.,To clean the car's windows.,To change the radiator fluid in the car.,It's essential to wash the car's exterior meticulously for cleanliness.,To completely fill up the car's gas tank with fuel. 327,a5dd1b46-d83e-4c50-818d-7c9ef882ff3f,1IX_V3EVS31_VMqDrh8hMRafoebi-0iPV,"Considering the various tasks c completed in the kitchen, what general theme can be concluded from the video?",C was preparing a healthy meal.,"In the kitchen, c was hurriedly preparing a quick, delicious meal for lunchtime.","In the cozy kitchen, c was enthusiastically preparing a scrumptious, delicious meal.",C was preparing a healthy meal.,C was preparing a fancy meal.,"C was enthusiastically getting ready to prepare a traditional, delicious meal for everyone." 328,a6f20af7-21e8-4ee9-aa66-f23056ecab48,1UWXPMn6uq7vsXJ3aZN34Dejpr9t4bru-,"Identify the primary task c was engaged in throughout the video, and how did their actions progress from start to finish?",C was preparing a meal.,"In the morning, c was diligently cleaning the entire kitchen area.",C was preparing a meal.,C was chopping vegetables.,"In the cozy kitchen, c was energetically cooking potatoes with care.","In the kitchen, c was diligently making a fresh, delicious salad." 329,a7b381f3-7f73-46fa-a99c-80a717a34556,1E53FnCCbMmA5-CtvgssHuBmT-TikDvIH,Analyze the overall pattern of c's actions throughout the video and compare the focus of his movements during the first half versus the second half.,"C's actions in the first half of the video are focused on setting up the resistance band and getting into position. in the second half of the video, c focuses on performing exercises with the resistance band.","C's actions in the first half of the video are focused on warming up and stretching. in the second half of the video, c focuses on cooling down and stretching.","In the first half of the video, c's actions primarily concentrate on performing various cardio exercises. then, in the second half of the video, c shifts focus towards executing strength-training exercises effectively.","In the initial half of the video, c's actions primarily concentrate on exercising his upper body. during the latter section, c shifts focus to engage his lower body muscles instead.","C's actions in the first half of the video are focused on setting up the resistance band and getting into position. in the second half of the video, c focuses on performing exercises with the resistance band.","In the initial portion of the video, c's actions primarily concentrate on strengthening his core muscles. in the latter half, he shifts attention to exercising his arms effectively." 330,a7e3cdc6-be60-4d79-be0b-3115da803926,1BX2yqO00Pxh6CIBjluLeGna7gdIwS4wH,"In the context of the video, what main activity was c performing on the cloth, and what was her primary technique for preparing the cloth?",C was cutting a cloth into smaller pieces.,C was cutting a cloth into smaller pieces.,"Carefully, c was diligently sewing a colorful cloth by hand.","Whilst standing, c was carefully ironing a cloth on the ironing board.",C was folding a cloth.,C was diligently cleaning a soiled cloth with great care. 331,a81624aa-bc70-4f13-963b-10136d2523ac,17obn4-4KmNEKj7u2uJxsNnegs3suPSen,"Based on the sequence of events described in the video, which parts would you say were most significant or essential to completing the task at hand, and why?",The most significant or essential parts of the procedure were the steps that involved applying paint to the wall skirt.,The most significant or essential parts of the procedure were the steps that involved preparing the paint.,The most significant or essential parts of the procedure were the steps that involved cleaning up after painting.,The most significant or essential parts of the procedure were the steps that involved choosing the right paint.,The most significant or essential parts of the procedure were the steps that involved applying paint to the wall skirt.,The most significant or essential parts of the procedure were the steps that involved following the instructions on the paint can. 332,a885299a-bc85-4d98-9905-d3e58518edea,16Oc3TSozrxr-2x7l6ZTy0Y7h2yDgFJ9w,What is the overall objective of the video? describe how c and the man contribute to achieving that objective by highlighting their most significant actions and interactions.,The overall objective of the video is to show how c and the man prepare a meal.,The overall objective of the video is to show how c and the man prepare a meal.,The primary overall objective illustrated in the video is to concisely demonstrate how c and the man efficiently clean the kitchen together.,The primary overall objective of the informative video is to effectively demonstrate how both c and the man collaboratively cook a delicious meal together.,The primary overall objective of this video presentation is to effectively demonstrate how c and the man engage in a meaningful conversation together.,The overall objective of the video is to show how c and the man argue. 333,a9287000-7f70-4cce-89e0-66cc197c079e,1Hk6ZRTrsY5he40pTqtxR4stbZuZPzEH2,"As the character engages in a variety of tasks, which ones could be considered the most critical steps in the food preparation process, and why?",The most critical steps in the food preparation process are peeling and slicing the food.,Among the most critical steps in the entire food preparation process are properly cooking the food items.,The most critical steps in the food preparation process are peeling and slicing the food.,The most critical steps in the food preparation process are cleaning the food.,"Among the most critical steps in the food preparation process, properly storing the food holds immense significance.","In the food preparation process, the most critical steps predominantly involve serving the food diligently." 334,a92f9b78-f316-409b-9302-71d626f96813,15IED9AH7PiylHbq3XZBE_BdVRlbu3I5N,"Rather than listing individual actions, explain what the primary goal of the character in the video is, and describe the process they undertake to achieve this goal. consider how the character compresses multiple actions to make their workflow efficient.","The primary goal of the person in the video is to wash the dishes. they do this by first gathering all of the dishes, then washing them one by one. they use a variety of tools and techniques to wash the dishes, including a sink, a faucet, a scouring pad, dish soap, and a measuring cup. they also rinse the dishes after washing them.","The foremost, primary goal of the individual featured in the video presentation is to skillfully cook a meal.","The primary goal of the person in the video is to wash the dishes. they do this by first gathering all of the dishes, then washing them one by one. they use a variety of tools and techniques to wash the dishes, including a sink, a faucet, a scouring pad, dish soap, and a measuring cup. they also rinse the dishes after washing them.",The primary objective of the individual featured in the video is to thoroughly clean the entire kitchen area.,The primary goal of the individual featured in the video is to efficiently prepare a delicious meal.,The primary goal of the person in the video is to make tea. 335,a9c320f4-3a37-4ba2-b4dd-8bf3c0dadf6f,1VhSYUXN2eiPi_7QDXEiiLmcbtvrxdlp7,"Summarize the main steps involved in the process showcased in this video, and explain how these steps are interconnected.",1. the person in the video is painting a pot.,"In the video footage, the person featured is busily creating a delightful smoothie.",1. the person in the video is making a cake.,1. the person in the video is painting a pot.,"In the video, the individual featured is actively engaged in making a delicious pizza.","In the video, the person featured is skillfully making a delicious sandwich." 336,a9e5f4f6-ebe9-461c-b1d0-0732d0ac4865,1wDNf-uwfOwjUwVDkygZjaf50pT2AbV2K,"Keeping in mind the different interactions between c and the wall, deduce the significance of using both the scrubber and the pipe in the context of the video.",The scrubber and the pipe were used to clean the wall.,The scrubber and the pipe were used to fix the pipe.,The scrubber and the pipe were used to clean the wall.,The scrubber and the pipe were used to disconnect the pipe.,The scrubber and the pipe were used to wash the wall with a scrubber.,The scrubber and the pipe were used to hold a pipe. 337,aafd0923-bfdb-4271-960e-02a4a5a75ed3,1tfGqRQ6Gan8PgF1Bt6OMRruBEo0-SDu9,What are the main locations and activities c is involved in throughout the video? focus on summarizing and comparing her actions in different locations.,"C is involved in the living room and the bedroom. in the living room, she picks up throw pillows from the floor and places them on the couch. she also arranges a cloth on the couch and some magazines on a coffee table. in the bedroom, she picks up pillows from the floor and places them on the bed. she also arranges a cloth on the bed and a duvet.","C is involved in the kitchen and the bathroom. in the kitchen, she picks up throw pillows from the floor and places them on the counter. she also arranges a cloth on the counter and some magazines on a table. in the bathroom, she picks up pillows from the floor and places them on the bed. she also arranges a cloth on the bed and a duvet.","C is involved in the living room and the kitchen. in the living room, she picks up throw pillows from the floor and places them on the couch. she also arranges a cloth on the couch and some magazines on a coffee table. in the kitchen, she picks up pillows from the floor and places them on the counter. she also arranges a cloth on the counter and some magazines on a table.","C is involved in the bedroom and the bathroom. in the bedroom, she picks up pillows from the floor and places them on the bed. she also arranges a cloth on the bed and a duvet. in the bathroom, she picks up pillows from the floor and places them on the bed. she also arranges a cloth on the bed and a duvet.","C is involved in the living room and the bedroom. in the living room, she picks up throw pillows from the floor and places them on the couch. she also arranges a cloth on the couch and some magazines on a coffee table. in the bedroom, she picks up pillows from the floor and places them on the bed. she also arranges a cloth on the bed and a duvet.","C is involved in the living room, the bedroom, and the kitchen. in the living room, she picks up throw pillows from the floor and places them on the couch. she also arranges a cloth on the couch and some magazines on a coffee table. in the bedroom, she picks up pillows from the floor and places them on the bed. she also arranges a cloth on the bed and a duvet. in the kitchen, she picks up pillows from the floor and places them on the counter. she also arranges a cloth on the counter and some magazines on a table." 338,ab4bd39c-a184-421d-9f38-bf18dd238b2d,1o3fzDqelamBybiMy1m3p4ceYsYWpeKZ7,"Based on the actions throughout the video, describe the overall process c used for preparing and assembling the mechanical components.","C first prepared the mechanical component by applying glue to it. then, he assembled the component by inserting it into the black mechanical component. finally, he cleaned the component with a cloth.","C first prepared the mechanical component by applying lubricant to it. then, he assembled the component by inserting it into the black mechanical component. finally, he cleaned the component with a cloth.","Initially, c first carefully prepared the mechanical component by thoroughly applying glue to it. then, he accurately assembled the component by expertly inserting it into the designated atomizer. lastly, he meticulously cleaned the component using a soft cloth.","Initially, c carefully prepared the mechanical component by thoroughly applying lubricant to it. subsequently, he skillfully assembled the component by inserting it securely into the designated atomizer. ultimately, he gently cleaned the component with a soft cloth.","C first prepared the mechanical component by applying glue to it. then, he assembled the component by inserting it into the black mechanical component. finally, he cleaned the component with a cloth.","C first prepared the mechanical component by applying glue to it. then, he assembled the component by inserting it into the tong. finally, he cleaned the component with a cloth." 339,abc71897-eb92-4236-a92b-ca2d0573aa45,1yZXICxRFP7MVZAI5sjAhe4PHW8Xbi8VY,Provide a summary of the primary goal of the main character (c) in the video and identify the key events associated with the achievement of that goal.,The main character's primary goal is to build a foundation. the key events associated with the achievement of that goal are:,"The main character's principal objective, their primary goal, is to construct and build a house for themselves.","Throughout the story, the main character's primary objective is to diligently fix a severely broken foundation.",The main character's primary goal is to build a foundation. the key events associated with the achievement of that goal are:,"The primary objective of the main character is to create and complete a unique, artistic sculpture.",The main character's primary goal is to play with the cement. 340,aca23304-6743-4aeb-a50d-e8bd2a32eeb8,15c4I_HmiLYgHLrV3BMpZLWxht7L2OLRd,"Can you provide a concise summary of the sequence of events in the video, and how they relate to each other, without listing every single action?","C cleans the stairs with a vacuum cleaner, then puts the vacuum cleaner away and interacts with a man.",C walks around and interacts with a man.,"C cleans the stairs with a vacuum cleaner, then puts the vacuum cleaner away and looks around.",C walks around and looks around.,"C cleans the stairs with a vacuum cleaner, then puts the vacuum cleaner away and hits the baluster metal with his right hand.","C cleans the stairs with a vacuum cleaner, then puts the vacuum cleaner away and interacts with a man." 341,aca2666b-0245-4ecd-9b11-8f6e15c4653b,1Fhd2IwaRid_i1nEvGXPx2BM5fH92AUGa,"Considering the actions within the video, how would you describe the roles and interactions between c and the man in the bakery process?","C is the baker, and the man is his assistant.","C represents the customer, whereas the man stands as the professional baker.","C is currently the acting manager, while the other man in question is the subordinate employee.","C is the owner, and the man is the tenant.","C is the baker, and the man is his assistant.","In this situation, c represents the teacher, while the man assumes the role of the student." 342,adfb2285-406f-4cbf-8a6c-52e7b222215d,18RwZcmSWPvwGIT-wwxqx1W_wdD3stD32,Describe the central goal of the video and explain how the two primary tools used help achieve this goal.,"The central goal of the video is to weld an aluminum piece. the two primary tools used are a welding machine and a hammer. the welding machine is used to melt the aluminum, and the hammer is used to shape the molten aluminum.","The principal objective of this video is to demonstrate grinding an aluminum piece effectively. the two main tools employed are a grinder and a hammer, both essential. the grinder functions to remove material from the aluminum, while the hammer serves the purpose of shaping the aluminum.","The primary aim of the video revolves around cutting an aluminum piece. the two main tools utilized are a saw and a hammer. to cut the aluminum, the saw is employed, while the hammer effectively shapes the aluminum.","The central goal of the video is to weld an aluminum piece. the two primary tools used are a welding machine and a hammer. the welding machine is used to melt the aluminum, and the hammer is used to shape the molten aluminum.","The central objective of the video focuses on polishing an aluminum piece meticulously. the two main tools utilized include a precise polisher and a sturdy hammer. the polisher effectively removes scratches from the aluminum surface, and the hammer skillfully reshapes the aluminum piece.","The central goal of the video is to paint an aluminum piece. the two primary tools used are a paintbrush and a hammer. the paintbrush is used to apply paint to the aluminum, and the hammer is used to shape the aluminum." 343,aebf3455-59b7-4071-a7d2-18d053c38f8f,1hMMwBO6SoYmuhYD27qIStIRI9tcwC8PQ,"What is the overarching goal of the actions taken by both c and the man throughout the video, and how do their techniques differ?",The overarching goal of the actions taken by both c and the man throughout the video is to install a new light fixture.,"The primary, overarching goal of the various actions taken by both c and the man in the video is to efficiently repair a broken light fixture together.","The primary, overarching goal driving the actions taken by both individual c and the man appearing throughout the entire video is to successfully remove a specific light fixture.",The overarching goal of the actions taken by both c and the man throughout the video is to clean a light fixture.,"The primary, overarching goal of the various actions taken by both c and the man throughout the entire video is simply to replace a malfunctioning light bulb.",The overarching goal of the actions taken by both c and the man throughout the video is to install a new light fixture. 344,af7e4a5e-b7b5-4ea1-a4c7-c1d07fe15c56,1zKZqQ6Lm-LIEnfKuJbvIFERE5eTk1bMH,"Describe the main process taking place throughout the video and explain how the man known as ""c"" contributed to this process. be concise but focus on the overall importance of c's actions.","C is making a bamboo mat. he uses bamboo strips to weave a mat, and then adjusts the mat to make sure it is even.","C is skillfully making a bamboo basket. carefully, he uses flexible bamboo strips to intricately weave a sturdy basket, and then meticulously adjusts the basket's structure to ensure it is strong and durable.","C is making a bamboo fence. he uses bamboo strips to weave a fence, and then adjusts the fence to make sure it is secure.","Cooper is diligently making a bamboo hat. he skillfully uses thin bamboo strips to carefully weave a hat, and then gently adjusts the hat to ensure it fits properly.","C is making a bamboo mat. he uses bamboo strips to weave a mat, and then adjusts the mat to make sure it is even.","C is skillfully crafting a bamboo broom. utilizing bamboo strips, he carefully weaves together a broom, and then attentively adjusts the broom to ensure its utmost effectiveness." 345,afbc1ef9-bc2b-49f9-9009-3d7486563764,1NZrBlcPHMgeqXzuJa9aH_aG2xYCxAWej,"In this video, what can you infer about c's primary activity and how frequently it occurs? consider the various scenes and summarize the overarching theme.",C is carving wood with a knife.,"Currently, c is in the process of making a phone call.","Currently, c is actively texting a close friend for leisure.","Currently, person c is attentively watching an interesting video.",C is carving wood with a knife.,C is listening to music. 346,b1a1280a-1f7f-4796-bca2-ba03f3fb9345,1Op4q3LS1vt1TItjarNnA89vWisU342bN,"Analyze c’s approach to organizing and managing their work area in the kitchen, including how they handle various utensils, food items, and storage during the video.","C organizes and manages their work area in a logical and efficient manner. they keep all of their utensils and ingredients close at hand, and they clean up as they go. this helps them to cook quickly and efficiently.","C organizes and manages their work area in a haphazard and inefficient manner. they keep their utensils and ingredients scattered all over the kitchen, and they don't clean up as they go. this makes it difficult for them to cook quickly and efficiently.","C organizes and manages their work area in a logical and efficient manner. they keep all of their utensils and ingredients close at hand, and they clean up as they go. this helps them to cook quickly and efficiently.","C organizes and manages their work area in a very precise and meticulous manner. they keep their utensils and ingredients in exactly the same place every time, and they clean up every single crumb. this can be helpful for some people, but it can also be time-consuming and stressful.","C organizes and manages their work area in a very creative and artistic manner. they use different colors and textures to create a visually appealing workspace. this can be helpful for some people, but it can also be distracting and take away from the focus on cooking.","C organizes and manages their work area in a very minimalist and uncluttered manner. they only have the essentials on hand, and they keep everything clean and tidy. this can be helpful for some people, but it can also be cold and sterile." 347,b224b904-1f61-455a-835b-9dd66b4309a3,1wobMTroT7u0r2L_9bHk91j9TjkAqhO-U,"Based on the actions of the person and c throughout the video, how would you characterize their interaction and each individual's main purpose?","C and the person are preparing a meal together. c is in charge of chopping the vegetables and potatoes, while the person is in charge of holding the vegetables and potatoes.","Concurrently, c and the person are preparing a meal together as a team. expertly, c is in charge of cooking the vegetables and potatoes, while the person diligently handles chopping the vegetables and potatoes.","C and the person are preparing a meal together. c is in charge of chopping the vegetables and potatoes, while the person is in charge of holding the vegetables and potatoes.","In the kitchen, c and the person are joyfully preparing a meal together. diligently, c is in charge of washing the vegetables and potatoes thoroughly, while the person is assigned the task of chopping the vegetables and potatoes carefully.","C and the person collaboratively are preparing a scrumptious meal together. c is diligently in charge of washing the vegetables and potatoes thoroughly, while the person is skillfully in charge of chopping the vegetables and potatoes efficiently.","C and the person are preparing a meal together. c is in charge of peeling the vegetables and potatoes, while the person is in charge of chopping the vegetables and potatoes." 348,b2705bbb-089d-4940-8b05-801faed112ae,1EsB07vVI8DimwpLxxVI71fs9uGLZz3AP,"In your own words, summarize the overarching purpose or context of the interactions between the man and c, keeping in mind the actions they performed using the cards and other items.",The man and c are playing a card game.,The man and c are playing a card game.,The man and c are working on a puzzle.,The man and c are playing a game of catch.,The man and c are playing a game of rock-paper-scissors.,The man and c are playing a game of simon says. 349,b3aaaea6-e6f6-499f-8b03-ddf85b3f62c4,1TXcg79n18yAx5aKw40Th0Lnnvzmm6-eb,"Based on the video, describe the primary objective of the interaction between c and the man, and how their actions collectively contribute to this objective.",C and the man are working together to replace a cable.,"Cooperatively, c and the man are diligently working hand in hand together to successfully build a lovely house.","Currently, c and the man cooperatively are working side by side to repair a broken car.",C and the man are working together to plant a tree.,C and the man are working together to replace a cable.,"Cooperatively, c and the man are diligently working together as a team to thoroughly clean a room." 350,b3c34e88-65fb-442f-ad6c-57b3c31f7a98,11pjN0BVGXpMdzCFj336HtBOoN0J73JqX,"What is the main purpose of the actions performed by character c in the video, and how does this purpose change throughout different segments?",The main purpose of the actions performed by character c in the video is to prepare dough for baking.,The main purpose of the actions performed by character c in the video is to clean the bakery.,The main purpose of the actions performed by character c in the video is to decorate the bakery.,The main purpose of the actions performed by character c in the video is to prepare dough for baking.,The main purpose of the actions performed by character c in the video is to stock the bakery.,The main purpose of the actions performed by character c in the video is to prepare the bakery for opening. 351,b44d457c-bb64-4d49-8989-42623e487782,1WVQomBwq_ZQLufKltyAwKRXVfgwY9n6X,Describe the main objective and repetitive actions c performs throughout the video. focus on the purpose of these actions and how they relate to each other.,C is trying to clean the book.,C is trying to clean the book.,C is trying to read the book.,C is trying to write in the book.,C is trying to hide the book.,C is trying to destroy the book. 352,b45379aa-d6f3-4033-83df-5577fc49cfc0,1MmPfYcHTdbS-sdaBmH3VQ6nJcWKE9vPX,Describe the key steps in the process of preparing the mixture within the bowl and list any tools that were used during the process.,"C first opened a box of cereal and poured it into a bowl. then, they opened a tin of milk and poured it into the bowl. they then shook the bowl to mix the cereal and milk together. finally, they added a spoon of sugar and stirred the mixture again.","C first opened a box of cereal and poured it into a bowl. then, they opened a tin of milk and poured it into the bowl. they then shook the bowl to mix the cereal and milk together. finally, they added a spoon of sugar and stirred the mixture again. they then placed the bowl in the fridge to cool.","C first opened a box of cereal and poured it into a bowl. then, they opened a tin of milk and poured it into the bowl. they then shook the bowl to mix the cereal and milk together. finally, they added a spoon of sugar and stirred the mixture again.","C first opened a box of cereal and poured it into a bowl. then, they opened a tin of milk and poured it into the bowl. they then shook the bowl to mix the cereal and milk together. finally, they added a spoon of sugar and stirred the mixture again. they then placed the bowl in the oven to bake.","C first opened a box of cereal and poured it into a bowl. then, they opened a tin of milk and poured it into the bowl. they then shook the bowl to mix the cereal and milk together. finally, they added a spoon of sugar and stirred the mixture again. they then placed the bowl in the microwave to heat.","C first opened a box of cereal and poured it into a bowl. then, they opened a tin of milk and poured it into the bowl. they then shook the bowl to mix the cereal and milk together. finally, they added a spoon of sugar and stirred the mixture again. they then placed the bowl on the counter to cool." 353,b4c9ae36-dc6b-488f-83c8-6bf423a56ac6,1sJoaGFS5WgNfKpCbNtjFTbgJYTI9Qw1u,"In the overall process observed in the video, can you highlight two to three critical moments that were essential for the success of the final outcome? explain your reasoning.",The two critical moments in the overall process are when the dough is kneaded and when the dough is scored.,"In the overall process, the two critical moments crucial for success are when the dough is thoroughly mixed and when the adequately risen dough is ready.","In the entire procedure, the two most critical moments are when the dough is carefully shaped and when the perfectly mixed dough is ultimately baked.",The two crucial moments in the entire procedure are when the dough is thoroughly kneaded and when the dough is properly baked.,The two critical moments in the overall process are when the dough is mixed and when the dough is kneaded.,The two critical moments in the overall process are when the dough is kneaded and when the dough is scored. 354,b4cc9985-97e8-423a-9737-22e5d9b4dbce,1WkMCmKDSCABkAnJkgITnqKN_uTTEqubE,"In your own words, summarize the primary cooking process repeated throughout the video and identify its significance for achieving the final outcome.","C removes the cereals from the cooking pan with a coconut broom, picks them up with a scoop, pours them back into the pan, stirs them with the coconut broom stick, puts firewood in the fire, and stirs the cereals again. this process is repeated several times until the cereals are cooked through.","C removes the cereals from the cooking pan with a coconut broom, picks them up with a scoop, pours them back into the pan, stirs them with the coconut broom stick, puts firewood in the fire, and stirs the cereals again. this process is repeated several times until the cereals are cooked through. however, c also looks around occasionally.","C removes the cereals from the cooking pan with a coconut broom, picks them up with a scoop, pours them back into the pan, stirs them with the coconut broom stick, puts firewood in the fire, and stirs the cereals again. this process is repeated several times until the cereals are cooked through. however, c also sings while cooking.","C removes the cereals from the cooking pan with a coconut broom, picks them up with a scoop, pours them back into the pan, stirs them with the coconut broom stick, puts firewood in the fire, and stirs the cereals again. this process is repeated several times until the cereals are cooked through. however, c also dances while cooking.","C removes the cereals from the cooking pan with a coconut broom, picks them up with a scoop, pours them back into the pan, stirs them with the coconut broom stick, puts firewood in the fire, and stirs the cereals again. this process is repeated several times until the cereals are cooked through.","C removes the cereals from the cooking pan with a coconut broom, picks them up with a scoop, pours them back into the pan, stirs them with the coconut broom stick, puts firewood in the fire, and stirs the cereals again. this process is repeated several times until the cereals are cooked through. however, c also talks to someone while cooking." 355,b53ce673-003f-415f-a6f7-9057dc6a5b2c,1IC_lUCcmdcmoTY0L9YIah8e18yHPftgH,Identify the most critical moments in the video and explain how they are essential to the video's overarching narrative.,"The most critical moments in the video are when c chops the broccoli, washes the chopping board, and stirs the food.","In the video, the most critical moments occur when individual 'c' pauses to take a break and check their phone.","The most critical moments in the video are when c chops the broccoli, washes the chopping board, and stirs the food.",The most crucial moments captured in the video involve when character c walks deliberately towards the cabinet and subsequently opens the cabinet door.,The most critical moments in the video are when c opens the tap and picks the washing brush.,"The most crucial moments featured in the video involve when c meticulously rinses the knife, then proceeds to carefully close the tap." 356,b53d2693-bbaa-4e50-b703-e7d70ecf827f,1k-WGkz5qQJodqSQZiw6LpLNk_U-_R6n2,"What was the primary activity taking place in the video, and how did it lead to secondary activities related to it?",C is crocheting a cloth.,"Currently, c is skillfully knitting a beautiful cloth by hand.","Currently, person c is diligently sewing a piece of cloth.",C is embroidering a cloth.,C is crocheting a cloth.,"Currently, c is skillfully weaving a beautiful cloth fabric." 357,b5865ae0-e176-4e82-a651-2507ee2d6930,18tIzeUMIeyEOPfdkvRV0gqiqwOCFSa0B,"What were the primary tools used by c during the entire process of fixing the wheel bearing, and how did the usage of each tool change throughout the video?",A screwdriver and a pliers.,A screwdriver and a pliers.,A wrench and a hammer.,A screwdriver and a wrench.,A pliers and a hammer.,"A screwdriver, a pliers, and a hammer." 358,b5867202-c87b-4ffa-8617-e8b2e9eba1a2,11uNJdehiAg9LpO5kyJFbFV9WEhExfbN1,"Describe the main objective and overall process depicted in the video, mentioning the primary actions performed by c and the person.",C is playing a card game with the person.,C is practicing magic tricks.,C is playing a card game with the person.,"Currently, c is actively engaged in playing a strategic board game.","Currently, c is diligently sorting numerous playing cards.","Currently, c is diligently constructing a delicate house of cards." 359,b58ab03f-3520-4916-81b8-2c42e3d0d31d,1aRae4IORoY5h3dqbeFMHXoYjE6FdO2aH,"Based on the video, what is the primary task c is focused on, and how does this task change or evolve throughout the video?",C is focused on cutting wood with a table saw.,C is focused on operating a phone.,"Concentratedly, c is primarily focused on meticulously cleaning his arm thoroughly.",C is consistently focused on moving around within the confines of the workshop space.,"Currently, c is primarily focused on taking a well-deserved break for rejuvenation.",C is focused on cutting wood with a table saw. 360,b5b05854-df14-43bd-ac45-4301c6d734ec,1IXkJvhqW-3Phhb8wDeLl142SGVpeKwNZ,Compare the tasks c performs in the earlier segments of the video to those in the latter segments. how has the purpose or intensity of c's work evolved over the course of the video?,"C's work in the earlier segments of the video is more focused on filing the metal rods, while his work in the latter segments is more focused on welding them.","C's work in the earlier segments of the video is more focused on conversing with the person, while his work in the latter segments is more focused on hammering metal rods.","C's work in the earlier segments of the video is more focused on picking up and putting down tools, while his work in the latter segments is more focused on turning and looking around the workshop.","C's work in the earlier segments of the video is more focused on turning and looking around the workshop, while his work in the latter segments is more focused on hammering metal rods.","C's work in the earlier segments of the video is more focused on hammering metal rods, while his work in the latter segments is more focused on filing them.","C's work in the earlier segments of the video is more focused on filing the metal rods, while his work in the latter segments is more focused on welding them." 361,b5d7c421-2b86-4ed0-b314-ce810c778c47,1nV1nhFoEIcp0qnuwG41b0QIVOIHOtbi4,Identify the main action performed by c throughout the video and provide a brief explanation of the pattern of behavior exhibited by c over time?,C paints a board with a paint brush.,"Casually, c turns slightly towards the side direction.",C paints a board with a paint brush.,C holds paint brushes.,"Casually, c takes a few leisurely steps forward, walking.","Casually, c glances over and examines the laptop screen closely." 362,b5da8ac2-01ae-4390-8e0b-ce777bb0c86b,15N6F-VTWYwzHew4qe5Shh60lJNvOpudT,"In the context of the video, identify two discernible phases of c's actions, and explain how these phases differ in terms of purpose or focus.","The first phase is when c is in the bedroom, and the second phase is when c is in the kitchen.","The first phase is when c is holding the laptop, and the second phase is when c is operating the computer.","The first phase is when c is looking around the room, and the second phase is when c is walking around the room.","The first phase is when c is touching the floor, and the second phase is when c is exercising on the floor.","The first phase is when c stands up, and the second phase is when c walks towards the bed.","The first phase is when c is in the bedroom, and the second phase is when c is in the kitchen." 363,b664157e-612e-477c-8ef7-04c15be9c66c,1x1OpAMR6Og6iFz6jKuP8HvrDBrLB96IC,"How would you describe the most significant transformation of the environment depicted in the video due to c's actions, and what might be the overall goal behind these actions?","The most significant transformation of the environment depicted in the video is the creation of a smooth, level surface.","The most crucial and significant transformation of the environment, as depicted in the video, involves the comprehensive removal of the rocks.","The most significant transformation of the environment, portrayed in the video, involves the creation of a path, noticeably altering the landscape.","The most significant transformation of the environment, depicted in the video, involves the impressive creation of a large wall structure.",The most significant transformation of the environment depicted in the video is the creation of a garden.,"The most significant transformation of the environment depicted in the video is the creation of a smooth, level surface." 364,b66bb54a-e3b3-4516-8072-32f6ae9aa7f1,1Bwls_r2cnheyyHxgIi_CLYbDPy3uSSZ8,"How did c interact with the environment during the painting process, and what secondary actions did he perform to maintain efficiency?",C interacted with the environment by moving mud and touching his face.,C interacted with the environment by dipping the paintbrush into the can of paint.,C interacted with the environment by moving mud and touching his face.,C interacted with the environment by placing his left hand on the floor.,C interacted with the environment by painting the steps.,C interacted with the environment by moving his left hand. 365,b6859c2c-d9f4-4c45-8f23-b7c033242c86,1fm8ddcTsIyd6XGDH-3khAxoDPbOh6jEp,"What was the main focus of the video in terms of the activity performed by c, and how did his actions progress throughout the video?",C was fixing a floorboard in his apartment.,"On a sunny day, c was diligently cleaning his apartment throughout.","During the day, c was taking a short break from their work responsibilities.",C was fixing a floorboard in his apartment.,"Casually, c was preparing and getting ready to happily go out for the evening.",C was playing a video game. 366,b6c66baa-f923-42e1-846f-e5fb2c6466bf,145aM34WXaPzo9JSS4ESHolUOJBs90t0h,"Provide a concise summary of the process c engages in throughout the video, and explain how the repetition of certain actions helps to achieve the desired result.",C kneads the dough until it is smooth and elastic.,"Carefully, c kneads the dough persistently until it becomes hard and dry, as desired.",C kneads the dough until it is soft and fluffy.,"Carefully, c kneads the dough persistently until it becomes light, airy, and perfectly elastic.","Carefully, c skillfully kneads the dough consistently until it eventually achieves a golden brown color.",C kneads the dough until it is smooth and elastic. 367,b70e3446-2c06-49fd-8d15-dfafd1b8eb09,1SzqxvDC9Z_WI97XW8ChvLUssrHS9inie,"What is the primary objective of c throughout the video, and how does their action sequence contribute to achieving it?","C's primary objective throughout the video is to move a series of stones from one location to another. c's action sequence contributes to achieving this objective by first lifting the stones with the forklift, then reversing the forklift to move the stones to the desired location, and finally lowering the stones.","C's primary objective throughout the entire video is to diligently learn how to skillfully operate a forklift. c's action sequence significantly contributes to achieving this objective by thoroughly practicing operating the forklift in a safe, secure, and controlled environment.",C's primary objective all through the video is to impress their friends immensely. c's action sequence contributes significantly to achieving this objective by skillfully performing a series of challenging and difficult maneuvers with the forklift.,"While c's primary objective throughout the video is to secure a job as a forklift operator, c's action sequence contributes to achieving this objective by effectively demonstrating their impressive skills and proficient abilities in operating a forklift.",C's primary objective throughout the video is to have fun. c's action sequence contributes to achieving this objective by performing a series of exciting and challenging maneuvers with the forklift.,"C's primary objective throughout the video is to move a series of stones from one location to another. c's action sequence contributes to achieving this objective by first lifting the stones with the forklift, then reversing the forklift to move the stones to the desired location, and finally lowering the stones." 368,b7657449-42cf-47bc-9092-c9ab2d240bea,1Y99SI49jc0Z94UwvXuaqHd3GJuXh8ZE7,What are the main steps involved in the woman and c's collaborative process during their interaction in the laboratory?,The woman and c collaboratively prepare a chemical solution by measuring and mixing various chemicals in a conical flask.,"The woman, along with c, are diligently preparing a meal together inside the laboratory.",The woman and c collaboratively prepare a chemical solution by measuring and mixing various chemicals in a conical flask.,"The woman, along with c, are diligently cleaning the laboratory together.","The woman, in collaboration with colleague c, are diligently conducting a scientific experiment together.",The woman and c are playing a game. 369,b81bb7b2-a16d-4cdc-8326-f4019f3be544,14rSgDZ_wSfSBTCJK-7L05qZfjmz90DMV,Identify the instances where c makes adjustments or changes while painting the wall. what significance do these actions have on the overall painting process?,"C makes two adjustments while painting the wall. first, he changes the brush he is using. second, he moves to a different part of the room. these adjustments allow him to continue painting efficiently and without making any mistakes.","C makes two adjustments while painting the wall. first, he changes the brush he is using. second, he moves to a different part of the room. these adjustments allow him to continue painting efficiently and without making any mistakes.",C does not make any adjustments while painting the wall. he continues using the same brush and working in the same spot. this makes it difficult for him to paint the wall evenly and without making any mistakes.,C makes too many adjustments while painting the wall. he changes the brush he is using several times and moves to different parts of the room frequently. this makes it difficult for him to keep track of what he is doing and results in a lot of wasted time.,"C makes the wrong adjustments while painting the wall. he changes the brush he is using to a smaller one, which makes it difficult for him to cover the wall evenly. he also moves to a part of the room that is already painted, which results in wasted paint.","C does not make any adjustments while painting the wall, but he should. the brush he is using is too small, and he is working in a part of the room that is already painted. these factors make it difficult for him to paint the wall evenly and without making any mistakes." 370,b8bdd88f-996d-47bc-beb8-3b54c60754ec,1wMOZUQKhAXCGMMOmaHCRaXcWguBJmi7l,What is the primary focus of the video and how does it relate to the various actions performed by c?,C is evaluating the condition of a camera.,C is evaluating the condition of a camera.,"Currently, c is diligently working on repairing a damaged camera.","Currently, c is diligently cleaning a camera with care.",C is taking pictures with a camera.,"Currently, c is actively filming a scene utilizing a camera." 371,b92dec6a-00ce-4767-a899-3d0aebcf2141,1nHCNLm-lwBxIRhYDIPItAsWB3nxAWBeF,Identify the most critical steps in c's painting technique and discuss the importance of these steps in achieving the final artwork.,"The most critical steps in c's painting technique are scooping paint from the pallet, cleaning the tip of the paintbrush, and dipping the paintbrush in water. these steps ensure that the paintbrush is always in good condition and that the paint is applied evenly.",The most critical steps in c's painting technique involve making expressive gestures in the air and gently touching her face. these specific steps aid her in staying concentrated and effectively visualizing the final desired product.,The most critical steps in c's painting technique are dropping the paintbrush on the ground and picking it up. these steps help her to experiment with different colors and techniques.,The most critical steps in c's painting technique involve carefully scooping paint from the pallet and skillfully painting the image on the canvas. these steps are absolutely the most essential to creating a visually stunning final product.,Among the most critical steps in c's painting technique are consistently alternating between the key actions. this approach helps her to create a smooth rhythm and fluid flow in her artwork.,"The most critical steps in c's painting technique are scooping paint from the pallet, cleaning the tip of the paintbrush, and dipping the paintbrush in water. these steps ensure that the paintbrush is always in good condition and that the paint is applied evenly." 372,ba760ab8-ae2d-4aee-9334-b91dd194ad8b,1sTqobzZMdxkmRrrpaPE9k0Pvn5bSmIv8,"Analyzing the overall progression of events in the video, describe the pattern c exhibited when interacting with the different paints and painting the stone. how did c transition between the different paints?",C used a variety of different paints to create a multi-colored design on the stone. c transitioned between the different paints by closing the lid on one paint and opening another.,"Creatively, c utilized a single paint hue to produce a solid color design on the stone surface. effortlessly, c transitioned between various colors by skillfully mixing the paint with some water.",C used a single paint to create a gradient design on the stone. c transitioned between different colors by using a wet brush to blend the paint.,"Creatively, c utilized a diverse variety of distinct paints to effortlessly create a captivating marbled design on the stone. seamlessly, c transitioned between the different paint colors by skillfully using a dry brush to effectively apply the paint.",C used a variety of different paints to create a multi-colored design on the stone. c transitioned between the different paints by closing the lid on one paint and opening another.,"In the artwork, c utilized a diverse assortment of paints to generate a splattered design on the stone confidently. skillfully, c transitioned between the various paint colors by flicking the paintbrush with precision." 373,badca629-9d3a-4e30-903a-dbc6ea65a7e8,1WxGKcHSZAEv3onHR7t5bkcEBv0SGRB2T,"Based on the video, if c had to decide which activity held the greatest importance or priority, what would it be? explain your reasoning.",Cleaning the books is the most important activity to c.,Cleaning the books is the most important activity to c.,Reading various books consistently is undoubtedly the most crucial activity to continually engage in.,Organizing the books is the most important activity to c.,The act of repairing the books is undoubtedly the most crucial and important activity to conduct.,Stealing the books remains as the most crucial and significant activity to accomplish for c. 374,bbe35aed-1c92-42de-8f50-7004cdae317e,1xxHmnu3YdmVdM4_lskSWUnBluqSfmDKW,What seems to be the primary setting and interaction between c and the child throughout the video?,A child is holding onto c's waist as they move around the house.,"Currently, c is leisurely walking around the entire house all by themselves.","Currently, c is joyfully playing with a young child in their spacious living room.",A child is holding onto c's waist as they move around the house.,"Currently, c is actively cooking delicious meals in the kitchen space.",C is taking a shower in the bathroom. 375,bbf66dab-376a-4c11-8528-22ca0c5b01c8,1_n5At5aI8pSjbENnzV4Dsi2sRIWv8WxN,Summarize the primary activity that c is involved in throughout the video and identify the tools that are being used.,C is making a basket out of bamboo strips.,C is making a basket out of bamboo strips.,"Currently, c is skillfully crafting a hat using strips made out of eco-friendly bamboo.","Currently, c is meticulously crafting a chair using strips of durable bamboo material.",C is making a table out of bamboo strips.,"C is constructing a fence using bamboo strips as material, diligently working." 376,bcf9aba0-a4b6-4210-8823-025f43f2631f,1d6ndtdC_EeGfjZ3evF0Btkvp9OvwqDQC,How does the sequence of actions involving the use of glue and magnet(s) on the magnetic animals capture the essence of the video in a single statement?,C uses glue to attach magnets to the magnetic animals.,C uses glue to attach the magnetic animals to the table.,C uses glue to attach magnets to the magnetic animals.,C uses glue to attach the magnetic animals to the wall.,C uses glue to attach the magnetic animals to each other.,C uses glue to attach the magnetic animals to a piece of paper. 377,bd01de0d-994a-4c4e-9009-9577111af977,1xRYIRItgbfaZxd2EGzangr-ARs7_8L3w,"What is the primary method c uses for preparing the leaves, and why might they need to complete this process multiple times?","C uses scissors to cut the leaves, and then wipes them with a cloth.","C uses a knife to cut the leaves, and then wipes them with a paper towel.","C uses scissors to cut the leaves, and then wipes them with a cloth.","C uses a blender to cut the leaves, and then wipes them with a sponge.","C uses a food processor to cut the leaves, and then wipes them with a hand towel.","C uses a pair of chopsticks to cut the leaves, and then wipes them with a napkin." 378,bd223d57-1b07-417e-8322-b5f1c8423c03,1nrLhG_CAhJ7u1ZAdfKVoS7QcRGTOgEBc,"What recurring activity takes place throughout the video, and how does it demonstrate the relationship between c and the dog?",C and the dog play fetch.,C and the dog play fetch.,C and the dog cuddle.,C and the dog eat together.,C and the dog take a walk.,C and the dog watch tv together. 379,bd389c94-28a0-4ef4-a8ee-9759291beb72,14miwMjNYP-6aiRrv2hgpQ7OvjOxiKDOa,"Based on the sequence of events in the video, identify the most crucial steps in c's overall creative or functional objective and explain their importance.","The most crucial steps in c's overall creative or functional objective are rolling the clay, shaping the clay, and compressing the clay.","The most crucial steps in c's overall creative or functional objective are cutting the clay, shaping the clay, and cooking the clay.","The most crucial steps in c's overall creative or functional objective are rolling the clay, shaping the clay, and compressing the clay.","The most crucial steps in c's overall creative or functional objective are rolling the clay, shaping the clay, and building a house out of it.","The most crucial steps in c's overall creative or functional objective are rolling the clay, shaping the clay, and playing with it.","The most crucial steps in c's overall creative or functional objective are rolling the clay, shaping the clay, and wrapping it in a sack." 380,bd58f24f-340f-448d-977b-bf49a0575b21,1MnIB22YNMstPgWKXbsNnJlI80TQYqdaT,"What is the primary purpose of c's actions throughout the video, and how do these actions support that purpose?",C is trying on different clothes to find the perfect outfit.,C is getting ready for a job interview.,C is trying on different clothes to find the perfect outfit.,C is planning to attend a date soon.,C is planning to attend and enjoy a festive party soon.,"It appears that currently, c is simply just messing around playfully." 381,bd5c107d-3d17-418c-a315-9d6b85072aef,1Vx_Wyqs0_6X8n1uy1ppkcSjOJ8SZyRmW,"Describe the main focus of the video, considering the different objects and materials that c works with throughout the video.",C is building a model of a camera.,"Currently, c is diligently working on repairing a broken camera.","Currently, person c is meticulously disassembling a camera piece by piece.","Currently, c is diligently cleaning and maintaining a camera.",C is taking pictures with a camera.,C is building a model of a camera. 382,bdd542a6-41c1-4119-b89d-101405d581df,1jUes_10hxtPJ5E0sKh5ol2egbxxiSnNP,Please provide a succinct summary of the primary objective and the key actions c performs in this video.,C is preparing a salad.,C is preparing a salad.,"Currently, c is in the process of making a delicious sandwich.","Currently, c is in the process of skillfully making a delicious smoothie.",C is making a stir-fry.,"In the kitchen, c is currently preparing and making a delicious soup." 383,bf9f6769-4d6e-41b2-a91a-97449485b0ce,1sm9RGEHtApG5icIaMXzZfJkEs9lo7Bc1,"What is the overall process and objective that c performs and adapts throughout the video, paying specific attention to her preparation and execution?",C is painting a picture.,C is cleaning a painting.,C is repairing a painting.,C is creating a digital painting.,C is painting a picture.,C is painting a mural. 384,bfd0435f-5b15-44d8-90f6-dfb063a43a6d,10nwa4D5imvDpTez-PxJIi1_Akoskpd9x,"What are the most significant actions undertaken by c that contribute to the overall goal of the task, and why are they important?","The most significant actions undertaken by c that contribute to the overall goal of the task are gathering the required tools, climbing the metal structure, mixing the cement, cutting the pipe, applying the cement to the wall, and putting the pipe in the wall. these actions are important because they are necessary to complete the task of repairing the pipe.","The most significant actions undertaken by c, essential for contributing to the overall goal of the task, are gathering required tools, climbing the metal structure, carefully mixing the cement, applying cement to the wall, and placing the rock in the wall. these actions hold importance since they are absolutely necessary for accomplishing the objective of repairing the pipe.","The most significant actions undertaken by c that contribute to the overall goal of the task are gathering the required tools, climbing the metal structure, mixing the cement, cutting the pipe, applying the cement to the wall, and putting the pipe in the wall. these actions are important because they are necessary to complete the task of repairing the pipe.","The most significant actions undertaken by c that contribute greatly to the overall goal of the task include gathering the essential tools, carefully climbing the metal structure, thoroughly mixing the cement, skillfully applying the cement to the wall, and firmly putting the plastic on the wall. these actions are highly important because they are absolutely necessary to complete the task of efficiently repairing the pipe.","Among the most significant actions performed by c, contributing to the overall goal of the task are: gathering the needed tools, climbing the metal structure, making cuts in the pipe, applying cement to the wall, and placing the plier in the bucket. these crucial actions are important, as they are essential prerequisites for successfully completing the pipe repair task.","The most significant actions undertaken by c that contribute to the overall goal of the task are gathering the required tools, climbing the metal structure, mixes the cement, applies the cement to the wall, and puts the trowel in the bucket. these actions are important because they are necessary to complete the task of repairing the pipe." 385,c04da37a-b98f-4796-afe2-1b7d3af20911,1qcLTua11yUBHjwJHClHS5zFXV66PeImq,"How did c maintain organization in the kitchen throughout the video, touching on their actions related to placing utensils, appliances, and other kitchen items after use?","C maintained organization in the kitchen by placing utensils, appliances, and other kitchen items after use in their designated places. for example, c placed the cup in a cupboard, the blender cup in a shelf, the grater in a cupboard, the sieve in a drawer, and the pot lid in a cupboard.","C maintained organization in the kitchen by placing utensils, appliances, and other kitchen items after use in random places. for example, c placed the cup on the kitchen counter, the blender cup on the kitchen counter, the grater on the kitchen counter, the sieve on the kitchen counter, and the pot lid on the kitchen counter.","C maintained organization in the kitchen by placing utensils, appliances, and other kitchen items after use in the sink. for example, c placed the cup in the sink, the blender cup in the sink, the grater in the sink, the sieve in the sink, and the pot lid in the sink.","C maintained organization in the kitchen by placing utensils, appliances, and other kitchen items after use in their designated places. for example, c placed the cup in a cupboard, the blender cup in a shelf, the grater in a cupboard, the sieve in a drawer, and the pot lid in a cupboard.","C maintained organization in the kitchen by placing utensils, appliances, and other kitchen items after use in the trash can. for example, c placed the cup in the trash can, the blender cup in the trash can, the grater in the trash can, the sieve in the trash can, and the pot lid in the trash can.","C maintained organization in the kitchen by placing utensils, appliances, and other kitchen items after use in the dishwasher. for example, c placed the cup in the dishwasher, the blender cup in the dishwasher, the grater in the dishwasher, the sieve in the dishwasher, and the pot lid in the dishwasher." 386,c2707418-5b63-40a7-810f-a0ff59e13f47,12YgwgRPj3ow_zj65Op7bHdsIiSSuzIzF,"How did c maintain cleanliness in the kitchen, both in terms of the tasks completed and the objects used in the process?","C maintained cleanliness in the kitchen by washing the skillet, sponge, and countertop with soap and water.",C maintained cleanliness in the kitchen by wiping the countertop with a dry cloth.,"Conscientiously, c maintained cleanliness in the kitchen area by promptly putting the used skillet in the dishwasher for washing.","C maintained cleanliness in the kitchen by washing the skillet, sponge, and countertop with soap and water.","By consistently disposing of the skillet, c efficiently maintained cleanliness and order within the kitchen area.","Consistently, c maintained the cleanliness in the kitchen area by diligently sweeping the floor daily." 387,c30ad099-06ec-4945-ad82-a08276750f2b,1YkZVxjnHa6m_VddXisrHMedwI6MYzxS9,"Based on c's actions, what could be deduced as the overall objective of the video? provide a concise yet comprehensive conclusion.",C is trying to clean up the area.,C is trying to make a pile of apples and twigs.,C is trying to make a sculpture out of apples and twigs.,C is trying to make a fire with apples and twigs.,C is trying to clean up the area.,C is trying to make a compost pile with apples and twigs. 388,c3ef6035-08c6-458e-b2d4-d7dc8f97f658,1d78M1La9McC837b0ngXi9Z9y6WC_9SwJ,How does c effectively use the available kitchen resources and tools to prepare the dish? discuss the role of various tools in the process and how their use has facilitated the preparation.,"C uses a frying pan, a stove, a sachet of potato chips, a pair of chopsticks, a piece of tissue paper, a bottle of oil, and a pack of seasoning.","C uses a knife, a cutting board, a pot, a spoon, and a fork.","C skillfully uses a blender, a food processor, a whisk, a handy measuring cup, and a precise measuring spoon.","C efficiently uses a microwave, a toaster, a kettle, a coffee maker, and a high-performance blender.","Consequently, c utilizes a stove, a frying pan, a pot, a spoon, and a fork while cooking.","C uses a frying pan, a stove, a sachet of potato chips, a pair of chopsticks, a piece of tissue paper, a bottle of oil, and a pack of seasoning." 389,c4bdfb22-e10a-49a0-a8fe-60ec2b966b56,1tIl074fkAuGZpO9mT_5wdGczdXfGehMv,"Based on the actions performed by the woman in the video, determine her primary goal and support your conclusion with relevant evidence from the video.","The woman's primary goal is to buy groceries. she is shopping for items such as cereal, milk, and cookies.",The woman's primary goal is to work in the grocery store. she is stocking shelves and helping customers.,"The woman's primary goal is to buy groceries. she is shopping for items such as cereal, milk, and cookies.",The woman's primary goal is to socialize. she is talking to other shoppers and employees.,The woman's primary goal is to relax. she is listening to music and taking pictures.,The woman's primary goal is to document her shopping trip. she is taking pictures of the items she buys and the people she sees. 390,c5004075-e154-4bb8-baea-e41915190319,15pj5YrwU1rbra2qLNoLfRwnXZCxOYSmH,"Describe the central theme of the video and the sequence in which c goes through the activity. focus on the primary objective of the video and the main tools/processes used by c, rather than listing the detailed actions step-by-step.",C is making a pizza.,"Currently, c is in the process of making a delicious cake.","Currently, c is diligently making a delicious pie in the kitchen.",C is making a sandwich.,"Currently, c is in the process of making a delicious salad.",C is making a pizza. 391,c50c237d-28b2-4907-8730-31060589eb68,11cEhhR7RbiJm_FCm9CLwKYn1OUTEeRWQ,"Summarize the main components of the activity performed by c throughout the video, highlighting any distinct instances or pattern changes.",C embroiders a piece of fabric.,C sews a piece of fabric.,"Carefully, c knits a piece of fabric with dedication and skill.","Carefully, c skillfully crochets a lovely piece of fabric, creating art.",C embroiders a piece of fabric.,"In the studio, c carefully paints a decorative piece of fabric for display." 392,c5b9ddd5-2ebb-41a5-a66e-45e9f7739a71,1XYD1prnuvf02vw_pvqfJzsuv9_WUzQMQ,"What was the primary goal behind all the actions performed by c in the video, and how did the methods of achieving this goal evolve throughout the video?",C was trying to sharpen a knife.,"Carefully, c was attempting to cut the paper with precision.","Cautiously, c was attempting to carefully polish and clean a sharp knife.",C was trying to clean a knife.,"C was attempting to break a knife, making an effort to snap it.",C was trying to sharpen a knife. 393,c66fe71d-e9c3-4983-ad77-26c0a8b1c0b9,13llFEtXfJF2324HVGjbLoaK3jk53bDz_,"What was the primary objective of c's actions throughout the video, and how did their choice of actions work towards accomplishing that goal?",C's primary objective was to remove the soil from the terrace.,C's primary objective initially focused on constructing a solid wall efficiently.,C's primary objective for the day was simply to plant a beautiful tree.,C's primary objective was to remove the soil from the terrace.,C's primary objective was to clean the terrace.,C's primary objective mainly focused on engaging in physical exercise activities. 394,c6bf44c3-2163-4fbc-8ff7-c07a6e3e533b,1ybprNfOi_6ba0oXSpWkgx5gvmeG6guM1,"Taking into account the entire video, explain the main purpose of the various actions and interactions with the box and the paper.",The main purpose of the various actions and interactions with the box and the paper is to create a craft project.,"The primary aim, involving the main purpose of the various actions and interactions with the box and the paper elements, is ultimately to clean and tidy the room.",The main purpose of the various actions and interactions with the box and the paper is to create a craft project.,The main purpose of the various actions and interactions with the box and the paper is to pack a suitcase.,The primary objective of engaging in various actions and interactions with the box and the paper is to effectively create and establish a comprehensive model.,The primary objective of the numerous actions and interactions involving the box and the paper is ultimately to engage in a playful game. 395,c7670500-3a0f-4f31-a85a-a1cf708b2f49,1bgKA6Xf4CUSDOOPqLsJOuUTsX5hDZB35,How did the process of preparing and handling the syringe change from the beginning to the end of the video?,"The process of preparing and handling the syringe changed from the beginning to the end of the video in that the needle was removed and disposed of at the beginning, and then reattached at the end.","The process of preparing and handling the syringe changed from the beginning to the end of the video in that the needle was removed and disposed of at the beginning, and then reattached at the end.","The process of preparing and handling the syringe changed from the beginning to the end of the video in that the syringe was sealed at the beginning, and then unsealed at the end.","The process of preparing and handling the syringe changed from the beginning to the end of the video in that the syringe was filled with liquid at the beginning, and then emptied at the end.","The process of preparing and handling the syringe changed from the beginning to the end of the video in that the syringe was held in the right hand at the beginning, and then held in the left hand at the end.","The process of preparing and handling the syringe changed from the beginning to the end of the video in that the syringe was used to inject liquid into a test tube at the beginning, and then used to extract liquid from a test tube at the end." 396,c7985015-ea2e-4554-b7fe-3d91ab64f216,1vF-2nypB2soH0lhTTGOCNGuW-G3VGsxL,"Based on the actions performed by the individuals in the video, what can you conclude about their roles in the process and the division of labor between them?","Based on the actions performed by the individuals in the video, it can be concluded that the man is responsible for preparing the dough, while the woman is responsible for baking the dough.","Observing the actions executed by the individuals in the video, it can be reasonably concluded that the man takes charge of baking the dough, whereas the woman assumes responsibility for preparing the dough.","Based on the actions performed by the individuals in the video, it can be concluded that the man and the woman are both responsible for preparing the dough.","Observing the actions performed by the individuals in the video, it can be reasonably concluded that the man and the woman are both actively participating and responsible for baking the dough together.","Based on the observed actions performed by the individuals present in the video, it can be reasonably concluded that the man and the woman are both equally responsible for eating the dough.","Based on the actions performed by the individuals in the video, it can be concluded that the man is responsible for preparing the dough, while the woman is responsible for baking the dough." 397,c83b4b7d-56e8-433b-b743-13a8a0b3211b,1VEmbJ9S0xtfjhBIdvYyvlZAp7nDvSI73,"Describe the relationships between the cardboard, transparent paper, and kraft paper in the video, and explain how c interacts with and works on these materials. focus on the main techniques used to manipulate these materials.","The cardboard, transparent paper, and kraft paper are all used to create a template for a piece of art. the cardboard is used as the base, the transparent paper is used to create the design, and the kraft paper is used to protect the design from being damaged. c interacts with these materials by cutting them, measuring them, and organizing them. he uses a variety of techniques to manipulate these materials, including using a ruler, a utility knife, and his hands.","The cardboard, transparent paper, and kraft paper are all used to create a model of a building. c interacts with these materials by cutting them, measuring them, and assembling them. he uses a variety of techniques to manipulate these materials, including using a ruler, a utility knife, and his hands.","The cardboard, transparent paper, and kraft paper are all utilized to create a unique piece of furniture. c skillfully interacts with these materials by accurately cutting them, measuring them, and diligently assembling them. he expertly uses a variety of techniques to manipulate these materials, including employing a ruler, a sharp utility knife, and his own hands.","The cardboard, transparent paper, and kraft paper are all utilized to create a unique piece of clothing. 'c' interacts with these materials by cutting them, measuring them, cautiously sewing them together. he employs a variety of techniques to manipulate these chosen materials, including using a ruler, a utility knife, and his skilled hands.","The cardboard, transparent paper, and kraft paper are all utilized collaboratively to create an exquisite piece of art. artist c interacts intimately with these diverse materials by skillfully painting them, drawing on them, and carefully gluing them together. he employs a variety of techniques to manipulate these elements, including using a paintbrush, a pencil, and his own hands.","The cardboard, transparent paper, and kraft paper are all used to create a template for a piece of art. the cardboard is used as the base, the transparent paper is used to create the design, and the kraft paper is used to protect the design from being damaged. c interacts with these materials by cutting them, measuring them, and organizing them. he uses a variety of techniques to manipulate these materials, including using a ruler, a utility knife, and his hands." 398,c93f3f21-63f5-48a3-b627-0aea50d26824,1oT8H6LPBajxN0nSeqAL1nDq15awVvB_V,"In the video, what can you deduce about the relationship between c and the man based on their interactions and the setting?",C and the man are friends.,C and the man are friends.,"Coincidentally, it seems that c and the man have become passionate lovers recently.","Coincidentally, both c and the man happen to be strangers.",C and the man are enemies.,"In the office, c and the man work together as colleagues and coworkers." 399,cb029e59-85d7-48df-924c-a2f1cb33194d,1PSrRI5qUkWskKO1goCHgWgMGTW9EiPxJ,What seems to be the main purpose of the video? what actions did c perform to achieve this purpose?,The main purpose of the video is to show how to use a resistance band to exercise your arms and upper body.,The main objective of this instructional video is to effectively demonstrate how to easily tie your hair back.,The main purpose of the video is to show how to open a jar.,The primary objective of the video presentation is to demonstrate the most effective methods for properly cleaning your windows.,The main purpose of the video is to show how to use a resistance band to exercise your arms and upper body.,The primary objective of this video presentation is to effectively demonstrate the proper way to engage in a fun tug-of-war match with your canine companion. 400,cc3abb84-1317-4718-b414-75f899c20ee3,1oVOkTN28PSN0I7ZGbC0MGCueBxGMZuJs,Can you summarize the main progression and relationship between the two individuals as they work on the metal and handrail?,"The man and c are working together to weld a piece of metal. the man welds the piece of metal, and c holds the cord of the angle grinder.","The man and c are collaboratively working together to construct a handrail. while the man skillfully cuts the designated piece of metal, c steadily holds the metal rod in place.","The man, in collaboration with c, are diligently working together to repair a car. the man skillfully welds the piece of metal, while c securely holds the wrench.","The man and c are working together to weld a piece of metal. the man welds the piece of metal, and c holds the cord of the angle grinder.","The man and c are working together to build a house. the man cuts the piece of wood, and c holds the hammer.","The man, alongside c, are collaboratively working together to construct a boat. the man skillfully welds the piece of metal, while c diligently holds the necessary screwdriver." 401,cca8ab2f-4e4b-40ef-80e7-d04c404895c1,10WouOC_er-P3XHBljHkg57zOEVWt3CvN,"What are the primary tools used by the man and c during the video, and how do they utilize these tools to achieve a specific objective? analyze their skill levels and improvements during the process.","The man and c are using a hammer, a masonry chisel, and a tape measure. the man is using the hammer to drive the chisel into the wood, while c is using the tape measure to measure the distance between the pieces of wood. they are using the tools effectively, and the task is progressing smoothly.","The man and c are using a screwdriver, a wrench, and a hammer. the man is using the screwdriver to turn the screws, while c is using the wrench to turn the nuts. they are using the tools effectively, and the task is progressing smoothly.","The man and c are skillfully using a saw, a drill, and a hammer together. the man is carefully using the saw to cut the wood, while c is diligently using the drill to make holes in the wood. successfully, they are using the tools effectively, and the task is progressing quite smoothly.","The man and c are skillfully using a paintbrush, a roller, and a bucket for painting. the man is diligently using the paintbrush to paint the walls, while c is expertly using the roller to paint the ceiling. together, they are using the tools effectively, and the task is progressing impressively smoothly.","The man and c are using a hammer, a masonry chisel, and a tape measure. the man is using the hammer to drive the chisel into the wood, while c is using the tape measure to measure the distance between the pieces of wood. they are using the tools effectively, and the task is progressing smoothly.","The man and c are skillfully using a broom, a dustpan, and a vacuum cleaner together. the man is diligently using the broom to sweep the floor, while c is efficiently using the dustpan to collect the dirt. they are using the cleaning tools effectively, and the task is progressing quite smoothly." 402,cd2e4351-de59-4511-ab43-36c37b388a8d,1SOWfSXhMtEgAtLwncZBjTH2qzexF9yWG,"What was the primary goal of c's actions throughout the video, and how did his interactions with the carton box evolve during the course of the video?",C's primary goal was to cut open the carton box.,C's primary goal was to cut open the carton box.,C's primary goal was to move the carton box.,C's primary goal was to measure the carton box.,C's primary goal was to draw a line on the carton box.,C's primary goal was to cover the marker with the cover. 403,cd384dae-4229-4fa5-9fed-e4b5a1432f29,1KZbLtaq_m5DLC3u8-dSPSWptSJhWWqk7,"Can you summarize the main stages of the video, from the start to when the character interacts with the wood cutting machine?","The video starts with the character picking up a piece of wood and an impact driver. he then uses the impact driver to drill holes in the wood. next, he places the wood under a shelf and secures it in place. finally, he interacts with the wood cutting machine by inserting a piece of wood into it and cutting it to size.","The video starts with the character picking up a piece of wood and a saw. he then uses the saw to cut the wood to size. next, he places the wood under a shelf and secures it in place. finally, he interacts with the wood cutting machine by inserting a piece of wood into it and cutting it to size.","The video begins with the character picking up a piece of wood and a hammer. he proceeds by using the hammer skillfully to nail the wood securely to the wall. next, he strategically places the wood under a shelf and firmly secures it in place. lastly, he interacts with the wood cutting machine by carefully inserting a piece of wood into it and cutting it to the desired size.","The video commences with the character picking up a wooden piece and a screwdriver tool. he then skillfully utilizes the screwdriver to attach the wood firmly onto the wall. subsequently, he situates the wood underneath a shelf, securing it in its position. in conclusion, he engages with the sophisticated wood cutting machine, introducing a separate wood piece and precisely cutting it to the desired size.","The video commences with the character picking up a piece of wood and a paintbrush. subsequently, he utilizes the paintbrush to apply paint on the wood. following this, he carefully places the wood under a shelf, securing it firmly in place. at last, he engages with the wood cutting machine by inserting a piece of wood into it, skillfully cutting it to the desired size.","The video starts with the character picking up a piece of wood and an impact driver. he then uses the impact driver to drill holes in the wood. next, he places the wood under a shelf and secures it in place. finally, he interacts with the wood cutting machine by inserting a piece of wood into it and cutting it to size." 404,cd569206-229f-44ac-aa8f-be52f68b0fd6,1gQmCES-vB-8V167naZais-1x9sLWsMoj,"In this video, what is the primary task that c is performing and how does he ensure that it is completed effectively?",C is cleaning the room.,"Currently, c is busy cooking in the kitchen.","Currently, c is occupied with doing their laundry task.",C is cleaning the room.,"Currently, c is in the bathroom taking a refreshing shower.",C is sleeping. 405,cd5fc9e9-7a80-4bd6-a175-f07ad35ee7f6,1Bdy8Nk08VIXR4AkHaq1PdHXSEKEEhtz1,"In terms of efficiency, which sequences of actions did c perform in the video that demonstrate an effective cleaning method?: students' ability to compress information from the video rather than just listing the actions that happened in the video.","C cleaned the toilet, sink, floor, and instant shower in a clockwise order. she started by cleaning the toilet, then the sink, then the floor, and finally the instant shower.","C cleaned the toilet, sink, floor, and instant shower in a counterclockwise order. she started by cleaning the instant shower, then the sink, then the floor, and finally the toilet.","C cleaned the toilet, sink, floor, and instant shower in a random order. she did not clean the objects in any particular order.","C cleaned the toilet, sink, floor, and instant shower in a specific order based on their location in the bathroom. she started by cleaning the object that was closest to the door, then the object that was next closest to the door, and so on.","C cleaned the toilet, sink, floor, and instant shower in a clockwise order. she started by cleaning the toilet, then the sink, then the floor, and finally the instant shower.","C cleaned the toilet, sink, floor, and instant shower in a specific order based on their level of difficulty to clean. she started by cleaning the object that was easiest to clean, then the object that was next easiest to clean, and so on." 406,cd882b7a-0766-4582-8388-3990b009b11b,1T8x76rjQ0obwh43CaaRNmH1bhdjpPuCF,"Describe the different materials and tools c utilized to achieve the main action of the video, and explain the role of each in the process without listing individual actions.","C used a knife, sandpaper, scissors, and a towel.","C used a knife, sandpaper, and a pair of gloves.","C used a knife, sandpaper, and a piece of paper.","C used a knife, sandpaper, scissors, and a towel.","C used a knife, sandpaper, and a table.","C used a knife, sandpaper, and a chair." 407,ce09bc68-1e3b-49c2-bbaf-115c7ca3c54f,1tgJXmjYiBTlZ5hxMeKF2p9bzMBJQuqM7,Could you provide a concise description of c's primary technique for working with the clothes and its significance in achieving their goal?,C's primary technique for working with the clothes is to use a needle and thread to sew them together.,C's primary technique employed for working with the clothes involves utilizing a scissors to skillfully cut them.,C's primary technique for working with the clothes is to use an iron to press them.,C's primary technique for working with various clothes involves utilizing a washing machine to effectively wash and clean them.,C's primary technique for working with the clothes is to use a needle and thread to sew them together.,C's primary technique for efficiently working with the clothes involves utilizing a dryer to effectively dry them out. 408,cee8ee9e-723a-45f8-9a09-889790f60f7e,1mZ-x-6c2s8pHBGnCN-F3zr7NZeo50eqh,"Compare and contrast the significance of the various interactions between c and the man throughout the video. what patterns emerge, and what can we understand from their relationship?",C and the man are playing a card game.,"Currently, c and the man are actively engaged in having a friendly conversation with each other.",C and the man are playing a card game.,C and the man are arguing.,"Currently, c and the man seem to be playfully flirting with each other.","Currently, both c and the man are actively collaborating and working together efficiently." 409,cf9298e5-6da3-42ba-bae9-fa3d75ad4d02,1iAwj88PbQE31k4Q04BS6EkkEkQKk3msD,"What is the overall progression of c's exploration throughout the construction site, including their interaction with specific items?","C enters the construction site, drops a cable reel and a blue file, picks up a silicone gun, drops it, and then walks around the site.","C enters the construction site, drops a cable reel and a blue file, picks up a silicone gun, drops it, and then walks around the site.","C enters the construction site, drops a cable reel and a blue file, picks up a silicone gun, drops it, and then walks around the site, looking for something.","C enters the construction site, drops a cable reel and a blue file, picks up a silicone gun, drops it, and then walks around the site, looking for someone.","C enters the construction site, drops a cable reel and a blue file, picks up a silicone gun, drops it, and then walks around the site, looking for a way out.","C enters the construction site, drops a cable reel and a blue file, picks up a silicone gun, drops it, and then walks around the site, looking for something to do." 410,d0b39eec-b72f-4b65-a94a-0f2c18296e71,1EV6w39AefiIhMovJfVQfiHeG_mMjD-gj,Analyze the significance of the manual in the video and explain how the lady's engagement with it may have influenced her actions in the scene.,The manual is a cookbook that the woman is using to help her cook the meal. she is looking at the manual to find recipes and instructions.,The manual is a cookbook that the woman is using to help her cook the meal. she is looking at the manual to find recipes and instructions.,The manual is a repair manual that the man is using to help him fix a broken appliance. he is looking at the manual to find instructions on how to disassemble and reassemble the appliance.,The manual is a user manual that the woman is using to help her set up a new piece of equipment. she is looking at the manual to find instructions on how to connect the equipment and how to use its features.,The manual is a training manual that the man is using to help him learn a new skill. he is looking at the manual to find step-by-step instructions on how to perform the skill.,"The manual is a reference book that the woman is using to help her learn about a particular topic. she is looking at the manual to find information on the topic, such as its history, its definition, and its uses." 411,d0bbd7fa-2a15-4c25-ab06-adc7d04bce7b,1vNIq-7qRbF7TH8eHqfcj_kKy9MC_rtiq,"Considering the variety of activities c performs in the video, can you identify and describe two distinct types of activities and their significance in the overall scenario?",C's actions can be divided into two types: warm-up exercises and stretching exercises.,C's actions can be divided into two types: yoga exercises and dance exercises.,C's actions can be divided into two types: martial arts exercises and stretching exercises.,C's actions can be divided into two types: warm-up exercises and cool-down exercises.,C's actions can be divided into two types: cardio exercises and strength-training exercises.,C's actions can be divided into two types: warm-up exercises and stretching exercises. 412,d0cc3ba5-14cc-4d4d-82db-fec29ad01e3e,1e3j0H6YA-fM0HlumzON1OULFg8bHK74M,"Based on the video, which two overarching themes or repetitive patterns can you identify in c's actions?",The two overarching themes or repetitive patterns that can be identified in c's actions are filing the iron and adjusting the bag of the iron.,The two dominant overarching themes or easily noticeable repetitive patterns that can be identified in c's actions involve dropping the iron and subsequently picking up the filing machine.,"The two dominant, overarching themes or prevalent repetitive patterns recognizable in c's actions include consistently moving the iron and persistently carrying the iron.","The two primary, overarching themes or continuously repetitive patterns identifiable in 'c's actions are adjusting the iron's carrying bag and consistently holding the iron itself.",The two overarching themes or repetitive patterns that can be identified in c's actions are filing the iron and repairing the iron.,The two overarching themes or repetitive patterns that can be identified in c's actions are filing the iron and adjusting the bag of the iron. 413,d135be4f-96a4-4a14-82a1-7d8d34546752,1yxhvQT00L_XEtXSQiW78qJ1uhvQRErDF,Identify the primary objective of the actions performed in the video and describe the techniques used to achieve that objective without listing the individual actions.,The primary objective of the actions performed in the video is to clean the inside of a vacuum wand. the techniques used to achieve this objective include using a metal rod to reach into the narrow openings of the vacuum wand and using a flashlight to illuminate the inside of the vacuum wand.,The primary objective of the actions performed in the video is to clean the inside of a vacuum wand. the techniques used to achieve this objective include using a metal rod to reach into the narrow openings of the vacuum wand and using a flashlight to illuminate the inside of the vacuum wand.,The main primary objective of the various actions skillfully performed in the demonstrative video is to carefully disassemble a vacuum wand component.,The primary objective of the actions performed in the video is to repair a vacuum wand.,The main purpose behind the primary objective of the actions performed in the video is to carefully inspect and examine a vacuum wand.,The main primary objective of all the actions carefully performed in the informative video is to efficiently assemble a vacuum wand. 414,d204f3d8-47a1-4e84-a3d3-ca20ebccd932,1kC4G6EdYxQwqeSfGEPGRdGDKoROoMhPm,"Can you identify the primary activity that c is engaged in throughout the video, and how they incorporated breaks or pauses during this activity?",C is playing a video game.,C is working on a computer.,"Currently, c is spending time attentively watching an entertaining movie.","Currently, individual c is enjoying and listening to their favorite music.",C is playing a video game.,"Currently, c is peacefully sleeping and resting." 415,d299858f-cde8-49a9-a713-fb546db0a268,1hBwimtdQHndgUnrpBbrwN0V4n45D7LZC,"What is the primary repetitive task in this video, and how does it evolve throughout the video?",The primary repetitive task in this video is plastering a wall with mortar.,"In this video, the main primary repetitive task consistently carried out involves accurately measuring the wall's dimensions.",The primary repetitive task in this video is interacting with other people.,The primary repetitive task in this video is plastering a wall with mortar.,"In this video, the primary repetitive task being performed consistently is scraping off mortar from the wall surface.","In this video, the primary and most repetitive task being performed consistently is pouring and spreading mortar on the wall surface." 416,d30c1b6c-bbcb-490b-b104-c30b8cb985d3,1y5yuhHCJmpyg4VADGJGe4uKDbcz7uGTq,Identify a possible turning point in the character's sequence of actions that suggests a shift in their focus or goals within the video. explain your choice and how it is significant to understanding the video.,The character stands up and opens a drawer.,"In the story, the main character carefully picks up a small white eraser nearby.","Swiftly, the character skillfully erases the visible markings on the smooth paper surface.",The character writes on the paper.,The character attentively glances towards and examines the paper in hand.,The character stands up and opens a drawer. 417,d33126fd-07dd-480e-ad89-9fdca4f813c4,1Yw-l_m4iD0c9MROJlkOuTPu7GjRHvB3w,"What were the main tasks and devices c interacted with in the video, and how would you summarize their purpose?","C interacted with a laptop and an ipad. the laptop was used for typing and writing, while the ipad was used for taking notes and drawing.","C interacted with a laptop and an ipad. the laptop was used for typing and writing, while the ipad was used for taking notes and drawing.","C interacted with a laptop, a phone, and a coffee mug. the laptop was used for typing and writing, the phone was used for making calls and sending texts, and the coffee mug was used for drinking coffee.","C interacted with a laptop, a mouse, and a keyboard. the laptop was used for typing and writing, the mouse was used for controlling the cursor on the screen, and the keyboard was used for entering text.","C interacted with a laptop, a printer, and a scanner. the laptop was used for typing and writing, the printer was used for printing documents, and the scanner was used for scanning documents.","C interacted with a laptop, a calculator, and a ruler. the laptop was used for typing and writing, the calculator was used for performing calculations, and the ruler was used for measuring distances." 418,d38b4b2b-3422-4618-ab2a-6f0d08f13e00,1n_NP7xYJFwe1oyOrEsL0yPag7aWBcPL5,"Based on the actions performed by c, what are the two main activities that c engages in throughout the video?",Watching tv and cleaning.,"Daily activities include resting, sleeping, consuming food, and eating nutritious meals.",Engaging in both working diligently and enjoying leisurely playing activities.,Watching tv and cleaning.,Reading and writing.,Engaging in essential chores like cooking and cleaning tasks. 419,d430cf3f-da86-4d94-acd1-7e033d23598a,1wjjG-QvBy9dKVYNz0z7fP1ISMAdl8s5H,"Based on the high-level details of the video, can you deduce the main objective behind c's actions in the video?",C is trying to learn about a particular topic.,"Currently, c is earnestly attempting to write an engaging book.","Currently, c is attempting to diligently take notes during a class session.","Currently, c is working diligently to put together an impressive presentation.",C is trying to solve a problem.,C is trying to learn about a particular topic. 420,d4de7210-0818-4ebc-ba65-21d3b784638a,1lDGDIr6XUjqVddSJFRB3S36pwgsbiRL1,"Describe the primary task that c was focused on throughout the video, and how their interactions with other characters contributed to the completion of this task.",C was focused on preparing and serving yorkshire pudding.,"Giving full attention, c was entirely focused on cleaning and tidying the kitchen space.",C was focused on preparing and serving yorkshire pudding.,"In the morning, c was intently focused on diligently making breakfast.",C was focused on spending time with their family.,"Clearly, c was intently focused on watching tv without any distractions." 421,d56e2a13-81ff-4431-9446-7b257b5646b6,1OxUSwNVbkGH30kXE7dJIQTG-KHxZj6gy,"In your own words, describe the most significant action or sequence of actions that contributed to the accomplishment of c's objective. explain why you believe this part of the video is crucial.",The most significant action or sequence of actions that contributed to the accomplishment of c's objective is the folding of the clothes.,The most significant action or sequence of actions that contributed to the accomplishment of c's objective is the picking up of the clothes.,The most significant action or sequence of actions that contributed to the accomplishment of c's objective is the placing of the clothes in the wardrobe.,The most significant action or sequence of actions that contributed to the accomplishment of c's objective is the folding of the clothes.,The most significant action or sequence of actions that contributed to the accomplishment of c's objective is the cleaning of the bed.,The most significant action or sequence of actions that contributed to the accomplishment of c's objective is the sorting of the clothes. 422,d5ea4b32-7e72-4195-82c2-257ed2e455ef,1y-XGWSDL13k1_5ejtvmx20BCwH1yNN2B,What is the primary outcome of c's actions involving the magnetic animals throughout the video?,C creates a sculpture out of magnetic animals.,C creates a painting out of magnetic animals.,C creates a sculpture out of magnetic animals.,"Cleverly, c designs and creates a unique model composed of various magnetic animals as components.","Curiously, c generates a unique map utilizing magnetic animals creatively.","Casually, c skillfully creates an intriguing puzzle utilizing magnetic animals for amusement." 423,d608c89b-370c-4d16-98cf-41ab94c6b6fc,1xVotodT36u0beS09EZu8b6iuDvimINtX,"Summarize the primary task being carried out by c in the video, and discuss how c's actions throughout the video demonstrate preparation and planning for this task.",C is painting the wall.,C is checking the papers in hand.,C is painting the wall.,C is walking at the construction site.,C is shaking the spray paint.,C is kneeling down. 424,d68218d2-5071-458d-8e4d-87f5707b7fbc,166wKtL4UoIGoOYCWb4kdq2YIhJEEenEV,"Identify the critical steps in c's workflow that, if skipped, would have the most substantial impact on the outcome of the task he was performing. analyze the importance of these steps in the context of the overall process.","The critical steps in c's workflow are the steps where he puts the plate, small bricks, wood, and spoons in the molding machine. these steps are essential for creating the mold for the spoon.","The critical steps in c's workflow are the steps where he puts the plate, small bricks, wood, and spoons in the molding machine. these steps are essential for creating the mold for the spoon.","The critical steps in c's workflow involve the instances where he walks around the workshop area. interestingly, these particular steps are not essential or required for creating the mold for the spoon.","The critical steps in c's workflow are the steps where he picks up a plate, small bricks, wood, and spoons. these steps are not essential for creating the mold for the spoon.","The critical steps in c's workflow process involve the steps where he transports the wood. however, these specific steps are not essential for constructing the mold designated for the spoon.",The crucially important steps in c's workflow involve the stages where he carefully places the spoons into the molding machine. these specific steps are absolutely essential for accurately creating the desired mold for the spoon. 425,d6b675f3-0a26-48ff-b865-0417c115267e,1WxJv3FjbYMCkure8bFzxUq7PnGZJUvXp,What was the purpose of c interacting with both the molds and the wood? explain how these interactions contributed to the overall goal of the video.,"C interacted with both the molds and the wood in order to create the vase clay items. the molds were used to shape the clay, and the wood was used to support the clay while it was drying.","C interacted with both the molds and the wood in order to create the vase clay items. the molds were used to shape the clay, and the wood was used to support the clay while it was drying.","Curiously, c interacted with both the molds and the wood intentionally in order to destroy the vase clay items effectively. the molds were cleverly used to break the clay apart, and the wood was strategically used to smash the clay into pieces.","C interacted with both the molds and the wood in order to clean the vase clay items. the molds were used to scrub the clay, and the wood was used to wipe the clay.","The creator interacted with both the molds and the wood during the decoration process of the vase clay items. utilizing the molds to add intricate patterns to the clay, the artist then employed the wood for painting the clay surface.","Consequently, c interacted carefully with both the molds and the wood materials to proficiently repair the vase clay items. the molds effectively were used to fill in visible cracks in the fragile clay, and the smooth wood was employed to selectively sand the clay surfaces." 426,d85518f1-eee2-4d34-b955-6052f3d7dd2d,13ye2QJB055YqmBDnXBi649ssSl2pTtcr,"Based on the actions in the video, determine the overarching goal of the individual's actions, and identify key steps they took to achieve it.",The individual's overarching goal was to create a notebook cover.,"Ultimately, the individual's overarching goal and primary focus was to successfully create a detailed sketch.",The individual's overarching goal was to create a notebook cover.,"Ultimately, the individual's overarching goal was to diligently create a comprehensive, accurate map.",The individual's overarching goal was to create a blueprint.,The ultimate objective of the individual was to successfully create a comprehensive list themselves. 427,d9808f8d-d318-4c66-bdf2-50b9dacfbee4,1h1bRmIxoFT_s8xpMFM-j_NjmkeFrnrIf,"Summarize the primary activity that takes place between the lady and c throughout the video, and explain how their interactions evolve over time.","The lady and c are playing cards. they interact by passing cards back and forth, shuffling the deck, and dealing cards. their interactions are friendly and playful.","The lady and c are playing cards. they interact by passing cards back and forth, shuffling the deck, and dealing cards. their interactions are friendly and playful.","The lady and c are working on a puzzle. they interact by passing pieces back and forth, trying to fit them together. their interactions are focused and determined.",The lady and c are playing a game of rock-paper-scissors. they interact by making hand gestures and guessing each other's moves. their interactions are competitive and playful.,The lady and c are playing a game of chess. they interact by moving pieces on a board and trying to capture each other's pieces. their interactions are strategic and focused.,The lady and c are playing a game of go. they interact by placing stones on a grid and trying to surround more territory than their opponent. their interactions are strategic and focused. 428,d9d530c0-39ec-4f71-a01f-3c6d05b533a0,1yewurQGlfsUVS48M00Jus3LIIPlHrJ8m,"In the context of the video, summarize how c goes through the process of cleaning the house. consider her actions with the napkin and broom and their sequence.","C squeezes the soapy napkin on the front of the house with her hands, rinses it in a bucket of water, and then uses a broom to wash the front of the house.","C squeezes the soapy napkin on the front of the house with her hands, rinses it in a bucket of water, and then uses a mop to wash the front of the house.","C squeezes the soapy napkin on the front of the house with her hands, rinses it in a bucket of water, and then uses a cloth to wash the front of the house.","C squeezes the soapy napkin on the front of the house with her hands, rinses it in a bucket of water, and then uses a sponge to wash the front of the house.","C squeezes the soapy napkin on the front of the house with her hands, rinses it in a bucket of water, and then uses her bare hands to wash the front of the house.","C squeezes the soapy napkin on the front of the house with her hands, rinses it in a bucket of water, and then uses a broom to wash the front of the house." 429,da76805c-891c-449d-8e52-dcf01b79f773,1I9EUTuWBIuTzuMRZUC1S7tzVE0WWMIw7,"Describe the overall process c follows in preparing, cleaning up, and finishing the video's main activity, paying specific attention to the order and organization of their actions.","C washes a potato, cuts it into small pieces, adds it to a pot of water, and then turns on the cooker.","C washes a potato, cuts it into small pieces, adds it to a pot of water, and then turns on the cooker.","C washes a potato, cuts it into small pieces, adds it to a pot of water, and then turns off the cooker.","C washes a potato, cuts it into small pieces, adds it to a pot of water, and then puts the pot in the oven.","C washes a potato, cuts it into small pieces, adds it to a pot of water, and then puts the pot in the fridge.","C washes a potato, cuts it into small pieces, adds it to a pot of water, and then puts the pot on the stove." 430,dbb357c2-18b4-4ab9-a6f9-5f1512153f70,1r8p3-uydS7fBepP5zZZpHUxSu2z8vKIk,"Based on the high-level details from the video, what overall goal is c trying to achieve, and how does their approach change over time?",C is trying to smooth the table.,It appears that c is persistently attempting to scratch the surface of the table.,C is trying to smooth the table.,"Currently, c is attempting to carefully wipe down the entire table surface.","In this situation, c is attempting to firmly hold and support the table.",C is trying to walk around. 431,ddaa8277-d940-4722-addf-da2af5c30206,1bV1WaT8Jh2wY60ZaC9mSHFvj2jWBRLMY,"In the context of the video, identify and explain the significance of the key moment(s) where c's actions showed a clear objective in order to accomplish the main action of the video.",The key moment is when c pours the fumigation solution into the knapsack sprayer.,The key moment is when c opens the knapsack tank.,"The crucial, key moment occurs specifically when character c picks up the large bucket.",The crucial key moment occurs precisely when person c securely closes the knapsack water tank.,The key moment is when c pours the fumigation solution into the knapsack sprayer.,"The essential, key moment occurs precisely when character c lifts and picks up the container's lid." 432,de326bda-444a-4ad4-81d6-5ebb456a3300,1YA2hGqhnWAC1lm-yLOWOv4lILmn8dtiH,"Considering c's interactions with various objects throughout the video, what can you infer about the purpose of these interactions and their significance?",C is using the objects to help her study.,C is using the objects to create a work of art.,C is using the objects to help her study.,C is using the objects to play a game.,C is using the objects to solve a puzzle.,C is using the objects to build something. 433,df060e0b-bd32-4e38-939f-f15919b836ae,13EntvsVjfCQoqCW8XgLNJsgjHHors185,"How would you describe the overall purpose of c's actions in this video, and what are the key steps involved in achieving this purpose?",C is preparing a meal.,C is preparing a meal.,"Currently, c is actively cleaning and tidying up the kitchen area.","Currently, c is actively engaged in washing the dishes.",C is taking a shower.,"Currently, c is in the process of getting dressed and ready." 434,dfb6c468-e124-40f6-9c4e-c13ee45a2ad9,1hQM00unVSeFC_W-J8pvFbb0iI_q_YrAX,In what ways does c manipulate the steel rods throughout the video and what do these actions indicate about their overall goal?,C manipulates the steel rods by greasing them with a brush and then hitting them with a spanner. this indicates that c is trying to keep the rods in good condition and to ensure that they are working properly.,C manipulates the steel rods by picking them up and putting them down. this indicates that c is trying to organize the rods or to move them to a different location.,C manipulates the steel rods by greasing them with a brush and then hitting them with a spanner. this indicates that c is trying to keep the rods in good condition and to ensure that they are working properly.,C skillfully manipulates the steel rods by carefully turning them. this action indicates that c is attempting to adjust the rods or to accurately align them with each other.,"C skillfully manipulates the steel rods by carefully bending them with precision. this action indicates that c is attempting to shape the rods or to make them fit into a specific, designated space.",C skillfully manipulates the steel rods by precisely cutting them. this clearly indicates that c is attempting to shorten the rods or to remove a specific portion of them for a purpose. 435,dfcbcf89-e268-4106-85ba-7875d19bd5e4,1VDqAbUiaIlHYGiliFVLCY6DGJTuiikLD,"Describe the process the character, c, goes through in the video from preparing a dish to cleaning up after tasting it, and compare it to a similar experience you've had in a kitchen. what are the primary differences in the approach and ingredients?","C opens a jar of ground pepper, picks up a bottle of soy sauce, and pours some soy sauce into the pot. she then puts the jar of ground pepper and the bottle of soy sauce away in a kitchen cabinet. c then mixes the contents of the pot with a spoon. finally, she tastes the contents of the pot and spits it out.","C opens a jar of ground pepper, picks up a bottle of soy sauce, and pours some soy sauce into the pot. she then puts the jar of ground pepper and the bottle of soy sauce away in a kitchen cabinet. c then mixes the contents of the pot with a spoon. finally, she eats the contents of the pot.","C carefully opens a jar of ground pepper, swiftly picks up a bottle of soy sauce, and pours some soy sauce into the pot. she then diligently puts the jar of ground pepper and the bottle of soy sauce away in a nearby kitchen cabinet. c then thoroughly mixes the contents of the pot with a sturdy spoon. finally, she confidently places the pot in the preheated oven.","C opens a jar of ground pepper, picks up a bottle of soy sauce, and pours some soy sauce into the pot. she then puts the jar of ground pepper and the bottle of soy sauce away in a kitchen cabinet. c then mixes the contents of the pot with a spoon. finally, she tastes the contents of the pot and spits it out.","C carefully opens a jar of finely ground pepper, picks up a nearby bottle of soy sauce, and gently pours some soy sauce into the pot. she then puts the jar of ground pepper and the bottle of soy sauce away neatly in a kitchen cabinet. c then thoroughly mixes the contents of the pot with a spoon. finally, she graciously serves the contents of the pot to an awaiting guest.","C carefully opens a jar of ground pepper, picks up a nearby bottle of soy sauce, and slowly pours some soy sauce into the pot. she then puts the jar of ground pepper and the bottle of soy sauce neatly away in a kitchen cabinet. c diligently mixes the contents of the pot with a spoon. eventually, she takes a captivating picture of the pot's contents." 436,e00836f3-1506-4479-a028-e17f19cff0bf,1cZUgM7HVyjAG1HGRWMPtS8Y2K5I1e0sg,"Based on the repetitive actions throughout the video, what would you say is c's primary task or goal in the given environment?",To clean the floor.,To move the chair.,To clean the floor.,To touch the shelf.,To touch the cat.,To move the guitar bag. 437,e04cd624-17e1-4986-b344-55aa92d7c0c3,1cChnunsnjZrz5WHGu1QXl3PSRV91WLiR,"What was the main objective of c's actions throughout the video, and how does this objective relate to the various interactions with the plants?",C's main objective was to cut the plants.,C's main objective was to hold the plants.,C's main objective was to distract the plants.,C's main objective was to cut the plants.,C's main objective was to look at the plants.,C's main objective was to point at the plants. 438,e06849ca-1988-434e-ad69-757f60086ef8,1ZolnX7KF2eSfuoyYjvHkkowBik4LJvsy,"Describe the primary goal or objective of the game being played, keeping the main actions in mind.",The primary goal or objective of the game being played is to win by getting the best hand of cards. the participants do this by carefully manipulating the cards and dice in order to try to get the best possible hand.,The primary goal or objective of the game being played is to have fun. the participants do this by playing the game and interacting with each other in a way that is enjoyable for them.,The primary goal or objective of the game being played is to win by getting the best hand of cards. the participants do this by carefully manipulating the cards and dice in order to try to get the best possible hand.,The primary goal or objective of the game being played is fundamentally to learn new skills effectively. the eager participants accomplish this by actively playing the game and diligently paying attention to how the game's mechanics are played.,The primary goal or objective of the game being played is to help players relax. the participants achieve this by engaging in the game and taking their mind off of their worries and troubles.,The primary goal or objective of the game being played involves fostering socialization. the participants achieve this by actively playing the game and interacting with each other within a friendly social setting. 439,e0c9d250-fce2-49b5-8559-60d3925329be,1K8DcHZ7h8Wj7cf_wwFv4CiRzvo7DjnEQ,"Based on the actions taken by c in this video, how would you concisely describe c's overall goal and the key tools used during the process?",C's overall goal is to smooth and refine the wood pieces. the key tools used during the process are the hand planer and the sander.,The primary objective of c's overall goal is to precisely cut the wood pieces. the essential key tools used during this woodworking process are the saw and the chisel.,C's overall goal is to smooth and refine the wood pieces. the key tools used during the process are the hand planer and the sander.,C's overall primary goal is to efficiently assemble the wood pieces together. the essential key tools utilized during this assembly process are the hammer and nails.,C's overall goal is to paint the wood pieces. the key tools used during the process are the brush and the paint.,The primary objective of c's overall goal is to effectively varnish the wooden pieces. the crucial tools employed during this process are the brush and the varnish itself. 440,e0d0c4f6-7290-42f7-980d-b5590db33051,1OPLK-ZKHafa31pUt4O_j8yiahnnsvMr_,"Throughout the video, c uses several tools and techniques to measure, cut, and manipulate wood planks. can you identify and compare the effectiveness of different techniques or tools c used to achieve his objective?",The most effective technique c used to measure the wood plank was to use the foldable ruler.,The most effective technique c used to measure the wood plank was to use his eyes.,The most efficient and effective technique he employed to measure the wood plank's length accurately was to simply use his hands.,The most effective technique c used to measure the wood plank was to use the foldable ruler.,"Surprisingly, the most effective technique consistently used to measure the wood plank accurately was to simply use a tape measure.",The most efficient and effective technique commonly used to precisely measure the wood plank involved utilizing a trusted carpenter's square. 441,e1b7dd94-23cd-4a26-89cd-e5d4f88f596d,16OW5v0LBc5-h-rETKP9jxbavrax1WaYK,"Identify a central theme throughout the video, and discuss the specific actions that correspond to this theme.",The central theme throughout the video is cleanliness.,The central theme throughout the video is efficiency.,The central theme throughout the video is cleanliness.,The central theme throughout the video is organization.,The central theme throughout the video is resource utilization.,The central theme throughout the video is handwashing. 442,e1f6335e-323e-4c7b-864a-568b9f2581cf,15a-X-VpX52O8QjAicNlO6vKNgjacTKV5,"Analyze the methodology used by c to attend to the different items in the sink, such as pouring out the water, rinsing and washing. how does this vary based on the types of items being cleaned?","C first rinses the items with water, then washes them with a sponge, and finally rinses them again with water.","C first rinses the items with water, then washes them with a sponge, and finally rinses them again with water.","C first washes the items with a sponge, then rinses them with water, and finally rinses them again with water.","C first rinses the items with water, then washes them with a sponge, and finally dries them with a towel.","C first washes the items with a sponge, then rinses them with water, and finally dries them with a hair dryer.","C first rinses the items with water, then washes them with a sponge, and finally puts them in the dishwasher." 443,e27e9ec7-aaf3-4e5c-a387-1699fe66ea4f,1WYrD_Wc-_ONUet1Vbf7dzj2RDSlEqBT1,"How does c's interaction with the lawn mower change throughout the video in relation to steering, operating, and adjusting the hand brake?","C adjusts the steering of the lawn mower at the beginning of the video, and then adjusts the hand brake several times throughout the video.","C adjusts the steering of the lawn mower at the beginning of the video, and then adjusts the seat of the lawn mower several times throughout the video.","C adjusts the hand brake of the lawn mower at the beginning of the video, and then adjusts the steering of the lawn mower several times throughout the video.","C adjusts the seat of the lawn mower at the beginning of the video, and then adjusts the hand brake several times throughout the video.","C adjusts the steering of the lawn mower at the beginning of the video, and then adjusts the hand brake several times throughout the video.",C does not adjust the lawn mower at all throughout the video. 444,e30da404-5497-4aaf-bd12-abe2088ccc0c,1ttIDPRVAydk2LU_addia-Gc3Sq2RTDn9,Summarize the video in three key tasks the person performed while focusing on the important details.,"The person in the video is preparing a meal that includes eggs, meat, and vegetables.","The person in the video is preparing a meal that includes eggs, meat, and vegetables.","The individual featured in the video is diligently preparing a delicious meal that consists of rice, beans, and tasty tortillas.","The person featured in the video is expertly preparing a meal that deliciously includes pasta, sauce, and cheese elements.","In the video, the person featured is busily preparing a delicious meal consisting of chicken, broccoli, and rice ingredients.","The person in the video is preparing a meal that includes fish, potatoes, and vegetables." 445,e45f14cd-a567-4c56-89f7-fbd5dba80986,1dkCLjObg5CX-2zNjgALQH13705-rBK0N,"From your understanding of the video, explain the significance of the book in relation to the cloth and the different actions performed. how do these actions contribute to the overall goal?",The book is a source of information for c.,The book is a source of entertainment for c.,The book serves as a significant source of comfort and solace for individual c.,The book is a source of information for c.,"The book, remarkably, serves as a significant source of empowering knowledge for individual c.","The book, quite surprisingly, serves as a source of potential danger specifically for c." 446,e48b8359-d35e-45f1-aa3b-eb1417e10dc8,1BmZedJ6fkv-NLLrmid_0vvQ1Q_VfgMNC,"In the video, what was the primary method c used to efficiently plant seedlings?","C planted the seedlings by picking them up with her right hand, passing them to her left hand, and then planting them in the soil with her right hand.","Carefully, c planted the seedlings by gently picking them up with her left hand, passing them securely to her right hand, and then meticulously planting them in the rich soil with her left hand.","C planted the seedlings by picking them up with her right hand, planting them in the soil with her right hand, and then passing them to her left hand.","Carefully, c planted the seedlings by gently picking them up with her left hand, skillfully planting them in the rich soil with her left hand, and then smoothly passing them to her right hand.","Carefully, c planted the seedlings by picking them up with her right hand, gently passing them to her left hand, and then skillfully dropping them onto the ground surface.","C planted the seedlings by picking them up with her right hand, passing them to her left hand, and then planting them in the soil with her right hand." 447,e4bfdb91-65d9-4a35-917e-d986a285f911,1eHPeNN8LMmNugT9vnHLSySXKkeKmdwcF,"Reflecting on the video, identify three key moments when the character made a significant change to the scrapbook and discuss how these changes contributed to the overall outcome.","The three key moments when the character made a significant change to the scrapbook are when they cut the ribbon, when they burned the ends of the ribbon, and when they attached the ribbon to the scrapbook.","The three crucial key moments when the character made a substantial and significant change to the scrapbook involved instances when they picked up the scissors, when they picked up the lighter, and lastly when they picked up the adhesive glue.","The three main instances where the character made a significant change to the scrapbook are when they initially opened the scrapbook, later when they ultimately closed the scrapbook, and finally when they securely put the scrapbook away.","The three key moments when the character made a significant change to the scrapbook are when they picked up the sticker, when they picked up the tweezer, and when they picked up the letter.","The three crucial instances when the character made a significant alteration to the scrapbook involve the moments they commenced decorating the scrapbook, eventually completed adorning the scrapbook, and finally, when they proudly displayed their artistic scrapbook creation.","The three key moments when the character made a significant change to the scrapbook are when they cut the ribbon, when they burned the ends of the ribbon, and when they attached the ribbon to the scrapbook." 448,e5b84f2d-452f-448d-a3d4-8ad7bd4cd08b,1PZuc_PUq3mq3NQJVidhWRb__njLXtD2o,"How would you describe the overall process that c is carrying out with the napier grass throughout the video, and what are the main techniques used in this process?",C is cutting napier grass into smaller pieces.,C is tying napier grass.,"In the field, c efficiently lifts fresh napier grass with care.","In this context, individual c is actively promoting the growth of napier grass.","In the field, c is carefully pulling up some napier grass.",C is cutting napier grass into smaller pieces. 449,e5becfe2-05aa-4ef2-bca8-a859dfe9d4f4,1vKg_xQI1amQ6doE9LJd8vV4qxfn-KONF,"From the series of actions and tasks performed by c, identify the most important parts concerning the lumber and construction project, and explain why these particular parts are crucial to the overall process.","The most important parts of the lumber and construction project were measuring, cutting, and installing the lumber.","The most important parts of the lumber and construction project were measuring, cutting, and installing the lumber.","The most crucial aspects of the lumber and construction project involved accurately measuring, precisely cutting, and thoroughly sanding the lumber materials.","The most important parts of the lumber and construction project were measuring, cutting, and painting the lumber.","The most vital aspects of the lumber and construction project were precisely measuring, accurately cutting, and securely gluing the lumber materials together.","The most crucial aspects of the lumber and construction project involved accurately measuring, precisely cutting, and securely nailing the lumber pieces together." 450,e60b3cbc-bb05-4afe-8ff1-3294411705a9,1RU2Sl1cMOM_sScN0y0qI41rrwXmGPw5u,"Based on the video, what might be the underlying motivation for c's actions, and how do the individual events lead to achieving that goal in a condensed and well-structured manner?",C was motivated to clean the oven because it was dirty.,C was motivated to cook eggs because they were hungry.,C was motivated to make a cake because it was their birthday.,C was motivated to do the dishes because they were piled up in the sink.,C was motivated to prepare a meal because they were having guests over.,C was motivated to clean the oven because it was dirty. 451,e614f1a5-7c7b-468f-9840-d7373f740255,1PX_kn-wqurz2ULx8n0Tg_6LQCWAVPrFp,"Considering c's various actions, what can be deduced about their main goal in this video?",C's main goal is to clean the floor.,C's main goal is to move objects around the room.,C's main goal is to pick up objects.,C's main goal is to clean the floor.,C's main goal is to put objects away.,C's main goal is to play with the dog doll. 452,e67de76c-1058-49a7-a47e-12736da4ffc0,1LtVypDZEmRxSS2NwafwLf27ZkKSIEhS4,"Based on the actions performed by the woman and c, determine the critical moments in the video when they accomplish their respective tasks and care for the bearded dragon and the playing cards. how do these moments illustrate their priorities?","The critical moments in the video are when the woman feeds the bearded dragon water, cleans it, and puts it in a container. these moments illustrate her priority of caring for the bearded dragon.","The critical moments in the video are when c picks up the bottle from the table, touches the cards on the table, and picks up the cards from the table. these moments illustrate his priority of playing with the cards.",The critical moments in the video are when the woman and c are both playing with the cards. these moments illustrate their shared priority of playing with the cards.,The critical moments in the video are when the woman and c are both caring for the bearded dragon. these moments illustrate their shared priority of caring for the bearded dragon.,The critical moments in the video are when the woman plays with the bearded dragon and c plays with the cards. these moments illustrate their different priorities.,"The critical moments in the video are when the woman feeds the bearded dragon water, cleans it, and puts it in a container. these moments illustrate her priority of caring for the bearded dragon." 453,e7a2678d-7df8-4c44-bd2b-dbc5652ef7f2,1u_lPvpXIIJig1E6vXzcj4sRi7C3UnqEI,"Considering the video as a whole, identify and discuss three critical tasks performed by c, explaining why they serve an essential purpose in the context of this video.","**the three critical tasks performed by the person in the video are putting away the utensils, cleaning up the counter, and organizing the fridge.**","The three critical tasks performed by the person in the video are washing the dishes, cooking, and setting the table.** this is not correct because the person in the video does not wash any dishes, cook anything, or set the table.","**the three critical tasks performed by the person in the video are putting away the utensils, cleaning up the counter, and organizing the fridge.**","The three critical tasks performed by the person in the video are taking out the trash, cleaning up the counter, and organizing the fridge.** this is not correct because the person in the video does not take out the trash.","The three critical tasks performed by the person in the video are organizing the fridge, cleaning up the counter, and putting away the utensils.** this is not correct because the person in the video organizes the fridge last.","The three critical tasks performed by the person in the video are cleaning up the counter, putting away the utensils, and organizing the fridge.** this is not correct because the person in the video cleans up the counter second." 454,e86bb89c-baf4-4463-8941-e296d1d4d62f,147BYD95NHdieW_sftG2Y1gadqLSCPo5p,"Based on the activities in the video, what would you consider as the main purpose of c's actions, and how do the individual steps contribute to this purpose?",C's main purpose is to cook a meal.,C's main purpose is to cook a meal.,C's main purpose is to clean the kitchen.,C's main purpose is to dispose of the pawpaw.,C's main purpose is to cut up the pawpaw.,C's main purpose is to wash the pawpaw. 455,e8999794-34b7-40c0-a9d7-2346a82dbc48,14o9vAP6AxOGQh5YUxL_HtNB0dSn6ULo1,How does character c handle the dough throughout the video? describe the different methods and tools used without listing the individual steps.,"Character c handles the dough throughout the video by using a dough scraper, a brush, and their hands.","The character c diligently handles the dough throughout the entire video by skillfully using a knife, a fork, and their hands.","Character c handles the dough throughout the video by using a dough scraper, a brush, and their hands.","Character c handles the dough throughout the video by using a rolling pin, a spatula, and their hands.","In the video, character c skillfully handles the dough using a whisk, a bowl, and their hands throughout the entire process.","In the video, character c skillfully handles the dough throughout by employing a measuring cup, a spoon, and their hands for accuracy." 456,e8b15979-31a5-4647-a61c-b1f5f079c74e,1OS_UAjrbgMmqGpfj8R32bvjPKJiW9pIo,What is the overarching goal of c's actions throughout the video?,To plant the flowers in the flower pots.,To adequately water and nourish the beautiful flowers.,To plant the flowers in the flower pots.,To effectively fertilize and nurture the growth of the flowers.,To prune the flowers.,Gently proceed to remove the dead leaves from the blooming flowers to maintain their appearance. 457,e9322513-15b2-4b89-8ddb-7d1432beb8a1,1bH6oBSd1-7A19BlCC37Nbx3VJFAkUYT-,"Considering the entire process shown in the video, can you identify the critical steps that c took, and briefly explain their significance in the craft projects?","The critical steps in the craft projects are cutting the thread, knotting the ends of the thread together, straightening out the thread, and sewing the craft with the needle.","The critical steps in the craft projects are choosing the right materials, cutting out the shapes, and sewing the pieces together.","The crucial, critical steps in executing the craft projects effectively are diligently following the instructions carefully, consistently being patient, and employing a steady hand.","The critical steps in the craft projects are cutting the thread, knotting the ends of the thread together, straightening out the thread, and sewing the craft with the needle.","The essential critical steps in executing craft projects are being creative, actively using your vivid imagination, and thoroughly having immense fun.","The critical steps in executing various craft projects include being careful not to cut yourself, ensuring not to lose the tiny pieces, and diligently avoiding making any errors or mistakes." 458,e97c3e1c-27ee-4b3d-8783-2e325b0eada8,1uhFneMb5kSUpeJjWOJm02QcfY9GV1inp,"Can you provide a summary of the overall process c performed, highlighting the main objective and the techniques used?",C cut a piece of wood to size and then installed it on a wall.,"Meticulously, c constructed a beautiful birdhouse for birds.","Recently, individual c skillfully repaired a significantly broken window panel.","Recently, c skillfully crafted and assembled a functional bookshelf.",C cut a piece of wood to size and then installed it on a wall.,C framed a picture. 459,eb9074ae-88c5-4bab-b0da-7e02b9acfbc0,1KJQDveJlbVtBMsJwd4e6mSRONDF_tB0X,"In the process of accomplishing the primary task, c interacts with an air conditioning filter. what purpose did this interaction serve within the context of the task being performed?",C interacted with the air conditioning filter to get a better view of the wood.,C interacted with the air conditioning filter to get a better view of the wood.,C carefully interacted with the air conditioning filter in order to effectively clean and maintain it.,"Casually, c interacted with the air conditioning filter, efficiently replacing it for improved functionality.",C interacted with the air conditioning filter to move it.,"Curiously, participant c interacted gently with the air conditioning filter, successfully managing to open it." 460,ec5eddb0-8c4b-4d06-8e45-00f221b1dd25,11AmT2XGvZNt5s55hkVY-9xTUw1MuUGwi,What is the overall purpose of c's actions in the video and how do they contribute to the narrative of the video?,C's actions are intended to provide exercise and companionship for the dog.,C's actions are purposefully designed to effectively train the dog in a proper manner.,C's deliberate actions are purposely intended to prominently display and show off the dog.,C's actions are intended to make the dog tired.,C's actions are intended to provide exercise and companionship for the dog.,"In this situation, c's actions are specifically intended to ultimately make the dog quite happy." 461,eccbb1cd-a12c-4872-a656-d27882c5e462,1VcbqwhUy-Z9iVXnjXAdWFQUwAftiMHOy,"Looking at the entire process in the video, could you analyze and describe the overall cooking method c employed, while highlighting the most important parts?",C used the stir-fry method to cook the noodles.,C used the stir-fry method to cook the noodles.,"In the kitchen, c efficiently utilized the boiling method to perfectly cook the noodles for dinner.","In the kitchen, c utilized the steaming method precisely to perfectly cook the noodles.",C used the baking method to cook the noodles.,"Curiously, c employed the unique grilling method to skillfully cook the delicious noodles." 462,ece69b04-2e67-434a-b923-1329feed590d,1LUoH9Xyg2tUQspGJ02Uouxltgzy8yljd,"What is the primary objective c is trying to achieve in the video, and how does their interaction with various materials (ruler, cutter, craft pieces, glue, etc.) contribute to that objective?","C is trying to build a model. they use the ruler to measure the craft pieces, the cutter to cut them out, the glue to put them together, and the paper to decorate them.","C is trying to build a model. they use the ruler to measure the craft pieces, the cutter to cut them out, the glue to put them together, and the paper to decorate them.","C is trying to make a craft. they use the ruler to measure the craft pieces, the cutter to cut them out, the glue to put them together, and the paper to decorate them.","C is diligently attempting to construct a structure. they skillfully utilize the ruler for measuring the various craft elements, employ the cutter to accurately shape them, apply the adhesive glue for securely assembling, and utilize the colorful paper to aesthetically decorate them.","Creatively, c is attempting to make an imaginative toy. diligently, they use the ruler to precisely measure the craft pieces, the cutter to skillfully cut them out, the glue to securely put them together, and the vibrant paper to beautifully decorate them.","C is attempting to create a thoughtful gift. they utilize the ruler to precisely measure the craft pieces, employ the cutter to shape them, the adhesive glue to assemble them securely, and the decorative paper to enhance their appearance." 463,ed94296c-3f66-48ac-8bf4-ef29fa29819c,1X-F24lrX0FsQidnnH0qany85URetxVLy,What are the key stages of the process demonstrated in the video and how do they connect to each other?,"The key stages of the process demonstrated in the video are measuring, marking, drilling, and screwing.","The key stages of the process demonstrated in the video are measuring, marking, cutting, and screwing.","The critical key stages of the process showcased in the instructional video involve accurately measuring, carefully marking, precise drilling, and thorough sanding.","The key stages shown in the process displayed within the video involve measuring accurately, marking clearly, drilling precisely, and painting carefully.","The principal key stages of the process clearly demonstrated in the instructional video involve measuring, marking accurately, drilling holes, and staining the material.","The key stages of the process demonstrated in the video are measuring, marking, drilling, and screwing." 464,eda4f39b-6c3f-4a0a-8128-d57e7b3d97d9,1Gcto_JULNuk6lwbJJtK1ZINICQwQPAQ8,"Based on the actions observed, what could be a possible motivation or goal for what c is doing in the video? explain your reasoning without simply listing the actions c performed.",C is trying to organize the books in a neat and orderly fashion.,"Currently, c is actively attempting to locate a particular book of interest.",C is trying to organize the books in a neat and orderly fashion.,C is trying to get rid of the books.,"Currently, c is attempting to construct a small fort using the books available.","Currently, c is attempting to read all of the available books thoroughly." 465,edb5c7f4-636f-47e6-97f8-b27795aaeec5,1xueMcU4kn93CZPVDtg3f2W52cC2uZmYY,What was the overarching objective of c's actions throughout the video?,To organize a collection of bags.,To clean a collection of bags.,The goal is to responsibly recycle a diverse collection of bags efficiently.,To organize a collection of bags.,The charitable act involves deciding to donate a collection of bags generously.,The goal is to successfully sell a diverse collection of various bags. 466,edd710a7-0f50-45dc-8619-de4bcaedee9b,1xSWsi-Wbl2ASxaeicWyuj9lGcMIZUkG3,"In what ways does c manipulate and interact with the phone throughout the video, and how does this relate to the other tasks performed?","C manipulates and interacts with the phone throughout the video by holding it, operating it, and dropping it. he holds the phone with both hands at the beginning of the video, then switches to holding it with his left hand. he operates the phone with his right hand while holding it with his left hand. he drops the phone on a chair and then picks it up again. he operates the phone with his right hand after picking it up.","C manipulates and interacts with the phone throughout the video by holding it, operating it, and dropping it. he holds the phone with both hands at the beginning of the video, then switches to holding it with his left hand. he operates the phone with his right hand while holding it with his left hand. he drops the phone on a chair and then picks it up again. he operates the phone with his right hand after picking it up.","Throughout the video, c skillfully manipulates and actively interacts with the phone by capturing pictures and recording videos. initially, he holds the phone securely with both hands, later switches to his left hand only. effortlessly, he snaps a picture using his right hand while still holding the phone with his left hand. accidentally, he drops the phone onto a chair, quickly retrieves it, and then proceeds to record a video using his right hand after picking it up.","C manipulates and interacts with the phone throughout the video by texting and calling people. he holds the phone with both hands at the beginning of the video, then switches to holding it with his left hand. he texts with his right hand while holding the phone with his left hand. he drops the phone on a chair and then picks it up again. he calls someone with his right hand after picking it up.","C manipulates and interacts with the phone throughout the video by listening to music and watching videos. he holds the phone with both hands at the beginning of the video, then switches to holding it with his left hand. he listens to music with his right hand while holding the phone with his left hand. he drops the phone on a chair and then picks it up again. he watches a video with his right hand after picking it up.","C manipulates and interacts with the phone throughout the video by playing games and browsing the internet. he holds the phone with both hands at the beginning of the video, then switches to holding it with his left hand. he plays a game with his right hand while holding the phone with his left hand. he drops the phone on a chair and then picks it up again. he browses the internet with his right hand after picking it up." 467,ee227b56-c12b-4725-89e9-aa29e0b4dbe8,10TzN8KATu95O6Bg7cPF020Sn5Cw7pzIh,What were the main steps involved in the process of wrapping the gift box in the video?,1. the man cuts a piece of wrapping paper.,1. the cheerful man gently picks up the beautifully wrapped gift box.,1. the man carefully picks up the discarded wrapping paper from the floor.,1. the man cuts a piece of wrapping paper.,1. the man carefully reaches out and picks up the sharp scissors.,1. the man picks up the gift box. 468,ef658737-30f1-4de5-9ea6-3139a0eb9872,1TsUKx4B7tZ_ZoW2bLPpeTUnj5wDUIf0x,What key processes did c follow to prepare both the knife and the chopping board for use in the kitchen?,"C washed the knife with the sponge, rinsed the knife with the water from the tap, and placed the knife on the dish drainer.","Carefully, c washed the knife using the sponge, then rinsed the knife thoroughly with water from the tap, and finally placed the clean knife on the nearby chopping board.","Carefully, c washed the knife using the sponge, afterward rinsed the knife thoroughly with the water streaming from the tap, and then securely placed the knife back in the drawer.","C washed the knife with the sponge, rinsed the knife with the water from the tap, and placed the knife on the dish drainer.","Carefully, c washed the knife using the sponge, thoroughly rinsed the knife with running water from the tap, and then securely placed the knife on the sink's edge.","C washed the knife with the sponge, rinsed the knife with the water from the tap, and placed the knife on the floor." 469,efcb614d-9825-4039-8f09-9f98d03205fd,10WtNme3R1oo84VnpMsWXe0AH-VUbfyoM,"Explain how c's actions transitioned from working with the wood and wooden shelf to handling his jacket and preparing his next task. what events lead to this switch, and how did c manage his belongings throughout this process?",C's actions transitioned from working with the wood and wooden shelf to handling his jacket and preparing his next task when he finished fixing the wood to the wooden shelf. he then put the tools away and picked up his jacket.,"C's actions transitioned from working with the wood and wooden shelf to handling his jacket and preparing his next task when he finished fixing the wood to the wooden shelf. he then put the tools away and picked up his jacket, and then he went to the bathroom.","C's actions transitioned from working with the wood and wooden shelf to handling his jacket and preparing his next task when he finished fixing the wood to the wooden shelf. he then put the tools away and picked up his jacket, and then he went to the kitchen to make a sandwich.",C's actions transitioned from working with the wood and wooden shelf to handling his jacket and preparing his next task when he finished fixing the wood to the wooden shelf. he then put the tools away and picked up his jacket.,"C's actions transitioned from working with the wood and wooden shelf to handling his jacket and preparing his next task when he finished fixing the wood to the wooden shelf. he then put the tools away and picked up his jacket, and then he went to the living room to watch tv.","C's actions transitioned from working with the wood and wooden shelf to handling his jacket and preparing his next task when he finished fixing the wood to the wooden shelf. he then put the tools away and picked up his jacket, and then he went to the bedroom to take a nap." 470,efd8a043-d6b3-4934-9854-47fdf4d4cd85,1JQc1HfGo7_9qMolD90t_dX0Xi-InFVsO,"What is the main purpose of c's actions in the kitchen, and which key actions did she take in order to work towards her goal? remember to provide a summary and not just list the narrated actions.",C is preparing a meal.,"Currently, c is diligently cleaning the kitchen area.","Currently, c is actively engaged in doing the dishes.","Currently, c is actively engaged in making a delicious salad.",C is preparing a meal.,C is making a sandwich. 471,efe17e2d-668b-49b7-a474-4d7aae9a4131,14jHzX0TyN9RtpbBDyGnYJ1sz25jRye9I,"What was the primary goal of the activities performed by c throughout the video, and how did they evolve from start to finish?",C's primary goal was to cook a meal.,C's primary goal was essentially to clean and tidy the entire house thoroughly.,The primary goal of c was to head out and go shopping.,C's primary goal for the evening was to simply just watch tv unwinding.,C's primary goal was to cook a meal.,C's primary goal was to take a nap. 472,f0025a32-112a-4c06-a265-18e1dd3cdb1b,1kS979lOs1mVHE8UmRtGfHmEg9sdWJFK0,"Evaluate c's overall efficiency in painting the wall, considering his technique and the tools he uses. what could be the potential challenges and setbacks in his approach?",C is painting the wall efficiently. he is using a good technique and the right tools. he is also working quickly and without making any mistakes.,C is not painting the wall efficiently. he is using a poor technique and the wrong tools. he is also working slowly and making many mistakes.,"C is painting the wall at a moderate pace. he is using a good technique and the right tools, but he is not working as quickly as he could.","C is painting the wall too quickly. he is using a good technique and the right tools, but he is making mistakes because he is not taking his time.",C is painting the wall efficiently. he is using a good technique and the right tools. he is also working quickly and without making any mistakes.,"C is painting the wall too slowly. he is using a good technique and the right tools, but he is not making any progress because he is not working quickly enough." 473,f10119f9-631e-47d0-8921-9ce6859a3708,1cDSbgbRf2Y5Czh2yeAsna9QCGO52GMXD,"After analyzing c's actions, what could be inferred about his approach to handling materials and ensuring safety in the process?",C takes precautions to avoid spills and contamination by wearing gloves and using a pipette to transfer the liquid. he also covers the glass tube with a lid when he is not using it.,"Carelessly, c does not take any essential precautions to steer clear of spills or contamination incidents. he avoids wearing gloves or utilizing a pipette, and he absolutely neglects to cover the glass tube securely with a lid.",C takes precautions to avoid spills and contamination by wearing gloves and using a pipette to transfer the liquid. he also covers the glass tube with a lid when he is not using it.,"C takes precautions to avoid spills, but not contamination. he wears gloves and uses a pipette to transfer the liquid, but he does not cover the glass tube with a lid.","Carefully, c takes essential precautions to avoid any contamination, but not spills. diligently, he wears gloves and securely covers the glass tube with a lid, however, he does not utilize a pipette for transferring the liquid safely.","Carefully, c takes necessary precautions to both prevent spills and reduce contamination risks. diligently, he wears gloves, skillfully uses a pipette for transferring the liquid, and securely covers the glass tube with a fitted lid." 474,f1d2978d-4802-498a-aac7-e240e379d175,1l_onYuQH2u2Be1l1uPXusXJgQf51jlf9,What is the overall purpose of the actions performed by c and the man throughout the video?,To bake bread.,To create a delicious pizza from scratch.,To skillfully create delicious pastries for enjoyment.,Gather ingredients together in order to successfully make delicious cookies.,To make cakes.,To bake bread. 475,f1d9d07c-fd79-44c3-9cd7-a4dc792b9828,1hihswhtPFhb7CFbtvB6TYs1legLoDAv3,"Analyze c's process of handling and preparing the dough at different stages, and identify the two major themes of her actions that reflect careful attention to detail and precision.",C's process of handling and preparing the dough reflects careful attention to detail and precision.,"In the kitchen, c's process of handling, kneading, and preparing the dough appears to be quite careless and noticeably sloppy.",C's process of handling and preparing the dough reflects careful attention to detail and precision.,"In the kitchen, c's process of handling and meticulously preparing the dough is quite haphazard, seemingly disorganized, and messy.","The chef's process of handling, kneading, and preparing the dough in the kitchen is relatively inefficient and considerably time-consuming.",C's process of handling and preparing the dough is creative and innovative. 476,f31b7ff7-85f0-4efd-8a81-acb367704a4c,12Yk6LFRH3LK9ZCJ98-rQ4ggbQqYLcpND,"What is the overall sequence of tasks c performs in the video, and how do they relate to each other?","C makes the bed, does the laundry, and makes a cup of tea.","C efficiently makes the bed, diligently does the laundry, and then goes for a refreshing walk.","C makes the bed, does the laundry, and watches tv.","In the morning, c makes the bed, adeptly does the laundry, and diligently goes to their work.","C diligently makes the bed, thoroughly does the laundry, and finally goes to rest in bed.","C makes the bed, does the laundry, and makes a cup of tea." 477,f388ca32-c003-4812-817e-e145a4ac764f,1QCFqJzYRv0xfMBEfL6w7Lwa84JVJaPbi,"In your own words, explain the main objective and turning points in the video, highlighting the key interactions between the man and c.",The main objective of the video is for the man and c to win the game of cards. the turning points in the video are when the man and c play their cards and when the man smokes from his pipe.,The primary goal of the video is for the man and c to successfully solve the puzzle together. crucial turning points in the video occur when the man and c discover the correct combination of puzzle pieces.,The main objective of the video is for the man and c to win the game of cards. the turning points in the video are when the man and c play their cards and when the man smokes from his pipe.,"The primary goal, or main objective, of the video is for the man and c to collaboratively build the house. the most significant turning points in the video occur when the man and c skillfully put the blocks together, forming a solid structure.",The primary purpose of the video involves the man and c collaborating to create the work of art. crucial turning points in the video occur as the man and c skillfully apply paint to the canvas together.,The main objective of the video is for the man and c to write the story. the turning points in the video are when the man and c write on paper. 478,f55b9e19-8dbf-49d1-aa0c-499adf0fa9d0,1sPYyouENydPRxmE34-UaZSiWp6K3RtEI,"Why would c perform specific techniques to handle specific items (like chopsticks, spoons, and bowls) throughout the video, and how do these techniques show her prioritizing cleanliness?","C washes the chopsticks, spoons, and bowls by holding them with one hand and scrubbing them with the sponge in her other hand. she then rinses them off and places them in the sink.","C washes the chopsticks, spoons, and bowls by holding them with one hand and scrubbing them with the sponge in her other hand. she then rinses them off and places them in the sink.","Carefully, c washes the chopsticks, spoons, and bowls by gently placing them in the sink and then thoroughly scrubbing them with the sponge.","C meticulously washes the chopsticks, spoons, and bowls, carefully placing them in the sink and then gently rinsing them off.","C carefully washes the chopsticks, spoons, and bowls by placing them in the sink, rinsing, and then efficiently placing them in the dishwasher for thorough cleaning.","C washes the chopsticks, spoons, and bowls by placing them in the sink and then placing them in the oven." 479,f60b20bb-ba25-4eea-a09f-01bbe8bbda88,19A6a8o2BOiWrx7IAFkIULf_jn2smy4D5,"Summarize the overarching goal of c's actions in the video, and explain how her use of various tools and techniques contribute to this goal.",C's goal is to clean the shelves.,C's goal is to interact with a virtual assistant.,C's goal is to move a scraper on the shelf.,C's goal is to clean the shelves.,C's goal is to pick up a scraper from the shelf.,C's goal is to drop a scraper on the shelf. 480,f671a773-cb56-49ed-ae8c-a529c977b33d,1tynG6DeVjay5yfwG8MXU8CGEtyEkqIHC,"Identify the most important activities c performs during the process of assembling and refining the metal parts, and explain why these steps are crucial to ensuring the desired outcome.","The most important activities c performs during the process of assembling and refining the metal parts are welding the rods to the pipe, hammering the rods into place, and grinding the metal.","Among the most crucial activities c performs throughout the process of assembling and refining the metal parts are accurately cutting the rods to size, meticulously sanding the rods, and uniformly painting the rods.","The most crucial activities performed by c during the process of assembling and refining the metal parts include drilling holes in the rods, threading the rods accurately, and securely fastening the rods together for stability.","The most crucial activities c executes during the process of assembling and refining the metal components are bending the rods, accurately shaping the rods, and meticulously polishing the rods for precision.","The most important activities c performs during the process of assembling and refining the metal parts are assembling the rods, disassembling the rods, and cleaning the rods.","The most important activities c performs during the process of assembling and refining the metal parts are welding the rods to the pipe, hammering the rods into place, and grinding the metal." 481,f6aa3c15-ffa5-4e9f-9c92-bb2d21847281,1nZuW0tcJFxoPUQV9O3GSEiUgIthhKdhZ,Summarize the main theme of the video in two steps: preparation of the tire and post-preparation activities. including the most relevant details in both steps.,The main theme of the video is to show how to prepare a wheel for wheel alignment and balancing. the two steps involved in this process are:,The primary focus of the instructional video is to demonstrate how to effectively change a tire. the two essential steps involved in this straightforward process are:,The primary focus of the video presentation is to demonstrate the correct method for rotating vehicle tires. the procedure involves these two essential steps:,The primary focus and main theme of the video is demonstrating how to effectively balance tires. the two crucial steps involved in this procedure are:,The main theme of the video is to show how to align tires. the two steps involved in this process are:,The main theme of the video is to show how to prepare a wheel for wheel alignment and balancing. the two steps involved in this process are: 482,f77fbf67-2b57-46ec-b850-d1ed65cf9d07,1nghcx2N_aRCDK0hFjc09RMCZGbg3NrXz,Describe the role of communication between c and the child as it relates to the main action presented in the video.,The child interacts with c by talking to her and occasionally touching the scarf. this helps to keep c focused on her knitting and to make the process more enjoyable for both of them.,The child interacts with c by talking to her and occasionally touching the scarf. this helps to keep c focused on her knitting and to make the process more enjoyable for both of them.,"The young child communicates with c by loudly yelling at her and, at times, hitting her. this approach fails to keep c concentrated on her knitting activity and makes the entire process highly stressful for both individuals.",The child interacts with c by ignoring her and occasionally running away. this does not help to keep c focused on her knitting and makes the process more lonely for both of them.,The child interacts with c by hugging her and occasionally kissing her. this helps to keep c focused on her knitting and to make the process more loving for both of them.,The child actively interacts with c by enthusiastically playing with her and occasionally making her laugh heartily. this interaction helps to keep c attentively focused on her knitting task and to make the entire process more enjoyable for both of them. 483,f7a575b2-a623-4533-9d67-b6395c564889,1ZkcYwHR2hEeO3e0JV2ckcXZxNbfRu5Bm,What is the overarching goal of the person (c) in this video and which significant set of actions demonstrate their progress toward this goal?,To build a brick wall.,To build a brick wall.,To carefully excavate and create a hole in the ground.,The simple act of deciding to plant a tree.,To effectively and safely remove a tree from an area.,To repair a brick wall. 484,f81b2bd4-0e81-491a-861e-987ec0ad8649,1YjEgraqMn9VXhA10ygv1mFGjzJLG5X8T,"What was the primary recurring task involving tools that c was performing throughout the video, and how did this contribute to his overall goal?",C was using a wrench to open and close nuts.,C was diligently using a trusty screwdriver to skillfully turn and tighten screws securely.,"In the workshop, c was skillfully using a hefty hammer to firmly pound nails into place.",C was using a wrench to open and close nuts.,C was using a saw to cut wood.,"Skillfully, c was actively utilizing a power drill to accurately bore numerous holes." 485,f95e7f60-0f9a-40e7-bb60-55ecb287b2dc,18VNutOTEXnY3VYwBKvWUoV1808KwNjCi,"Based on the video, what is the main goal c attempts to achieve? explain how the variety of his actions contribute to this purpose.","C's main goal in the video is to cut down the stick branches. he does this by using secateurs to cut the branches off of the trees. once the branches are cut, he drops them on the ground.","C's main goal in the video is to collect the stick branches. he does this by cutting the branches off of the trees and then picking them up. once he has collected a large number of branches, he puts them in a bag.","C's main goal in the video is to decorate the stick branches. he does this by cutting the branches into different shapes and then painting them. once the branches are decorated, he hangs them up on his walls.","C's main goal in the video is to make a fire. he does this by cutting the branches into small pieces and then lighting them on fire. once the fire is started, he uses it to cook food.","C's main goal in the video is to cut down the stick branches. he does this by using secateurs to cut the branches off of the trees. once the branches are cut, he drops them on the ground.","C's main goal in the video is to build a house. he does this by cutting the branches into long pieces and then using them to build the walls of the house. once the house is built, he lives in it." 486,f98ccd46-72ac-4ead-96a2-9fa07e826cf3,1LQuBfAbJ_5lyzBquHStSqzgunTMl-R49,"Based on the video, discuss the primary activities involving the book and provide a brief analysis as to why these activities were important to the overall video?",C reads a book and then puts a brochure in it.,C reads a book and then puts a brochure in it.,"Casually, c reads a fascinating book and, afterwards, decides to take a rejuvenating nap.","Casually, c reads a book intently, and subsequently takes a picture of it afterwards.","Casually, c reads a book intently and then carefully writes in it afterwards.",C reads a book and then throws it away. 487,f9a68735-7030-4fb5-95fd-cef0529611bf,1NcbOa-tC0i3IXHuLg0baaV7-DjNVLrft,Analyze the sequence of events and identify the overarching process shown in the video. what is its purpose?,The video shows the process of preparing a salad. the purpose of this process is to create a healthy and delicious meal.,The video shows the process of making a sandwich. the purpose of this process is to create a quick and easy meal.,The video shows the process of making a smoothie. the purpose of this process is to create a healthy and refreshing drink.,The video shows the process of making a soup. the purpose of this process is to create a warm and comforting meal.,The video shows the process of making a stir-fry. the purpose of this process is to create a quick and easy meal with lots of vegetables.,The video shows the process of preparing a salad. the purpose of this process is to create a healthy and delicious meal. 488,f9c82335-f724-483f-b7b2-8747243e8dee,16AxYODVpeRyzXNSlmFLGsW39yoWVIZt4,"Based on the ingredients used and the various steps taken, what could be the overarching goal or process at work in this video?","C is cooking a dish with ginger, green pepper, and oil.","C is cooking a dish with ginger, green pepper, and oil.",C is making a salad.,"Currently, c is actively chopping various vegetables diligently.","Currently, individual c is diligently preparing a delicious stir-fry dish.","Currently, c is in the process of making a delicious soup." 489,f9d20acc-8d52-4136-8d4e-48573b184e15,1daXa4od-qBxr3nw-RRNkoo5o9-Hsb8j4,"What was the primary objective of c's actions throughout the video, and how did her technique evolve over time?",C's primary objective was to make dough. she began by mixing flour and water together in a bowl. she then continued to mix the dough by hand until it was smooth and elastic.,C's primary objective was to clean the kitchen. she began by sweeping the floor. she then continued to clean the counters and stovetop.,"C's primary objective was to make a cake. she began by mixing flour, sugar, eggs, and butter together in a bowl. she then continued to bake the cake in the oven.","C's primary objective was to make bread. she began by mixing flour, water, yeast, and salt together in a bowl. she then continued to let the dough rise before baking it in the oven.","C's primary objective was to make cookies. she began by mixing flour, sugar, eggs, butter, and vanilla extract together in a bowl. she then continued to bake the cookies in the oven.",C's primary objective was to make dough. she began by mixing flour and water together in a bowl. she then continued to mix the dough by hand until it was smooth and elastic. 490,faa2a5e7-3ea7-4a85-8d03-6cb1929df968,1eQohdqIr09bua0NUo9vozhjrCgwxEXAm,"In this video, what key ingredients were added to the soup in the saucepan, and how did c make sure the flavors were well incorporated?","The key ingredients in the soup are chicken, broth, vegetables, and spices.","The key ingredients in the soup are chicken, broth, vegetables, and rice.","The key ingredients in the soup are chicken, broth, vegetables, and spices.","The essential key ingredients found in the soup include chicken, broth, mixed vegetables, and flavorful noodles.","The essential key ingredients present in the soup consist of chicken, broth, vegetables, and cheese, providing rich flavor.","The main key ingredients present in the soup are chicken, broth, vegetables, and beans, essentially." 491,fab4561a-c738-458c-93ca-6ec084204bc8,1-g5PuCJ-L5Bh0vxJlHdITok3m4Q6EoA-,"Describe the most critical stages in the construction process that occur in the video, accounting for how they contribute to the overall progress.",The most critical stages in the construction process are digging the foundation and laying the bricks.,The most critical stages in the construction process are framing the house and putting on the roof.,The most critical stages in the construction process are finishing the interior and landscaping the yard.,The most critical stages in the construction process are obtaining the necessary permits and hiring qualified workers.,The most critical stages in the construction process are planning the project and budgeting for the costs.,The most critical stages in the construction process are digging the foundation and laying the bricks. 492,fcf8719c-b32d-463f-aa4c-6ac4149bb1c0,104_13udltM3GQFhYI4gZrQd_ve3pQDcV,Analyze the choice of ingredients and their importance in the video. how do they contribute to the final dish?,"The minced beef, spring onions, and mayonnaise are all important ingredients in the dish. the minced beef provides protein, the spring onions provide vitamins and minerals, and the mayonnaise provides flavor.",The tissue paper is an important ingredient in the dish. it is used to clean up any spills.,"The can cover, a crucial component in the dish, serves to maintain the minced beef's freshness effectively by protecting it.","The wax paper, being a crucial ingredient in the dish, is utilized effectively to securely wrap the can to prevent any potential leakage.","The minced beef, spring onions, and mayonnaise are all important ingredients in the dish. the minced beef provides protein, the spring onions provide vitamins and minerals, and the mayonnaise provides flavor.",The transparent glass bowl serves as an important crucial ingredient in the dish's preparation. it is efficiently used to thoroughly mix the various ingredients together well. 493,fcff46e4-9e6f-4934-a59f-72a6e6538b0e,14AvEK5-m-eUTW6YEFEARtUZ7go_WC6AV,Summarize the main process that c carries out during the video and highlight similarities and differences observed at various stages.,"C cleans a pottery with a sponge, then decorates it with clay.",C creates a pottery from scratch.,"C cleans a pottery with a sponge, then decorates it with clay.",Person c diligently repairs a damaged pottery piece skillfully.,"Creatively, c meticulously paints a beautiful pottery piece with care.",A customer named 'c' successfully sells their beautifully crafted pottery. 494,fdd956f1-b988-4623-b54d-097f8a03fd11,1khR1h7wJMp9NQtHmLIq7Xwfp91dDguID,"Based on the actions performed by c in the video, what do you think is the main objective of her activity?",C is painting a picture on the desk.,C is cleaning the desk.,C is preparing to paint a picture.,C is painting a picture on the desk.,C is taking a break from painting.,C is getting ready to clean up her painting supplies. 495,fdfe8e9a-b21b-4156-9f56-52d223e4e3dd,1sHeTImpag0UjgWueDrD2ymfVG2m9LkP1,"Analyze and determine the most significant moment in the video and justify your selection, considering its importance to the overall video.",The most significant moment in the video is when c throws a ball into the basket.,The most significant moment in the video is when c and the other person first meet.,The most significant moment in the video is when c and the other person start arguing.,The most significant moment in the video is when c throws a ball into the basket.,The most significant moment in the video is when c and the other person stop playing together.,The most significant moment in the video is when c and the other person help each other up after falling down. 496,fe1a3d02-3ded-48ed-b8c5-4e579461cfaf,1lzKdhl1MD3yBlPzddNY9Z1xgULqi9tpG,"What is the central purpose or goal of the actions performed in this video, and how do certain key actions demonstrate that objective?",The central purpose or goal of the actions performed in this video is to cut a piece of cardboard.,The central purpose or goal of the actions performed in this video is to build a house.,The central purpose or goal of the actions performed in this video is to cut a piece of cardboard.,"The primary, central purpose or main goal driving the actions performed within this particular video is to effectively repair a damaged piece of furniture.",The core objective or aim underlying the actions executed in this particular video is ultimately to produce an imaginative piece of art.,The primary central purpose or main objective of the actions performed in this specific video is to effectively clean a piece of furniture. 497,fe375c7f-6cf0-41aa-8eac-df89817c38e2,1O5qKsAT6_Sxc4CxF1AM1VwXVx37pokzI,Compare c's actions and behaviors throughout the video. are there any patterns or techniques that c repeats? discuss how this contributes to the overall process and the efficiency of the preparation.,"C's actions and behaviors throughout the video are consistent with the goal of preparing a pancake. c first mixes the flour, water, and eggs in a bowl. then, c heats a frying pan on the stove and pours the batter into the pan. c cooks the pancake until it is golden brown on both sides, then removes it from the pan and places it on a plate. finally, c adds syrup and fruit to the pancake and enjoys it.","Throughout the entire video, c's actions and behaviors consistently align with the goal of preparing a bowl of cereal. initially, c pours cereal into a bowl, followed by adding milk. subsequently, c stirs the cereal and milk mixture together before proceeding to consume it.","Throughout the video, c's actions and behaviors consistently align with the goal of preparing a sandwich. initially, c spreads peanut butter and jelly on bread slices. subsequently, c cuts the completed sandwich in half before proceeding to eat it.","C's actions and behaviors throughout the video are consistent with the goal of preparing a salad. c first chops vegetables and adds them to a bowl. then, c adds dressing to the salad and eats it.","C's actions and behaviors throughout the video are consistent with the goal of preparing a pancake. c first mixes the flour, water, and eggs in a bowl. then, c heats a frying pan on the stove and pours the batter into the pan. c cooks the pancake until it is golden brown on both sides, then removes it from the pan and places it on a plate. finally, c adds syrup and fruit to the pancake and enjoys it.","C's purposeful actions and behaviors in the video demonstrate the goal of preparing a delightful stir-fry. initially, c skillfully chops fresh vegetables and tender meat. next, c heats some oil in a wok and gently adds the vegetables and meat. c stir-fries the ingredients until they're cooked, then blends in sauce and cooks for additional minutes. finally, c serves the delicious, steaming stir-fry atop perfectly cooked rice." 498,feb27a1a-2b3f-4535-a6a8-0bef5bd43fd0,1VJ7NjwsFBScg6XppsGXqOiREF_tJ2sms,"How can you describe the primary focus of the video in relation to c's actions, and what other activities help support this main objective?",C is a construction worker who is preparing cement to plaster a wall.,C is a skilled painter who is currently preparing paint to expertly paint a wall.,C is a construction worker who is preparing cement to plaster a wall.,C is a proficient gardener who is diligently preparing the soil to carefully plant a healthy tree.,C is a sculptor who is preparing clay to sculpt a statue.,C is a talented musician who is currently preparing various instruments to skillfully play a beautiful song. 499,fec37c37-f9ae-42a5-86de-508fffa3d881,1AgtJ8LUqoimPdPviLjbqYJePuClFai5a,"Analyze the sequence of events in the video, specifically highlighting c's decision making and rationale behind chosen actions in relation to the primary objective.",C's decision making and rationale behind chosen actions are consistent with the objective of making a cheese sauce.,"In c's decision making process, the rationale behind chosen actions seems inconsistent with the primary objective of successfully making a delicious cheese sauce.",C's decision making process and the rationale behind their chosen actions are ultimately irrelevant to the main objective of successfully making a cheese sauce.,C's decision making and rationale behind chosen actions are consistent with the objective of making a cheese sauce.,C's decision making and rationale behind chosen actions are not well-reasoned.,The individual's decision making process and the rationale behind their chosen actions are not well-executed or thoroughly considered. 500,ffa16aee-8fa8-4f15-9880-6b16ac9f29c3,1j5ygfNM08AKywszXfcA1wS_m9uDJLeiA,"Explain how the man's use of a phone impacts the overall activity and narrative, and what is its significance within the broader context of the video?",The man's use of a phone indicates that he is taking orders or communicating with customers.,The man's use of a phone indicates that he is bored and wants to pass the time.,The man's use of a phone indicates that he is taking orders or communicating with customers.,The man's use of a phone indicates that he is trying to avoid talking to c.,The man's use of a phone indicates that he is checking the news or social media.,The man's use of a phone indicates that he is playing a game. ================================================ FILE: data/multiple_choice_qa/IntentQA.csv ================================================ ,video_name,question,question_id,answer,video_id,question_type,a0,a1,a2,a3,a4 1,13884124143,how did the guy on the board managed to not fall off from the board at the start of the video,13884124143_CH_1,move left right to balance,13884124143,CH,jump,nod,push the chair away,playing the piano,move left right to balance 2,7093500213,what does the man in checkered do after walking onto the stage with microphone stands at the start,7093500213_TN_6,set up the stand,7093500213,TN,bow to people,set up the stand,take away the stand,takes out some paper,hands him a bottle 3,5465138661,why does the girl in jeans bend down at the start of the video,5465138661_CW_1,play with baby,5465138661,CW,dance move,prevent jeans from getting wet,tired of bouncing,play with baby,pick up snow 4,4254574573,why does the user touch the screen,4254574573_CW_2,to check the effects,4254574573,CW,it is a barrier,hand gesture for bear,typing,live webcam,to check the effects 5,2824180578,what does the man beside the orange sign do after a man walks in from the left in the middle,2824180578_TN_6,walks away,2824180578,TN,turn and stand,touch water,talk to the shirtless man,walks away,pat the man on his shoulder 6,2580553233,what did the man do after he sat up from the sofa,2580553233_TN_6,point microphone away,2580553233,TN,wave,happy,look around,get closer to baby,point microphone away 7,4458565343,why does the man in blue wear a cap,4458565343_CW_1,sunny,4458565343,CW,hug dog,expressive,sledding,sunny,looks cool 8,5597037980,why did the boy put the bottle in his mouth after taking it up from the table,5597037980_CW_2,to drink,5597037980,CW,make his hand wet,to drink,easier for him to drink,part of performance,to wipe his face 9,3060710599,why did the boy shake the plastic bag,3060710599_CW_1,remove the toy,3060710599,CW,remove the toy,play with the bag,clean it,check the bag,take his food out 10,3764313862,why did the baby lean on the sofa when he stood in the living room,3764313862_CW_0,cover his face,3764313862,CW,dancing,try to catch boy attention,look for him,cover his face,not to fall down 11,5942411333,what does the man in grey do after standing behind the people on stage,5942411333_TN_8,take photos,5942411333,TN,take photos,watch him,playing the ukelele,clap hands,hold poster 12,5596610883,why did the lady raise the keychain up after she took it out from the package,5596610883_CW_6,show to camera,5596610883,CW,to play again,to take other toy,finding something,wants to eat the cake,show to camera 13,8623311799,why is the lady in turquoise holding the handle on the seat before the end of the video,8623311799_CW_5,hold for balance,8623311799,CW,pick toy up from the floor,hold for balance,snatch something from girl,to get close to baby,can not walk properly 14,7095619943,what did the boy do after he clapped his hands,7095619943_TN_5,looked at his right,7095619943,TN,looks at the baby,hold man s hand,looked at his right,touch the cat,push away the toy 15,5358657883,what does the blonde girl do after running towards the people in costume,5358657883_TN_8,hug them,5358657883,TN,adjust their things,lie down,put down the souvenirs,hug them,went back to dance 16,5866354734,what does the girl do after picking up the toy at the start,5866354734_TN_10,give it to woman,5866354734,TN,clap and dance,eating something,start dancing,give it to woman,throw it 17,4888273655,why is the lady wearing shades,4888273655_CW_2,sunny weather,4888273655,CW,the baby s toy,direct attention,live webcam,grooving along with music,sunny weather 18,3332115271,how does the man in orange at the extreme end move his hands,3332115271_CH_8,clap,3332115271,CH,clap,cross one another,press the buttons,thick clothes,swing it by the tag 19,2432458239,why did the lady walk towards the waters,2432458239_CW_1,release crab into sea,2432458239,CW,careful not to fall,release crab into sea,to rhythm of music,adjusting something,get to other side 20,4063352694,how does the lady in black show affection to the baby at the end,4063352694_CH_3,hug the baby,4063352694,CH,big gesture,hand gestures,hug the baby,feed water and hug the doll,carry using left arm 21,9662978367,why did the kid keep looking down as he rode the bike,9662978367_CW_3,looking at the pedals,9662978367,CW,go across the pond,scared,practicing,looking at the pedals,lost his balance 22,5620721035,why did the boy lift his right leg at the start of the video,5620721035_CW_0,want to climb up sofa,5620721035,CW,performance,suck his thumb,pose,want to climb up sofa,want to jump around 23,3976362264,why does the child sit on a mat,3976362264_CW_0,play with toy,3976362264,CW,making her ready,learn to stand,play with toy,support,play with toys comfortably 24,6016490500,what did the girl in purple do after tying her shoes,6016490500_TN_6,look at camera,6016490500,TN,clasp her hands,put hand on table,look at camera,smile and look at man,shouts and scream 25,3564576864,why did the man in blue look towards the short haired lady in white while sitting at the table,3564576864_CW_6,talking to her,3564576864,CW,playing with the lady s hair,lady was throwing something,talking to her,dancing,playing together 26,6032430171,why did the man in cap look at the man in white as he guides the baby into walking,6032430171_CW_11,to see how they are doing,6032430171,CW,ready to catch the baby,lower the baby,watching over him,prevent falling off,to see how they are doing 27,6513201899,how does the woman in green interact with the child in red,6513201899_CH_2,talk and touch,6513201899,CH,blow onto him,hold the baby close,holding her head,talk and touch,angrily while yelling 28,3954996353,what does the man in red do before the man in white cut the ribbon,3954996353_TP_2,count down,3954996353,TP,jumps,take photo,follow her instructions to sit,count down,put pieces on the board 29,7824213108,why is the man pushing the green toy car,7824213108_CW_6,to make child happy,7824213108,CW,to make child happy,adjust keys,pretend to pump the tire,throw the ball,experienced driver 30,3058613626,why is the man with a red hat moving his body throughout the video,3058613626_CW_1,dancing to music,3058613626,CW,take photo of the interactions,parachuting,dancing to music,dropped item,shoot something 31,4654125833,why is the man wearing a ring on one of his fingers,4654125833_CW_5,he is married,4654125833,CW,catch fish,keep hands clean,protect from chemicals,support him,he is married 32,6894565761,what did the boy do before the girl reached her hand out in the middle of the video,6894565761_TP_9,scratch eyes,6894565761,TP,hand gesture,close eyes,lift the club up,sit on man and play toy,scratch eyes 33,3899884605,what does the lady in blue do with her hands after standing up for the second time,3899884605_TN_9,rub with mud,3899884605,TN,sit on stairs,stand still,move to man,put her hands up,rub with mud 34,4126506012,why are they looking at the tv while playing the guitar,4126506012_CW_1,follow beat on tv,4126506012,CW,wants to catch the mosquito,follow beat on tv,international news,music show playing,interested in advertisement 35,5498668540,how does the man interact with the tablet,5498668540_CH_5,touches it,5498668540,CH,hits it,pulls it,touches it,hugs it,sit on it 36,2885656050,what did the man do after he removed the brown sleeve from his bat,2885656050_TN_4,throw away,2885656050,TN,get closer to baby,pick up the ball,hit golf ball,throw away,pass to the boy wearing spectacles 37,4154619533,why did the man in jacket pick up an object from the table after talking,4154619533_CW_3,demonstrate how to use it,4154619533,CW,to show good,talking to surrounding people,demonstrate how to use it,reading the card,to wipe his face 38,3036261707,what did the boy do after he swing his body,3036261707_TN_9,stand still,3036261707,TN,put near his face,lie down,hold the swing,stand still,move backwards 39,4699202703,why is the boy holding a camera,4699202703_CW_0,take photo,4699202703,CW,filming another boy,take photo,playing with toy camera,adult pass it to him,posing for advertisement 40,8090435597,how was the boy rested as he looked at the ipad,8090435597_CH_7,leaning on sofa,8090435597,CH,sitting on the floor,lying down,kneeling,using the pillow he is holding,leaning on sofa 41,2612683715,why is the parrot moving the water out of the bowl,2612683715_CW_1,drink,2612683715,CW,drink,looking for food,conduct activity,try to intimidate dog,it s dirty 42,2581312980,why did the man turn their heads,2581312980_CW_0,talk to each other,2581312980,CW,going with rhythm,get oxygen,talk to each other,adjust something,performing acts 43,2400074985,how did woman express how she felt from spinning to friend near the end,2400074985_CH_11,excited speaking with body language,2400074985,CH,sway slightly,excited speaking with body language,shake hands,playing with her hair,point 44,2712318761,why does the two ladies wear sunglasses when they are dancing,2712318761_CW_1,to look cool,2712318761,CW,act in front of camera,performing,play with them,adjust something,to look cool 45,2471845614,why does the male in black suit kiss the female in the wedding gown nearing the end of the video,2471845614_CW_3,female is his bride,2471845614,CW,get closer look at magazine,adjust her headwear,playful,move man s face close,female is his bride 46,9934829764,why does the man in green release the man in black off the trapeze,9934829764_CW_3,let the man jump,9934829764,CW,cook,get onto main road,let the man jump,let him speak,record for later use 47,6594027277,why did the man in grey raised his actions near the end of the video,6594027277_CW_11,part of instructions,6594027277,CW,touch the boy in stripes,part of instructions,balance himself,scare baby,change something on screen 48,8090435597,why did the adult touched the ipad in the middle of the video,8090435597_CW_6,hold the ipad closer for boy,8090435597,CW,to turn on the screen,look at parents,adjust speaker,hold the ipad closer for boy,observe the keyboard 49,5408572348,what does the baby in white do after the girl pours the water at the start,5408572348_TN_7,dips her ladle in,5408572348,TN,hit lady s face,kick legs to paddle,wipe hair with wet cloth,put plush on the floor,dips her ladle in 50,5271062042,how is the man in brown rested as he plays the guitar,5271062042_CH_0,sitting,5271062042,CH,rocking,leaning,lying,standing,sitting 51,5379320378,why did nt the two men standing behind do anything throughout the whole performance,5379320378_CW_2,watching him,5379320378,CW,sleeping,watching him,support baby,playing game,shooting the balloons in the line 52,3976362264,how does the child interact with the toy shaped like a ball,3976362264_CH_1,bite it,3976362264,CH,push it with his hands,bite it,kick it,flip the toy around,pick up balls 53,6063052014,how did the man demonstrate to the baby to open his mouth before feeding him,6063052014_CH_6,he opened his own mouth,6063052014,CH,using a milk bottle,using a water bottle,uses his hands,he opened his own mouth,hold waffle with hands 54,5686014373,how did the man flip the boy over,5686014373_CH_2,carry him up,5686014373,CH,on his hands,on his belly,wrap in blaket,carry him up,roll the carpet 55,3060710599,why did the boy open and close the mouth of the alligator,3060710599_CW_2,play with it,3060710599,CW,find another toy,put food inside of it,brush its teeth,show baby how to play,play with it 56,5687893796,why is the lady in pink moving around the room in the beginning of the video,5687893796_CW_0,dancing,5687893796,CW,excited,searching,fidgeting around,dancing,not comfortable with the dog 57,4042843624,why is the man wearing shades,4042843624_CW_3,hot,4042843624,CW,mascot,protect from sun,stylish,hot,cool dancing 58,4192027724,why are the kids playing with empty cartons,4192027724_CW_1,curious,4192027724,CW,still cooking,prevent shoes from getting wet,curious,lick yogurt taste,waiting 59,5841926063,how did the man in white make sure that the horse continues to run,5841926063_CH_4,hit horse with stick,5841926063,CH,hit horse with stick,another horse chases,tie to a pole,whistle,using rope 60,4855795432,why are the cakes moving around in circles,4855795432_CW_1,container being spin around,4855795432,CW,the girl to blow,playing game,birthday candle,container being spin around,part of dance move 61,10211516755,what does the girl do after scooping some food at the start,10211516755_TN_7,eat it,10211516755,TN,come towards the lady,eat it,feed the food to baby,pretend to feed toy dog,turns around 62,2582976771,why did the boy turned back at the end of the video,2582976771_CW_7,look at the lady sitting,2582976771,CW,chase the ball,lure dog with treats,look at the lady sitting,carry boy off,adjust position of baby 63,9641305350,why did the man sit in the waters and look at the child play,9641305350_CW_2,supervise,9641305350,CW,supervise,look at the wave,playing with fishes,interested in tank,blowing balloons 64,5596908548,what does the man do after putting his left hand behind him in the middle,5596908548_TN_7,touch object hanging behind pants,5596908548,TN,looking around,look through pockets,raise his hands,write with a pen,touch object hanging behind pants 65,10830982353,how was the food transfered across the room,10830982353_CH_8,man hold it,10830982353,CH,hand over by kids,throw across the room,with toy car,man hold it,dog pulls it 66,8634740778,how did the white dog reach the stone path,8634740778_CH_9,walk towards stone path,8634740778,CH,a man took it there,tap the side of the tub,smells it,raise up,walk towards stone path 67,7282289126,why does the girl put up her hand at the end of the video,7282289126_CW_2,singing and dancing,7282289126,CW,balance,singing and dancing,speaking,talking and waving goodbye,scratch her back 68,6003229163,how are the girls moving in the woods,6003229163_CH_5,walking,6003229163,CH,crawls,pushes the pram,cycles,jumps,walking 69,7751455900,why does the man hold up the baby at the beginning,7751455900_CW_5,support the baby,7751455900,CW,keep the baby sleeping,playing with green item,to rock the baby,tease the baby,support the baby 70,2591888090,why is the man not pushing the baby walker instead of little boy,2591888090_CW_4,boy want to push,2591888090,CW,boy want to push,child too small to walk,to help him hit the plate,playing with him,support the baby 71,3265024425,how do the animals get their food,3265024425_CH_3,fed by zookeepers,3265024425,CH,from a bowl,put their head through the holes,spoon,moving outside cage,fed by zookeepers 72,6513201899,how does the child in red react to the woman in green,6513201899_CH_3,look and laugh,6513201899,CH,kiss,hits her,look and laugh,screams at her,make gestures 73,8692968296,why is the man moving his fingers across the instrument,8692968296_CW_7,playing the piano,8692968296,CW,playing the piano,singing along,enjoying music,to perform for person at sofa,imitate action 74,5841926063,why did the man outside reach out his hand when the horse runs near him,5841926063_CW_1,training it,5841926063,CW,resting,training it,controlled by lady,pat on chin,feed horse 75,5322122291,what do the man in suit and the lady do after shaking hands,5322122291_TN_6,high five each other,5322122291,TN,go to bench,move them,take the microphone back,high five each other,kiss her 76,8481787117,why did the girls raise their arms upwards a few times throughout the video,8481787117_CW_2,playing with toy in their hands,8481787117,CW,catch balloon,dance to song s rhythm,playing with toy in their hands,to push her,pick up towel 77,4330113365,how were the oranges drawn on the paper,4330113365_CH_9,painted,4330113365,CH,throwing around,jump around,painted,claps,with both hands 78,8095838321,what does the woman do after the boy jumps down from the monkey bars in the middle,8095838321_TN_7,let go of the swing,8095838321,TN,nod head,fall down,looks disappointed,let go of the swing,sits down 79,2637595500,what did the baby do after he reached the sofa,2637595500_TN_3,touched the sofa,2637595500,TN,crawl,stretch out his arms,drink,touched the sofa,playing with toy 80,3555802519,why is the baby moving his hands,3555802519_CW_1,fidgeting,3555802519,CW,imitate the lady,fidgeting,play,person playing with the baby,played with them previously 81,9038264963,why did the man beside the man in green hit his hands in a uniform beat when the man is reciting,9038264963_CW_2,pace the reciting,9038264963,CW,move out of the way,encourage,background for filming,pace the reciting,to dance 82,3962139149,why did the man in grey shirt laughed when the dominos stopped,3962139149_CW_9,finds it amusing,3962139149,CW,to stroke it,finds it amusing,not his part,enjoying music,happy playing with toys 83,3277823769,why did the lady bend down at the start,3277823769_CW_7,adjust the cot,3277823769,CW,pick up pebbles,writing something,adjust the cot,unstable to move,dance move 84,8481787117,how are the children moving around in the video,8481787117_CH_3,walking,8481787117,CH,crawling,driving,jumping,walking,cycling 85,10415409886,what do the men do after they bend down over the tyre,10415409886_TN_6,lift up the tyre,10415409886,TN,move in front,touch the camera,get off bike,lift up the tyre,smoke 86,5460608032,why is there no plants in the area shown in the video,5460608032_CW_0,desert,5460608032,CW,have been shifted outside the house,deadsea,cave,desert,deapsea 87,3252591972,why did the man push his body weight on the table on the red cloth,3252591972_CW_2,press down on can,3252591972,CW,formal event,draw cards,press down on can,playing cards,conferencespeakers 88,3252591972,how does the man operate the machine in the middle,3252591972_CH_5,pulling leaver,3252591972,CH,move handle,pulling leaver,turn tap,hit instrument with sticks,press the key 89,3468317018,how did the woman show affection to the dog in between,3468317018_CH_3,caress the dog,3468317018,CH,pat its head,by tilting the cup,point finger,with a leash,caress the dog 90,3400557969,why do both men talk before starting to surf,3400557969_CW_4,communicate,3400557969,CW,fast enough to catch the wave,to catch the wave,communicate,dangerous to cut near people,pose to end 91,5489050159,what does the man in blue do after covering his face with hands at the start,5489050159_TN_5,sits up,5489050159,TN,lay on stomach and laugh,showing others something,pull rod up,drink water,sits up 92,3322267252,why are the people at the background standing at the same position,3322267252_CW_9,waiting for train,3322267252,CW,waiting for train,seeing other people play,dancing to the same song,watching,looking at pictures 93,2622782176,why did the man holding the baby swing his body side by side,2622782176_CW_2,calming baby,2622782176,CW,dropped into the water,walking,calming baby,keep the baby sleeping,simulate an enemy 94,5770742977,why did the blue shirt boy raise his hands when the float reaches the bottom,5770742977_CW_0,excited,5770742977,CW,unhappy,playing with ball,catch the toy,to hit the net,excited 95,5710270308,how does the baby play with the balls,5710270308_CH_1,grab and wave,5710270308,CH,touch the toys,bite them,grab and wave,hit,spin them 96,4126506012,why are the people holding guitars,4126506012_CW_0,playing game,4126506012,CW,practicing,follow tutorial on tv,pose for photos,playing game,trendy 97,5036295532,what did the baby do after putting down the spoon,5036295532_TN_7,clap,5036295532,TN,playing with spoon,take out spoon,rub it on the tray,clap,tap table too 98,2399505725,why are the dogs running after each other,2399505725_CW_9,chase the bottle,2399505725,CW,try to bite each other,follow the ball,chasing the car,chase the bottle,guide direction 99,3954996353,why did the man in red raise his hands at the end of the video,3954996353_CW_8,hand gesture for cutting,3954996353,CW,done performing,excited,hand gesture for cutting,pick up water bag,part of performance 100,8903248754,how did the boy with green shorts get to the other side of the swimming pool,8903248754_CH_3,swim,8903248754,CH,swim,paddle,used his hands as a lever,pull the level,jump out of pool 101,6227157477,what did the soldiers do after they swing their guns in the middle of the video,6227157477_TN_6,move gun to the other hand,6227157477,TN,move gun to the other hand,laugh,put it down,touch the vacumm clearner,adjust their hat 102,8994022703,why does the lady laugh after looking at the mobile screen,8994022703_CW_1,funny message,8994022703,CW,find baby cute,funny message,beauty phone,to show something,enjoying the activity 103,3060710599,what did the boy do after he shaked the toy out of the plastic bag,3060710599_TN_3,picked it up,3060710599,TN,picked it up,throw it back in bowl,tried to stuff more toy,squat down,pick the toy from water 104,3233438837,why do the men sometimes move very close to the stage edge,3233438837_CW_4,get close to audience,3233438837,CW,same team,get close to audience,the troupe leader,acting,dancing with music 105,5209164320,why did the lady in blue cover her mouth before raising up the harmornica,5209164320_CW_1,she is laughing,5209164320,CW,take candles out,to rescue toddler who fell,guide the dog to run,she is laughing,point at the cake she likes 106,5769549970,what does the man in dark blue do after turning his head towards the police at the end,5769549970_TN_10,hit him,5769549970,TN,jumps,raise hand,hit him,move backward,walk toward camera 107,2973658146,what did the boy do after he looked at the ladies for a while,2973658146_TN_10,dip his hand in the glass,2973658146,TN,kiss the boy,look at camera,bend down,talks,dip his hand in the glass 108,3564059530,why is the man holding a card and bicycle in his hand,3564059530_CW_0,his items,3564059530,CW,for safety,better grip,uneven ground,man was cycling,his items 109,3058094185,why is the man laying on the sofa beside the boy,3058094185_CW_2,play with the boy,3058094185,CW,watching video,play with the boy,showing affection,eyes itchy,do not want to carry baby 110,13983574774,how did the boy in green react after unwrapping the present,13983574774_TN_6,happy,13983574774,TN,rest,happy,drop it,point middle finger,put them in the drawer 111,2526590751,why do all the people constantly look at the big waves,2526590751_CW_0,waiting for the waves,2526590751,CW,take photo,lion jumped into water,caused by boats,waiting for the waves,tourist attraction 112,4829041184,why does the dog pass the bottle back to the person,4829041184_CW_3,so that he can play,4829041184,CW,allow the person to drink from the bottle,so that he can play,share the bottle with baby,for the person to spin the bottle,to pour more water 113,4815162722,why did the lady in pink bend over the cake at the end,4815162722_CW_5,blow candle,4815162722,CW,blow candle,let girl blow second candle,eat the cake,pick up cupcake,pat baby s head 114,5942411333,why is the person pointing camera at people,5942411333_CW_5,capture pictures,5942411333,CW,show them camera,capture pictures,checking lighting,throwing camera to them,pointing to demonstrate 115,6157608500,why does the man pick up the baby and hug it in the middle of the video,6157608500_CW_1,affectionate gesture,6157608500,CW,affectionate gesture,to feel baby s head,tickle baby,protect the baby from falling,rocking the toy horse 116,5795646653,why did the man stand near the slope,5795646653_CW_1,watch boy rolling down,5795646653,CW,playing with the machine,waiting for the dog,watch boy rolling down,prevent falling off,to control the toy car 117,3798468368,how did baby get on chair,3798468368_CH_0,climbing,3798468368,CH,climbing,baby chair and table,in a baby carrier,in the high chair,lie down 118,4059247647,how did the baby pull the toy towards her,4059247647_CH_6,stretch her arm,4059247647,CH,with baby hands,stretch her arm,tuck out tongue,touch the figurines,touched it 119,7093500213,why is the man lifting a drum onto a platform on stage near the beginning,7093500213_CW_2,prepare a performance,7093500213,CW,dance on it,engrossed in music,pose seriously,playing the drum,prepare a performance 120,2830844169,why did the boy tilted the bottle,2830844169_CW_3,drinking,2830844169,CW,keep their own belonging,feel the music,take something from bottom,drinking,for water to drip down 121,2436811248,what does the boy do after the man opens the laptop halfway at the start,2436811248_TN_7,touch keyboard,2436811248,TN,touch keyboard,throw the ball,adjust it,pick little boy up,look at screen 122,10718903414,why does the woman in blue bend down at the start of the video,10718903414_CW_5,snatch something from girl,10718903414,CW,to play with it,not her turn,did not want the lei,snatch something from girl,conversing 123,6913450810,what does the boy in blue do after reaching the other end of the wall,6913450810_TN_7,make funny faces,6913450810,TN,stop running,lay on stomach and laugh,pick up the fork,make funny faces,walk 124,6016490500,why is the lady wearing big hat,6016490500_CW_3,to give herself shade,6016490500,CW,fashionable,performance,to give herself shade,posing for photo,protect head from injuries in accident 125,12952480344,how does the lady control the tap,12952480344_CH_8,hold while turning,12952480344,CH,hold while turning,jumping up and down,hit water with her hands,press the switch,on left hand 126,9393719235,why are there two girls standing up and facing the rest of the people,9393719235_CW_1,speaking to the audience,9393719235,CW,dancing,taking shelter,speaking to the audience,give a speech,talking to girl 127,4800432556,why is the boy sliding down the slide,4800432556_CW_0,playing,4800432556,CW,it got stuck,playing,to catch the baby,wants to get down,slide down with baby 128,9525696229,why are the man and the lady standing on the beach looking at the girl,9525696229_CW_4,look after the girl,9525696229,CW,look after the girl,at the beach,to play with water,look for food,fishing 129,9970084224,what does the white dog do after the black dog with leash turns around at the start,9970084224_TN_2,climb on it,9970084224,TN,climb on it,sniff the white dog,bark at white dog,trying to chase the white dog,put white paper in front of dog 130,3751822104,why does the man speaking to the group wear uniform,3751822104_CW_0,instructor,3751822104,CW,sledding,show gesture,communicate with audience,instructor,protect from sun 131,4283455837,how does the lady in white ensure that the baby does not fall over,4283455837_CH_0,carry in her arm,4283455837,CH,takes support on the floor,stand at the roadside,carry in her arm,holding his hand,lie on bed 132,4338819435,how did the lady show that she is shy at the end of the video,4338819435_CH_7,look at the man and smile,4338819435,CH,look at the man and smile,hold his hand,laughs,hits him with the bead,one of hand not in position 133,5408572348,why did the girl in blue pour the water from one pail to another,5408572348_CW_0,get more water,5408572348,CW,get more water,following,filming her,take photos,enjoying the activity 134,5246766161,what does the girl do after turning to the camera,5246766161_TN_9,said something,5246766161,TN,said something,playing tablet,move towards the camera,smile and pose,looks at the boy 135,2547045867,why does the man in grey swipe his hand sharply before the vehicle pulls away,2547045867_CW_4,suggest car leaving,2547045867,CW,suggest car leaving,panick,check for cars,change direction,stop the car 136,12015983824,why did all the children wear white coats,12015983824_CW_0,lab experiment,12015983824,CW,feed cat with food,boxing,their outfit,at home,lab experiment 137,6320419082,why does one of the girls turn round and round,6320419082_CW_2,playing,6320419082,CW,windy day,playing,cycling,to catch rolling fallen bapple,dancing 138,4953208186,what did the man do after speaking,4953208186_TN_4,talks to the lady,4953208186,TN,engaged,lower the camera on his shirt,continue paddling,talks to the lady,stop 139,5717777815,why did the lady shake the boys hands up and down,5717777815_CW_0,playing,5717777815,CW,start to dance,prepare to catch,playing,hold for support,blow bubbles 140,3196912028,why did the woman in blue pass a paper to each of the children after she has written something on it,3196912028_CW_2,giving them instructions,3196912028,CW,take control from the girl,too young to have strong grip,giving them instructions,curious,show the people around 141,5942411333,what does the man on stage do after putting his hand in his vest,5942411333_TN_10,takes out some paper,5942411333,TN,play video,takes out some paper,take photos,singing,wave hands 142,7729753698,why is the man in white holding a knife,7729753698_CW_0,open coconut,7729753698,CW,filming,open coconut,hand gesture while talking,chef,cut fish open 143,9970084224,what does the black dog with leash do after approaching the woman at the start,9970084224_TN_3,sniff the lady,9970084224,TN,moves sideways,sniff the lady,moves in front,move backwards,rubs the dog 144,3751822104,why does the man in uniforrm gesture his hands as he speaks,3751822104_CW_3,describe better,3751822104,CW,explaining using hand gestures,check the hair cut,amplify his voice,demonstrating,describe better 145,2869614883,how do the children slide down,2869614883_CH_7,flip over on their stomach position,2869614883,CH,flip over on their stomach position,press the buttons,laying down,on his dad,crawl 146,2422465594,how did the bigger rabbit react after the smaller rabbit approaches it,2422465594_TN_4,jumped,2422465594,TN,turn his body,continue eating,moves back,jumped,near the soil area 147,8331338778,why are they wearing heavy clothing,8331338778_CW_2,cold,8331338778,CW,snowfall outside,cold,protect from sunburnt,windy,avoid injury if fall 148,7973772218,why does the girl put her left leg on the ground at the end of the video,7973772218_CW_3,can not balance anymore,7973772218,CW,get closer to baby,finish presentation,comfortable posture,can not balance anymore,to pat the dog 149,3396832512,why is the woman holding a piece of meat at the start,3396832512_CW_1,attract the cat,3396832512,CW,attract bird,she is dozing off,eat the cake,attract the cat,play with it 150,4953208186,why did the man and woman turned and look at each other,4953208186_CW_0,talking to each other,4953208186,CW,details about car,talking to each other,gesturing to them,it s sunny,following the screen 151,10626519064,why was the girl in pink running from left to right in the middle,10626519064_CW_6,looking at her,10626519064,CW,want to take the balloon,play with dog,prevent her flag from being taken away,looking at her,follow the ball 152,2885656050,how did the man clean his bat in the middle of the video,2885656050_CH_7,rub bat with sleeve,2885656050,CH,rub bat with sleeve,hold it tightly,shake his head,kicked ball,move closer 153,4953208186,what did the lady do after touching her face,4953208186_TN_2,look towards the man,4953208186,TN,look towards the man,excited,move her left arm,touch the baby again,hat 154,8316378691,how does boy react after opening the present,8316378691_TN_3,carry up the dog,8316378691,TN,disappointed,cover it again,carry up the dog,continue reading,pick up pink object 155,2885991220,what did the boy do after he first turned to the camera,2885991220_TN_6,laughed,2885991220,TN,touch his hair,nods head,walk close to it and look,laughed,spray them with water 156,5620721035,why did the boy sit down and crawl instead in the end,5620721035_CW_1,can not climb so decided to crawl,5620721035,CW,can not climb so decided to crawl,play his toy,want to play with adult,practicing crawling,dance move 157,6990172057,why is the man in black consistently watching the boy in yellow at the end,6990172057_CW_9,making sure the boy is safe,6990172057,CW,boy is dancing,observing the reaction,making sure the boy is safe,watching him singing,concentrated on working 158,6343797119,why did the man in black hold up a bottle of water near this face when the camera moved,6343797119_CW_7,drinking,6343797119,CW,mixing things,touch baby,face wet,drinking,win competition 159,8585296242,why did the woman in red move the arms of the boy in white and blue while looking at the screen,8585296242_CW_1,make boy gesture,8585296242,CW,help to take out microphone,arrange their standing,show him the cake,safety,make boy gesture 160,5630988927,how is the baby moving himself at the start of the video,5630988927_CH_0,crawling,5630988927,CH,on his stomach,running,crawling,on pram,on lady legs 161,6070985304,why did the first man spin and jump into the pool,6070985304_CW_0,stunt,6070985304,CW,protect his head,to splash water at them,performance,stunt,to show judges 162,8634740778,what did the white dog do after the brown dog walked away at the start of the video,8634740778_TN_6,sniff around,8634740778,TN,jump on the chair,bite,wag its tail then stand up,follow the man s gesture,sniff around 163,4719167605,why does the baby keep fidgeting,4719167605_CW_2,wants to move,4719167605,CW,want to play with toy,looking at the tablet,want to eat food,excited then got distracted,wants to move 164,5408572348,what does the baby in white do after putting down the pail at the end,5408572348_TN_9,puts his hands in the bowl,5408572348,TN,playing,puts his hands in the bowl,feed horse with grass,pour milk on floor,look at wrapper 165,3350647572,why is the girl smiling at the start of the video,3350647572_CW_0,play with toy,3350647572,CW,make balloon fly,play with toy,not time yet,excited to play,read something fuuny 166,6150459616,why does the girl in blue follows the girl in pink on the other side,6150459616_CW_2,curious,6150459616,CW,curious,not get lost,looking for food,learning from girl,picking vegetables 167,9393719235,why is the man in black putting his hand on his face while looking at the girls talking,9393719235_CW_4,listen to them carefully,9393719235,CW,listen to them carefully,emphasise points,intrigued by him,wipe tears,shy 168,11166208165,why did the lady touch the child s hair when her hair is touching her mouth,11166208165_CW_4,move hair out of her face,11166208165,CW,windy day,playing with baby,very hot,shocked,move hair out of her face 169,4338260909,why did the man reach out his palm while he is talking,4338260909_CW_2,hand gesture,4338260909,CW,talking to the camera,unable to talk,hand gesture,introduce the wine,talking to each other 170,13974008375,why does the girl in white start imitate the person in blue jacket at the end of the video,13974008375_CW_5,dance together,13974008375,CW,dance together,lauughing,play with girl,try to take sprinkle to eat,happy 171,6320419082,why do the girls sit down in between,6320419082_CW_3,dance move,6320419082,CW,dance move,read to boy,posing,talk to girl at same height,to sit comfortably 172,3574384655,why did the horse change direction after running for a while,3574384655_CW_1,reaches the fence,3574384655,CW,change posture to support baby,to prepare to push harder,reaches the fence,wave pushed him,shot the gun 173,4789310455,how does the baby hold his right hand with his left hand at the end of the video,4789310455_CH_3,grab fingers,4789310455,CH,shake hands,pat the baby,grab fingers,wave hands,kick legs 174,2885656050,how did the man support himself when he was squatting down at the beginning of the video,2885656050_CH_8,hold onto bat,2885656050,CH,look around him,wipe on pants,put baby on his lap,hold the chair,hold onto bat 175,3134592560,why did the lady give the boy the cream squeezer at the end,3134592560_CW_3,let him add cream on layer,3134592560,CW,lick the back of the spoon,feed baby,wants more,he successfully balanced it,let him add cream on layer 176,3301442525,why does the man in grey shirt pushing the door of the car in the middle at the start of the video,3301442525_CW_1,closing door,3301442525,CW,put on window,laughing,draw other people s attention to things,turning the truck,closing door 177,4164627367,how is the bicycle moving in the video,4164627367_CH_1,people pedalling,4164627367,CH,wear helmet,move around the table,people pedalling,ride up and down slopes,hold the handlebarstem 178,3179829544,why did the man in stripes move aside in the middle of the video,3179829544_CW_4,turn to watch baby move,3179829544,CW,laughing,turn to watch baby move,take his glove,to take the picture,look at someone 179,5866354734,why did the girl pass the toy to the lady before she jumps up and down,5866354734_CW_7,help her hold,5866354734,CW,help her hold,playing the game,encourage lady to join her,bored of throwing,challenge herself 180,2973658146,why did the boy put his hand into the cup,2973658146_CW_7,wants to wet his hand,2973658146,CW,to pick bottle up,see if he spill,drink,to eat the ice cream,wants to wet his hand 181,3350647572,what did the girl do with the plush after she turned around with it,3350647572_TN_6,put toy s hand on the wall,3350647572,TN,touches his head,crawl,put toy s hand on the wall,moves the camera around,close the door 182,4688033528,why is the man holding a paper in his lap,4688033528_CW_0,read from it,4688033528,CW,help his speech,reading book,they are tourists,read from it,play 183,8484188496,what do the men on stage do after twirling with one hand in the air near the middle,8484188496_TN_1,face the audience,8484188496,TN,standing in the middle,face the audience,sway his body,sway along with music,performing 184,9970084224,why did the black dog with leash stare at the skinny small white dog when it walked past it,9970084224_CW_1,curious,9970084224,CW,curious,wanted to hug the dog,wanted to pass a dog bone,check if the convoy is ready to go,want to play with it 185,4829041184,why does the dog pick up the bottle with it s mouth,4829041184_CW_2,to return to the owner,4829041184,CW,trying to bite,wants to drink from the bottle,to return to the owner,wants to throw the bottle away,showing affection 186,3134592560,how did the boy react after putting the strawberry on the cake,3134592560_TN_0,smiling,3134592560,TN,raise hands,run away,eat,bite,smiling 187,2774585614,why did the little girl hit the glass at the end of the video,2774585614_CW_2,attract the fish,2774585614,CW,attract the fish,indicating to the camera man,pick something up,sneeze,pick up hat 188,5443388088,what does the man with beard do after gently shaking his wine glass at the end,5443388088_TN_7,talk to the camera,5443388088,TN,drink,talk to the camera,thumb up,happy,yawn 189,4458565343,why does the man in white carry a camera,4458565343_CW_2,taking video,4458565343,CW,stylish,wet by the sea,taking video,look at his guitar fingering,sunny weather 190,3508141028,why did the girl in blue touch the paper on the piano when she moved her hands away form the piano,3508141028_CW_5,change page,3508141028,CW,playing piano,to lick its body,change page,take photos,take candles out 191,7751455900,what does the baby do after picking up the yellow stick,7751455900_TN_6,shake it,7751455900,TN,pick up another toy,shake it,turn one round,excited,hit toy 192,5298163149,what did the boy in red do after putting the fork and spoon he was raising in the air into the red box at the end,5298163149_TN_7,crawl,5298163149,TN,take out of basket,take out phone,crawl,put egg on the ground,claps 193,4250392878,why did the man move the child s hand further up the hammer handle while they were hitting the second screw in,4250392878_CW_7,playing with child,4250392878,CW,playing percussion,feeling rhythm,to hit drum,detach it from the fish,playing with child 194,11277503743,how did the children pose in front of the camera at the end,11277503743_CH_9,hold card up,11277503743,CH,share the toy,intrigued,hold card up,kiss baby,push with stroller 195,3400557969,why did the man in black carry his white surf board and go towards the waters again near the end,3400557969_CW_7,start surfing again,3400557969,CW,take food,start surfing again,resting,push himself forward,go deeper 196,3832090694,what does the elephant do after reaching its stop,3832090694_TN_6,go to woman in blue,3832090694,TN,step backwards,hit the smaller elephant,turn his body,leave the bed,go to woman in blue 197,3676488640,why did the baby hit the table after sitting on the feeding chair for some time,3676488640_CW_0,bored,3676488640,CW,someone splash water,bored,fasicnated by bottle,to call the cat,laughing 198,4443349080,how does the boy in blue move the ball across the garden,4443349080_CH_1,kicking,4443349080,CH,kicking,obstacle course,hit it with racket,throw it,stumble with hands 199,9921053695,why did the lady with white bottle smiled after she finished her milk,9921053695_CW_6,happy to play,9921053695,CW,find baby cute,wants more,happy to play,happy to dance with each other,agree 200,7973772218,what did the boy do after beating the girl,7973772218_TN_10,climb up from the chair,7973772218,TN,walks away,keep the toy aside,climb up from the chair,watch her,swim 201,2415116705,what did the man with yellow head accesorry do after the lady put her hand into the bucket at the beginning,2415116705_TN_5,dip hands back,2415116705,TN,drink from cup,point to the lady in black,dip hands back,watch,throw and catch towel 202,6623776437,why is the man in black shirt looking down at the toy near the end of the video,6623776437_CW_6,untie the toy,6623776437,CW,pass man in yellow a present,man in grey walked up,to be closer to the microphone,untie the toy,breakdancing 203,3246498270,why is the baby crawling on the floor at the beginning,3246498270_CW_6,to get the bottle,3246498270,CW,playing with dog,to get the bottle,enjoy playing the bowl,go somewhere else,hide 204,3136263720,what does the baby do after the man throws the wrappers in front of it,3136263720_TN_9,throws the wrappers,3136263720,TN,throws the wrappers,bend down to pick it,puts his face next to baby,pick up the other side,turn towards the toy 205,4513212069,why is the baby lying on a bed,4513212069_CW_3,relax,4513212069,CW,playing with baby,support baby,for the dogs to rest,relax,dancing 206,4277853330,why is the man caressing for the bird,4277853330_CW_1,show his affection,4277853330,CW,produce higher vioce,performing,show his affection,to help him hit the plate,unable to talk 207,9720272113,what does the boy in white pants do after playing rock paper scissors,9720272113_TN_7,wave hands around,9720272113,TN,sitting,enter the room,pat baby s tummy,wave hands around,get up and continue dancing 208,6197272373,why did the girl in yellow put down her glass at the beginning of the video,6197272373_CW_4,finished drinking,6197272373,CW,because glass is heavy,finished drinking,wants to play with the toy,wants to throw the glass away,attracted by crocodile 209,9576113974,what does the man do after putting down the kid in blue,9576113974_TN_8,carry kid in yellow,9576113974,TN,touch the water,come and stand on the stool,carry kid in yellow,slap his hand on the floor,pose 210,6335467068,why is the lady in blue smiling,6335467068_CW_9,talking to lady in white,6335467068,CW,talking to lady in white,reading funny book,looking at baby,posing for photo,eager to hold the baby 211,4688033528,what does the man in blue do after reading the paper for a while at the end,4688033528_TN_11,looks up,4688033528,TN,looks up,follow man in checkered shirt,turn to look at the sea,clap,ski down 212,3191035895,why is baby smiling and laughing,3191035895_CW_3,getting tickled,3191035895,CW,enjoying dance,dancing happily,lady tickles him,getting tickled,having fun 213,2401981865,what does the man do after the baby touches his beard at the end,2401981865_TN_8,bite baby stomach,2401981865,TN,pet body,sit down,bite baby stomach,lift the baby to camera,put hamster into a pit 214,3322267252,how is the man in red supporting the camera at the end,3322267252_CH_7,hold with hands,3322267252,CH,hug the camera,put on table,hold with hands,microphone,raise both his hands 215,8223287911,why did the lady approached the baby,8223287911_CW_6,carry baby,8223287911,CW,to make baby sit on her lap,carry baby,play with her,to guide the baby,holding up her toy 216,3522761604,why did the lady in blue pick up a piece of fruit from the cake,3522761604_CW_8,to feed baby,3522761604,CW,her birthday,to feed baby,agree,for her to distribute,ask for guidance 217,5768622177,how did the boy prevent crashing into the glass door,5768622177_CH_2,turn right,5768622177,CH,turn right,jump up,with toy,cusion,spinning 218,3718722735,why is the green shirt woman bending down beside the water,3718722735_CW_1,holding orange shirt baby,3718722735,CW,to remove things from the table,holding orange shirt baby,assist the girl,do nt want to wet shoe,tidy her hair 219,9251779370,why is the lady in black beside the man moving the paper in her hand,9251779370_CW_7,gesture and reading the menu,9251779370,CW,attract the attention of others,check her notes,keep track of her reading,gesture and reading the menu,listening attentively 220,9397185434,how did the lady in blue showed sign of success at the end,9397185434_CH_5,showed her muscles,9397185434,CH,jump up,stood up,singing,clap her hands,showed her muscles 221,2643443060,what did the boy do after tearing a piece of the food,2643443060_TN_9,eat,2643443060,TN,fell over,walk to man,nonchalant,put on the floor,eat 222,3508141028,what did the woman in pink point at after leaving her hand from the girl s back for the first time,3508141028_TN_9,teaching her which note to play,3508141028,TN,teaching her which note to play,frown,moved her leg out,shift the pillow,put it on her head 223,2581312980,why did the men look and talk to one another halfway through listening to the lady speak,2581312980_CW_5,the lady asked them a question,2581312980,CW,the lady asked them a question,check if they are done,having a conversation,listen to her,aiming the way 224,4815162722,what does the lady in pink do after kissing the man,4815162722_TN_0,look forward,4815162722,TN,touch baby s forehead,puts the girl on the side,wave her hands,pick up pink toy,look forward 225,3899884605,what did the lady in blue do after she bent down the second time,3899884605_TN_2,wash hands in mud,3899884605,TN,jump up snd down,walk to lady in blue,studying the screen,falls off the blue eqyupment,wash hands in mud 226,2835672361,why is the person sitting on the stairs,2835672361_CW_4,guide the men,2835672361,CW,guide the men,listen to speech,watch the performance,watching the 2 people perform,get higher 227,5209164320,what does the lady in purple do after pointing to the man in white near the start,5209164320_TN_6,touch the guitar,5209164320,TN,turn behind her,moving her arms mini dance,writing,turn back,touch the guitar 228,9247615457,what does the child do after kneeling down in the middle,9247615457_TN_6,turn around,9247615457,TN,crawl,turn around,crawling on the ground,eating the cake,play guitar and sing 229,5769549970,what does the police do after approaching the car at the start,5769549970_TN_8,point in the car,5769549970,TN,looks at the camera again,point in the car,bend down,squat down,drive away 230,6063052014,why does the man open his mouth wide at the start of the video,6063052014_CW_1,to ask the baby to open,6063052014,CW,excited,to talk to someone,to ask the baby to open,gesture towards camera,introducing boy in yellow 231,5827074668,why is the man smiling at the baby,5827074668_CW_10,find baby cute,5827074668,CW,find baby cute,agreement,victory pose,the baby s face is dirty,likes the person in front 232,4933467831,how does the boy in red cap react after the taller boy stands in front of him,4933467831_TN_9,takes something,4933467831,TN,takes something,rub leg,point and laugh,reaches out his arms,sit down 233,4565373467,why did the shirtless guy on extreme left bend down in the middle,4565373467_CW_1,scoop sand,4565373467,CW,for fun,friends push him,to pick water bottle up,microphone too short,scoop sand 234,3962139149,why does the man in black point to the space between the second and third block before hitting the first block,3962139149_CW_2,asking if blocks will touch,3962139149,CW,put it in a better place,dancing,done with drill,asking if blocks will touch,make space for the children 235,2580512567,what does the man in checkers do after putting his hands in the air at the end,2580512567_TN_8,swing his body,2580512567,TN,play piano,swing his body,started riding again,excited,run beside it 236,8448503290,what does the woman do after lifting up the baby at the end,8448503290_TN_9,put baby on her lap,8448503290,TN,help the baby walk,gently,put baby on her lap,support baby s head with hands,points to the flower 237,2835672361,what does the man with backpack do after running into the water fountains,2835672361_TN_7,places an object on the floor,2835672361,TN,goes back,smell his hand,lifts up his leg,places an object on the floor,climb back onto the boat 238,2824180578,why did the man with sleeve rolled up keep touching his helmet,2824180578_CW_3,to adjust it properly,2824180578,CW,horse riding,protect themselves,climbing rocky mountains,riding jeep,to adjust it properly 239,5597037980,why did the baby look at the floor after picking up the bottle from the floor,5597037980_TN_3,see if milk spill,5597037980,TN,want to lie down,see if milk spill,touch something on the floor,looking for insect on floor,pick bottle up 240,6051291805,how does the baby keep himself safe,6051291805_CH_2,hold the walker,6051291805,CH,harness,hold the walker,soft surface,wrap around blanket,helmet 241,3213208382,how did the baby prevent itself from falling off the sleigh,3213208382_CH_3,held on tightly,3213208382,CH,winter clothing,balance himself,sit between adukts,baby pulled string,held on tightly 242,5498668540,why is the kid sitting on man s lap,5498668540_CW_0,look at the screen together,5498668540,CW,they are on a chairlift,being fed,look at the screen together,looking at cat,look at the television 243,2806691984,what does the man on the other side do after the ball approaches him at the start,2806691984_TN_7,catch ball with hand,2806691984,TN,look at his left,catch ball with hand,tries to bite it,practise swing,throw it 244,7729753698,how does the man ensure that he does not cut the same place every time before the middle,7729753698_CH_4,keep turning the coconut around,7729753698,CH,hold the coconut,put on top of head,keep turning the coconut around,hold on to ropes,laugh 245,6141007489,what does the girl in green pants do after picking up the ball in the middle,6141007489_TN_7,run to the back,6141007489,TN,jump around,stand up,play with the dog,raise her head,run to the back 246,6131518130,what did the girl in yellow do before falling backwards to the pool,6131518130_TP_6,look at water,6131518130,TP,throw and catch towel,hand gesture,pick up toy,touch the chair,look at water 247,6032430171,how did the man in white check that the back is clear when he walks backwards,6032430171_CH_7,looks behind him,6032430171,CH,spins in circles,cross his arms,walking stick,smiling and hand gesture,looks behind him 248,9641305350,what does the boy do after pouring water on his head,9641305350_TN_8,wipe his face,9641305350,TN,smile at camera,wipe his face,eating sandwich,looks to the left,pick up objects and place it in cup 249,6131518130,why were the three girls standing in a line with their backs facing the pool,6131518130_CW_8,getting ready in positions to fall,6131518130,CW,teaching boy to swim,measuring height,watching performance,getting ready in positions to fall,keep it dry 250,4593636503,why did the boy in stripes stand up and walk away after the lady stopped speaking in front of the crowd,4593636503_CW_5,end of her talk,4593636503,CW,end of her talk,let them talk,watching over kid,indicate to take picture there,reached the end point 251,8784416378,what does the first cyclist do after riding on another slope at the start,8784416378_TN_4,look down,8784416378,TN,excited,look down,pull arms in tightly,hold the bicycle,cycle behind 252,13884124143,how did the man in blue encourage the guy on the board when he managed to jump up with his board,13884124143_CH_4,clap hands,13884124143,CH,threw backwards,roll up one side of pants,jumps on each other,clap hands,run with the rope 253,4059247647,how is the baby resting in the video,4059247647_CH_0,lie on the bed,4059247647,CH,in front of him,rock the chair,lie on the bed,on the floor,hold the stairs 254,9234693804,why does the man rotate and move around the room after looking towards the camera,9234693804_CW_4,shaking the baby,9234693804,CW,pull the rope,moving the dog,follow the rhythm,shaking the baby,dancing 255,4443349080,why does the boy run after the ball after kicking the ball,4443349080_CW_2,pick up ball,4443349080,CW,to sit on it,playing fetch,to kick it,pick up ball,dog wants to play with ball 256,2436811248,what does the boy do after looking at the laptop for a while in the middle,2436811248_TN_9,lie down,2436811248,TN,lie down,tries to walk,adjust it,play the drum,excited 257,2662863658,why did the dog playing with the man leave the man after the big dog jumped down from sofa,2662863658_CW_4,play with big dog,2662863658,CW,wants toy,man pat sofa,play with big dog,man raised the board,stop them from fighting 258,3717997473,how did the boy get into the water in the middle of the video,3717997473_CH_7,jumped,3717997473,CH,jumped,hand,swing tail,man carried boy to pool edge,walk into water 259,6129861127,what did the lady on the right do after she moved backwards,6129861127_TN_5,sways and play,6129861127,TN,walk on another direction,smiling,poke her face,sways and play,turned around 260,5866354734,why is the lady wearing an ankle support,5866354734_CW_4,injured ankle,5866354734,CW,for fashion,injured ankle,keep warm,protect sun,hold the rope 261,4501146951,what did the boy in white do after he looked into the camera at first part of video,4501146951_TN_7,run off,4501146951,TN,stand still and talk,eat the cake,pick up microphone,walks down the play area,run off 262,4555837160,why is a bottle of water placed beside the man on stage,4555837160_CW_1,in case thirsty,4555837160,CW,drinking,play his guitar with the beat,talking about the drink,in case thirsty,same team 263,8585296242,how did the lady in black support the boy in blue stripes,8585296242_CH_6,hold front body,8585296242,CH,hold front body,hold him,come close to the baby,facing the baby forward,use food 264,2399794335,why are the people walking briskly on the streets at this time of the day,2399794335_CW_3,snowfall outside,2399794335,CW,prevent falling off,hiking together,snowfall outside,hard to go uphill,enjoy the walk 265,8411367591,why did the man in red bend down at the beginning of the video,8411367591_CW_9,pick up the boy in green,8411367591,CW,pick up toys,performing,play instrument,pick up the boy in green,open bag 266,4542514917,how did the lady try to open the baby s mouth,4542514917_CH_7,hold the cheeks,4542514917,CH,move it towards the baby,raise head,follow her shaking,hold the cheeks,hold it up with her right hand 267,3343411237,why did the boy on the board move his hands in the water after the wave hits him,3343411237_CW_0,paddle,3343411237,CW,to steer in the right direction,realise man behind him,catch boy,paddle,keep balance 268,3134592560,why did the lady squeeze the cream first before letting the boy squeeze it afterwards,3134592560_CW_4,show boy how to squeeze,3134592560,CW,feed the girl,show to someone,show boy how to squeeze,stabilise,cutting it 269,8903248754,what did the boy with green shorts do after touching his face at the beginning of the video,8903248754_TN_8,jump into pool,8903248754,TN,run away with ball,jump into pool,sits down,move puppet around,flips the page 270,3441910437,what does the man do after letting go of the rope,3441910437_TN_9,drop into water,3441910437,TN,chase after the girl,stand on the platform,get off bike,drop into water,turn around 271,2482994684,what does the boy do after receiving the glass at the start,2482994684_TN_2,bring to table,2482994684,TN,feel excited,jump up and down,turns it on,bring to table,touch his hair 272,3389558639,why did the boy in spectacles look at the boy on his right when he is speaking,3389558639_CW_2,communicate with him,3389558639,CW,see if the boy is okay,playing,attracted by cat,communicate with him,support the boy 273,3717997473,how does the girl in yellow cap get out of the swimming pool,3717997473_CH_2,climb,3717997473,CH,climb,holds the girl with his hands,hold her tightly,picks it from the floor,touch it 274,3418738633,what does the woman do after turning her head away,3418738633_TN_8,walk away,3418738633,TN,turned around,walk away,nods her head,smiling,touch her own face 275,3764313862,what does the baby do after reaching the dog,3764313862_TN_7,play with dog,3764313862,TN,chase the dog,play with dog,pull its tail,lick the kid,sniff the babys head 276,5620721035,why is there a hand touch the baby when the baby is climbing the sofa,5620721035_CW_5,stop baby,5620721035,CW,pick baby up,entertain himself,give baby comfort,stop baby,to take the camera 277,4699202703,how does the boy prevent the camera from dropping down accidentally,4699202703_CH_3,hang strap around neck,4699202703,CH,hang strap around neck,place on table,support with tripod,rest hands on sofa,tie a thin rope 278,2471845614,what does the female in wedding dress do after the mc speaks something at the start,2471845614_TN_7,laugh and said something,2471845614,TN,use phone,talk,hold the bottle,laugh and said something,start pushing and wrestling 279,4126506012,why does the boy move his hands in the middle,4126506012_CW_2,playing game,4126506012,CW,playing game,catch coke can,clapping,showing affection,reading the book 280,4163033472,why does the girl in orange put her book aside after reading it for a while at the start of the video,4163033472_CW_2,leave seat to take out shoes,4163033472,CW,show her results,leave seat to take out shoes,engaged in colouring activity,lady asked her to,to get close to baby 281,8287688503,why does the man sitting wipe his eyes at the end of the video,8287688503_CW_2,part of performance,8287688503,CW,moved,irritating food,part of performance,he gets hurt,to stop the child 282,4719167605,what does the lady do after stroking his head,4719167605_TN_1,rubs the baby s neck,4719167605,TN,walk backwards,rubs the baby s neck,put the baby down,stay still for a while,face the man 283,8050371010,how did the man show affection to the girl in the middle of the video,8050371010_CH_8,look down at her,8050371010,CH,look down at her,riding the cycle,with his fingers behind the girl,touch baby face,pretend to punch him 284,5783801873,why did the motorcyclist put his legs on the ground as he approached the bridge,5783801873_CW_8,slow down to cross through the opening,5783801873,CW,pivot on legs,posing,get off bike,replacing tire,slow down to cross through the opening 285,2507835175,what does the baby do after lying for a while at the beginning,2507835175_TN_3,get up,2507835175,TN,sits down,get up,lie on back,drop cloth,clasp his hands together 286,5866354734,how did the girl in orange get the pregnant lady to jump with her,5866354734_CH_3,pull her dress,5866354734,CH,holds lady s hands,push the ski poles backward,pull her dress,whisper to lady,put down the lady s stuff 287,3468317018,why did the woman shake the dog s paws after interacting with the dog,3468317018_CW_6,reward dog,3468317018,CW,spread the water,show love,grooming,shake hands,reward dog 288,6537623889,why did the boy turn his head to his left before hitting the ball,6537623889_CW_8,aim the ball,6537623889,CW,want to throw the bat,boy s turn to play,run for the arrow,aim the ball,chase the boy 289,2806691984,why did the man run forward after hitting the ball near the start,2806691984_CW_5,prepare for another hit,2806691984,CW,to catch ball,play with kid,prepare for another hit,pick up ball,chase the ball 290,3564059530,what does the man do after speaking for a while at the end,3564059530_TN_5,tap card again,3564059530,TN,lower the camera on his shirt,pull up his shirt,jumps to cross the water,tap card again,adjust paper 291,5246766161,why is the girl sitting on floor,5246766161_CW_1,feed the dog,5246766161,CW,feed the dog,hit the cat,to finish ice cream from spoon,mixing ingredients together in bowl,caress dog 292,3400557969,why did the men look back when they communicate in the middle of the waters,3400557969_CW_10,to see impeding waves,3400557969,CW,record from closer angle,move to a gentle place,introduce different buildings,to see impeding waves,check for damage 293,3832090694,why did the man on to elephant hit the elephants head towards the end of the video,3832090694_CW_3,brush dust off,3832090694,CW,posing for a photo,brush dust off,to get cooled with water,trying to engage other people,get that leg off the bicycle 294,8223287911,what did the lady do after the baby sat up on the mat,8223287911_TN_2,carry baby,8223287911,TN,walk away and play,jumps up,put baby on her lap,carry baby,playing with ball 295,3751822104,why does the man in uniform hold out something towards the group of people,3751822104_CW_2,demonstrating,3751822104,CW,uniform costume for performance,sledding,demonstrating,hot,army uniform 296,2526590751,why do the people slowly move inwards the shore while looking at the waves,2526590751_CW_2,for safety,2526590751,CW,enjoying the scenery,show that she is cold,stong wind,finished swimming,for safety 297,3190710669,why are the dogs pushing their bodies against one another when they are running around,3190710669_CW_4,make the other fall,3190710669,CW,fetch ball,playing with snow,make the other fall,sleeping,show excitement 298,5706721105,why are the men wearing same clothes,5706721105_CW_1,uniform costume for performance,5706721105,CW,uniform costume for performance,having a conversation,they are twins,martial art outfit,hiking outfit 299,4740033681,why is the boy sitting in a wooden chair that is different from other people,4740033681_CW_7,chair for kids,4740033681,CW,playing guitar,chair for kids,doing some work,having conversation after eating,wanted to read the book 300,3603780993,how does the lady prevent the dog from biting away the toy at the end of the video,3603780993_CH_9,pulls it away,3603780993,CH,tear off the hat,pulls it away,by reading book,bend down,pat the dog 301,5228892128,why is the lady moving her hands while speaking,5228892128_CW_2,illustrate her points better,5228892128,CW,talking to the crowd,pretend to hit the drum,to explain the man well,to get the baby s attention,illustrate her points better 302,7625772278,why are there pieces of white things falling from the sky,7625772278_CW_0,hail,7625772278,CW,protect from sun,stylish,show that they are domestic,protect eyes in sunny day,hail 303,5460608032,how are the people moving from place to place in the video,5460608032_CH_4,cycling,5460608032,CH,jumping,cycling,walking,rolling,dragging their chairs 304,2833808682,why did the baby put the yellow strap on her arm,2833808682_CW_7,try to carry bag,2833808682,CW,to support the baby,to caution the wet floor,try pull baby to sit up,support the baby s walking,try to carry bag 305,4501146951,what did the boy in white do after the boy in grey first ran off,4501146951_TN_6,run off,4501146951,TN,run off,follow boy,move to other side of chair,get up,fell over 306,2824180578,why are the people wearing the same outfit,2824180578_CW_0,uniform,2824180578,CW,rugby team,uniform,band members,common costume for performance,going on a trip 307,3246498270,why did the baby look back while playing with the bottle,3246498270_CW_1,to see if someone was there,3246498270,CW,to pick bottle up,hand too small,for fun,to see if someone was there,intrigued by it 308,4451729145,what does the boy in brown do after approaching the black cat on the ground at the start,4451729145_TN_3,move his hand to feed the cat,4451729145,TN,sitting,runs towards the boy in grey,take it away,run away,move his hand to feed the cat 309,11866348213,what did the boy do after he ran back to the starting point near the end,11866348213_TN_3,walk back to room,11866348213,TN,jump,comes down,follow baby,walk back to room,swings again 310,10602702615,what does the girl in pink do before blowing the candles,10602702615_TP_7,look at boy,10602702615,TP,look at boy,smile,watch,held her arm,waves 311,3120284159,what does the lady in red do after staying still for a while at the start,3120284159_TN_0,put her hand up,3120284159,TN,look down at baby,she talks to the other people,move body,rolls on the ground,put her hand up 312,5465138661,what did the girl do after she kneeled down beside the baby,5465138661_TN_5,plays with the baby,5465138661,TN,touches his head,kiss baby cheeks,rubs her mouth,plays with the baby,hold the wall 313,10087471526,why did the boy in yellow pants bend forward in the middle of the video,10087471526_CW_2,play with the sand,10087471526,CW,wanted to lie down,curious,let the girl feed him,play with the sand,walk away 314,6063052014,why did the man scoop the side of the baby s mouth with the spoon after he feeds a spoon,6063052014_CW_8,to scoop the excess food,6063052014,CW,keep it in her mouth,how to eat by itself,wipe her mouth,wants to hit spoon,to scoop the excess food 315,3751822104,why did the woman in brown walk away after listening to the man in uniform for a while,3751822104_CW_4,distracted,3751822104,CW,distracted,pick up cups,take a gift,finished playing,woman in black blocking her way 316,4698772089,why is the person feeding the cat with food,4698772089_CW_2,feeding time,4698772089,CW,food is expiring,cat wants to sleep,feeding time,person was bored,person wanted to rest 317,4571602887,what does the grey dog do after the black dog leaves at the end,4571602887_TN_9,sniff the remaining piece,4571602887,TN,sniff the remaining piece,walks away,walk away,keeps sitting,chase 318,3453984843,why is the man in black riding the motorcycle in a field,3453984843_CW_3,a lot of space to ride,3453984843,CW,protect head,shot the gun,a lot of space to ride,stopped by policeman,practicing 319,3018394896,why are the 3 ladies holding hands at the start of the video,3018394896_CW_0,practise dance routine,3018394896,CW,playing with toys,tell baby to follow,encourage her to join,observing,practise dance routine 320,8287688503,why does the woman in purple socks throw a ball at the man sitting,8287688503_CW_0,part of performance,8287688503,CW,play with him,part of performance,for fun,play with his baby,want him to get away 321,4444271481,how did the men managed to climb up the waterfall,4444271481_CH_2,climb with rope supporting,4444271481,CH,paddle,using the length of the waves,on the sled,climb with rope supporting,motorcycles 322,3597467356,why was the boy in white shifted backwards in the middle of the video,3597467356_CW_11,pushed by waves,3597467356,CW,take video from different angle,pushed by waves,lost balance,look at something,unable to walk properly 323,8692968296,why is the lips of the man moving in front of the microphone,8692968296_CW_8,singing,8692968296,CW,excited,amplify their voice,singing,engage audience,to project his voice to everyone 324,2833808682,how did the baby try to carry the bag after she picked it up from the box,2833808682_CH_5,put her arm in the strap,2833808682,CH,put his arms up,push body forward and backwards,stretch her arm,put her arm in the strap,hold its body and legs 325,5408572348,what does the baby in white do after playing with the ladle in the middle,5408572348_TN_8,lets it go,5408572348,TN,crawl over,hit the wood,lets it go,look at the camera,to walk the horse 326,4004287747,why did the woman hold a knife in her right hand,4004287747_CW_9,to cut cake,4004287747,CW,cut fruit,takes another piece of dough,grab and eat it,performance,to cut cake 327,2547045867,what does the man in grey do after walking from the back of the car to the front,2547045867_TN_7,use hand gestures direct,2547045867,TN,walk down stairs,use hand gestures direct,watch,bend down,look at the presenters 328,3120284159,why does the woman in red raise her hands at the start,3120284159_CW_9,excited,3120284159,CW,put glass cups away,to catch other girls,expressing her emotions,excited,admire the view 329,3564576864,how did the white hair lady show that she is listening to the man in blue as he talks,3564576864_CH_8,look at him,3564576864,CH,blow kisses,clap together,rub the man s back,look at him,hold the man s hand 330,4681488749,what did the man in spectacles do after he pointed a finger up,4681488749_TN_5,acting something,4681488749,TN,talk to man in black,kiss baby,wave,acting something,continue playing guitar 331,8530515192,what does the person in dark blue do after the girl in blue blows the candle in front of her,8530515192_TN_10,lights the other cake,8530515192,TN,lights the other cake,introduce how to make it,put flower back into girl s hands,take a big breath of air,hold cake 332,3243801466,why is the girl lying on man s lap,3243801466_CW_2,love her father,3243801466,CW,love her father,chatting,playing,hygiene,being wiped by an adult 333,9393719235,why is there a group of people sitting and standing in a circle,9393719235_CW_0,working on something,9393719235,CW,enjoying some wine and talk,working on something,vistors seeing zoo exhibition,group discussion,watching the women in black 334,6055990354,how is the girl protecting herself from head injury,6055990354_CH_6,wear helmet,6055990354,CH,follow a routine,wear helmet,sit on couch,remote control,hold onto leash 335,8395915736,why did the nurse hold onto the baby s hands while cleaning his back,8395915736_CW_1,make body move to face baby s back,8395915736,CW,put on oxygen mask,prevent getting wet,make body move to face baby s back,dry his hands,pat baby to sit back up 336,4699202703,why does the boy look down at the end,4699202703_CW_8,meddle with camera,4699202703,CW,check the video,put camera on floor,meddle with camera,take picture of dog,upset 337,2830844169,how did the boy shield his head from the sun,2830844169_CH_0,wear hat,2830844169,CH,shade and cap,wear yellow hat,cap and sunglasses,beanie,wear hat 338,5596610883,why are the man in white and lady looking at the box for a long time,5596610883_CW_0,reading the words,5596610883,CW,unsure what to do,to see its contents,watching the man,woman talking to him,reading the words 339,8634740778,why did the brown dog come back and nudge the white dog after some time,8634740778_CW_2,play with it,8634740778,CW,chase the smaller dog,make space for the dog,want to drink water,catch the ball,play with it 340,3418738633,why do the men in the kitchen speak to each other with so many hand gestures,3418738633_CW_2,emotional,3418738633,CW,blow nose,show gesture,suggest taking the food away,explaining to the camera,emotional 341,2773995762,how are the fish moving in the water,2773995762_CH_1,swim,2773995762,CH,swim,use fishing rod,on the boat,left to right,pulled by another boat 342,6513201899,why is the baby looking at the lady in green,6513201899_CW_4,listening to her,6513201899,CW,because he is scolding her,she is hitting him,talking,sing,listening to her 343,3972321905,what did the man do after the car drove past them at first,3972321905_TN_7,waves,3972321905,TN,walk past it,waves,pick up inflator,gets off his truck,white 344,8530515192,what does the girl in blue do after the man in jeans squat down,8530515192_TN_8,eskimo kiss,8530515192,TN,puts him down,observe her,eskimo kiss,mopping the floor,try to get higher 345,4571602887,why does the black dog walk away after picking up the toy with its mouth,4571602887_CW_3,prevent the other dog from robbing,4571602887,CW,it was chased,point to something,prevent the other dog from robbing,play with it,curious 346,10602702615,why does the girl in pink jump up and down near the middle of the video,10602702615_CW_8,excited,10602702615,CW,pedalling,to get the mickey s attention,excited,pick something up,happy playing 347,3347998465,why did the girl in pink pushed the girl in white at the beginning of the video,3347998465_CW_8,communicate,3347998465,CW,communicate,to push her,holding dog leash,pose for camera,soothe baby 348,2436811248,why is the baby swaying left and right while looking at the keyboard,2436811248_CW_4,uncertain what to do,2436811248,CW,uncertain what to do,show child something,happy,playing it,enjoying the music 349,4681488749,why does the man in spectacles speak with a lot of hand gesture throughout the video,4681488749_CW_0,expressive,4681488749,CW,part of the dance routine,holding the microphone,make it more fun,engage the audience,expressive 350,9921053695,why did the girl in blue raise up her phone and point it at the two girls drinking from bottle,9921053695_CW_1,filming her,9921053695,CW,slap the lady in blue s butt,filming her,encourage the girl,drinking,wave the other hand 351,4400119620,why does the man wearing specs hold a piece of paper towards the end,4400119620_CW_4,giving speech,4400119620,CW,open parachute,was wearing a suit,giving speech,write on board,note down the points 352,2774585614,what does the girl do at the end after putting her hands on the glass,2774585614_TN_9,stare at the fishes,2774585614,TN,rolls on the ground,check documents,stare at the fishes,give towel to the lady,give box to man 353,3832090694,how does the man stay balanced on the elephant,3832090694_CH_4,sit on chair,3832090694,CH,blanket,sit on chair,the trainer signal,walk,caress it 354,3603780993,what does the dog do after approaching the plush in the middle of the video,3603780993_TN_8,moves it around,3603780993,TN,touch his arm,go back,caress dog,moves it around,follow boy 355,12015983824,why did the child holding on the yellow clay move to the table next to him after squeezing the clay,12015983824_CW_4,talk to friends,12015983824,CW,let the red toy hit,play with it,prepare the ball,talk to friends,encourgement 356,4822747943,what does the lady in black do after lighting the candle,4822747943_TN_2,put lighter down,4822747943,TN,sit down,lift up her leg,put lighter down,smiles and stares,watch 357,3555802519,how did the baby react to the phone shown to him in the middle,3555802519_CH_5,look at the screen,3555802519,CH,look at the screen,push the phone away,pull the phone,speak to the phone,hit the phone 358,4059247647,how did the toy got closer to the baby at the end of the video,4059247647_CH_2,baby pulled it,4059247647,CH,rub his head against baby,baby pulled it,lady pulles closer,crawl up,on lady legs 359,11166208165,why did the child lie on the back on the lady,11166208165_CW_0,comfortable,11166208165,CW,comfortable,sleeping,play with dog,unwrap the presents,talk to her 360,3522761604,why did the man in grey clap his hands,3522761604_CW_6,baby blow candle out,3522761604,CW,man call him,baby blow candle out,making music,demonstrate movement,excited 361,8364779007,why is the boy in red smiling at the end of the video,8364779007_CW_4,find it funny to throw snowballs,8364779007,CW,find it funny to throw snowballs,looking down at snowman,happy to be done,engage girl with the music,happy to take photo 362,5770742977,why did the boys hold the side of the float before standing up,5770742977_CW_1,support himself,5770742977,CW,preparing jumping water,to help man in white,support himself,drag float away,take surfboard from the man 363,3385351378,why did the man in blue step in to move the vacuum machine,3385351378_CW_3,make the kid hold cleaner,3385351378,CW,hand gesture,make the kid hold cleaner,make cat comfortable with water,push it,support the boy in white 364,3555283857,why do the girls look down as they sing,3555283857_CW_0,refer to song lyrics,3555283857,CW,play with her phone,refer to song lyrics,keep her engaged,tie shoelace,to dance 365,5769549970,what does the policeman do after knocking the door with his baton at the start,5769549970_TN_0,speaking and pointing at the driver,5769549970,TN,look at the people,catch it back,clap,speaking and pointing at the driver,stop the driver 366,4330113365,why are the two men looking down towards the music stand while playing their respective instrument,4330113365_CW_0,referring to scoresheet,4330113365,CW,fun,referring to scoresheet,main singer,play the keys,interact with one another 367,2482994684,why did the boy lift up the towel near the end,2482994684_CW_8,put on the plate,2482994684,CW,pick up coat,put on the plate,lose balance,to remove the toy,wash his hands 368,10626519064,what did the girl in pink do after jumping up and down near the middle,10626519064_TN_8,run to the back,10626519064,TN,fight with boy in balck,pick up pink toy,singing,run to the back,curious 369,9947344865,how does the bus navigate around the trams,9947344865_CH_3,turns left,9947344865,CH,show where to go,in a straight line,turns left,on tracks,holds the pole 370,3136263720,how did the man play with the baby,3136263720_CH_6,move baby forward and backward,3136263720,CH,carry baby around,kiss to the baby,use legs to move forward,on lady s lap,move baby forward and backward 371,4531056940,what does the man in balck shirt react after the man in jacket speak to him,4531056940_TN_6,nodded and gave him a hi-five,4531056940,TN,happy,wave hands around,focused,turn and make hand gestures,nodded and gave him a hi-five 372,4004287747,why did the man throw his hands in the air after the woman cut the cake,4004287747_CW_3,show excitement,4004287747,CW,put it aside,celebrate his birthday,show excitement,blow the candle,explaining to the camera 373,5358657883,why is the girl in white smiling in the middle of the video,5358657883_CW_1,happy,5358657883,CW,happy,cleaning him,dance,balancing the item,make balloon fly 374,3191035895,why is baby biting his finger in the middle,3191035895_CW_2,suck finger,3191035895,CW,chew,shy,lick lady s hand,pick up toy,suck finger 375,6227157477,how did the soldiers turn around near the end of the video,6227157477_CH_8,swing their legs,6227157477,CH,slowly while sniffing,swing their legs,take from dog s mouth,hands,crawl 376,3252591972,why did the man move his arms up and down on the machine,3252591972_CW_3,get the water out,3252591972,CW,playing drum,emphasise,pick up something,counting,get the water out 377,9397185434,why are there many people pushing the log together,9397185434_CW_6,log is too heavy,9397185434,CW,cold outside,working,keep warm,trekking,log is too heavy 378,2832642923,why is the girl in pink curiously watching the baby,2832642923_CW_1,play with the baby,2832642923,CW,stop the baby,play with the baby,play the game,baby is excited and playing,watching to ensure safety 379,3361754590,why does the girl in pink look upwards towards the end,3361754590_CW_2,frustrated,3361754590,CW,frustrated,follow girl to where she goes,hide from the baby,make face expression,make others notice that 380,5379320378,why are the two people standing at the back of the stage,5379320378_CW_9,not their turn to perform,5379320378,CW,not their turn to perform,eating,part of performance,making an interview,control the music 381,5729533897,why does the lady point her hand towards the girl with sleeveless dress in between,5729533897_CW_3,signal for the girl to talk,5729533897,CW,signal girl to start running,assist the girl in swimming,show others her dress,look her plait,signal for the girl to talk 382,5298163149,why did the boy in red raise his hands after the middle part of the video,5298163149_CW_6,show off spoon,5298163149,CW,push away toy,touch the boy in stripes,show off spoon,hand gesture for cutting,to drink water 383,6070985304,why did the man touch his hair after coming out from the pool,6070985304_CW_2,drying hair,6070985304,CW,to create bubbles,drying hair,style hair,itchy head,hurt his head 384,2401981865,why did the man pretend to bite the baby,2401981865_CW_0,make baby happy,2401981865,CW,make baby happy,move to another place,boy did not liked it,to start the sled,wait for the fight to start 385,2822875146,why did the man fall after some time balancing on the water,2822875146_CW_2,lost balance,2822875146,CW,tripped,waves are big,attack by the other guy,lost balance,scoop water 386,3503206487,why is the man wearing sunglasses,3503206487_CW_2,it is sunny,3503206487,CW,practice shooting,check audio,hot,it is sunny,poor eyesight 387,3339364524,why are the grey and brown dogs sitting so obediently at the start of the video,3339364524_CW_1,waiting for treats,3339364524,CW,get attention,wants more food,to drink water,wants to play catch,waiting for treats 388,11166208165,why did the lady mimick the child s expression when the boy opened his mouth in the video,11166208165_CW_6,play with child,11166208165,CW,play with child,lady asked for it,walk towards dog,talk to him,lose interest in lady 389,13983574774,why does the boy nods head near the end,13983574774_CW_2,replying to someone,13983574774,CW,reading from paper,look at the cameraman,stop playing,replying to someone,let baby explore inside again 390,5617607038,why is the person moving his hand around the baby s back,5617607038_CW_7,massage baby,5617607038,CW,dance,reach for toy,to wipe baby after feeding him,massage baby,wants to hold baby 391,9038264963,how did the man in white react after the man in green starts reading,9038264963_TN_6,turns to look at him,9038264963,TN,drink from cup,turns to look at him,load the gun,stand around awkwardly,cross his arms and look in front 392,5443388088,what does the man in spectacles do after passing the book to the man in grey hoodie in the middle,5443388088_TN_5,talk to him,5443388088,TN,squat down,performing,smile,laughs,talk to him 393,6129861127,why was there a strap hung around the blonde haired woman,6129861127_CW_1,support the guitar,6129861127,CW,support her camera,hold her card,hold her whistle,support her back,support the guitar 394,2885656050,why did the man bend down again after throwing the sleeve away,2885656050_CW_5,rub bat,2885656050,CW,boy is nascent and learning,rub bat,show to boy,talk to baby,to move away from the lady 395,3350647572,why is the girl turning around in the middle of the video,3350647572_CW_2,dancing,3350647572,CW,dancing,curious,for fun,lose interest in lady,look at screen 396,2962441847,what did the man with grey scarf do after pushing the man in red onto the sofa,2962441847_TN_5,stand at the side,2962441847,TN,stand at the side,flipping pages,sit up,stand on sofa,walk to sofa 397,3264772244,why is the girl moving her legs on the bicycle,3264772244_CW_1,pedal bicycle to move forward,3264772244,CW,pedal bicycle to move forward,waiting to start cycling challenge,to swing up and down,stay close to the boy,to fly 398,11973479386,what does the man do after pressing on the launchpad a few times with his left hand at the start,11973479386_TN_2,adjust the black wire,11973479386,TN,put hands on screen and talk,move forwards,touch object hanging behind pants,adjust the black wire,back pocket 399,13643603625,why is the boy in stripes holding onto a stick,13643603625_CW_3,prop for acting,13643603625,CW,playing the drums,it is sunny,prop for acting,playing,hit the drum set 400,4338260909,why did the man hold the cup up at the end,4338260909_CW_4,drink from it,4338260909,CW,bring to table,cat drink water,drink from it,feel thirsty,wants to wet his hand 401,5783801873,why did the motorcyclist slow down before moving into the bridge,5783801873_CW_0,small openings,5783801873,CW,lost balance,small openings,have to turn a corner,ride ending,careful of animal crossing 402,5777926447,why is the man with sunglasses on head moving his arm near the end of the video,5777926447_CW_7,gesturing something,5777926447,CW,pick up the ball,maintain balance,gesturing something,look at the dogs,pose for camera 403,4437974380,how is the baby kept warm?,4437974380_CH_0,wrapped around towel,4437974380,CH,wrapped around towel,wear thick clothes,wear gloves,drink hot water,hot shower 404,6470188301,what does the boy do after falling down the first time,6470188301_TN_1,hold railing of bed,6470188301,TN,hold railing of bed,jump on bed,get down bed,stand up,moves his head 405,5511691883,why is the man in red holding a hand of woman in black while walking,5511691883_CW_4,romantic relationship,5511691883,CW,take photo,space there for him to stand,romantic relationship,posing for a candid picture,waiting for the camera 406,10626519064,what did the boy in blue do after raising his hands in the air when the lady in black stood up the second time,10626519064_TN_9,walk closer to smoke,10626519064,TN,follow after them,followed him,to goy in grey s side,move balloons towards him,walk closer to smoke 407,3225620425,why are the men dressed in long thick sleeves,3225620425_CW_0,it is cold outside,3225620425,CW,protect legs and head,protection,protect from sunburnt,sledding,it is cold outside 408,4360431067,why is the man in white wearing a hat,4360431067_CW_6,chef,4360431067,CW,chef,filming,protect from sun,assist the man in red landing,protect eyes in sunny day 409,7016497201,what does the man do after putting the phone far away from the baby,7016497201_TN_8,sit behind,7016497201,TN,chase,sit behind,makes faces,unlock door,touch his face with the hand 410,7161607459,why did the boy wearing black pass the camera to the cameraman,7161607459_CW_0,cameraman want to take self with it,7161607459,CW,cameraman want to take self with it,to see how to move the rod,talking,bored,oversee 411,10602702615,how does the lady in striped signal for the boy in blue to come closer,10602702615_CH_6,stretch out hand,10602702615,CH,tap her,stretch out hand,raise her glass and smile,use food,hold front body 412,6346290362,why did the green bottle baby walk towards the stroller after letting go of the woman s hand,6346290362_CW_5,put bottle on it,6346290362,CW,pull catapult,got distracted,to rescue toddler who fell,put bottle on it,unclear 413,3717997473,why did the girl put her hand on the boy s head,3717997473_CW_0,playing with the boy,3717997473,CW,spin around,place toy in a better way,push baby back,playing with the boy,protect baby 414,8442904731,why did the boy in blue sit on the floor when the man in vest tried to pull him,8442904731_CW_6,he wanted to escape,8442904731,CW,he wanted to escape,he is tired,trying to get up,they are playing,he fell 415,3555802519,why did the person put her hand on the baby s stomach,3555802519_CW_6,to support the baby,3555802519,CW,copying the adult,enjoying the touch,to support the baby,push baby back,drinking milk 416,8442904731,why is there a pillow on the floor where the man wearing a cap hold the boy in grey sits,8442904731_CW_4,to cushion the boy s fall,8442904731,CW,for baby to play,to cushion the boy s fall,play with the boy,playing by rolling around,for warm 417,4347565343,what did the man in brown do after he lifted his instrument up,4347565343_TN_8,touch his ears,4347565343,TN,take the pipe,make two thumbs up,touch his ears,continue smoking,drop it 418,6141007489,what does the girl in green pants do after running close to the ball at the start,6141007489_TN_5,pick ball up,6141007489,TN,play with ball,adjust her sleeves,lie on the ground,walk away,pick ball up 419,3265024425,why are the lions standing near the fence,3265024425_CW_0,getting attracted by people,3265024425,CW,running away,getting attracted by people,sniffing around,watching the show,resting 420,2962441847,how did the man in red interact with the thing that he is holding,2962441847_CH_2,throw it up and down,2962441847,CH,smile with teeth,stand behind the baby,show to baby,lay it down,throw it up and down 421,3418738633,why does the woman in spectacles put her hand to her mouth at the beginning of the video,3418738633_CW_0,cover mouth,3418738633,CW,indicating to the camera man,talking to boy,protection from sun,cover mouth,performance gesture 422,11772124873,why did the man keep hitting on the object on his lap,11772124873_CW_9,to produce music,11772124873,CW,to produce music,to reach the top,parrot entered the shirt,play piano,eating on the table 423,8323333673,what does the girl do after looking at one page for a while,8323333673_TN_6,flip pages,8323333673,TN,smiles,goes upstairs,point to her left,flip pages,stands up 424,4192027724,why does the kid in plain bib starts crying,4192027724_CW_4,other kid starts snatching carton,4192027724,CW,other kid starts snatching carton,retrieve toys,inexperience in eating,he wanted it,man took away his toy 425,4565373467,what does the shirtless guy on the extreme left do after standing up straight again at the end,4565373467_TN_3,move backwards,4565373467,TN,stretch his hands,bend down,move backwards,pray and bow,pass paper to woman 426,5182578763,why did the man in black kept touching the machine,5182578763_CW_7,adjust them,5182578763,CW,hand gesture,focusing on computer,taking photos,shield from sunlight,adjust them 427,7973772218,how did the boy climb up at the end of the video,7973772218_CH_11,climb from the chair,7973772218,CH,caress his head,pat the girl s bottom,climb from the chair,crawl,holds the railing 428,8702139498,why was the man with helmet putting his hands up to his face at the start,8702139498_CW_9,to give the go sign,8702139498,CW,preparing him for sports activity,skateboarding,road repairing,not ready to go,to give the go sign 429,4571644750,how does the boy in red move the vehicle around,4571644750_CH_6,pedaling,4571644750,CH,push it,pedaling,hug it,ride the line,using a remote 430,6896590813,why are the children following the actions of the lady,6896590813_CW_6,learning something from lady,6896590813,CW,performing at an event,practising singing,learning something from lady,prepare for dance competition,looking for something 431,3511344402,why does the lady put her hand out after watching the babies play for a while,3511344402_CW_3,guide them,3511344402,CW,want to blow out candles,attract the baby,guide them,stop the baby,play with it 432,8095838321,why did the boy rub his hands together after he stood up from the ground,8095838321_CW_4,swipe off dirt,8095838321,CW,swipe off dirt,pressed a button to activate,to balance,pass kite to boy,moving the baby forward 433,2973658146,why does the boy put his hands again in the glass of water,2973658146_CW_2,make his hand wet,2973658146,CW,swimming,have a bath,make his hand wet,signal for wait up,feel the music 434,8686073700,what does the taller man do after the shorter man turns back at the end,8686073700_TN_9,take the gun,8686073700,TN,take the gun,swing knife around,follow and stop,use hand gesture,slings his bag across his shoulder 435,7973772218,why is the girl in orange holding the handle at the start and middle of the video,7973772218_CW_0,support,7973772218,CW,support,pose for the camera,excited to play,copying the boy on her lap,to talk loudler 436,13842949604,what did the woman do after the man picked up things from the ground at the start of the video,13842949604_TN_8,pick things up too,13842949604,TN,pick things up too,put the box aside,touch ball,turned behind,step on the books and dance 437,5635020430,why is the man in yellow and the man in black swinging the topless man at the start of the video,5635020430_CW_1,to throw him,5635020430,CW,playing around,to throw him,posing,practice boxing,get food 438,3964794227,why did the man signal for the baby towards him,3964794227_CW_2,continue to swim,3964794227,CW,continue to swim,to kiss them,to rock baby to sleep,make the baby calm,for support 439,2643443060,why is the boy sitting in a special chair,2643443060_CW_2,support him and prevent falling out,2643443060,CW,to eat food,support,baby chair,support him and prevent falling out,feel confortable 440,10516079413,what does the baby do after putting his circle toy down at the start,10516079413_TN_7,take the doll,10516079413,TN,touch the screen,take the doll,hit the toy,dances,shake his body 441,4628526478,why is the horse moving slowly across the snow field,4628526478_CW_1,carrying a heavy load,4628526478,CW,snowed a lot,waiting for its partners,hiking,on a ride,carrying a heavy load 442,7093500213,how did the man in orange feel after playing game with the kimono lady,7093500213_TN_0,surprised,7093500213,TN,raise hands in the air,surprised,step forward to take a ball,walk same direction as woman,roll around 443,6971785627,why did the white shirt man at the back seat hold onto the seat of the front seat while looking at the cow,6971785627_CW_2,talking to man in front,6971785627,CW,wanted to play with him,talking to man in front,wanted to look at cows,maintain balance,stabilise himself 444,6141007489,why does the lady in green turn back at the end,6141007489_CW_10,watch for girl in pink,6141007489,CW,take book to read,watch for girl in pink,take something,listening to camera man,to remove things from the table 445,5609003294,why is the dog standing on two legs,5609003294_CW_5,jump and fight,5609003294,CW,getting attracted by people,jump and fight,dance performance,wants camera s attention,begging for food 446,8521113411,why is the boy in blue folding his shirt,8521113411_CW_1,nervous,8521113411,CW,take out food,listening to him,nervous,oversee and coaches,training 447,8323333673,what does the girl do after flipping through a few pages,8323333673_TN_7,stop and look,8323333673,TN,hands over the remote,walks away,stop and look,grab the camera,said something 448,8313516540,what did the man do after grabbing a box from the table near the end,8313516540_TN_0,open box,8313516540,TN,throwing out contents of the box,looks confused,read from it,open box,trying to kick the box 449,7619429394,why is the smaller horse running around,7619429394_CW_1,chase big horse,7619429394,CW,trained to run,playing with each other,chase big horse,guide the horse,follow the ball 450,2547045867,why does the driver of the grey car find it difficult to move the car,2547045867_CW_3,cars parked very close,2547045867,CW,cars parked very close,deers in front,turn the scooter around,road slippery,fixing the car 451,3555283857,what does the girl with spectacles do before putting the microphone back on the stand,3555283857_TP_6,speak to the audience,3555283857,TP,laugh,speak to the audience,flip the page,move wire,hug the other girl 452,2581312980,what was the woman doing after she spoke in the middle of video,2581312980_TN_2,scratch her head,2581312980,TN,scratch her head,nodding,answer the phone,say something,making facial expressions 453,4210971212,why was the toy car able to move,4210971212_CW_7,remote controlled,4210971212,CW,playing and riding with it,baby pushes it,controlled by the man,attract the dog,remote controlled 454,2432458239,how did the lady transport the crab back to the waters,2432458239_CH_5,walk towards sea with plank,2432458239,CH,legs on the floor,hold hand up and guide,touch it,walk towards sea with plank,grad with her hands 455,2436811248,what does the man do after the boy closes the laptop at the start,2436811248_TN_6,open laptop,2436811248,TN,look at screen,push bottles in front,take taco up,put a purple bowl inside,open laptop 456,5765249625,why did the boy pull his shirt in the middle of the video,5765249625_CW_3,fidgeting,5765249625,CW,throw the ball,want to catch ball,performance,fidgeting,let the girl feed him 457,10602702615,how does the boy in blue react after the girl in pink starts blowing,10602702615_TN_9,blow out candles,10602702615,TN,raised arm and pointed at flower,waved his hands,blow out candles,hi-five with girl in yellow,get on man too 458,5635020430,what does the shirtless man do after sitting back down,5635020430_TN_9,lean back and play with water,5635020430,TN,lean back and play with water,use phone,snip of some hair,turn to his right,touch the ball 459,3348930430,why does the man with the yellow headgear fall after jumping on the snow,3348930430_CW_3,slipped,3348930430,CW,flatten snow,slipped,for safety,playing in snow,make musical sounds 460,9988805544,why did the lady stretched her hands out,9988805544_CW_7,driving,9988805544,CW,control dogs,to rhythm of music,stablise,cycling,driving 461,5706721105,what did the man on the right do after he pointed near the middle,5706721105_TN_6,put hand on stomach,5706721105,TN,raise more fingers,walks towards the camera,put hand on stomach,turn around,take out goggles 462,6380666279,why did the black jacket man constantly look away while he is talking,6380666279_CW_0,thinking,6380666279,CW,someone asked him to do that,laughing,distracted by performance,shy,thinking 463,2415116705,why are the man and woman sitting on the left putting their hands in the bucket at the start of the video,2415116705_CW_0,wash them,2415116705,CW,look at the person holding camera,take balloon away from baby,wash them,fell down,crying 464,2824180578,why is the man with orange cap carrying a camera,2824180578_CW_5,filming,2824180578,CW,to video speech,filming,playing with it,to video the performance,oversee the process 465,8585296242,why are the ladies looking at the boy in white stripes at the beginning of the video,8585296242_CW_8,observe boy s actions,8585296242,CW,to pour into funnel,wipe the man s mouth,talk to lady,observe boy s actions,dancing 466,6157608500,why does the baby wear thick clothings indoors,6157608500_CW_0,cold,6157608500,CW,for girl to play,keep warm,cold,having a meeting,sunny weather 467,3191035895,how does the adult physically interact with the baby,3191035895_CH_9,tickle baby,3191035895,CH,dad carry baby s body upright,tickle baby,carried by lady,lady hold baby in standing position,hold baby with his hands 468,10087471526,why did the boy in yellow pants turned around after he dig a hole with his hands,10087471526_CW_8,put his legs inside the hole,10087471526,CW,wanted to open it,give box to lady in yellow,put his legs inside the hole,show to the cameraman,play with snow 469,4360431067,why did the man in blue hold the tip of the knife with his right hand while dicing the vegetables,4360431067_CW_1,give more support,4360431067,CW,watching,give more support,ask for permission,pose for camera,ready to eat 470,4740033681,why is the woman in tennis cap moving her hands near the start of video,4740033681_CW_3,hand gesture,4740033681,CW,holding dog leash,talking,hand gesture,take something from it,posing for camera 471,3784430367,what does the girl do after sitting up and kneeling on the chair at the start,3784430367_TN_3,touch glasses,3784430367,TN,watching the kids play,get up,puts her finger in mouth,touch glasses,look at baby 472,8287688503,how does the man sitting move his chair in the middle of the video,8287688503_CH_1,rock his chair,8287688503,CH,drop from slides,put legs on the table,rock his chair,leans back,remote control 473,8903248754,what did the boy with green shorts do after he jumped into the water,8903248754_TN_9,swim,8903248754,TN,pick up the ball,swim,climb back onto the boat,start blowing at candle,walk away 474,3277631367,what did the man with spectacles do after he lifted up his hand in the start of the video,3277631367_TN_8,move his hand horizontally,3277631367,TN,take picture with camera,into his computer,look at screen,moves his hand away,move his hand horizontally 475,5765249625,why is the boy moving his hands and body throughout the video,5765249625_CW_6,fidgeting,5765249625,CW,fidgeting,gesturing to cameraman,dancing,get food,perform 476,4063352694,what does the girl in pink do after the lady in black stretched her hands out with the toy,4063352694_TN_0,run towards the lady in black,4063352694,TN,hug girl in pink,walk away,make more bubbles,run towards the lady in black,woke up from sleep 477,4228152919,how does the man in black get the child s attention,4228152919_CH_1,show him something,4228152919,CH,hold her sides,carried by man in grey,show him something,hand gestures,sit and play with other boy 478,3666012638,why does the man look downwards halfway through,3666012638_CW_9,to get something,3666012638,CW,look at the book,ensure safety,going with rhythm,to get something,wave pushed him 479,4687190278,why did the lady put the boy down on the floor,4687190278_CW_1,let boy stand himself,4687190278,CW,playing with toy,let boy stand himself,unwrapping the present,learn dancing,exploring movement 480,5358657883,how does the blonde girl show affection towards the people in costume,5358657883_CH_9,hug them,5358657883,CH,talks to baby,hug them,touch her face,jump,roll around 481,3120284159,how does the woman in black ensure the safety of the woman in red,3120284159_CH_2,hold onto leash,3120284159,CH,hold onto leash,bend down,hand gestures,follow the horse,running 482,3348930430,why is the man with yellow headgear shaking his body at the end of the video,3348930430_CW_10,shaking off snow,3348930430,CW,walk away,shaking off snow,directing boy,enter the box,take video from different angle 483,6225185844,what does the lady do after she raised her index finger,6225185844_TN_8,take her hand on the guitar,6225185844,TN,blow candles,point at the music script,buy movie tickets,swings the baby,take her hand on the guitar 484,3718722735,why is the pink shirt girl looking down at the waters as she walks,3718722735_CW_4,careful not to fall,3718722735,CW,take photos,attracted towards the toy,to drink water,careful not to fall,prevent her from coming 485,13256002144,why are the people moving in the same way and directions,13256002144_CW_7,one direction only,13256002144,CW,engrossed in music,uniform,one direction only,dancing,dancing with the baby 486,6990172057,why are the children wearing helmets,6990172057_CW_1,rock climbing,6990172057,CW,skiing,rock climbing,rugby player,play baseball,sledding 487,5463556386,why did the guy move his head while playing the guitar,5463556386_CW_8,engrossed in performance,5463556386,CW,restless,strumming the guitar,playing different roles,engrossed in performance,read book 488,2830844169,why was the boy raising his hands throughout the video,2830844169_CW_2,tilt bottle to drink,2830844169,CW,to see how to move the rod,check if there s any milk left,part of the dance routine,holding something in hands,tilt bottle to drink 489,4688033528,why is the man in blue looking at the paper so closely,4688033528_CW_4,check a picture on it,4688033528,CW,sharing with his friends,listening to him,spectate his practice,show something,check a picture on it 490,5460608032,why was the man in blue standing beside his bicycle at the end of the video,5460608032_CW_2,resting,5460608032,CW,pick up cloth,resting,catch the ball,boy in white stopped,look at scenery 491,5209164320,why does the lady in blue put her hand at her mouth near the end,5209164320_CW_4,blow harmonica,5209164320,CW,blow harmonica,taking photo,play the piano,to sing,to drink 492,6315028936,why did the baby lean forward,6315028936_CW_5,fidgeting around,6315028936,CW,dance,fidgeting around,looking at dog,trying to reach toys,looking at the toys 493,8411367591,why did the man in red pick up the boy in green after his legs were hugged tightly by him,8411367591_CW_2,to play with him,8411367591,CW,to play with him,to kiss him,let baby watch the phone,to play his microphone,unwrap present 494,12208961114,why is the boy in blue brushing the woman s hair,12208961114_CW_1,straighten it,12208961114,CW,straighten it,ready to catch the toy,make sounds with baby s mouth,carry her,entertain dog and baby 495,9388233379,why are the performers standing on a ledge,9388233379_CW_0,performing an act,9388233379,CW,main performer,posing,look cool,music performance,performing an act 496,4163033472,why does the blonde child put her book down at the start of the video,4163033472_CW_0,leave seat to go somewhere else,4163033472,CW,look at monkey on the right,leave seat to go somewhere else,jump higher,leave seat to take out shoes,laugh 497,3250020598,what did the lady do after the girl fell onto the ground in the middle of the video,3250020598_TN_6,spin the girl around,3250020598,TN,pick up something,spin the girl around,dances,touch the child s head,push cheeks up 498,6783533553,why does the musician move his body back and forth,6783533553_CW_3,feel the music,6783533553,CW,change the chord,play for fun,hand gesture while talking,feel the music,dancing 499,5228329870,why did the baby bite onto the pacifier when he watches something on the screen,5228329870_CW_1,chew on it,5228329870,CW,attract the mother,playing,chew on it,fasicnated by bottle,curious what it is 500,3277823769,what does the baby do after falling down in the cot after standing in the middle of the video,3277823769_TN_4,tried to get up again,3277823769,TN,hold up toy in hand,dances,put balloon above him,lay down,tried to get up again 501,3265024425,what does the male lion do after the female lion approaches at the end of the video,3265024425_TN_8,walks forward,3265024425,TN,lie on the ground,walks forward,walk away from her,clean his hands,move his head 502,10830982353,what did the man in checkered shirt do after he received the food,10830982353_TN_0,walk away,10830982353,TN,walk away,chew,dance,clap his hands,buttons it up 503,4810458386,why is the man on the right moving his fingers at the start of the video,4810458386_CW_4,talking,4810458386,CW,talking,guide others how to use,watching his model move,lean towards the boy,trying to open present 504,4660797892,why are the girls wearing the same outfits,4660797892_CW_2,group performance,4660797892,CW,school uniform,they are twins,group performance,wedding outfits,sport team 505,5769549970,why did the people in the car dragged the policeman into the car,5769549970_CW_3,beat him up,5769549970,CW,bringing him on a trip,capture moments,find another car,change the car's direction,beat him up 506,5827074668,why did the man reach out his hand to the baby after moving back,5827074668_CW_3,move baby away from tool,5827074668,CW,feed baby food,move baby away from tool,to hug baby,to get the toy,play with girl 507,5635020430,why does the topless man swipe his face in the middle of the video,5635020430_CW_3,remove the salt water,5635020430,CW,to get down on slide,remove the salt water,sand on his nose,dust on his eyes,he is bored 508,2401079660,why did the baby turn behind towards the man s direction in the middle of the video,2401079660_CW_10,look at the man,2401079660,CW,to climb down the stairs,hold it in a different way,look at someone,play with toy,look at the man 509,5649162069,what does the man with blue controller do after walking forward at the end,5649162069_TN_8,turn back,5649162069,TN,move to the man in blue,put his arm around another boy,points to the right,cry and shout,turn back 510,6346290362,why did the green bottle baby let go of the woman s hands before walking to the stroller,6346290362_CW_3,want to walk himself,6346290362,CW,pat the dog,support the dog,to prevent fire,wants to be beside her,want to walk himself 511,9284736689,why is the man in black singlet running across different rooms,9284736689_CW_4,jogging,9284736689,CW,let the dog follow him,find his bikes,to take out the present,jogging,want to go toilet 512,3278126113,why did the lady bend forward in the video,3278126113_CW_13,support baby,3278126113,CW,support baby,waves,pick the baby up,to get down,picking something 513,2776803136,why did the lady stretched her arm towards the boy at the beginning of the video,2776803136_CW_11,give the boy something,2776803136,CW,fidgeting around,to get closer to camera,pushing girl back,pick up the mask,give the boy something 514,4126506012,why does the man stand still while playing,4126506012_CW_4,calm,4126506012,CW,so that is more stable,wait for boy to lose,calm,television not working,not his turn 515,5783801873,why did the motorcyclist put his legs down when he approach the small opening,5783801873_CW_2,balance his bike,5783801873,CW,following the beat,balance his bike,dance performance,kick stone on road,prevent hitting the barriers 516,2713525734,why did the brown jacket man kick his leg before walking,2713525734_CW_1,stretch,2713525734,CW,safety,carry the bunny,strike a pose,practicing,stretch 517,3961320600,what does the boy do after the dog runs past,3961320600_TN_5,put the bike down,3961320600,TN,move its head to his arm,continue rubbing dog s head,put the bike down,jump around,put hand on floor 518,2640372277,why is the baby in orange swaying and dancing while sitting on the chair,2640372277_CW_0,happy,2640372277,CW,trying to play piano,to move the chair,dancing,happy,trying to move 519,3347998465,how did the girl in pink moved herself towards the other green pole in the middle of the video,3347998465_CH_9,jumping,3347998465,CH,turns the handle,jumping,hug,using 2 fingers,hold baby s hands 520,4531056940,why does the man with brown jacket raise his left arm at the start of the video,4531056940_CW_1,to adjust his sleeve,4531056940,CW,to be closer to the microphone,put water in cup,maintain balance,to adjust his sleeve,point at him 521,6320419082,what did the girl in colourful shirt do after the girl in pink sat down,6320419082_TN_6,sit down,6320419082,TN,reading her paper,taps water with her foot,watching the baby and lady,pin woman s hair,sit down 522,3018394896,why did the 3 ladies let go of thier hands after circling for awhile,3018394896_CW_1,switch moves,3018394896,CW,switch moves,hi-five,dance routine,let the dog climb on her,done speaking 523,6346290362,what does the green bottle baby do after letting go of the woman s hand,6346290362_TN_9,walk around,6346290362,TN,swing,talk to baby,look at girl in red,struts onto the stage,walk around 524,5687893796,what did the man in white do after he bend down at the cupboard,5687893796_TN_5,adjust something,5687893796,TN,put on table at the back,dance on floor,adjust something,puts something in right hand,wipe his eyes with towel 525,2962441847,why did the man in red raised his hands and look down at the beginning of the video,2962441847_CW_9,dropped item,2962441847,CW,encourage boy,excited,dropped item,slide faster,look at phone 526,4347565343,why does the man in white look at his guitar as he performs,4347565343_CW_4,to focus on performance,4347565343,CW,feel the music,to focus on performance,to begin,engrossed in music,check what string to play 527,3511344402,what does the old man do after putting the baby down,3511344402_TN_9,sit on chair,3511344402,TN,sit on chair,dances,close his legs,remove apoon,put drill down slowly 528,4228152919,why does the man sit still throughout the video,4228152919_CW_5,play with child,4228152919,CW,pushing the rod,drawing,get picture taken,play with child,listening to his speech 529,4829041184,how did the dog react after the person threw the bottle at the middle of the video,4829041184_TN_5,runs after it,4829041184,TN,starts biting the ball,runs after it,want to bite the hand,run towards the baby,touch the vacumm clearner 530,5463556386,why is the performance dimmly lit up,5463556386_CW_2,part of setup,5463556386,CW,not enough lights,part of setup,got candles,to focus on cake,avoid limelights 531,5571838736,why is the woman in grey holding onto sticks,5571838736_CW_7,playing drums,5571838736,CW,play golf,playing drums,to ski,to pick up food,for baby to pull 532,5460164242,what does the man do after approaching the girl in the middle,5460164242_TN_7,clicks on the computer,5460164242,TN,clicks on the computer,touch her cheek with palm,oversee girl dancing,pull the string down,turn around 533,3246498270,what did the baby do after picking up the bottle in the middle,3246498270_TN_2,hold and put in mouth,3246498270,TN,yawns,play with the tip,hold and put in mouth,play with it,look to his right and smiled 534,7438153002,why did the person in the aircraft raised his arm in the beginning of the video,7438153002_CW_1,put on earmuffs,7438153002,CW,to keep the mug on the table,listening to the lady,put on earmuffs,pretend to be something,adjust it 535,2830844169,why did the boy stood at the same spot throughout the video,2830844169_CW_4,drinking,2830844169,CW,drinking,adjust his seat,trying to reach for something,hold it in a different way,encourage baby to play with boy 536,5649162069,why are the two men violently swinging the consoles,5649162069_CW_3,excited,5649162069,CW,excited,following rhythm,show performance,check if broken,fist bump with woman 537,11794945346,why is the girl in white looking at the table when she spoke into the microphone,11794945346_CW_9,reading something,11794945346,CW,reading something,speaking to audience,making funny sounds,flipping through her book,watch what s she doing 538,3564576864,why are the 3 people sitting at the table,3564576864_CW_1,talking,3564576864,CW,playing boardgames,waiting for something,praying,talking,cooking food 539,5596610883,why is the man struggling near the end of the video,5596610883_CW_3,struggling to open packaging,5596610883,CW,adjusting his clothes,lost his balance,struggling to open packaging,annoyed by boy,explain something 540,8448503290,what does the woman do after the ball rolls away at the start,8448503290_TN_7,reach out for the ball,8448503290,TN,raise her leg,pick up more pebbles,reach out for the ball,raise her hands,happy 541,6856075223,what did the white goat do after pushing the bottle down the slope,6856075223_TN_2,run away,6856075223,TN,run away,look at guy in black,dance,give it to girl in pink,pull arms in tightly 542,3899884605,what does the black dog do after running back from across the river in the middle,3899884605_TN_8,go to man in green,3899884605,TN,pick the dog up,stand and stare,drink from cup,go to man in green,fill red bowl 543,6025249212,what do the two children do after putting their hands down,6025249212_TN_5,clap,6025249212,TN,chew food,pose for camera,rest on the bed,clap,play with toy 544,6091405815,why did the cat come out of the kitchen with the rope in its mouth again,6091405815_CW_7,lady throw the rope there,6091405815,CW,to get off table,lady throw the rope there,take back to cushion,rope is tied to mouth,defend itself 545,6380666279,why did the white shirt man and the green shirt man turn to look at the wall when they walk past,6380666279_CW_1,admire,6380666279,CW,offensive image,admire,checking condition of projected image,recognise image,help take out the pole 546,4814913320,why did the man with black and white beanie put his hands at his chest when he speaks to the woman,4814913320_CW_2,refering to himself,4814913320,CW,refering to himself,laughing,take pot,celebrate the moment,listening attentively 547,9251779370,why is the woman wearing black holding the card,9251779370_CW_0,gesturing with it,9251779370,CW,ordered by customer,noticing the office,do magic,gesturing with it,protect sun 548,4042843624,what does the man do after reaching the shore at the end of the video,4042843624_TN_8,get out of boat,4042843624,TN,smile,yes,get out of boat,stand up,carry the baby down 549,3718722735,why does the green shirt woman in blue shorts put her hands on her hair in the middle,3718722735_CW_5,adjust hair,3718722735,CW,do nt want to wet shoe,adjust hair,pat the baby,say hello,nervous 550,4250392878,why is the child holding a hammer,4250392878_CW_1,hitting the screw into the wood,4250392878,CW,played with them previously,his toy,playing with it,hitting the screw into the wood,create waves for toy boat 551,4501146951,how did the boys show that they are enjoying themselves,4501146951_CH_4,smiling,4501146951,CH,screaming,pose with a hand gesture,long sleeve shirt,thick clothes,smiling 552,3784430367,what does the girl do after touching the glass with her bottle the first time,3784430367_TN_1,touch with other glass,3784430367,TN,touch with other glass,move spoon away,moved her leg out,raise it back in some time,take the food 553,7506103208,how did the actress ensured her hair is out of her face,7506103208_CH_11,tie it up,7506103208,CH,move her head,hands,using her hand,itchy,tie it up 554,2713525734,why did the black and white shirt man look at the brown shirt man as he is walking,2713525734_CW_3,observe brown shirt man,2713525734,CW,looking at phone,to take away camera,observe brown shirt man,grab some food,accompany the girl 555,9566614158,why is there a man in white sitting in front of the computer,9566614158_CW_3,look at the machine,9566614158,CW,type on keyboard,repair the mouse,turn the music,playing games,look at the machine 556,11866348213,what did the boy do after he ran to the end in the middle of the video,11866348213_TN_4,walk away from room,11866348213,TN,enters a room,looking at toy on ground,walk away from room,take taco up,stand behind baby 557,7973772218,why is the girl in orange leaning forward at the start and middle of the video,7973772218_CW_1,better balance,7973772218,CW,show the boy something,to get nearer to the ball,better balance,excited,attract bird 558,3278126113,why did not the baby play with the toys on his left,3278126113_CW_2,practicing walking with the woman,3278126113,CW,for the baby to play,he was playing with it,wants to play,practicing walking with the woman,learning to walk 559,4181031443,what does the man with white pants do after walking for a while at the end,4181031443_TN_3,touch his face,4181031443,TN,moving his body with rhythm,touch his face,talk,at the side of road,pass paper to woman 560,11866348213,what does the boy do after he reaches the end of the hallway,11866348213_TN_7,enters a room,11866348213,TN,jump up and down,enters a room,sit on the couch,bring jacket away,show the coin to the video 561,5729533897,what did the lady do after she put down the poster at the start of the video,5729533897_TN_2,talk,5729533897,TN,tilt head forward,talk,turned behind,move camera,write something 562,3832090694,why is the elephant flapping its ears when walking,3832090694_CW_2,fanning itself,3832090694,CW,paw at the dog,fight with the dog,handler,fanning itself,follow 563,9662978367,what did the boy do after he turned to his left at the start,9662978367_TN_2,stop cycling for a while,9662978367,TN,say hi to camera,stop cycling for a while,eat food,take more food,grin 564,5649162069,why is the two men holding on to consoles,5649162069_CW_2,to play console game,5649162069,CW,to play console game,cleaning,support,showing baby,keeping in box 565,5358657883,how does the man in white show affection towards the blonde girl,5358657883_CH_3,touch her face,5358657883,CH,dance,touch her face,laugh,dance,shake leg 566,5363776323,how did the baby play with the green toy,5363776323_CH_4,eat it,5363776323,CH,blow onto him,eat it,bite,hold the toy close,pull the string 567,2591888090,why is boy wearing hat,2591888090_CW_2,it is sunny,2591888090,CW,celebrate,performing,it is sunny,safety purposes,safety 568,5435149690,what does the person holding the beer bottle do after raising it for a while at the start,5435149690_TN_5,lowers it,5435149690,TN,roll over,push yellow bottles,lowers it,reach for the camera on his left,snaps his fingers 569,8736356323,why did the people dress in cow boy style in front,8736356323_CW_0,performers,8736356323,CW,playing,wants to play alone,got married,mascot,performers 570,7871817080,why did the baby hit the toy hard at the start of the video,7871817080_CW_0,getting annoyed,7871817080,CW,wants to play with it,pick out food,ticklish,getting annoyed,does nt like the taste of cupcakes at first 571,6537623889,why did the boy bend down in the middle of the video,6537623889_CW_5,pick up the stick,6537623889,CW,pick up the stick,pick up the fish,encourage baby to play with boy,interested in balloon,pick up slippers 572,5182578763,what did the man in black do after the man in red pointed at the machines,5182578763_TN_4,adjust the machines,5182578763,TN,pick up a paper,adjust the machines,on his waist,pull him forward,smile 573,3036261707,how did the boy dance,3036261707_CH_8,move his arms,3036261707,CH,pick up and push boys away,jump up and down,with his hands above his head,move his arms,holding each other 574,2643443060,what did the boy do after he poked the food,2643443060_TN_7,look into camera,2643443060,TN,plays with red toy,covers face with bowl,look into camera,watching movie,moves to the side 575,3508141028,why is the girl putting her hands on the piano,3508141028_CW_0,practise playing,3508141028,CW,chatting,practise playing,playing the piano,watch tv,acting to play it 576,3339687949,how did the baby feel after his attempt on standing up,3339687949_TN_4,sad,3339687949,TN,sad,slip,green toy,slide down,laugh 577,3718722735,why did the orange shirt baby sit down beside the fountain,3718722735_CW_2,lose balance,3718722735,CW,fun,lose balance,play with toy,playing,taking care of the babies 578,3764313862,why did the baby raise his hands when watching the dog,3764313862_CW_3,excited,3764313862,CW,put the dog further,try to take toy,show love,playing,excited 579,5635020430,why does the woman in white shirt point her finger at the end of the video,5635020430_CW_5,direct attention,5635020430,CW,shocked to see man,direct attention,happy,to give out something she picked,to call for people 580,7124177075,why did the woman in pink tap her hand on the table after letting go of the boy s drink,7124177075_CW_5,thinking action,7124177075,CW,wants more,give it to someone,thinking action,to take other toy,catch spills 581,2583111812,how does the man show affection to the rabbit at the start of the video,2583111812_CH_6,hold it tightly,2583111812,CH,hold it tightly,chasing each other,kiss baby,touches the baby,run towards the toy 582,5463556386,why is the person on the right wearing a hat,5463556386_CW_9,part of outfit,5463556386,CW,sunny,part of outfit,safety,dig sand,cycling 583,8090435597,why did the boy stretched his arm towards the ipad,8090435597_CW_3,want to touch it,8090435597,CW,try to catch girl,play with it,want to touch it,curious what it is,show something on the laptop 584,5630988927,why did the baby hold on to the tree after reaching the tree,5630988927_CW_4,for support,5630988927,CW,want to smell tree,want to collect fruits,feed bird,wanted to touch but scared,for support 585,3751822104,how are the people listening to the man in uniform positioning themselves,3751822104_CH_7,standing,3751822104,CH,passionately,speak to microphone,standing,near one another,sitting 586,6537623889,why is the boy holding a golf club,6537623889_CW_0,playing golf,6537623889,CW,doing stunt,playing golf,to buy,themed party,take photo 587,4933467831,why are there a group of people in green all sitting in the row,4933467831_CW_1,watching performance,4933467831,CW,to protect from the sun,looking at him to perform experiment,witness the engagement,for baby to play,watching performance 588,5620767697,what did the big dog do to the small dog after walking slowly behind,5620767697_TN_6,chase after small dog,5620767697,TN,sniff it,chase after small dog,push the dog,bite dog,lie on the ground 589,5460164242,what does the girl do after putting the apple on the ground at the end,5460164242_TN_9,waves her hands in the air,5460164242,TN,tries to grab labtop,wipe her hands with tissue,waves her hands in the air,lie down and cry,rub her nose 590,2749616841,how does the person prevent the kitten from falling out of the blanket,2749616841_CH_1,hold it tightly,2749616841,CH,sit on toilet,rub the cat,in man s hand,hold it tightly,try to grab with its paws 591,5271062042,why did the man in white put the saxophone in his mouth,5271062042_CW_9,to perform,5271062042,CW,take a photo,attract the baby,to perform,call the dog,battle with another man with saxophone 592,3508141028,why is there a pink hair band placed on the girl s head for,3508141028_CW_2,keep her hair tidy,3508141028,CW,talking,dance together,keep her hair tidy,part of outfit,help baby go into crawling position 593,5866354734,what does the lady do after the girl pulled her dress,5866354734_TN_1,jump,5866354734,TN,bend down,walks away,jump,use the machine,clasp her hands 594,11402789396,what does the man do after putting the coat on,11402789396_TN_6,buttons it up,11402789396,TN,take out the paper,talks to the lady,adjust paper,buttons it up,clap his hands 595,11219960546,what does the boy do after moving to the side in the middle of the video,11219960546_TN_8,play with soil,11219960546,TN,put his hand into his mouth,play with soil,adjust tricycle,pressing keyboard buttons,walk away 596,4329580374,what did the baby in pink do after touching the face of the baby in white near the end,4329580374_TN_5,stares,4329580374,TN,excited,kiss the baby,stares,move forward and backward,put it down 597,3957553632,how did the man in grey carried his belongings with him as he trekked,3957553632_CH_5,hold in hand,3957553632,CH,hold the baby,belay person in black,hold in hand,use the stick,hold the pole 598,5687893796,what did the lady in pink do after the man in brown sat on the floor near the end of the video,5687893796_TN_4,sat down,5687893796,TN,caress the cat,sat down,look at the santa claus,look up and smile,run 599,3488196927,why did the two men moved towards each other closely in between fights,3488196927_CW_3,attack each other,3488196927,CW,smile at each other,competing with each other,record from closer angle,attack each other,playing 600,9576327121,what did the baby do after shaking his head,9576327121_TN_8,put bowl on his head,9576327121,TN,swing it around,rise right arm,put hand into mouth,jumping near the adult s knee,put bowl on his head 601,8530515192,why did the girl in purple bite her fingernail after covering her ears for the first time,8530515192_CW_6,biting calms her down,8530515192,CW,biting calms her down,hungry,preparation for dancing,wants more food,prevent falling 602,2482994684,why did the boy stretch his hand over the table for the second time,2482994684_CW_5,adjust the glasses,2482994684,CW,polite,take snack,eat the spread,shake off water spill,adjust the glasses 603,3764313862,how does the person react after the dog puts out its paw towards the baby,3764313862_TN_8,hold dog back,3764313862,TN,shake its body,catch it,same direction as dog,walk away,hold dog back 604,5271062042,how did the drummer made music with the drum,5271062042_CH_8,move the sticks,5271062042,CH,kick the drum,beat drum vigorously with hands,drop beans on drum,move the sticks,let baby beat drum 605,6782372702,why did the cat open its eyes after the second time the adult touches it,6782372702_CW_3,check out the human,6782372702,CW,get fed,try to catch cap,cat was nudged to move forward,wants more carrassment,check out the human 606,2777222508,how did the drummer made music with the drum,2777222508_CH_8,hit the drum using drumsticks,2777222508,CH,look at each other,hit the drum using drumsticks,microphone,play the piano,hit instrument with sticks 607,8812093275,what did the boy in black shorts do after the girl in white dress ran towards him,8812093275_TN_6,runs away,8812093275,TN,approached them,she slows down,runs away,walked to wards them,chase her 608,6091405815,why did the lady in blue throw the rope over to the kitchen and sat down after,6091405815_CW_6,woman plays fetch with it,6091405815,CW,to throw into bin,t o catch something,woman plays fetch with it,move green toy aside,assist her holding the baby 609,8095838321,why is the woman looking at the boy play the monkey bars,8095838321_CW_2,ensure safety,8095838321,CW,ticklish,try to play,thank the man,performed using puppets,ensure safety 610,5498668540,why is the man holding a tablet mobile in his hand,5498668540_CW_1,play with it,5498668540,CW,reads from it,taking photo,play with it,taking video,talking to the other man 611,5687893796,why did the lady in pink bend down in the middle of the video,5687893796_CW_3,pick something up,5687893796,CW,communicate,lose interest in lady,pick something up,jump higher,to dodge baby hitting her 612,6227157477,what did the soldiers do after they moved forward to each other,6227157477_TN_7,freeze at their standing position,6227157477,TN,walk to the jungle,freeze at their standing position,pluck the apple,move to the car,moves towards the window 613,8736356323,why did the men turn to face each other halfway through the performance,8736356323_CW_9,smile at each other,8736356323,CW,smile at each other,wait for the fight to start,helping each other get ready,keep each other in check,check his surroundings 614,8411367591,how did the boy in green show that he want to be carried,8411367591_CH_10,put his arm up,8411367591,CH,climb on lady s lap,cry,pull the string,put his arm up,refuse to stand 615,8323333673,why does the child turn her head when flipping through the book,8323333673_CW_3,to read the contents,8323333673,CW,to check whether pages are falling out,to read the contents,read to baby,teaching the baby how to read,colouring on another page 616,12015983824,what did the boy do after grabbing the blue bottle,12015983824_TN_5,change hands to hold,12015983824,TN,change hands to hold,watch ducks,hold the colourful toy,put finger to mouth,droped on table 617,4514212431,how does the lady hold the child,4514212431_CH_6,carry using left arm,4514212431,CH,give a kiss,rubbing the baby,carry using left arm,using a baby carrier,carry using two hands 618,3564576864,how did the man in black make himself comfortable while reading the book,3564576864_CH_7,lay down on sofa,3564576864,CH,eat icecream on chair,wear spectacles,wear gloves,lean on wall,lay down on sofa 619,10516079413,what does the baby do after picking up the doll in the middle,10516079413_TN_8,look at the doll,10516079413,TN,turn to his back,look at the doll,look at toy,lick them,turn towards the toy 620,2776803136,why did the boy gave the food on his hand to the little dog in the middle of the video,2776803136_CW_3,bigger dog dislikes it,2776803136,CW,he wants it back,want to play with it,eat food,indicate no speaking,bigger dog dislikes it 621,4654125833,how did man check on baby,4654125833_CH_8,lean forward and look at baby s face,4654125833,CH,using toy,lean forward and look at baby s face,pat his head,holding baby with his hand,in his hands 622,5950108376,how did the lady support the baby,5950108376_CH_4,put baby on lap,5950108376,CH,kiss girl,stroller,put baby on lap,bag,baby cot 623,5108643917,why is the baby putting one of his hands on the cake,5108643917_CW_4,hold it,5108643917,CW,his birthday,enjoying ice cream,hold it,eat it,celebrate his birthday 624,3564059530,why is the man touching the board with the card in the beginning and in the end,3564059530_CW_1,trying to tap it,3564059530,CW,play the piano,dancing with the baby,trying to tap it,to play properly,reading the card 625,3376490453,what does the boy do after carrying the toy car for a while in the middle,3376490453_TN_11,put car into mouth,3376490453,TN,walk away,play with toy car,cycling,look at camera,put car into mouth 626,3555157875,what did the lady on the right do after she smiled in the middle of the video,3555157875_TN_8,look down,3555157875,TN,touch baby lips,look down,sit on man and play toy,put her head on him,pull string from below 627,3874181859,why is the girl holding a microphone near the start,3874181859_CW_0,speaking to people,3874181859,CW,speaking to people,attracting the crowd,turns her head,sing into the microphone,main vocalists 628,10830982353,why is the man in white cap bending forward to the table at the beginning of the table,10830982353_CW_1,prepare food,10830982353,CW,eatining time,fashion,prepare food,to video the performance,take a drink 629,3564059530,what does the man do after displaying the card at the start,3564059530_TN_3,look at the camera,3564059530,TN,he looked at the girl,put the cards down,look at the camera,adjust paper,take out the fish from rod 630,3503206487,why does nt the man cross the road,3503206487_CW_5,red traffic light signal stop,3503206487,CW,looking at the structure around,red traffic light signal stop,learning to drive,reach other side of forest,reversing 631,8316378691,how does the boy convey his excitement while covering his eyes at the beginning,8316378691_CH_11,move legs around,8316378691,CH,move legs around,claps,climb on lady s lap,dancing around,keep silence 632,5620721035,what did the baby do after he gave up climbing the sofa,5620721035_TN_3,crawl,5620721035,TN,fidget,jumped down sofa,dance,crawl,jump up and down 633,10087471526,what did the boy do after he dug holes in the sand,10087471526_TN_9,turns around,10087471526,TN,turns around,waiting to start,push toy car,return back to the jumping point,mimic man 634,4451729145,why is there a lady in black carrying a black cat in her arms,4451729145_CW_1,caress the cat,4451729145,CW,put cat in cage,playing with boy,bring food for eating,watch the girl,caress the cat 635,11402789396,why does the man put a pillow in his hands in front of his stomach,11402789396_CW_0,fake belly,11402789396,CW,relax,fake belly,to watch over baby,fell from his board,play with the boy 636,5271062042,how did the man in yellow remember his notes when playing the instrument,5271062042_CH_3,look at score,5271062042,CH,look at score,look at phone,freestyle,follow the notes on screen,refer to notes on his hands 637,4644208937,how did the girl kept her hair out of her face,4644208937_CH_9,tie her hair,4644208937,CH,swimming cap,clip,loose her hair,tie her hair,sweep hair downwards 638,5368363137,why are the man and the boy wearing thick clothing indoors,5368363137_CW_3,cold,5368363137,CW,prevent sunburn,part of outfit,practising fighting,cold,dangerous surroundings 639,9284736689,why is there a man holding a camera up near the door at the end of the video,9284736689_CW_2,taking photograph,9284736689,CW,taking photograph,fix screen,locking door,perform,adjusting 640,6894565761,what did the girl do after she looked at the camera at the middle,6894565761_TN_8,smile,6894565761,TN,smile,starts talking,cry,move towards the camera,show doll to camera 641,8585296242,why did the woman and man nod their head when the baby in white and blue move his arms,8585296242_CW_2,encourage boy,8585296242,CW,dancing,encourage boy,show affection,guiding each other,express joy 642,4458565343,why do the people look towards the sea as the ferry moves,4458565343_CW_3,observe the sea,4458565343,CW,to go faster,observe the sea,watching it go,strolling,support herself 643,10516079413,what does the baby do after hitting the two circle toys with each other at the start,10516079413_TN_5,hit the wood,10516079413,TN,look at camera,put it back,throws it away,hit the wood,put it down 644,5841926063,why was the man in cap holding a stick behind the horse when the horse is running,5841926063_CW_0,teaching the horse,5841926063,CW,teaching the horse,to point on different instructors,giving directions,make horse stop,to show him where to go 645,5368363137,why is the man looking at the boy and dancing,5368363137_CW_1,teach him to dance,5368363137,CW,pose seriously,playing,television performance,entertain boy,teach him to dance 646,4531056940,what did the man in black jacket do before the screen turned grey,4531056940_TP_8,speak to the audiences,4531056940,TP,stand up,look at man in white,speak to the audiences,nod his head,put hand in mouth 647,3751822104,what does the man listening do after putting his leg down from the wood,3751822104_TN_8,touch his face,3751822104,TN,press the horn with his hand,water bottle,touch his face,look to his left,eat again 648,3710879845,how do the ducks move on the boat quay,3710879845_CH_0,walking,3710879845,CH,left to right,grab the boat,flexing their body and tail,walking,paddle left and right 649,2415116705,how did the man in white support the bucket and prevent it from moving,2415116705_CH_1,hold the side,2415116705,CH,with a rope,hold the side,wipe with tissue,tie to a pole,pull up their pants 650,8481787117,why is the girl in pink shaking her toy while dancing on the road,8481787117_CW_1,playing with toy,8481787117,CW,perform for fun,excited to play,playing with toy,excited by the music,striking a pose 651,4888273655,why is the lady holding on to a plastic bag,4888273655_CW_3,cleaning with it,4888273655,CW,cleaning with it,wipe glass,boy to jump into loop,gesturing as she speaks,looking at phone 652,4829041184,why does the person throw the bottle behind the dog,4829041184_CW_1,playing catch,4829041184,CW,to hit the dog,to give it to someone,to aim it in the bin,to avoid hitting the dog,playing catch 653,2940555445,how does the baby drink milk,2940555445_CH_2,suck on bottle,2940555445,CH,suck on bottle,spoon her,with a spoon,putting his mouth inside cup,with a straw 654,8095838321,why did the woman move forward after the boy stood up,8095838321_CW_5,to let go of swing,8095838321,CW,invite the girl,to let go of swing,to walk,better balance,wants to play with water 655,7095619943,how did the boy show signs of excitement near the end of the video,7095619943_CH_8,clap hands,7095619943,CH,start dancing,strolls around,laugh,sit on the chair,clap hands 656,4277853330,how did the man hold the bird,4277853330_CH_2,hold the stick,4277853330,CH,caress its neck,hold its wings,wear spectacles,hold with gloves,hold the stick 657,8442904731,why did the boy in grey let the man in white hold his legs again,8442904731_CW_2,a step in the game,8442904731,CW,take something,a step in the game,support him,copy him,follow orders 658,11166208165,how did the lady get the child s hair away from her mouth,11166208165_CH_5,sweep hair downwards,11166208165,CH,keep hair up,kneel,hair tie,sweep hair downwards,bandage 659,8686073700,how did the man shooting make sure that he aims at the target correctly,8686073700_CH_3,look straight,8686073700,CH,look straight,spectacles,wears spectacles,wear ear muffs,stand behind giving instruction 660,4338819435,what did the lady in purple do after the cow kissed her face,4338819435_TN_4,look at the man,4338819435,TN,laughs,turns away,hugs her back,look at the man,wave 661,3339364524,how are the dogs shown they have an owner,3339364524_CH_6,wear leash,3339364524,CH,cue card,using harness and ropes,wear leash,go towards owner,pounce on each other 662,4815162722,what does the lady do after bending down and touching the girl s hair near the middle,4815162722_TN_3,talk,4815162722,TN,turn the girl around,sitting down,jump,talk,hold toy up 663,5290336869,how does the girl interact with the piano,5290336869_CH_5,press the keys,5290336869,CH,hold onto the table,slap the piano,push it,hand gesture,press the keys 664,8095838321,what does the boy do after reaching the end of the monkey bars in the middle of the video,8095838321_TN_6,let go of his hand,8095838321,TN,walk to the box,kicks it,let go of his hand,push the rope downward,put his palm up 665,5841926063,why is the horse running slower and slower in the ring,5841926063_CW_6,tired,5841926063,CW,instructor pull the rope,space slowly shrink,to check for people,to get ready for competition,tired 666,6055990354,why is the girl in red sitting far away from the cliff,6055990354_CW_4,watching the boy,6055990354,CW,watching the boy,sick,too short to reach,to climb the chair easily,weather is sunny 667,9566614158,why does the man wearing black move closer,9566614158_CW_2,have closer look,9566614158,CW,assist the chef,witness for the oath,playing guitar,have closer look,focusing on computer 668,3033055753,why did the lady throw her scarf backwards while she was singing,3033055753_CW_0,scarf dropping,3033055753,CW,overjoyed,not her turn,to hit the beat,scarf dropping,performing 669,4443349080,why does the boy drop the ball while trying to stand back up,4443349080_CW_8,kick ball,4443349080,CW,play with kid,ready to catch the ball,check if people are behind,kick ball,to play catch 670,5770742977,why did the yellow shirt boy bend down after getting off the boat,5770742977_CW_3,drag float,5770742977,CW,stabilize himself,no paddle,fishing,drag float,dry himself 671,5729533897,what did the lady do after she held up the poster near the beginning of the video,5729533897_TN_1,smile,5729533897,TN,adjust table,push stroller,smile,put on her shoulder,put the box aside 672,13256002144,how did the people control their directions and movement,13256002144_CH_2,turn their bodies,13256002144,CH,train,by the donkey,turn their bodies,walk past,see when rope touch ground 673,13974008375,why does the person in blue jacket constantly move his hands and body,13974008375_CW_3,dancing,13974008375,CW,save water,leash of dog,sunny outside,watching the man play,dancing 674,13884124143,why did the man in blue clap his hands after then guy on the board managed to jump into the sky with the board,13884124143_CW_3,encourage the guy,13884124143,CW,encourage the guy,position ball,express happiness over winning,pour water,excited and wants to throw again 675,7154804054,what does the girl do after pointing at the sky,7154804054_TN_2,talking,7154804054,TN,playing tablet,slide down,grab the camera,talking,continue cycling 676,7973772218,what did the boy do to the girl before she climbed down,7973772218_TP_7,hit her,7973772218,TP,he forgot to wear,run towards the boy,hit her,playing the piano,smiles as she plays with baby 677,3348930430,why does the man with the yellow headgear pushed himself to slide after jumping on the snow the second time,3348930430_CW_4,get down the slope,3348930430,CW,someone s else,to see if he was ok,to clear snow from body,get down the slope,get ball from man in red 678,5379320378,how did the rainbow dress man starts moving at the end,5379320378_CH_6,nod his head vigourously,5379320378,CH,pulling the string forward,clap,lifting hands higher,nod his head vigourously,jump over platform 679,4628526478,why are the man and the ladies dressed in thick clothing,4628526478_CW_0,travelling in snow area,4628526478,CW,playing in snow,working on snowy ground,travelling in snow area,roll over in snow,performing 680,5617607038,how did the person show affection to the baby at the beginning of the video,5617607038_CH_2,caress baby,5617607038,CH,held baby in his arm,hugs baby,caress baby,standing beside baby,feed baby 681,4192027724,what does the kid in striped bib do after unsuccessfully snatch the toy at the beginning,4192027724_TN_7,takes another box,4192027724,TN,look at camera,look up,pat baby s head,toy hit his head,takes another box 682,7701673270,how does the man show his happiness at the beginning of the video,7701673270_CH_7,smile,7701673270,CH,dance,kiss baby,clap and jump,smile,spin and jump around 683,3277631367,why did the man in spectacles laugh after looking at the man without spectacles,3277631367_CW_3,found what the man said funny,3277631367,CW,looking after him,found what the man said funny,finds baby amusing,make a different gesture,prevent water into eyes 684,3418738633,why does the woman in spectacles wave and walk away from the two men in the kitchen in the middle of the video,3418738633_CW_1,avoid the conversation,3418738633,CW,feed girl,ticklish,blow the candle,avoid the conversation,gesturing to direct their attention 685,2596538788,why is the man in white holding a camera,2596538788_CW_1,taking photos,2596538788,CW,part of outfit,capture the surrounding,making speech,taking photos,taking video 686,2415116705,why does the man sitting on the right keep pointing with his hand,2415116705_CW_2,gesture what to do,2415116705,CW,playing piano,do arm wrestling,gesture what to do,eating,feel confortable 687,6594027277,why does the person in the grey hoodie point to the person in white before sitting down,6594027277_CW_4,choose the next person balloting,6594027277,CW,get his attention,show the dog,choose the next person balloting,scolding him,gesturing to him 688,3376490453,what does the boy do after playing with the toy car for a while on the table at the start,3376490453_TN_10,carry it while walking,3376490453,TN,enters the toy car,make funny faces to attract baby,carry it while walking,lie down,look at tv 689,9988805544,why is the lady looking to her front at the beginning of the video,9988805544_CW_6,driving,9988805544,CW,posing,driving,to talk loudler,touch water,help boy pull present 690,3555802519,how is the baby rested on the person s thigh,3555802519_CH_2,lie on his lap,3555802519,CH,resting on sofa,lie on his lap,crawl forward,dig sand away,wore socks 691,5271062042,why did the man in yellow look at the score in front of him as he plays the instrument,5271062042_CW_4,read notes to play,5271062042,CW,read notes to play,there is error on the score,to protect from the sun,to find the mosquitoes,tired to interact with band members 692,13974008375,what did the girl do after she saw the person with blue jacket dancing,13974008375_TN_8,laugh,13974008375,TN,looking at scenery,say hi,bored,laugh,put head on table 693,3277823769,how does the baby manage to stand up near the end,3277823769_CH_1,grabbing on to the cot,3277823769,CH,grabbing on to the cot,sit up,lady pushes girl forward,help from the man,use table 694,7625772278,why do the people look down while walking,7625772278_CW_5,careful of the rocks,7625772278,CW,exercising,morning exercises,careful of the rocks,restrict access,look at the door 695,4810458386,what does the man on the right do after putting down the microphone,4810458386_TN_5,play instrument,4810458386,TN,touch nose,point at screen,lift his strumming hand,listens,play instrument 696,2973658146,what did the boy do after he touched the lady in black,2973658146_TN_9,dips his hand in glasss,2973658146,TN,gets up and wipe his hands,dips his hand in glasss,goes away,observe her,do hand gestures 697,2580512567,what does the man in checkers do after stepping back at the end,2580512567_TN_7,punch fast,2580512567,TN,walk towards the camera,touch his head,punch fast,rotates,practice another move 698,7751455900,after licking the calculator what does the lady do,7751455900_TN_0,take away the calculator,7751455900,TN,rinse crab,take away the calculator,keep the lipstick away,pour on dog,look at baby 699,3136263720,how do the people play with the wrappers,3136263720_CH_10,throwing them,3136263720,CH,man feeds,throwing them,use a roller,play with the rope,pick up balls 700,3798468368,how does the baby express his happiness after getting on the chair,3798468368_CH_6,turns and smiles,3798468368,CH,give the baby a toy,turns and smiles,keep jumping,follows the lady s motions,clapped his hands 701,8411367591,why did the man in red bend down near the end of the video,8411367591_CW_5,touch the boy in stripes,8411367591,CW,touch the boy in stripes,pick up toy,look at the lady sitting,turn to watch baby move,to kiss the baby 702,3348930430,why is the man with yellow headgear pushing his poles into the snow at the beginning of the video,3348930430_CW_7,testing the deepness of snow,3348930430,CW,testing the deepness of snow,walk away,slipped,for support to climb,digging hole 703,4569009647,why are the people holding walking sticks,4569009647_CW_4,support themself,4569009647,CW,support themself,very dark,careful of the rocks,narrow pathway,looking at pictures 704,6430774273,why do the people wear thick clothings indoors,6430774273_CW_0,cold weather,6430774273,CW,having a meeting,for a fashion show,present unwrapping session,cold weather,look like santa claus 705,11772124873,why did the lady in white put her hands on her waist before leaving the stage,11772124873_CW_5,part of the dance,11772124873,CW,raise the girl up,not liking the dance,go higher,to catch her,part of the dance 706,2832642923,how does the lady feed the baby,2832642923_CH_7,spoon,2832642923,CH,hands support bum and back,gently,open her palm,hold her hand on the can,spoon 707,3964794227,how did the man help the baby get out of the pool at the start,3964794227_CH_5,push the baby upward,3964794227,CH,push the baby upward,climb from the edge,hold boy s arms,in his arms,wear life vest 708,2471845614,what does the blonde female on the left do after the mc speaks somthing at the start,2471845614_TN_6,take photo,2471845614,TN,put up 3 fingers,takes awayy her headphones,joins the children,take photo,bounce while carrying baby 709,6051291805,what does the baby do after walking onto the carpet at the start,6051291805_TN_6,look at the dog,6051291805,TN,tried to climb,look at the dog,go back for the diaper,touch the screen,bite 710,5827074668,why is the baby looking at the tool at the start,5827074668_CW_0,fascinated at tool s action,5827074668,CW,to get the person s attention,the man is using the tool,stabilize toy car,fascinated at tool s action,tool reflects his face 711,3385351378,why is the kid moving the vacuum cleaner,3385351378_CW_7,learning to use it,3385351378,CW,intrigued by it,learning to use it,teaching the kid,teething,resting 712,6971785627,what does the driver do after pressing the horn in the middle,6971785627_TN_7,starts driving,6971785627,TN,reverse car,pass phone back to woman,wave at cows,starts driving,point at screen 713,8192589078,why does the toy move,8192589078_CW_3,battery,8192589078,CW,to cut the candies,part of performance,windy in the glass,fidgeting,battery 714,5842153096,what does the man in black do after swinging the fire strips between his legs,5842153096_TN_7,swing over his head,5842153096,TN,help out guy,nods at him,push chickens,clap and laugh,swing over his head 715,5719002896,what did the audiences do after singer raised his hands and clapped,5719002896_TN_5,came forward to dance,5719002896,TN,playing the keyboard,nodding her head,go to bench,came forward to dance,watch cartoon 716,3555283857,what does the girl with spectacles do after turning to look at the guitarist,3555283857_TN_3,speak to the audience,3555283857,TN,falls to the ground,speak to the audience,dance,clap,walks to the boy 717,4688033528,what does the man in white do after receiving the picture from the man in blue,4688033528_TN_10,reads the picture,4688033528,TN,reads the picture,ski down,look at the girl playing,look away from camera,smile 718,4140970558,what did the woman wearing red do after she looked into the camera at the middle,4140970558_TN_7,eat,4140970558,TN,eat,put her hand up,take pictures,bend over camera,happy 719,6225185844,why is the boy flapping the cardboard paper,6225185844_CW_7,playing,6225185844,CW,see his presents,wants to wrap a present,paper was stuck,someone put it on him,playing 720,5463556386,why are the lady in polka dots moving her body side and side while she is performing,5463556386_CW_5,engrossed in performance,5463556386,CW,safety,waiting for water,dancing with the girl,dance pose,engrossed in performance 721,4644208937,why did the woman keep pulling the rope,4644208937_CW_0,belay,4644208937,CW,scared to fall,playing with leopard,keep her afloat,belay,dance together 722,3676023277,why did the lady pick up and umbrella and opened it up,3676023277_CW_3,dancing props,3676023277,CW,wedding part,gesturing while talking,drink,dancing props,create the balance and rise up 723,3741339360,why is the baby initally looking to his left,3741339360_CW_1,looking for baby on left,3741339360,CW,looking for baby on left,sleepy,dance,tired,playing with toys 724,4822747943,what did the lady in black do after singing birthday song,4822747943_TN_4,put one arm around girl,4822747943,TN,feed the doll,put arm on hip,put the toy horse down,put one arm around girl,start dancing again 725,9234693804,why does the man in white carry the child,9234693804_CW_0,show affectopm,9234693804,CW,walking,feel uncomfortable,talking,show affectopm,to talk boy in blue 726,4888273655,how does the lady signal for the dog to stay,4888273655_CH_6,put one finger up,4888273655,CH,give food,dog is trained,put one finger up,by the leash,rub the dog 727,4687190278,how does the lady crossing her leg get the attention from the baby,4687190278_CH_3,show him her phone,4687190278,CH,hold baby s hands,hold green table,show him her phone,give a kiss,hand 728,2580512567,why is the man lying on the chairs at the back,2580512567_CW_3,watching friends play,2580512567,CW,play piano,doing work,watching friends play,play the drums,let kids walk through 729,9284736689,why does the man in black tank top run around the house,9284736689_CW_0,getting away,9284736689,CW,playing with cats,chasing the dog,getting away,take exercise,playing around the toys 730,5769549970,why did the man in light blue pass a card to policeman,5769549970_CW_5,verification purposes,5769549970,CW,verification purposes,ended his conversation,invite him for drinking,record his notes,offer money 731,8585296242,why did the lady moved the arms of the boy in white stripes in the middle of the video,8585296242_CW_9,telling the boy to do it,8585296242,CW,telling the boy to do it,pushed by waves,communicate,adjust shirt,pull rope with strength 732,6016490500,why are the girl and lady sitting on mat,6016490500_CW_2,keep clean,6016490500,CW,resting,prevent it from flying away,allow boy to mop floor,keep clean,playing a game 733,7871817080,what does the baby do after the man points at the toy at the end,7871817080_TN_4,press toy,7871817080,TN,press toy,look at lights,toy hit his head,eats biscuits,bite the toy 734,5706721105,what did the man on the right do after the man on the left pointed up at the start,5706721105_TN_9,laugh and nod,5706721105,TN,jump,laugh and nod,put hand on stomach,tap belly,play guitar 735,3884901018,what did the black cat do after sitting up after the middle part of the video,3884901018_TN_3,look around,3884901018,TN,hide behind drawer,look around,bend down,sleeping,walk away 736,4329580374,why did the pink shirt baby move his hands to the face of the white outfit baby at the end,4329580374_CW_1,to hit face,4329580374,CW,want to take toys,ensure baby do nt resist,to hit face,colour from fruit,their outfit 737,2582976771,how did the boy move himself away from the lady in white,2582976771_CH_8,walk away,2582976771,CH,walk away,jump,swing up and down,helmet,hair pin 738,2885991220,why does the boy touch the laptop a few times,2885991220_CW_2,to adjust the video,2885991220,CW,to adjust the video,listening to music,food on table,to show it was switched on,singing along 739,6990172057,why does the boy in grey climbing the rock come down in between,6990172057_CW_3,unable to continue climbing,6990172057,CW,to see the bars,getting pulled,to play with a dandellion,unable to continue climbing,that is their direction 740,3574384655,why did the girl s hair bounced in the air whilw riding the horse,3574384655_CW_0,horse gallops,3574384655,CW,easier road,horse gallops,avoid falling,get more wind,overjoyed 741,6513201899,what did the baby do after holding to the finger of the lady in green,6513201899_TN_9,put hand into mouth,6513201899,TN,push trolley,smiles at him,put hand into mouth,talk to baby,speaks to the camera 742,3495427984,why is the old lady and the girl looking at each other at the end of the video,3495427984_CW_8,having a conversation,3495427984,CW,point at something,suggest man to go other side,engrossed in performance,having a conversation,talk to baby 743,5929504257,what did the man on the extreme left do after he put his arms around the lady in black,5929504257_TN_6,sing,5929504257,TN,hug the lady in red,grab her elbow,sing,pointing,lift it up 744,5950108376,how are the dolphins moving in the water,5950108376_CH_3,jumping in and out the water,5950108376,CH,oxygen tanks,boats,in a bag,using a rope,jumping in and out the water 745,10516079413,why does the baby keep dropping the doll near the end of the video,10516079413_CW_2,weak grip,10516079413,CW,lost interest,to smile,to get close to baby,sits down to play,weak grip 746,2835672361,why does the man pick up something from inside the fountain,2835672361_CW_1,clue for their game,2835672361,CW,look closely at the card,decoration,can hold more water,thirsty,clue for their game 747,8316378691,what does the boy do at the end after hugging the dog for a while,8316378691_TN_10,put dog into the box,8316378691,TN,about to go out,move head away,feed the dog,put dog into the box,walk away 748,3964794227,why did the man push the baby from the pool at the start,3964794227_CW_0,to get him up,3964794227,CW,to get him up,drag float away,give it attention,got on the board,excited 749,5620767697,why do the dogs come towards the other direction,5620767697_CW_2,playing with each other,5620767697,CW,follows the cameraman,trying to bite,because of lady s gesture,playing with leaves,playing with each other 750,4814913320,why did the man beside the woman look at the woman when she is speaking,4814913320_CW_0,listen,4814913320,CW,the lady asked them a question,stranger passing by,listen,common courtsy,talk to woman 751,5489050159,why did the man in blue check his phone,5489050159_CW_1,check the time,5489050159,CW,check the time,see things close without glasses,wife is calling,show the audience he is calling,looking for directions 752,3179829544,why did the baby hold the toy at the start of the video,3179829544_CW_1,swing it to play,3179829544,CW,carried by man,to eat,wants to touch red puppet,yawn,swing it to play 753,8812093275,why are there balloons tied to the children s shoes,8812093275_CW_3,part of game,8812093275,CW,hot sun,part of game,protect feet,dancing,for baby to play 754,7274130480,what did the boy do with his hands after he raised it up,7274130480_TN_0,make two thumbs up,7274130480,TN,lean and look forward,moving the toy,dance,make two thumbs up,take food 755,8731154071,why are the audiences holding up their phones and camera,8731154071_CW_2,recording the show,8731154071,CW,taking photos of elephants,to show lady the screen,record the concert,recording the show,lighting with phones 756,9921053695,what did the lady in grey do after the two ladies sitting have finished drinking,9921053695_TN_5,speaking and hand gesture,9921053695,TN,move mic to white scarf woman,talk to the man in black,speaking and hand gesture,look at the scenery,put the fork down 757,2832642923,why is the baby in blue hiding his face with the cloth in the beginning,2832642923_CW_0,itchy and uncomfortable,2832642923,CW,get across the path,finished playing with it,newborn and naked,jump up and catch the toy,itchy and uncomfortable 758,9641305350,why does the boy hold onto the bucket,9641305350_CW_9,pour water over his head,9641305350,CW,not experienced at swimming,pour water over his head,can hold more water,test for comfortable position,take out food 759,2832642923,why does the baby smile,2832642923_CW_6,likes the food,2832642923,CW,person hits toy,lady tickles him,bored,breathe,likes the food 760,5182578763,why are the machines able to stay together as they move,5182578763_CW_12,connected by string,5182578763,CW,giving instructions on how to dance,cold weather,going on a trip,enjoying music,connected by string 761,2885991220,how did the boy play the video near the end of the video,2885991220_CH_4,click laptop,2885991220,CH,run towards the video,shakes his hand,with controller,presses it,click laptop 762,5460164242,why did the man remove the big box on the ground before the girl started dancing,5460164242_CW_2,make room for girl,5460164242,CW,part of performance,pass the box to cameraman,make room for girl,watch the boy play instead,big box is heavy 763,6025249212,why are the two children s hands raised at the start of the video,6025249212_CW_8,posing,6025249212,CW,take the candle,reach out for something,dancing,posing,happy 764,3416353558,why does the lady look at a paper while speaking,3416353558_CW_1,refer to script,3416353558,CW,draw for guessing game,reading from paper,refer to script,speaking in different direction,talking to the crowd 765,3348930430,why does the man in the black headgear stick his tongue out to the camera at the end of the video,3348930430_CW_6,make funny faces,3348930430,CW,to drink,practice boxing,make funny faces,came back from riding,hand gesture 766,3278126113,why did nt the baby in the purple onesie walk by himself,3278126113_CW_1,can not walk himself,3278126113,CW,take the comb,distracted,can not walk himself,stop other girl from blowing,touch head 767,6990172057,why is the boy in grey climbing the rock,6990172057_CW_2,playing recreationally,6990172057,CW,keep his belonging,to reach the flowers,presenting,hiking,playing recreationally 768,3717997473,how did the man helped the girl when she jumped into the water,3717997473_CH_4,hold the girl,3717997473,CH,hold the girl,bending his knees,gold baby s body,open arms,in left arm supporting baby s head 769,5942411333,why does the man on stage raise his note up at the end,5942411333_CW_11,to read it,5942411333,CW,to thorw it,give to man,show audience,to read it,change slide 770,3738987127,why is the girl in the middle smiling,3738987127_CW_9,happy,3738987127,CW,managed to ride by herself,posing for video,encourage her,won a game,happy 771,2771561128,what does the older girl do after stepping forward and speaks for a while,2771561128_TN_8,goes back in line,2771561128,TN,goes back in line,smile at camera,sit down and drink water,nod their heads,play with baby 772,6314990660,what did the boy do after he drop the frisbee plate,6314990660_TN_4,to play with the girl,6314990660,TN,to play with the girl,pick it up,exchange the sparkles,move forward,goes back 773,3784430367,why does the person with the beer glass hold the glass in front of the girl near the end,3784430367_CW_4,cheers with her,3784430367,CW,cheers with her,safety,take a sip,playing,hand gesture 774,6129861127,what did the lady in middle do after she lowered her body in the middle,6129861127_TN_7,plays the guitar,6129861127,TN,look down,open card,look to her left,raise her hand,plays the guitar 775,4444271481,why did the blue shorts man raise his hands up at the edge of the waterfall at the end,4444271481_CW_5,ready to jump down,4444271481,CW,ready to jump down,to pick up stones,check nobody behind,relax,prevent himself from capsizing 776,5710270308,why are there so many toys placed on the floor,5710270308_CW_0,for baby to play,5710270308,CW,for baby to play,fell out of box,for girl to play,they opened many presents,cleaning toys 777,3597467356,what did the shirtless man do after he walked further into the sea,3597467356_TN_4,sit down,3597467356,TN,waving hand,watch baby play,sit down,look back at dog,hit the box on sofa 778,4164627367,why did the girl constantly look at the bicycle pedal as she cycles,4164627367_CW_4,fear of falling,4164627367,CW,protection and safety,not blocking the way,oversee the girl,fear of falling,to clean her hand 779,3899884605,why did the lady in blue dig a pile of mud at the start of the video,3899884605_CW_1,finding something in the ground,3899884605,CW,flatten soil,crafting,pick her child up,shorts were dropping,finding something in the ground 780,11973479386,what does the man do after holding the block in place for a while in the video,11973479386_TN_3,push it down,11973479386,TN,push it down,off camera,use computer,talk,looks back at the man speaking 781,2824890841,why does woman in yellow shirt swing her arms out,2824890841_CW_4,gesturing,2824890841,CW,driving,having fun,dragging it around,gesturing,posing for video 782,4687190278,what does the lady in specs do after seeing the boy wants to look at the phone,4687190278_TN_6,put him down,4687190278,TN,stop playing with fork,look back,put him down,point below the piano,talking on the phone 783,4644208937,why did the boy turn to the camera after climbing for awhile,4644208937_CW_1,tired,4644208937,CW,record his reflection,looking after him,stay balance to go up,tired,interact with camer 784,3250020598,why is the lady holding the girl s hands the whole time,3250020598_CW_0,to dance with girl,3250020598,CW,clap hands together,help girl cut,to dance with girl,take away the bowl,armwestling 785,4531056940,how does the man in black suit interact with the audience at the end of the video,4531056940_CH_5,put mic facing audience,4531056940,CH,lean back on the couch,demonstrate,put mic facing audience,walk up and down,shake hands 786,2618840774,why is the lady hold tightly onto the baby,2618840774_CW_0,teaching him swim,2618840774,CW,make him sit,happy,take away the bowl,teaching him swim,show the way 787,4447314310,how did the baby moved himself to see other sheeps nearby,4447314310_CH_8,run,4447314310,CH,by making it colourful,follows the lady,use beak,crawl,run 788,6990172057,what does the man in black do after the boy in grey looks back at him in the middle,6990172057_TN_7,remove the safety harness,6990172057,TN,kiss the boy,touch the ground,operate the toy camera,cut wood,remove the safety harness 789,7701673270,why does the man place his elbow up at the beginning of the video,7701673270_CW_9,comfortable,7701673270,CW,talk to cameraman,pose,listening to the lady,check if there s any milk left,comfortable 790,7987394824,how did the adults make sure that the children are safe,7987394824_CH_5,keep an eye on them,7987394824,CH,life vest,seatbelts,keep an eye on them,walk after them,sit on cushion 791,9934829764,what did the man in black do before falling onto the net,9934829764_TP_6,a flip,9934829764,TP,a flip,use his hands to control,waves his hand,stood up,scared 792,2973658146,what did the lady in black do after the boy touched her,2973658146_TN_5,turn towards the baby,2973658146,TN,show off card,turn towards the baby,look up,start talking,pick up blue object 793,8364779007,why does the boy in red bend down at the start of the video,8364779007_CW_2,pick up snow,8364779007,CW,to adjust posture,to wipe his hands,to play with grass,pick up snow,pushed by waves 794,6380666279,what did the man in black jacket do after the white car drove past him at the end of the video,6380666279_TN_6,laugh,6380666279,TN,put hands on head,turned the car,squat down,laugh,put the baby down 795,3899884605,why did the man in green bend down in the middle,3899884605_CW_6,pick up mud,3899884605,CW,to start speaking,support man in white,pick up mud,rockclimbing,to play with him 796,5596610883,what did the man in white and lady do after staring at the box,5596610883_TN_1,open the box,5596610883,TN,adjust something,turn back to her front,blow the candle,talk,open the box 797,2618840774,what did the baby do after he saw the yellow floating thing near the end of the video,2618840774_TN_5,reach for it,2618840774,TN,reach for it,lean backwards,stand and push box,smiling,continue eating then scooped for baby 798,3058094185,what does the boy do after sitting on the sofa for a while at the start,3058094185_TN_3,stand up,3058094185,TN,jump onto sofa,push dog away,try to touch cat,stand up,spinning around 799,4593636503,why is the lady s mouth moving,4593636503_CW_2,talking,4593636503,CW,to catch rolling fallen bapple,talking,the baby s toy,wind,direct attention 800,3676488640,why did the baby react after turn her head towards the camera at the end,3676488640_TN_4,smile,3676488640,TN,confused,cry,grad the food,enjoying the car ride,smile 801,3718722735,why did the green shirt girl press her knees before getting out of the water,3718722735_CW_3,support herself to climb out,3718722735,CW,excited,put something down,support herself to climb out,go to the girl in white,wash hands 802,3784430367,why did the girl stretch her arm and bring her bottle forward in the middle,3784430367_CW_2,to touch glasses,3784430367,CW,tightening the rope,drinking competition,to touch glasses,stop the boy from touching cat,dog can drink better 803,2712318761,why were the ladies in red and blue smiling while they dance,2712318761_CW_7,having fun,2712318761,CW,drink water,drinking it,having fun,perform for the audience,to look cool 804,11277503743,what did the two children do after shaking hands at the end,11277503743_TN_0,jump and pose,11277503743,TN,offer a handshake with other woman,jump and pose,play the drums,hug,shake hands 805,9692375711,why are the two people wearing sandals,9692375711_CW_0,walking in sand,9692375711,CW,to hold them together,to swim better,family shirt,keep warm,walking in sand 806,9934829764,what did the man in green do before the man in black jumped at the start,9934829764_TP_4,holding man in black,9934829764,TP,slide,guide the tractor,holding man in black,point middle finger,hold wood 807,4210971212,what does the child do after picking up the toy car the first time,4210971212_TN_5,takes it near the adult,4210971212,TN,takes it near the adult,take phone away,put it down,put on table in front,pick up the string 808,6141007489,why is the girl in pink wearing shoes in the room,6141007489_CW_0,just entered from outdoors,6141007489,CW,performance outfit,dancing,check herself in mirror,just entered from outdoors,hit the girl in white 809,7415842388,how does the baby express his liking towards the toy towards the end,7415842388_CH_2,pat the toy,7415842388,CH,pat the toy,mat,press the buttons,caress it,hit it 810,5842153096,why does the man in white turn his body and hold the strips to his right,5842153096_CW_5,keep away from the man performing,5842153096,CW,dancing,aiming to throw,drying the strips,keep away from the man performing,stretching 811,7154804054,what does the girl do after scooping up soil in her shovel,7154804054_TN_5,point upwards,7154804054,TN,adjust sleeves,pick a leaf,hug woman s leg,point upwards,walk away and play 812,8316378691,why does the boy cover his eyes at the beginning,8316378691_CW_7,surprise,8316378691,CW,play with his father,surprise,he is shy,crying,show interest 813,5228892128,why does the woman talking constantly look down,5228892128_CW_5,reading from the book,5228892128,CW,reading from the book,talk to camera,balance,she is tired,enjoying her face being touched 814,6032430171,how did the man in white make sure that the baby does not fall when walking,6032430171_CH_6,holds his hands,6032430171,CH,holds his legs,using a rope,stand in front of the baby,holds his hands,push the baby 815,12208961114,why does the boy in blue start jumping after initally brushing the woman s hair,12208961114_TN_3,excited,12208961114,TN,excited,copy her actions,standing behind watching,splash water,touch the petal 816,5929504257,what did the lady on the extreme right do after the man and woman on the left side let go of each other,5929504257_TN_4,start singing,5929504257,TN,climb ladder,start singing,jump,twirl and dance,walk back to the lady 817,8585296242,what did the boy in white stripes do after pointing at the tablet in the middle of the video,8585296242_TN_4,rub his nose,8585296242,TN,adjust his shirt,rub his nose,embracing it,the food on the plate,adjust tricycle 818,2404094215,why does the lady carry a bag in the video,2404094215_CW_1,hiking,2404094215,CW,take balloon away from baby,cleaning with it,show the things in her hand,flattening dough,hiking 819,2507835175,how does the baby signal for the dog to come,2507835175_CH_6,look at the dog,2507835175,CH,smelling it,mouth,look at the dog,try to pull out,bounce up and down 820,4542514917,where did the lady rest her arm with the bracelet each time after she fed the baby,4542514917_TN_9,table,4542514917,TN,table,camera man,mouth,basketball hoop,chin 821,5322122291,how do the man in suit and the lady show friendliness when they first meet,5322122291_CH_5,shake hands,5322122291,CH,nod head,kiss,shake hands,wear coats,raise his hand towards the lady 822,3277631367,why was the man without spectacles looking at the man with spectacles he speaks,3277631367_CW_2,listening to him speak,3277631367,CW,going with rhythm,snow hard to move,listening to him speak,playing guitar,sun tan 823,5379320378,why did the man in rainbow dress spin faster as the man in white moved his arms vigorously in the air,5379320378_CW_3,following his actions,5379320378,CW,to shake off the dirt,following his actions,play the rhythm,performing,attracting the attention of the lady in purple 824,2749616841,what did the kitten do after the fingers touched its head at the middle,2749616841_TN_6,move around,2749616841,TN,walked away,afraid,move around,crawls away,try to bite 825,8448503290,why did the lady holding the ball start bouncing the ball on the floor,8448503290_CW_0,to play with the baby,8448503290,CW,it is fun,to play with the baby,ready to shoot,get closer to baby,to make noise 826,7701673270,why does the baby turn his head in another direction and pout near the beginning of the video,7701673270_CW_6,distracted,7701673270,CW,air from balloon,looking at something,distracted,carried by man,pick out food 827,2869614883,how did the girl in blue get help for sliding down at the end,2869614883_CH_8,girl in orange push her legs,2869614883,CH,lady hold her,stood and wait in front,girl in orange push her legs,caress her,hold her arms tight 828,8448503290,what does the woman do after bending down and look at the baby in the middle,8448503290_TN_8,shake her head,8448503290,TN,push trolley,laugh,goes to play the piano,bring book closer to baby,shake her head 829,5322501684,what does the lady do after the man in white sits down at the end,5322501684_TN_11,sits,5322501684,TN,walk to the girl in white,sits,picks up something to drink,put plastic in pocket,look to the left 830,3441910437,why did the lady in the deepest part of the pool turn her head when the man dropped into the pool,3441910437_CW_7,prevent splashing,3441910437,CW,support her baby,watch the show,teach boy to swim,prevent splashing,use pool ledge for support 831,3090695613,why are the kids lying on their backs on the slope,3090695613_CW_0,to slide down,3090695613,CW,reading,enjoy the sunshine,to slide down,to get the microphone,look at the sky 832,5108643917,why is the baby sitting in the special chair,5108643917_CW_6,prevent him from going anywhere,5108643917,CW,restrict movement,learning to stand,leverage himself,prevent him from going anywhere,needs support 833,9234693804,why did the child s hand move around when the man is carrying him,9234693804_CW_2,walking,9234693804,CW,prevent from falling,shake baby,hold baby hand,walking,support the boy 834,7506103208,what did the actor do after the actress points to the floor,7506103208_TN_3,sit on the floor,7506103208,TN,continue to stroke it,walks to the bucket,sit on the floor,take off pants,move back to touch baby s foot 835,6051291805,what does the baby do after looking at the dog for a while at the start,6051291805_TN_3,walk away,6051291805,TN,play with guitar,lie on his stomach,walk away,shake its body,get dog to do tricks 836,4800432556,why did the boy stand up towards the end of the slide,4800432556_CW_1,to run out from slides,4800432556,CW,to run out from slides,wants to get down,suggest boy to get dowm,to throw the stone,to check the water level 837,9189821251,what did the girl do after the dog ran for the ball in the end,9189821251_TN_3,follow after dog,9189821251,TN,run to get the ball,throw the ball,follow after dog,turn one round,jump to play it 838,9921053695,why did the lady in blue picked up a glass with pink drink,9921053695_CW_10,to drink,9921053695,CW,show love,props for performing,teach the boy how to mix cocktail,to drink,pay attention 839,3389558639,why did the two boys laugh at the end of the video after looking at each other,3389558639_CW_1,said something funny,3389558639,CW,happy,playing,finish climbing,lost to him,said something funny 840,3278126113,why did the lady in red put the baby on her lap,3278126113_CW_3,let baby sit with her,3278126113,CW,curious,get the baby s attention,let baby sit with her,talk to her,too young to sit himself 841,3485644822,why did the lady look up to the camera,3485644822_CW_8,responding,3485644822,CW,responding,figuring how it works,to read something,moving the joystick,hand gestures 842,7415842388,why did the boy bend down at the start,7415842388_CW_6,pick up the toy and noodle,7415842388,CW,to fill his pump with water,touch sand water,sitting down,pick up the toy and noodle,balancing 843,5686014373,what does the man do after looking at the boy for a while at the end,5686014373_TN_7,kiss the boy,5686014373,TN,drink the cup,moves hands,make faces,get down to the ground,kiss the boy 844,5769549970,what does the man in dark blue do after the man in light blue dragged the policeman into car,5769549970_TN_2,beat him up,5769549970,TN,film the scene,beat him up,looks around in the car,stop the bleed,look at the camera 845,2400074985,why did the woman walk unsteadily after stopping herself,2400074985_CW_6,she is feeling dizzy,2400074985,CW,attend to something else,she is feeling dizzy,her partner talks to her,fun,reach the camera 846,2713525734,why did the black and white shirt man rub his head while he is walking,2713525734_CW_2,head itchy,2713525734,CW,tell him something,observe brown shirt man,head itchy,his face was cold,prevent girl from noticing his presence 847,11106167914,why did the bird keep breaking on the ground,11106167914_CW_3,find food,11106167914,CW,walking around,walk back to the hut,find food,playing with each other,resting inside cage 848,5630988927,what did the boy in brown do after he picked up the ball,5630988927_TN_8,throw it,5630988927,TN,put ball into hole again,throw it,walk away,carries him,point at camera 849,5649162069,what does the man in black jacket do after swinging his controller slightly for a while at the start,5649162069_TN_6,swing more vigorously,5649162069,TN,swing more vigorously,give to another person,hit the lady,take a drink,watch tv 850,6055990354,how is the man in blue helping the girl in blue in the middle,6055990354_CH_9,hold onto girl s harness,6055990354,CH,hold onto girl s harness,caress her,come close to the baby,use hand gestures,bend down 851,4681488749,why does the man in white behind wear a cap indoors,4681488749_CW_2,fashion,4681488749,CW,part of costume,chef,aiming to throw,fashion,talking 852,6045074723,how did the boy react after the start of the video,6045074723_CH_0,waves hand,6045074723,CH,kissing each other,carry and bounce ball,waves hand,doing half squat,sitting on the floor 853,3961320600,how is the red trolley being moved around,3961320600_CH_4,pulled by the lady,3961320600,CH,frantically press the buttons,pedaling,pulled by horse,pulled by the lady,attached to the tractor 854,6091405815,why is the cat jumping up and down,6091405815_CW_3,to catch the string,6091405815,CW,to catch the string,exercising,distracted,playing with girl,on a trampoline 855,3522761604,why does the lady holding the baby lure him towards the candle,3522761604_CW_2,get him to blow the candle,3522761604,CW,get him to blow the candle,support baby,playing with him,support the baby s walking,stop the baby 856,3616966959,what did the man do after the baby spoke into the microphone the second time,3616966959_TN_4,put back to his mouth,3616966959,TN,touch yellow button,come close to the baby,pick up toys,stand up,put back to his mouth 857,13842949604,why did the man in blue who walked past the house in the middle of the video wear a cap,13842949604_CW_3,sunny,13842949604,CW,sunny,talking,to adjust the mic,agree with man in blue,to be closer to the microphone 858,3376490453,what does the baby boy do after the man puts the toy car on the table at the start,3376490453_TN_9,push it,3376490453,TN,bring toy to other side,change direction,push it,dance,open laptop 859,3246498270,can the baby hold onto the bottle properly after chasing it near the end,3246498270_TN_5,no,3246498270,TN,no,take the toy out,swing arms,fall backwards,opened its mouth 860,5357351052,why does the lady move her hands in the video,5357351052_CW_7,dancing,5357351052,CW,gesturing to audience,dancing,marching,support baby,exercising 861,3361754590,what does the girl in grey do after approaching the kitchen cupboard at the beginning,3361754590_TN_4,turns around,3361754590,TN,give her a hug,sit down,turns around,close the fridge door,brush the grey object 862,6197272373,what does the man do after putting his hand on his face,6197272373_TN_7,takes it off,6197272373,TN,walks away,adjust his clothes,look at a lady,takes it off,wipe his eyes with towel 863,5092364159,why are the people holding onto something on their hands while they are dancing,5092364159_CW_2,controller for dancing game,5092364159,CW,performance,controller for dancing game,having fun,excited about singing,happy 864,4447314310,why did the baby run to other side,4447314310_CW_4,to look for another sheep,4447314310,CW,happy,to look for another sheep,chasing balls,approach to the bicycle,trying to open the item 865,8364779007,what do the boys do after picking up the snow,8364779007_TN_8,walk up,8364779007,TN,show something to the adult,yes because he skies well,move to the rut,walk up,playing with them 866,12212440674,what does the boy do after rolling over to his side near the end,12212440674_TN_1,stand up,12212440674,TN,looked at the lady,stand up,lies on his side,unhappy,touch the water 867,4580666992,how was the man in black rested as he laughed and ate his chocolate,4580666992_CH_9,sitting in chair,4580666992,CH,sitting in chair,standing,talke from bowl,use spoon,with hand 868,4154619533,what did the man in jacket do before picking up the object and manipulating it,4154619533_TP_9,examine the object,4154619533,TP,continue digging,joking around,hand gestures to show agreement,examine the object,talking 869,5463556386,why did the lady among the audience hold a camera up towards the performers while they are performing,5463556386_CW_4,record for memory,5463556386,CW,hold score for them to refer,feel the music,coordinating with the band players,place sheet music,record for memory 870,10087471526,how did the boy in yellow pants tried to bury his feet,10087471526_CH_7,put feet in sand,10087471526,CH,put feet in grass,put feet in water,put feet in sand,dig holes,turning 871,2401981865,why did the baby laugh as the man tickling him,2401981865_CW_2,physiological arousal,2401981865,CW,dancing happily,physiological arousal,celebrate his birthday,celebrating his birthday,ticklish 872,4336614054,why did the man bend down near the end of the video,4336614054_CW_7,take his glove,4336614054,CW,to rest,talk to camera,take his glove,pick up the fish,fold the sides of cardboard 873,2596538788,why is the man dressed so differently,2596538788_CW_0,photoshoot,2596538788,CW,to drink,stylish,dancing with the baby,speak to someone,photoshoot 874,9247615457,how did the child make sure she does not fall while standing up,9247615457_CH_2,hold onto sofa for support,9247615457,CH,hold onto side of the chair,hold pole with right hand,hold the lady,grab pillow for support,hold onto sofa for support 875,6320419082,why are they holding hands,6320419082_CW_1,dancing,6320419082,CW,controlling the helicopter,posing,dancing,pushing each other,swimming 876,3826103533,why did the baby turn and tap the white headrest behind him,3826103533_CW_2,interested,3826103533,CW,interested,to continue spinning,exploring how keyboard works,feeding session,dancing pose 877,6698703081,why is the man in blue holding his camera up at the end,6698703081_CW_7,taking photo,6698703081,CW,to record the men kayaking,taking photo,pass camera to other man,to record the interview,admire scenery 878,5078580976,how did the boy in yellow get into the dark room,5078580976_CH_5,step back himself,5078580976,CH,run very fast,pushed by boy in blue,carried by lady,step back himself,cycle into room 879,2401981865,why did the baby shake its leg vigorously when the man bit it,2401981865_CW_4,happy,2401981865,CW,face the baby towards him,playing,kissing the leg,stabilise himself,happy 880,9234693804,why does the man moves in different direction with the baby,9234693804_CW_9,to play,9234693804,CW,to talk to someone,learning to walk,dancing,excited,to play 881,2551446323,how did the man in white test if the bird is dangerous to approach at first,2551446323_CH_6,put finger at a distant,2551446323,CH,sing into mic,walked,thick gloves,put finger at a distant,bending it 882,2869614883,why does the baby fall over in the middle of the video,2869614883_CW_4,tripped down by tubes,2869614883,CW,excited,pick up toy,to eat,does nt like the taste at first,tripped down by tubes 883,9038264963,why did the man in green put down the piece of paper after the recites the entire script,9038264963_CW_4,finish reading,9038264963,CW,record for later use,read to the audience,to catch his breath,finish reading,reading to girl 884,11166208165,how did the lady play with the child,11166208165_CH_2,copy his facial expression,11166208165,CH,copy his facial expression,use poles,with her hands,intrigued,dance together 885,4336614054,why does the man roll of the green sled after he reaches the bottom of the slope,4336614054_CW_2,finished with the ride,4336614054,CW,move down hill,finished with the ride,accompany the baby,doing stunt,to keep balance 886,4822747943,why did the grey chair appear near the end of the video,4822747943_CW_7,old lady put it there,4822747943,CW,teaching the person in blue,grab ball,old lady put it there,washing something,look at baby 887,5108643917,why did the adult hold the camera closer to the baby at the end of the video,5108643917_CW_7,get closeup,5108643917,CW,get closeup,stop baby from going too deep,excited,no more space to push cart,reaching for bottle 888,2940555445,how is the baby bottle held in front of the baby,2940555445_CH_4,someone holds bottle up,2940555445,CH,operated by machine,cradle hold,someone holds bottle up,using the straw,hit them 889,4699202703,why does the boy smile at the end of the video,4699202703_CW_5,happy to take photo,4699202703,CW,happy to take photo,adult kiss him,pose for camera,adult hug him,enjoy filming 890,3719700394,why does the man with glasses look down when talking,3719700394_CW_0,reading from script,3719700394,CW,reading from script,demonstrating,it is sunny,drawing,describing something 891,2735742477,how did the lady bring the girl in pink to play with the balloon,2735742477_CH_8,hold her hands,2735742477,CH,nervous,hold her hands,remove wrapping paper,push her,kiss 892,7095619943,why did the boy lift up the straw lid in the middle of the video,7095619943_CW_9,to drink water,7095619943,CW,attracted by it,pick up the ball,playing,to drink water,happy 893,2507835175,how does the baby react after the dog approaches it,2507835175_TN_5,close eyes and open mouth,2507835175,TN,close eyes and open mouth,wag tail,turn to look,bite toy,looking left and right 894,11219960546,why does the girl lean towards the boy when the boy hugs her,11219960546_CW_5,pulled closer,11219960546,CW,not to block the rest,to take the book,pulled closer,practicing a dance,balance her 895,2514277462,why are the men moving their hands in front of him,2514277462_CW_0,play game,2514277462,CW,cycling,engage audience,talking to each other,to prove his point,play game 896,5683573889,what did the two dogs do after they walked away in the middle,5683573889_TN_5,looking around,5683573889,TN,lie down and roll around,looking around,run around and play,run to camera,wakes up and lean forward 897,6894565761,how did the boy help the girl draw a perfect hand shape on the board,6894565761_CH_6,put his hand for her,6894565761,CH,play slides to show,trace according to printed image,show videos from phone,raise girl hand to trace,put his hand for her 898,3090695613,what did the kid in white do after slide down the slope for a while,3090695613_TN_3,start rolling down,3090695613,TN,giving her space to perform,go to the playground,watching over kid,laughing,start rolling down 899,6907135798,what does the lady do after waving,6907135798_TN_3,continue cycling,6907135798,TN,hi-five,nod head and stares,stand up,stop bicycle,continue cycling 900,10211516755,what does the girl do after putting her spoon down at the plate at the start,10211516755_TN_6,scoop the food,10211516755,TN,watermelon,scoop the food,pick up bowl,takes another piece of dough,moves around 901,3495538595,why are some men sitting on the sand near the waters,3495538595_CW_6,talking to each other,3495538595,CW,fun,reading,talking to each other,playing percussion,santa claus giving out presents 902,4458565343,what does the man in white do after putting the camera up his face at the beginning,4458565343_TN_6,clicks the picture,4458565343,TN,clicks the picture,touch nose,listening to the guitar playing,smile and pose,stand around awkwardly 903,5322501684,how did the kid attracted eveyone s attention,5322501684_CH_3,crying,5322501684,CH,smiling,crying,playing,swinging,dancing 904,5379320378,why did the man in white putting up his as the man in rainbow dress spin around,5379320378_CW_1,balance,5379320378,CW,react to camera,reaching out to the lady in purple,adjusting his shirt,make hair straight,balance 905,5795646653,what does the boy in grey do after the boy in green reaches the end,5795646653_TN_3,jump over him,5795646653,TN,climb onto the toy,preparing to shoot,walk around the table,jump over him,drop his hat 906,3574384655,why did the woman hold onto something when she sit on the horse,3574384655_CW_2,not fall off,3574384655,CW,give good performance,comfortable,wants to get off,not fall off,practise 907,3416353558,why is there a person standing in front of the lady,3416353558_CW_3,to officiate wedding,3416353558,CW,look at audience,look her plait,speaker,place sheet music,to officiate wedding 908,3252591972,why did the man hit the can after picking it up,3252591972_CW_0,shake something out,3252591972,CW,little yogurt left,shake something out,check if wood is screwed properly,check the perspective,feel thirsty 909,4569009647,why does man in blue jacket scratch his head when talking,4569009647_CW_6,thinking,4569009647,CW,dj,relaxed,hug dog,thinking,he is performing a show 910,9251779370,why is the woman in black with long hair keeping her head on her hand,9251779370_CW_1,resting her head,9251779370,CW,resting her head,easier to drink,hand gesture,she gives talk,prevent cream touching hair 911,3717997473,what did the girl do before she jumped into the water in the middle of the video,3717997473_TP_3,hand gesture,3717997473,TP,hand gesture,look at ground,pull skirt up,touch her head,floating 912,5298163149,what does the boy in red do after reaching for the purple bowl at the start,5298163149_TN_3,put them in red box,5298163149,TN,point at the boy,pass it to boy in green,play with clay,puts down the watering can,put them in red box 913,2581312980,why does the lady keep turning her head while speaking,2581312980_CW_9,eye contact,2581312980,CW,eye contact,check her speech notes,illustrate her point,think about what to say,gesturing 914,4514212431,why does the lady hold a cake in front of the baby,4514212431_CW_1,the baby s birthday,4514212431,CW,to feed baby,hold the cupcake,the baby s birthday,prevent her from messing the cake,can get sweet 915,5620767697,how does the smaller dog move away from the bigger dog,5620767697_CH_5,run,5620767697,CH,walk backwards,attracted by stick,run,swim,turn its head and walk 916,11866348213,what did the man do after the boy entered the room at the end,11866348213_TN_0,close door,11866348213,TN,sit on the couch,close door,sit down,lean against the screen,enters a room 917,5363776323,why did the baby look down at the start,5363776323_CW_0,playing with toys,5363776323,CW,playing with toys,looking at tv,fidgeting,yawn,to give the cameraman sand 918,7701673270,what does the baby do after the man places the camera in front of it,7701673270_TN_8,look at it,7701673270,TN,smile,splash water,talking,look at it,rock chair 919,5719002896,why did the singer held his hands up and clapped at the beginning of the video,5719002896_CW_2,signal start of performance,5719002896,CW,to take a high angled video,sing to the baby,find the audience entertaining,respond to the lady,signal start of performance 920,10211516755,why did the girl look down at the table when the spoon was in her mouth,10211516755_CW_4,food dropped on table,10211516755,CW,prevent spilling,listening to lady in black,food dropped on table,flipping through her book,having a meal 921,13983574774,how did the boy in green unwrap the present after sitting on the sofa,13983574774_CH_0,remove plastic,13983574774,CH,pulls it,remove plastic,climb,wipe off his hands,from the bottom 922,8395915736,how did the nurse clean the baby,8395915736_CH_6,wipe baby with cloth,8395915736,CH,wipe baby with cloth,use bib to wipe,cleansing product,tissue papers,water bath 923,10830982353,how did the man with white cap wipe the box clean,10830982353_CH_2,wipe with tissue,10830982353,CH,lay it down,swing up and down,wipe in cycle,wipe with tissue,put under water 924,2832642923,what happens after the baby wipes his own face at the end of the video,2832642923_TN_9,lady feeds another mouth,2832642923,TN,does nt feels good,get back up,point towards the camera,lady feeds another mouth,walk to camera 925,2436811248,why did the baby grab the screen after the man open it,2436811248_CW_1,to check the page,2436811248,CW,curious about flashing toy,look at dog,to check the page,shocked,see what s there 926,4654125833,why is the man holding the baby,4654125833_CW_3,for support,4654125833,CW,boy is still learning,for support,show baby in video,play with the baby,stabilize the baby 927,3376490453,how does the baby boy pick up the toy car from the ground at the start,3376490453_CH_6,bend down and grab,3376490453,CH,in circlr,pick up and put in box,bend down and grab,turn the steering wheel,jump around it 928,4933467831,why did the boy in blue walk out from behind and walked to the center of the stage,4933467831_CW_3,part of performance,4933467831,CW,to make it correct,part of performance,to take the ball,wait for woman,pick up cloth 929,5617607038,why is the baby lying on the blue mat,5617607038_CW_4,being massaged,5617607038,CW,being massaged,resting,looking around,comfort and support,playing 930,5827074668,what did the man do after the baby opened the carbinet doors,5827074668_TN_6,pick up handle,5827074668,TN,show him a toy,pick up handle,adjust diapers,tickled him,touch his chest 931,6129861127,why is the brown hair woman moving her hands while she is singing,6129861127_CW_0,playing her instrument,6129861127,CW,playing her instrument,hand gestures,refer to song lyrics,point at slides,wave at audience 932,6025249212,why do the children wear masks,6025249212_CW_1,performing,6025249212,CW,personal hygiene,playing in shallow water,keep warm,protect from sun,performing 933,4569009647,how do the people show that they are listening,4569009647_CH_7,look at speaker,4569009647,CH,sing and play guitar,speaking,look at speaker,hand gesture,through the tablet 934,2582976771,why did the boy walk to the other side of the room near the beginning,2582976771_CW_0,to play with lady in white,2582976771,CW,look after the baby,place the gift,take a toy,carrying bags,to play with lady in white 935,3196912028,why did one of the boys not join the group when the teacher is at the table,3196912028_CW_7,want to do something else,3196912028,CW,playing,want to do something else,swimming,discuss something in class,not finish the food in mouth 936,2822875146,what happens to the man after spreading his feet far away at the end,2822875146_TN_6,fall,2822875146,TN,bend down and touch the woman s back,join back the line,fall,talk to the shirtless man,lie down 937,2869614883,what does the boy do after he fell in the middle of the video,2869614883_TN_6,rolled get back up,2869614883,TN,get back onto skateboard,fell,move forward,rolled get back up,look at the camera 938,5596610883,why did the man in white looked down in the middle of the video,5596610883_CW_4,look at his keychain,5596610883,CW,moving with rhythm,looking closely to someone,look at pebbles,make music with instrument,look at his keychain 939,7282289126,why was the table cloth raised up near the beginning fo the video,7282289126_CW_3,hand,7282289126,CW,opening box,pull the fish in,hand,to pat his cat,introducing boy in yellow 940,6290415351,why are there people standing at the concrete walls at the side seen at the beginning,6290415351_CW_4,watching the race,6290415351,CW,prop,dancing,watching the race,playing piano,preparing to jump over wall 941,2940555445,how does the baby prevent milk spill,2940555445_CH_5,wear a bib,2940555445,CH,held it tightly,someone holds bottle up,wear a bib,holds her tightly,move up and down 942,9720272113,why is the boy in yellow smiling at the start of the video,9720272113_CW_4,happy,9720272113,CW,finish climbing,he is bored,throw snowballs,happy,pose for camera 943,3322267252,why is the man in a red jacket looking at the wall mural,3322267252_CW_0,observing a cartoon,3322267252,CW,observing a cartoon,for the picture,avoid drowning at sea,decoration,to take picture 944,5827074668,why did the baby reach his hand into the cabinet after the man kept the tool,5827074668_CW_2,wants to touch tool,5827074668,CW,wants to touch tool,keep tidy,he dropped his toy,for safety,he see a soft toy 945,2471845614,what does the mc do after hugging the female in wedding dress at the end,2471845614_TN_9,hug the male in suit,2471845614,TN,stop dancing and watch,walk,hug her,walk away from adult,hug the male in suit 946,12603962103,how does the man with black electric guitar check on other members,12603962103_CH_3,look at his right,12603962103,CH,strumming guitar,hand gesture,look at his right,follow the screen,microphone 947,9576327121,why did the baby hold a bowl on his hands,9576327121_CW_0,play with it,9576327121,CW,to feed himself,suck thumb,play with it,dinner,safety 948,5036295532,why is the boy holding his hands together at the start of the video,5036295532_CW_0,holding something in hands,5036295532,CW,holding something in hands,playing,holding a hen,looking at the slope,let the girl feed him 949,2612683715,what did the parrot do after drinking water,2612683715_TN_2,walk around,2612683715,TN,relaxed,moved away,open beaks again,walk around,look at bird 950,13884124143,how did the man land after he fell at the end,13884124143_CH_10,landed on his back,13884124143,CH,baby pulled them,slipped,lose balance,landed on his back,reverse and accelerate forward 951,2806691984,what does the boy do after throwing the ball up at the start,2806691984_TN_6,hit with racket,2806691984,TN,smell the toy,bring it to lady in jeans,jump up,hit with racket,shift the wooden thing 952,4330113365,why are the two man playing their musical instruments in a room while standing up,4330113365_CW_6,practice,4330113365,CW,the troupe leader,practice,stylish,shaking the baby,take a stick 953,3389558639,why are the boys not eating,3389558639_CW_5,done with meal,3389558639,CW,small space,done with meal,to keep it dry,play with dog,to keep cool 954,6451572823,why did the man waving the string forth and back,6451572823_CW_2,to entertain the cat,6451572823,CW,calling a ship,to entertain the cat,push toy train,get dolphin attention,to suspend in air 955,10211516755,why did the girl pick up the food that was on the table,10211516755_CW_2,clean up what she dropped,10211516755,CW,restless,clean up what she dropped,want to eat cake,wants to eat,prevent spilling 956,3957553632,why do the people look down as they walk,3957553632_CW_0,watch their step,3957553632,CW,watch their step,looking for the ball,narrow way,watching the man with chains,enjoying the walk 957,6451572823,how does man reattach string to stick at the end,6451572823_CH_10,tie a knot,6451572823,CH,move hands,tie a knot,use both hands to hold tightly,reading it from the notes,put on his lap 958,5795646653,how does the boy move down the hill,5795646653_CH_7,roll,5795646653,CH,ride the toy down,moving the bicycle,roll,carried down by man,walked down 959,2514277462,what did the dog do after it reached the sofa,2514277462_TN_6,jump onto sofa,2514277462,TN,pet the dog,jump onto sofa,stare at cat,put something on the floor,sit down 960,2835672361,why does the man bend over in the fountain,2835672361_CW_2,look closely at the card,2835672361,CW,look closely at the card,for water to drip down,drinking,drink,see the cup changes color 961,2422465594,how does the smaller rabbit get away from the bigger rabbit at the end,2422465594_CH_8,hops away,2422465594,CH,walk down,fence,move head and body vigorously,fly off,hops away 962,6091405815,why did the cat run after the rope when the lady took the rope from it,6091405815_CW_5,cat likes rope,6091405815,CW,defend itself,play with it,rope is connected to doll,to keep the rope,cat likes rope 963,8686073700,why did the man shooting pause for awhile before he shoots,8686073700_CW_2,aim,8686073700,CW,interact with camer,aim,no more loud sounds,he reached the shore,looking at the baby 964,2735742477,why did the girl in colourful dress shake her body near the end of the video,2735742477_CW_9,excited,2735742477,CW,throw at the man,fidgeting around,sneeze,walk towards dog,excited 965,7282289126,why did the girl put her cup down before drinking again in the middle of the video,7282289126_CW_6,looking at screen,7282289126,CW,to watch the ball,to kiss baby,pick up blanket,looking at screen,get more drink 966,6335467068,what did the baby do after resting on the sofa for quite some time,6335467068_TN_3,get up,6335467068,TN,sit on sofa,cry,get up,play the drum,jump on couch 967,9525696229,why does the girl run towards the sea,9525696229_CW_5,want to feel the water,9525696229,CW,to jump over the seashell,prevent her flag from being taken away,looking at dolphins,play in the sea,want to feel the water 968,2774585614,why did the girl put her hands on the aquarium glass,2774585614_CW_0,interact with the fish,2774585614,CW,wet the cloth,warm their hand,use pool ledge for support,playing,interact with the fish 969,3343411237,why did the boy hold onto the board with one hand while putting his hands into the water after the second wave pushes him closer to the shore,3343411237_CW_2,maintain balance on board,3343411237,CW,maintain balance on board,wet body,avoid getting wet,stay on the board,to see the shoreline 970,5719002896,how did the singer amplified his voice,5719002896_CH_3,sing in the microphone,5719002896,CH,shouting,speak loudly,loudspeaker,dance and move his hands on stage,sing in the microphone 971,4888273655,why did the lady stroke the dog on its back at the start,4888273655_CW_0,caressing for him,4888273655,CW,curious,playing with baby,untangle the leash,caressing for him,playing with dog 972,3060710599,why did the boy hold the two sides of the toy s mouth,3060710599_CW_9,open the toy s mouth,3060710599,CW,put food into it,illustrate what he is mimicking,pout water,open the toy s mouth,to close it 973,5036295532,how did the baby feel after putting down the spoon,5036295532_TN_8,happy,5036295532,TN,takes them out,happy,clap,look behind him,take out spoon 974,5408572348,how did the ladle drop on the ground through passes from the girl to the baby in pink,5408572348_CH_3,baby drop it,5408572348,CH,girl throw it,dog bite it,baby drop it,slipped,ladle was too hot 975,11772124873,how does the man make music on the instrument,11772124873_CH_8,hitting it using hands,11772124873,CH,moving the strings,amplify sound with microphones,hitting it using hands,part of performance,amplify the music to increase volume 976,5271062042,why did the man playing the trumpet move his body around as he plays the instrument,5271062042_CW_1,engrossed in performance,5271062042,CW,take something away from man,engrossed in performance,extend his hands to hit the notes,dodge from lights,interacting with the bird 977,3522761604,why does the baby reach out his hand towards the cake after blowing off the candle,3522761604_CW_3,eat it,3522761604,CW,her birthday,eat it,the girl to blow,birthday cake candles,easier to blow 978,3058094185,how does the man prevent the boy from moving forward in the middle,3058094185_CH_6,hold the boy,3058094185,CH,hold the boy,put in chair,refuse to stand,carried by man in grey,knee pads 979,2551446323,why did the bird jump towards the man when the man in white approached it,2551446323_CW_7,want to play with man s finger,2551446323,CW,copy the cartoon character,want to play with man s finger,the wind was big,do nt like strangers,help him unbuckle 980,9251779370,why are the people sitting around the table,9251779370_CW_2,talking and drinking,9251779370,CW,talking and drinking,listening to speaker,playing cards,playing a game,have a meeting 981,3196912028,why did the group of children gather at the table,3196912028_CW_1,draw,3196912028,CW,observing the child,classroom,draw,dinner,containing food for them 982,5620767697,why does the dog run intitially,5620767697_CW_0,playing with each other,5620767697,CW,playing with each other,follow the ball,scared by big baby,want to escape,fetch ball 983,12603962103,why did the boy playing the black electric guitar look at his right towards after playing his guitar for a while,12603962103_CW_2,checking on other members,12603962103,CW,part of performance,listen to the guy playing ukulele,to amplify his voice,to begin,checking on other members 984,3347998465,why are the girls jumping,3347998465_CW_2,playing,3347998465,CW,shout something,playing,the baby s toy,spinning wheel,encourage girl to jump 985,9038264963,how did the man in white show that he is engrossed in what the man in green is reciting,9038264963_CH_3,constantly look at him,9038264963,CH,hold the microphone,sing into mic,constantly look at him,perform in front of her,nod constantly 986,8812093275,how are the children moving around in the park,8812093275_CH_5,running around,8812093275,CH,crawling,slide forward,on stilts,pokes the ground,running around 987,12952480344,why did the lady stretch her left hand up in the video,12952480344_CW_5,turn the tap,12952480344,CW,paddling,to get the toy keys,to cut deep into crab,turn the tap,pull rope with strength 988,3250020598,how did the lady make the girl stand at the end of the video,3250020598_CH_8,pull her hands up,3250020598,CH,push her bottom,clap hands,move away from her,hug her,pull her hands up 989,8442904731,why is the boy in purple sleeves dragging the luggage,8442904731_CW_0,drag for fun,8442904731,CW,to see the commotion behind him,drag for fun,want to play with toys,try to knock him down,keep warm 990,8095838321,why did the boy in blue stretch out his hands while moving at the start,8095838321_CW_0,climb monkey bars,8095838321,CW,pick up ball,to stand up,approach the man,climb monkey bars,trying to get up 991,3741339360,why is the baby in yellow moving his legs vigorously while on the swing,3741339360_CW_4,excited,3741339360,CW,show the camera,playing with baby,excited,dancing to music,telling the girl in green something 992,4250392878,why is the man wearing gloves,4250392878_CW_10,ensure safety,4250392878,CW,cycling,costume of play,ride motorcycle,heating over fire,ensure safety 993,11866348213,how is the boy moving along the hallway,11866348213_CH_6,running,11866348213,CH,sitting in car,walk,running,ride the toy car,went forwards and backwards 994,5078580976,what did the boy in blue do after the bottle drops,5078580976_TN_3,pick it up,5078580976,TN,kick it away,pass to man in red,throw into air,pick it up,bounce it 995,6070985304,what does the man in yellow do after stretching for a while at the start,6070985304_TN_4,jump into a pool,6070985304,TN,move his hands around,chop the wood,jump into a pool,bend down,lie backwards 996,6315028936,why is the baby punching the shaped pillow at the start and in the middle of the video,6315028936_CW_3,fidgeting,6315028936,CW,wanted to play the piano,playing with baby,looking for food to eat,fidgeting,angry at pillow 997,5178855777,why does the cat turn back and forth after returning to the person,5178855777_CW_7,to brush at the right spot,5178855777,CW,prevent from touching its head,for food,to brush at the right spot,annoyed,play with it 998,2581312980,what did the man in blue stripes do after laughing,2581312980_TN_15,stares,2581312980,TN,crawl to the lady,juggle it,stares,bend down,kick ball 999,3616966959,what did the man do after singing into the microphone in the middle,3616966959_TN_2,point it back to baby s mouth,3616966959,TN,turned red,playing his instrument,bring the microphone to the boy,moves away from microphone,point it back to baby s mouth 1000,2637595500,what did the baby do before he touched the sofa,2637595500_TP_7,looked at the sofa,2637595500,TP,looking around,fall,looked at the sofa,touch baby s foot,move his arms 1001,5635020430,why is the man in yellow smiling in the middle of the video,5635020430_CW_2,excited to throw someone,5635020430,CW,find the dance entertaining,find the activity fun to play,excited to throw someone,unwrapping presents,to loosen his fingers 1002,5686014373,why did the boy lie on top of the man,5686014373_CW_0,play with him,5686014373,CW,reading book,play with him,fell from his board,let baby get off,play with baby 1003,4593636503,why did the boy in front of the lady listen and clap his hands,4593636503_CW_3,enjoy her talk,4593636503,CW,enjoy her talk,applaud his effort,express joy,the dog caught the branch,encourage him 1004,6594027277,what did the man in grey do after he pointed at another person,6594027277_TN_9,go back to his seat,6594027277,TN,point at the screen,go back to his seat,sit on table,yawn,bend towards man in red 1005,3160575610,why was the girl in red moving her arm up and down at the start,3160575610_CW_4,playing drums,3160575610,CW,put glass cups away,spotlight to grab attention,yes,ensure safety,playing drums 1006,3826103533,why did the baby grab the blue plushwhen he look up,3826103533_CW_4,want to play,3826103533,CW,want to play,stretching,fun,happy,squeeze it 1007,3958650538,why is the kid not eating food on the table,3958650538_CW_4,concentrated on mobile game,3958650538,CW,sleeping,done with meal,to keep cool,concentrated on mobile game,watching the elephants 1008,3339687949,what does the baby do after approaching the red ball at the start of the video,3339687949_TN_6,pushes it,3339687949,TN,play with her,pushes it,put his hands up,climbed back up,attract the dog 1009,3962139149,why did the man with spectacles shaked his head and pointed at the blocks,3962139149_CW_1,to tell the other man to adjust,3962139149,CW,to tell the other man to adjust,to ensure they will hit,unable to talk,hit on the man s foot,visualizing what he talks 1010,2833808682,why does the baby swing her arms down at the start of the video,2833808682_CW_1,to drop bag down,2833808682,CW,to drop bag down,reacting to what she saw,looking at bucket,crying,playing 1011,2401079660,why is the man smiling,2401079660_CW_6,finds baby amusing,2401079660,CW,celebrating his birthday,see old friends,finds baby amusing,react to camera,showing off the chicks 1012,11277503743,why do the two children put both their hands up in front of them at the start,11277503743_CW_7,hold cue cards to refer to,11277503743,CW,to walk,looking at the person,hold cue cards to refer to,warm up,performing 1013,13884124143,why did the man on the surf board swing his hands back and forth at some point,13884124143_CW_7,for balance,13884124143,CW,to catch the wave,trying to not fall,for balance,paddle,trying to balance himself 1014,3798468368,how does the baby ensure support while climbing the chair,3798468368_CH_10,holds onto the chair,3798468368,CH,lift baby s legs,help of adult,holds onto the chair,lie prone on back,use hands and legs 1015,9662978367,how does the boy transport himself across the pavement,9662978367_CH_1,cycling,9662978367,CH,jumps,skateboard,cycling,walking,automobile 1016,6290415351,what does the man do after signalling,6290415351_TN_8,turn around,6290415351,TN,pass the ball,showing us an experiment,turn around,surfing on water,eat waffle 1017,5228892128,why is the guy on the sofa holding on to his hands tightly,5228892128_CW_3,thinking deeply,5228892128,CW,play with the boy,watching video,to open the bottle,fake belly,thinking deeply 1018,7093500213,what does the man in yellow do after picking up a drum at the start,7093500213_TN_5,put it at the side,7093500213,TN,hit the drums vigorously,start singing,put it at the side,play the tuba,lift up red bottle 1019,3036261707,why is the boy dancing in the middle of the room,3036261707_CW_0,happy,3036261707,CW,happy,playing with him,fidgeting,playing,part of their routine 1020,3976362264,why does the child interact with the toy in this manner when playing with it,3976362264_CW_2,fun,3976362264,CW,talking,follow the guidance,playing in the snow,fun,touch the toy 1021,5298163149,how did the boy in yellow mimic real cooking,5298163149_CH_5,put toy food,5298163149,CH,put toy food,hold waffle pan,pretend to open stove,sprinkling contents over chicken,stir with whisk 1022,5108643917,why is the baby s face covered with blue stains,5108643917_CW_2,baby ate cake messily,5108643917,CW,dropped it,look at how much was squeezed,smell it,food stains,baby ate cake messily 1023,3832090694,how does the elephant react after the woman in blue tries touching it,3832090694_TN_7,step backwards,3832090694,TN,hit the bigger elephant,bite the cat,push the other elephant,relaxed,step backwards 1024,3332115271,how do the men in orange participate in the performance,3332115271_CH_2,sing and clap,3332115271,CH,moving animation,press the key,amplify the music to increase volume,jump around,sing and clap 1025,3478131928,why is the man riding the bike,3478131928_CW_0,go across the pond,3478131928,CW,cannot walk around,go across the pond,pass something to friend,teach the girl to cycle,prevent splashing 1026,6913450810,why are the kids dancing and moving inside the indoor,6913450810_CW_2,playing with each other,6913450810,CW,saw their idol,excited,performance,taking photo,playing with each other 1027,2401243971,how are the two white ducklings moving at the start,2401243971_CH_3,walk,2401243971,CH,stay on board,move to other side,swimming,walk,with hammer 1028,9947344865,why does the tram come to a stop at the green post,9947344865_CW_1,train stop,9947344865,CW,reached his stop,train stop,adjusting the sound,want to carry girl in red,keep his belonging 1029,5729533897,why did the lady lean towards the girl in sleeveless shirt,5729533897_CW_6,cue her to talk,5729533897,CW,feed her,dancing,wipe her face,stopping her from touching cake,cue her to talk 1030,3469347353,how did the man supported the baby,3469347353_CH_9,carry in his arms,3469347353,CH,lean forward and look at baby s face,put on his lap,kick the ball,play with child,carry in his arms 1031,9921053695,why are there two girls drinking from the milk bottle at the start,9921053695_CW_0,drinking competition,9921053695,CW,wipe ice cream from girls mouth,proud of opening it,drinking competition,thinking action,stabilise 1032,3495427984,why did the girl raise her hands at the end of the video,3495427984_CW_6,playing with dress,3495427984,CW,playing with dress,adjust her hair,finish presentation,ending pose,attracted by crocodile 1033,3962139149,why does the man in black look at the blocks before he hits it,3962139149_CW_0,ensure angle is correct,3962139149,CW,pick ball up,to drink,ensure angle is correct,watch him play,playing a game 1034,3453984843,why are there a group of people looking at the man in black ride the motorcycle,3453984843_CW_5,intrigued,3453984843,CW,he is performing,listening to him,cycling,intrigued,for people to play 1035,5298163149,why did the boy in yellow remove the blue pot cover near the start,5298163149_CW_8,so he can stir,5298163149,CW,keep the toys,to put more ingredients,so he can stir,to scoop out toy,for girl to see pot 1036,3213208382,what did the child do after the sled reached the bottom of the slope,3213208382_TN_11,get up,3213208382,TN,walking,pull up the sled,get up,take his skateboard,throws it at the lady 1037,6045074723,why are the boys smiling at the start of the video,6045074723_CW_1,having fun,6045074723,CW,get food,to see how to move the rod,having fun,finish climbing,surprised camera came nearer to him 1038,8395915736,why did the baby open his mouth constantly,8395915736_CW_0,crying,8395915736,CW,crying,seeking attention,hungry,looking at the man,looking at the nurse 1039,5597037980,why did the boy swing the bottle after picking it up,5597037980_CW_1,playing,5597037980,CW,playing,pushed by adult,push the baby,playing with baby,throw bottle at adult 1040,2622782176,why did the boys fall onto the sofa after jumping up,2622782176_CW_1,resting,2622782176,CW,bounce baby on cushion,to approach the baby walker,falls down,safety,resting 1041,5717777815,what does the boy do after stretching his legs for a while,5717777815_TN_5,walk forward,5717777815,TN,exit stage,stretch out arm,walks away,illustrate his points,walk forward 1042,6451572823,why did the other cat join in near the end,6451572823_CW_5,interested,6451572823,CW,to remove water from his body,defend itself,prevent from touching its head,to get the plush fish,interested 1043,3376490453,why did the man pick up the toy car and place in front of the baby,3376490453_CW_5,baby dropped it,3376490453,CW,support baby in walking,play with her,toy driver,for fun,baby dropped it 1044,3058094185,what does the man do after the boy stands up in the middle,3058094185_TN_7,hold the boy,3058094185,TN,show boy toy plane,throw up the scarf,pray and bow,hold the boy,pat his head 1045,3233438837,why do the men on stage move around as they sing,3233438837_CW_2,performing,3233438837,CW,emotional,main performer,keep the beat,performing,enjoying themselves 1046,8287688503,what did the woman in purple pants do after she threw the ball at the man at the start of the video,8287688503_TN_5,walk to the microphone stand,8287688503,TN,talk and smile,eat ice cream,go to the adult,play with water,walk to the microphone stand 1047,2482994684,what does the boy do after he first put the glass on the table,2482994684_TN_7,adjust towel,2482994684,TN,make funny faces to attract baby,opened its mouth,adjust towel,waves at the camera,look down at boy 1048,13256002144,why are the people opening and closing their legs and ski boards as they moved,13256002144_CW_6,control their speed,13256002144,CW,fast speed,control their speed,performing,guide the child,follow route 1049,9576113974,what does the kid in yellow do after the man picks her up,9576113974_TN_9,play the instrument,9576113974,TN,blushes,bite a sandwich,put his arms down,play the instrument,cries 1050,10415409886,what do the men do after they pushed the tyre down the first time,10415409886_TN_0,bend down,10415409886,TN,swim back towards the man,press the yellow button,hold railing of bed,bend down,put his other hand on wheel 1051,5686014373,how does the man tell the boy to move in the middle,5686014373_CH_1,point and push him away,5686014373,CH,spinning,pushing his belly,walks back and forth,punch air,point and push him away 1052,3764313862,why did the baby sit down on the ground after kneeling down for quite some time,3764313862_CW_1,more comfortable,3764313862,CW,to make toy work,they become tired,playing with toys,more comfortable,fell down 1053,2582976771,what did the boy do after he touched the table in the middle of the video,2582976771_TN_4,put his palm up,2582976771,TN,put his palm up,put in front of baby,adjust tricycle,put down ball,moved the car on the table 1054,6783533553,how did the man played the guitar,6783533553_CH_9,while sitting down,6783533553,CH,with straps,while sitting down,standing up,using picks,lying down 1055,4443349080,why does the boy in blue pick up the ball before running to the fence,4443349080_CW_0,bring ball with him,4443349080,CW,to make a score,bring ball with him,flying kite,catch soccer ball,to kick it 1056,3055520900,why does the brown cat approach the white bowl,3055520900_CW_0,check for food,3055520900,CW,waiting for cat to come out,ambush the black cat,check for food,to fight with dog,playing with plush toy 1057,2869614883,why do the children wear swimsuits in the backyard,2869614883_CW_0,playing in water pool,2869614883,CW,splash water,play with it,preparing to go swimming,playing in water pool,support 1058,3322267252,what did the lady in black do after looking at something for a while,3322267252_TN_6,walk away,3322267252,TN,stands up,wave,make hand gestures,walk away,follow the girl 1059,4126506012,why does the boy move his body vigorously while playing,4126506012_CW_5,excited,4126506012,CW,excited,dancing,pushed by lady,exercise at same time,reacting to the dog 1060,3469347353,why did the man open his mouth again towards the end,3469347353_CW_6,let baby explore inside again,3469347353,CW,let baby explore inside again,talk to each other,play with camera,performing acts,to get something 1061,4501146951,why do the boys run back inside,4501146951_CW_2,to hide,4501146951,CW,move to next base,to pick up the gift,to hide,play with robot,he could not control 1062,3233438837,why are the men moving their bodies as they sing,3233438837_CW_11,dancing,3233438837,CW,dancing,enjoying the rhythm,song lyrics,singing,to show his passion 1063,3233438837,why do the men all wear suits,3233438837_CW_0,performing,3233438837,CW,bodyguard,it s sunny,performing,engage the audience,for safety 1064,3899884605,what did all the dogs do after the man in green threw something across the river,3899884605_TN_4,chase after it,3899884605,TN,climb back onto the boat,put it in the box,chase after it,get off canoe,got back up 1065,4571644750,why is the boy in red driving the toy car around,4571644750_CW_2,fun,4571644750,CW,to talk to man,press horn,fun,change direction,chase boy 1066,2735742477,why did the girl in colourful dress turned back after she threw the balloon,2735742477_CW_1,get more balloons,2735742477,CW,jump with girl,safety,get more balloons,lost balance,dance together 1067,5649162069,why did the man with blue consoler bend down,5649162069_CW_4,to do an action in game,5649162069,CW,to do an action in game,take a break,to lie on tiger,scared of exploding rocket,dj 1068,4593636503,why is the lady pointing to the cow as she speaks,4593636503_CW_1,gesture,4593636503,CW,wash hands,responding to the men,gesture,want to taste the water dripping,guide girl 1069,6430774273,why does the woman hold a camera when approaching the kids,6430774273_CW_6,record for memory,6430774273,CW,record for memory,to sell the camera,to show them what a camera is,to hit them with the camera,to protect camera 1070,6225185844,what does the boy do after picking up the cardboard from the floor,6225185844_TN_3,moves it around his body,6225185844,TN,walk to baby,get up and dance,moves it around his body,pick it up,put hand inside the toy 1071,8692968296,why did the man waved his hands at the end of the video,8692968296_CW_10,greeting,8692968296,CW,play piano,signalling the start,make cheers gesture,push fish s down,greeting 1072,8192589078,why is there a string attached to the toy,8192589078_CW_6,leash,8192589078,CW,stabilise cloth and lever cloth up,protection at the edge,leash,to move the toy,playing near the cliff 1073,3060710599,why did the boy bend down at the beginning of the video,3060710599_CW_0,hold it in a different way,3060710599,CW,check the tent,pick up the ball,teach the girl how to swing,look at the cup,hold it in a different way 1074,2471845614,why is the female holding the microphone,2471845614_CW_1,emcee,2471845614,CW,main vocalists,emcee,grooving along with music,speaking in different direction,make voice louder 1075,2504514045,what did the black cat do after it jumped onto the bed,2504514045_TN_1,stood on the ledge,2504514045,TN,lick,agitated,look around,stood on the ledge,sniff the person 1076,3347998465,how are the girls playing in the bouncy castle,3347998465_CH_4,jumping,3347998465,CH,shake her head,jumping,shake baby with leg,shake hands,copy his facial expression 1077,3488196927,why did the men constantly hold the shields in front of them,3488196927_CW_1,for defense,3488196927,CW,stacking,for defense,cold weather,waiting for their turn to speak,move forward 1078,12015983824,why did the boy pick up the bottles one by one when he was talking,12015983824_CW_1,checking,12015983824,CW,introduce the wine,for them to put down class,checking,drank pool water,feed baby with milk 1079,11973479386,what does the man do after the lady stands up in the middle,11973479386_TN_0,put object back down,11973479386,TN,sit and listen,put object back down,walk away,swings the baby,point on screen 1080,3418738633,why does the man leaning at the door hold a blue cup while watching the other two men talking,3418738633_CW_6,halfway through drinking,3418738633,CW,prevent him falling off,refer to what he says,looking at phone,halfway through drinking,helping the lady 1081,6225185844,what does the boy do after holding the cardboard to his body,6225185844_TN_1,use it as a prop,6225185844,TN,move his mouth,move backwards,he throws it away,use it as a prop,put near his face 1082,3191035895,why is baby holding his foot in the beginning,3191035895_CW_0,sucking toes,3191035895,CW,touch the man s face,reaching for book,learning to walk,sucking toes,look at what she stepped 1083,6150459616,what does the girl in pink do after picking up a pink toy at the start,6150459616_TN_7,put it down,6150459616,TN,hold toy up,wear it,put it down,throw below the piano,bite it 1084,8331338778,why does the girl almost fall initally,8331338778_CW_3,slippery floor with snow,8331338778,CW,playing,lose balance,slippery floor with snow,she got hurt,practicing 1085,4514212431,how does the boy reach for the blueberry on the cake,4514212431_CH_7,left hand,4514212431,CH,left hand,two hands,take bite,jump up and down,from the ground 1086,8683094222,what does the brown dog do after sniffing the barefoot woman s shoes,8683094222_TN_0,walk a few steps,8683094222,TN,picks up the hat,walk a few steps,continue spinning,swing left arm,walk away 1087,4660797892,what did the girls do before running in a circle at the end,4660797892_TP_5,dance,4660797892,TP,chair,pick up a ball,move to her left,put her hands up,dance 1088,7274130480,why did the man in white looked and smiled at the boy,7274130480_CW_8,amused,7274130480,CW,surprised camera came nearer to him,amused,agreement,excited to play with the cat,pose for the video 1089,2712318761,why did the lady in blue shift parts of her hair in front of her eyes away after removing her sunglasses,2712318761_CW_3,hair blocking eyes,2712318761,CW,signal her to speak,take control from the girl,put on baby,hair blocking eyes,take a gift 1090,9525696229,why does the girl keep brushing the hair off her face,9525696229_CW_3,strong wind,9525696229,CW,clean the face,finished talking,show affection,do not want to be filmed,strong wind 1091,6197272373,why does the guy wear suit and tie,6197272373_CW_1,formal event,6197272373,CW,formal event,same team,prevent it from falling,performance attire,engage the audience 1092,5408572348,why did the baby in pink lose grip and drop the ladle after the girl in blue passed it to her,5408572348_CW_2,too young to have strong grip,5408572348,CW,ladle was too hot,play with baby,angry and fustrated,too young to have strong grip,to rescue toddler who fell 1093,4164627367,what did the girl do after she turned back to the camera in the video,4164627367_TN_2,turn back,4164627367,TN,stand up,scratch her head,turn back,eat ice cream,touch baby 1094,4140970558,why is the mouth of the black shirt woman moving even though she is not holding any food,4140970558_CW_4,chewing,4140970558,CW,listening to woman in white,hot sun,she is tired,resting her head,chewing 1095,3036261707,why did the boy stand still after dancing for a while,3036261707_CW_2,looking at something,3036261707,CW,not experienced at swimming,video,looking at something,new to the piano,teach him to dance 1096,6297374320,why does the lady standing keep her head bent the entire time,6297374320_CW_0,cutting the pumpkin,6297374320,CW,cutting the pumpkin,eating pumpkin,waiting to start,common courtsy,trying to look for rubbish 1097,2776803136,how did the boy show affection to the small dog at the beginning of the video,2776803136_CH_2,carry it,2776803136,CH,sitting on the floor,carry it,pat the belly gently,put in mouth,look around it 1098,3798468368,why does the baby climb on and off the chair very slowly,3798468368_CW_7,careful,3798468368,CW,change direction,no force applied on it,being fed,careful,he was moving in it 1099,7282289126,what did the girl do after she touched the laptop screen,7282289126_TN_4,drink,7282289126,TN,get up and move away,smile,show baby how to steer wheel,drink,put her hands up 1100,13643603625,why does the boy only run in after the black card is removed,13643603625_CW_5,wait for cue to act,13643603625,CW,supervise it,talk to boy,point to something,carry another kid,wait for cue to act 1101,2824890841,why does the girl in pink sit on man in black sweater,2824890841_CW_0,no space to sit,2824890841,CW,drag him out of box,ceremonial pose,coaching the girl,no space to sit,observe as audience 1102,9284736689,how does the man in black singlet move around the house after the middle part of the video,9284736689_CH_6,run,9284736689,CH,run,swing,jump with one leg,walk,pull boy s toy 1103,12212440674,what does the girl do after she lies down on the snow,12212440674_TN_2,move her arms up and down,12212440674,TN,ropes,move her arms up and down,follow girl,sit down,drink from a cup 1104,9189821251,did the girl get back the ball after she threw at the dog the second time,9189821251_TN_1,no,9189821251,TN,pick another ball,no,raised her hand,laughs,stand and watch 1105,8530515192,what was the girl in purple wearing on their finger,8530515192_CW_5,ring,8530515192,CW,clips,pacifiers,ring,unicorn bracelet,tissue 1106,4531056940,why are the men on stage at the start of the video holding microphones,4531056940_CW_0,to present speech,4531056940,CW,adjust microphone,facilitating activity,dancing with music,to present speech,perfrom music 1107,4953208186,what did the man do after the woman pass her the mic,4953208186_TN_3,starts speaking,4953208186,TN,nodding,kiss the man,keeps the camera still,starts speaking,helps the man button 1108,4789310455,why is the rocker swinging at the end of the video,4789310455_CW_2,baby keep moving,4789310455,CW,automatic movement,someone shook the rocker externally,wind disturbance,baby keep moving,change in button 1109,2822875146,why is the man holding onto the red rope,2822875146_CW_0,being dragged,2822875146,CW,gesture to tune,being dragged,singing,engage with audience,to take picture 1110,3666012638,why is the man in black geared in safety boots,3666012638_CW_3,fixing the car,3666012638,CW,fixing the car,protect themselves,part of outfit,protect his hands,protect from sun 1111,4181031443,what does the lady with red cap do after putting down the camera at the end,4181031443_TN_4,walk,4181031443,TN,put hands together,look to the left,pass microphone to red cape man,runs forward,walk 1112,8731154071,what does the man next to the person twirling fire sticks do after drinking the alcohol,8731154071_TN_6,spits at the fire stick,8731154071,TN,wave smoke away,claps,drinks the cup,spits at the fire stick,roll up sleeves 1113,5298163149,what did the boy in yellow do after putting the green spoon into the blue bowl,5298163149_TN_4,stir,5298163149,TN,scoop up toy carrot,hit bowl,stir,let go of spoon,bent forward to see bowl 1114,3508141028,what did the woman in pink do after the girl turns around and looks at her,3508141028_TN_11,point below the piano,3508141028,TN,point at the sky,raise hands for dance moves,point below the piano,woke up from sleep,hit her with cushion 1115,11973479386,how does the man control the light at the start,11973479386_CH_5,press the buttons,11973479386,CH,press the buttons,hit instrument with sticks,move left and right,to check his endurance,spectacles 1116,5290336869,why is the girl turning the pages of the book near the beginning,5290336869_CW_0,flip to another page,5290336869,CW,make sure it s recording,direct the baby s attention,point toward something,flip to another page,to read the contents 1117,8812093275,why did the boy in black shorts run away from the girls in floral dress,8812093275_CW_0,avoid balloon stomped,8812093275,CW,to find the cameraman,avoid balloon stomped,prevent her flag from being taken away,to get onto table,trying not to get caught 1118,3265024425,what does the female lion do after squatting down for a while at the start of the video,3265024425_TN_6,charges forward,3265024425,TN,charges forward,smells it,reach out for food,flipped,lie down 1119,5687893796,why are the people moving their bodies around the room,5687893796_CW_2,dancing,5687893796,CW,for performance,for people inside to watch,giving instructions on how to dance,live video,dancing 1120,5443388088,what does the lady in black do after walking away from the room at the end,5443388088_TN_8,went to the kitchen,5443388088,TN,kiss the boy,puts it back on,turn around,went to the kitchen,run around stage 1121,4815162722,how was the candle blown out,4815162722_CH_7,lady blew it,4815162722,CH,the baby blew it,using a fan,the wind blew it,fireworks are set off,lady blew it 1122,2399505725,why are the dogs running in circle in the beginning of the video,2399505725_CW_10,trying to chase each other away,2399505725,CW,guide the dog,slipping,trying to chase each other away,playing,chase the ball 1123,6470188301,what did the boy do after standing up from the first fall,6470188301_TN_3,move his hands vigorously,6470188301,TN,falls,backflip,play with toy,move his hands vigorously,lie back down 1124,8692968296,why does the musician move his body when performing,8692968296_CW_2,move follow the rhythm,8692968296,CW,to play his guitar,move follow the rhythm,feel uncomfortable,moving the dog,their playing instrument 1125,6783533553,why does the musician look at the guitar,6783533553_CW_5,check what string to play,6783533553,CW,tired standing at one spot,check what string to play,get into rhythm,engrossed in music,part of performance 1126,3555157875,why are the women dressed in similar clothing,3555157875_CW_0,performing,3555157875,CW,performing,protect her eyes from sun,sisters,prevent hair get wet,dancing 1127,3574384655,what did the horse do after it slowed down for a while in the middle of the video,3574384655_TN_9,rides again,3574384655,TN,point somewhere,raise one leg,walk away from room,turn around,rides again 1128,2580553233,why did the man grip the microphone tightly and hold it upright,2580553233_CW_7,sing passionately,2580553233,CW,emcee talking to audience,man is holding guitar,to project his voice to everyone,sing passionately,presenting 1129,3696483717,what did the bird do after coming off the paper,3696483717_TN_3,turn back to paper,3696483717,TN,turn back to paper,tightened grip,pecking,yes,run away 1130,5826071152,what does the baby do after kneeling up at the beginning of the video,5826071152_TN_6,drags the table,5826071152,TN,sitting on the floor,adjust shirt,squeezing tube,drags the table,drinking milk 1131,4250392878,why is the man hitting the screw,4250392878_CW_2,guiding child,4250392878,CW,to play properly,talk to each other,training,guiding child,fell 1132,3058094185,why did the small boy clap his hands as he watches the television,3058094185_CW_1,enjoying the show,3058094185,CW,talking to baby,enjoying the show,something exciting on tv,encourage him,where the car is 1133,6315028936,why does the baby sit in the middle of the shaped pillow,6315028936_CW_1,prevent falling,6315028936,CW,prevent falling,forced to sit there by parent,support baby,good sleeping posture,pillow not big enough 1134,4949142411,in which direction did the trains go after passing each other,4949142411_TN_3,on the tracks,4949142411,TN,smiles,next to the boy s ear,more smoke comes out,hold in his palm,on the tracks 1135,6782372702,why did the cat stretch its hands when the adult touched it,6782372702_CW_1,enjoyed it,6782372702,CW,enjoyed it,reach for ball,chase laser pointer,comb its fur,push away adult hands 1136,6157608500,what does the man do after carrying the baby,6157608500_TN_8,walk away,6157608500,TN,walk away,stretch out his arms,take bottle away,hold her up,guide boy to lift handle 1137,3603780993,why is the man touching the dog s neck after a while in the beginning,3603780993_CW_2,show affection,3603780993,CW,resting,curious,tired,caressing for dog,show affection 1138,2771561128,why did the boy put a twist sign on the girls head when they are posing for the photo,2771561128_CW_2,he was playing,2771561128,CW,he was playing,playing with the boy,to read to the lady,pass her the toy,want to dance together 1139,6070985304,why did the man behind hold a camera,6070985304_CW_1,take videos,6070985304,CW,cleaning,take videos,fixing camera,showing lady,promoting camera 1140,7701673270,why is the kid crawling on the floor,7701673270_CW_0,can not stand,7701673270,CW,baby dropped them,playing with toy,practicing crawling,can not stand,trying to catch fishes 1141,4400119620,why is the lady holding flowers,4400119620_CW_0,part of ceremony,4400119620,CW,control dogs,bridesmaid,posing for photograph,listen to instructions,part of ceremony 1142,10087471526,why does the boy in yellow pants keep twisting his body after he turns around,10087471526_CW_1,bury his feet in the sand,10087471526,CW,playing,pushing the rod,dance,ceremonial clothes,bury his feet in the sand 1143,8442904731,why did the girl in green pants keep getting into the scene when the man in white is playing with the boy,8442904731_CW_3,ran back and forth,8442904731,CW,walk gently,guide her to swing golf,jump happily,observe boy,ran back and forth 1144,4688033528,why does the man in blue put up the photo at the beginning,4688033528_CW_9,to see clearly,4688033528,CW,oversee and coaches,pick up something,pick up disc,curious,to see clearly 1145,3478131928,why does the man keep his legs up when traversing through the water,3478131928_CW_3,do not want to get wet,3478131928,CW,swim,do not want to get wet,cycling,carrying heavy items,hold for balance 1146,11402789396,how does the man adjust his clothings at the end,11402789396_CH_9,pulls up his pants,11402789396,CH,hug,pulls up his pants,in the shoulder bag,move left and right,press buttons 1147,2591888090,why is the man following behind the little boy that is pushing the baby walker,2591888090_CW_7,safety,2591888090,CW,moving the baby forward,taking turns,add strength and help navigate,to better interact with baby,safety 1148,4542514917,why is the man touching the baby s abdominal part,4542514917_CW_11,support,4542514917,CW,interacting with baby,support,let the baby lean,stabilize the baby,pretend to be hungry 1149,5783801873,why did the motorcyclist look at his sides before moving past the small opening,5783801873_CW_1,prevent hitting the barriers,5783801873,CW,check for incoming people,maintain balance,prevent hitting the barriers,lost balance,looking for animals 1150,3243801466,how did the lady in pink show the child in black tights dance moves,3243801466_CH_6,move her fingers,3243801466,CH,remove wrapping paper,dancing,scoresheet,move her fingers,push her 1151,4628526478,why is there a person sitting at the back of the carriage,4628526478_CW_6,resting,4628526478,CW,resting,acting as an animal,playing with kids,eat food,playing piano 1152,4347565343,why are the musicians seated during the perfomance,4347565343_CW_0,play instrument,4347565343,CW,play instrument,listening to speaker,readingn notes,play the piano,watching 1153,4571644750,what does the boy in blue shorts do after successfully open the cap of the bottle,4571644750_TN_5,carry bottle,4571644750,TN,waves hand,play with water,carry bottle,droped on table,take blue toy from dog s mouth 1154,3764313862,why did the person put his hand between the baby s face and the dog s paws when the dog is stretching its paws,3764313862_CW_4,prevent scratching,3764313862,CW,prevent scratching,playing with dog,want to play with it,wants the toy,push dog away 1155,8702139498,why did one of the guy in blue raise his hand before the vehicle moved,8702139498_CW_5,signal ready for moving,8702139498,CW,take another picture,protect the car,signal ready for moving,expressive,gesture goodbye 1156,11402789396,what does the woman do after approaching the man,11402789396_TN_7,helps the man button,11402789396,TN,lie on floor resting,listening,helps the man button,looks forward,playing with toys 1157,6320419082,what did the girl in pink do after she picked up the christmas hat,6320419082_TN_11,wear it,6320419082,TN,run towards the lady in black,pick up the candle,show baby how to use toy,hold toy up,wear it 1158,12952480344,how does the woman get the beer out of the tube,12952480344_CH_1,turn the tap,12952480344,CH,with his hand,turn the tap,tilted,both hands,drag her in a circular motion 1159,5228329870,how did the baby show his excitement from watching the screen,5228329870_CH_4,by dancing,5228329870,CH,smile,press the keyboard,wearing a pink jacket,by dancing,kick 1160,2399794335,why is the man in black carrying a big bag on his hands,2399794335_CW_2,office bag,2399794335,CW,cameraman,contains things needed for hike,walk on muddy fields,office bag,for safety 1161,10622567214,why did the dogs constantly look in the direction of the humans,10622567214_CW_2,grab attention,10622567214,CW,playing with man,wants to play more,grab attention,to play with him,play with each other 1162,13643603625,what does the girl do after rubbing her hands together,13643603625_TN_10,stand still,13643603625,TN,move the items on her hands,walk away and play,wear pants,stand still,talk to the lady 1163,7161607459,how does the camera man use the camera,7161607459_CH_3,press the shutter,7161607459,CH,wear spectacles,press the shutter,man made it,take it to herself,raise his fingers 1164,4698772089,why does the person break down the food into smaller pieces before feeding the cats,4698772089_CW_7,easier to eat,4698772089,CW,check for staleness,give the crumbs,easier to eat,share with more people,shove it into cat's paws 1165,5706721105,why are the men standing near the microphone,5706721105_CW_0,speaking to the crowd,5706721105,CW,for him to sing,lecturing,give a speech,speaking to the crowd,amplify sound from guitar 1166,12212440674,why are the kids moving their hands,12212440674_CW_3,playing in the snow,12212440674,CW,happy,curious in surroundings,playing in the snow,person playing with the baby,dance around in a circle 1167,3252591972,why did the man reach for the red cloth after patting it,3252591972_CW_1,cover the surface,3252591972,CW,cover the surface,gesture to tune,put toy away,to drink water,touch the pearls 1168,7512810680,what does the man in black do before throwing the last can,7512810680_TP_5,shakes his hand,7512810680,TP,read the card,shakes his hand,sit back,touch the ground,pass on the arrows 1169,3099327773,how does the boy at the end hold the baby,3099327773_CH_8,lift her up,3099327773,CH,lift her up,carry baby,hug baby,holding baby with his hand,carry 1170,5322122291,why did the man in suit squint his eyes,5322122291_CW_0,light too bright,5322122291,CW,take video,they are cold,tired,cant see properly,light too bright 1171,4513212069,why does the baby constantly move its arms and legs,4513212069_CW_6,feeling cold,4513212069,CW,making himself comfortable,feeling cold,prevent cramps,enjoying and resting,reflects 1172,6227157477,how do the four men moving coordinate correctly,6227157477_CH_2,listen to commander,6227157477,CH,with the rope,bicycle,wear singlet,follow the screen,listen to commander 1173,5029903979,why does the baby hold on tight to the man s hand while standing,5029903979_CW_10,for support,5029903979,CW,moving the baby forward,keep the baby sleeping,help him walk,stay stable,for support 1174,5363776323,what does the baby do after picking up the first blue toy,5363776323_TN_3,put it in cylinder,5363776323,TN,steps on the toy,goes to get food,push the blue book down,eat,put it in cylinder 1175,11973479386,what does the lady do after standing up in the middle,11973479386_TN_4,raise arm,11973479386,TN,applying cream on face,raise arm,fall backwards,look at lady in black,playing with toys 1176,2940555445,what does the baby do after the person removes the bottle from its mouth,2940555445_TN_8,open her eyes,2940555445,TN,look down,open her eyes,touch the bottle cap,puts it back,put his hold hand in bottle 1177,12208961114,why is the boy in blue wearing blue sitting on the woman,12208961114_CW_0,playing with the lady s hair,12208961114,CW,put her in the water,watching her play,replace him to play game,playing with the lady s hair,playing with the item 1178,5357351052,why does the lady constantly look at the girl while dancing,5357351052_CW_1,trying engage girl,5357351052,CW,distract girl,bored of watching herself,trying engage girl,excited,talking to girl 1179,12603962103,why are there microphones in front of the boy holding tambourine and the boy playing the piano,12603962103_CW_1,main vocalist,12603962103,CW,performance,to play the song,try to sing to beat,rest hands,main vocalist 1180,4815162722,what does the lady in pink do after touching her lips with her finger at the start,4815162722_TN_8,kiss man,4815162722,TN,kiss hand,look back,waves at camera,kiss man,started singing 1181,8448503290,what does the woman do after playing with the ball for a while at the end,8448503290_TN_6,carry baby,8448503290,TN,run after baby,carry baby,walk away,run back,stop running 1182,7987394824,why are there so many kids hanging around this area,7987394824_CW_1,playground,7987394824,CW,preparing for competition,it is a classroom,attracting attention,playground,entertaining the dogs 1183,3179829544,why did the baby put the toy on the floor,3179829544_CW_2,no longer interested,3179829544,CW,for cat to play,no longer interested,person throw toy,exploring movement,crawling 1184,10415409886,how do the men move the tyre,10415409886_CH_3,by pushing up and down repeatedly,10415409886,CH,by pushing up and down repeatedly,digs out sand with his hands,paddle,turn it,joystick remote 1185,9211491999,why is the kid swinging his hands around,9211491999_CW_0,playing around,9211491999,CW,reflects,happy,playing around,part of performance,gesture 1186,3277631367,why did the man in spectacles hold up his hand at the start,3277631367_CW_0,showing product,3277631367,CW,singing,gesturing while talking,showing product,unable to talk,counting something 1187,4250392878,why did the child pick up a screw from the floor and put it on the wood,4250392878_CW_6,help man,4250392878,CW,help man,hold for support,lost his balance,fall,more comfortable at crawling 1188,5254588486,why is the baby looking down at the start of the video,5254588486_CW_0,watching the phone screen,5254588486,CW,reading storybook,looking at caterpillar,laughing,eat food,watching the phone screen 1189,2580553233,why did the man sit up straight after singing the first few notes of the song,2580553233_CW_2,sing properly,2580553233,CW,feeling the music,passionate,join other members,sing properly,show excitment 1190,5717777815,why did the lady behind the boy wear a scarf indoors,5717777815_CW_3,fashion,5717777815,CW,fashion,protect her eyes from sun,writing,costume,check how dress looks on her 1191,4444271481,why did the man in black shorts hold onto the man in blue shorts before stepping up on the waterfall,4444271481_CW_0,need support,4444271481,CW,pour water,need support,water bag,playing with baby,let go of girl 1192,3676023277,what does the woman in black do after picking up the umbrella,3676023277_TN_9,dances with it,3676023277,TN,lead the horse away,dances with it,clap her hands,goes away,speaks to the audience 1193,4042843624,why did the man put his legs out after stopping the boat,4042843624_CW_4,step out,4042843624,CW,avoid screen,say goodbye,step out,check for damage,waves pushing opposite direction 1194,8395915736,why did the nurse put a blue thing onto the bay s umbellical cord,8395915736_CW_3,clip it,8395915736,CW,clip it,pick up dirt,clean hands,put baby into the ward,assist her holding the baby 1195,3718722735,why is the green shirt girl walking in the water barefooted,3718722735_CW_0,do not want to wet shoe,3718722735,CW,it s sunny,waiting and talking,do not want to wet shoe,rinse crab,finish talking 1196,8090435597,what did the adult do after the boy stretched his arm towards the ipad,8090435597_TN_4,bring it closer to him,8090435597,TN,put it back,pushed the cart,watched television,bring it closer to him,hit the drum 1197,8994022703,why is the lady holding mobile in her hand,8994022703_CW_0,messaging someone,8994022703,CW,helping,take photos,to pass it to the other person,baby wanted to see video,messaging someone 1198,5379320378,why did the man in rainbow dress spin his head as he spin around,5379320378_CW_0,performing,5379320378,CW,play with baby,illustrate something,part of game,performing,fixing the plane 1199,5597037980,how did the boy pick up the bottle from the ground,5597037980_CH_5,squat down and picked it,5597037980,CH,squat down and picked it,adult pass bottle to him,use his legs,catch bottle,put his hands up 1200,2830844169,what did the boy do after he removed the bottle from his mouth a while in the middle of the video,2830844169_TN_6,lift bottle to drink,2830844169,TN,kiss baby,put in front of baby,look at the camera,rolled get back up,lift bottle to drink 1201,3252591972,why does the man bend down near the end,3252591972_CW_8,squuze,3252591972,CW,look at the cameraman,pick up bowling ball,play the piano,squuze,counting 1202,3339687949,why did the baby ignore the elmo toy on the floor,3339687949_CW_5,dislike the toy,3339687949,CW,dislike the toy,bite it,change position,watch tv,let girl walk through 1203,3339687949,what does the baby do after approaching the tv cabinet at the end of the video,3339687949_TN_7,climbs it,3339687949,TN,yawn,flail around,climbs it,closes it,opens his mouth 1204,5942411333,why are the man and the lady wearing such exotic clothing,5942411333_CW_1,formal marriage party,5942411333,CW,formal marriage party,dress up party,it s sunny,cold weather,photoshoot 1205,9397185434,why do the people raise their hands towards the end,9397185434_CW_2,triumphant,9397185434,CW,swimming,audience watching performance,plane has move forward,triumphant, gesture 1206,4210971212,why is the child holding on to a remote control,4210971212_CW_0,control toy car,4210971212,CW,curious in surroundings,part of performance,control toy car,support itself,play 1207,7751455900,what did the baby do after picking up the objects,7751455900_TN_3,lick them,7751455900,TN,playing with the toy,playing,lean forward and put head down,lick them,shake his arms 1208,3826103533,what does the baby do after jumping while facing front for a while,3826103533_TN_6,play with green toy,3826103533,TN,eating,suck his thumb,play with green toy,hit the toy,play with the yellow sheet 1209,7095619943,why is the boy looking down in the video,7095619943_CW_1,trying ot open bottle,7095619943,CW,untie the toy,looking after him,looking at boy,gesturing in his speech,trying ot open bottle 1210,6896590813,why does the lady walks towards the boy in blue shirt at the end,6896590813_CW_4,see if he is hurt,6896590813,CW,let child give speech,to teach child to walk,play with the boy,see if he is hurt,pass the boy bags 1211,2415116705,how are the people gathering around the bucket,2415116705_CH_6,sit around on the floor,2415116705,CH,sit around on the floor,bending his knees,wish an oxygen tank,man step on the side,create waves 1212,7095619943,what did the boy do after he drank from the bottle,7095619943_TN_4,opened its mouth,7095619943,TN,nods his head,roll over,roll up sleeves,opened its mouth,eats the food 1213,3597467356,why does the boy throw sand into the water in between,3597467356_CW_3,playing,3597467356,CW,show his expert skills,wave has not reached,to put it somewhere,to make a deeper hole,playing 1214,3136263720,how can the baby be moved on the floor so easliy,3136263720_CH_7,sit in a cardboard,3136263720,CH,baby stroller,by pushing it,jumps,sit in a cardboard,on his stomach 1215,3961320600,how is the baby being held,3961320600_CH_6,carried by the lady,3961320600,CH,carried by the lady,laying on the ground,touched it,swing,caress the baby 1216,4855795432,how did the woman in blue react after pointing out to one of the cakes,4855795432_TN_7,introduce how to make it,4855795432,TN,stand up,stretch her feet,introduce how to make it,put her hand up,search the bag 1217,3350647572,how does the girl react after the toy drop off,3350647572_TN_4,pick it up,3350647572,TN,laugh,sit down,spin in circles,happy,pick it up 1218,5379320378,why do we see so many heads in the video,5379320378_CW_8,audience,5379320378,CW,enjoy the surrounding,audience,camera taking photos,picture taken,people taking photos 1219,4514212431,why does the baby shake his hands after unsuccessfully pick up a blueberry on the cake,4514212431_CW_5,frustrated,4514212431,CW,play with the lollipop,easier to cut,birthday s tradition,frustrated,enjoying ice cream 1220,6783533553,why does the musician tap his legs on the ground,6783533553_CW_2,following the beat,6783533553,CW,restless,gesturing,following the beat,end of song piece,adjust his shoes 1221,5630988927,why did the boy in brown hug the tree after throwing the ball over,5630988927_CW_11,standing in his position,5630988927,CW,standing in his position,access the fruits,wants to dig the ground,to annoy,he loves nature 1222,7274130480,why did the boy put his hands down after he pointed at himself,7274130480_CW_7,touch the bed,7274130480,CW,looking after him,surprise,talking to the boy,touch the bed,shy 1223,5465138661,why is the baby moving his hands and feets in the middle of the video,5465138661_CW_9,enjoy playing with the girl,5465138661,CW,enjoy playing with the girl,trying to balance,take the toy,hold the finger,enjoying the show 1224,5322501684,why does the kid slips away repeatedly from man s hands,5322501684_CW_1,lose balance,5322501684,CW,play with snow,does not want to be filmed,tripped,lose balance,play with the ball beside the man 1225,4699202703,why does the boy put the camera down at the end of the video,4699202703_CW_4,done taking photos,4699202703,CW,pass to adult,done taking photos,play with baby,to get up,finish filming 1226,4565373467,why is the person on the left bent down on the beach before the wave comes,4565373467_CW_4,pick up sand,4565373467,CW,pick up sand,lost his balance,to pick water bottle up,feel the waves,keep his balance 1227,3058613626,why is the man with a red hat holding a microphone,3058613626_CW_0,singing,3058613626,CW,signaling blue train to move,tall enough to see,climbing on the wall,speaking,singing 1228,2401981865,how did the baby move away from the man at the end,2401981865_CH_5,flip his body,2401981865,CH,flip his body,walk away,by the hands,crawl,turn the handle 1229,4644208937,why did the boy constantly move his feet on rocks on the wall,4644208937_CW_3,climb up,4644208937,CW,move tyre in front,climb up,fidgeting,riding the toy horse,playing with the machine 1230,6971785627,why did the white shirt man at the back seat touch his nose after holding the front seat,6971785627_CW_3,itchy,6971785627,CW,clean dirt off nose,itchy,put makeup,resist him,wanted to blow nose 1231,5368363137,why is the boy smiling so widely,5368363137_CW_0,dancing happily,5368363137,CW,watching television,laugh at dog,dancing happily,excited to play with the cat,get to hit pinata 1232,6623776437,how did the boy moved himself towards the toy at the beginning of the video,6623776437_CH_0,run towards the toy,6623776437,CH,use his hands,crawl,run towards the toy,playing the piano,click laptop 1233,9520717551,what does the lady in white do after looking at her right at the end,9520717551_TN_6,look to the left,9520717551,TN,kisses the baby,walk away,look to the left,stand up,standing around 1234,2622782176,what did the man in brown do after he remove his left hand from his front pocket,2622782176_TN_6,adjust spectacles,2622782176,TN,move it closer to him,adjust spectacles,unlock door,behind him,turns toward the man in beige 1235,4228152919,what does the child do after looking closely at the toy at the beginning,4228152919_TN_7,touch the toy,4228152919,TN,turn to his back,gives up trying,move around,touch the toy,frown 1236,4513212069,what does the person do after wrapping the blanket around the baby,4513212069_TN_9,keep things,4513212069,TN,chew the toy,keep things,clap,turn to his back,picks up the present 1237,2833808682,why did the baby hold her bag up at the start of the video,2833808682_CW_8,carrying to red basket,2833808682,CW,throw balloon,wants to turn around,playing,swing it to play,carrying to red basket 1238,2504514045,how did the person showed affection to the video,2504514045_CH_8,rubs the dog,2504514045,CH,man push his swing,rubs the dog,look across,stand closely,moving animation 1239,4163033472,why does the girl reach her hand into the shoe at the end,4163033472_CW_9,take something out,4163033472,CW,clean dirt from foot,take something out,to stop the bike,move with rhythm,play the piano 1240,3136263720,why is the man in black pushing and pulling the baby in a mobile kart,3136263720_CW_5,entertain the baby,3136263720,CW,pretend to pump the tire,fidgeting while talking about toy car,ensure safety,teaching the kid,entertain the baby 1241,5597037980,why did the baby pat his chest when he walks beside the table in front of the sofa,5597037980_CW_4,self comfort,5597037980,CW,self comfort,want to feel good,choke on the milk,thinking deeply,elevate himself 1242,10718903414,why is the boy in blue holding a pair of sticks,10718903414_CW_0,hit the drum set,10718903414,CW,to fly kite,hot,hit the drum set,old,catch the toy 1243,3958650538,why is the kid not leaving the mobile,3958650538_CW_0,likes to play with it,3958650538,CW,too young,distracted by guitar show,fidgeting,toy is attached to something,likes to play with it 1244,9520717551,what does the man in purple do after walking forward for a while in the middle,9520717551_TN_5,look down,9520717551,TN,look down,relax his shoulders,look at himself,adjust the cement on the side,touch remote controller 1245,9662978367,why did the kid wear helmet,9662978367_CW_0,cycling,9662978367,CW,safety,skiing,cycling,it s sunny,skateboarding 1246,10622567214,what does the woman do after standing up from her seat,10622567214_TN_6,walk away,10622567214,TN,run,walk away,looking down at piano keys,slide down,laugh 1247,4059247647,how did the baby interacted with the toy,4059247647_CH_1,touched it,4059247647,CH,bite it,bite one side of the toy,caress the baby,touch the toys,touched it 1248,3099327773,why did the baby reach for the boy near the end,3099327773_CW_4,fall and pounce on the boy,3099327773,CW,happy and laughing,help the baby fix the toy,support the baby,play with it,fall and pounce on the boy 1249,3191035895,why does baby turn around in the end,3191035895_CW_5,stretch,3191035895,CW,touch the man s face,to get to somewhere,sleeping,boy swinging her,stretch 1250,3976362264,why are so many toys placed in front of the baby when she is playing on the mat,3976362264_CW_6,for her to play,3976362264,CW,play with them,try to open it,place is untidy,boy and baby in the room,for her to play 1251,2776803136,why did the dog stood up at the end of the video,2776803136_CW_10,walk away,2776803136,CW,chase the ball,walk away,take pictures,react to the lady,chased down by the man 1252,4444271481,what did the man wearing blue shorts do after he raised his hands at the end of the video,4444271481_TN_11,jump down the waterfall,4444271481,TN,jump down the waterfall,moves his hand,burn it,position ball under white poles,swung him around 1253,6594027277,why does the person in the grey hoodie approach the lady in grey,6594027277_CW_1,take the paper,6594027277,CW,listening to her speak,protect eyes from sun,enjoying the music,pass her a drink,take the paper 1254,11402789396,why does the man put on the red coat over the pillow,11402789396_CW_1,cover the pillow,11402789396,CW,cover the pillow,showing affection,likes to play with them,press down on can,put properly 1255,5435149690,why is the man playing the guitar singing into the microphone,5435149690_CW_0,make his voice loud,5435149690,CW,shout for joy,pose for camera,engrossed in music,posing for audience,make his voice loud 1256,12603962103,how does the man in all black in front of the microphone move his musical instrument,12603962103_CH_8,shake with hands,12603962103,CH,shake with hands,use microphone,standing,press the keys,strumming guitar 1257,3597467356,what did the boy in cap do after he stood up,3597467356_TN_6,throw sand,3597467356,TN,ride forward,throw sand,clap,pointed at the sandals,play with his toy 1258,5322122291,how do the man in white and the lady prevent the sun from damaging their eyes,5322122291_CH_1,wear sunglasses,5322122291,CH,wear sunglasses,use hands,wear beanie,tie to a pole,wear a hat 1259,6623776437,why did the boy leaned forward to the man in black shirt in the middle of the video,6623776437_CW_7,watch the man untie the toy,6623776437,CW,let go of the rocks,put water in cup,take off shoes,pass to small boy,watch the man untie the toy 1260,3277823769,why does the baby stretch his arms out up high nearing the end before he stood up,3277823769_CW_5,trying to balance to stand up,3277823769,CW,trying to balance to stand up,learn to walk,play with toy,hitting the table,to walk 1261,7016497201,what does the baby do after picking up the phone the first time,7016497201_TN_4,eat,7016497201,TN,shake his arms,green toy,clasp his hands together,shake the toy,eat 1262,3469347353,why did the baby stare downwards after sucking her hand in the beginning,3469347353_CW_2,look at the dog,3469347353,CW,prevent baby from falling,look at the dog,to touch the ornament,tries to close her mouth,distracted by it 1263,4164627367,why are the people in the video moving their legs,4164627367_CW_3,pedalling,4164627367,CW,a person drying the dog,pedalling,part of performance,move with the rhythm,take photo 1264,5866354734,why did the girl in orange pull the lady s dress,5866354734_CW_8,playing with lady,5866354734,CW,for beauty,playing with lady,her present,shy,do not want her to go 1265,6320419082,why does the little girl pick up the hat near the end,6320419082_CW_4,to wear it,6320419082,CW,give it to a man,prevent hair from falling off,to wear it,wants to play with hat,remove dirt 1266,3376490453,why did the baby bend down at the start of the video,3376490453_CW_4,pick up the toy car,3376490453,CW,pick up the toy car,pick up slippers,to drop bag down,baby was shown the big toy,sits down to play 1267,2824180578,what does the man walking in from the left do after reaching the centre of these men at the end,2824180578_TN_9,walks away,2824180578,TN,walks away,hold boy s hand,hand gesture and talks,comes back,jumps to cross the water 1268,2622782176,where did the boy in green fell to after he jumped up for the first time,2622782176_TN_8,sofa,2622782176,TN,downstairs,black chair,backwards,sofa,on the floor 1269,4163033472,how does the girl in orange separate the pair of shoes in front of her in the middle of the video,4163033472_CH_4,pull it apart,4163033472,CH,hug,turn over the boot,use her hand,pull it apart,lift her up by pulling hands 1270,2400074985,how did woman spin herself,2400074985_CH_9,move feet and spread arms,2400074985,CH,move feet and spread arms,hold the attached string,follow a routine,moves her hand,legs 1271,4126506012,why are the men standing,4126506012_CW_3,playing game,4126506012,CW,to take photo,to practice speech,learn dance moves,ski,playing game 1272,2776803136,what did the boy do after he stretched his hand towards the smaller dog at the beginning of the video,2776803136_TN_8,change to larger dog,2776803136,TN,change to larger dog,crawl towards camera,starts biting the ball,walk around,looking at toy on ground 1273,7282289126,why did the girl tilted to her left in the middle of the video,7282289126_CW_7,look at screen,7282289126,CW,observing the toy,pick up something on the floor,boy was there,look at screen,to groom the dog 1274,8994022703,how does the lady use her phone,8994022703_CH_8,press the buttons,8994022703,CH,press the buttons,touch the screen,excited,use microphone,wear watch 1275,8442904731,why did the man in vest hold onto the boy in white on the sofa,8442904731_CW_8,playing with him,8442904731,CW,put keyboard on his lap,changing the diaper,help him up,feed baby,playing with him 1276,4330113365,how is the man in black rested as he plays the guitar,4330113365_CH_10,sitting on chair,4330113365,CH,sitting on chair,move fingers across piano,standing on stage,bend down,moving the strings 1277,6131518130,what did the girl in red cap do after falling into the pool,6131518130_TN_4,hold on to stairs in pool,6131518130,TN,start swimming,touch the baby s arm,cry,hold on to stairs in pool,move the yellow bowl away 1278,6971785627,why did the white shirt man touch the horn of his steering wheel while looking at the cow,6971785627_CW_1,want to sound horn,6971785627,CW,want to sound horn,want to run over cow,interested,talking to man behind him,bored of waiting for cow 1279,3239829542,why are the man and the lady sitting on the statue of a lion,3239829542_CW_0,fun,3239829542,CW,talking to each other,fun,bull riding,pick up the pumpkins,support the girl 1280,4192027724,what does the kid in striped bib do after leaving the other kid alone,4192027724_TN_8,plays with a toy,4192027724,TN,plays with a toy,lift legs up,try to open the item,stand up,look at the person 1281,4822747943,what did the woman in blue and orange do after moving away from the table near the end,4822747943_TN_8,push grey chair,4822747943,TN,clasp her hands,shakes it,move to man,push grey chair,play with straw in her mouth 1282,12603962103,why did the boy with tambourine tap his feet while shaking and hitting the tambourine,12603962103_CW_5,feeling rhythm,12603962103,CW,let the red toy hit,gas escapes,copying from television,main vocalist,feeling rhythm 1283,4580666992,what did the man in black do after he saw the camera pointing towards him at the beginning of the video,4580666992_TN_0,hand gesture to push it away,4580666992,TN,take picture with camera,hand gesture to push it away,no reaction,walked out of video,pick something up 1284,3696483717,why did the person point at the paper towards the end,3696483717_CW_1,point to the food,3696483717,CW,reading the message for baby,check the place,point to the food,stuck in snow,to cool the drink 1285,7282289126,why does the girl open her mouth sometimes while watching the screen,7282289126_CW_5,singing and talking,7282289126,CW,speaking,watch something,check the slides,posing,singing and talking 1286,5686014373,what does the man do after patting the butt of the boy at the start,5686014373_TN_3,point somewhere,5686014373,TN,pet body,shakes the toy,tap his mouth also,play with baby s hands,point somewhere 1287,5686014373,what does the man do after turning over at the end,5686014373_TN_6,lie on the boy,5686014373,TN,turn around,close his legs,feed baby,walk away,lie on the boy 1288,4154619533,what did the man in jacket do after turning around to the lady standing on left,4154619533_TN_10,take photo of her,4154619533,TN,thumbs up,moves her bag away,she is correcting his dance steps,turn into the house,take photo of her 1289,9720272113,why does the boy on the right put his hand into the sands and gravel in the middle of the video,9720272113_CW_5,throw and make splash,9720272113,CW,to put ball in position,scared get hit,affectionate,show the spray to someone,throw and make splash 1290,4031580570,why do the women constantly look at the man in the middle while dancing,4031580570_CW_7,take reference from him,4031580570,CW,part of their dance,their turn,take reference from him,party,to see what moves to make 1291,3099327773,why did the woman reach out her hand at the beginning of the video,3099327773_CW_1,protect the baby,3099327773,CW,protect the baby,guide the girl,enjoying the song,curious,to get nearer to the ball 1292,5322501684,what does the man in white do after the woman points at the cake,5322501684_TN_8,blow the candle,5322501684,TN,stand up,blow the candle,raised up her arms,look at lady and nod,carry her 1293,2710168479,why did the man in yellow suddenly show a peace sign,2710168479_CW_5,posing for camera,2710168479,CW,direct the ending spot,type on laptop,posing for camera,decoration for halloween theme,take turn to play the instrument 1294,3972321905,why do the man in white and the child wear helmets,3972321905_CW_3,cycling,3972321905,CW,working at great height,fashion,cycling,record for memory,shortsighted 1295,12603962103,why are the 5 boys playing music instruments inside a room,12603962103_CW_0,rehearsing,12603962103,CW,rehearsing,engrossed in music,gesture while playing,main vocalist,spacious 1296,4681488749,why did the man in spectacles moved his body and hands in the middle of the video,4681488749_CW_3,pretend to be something,4681488749,CW,scratch his nose,pretend to be something,hand gesture while talking,projecton,demonstrating with actions 1297,2776803136,how did the boy support himself as he stood up,2776803136_CH_6,hold onto chair,2776803136,CH,hold the table,walks back and forth,help from the man,lift his hands,hold onto chair 1298,3332115271,why does the boy approach the bald man when the bald man is performing,3332115271_CW_0,take something from him,3332115271,CW,mixing the ingredients in pan,main character,to cut the cardboard piece,take something from him,uniform 1299,3616966959,why did the man hold the toy microphone up at the start,3616966959_CW_0,playing with kid,3616966959,CW,speaking,playing with kid,saw the camera,speaking to the crowd,doing unconsiously 1300,4140970558,why are the people seated together at the same table,4140970558_CW_2,eating,4140970558,CW,gathering for food,birthday cake,for boy to drink,eating,watch golf playing 1301,11866348213,why did the man hold onto the door at the end,11866348213_CW_1,to let kid in,11866348213,CW,get nearer to the top,play with dog,moving the dog,look cool,to let kid in 1302,3033055753,why did the lady turn to the back of the stage and sing in the middle of her performance,3033055753_CW_5,coordinating with the band players,3033055753,CW,express herself,to let him sing,dance,coordinating with the band players,not their parts 1303,4336614054,why was the man struggling at the top of the slope,4336614054_CW_8,snow blocking him,4336614054,CW,to see if he is reaching,change tactic,for others to use to skate,snow blocking him,ensure safety 1304,13884124143,why did the man on the surf board suddenly jump,13884124143_CW_9,stunt,13884124143,CW,to splash water at them,fun,stunt,to balance,get some toy 1305,3508141028,why did the girl keep switching her eyesight from the piano to the book,3508141028_CW_10,can not remember the notes,3508141028,CW,distracted,finding a page to write on,move face away from cat,read while eating,can not remember the notes 1306,4814913320,why is the woman nodding her head as she speak,4814913320_CW_9,responding to the men,4814913320,CW,showing that she is paying attention,engage all audiences,responding to the men,gesturing,agree with one another 1307,3278126113,why did the woman in grey carry the baby forward then pull him back,3278126113_CW_0,help baby practice walking,3278126113,CW,ease of carrying around,to pat it,show them spider web,rocking the baby,help baby practice walking 1308,4444271481,why did the man in dark blue shorts sit at the side of the waterfall after he climbs up,4444271481_CW_4,want to jump down,4444271481,CW,want to jump down,see if he spill,taking photo,cross the river,dry himself 1309,3488196927,why did the two men pause a while before attacking each other,3488196927_CW_5,wait for the fight to start,3488196927,CW,keep each other in check,cardboard box was broke apart,try to distract man,wait for the fight to start,ensure ball is on the put 1310,4567287291,why did the baby stretch his arm out near the end,4567287291_CW_5,interact with the person,4567287291,CW,full cushion,touch toy,interact with the person,can not balance,to grab ball 1311,8411367591,why did the man with black jacket extend his hands toward the boy in green,8411367591_CW_11,want to carry the boy,8411367591,CW,assit him,help him stand,standing for interview,it was bloodied,want to carry the boy 1312,8623311799,How did the lady in striped shirt make the baby laugh,8623311799_CH_4,lift baby up and down,8623311799,CH,pull his legs,show him a toy,tickle the baby,kiss baby,lift baby up and down 1313,8223287911,how did the lady moved the baby,8223287911_CH_8,pick her up,8223287911,CH,walk to baby,pick her up,shake baby with leg,clean the desk,carry in baby bag 1314,11219960546,what does the boy do after moving away from the girl at the start of the video,11219960546_TN_6,kiss her cheek,11219960546,TN,pose with his hands,climbed onto the bounce house,kiss her cheek,hugs her,look at boy 1315,3301442525,why are men gathered around the yellow car in the middle,3301442525_CW_5,admiring it,3301442525,CW,admiring it,turn the scooter around,ceremonial clothes,checking vehicle,as it is not necessary anymore 1316,6451572823,why did cat wait before jumping,6451572823_CW_8,waiting for the time,6451572823,CW,waiting for the time,look at laser on ground,to catch his hand,go somewhere,excited 1317,2833808682,why does the baby bend down in the middle of the video,2833808682_CW_2,to pick up bag,2833808682,CW,to pick up bag,fell,to grab the food,to drop bag down,pick out food 1318,7154804054,why are the man holding a shovel,7154804054_CW_9,dig hole,7154804054,CW,dig hole,scoop sand on his legs,playing on beach,break the chalk,open the bottle 1319,8395915736,how did the nurse ensure she do not infect the baby,8395915736_CH_8,wear gloves,8395915736,CH,wipe baby with cloth,wash her hands,hold baby in plastic,wear gloves,walk far away from the baby 1320,2436811248,why did the baby clap his hands after pressing the keypad of the laptop,2436811248_CW_3,to congratulate himself,2436811248,CW,to reach out to the camera,copy,wants to listen to it,to congratulate himself,dance move 1321,7512810680,why does the woman in blue bend down while moving,7512810680_CW_6,to drag something,7512810680,CW,pose for a photo,start the scene,enjoying the person talk,to drag something,happy 1322,8050371010,why is the girl moving her leg in the middle of the video,8050371010_CW_7,happy,8050371010,CW,playing with toy,reaching for microphone,paddling,pick up the mask,happy 1323,5768622177,why did the boy wear helmet,5768622177_CW_0,practicing cycling,5768622177,CW,skateboarding,working beside cliff,practicing cycling,fencing,on boat 1324,8692968296,why did the man smiled after his performance,8692968296_CW_11,enjoying,8692968296,CW,fixed ending,his turn ended,playing with her,enjoying,happy to see kids play 1325,8623311799,how did the baby react as the lady with striped shirt lift the him up and down,8623311799_CH_2,laugh,8623311799,CH,scared,stop crying,crys,catch the cup,laugh 1326,4514212431,why does the baby spit out the blueberry near the end of the video,4514212431_CW_2,does not like it,4514212431,CW,does not like it,blow the candle,for better eat,to drink the soup,found another toy to play with 1327,3741339360,what does the baby in blue do after he turns his attention back to his swing,3741339360_TN_6,moved his hand to hold swing,3741339360,TN,bend down onto the floor,want to hug other baby,she came down,moved his hand to hold swing,raised arm and pointed at flower 1328,5228329870,why is the baby playing with the pacifier,5228329870_CW_9,teething,5228329870,CW,teething,learning to use it,support himself,learning how to eat,bored 1329,6131518130,what were the three girls doing at the start before falling backwards to the pool,6131518130_TP_7,standing still,6131518130,TP,laughing,standing still,clap her hands,open the box,ran in the same direction 1330,5783801873,how did the motorcyclist exercise caution while crossing through the small opening,5783801873_CH_5,slow down,5783801873,CH,keep to one straight line,speed up,slow down,wear helmet,signal to other motorcycles 1331,5178855777,why does the person interact with the cat in this manner,5178855777_CW_1,brush the hair away,5178855777,CW,to move away,prevent hitting shelf,play with the cat,to catch the laser,brush the hair away 1332,5029903979,why does the kid snatches the toy from man and puts back in his mouth,5029903979_CW_1,want to play,5029903979,CW,eat,afraid the man,want to sell toy,want to play,catch man s attention 1333,5635020430,why is the man in yellow and the man in black carrying a topless man at the start of the video,5635020430_CW_0,throw him in the water,5635020430,CW,throw him in the water,to see how to move the rod,stop him from falling,playing,shaking off snow 1334,5866354734,how did the lady get the girl to jump and play with the bubbles,5866354734_CH_2,jump up and down first,5866354734,CH,jump up and down first,whisper to lady s ear,pull lady in,pour more soaps in,pass bottle to sister 1335,3190710669,why are the dogs running around,3190710669_CW_2,playing,3190710669,CW,looking for food,to fight with cat,catch constantly rolling ball,playing,catch ball 1336,4810458386,how does the man on the left interact with his instrument,4810458386_CH_1,pat it with hands,4810458386,CH,pat it with hands,tap with feet,blow it,operate the machine,strum the string 1337,7016497201,why did the man stretch his body out in the middle,7016497201_CW_1,put phone,7016497201,CW,push toy train,pick up a toy at the side,put phone,touch the ball,draw on his board 1338,6150459616,what does the girl in pink do after approaching the chair at the end,6150459616_TN_10,touch the chair,6150459616,TN,stops her bicycle,touch the chair,pick up sticks,pick up a snowball,bend down 1339,3958650538,how does the boy change the images on the phone,3958650538_CH_8,by tapping on the screen,3958650538,CH,screen shows turning arrow,by tapping on the screen,putting it on the table,press the button,shake legs 1340,5842153096,how does the man in front respond after he sees the strips,5842153096_TN_6,turn away,5842153096,TN,rest his hand on the side,nods head,lean over bed,turn away,lower the camera 1341,2591888090,why is the little boy pushing the baby walker,2591888090_CW_1,make babywalk run,2591888090,CW,steer it,check whether baby is ok,playing and teaching with kid,playing,make babywalk run 1342,4338260909,what does the man do after talking about the drink at the end,4338260909_TN_8,drink it,4338260909,TN,drink it,opened its mouth,open a box,off camera,feeds the cat 1343,4336614054,what did the man do after he reached the bototm of the slope,4336614054_TN_5,got up,4336614054,TN,move to the side,turn around,make turn,points at the door,got up 1344,2662863658,why did the big dog jump onto the sofa at the end,2662863658_CW_3,man pat sofa,2662863658,CW,climb on it,get the toy,man pat sofa,moving his body with the rhythm,man pet it down 1345,5795646653,why did the man move backwards in the middle of the video,5795646653_CW_4,avoid getting hit,5795646653,CW,part of stunt,shake away water,help girl find something,avoid getting hit,take video from different angle 1346,3564059530,why is the man moving his arms while speaking in the middle,3564059530_CW_4,hand gesture,3564059530,CW,make it more fun,hand gesture,singing and dancing,give the girl more space,fencing equipment 1347,5489050159,how does another man wakes the man in blue in the middle,5489050159_CH_6,rubs his shoulder,5489050159,CH,put man s hand up,lift up man s head,twist the head,hit man s head,rubs his shoulder 1348,6430774273,what does the woman do after carrying the boy in dark blue pants at the start,6430774273_TN_7,puts him down,6430774273,TN,puts her hand on the blanket,puts him down,touches the boy s head,walk backwards,stands on the side 1349,2869614883,why did the girl in red push the girl in blue at the end,2869614883_CW_9,to help blue girl slide down,2869614883,CW,go to the playground,avoid being kicked,make room for dancing,she becomes the catcher,to help blue girl slide down 1350,3347998465,why did the girl in pink touched the girl in white at the beginning of the video,3347998465_CW_5,communicate,3347998465,CW,want to rest,waves getting bigger,talk to the other 2 people,communicate,because snake is heavy 1351,10415409886,what does the men do after they lifted the tyre up,10415409886_TN_2,push back down the tyre,10415409886,TN,rest,push back down the tyre,fells on the ground,straighten up,remove cap 1352,3468317018,why does the woman point to her hand after caressing the dog,3468317018_CW_5,talking about dog,3468317018,CW,caress,to pat it,balance dog,talking about dog,sniff her shoe 1353,4789310455,why is the baby stretching his legs at the start of the video,4789310455_CW_1,restless,4789310455,CW,to push himself,dancing,excited,restless,to pick up bag 1354,8731154071,why does the man next to the person twirling fire sticks move his arms upwards at the beginning,8731154071_CW_8,hype the crowd,8731154071,CW,part of the play,demonstrate stunt,they are dancing,hype the crowd,make fire big 1355,3376490453,what does the baby boy do after picking up the toy car at the start,3376490453_TN_7,push it,3376490453,TN,push it,put on table in front,bring toy to other side,squat down,rock chair 1356,5092364159,why are the people moving their arms about while they are looking at the television,5092364159_CW_0,dancing game,5092364159,CW,sing the lyrics,share excitment,part of exhibition,dancing game,see what s there 1357,2622782176,what did the boy in floral do after he put down his pizza,2622782176_TN_10,rub hands to shake off crumbs,2622782176,TN,take big bite,walk away,rub hands to shake off crumbs,licks the spoon,tears it and eats the pancake 1358,8090435597,how did the ipad stayed upright at the end of the video,8090435597_CH_9,held by adult,8090435597,CH,pat the baby,lean against sofa,held by adult,press a button,move hands 1359,4571644750,why did the boy in blue shorts fiddle his fingers in the middle of the video,4571644750_CW_3,his fingers got dirty,4571644750,CW,lost balance,knock onto the rock,laughing at boy in red,his fingers got dirty,pick up cloth 1360,3468317018,why does the woman wear an id card,3468317018_CW_2,participating in event,3468317018,CW,working attire,participating in event,talking to girl,look her plait,playing with her 1361,4283455837,why does the man in black and gold move his hands when reading the book,4283455837_CW_1,hand gesture,4283455837,CW,hand gesture,listening,reciting the book,refer to what he says,reading 1362,4654125833,why is the man wearing a jacket indoors,4654125833_CW_1,cold,4654125833,CW,sunny,for fashion,cold,stylish,hot sun 1363,8448503290,why is the baby lying down on the floor,8448503290_CW_2,learn to crawl,8448503290,CW,fall down,playing with the card,learn to crawl,lost balance,clumsy 1364,5719002896,why did the main singer tilt his microphone from time to time,5719002896_CW_0,body was moving,5719002896,CW,refer to script on card,keep up the rhythm,body was moving,for the acoustics to play,play fast notes 1365,5841926063,why was the man in a stick walking in circle,5841926063_CW_2,following the horse,5841926063,CW,learning to ride,holding lady s hand,cleaning horse stable,prop for acting,following the horse 1366,5408572348,why did the baby in white chew onto the pail after he overturned it,5408572348_CW_5,bored,5408572348,CW,wants to eat,want to take toys,lost her balance,bored,playing 1367,5826071152,why did the baby hold onto the table before he stands up,5826071152_CW_1,use table for support,5826071152,CW,wants drinks from table,play with dog,use table for support,to eat dinner on table,to practice lifting table 1368,13884124143,why did the man on the surf board touch the ground with his hand,13884124143_CW_6,keep balance,13884124143,CW,keep balance,to create bubbles,watching his steps,waves are big,go futher in 1369,3350647572,why is the girl shaking the plush at the end of the video,3350647572_CW_3,playing,3350647572,CW,avoid the goat,excited,dancing,playing,get more colour 1370,5649162069,what does the man with blue controller do after the man in black jacket swings his controller vigorously in the middle,5649162069_TN_7,do the same,5649162069,TN,stand and watch,throw snowball,yawn,do the same,pass a ball 1371,2869614883,what does the girl in blue do after sliding down at the start,2869614883_TN_10,jump up snd down,2869614883,TN,give girl more instructions,hold the child,play piano,walk to lady in blue,jump up snd down 1372,7619429394,why does the lady pull the horse using the red rope when the pony tries to follow the horse,7619429394_CW_3,to control horse from running,7619429394,CW,to make them exercise,support woman,practise,to control horse from running,demonstration 1373,9388233379,why does the man in light blue hold the cymbal as he hits it,9388233379_CW_2,playing the instrument,9388233379,CW,playing the instrument,be expressive,gaming,music performance,let go of girl 1374,5363776323,what does the baby do after shaking the red toy,5363776323_TN_5,drop it,5363776323,TN,raise his head,hit the toy,swing,drop it,turn towards the toy 1375,8784416378,what does the first cyclist do after moving down the slope at the start,8784416378_TN_3,look down,8784416378,TN,fly up,look down,put his hands on the rock,walk behind,go other direction 1376,11772124873,why did the lady walk off the stage,11772124873_CW_1,performance ended,11772124873,CW,take photo at different angle,want to play somewhere else,performance ended,play,occluded by the car 1377,9576113974,why is the kid in yellow dress holding the stick,9576113974_CW_5,play the instrument,9576113974,CW,ceremonial clothes,try to carry bag,help him float,play the instrument,to indicate the turn 1378,6537623889,what does the boy do after hitting the ball the second time,6537623889_TN_6,look in the direction of ball,6537623889,TN,throws it,look in the direction of ball,shake his head,prepares swinging again,laughs 1379,4154619533,how does the speakers make sure their vioce can be listened,4154619533_CH_1,speak into microphone,4154619533,CH,using their fingers,amplify the music to increase volume,move their bodies vigorously,press buttons,speak into microphone 1380,4443349080,why does the boy pick up the ball before kicking the ball in the opposite direction,4443349080_CW_4,put it in a better place,4443349080,CW,prevent dog from snatching ball,practicing,to play catch,to see who is open,put it in a better place 1381,4025836003,why did the lady speaking lift her hands up,4025836003_CW_5,hand gestures,4025836003,CW,interact with the robot,hand gestures,control dogs,very hot,look for directions 1382,8686073700,why did the man shooting pass the gun to the person in red and white striped black shirt after shooting,8686073700_CW_4,pass him gun,8686073700,CW,pass him gun,practise shooting,laughing,pick up the ball,pick up the arrows 1383,11277503743,why did the two children stretch their hands in front of them near the end,11277503743_CW_2,shake hands,11277503743,CW,man moved it,assigned seats,shake hands,hold cue cards to refer to,show his balance 1384,3555283857,what do the two girls do after putting down the microphone in the middle,3555283857_TN_2,stopped singing,3555283857,TN,dances,walk away,pass the torches to another lady,brush her hands across the baby s tummy,stopped singing 1385,9284736689,why does the man running have one of his trouser leg pulled up,9284736689_CW_5,fashion,9284736689,CW,fashion,fake dance,moving with rhythm,prevent wound infection,trying to break free 1386,12015983824,what did the child at the back do after squeezing the clay in her hands,12015983824_TN_7,pass to someone else,12015983824,TN,playing with toys,pass to someone else,holding the ball,push toy car,got up 1387,9988805544,how does the lady in blue control the movement of the car,9988805544_CH_2,steering wheel,9988805544,CH,steering wheel,use legs,moving towards the right cyclist,walking in front,seat belt 1388,3899884605,why did the man in green throw something across the river near the middle,3899884605_CW_7,to play fetch,3899884605,CW,to play fetch,doing stunt,to come up together,touch the water,sliding 1389,4163033472,how does the girl in orange get the toy from the black boot in the middle of the video,4163033472_CH_3,turn over the boot,4163033472,CH,turn over the boot,walk slowly up the stairs,pointing her finger,points towards him,from side to side 1390,8736356323,why did the harpsichord player pointed to the audience before performing with his group again,8736356323_CW_2,part of the performance,8736356323,CW,part of the performance,photo taking,introduce what he does,pose,produce higher vioce 1391,6856075223,why did the black goat run back to the tree in the middle,6856075223_CW_9,look at bottle,6856075223,CW,look at bottle,to catch the toy car,to go and play,eat the grass,finding food 1392,5092364159,how did the game console detect their movements,5092364159_CH_5,stand in front of console,5092364159,CH,raise hands,stand in front of console,zoom in,press the keyboard,wear helmet 1393,2832642923,why is the lady feeding the baby,2832642923_CW_4,baby needs to eat,2832642923,CW,baby needs to eat,playing with him,to make baby sit on her lap,for child to feed goat,baby spits out milk 1394,3264772244,why did the girl move the handles left and right while cycling,3264772244_CW_3,to control direction of bicycle,3264772244,CW,protection and safety,move towards boy,to control direction of bicycle,girl not peddling,perform magic tricks 1395,3441910437,what did the woman on the left do after swimming into the pool,3441910437_TN_6,ducked,3441910437,TN,cleaning the boy with tissue,tread water,look at girl in red cap,ducked,play with her float 1396,7973772218,why is the boy slapping the butt of the girl in orange at the end of the video,7973772218_CW_4,play with her,7973772218,CW,to dance on the floor,listening to music and dancing,girl was talking to him,play with her,trying to move car 1397,5630988927,why was the boy in blue throwing the green ball towards the boy in brown,5630988927_CW_12,play catch,5630988927,CW,collecting balls,play catch,let the boy hit,showing excitement,wants to catch ball 1398,5729533897,why did the girl with sleeveless shirt turned to look at the lady in the middle of the video,5729533897_CW_9,cue woman to talk,5729533897,CW,walk towards dog,feed her chocolate,attracted by toy crocodile,wave at girl in pink,cue woman to talk 1399,6430774273,why does the woman wipe across the baby s face after placing the boy next to him at the beginning,6430774273_CW_2,make baby look presentable,6430774273,CW,put on make up,make baby look presentable,to apply paint on baby face,cover the yawn,to antagonize the baby 1400,5443388088,what does the man in grey hoodie do after tickling his nose at the start,5443388088_TN_2,put hands on lap,5443388088,TN,turn away his head,run away,laugh and shout,put hands on lap,bite sandwhich 1401,6698703081,what does the man with a cap do after looking down at the end,6698703081_TN_6,put hands on hip,6698703081,TN,touch the ball,put hand on head,kiss baby,put hands on hip,tap his head 1402,3972321905,what did the girl do after she turned back,3972321905_TN_6,looks forward,3972321905,TN,tickle her,looks forward,stomp her foot,pick up shoe,play the piano 1403,5228329870,why is the baby sitting on the special chair,5228329870_CW_0,aid him in his movement,5228329870,CW,playing,too short,too young to sit himself,being fed,aid him in his movement 1404,8223287911,why did the lady bend forward to the dining table,8223287911_CW_5,preparing food,8223287911,CW,watch what s she doing,shake her butt against lady sitting,preparing food,ordered by customer,blow candles 1405,2835672361,why do the men wear a white card on their shirts,2835672361_CW_3,indicate their participation,2835672361,CW,wet by the sea,chef,outfit for fencing,part of costume,indicate their participation 1406,3666012638,why is the car raised above the ground,3666012638_CW_0,to get fixed,3666012638,CW,going on a trip,to get fixed,car brand,to help fix the wheel,not in use 1407,6091405815,what did the cat do after the lady threw the rope away,6091405815_TN_4,run to fetch it,6091405815,TN,try to bite,move to table,slowly walk,smile,run to fetch it 1408,6470188301,why did the boy occasionally land up on the bed,6470188301_CW_2,lose balance,6470188301,CW,relax,want to jump on bed,want to do handstand on bed,resting on pillow,lose balance 1409,12952480344,why does the woman tilt the glass while getting the beer initially,12952480344_CW_2,prevent bubbles forming,12952480344,CW,drink water,to touch glass again,open,prevent bubbles forming,see who drank more 1410,12952480344,how does the lady hold the cup,12952480344_CH_9,tilted,12952480344,CH,press,clap her hands together,wear a coat,tilted,point to the cake 1411,2618840774,why is the baby wearing floats on its arms,2618840774_CW_2,learning to swim,2618840774,CW,playing,man moved it,learning to swim,played with them previously,fidgeting 1412,3332115271,why was the girl in pink moving her hands so quickly,3332115271_CW_5,beating drum,3332115271,CW,watch her cross the intersection,beating drum,push the rake,part of the play,not very active 1413,6371744849,how did the girl get the blue shovel at the end of the video,6371744849_CH_8,pull shovel out of the soil,6371744849,CH,hold the toy,licks the spoon,throw ball,pull shovel out of the soil,using her hands 1414,4654125833,why does baby stare at dog in the beginning,4654125833_CW_10,curious,4654125833,CW,curious,wants person s attention,stay within a distance,lift it stand up,share toy with baby 1415,8323333673,why does the child put the book on the sofa,8323333673_CW_0,to read the book,8323333673,CW,comfortable,to take the camera,play with the person,try to climb,to read the book 1416,4329580374,why did the adult put her hand out at the end,4329580374_CW_3,to prevent baby from hitting face,4329580374,CW,to take photo,look at donkeys,stabilize the swing,to speak to him,to prevent baby from hitting face 1417,7871817080,what does the baby do after pressing on the orange button at the start,7871817080_TN_3,hit toy,7871817080,TN,eat,hit toy,sit down,claps his hands,stick out tongue 1418,3120284159,what does the man in red do after the woman in red raises her hand for a while at the start,3120284159_TN_1,adjust the rein,3120284159,TN,adjust the rein,look at the lady in white,grab the rope,happy,look at old lady 1419,3962139149,what did the man in front of the dominos do after the man in spectacles pointed at the blocks,3962139149_TN_3,adjust the blocks,3962139149,TN,touch donkey s head,adjust the blocks,look forward,smiling,pick up hamster 1420,9641305350,how does the man ensure the safety of the boy,9641305350_CH_6,hands ready to catch the boy,9641305350,CH,kiss the boy,hold boy,knee pads,hug the boy,hands ready to catch the boy 1421,4654125833,why does the baby cry,4654125833_CW_2,uncomfortable,4654125833,CW,person playing with the baby,reflects,can not use the toilet,playing,uncomfortable 1422,2994323383,how does the man in the stripe jacket prevent the glass from overflowing when he s pouring the beverage,2994323383_CH_3,pour slowly,2994323383,CH,straw,pinky in the air,pour slowly,drink beer,holding on to the microphone 1423,8702139498,what did the man in blue do after pulling the string back from the car,8702139498_TN_7,give thumbs up,8702139498,TN,put his hands together,starts jogging,look at the camera,give thumbs up,driving off 1424,4338260909,why did the man point at the drink after looking at someone,4338260909_CW_0,talking about it,4338260909,CW,talking about it,signal for wait up,counting something,drink,engage audience 1425,9397185434,how did the people rolled the log down the slope,9397185434_CH_3,push,9397185434,CH,drive up,using the kayak paddle,push,jumps,pull 1426,5290336869,how does the lady react after seeing the girl tries to get off the chair,5290336869_TN_9,carry her,5290336869,TN,carry her,puts it down,walk back to the lady,point at statue,move to boy 1427,3190710669,why did the black dog chase after the other black dog when it ran away,3190710669_CW_1,play with it,3190710669,CW,fight with it,interested,play with it,escape from black dog,move further away 1428,3603780993,why is the dog wearing a black collar,3603780993_CW_3,owned by ownder,3603780993,CW,owned by ownder,want to join in,person sitting on sofa,prevent it from running away,posing 1429,5357351052,why did the lady turn 1 round towards the end,5357351052_CW_8,dance move,5357351052,CW,look for the thrown object,close toy box,dance move,look behind her,conversing with man 1430,2547045867,why is the man in grey giving hand signals to the driver,2547045867_CW_11,telling driver when to stop,2547045867,CW,get off the water,telling driver when to stop,script on card,introduce to audiences,adjust a chair 1431,7161607459,what did the boy in light blue do after putting the camera at his eye at the end,7161607459_TN_4,press the shutter,7161607459,TN,press the shutter,crawl to the lady,continue playing with toy,walks away,make funny faces 1432,3301442525,why is the car in the middle painted with text and different colors,3301442525_CW_0,racing car,3301442525,CW,playing and riding with it,car wedding decoration,decoration,racing car,replace if needed 1433,5596908548,how did the man climb up,5596908548_CH_4,move to the left,5596908548,CH,move downwards,walked up,with an automobile,move to the left,jump up 1434,8364779007,why does the boy in red run out from the shelter in the middle of the video,8364779007_CW_3,get more snow,8364779007,CW,touch the boy in stripes,get more snow,to put ball in position,raise the swing higher,pulled down 1435,3239829542,why does the lady turns to the man near the end,3239829542_CW_8,to speak to him,3239829542,CW,to speak to him,having a conversation,play with things on floor,large crowd,to catch rolling fallen bapple 1436,4514212431,how does the child show his displeasure at the end,4514212431_CH_9,shake his arm,4514212431,CH,cry,reject seatbelt,shake his arm,held against the lady,push with stroller 1437,3603780993,what does the lady do after the dog approaches her at the start of the video,3603780993_TN_7,plays with him,3603780993,TN,moves the baby,turn one round,plays with him,looked at camera,move backwards 1438,3243801466,why did the girl cross her hands in front while facing the lady,3243801466_CW_1,copy lady s action,3243801466,CW,show the boy,copy the man,play with the boy,mimic the dog,copy lady s action 1439,3574384655,why did the dog stick his head onto the floor beside the man with hands on his hips at the start,3574384655_CW_5,smelling grass,3574384655,CW,smelling grass,drinking water,reach the child s height,tired,stop the car 1440,6055990354,why did the man in blue pull the rope near the end of the video,6055990354_CW_8,let person in yellow helmit go down,6055990354,CW,let person in yellow helmit go down,too much snow,filming him,to go towards the man,pick up cloth 1441,4660797892,what did the girls do after running out onto stage at the start,4660797892_TN_6,dance,4660797892,TN,walks away,dance,grab starfish,bend body,standing still 1442,8090435597,why is the boy leaning on the sofa,8090435597_CW_0,watching video,8090435597,CW,watching video,listening to the cameraman,playing by rolling around,eyes itchy,climb on it 1443,5271062042,how did the man in brown make music with the instrument,5271062042_CH_6,move the strings,5271062042,CH,move the strings,blow into the tube,stump with feet,hit with sticks,hit the metal 1444,3099327773,how does the boy holding the baby at the end pose for the camera,3099327773_CH_7,hold up peace sign,3099327773,CH,hug baby,rub the baby s face with hand,hold up peace sign,lean forward and look at baby s face,lie on the floor 1445,6513201899,why is the woman in green looking over the child in red,6513201899_CW_1,talking,6513201899,CW,stop toddler hitting baby with toy,talking,play golf,put something on her head,to punish him 1446,4750512166,what did the cat lying down do after it saw the cat beside the broom lick itself,4750512166_TN_4,climb up the broom,4750512166,TN,licked the face,eat,jump off,climb up the broom,look away 1447,5899552167,how are the birds in the cage,5899552167_CH_1,walking,5899552167,CH,flying,walking,use beak to pull itself,fly around the dispenser,beak to the ground 1448,2662863658,how does the man signal the dog to jump onto the sofa at the end of the video,2662863658_CH_5,put a toy there,2662863658,CH,pointed at the dog,put a toy there,caress dog,on the floor,kneel up 1449,4250392878,what does the man do after the child sit down and relax at the end of the vifdeo,4250392878_TN_9,adjust the wood,4250392878,TN,shorten the rope,turn back,leans forward,takes a bow,adjust the wood 1450,4815162722,why did the lady in pink bend down near the middle,4815162722_CW_2,touch and talk to girl,4815162722,CW,touch and talk to girl,tease the girl,wanted to blow the candle,pick up cupcake,adjust the cot 1451,2833808682,why did the baby let go of the bag again at the end,2833808682_CW_9,can not carry,2833808682,CW,to open the video game,open his mounth,arrange the leaves on the ground,can not carry,for baby can walk alone 1452,3339687949,what does the baby do after chasing for the red ball for a while in the middle of the video,3339687949_TN_8,touches elmo,3339687949,TN,open the box,kicks it,got back up,lift the club up,touches elmo 1453,8484188496,what did the men do after putting their hands at their chests,8484188496_TN_7,spin,8484188496,TN,kiss lady in white,talking,stick,spin,get back up 1454,5777926447,why did the man in red walk forward in the middle of the video,5777926447_CW_4,look at something,5777926447,CW,help baby take support correctly,hug baby,look at something,pick up the boy in green,look at phone 1455,4571602887,what does the black dog do after picking up the toy near the end,4571602887_TN_7,walk away,4571602887,TN,bite grey dog,walk away,bends down,starts crawling upward,shifted its body 1456,4283455837,why does the man look down and look up many times,4283455837_CW_9,look at the book,4283455837,CW,look at the book,it s sunny,reversing,look at the moving swing,pose for the video 1457,13974008375,why does the girl in white constantly laugh at the beginning of the video,13974008375_CW_1,finds person in blue funny,13974008375,CW,cleaning him,not time yet,finds person in blue funny,arrange their standing,ask for help 1458,2436811248,what does the boy do after touching the screen of the laptop in the middle,2436811248_TN_11,play with laptop,2436811248,TN,point at the door,touch keyboard,draw on pink toy,play with laptop,hold onto boy 1459,8903248754,why did the boy with green shorts jumped at the end of the video,8903248754_CW_4,playing,8903248754,CW,to catch the dolphin,unable to balance,escape from the cat,playing,being chased by dog 1460,3350647572,why did the girl sat on the floor at the beginning of the video,3350647572_CW_10,get the toy,3350647572,CW,to pose,get the toy,pick up something on the floor,resting,picking something 1461,4444271481,why did the man in blue shorts climb up to the waterfall,4444271481_CW_1,to jump down,4444271481,CW,to jump down,resting,prevent himself from capsizing,take surfboard from the man,spraying water 1462,6055990354,why is there a man in blue seated at the edge of the cliff,6055990354_CW_0,belaying the boy,6055990354,CW,learning,watch people paddling,they are tourists,snuggle with boys,belaying the boy 1463,6150459616,what does the girl in pink do after looking around for a while at the start,6150459616_TN_6,pick up pink toy,6150459616,TN,put bag down,pick up pink toy,blow bubbles,turn around,push spoon away 1464,3339364524,how does the grey dog convey its excitement,3339364524_CH_0,wave its tail,3339364524,CH,walk nearer to them,by licking the man,jump back and forth,goes near the human,wave its tail 1465,4164627367,why did the girl bounced a bit in the middle of the video,4164627367_CW_8,went over a bumb,4164627367,CW,lose interest in lady,pick up blanket,went over a bumb,to dodge baby hitting her,fidgeting around 1466,3485644822,how does the lady feel after unwrapping her present,3485644822_TN_7,happy,3485644822,TN,looking at book,grab the camera,happy,look down and move to bicycle,wears the hat 1467,6380666279,how did the men in green and white moved past behind the man in black jacket,6380666279_CH_9,walk,6380666279,CH,hold onto handle for support,walk,running,using sled,cycling 1468,4567287291,what does the baby do after putting the toy at his face in the middle,4567287291_TN_4,look at camera,4567287291,TN,bites it,bite,swing it around,look at camera,look at the doll 1469,4338819435,how did the lady show affection to the cow at the beginning of the video,4338819435_CH_5,pat it,4338819435,CH,lie back with arms out,pat it,tickle it back,squat down,rubs the head 1470,9576113974,why does the man put kid in blue on the floor after a while in the beginning,9576113974_CW_1,carry another kid,9576113974,CW,making him do a workout,agreeing with himself,carry another kid,prevent him from falling,push on the ground 1471,3347998465,why are the girls holding on to the soft pillar in the beginning,3347998465_CW_1,balance,3347998465,CW,carrying her,holding the dog s collar,balance,make him sit,hold for support 1472,9934829764,what did the man in black do before jumping at the start,9934829764_TP_1,hold on rod,9934829764,TP,jump,hold on rod,watch them,touch the ground,look at him 1473,5609003294,what does the cat do after it looks over the chair and tilts its head at the dog,5609003294_TN_9,look around,5609003294,TN,follow after dog,look around,jump from chair,walk past,bite newspaper 1474,2962441847,how did the man with grey scarf stop the man in red from juggling the item,2962441847_CH_1,push him,2962441847,CH,push him,kick him,leave them on the rock,pull his pants,take away the item 1475,3277823769,why does the baby rest his arms out of the cot while standing,3277823769_CW_6,holding,3277823769,CW,he was stuck at the sofa,holding,to watch over baby,lost balance,looking at the camera 1476,5826071152,why did the baby move with the table,5826071152_CW_0,use table for support,5826071152,CW,table tied to baby s leg,to open presents,eat food on table,pass table to man,use table for support 1477,4338260909,why did the man point a finger before taking a sip of the drink,4338260909_CW_3,signal for wait up,4338260909,CW,smell drink,signal for wait up,feed baby with milk,engage audience,explain to camera 1478,9525696229,what did the girl do after the water touched her feet,9525696229_TN_7,run backwards,9525696229,TN,carry the baby up,look towards the man,continue feeding,run backwards,stand still 1479,5596908548,what does the man do after raising his right arm up at the start,5596908548_TN_3,touch,5596908548,TN,digs out sand,pulls the black dog,touch,take out a paper,put his hand down 1480,3249073529,why does the lady in white bend down in the middle,3249073529_CW_8,hold the bottle,3249073529,CW,wash hands,take photo,rub eyes,spread butter,hold the bottle 1481,8903248754,why did one of the boys shake his head in the middle of the video,8903248754_CW_2,shake away water,8903248754,CW,greeting with camera,dislike the food,want someone else to carry,look at something,shake away water 1482,3495427984,why are the people at the back walking around,3495427984_CW_9,going somewhere,3495427984,CW,watching,seeing other people play,hand gesture while talking,taking a tour,going somewhere 1483,3597467356,why did the boy kneeled up nearing the end of the video,3597467356_CW_12,to get up,3597467356,CW,fold the sides of cardboard,to get up,pick up slippers,pick up skateboard,pick up the present 1484,7095619943,why is the boy holding water bottle in his hand,7095619943_CW_0,playing,7095619943,CW,to sell it,open cap,playing,bring to table,feed baby with milk 1485,5322501684,why is the man holding the kid on the chair,5322501684_CW_0,prevent him from falling,5322501684,CW,wanted him to read the book,to eat food together,prevent him from falling,the baby can sit more comfortably,play with the kid 1486,3249073529,what does the lady in red do after the lady in white passes her the bottle at the start,3249073529_TN_7,hold the bottle opener,3249073529,TN,stare at flower,get in pool,hold the bottle opener,throws it,drink it 1487,6025249212,why do the taller children stand still at the beginning of the video,6025249212_CW_0,performing,6025249212,CW,waiting for someone,wearing shoes,performing,talking to man,try to blow out cnadles 1488,5866354734,how did the lady minimise stress on her injured ankle while she jumps,5866354734_CH_5,jump on the other foot only,5866354734,CH,put down baby,jump on cushion,jump on the other foot only,act like jumping,bandage 1489,4542514917,why did the baby move his hands and legs after everytime he was fed with the medicine,4542514917_CW_12,reflex,4542514917,CW,reflex,play for fun,no force applied on it,assist him,hungry 1490,6045074723,why is the boy in grey holding onto the side,6045074723_CW_5,for grip,6045074723,CW,to show lady to swim,for grip,supervising boy,washing his hands,distracted by baby 1491,2806691984,why is the other man slow to hit the ball,2806691984_CW_4,not as proficient,2806691984,CW,man in black is caddie,give a small break in playing,to kick the ball,teasing the young boy,not as proficient 1492,8316378691,what does the boy do after the man in red opens the present,8316378691_TN_8,carry dog out,8316378691,TN,grab the food,carry dog out,hold man s hand,touch his face,get off his horse 1493,2776803136,why did the boy put his hand near the big dog at the beginning of the video,2776803136_CW_0,feed it,2776803136,CW,to get the food,mimicing phone call,to sit down,wants to play catch,feed it 1494,2885991220,why is the boy looking at the laptop throughout the video,2885991220_CW_8,watch video,2885991220,CW,look for other ship,for music score reference,to see the picture,interacting with him,watch video 1495,5768622177,how is the boy rested on the bicycle,5768622177_CH_7,sitting on bicycle seat,5768622177,CH,sitting on bicycle seat,carry bike and run,stood up,pushing it,shake his head 1496,8448503290,what does the baby do after a person reach out his hand at the end,8448503290_TN_5,put hand into mouth,8448503290,TN,stares at camera,bottle,picks up the grey toy,give high five back,put hand into mouth 1497,5358657883,why is there a flashlight after the woman in blue and the man wearing white pants squat down,5358657883_CW_6,photo taken,5358657883,CW,waiting for her turn,people are recording them,drawing portrait of woman,photo taken,carrying it 1498,2777222508,why did the man with spectacles smiled at the end of the video,2777222508_CW_7,enjoying music,2777222508,CW,happy to see kids play,enjoying music,greeting,embarrassed,look at the guy in dark blue 1499,2885656050,why did the man raised his bat higher as he walked towards the pit,2885656050_CW_6,getting ready,2885656050,CW,to check the car,practice walking,make boy ball at specific point,getting ready,boy was scared 1500,8323333673,why does the child flip the pages of the book,8323333673_CW_1,to read the book,8323333673,CW,lost grip,to read the book,to paint on the book,want attention,distracted by the pictures 1501,5620767697,why does one dog run slower than the others,5620767697_CW_3,walking casually,5620767697,CW,the floor is hot,walking casually,make room for dogs,it is injured,train baby dog 1502,9284736689,how is the man in light blue moving at the start of the video,9284736689_CH_7,walking,9284736689,CH,running,walking,hand gesture,bounce around,sliding on the snow 1503,8316378691,why are the ladies clicking pictures from the camera,8316378691_CW_2,taking video of the scene,8316378691,CW,show audience,excited,taking video of the scene,observe her reactions,take picture 1504,3134592560,how does the boy help the lady pipe the cake,3134592560_CH_1,hold the cake,3134592560,CH,hold the cake,hold and spin it,pick up using fingers,being pushed,holds the mickey s hand 1505,5768622177,how did the boy control the direction of the bicycle,5768622177_CH_6,steer handles,5768622177,CH,hug tree,steer handles,hold rope,drink water,eat food 1506,6197272373,how does the man show he is embarrassed,6197272373_CH_6,touches his face,6197272373,CH,hides his face in his hands,touches his face,has his finger in his mouth,removing his jacket,cross his arms 1507,6343797119,what did the man in dark blue do after he stretched his leg at the end,6343797119_TN_4,bend downward,6343797119,TN,walk forward,bend downward,cooking,stand up straight and walk,laugh 1508,6063052014,why does the man put the spoon close to the mouth of the baby at the start of the video,6063052014_CW_2,feed him,6063052014,CW,to cover the cup,to scoop food,feed him,to cover his mouth,to play with baby 1509,3555157875,how do the girls amplify their voices,3555157875_CH_1,speak close to the microphone,3555157875,CH,singing in the microphone,make gestures,lean backwards,speak close to the microphone,hit hand on it 1510,3120284159,what does the man in red do after pulling the rein at the start,3120284159_TN_3,touch his nose,3120284159,TN,chewing something,play with sand,grab his shoulders,looks behind,touch his nose 1511,8331338778,why does the woman follow the girl,8331338778_CW_0,girl lead the way,8331338778,CW,happened to meet,look her plait,finished playing,girl lead the way,reduce wind resistance 1512,3666012638,how does the man put his working tools,3666012638_CH_11,place them on the red platform,3666012638,CH,bag,put on table,place them on the red platform,move handle,stand in a circle 1513,5827074668,what did the man do after he moved himself further away from the cabinet,5827074668_TN_9,watch baby play,5827074668,TN,use towel cover his face,lean back and play with water,chase the child,watch baby play,touch the earphones 1514,3392902718,why do the people wear thick clothings outdoors,3392902718_CW_0,windy,3392902718,CW,protect his eyes,working on snowy ground,people are trekking,trekking,windy 1515,3958650538,what did the lady do after holding the phone in her hand near the end,3958650538_TN_6,shakes the phone,3958650538,TN,pass the torches to another lady,turn back to her computer,shakes the phone,carrying the baby,wipe her face 1516,4360431067,why did the man in blue run his hand down the sides of the knife after he has cut the vegetables,4360431067_CW_0,swipe off food collected on knife,4360431067,CW,already finished the side,think there s more food,invite her to cut together,pick out the roasted food,swipe off food collected on knife 1517,6346290362,why did the woman look down at the 2 boys at the start of the video,6346290362_CW_0,talk to him,6346290362,CW,approach teacher for help,whisper to them,put him on chair,talk to him,carry him 1518,8903248754,how did the boy with green shorts get into the swimming pool,8903248754_CH_0,jump in,8903248754,CH,carries bicyce,through the ladder,dropped in,slide down into water,jump in 1519,3441910437,why is there a man in white on the tree when the man jumped on the swing,3441910437_CW_3,walking,3441910437,CW,watching from afar,checking his safety,looking for plants,walking,holding his bag 1520,2399794335,what did the man in black do after the man in blue turned right around the corner,2399794335_TN_7,look at him,2399794335,TN,shakes head,move his hand,move his hand over the ground,aiming and shooting,look at him 1521,4031580570,why are the men and lady in purple top following same steps,4031580570_CW_0,dancing,4031580570,CW,formal celebration,walk,as it was a formal meeting,dancing,escort lady 1522,2806691984,what does the boy do after the man on the other side hit the ball back at the start,2806691984_TN_8,kick ball,2806691984,TN,fall down,dropped,kick ball,run after it,put ball into hole again 1523,3376490453,why did the baby drop the toy car when he tries to stand up,3376490453_CW_3,hands need for holding table,3376490453,CW,playing,hands need for holding table,fidgeting while talking about toy car,wants to rock again,transfer the stone somewhere else 1524,13842949604,what did the dog do after the man in blue came out of the house at the start,13842949604_TN_6,went into the house,13842949604,TN,hug dog,moves the object,went into the house,runs toward the tutrle,bite 1525,3278126113,why did the lady drag the baby backwards in the middle of the video,3278126113_CW_11,play with baby,3278126113,CW,play with baby,pick up something on the floor,carry the baby,to climb up ladder,dancing 1526,10087471526,why did the boy in yellow pants walk towards the shore,10087471526_CW_5,play with the sand,10087471526,CW,oversee the child,exercise,play with the sand,drag float,safety 1527,3511344402,why does the lady wearing white and grey socks put her feet out at the end of the video,3511344402_CW_5,stop the door,3511344402,CW,take water bottle,keep the white bottle away,to balance the cycle,adjust,stop the door 1528,2399505725,how did the dogs hold the bottle,2399505725_CH_11,hold in their mouth,2399505725,CH,jump at each other,his hands holding dog belly,grad with paws,rub the dog,hold in their mouth 1529,8994022703,why is the lady bent over,8994022703_CW_9,looking at phone,8994022703,CW,to rhythm of music,play music instruments,as they are trying to remove the water,feel tired,looking at phone 1530,3954996353,why does the man in red use hand signs to show something to the man in white,3954996353_CW_4,direct attention,3954996353,CW,taking photos,passionate,record for memory,protect hands from friction,direct attention 1531,3213208382,what happened to the child after the adult pushed him,3213208382_TN_10,slide down,3213208382,TN,holds the baby,fall down,crying,lie down,slide down 1532,8530515192,what does the girl in purple do after covering her face and looking down at the end of the video,8530515192_TN_11,lets her mother tie hair,8530515192,TN,lets her mother tie hair,walk away,clap hands,hug the lady,turned behind 1533,6016490500,why is the man walking to the place where the lady and girl is sitting,6016490500_CW_4,to film them,6016490500,CW,to talk to them,to find the dog,to film them,exercising,to pick up ball 1534,8287688503,what did the man do after the woman in purple pants threw the ball at him,8287688503_TN_7,talk into the microphone,8287688503,TN,talk into the microphone,run back,throw the ball,stretch arms in the air,playing with her 1535,6055990354,why are people wearing a harness,6055990354_CW_1,playing near the cliff,6055990354,CW,climbing rocky mountains,same team,hot sun,playing near the cliff,role play 1536,3962139149,why does the man in black knock down the wooden block,3962139149_CW_5,create domino effect,3962139149,CW,stretching,test if it flies,agitated,create domino effect,light the display 1537,2962441847,how does the man in red keep the thing he is holding turning around in the air,2962441847_CH_3,throwing from one hand to another,2962441847,CH,person hits it,throwing from one hand to another,ride the line,bending,blow it 1538,6051291805,what does the baby do after walking straight for a while in the middle,6051291805_TN_7,turn around,6051291805,TN,runs,cry,touch the cloth,turn around,sways his body 1539,3976362264,why does the child wave his hands before picking up the toy shaped like a ball,3976362264_CW_4,show excitement,3976362264,CW,play with them,talking,playing,he is frustrated,show excitement 1540,9525696229,how did the girl moved herself nearer to the water,9525696229_CH_9,run,9525696229,CH,walk,moves the towel with hands,helmet,row the boat,run 1541,3361754590,why does the girl in pink push the person s hand away,3361754590_CW_1,get the person s attention,3361754590,CW,get the person s attention,ensure she do nt fall,not liking the dance,give baby space,passed it to the lady 1542,3246498270,how did the baby react after the person threw it away,3246498270_TN_4,chase after the bottle,3246498270,TN,smile,chase after the bottle,baby laugh,look into camera,try to open the item 1543,2582976771,why did the lady in white moved backwards when the boy tried to approached her,2582976771_CW_6,avoid him,2582976771,CW,wait for the response,avoid him,surprised as camera too close,give baby space,look at other people 1544,5036295532,why did the boy clap his hands after picking up the spoon in the bowl,5036295532_CW_4,happy,5036295532,CW,happy,reach out for the toy,how to eat by itself,to scoop the excess food,feed baby 1545,3385351378,why did the man pass the vacuum machine to the baby at the start,3385351378_CW_1,for baby to clean floor,3385351378,CW,put baby over shoulder,to move it around,learning to use it,baby dropped it,for baby to clean floor 1546,7274130480,how did the man in white reacted to the boy,7274130480_CH_4,laugh,7274130480,CH,by moving his hand up and down,let boy sit on lap,take video with camera,laugh,stand up 1547,4283455837,why does the man in black and gold smile after reading from the book,4283455837_CW_5,finished reading,4283455837,CW,finished reading,he saw the camera filming him,game over,decide to take a picture,to read the label 1548,9251779370,why is the lady in black on the side of the table looking at the lady in white,9251779370_CW_6,talking to lady in white,9251779370,CW,watch her perform,talking to lady in white,reading something,listening to her talk,time to eat food 1549,3265024425,what does the female lion do after running away for a while in the middle of the video,3265024425_TN_7,comes back,3265024425,TN,lift the club up,comes back,looked at cat behind,roar,stretches her hand 1550,4181031443,what does the lady with red cap do after holding the camera up for a while at the start,4181031443_TN_2,take pictures,4181031443,TN,sledding,adjust boy s position,take pictures,make more bubbles,starts running 1551,10516079413,why does the baby bend down beside the doll in the middle of the video,10516079413_CW_4,looking at the doll,10516079413,CW,looking at the doll,swing it to play,weak grip,support himself up,to play with 1552,6894565761,why did the boy place his hand on the board when the girl is drawing on the board,6894565761_CW_3,let girl trace his hand,6894565761,CW,let girl trace his hand,erase board,drawing also,reading it,pointing at what girl wrote 1553,5460164242,what does the man do after bending down and controls the laptop in the middle,5460164242_TN_8,dances with the girl,5460164242,TN,watch television,feed the dog,dances with the girl,play with laptop,talk with girl again 1554,4031580570,why does the lady in white top join the man and lady dancing,4031580570_CW_1,learn to dance,4031580570,CW,performing,dancing with the girl,yes,learn to dance,drink water 1555,5596610883,what did the lady do after she showed the keychain to the camera near the end of the video,5596610883_TN_10,put keychain down,5596610883,TN,smiles,put keychain down,eat ice cream,run over and lift it up,smile 1556,8364779007,why is the boy in red wearing a beanie,8364779007_CW_0,keep warm,8364779007,CW,keep clean,protect head,move around,signaling blue train to move,keep warm 1557,13643603625,why is the girl wearing gloves,13643603625_CW_4,costume for acting,13643603625,CW,repeating gesture,driving,costume for acting,scrapping the lady s feet,hand gesture 1558,4514212431,why does the baby wear a bib,4514212431_CW_0,keep his shirt clean,4514212431,CW,as the lady has dressed her,keep his shirt clean,it s sunny,playing with it,prevent baby from dirtying clothes 1559,3350647572,what did the girl do after the plush fell,3350647572_TN_9,sit down,3350647572,TN,bounce the baby,hold the mother s hand,sit down,tries to say something,stand up 1560,8784416378,how did the second person in white get down the slope cycle down or walk down,8784416378_CH_0,walk down,8784416378,CH,caress dog head,walk down,push the bike,ski,adult takes them off 1561,6045074723,why are the boys waving their hand at the start of the video,6045074723_CW_6,gesture greeting,6045074723,CW,carry the toy up,gesture greeting,laugh at the programme,bored,part of stunt 1562,9525696229,why does the girl run to the edge of the beach,9525696229_CW_0,play in the sea,9525696229,CW,posing,play in the sea,not to be hit by wave,rinse crab,pick it up 1563,5596610883,why did the man in white walked away from the table a little at the end of the video,5596610883_CW_8,laughing,5596610883,CW,to unbuckle,finished performing,laughing,take video from different angle,show his garden 1564,2994323383,why is the person in red holding a spatula at the start,2994323383_CW_4,to hit the egg,2994323383,CW,drink,to hit the egg,put on the table,blow candle,hit the dog 1565,3058094185,why is the television turned on,3058094185_CW_0,boy watches it,3058094185,CW,filming,boy watches it,daylight,haircut,to scratch 1566,2422465594,why is the rabbit staying so still at the start of the video,2422465594_CW_0,keeping vigilant,2422465594,CW,playing with the person,feeding,keeping vigilant,play with child,caress it 1567,4555837160,how does the audience show appreciation towards the end,4555837160_CH_6,clap,4555837160,CH,clap,give him money,standing up,jeer him,dance for him 1568,3264772244,why is the girl on the bicycle wearing helmet,3264772244_CW_0,protection and safety,3264772244,CW,control direction,protection and safety,support the girl,support for more balance,stylish 1569,4458565343,why does the man in white move his head and the camera as he takes the photograph,4458565343_CW_5,capture the surrounding,4458565343,CW,filming a movie,records the speeker,capture the surrounding,main guitarist,records the wedding 1570,5036295532,why did not the baby eat the food,5036295532_CW_5,full,5036295532,CW,eating,taking turns,play with dog,full,feeling sleepy 1571,8623311799,why is the baby in red smiling at the start of the video,8623311799_CW_1,being thrown by lady,8623311799,CW,happy about the food,dancing with man,ticklish,being thrown by lady,amused by the elmo 1572,3826103533,what does the baby do after playing with the doplhin toy for a while at the start of the video,3826103533_TN_5,jump up and down,3826103533,TN,lay down,stares at camera,bites the toy,stand and push box,jump up and down 1573,3239829542,why does the lady hold the man s hand while getting on the statue,3239829542_CW_6,to help her balance,3239829542,CW,photo posing,to help her balance,encourage her,lick hand,show the way 1574,10622567214,how does the dog react after the woman turns around,10622567214_TN_5,wag tail,10622567214,TN,caress the dog,move away,try to lick her face,wag tail,moves around 1575,7274130480,what did the boy do after he pointed at himself,7274130480_TN_2,lean over bed,7274130480,TN,touch man s hoodie,bend his back,pushing toy,pat his head,lean over bed 1576,6131518130,why did the girl in yellow turn to look at the water in the middle,6131518130_CW_1,feels scared,6131518130,CW,finding friend,feels scared,looking for fish,looking for dog,someone called her 1577,2994323383,why are the men seated around a table,2994323383_CW_6,to eat,2994323383,CW,to eat,playing cards,playing games,eating on the table,preparing food for their children 1578,4644208937,how did the lady ensured the boy s safety,4644208937_CH_6,holding onto safety rope,4644208937,CH,keep an eye on them,holding onto safety rope,by watching him,picked it up,hold onto the orange structure tightly 1579,3676023277,what are the objects that the man in black pick up after dancing halfway,3676023277_TN_1,toy shovel,3676023277,TN,hi-five,stand still,throw back to lady,toy shovel,dances 1580,6315028936,how is the baby kept comfortable,6315028936_CH_7,sit on cushion,6315028936,CH,wears towel,sitting on pram,sit on cushion,wear more clothes,mat 1581,3784430367,what did the girl do after touching the wine glass with her bottle the last time at the end,3784430367_TN_7,put bottle in mouth,3784430367,TN,put bottle in mouth,join dancing,hugs the man,look at the girl in pink,try standing again 1582,4336614054,what did the man do after he picked up his glove,4336614054_TN_9,wear back,4336614054,TN,dig deeper into box,stand up and walk over,walks away,adjust paper,wear back 1583,3264772244,how is the girl changing the directions of the bike,3264772244_CH_7,move handles,3264772244,CH,superpowers,move handles,carry bicycle up,use bench for support,step on the paddles 1584,5729533897,what did the lady do after she raised the black poster again at the end of the video,5729533897_TN_8,talk and smile,5729533897,TN,kiss baby,write something,get off scooter,talk and smile,wave at camera 1585,9397185434,why do the people push the log of wood,9397185434_CW_1,get it out of the way,9397185434,CW,plant sapling,playing,to travel,get it out of the way,hike 1586,4163033472,what does the girl do after putting down her book,4163033472_TN_7,show the shoes,4163033472,TN,show the shoes,put her fingers together,pick up toy,stop and look,show it to everybody 1587,2401079660,why is the man holding out his hands as the baby tries to walk up the stairs,2401079660_CW_1,ready to catch the baby,2401079660,CW,for support,feel bored,play with dog,ready to catch the baby,chicken went away from him 1588,2973658146,why did the boy stood still for a while at the beginning of the video,2973658146_CW_6,looking at something,2973658146,CW,looking at something,adjust it,to flip,to see how to move the rod,looking at the path 1589,4330113365,how did the man in yellow to produce a musical sound from his instrument,4330113365_CH_5,push instrument up and down,4330113365,CH,push instrument up and down,a bat,tap his feet,tell him something,hit with sticks 1590,8411367591,what did the man in red do after he carried the boy in green up,8411367591_TN_4,walk around the table,8411367591,TN,walk around the table,put pebble in blue container,look at him,takes microphone and answer,dancing 1591,5706721105,how did the man on the left react after the man on the right pointed near the middle of the video,5706721105_TN_8,look in front,5706721105,TN,laughing,talk to the audience,look in front,look at the other man,chin up 1592,5630988927,why did the boy in brown jacket throw the ball forwards,5630988927_CW_10,to play catch,5630988927,CW,to hit the ball,to play catch,for other boy to hit ball,want the dog to play fetch,want to hit baby 1593,2898694467,why did the group of people carry a bag each,2898694467_CW_2,hiking,2898694467,CW,contains things needed for hike,hiking,narrow way,watching demonstration,for balancing 1594,10830982353,what did the man in green do after the man with white cap wipe the box,10830982353_TN_3,close the food,10830982353,TN,hold skateboard,rest,get off stage,stand up,close the food 1595,7124177075,how did the boy get the drink that was far away from him,7124177075_CH_0,he climbed over and grabbed it,7124177075,CH,lady passes the drink to him,crawled towards it,he climbed over and grabbed it,with long straw,jumping down chair 1596,5719002896,what did the lady in black playing the guitar do after she raised her arm in the middle of the video,5719002896_TN_8,walk backwards,5719002896,TN,swing her leg,walk backwards,get off scooter,run away,look at ground 1597,11794945346,why is the lady moving her lips in front of the microphone,11794945346_CW_7,speaking something,11794945346,CW,put food in,moving the joystick,wind,speaking something,public speech 1598,10087471526,why are both boys not wearing shirts,10087471526_CW_4,to keep it dry,10087471526,CW,hot weather,to keep it dry,baby hit face on boy s back,in swimming pool,dressing 1599,5092364159,why is the person on the screen moving its body,5092364159_CW_6,giving instructions on how to dance,5092364159,CW,let go from baby s grip,for people inside to watch,performance,giving instructions on how to dance,moving to the rhythm 1600,5443388088,why does the man in spectacles pass the book to the man next to him,5443388088_CW_3,give as present,5443388088,CW,demonstrating,watching the man write calligraphy,give as present,show affection,reciting the book 1601,5950108376,what did the boy do after the lady pointed at the sea,5950108376_TN_9,point finger,5950108376,TN,pick surfboard up,move backwards,picks flower,float away,point finger 1602,3133113252,how does the lone elephant move along the waters at the start,3133113252_CH_4,walk,3133113252,CH,walk,clean itself,provide milk,splash mud water,touch trunk 1603,5363776323,what does the baby do after sucking the green toy,5363776323_TN_1,put it down,5363776323,TN,slide,let it go and crawl away,put it down,walk away,throw the toy 1604,6990172057,why does the man remove the safety harness from the boy wearing grey before the boy in yellow starts climbing,6990172057_CW_4,taking turns,6990172057,CW,taking turns,swing baby,preparing him for sports activity,unable to continue climbing,safety 1605,10087471526,why does the boy swing his arm back towards the end,10087471526_CW_3,for balance,10087471526,CW,the swing turns,to play the game,blow candles,for balance,play with camera 1606,5379320378,how is man in rainbow dress moving on the stage,5379320378_CH_4,spinning in circles,5379320378,CH,running,spinning in circles,jumping,walking,run to the opposite sides 1607,3376490453,what does the man do after picking up the toy car at the start,3376490453_TN_8,put on table in front,3376490453,TN,push it,ride it,put on table in front,adjusting helmet,press the honk 1608,9662978367,why does the boy kick his left forward,9662978367_CW_5,pedalling bicycle,9662978367,CW,put the shoes in a better place,make space for the children,chase the ball,lady rocking him,pedalling bicycle 1609,7701673270,how does the baby prevent itself from wetting other places,7701673270_CH_11,wear diapers,7701673270,CH,wear shirts,winter clothing,wear diapers,wearing swimming goggles,wear more clothes 1610,4338819435,how did the lady in purple show affection to the cow at the end of the video,4338819435_CH_0,kiss it,4338819435,CH,drag her in a circular motion,hold onto neck,with her hands,kiss it,blow them 1611,8316378691,why does the man place the box to the ground near the end,8316378691_CW_4,give space,8316378691,CW,feed the cat,give space,make it conspicuous,turn on the toy light,let kids walk through 1612,4567287291,how did the person makes sure that the baby does not fall when playing on the bed,4567287291_CH_3,put hand behind,4567287291,CH,hold the walker,held on to handle,hug,sitting down,put hand behind 1613,3126453673,why was the lady looking down at the end,3126453673_CW_5,looking at tickets,3126453673,CW,let others speak,laughing,way of standing,looking at tickets,interacting with boy 1614,6129861127,why were the people on stage moving their bodies,6129861127_CW_2,swaying while performing,6129861127,CW,performance,doing gymnastics move,singing,get down the stage,swaying while performing 1615,2833808682,what does the baby do after she reached the red box,2833808682_TN_3,put the bag down,2833808682,TN,pushes it,push toy to cot,lean forward and put head down,put the bag down,climb up 1616,5460164242,why did the girl sway her body when she looked at the screen,5460164242_CW_0,learn to dance,5460164242,CW,to distract the man,learn to dance,pick up towel,exercising,posing in the camera 1617,7161607459,why was the boy in light blue shirt looking down at the camera at the end,7161607459_CW_8,see where is the shutter button,7161607459,CW,looking at the muddy floor,to play the drums,see where is the shutter button,trying to get up,invoke boys responses 1618,2735742477,why is there a man standing near the container,2735742477_CW_3,oversees the kids,2735742477,CW,to look at the wall,assisting with the barbeque,playing game,having a conversation,oversees the kids 1619,2583111812,why was the man looking down at the start of the video,2583111812_CW_8,look at bunny,2583111812,CW,at the water,swing cloth,gesturing in his speech,look at pebbles,look at bunny 1620,6971785627,why did the man move his hands out of the car s window after speaking to the camera,6971785627_CW_0,take video of the cow,6971785627,CW,touch the cow s horns,catch thrown balls,avoid car collision,feed the cow grass,take video of the cow 1621,11219960546,why does the boy move away from the girl after kissing her cheek,11219960546_CW_1,embarrassed,11219960546,CW,playing,affection,attracted by the toys,embarrassed,show affection and make baby laugh 1622,4829041184,why is the dog looking at the bottle at the start of the video,4829041184_CW_6,wants to play catch,4829041184,CW,wants to drink from bottle,wants to play catch,trying to touch the bottle,smelt something,they smell of the beverage 1623,4681488749,why did the man in spectacles jumped abit after making a funny face at the end of the video,4681488749_CW_6,someone touches the man,4681488749,CW,to drink water,excited,avoid getting hit,someone touches the man,find something funny 1624,3603780993,what does the dog do after putting the plush away at the start of the video,3603780993_TN_6,lies down,3603780993,TN,lies down,starts biting the ball,on the right,walk around in circles,sniff the grass 1625,2432458239,why did the lady carry the crab on a wooden plank,2432458239_CW_0,to release it,2432458239,CW,feed the dolphins,cruising along water,to release it,check on friends,take pictures 1626,3495538595,why is the man in brown holding kite initially,3495538595_CW_0,wait for wind,3495538595,CW,saying hi to everyone,ensure not fall,playing with parrot,free his hands,wait for wind 1627,2471845614,what does the female in wedding dress do after the mc approaches her at the end,2471845614_TN_8,hug her,2471845614,TN,speaking,holds the book,walk away from adult,hug her,to feed and clean bridegroom 1628,2404094215,why does the lady wear a hat,2404094215_CW_0,hiking,2404094215,CW,shy,hiking,poor vision,prevent smelling paint,prevent hair get wet 1629,4555837160,why is the man playing his guitar on stage,4555837160_CW_0,performing,4555837160,CW,performing,for money,enjoy music,to dance with,playing game 1630,3213208382,how did the baby go down the slope,3213208382_CH_2,sled,3213208382,CH,fell,using the kayak paddle,walking with toy car,sled,ride quickly 1631,4400119620,why does the man wearing specs tell the other man to move ahead,4400119620_CW_1,go closer to the bride,4400119620,CW,go closer to the bride,telling others where to look,reversing,stay within the area,talk to him 1632,2806691984,why are the men holding racket in their hands,2806691984_CW_1,play tennis,2806691984,CW,lure the dog to jump,hand gesture,play tennis,coordinate their moves,gesturing to emphasize his point 1633,8898198130,why does the baby in blue keep having his arms raised out towards the boy in black,8898198130_CW_2,wants to play with him,8898198130,CW,itchy and uncomfortable,looking at tablet,jump up and catch the toy,wants to play with him,squeeze it 1634,2547045867,why does the man in grey move his position before the car moves,2547045867_CW_1,avoid car collision,2547045867,CW,to get the dog out,fashion,highway,make space for the grey box,avoid car collision 1635,5687893796,what did the man in white do after he walked into the room at the beginning of the video,5687893796_TN_8,walked near the book shelf,5687893796,TN,looks at the disc,adjust his shirt,walking,talk to camera,walked near the book shelf 1636,6430774273,why does the woman pick up the boy at the beginning of the video,6430774273_CW_1,put him on chair,6430774273,CW,adjust,to make way for the waiter,to play,put him on chair,curious 1637,2712318761,why does the two ladies dance in the house,2712318761_CW_2,having fun indoors,2712318761,CW,having fun indoors,props,encourage baby to dance,striking a pose,mimicking the tv show 1638,6451572823,how did cat try to get toy,6451572823_CH_4,jumping,6451572823,CH,with two front paws,hugged by man,jumping,caress the cats,smell the camera 1639,2713525734,why is the black jacket man swinging side to side as he walks,2713525734_CW_0,legs painful,2713525734,CW,ensure safety,interacting with the bird,pretend to get hit,following,legs painful 1640,8050371010,why does the man hold the shoulder of the baby in the middle of the video,8050371010_CW_2,support baby,8050371010,CW,rocking the baby to sleep,there was a fly on the baby,affectionate gesture,excited to take a photo,support baby 1641,5254588486,why is the tip of the right sock stretching in the middle of the video,5254588486_CW_3,baby bit sock and pull it,5254588486,CW,dog is pulling,cat is pulling,adult put on sock for baby,baby is wearing socks,baby bit sock and pull it 1642,3126453673,why is the lady holding a long strip of paper at the end,3126453673_CW_2,tickets,3126453673,CW,gesture and reading the menu,keep her belongings,reading from script,tickets,refer to script 1643,2824180578,why did the man in red cap walk pass after taking picture of the men in line,2824180578_CW_4,to stay clear of the area,2824180578,CW,grab some food,to stay clear of the area,adjust shades,bespectacled man s instructions part of trick,argument 1644,4681488749,why does the man in black behind pick up his glass at the beginning of the video,4681488749_CW_1,to drink,4681488749,CW,pass man in yellow a present,to swing it,watch the man untie the toy,pretend to be a bull,to drink 1645,6150459616,what does the girl in blue do after approaching the bags in the middle,6150459616_TN_9,search the bag,6150459616,TN,put her hands up,search the bag,tickle baby,lie on sofa,walk to bald man 1646,11794945346,why did the woman and man next to each other dress differently from the group of men wearing formal suits,11794945346_CW_3,it is their wedding,11794945346,CW,it is their wedding,drink from it,work,working with her in the skit,party 1647,2833808682,what does the baby do after she throws the bag into the box,2833808682_TN_4,pick it up again,2833808682,TN,sits down,stand up,grab onto blanket,move toward the slides,pick it up again 1648,3485644822,why did the lady bend forward and throw her hand forward at the start of the video,3485644822_CW_6,throw first wrapping,3485644822,CW,throw first wrapping,pick up toy,point to tree,drag the red box,to show in the video 1649,9692375711,how does the woman in white store her belongings while she walks,9692375711_CH_6,put in bag,9692375711,CH,hold it in hands,hold roller,put in bag,take them out,hold baby by armpits 1650,5719002896,why did the two electric guitarists pose in front of the singer in the middle of the performance,5719002896_CW_1,part of performance,5719002896,CW,enjoy music,part of performance,see the cue,feeling the music,to let him sing 1651,3018394896,why are the ladies clapping,3018394896_CW_5,dance routine,3018394896,CW,dance routine,cheering,safety,put on cream and lotion,saying hi 1652,3120284159,why does the man in red walk away in the middle,3120284159_CW_8,let lady lead horse away,3120284159,CW,dilemma whether to fix the wig,chicken went away from him,to kick ball,let lady lead horse away,coach 1653,2713525734,why did the black and white shirt man touch his shades while he is walking,2713525734_CW_4,adjust shades,2713525734,CW,moving the toy,head itchy,observe brown shirt man,adjust shades,observing the reaction 1654,8994022703,why does the lady displays the mobile screen towards the end,8994022703_CW_3,to show something,8994022703,CW,talk to person speaking in phone,talking on the phone,indicating to the camera man,to show something,playing with toy 1655,9247615457,why did the child fall down on her leg when she lose support from the sofa,9247615457_CW_1,not experienced in standing,9247615457,CW,toy spinning too fast,to support baby,Pick up ball on the ground,put on shoe first,not experienced in standing 1656,5840213492,why are there flashes of camera where the men perform stunt,5840213492_CW_1,photos taken,5840213492,CW,make fire,fly kite,photos taken,dancing to the rhythm,teaching the kid 1657,5443388088,what does the man in spectacles do after putting down his cup in the middle,5443388088_TN_4,take a book out,5443388088,TN,take a book out,stops drinking,change colour,pours drinks,moves the tongs 1658,4810458386,why is the man on the right put the microphone down in the middle of the video,4810458386_CW_2,stop talking,4810458386,CW,take photo from angle,start talking,stop talking,check the microphone,for lady to use 1659,3738987127,why is the girl at the left nodding and opening her mouth at the start of the video,3738987127_CW_2,remembering the song,3738987127,CW,talking with the other girls,to hold lady s hands,found something funny,remembering the song,agreeing with woman 1660,3485644822,how does the lady in red get rid of the black wrapper in the middle of the video,3485644822_CH_5,throw it aside,3485644822,CH,in her pockets,supports it on the side,throw it aside,give to lady,walking 1661,10415409886,why do the three men continuously move forward,10415409886_CW_5,move tyre in front,10415409886,CW,move tyre in front,for defense,keep warm,coordinate their moves,make funny expressions 1662,5029903979,what does the baby do after standing for a while at the end,5029903979_TN_9,sits down,5029903979,TN,sits down,look at me,suck thumb,put hand into mouth,lay still 1663,6025249212,why do the taller children clap when the shorter child enters,6025249212_CW_2,entertain child,6025249212,CW,entertain child,funny,excited,gain attention,person hits toy 1664,2582976771,what did the lady in white do after the boy approached her,2582976771_TN_1,avoid him,2582976771,TN,moved,point at man,look to the left,avoid him,lift up the boy 1665,3099327773,why was there another person crawling in front of the baby,3099327773_CW_2,guide the baby,3099327773,CW,fall over,crawling,practicing crawling,guide the baby,can not walk 1666,13256002144,how are the people moving from places to places in the video,13256002144_CH_5,ski,13256002144,CH,use legs to paddle,ski,standing,cycling,man push his swing 1667,3418738633,how were the man in orange positioning his hands at the start of the video,3418738633_CH_9,hold them up,3418738633,CH,hold each other arms,hold them up,cross in front,talk and nod,by blowing 1668,2482994684,why did the man pass the glasses to the two boys at the start,2482994684_CW_6,for them to put down class,2482994684,CW,easier for him to drink,ensure boy dont fall,read the book for the baby,teach him to dance,for them to put down class 1669,3597467356,why is the boy in white wearing a cap,3597467356_CW_1,protect from sun,3597467356,CW,taking video,speaking,listen to music,assist the man in red landing,protect from sun 1670,7095619943,why did the boy raise the bottle in the middle of the video,7095619943_CW_3,to drink water,7095619943,CW,playing,pick up the present,wants to play with baby,to drink water,to celebrate 1671,3090695613,how did the girl in stripped pants get up the slope after slidding down,3090695613_CH_2,climb up,3090695613,CH,cycle up,carried by lady in red,hold the rope tightly,climb up,pull the string 1672,8095838321,what does the boy do after jumping down from the monkey bars at the end,8095838321_TN_8,swipe of dirt,8095838321,TN,swipe of dirt,ran to the man,shake his hand,shifted away,waved his hands 1673,4163033472,why does the blonde child bend down after coming back at the end of the video,4163033472_CW_5,take out toy from boot,4163033472,CW,check the tent,to kiss girl s stomach,pick up something on ground,to talk to camera,take out toy from boot 1674,2399505725,why are the dogs running round with the toy,2399505725_CW_4,playing,2399505725,CW,to fight with cat,it is being chased,playing,scared,to get ball back 1675,4681488749,what did the man in spectacles do after the man in blue poked him,4681488749_TN_8,jumped,4681488749,TN,raking,pick up ball,scroll his computer,move backward,jumped 1676,2482994684,why did the two boys hold on to a glass cup,2482994684_CW_0,bring to table,2482994684,CW,wants to try,bring to table,feed baby with milk,for them to put down class,to drink when he is thirsty 1677,4192027724,how do the kids play with the carton boxes,4192027724_CH_10,moves it around,4192027724,CH,moves it around,pick up and put in box,play with the rope,touch the figurines,pull the side of the pram 1678,3332115271,why did the boy bend down in front of the bald man,3332115271_CW_7,take something,3332115271,CW,touch sand water,changing his clothes,take something,sun tan,traditional costume 1679,10622567214,why did the dog stand on his feet and mimic a praying action,10622567214_CW_0,grab attention,10622567214,CW,smelling the ground,ensure the dog s on right path,grab attention,play with dog,wants to get pet 1680,12208961114,why did the lady stay still when the boy is brushing her hair,12208961114_CW_7,let boy play,12208961114,CW,let boy play,resting,natural instinct,straighten it,carry it close to her 1681,4458565343,why are the people standing outside the ferry as the ferry is moving,4458565343_CW_4,watching it go,4458565343,CW,enjoying scenery,river flow,watching it go,slowly enjoy the rocks,waiting their turn 1682,9211491999,why is the kid dressed and wearing shoes inside the house,9211491999_CW_2,wearing bedroom slippers to keep warm,9211491999,CW,attract the woman in black,part of his outfit,wearing bedroom slippers to keep warm,act cool,outfit 1683,6070985304,what does the man in yellow do after jumping into the pool in the middle,6070985304_TN_5,comes out,6070985304,TN,push boy,comes out,put hands on his hip,bite burger,stops dancing 1684,6537623889,why does the boy walk away towards the end,6537623889_CW_3,get another ball,6537623889,CW,give spotlight to boy in yellow,wave pushed him,get another ball,finished controlling the helicopter,guide baby forward 1685,4154619533,why did the man in jacket put the object near his eyes as he turns around to face the other girl in black hat,4154619533_CW_4,to take picture,4154619533,CW,listen to them carefully,sign language,intrigued by her performance,see the moves and guide,to take picture 1686,5710270308,what did the baby do after holding the orange ball,5710270308_TN_9,raise the ball in hand,5710270308,TN,raise the ball in hand,move his body,turn towards the toy,bites it,drops the sand 1687,4443349080,what happened to the boy after he kicked the ball high into the fence,4443349080_CW_3,fall over,4443349080,CW,hitted by dog,dog wants to play,lost his attention,fall over,pushed by girl 1688,3400557969,how does the man reaches from one end to another when in the waters,3400557969_CH_0,swim,3400557969,CH,swim,runs her hand through it,hold onto float,standing,use fishing rod 1689,5036295532,what did the baby do before picking up the spoon,5036295532_TP_6,playing with spoon,5036295532,TP,spits out food,playing with spoon,push toy to cot,moving back and forth,turn back 1690,5710270308,how does the baby pick up the orange ball with the hand that initially hold the red ball near the end of the video,5710270308_CH_3,release the red ball first,5710270308,CH,push the steering wheel,use legs to push,put pieces together,with two hands,release the red ball first 1691,3278126113,how did the lady support the baby as the baby walk,3278126113_CH_6,hold baby by armpits,3278126113,CH,kiss the baby,holds on to the toy,touch baby s nose,tickle the baby,hold baby by armpits 1692,3348930430,how was the man with black backpack moving after he got up the slope,3348930430_CH_1,jump,3348930430,CH,crawl on snow,bag,jump,skiing down,uses his hands 1693,5358657883,how does the woman in blue show affection towards the blonde girl,5358657883_CH_2,hug her,5358657883,CH,crawl,hug her,give her chocolate,clap hand,cheers with them 1694,6783533553,why does the musician sit with one leg crossed over the other,6783533553_CW_4,hold the guitar,6783533553,CW,hold the guitar,support himself,following the beat,check what string to play,read book 1695,6782372702,why did the adult touch the cat when he is sleeping,6782372702_CW_0,play with it,6782372702,CW,push away cat from dog ,want cat to catch ball,massage the cat,carry to somewhere,play with it 1696,7987394824,why do the adults constantly keep an eye on their children,7987394824_CW_2,watch out for children s safety,7987394824,CW,baby going to be knocked down by the rollerblader,curious about camera,watch out for children s safety,copy the man s action,readjust boy position 1697,5840213492,how do they go up the hill at the end,5840213492_CH_4,rode the bicycle,5840213492,CH,rolling down,red boat person help to flip,push the ski handles,rode the bicycle,by running up 1698,2514277462,why are the men holding on to the white thing,2514277462_CW_3,game controller,2514277462,CW,fashion,passionate,along with the rhythm,game controller,moving with rhythm 1699,8994022703,what did the lady do after she smiled at the phone towards the end of the video,8994022703_TN_4,show the screen to camera,8994022703,TN,kiss her,smile and look at baby,show the screen to camera,look around,talks to him 1700,4501146951,why are the boys running away from each other,4501146951_CW_3,playing hide and seek,4501146951,CW,leave away from the black dog,playing hide and seek,playingq,chasing balls,happy 1701,4443349080,why does the boy throw the ball on the ground again after picking it up,4443349080_CW_7,to kick ball,4443349080,CW,get his attention,to kick ball,play catch with dog,to catch its attention,interested to play with dog 1702,3958650538,why does the boy shakes the phone in between,3958650538_CW_5,playing,3958650538,CW,playing,lady rocking him,learn to walk,control screen,to remove the toy 1703,10830982353,why did the man in green picked up the box after he closed it,10830982353_CW_7,to give to man,10830982353,CW,communicating,adjust his pants,pick up mud,to give to man,to camouflage 1704,4338260909,why did the man shake his head as he was talking to another person,4338260909_CW_1,excited gesture,4338260909,CW,engage audience,rehearsing script,excited gesture,role play,going with rhythm 1705,7751455900,how did the baby approach the objects,7751455900_CH_2,crawling,7751455900,CH,man carry her on his lap,in her arms,crawling,running,carried by the lady 1706,9921053695,why did the ladies put the two bottles together at the end of the video,9921053695_CW_4,side by side,9921053695,CW,take balloon away from baby,drinking,side by side,changed her mind,point at something 1707,2710168479,why was the group just standing along the pavement,2710168479_CW_4,taking pictures,2710168479,CW,its raining heavily and dark,narrow pathway,performing,lecturing,taking pictures 1708,3826103533,how did the baby interact with the toy in front of him,3826103533_CH_0,hit them,3826103533,CH,tickles him,seatbelt,pulling it,hit them,flip the toy around 1709,4338819435,what did the cow do after the lady bend towards it,4338819435_TN_6,kiss it,4338819435,TN,reach for something,watch them and move around,kiss it,jumps up,looked down at ground 1710,4042843624,why is the man wearing a hat,4042843624_CW_2,hot,4042843624,CW,colleages,keep hands clean,hot,costume,it is sunny 1711,5597037980,why did the boy bend down beside the bottle,5597037980_CW_0,to pick bottle up,5597037980,CW,looking for something,make his hand wet,want to kick bottle,feel comfortable,to pick bottle up 1712,6380666279,why did the black jacket man wear a jacket,6380666279_CW_3,cold,6380666279,CW,cold,protect him from being recognised,hot sun,prepare for hike,prepare for dance competition 1713,3277631367,why did the man in spectacles move his hand forward after raising it up,3277631367_CW_1,showing product,3277631367,CW,showing product,engrossed in dance,emphasise,adjust its position,playing the piano 1714,2582976771,why did the boy put his hands on the table in the middle of the video,2582976771_CW_9,support,2582976771,CW,pick up the bottle,throw the ball,support,serve the ball,grad food 1715,5408572348,what does the girl in blue do after pouring the water to the pail close to her at the start,5408572348_TN_6,dips her spatula in,5408572348,TN,move her forward,cry and shout,step backwards,dips her spatula in,gave it to another person 1716,10211516755,why did she put her hand in her mouth after she picked up the food left on the table,10211516755_CW_5,eat dropped food,10211516755,CW,eat dropped food,blow candle,for the dog to eat,catch spills,deliver the order 1717,11219960546,why does the boy move to hug the girl before moving to the end of the ledge,11219960546_CW_3,show affection,11219960546,CW,prevent him falling off,catch baby if fall,want to play together,to give her food,show affection 1718,9394673735,why did the pigs walk away after trying to eat the leaves outside the fence but failed,9394673735_CW_7,gave up,9394673735,CW,excited to eat,pigs are full,for food,wating instructions to rear sheep,gave up 1719,4164627367,how are the people travelling in the video,4164627367_CH_5,cycling,4164627367,CH,skateboard,stand closely,cycling,by the donkey,hug 1720,3564576864,why did the woman in long sleeves hold on to a cup while talking to the other people at the table,3564576864_CW_2,drinking,3564576864,CW,throw the cup away,sign language,block sunlight,drinking,introduce the cup 1721,2422465594,why did the bigger rabbit turn its head towards where the smaller rabbit came,2422465594_CW_2,prey on it,2422465594,CW,trying to get away,prey on it,follow the smaller dog,wants toy,less energy and bigger sized 1722,3348930430,what did the man with black backpack do after he fell on the ground near the end of the video,3348930430_TN_2,get up,3348930430,TN,looks back at the man speaking,get up,help baby sit back up,stands next to the jumping point,look away from camera 1723,4740033681,how does the boy in red drink the drinks,4740033681_CH_0,suck using straw,4740033681,CH,suck using straw,throw it up and down,kick,talk and nod,drink out of the cup 1724,4565373467,what does the shirtless guy on extreme left do after he reached the sand in the middle,4565373467_TN_0,bend down,4565373467,TN,dig with shovel,bend down,push the boy,sit up,raise his arm 1725,2824180578,why are the people standing in a line,2824180578_CW_1,restrict access,2824180578,CW,performing,to watch girl,to receive awards,restrict access,watching the man with chains 1726,3060710599,why did the boy tilt the toy and inspect it after he picked it up,3060710599_CW_8,to look at it closer,3060710599,CW,to look at it closer,see the dog inside,take it to other place,to throw the toy,he was scared 1727,6063052014,how is the baby s clothes kept from stains while feeding,6063052014_CH_3,wear bib,6063052014,CH,cloth,tissue,jacket,wear bib,napkin 1728,7824213108,why is the man bending forward in the video,7824213108_CW_4,to push toy car,7824213108,CW,looking at boy,to push toy car,to sit,play with baby,swing cloth 1729,3964794227,why did the baby walk away at the end,3964794227_CW_9,does nt want to go in pool,3964794227,CW,to hold the lady s hand,to take a paper,does nt want to go in pool,lose interest,entrance from the back 1730,4555837160,why must the microphone be on a stand instead of the man holding it,4555837160_CW_7,playing the guitar,4555837160,CW,for singing,performers playing instrument,playing the guitar,keep his balance,give others to speak 1731,6371744849,why did the girl push herself up on the ground when she started to wiggle up,6371744849_CW_1,change to another game,6371744849,CW,change to another game,for stability,playing the game,adjust his position,to push forward 1732,2504514045,why did the dog laid down in the middle of the video,2504514045_CW_9,playing with the person,2504514045,CW,eat food,show affection,fell down,playing with the person,pat the dog s body 1733,2824890841,why does he carry his baby this way,2824890841_CW_3,frees his hands,2824890841,CW,showing affection,frees his hands,support the baby,stay standing,hold for better support 1734,6320419082,what did the girl in colourful shirt do after she sat down,6320419082_TN_7,get up,6320419082,TN,look at baby,dance,look to her left,drink from a cup,get up 1735,3508141028,why did the girl in blue turn around and look at the lady in pink when she stopped playing the piano,3508141028_CW_4,ask for guidance,3508141028,CW,help to flip piano score,ask for guidance,change page,to feed baby,want to sit 1736,7871817080,why did the man point at the toy to show the baby,7871817080_CW_2,teach him how to play,7871817080,CW,teach him how to play,wanted to buy for the baby,to give her food,want to attract the dog,play with cat next to the baby 1737,9189821251,what did the girl do after the dog ran away with the ball,9189821251_TN_2,chase after dog,9189821251,TN,walk to woman,move towards the lady,chase after dog,chase girl,dip it in pool 1738,3058094185,what does the boy do after standing up at the start,3058094185_TN_5,clap,3058094185,TN,clap,talk to the lady,push the robot,yes,climb over something to sit 1739,7987394824,why did the baby in blue crawl out of the tire after playing with it,7987394824_CW_8,tired,7987394824,CW,support himself,hands need for holding table,imitate the dog,get him away from the tire,tired 1740,2551446323,why does the man puts his finger in the beak of bird,2551446323_CW_2,feed the bird,2551446323,CW,check for predator,feed the bird,to drink,man held tightly,caressing for chicken 1741,8731154071,why did the man bend down after taking a drink,8731154071_CW_4,put the bottle on platform,8731154071,CW,put the bottle on platform,ready to do a flip,bow towards audiences,pick up the fire stick,spit the water out 1742,6051291805,what does the baby do after walking with the walker for a while at the start,6051291805_TN_5,turn around,6051291805,TN,suck thumb,stand up,falls down,sit on floor,turn around 1743,9284736689,what does the man in black singlet do after he entered the washing machine area,9284736689_TN_9,start running,9284736689,TN,throw bottle cap,shake finger,start running,point towards something,walk over 1744,2640372277,why did the boy smile at the camera,2640372277_CW_5,happy eating yoghurt,2640372277,CW,happy eating yoghurt,celebrating his birthday,amused,find baby cute,amused by baby 1745,4228152919,why does the child hold the red toy in his hand when looking at the toy on the man in black s leg,4228152919_CW_2,keep it close to him,4228152919,CW,reach out for the thing,put toy away,keep it close to him,teething,protect from sun 1746,10718903414,why is the girl in light pink running around,10718903414_CW_1,dance,10718903414,CW,follow girl to where she goes,playing,dance,want to feel the water,practicing 1747,3958650538,why does the lady keeps touching the phone with her fingers,3958650538_CW_9,helping,3958650538,CW,eye contact,listening music,helping,end call,resting her hand 1748,2835672361,why does the man run carefully in the fountain,2835672361_CW_0,ground is slippery,2835672361,CW,swimming to the surface to breathe,avoid getting splash,wash hand,ground is slippery,playing with baby 1749,2401079660,what did the man do after the boy fell,2401079660_TN_11,holds the baby,2401079660,TN,stand up,carry him up,holds the baby,lean against the screen,hold her up 1750,3784430367,why did the girl turn to her right after touching the beer glass the second time,3784430367_CW_8,to touch glass again,3784430367,CW,to touch glass again,dancing,interested in white art piece,prevent from falling over,the drink is inside 1751,4004287747,why did the woman come down of her seat at the beginning,4004287747_CW_6,reach the cake,4004287747,CW,pick up pebbles,to fix her top,reach the cake,look for the thrown object,dead end 1752,5489050159,what does the man in blue do after leaning back at his chair for a while at the end,5489050159_TN_9,leans forward,5489050159,TN,put the acrylic against the metal,rub his head,thorw metal,stands up and cycle,leans forward 1753,4042843624,why did the man hold onto the rope,4042843624_CW_0,control the boat,4042843624,CW,control the boat,excited,show affection,open the gate,controlling the helicopter 1754,2622782176,why did the boy in green jump up and point while eating the pizza,2622782176_CW_0,calling out to someone,2622782176,CW,playing,calling out to someone,to shoot into the hoop,let the boy hit,wants more food 1755,7282289126,why did the girl hold something up in the middle of the video,7282289126_CW_8,to drink,7282289126,CW,boy was there,cue woman to talk,take balloon away from baby,lose interest in lady,to drink 1756,8486832796,why are all the people looking at the man with guitar,8486832796_CW_3,he is performing,8486832796,CW,to enjoy the music,he is performing,moving with the rhythm,make effective impression,the guitar is beautiful 1757,2436811248,why is the boy moving his head around while looking at the laptop at the start,2436811248_CW_8,look at parents,2436811248,CW,adjust keys,look at parents,clicking the lyrics,doing some work,resting 1758,3339687949,why did the baby hold on to the table top nearing the end of the scene,3339687949_CW_1,check what is on table,3339687949,CW,playing,touch white thing,tired,to walk back,check what is on table 1759,3616966959,what did the man do at the end after clapping,3616966959_TN_5,give thumbs up,3616966959,TN,bend down and touch the woman s back,cover his forehead,put his hand in front of camera,give thumbs up,tap card again 1760,4360431067,how does one know if the man in blue and the lady in black staff belong in this kitchen,4360431067_CH_4,they look professional,4360431067,CH,they look professional,bite it,carrying child,spoon,wear long-sleeved clothing 1761,3957553632,how are the people moving themselves in the woods,3957553632_CH_4,walking,3957553632,CH,swimming,push the ski handles,walking,cycling,paddle 1762,3058613626,why does the man with a red hat put his arm down at the end of the video,3058613626_CW_4,done performing,3058613626,CW,carry boy off,take a drink,looking at object,done performing,look at phone 1763,10211516755,what does the girl do after eating the food on the spoon in the middle,10211516755_TN_9,takes the spoon back in bowl,10211516755,TN,takes the spoon back in bowl,give to the man in grey,walk away,look at the girl in tiara,lick her finger 1764,9038264963,why did the man in green read the script on his hands out loud,9038264963_CW_0,recite the script,9038264963,CW,show a trick,let him speak,give speech,recite the script,emphasize his point 1765,2771561128,why did the children pose in one straight line,2771561128_CW_1,they are taking picture,2771561128,CW,performing,restrict access,performance,playing with the toy,they are taking picture 1766,4447314310,why is the sheep staring at the baby,4447314310_CW_0,baby is intrigues with them,4447314310,CW,baby is intrigues with them,comfortable,play toy with baby,push dog away,looking for food 1767,3160575610,how are the girls entertaining themselves at home,3160575610_CH_1,play instruments,3160575610,CH,play instruments,with its paws,climbing up,chase the tail of the toy,with baby hands 1768,8812093275,why did the chasing and running slow down towards the end of the video,8812093275_CW_1,tired,8812093275,CW,tired,clear space,dog did not move,end of performance,look at the boy touching him 1769,4010069381,how do the two man play the instrument,4010069381_CH_6,roll the handle,4010069381,CH,roll the handle,tap their feet,strum the string,hit with sticks,pat with hand 1770,7508439506,why did the boy put his hands on the baby,7508439506_CW_1,play with baby,7508439506,CW,play with baby,to give her food,play,support the baby,fall and pounce on the boy 1771,4984331176,why are the people running,4984331176_CW_1,want to pass quickly,4984331176,CW,racing,catch ball,emergency escape,want to pass quickly,gate is closing 1772,3249402410,what did the lady in pink do after the lady in red passed her the pan,3249402410_TN_9,walk away,3249402410,TN,talk to the person in front,pick up hat,walk away,take a photo,take the plate 1773,4010069381,why did the lady bend towards the man with brown vest,4010069381_CW_1,talk with man,4010069381,CW,trim eyebrows,talk with man,pass paper,look at his phone,prevent hair get wet 1774,5658916668,what did the man do after falling,5658916668_TN_6,gets back up,5658916668,TN,crawl up,put hand on head,walk towards the boy,gets back up,crying 1775,10082798964,why does the lady raise her right hand halfway through the video,10082798964_CW_6,one of the gestures she s teaching,10082798964,CW,play with baby,dancing,pick up the ball,pick up blanket,one of the gestures she s teaching 1776,11541421563,what does the woman in brown do after sitting for a while at the start,11541421563_TN_5,leave her seat,11541421563,TN,touch baby s hand,run,look at the lady in red,stand up and flip the chart,leave her seat 1777,4199369046,what do the other people do after the lady finishes drinking at the beginning,4199369046_TN_8,laughs,4199369046,TN,tap bottle cap,laughs,move away,leave the stage,put the pot down 1778,9409566840,how does the brown dog keep the white dog down,9409566840_CH_2,hold the dog with its paws,9409566840,CH,change hand,hold the dog with its paws,walks around,using leash,lie down on chair 1779,4967810888,why does the woman in white bend down while walking in near the end,4967810888_CW_2,stay clear of the plant,4967810888,CW,ensure she do nt fall,pick up a bag,pose,touch lady in blue,stay clear of the plant 1780,2584172238,why did the woman place her hand at the boy s hip in the middle of the video,2584172238_CW_6,support boy,2584172238,CW,take balloon away from baby,support boy,get closer to the bell,clean the hip,check whether baby peed 1781,6024684644,why did the man bend so low,6024684644_CW_6,the hole is very deep,6024684644,CW,stabilise himself,adjust shoes,hiding from the dog,avoiding the sun,the hole is very deep 1782,11541421563,why are the men sitting surrounding the man in orange and woman in brown,11541421563_CW_0,observe as audience,11541421563,CW,snuggle with boys,to reach the top,different types of bicycles,observe as audience,watching friends play 1783,2821788355,how did the man in red pants keep contact with the speeding boat,2821788355_CH_2,hold on to long rope,2821788355,CH,push himself,steer wheel,hand signals,paddle,hold on to long rope 1784,3846475848,why does the man keep the ferret on the floor,3846475848_CW_2,to dry,3846475848,CW,to dry,allow the girl to play,fall over,touch the dog,baby crying 1785,2782307049,how did the lady get down the rock,2782307049_CH_1,slide down with rope,2782307049,CH,jump down,skiing down,cycle down,climb down,slide down with rope 1786,3155382178,how do the people interact with the ball,3155382178_CH_7,kick the ball,3155382178,CH,pushed by a man,powered by batteries,kick the ball,pounce up and down,throw ball 1787,8225502382,how does the man in dark green lift the bicycle up in the middle of the video,8225502382_CH_3,bend down to pick it up,8225502382,CH,training wheels,bend down to pick it up,pushing it,show him the watch,pushing bicycle 1788,2920952624,why does the taller woman look up and kiss at the camera in the middle of the video,2920952624_CW_4,playing,2920952624,CW,greeting,meet characters,playing,avoid hitting plant,gesturing to boy 1789,2697261300,how is the boy being held,2697261300_CH_4,carried by man in grey,2697261300,CH,using one hand,on man s lap,carried by man in grey,put on his lap,talk and touch 1790,2920952624,what does the shorter woman do after putting her left hand into a bag,2920952624_TN_7,throw ingredients into pot,2920952624,TN,pick up bag,throw ingredients into pot,happy,look around,talk to the girl 1791,3524939594,how does the man in black sitting on the cart prevent himself from falling off,3524939594_CH_7,hold onto handles,3524939594,CH,stick his legs out,sitting on chair,lie down on cart,lean backwards,hold onto handles 1792,4036955771,what did the girl in red and blue do after walking in front of the performers,4036955771_TN_7,turn back,4036955771,TN,turn back,take video,adjust boy s position,pat her head,flipping the pages 1793,11541421563,what does the man in orange do after the woman in brown looks at him at the start,11541421563_TN_7,point at book,11541421563,TN,perform a fire trick,annoints her,walk same direction as woman,point at book,attentively 1794,6024684644,why does the man talk while digging the hole,6024684644_CW_3,bored,6024684644,CW,arguing,making an announcement,bored,talking about each other,giving instructions 1795,3270490566,why is the man standing in the middle moving his hands,3270490566_CW_2,play the drum,3270490566,CW,play the drum,moving with the rhythm,catching a ball,to synchronize,thinking about something 1796,4626085492,what did the black dog on the sofa do after it dropped the red toy,4626085492_TN_7,jumps down,4626085492,TN,jump on man s leg,jump onto couch,push dog away,put it on boy in red,jumps down 1797,2705374471,what does the boy do after tossing up the toy at the start of the video,2705374471_TN_4,push the toy down,2705374471,TN,move forward,crawled forward towards the man,kicks it,push the toy down,places them back in the toolbox 1798,10001787725,why did the woman hold the baby when the baby moved to the edge of the sofa,10001787725_CW_1,protect from falling,10001787725,CW,go somewhere,support herself,talking to kids,for balance,protect from falling 1799,6772999108,why is the girl clapping in the middle,6772999108_CW_9,follow the music,6772999108,CW,she likes the food,follow the music,likes the fruit,playing with adult,singing birthday song 1800,8208035645,how was the boy transporting himself around,8208035645_CH_1,cycling,8208035645,CH,cycling,skateboarding,walk,on man s lap,on scooter 1801,10082798964,why is the kid sitting,10082798964_CW_2,listening to lady,10082798964,CW,baby can not swim,listening to lady,eating,watching television,playing with dog 1802,2400171624,why does the man in black needs to hold two sticks with him to ski,2400171624_CW_2,for balance,2400171624,CW,ski stuck in the snow,run away,cold weather,for balance,watch them dancing 1803,2697214342,why does the man in green bend the wood very slowly,2697214342_CW_1,not break it,2697214342,CW,prevent from hurting his hands,break it,assist securing at right position,not break it,wait for the man 1804,4967810888,what did the lady with blonde hair do after she entered the room,4967810888_TN_6,sat down,4967810888,TN,stand up,leave the room,turn back to window,run towards the camera,sat down 1805,8224504302,why are the two men standing on stage,8224504302_CW_3,speeching,8224504302,CW,speeching,to receive awards,ready to dance,playing drums,playing guitar 1806,6542914065,why did the man in red suddenly slow down,6542914065_CW_9,saw ball go different direction,6542914065,CW,look at the cameraman,stuck in snow,prevent overflow,saw ball go different direction,play the guitar 1807,3469864014,how did the cat respond to the camera,3469864014_CH_6,smell the camera,3469864014,CH,bit the camera,meowed at the camera,hit the camera,run around camera,smell the camera 1808,6542914065,why is the three men running on the field,6542914065_CW_8,trying to catch ball,6542914065,CW,to make a score,to catch him when he falls,trying to catch ball,get on it,playing hide and seek 1809,2920952624,why does the shorter woman open the fridge at the end of the video,2920952624_CW_3,to grab something,2920952624,CW,check out whats inside,interested in white art piece,save electricity,run tap water,to grab something 1810,14003541505,what does the baby do after her hands touch the ground at the start,14003541505_TN_4,try to crawl forward,14003541505,TN,create waves,bites it,try to crawl forward,splashes the water in tub,play with owl toy 1811,3303565503,why is the man in white with a cap holding on to the girl,3303565503_CW_0,posing,3303565503,CW,protect from sun,aiming to throw,posing,to support the baby,outfit for fencing 1812,6037747123,why did the two ladies put their hands above their eyes while staring out,6037747123_CW_6,to see better,6037747123,CW,practicing cheer,posing for photo,to see better,dancing,wiping their face 1813,4010069381,why are both the men moving their hands,4010069381_CW_0,performing,4010069381,CW,practicing singing,performing,engage audience,dancing,fencing equipment 1814,2400171624,how does the skier get down from the hill at the beginning,2400171624_CH_6,jumps,2400171624,CH,pushing ground using 2 sticks,jumps,push sticks,use ski pole,walking 1815,11541421563,what does the man in orange do after the woman in brown left at the start,11541421563_TN_6,look at book,11541421563,TN,push grey chair,annoints her,drink water,hold the animal,look at book 1816,11541421563,how does the woman in brown take a closer look at the book at the start,11541421563_CH_2,move her body forward,11541421563,CH,look at screen,move her body forward,using a button,using the lights from their headband,with her right hand 1817,2782307049,why does the woman slide down the rope,2782307049_CW_2,doing a flying fox,2782307049,CW,doing a flying fox,lost balance,maintain balance,skiing,tripped 1818,6793786769,why did the person near the table touch the train when it approached him,6793786769_CW_10,change its direction,6793786769,CW,transport something,put items on train,prevent train from dropping off table,change its direction,prevent train from going off track 1819,3303565503,why do the man and lady suddenly stay still at the end,3303565503_CW_6,get picture taken,3303565503,CW,interacting with boy,listening to the woman in black,get picture taken,ensure safety,look at the side 1820,3112351937,what did the shirtless man do after the man with the flippers put his arm around him at the middle of the video,3112351937_TN_6,do the same thing,3112351937,TN,singing away from the microphone,clap his hands,put down ball,kiss baby,do the same thing 1821,3112351937,why are the two men swimming upwards,3112351937_CW_2,swimming to the surface to breathe,3112351937,CW,got on the board,swimming to the surface to breathe,stunt,bathing,to splash water at them 1822,4190655097,why was the cat carried up at the end of the video when it tried to leave the cot,4190655097_CW_3,keep it calm,4190655097,CW,to play with the man,adjust the position of the cot,keep it calm,get the food,waiting for owner 1823,2821788355,why did the man squint his eyes,2821788355_CW_4,got water in it,2821788355,CW,got water in it,get oxygen,look at the book,balance better,fashion 1824,8241491518,what does the man do after cutting off the leaves for a while,8241491518_TN_8,pull leaves,8241491518,TN,changes direction,pull leaves,turn the model,kneel down,pick up something else 1825,3164519967,where is the old lady trying to put the pacifier after the baby spit it out,3164519967_TN_7,back into baby s mouth,3164519967,TN,adjusts the baby in grey,smiles,put cotton pad,move the yellow bowl away,back into baby s mouth 1826,2930782930,how did the lady support the baby in the video,2930782930_CH_7,carry baby with right arm,2930782930,CH,touch fingers,rubbing the baby,hit with stick,carry baby with right arm,hand behind head 1827,4166942239,why are the men dressed in formal,4166942239_CW_0,important event,4166942239,CW,singing,giving talk,important event,work,keep warm 1828,6542914065,what does the other three people do after the man in grey pats the ball in the middle,6542914065_TN_5,run,6542914065,TN,runs toward the ball,walks away,look at man in light brown,watching,run 1829,2829462646,why is there a man in brown resting at the side of the wall when camera was panned to show the interior,2829462646_CW_7,taking a break,2829462646,CW,playing the guitar,changing his shirt,trying to engage other people,taking a break,play with the boy 1830,2930782930,how did the lady show affection to the boy in the middle of the video,2930782930_CH_1,kiss him,2930782930,CH,kiss him,touch baby face,pick up toy,bend down to see,puts hand on the baby s head 1831,4147398280,how did the boy strategise where to turn next,4147398280_CH_2,look all around the rubik once,4147398280,CH,look all around the rubik once,ask for help,guided by the video,refer to instruction manual,looks at his script 1832,2782307049,why did the lady wear helmet,2782307049_CW_0,flying fox,2782307049,CW,cycling,flying fox,ride horse,on scooter,skiing 1833,4984331176,why did the man in white hold and swing a rope,4984331176_CW_0,playing group games,4984331176,CW,stopping her from touching cake,swing the baby,playing group games,jumping,drawing on it 1834,3814690167,why did the woman tap her foot for while she was playing the drum,3814690167_CW_2,playing the drums,3814690167,CW,he needs to leave,show affection,playing the drums,keep rhythm,to balance the cycle 1835,3943634344,why is the lady holding a book in front of the girl,3943634344_CW_9,let the baby recite,3943634344,CW,reading something out of it,read to boy,let the baby recite,refer to lyrics,direct the baby s attention 1836,4147398280,how does the boy interact with each other,4147398280_CH_6,turn and twist rubik cube,4147398280,CH,reading books together,turn and twist rubik cube,pressing the keys,runs with the trolley,punch sandbag 1837,4658396458,why did the baby move the toy towards his mouth after taking it up,4658396458_CW_1,wants to bite it,4658396458,CW,fun,to eat more,check it out,wants to bite it,wants to play 1838,4166942239,what does the man in red do after bending down and standing up straight,4166942239_TN_8,demonstrate to man in suit,4166942239,TN,turn back,demonstrate to man in suit,hold boy s hand,stand still for a while,eating and watching him 1839,4333544549,why did the man in blue touch his pocket in the middle,4333544549_CW_6,take out a phone,4333544549,CW,get tissue,find wallet,take out dog food,find keys,take out a phone 1840,6898821807,what does the baby do after grabbing the boy s hand,6898821807_TN_9,pushes it away,6898821807,TN,looks at the baby,helps the baby walk,stares at camera,pushes it away,hold the man s hand 1841,2535384528,why does the man wear glove on one hand,2535384528_CW_6,grip golf club,2535384528,CW,lost the other pair,one hand is occupied,playing snow ball,working,grip golf club 1842,5070310138,why is the baby sitting down,5070310138_CW_7,bathe,5070310138,CW,bathe,lost balance,play with dog,eating,watching television 1843,6793786769,why did the boy lean so close to the trains at the beginning of the video,6793786769_CW_3,kiss the train,6793786769,CW,to touch the sandals,watch the sence outside,to check the water level,let the girl feed him,kiss the train 1844,6024684644,how did the man reach the sand deep into the hole while digging,6024684644_CH_5,bent all the way down,6024684644,CH,swing his legs,squatting,bent all the way down,spade,drill 1845,7987845241,why is the woman in white rubbing the leg of the dog at the start of the video,7987845241_CW_0,preparing for injection,7987845241,CW,entangled by the leash,giving dog injection,trying to get baby s attention,preparing for injection,lady wants dog to sit down 1846,7508439506,why did the boy lean forward to the boy,7508439506_CW_5,touch the baby,7508439506,CW,touch the baby,get the pacifer,for safety,assisting with the barbeque,tap table 1847,2584172238,how did the woman in yellow support the boy in blue at the start of the video,2584172238_CH_0,hold baby up,2584172238,CH,caress baby,turn over his body,pull his finger,hold baby up,rubbing baby s hair 1848,2930782930,what did the lady do after the baby moved his hand the first time,2930782930_TN_0,waves her hand,2930782930,TN,waves her hand,put the red bowl on head,kiss the baby,hold onto her dress,feed another time 1849,6793786769,why did the boy lifted his head again in the middle of the video,6793786769_CW_11,train is coming,6793786769,CW,attracted by dog,train is coming,excited,playing with something,wants to play with baby 1850,6793786769,how did the boy interact with the train in the middle of the video,6793786769_CH_7,wait for it to come back,6793786769,CH,wait for it to come back,spinning the train,kicked with his legs,push the steering wheel,use sticks to hit 1851,4658396458,how did the pink basket toy move in the video,4658396458_CH_7,turn around,4658396458,CH,put towel around,shake it,jumping,turn around,use hands 1852,5070310138,where did the baby touched after he put his hand in his mouth,5070310138_TN_5,nose,5070310138,TN,nose,his palm,pacifier,tried to stuff more toy,reach hand out 1853,8547321641,what did the baby do after he walked up to the camera,8547321641_TN_8,walk to the sea,8547321641,TN,rock chair,take the toy,walk to the sea,tried to touch camera,stares at camera 1854,6772999108,how was the boy making music,6772999108_CH_4,strum the string with finger,6772999108,CH,with a stick,sit down,strum the string with finger,wear glove,presses the button 1855,4166942239,how is the man in red standing at the end of video,4166942239_CH_9,holding fist,4166942239,CH,hands behind his back,folding arms,lean against wall,hands in pocket,holding fist 1856,6542914065,how did the man in grey signal for the other people to move run,6542914065_CH_1,pat the ball,6542914065,CH,pat the ball,uses a leaf,claps,use paddle,pull leash 1857,10309542255,how did the animals make sure that they do not get pushed too far off during the fight,10309542255_CH_5,push back,10309542255,CH,throw mud,stomp their feet,hurl a stone,push back,shout for help 1858,2868183184,why does the girl in white hold a rod,2868183184_CW_2,make food,2868183184,CW,fishing,to hit the fly,make food,play with baby,hit the drum 1859,2821788355,what does the man do after crossing the wave caused by the speedboat,2821788355_TN_7,touch the water,2821788355,TN,boat capsized,throw something onto shore,grab float from back,touch the water,strokes his beard 1860,5658916668,why did the man extend his arms forward,5658916668_CW_0,maintain balance,5658916668,CW,hold baby in place,maintain balance,dancing with partner,pointing at audience,lifting weights 1861,3851913128,why did the guy in red raise his hand out and made the okay sign to everyone,3851913128_CW_2,confirm they have learned,3851913128,CW,confirm they have learned,teething,copy the cartoon character,ask him to hurry up,encourage him 1862,2697214342,why are there three more men standing around the man in green bending the wood,2697214342_CW_4,working on other things,2697214342,CW,recording,scared of snake,working on other things,following,observing 1863,3155382178,why does the man move closer to the ball at the beginning,3155382178_CW_0,to kick the ball,3155382178,CW,get close to the baby,catch fish,to kick the ball,facing the camera,prepare for another hit 1864,3943634344,why does the woman pull the girl s shoulder back at the start of the video,3943634344_CW_2,get her attention,3943634344,CW,looking at something,adjust her clothes,indicating to the camera man,get her attention,posing for photo 1865,8224504302,why do not the two men drink,8224504302_CW_0,focus on speech,8224504302,CW,playing with girls,no drink left,focus on speech,busy eating,cover mouth with hands 1866,8225502382,how does the man feel after sliding down the top after the third attempt,8225502382_TN_10,happy,8225502382,TN,walk to girl,help the man,stop the bicycle,run to the field,happy 1867,2920952624,what does the shorter woman do after talking with the taller woman,2920952624_TN_9,open fridge,2920952624,TN,stir fry,starts speaking,open fridge,hug the woman,relaxed 1868,6024684644,why did the lady look at the man while he digs the hole,6024684644_CW_7,to see how he digs,6024684644,CW,ensure his safety,learning from him,to see how he digs,bored,the lady asking questions 1869,4190655097,how does the cat get out of the cot,4190655097_CH_8,jumps out,4190655097,CH,jumps out,swing stick,fly out,swim out,with two front paws 1870,2547885226,what does the kid do right after standing up,2547885226_TN_5,kicks sand off his shoes,2547885226,TN,pointed at the sandals,kicks sand off his shoes,bring jacket away,swing the dog,smile and walk forward 1871,2705374471,what does the baby do after stretching his arms and legs in the middle of the video,2705374471_TN_5,turn his head,2705374471,TN,look towards the camera,turn his head,bites the toy,show baby s face,pushing box 1872,2868183184,why is the lady seated near the girl,2868183184_CW_3,assisting in preparing the food,2868183184,CW,pose for camera,feed the boy,recording the girl,adjusting her hairtie,assisting in preparing the food 1873,4166942239,why does the man in the suit look confused when the man in red holds his hands in front of him,4166942239_CW_2,check what been fixed,4166942239,CW,keep warm,paying attention to him,direct attention,check what been fixed,show something 1874,7999756100,why does the bald man move backwards at the beginning,7999756100_CW_0,adjust position,7999756100,CW,adjust position,legs got tangled,reading from script,sunny weather,take something 1875,7888256388,what did the dog do after the lady removed her hands,7888256388_TN_1,sniff her shoe,7888256388,TN,wait,shift her weight,pats the dog,lick the table,sniff her shoe 1876,4199369046,why is the lady holding the white object in the beginning of video,4199369046_CW_2,to drink,4199369046,CW,her medal,to eat,to drink,to comb her hair,to project her voice 1877,2930782930,why did the baby wave his hands,2930782930_CW_4,imitate the lady,2930782930,CW,play with the baby,happy,imitate the lady,reflects,play with them 1878,6898821807,why is the boy hopping at the start of the video,6898821807_CW_1,excited,6898821807,CW,dance moves,excited,copy bigger boy,to ride horse,to flip 1879,4635309062,why is there a man in black moving his arms,4635309062_CW_1,prepare food,4635309062,CW,protect eyes in sunny day,exercising outdoors,shield from sunlight,prepare food,test projector 1880,2535384528,why did the man in black pause after swinging,2535384528_CW_2,observe the flying ball,2535384528,CW,make a hand gesture,pose for photo,thinking about where to go,observe the flying ball,talking to another man 1881,6291413193,why is the lady in white looking at the dolphin,6291413193_CW_1,watching him swim,6291413193,CW,hold onto window sill,enjoying the sea,watching him swim,listening attentively,take video of baby 1882,2547885226,what does the kid do before right before standing up,2547885226_TP_4,looks at the camera,2547885226,TP,hug lady,looking left and right,looks at the camera,play with toy,nod his head 1883,4658396458,why did the baby reach out her hand after awhile of looking at the camera,4658396458_CW_0,take toy to play,4658396458,CW,check baby s wellbeing and reaction,take toy to play,guide them,man closed the book,position for photo 1884,4333544549,why is the man pulling the red stripe,4333544549_CW_3,control dog in leash,4333544549,CW,playing tug of war,unwrap present,take off belt,lift the box up,control dog in leash 1885,2793806282,where did the lady in blue brought the black dog after it caught the blue toy,2793806282_TN_5,stairs,2793806282,TN,street,grassland,wash room,car,stairs 1886,3846475848,what does the man do after cleaning one side of the ferret,3846475848_TN_4,lift ferret up,3846475848,TN,walk to baby,enters a room,lift ferret up,close the bottle,keep tools in cabinet 1887,4626085492,how did the white dog reacted when the red toy dropped on the floor,4626085492_CH_5,holds the toy in its mouth,4626085492,CH,look at dog in black vest,holds the toy in its mouth,jump up on sofa,hide in soil,hide behind lady 1888,2829462646,how does the person in stripes interact with the person in blue holding the camera,2829462646_CW_2,use his hands to visualize his words,2829462646,CW,dancing around him,pushing him around,pointing to the sun outside,hugged him tightly,use his hands to visualize his words 1889,2835125654,why does the man in white hold up his phone in the middle of the video,2835125654_CW_3,take a photo,2835125654,CW,get calling,to unbuckle,distracted,take photos of the girls,take a photo 1890,3164519967,why is the old lady s mouth moving at the beginning of the video,3164519967_CW_10,talking,3164519967,CW,talking,singing,chewing,checking tooth,blow candle 1891,3524939594,why did the man in white sitting at the back of the cart put his hands on the person in front,3524939594_CW_0,avoid falling off,3524939594,CW,colour of purity,prepare food,fashion,direct attention,avoid falling off 1892,10082798964,why did the baby open her mouth,10082798964_CW_5,to talk to the lady,10082798964,CW,to talk to the lady,suck thumb,to bite it,fidgeting around,touch the toy 1893,4984331176,how did man in white and lady in blue make sure that they complete the activity together,4984331176_CH_2,run hand in hand,4984331176,CH,on same boat,tie their legs together,pull the rope together,run hand in hand,man carries the lady 1894,6793786769,how did the boy show affection to the train at the start of the video,6793786769_CH_2,kiss the train,6793786769,CH,sits on train,hold the train,kiss the train,pull from behind,pick it up 1895,4166942239,how did man in the suit talk to man in red,4166942239_CH_3,standing in front of man in red,4166942239,CH,put hand on man in red s shoulder,on handphone,sit on sofa,standing in front of man in red,lie on beach 1896,6046149003,what did the girl in white do after turning around in the middle,6046149003_TN_3,turn back to window,6046149003,TN,turn back to window,point to someone,blow candle,holds onto a plastic box,takes a photo 1897,2782307049,how did the lady in black supported herself as she helped the lady in red at the end,2782307049_CH_7,grab the rope,2782307049,CH,grab the lady in red,hold on to metal wall,grab the man,grab the rope,hold on to the string 1898,4658396458,why did the baby reach out her 2 hands in front after looking at a toy basket,4658396458_CW_2,play with toy,4658396458,CW,want to take toys,baby are excited and playing,to take it out,play with toy,show excitement 1899,5070310138,why did the baby touch the man s face after touching his own ears,5070310138_CW_1,show where his ears are,5070310138,CW,to wake man up,show excitement,prevent dog from licking him,clean man s ears,show where his ears are 1900,3469864014,why did the cats move their faces near the board,3469864014_CW_2,smell food curious,3469864014,CW,attracted by ball,look at mirror,smell food curious,to drink milk,avoid person s hands from petting it 1901,3155382178,how does the woman react after the man kicks the ball,3155382178_TN_8,kick the man playfully,3155382178,TN,bowls again,smile,look at ball,raised her hand,kick the man playfully 1902,4650556666,how did the lady prevent the child from falling,4650556666_CH_8,hold child s hands,4650556666,CH,hold child s hands,puts on table,carried in arms,carried on her back,put in pram 1903,4147398280,why did the boy smile to the camera after trying for quite some time to solve the cube,4147398280_CW_4,shy,4147398280,CW,feels that it is fun sliding,happy to play,shy,gets the note wrong,having fun 1904,6542914065,what does the man in grey do after looking at the other three people for a while in the middle,6542914065_TN_4,throw ball,6542914065,TN,pointing on his palm,throw ball,shakes head,move to the side,look at him and listen 1905,3741143820,what did the man wearing the cape do after the man in white shows his stick,3741143820_TN_6,talks to audience,3741143820,TN,tries to put out fire,drink something,walk away,interested,talks to audience 1906,2793806282,what did the black dog do after the man threw the blue toy,2793806282_TN_9,swim after it,2793806282,TN,touch its face,put elbow up,swim after it,jump up and down,blocks the ball 1907,7987845241,why is the person at the back holding the dog in the middle of the video,7987845241_CW_2,ensure dog do nt move while injecting,7987845241,CW,playing fetch,play with toy,ensure dog do nt move while injecting,trying to move it,washing the dog 1908,7442562474,how did the brown cat hold onto the white cat nearing the end,7442562474_CH_7,hold white cat s head,7442562474,CH,hold white cat s head,bite white cat s neck,hold collar,hold white cat tail,hold leash 1909,4635309062,why does the man in black push the plate near the end,4635309062_CW_9,make space for other dish,4635309062,CW,wants more food,suggest taking the food away,take food to table,make boy hit the plate,make space for other dish 1910,2547885226,why does the kid swing his leg towards the end,2547885226_CW_1,remove the sand,2547885226,CW,remove the sand,to swing chair,strike a pose,play with elmo,excited 1911,7999756100,how does the man in white interact with his red bag near the end,7999756100_CH_6,lay it down,7999756100,CH,carried on his back,give to lady in red,lay it down,swing up and down,raise both his hands 1912,5658916668,how did the man land on the ground,5658916668_CH_7,slipped,5658916668,CH,jump down,someone pushed him,dog nudged him,he spun and fell,slipped 1913,3469864014,why did the adult bend down after moving the board away from the table,3469864014_CW_0,show cat the fish,3469864014,CW,show cat the fish,adjust it,avoid screen,so baby can hold it,to move away from the lady 1914,8208035645,why does the boy wear helmet,8208035645_CW_6,cycling,8208035645,CW,cycling,skating,working at great height,performing on stage,skiing 1915,8241491518,why did the man wear gloves to clear the path,8241491518_CW_0,safely cutting the tree,8241491518,CW,catch fish,ride motorcycle,better grip,climbing the cliff,safely cutting the tree 1916,4166942239,why does the man in red look down,4166942239_CW_1,look at man in black s shoes,4166942239,CW,look at man in black s shoes,ball rolled at his feet,dog come near,baby crawling,step on something 1917,7442562474,why did the brown cat turn around and face his back on the bed in the middle,7442562474_CW_5,playing with white cat,7442562474,CW,touch the paper inside,put properly,getting ready to shower,just woke up,playing with white cat 1918,4199369046,why is the lady in black wearing a hat on her head,4199369046_CW_0,christmas attire,4199369046,CW,show different actions,protect sun,part of stunt,christmas attire,posing 1919,7999756100,why are the people spread apart when they are setting up their equipment on the slope,7999756100_CW_2,take photos at different spots,7999756100,CW,take photos at different spots,instructed by woman in red,release the lantern,not singing,natural 1920,3814690167,why did the lady hold two sticks,3814690167_CW_3,play the instrument,3814690167,CW,balance herself,hiking,sledding,skiing,play the instrument 1921,2821788355,why is the man in red pants wearing a safety vest,2821788355_CW_0,avoid drowning at sea,2821788355,CW,avoid drowning at sea,safety protection,safety purposes,riding jeep,sledding 1922,2930782930,what did the lady do before she kissed the baby,2930782930_TP_5,hold baby s hand,2930782930,TP,move hands into water,hold baby s hand,talk,stand up,clasp ball together 1923,4199369046,why is the lady in black the only one standing up in the room,4199369046_CW_1,delivering speech,4199369046,CW,she gives talk,trying to look in,group shirt,make people laugh,delivering speech 1924,3943634344,what did the lady do after clapping at the end of the video,3943634344_TN_10,holds the book,3943634344,TN,eat,walk away from the table,look around,holds the book,makes faces 1925,6024684644,why does the woman lie next to the hole,6024684644_CW_2,resting,6024684644,CW,suntanning,looking at stars,resting,looking at the man,looking at birds chirping 1926,3175315183,why is the baby lying on his back,3175315183_CW_0,playing with hanging toys,3175315183,CW,playing with hanging toys,sleeping,lady was washing his belly,playing in the snow,let dog lick his face 1927,3741143820,why is the woman at the back wearing the same tie as the guy in white shirt,3741143820_CW_4,same team,3741143820,CW,same team,giving speech,making a dance,hosting program,singing in a concert 1928,4650556666,why did the child kick his leg in the middle,4650556666_CW_6,dancing with adult,4650556666,CW,enjoying popsicle,dancing with adult,for the toy,comfortable,eating ice cream 1929,4626085492,how did the dog in black with suit interact with the red toy on the bed,4626085492_CH_2,bite it,4626085492,CH,lie next to it,kick off bed,bite it,hug it,put head on toy 1930,2821788355,what does the man do after squatting down for a while at the start of the video,2821788355_TN_8,stand up,2821788355,TN,stand up,play the drums,touch the camera,raise up two more figers,he is talking 1931,2835125654,why does the woman in orange turn her back to the elephant and stand still for a while at the beginning of the video,2835125654_CW_0,posing for a photo,2835125654,CW,pick up something under it,take panda from her,posing for a photo,pedalling,gather power to run 1932,3175315183,why does the baby stretch his hand occasionlly,3175315183_CW_2,hit the toys,3175315183,CW,to hug lady,draw card,hit the toys,pour water,grab slippers 1933,2835125654,how do the elephants physically intereact with each other nearing the end,2835125654_CH_4,touch trunk,2835125654,CH,swim and walk,stroke the lioness head,lean forward,put food into mouth by trunk,touch trunk 1934,6898821807,what does the boy do after bouncing on the sofa,6898821807_TN_11,look at baby,6898821807,TN,get off the sofa,show him a toy,run to kitchen,look at baby,panda toy 1935,2868183184,what does the girl do after the woman opens the cap,2868183184_TN_7,look closer,2868183184,TN,take the music script,jumps up,hands over the remote,walks away,look closer 1936,14003541505,why did the girl in pink move away after touching the baby s chin,14003541505_CW_6,give baby space,14003541505,CW,take food for baby,give baby space,to change her dress,take tissues,call for help 1937,5658916668,why was the man lying flat on his tummy nearing the end,5658916668_CW_8,fell from his board,5658916668,CW,sleeping,catch dog,check out the camera,fell from his board,to cushion the boy s fall 1938,5070310138,what did the baby do after he touched the man s ears,5070310138_TN_2,put his hand into mouth,5070310138,TN,holds his arm,put his hand into mouth,take the toy,blink its eyes,touch his hair 1939,2584172238,why did the women in yellow suddenly lift the baby in blue up before the baby reached the end of the slide,2584172238_CW_2,make space for girl,2584172238,CW,dry her hands,celebrating birthday,girl in green is deaf,make space for girl,wants her spot 1940,6046149003,why does the girl in white stretch her hands out while staring outside,6046149003_CW_4,hold onto window sill,6046149003,CW,look closely of the teeth,help the girls,to give people when painting,engage the audience,hold onto window sill 1941,3524939594,why does the man pushing the cart squat down a bit after stopping the cart in the middle,3524939594_CW_5,get himself to stop,3524939594,CW,to make space,touch the woman,to go down the slope,walk off,get himself to stop 1942,2821788355,how did the man make sure that he does not fall,2821788355_CH_3,bend properly and hold tightly on rope,2821788355,CH,standing still and avoid moving,attached to a safety harness,removes his belongings,hold onto cap,bend properly and hold tightly on rope 1943,10001787725,how does the woman move the baby backwards,10001787725_CH_5,moves her hand,10001787725,CH,carry her,jumping up and down,shake baby with leg,hands support bum and back,moves her hand 1944,3943634344,why is the woman pointing at each picture in the book,3943634344_CW_0,direct the baby s attention,3943634344,CW,colouring the book together,flip to another page,direct the baby s attention,talking to students,let the baby recite 1945,8224504302,what does the man in black do after putting on his spectacles,8224504302_TN_8,shake finger,8224504302,TN,says something,fall down the net,shake finger,look at him,clapping 1946,2535384528,what does the man in white do after the man playing golf approaches near him,2535384528_TN_9,takes his club,2535384528,TN,walk away,hit golf ball,takes his club,raise his arms,look at where the ball went 1947,3555755537,what did the white dog do after it came into view at the start,3555755537_TN_2,walk and look around,3555755537,TN,crawl out,running,throws it inside the cage,walk and look around,black dog runs it after 1948,4925211209,what did the man do before cutting the tree,4925211209_TP_6,move to position,4925211209,TP,puts his hand on the baby,fly up,move to position,cycling,turn the model 1949,7999756100,why did the man in blue hold his phone,7999756100_CW_3,record scenery,7999756100,CW,record scenery,record performance,to answer call,playing games,taking group photo 1950,2697214342,why does the man in green wear gloves,2697214342_CW_0,gear up for work,2697214342,CW,gear up for work,playing snow ball,catch fish,keep hands warm,cycling 1951,3270490566,why is the man standing on the right moving his left hand up and down the guitar,3270490566_CW_1,strum guitar,3270490566,CW,play the keys,enjoy the music,strum guitar,singing,part of performance 1952,2920952624,what does the shorter woman do after walking away and coming back,2920952624_TN_8,stir fry,2920952624,TN,stir fry,dog stop walking,play with baby,hold the mother s hand,touch the plate 1953,8225502382,why is the man in dark green running down the slope in the middle of the video,8225502382_CW_1,doing stunt,8225502382,CW,throw the ball,get into water,pick ball and throw it,doing stunt,to pat the dog 1954,8224504302,what does the man in black do after shaking his hand near his mouth in the middle,8224504302_TN_7,look through pockets,8224504302,TN,look through pockets,take a book out,give to another person,look at the picture frames,puts it back on the table 1955,5658916668,why did the man sliding downslope stoop low when he slides down hill,5658916668_CW_2,to keep balance,5658916668,CW,can not balance anymore,get into water,no pedal,finished with the ride,to keep balance 1956,14003541505,why did the girl in pink touch the baby s chin,14003541505_CW_7,play with baby,14003541505,CW,wipe the stain,wash her face,tickle the baby,play with baby,remove food residue 1957,4984331176,how is the rope being swung,4984331176_CH_7,two people swing it around,4984331176,CH,controller,operated by machine,moving the flag up and down,two people swing it around,boat pulling the string forward 1958,10082798964,why is the lady moving her hands,10082798964_CW_3,talking to kid,10082798964,CW,adjusting her clothes,drawing,swimming,talking to kid,petting the dog 1959,3164519967,why did the old lady pat the baby,3164519967_CW_1,put him to sleep,3164519967,CW,baby burb,put him to sleep,baby is scared,baby is crying,sing to baby 1960,3741143820,why deos the man with grey and black sweater walks to the corner of the stage in the beginning,3741143820_CW_5,takes his position for the play,3741143820,CW,takes his position for the play,bring microphones on the stage,talk to the dancer,adjust his microphone,takes his lyric book 1961,3814690167,why did the man in glasses bounce up and down at the start of the video,3814690167_CW_0,begin to sing,3814690167,CW,warm up,supportive audience,clap to the beats,to show his passion for dancing,begin to sing 1962,6291413193,why did the lady in white hold up the black object and put it near her mouth,6291413193_CW_3,page message over,6291413193,CW,lady in black is fatter,listening attentively,page message over,put down glass,signal old lady to wave 1963,8208035645,why was the boy looking down at the start of the video,8208035645_CW_5,looking at the slope,8208035645,CW,pick up the stick,look for other ship,to see how to move the rod,looking at the slope,trying ot open bottle 1964,4075791856,how did the two people in front of the table amplified their voice,4075791856_CH_1,speaking in the microphone,4075791856,CH,mic,speaking in the microphone,hand gestures,mircophones,tilting their heads 1965,14003541505,how does the girl in pink interact with the baby at the end of the video,14003541505_CH_9,carry the baby,14003541505,CH,change his shirt,carry the baby,turn the handle bars,picks the toy from the floor,read him a book 1966,3164519967,how is the baby rested on the old lady,3164519967_CH_4,lie on her belly,3164519967,CH,sit on laps,carried in baby bag,support on the side,carried on her back,lie on her belly 1967,8241491518,how does the man deal with the cutoff leaves,8241491518_CH_9,pull,8241491518,CH,manually,pull,grab the leaves,kick away,set camera up 1968,3376544720,why did the man in stripes hold onto the bull,3376544720_CW_1,stay put on it,3376544720,CW,stay put on it,cleans the bull,feeds the bull,take a picture with it,the bull is running away 1969,4658396458,how did the toy fall off after the adult has stacked it,4658396458_CH_6,baby pulled them,4658396458,CH,being jumped on,puts the guitar back,putting it on the table,steer,baby pulled them 1970,3112351937,why did the man with the flippers put his arm around the other man,3112351937_CW_0,help swim upwards,3112351937,CW,wake him up,dancing underwater,push him to fish,help swim upwards,pull him from fish 1971,6037747123,why did all of the people looking far out,6037747123_CW_2,looking for the golf ball,6037747123,CW,look at cat,looking for the golf ball,going on a trip,look at something on the ground,they are looking at a video 1972,2930782930,why did the lady looked at the baby and waved to the camera at the beginning of the video,2930782930_CW_9,tell baby to follow,2930782930,CW,adjust her hair,tell baby to follow,get the baby to wave back,curious,give attention 1973,6898821807,why does the boy squeeze the cheek of the baby at the start of the video,6898821807_CW_0,playing with baby,6898821807,CW,playing with baby,get food out,feed baby,pose for photo,to show woman 1974,6898821807,why is the boy touching the cheek of the baby with his own cheek in the middle of the video,6898821807_CW_3,playing for fun,6898821807,CW,wants to eat his food,to cover baby face,protect the baby from falling,playing for fun,feel temperature 1975,3846475848,what does the man do after the ferret attempts to run away,3846475848_TN_7,use towel cover it,3846475848,TN,use towel cover it,follow baby,swing his body,go near the dog,watch baby play 1976,4635309062,why is the man in white moving the pan,4635309062_CW_2,cooking,4635309062,CW,pour food into plate,having lunch,bring it out,cooking,washing it 1977,2920952624,why does the taller woman move her knife up and down on the cutting board throughout the whole video,2920952624_CW_0,carefully,2920952624,CW,cut the insides,feed girl,observe her reactions,performance,carefully 1978,3164519967,how is the old lady rested on the sofa,3164519967_CH_3,sit and lean on the sofa,3164519967,CH,hug the girl in red,in the man s arm,sit and lean on the sofa,lying on her back,put legs on the table 1979,3524939594,why does the man in white put his hands on the man in black,3524939594_CW_6,for support,3524939594,CW,posing for camera,for support,get man s attention,fighting,dancing 1980,3741143820,why are all the people on the stage holding a stick,3741143820_CW_0,part of the play,3741143820,CW,control the music,as a stage effect,part of the play,his turn to speak,perform show 1981,4967810888,why is a lady shaking the green fan at the side of the room,4967810888_CW_5,cool herself,4967810888,CW,playing with baby,blow on it,cool herself,part of her performance,adjust their clothes 1982,2705374471,why does the boy keep tossing and catching the toy,2705374471_CW_6,catch baby s attention,2705374471,CW,perform a stunt,pushed by lady,lady rocking him,catch baby s attention,for fun 1983,11541421563,why is the man in orange nodding his head at the end of the video,11541421563_CW_9,singing,11541421563,CW,agreeing in the conversation,gesture hi,nodding to the beat,singing,he reached the shore 1984,7442562474,why are the kittens lying on the bed,7442562474_CW_0,playing,7442562474,CW,playing,sleeping,prevent falling,posing for photo,for warm 1985,2835125654,what did the elephants do after the elephant on the left pushed the elephant on the right backwards nearing the end,2835125654_TN_8,stay still,2835125654,TN,stay still,walks,blows thw whistle,hit the smaller elephant,put on fence 1986,2547885226,why does the kid leaves the dinosaur on the sand towards the end,2547885226_CW_2,keep it for observation,2547885226,CW,get his attention,lose balance,she is playing with sand,got distracted,keep it for observation 1987,8225502382,what does the man in dark green do after reaching the top the second time,8225502382_TN_8,stops at the side,8225502382,TN,laugh,construct toy structure,dancing,stops at the side,throws it at the centre of the table 1988,4075791856,how did the lady and man in front of the microphone knew what to say,4075791856_CH_4,reading from the paper,4075791856,CH,use microphone,reading from the paper,standing next to each other,use hand gestures to demonstrate,talk and point to her 1989,10001787725,why is the baby smiling,10001787725_CW_3,happy,10001787725,CW,excited about the food,playing with the dog,lady tickles him,playing with adult,happy 1990,4967810888,why is the lady moving her hands around,4967810888_CW_1,gesturing as she speaks,4967810888,CW,flying kite,dancing,to catch rolling fallen bapple,gesturing as she speaks,hold the rope 1991,7508439506,why is the man lying on his side,7508439506_CW_3,playing with baby,7508439506,CW,pet the dog,playing with baby,play piano,comfortable,play with rabbit 1992,3469864014,why did the adult touch the fish on the board after moving it away from the table,3469864014_CW_1,adjust it,3469864014,CW,show the organ,adjust it,to take a picture,to massage the fish,to show the dog the fish 1993,4626085492,why did the black dog on the sofa jumped down at the end of the video,4626085492_CW_8,to play with the toy,4626085492,CW,laughing,to play with the toy,fell down,get away from dog,wants to play with toy dropped 1994,3164519967,what did the old lady do after the baby spit out the pacifier,3164519967_TN_6,put it back,3164519967,TN,adjust the baby s shirt,wipe her hands with tissue,smile and laugh,sits down,put it back 1995,3741143820,why does a man in audience laughs at the end,3741143820_CW_1,act is funny,3741143820,CW,boy beside him told him a joke,someone messed up the interview,girl dropped her yoghurt,excited about the new shoes,act is funny 1996,5070310138,how did the baby react after the man leaned forward,5070310138_TN_4,touch his ears,5070310138,TN,sing,touch his ears,stand there,blessed,move forward 1997,3303565503,why does the other man walk in and move her leg,3303565503_CW_4,help position them,3303565503,CW,cycling,tie her shoelace,end of performance,untangle rope,help position them 1998,4967810888,why are there people sitting around in the room,4967810888_CW_3,listening to speaker,4967810888,CW,form a circle,witness the engagement,comfortable,working,listening to speaker 1999,8241491518,why does the man bend down while cutting,8241491518_CW_5,chop leaves,8241491518,CW,dribbling ball,play with elmo,chop leaves,keep the rod fixed at one place,play game 2000,3851913128,why did the guy in red then put his goggles back,3851913128_CW_1,show another action,3851913128,CW,guide the route to take,dancing to music,acknowledge,continue watching the show,show another action 2001,4199369046,why did the lady stand up,4199369046_CW_3,giving speech,4199369046,CW,receive medal,guide the old lady,give seat to handicap,giving speech,finish eating 2002,6772999108,how did the girl made sure her hair is out of her face,6772999108_CH_6,tie it up,6772999108,CH,using her hand,wear bib,shake her head,sweep hair downwards,tie it up 2003,3270490566,why are the two man holding guitars strumming their strings,3270490566_CW_0,make music,3270490566,CW,tuning the guitar,singing,playing the drum,make music,moving to the beat 2004,4635309062,why is the white shirt man moving his arms,4635309062_CW_3,cooking,4635309062,CW,cut the shoe,make a toast,prepare to attack,cooking,start eating first as he s hungry 2005,4925211209,why did the man wear helmet,4925211209_CW_0,working at high place,4925211209,CW,sunny,working at high place,pactice fencing,perform play work,horse riding 2006,7888256388,what did the dog do after sniffing the lady s shoes,7888256388_TN_3,walk away,7888256388,TN,looks at the direction,put dog back,walk away,move backwards,eat food 2007,3524939594,why did the man pushing the cart accelerate and stop the cart suddenly,3524939594_CW_3,create fear and thrill,3524939594,CW,someone asked him to do,display settings,create fear and thrill,need more strength,more thrilling 2008,10082798964,what does the mother do next after raising her right hand,10082798964_TN_7,scrunch her fingers,10082798964,TN,scrunch her fingers,rubs her mouth,drag it towards her,walk off,touch baby s hand 2009,3303565503,why does the man suddenly move his hand to her waist and let out a breath of air,3303565503_CW_5,tired,3303565503,CW,tired,check on her,get recorded,talking about her,protect boy from falling off 2010,2782307049,how did the lady red supported herself as she slide down the rope,2782307049_CH_4,hold the handle,2782307049,CH,climb up,jump on the other foot only,hold the handle,girl in black holding her,push manually herself 2011,3249402410,why did the lady in black on the left put the scoop into the pot at the beginning of the video,3249402410_CW_0,scoop the sauce,3249402410,CW,to dip the brush conveniently,getting a drink,scoop the sand out,scoop the sauce,put cake to eat 2012,8241491518,why does the man swing his hand hard,8241491518_CW_3,chop leaves,8241491518,CW,legs painful,make it more fun,talking,press keyboard,chop leaves 2013,2584172238,what did the girl in pink do after the boy in blue slid down the slide,2584172238_TN_3,slide down,2584172238,TN,happy,come closer to the baby,walk away,slippery,slide down 2014,3943634344,how did the lady get the attention of the girl at the beginning of the video,3943634344_CH_7,points finger towards the picture,3943634344,CH,touch baby face,put on the lady body,claps,sitting on the horse,points finger towards the picture 2015,3555755537,why does the person put a towel on his neck,3555755537_CW_3,make lying down more comfortable,3555755537,CW,absorb water,make lying down more comfortable,wipe off sweat,shield from raining,performance move 2016,3155382178,what does the man do after kicking the ball,3155382178_TN_10,run towards the ball,3155382178,TN,kick some more,prepares swinging again,throw ball,run towards the ball,shift the wooden thing 2017,4010069381,why does the lady walks away after the conversation with man is over,4010069381_CW_3,help man do something else,4010069381,CW,pick up phone,enjoying stroll,giving her space to perform,help man do something else,performance ended 2018,2930782930,why did the lady shift the baby up at the beginning of the video,2930782930_CW_6,adjust,2930782930,CW,adjust,hug baby,more comfortable position,enjoying the song,take pink balloon 2019,2716277960,how did the two men get the bicycles across the river,2716277960_CH_4,carry the bicycles,2716277960,CH,bagpack,carry the bicycles,ride up and down slopes,balance,sitting on bicycle seat 2020,2821788355,how did the man in red pants maintain his balance,2821788355_CH_1,bend properly and follow boat s movement,2821788355,CH,standing still and avoid moving,removes his belongings,avoid making hand gestures,hug onto a pole,bend properly and follow boat s movement 2021,8547321641,why does the baby look down while walking towards the sea near the end of the video,8547321641_CW_4,cautious walking,8547321641,CW,push toy car,attracted to the floating thing,look after the girl,cautious walking,strolling 2022,6291413193,why is there a man standing in the deeper waters,6291413193_CW_2,to view the dolphine,6291413193,CW,watching boy play,observing,looking at paper,to whip their hair,to view the dolphine 2023,2930782930,what did the lady do after she bounced the baby at the end of the video,2930782930_TN_2,walk away,2930782930,TN,turn to baby and play,pick up something,swing her leg,dance with hands,walk away 2024,2547885226,how does the kid play with the dinosaur,2547885226_CH_3,holds it,2547885226,CH,licking it,flip the toy around,holds it,mimics on a phone call,bite its tail 2025,8225502382,why is the man in dark green smiling in the middle of the video after falling down,8225502382_CW_2,embarrassed,8225502382,CW,embarrassed,look at the guy in dark blue,finish climbing,posing for the camera,find it funny to throw snowballs 2026,6542914065,why did the running people stop after a while,6542914065_CW_2,finished the drill,6542914065,CW,take a break,lose balance,to look at brother,the girl in pink slipped,finished the drill 2027,7508439506,how did the man made sure the baby does not stain the bed,7508439506_CH_6,put baby on mat,7508439506,CH,put baby on mat,sit baby on lap,put baby on pillow,hug baby tightly,hold baby 2028,3155382178,what does the man do after kicking the ball away from the lady,3155382178_TN_4,run towards the ball,3155382178,TN,drop bat and run,kick the man playfully,run towards the ball,get up,run after it 2029,3164519967,what did the old lady do after patting the baby for a while,3164519967_TN_5,kiss baby,3164519967,TN,put on keyboard,clap the baby s hands,kiss baby,shake her head,look away 2030,7999756100,why does the man in white bend down near the end,7999756100_CW_1,setting up,7999756100,CW,type on laptop,offer help,along with the rhythm,setting up,wet by the sea 2031,2793806282,why did the lady holding the balck dog stretch her hands out in the middle,2793806282_CW_3,grab the blue toy,2793806282,CW,attack white dog from behind,caress the dog,prevent dog from escaping,grab the blue toy,gesturing dog to jump 2032,4967810888,why does the woman speaking turn around while talking,4967810888_CW_0,talking to the crowd,4967810888,CW,talking to the crowd,check her speech notes,for referencing,make face,pretend to hit the drum 2033,2793806282,what did the man on the land do with the blue toy after the lady gestured to the dog,2793806282_TN_8,throw it,2793806282,TN,look up,fidgeting with the object,throw it,tried to chase,observe it 2034,3155382178,what does the lady do after she first received the ball from the man,3155382178_TN_5,kicks the ball,3155382178,TN,pick another ball,raise the stick,kicks the ball,hit the balls,move spoon away 2035,4650556666,how did the woman and the baby dance,4650556666_CH_1,turning rounds,4650556666,CH,shake their heads,guide bride s hands,follow a routine,jump up and down,turning rounds 2036,2535384528,what does the man do right after hitting the ball,2535384528_TN_5,looks at where it goes,2535384528,TN,throw the ball,continue playing guitar,looks at where it goes,hit with racket,laughs 2037,4626085492,how did the black dog with a vest get down on the floor,4626085492_CH_0,jump down,4626085492,CH,slide down,lady carry down,roll down,pull by dog on floor,jump down 2038,4984331176,how do the people know when to go,4984331176_CH_9,see when rope touch ground,4984331176,CH,wait for queue number,see when rope touch ground,see flag,gun shot,timer on screen 2039,4650556666,what did the child do after he fell on the ground at the end of the video,4650556666_TN_3,sit on the floor,4650556666,TN,holds the rope on his shoulder,sit on the floor,touch the cat,stood up,get up 2040,3249402410,why did the lady in red pass the lady in pink the pan and held it there for a while,3249402410_CW_5,talking,3249402410,CW,ensure safety,to get some icecream,to finish eating the food,talking,the pan was hot 2041,6793786769,how did the person change the direction of the train in the middle of the video,6793786769_CH_1,let it head to right,6793786769,CH,pulled from right,let it head to right,man pushes it,stretch out his hand,turn backwards 2042,3846475848,why is the man cleaning the ferret,3846475848_CW_0,bathing,3846475848,CW,bathing,to dry,compliment dog and show affection,talking about something,dry from bathing 2043,3249402410,how did the lady in black on the right remove the remaining cheese on her hands at the end of the video,3249402410_CH_7,sweep her hand,3249402410,CH,sweep her hand,licks her hand,shake hands right and left,rub on tissue,wash under water 2044,3555755537,why does the person lie down without wearing her footwear,3555755537_CW_1,resting,3555755537,CW,follow woman,cleasn environment,resting,hot indoor,sunbathing in beach ================================================ FILE: data/multiple_choice_qa/NExT_QA.csv ================================================ ,video_name,frame_count,width,height,question,answer_number,question_id,question_type,a0,a1,a2,a3,a4,answer 0,4010069381,369,640,480,how do the two man play the instrument,0,40100693816,CH,roll the handle,tap their feet,strum the string,hit with sticks,pat with hand,roll the handle 1,4882821564,2697,640,480,why did the boy pick up one present from the group of them and move to the sofa,2,48828215641,CW,share with the girl,approach lady sitting there,unwrap it,playing with toy train,gesture something,unwrap it 2,2435100235,1906,640,480,how does the man cycling try to sell the watch to the man in the trishaw,2,24351002357,CH,give him catalogue,show him a video,show him the watch,dismount his bicycle,give him the watch strap,show him the watch 3,2834146886,1881,496,370,what does the white dog do after going to the cushion,2,28341468868,TN,drink again,shake its body,smells the black dog,wagging tail,touch lady in blue stripes,smells the black dog 4,8132842161,1105,640,360,why did the man in white hold tightly to the boy in white,3,81328421612,CW,forcing boy to look straight,dancing with boy,posing for camera,prevent falling off,boy keeps moving around,prevent falling off 5,4260763967,1017,640,480,why is the boy in yellow reaching out to things on the green mat,2,42607639674,CW,team uniform,watch something in the pool,assembling parts to build toy,keep his belonging,grab remote control,assembling parts to build toy 6,3462517143,722,640,480,why is the white dog walking around the green container,1,34625171432,CW,chasing,get drink,fashion for dogs,leading the way,excited,get drink 7,3441428429,2697,640,480,what does the female skater do after the male skater puts her back down on the ice,1,344142842910,TN,put hand in mouth,continue skating,jump,move her arms up and down,laugh and run forward,continue skating 8,6356067859,1070,640,480,what does the girl in white do after bending down in the middle,1,63560678596,TN,grab her,feed horse with grass,run towards the camera,umbrella,put her arms up,feed horse with grass 9,5026660202,2697,640,480,why are there high chairs on the stage,1,50266602028,CW,to place the microphones,for guitarists to sit comfortably,for audience to sit,to act as displays,to take up stage spaces,for guitarists to sit comfortably 10,9873067604,920,640,360,why did the boy in white sway his head around,2,98730676044,CW,he is looking through it,see where the ball is falling,talking,acting,moving with rhythm,talking 11,5735711594,589,272,480,how did the white dog respond to the brown dog when it attacks from its tail,1,57357115945,TC,follow it,hopped away,wagging,ready to run away,move his head,hopped away 12,9088819598,670,640,480,why does the baby keep the ball near his mouth in the beginning,1,90888195981,CW,take a photo,lick it,smelling the ball,blow it away,kiss it,lick it 13,5296635780,652,640,480,what does the man do after the lady appear to punch him and smiles,3,52966357807,TN,look at him,touch their chests,kick him,lean forward,sit back properly,lean forward 14,2614918961,1311,640,480,why does the baby turn around near the end of the video,1,26149189611,CW,yawning,sits down to play,to see the toy,move towards toy,curious,sits down to play 15,6201488511,2575,640,360,why did the lady put her hands over her eyes in the middle of the video,2,62014885115,CW,posing in the camera,adjust her hair,protection from sun,to wipe her eyes,cue woman to talk,protection from sun 16,2976913210,542,640,480,how did the man respond when he is stuck in the dirt,2,29769132106,TC,touched his head,pointing towards the jumping line,kept trying,prepare to swing again,looking at the floor,kept trying 17,2793260225,558,500,375,how did the lady and man on top try to keep their balance,1,27932602256,CH,hold the ropes tightly,held each other,walk side to side,hold ski stick,standing still,held each other 18,7508439506,765,640,480,why did the boy put his hands on the baby,0,75084395061,CW,play with baby,to give her food,play,support the baby,fall and pounce on the boy,play with baby 19,7508439506,765,640,480,where is this video taken,4,75084395064,DL,swimming pool,outdoor,field,desert,bed room,bed room 20,6136926089,1522,480,640,what does the baby do after letting go of the cart,1,61369260898,TN,open her eyes,move toward the slides,touch the toy,turn to his back,lean forward and put head down,move toward the slides 21,5987365500,714,480,640,why does the girl have her mouth close to the item,2,59873655001,CW,eat,looking around,tries to sing,smell,record,tries to sing 22,6329077812,1835,640,360,why is the lady holding the baby,4,63290778122,CW,to protect the baby,carry baby,adjust bottle,ease of carrying around,feed baby,feed baby 23,6018490041,825,640,480,what does the man in white do after moving forward at the start,2,60184900416,TN,sing,walk forward and observe,hit cans,clicks the picture,start dancing,hit cans 24,6793786769,1158,640,360,what is the person in black behind the boy doing as the boy plays with the train,1,67937867695,TC,playing with ball,watch,watching television,reading a book,sleeping,watch 25,3158022797,2697,640,480,why are the people synchronizing their moves,1,31580227972,CW,choreography,part of game,one direction only,move with the rhythm,moving to the rhythm,part of game 26,6582763207,696,640,360,why is the lady standing in the middle tapping on the instrument in the beginning,3,65827632072,CW,talking to girl,to get the baby s attention,talking to the crowd,playing it,dance move,playing it 27,7416295940,2388,640,384,what does the dog do after the baby touches and caresses the dog s back,1,74162959407,TN,smile and wants to pet it,backed away,get up and sniff boy,play with toy,feeding,backed away 28,3171006258,1099,640,480,why did the man remove one of his skates before standing up,4,31710062580,CW,counting beats,hit sofa,take something,pick it up,to get better balance,to get better balance 29,3943634344,629,640,360,what did the girl do after she finished reciting the pictures on the book,2,39436343444,TN,hug the girl,smile,stand up,continue tlaking,nod,stand up 30,8547321641,327,640,362,how many babies are in the video,4,85473216417,DC,kitchen,four,two,three,one,one 31,5840177726,377,640,480,how are the men positioned in the video,0,58401777263,DO,riding the cycle,half squat,sit on the sofa,skateboard,stand closely,riding the cycle 32,5833145209,510,640,480,why did the brown bird bend over into the water,0,58331452095,CW,drink water,look down,resting,to wet its head,peck fishes,drink water 33,5333075105,1168,640,480,why is the man on all fours as he travelled through the thick snow,1,533307510510,CW,look at the cameraman,snow too thick,trying to move forward,snow mountain,obstacles,snow too thick 34,3963997053,573,640,480,where is the performance taking place,4,39639970537,DL,on a stage,room,bar,restaurant,road,road 35,9082180631,406,640,360,why does the woman in green pants skate behind everyone else,0,90821806312,CW,supervise the children,singing,pass her something,waiting for the man,nervous,supervise the children 36,7533369046,803,640,360,where is this video taken,3,75333690465,DL,dining table,lake,construction site,house,playground,house 37,5679866364,750,640,480,how does the old man respond when the old woman turns to him at the beginning,1,56798663641,TC,walks away,talk,moves around,goes back in line,happy,talk 38,5116088152,1205,640,360,why did the baby put his other hand on the fruit after awhile of putting the fruit in his mouth,0,51160881521,CW,hold tight,chocolate stuck on his fingers,to be more comfortable,pull fruit out,to make it less messy,hold tight 39,4094488636,810,640,360,what does the brown dog do after stepping over the red strap near the start,1,40944886364,TN,mount the black dog,look around,looks at the camera,walks away,walk away,look around 40,7149153537,1384,640,360,why are the men holding the girls in the water,1,71491535370,CW,boy can not go into water himself,make sure baby do not drown,protect them,cooling,preparing to go swimming,make sure baby do not drown 41,3562017845,1200,640,428,how did the bird in the front get to the other side of the land,1,35620178457,CH,put its hand out,walking,fly on lady s arm,swim,jump,walking 42,6895608152,2178,640,360,why is the lady in white moving around the stage,3,68956081528,CW,performing for the crowd,performing,taking photos,dancing,visualize what she says,dancing 43,6265968082,1275,640,360,why is the man in jeans wearing a pair of sunglasses,4,62659680824,CW,prevent it from falling,protect eyes from sun,sunny,celebrate birthday,part of outfit,part of outfit 44,2984974097,899,500,375,how does the girl move forward,3,29849740975,CH,pushing the floor with her legs,climb,on scooter,pedal her bike,move handles,pedal her bike 45,3429509208,374,640,480,what did the baby do after he approached near the camera,2,34295092083,TN,move his legs,suck his thumb,raised his hand to take the camera,turn back to the toy,bored,raised his hand to take the camera 46,3550839192,1050,640,362,what did the baby hold onto,4,35508391925,DO,father,apple,toys,lady,pram table,pram table 47,3477387686,2034,640,480,what did the girl do after lifting the dog s ear in the middle of the video,3,34773876862,TN,starts to draw,look at the baby,push cheeks up,smile at the camera,wet the cloth,smile at the camera 48,6895608152,2178,640,360,what type of performance is occuring,0,68956081525,DO,ballet,introducing the hall,street performance,wedding,piano,ballet 49,2405940242,415,500,375,why is the lady in white wearing a helmet,1,24059402420,CW,experimenting with chemicals,safety,skiing,sunny,take photo,safety 50,7308042410,1019,640,1138,why is the girl bending forward at the beginning of the video,3,73080424103,CW,drag the red box,move skateboard,pick up toy,making pottery,singing to microphone,making pottery 51,7499763064,604,640,360,why did the man stretch his arm out to touch the rope in the middle,4,74997630645,CW,connect to boat,doing tricks,stabilise the rope,exercise,adjusting own harness,adjusting own harness 52,8740703217,602,640,360,what does the baby do after she stops waving her arm up and down,3,87407032171,TN,kiss baby cheeks,walk through her legs,smile,eat the food,bring book closer to baby,eat the food 53,3821781616,745,640,480,where is the man at,4,38217816165,DL,classroom,roadside,mountain,hallway,living room,living room 54,3943634344,629,640,360,how did the lady compliment the girl at the end of the video,3,39436343448,CH,kissed her head,pointing her finger,puts hand on the baby s head,claps,stand facing the man,claps 55,6329077812,1835,640,360,what did the lady do before wipping the baby s mouth,4,63290778127,TP,touch the baby again,turn away,adjusts the baby in grey,smiling,take napkin,take napkin 56,4815534482,2250,640,362,why did the boy shift around,4,48155344827,CW,sitting on a swing,looking for his toys,dancing,reaching for the horn,play around,play around 57,4584426085,2697,360,480,what did the lady do after grabbing the puppy the second time,1,45844260851,TN,walk across,dress the puppy,no,place paw on her palm,shift her weight,dress the puppy 58,4263096481,637,320,240,how does the man cut the fish first,4,42630964810,CH,cut the tail,cut the body,remove the fins,remove the scale,cut off the head,cut off the head 59,7533369046,803,640,360,what was the baby doing to the white box,3,75333690466,TC,drop it,sitting on the box,hitting the box,pulling the box,carry it to the side,pulling the box 60,4273039295,2214,640,360,why does the baby bend down near the tree,0,42730392954,CW,pick up snow ball,to move the bicycle,someone is calling her,crawling,play with ball,pick up snow ball 61,5902452647,812,640,480,why did the baby hold the ball and moving forward,3,59024526470,CW,give ball to lady,kick off the ground,to throw it,wants to play with girl,person inside is walking,wants to play with girl 62,3711681535,1070,640,480,why does the woman let go of the handle near the end,2,37116815351,CW,play with the baby,look at donkeys,to come down,play with the babies,watch somewhere,to come down 63,3066064005,819,640,480,why is the woman in purple holding on to a bunch of cutlery,0,30660640051,CW,distributing cutlery,cut cake,she just bought new cutlery,demostrating a cooking class,posing for camera,distributing cutlery 64,11871253306,1476,512,288,how did the men squat down on the floor in the beginning,2,118712533064,CW,hit floor with a toy,tie shoelace,passed ball to child,stumble with hands,kiss child,passed ball to child 65,8132842161,1105,640,360,why did the man in white shirt moved his lips,4,81328421619,CW,eating snacks,drinking water,performing,biting straw,talking,talking 66,3851961428,2062,640,480,how did the man on the most right reacted after the man in red showed him a hand gesture,1,385196142811,TN,adjust the rein,took off goggles,performed,grab his shoulders,excited,took off goggles 67,5256928210,606,640,360,what does the man do as the dog stood in front of him,4,52569282101,TC,walk towards the cameraman,bends down to hug dog,resting,jump over dog,pet its back,pet its back 68,4984331176,300,640,480,why are the people running,3,49843311761,CW,racing,catch ball,emergency escape,want to pass quickly,gate is closing,want to pass quickly 69,4822859674,861,640,480,why does the baby start climbing on the floor after walking for a while at the start of the video,3,48228596742,CW,air from balloon,to climb down the stairs,hit toys,fall over,to drink,fall over 70,4978714491,1200,640,480,why did both buses sudden start to drive off after they stopped for a while,4,49787144912,CW,dog moves away,people have gotten off bus,finished the drill,difference in ground levels,traffic signal turned green,traffic signal turned green 71,9293415110,2160,640,360,why are the people sitting behind while the girl is dancing,0,92934151102,CW,playing music,mimicking a dance,dancing with the girl,learn to dance,striking a pose,playing music 72,5445581571,964,640,360,what did the white dog do after he looked up,3,54455815712,TN,hit cans,yellow toy,walking,get up,smells the black dog,get up 73,3557498300,849,640,480,how does the boy in blue move around,3,35574983008,CH,sitting on grass,crawl forward,roll around,run,in his pram,run 74,6624174621,1212,640,480,what does the girl do as the lady is sitting in front of the cake,4,66241746210,TC,observing the baby,take it away,click the picture,feed baby with spoon,sit next to lady,sit next to lady 75,4942054721,645,640,360,how many goats can be spotted,0,49420547217,DC,eight,two,one,three,four,eight 76,9213637099,1539,640,360,how many people are involved,2,92136370996,DC,six,two,five,seven,one,five 77,9088819598,670,640,480,what does the baby do after the ball rolls to the crook of his arm,4,90888195985,TN,swings with the man,watch the ball,stretches his arms,throws it,move his body,move his body 78,8464056582,1340,640,360,what does the baby do as the dog walks away at the start,0,84640565825,TC,crawl to the dog,on the right,go towards the man,looking left and right,look at baby,crawl to the dog 79,9565310990,1066,640,360,what does the baby do after reaching the corner of the cloth,1,95653109907,TN,swing it around,touch the cloth,turn to his back,looks at the other side,walking,touch the cloth 80,5635265624,584,480,640,how does the lady show affection to the baby,0,56352656242,CH,pat head,move it towards the baby,kiss the baby,put baby on her lap,caress baby head,pat head 81,5833145209,510,640,480,why is there a puddle of water in the pot,3,58331452092,CW,cooking noodles,catch fishes,displaced water when they jump,for bird to drink,the boy spilled water,for bird to drink 82,5561024834,947,640,360,where is the boy hanging out,0,55610248345,DL,bedroom,by a stream,yard,in his backyard,coffee shop,bedroom 83,2830899473,429,640,480,why do the men have their hands around each other,0,28308994731,CW,show affection,uniform costume,prevent camera drop,coordinate their moves,lure the dog to jump,show affection 84,4279106208,559,640,360,why did the lady hold onto the child when going down the slide together,1,427910620810,CW,he slipped down,ensure child s safety,in case baby fall down,playing,keep baby afloat,ensure child s safety 85,8464056582,1340,640,360,what does the dog do after the baby sits down at the start,1,84640565824,TN,play with dog,sniff the babys head,love,move to the other side,happy,sniff the babys head 86,3711681535,1070,640,480,why does the woman swing her legs while swinging on the handle,4,37116815353,CW,very happy,seeking encouragement,move it backwards and forwards,singing,way of swinging,way of swinging 87,3121571439,1212,640,428,how does the man in black feel after the dance,0,31215714393,TN,happy,pick something up,look at the man in white,raise his eyebrows,continued,happy 88,9473479950,608,640,480,how did the lady ensure she does not dirty the floor while eating watermelon,2,94734799501,CH,tie it up,wear bib,bowl,wear vest,tie hair up,bowl 89,2821968703,900,320,240,why is the man leaning towards the back,4,28219687035,CW,supervising boy,play the piano,playing piano,it s sunny,balance better,balance better 90,7786283208,636,640,360,how does the girl in white move her legs in the middle,3,77862832085,CH,put the table,play with string,kick the boy,kick up in the air,kick away toy,kick up in the air 91,8064178441,2229,640,1138,what does the baby do after moving the penguin toy nearer to him near the end of the video,2,80641784417,TN,toy,poke dough,toss it away,moves it around,look at the camera,toss it away 92,4217422838,1261,640,480,what did the lady do after she closed the box in front of her at the beginning of the video,2,42174228384,TN,stand up,go to the adult,put the box aside,point at something,touch the child s head,put the box aside 93,2793806282,1925,320,240,what did the lady in blue do when she reached the stairs,1,279380628212,TC,put head on table,sit on stairs,goes to get food,move hands around,jump down stairs,sit on stairs 94,3524939594,436,320,240,how do the two men feel when they were moved backwards very quickly,3,35249395942,TC,sleepy,adorable,calmer and happier,thrilled,curious and happy,thrilled 95,4138579400,601,640,480,what did the boy do after touching his spectacles,2,41385794006,TN,look into camera,touch the cat,touch his hair,starts running with the trolley,play with toy,touch his hair 96,4273039295,2214,640,360,what does the woman in green beanie do after the child runs away for a while,1,42730392958,TN,follow girl,run and catch him,walk around,put hand on table,push the board away,run and catch him 97,2793260225,558,500,375,what were there two men wearing on their heads,4,27932602254,DO,flowers,streamers,bandages,ribbons,caps,caps 98,5328004991,788,640,480,how does the child react after the woman takes over the stirrer,3,53280049919,TN,turns around,push food back in the mouth,moves forward,wants it back,stand beside the car,wants it back 99,6160414832,1831,640,480,why is there a green mat on table,0,61604148327,CW,playing board game,cooking,cutting paper,cover food,eating,playing board game 100,2435633172,2293,500,375,what do the people do as the pig was scratching itself against the rock,0,24356331725,TC,take photos,playing,move ball towards it,sleeping,climb onto lap,take photos 101,8107573462,406,640,360,where is this place,2,81075734629,DL,bus terminal,theatre,snow field,park,waterfall,snow field 102,4273039295,2214,640,360,what does the woman in green beanie do as the child in runs pass him,3,42730392957,TC,touch the girl,hit the golf ball,kicks again,take a step forward,run and catch him,take a step forward 103,11681746823,608,640,360,how did the baby feel when playing with the lady,4,116817468231,TC,sad,annoyed,terrified,angry,happy,happy 104,6356067859,1070,640,480,why did the girl in white put her hands in front of the horse,3,63560678591,CW,not fall off,take video of baby,listen to her talk,to feed horse,wanted to help stop ball,to feed horse 105,2503404966,840,640,480,how does the boy feel while riding the toy,1,25034049666,TC,bored and uninterested,happy,sad,weary,worried,happy 106,3151715056,1895,640,480,how does the lady on the right interact with the girl on the chair,4,31517150567,CH,dance with her,support the girl from the back,swing her hands,shake hands with her,bend down and touch her,bend down and touch her 107,7164729910,656,640,360,how does the boy operate the toy car,2,71647299107,CH,romote controller,seat belt and baby chair,turn the wheel,use their hands,pull the seatbelt,turn the wheel 108,8557532213,379,640,360,why did the boy in yellow look at the boy in blue before the boy in blue kicked the ball,3,85575322138,CW,to see lady,bring ball with him,check on him,waiting to catch ball,wave to him,waiting to catch ball 109,7001078933,633,640,360,where is this video taken,1,70010789336,DL,sea,field,mountain top,computer table,snow mountain,field 110,3206694342,1971,640,480,how many people are on stage,1,32066943423,DC,one,six,three,five,seven,six 111,10597533885,1728,640,360,what does the baby do after touching the toy house in the middle,1,105975338854,TN,takes support,plays with another toy,push the toy train,crawls forward,dances,plays with another toy 112,8783897632,974,640,360,how does the male cyclist react when he sees the steep path,1,87838976327,TC,fells on the ground,dismount from his bicycle,hold the bicycle,support the vegetables in basket,cycle down,dismount from his bicycle 113,5333075105,1168,640,480,why is the man smiling at the end of the video,1,53330751056,CW,excited to throw someone,finish climbing,posing for camera,find the activity fun to play,happy playing with toys,finish climbing 114,8783897632,974,640,360,how do the two people transport the bikes down the slope,3,87838976322,CH,throw down,use feet to pedal,put down on the ground,by pushing,by car,by pushing 115,2735019707,583,640,480,what is the relationship between the boy and the man in red,1,27350197076,DO,father daughter,parent offspring,trainer trainee,friends,team member,parent offspring 116,11244289523,552,640,360,how did the baby react when she first saw the tissue,4,112442895234,TC,hit the adult,play with owl toy,bites it,continues walking,move away,move away 117,14012319794,3010,640,360,why did the girl take the piece of card at the start of the video,0,140123197948,CW,play with it,keep toys,lose interest in lady,curious,handing to boy,play with it 118,4130504920,422,640,480,what is the colour of the balloon,0,41305049204,DO,purple,black,brown,white and red,green,purple 119,3249402410,697,640,480,what did the lady in pink do after the lady in red passed her the pan,2,32494024109,TN,talk to the person in front,pick up hat,walk away,take a photo,take the plate,walk away 120,9612838272,453,640,360,why did the girl climb up at the start,1,96128382720,CW,greetings,to slide down,learn dancing,dance move,dead end,to slide down 121,4798585428,2697,640,480,how many people are posing for the photos,1,47985854286,DC,two,five,six,thirteen,one,five 122,4485498145,496,640,480,what does the lady in pink do after drinking some water at the start,3,44854981450,TN,taps water with her foot,turns around,make more bubbles,talk to the person in front,take the brush out,talk to the person in front 123,4010069381,369,640,480,why did the lady bend towards the man with brown vest,1,40100693811,CW,trim eyebrows,talk with man,pass paper,look at his phone,prevent hair get wet,talk with man 124,9408800471,1056,640,480,does the dog try to bite on the ball when the ball rolls on the ground,3,94088004713,TC,rolled away,bring to the person,bark,wants to grab ball with mouth,white dog,wants to grab ball with mouth 125,2809330695,2158,320,240,how does the baby try to get the pink toy near the end,1,28093306959,CH,call for help,pull the pink toy,kick his legs,pull the string,move closer to the toy,pull the pink toy 126,4984417707,441,640,360,how many elephants were playing with the ball,2,49844177078,DC,three,six,two,five,one,two 127,3445431963,1276,640,480,how does the first diver react to the camera filming,3,34454319632,TC,he gave a thumbs up,turns it on,look around,wave her fingers,sitting,wave her fingers 128,4688219212,959,640,480,what does the boy do after catching the rings at the start,1,46882192123,TN,put ball into hole again,pull himself up,trying to open the box,drop bat and run,run back,pull himself up 129,3477387686,2034,640,480,why did the girl put her hand out near the dog s paws,0,34773876863,CW,playing with dog,untangle the leash,make the dog running away,kiss the dog,talk to dog,playing with dog 130,4378803532,1310,640,480,how does the child in stripes communicate to the man in red that he wants to switch sparklers,4,43788035321,CH,with his hands,squat,kneel up,holds out his hanfs,gave away the smaller sparkler,gave away the smaller sparkler 131,3719793245,342,640,480,why is the girl moving her arms around in front of her,1,37197932458,CW,driving,spinning wheel,to catch rolling fallen bapple,pretend to hit the drum,playing,spinning wheel 132,7114553643,1974,640,480,what did the man in brown vest do after he stood up in the middle of the video,4,71145536431,TN,put in front of baby,laugh,hold the leash and pat dog,look back at blonde girl,hold the lady s hand,hold the lady s hand 133,2503404966,840,640,480,why did the boy stopped walking and looked up,3,25034049662,CW,someone called him,adjust his shoes,posing for camera,became dark,reaching for food,became dark 134,6860322796,1285,640,360,where is this video taken,2,68603227967,DL,by a lake,dancing hall,park,kitchen,computer table,park 135,6025238212,758,640,360,why did the girl in gold hold onto her party eye masks in the middle of the video,1,60252382121,CW,lose interest in lady,adjusting to see better,waves getting bigger,to get down the step,laugh,adjusting to see better 136,2461993294,1999,640,480,what is the relationship between the two performers,3,24619932945,DO,classmates,team member,colleagues,friends,puppet show,friends 137,3784543730,852,640,480,why is the black shirt man moving his legs up and down on the bicycle,1,37845437301,CW,to help her ride with supporters,cycling,travelling on road,trying tricks,crossing muddy fields,cycling 138,5658916668,660,640,1138,what did the man do after falling,3,56589166686,TN,crawl up,put hand on head,walk towards the boy,gets back up,crying,gets back up 139,3261079025,553,640,480,what did the man in grey do before the plane took off,3,32610790256,TP,spinning,take picture of the wall,touch the earphones,hold the plane,climed on the trunk,hold the plane 140,4889681401,2697,640,480,where are the people cycling,0,48896814015,DL,road,beach,auditorium,bus,living room,road 141,3942617402,738,640,480,why is the man sitting on train engine s window,4,39426174021,CW,monitor when to stop and go,guarding,play the guitar,read,operate the engine,operate the engine 142,5328616848,446,640,480,what was the boy doing while the woman was pouring the ingredients,0,53286168485,TC,fidgeting with something,pretend to feed toy dog,watch tv,pour water on dog,drying clothes,fidgeting with something 143,4087654898,330,640,480,how did the children fill up the bucket,0,40876548980,CH,turn on the tap,through straw,person bringing food to baby mouth,touch the top of bottle,sit around on the floor,turn on the tap 144,4698622422,1252,640,480,why did the boy in yellow hold a racket,1,46986224227,CW,give to his young brother,play ball,pass it to a lady,exchanging it for a new one,posing for camera,play ball 145,5061117640,1587,568,320,how is the man in grey feeling after looking into the room at the start,3,50611176401,TN,disappointed,angry,sad,happy,bored,happy 146,5803861992,2145,640,480,why is the girl smiling,0,58038619920,CW,adult plays with her,shy,finds baby amusing,enjoy skiing,playing with balloons,adult plays with her 147,3972259774,1063,640,480,what does the man do after removing the card from the camera at the start,0,39722597740,TN,sit down,look at the camera,heat the red tube in machine,stop,motorcycle drove past,sit down 148,5296635780,652,640,480,where is this happening,1,52966357808,DL,backyard,hallway,in the middle of the sea,bowling alley,road,hallway 149,4251505427,2290,640,480,how is the baby being held,3,42515054272,CH,laying in the pram,safety belt,strapped into pram,lady hold baby in standing position,in babyseat,lady hold baby in standing position 150,2809330695,2158,320,240,why is the baby trying to reach his hand out in the middle of the video,3,28093306952,CW,support him sit,to feel dog,take the food,like the toy,excited,like the toy 151,6078524411,2512,640,360,why did the baby put his head on the table,1,60785244117,CW,tall enough to help,tired,playing,to eat the food,lick yogurt taste,tired 152,4388652400,1785,640,480,what happened to the dog when it looks at someone near the start,4,43886524002,TC,hold up a cup,ignore baby,grab the mouth,bark,touched by the man,touched by the man 153,9408800471,1056,640,480,how does the boy pass the ball at the beginning of the video,4,94088004710,CH,using the baby walker,throw ball towards the man,with his fingers behind the ball,use legs to push,hit ball using hands,hit ball using hands 154,3471421544,1786,640,480,how does the baby move the chair,0,34714215444,CH,jumps,push,crawling,fall,pull,jumps 155,10030609934,1680,640,360,why was the boy at the brown table near the stairs at the beginning of the video,4,100306099341,CW,wanted to lie down,dancing,to touch the sandals,get on sofa,bending down to look at ground,bending down to look at ground 156,3550839192,1050,640,362,what colour is the baby wearing,1,35508391920,DO,yellow,brown,blue,green,pink,brown 157,3321261856,855,640,480,what did the girl do after she pointed,0,33212618562,TN,stomp her foot,walk forward,turn her front,skiing,said something,stomp her foot 158,7164729910,656,640,360,how does the boy ensure he does not hit the sofa at the end,2,71647299108,CH,let go of boy s hand,get up from toy car,look behind him,run away from sofa,step backward,look behind him 159,5333075105,1168,640,480,what did the man do after he reached the cameraman,2,533307510511,TN,play with toy,inspect wings,stop,move to the side,pick up something,stop 160,6860322796,1285,640,360,what is jumping in the snow,4,68603227961,DO,birds,elephants,rabbits,crocodile,dogs,dogs 161,3557498300,849,640,480,what does the adult do after approaching the two kids at the end,1,35574983009,TN,play guitar and sing,separate the kids,pick up the kids,pick up grass,lean against the screen,separate the kids 162,4013751996,764,320,240,why does the girl face downwards while talking,3,40137519967,CW,eye contact,chewing,talking,talking to someone on the grass,interacting with boy,talking to someone on the grass 163,5229476012,810,640,480,why did the woman in black swimsuit spin the boy in a circle,4,52294760121,CW,posing,do not want wet hair,for her to distribute,not proficient at swimming,playing in water,playing in water 164,5801184682,1683,640,480,what did the cat do after the human puts the hand on the floor,3,58011846822,TN,bite it,sit there,ran away,play with the hand,play with cat,play with the hand 165,3078294001,335,640,480,what does the man in black do as the man in white moved away,4,30782940016,TC,rotates,drink water,pick up something from ground,bend towards man in red,hand gesture and talks,hand gesture and talks 166,4838145161,1921,640,480,why does the cat suddenly move back at the start of the video,3,48381451611,CW,waiting for owner,saw the person,attracted towards the bubble,face got wet,clean itself,face got wet 167,6617533993,1384,640,1138,how does the boy feel while playing,4,66175339937,TC,sad,scared,annoyed,confused,happy,happy 168,7499763064,604,640,360,what does the man above hold onto while climbing up,0,74997630643,TC,rope,lady,stick,man s hand,camera,rope 169,6754608321,1617,272,480,why did the girl touched the baby s arm at the beginning of the video,2,67546083214,CW,carry baby down,adjusted his shirt,hug baby,adjusted his bracelet,wears watch for the baby,hug baby 170,2696280239,398,640,480,how was the person on the bull moving his right arm,0,26962802397,CH,swinging in the air,using his fingers,beat drum vigorously,beating it,with the sticks,swinging in the air 171,5328004991,788,640,480,what does the boy do after picking up a box near the end,4,53280049916,TN,pass toy to baby,swing it down,climb up,enters a room,shakes the box,shakes the box 172,8811725760,631,640,360,what are the people at,3,88117257608,DO,forest,living room,bedroom,park,beach,park 173,4087654898,330,640,480,what does the girl do after filling the bucket,4,40876548987,TN,dance,swing her right hand,reach for something,carry the girl,pick up the bucket,pick up the bucket 174,3851961428,2062,640,480,why does the boy wearing blue struggle after taking off his goggles,4,38519614284,CW,playing with dog,ensure safety,pick up the green toy,painful,uncomfortable in water,uncomfortable in water 175,10082798964,345,640,360,why does the lady raise her right hand halfway through the video,4,100827989646,CW,play with baby,dancing,pick up the ball,pick up blanket,one of the gestures she s teaching,one of the gestures she s teaching 176,2435100235,1906,640,480,why did the man in white shirt try to pass the watch to the other cyclist,2,24351002351,CW,exchange for gift,change watch strap,want to sell watch,change colours of the watch,pose for camera,want to sell watch 177,11541421563,2403,640,360,what does the woman in brown do after sitting for a while at the start,4,115414215635,TN,touch baby s hand,run,look at the lady in red,stand up and flip the chart,leave her seat,leave her seat 178,5237219621,2680,640,360,how many people are there,2,52372196214,DC,four,two,six,eleven,five,six 179,7288107396,507,640,360,what did the boy do after he got down from the stairs,3,72881073963,TN,run towards the book shelf,continued moving his bicycle,put his arms back up,run to the present,lean against the screen,run to the present 180,4199369046,1717,640,360,what do the other people do after the lady finishes drinking at the beginning,1,41993690468,TN,tap bottle cap,laughs,move away,leave the stage,put the pot down,laughs 181,8563398032,2040,640,360,why did the man with plain black shirt stop moving his hands for a while in the middle,4,85633980325,TN,take a drink,fall down the net,show the object,writing on the ground,to flip a page,to flip a page 182,7605329840,635,640,360,why did the man raise his hand in front of the striped shirt girl in the middle,2,76053298402,CW,talking to her,to catch her,to give a hi-five,to wipe girl face,to dance together,to give a hi-five 183,3530231811,2697,640,480,why are there people sitting in front of the man in black jacket,3,35302318117,CW,instructors,taking video,gesturing to emphasize his point,audiences,control the music,audiences 184,5445581571,964,640,360,what is the black spotted dog looking at after he looked up,0,54455815717,TN,white dog,chase the brown dog,trying to chase the white dog,bends down,play with ball,white dog 185,4636208292,2580,640,480,why does the woman put forward her drink near the beginning of the video,2,46362082921,CW,making pottery,hold baby,to show in the video,walk towards dog,take the book,to show in the video 186,8531675050,1620,640,360,why does the woman keep her hands in a specific position after going near the man,3,85316750507,CW,gesturing as she speaks,shake hands with man,to show man something in her hands,listen to the man,spinning around,listen to the man 187,10030609934,1680,640,360,why did the boy bend down near the beginning of the video,4,100306099345,CW,looking at the slope,holding a hen,to dance on the floor,talking,look at purple thing on ground,look at purple thing on ground 188,4483447009,775,640,480,what does the duck do after pecking for a while at the start,2,44834470093,TN,walk a few steps,look down at the grass,move towards fence,walk around,swim in water,move towards fence 189,4006608424,2697,640,480,why was the man on the floor at the end,0,40066084249,CW,fells down,clean shoes,try to adjust shoes,to dry his socks,rub ankles,fells down 190,2793806282,1925,320,240,what is the dog doing,1,27938062826,TC,on the right,swimming,lick baby s hand,playing with sticks,play with ball,swimming 191,4770216656,960,640,480,what does the boy do as the man stood at the side,2,47702166561,TC,walks forward,performing,play swing,hand over the carrot,hold water bottle,play swing 192,3935853204,943,640,480,why is the lady moving her head and fingers,3,39358532049,CW,to examine the screen,attract baby s attention,taking pictures,control the screen,performing,control the screen 193,4564478328,1410,640,360,why does the lioness on the left raise her front legs in the middle of the video,2,45644783282,CW,to balance the cycle,looking for something,fighting,kick the ball,comfortable,fighting 194,6253433310,680,640,480,how did the boy protect his eyes,4,62534333101,DO,wear bib,covered with hands,blanket,turn his head to look around,wear swimming goggles,wear swimming goggles 195,9409566840,1040,640,360,how does the brown dog keep the white dog down,1,94095668402,CH,change hand,hold the dog with its paws,walks around,using leash,lie down on chair,hold the dog with its paws 196,8277866423,829,640,360,why did the brown dog move backwards,3,82778664237,CW,fetch the toy,playing hide and seek,check the cleaning parts,black dog barked at it,excited to play,black dog barked at it 197,4485707628,1933,352,288,how does the black dog interact with brown dog at the end of video,0,44857076285,CH,sniff it,biting its tail,biting its head,push ball to brown dog,bark at it,sniff it 198,12682618843,1458,640,360,how was the toy bear shifted to the front at the start,3,126826188433,CH,jog over,boy shifts it,by zoo keeper,dog shift using mouth,girl shifts it,dog shift using mouth 199,8811725760,631,640,360,what did the girl do after posing for a photo,1,88117257606,TN,turn to look,slide down,speaks and move her body,smile and wave,pass the ipad,slide down 200,2735019707,583,640,480,why is the baby holding a drum in the beginning,2,27350197071,CW,he is frustrated,for boy to play,hit drum,prevent boy from sntching it,shove it away,hit drum 201,3851961428,2062,640,480,what is the relationship between the man wearing red and the boy wearing blue,1,38519614285,DO,parent child,trainer trainee,friends,parents and children,friend,trainer trainee 202,5913180144,1191,640,480,what does the man in blue socks do after he was put down by the man in grey suit,3,59131801442,TN,arm wrestle,play with sand,walk along the lighted up wall,take a step away,bite him,take a step away 203,2834146886,1881,496,370,how many dogs are there,2,28341468869,DC,four,one,two,six,three,two 204,2454242177,1574,320,240,which direction did the baby push the blue toy after the start,0,24542421779,TN,backward,let go of one hand and turn,pick them up from yellow part,forward,hit his legs,backward 205,2604394962,1078,640,480,why did the man put the toy on the ledge of the wall,2,26043949621,CW,stay balance to go up,to attract the boy,play with it,stabilise,for cat to play,play with it 206,5205081904,623,360,480,why does the child turn around near the end of the video,4,52050819041,CW,reaching for bottle,talking,he got the pacifier,to climb down the stairs,picks up the grey jacket,picks up the grey jacket 207,8189958994,1869,640,360,what did the lady do after she stopped the black dog from circling her,3,81899589948,TN,move towards the lady,walk white dog,go to the lady,rubs the dog,moves away,rubs the dog 208,4967810888,1868,640,480,why does the woman in white bend down while walking in near the end,4,49678108882,CW,ensure she do nt fall,pick up a bag,pose,touch lady in blue,stay clear of the plant,stay clear of the plant 209,5875535585,2291,640,360,how does the man in black interact with the audience,1,58755355859,CH,hit the drum,walk up and down,hit with a stick,kneel down,patting his shoulder,walk up and down 210,4765564263,420,640,480,how did the boy in black pants moved from place to place,0,47655642639,CH,walk,jump,cycling,on scooter,swimming,walk 211,5521781780,2697,640,480,why are the men walking around,1,55217817802,CW,finding the ball,looking at the structure around,to carry the box,play with dog,playing with the baby,looking at the structure around 212,2584172238,719,320,240,why did the woman place her hand at the boy s hip in the middle of the video,1,25841722386,CW,take balloon away from baby,support boy,get closer to the bell,clean the hip,check whether baby peed,support boy 213,4882821564,2697,640,480,how did the boy react when he entered the room at the start,3,48828215644,TC,dance,run,stretch his hand out,smile,walk close to it and look,smile 214,3192668394,2079,320,176,why did the man in black sweater hold up a cup of water while talking to friends,4,31926683940,CW,take a picture,hand the drink to someone,tell the lady something,wants to try pouring the water,drink,drink 215,14012319794,3010,640,360,why did the girl pull the tent down towards her in the middle of the video,1,140123197944,CW,take the book,try to take flag on top,carry the baby,pick up something on the floor,talking about it,try to take flag on top 216,4273039295,2214,640,360,how is the boy moving around,1,42730392950,CW,hiking,walking,adult carry him,flying fox,skiing,walking 217,9576671750,825,640,360,why did the person raise his other hand at the beginning of the video,2,95766717509,CW,pick up slippers,pick up the fish,to turn the phone,part of stunt,trying to open present,to turn the phone 218,4626535366,1468,640,360,why does the kid stands near the poster,3,46265353664,CW,drawing on the poster,posing for a picture,adjusting height of the poster,talking about cleanliness to audience,scared the psoter will fall,talking about cleanliness to audience 219,3345608051,2250,640,480,where are the dogs fighting,0,33456080514,DL,barren land,snow wild,living room,garden,grass patch,barren land 220,6024684644,519,640,360,why did the man bend so low,4,60246846446,CW,stabilise himself,adjust shoes,hiding from the dog,avoiding the sun,the hole is very deep,the hole is very deep 221,3078294001,335,640,480,why does the man in white move away from the man in black in the middle,1,30782940013,CW,take his shoes,starts walking while talking,get a drink,answer phone call,help the chef,starts walking while talking 222,4762946272,647,640,360,what did the boy do after the woman poured the flour into the spoon,3,47629462724,TN,take out candle,nodding and smiling,happy,pour flour,looking at her,pour flour 223,4087013668,1442,640,474,where is this video taken,3,40870136689,DL,bedroom,speech event,mountain,kitchen,playground,kitchen 224,11584566583,376,640,480,how did the woman in green adjusts her glasses at the middle,0,115845665833,CH,push up using finger,take off and put on,held on to sides of ladder,nods her head,point her boards to make triangle,push up using finger 225,4010069381,369,640,480,why does the man in brown look towards his back,4,40100693812,CW,wait for the girl,check the screen,playing guitar,dancing together,talk to lady,talk to lady 226,2573424030,1470,320,240,why did the dog stand on 2 legs after seeing the man give a treat to the baby,0,25734240303,CW,wanted food,wants to get pet,smile at camera,bigger dog didnt want it,man touches it,wanted food 227,8513603944,919,640,480,what does the child in blue helmet do after turning around,1,85136039448,TN,the girls riding,continue walking,moves the object,reading something,eat it,continue walking 228,3763643225,1073,640,480,why does the boy run around the room,0,37636432257,CW,put paper giraffe down,doing ballet,play with dog,place the cup on table,catching toy ,put paper giraffe down 229,8563398032,2040,640,360,why did the man with plain black shirt raise his hands after the man beside him touch his nose,4,85633980320,CW,support child,witness for the oath,shaking hands,get off from motorcycle,gesture and make points,gesture and make points 230,6244675392,900,480,640,why does the adult put out her hand towards the baby at the beginning of the video,4,62446753920,CW,to kiss her,tell baby to follow,to carry him,woman s manipulation,hand over the food,hand over the food 231,8177965766,705,640,360,why did the woman walk around as she sings,4,81779657662,CW,for safety,feel the music,playing her instrument,pacing themselves,engage audience,engage audience 232,5445581571,964,640,360,why is the yellow toy on the floor after the white dog left,0,54455815719,CW,white dog left it there,for baby to play,dog s urine,get the brown dog s attention,play with him,white dog left it there 233,3869005094,300,640,480,how did the four people hold their sticks,1,38690050948,CH,with their left hands,use both hands,hold the middle,right hands,lean on wall,use both hands 234,2957808913,598,640,480,what does the man sitting on stage behind the guitarists do when they play the guitar,0,29578089135,TC,play the drum,shake body vigorously,stands on the side,practicing dancing,sitting on the floor,play the drum 235,4219909195,1003,640,480,why did the man touch the girl s leg when she sit beside him,0,42199091953,CW,put her leg in a proper position,catch her when she fall,move leg to paddle,put on socks,remove shoe,put her leg in a proper position 236,9408800471,1056,640,480,why does the dog run,4,94088004716,CW,catch up the boy,happy and excited,sniff around grassland,kick the thick snow,follow the ball,follow the ball 237,5889898795,2697,640,360,why are the people on a platform,1,58898987953,CW,parachute,go down zipline,make a speech,performing,to take photo,go down zipline 238,5521781780,2697,640,480,what does the man in grey hold in his hands while he was walking around,0,55217817803,TC,camera,book,spoon,chair,racket,camera 239,4584426085,2697,360,480,why did the lady sitting crossedlegged stretch her hand out to touch the dog in the middle,0,45844260855,CW,want to dress dog,show love and care,balance dog,show love,feel the beat,want to dress dog 240,10607095936,1080,640,360,what does the lady do after taking the microphone from the man in red cape at the start,1,106070959366,TN,put 2 fingers up,talk to the audience,turn behind her,eat,put hands together,talk to the audience 241,7223854838,413,640,360,how do the two boys position their hands,2,72238548386,DO,put in their pocket,touch baby s hand and smile,on the glass,kiss the babies,move handle,on the glass 242,2857132732,726,320,240,what is the man doing in this video,4,28571327329,TC,enjoying a cable car ride,taking a break,feeding dogs,skiing,playing an instrument,playing an instrument 243,8457210773,1976,640,480,why is there no grass,1,84572107732,CW,it was cut,covered with snow,to keep cool,cow finished eating,gardener plucked it,covered with snow 244,6097994550,526,640,360,what did the man sitting on top do after he came off the person on the ground,1,60979945500,TN,touch the camera,kneel at the side,talk to camera,hold each other arms,hug man,kneel at the side 245,6754608321,1617,272,480,why does the girl put her hand underneath the baby s neck,4,67546083211,CW,adjust her necklace,tickle,massage her neck,feed her milk,to give support,to give support 246,5229476012,810,640,480,where is this video taken,4,52294760125,DL,dinning table,park,carnival,boxing ring,swimming pool,swimming pool 247,5561024834,947,640,360,why does the boy tuck his head out from the blanket at the end of the video,0,55610248344,CW,playing,ask for food,making the baby smile,reach for the ball,pose for camera,playing 248,4151403382,1875,640,480,what does the boy in brown bib do after seeing the piano,3,41514033824,TN,acknowledged him,grab book,pull his scarf,bend down to play,take it from him,bend down to play 249,5070310138,1603,640,480,why did the man lean forward to the boy after the middle,2,50703101386,CW,continue to swim,touch the cat,for baby to touch,pass kite to boy,playing game,for baby to touch 250,3655906094,563,640,480,why did the man with sunglasses move his hand when talking to the man in blue hat,0,36559060941,CW,gesturing,shake hands,funny conversation,pat his back,take notes,gesturing 251,3322503255,1233,320,240,why is the plane coming foward,4,33225032551,CW,ready to take off,to support another plane,direct the car,waiting for instructions,parking,parking 252,8563398032,2040,640,360,how many people are presenting,4,85633980322,DC,seven,five,six,three,two,two 253,5875242364,427,640,384,why did the baby started to look distress after he tried to hold the makeshift pool,3,58752423642,CW,water got into eyes,man takes away the bottle,natural reaction to dust,can not get up,dog snatched his toy,can not get up 254,2679328607,1047,320,240,how many times does the girl pass the toy to the boy,4,267932860710,DC,six,two,four,five,three,three 255,3655906094,563,640,480,what did the man with grey hat do after talking to the man with sunglasses,4,36559060949,TN,adjust his posture,performing,turns toward the man in beige,wave hands around,bend down,bend down 256,7492398760,2697,640,360,how does the lady put down her camera at the start,2,74923987609,CH,sling around her back,put on chair,put on the ground,at the shelf,on green table,put on the ground 257,9917882506,974,512,288,how do the children stop their bikes,2,99178825067,CH,move handles,stopped by dog,put their legs down,stopped by man,fall down the bike,put their legs down 258,11565498775,1216,640,360,why does the boy look up at the man in the middle of the video,1,115654987752,CW,wants to hold man s hand,to see how to move the rod,talk to man,play with man,giving interview,to see how to move the rod 259,11541421563,2403,640,360,why are the men sitting surrounding the man in orange and woman in brown,3,115414215630,CW,snuggle with boys,to reach the top,different types of bicycles,observe as audience,watching friends play,observe as audience 260,9082180631,406,640,360,how do the two people in pink move along the road,0,90821806311,CH,sitting on sledge,walking backwards,use feet ot pedal,spinning the wheels,crawls towards it,sitting on sledge 261,8594309349,459,640,360,where is this video taken,3,85943093490,DL,room,outdoor,along the streets,under the water,on the plane,under the water 262,5061117640,1587,568,320,what does the man in grey do after walking for a while in the room at the start,2,50611176405,TN,adjust a chair,look at the presenters,sit down,pose,pick something up,sit down 263,6592821115,1800,640,424,why did the woman in grey extend her arms out to the standing baby in polkadot,3,65928211152,CW,playing with baby,pointing at baby,stop toddler from hitting baby with toy,to signal for baby to come,dancing with baby,to signal for baby to come 264,3550839192,1050,640,362,where is this place,3,35508391927,DL,house floor,restaurant,classroom,train station,playground,train station 265,4264435046,566,640,480,what did the stray dog do as the woman was running back with her dog at the end,2,42644350466,TC,balances on one leg,stand and stare,follow,looking at the dogs,move backwards,follow 266,5328004991,788,640,480,why does the child hold on to the woman s arm after she takes over the stirrer,4,53280049912,CW,to see what she took,flatten the hair,to play with the bubbles,prevent baby from falling,wants the stirrer back,wants the stirrer back 267,4092992100,461,640,480,why did the boy in red and black shift his bike up after the boy in yellow and blue take off,4,40929921002,CW,clean the floor,want to lie down,tease him,motorbike can not move,wait for his turn,wait for his turn 268,2824317018,1606,500,375,where is this place,0,28243170188,DL,forest,outdoors,near a staircase,living room,their house,forest 269,4564478328,1410,640,360,why did the lioness bend its head down in the middle,3,45644783286,CW,playing,distracted,pick up something,drink water,to make the dog jump,drink water 270,7164729910,656,640,360,what does the boy do after hitting the wall at the start,3,71647299106,TN,pull himself up,got up a little,standing and touching his lips,retreat backwards,throw ball in,retreat backwards 271,5433090067,607,480,640,why was the black chair moving at the start of the video,1,54330900675,CW,the dog pushes it around,girl moves it,lady carries it up,boy drags it,man in grey kicked,girl moves it 272,5987365500,714,480,640,how does the girl feel as she is singing,3,59873655005,TC,happy celebrating the girl s birthday,upset,about to cry,shy,confused,shy 273,5504913999,1475,640,360,why is the man moving slowly in front of the camera,4,55049139996,CW,avoiding the dog,scared of tripping,looking for something,looking at the man speaking,snow hard to move,snow hard to move 274,4260763967,1017,640,480,what was the boy in yellow doing before the boy in blue turned his head behind at the middle,3,42607639678,TP,move his hands to other chair,play with sand,look at him,pick something up from ground,throw to make splash,pick something up from ground 275,5026660202,2697,640,480,how do the singing guitarists project their voices,2,50266602021,CH,with a trumpet,with a loudspeaker,speak to the microphone,talk louder,shout,speak to the microphone 276,8740703217,602,640,360,what is on the table,4,87407032174,DO,white cake,cardboard box,letters,birthday gifts,food,food 277,4443526735,472,480,640,how does the baby move,0,44435267353,CH,in a swing,carry by man,in lady s arms,in pram,crawl,in a swing 278,2400715506,414,320,240,how is the animal prevented from falling when climbing on the hand,4,24007155065,TC,put it on the ground,walked forward,looked at his surroundings,hold by rope,person thumb move up,person thumb move up 279,2731071928,1959,500,375,what instrument is the child playing,3,27310719284,DO,santa claus,vacuum cleaner,pick up fallen paper,guitar,piano,guitar 280,6201488511,2575,640,360,why did the lady in white touch and wipe her face near the end of the video,0,62014885112,CW,wipe off sweat,reading script,wipe ice cream from her mouth,wipe off the mud,clean the table,wipe off sweat 281,13919236672,3924,640,360,what did the girl do after she dragged open the red box,1,139192366727,TN,lies down,close the red box,hit her back,say something to the girl,walk towards her,close the red box 282,2736413196,1617,352,288,why is the man in orange pointing at the laptop,1,27364131965,CW,filming,showing the other man,talk to lady,monitor the robot,signal boy to close laptop,showing the other man 283,4650556666,567,640,480,how is the woman holding the boy,2,46505566660,CH,pat head,pushes the pram,with both hands,holding baby in her arm,hold the attached string,with both hands 284,4762946272,647,640,360,why did the woman take the measuring spoons away from the boy,0,47629462725,CW,do nt need it anymore,feeding,finish eating the piece,so can take picture,wants to play with it,do nt need it anymore 285,3861485381,2686,640,480,which animal went into the forest first,3,38614853818,DO,fishes,polar bear,deep,leopard at the front,horse,leopard at the front 286,4123211145,2697,640,480,why did the person at the back throw a jacket towards the girls when they are dancing in front,3,41232111453,CW,act in front of camera,follow the rhythm,to wear the jacket,play with them,do a magic show,play with them 287,3046900922,539,640,480,what does the child do after being put down on the ground near the end,3,30469009222,TN,withdrew toy,touch the cloth,a toy,walk away,happy and excited,walk away 288,3981865268,1109,640,480,where is this video taken,0,39818652689,DL,stage,ballroom,park,road,forest,stage 289,5349969207,1193,640,360,why does the black dog sitting in front of the electrical fan turn its head at the start of the video,2,53499692070,CW,drink water,pick ball up,look back,trying to move it,let go of the rocks,look back 290,2821788355,765,320,240,how did the man in red pants keep contact with the speeding boat,4,28217883552,CH,push himself,steer wheel,hand signals,paddle,hold on to long rope,hold on to long rope 291,5801184682,1683,640,480,how many cats are there,3,58011846828,DC,three,four,two,one,five,one 292,3846475848,2138,640,480,why does the man keep the ferret on the floor,0,38464758482,CW,to dry,allow the girl to play,fall over,touch the dog,baby crying,to dry 293,3861485381,2686,640,480,why was the man in cap holding a camera,0,38614853811,CW,photograph leopards,taking photo of people,posing for camera,taking photo of bridge,fashion,photograph leopards 294,6142416815,1267,604,1072,how did the baby fall asleep,0,61424168156,CH,rock the chair,on his back,tap fingers,put hand behind,caress the head of cat,rock the chair 295,2782307049,461,640,480,how did the lady get down the rock,4,27823070491,CH,jump down,skiing down,cycle down,climb down,slide down with rope,slide down with rope 296,8455160795,600,640,360,what was the man in grey jacket doing as the man with a stick stood on the shore in the middle,1,84551607952,TC,on the phone,walking,posing,walk over to pull boat closer,running around,walking 297,2596300565,2415,500,375,why does the baby stops and starts pushing the pram the opposite direction,3,25963005653,CW,playing,to hold the plate,the lady turned the walker,practice walking again,distracted,practice walking again 298,5603283408,756,640,360,why did the object on the ground move after the middle part of the video,1,56032834083,CW,man turned it,girl kicked it,pick up the fish,rest,going up to see better,girl kicked it 299,8107573462,406,640,360,how did the man respond when the boy fell down,3,81075734627,TC,no reaction,run towards boy,get off his ski,let go of boy s hand,look away from boy,let go of boy s hand 300,2697261300,1392,640,480,how did the cameraman get the boy s attention near the start,4,26972613001,CH,climb on lady s lap,knee pads,point into the camera,crawl,hand gesture,hand gesture 301,5840177726,377,640,480,why did the man in red pedal faster when going upslope,2,58401777261,CW,playing around,make vibrato,need more strength,push the black helmet man,create fear and thrill,need more strength 302,5421648216,1290,640,360,why is there collar on the white sheep,0,54216482161,CW,show that they are domestic,identify dog,to guide the elephant,comfortable to move around,airline,show that they are domestic 303,3441428429,2697,640,480,why does the female skater suddenly bend backwards while holding the male skater,1,34414284298,CW,to dodge baby hitting her,performing stunt,look at boy,dancing,check on kids,performing stunt 304,2442307875,515,640,480,how do the children move their hands on stage,4,24423078752,CH,standing in a line,swing back and forth,spin it,from right side of the stage,synchronised movements,synchronised movements 305,4955723618,1831,640,480,how did the lady in black reacted when the man in black beside her passed her the microphone,1,49557236184,TC,stand up and bow,smile and take it,covered her face in embarrassment,put her hands up and reject,smile and reject,smile and take it 306,3155382178,858,640,480,how do the people interact with the ball,2,31553821787,CH,pushed by a man,powered by batteries,kick the ball,pounce up and down,throw ball,kick the ball 307,2984974097,899,500,375,how does the girl ensure her safety while riding on the main road,3,29849740974,CH,steering wheel,hold onto rider,with the leash,stay near the pavement,put feet on ground,stay near the pavement 308,4859057828,647,640,480,what do the three ladies do after posing together,0,48590578283,TN,laugh,move closely to the camera,get off stage,start dancing,stand in a line,laugh 309,4782722858,1234,640,360,what did the lady in brown skirt do after the first time she shaked her body,4,47827228583,TN,carry the cat,get up after a short while,teaching her which note to play,looks surprisingly in the camera,sing to microphone,sing to microphone 310,2604394962,1078,640,480,why did the man turn the head of the toy when it is standing at the edge,3,26043949625,CW,make baby laugh,get the water out,confort the girl,to make it look around,put tray of cookies inside,to make it look around 311,2978295992,1056,640,360,how many ladies are filmed,1,29782959925,DC,six,two,seven,five,four,two 312,4516967897,2036,640,480,why did their hair move in the video,1,45169678979,CW,adjust their hair,windy,shake their head,move hair out of her face,baby pulling,windy 313,10779838974,890,640,1128,how does the girl in green help the girl in white,2,107798389746,CH,woman in black dresses her,hand gestures,support the rake from the back,guide woman with her hand,with her skiing stick,support the rake from the back 314,3388598772,335,640,480,how many people are mainly involved in the video,3,33885987727,DC,four,six,three,two,one,two 315,3469864014,867,320,240,where was the fish sliced,2,34698640147,DL,dining room,restaurant,along its belly,bowl,fish tank,along its belly 316,3060478605,432,320,240,what does the lady hold on her right hand while riding the horse,3,30604786055,TC,paper,stick,hat,rope,bottle,rope 317,4896969617,350,640,480,how did the boy moved down from the play structure,1,48969696170,CH,slides down on the sledge,slides,shake legs,sitting on chair,vehicle pulling him,slides 318,5349766264,1884,640,362,what is the man in green playing beside the piano,1,53497662645,TC,his cup,guitar,piano,drum,violin,guitar 319,3530231811,2697,640,480,how does the man behind the man in black jacket play his instrument,0,35302318110,CH,hit with sticks,blow it,strum the string,press the keys,pat with hands,hit with sticks 320,2717347132,818,640,480,what is the color of the bib,3,27173471322,DO,red,black,grey,light blue,white,light blue 321,4378803532,1310,640,480,why does the child in stripes run towards the man in red,0,43788035320,CW,change to bigger sparkler,does not want to be filmed,to rise cardboard up,finding the other children,move to next base,change to bigger sparkler 322,8225502382,1468,640,360,how does the man in dark green lift the bicycle up in the middle of the video,1,82255023823,CH,training wheels,bend down to pick it up,pushing it,show him the watch,pushing bicycle,bend down to pick it up 323,6516459343,2697,640,360,why did the man in green point his hand at the man in white while he is talking,0,65164593432,CW,seek his help,express agreement to what was said,smiling,showing him the view,deliver message better,seek his help 324,3804148568,2697,640,480,what is the relationship between the man in specs and the two wearing masks,3,38041485680,DO,team members,fix the bunker,teacher student,friends,poster,friends 325,2932897373,558,500,375,why is a lady in grey sitting on the bench near the fountain at the start,1,29328973730,CW,reading,resting,look after the girl,playing with dog,eat ice cream,resting 326,5323654756,2032,640,480,what did the girl in pink do after she approached the boy in blue,1,53236547566,TN,point below the piano,move balloons towards him,give girl more instructions,shift away from him,touch the baby s chin,move balloons towards him 327,4279106208,559,640,360,why does the lady hold the baby before getting down the slide,3,42791062083,TP,moves the head,swing arms,lay still,adjust his position,fidgeting,adjust his position 328,4036955771,2697,640,480,how many performers are there,1,40369557716,DC,six,seven,eleven,eight,five,seven 329,4251505427,2290,640,480,how did the lady ensure the safety of the child when she is standing on her lap,3,42515054271,CH,holding him,kiss the baby on forehead,wrap it with blanket,hold with her hands,kiss the baby s head,hold with her hands 330,7114553643,1974,640,480,why did the lady in yellow skirt stand in the middle of the stage,4,71145536430,CW,watch performance,teaching the class,presenting,part of the dance,performing,performing 331,5333075105,1168,640,480,how is the man moving in the snow,4,53330751057,CH,skiing quickly,with bike,slides,run,crawling,crawling 332,6964124866,515,640,360,why does the child pick up some cards with numbers and letters on them,4,69641248662,CW,pass to adult,posing for photo,playing with dog,bite it,playing with cards,playing with cards 333,5328004991,788,640,480,where are the people hanging out,0,53280049914,DL,kitchen,grass,living area,zoo,classroom,kitchen 334,2835125654,1406,320,240,what do the elephants do as the people were watching in the second half of the video,4,28351256542,TC,pushed back,look around,overtake it,smile,hold each other s trunks,hold each other s trunks 335,3557498300,849,640,480,what did the boy in red do after the boy in light blue ran off with the kite at the beginning,4,35574983007,TN,take the bike,lie down on the ground,cover his eyes,waves hand,run,run 336,3145698830,1763,640,480,why did the man reach forward to the boy after he took the book,4,31456988304,CW,for them to put down class,unbutton jacket,wipe his face,reading,read the book for the baby,read the book for the baby 337,6329077812,1835,640,360,what did the lady do after cleaning the baby s mouth,4,63290778129,TN,clean baby s feet,look into the camera,spits out food,take off bib,continue feeding,continue feeding 338,6265968082,1275,640,360,how many people are performing on stage,0,626596808210,DC,four,one,five,three,nine,four 339,5235909148,354,640,360,why is the string attached from one tree to another,4,52359091483,CW,tied to it,to pull the float,windy,only 1 vine,to travel,to travel 340,4882414082,1350,640,480,why is the baby smiling while playing with the noodle at the middle,2,48824140824,CW,pose,someone tickled him,feeling excited,lady gave him a new toy,wanted more sweets,feeling excited 341,4825843801,710,320,240,where are the penguins hanging out,2,48258438012,DL,cage,floor,zoo,kitchen,pond,zoo 342,4263096481,637,320,240,how did the man move his arms,0,42630964814,CH,along the fish,wave,fold his arms,touch his face,adjust his clothes,along the fish 343,6592821115,1800,640,424,what did the woman in grey do after she clapped her hand,4,65928211156,TN,smile and hug,put the cup on her mouth,open her arms wide,raises her hands,carry the baby,carry the baby 344,5996148663,498,640,362,what did the lady do after trying to collect the water with her hands,3,59961486638,TN,close the water bottle,give towel to the lady,gesture and move a bit,brought it to herself,walk away and play,brought it to herself 345,7536230796,1773,640,1138,what does the baby do after watching the tv for a while,1,75362307968,TN,jump down,gets distracted,excited,clap,moves the baby,gets distracted 346,5679866364,750,640,480,what is the man in yellow carrying while looking at the group,0,56798663642,TC,bag,sticks,camera,baby,bottle,bag 347,11541421563,2403,640,360,how many people are involved in reading the score,4,1154142156310,DC,six,four,eight,seven,two,two 348,4518113460,1867,640,480,where are the people hanging out,3,45181134605,DL,classroom,bus,kitchen,living room,snow mountain,living room 349,2552130183,2697,480,360,where are the people hanging out,3,25521301836,DL,hospital room,beach,forest trail,home,living room,home 350,5433090067,607,480,640,what did the girl do at the end of the video,0,54330900672,TC,run to camera,happy,jamming,talk to men,show screen to camera,run to camera 351,2735019707,583,640,480,where are the people hanging out,0,273501970710,DL,indoors,grass,swimming pool,lake,kitchen,indoors 352,4770216656,960,640,480,how did the man help the boy,1,47702166562,CH,take his bags,push swing,clean his face,take food for him,lifted his shoes,push swing 353,3972259774,1063,640,480,what did the lady in red do when the man in yellow first brought out the box,4,39722597746,TC,move body,take lollipop out,drags the box out,look at the lady in white,point to the lady in black,point to the lady in black 354,4151403382,1875,640,480,why did the boy with the brown bib squat down half way,2,41514033820,CW,blow the boat,support boy,play the piano,point to the envelop,to balance himself,play the piano 355,4219909195,1003,640,480,what did the man gestured to the girl near the start of the video,0,42199091950,TC,three fingers,a fist,his palm,up hands in air,one finger,three fingers 356,5297811305,720,640,360,why does the woman help the baby initally,0,52978113053,CW,baby fell down,assist the girl in swimming,to balance the baby,see his reaction,feed baby,baby fell down 357,4333544549,1065,640,360,why did the man in blue take out a phone in the middle of the video,2,43335445495,CW,to take the picture,to take a high angled video,to answer call,looking for directions,to send message,to answer call 358,13919236672,3924,640,360,what does the girl do after approaching the red box in the middle,1,139192366729,TN,look down at baby,drags the box out,put glass cups away,walk away,put in her mouth,drags the box out 359,4179163342,2172,640,480,what did the tallest girl do after the man pointed at her,2,417916334212,TN,walk,dance,jump up and down,take the food,take a few steps,jump up and down 360,5237219621,2680,640,360,what did the woman in black near the tv do after the woman in pink spoke at the middle,0,52372196215,TN,give thumbs up,walk to boy in white,claps,dance,climb up,give thumbs up 361,7988210561,320,640,384,what was the baby looking at at the beginning of the video,4,79882105610,DO,birthday celebration,bite toy,computer screen,siblings,stuff toy,stuff toy 362,4485707628,1933,352,288,how does the black dog position himself at the end,3,44857076288,DO,wear collars,using hands,keep getting up,sit on the ground,lie on the grassland,sit on the ground 363,4378803532,1310,640,480,what did the man do after the boy in stripped asked for an exchange of sparkles,4,43788035327,TN,cover the cup,read the book for the baby,toy glasses drop,looked at his right,exchange the sparkles,exchange the sparkles 364,11587211476,1470,640,360,why are there people standing and sitting around at the boundaries of the course,4,115872114764,CW,watching a show,enjoy the scene,watch the music show,spectators,witness and support,witness and support 365,9917882506,974,512,288,what activity is being carried out,3,99178825064,TC,swimming,presentation,playing music,cycling,softball,cycling 366,6201488511,2575,640,360,why did the lady in white touch her face,4,62014885110,CW,adjust her hair,pose for photo,play with her hair,clean her mouth,wipe off sweat,wipe off sweat 367,5875242364,427,640,384,how did the dog get out of the inflatable pool,1,58752423647,CH,takes support on the pool,jump out of pool,man carries it out,boy carries it out,shake body,jump out of pool 368,11587211476,1470,640,360,why did the man releash the dog s leash,1,115872114763,CW,bathing the dog,allow it to run free,changing a new leash,take a photo,too tight for the dog,allow it to run free 369,5658916668,660,640,1138,how did the man sliding down slope make sure that he keeps his balance,2,56589166681,CH,hold the poles,paddle,squat low,stop halfway while cycling,wear helmet,squat low 370,2596300565,2415,500,375,why is the kid pushing the pram,0,25963005650,CW,facilitate balance for walking,support itself,move the water,singing song together,want to pick up it,facilitate balance for walking 371,2495861393,1499,500,283,what is the relationship between the lady and the children,1,24958613934,DO,caregiver,teacher student,friends,trainer and trainee,mother and children,teacher student 372,8557532213,379,640,360,why does the boy in yellow passes the ball to the boy in blue,4,85575322131,CW,lost balance,want to throw the ball,ball fell of his hands,position ball,to kick,to kick 373,9565310990,1066,640,360,why did the baby fall on his front halfway through the video,4,95653109901,CW,pick up slippers,picks up the car,weak grip,to climb down the stairs,lose balance,lose balance 374,6443512089,2437,640,360,how does the toy help the child move,2,64435120893,CH,press the buttons,ropes to pull,handles for support,supported by adult,walking with toy car,handles for support 375,2868183184,1551,500,375,why is the man assisting the girl,2,28681831841,CW,guide her cycling,guide her swimming,guide her cooking,teaching her how to refill the water,guide her in watering plants,guide her cooking 376,2835125654,1406,320,240,what does the man do with his left leg as he watches the elephant at the start,1,28351256546,TC,moves away,put on fence,flap around,talk to camera,blows the whistle,put on fence 377,2573424030,1470,320,240,how many people in total are there in the video,4,25734240307,DC,six,one,two,five,seven,seven 378,4336654741,2697,640,480,where is this happening,1,43366547419,DL,skate park,living room,beach,office,garden,living room 379,10042935613,1710,640,360,what does the shirtless man do after walking into the counter,0,1004293561310,TN,picks the plate and move forward,bend down and listen,put down the bottle,sit down,on the floor,picks the plate and move forward 380,5662041273,2697,640,480,why is the boy holding a remote control,3,56620412735,CW,watching television,controlling toy car,turning on air conditioner,flying helicopter,turning on fan,flying helicopter 381,11244289523,552,640,360,what is the relationship between the lady in black and the baby,1,112442895239,DO,mother and child,parent offspring,colleagues,teacher,supervisor,parent offspring 382,4838113006,2697,640,360,what does the lady do after picking a bell from table b and place something underneath it,0,48381130068,TN,touch another bell,pretend to feed toy dog,walk to show camera,drag it towards her,talk,touch another bell 383,4671452046,1306,640,480,what did the baby do with the spoon that he was holding,2,46714520461,DO,presents,blue and purple,stir the cup,orange,the girl,stir the cup 384,2833209794,331,640,480,how do people in this video go up floor,4,28332097941,CH,climbs ladder,running on stairs,fly,hope the rope,take escalator,take escalator 385,4603484665,1045,640,480,why are the two dogs interacting in this manner,2,46034846651,CW,fighting,show affection to adult,playing,wants to climb onto person,carried by man,playing 386,2990321092,633,640,480,why do the men duck their heads below the food,0,29903210925,CW,easy to get the food,spread ketchup,busy playing with baby,talking loudly,he dislikes food near to him,easy to get the food 387,10127533784,600,640,360,why do the people wear protective helmets,0,101275337840,CW,fencing,skiing,cycling,domesticated,climbing rocky mountains,fencing 388,5533380417,403,640,362,how did the man get the baby to sleep,2,55333804171,CH,jump up,rides the baby in his hands,rock baby,turn off the light,play music,rock baby 389,7571121368,1690,640,360,what did the child do after walking to the middle of the intersection of the bridge,2,75711213686,TN,follow baby,falls down,jump over,turn the corner,lift baby away,jump over 390,7531285946,1170,640,360,why is there a ladder in the middle of the land,3,75312859469,CW,for child to play in,supervising boy,tree trimming,cross over fence,to play,cross over fence 391,3388598772,335,640,480,what does the man in blue and the woman in black do after finishing kissing,2,33885987725,TN,bend down,smile shyly,take drink,wave,look at camera,take drink 392,2920952624,825,352,288,why does the taller woman look up and kiss at the camera in the middle of the video,2,29209526244,CW,greeting,meet characters,playing,avoid hitting plant,gesturing to boy,playing 393,3477387686,2034,640,480,how did the girl show affection to the dog in the beginning of the video,1,34773876865,CH,punched the dog,caressing for dog,put toy into doll s mouth,throws him up and down,kicks the dog,caressing for dog 394,8177965766,705,640,360,what did the man on the stage do before sitting,1,81779657661,TP,throw a piece of paper,stand and sway,shorten the rope,applaud them,pick up something,stand and sway 395,8224492254,972,640,480,why did the baby put the adult s hand in his mouth,4,82244922545,CW,lick lady s hand,bite her hand,expressing his hunger,kis sher hand,teething,teething 396,3655906094,563,640,480,why is the man with the drum squinting his eyes,1,36559060947,CW,it is itchy,sunrays,play the drum,looking for something,signal lady to sing,sunrays 397,8177965766,705,640,360,what activity is happening,4,81779657664,TC,board meeting,playing charades,wedding,focus group discussion,singing performance,singing performance 398,6806999702,2697,640,360,where is this video taken,0,68069997026,DL,field,park,room,by a lake,speech event,field 399,5017166671,2697,640,480,how many pople are on stage,4,50171666713,DC,nine,six,three,two,four,four 400,5349766264,1884,640,362,what are the people doing in the video,3,53497662646,TC,skateboarding,dancing,dinner,make music,football,make music 401,4516967897,2036,640,480,how many ladies are there,1,45169678978,DC,three,two,seven,one,six,two 402,8225502382,1468,640,360,how many times does the man in dark green attempt to go up the slope,2,82255023829,DC,one,eight,five,three,twelve,five 403,8224504302,1290,640,480,how do the men speak into the microphone on stage,3,82245043025,CH,show slides,hold microphone in hands,microphones on collar,take turns,sway his body,take turns 404,4132599924,781,640,480,why did the eyes of the man hardly leaving the computer and the panel,0,41325999240,CW,focus on adjusting the music,looking at script,dancing with her,shooting show,recording the people performing,focus on adjusting the music 405,8604794910,405,640,360,why are there a lot of tennis balls at the back of the court,1,86047949105,CW,entertain baby,children didnt manage to catch,to play the song,for playing,for fun,children didnt manage to catch 406,2552130183,2697,480,360,what does the baby do after the lady lays it down on the ground near the end,1,255213018310,TN,throws the pink toy,crawls,plays with the baby,roll onto her stomach,approach baby,crawls 407,2679328607,1047,320,240,why does the man in red place the children on his lap,2,26793286070,CW,playing with them,colour with them,read them books,listening music together,pat them to sleep,read them books 408,5056964274,924,640,480,why did the boy move hands closer to mouth,4,50569642747,CW,to wipe his mouth,suck his thumb,spit out food,cover his mouth,to eat,to eat 409,5116088152,1205,640,360,why did the baby let go of the banana at the end,2,51160881524,CW,to give the kids,feed monkey,does not hold well,girl snatch it away,someone asked him to do,does not hold well 410,7088595057,1052,640,480,what happened to the black sheep after it tried to get up from the floor,1,70885950579,TN,sniff slippers,fell back,get up slightly,look at dog,plays with the brown dog,fell back 411,7728559968,1480,640,360,why do the kittens attempt to bite each other,2,77285599683,CW,change playing position,ticklish,to win the other cat,play fighting,fight with dog,to win the other cat 412,5173770364,2388,640,360,what does the adult do as the baby plays with the adult s leg,4,51737703642,TC,comfortable,walk behind,playing toys,sitting,lie down,lie down 413,3345608051,2250,640,480,why is there a man walking near the fighting field in the middle of the video,4,33456080518,CW,wants to join in the fight,want to jump into the pool,pushed by sumo wrestlers,chased by some dogs,capturing the moment,capturing the moment 414,3429509208,374,640,480,how did the boy move himself nearer to the camera,2,34295092087,CH,crawl on floor,with baby walker,push the vacuum cleaner,legs,talk and touch,push the vacuum cleaner 415,6031805098,1368,640,360,why are the people looking at the ground,4,60318050984,CW,brisk walking at the beach,rehearsing script,cycling,performing,look at beetle,look at beetle 416,5902452647,812,640,480,what does the girl do after the boy walks a few steps towards her in the middle,2,59024526474,TN,put envelop on table,pass boy kite handle,walks backwards,walk to the sofa,kiss girl,walks backwards 417,4603484665,1045,640,480,how did the brown dog react after being ignored by the pair of dogs playing,2,46034846657,TN,dig snow,jumps down,walk away,smile and wants to pet it,played along with him,walk away 418,5658916668,660,640,1138,how many people were filmed sliding down,1,56589166689,DC,four,one,seven,two,six,one 419,3477387686,2034,640,480,how did the girl show affection to the dog at the end of the video,1,34773876866,CH,make a sad face,kiss dog,caress its neck,turns it round and round,rubs the dog,kiss dog 420,11244289523,552,640,360,what is the occasion in the video,2,1124428952310,DO,wedding,cosplay,birthday,colleagues,computer screen,birthday 421,4336654741,2697,640,480,why does the baby look towards the camera in between,3,43366547411,CW,playing with baby,curious about something,to give the cameraman sand,playing around,to open the video game,playing around 422,10042935613,1710,640,360,why does the shirtless man walk in near the middle of the video,4,100429356133,CW,to bring the food,explain something,gesturing,ice cream dropped on himself,to eat the food,to eat the food 423,4024008346,588,640,360,how did the person react after the child pushes the blue ballon away at the beginning,2,40240083460,TN,chase the girl,continue playing with toy,kick the blue balloon towards the child,put it in cylinder,change hands to hold,kick the blue balloon towards the child 424,3452354871,511,640,360,why did the man lift up his sole after the bird gotten off his foot,1,34523548711,CW,to swing the baby high,see what is underneath,cleaning itself,caressing for dog,push baby faster,see what is underneath 425,8495272210,630,640,360,why is the lady smiling,1,84952722106,CW,to get the baby s attention,enjoy skiing,fun activity,playing with another boy,dancing,enjoy skiing 426,8208035645,428,640,360,what happened to the boy when he cycled upslope at the end,1,82080356454,TC,man stopped his bicycle,comes down,fall off the bicycle,continue playing with the rod,sitting still,comes down 427,2973331780,1015,640,480,what is the possible relationship between the lady in black and the lady with blonde hair,1,29733317809,DO,train trainee,friends,teacher student,mother and daughter,colleagues,friends 428,2679328607,1047,320,240,why does the man in red hold a book in his hand,3,26793286072,CW,wanted to do colouring with the kids,read his lines,show the children a picture of a dog,read the book,guide the students,read the book 429,8177965766,705,640,360,what did the woman do to the microphone after awhile,3,81779657660,TN,walk away,smiles,she talks to the other people,switch to the other hand,talks,switch to the other hand 430,9735768590,680,640,360,what does the woman do after tucking out her tongue,2,97357685905,TN,hands over the remote,pick up shoe,brush her hands across the baby s tummy,look to her left,put down her club,brush her hands across the baby s tummy 431,13515224395,1216,640,360,how does the lady show her affection towards the dog,1,135152243951,CH,hand,caress the dog,rolling around,pet its head,by licking,caress the dog 432,6642268693,1143,640,480,how did the dog reach for the owner s hands,3,66422686935,CH,touch the baby,with their teeth,jump on chair,lift up its head,jump on table,lift up its head 433,4740074365,584,640,360,where is this video taken,2,47400743659,DL,classroom,forest,wedding hall,park,living room,wedding hall 434,8224504302,1290,640,480,where are the men delivering their speech,0,82245043029,DL,stage,outdoors,on water,living room,roadside,stage 435,4164771889,503,640,480,what does the boy being buried do after putting his head down the last time,4,41647718893,TN,run after cat,look towards the right,talk to camera,roll in the snow,move legs,move legs 436,3655906094,563,640,480,where is this video taken,4,36559060946,DL,train,roadside,dinning table,lake,outdoor,outdoor 437,6617533993,1384,640,1138,how does the boy move himself forward in the middle of the video towards the girl and toy,3,66175339934,CH,left to right,hold boy s arms,paddle forward,use legs to slide forward,jump forward,use legs to slide forward 438,3026084730,2205,640,480,how did the man on the right do with his script at the end,3,30260847302,CH,throw,press buttons,give to speaker,put under arm,put on table,put under arm 439,8740703217,602,640,360,why does the girl keep looking down while waving her arm,4,87407032176,CW,rowing boat,refer to script,moving baby s hands,at the balcony,looking at the food,looking at the food 440,8024853715,486,640,360,why does the child in blue knock the sand of the child in the multicolored dress s hands,4,80248537151,CW,playing with the dog,enjoying the view,imitate the boy,she likes sand,she is playing with her,she is playing with her 441,8557532213,379,640,360,how did the boy in blue interact with the ball in the middle of the video,4,85575322137,CH,toss left and right,throw it,look around ball,kiss,kicked ball,kicked ball 442,6806999702,2697,640,360,what did the girl do after the dog took the ball away,1,68069997028,TN,pick up the ball,chase after dog,shift her feet,dress the puppy,dip it in pool,chase after dog 443,3359075894,414,640,480,what activity is being carried out,4,33590758944,TC,conference call,dancing,giving speech,playing balloon,baseball,baseball 444,10127533784,600,640,360,why does the man standing in the background raise his hand at the end,0,101275337846,CW,he is happy,lure the dog to jump,need to play the drum,direct attention,cut hair,he is happy 445,3897746373,399,640,480,how did the girl in pink moved herself towards the plank,0,38977463739,CH,swim,hold the attached string,crawls towards it,watching her,use a microphone,swim 446,6793786769,1158,640,360,where is the video taken,3,67937867699,DL,backyard,swimming pool,track,in house,along the streets,in house 447,3026084730,2205,640,480,why did the man in the middle point upwards and moved his hands in the middle of the video,4,30260847306,CW,play with toy,writing on book,practice boxing,gesture towards camera,hand gesture while talking,hand gesture while talking 448,4896969617,350,640,480,why did the boy turned over to be on his stomach in the middle of the video,4,48969696179,CW,train is coming,to sit down,look at something,resting on the yellow object,to get down on slide,to get down on slide 449,7453733046,992,640,360,how do the girls play with the water hole at the beginning of the video,4,74537330464,CH,swings in the air,bounces it up and down,sprays water around,rub it against the mud,stand on it,stand on it 450,5134317883,1890,640,360,what does the man in red do after the man in blue finishes cut out a piece on the pumpkin,0,51343178837,TN,take out the piece,stand up,put pieces on board randomly,pick up toy leg,bend over and look,take out the piece 451,7888256388,658,640,480,what did the girl do when the lady was patting the dog at the start,3,78882563884,TC,swing left arm,bring baby up again,turn towards lady,walk across,caress the dog,walk across 452,4626085492,638,640,360,why did the black dog with a vest get down on the floor after playing on the bed,1,46260854921,CW,can not stand,wants to play with toy dropped,fight,go to white dog,reposition to get it moving,wants to play with toy dropped 453,4272084125,732,640,480,how did the lady hold the bottle up to the camera,1,427208412510,CH,hold the opener,both hands,points toward it,put on table,with her left hand,both hands 454,4094488636,810,640,360,how were the dogs held,1,40944886360,CH,pounce on each other,leashes,walking while sniffing the ground,fence up,cages,leashes 455,5945172741,1593,640,480,how did the man show affection to the girl when he held her,1,59451727417,CH,caress her hairs,kiss her,play with baby,lady point towards it,pat her back,kiss her 456,6163877860,2160,640,360,why did the baby remove her socks,2,61638778600,CW,react to him,finished eating,playing with it,wants attention,to see what she took,playing with it 457,4444192938,866,640,360,how many kids are there at the area,4,44441929388,DC,one,four,nine,two,three,three 458,4146348376,1585,640,480,why is the men wearing shades,0,41463483760,CW,hot sun,fashion,sunny whether,goes well with attire,gesturing to emphasize his point,hot sun 459,7330294814,2298,640,360,what does the lady in white do after sitting on the couch at the start,0,73302948147,TN,show baby a soft toy,rolls,play with baby,look down at its body then turn back,cross legs,show baby a soft toy 460,3402648543,516,320,240,what does the big dog do after the small dogs suck it for a while,4,34026485436,TN,bite the bigger dog,takes the ball,walk to the man,move towards big dog,move away,move away 461,2679328607,1047,320,240,what does the girl do after every time the boy passes her the toy,4,267932860711,TN,touch her cheek with palm,wipe baby s mouth,turn to her,keep the toy aside,pass back,pass back 462,4882414082,1350,640,480,what is the baby eating,2,48824140829,DO,ice cream,pacifier,noodle,bubbles,fruit,noodle 463,2871995580,2697,500,375,what did the man do after the boy took a stick toy and the ball from the basket of toys,4,28719955806,TN,adjust toy,put ball into hole again,swing his arm,laughing,watch the boy,watch the boy 464,9409566840,1040,640,360,how many dogs are playng biting with each other in the video,1,94095668400,DC,three,two,five,six,four,two 465,2696280239,398,640,480,why was the man not on the bull anymore at the end of the video,0,26962802399,CW,fell down,walk off,climbed down to pick up ball,climbed down to pull the fishing rod,climbed down to stop the child,fell down 466,2793806282,1925,320,240,why does the black dog have a blue vest around it s body,3,27938062821,CW,attack black dog,keep warm,snatched the bone,stay afloat,want to join in,stay afloat 467,4542882771,866,480,640,why does the baby chew on his spoon near the end,4,45428827713,CW,feel type of food it is,dropped the spoon,to make it less messy,no spoon,eating the food,eating the food 468,9612838272,453,640,360,how did the girl first get herself on the slide in the middle,3,96128382723,CH,drag her in a circular motion,carry girl,carry her,jump,crawl up,jump 469,5328616848,446,640,480,what does the woman do while the boy is standing next to her,0,53286168482,TC,cooking,raise her hand,play on screen,playing with toys,sitting on the log,cooking 470,3233088823,462,640,480,why is the bulldozers deployed,1,32330888232,CW,release lantern,to remove something,tree trimming,playing,flashing game,to remove something 471,7416295940,2388,640,384,why did the man scoop some sand and pour into the back of the truck,4,74162959400,CW,busy working,transfer the stone somewhere else,reposition to get it moving,he wants to ride it,play with the baby,play with the baby 472,2830899473,429,640,480,why are the men wearing hats,0,28308994730,CW,sunny,fashion,costume of play,uniform costume,road repairing,sunny 473,4857781123,1101,640,1138,why did the dog move towards the person with the toy,2,48577811232,CW,interested in toy car,to get treats,interested in white toy,get food,show affection to boy,interested in white toy 474,8552680285,442,640,360,why do the people wear thick clothings,4,85526802850,CW,marking to change direction,room is cold,hiking outside,playing snow ball,skiing outdoor,skiing outdoor 475,2925298951,398,640,480,what does the lady in red at the end of the video do as the ladies were posing opposite her,4,29252989519,TC,pass girl something,carry baby up,walk off,laugh,bend over camera,bend over camera 476,5919180502,1379,640,480,why is the lady in blue swimsuit sitting on the ledge of the pool,0,59191805020,CW,soaking her feet,it s sunny,prevent splashing,typing on the laptop,enjoying the scenery,soaking her feet 477,8464056582,1340,640,360,why did the baby try to reach out towards the dog when the dog moved away,2,84640565822,CW,shake hands,play with dog,want to play,follows the cameraman,excited,want to play 478,5427285434,615,640,360,what did the boy do after reaching the kitchen,0,54272854341,TN,dance,turn back to table,look into camera,walk towards the girl,look at him,dance 479,9088819598,670,640,480,how did the baby react when the lady in black and white dress walk past,3,90888195980,TC,get up,drinks water,watch the man,stare,smile at her,stare 480,5766018720,1830,640,426,what did the baby do after she picked up the toy guitar,2,57660187203,TN,look around,waves her hand,look at toy guitar,daydream,sing,look at toy guitar 481,4164771889,503,640,480,what does the boy in blue pants do after falling backwards,0,41647718891,TN,play with sand,go to the lady,lost balance,spread his arms out,stunned for awhile,play with sand 482,3719793245,342,640,480,why did the lady looked to her back at the beginning of the video,2,37197932453,CW,part of her dance routine,point at something,looking at camera,to look at the dog,she was driving,looking at camera 483,6896884547,1440,640,360,how does the baby play with the ball in the middle of the video,0,68968845475,CH,beat it,sit on the lady,reach out using hands,use legs to slide forward,on his stomach,beat it 484,11276567104,989,640,360,where is this procession being held,3,112765671047,DL,on a cruise,desert,forest,church,office,church 485,2697261300,1392,640,480,how is the boy being held,2,26972613004,CH,using one hand,on man s lap,carried by man in grey,put on his lap,talk and touch,carried by man in grey 486,7536230796,1773,640,1138,why did the boy walk over to the table after some time of watching the television,2,75362307962,CW,to get remote control,resting,to play toy bus,pick up fruits,curious about dog,to play toy bus 487,3105728894,1512,640,480,what does the man in colorful clothing do after reaching the stage,1,31057288947,TN,sway along with music,throw a piece of paper,playing the guitar,pink,performing a song,throw a piece of paper 488,8557532213,379,640,360,what did the boy in yellow do before he passed the ball to the boy in blue,4,85575322134,TP,chase up the ball,pick something up from ground,look to the left,look at camera,kick it up,kick it up 489,8241491518,891,640,480,why is the man chopping the leaves with a huge knife,2,82414915181,CW,keeping it away,create an image,clear path to walk,finish eating,protect their hands,clear path to walk 490,11566980553,1721,640,480,how did the boy respond when the lady put the present aside,0,115669805538,TC,looked at the camera,clap her hands,flip the pages,smile,no response,looked at the camera 491,4636208292,2580,640,480,why do the people raise their glasses near the end,0,46362082923,CW,gesture while drinking,protect their eyes from the sun,watching man skip,to bid farewell to camera,watching fireworks,gesture while drinking 492,4984417707,441,640,360,why was there a man sitting on top of the elephant at the goal,4,49844177071,CW,cleaning the elephant,posing for the camera,enjoy the view,to get across the river,guide the elephant,guide the elephant 493,11565498775,1216,640,360,what does the boy do after moving closer to the man,1,115654987758,TN,grab the back of his chair,hold s the rod,cooking,happy,eat food,hold s the rod 494,6582763207,696,640,360,what did the girl do after she stopped hitting the board in front of her,0,65827632075,TN,look at the lady in red,continue cycling,walk toward the red chair,point at the music script,touch her own face,look at the lady in red 495,6297019062,1746,640,360,why did the baby on pink seat bend down near the end of the video,1,62970190623,CW,support him sit,looking at ground,looking at the doll,blows the candles,sleepy,looking at ground 496,4798585428,2697,640,480,why did the man in red move the camera towards his mouth before giving it to the other man,0,47985854281,CW,blow dust off lenses,gesture to tune,he picked up something they dropped,dropped item,heavy,blow dust off lenses 497,8224504302,1290,640,480,how did the men bring their message across on stage,4,82245043024,CH,use visuals to illustrate,pressing buttons,sitting at audience seats,push the man in black,hand gestures,hand gestures 498,5607805258,718,640,1138,why is the dog having collar around his neck,3,56078052581,CW,looking for food,to keep him close,air from the tube,for identification,owner put it on,for identification 499,2712662377,1048,640,480,what are the turtles doing,3,27126623772,TC,playing with orange toy,cap,happy,eating,looking somewhere,eating 500,4626085492,638,640,360,what is the dog doing as it sat on the sofa at the beginning of the video,1,46260854929,TC,sniffing the sofa,licking the leg,go under sofa,play with phone,look at the grass,licking the leg 501,3530231811,2697,640,480,where are the people in the video performing,4,35302318119,DL,staircase,airport,event hall,living room,concert stage,concert stage 502,5047408177,648,320,240,why does the girl pick up clothes from the basket,2,50474081770,CW,dirty,leading them,to pass lady,asking girl to do the action,playing,to pass lady 503,7961460440,360,640,480,why is the man holding the ropes,4,79614604406,CW,get across the river,play on the swing,expedition,the wind is too strong,coming down cliff,coming down cliff 504,8552680285,442,640,360,how does the person sitting down position higher hands,4,85526802859,DO,move wrists,right angle to his body,push chair behind,light on the speaker,on the handle,on the handle 505,8277866423,829,640,360,what did the black dog do when seeing the brown dog bark continuously,4,82778664233,TC,walk faster,sits down,bite grey dog,roll around,barked back,barked back 506,2925298951,398,640,480,how do the women pose for the camera with their hands,1,29252989511,CH,to touch the camera,put in front,crawl,hug the man,hand gestures,put in front 507,6244382586,619,640,360,how did the chldren wear helmet,2,62443825860,CH,fencing,skateboarding,riding horses,cycling,boxing,riding horses 508,4367056464,1162,640,360,why did the girl look down at her foot in the middle of the dance before dancing again,2,43670564643,CW,to see the moves,give rhythm and beat,distracted by something,ready to run,playing,distracted by something 509,6233408665,2246,640,360,where is this video taken,4,62334086657,DL,kitchen,outdoors,playground,field,indoors,indoors 510,6592821115,1800,640,424,what did the adult with a ring do when the baby in polkadot it approaching her,0,659282111511,TC,reach hand out,hit baby,pass toy to baby,push baby,cover baby with towel,reach hand out 511,4968805923,313,640,480,how did the man in white hit the balloon,1,49688059235,CH,move his hand,swinging his bat,tap the side of the tub,kick it,pulling the side and playing keyboard,swinging his bat 512,4774302357,450,640,480,how are the men in the video positioned,4,47743023577,TC,sliding down a slope,sleeping,standing,playing an instrument,sitting,sitting 513,3763643225,1073,640,480,how does the boy try to place the giraffe,0,37636432258,CH,put it on the floor,put it on a chair,run with the rope,ride it,pass to woman,put it on the floor 514,4006608424,2697,640,480,how did the boy react after the man fell off the swing,1,40066084242,TN,raise his hand,lie on man s stomach,smell the toy,man pulls him forward,hold the swing,lie on man s stomach 515,3402648543,516,320,240,what do the small dogs do after the big dog runs away at the end,2,34026485439,TN,watch,ran after it,run after the big dog,scare him,run back,run after the big dog 516,14012319794,3010,640,360,why did the girl run out of the room in the middle of the video,1,140123197949,CW,run to man,play around,catch up with girl in front,take her doll,tired of bouncing,play around 517,3107742409,1604,500,280,why does the child hold the man s hands,2,31077424091,CW,help him walking,carrying her,stay standing,play with him,so the man can wipe,stay standing 518,7331927796,519,352,288,how does the boy react after the dogs start approaching him,0,73319277968,TN,moves away,continue walking,shake its body,keep peeking at dog,jump onto his leg,moves away 519,14003541505,507,640,360,why does the girl in pink lift the baby up,0,140035415055,CW,help baby go into crawling position,help baby reach for the ladder,change the baby's outfit,change his diapers,avoid the mud puddle,help baby go into crawling position 520,2716277960,402,500,375,where is this place,2,27162779607,DL,in a building,playground,forest,a hut,grassland,forest 521,2679328607,1047,320,240,where are the people hanging out,4,26793286079,DL,water fountain,classroom,car,forest trail,house,house 522,5801184682,1683,640,480,what does the human do after carrying up the cat,3,58011846820,TN,turns over,move away,push it,place cat on carpet,caress cst,place cat on carpet 523,9217939684,1660,512,288,why is the floor covered with mats,2,92179396843,CW,playing with toy,the toddler was controlling it,protect baby when falling,baby dropped them,performance,protect baby when falling 524,7887764754,1063,640,480,what did the baby do to the dog,0,78877647540,DO,feed it,let it jump,dice toy,kiss its head,playing fetch,feed it 525,5173770364,2388,640,360,what does the baby do after removing her face from the adult s leg the second time,2,51737703641,TN,shake its body,dancing,put both hands on it,jumps,touch the toy,put both hands on it 526,6582763207,696,640,360,where did the lady with microphone put her right hand as she sang,1,65827632077,TC,pocket,hip,point at table,play guitar,back,hip 527,5940941487,838,640,362,what is the boy in green doing,4,59409414870,TC,construct toy structure,wrestling,running round,bowling,dancing,dancing 528,5349766264,1884,640,362,what did the lady do after the man in black checkered shirt looked at her and did some hand gesture,0,53497662649,TN,makes noise with a spoon,bite her lips,rubbing her head,smile,looking into temple,makes noise with a spoon 529,7331927796,519,352,288,why does the brown dog fall down after the white dog approaches it,1,73319277963,CW,boy push dog,white dog pushes the brown dog,white dog swing his tail,to get the green toy,brown dog ran and tripped,white dog pushes the brown dog 530,7691172922,1454,640,480,how did the lady reward the dog for coming to her,1,76911729221,TC,touch lady s head,plays with her,hold the dog down,move trolley backwards,try to lick her face,plays with her 531,2920952624,825,352,288,what does the shorter woman do after putting her left hand into a bag,1,29209526247,TN,pick up bag,throw ingredients into pot,happy,look around,talk to the girl,throw ingredients into pot 532,8254300526,1104,640,1138,why did the adult move his finger up the air near the start,3,82543005263,CW,gesturing while talking,emphasise his point,give the girl more space,pick up toy,film himself to give commentary,pick up toy 533,11670386946,998,640,360,what is the purpose of the piece of paper that the man with brown hat is holding on to,0,116703869460,DO,provide information on displays,tripod,cup,wooden stick,driver,provide information on displays 534,2782658657,787,640,360,why did the girl in pink slow down as she got closer to the stairs,4,27826586576,CW,to hug the cat,afraid dropping,wait for boy,dancing,did not want to climb,did not want to climb 535,2834146886,1881,496,370,why did the black dog walk away from the white dog at the start,0,28341468860,CW,afraid of it,escape from black dog,observe it,leave away from the black dog,excited,afraid of it 536,5635265624,584,480,640,what did the baby do as soon as he got the white puzzle from the woman,2,56352656249,TC,turn back to window,place it on the top,return it back,tap the toy a few times,put into box,return it back 537,8177965766,705,640,360,what does the man on stage do while the lady sings,1,81779657663,TC,confident,sit on sofa and listen,happy,they are happy,observe,sit on sofa and listen 538,2696280239,398,640,480,why is the man sitting on the bull,0,26962802390,CW,bull riding,travelling to destinations,take picture with bull,participating a competition,feeding the bull,bull riding 539,7571121368,1690,640,360,what did the lady in pink do after the child walked to the middle of the bridge,2,75711213688,TN,for children to play,pass girl something,waited for child,nervous,stop rowing,waited for child 540,5875535585,2291,640,360,what does the man singing do with the microphone stand at the start while singing,1,58755355850,TC,put it aside,hold microphone stand,kick the stand away,sway along with music,shake his body vigorously,hold microphone stand 541,4123915842,750,640,480,why did the lady in black stretch her arm out to the lady in green when she was tidying the girl s hair,1,41239158425,CW,pass her water,pass the lady a pin,pass her spray can,finished tying,pass her beanie,pass the lady a pin 542,7059877301,918,640,480,what did the brown dog do after it came near the light brown dog,0,70598773012,TN,smell its head,chasing the brown dog,chase,look at that direction,lick brown dog s ear,smell its head 543,5902452647,812,640,480,why did the woman kneel on the grass patch at the end of the video,1,59024526472,CW,to read the cards,take picture,adjuct the baby s position,kiss the baby girl,indicating to the camera man,take picture 544,3402648543,516,320,240,what are the small dogs doing when the big dog is standing still,1,34026485431,TC,look up,suck,running around box,bite toy bone,move head closer,suck 545,6018490041,825,640,480,why did the man in white shirt bend down and look at the cans,2,60184900410,CW,demonstrate how to jump,pick up the cans,to hit the cans down,want to drink,ready to kick cans,to hit the cans down 546,12392885583,929,640,480,how many babies are in the video,1,123928855832,DC,three,one,four,two,kitchen,one 547,5017166671,2697,640,480,why are men all sitting down,0,50171666716,CW,music performance,in classroom,they are judges,in library,eating,music performance 548,11681746823,608,640,360,how does the lady entertain the baby,4,116817468236,CH,hug the baby,gently,shake baby with leg,hold the attached string,shakes her head,shakes her head 549,8457210773,1976,640,480,what did the black dog do before it stood up at the end,2,84572107737,TP,mount the black dog,chase the dog,push dog,gesture to dog,look at him,push dog 550,3524939594,436,320,240,how does the man in black sitting on the cart prevent himself from falling off,4,35249395947,CH,stick his legs out,sitting on chair,lie down on cart,lean backwards,hold onto handles,hold onto handles 551,4740074365,584,640,360,why do the two people look at each other,4,47400743651,CW,fishing,want to fight each other,adjusting each others clothes,same team,dancing,dancing 552,3456030972,755,640,480,why are the other children all looking down at their abacus and worksheets at the background of the video,2,34560309722,CW,show the spots that she drew,feed the girl,concentrating,finished playing till that page,to check whats inside,concentrating 553,4846820256,671,640,480,what is the boy pulling,4,48468202566,DO,toy table,the dog s tail,toy car,sand,rope,rope 554,4164771889,503,640,480,how does the boy being buried react to the boy in red scooping sand on his leg,1,41647718897,TC,drops the sand,raised his head to look,grab some sand,try cracking other parts of crab,building a sandcastle,raised his head to look 555,8627074061,2697,640,360,why did the girl raise the kite art piece up at the end of the video,0,86270740618,CW,touch the shapes,show it to camera,compare different kites,throw wrapping,fly the kite,touch the shapes 556,2971556305,1459,640,480,why did the lady in blue point near the beginning,1,29715563055,CW,wanted to get water,point to fridge,signal boy to play,the fridge is unclosed,get the container,point to fridge 557,4189100053,874,640,360,where can this be happening,3,418910005310,DL,grass patch,front porch,club,living room,farm,living room 558,4336654741,2697,640,480,what does the baby do after holding the arm of the lady in the middle,4,43366547416,TN,kiss the baby,wear pants,put on keyboard,push trolley,smile,smile 559,6024684644,519,640,360,why does the man have to stand inside the hole he is digging,0,60246846441,CW,hole deep,fell down,let girl to bury hamster,looking for treasure,preparing something,hole deep 560,9304738817,345,320,240,why does the baby smile in the middle of the video,1,93047388174,CW,girl play with him,happy on the swing,wants to dance,happy on the boat,happy on woman s lap,happy on the swing 561,3249402410,697,640,480,why is the lady in pink standing next to the lady in red,2,32494024104,CW,play with it,filming,waiting for the pan,curious why girl in red go left,waiting to eat,waiting for the pan 562,6300775954,1734,480,800,why does the man stand at the back of the blonde woman,2,63007759541,CW,carry her,to pickup the trash,training and support,talking notes,fix the thing,training and support 563,2442307875,515,640,480,why did the smallest girl at the outer right turn her head to her friends at the end of the video,3,24423078756,CW,call out to the dog,play with the dog,look at the red box,synchronise with them,calling for help,synchronise with them 564,3804148568,2697,640,480,where are the people hanging out,4,38041485688,DL,road,car,bus,outdoor porch,living room,living room 565,4179163342,2172,640,480,why did the shortest girl cover her mouth near the end of the video,1,41791633424,CW,to balance the cycle,shocked,speak louder,finish presentation,yawn,shocked 566,6272786009,535,640,384,why do the boats move relatively far away from each other,4,62727860092,CW,turn around,ensure safty,desert,trying to land,competition,competition 567,3233088823,462,640,480,how did the bulldozer remove the rocks from the bridge,0,32330888236,CH,hitting with the blade,wearing helmets,pull the rope attached to the bridge,with wave,bulldozer,hitting with the blade 568,8811725760,631,640,360,why was the baby smiling at the top of the slide,1,88117257603,CW,person hits toy,pose,to support him,having fun,fell,pose 569,7988210561,320,640,384,where is the toy sitting at,0,79882105616,DL,chair,play area,on the bed,classroom,floor,chair 570,5427285434,615,640,360,what was the person opposite the boy doing as the boy was dancing near the end,2,54272854342,TC,jump down,look at her,dancing too,watching,stand and watch,dancing too 571,9917882506,974,512,288,what does the boy do while the girl was stationary in the middle,0,99178825062,TC,stands still at back,clap his hands,sit still,sit up then lie on her,swing,stands still at back 572,3194558043,691,640,480,why did the man with long sleeve move his body together with the man in front,0,31945580431,CW,follow the rhythm,swaying to the music,controller for dancing game,dance with music,wait for their turn to dance,follow the rhythm 573,4024008346,588,640,360,what does the child do after the man passes him the balloon at the beginning,1,40240083467,TN,try to catch it,move balloon around,smile,play with baby s hands,laugh,move balloon around 574,5328004991,788,640,480,why does the child hold a stirrer,4,53280049910,CW,to hit the bottle,scoop ice cream,to eat the food,feed baby,helping mother to cook something,helping mother to cook something 575,2771402761,1460,640,480,how is the kid staying afloat in the swimming pool,0,27714027610,CH,use float,jump out of pool,hit the water,using a tube,bending his knees,use float 576,4925211209,768,640,360,why is the man on the hydraulic ladder,0,49252112091,CW,tree trimming,to assist him,help support man in green,take out food,connect to boat,tree trimming 577,4770216656,960,640,480,what does the boy hold onto while sitting on the tyre,3,47702166564,TC,smile at the cameraman,attack dog,lift up the tyre,chains holding the swing,wave at the man,chains holding the swing 578,5875535585,2291,640,360,what does the man in black do as he held the mic stand near the middle of the video,3,58755355856,TC,drink from it,observe,happy,bend his knees,no reaction,bend his knees 579,3263908208,300,640,360,why are there so many people on the yachts,3,32639082085,CW,watching dogs play,watching baby play,cutting a birthday cake,enjoying scenery,cleaning presents wrappers,enjoying scenery 580,8740703217,602,640,360,why there are only four pieces of food left on the table,4,87407032175,CW,man kept one,one falls off the table,lady takes away one,boy ate one,girl ate one,girl ate one 581,6356067859,1070,640,480,why is the white shirt woman holding the horse by the mouth,0,63560678590,CW,ensure horse is safe for touching,make horse stop eating,walking the horse,talking to horse,playing with horse,ensure horse is safe for touching 582,7492398760,2697,640,360,where is this happening,0,749239876012,DL,garden,bedroom,outdoors,room,car,garden 583,7149153537,1384,640,360,why did the fair skinned man moved his hand at the end of the video,0,71491535373,CW,gesture hi,gesture to stop,adjust position of baby,take his glove,wants to hold boys hand,gesture hi 584,7605329840,635,640,360,what was the girl in black doing before she stood up near the end,0,76053298407,TP,blowing,walk,happy,remove the toys from box,blue jacket,blowing 585,3345608051,2250,640,480,what are the men doing beside the dogs,3,33456080511,TC,pulling dog away,patting the dog,feeding,encourage dogs to fight,throwing balls,encourage dogs to fight 586,11966080214,1531,640,1138,how does the girl interact with the wheel at the end of the video,4,119660802143,CH,put it behind the door,put it in water,paint the wheels,change its parts,turns it round and round,turns it round and round 587,2829462646,2500,352,240,how does the person in stripes interact with the person holding the camera,1,28294626461,CH,wheels,look across,wave,walk through tunnel,walking,look across 588,3121571439,1212,640,428,how do the man in black and the woman in pink dance,4,31215714390,CH,remove wrapping paper,follow routine,move her fingers,run back and forth,hold each other,hold each other 589,6163877860,2160,640,360,why did the socks disappear from the baby s hands,3,61638778608,CW,lady takes it away,dog bites it,wear on his feet,baby threw them,baby pass to adult,baby threw them 590,6793786769,1158,640,360,what did the boy do when the train moved away in the middle of the video,1,67937867698,TC,stood up,wait for it to come back,kick the tank,chase after it,lift bottle to drink,wait for it to come back 591,2726497009,1575,640,480,why does the second female bike rider stop her bike before reaching the slope,4,27264970092,CW,look after girl,girl not peddling,to clean her hand,help her balance better,scared of falling down,scared of falling down 592,6727904179,962,640,360,why are the two men standing in the dark room looking up and to the screen alternatively,3,67279041790,CW,oversee them,event crew,watching,distracted by people on top,zoom focus,distracted by people on top 593,5296635780,652,640,480,why is the lady holding a bouqet,4,52966357801,CW,poor vision,holding the baby,so that she does not fall,to rest,looks nice,looks nice 594,2957808913,598,640,480,how does the man in black jacket get the music to dance to,0,29578089138,CH,band are playing,microphone,hit with a stick,turn the knobs,drum sticks,band are playing 595,2736413196,1617,352,288,how did the man in orange rest his head,0,27364131960,CH,on his hand,on pillow,holding the handle,on side of sofa,on his laps,on his hand 596,5235909148,354,640,360,how many people are in the video,3,52359091484,DC,three,six,one,four,eight,four 597,4036955771,2697,640,480,what did the girl in red and blue do after walking in front of the performers,0,40369557717,TN,turn back,take video,adjust boy s position,pat her head,flipping the pages,turn back 598,6793786769,1158,640,360,why did the train stopped a while near the end of the video,0,67937867696,CW,blocked by boy s hand,to look at the person filming,no more space to push cart,girl stopped rocking the chair,change direction,blocked by boy s hand 599,2976913210,542,640,480,how did the man manage to get out of the dirt after struggling for some time,0,29769132105,CH,reverse and accelerate forward,rides down on a bike,pulled out by another car,wear gloves,raises his two hands to balance,reverse and accelerate forward 600,3655906094,563,640,480,what is the man in beret doing with his trumpet facing the bushes,1,36559060943,TC,walks away,practicing,beat boxing,push boy,sing into mic,practicing 601,5061117640,1587,568,320,where is this happening,4,506111764010,DL,in the sea,residential area,wooded areas,outdoors,office,office 602,5349766264,1884,640,362,why is the man in chequered shirt waving his hands and moving his shoulders vigorously,2,53497662642,CW,focused,take the food,he is dancing,check what been fixed,make funny expressions,he is dancing 603,2731071928,1959,500,375,why is the child hitting the guitar in the middle of the video,1,27310719286,CW,look at the man,strumming the guitar,get into rhythm,out of excitement,performing,strumming the guitar 604,8428551576,2688,640,360,why does the baby disconnect the speaker from the ipod at the start of the video,4,84285515762,CW,to see the toy,to place ipod on book shelf,to turn on the screen,to throw ipod away,listen directly from ipod,listen directly from ipod 605,5996148663,498,640,362,why does the lady stick her tongue out under the rock after she holds her hands out,3,59961486630,CW,shake off snow,for photograph,playing the game,want to taste the water dripping,sign language,want to taste the water dripping 606,5433090067,607,480,640,how was the girl positioned at the start of the video,1,54330900678,DO,lying in bed,standing,sit on the toy cart,open her arms,sit on mat,standing 607,8208035645,428,640,360,what does the boy do after going downslope at the start,4,82080356452,TN,wave at girl,take kite from man,stop the bicycle,unhappy,cycle towards left,cycle towards left 608,3345608051,2250,640,480,how do the men react when the dogs go near to them,4,33456080515,TC,hold their paws,caress dog,they throw sticks at the dogs,they take out their camera,move away,move away 609,5056964274,924,640,480,what is the baby doing when someone holds a box of drink at the start,2,50569642748,TC,grab the drink,push away hand,insert straw into box,lean forward and touch table,claps and run closer,insert straw into box 610,6754608321,1617,272,480,what color is the baby s clothes,4,67546083210,DO,black and red,yellow and red,yellow,white,green,green 611,4798585428,2697,640,480,why did the man in red hug the woman in black after a while,2,47985854284,CW,indicate her turn to speak,make a toast to celebrate,posing for a candid picture,dance along for fun,wipe off sweat,posing for a candid picture 612,2973331780,1015,640,480,why did the lady in black hold one hands up after singing for a while,0,29733317803,CW,dance move,hold her arms tight,lady in white pulling rope,show her phone,reading from the paper,dance move 613,3026084730,2205,640,480,what did the person with brown tie do as the man in the middle was speaking,1,30260847307,TC,reached for his water,look towards the man speaking,nod their heads,look down at his phone,put a thumb up,look towards the man speaking 614,5996148663,498,640,362,what did the lady do after she tilted her head upwards,0,59961486639,TN,stuck out her tongue,danced,run upstairs,playing tablet,continue walking,stuck out her tongue 615,4984331176,300,640,480,why did the man in white and lady in blue hold each others hands,0,49843311766,CW,skip together,stablisie lady in blue,dancing together,putting on the ring,fighting,skip together 616,5133787349,363,320,240,what did the man in white do after he pushes the man in black on stage,4,51337873491,TN,clap,looking around,playing piano,bleed,hand gesture,hand gesture 617,2990321092,633,640,480,who finished the food first,0,29903210927,TC,the man in white,girl with funny face,man with cap,man in black,the man next to the oven,the man in white 618,3249402410,697,640,480,how did the lady in black on the right spread the chesse around the pizza,0,32494024106,CH,sprinkle,use brush,use spoon,nibble,use her mouth,sprinkle 619,3427674558,870,640,480,what happened at the back of stage when someone walked past the camera,1,34276745586,TC,lights on the stage blink,someone sat down,playing piano,walk back into room,take something,someone sat down 620,4859057828,647,640,480,why did the lady in yellow stretch her arms out at the start,2,48590578280,CW,record for later use,hold baby,pose for picture,want to pet the brown dog,snacks to eat,pose for picture 621,2957808913,598,640,480,how does the man in black jacket move his legs at the start of the video,0,29578089136,CH,bending,kick,standing,swing,kiss man,bending 622,4179163342,2172,640,480,what did the dog do after the girl hugged it in the middle of the video,2,417916334211,TN,plays with him,run,walk off,look at the baby,observe dog,walk off 623,2401167740,390,500,375,what does the man do after he finishes talking,1,24011677407,TN,use microphone,drink the cup,talks to the lady,turn around,raise his hand,drink the cup 624,5256928210,606,640,360,what does the man wear on his head,1,52569282107,TC,scarf,cap,turban,spectacles,scarf,cap 625,7508439506,765,640,480,what is the man doing while the boy plays with the baby,4,75084395068,TC,put into his mouth,football,unwrapping a gift,smile,lying down,lying down 626,7988210561,320,640,384,how did the baby interact with the toy,3,79882105614,CH,swing the toy,carry it aorund,move it in circle,touch toy with her hands,kick it,touch toy with her hands 627,2857132732,726,320,240,where is this place,4,28571327328,DL,farm,theatre,kitchen,house floor,indoors,indoors 628,6097994550,526,640,360,how does the man with spectacles move at the end of the video,3,60979945504,CH,walk,caress his head,count with fingers,crawls,strolls around,crawls 629,7691172922,1454,640,480,how did the dog greet the lady,0,76911729220,CH,walked towards her,lick her hands,jump,with the leash,with the toy,walked towards her 630,6762389913,1371,640,360,why did the two dogs turn to look at the cameraman after the black dog was licking for a while,4,67623899134,CW,play with ball,attracted by it,concentrated on working,rest,distracted,distracted 631,3719793245,342,640,480,how is the girl moving the bumper car,0,37197932452,CH,spinning the wheels,lady push it,children pushed it,running,lift her legs,spinning the wheels 632,7961460440,360,640,480,why is there a rope attached from the rock on the man,4,79614604401,CW,to support when climbing up,competing,playing,bungee jumping,to make man come down,to make man come down 633,6772999108,1467,360,480,where is this video taken,3,67729991085,DL,mountain top,by a lake,stage,living room,studio,living room 634,2584172238,719,320,240,why did the boy in blue crawl up the red item in the middle of the video,1,25841722387,CW,to jump down,to slide down,play with girl,check nobody behind,to drink the soup,to slide down 635,4244817395,1683,640,480,why did the boy walk away after playing with the cups for a while,2,42448173951,CW,to take a paper,to kick ball,to find a box,check on little girl,to fly kite,to find a box 636,4935987905,806,640,360,what is the white dog doing as it hid in the bushes,3,49359879052,TC,walk and look around,sleeping,turned back around,smelling leaves,run to boy,smelling leaves 637,2976913210,542,640,480,how did the man prevent too much friction on his hands when riding the vehicle,3,29769132104,CH,control vehicles with remote sensor,control vehicles with buttons,avoid touching the handles,wear gloves,dip hands in water,wear gloves 638,2885091387,1065,640,480,what does the man in blue do when the car tilts at a sharp angle near the end,0,28850913876,TC,stand up,screw it in,give thumbs up,squat down,driving off,stand up 639,7961460440,360,640,480,what sport is the man doing in the video,1,79614604402,TC,frisbee,coming down,rafting,skateboarding,adjusting carpet,coming down 640,6168295272,446,640,360,why did the lady in blue tapped on the girl in blue,2,61682952729,CW,drink from it,to drag something,show love,protect from sunlight,gesturing to friend,show love 641,4765717907,1180,640,480,why did the ball drop on the floor the first time,1,47657179078,CW,try to make toy work,went through pole,fell,bite it,fall,went through pole 642,5467727317,1230,640,360,why is the elephant moving its legs while in the same spot constantly,1,54677273172,CW,camera taking photos,shifting its weight,resting and eating,fanning itself,pick up the pumpkins,shifting its weight 643,8241491518,891,640,480,where is the man working,3,82414915187,DL,living room,lake,public area,forest,lake side,forest 644,8604794910,405,640,360,why is the boy at the back wandering around in the middle of the video,2,86047949102,CW,to pick up the stone,take off shoes,trying to cat the ball,dancing,playing,trying to cat the ball 645,4822859674,861,640,480,how did the man supported the second boy he held near the end of the video,3,48228596749,CH,kiss,holds the baby with his hands,carried in his arm,hold sides of the body,carried on his back,hold sides of the body 646,4542882771,866,480,640,what does the baby do after eating the food on the spoon at the end,3,45428827717,TN,clap,calmer and happier,moving back and forth,look at camera,playing with spoon,look at camera 647,8107573462,406,640,360,why did the man lift his right feet at the beginning,2,81075734621,CW,to pick up hamster,gesturing,to inititate skiing,acting,dig sand,to inititate skiing 648,4276006683,799,640,480,what does the cat do after pushing the finger of the person at the end,3,42760066838,TN,lick the ears,run towards the camera,leave the bed,ran away,push it,ran away 649,8313365386,318,640,360,why did the girl stretch her arm forward after she flipped the page,1,83133653867,CW,to take the sand from shovel,point toward something,tap on screen,hold girl s hand,to show the boy,point toward something 650,4087654898,330,640,480,why are both of them staring downwards,1,40876548986,CW,get back the falling plant,look at the bucket,eating,stabilize themselves under water,feeding birds,look at the bucket 651,4336654741,2697,640,480,why does the baby hold the lady s hands in between,3,43366547412,CW,lose balance walking,get her to join in,carrying her,playing,to dance with girl,playing 652,8132842161,1105,640,360,where is this video taken,4,81328421617,DL,classroom,living room,in house,outdoors,park,park 653,3321261856,855,640,480,what did the golden cat do after standing at the side of the wall for a while,3,33212618567,TN,walks across,pet cat more,lick mouth,sat down,cleans the toilet bowl,sat down 654,7771650716,1805,640,360,why did the grey dog stop after passing the drawn and stopped moving,2,77716507164,CW,sniff another dog,being pulled,pee,watching dogs playing,normal wiggling,pee 655,11541421563,2403,640,360,what does the man in orange do after the woman in brown looks at him at the start,3,115414215637,TN,perform a fire trick,annoints her,walk same direction as woman,point at book,attentively,point at book 656,8171216955,550,568,320,what did the boy do in the middle of the video,1,81712169558,TC,to move closer,hides below the table,lying on his stomach,crossing the road,playing with toy,hides below the table 657,6443512089,2437,640,360,why does the baby stop for a while near the end of the video,2,64435120897,CW,baby was playing with the toy,attracted towards the chair,to look at the person filming,trip,reading from paper,to look at the person filming 658,5145526755,1675,640,360,why is there a mini vehicle so close to the lioness,2,51455267554,CW,road is narrow,easy for getting the lioness onto the car,to watch and observe their behaviour,to feed them,watching them play with dog,to watch and observe their behaviour 659,6621511673,2697,640,480,what does the baby do after the man points at a specific magnet on the tree,3,66215116735,TN,sit behind her and guide her,moves his hand,move,do action of the magnet,stand up,do action of the magnet 660,5913180144,1191,640,480,why did everyone start to walk towards each other towards the end of the video,0,59131801444,CW,end of performance,gather for phototaking,exchanging gifts,greeting,exchange contact numbers,end of performance 661,5801184682,1683,640,480,why did the cat attack the human s hands after it was put on the floor,4,58011846824,CW,run away from white cat,to check cat is comfortable,defend itself,want to get away,playing,playing 662,8563398032,2040,640,360,how does the man in plain shirt direct the attention towards the pictures on the walls near the end,4,85633980326,CH,use laser pointer,standing in front of projector,put thumbs up,wave,look at wall,look at wall 663,9208803675,582,640,360,how many people are on the swing in the video,3,92088036756,DC,five,one,six,two,eight,two 664,4942054721,645,640,360,why are the goats lowering their heads into the grass,2,49420547210,CW,searching for food,posing for camera,eating,caress the birds,smelling the grass,eating 665,6024684644,519,640,360,why does the man talk while digging the hole,2,60246846443,CW,arguing,making an announcement,bored,talking about each other,giving instructions,bored 666,5702201498,335,640,1138,what is the man hugging while sleeping,1,57022014980,TC,shirt,black pillow,cat,yellow pillow,toys,black pillow 667,5349969207,1193,640,360,what did the black dog do after the two other dogs came into the room,3,53499692075,TN,chase the cat,bark at white dog,lying down,get up slightly,walk away,get up slightly 668,3171006258,1099,640,480,why did the man wear helmet,0,31710062582,CW,skating,safety,protect themselves,working at great height,keep warm,skating 669,5134317883,1890,640,360,how does the man in red react after taking out a pulp near the end,0,51343178839,TN,smiles,keep it on the side,walk to the window,walk away to the gate,attach man on ground to him,smiles 670,3270490566,1515,640,480,why is the man standing in the middle moving his hands,0,32704905662,CW,play the drum,moving with the rhythm,catching a ball,to synchronize,thinking about something,play the drum 671,8312058649,774,640,1138,why does the baby keep kicking his legs up,3,83120586492,CW,happy,can not cycle,crying,to swing chair,playing for fun,to swing chair 672,4087013668,1442,640,474,what did the lady in pink shirt do after the baby threw the peels out,1,40870136685,TN,hold a cross sign,scratch arms,sits down,take a blue mini bucket,touch the baby s arm,scratch arms 673,5008618500,754,640,480,how does the girl take a closer look at the baby in the middle of the video,4,50086185002,CH,carry baby closer,magnifying glass,carry baby with right arm,move right and left,bend down to see,bend down to see 674,6143391925,1206,640,480,what did the baby do after she pointed at the television,1,61433919256,TN,step off pad,lean on the lady,touch baby,touch baby s foot,flail around,lean on the lady 675,4075791856,2250,640,480,what did the lady in front of the microphone do as the man beside her is talking,0,40757918563,TC,moving the papers,nodding,listening,looks at him,smiling,moving the papers 676,3388598772,335,640,480,what is the relationship between the man in blue and the woman in black,4,33885987721,DO,producer and cast,go another side,dance partner,teacher,couple,couple 677,6183104292,593,640,480,how does the tiger prevent the food from moving around in the middle of the video,3,61831042922,CH,shakes it off,put cat on pillow,lying on the floor,use paws to hold,by zoo keeper,use paws to hold 678,3851913128,2235,640,480,what is the relationship between the guy in red and the rest of the people in black,2,38519131283,DO,producer and cast,colleagues,trainer trainee,parent child,fire rods,trainer trainee 679,7416295940,2388,640,384,why is there a hand grab the toy near the middle,0,74162959408,CW,adjust its position,baby is playing with it,covered with blanket,pass to baby,kept in pram,adjust its position 680,4273039295,2214,640,360,why does the baby fall down near the end of the video,3,42730392955,CW,weak grip,dog too strong,pick up toy,trip,check the tent,trip 681,3175315183,2513,640,480,how are the toy shaken and swung,2,31753151831,CH,girl swing them,lady made it,baby hit with hand,man kick toys,lady moves her legs,baby hit with hand 682,4688219212,959,640,480,how did the coach encourage the gymnast boy after the performance,1,46882192121,CH,clap towards him,shake hand with him,to talk to him,hug him,socialize,shake hand with him 683,6239210933,1030,640,480,what does the child look at before drawing on the pink toy,3,62392109331,TP,book,phone,camera,laptop,art works,laptop 684,3897746373,399,640,480,what did the man do before the girl in pink started swimming,1,38977463734,TP,move towards him,push her to swim,stand at the side of the stage,walks away,lies down on the float,push her to swim 685,2973331780,1015,640,480,what did the lady in black do after she reached the lady with blonde hair,2,29733317808,TN,hit her with cushion,point towards the board,sway her body,goes away,hi-five,sway her body 686,4636208292,2580,640,480,how many people are cheering their glasses at the end,2,46362082924,DC,five,three,four,seven,one,four 687,3124551255,1962,640,474,why does not the boy play with the dog,0,31245512550,CW,attracted by the red toy,drinking milk,watching the television,talking to man,dancing,attracted by the red toy 688,2973331780,1015,640,480,why is the lady in black moving around,3,29733317800,CW,look for the boy,interact with the audiences,scarf dropping,dancing,check on food,dancing 689,2461993294,1999,640,480,how do the audiences feel towards the performance,0,246199329411,TC,enjoy performance,feel accomplished,agitated,find the performance boring,find it funny,enjoy performance 690,3078294001,335,640,480,what does the man in black do as the man in white was standing behind him at the start,0,30782940014,TC,posing,pass paper to woman,video the dogs eating,stand on ladder,hold the man s hand,posing 691,3851961428,2062,640,480,how are the people breathing in the video,0,38519614289,CH,oxygen tanks,oxgen masks,nebuliser,inhaler,machines,oxygen tanks 692,8188651630,571,640,480,what does the cat do right at the end after the human s foot rubbed its cheeks and face,2,81886516306,TN,stand still,lick the ears,sniff it,sat down,walks across,sniff it 693,8594309349,459,640,360,what are the people carrying on their back,4,85943093496,DO,their kids,backpacks,performers,cards,oxygen tank,oxygen tank 694,5889898795,2697,640,360,why are the people wearing a helmet,1,58898987950,CW,practice fencing,going down zipline,to look funny,posing for a photo,skating,going down zipline 695,7887764754,1063,640,480,how many people are involved in the video,3,78877647548,DC,four,six,three,one,two,one 696,7536230796,1773,640,1138,why did the boy walk over to the shelf in the beginning of video after playing with the person,1,75362307960,CW,take out book,turn on television,take his blue toy,to take the phone,to take out cards,turn on television 697,8277866423,829,640,360,how does the brown dog show that it is scared of the black dog,0,82778664238,CH,move backwards,sibling,fix the bunker,paw and bark,grab something,move backwards 698,3376544720,2158,352,288,why did the lady in blue capture the scene with her camera when the man is riding the bull,2,33765447205,CW,requested by the man,the man is nearing the finishing line,keep for memory,it was the first time seeing the bull,submit for a video competition,keep for memory 699,2495861393,1499,500,283,what is the activity being carried out,2,24958613936,TC,canoeing,conference call,cooking,sled pulling,boat surfing,cooking 700,3359075894,414,640,480,how does the man in grey interact with the ball thrown at him,2,33590758948,CH,with the stick,move backwards,hit the ball with the bat,use his hands,holds on to it,hit the ball with the bat 701,4983922034,479,640,480,why does the black dog standing towards the right not jump after the middle,1,49839220342,CW,excited,busy digging snow on ground,interested in the toy,play,observe it,busy digging snow on ground 702,5879651428,2697,640,1138,how is the man in white positioned while playing his instrument,2,58796514285,TC,standing beside man in yellow,beside the cage,sitting down,knee on floor,standing on chair,sitting down 703,5913180144,1191,640,480,what happens to the man in grey when the man in blue socks jump onto the man in grey,3,59131801446,TC,dog jumped onto him,he walk away,goes away,carry him,dog barked at him,carry him 704,12392885583,929,640,480,what did the man wearing the grey jacket do before the baby got the pacifier,2,123928855838,TP,carry baby up,turn away,watch,swing her arms,move it closer to the kid,watch 705,3861485381,2686,640,480,what did the other animals do when the first went into the forest,0,38614853817,TC,followed the first,stare around,showing it to the baby,stay still,lie down,followed the first 706,4671452046,1306,640,480,how is the lady in purple supporting the baby,2,46714520460,CH,strap baby to body,put baby on lap,carrying on her chest,put baby in pram,hold baby s hands,carrying on her chest 707,10727696143,1821,640,480,why did the boy run forward at the start,1,107276961434,CW,put ball down,to get the door,chase the boy,simulating a basketball shot,place the giraffe on top,to get the door 708,4444192938,866,640,360,what did the girl in pink do after she touched the boy in red s bag,3,44441929383,TN,come out from behind the curtains,taps water with her foot,bite the doll s legs,put both hands by her side,looked at the ground,put both hands by her side 709,3107742409,1604,500,280,how does the baby react to the man moving forward and backward at the start,2,31077424094,TC,he goes out,lie down,laugh and smile,he throws a tantrum,he starts to cry,laugh and smile 710,4263096481,637,320,240,what did the man do before he cut the fish sideways,2,42630964817,TP,wriggle around,interested,cut fish head,pull it up,moved its body,cut fish head 711,4333544549,1065,640,360,how does the man in white prevent the white and black dog from running away,2,43335445490,CH,fenced up,give food,use collar strap,running behind,put dog in cage,use collar strap 712,2833209794,331,640,480,what are the ladies shown at the other side of the escalator doing,1,28332097942,TC,watch television,going down by escalator,look at the banners,look after the boy,distributes the candies,going down by escalator 713,6516459343,2697,640,360,why did the man in white stand beside the man in green while he is speaking,1,65164593430,CW,pace the reciting,help man in green later,take over his microphone,to pass him book,pass him trophy,help man in green later 714,5433090067,607,480,640,why did the girl walk away from the black chair at the start,4,54330900676,CW,to take her bowl,to take another chair,to chase the dog,to get to another girl on the stool,distracted,distracted 715,5138093706,931,640,480,why did the baby stretched his hand to the right at the end of the video,0,51380937062,CW,wanted hold handle to stand up,move back,he got the pacifier,happy,disturbed,wanted hold handle to stand up 716,2567843468,572,320,240,why is the girl holding a green bowl in her hand,4,25678434683,CW,to pour ingredients out on tray,for baby to play,collect water,pass it to lady,toy,toy 717,3741143820,332,640,480,why did the blonde lady at the back smile,1,37411438207,CW,posing for video,funny,excited about new clothes,show magic trick,she had presents,funny 718,2833209794,331,640,480,why does the man in black turn his head towards wall,2,28332097948,CW,someone called him,to wave at someone,look at picture frames,preparing to throw the ball,look at the light,look at picture frames 719,4420239986,669,640,480,why did the dog come down on the floor after fighting with the cat for a long time,1,44202399860,CW,get more space on the sofa,tired,lost balance,excited,relax,tired 720,3869005094,300,640,480,what are the four people holding,1,38690050945,DO,dog s paws,wooden sword,silver boxes,rope,glasses,wooden sword 721,3477387686,2034,640,480,where did this video take place,0,34773876867,DO,park,roadside,home,at a wedding,camp,park 722,5635265624,584,480,640,where are they sitting in the video,0,56352656241,DL,bench,museum,floor,forest area,bed,bench 723,4367056464,1162,640,360,why are they seated around the table,4,43670564649,CW,conference talk,observing the elderly,watch golf playing,birthday party,dining table,dining table 724,5133787349,363,320,240,why does the man at the side suddenly enter the stage at the end,1,51337873497,CW,to read it,men fell down,practice,giving speech,performing for an event,men fell down 725,4822859674,861,640,480,where is this video taken,4,48228596746,DL,front porch,beach,ball room,park,living room,living room 726,5056964274,924,640,480,what did the boy do after he drink from the green pack,1,50569642745,TN,said something,eats the food,the case on his left,drink more,standing still,eats the food 727,5766018720,1830,640,426,what did the baby do when she first hold on to the toy dog at the beginning of the video,2,57660187202,TC,pushes it,look back at her,kiss the toy dog,climb up chair,stares at camera,kiss the toy dog 728,4626085492,638,640,360,what did the black dog on the sofa do after it dropped the red toy,4,46260854927,TN,jump on man s leg,jump onto couch,push dog away,put it on boy in red,jumps down,jumps down 729,4123915842,750,640,480,what does the lady in green do as the girl is standing in the middle,4,41239158421,TC,smiles and waves,watch the girl,says hi,takes it from girl in green,adjusting the girl s hair,adjusting the girl s hair 730,5521781780,2697,640,480,what activity is being carried out by the group of people,3,55217817807,TC,playing soccer,cooking,snow sledging,site visit,skiing,site visit 731,5064681723,602,640,480,what is the animal behind the fence,4,50646817231,DO,polar bear,panda,squirrel,dogs,deer,deer 732,2705374471,1556,320,240,what does the boy do after tossing up the toy at the start of the video,3,27053744714,TN,move forward,crawled forward towards the man,kicks it,push the toy down,places them back in the toolbox,push the toy down 733,4857781123,1101,640,1138,why did the dog go behind a cabinet,2,48577811234,CW,taking a bath,play together with white dog,shy,sleeping,looking for food,shy 734,5996148663,498,640,362,why does the lady hold her hands together underneath the rock,1,59961486632,CW,dancing pose,collect water,assist the girl in planting,pretend to hit the drum,direct attention,collect water 735,3981865268,1109,640,480,why is the man touching and turning the black box in front of him,1,39818652687,CW,assist the chef,dj,drawing on the ground,have closer look,imitate,dj 736,7453733046,992,640,360,why is the man on the bench looking up,1,745373304610,CW,waiting for his turn,overlooking the children,checking out the drums,resting,waiting to cut his hair,overlooking the children 737,8312058649,774,640,1138,why does the baby turn his head to look backwards in the middle of the video,4,83120586493,CW,baby moved,pick out food,the safety guard protect the baby,eat the food,curious,curious 738,3198533789,690,640,362,what does the man in white do after lifting his leg up in the middle of the video,2,31985337899,TN,touch his hand,moves the object,push the cords away,change direction,run towards the camera,push the cords away 739,3441428429,2697,640,480,how did the girl skater get lift up in the air,4,34414284296,CH,drag her in a circular motion,sway slightly,hit the lady in green,slippery ice,man carries her,man carries her 740,4983922034,479,640,480,what is the black dog doing when the man kicks the snow,1,49839220348,TC,playing with them,watch and then dig snow,yes,runs around,looks at the hole,watch and then dig snow 741,3830567237,716,640,480,what does the man in black do after letting the horse drink water at the start,1,38305672372,TN,happy,wash horse s body,continue running awhile,bend down,swing over his head,wash horse s body 742,5681946487,848,320,240,how does the woman wash the boy,1,56819464878,CH,playing with balloon,with the towel,clean his arms,move baby s arms and legs,use bib to wipe,with the towel 743,3402648543,516,320,240,why is the big dog moving away from the small dogs,2,34026485432,CW,rainnig,snowing,stop feeding small dogs,to play with other cats,want to play with the giraffes,stop feeding small dogs 744,6159637889,2250,640,1138,what does the person do after the baby waves its hand in the middle of the video,4,61596378895,TN,squeezing tube,toy falls,teething,hold the baby up,swing the cradle higher,swing the cradle higher 745,6201488511,2575,640,360,where is this video taken,1,62014885119,DL,ballroom,outdoor,mountain,living room,road,outdoor 746,6046149003,541,640,360,what does the girl in white hold onto while looking outside,3,60461490031,TC,touch man in black s arm,look to the left,happy,window sill,play guitar,window sill 747,5498331490,2160,640,480,why does the cat use its paw to scratch the toilet bowl,3,54983314905,CW,prevent from falling,cautious,drinking tap water,cleaning the toilet bowl,touch the paper inside,cleaning the toilet bowl 748,2726497009,1575,640,480,why is the male bike rider wearing gloves,4,27264970093,CW,cycling outfit,used for safety during game,breathe underwater,road repairing,better grip,better grip 749,5607805258,718,640,1138,why does cat falls and tries to defend herself in the beginning,0,56078052580,CW,cat is scared,to brush at the right spot,getting her attention,scared tail will hit it,go somewhere,cat is scared 750,8505893258,888,640,360,why does the woman in green hold up her phone in the middle of the video,2,85058932581,CW,pick up call,prevent it from falling,record their interactions,looking at her phone,to pass to someone,record their interactions 751,8253302563,1056,640,360,how many people are involved in the video,3,82533025638,DC,three,six,two,one,five,one 752,10001787725,1021,640,360,why did the woman hold the baby when the baby moved to the edge of the sofa,4,100017877251,CW,go somewhere,support herself,talking to kids,for balance,protect from falling,protect from falling 753,3049351381,1542,640,480,what does the baby do after putting down its hand in the middle,1,30493513814,TN,look up smile and move hand,yawn,touches the plant,looks at the other side,touch the cloth,yawn 754,2442307875,515,640,480,why are the children s hands moving,1,24423078753,CW,flying kites,part of performance,stretch for warmup,follow teacher's guidance,calling for help,part of performance 755,2589540862,681,500,375,how many children are there,3,25895408626,DC,nine,two,six,one,four,one 756,6096998186,671,640,360,who clapped her hands at the end,1,60969981865,DO,lady on the sofa,lady in black,taller boy,boy in the middle,man in green,lady in black 757,5349766264,1884,640,362,where is this video taken,3,53497662644,DL,computer table,sheltered area,train,room,playground,room 758,5933003028,931,640,360,why does nt anything change seen on camera as the person performs the tasks,0,59330030282,CW,no physical changes happened,the computer has froze,the computer is not working,there was a black out,the camera is faulty,no physical changes happened 759,3804148568,2697,640,480,why did the man in white singlet stand and look at the two people after wearing his black jacket,4,38041485686,CW,giving them instructions,serve them drinks,taking photographs,collect homework,watch them practice,watch them practice 760,2877270840,780,640,480,why does the man hold the wine glass,1,28772708405,CW,understand its components,drink,cheers with others,bottle belongs to him,attract baby,drink 761,6772999108,1467,360,480,why is the girl clapping in the middle,1,67729991089,CW,she likes the food,follow the music,likes the fruit,playing with adult,singing birthday song,follow the music 762,3372023610,1017,640,480,why is the man in striped shirt holding two sticks,2,33720236106,CW,act as his microphone,walking stick,playing the drums,try to catch snake,support themself,playing the drums 763,5996148663,498,640,362,why did the lady put her hand on her face at the end of the video,0,59961486636,CW,to wipe her mouth,reading from paper,more presentable,carry dog up,carry girl,to wipe her mouth 764,5229476012,810,640,480,why is there a green item on boy,4,52294760122,CW,life vest to prevent drowning,green paint,green necklace,toy to play with,float to help swim,float to help swim 765,2510696559,2117,640,480,why did the boy look down at the bike before starting to cycle,3,25106965590,CW,change direction,not experienced in cycling,practice cycling,aim,practicing,aim 766,3963997053,573,640,480,why are there two men standing at the center istand and holding on to their cameras,2,39639970531,CW,finished performing,cleaning camera lens,recording,playing game,taking photo of dog,recording 767,3321261856,855,640,480,what is the girl holding,2,33212618560,DO,v and e,party props,cat toy,phone,pacifier,cat toy 768,7531285946,1170,640,360,where is this video taken,1,75312859468,DL,backyard,deserted area,front porch,outdoors,ball room,deserted area 769,2987766537,497,500,375,why is the baby trying to move,4,29877665374,CW,trying to sleep,learning to walk,part of performance,to get the toy,change posture,change posture 770,8990144134,457,320,240,what did the cat do when it saw the bird standing there,4,89901441344,TC,lying down,looks at the camera,sniffs the camera,stretch,hit the bird,hit the bird 771,2829462646,2500,352,240,what is the man in stripes doing in this video,3,28294626466,TC,practice performing,moving around the lady,dancing,introducing the hall,sliding down a slope,introducing the hall 772,4083875373,1621,360,480,what does the girl do after standing up at the end,4,40838753735,TN,wave and dance,fall backwards,stop and point,walk around it,walks to the television,walks to the television 773,5323654756,2032,640,480,why did the girl in green lean backwards at the beginning of the video,1,53236547563,CW,look at top,avoid balloon from hitting her,whisper to the girl in white,make space for boy,tired of standing,avoid balloon from hitting her 774,13919236672,3924,640,360,why did the girl continue looking down while holding the blue toy at the end of the video,4,139192366725,CW,she drops the food,make face,carry girl down stairs,talk to girl,pick up green object,pick up green object 775,2559262403,2158,320,240,where are the pugs hanging out,4,25592624038,DL,grass patch,snow wild,in the garden,a forest,at a house,at a house 776,4612723694,1681,640,480,why is he holding the snake s tail,1,46127236944,CW,feed the snake,to control snake better,pose for camera,pass it to the zookeeper,keep it in the cage,to control snake better 777,8208035645,428,640,360,how was the boy transporting himself around,0,82080356451,CH,cycling,skateboarding,walk,on man s lap,on scooter,cycling 778,10082798964,345,640,360,why is the kid sitting,1,100827989642,CW,baby can not swim,listening to lady,eating,watching television,playing with dog,listening to lady 779,2596300565,2415,500,375,why is the baby using two hands to push the pram forward,4,25963005655,CW,support itself,playing,practice walking,touch the man s face,more strength,more strength 780,2771402761,1460,640,480,what does the kid do after the woman in white points her finger,2,27714027619,TN,walk over,start talking,girl talks to lady,look at parcel,stand up and take,girl talks to lady 781,2573424030,1470,320,240,how are the children being moved around,1,257342403010,CH,mimics on a phone call,push with stroller,crawling,in the high chair,play with the rope,push with stroller 782,9409566840,1040,640,360,how do the two dogs playing with each other,4,94095668401,CH,chase,make dog jump,carry baby to chase it,rub the dog,bite each other,bite each other 783,4443526735,472,480,640,what does the baby do with his right hands after turning at the end,4,44435267358,TN,clap hands,hit the table,stares at woman,show the toy,touch the red toy,touch the red toy 784,2400171624,996,500,375,why does the man in black needs to hold two sticks with him to ski,3,24001716242,CW,ski stuck in the snow,run away,cold weather,for balance,watch them dancing,for balance 785,6201488511,2575,640,360,what is the lady holding while she stood on the grass,3,62014885117,TC,bin,hold dog leash,toy car running,bottle,looking at the dogs,bottle 786,4279106208,559,640,360,how did the woman make sure that the child plays safely on the slide,2,42791062085,TC,turned around,push the toy along,hold onto child,look up,raise her left hand,hold onto child 787,7572859950,497,640,1138,what is the lady doing with the baby,2,75728599501,TC,gently,shakers,wear pants,calm,rocking baby,wear pants 788,2697214342,1498,640,480,why does the man in green bend the wood very slowly,3,26972143421,CW,prevent from hurting his hands,break it,assist securing at right position,not break it,wait for the man,not break it 789,2434859163,615,500,375,why are the polar bears in the waters at this time of the day,0,24348591633,CW,swimming,bathing,escpaing heat,finding food,washing up,swimming 790,3263908208,300,640,360,where is this video taken,1,32639082086,DL,indoors,sea,lake side,carnival,snow mountain,sea 791,2735019707,583,640,480,how does the man in red signal the boy to start in the middle of the video,3,27350197075,CH,hold them up,get people to clap with him,demonstrate,talk and nod,clap hsi hands,talk and nod 792,4219909195,1003,640,480,why did the man lie backwards at the end of the video,1,42199091955,CW,to read,girl move from his back to side,to whisper to lady in green,to let dog sit on lap,to stretch,girl move from his back to side 793,5521781780,2697,640,480,where are the people hanging out,4,55217817805,DL,house,beach,swimming pool,car,ancient site,ancient site 794,4372494989,2575,640,480,why does the man in red pick up the child after he puts the joss stick on the altar,4,43724949892,CW,girl was talking to him,pass kid the present,formal area,play with them,show the baby s outside,show the baby s outside 795,5919180502,1379,640,480,what does the man do after getting the camera to face him,0,59191805027,TN,dancing to rhythm,bend down and touch the woman s back,squats back down,pass photo to lady in white,take video,dancing to rhythm 796,8464056582,1340,640,360,where is this happening,0,84640565829,DL,house,beach,roadside,porch,pool,house 797,8403741210,1327,640,360,where is this happening,2,84037412107,DL,car,skate park,living room,swimming pool,stage,living room 798,6480018109,709,640,360,how is the nurse with long hair supporting the patient,1,64800181095,CH,holding her neck,holding her by strap,hold her hands,bend down and touch her,held her walking stick,holding her by strap 799,6879924118,488,640,360,why are there so many cones nicely placed on the grass,2,68799241182,CW,swept by the flood,camping trip,marking for position,baby is playing,someone s birthday,marking for position 800,6025238212,758,640,360,what does the girl in gold do after attempting to hit the man at the end,0,60252382126,TN,push the man,walk away,look at her and ignore afterwards,climb up from the chair,put cards together,push the man 801,7331927796,519,352,288,what did the boy do when the big white dog was running over the brown dog after the middle part of the video,4,73319277965,TN,look at second toy,put leg on other boy,chases after him,waiting for his turn,walks away,walks away 802,4276006683,799,640,480,what does the cat do after the person puts his finger into its mouth in the middle,0,42760066836,TN,bite it,rubs against him,bring it down,closed it eyes,sit up,bite it 803,6618792571,2518,640,480,why did the baby hold on to something as she moves,4,66187925710,CW,hold toy doll,pass to girl,dog leash,riding bicycle,pushing toy cart,pushing toy cart 804,4822859674,861,640,480,what did the lady do after the boy crawled towards her,1,48228596748,TN,take the balloon,give boy sweet,chase after him,run towards the boy,point at the bicycle,give boy sweet 805,2584172238,719,320,240,how are the baby in blue and woman in yellow related,3,25841722381,DO,mother,friends,father son,parent offspring,make the baby calm,parent offspring 806,4087654898,330,640,480,why are there so many brown leaves on the ground,2,40876548984,CW,after shaved,obstacles,fallen from trees,autumn,doors open,fallen from trees 807,3345608051,2250,640,480,why is there a dog lying on ground in the middle,4,33456080516,CW,playing with boy,feed her puppies,sleeping,bite and pull the toy,pushed down by dog,pushed down by dog 808,8627074061,2697,640,360,why did the girl lean forward to the table at the end of the video,4,86270740617,CW,playing piano,hit the toy dog,talking to lady,take the book,interested in white art piece,interested in white art piece 809,8107573462,406,640,360,how did the man make sure that the boy does not get drag on the ground when he fell,3,81075734628,CH,checks on him,was quiet,bib,let go of boy s hand,wearing helmet,let go of boy s hand 810,7961460440,360,640,480,where is this video taken,3,79614604407,DL,studio,boxing ring,park,outdoor,train,outdoor 811,7453733046,992,640,360,where are the people hanging out,1,74537330467,DL,outside house,water park,at a house,bus,studio,water park 812,3198533789,690,640,362,why is the orange man standing at the side,3,31985337898,CW,checking train,playing the guitar,to catch the ball,oversee the process,talking to someone,oversee the process 813,4251505427,2290,640,480,why did the lady at the back carry the baby to stand on her lap,4,42515054270,CW,lose balance walking,grandmother is teaching her,as the lady wants to keep her close,watching and recording children playing,show affection,show affection 814,4584426085,2697,360,480,what did the lady do after pulling the puppy back in the middle,2,45844260853,TN,avoid the lady,went ouside,dress the dog,walk across,walks back to the start,dress the dog 815,4765717907,1180,640,480,what did the man do after the boy picked up the ball near the middle,4,47657179077,TN,look in the direction of ball,try to get ball back,kick the ball,look to the left,carries him,carries him 816,3429509208,374,640,480,why does the baby turns the vacuum cleaner in a particular direction near the end,4,34295092084,CW,to push door back,he was stuck at the sofa,interested in the store,clean the corner,want to turn back,want to turn back 817,2978295992,1056,640,360,why did the lady with the pumpkin stretch her hand out over the table at the end,0,29782959926,CW,place a piece of pumpkin,celebrate birthday,wipe her hands,get tissues,mixing ingredients together in bowl,place a piece of pumpkin 818,5205081904,623,360,480,why does the child constantly look down,3,52050819040,CW,sleepy,playing with a toy,playing game,looking at the tablet,safety,looking at the tablet 819,6988748711,1512,640,480,why did the grey shirt woman stand at the side while watching the red shirt man pull cloth open,3,69887487114,CW,wash hairs,focus on her,listening,in case he needs helps,read marriage vows,in case he needs helps 820,3261079025,553,640,480,why did one of the man have to hold onto the plane before it took off,3,32610790254,CW,support himself,strong wind,the boy could not control it,stabilize it,taking off,stabilize it 821,7499763064,604,640,360,what does the man do as the lady in blue was waiting behind him,4,74997630644,TC,point at his basket,walk to bald man,runs away,sitting,try to get higher,try to get higher 822,6542914065,300,640,360,where is this happening,2,65429140656,DL,garden,wooded areas,field,footpath,home,field 823,5854324479,519,640,474,what event is happening,1,58543244796,DO,concert,speech,water skiing,boxing game,stage,speech 824,3131380536,2007,640,480,what is the colour of the yoghurt,2,31313805368,DO,light blue,black and white,pink,white,black,pink 825,3063380173,515,500,375,why did the kittens constantly move their paws on the container,4,30633801732,CW,attracted to it,curiously looking around,annoyed,playing,trying to touch each other,trying to touch each other 826,4372494989,2575,640,480,what does the baby do after being picked up,2,43724949897,TN,fall down,suck thumb,clasp his hands together,reading book,crawling on the ground,clasp his hands together 827,4103088549,485,640,480,why did the man spread his arms out,3,41030885496,CW,massage,to hug the baby,rowing boat,to balance on the surfboard,skydiving,to balance on the surfboard 828,3402648543,516,320,240,why does the big dog run behind the house,3,34026485434,CW,fethc ball,chasing the car,playing,hide from small dogs,guide direction,hide from small dogs 829,4967810888,1868,640,480,what did the lady with blonde hair do after she entered the room,4,49678108886,TN,stand up,leave the room,turn back to window,run towards the camera,sat down,sat down 830,2435633172,2293,500,375,why was the pig sticking its mouth down at the start,2,24356331724,CW,getting fur shaved,tease the dog,eat,playing with dog,playing with it by biting,eat 831,6233408665,2246,640,360,what did the girl in green do after the girl in grey put the board near her face,3,62334086651,TN,other side of table,raised up both hands,adjust the girl s clothes,push the board away,try to pull it open,push the board away 832,4984417707,441,640,360,what was the man in red next to the brown sign board at the end doing while the elephants were playing with the ball,1,49844177076,TC,point at the trucks,throw away the ball,blows thw whistle,walk around,look at the red car,throw away the ball 833,2984974097,899,500,375,what does the girl do after she starts paddling,4,29849740977,TN,continue cycling,said something,row using hands,floating,keep looking down at pedal,keep looking down at pedal 834,8457210773,1976,640,480,how did the brown dog react when playing with the black dog at the start,3,84572107733,TC,barked back,jump again,jumps down,bite dog,faces brown dog,bite dog 835,2679328607,1047,320,240,what does the boy do with the toy after the girl passes it to him,2,26793286077,TN,look down,kick her legs,bite it,turn to her,pick it up,bite it 836,6097994550,526,640,360,why did the man lying down roll over on the floor near the end,0,60979945506,CW,to move to the camera,fall over,laughing,baby crying,let kids walk through,to move to the camera 837,5256928210,606,640,360,what did the man do after patting the dog s head at the start,2,52569282104,TN,continue rubbing dog s head,play with toy,pet body,smile,chasing its tail,pet body 838,6046149003,541,640,360,how many girls are there,1,60461490032,DC,five,two,four,one,three,two 839,4542882771,866,480,640,why does the baby move his hands,3,45428827711,CW,stiring,playing piano,drawing,scoop food,caress dog,scoop food 840,8990144134,457,320,240,what does the cat do when it first sat up,3,89901441342,TC,pooping,eat,examine the bag,hit the bird,cross the ledge,hit the bird 841,3526597179,807,640,360,what did the lady in yellow do after talking to the lady in white,4,35265971796,TN,hold the girl s hand,she drinks it,nods her ehad,moved,turn behind her,turn behind her 842,8575881495,2000,640,360,what does the girl hold on her hand as she was sitting up in the middle,2,85758814955,TC,feed baby,shakes the baby,stuff toy,pin woman s hair,play the piano,stuff toy 843,5237219621,2680,640,360,how is the atmosphere of this group discussion,1,52372196212,DO,happy,serious,sad,angry,shocking,serious 844,8080432373,2697,640,360,why did the man point at the chair,3,80804323731,CW,grab attention,lecturing,suggest lady to sit,guide baby to get down,playing the guitar,guide baby to get down 845,3121571439,1212,640,428,what does the lady do after finishing dancing at the end,4,31215714397,TN,point to someone,repeats,hugs the man,put on man s shoulder,jump,jump 846,2833209794,331,640,480,what does the man in black do after turning his body to face the wall,4,28332097947,TN,waiting,catch the ball,lean forward,walk towards the ladies,look at the picture frames,look at the picture frames 847,4658396458,2160,640,424,why did the adult stretch out his hands to the baby while the baby is touching the basket,4,46583964583,CW,reach the toy,holding and supporting the baby,reaching for something,show affection,put the toys back,put the toys back 848,5533380417,403,640,362,how is the baby positioned throuh the video,0,55333804178,DO,on man s laps,sitting on baby seat,lie on bed,sitting on sofa,carried on man s back,on man s laps 849,8224504302,1290,640,480,why are the two men standing on stage,0,82245043023,CW,speeching,to receive awards,ready to dance,playing drums,playing guitar,speeching 850,4488066715,2638,320,240,how does the adult react when the baby tries to touch the bowl with his other hand,2,44880667154,TC,shouted for help,takes a tissue,pull hand away,give him a ball,playing with baby,pull hand away 851,7416295940,2388,640,384,how does the dog show affection towards the baby,4,74162959405,CH,wagging his hands,jump at each other,kiss his legs,bring boy ball,lick the baby,lick the baby 852,2614918961,1311,640,480,why does the baby constantly look down at his hands,4,26149189610,CW,babbling,reading,excited,worried,playing with a toy,playing with a toy 853,4260763967,1017,640,480,what did the boy in blue do after he turned his head behind at the middle,2,42607639677,TN,smiling,following him,continue playing with toy,walk,scroll his computer,continue playing with toy 854,7164729910,656,640,360,why is the boy shaking his body in the middle of the video,1,71647299103,CW,happy,trying to move car,playing,adjust his cap,pick up the ball,trying to move car 855,6356067859,1070,640,480,where could this be happening,1,63560678598,DL,hospital,barn,home corridor,roadside,zoo,barn 856,11566930393,872,640,480,what does the boy do after the other person removes the plastic wrap from the toy in the middle,0,115669303934,TN,stands up,put hand inside the toy,laugh,move forward and backwards,on the floor,stands up 857,3626788516,337,320,240,how many people are in the video,2,36267885166,DC,four,eight,two,nine,ten,two 858,7088595057,1052,640,480,why is the black sheep on the hay moving left and right,4,70885950572,CW,eating,resting,eat the grass,protect them,protecting the black lamb,protecting the black lamb 859,4136617240,2697,480,352,how does the girl feel,2,41366172408,DO,laughs,sad,happy,annoyed,confused but calm,happy 860,10309542255,2566,640,480,why did the animal on the right walk backwards,4,103095422553,CW,curious of something there,to move away from the lady,get out of humps,to drink water,pushed backwards,pushed backwards 861,6542914065,300,640,360,why did the man in red suddenly slow down,3,65429140659,CW,look at the cameraman,stuck in snow,prevent overflow,saw ball go different direction,play the guitar,saw ball go different direction 862,6691330381,1239,640,360,why was the boy shifted forward in the middle,3,66913303813,CW,to ride the toy horse,make him visible on stage,make a speech on stage,man pull him forward,avoid the crowds,man pull him forward 863,13296054183,303,640,1138,what is the relation between the two people on the bicycle,2,132960541832,DO,slow,family,colleagues,signs on handlebar,ride horse and carriage,colleagues 864,6265968082,1275,640,360,how do the performers amplify their sounds,0,62659680820,CH,use microphone,shout loudly,with his trumpets,lower background music,make voice louder,use microphone 865,4882414082,1350,640,480,how did the baby reach the height of the table,1,48824140823,CH,standing,sit on high chair,jumps,holding the barrier,sat on her lap,sit on high chair 866,5902452647,812,640,480,where is this happening,4,59024526477,DL,living room,wooded areas,hospital,house,grassland,grassland 867,2697214342,1498,640,480,what are the guys doing in the video,2,26972143426,TC,riding horse,drinking,working,playing guitars,trekking,working 868,9735768590,680,640,360,how does the baby react after the woman runs the finger across the baby s stomach,0,97357685906,TN,laughs,catches the baby,carry the baby up,open her mouth,take off bib,laughs 869,3469864014,867,320,240,how did the cat respond to the camera,4,34698640146,CH,bit the camera,meowed at the camera,hit the camera,run around camera,smell the camera,smell the camera 870,2854886555,480,320,240,why did the boy twist the fruit at the start of the video,4,28548865550,CW,squeeze it,show fruit to others,pick up the ball,help him move,take it off the tree,take it off the tree 871,8552680285,442,640,360,how many people are there,0,85526802858,DC,two,six,one,eleven,three,two 872,6542914065,300,640,360,why is the three men running on the field,2,65429140658,CW,to make a score,to catch him when he falls,trying to catch ball,get on it,playing hide and seek,trying to catch ball 873,5173770364,2388,640,360,what does the baby do as the adult lies down with the leg stretched out,0,51737703643,TC,touch the leg,kick,look at the man,play with toy,sleep,touch the leg 874,8177965766,705,640,360,how does the man react to the performance before sitting down,0,81779657666,TP,smile,pick up something,tired,smoke,stop cycling for a while,smile 875,3935853204,943,640,480,why are people standing around and staring at the screen,0,39358532048,CW,looking at how it works,watching demonstration,for guys to refer,following dance move on screen,check the slides,looking at how it works 876,8531675050,1620,640,360,where are the people performing,4,853167505011,DL,pool,grass patch,ring,on the streets,on stage,on stage 877,6018490041,825,640,480,what does the man in brown pants do after bending forward at the start,3,60184900415,TN,touch his ears,hold his hands,stand in position,look to the right,pick up ball,look to the right 878,10042935613,1710,640,360,why does the boy in red touch the tissue in the middle of the video,0,100429356131,CW,to wipe his hands,grab toy,give to woman,wipe his face,look at phone,to wipe his hands 879,3462517143,722,640,480,why does the brown dog walk into the container after the white dog walks away,0,34625171431,CW,wash his paws,wants food,wait for black dog attention,get away the dust,tired,wash his paws 880,7088595057,1052,640,480,why is the relationship between the sheep and the black sheep,4,70885950571,CW,to find egg shell,think it is food,identification,being dramatic,offspring,offspring 881,2735019707,583,640,480,why is the man in red watching the boy in the middle of the video,4,27350197072,CW,learn how to play,wait for him,pick up the boy,to video him,watch him playing drum,watch him playing drum 882,3708066257,477,640,480,what does the woman do after getting to the side of the man,3,37080662578,TN,happy,dance,playing golf,lean on him,wipe her face,lean on him 883,5801184682,1683,640,480,what did the cat do after crossing the brown basket at the start,1,58011846825,TN,run away,hide behind,look into the toilet bowl,go near the table,jump down,hide behind 884,4189100053,874,640,360,why did the lady put her hand closer to the baby s mouth,4,41891000534,CW,curiously looking around,to pet baby,nobody using currently,girl is playing with it,in case food fall,in case food fall 885,3380344744,1485,640,480,why is the lady holding on to the baby s head,0,33803447441,CW,hold while cleaning him,ensure baby dont fall,support the baby s walking,position for photo,carrying her,hold while cleaning him 886,2400715506,414,320,240,why does the thumb move upwards when the animal is moving close to it,1,24007155063,CW,feed dog,prevent from falling,hand gesture while talking,feel happy,draw attention,prevent from falling 887,6480018109,709,640,360,how is the patient moving out of his ward,0,64800181097,CH,walk,bend over and raise legs,watch her crawl,shake body,carried by nurse,walk 888,3477387686,2034,640,480,how did the girl get the dog s attention after she clapped at the end of the video,1,34773876868,CH,lift dog up by pulling its leg,touch its ear,standing up,using hand gesture,hold leash,touch its ear 889,4189100053,874,640,360,what did the lady do after she wiped the ice cream from the baby s mouth,3,41891000535,TN,clean the table,huge snowfall,walk off,lick her finger,wipe it with tissue,lick her finger 890,6159637889,2250,640,1138,why is the baby s cradle rocked front and back,2,61596378892,CW,man takes away the bottle,laughing shakes baby,soothe baby to sleep,grab the woman s finger,play with the toy,soothe baby to sleep 891,3429509208,374,640,480,why does the baby push the vacuum cleaner,0,34295092082,CW,playing,hold for support,bathing and playing with water,clean the floor,more strength,playing 892,5026660202,2697,640,480,why is the man at the back moving his arms so vigorously,0,50266602029,CW,playing the drum,playing the piano,cleaning instruments,adjusting microphones,putting stage decorations,playing the drum 893,6239210933,1030,640,480,what activity is the child doing,2,62392109339,TC,presentation,happy,drawing,touching dangling things,feeding the dog,drawing 894,6018514357,1280,640,1138,why did the man hold the baby s hands,0,60185143576,CW,to support the baby,to carry the baby,to take a photo,to wash the baby,slide down with baby,to support the baby 895,5138093706,931,640,480,why did the lady in purple bend forward at the end of the video,4,51380937066,CW,adjust shoes,rub ankles,blow the candle,take back her socks,support baby,support baby 896,6163877860,2160,640,360,why did the book drop,1,61638778607,CW,open the cup,baby kicked it,the girl in pink slipped,safety,lady pushed it too hard,baby kicked it 897,2920952624,825,352,288,why does the shorter woman open the fridge at the end of the video,4,29209526243,CW,check out whats inside,interested in white art piece,save electricity,run tap water,to grab something,to grab something 898,3963997053,573,640,480,why are there fences separating the audiences from the car,3,39639970534,CW,protecting the elephants,seperate animals,prevent dust,mark out area to drive,keep the horse in,mark out area to drive 899,5429688959,2490,640,360,why is the singer sitting on a chair,1,54296889592,CW,feel taller than audience,better support for guitar,leverage the height,watching performance,the singer cannot stand up,better support for guitar 900,2824317018,1606,500,375,why did the girl in pink and in blue decide to sit next to the boy after approaching him,0,28243170181,CW,rest,play with him,not to block the rest,push him,talk to him,rest 901,4612723694,1681,640,480,what is inside the white bag,3,46127236943,DO,scores,toys,carrying bags,snake,soft toy,snake 902,14003541505,507,640,360,what does the baby do after her hands touch the ground at the start,2,140035415054,TN,create waves,bites it,try to crawl forward,splashes the water in tub,play with owl toy,try to crawl forward 903,3355698421,1193,640,360,how did the man in checkered shirt gesture towards the woman in black,3,33556984212,CH,peer at her,put his arm behind her,standing,point his finger,using the mouse,point his finger 904,3131380536,2007,640,480,why does the child put the spoon in his mouth,0,31313805363,CW,lick yogurt taste,chew,to hit the bottle,clean the spoon,pushing the food in,lick yogurt taste 905,9217939684,1660,512,288,what does the baby do after approaching the woman in singlet at the beginning,2,92179396845,TN,touch surface,put face close to baby,hug woman,turn back,steps on the toy,hug woman 906,3784543730,852,640,480,why is there person in black moving his legs,3,37845437306,CW,jumping up and down,dancing,swimming,cycling,doing judo,cycling 907,3429509208,374,640,480,what did the boy do before he raised his hand to take the camera,1,34295092088,TP,brush his pants,turn the vacuum cleaner,look away,laughed,talk to boy,turn the vacuum cleaner 908,4983922034,479,640,480,what are the dogs doing,1,49839220346,TC,play with toy with mouth,playing with snow,chase each other,look away,smells the rocks,playing with snow 909,3372023610,1017,640,480,how did the lady in black hold the microphone,0,33720236100,CH,with her hand,lady in white holding for her,with a microphone stand,man in grey holding for her,with her feet,with her hand 910,3562017845,1200,640,428,why does the bird start shaking its body,1,35620178452,CW,check for predator,clean itself,talk to itself,to sit on a swing,to fly,clean itself 911,3477387686,2034,640,480,what did the dog do after the girl puts her palm out,2,34773876864,TN,climb onto girl,jumped,place paw on her palm,kiss her,walk away,place paw on her palm 912,4584426085,2697,360,480,what did the puppy do after jumping near the middle,2,45844260856,TN,close eyes and open mouth,lick the kid,go to the person in sandals,love,feeding,go to the person in sandals 913,2712662377,1048,640,480,what does the turtle eating do after pulling the leaf with its mouth,0,27126623775,TN,eat some more,does nt like the taste at first,surface,walks away,crawl forward,eat some more 914,11541421563,2403,640,360,what does the woman in brown do after the man in orange points at the score in the middle,3,115414215638,TN,plays a card,throws her cards,gets off the bed,smiles,pushes him back,smiles 915,3861485381,2686,640,480,how did the lady interact with the leopards,2,38614853812,CH,walk close to the leopards,rubs the head,take video of them,pull her hands away,lie back with arms out,take video of them 916,4444192938,866,640,360,why does the girl in red walk slowly down the stairs,4,44441929381,CW,oversee them,service staff,protect from the sun,she is very careful,distracted,distracted 917,2503404966,840,640,480,why does the boy stand up near the end of the video,1,250340496610,CW,throw ball backwards,dark,take something,to reach towards the woman,wants to eat,dark 918,6329954198,692,640,360,why does the man in black hold his jacket with one hand,0,63299541981,CW,prevent it from falling,woman grabbing the other end,cold,bag blocking,posing for photo,prevent it from falling 919,6253433310,680,640,480,what did the boy do after his head first came up the water,0,62534333104,TN,looks to the left,standing still,sing,cover mouth,hit water,looks to the left 920,11244289523,552,640,360,why is the girl in pink wearing a sash,0,112442895231,CW,celebrate her birthday,she won a pageant,she is performing on stage,she won an award,her costume,celebrate her birthday 921,2977504625,384,640,360,what did the boy in white do after the boy in the car looked behind at the middle,1,29775046256,TN,pull his pants,look behind,screw it in,hold onto boy,shows his car too,look behind 922,6964124866,515,640,360,why is the child sitting on the ground,2,69641248660,CW,learn crawling,assigned seats,playing with the card,fell backwards,resting,playing with the card 923,5026660202,2697,640,480,where is the microphone,4,50266602027,CW,performers holding them,lying on the ground,hanging in mid-air,clipped to the performers shirt,placed on a stand,placed on a stand 924,6205856607,978,272,480,what does the man do when the horse plays with the girl,0,62058566079,TC,hold the girl,use his phone,shakes body,takes picture of the horse,start dancing,hold the girl 925,2771402761,1460,640,480,how does the kid move forward,4,27714027616,CH,sitting on baby chair,child holds his finger,cycling,jumping,lady pushes girl forward,lady pushes girl forward 926,3303565503,1115,480,640,why is the man in white with a cap holding on to the girl,2,33035655030,CW,protect from sun,aiming to throw,posing,to support the baby,outfit for fencing,posing 927,11966080214,1531,640,1138,how is the toy s design able to attract children s attention,4,119660802148,CH,floral designs,dinosaur print,shining stars,glow in the dark,colourful,colourful 928,2835125654,1406,320,240,why were the people standing at the fence at the beginning,2,28351256549,CW,play catch with the ball,prevent horse from escaping,watch elephants,sniffing around,to prevent poeple from skiing away,watch elephants 929,5433090067,607,480,640,where is the setting of the video,3,54330900673,TC,mountain climbing,playing,sightseeing,children s slide,canoeing,children s slide 930,4249756405,774,320,240,why is the man looking down in the middle of the video,3,42497564055,CW,gesturing in his speech,observe baby,trying ot open bottle,playing guitar,take off shoes,playing guitar 931,6618792571,2518,640,480,how did the girl move herself to take the spoon toy in the middle of the video,3,66187925715,CH,walk,slide down,carried by man,crawls,with toy car,crawls 932,5352022985,1411,640,360,why does the dog shake its body near the end of the video,0,53520229853,CW,get rid of snow,get rid of powder,get rid of water,shocked by ball,get rid of leash,get rid of snow 933,3249402410,697,640,480,what are the ladies making in the video,1,32494024101,DO,soup,pizza,fried chicken,cake,pie,pizza 934,8313365386,318,640,360,why did the lady lean forward near the middle,3,83133653864,CW,moving the joystick,tire,protect boy from falling,to see something,holding the dog s collar,to see something 935,6300775954,1734,480,800,why did the lady took so long to stand up on her last squat at the end of the video,3,63007759549,CW,get closer to camera,scratch forehead,copy taller girl,exhausted,attract the baby girl,exhausted 936,4388652400,1785,640,480,what is the dog doing before being touched by the man,2,43886524003,TP,keep peeking at dog,run away,chasing its tail,biting on to the blue toy,jump onto his leg,chasing its tail 937,6988748711,1512,640,480,what does the woman in grey do after the man in pink spread the cloth near the beginning,0,69887487118,TN,walk close to man in pink,walk towards the girl with curly hair,hit her with cushion,clasp her hands,runs back,walk close to man in pink 938,5875242364,427,640,384,where is this video taken,2,58752423646,DL,computer table,boxing ring,garden,kitchen,jungle,garden 939,10727696143,1821,640,480,what is a possible relationship between the boy and the lady,2,107276961433,DO,father and child,team mates,parent offspring,teacher student,couple,parent offspring 940,5879651428,2697,640,1138,how did the man in white support the guitar as he plays it,0,58796514283,CH,on his lap,with a strap,sling across his chest,with his hands,put on table,on his lap 941,7651639778,1963,640,480,what is the the man in blue jacket doing on the shoulder,3,76516397787,TC,clap,posing for photo,cheerleading,tieing white sheet to the pole,pointing to camera,tieing white sheet to the pole 942,6329954198,692,640,360,what did the man in beige shirt do after he looked away,3,63299541987,TN,move forward,walk forward,stand up,rotates,play instrument,rotates 943,5919180502,1379,640,480,how does the man in grey respond when the person walks up behind him,4,59191805022,TC,nodded and gave him a hi-five,no reaction,throw him a red toy,approach man in black,splashes water,splashes water 944,4367056464,1162,640,360,why is there a half eaten chicken on the table of adults,1,43670564640,CW,baby drop food halfway while eating,eating halfway,wants to eat,no space to come up,it wanted to climb up,eating halfway 945,6233408665,2246,640,360,why did the woman in pink move her arms,4,62334086652,CW,gesturing,posing for photo,hold onto railing,catch a ball,dancing,dancing 946,5328004991,788,640,480,why does the woman take the stirrer away from the child in the middle,0,53280049911,CW,do it properly,busy with her computer work,play with dog,comfortable,drop it,do it properly 947,5667931404,335,640,360,why did the baby bend down again after picking up a big rock,1,56679314044,CW,too steep,pick another smaller rock,his body supported by harness,sit properly on slide,for support,pick another smaller rock 948,9873067604,920,640,360,what did the boy with collar shirt do after he looked at the camera at first,3,98730676045,TN,stop crying,hold s the rod,look away,talk,stick his tongue out,talk 949,5902452647,812,640,480,why did the pink dress girl move backwards in the middle,2,59024526471,CW,to jump,help baby go into crawling position,dodge the ball,to hit boy,grip the rope,dodge the ball 950,6618792571,2518,640,480,what did the girl do after she knocked herself into the beanbag,1,66187925718,TN,laugh,sits down,pick it up again,hold a cross sign,puts it back,sits down 951,5145526755,1675,640,360,why is there a lioness having its head on the ground,4,51455267551,CW,paw at the dog,eating the prey,play with the dog,playing with man,resting,resting 952,6037747123,919,640,480,why did the two ladies put their hands above their eyes while staring out,2,60377471236,CW,practicing cheer,posing for photo,to see better,dancing,wiping their face,to see better 953,6168295272,446,640,360,why is the lady in blue swaying her body,4,61682952727,CW,attract attention,restless,playing hula-hoops,posing for camera,dance,dance 954,6642268693,1143,640,480,how did the dog show that it wants the owner s attention,0,66422686934,CH,go towards owner,bounce the ball,removes collar around his neck,wag tail,shakes its head,go towards owner 955,4698622422,1252,640,480,why did the woman walk up to the boy at the end of the video,4,46986224222,CW,sneeze,completed sliding down,tries to say something,give the boy something,the boy fells down,the boy fells down 956,2435100235,1906,640,480,why did the man suddenly turn to the camera in the beginning,1,24351002352,CW,get the boy to focus,film himself to give commentary,practicing his golf skills,smile at camera,film the man riding,film himself to give commentary 957,4762946272,647,640,360,why did the boy tilt the spoon into the bowl three times,4,47629462727,CW,playing,ladle food,easier for baking,happy,ensure all flour is poured,ensure all flour is poured 958,4612723694,1681,640,480,how did the man in grey hold the snake up,0,46127236946,CH,both hands,left hand,right hand,use a stick,thongs,both hands 959,5919180502,1379,640,480,what does the lady do after getting off the chair,1,59191805028,TN,turn in front,walk towards women at ledge,pick up baby,push the chair back,walk sideways,walk towards women at ledge 960,6762389913,1371,640,360,what does the person do as the black dog is licking the brown dog at the end,2,67623899136,TC,lick the other dog,touch dog s nose,strokes it,shocked,step out of container,strokes it 961,3198533789,690,640,362,why is the man on the roof,0,31985337890,CW,cleaning the roof,reach the screen,performing,carry item down the roof,finished demonstrating,cleaning the roof 962,3158022797,2697,640,480,where was this video taken,1,31580227974,DL,park,living room,on the plane,outdoor,forest,living room 963,2559262403,2158,320,240,how do the pugs play with one another,0,25592624037,CH,play biting,play with the rope,make dog jump,use its mouth,biting each other,play biting 964,2835125654,1406,320,240,how many elephants are there,2,28351256547,DC,one,five,two,four,three,two 965,6168716346,949,640,360,what does the boy with blue shirt do after the boy with red shirt gets a crayon at the end,1,61687163468,TN,come and stand on the stool,looked at the crayons,puts down the watering can,stand on the stool,pulls the popper,looked at the crayons 966,13884293626,5395,640,360,why did the lady in purple touched her hair in the middle of the video,0,138842936266,CW,want to let down hair,adjust hair,pose for camera,affectionate gesture,drinking,want to let down hair 967,3402648543,516,320,240,why does the big dog face the two small dogs when they re playing,2,34026485435,CW,grooming,playground,prevent small dog sucking,to play with him,prevent scratching,prevent small dog sucking 968,3902997424,779,640,480,what did the lady do after she switched her right to left hand of holding the cup,4,39029974244,TN,takes the towel,laugh and walk away,pick up the bucket,walks away,sway her body,sway her body 969,5889898795,2697,640,360,why does the lady in white face the men s bodies some time before they are ready to jump,3,58898987958,CW,hit them,take photo of them,playing game,give them instructions,adjust their shirts,give them instructions 970,5667931404,335,640,360,what does the boy do after picking up the rocks,0,56679314046,TN,walk away,sing,keep peeking at dog,dancing,lean and look forward,walk away 971,14012319794,3010,640,360,what did the girl take from the cupboard,1,140123197947,DO,red hat,bottle of syrup,pet,baby snake,horse guide,bottle of syrup 972,9576671750,825,640,360,which side of the phone did the person show the camera at the end,4,95766717502,TC,show display screen,right side of the phone,top of the phone,bottom of the phone,show brand of phone,show brand of phone 973,4010069381,369,640,480,why are both the men moving their hands,1,40100693810,CW,practicing singing,performing,engage audience,dancing,fencing equipment,performing 974,4970148391,732,640,480,what activity is the boy doing,0,49701483917,TC,baseball,talking,jump,showing us an experiment,watching television,baseball 975,4443526735,472,480,640,how was the baby chair positioned at the end,1,44435267354,TC,move his feet,baby s back towards the camera,rise right arm,sit on toy,lying down,baby s back towards the camera 976,4744503881,488,640,480,what were passed outside the window,2,47445038814,DO,nurses,two ladies,cars,man in black,lady wearing skirt,cars 977,4465235803,1014,640,428,what does the baby do after turning towards his left at the end,2,44652358035,TN,look up smile and move hand,looks at the other side,hold on to toy car wheel,touch baby on right,look at the girl,hold on to toy car wheel 978,11966080214,1531,640,1138,where is this place,1,119660802149,DL,living room,corridor,classroom,farm,golf course,corridor 979,3355698421,1193,640,360,why does the man in checkered turn to his left after drinking,1,33556984213,CW,drinking,talking with the woman,thirsty,turn on the path,looking at the man speaking,talking with the woman 980,4882414082,1350,640,480,what did the baby hold in his hands while eating the noodles,0,48824140826,TC,noodles,sweets,chocolates,candies,water,noodles 981,3939145327,1194,640,360,how is the girl moving the tricycle,2,39391453272,CH,push by the toy cart s wheel,shakes and hits it,paddle,holding hands,walking on ball,paddle 982,4782722858,1234,640,360,why is there black covering behind the ladies,3,47827228582,CW,table cloth,surprise gift,shadows,stage setup,photobooth,stage setup 983,6860322796,1285,640,360,what does the black dog do after it plays a while with the brown dog,0,68603227960,TN,chase the lady,kicks the heavy snowball,look at the cameraman,swiped by the person,fall off,chase the lady 984,3158022797,2697,640,480,why is everyone holding a remote controller in their hand,3,31580227970,CW,playing,photo taking,modify the sound,playing and dancing,reduce tv volume,playing and dancing 985,14003541505,507,640,360,what does the girl in pink do as the baby tried to move around,1,140035415050,DO,parent offspring,sit at the side and watch,grandmother grandson,parent child,offspring,sit at the side and watch 986,6582763207,696,640,360,what did the lady with microphone do when she stopped singing for a while in the middle of the video,1,65827632073,TC,lifts her shirt,bring the microphone away,drinks,point her front,pose,bring the microphone away 987,9256409422,2312,640,360,where is this video taken,3,92564094224,DL,supermarket,on the plane,road,train station,lake side,train station 988,5061117640,1587,568,320,what does the man in grey do after opening the door at the start,2,50611176403,TN,climb up,stop and stand still,look into room,raise his camera high to record,talking,look into room 989,8387356484,1022,604,1072,how did the baby ensure that he do not dirty his clothes,2,83873564847,CH,wear apron,woman cover with towel,wear bib,fed by man,napkin on collar,wear bib 990,2400171624,996,500,375,how does the skier get down from the hill at the beginning,1,24001716246,CH,pushing ground using 2 sticks,jumps,push sticks,use ski pole,walking,jumps 991,3902997424,779,640,480,what did the lady do as she was cycling off,4,39029974245,TC,carry a chair,look towards the boy,walk towards women at ledge,stand up,waves,waves 992,5858985747,349,604,1072,where is this happening,3,58589857477,DL,in the sea,karaoke room,trail,house,wooded areas,house 993,8457210773,1976,640,480,why did the brown dog shake its body,1,84572107730,CW,remove water from body,to clear snow from body,roll in the snow,dancing,attracting attention,to clear snow from body 994,4276006683,799,640,480,why does the cat move away after biting the person s index finger,4,42760066833,CW,to remove water from his body,hold the toy tightly,licking,sleepy,the person rolls him away,the person rolls him away 995,4123211145,2697,640,480,what did the girl in orange do after she took the towel from the girl in yellow,4,41232111459,TN,hold a cross sign,spin again,touch the baby s arm,stand on the plank,throw it,throw it 996,3206694342,1971,640,480,what does the boy on the right in front do when the others bend down in the middle,0,32066943420,TC,stand up,shake left to right,talk to baby,turn around,smiles,stand up 997,8330342965,1313,640,362,how does the girl move around the room,0,83303429657,CH,run,crawl,cycling,ride bike,roll,run 998,9565310990,1066,640,360,why did the baby stop at a spot after crawling for a period of time,3,95653109903,CW,dizzy,wall in front,hit the toy to the ground,fall to the front,more comfortable,fall to the front 999,5333075105,1168,640,480,how did the man supported himself as he moved through the think snow,0,53330751053,CH,stick,jacket,snowmobile dig through,skiing,balance,stick 1000,6879924118,488,640,360,why is the man in black pants standing in front of the people,4,68799241184,CW,relaxed,feel accomplished,playing the guitar,singing,speak to them,speak to them 1001,8552680285,442,640,360,why is there two ropes tied to the person standing,3,85526802855,CW,to support the person,prop for photo,safety harness,pull the sleigh,playing tug of war,pull the sleigh 1002,8783897632,974,640,360,why did the man in white get off his bike at the start,4,87838976323,CW,ride the bull,too muddy to cycle,go across the pond,setting up,to push bike,to push bike 1003,4378803532,1310,640,480,why is the lady in beige folding her arms,0,437880353210,CW,watching,way of standing,she scored,leaving the place,hygiene,watching 1004,8531675050,1620,640,360,what is the possible relation between lady in black and white and the man in white,4,85316750504,DO,baby,siblings,fatherdaughter,husband wife,colleagues,colleagues 1005,6772999108,1467,360,480,why did the boy bend his arms,4,67729991082,CW,stretching,hug the girl,pick up something on the floor,arms were in pain,play guitar,play guitar 1006,4798585428,2697,640,480,why are the people standing,2,479858542810,CW,reading,gesturing,taking photo,light up the room,dancing,taking photo 1007,3814690167,453,640,480,how did the lady react when the baby approached her when she is performing,3,38146901675,TC,push baby away,make funny faces,happy to see the baby walking,she ignored baby,wave to baby,she ignored baby 1008,3263908208,300,640,360,what are the birds doing when the yachts are on the sea,1,32639082089,TC,feeding,flying,go forward to sniff again,swim in water,hold onto him,flying 1009,2669452260,456,640,480,how does the guy drink from the can,1,26694522600,CH,pinky in the air,straw,using his hands to unscrew the can,pour drink into cup,lean the can,straw 1010,6516459343,2697,640,360,how do the men appear while cutting the shoes,4,65164593439,TC,excited about experiment,confused,playing instrument,he watches the model move,serious,serious 1011,2809330695,2158,320,240,how does the baby feel while lying in the crib,4,280933069510,TC,restricted,confused,happy,enjoyable,restless,restless 1012,5919180502,1379,640,480,where does the person who was sitting in the chair walk to,2,59191805023,TC,walking towards dog,to the zebra crossing,near the man in grey,to his right,to the cashier,near the man in grey 1013,4123211145,2697,640,480,where is this video taken,2,41232111457,DL,backyard,snow mountain,room,computer table,train,room 1014,4542882771,866,480,640,where is the baby hanging out,3,45428827714,DL,along the roadside,bathtub,house floor,dining table,kitchen,dining table 1015,10597533885,1728,640,360,where is this happening,0,105975338856,DL,playground,in the day,beach,room,home,playground 1016,5681946487,848,320,240,why does the woman splash water onto the boy,1,56819464875,CW,to hurt the boy,to wash the boy,to play with the boy,to make the boy drink water,to make the boy cry,to wash the boy 1017,5406108447,1337,640,360,where is the girl hanging out,2,54061084474,DL,classroom,farm,play room,dance studio,gym,play room 1018,2705374471,1556,320,240,how many people are there in the room,3,27053744717,DC,three,one,four,two,eight,two 1019,5445581571,964,640,360,where is this video taken,0,54455815715,DL,living room,dinning table,computer table,kitchen,outside,living room 1020,4378803532,1310,640,480,why did the lady in beige look at the girl in red as she ran away,0,437880353212,CW,watching over kid,playing with girl,finished performing,attempt to fly kite,someone took her food away,watching over kid 1021,2599937944,449,500,375,why were the ladies watching the guy in black,4,25999379443,CW,learning,taking picture,enjoy the performance,like the music,watching him bouncing over stream,watching him bouncing over stream 1022,8797589693,2699,640,480,why is the lady in white holding a phone at the end,3,87975896938,CW,check message,speaking on phone,anwer a call,filming the event,playing phone game,filming the event 1023,7330294814,2298,640,360,why is the lady in beige holding a soft toy,1,73302948142,CW,trying to sell it,playing with baby,props for photo,cleaning the toy,tossing to dog,playing with baby 1024,11541421563,2403,640,360,what does the man in orange do after the woman in brown left at the start,4,115414215636,TN,push grey chair,annoints her,drink water,hold the animal,look at book,look at book 1025,7492398760,2697,640,360,what does the boy do after the lady starts running at the end,1,749239876011,TN,hold someone s legs,start running too,take off baby clothes,shift her feet,sit on the tricycle,start running too 1026,5349766264,1884,640,362,how is the man in brown checkered making music with his instrument,2,534976626410,CH,move fingers across piano,speaking in microphone,hitting the instrument with his hand,strumming guitar,press the keys,hitting the instrument with his hand 1027,5907839036,2697,640,360,where is this happening,0,59078390369,DL,bridge,trail,skate park,house,bed room,bridge 1028,4333544549,1065,640,360,why is the man in white bent down in the middle,4,43335445492,CW,carry the brown dog,look at the ants,pick up the white item,protect against the chemicala,caress the dog,caress the dog 1029,11566930393,872,640,480,why is the toy not ready to be played with after unwrapping it,1,115669303933,CW,got stuck,handle not installed,hard to balance,other hand occupied,comfortable at home,handle not installed 1030,6272786009,535,640,384,how do the people in the boat move the boat across the water,3,62727860090,CH,flexing their body and tail,walking,press the button,paddle,kick the water,paddle 1031,9256409422,2312,640,360,how did the lady in black protect herself from the cold,4,92564094220,DO,covered with blanket,hand gestures,crawling,woolen cap,wear jacket,wear jacket 1032,6443512089,2437,640,360,what does the child change the pace of his movement into,4,64435120895,TC,waddles up and down,stop continuously,no change,slower,faster,faster 1033,11584566583,376,640,480,how many people can be seen in the video,1,115845665836,DC,five,two,three,thirteen,eight,two 1034,2442307875,515,640,480,what do the children do after moving their hands next to their ears in the middle of the video,3,24423078757,TN,playing with train toy,jump up and down,playing,put down their hands,drags the table,put down their hands 1035,5064681723,602,640,480,how did the baby keep his head warm,2,50646817234,DO,thick clothes,mat,beanie,wear gloves,wear warm clothes,beanie 1036,9217939684,1660,512,288,how does the woman in pink react after the baby falls down,2,92179396848,TN,goes to help,put it down,reach out to hold baby,happy,smiles,reach out to hold baby 1037,3581585756,702,640,480,what does the girl do after posing with the woman,0,35815857567,TN,hug the woman,walk forward,continue cycling,smile and wave,playing with sticks,hug the woman 1038,11541421563,2403,640,360,how does the woman in brown take a closer look at the book at the start,1,115414215632,CH,look at screen,move her body forward,using a button,using the lights from their headband,with her right hand,move her body forward 1039,3206694342,1971,640,480,what does the boy on the right in front do when the others stood up again after the middle,1,32066943421,TN,touch the dinosaur,bends down,bite a slip of paper,hold s the rod,open the book,bends down 1040,4671452046,1306,640,480,how did the lady in purple prevent the baby from falling when he bend down to stir the cup,1,46714520465,CH,grab the collar,hold the stomach,secure in between her legs,in child restraint,grab the legs,hold the stomach 1041,9213637099,1539,640,360,where is this,2,92136370995,DL,horse enclosure,restaurant,park,childcare center,indoors,park 1042,8253302563,1056,640,360,where is this happening,3,82533025639,DL,bowling alley,beach,kitchen,home,hospital,home 1043,6727904179,962,640,360,why did the two man indoor turn their head to the right,3,67279041794,CW,look at each other,performing on stage,looking at painting,look at screen,posing for camera,look at screen 1044,7728559968,1480,640,360,what do the kittens do after sitting up at the end,3,77285599688,TN,crawls away,rubs against him,try to bite,look around,lady s leg,look around 1045,3456030972,755,640,480,what does the child do after making funny face in the middle,4,34560309726,TN,fidgeting,turn to his back,hold toy,upset,focus on abacus,focus on abacus 1046,7088595057,1052,640,480,where is this video taken,2,70885950576,DL,playground,stage,paddock,forest,construction site,paddock 1047,2782307049,461,640,480,why does the woman slide down the rope,0,27823070492,CW,doing a flying fox,lost balance,maintain balance,skiing,tripped,doing a flying fox 1048,5352022985,1411,640,360,why does the dog have to constantly jump up at the beginning,3,53520229850,CW,put the dog further,show excitement,to fight with cat,walking in the snow,excited,walking in the snow 1049,8552680285,442,640,360,how does the person standing move her arms,3,85526802852,CH,raise it up,wave them around,move sideways,push the stick backwards,move in circles,push the stick backwards 1050,5297811305,720,640,360,why is the woman holding the big instrument,3,52978113052,CW,to get the baby s attention,dance move,clean the bushes,shove the snow,moving baby s hands,shove the snow 1051,2482028659,643,640,480,why are there 2 people in black at the side of the stage,1,24820286595,CW,audience,sound turning,performing,wait for performance,director,sound turning 1052,4612723694,1681,640,480,what did the man do with the white bag after letting the snake out,0,46127236948,TN,throw it aside,drinks it,tocuh his nose,pass the ribbon to the lady,continue playing instrument,throw it aside 1053,5561024834,947,640,360,why does the boy bend down at the beginning of the video,1,55610248340,CW,encourage baby to play with boy,to flip,pick up the stick,look at purple thing on ground,holding a hen,to flip 1054,7223854838,413,640,360,why does the girl in pink carry a toy,4,72238548382,CW,it was a new present for her,watch the toy moves,posing for camera,prevent from being snatched,like it,like it 1055,8557532213,379,640,360,what did the boy in blue do after he made some hand gestures in the middle of the video,2,85575322136,TN,move puppet around,stand up,kicked ball,burn it,glasses,kicked ball 1056,5333075105,1168,640,480,why did the man stopped moving at the end of the video,0,53330751059,CW,rest,talking,he reached the shore,pick up ball,look at the dogs,rest 1057,3711681535,1070,640,480,why does the woman wear a belt around her stomach,2,37116815350,CW,hot weather,holding the console,safety,cold outside,to hold baby in her arms,safety 1058,6183104292,593,640,480,how is the tiger fed,1,61831042925,CH,hold it on shoulder,by zoo keeper,crawl down the rocks,dog shift using mouth,combs the cat,by zoo keeper 1059,6329077812,1835,640,360,where is the baby while him was fed milk,1,63290778126,DL,mobile,in lady s arm,pillow,baby trolley,living room,in lady s arm 1060,5017166671,2697,640,480,what are the people doing in the video,3,50171666717,TC,rugby,ski,cooking,music performance,watch tv,music performance 1061,4564478328,1410,640,360,how does the lioness attack the other lioness who was drinking water,2,45644783287,CH,using two pots,point,jump on its back,open arms,hold it tightly,jump on its back 1062,4378803532,1310,640,480,how does the child in stripes hold the larger sparkler after receiving it from the man in red,3,43788035323,CH,swing above him,hold and jump,pass to girl in red,lower it to the ground,hold above head and jump,lower it to the ground 1063,3550839192,1050,640,362,why does the train stop for a while before moving again at the end of the video,0,35508391922,CW,alight at station,check the time,wash its carriage,to play with the toy,to wait for other trains,alight at station 1064,3263908208,300,640,360,what is the person with red shirt doing on the yacht,3,32639082084,TC,playing the guitar,walk over to pull boat closer,adjust camera strap,enjoying scenery,sitting on chair,enjoying scenery 1065,10030609934,1680,640,360,how did the boy get the toy cars,4,100306099344,CH,lifts his truck up,press his leg against the pedal,given by man,presses the accelerator,take from table,take from table 1066,3469864014,867,320,240,how many cats were there,1,34698640145,DC,three,two,four,one,five,two 1067,4010069381,369,640,480,how did both the men play the instrument,1,40100693817,CH,press buttons,move handle,sitting,stand behind the baby,press keys with fingers,move handle 1068,4542882771,866,480,640,why does the baby look down the first time,3,45428827712,CW,picks up the grey jacket,pushing toy,toy dropped,to scoop the food,dog come to him,to scoop the food 1069,4968805923,313,640,480,why did the man holding the bat throw his bat down after hitting the water balloon,4,49688059233,CW,to wash it,playing it,practicing,break open the pinata,excited,excited 1070,4626535366,1468,640,360,what is the possible relationship among the people,3,46265353668,DO,colleagues,friends,dance partner,classmates,coworkers,classmates 1071,3375218204,2241,640,480,why does the boy lie down on the floor,1,33752182042,CW,fell down,let girl walk through,pet the dog,drinking water,grab something on floor,let girl walk through 1072,4970148391,732,640,480,what is the boy hitting that it splashes water on his face,0,49701483911,DO,water balloon,snow ball,milk pack,a cup of drink,beer bottle,water balloon 1073,6754608321,1617,272,480,how many people are shown in the video,1,67546083219,DC,eight,two,five,eleven,one,two 1074,6772999108,1467,360,480,what did the girl do in the middle of the video,3,67729991080,DO,fall down,show her toy,start dancing,clap,hit the drum,clap 1075,5235909148,354,640,360,how does the man lands on the platform on the other side near the end,3,52359091482,CH,cycle,stand almost fall,lean over,another man hep him,jog over,another man hep him 1076,10001787725,1021,640,360,where are the people hanging out,2,100017877256,DL,car,grassland,bed,road,studio,bed 1077,3974684583,735,640,362,how is the huge cylinder transported from one point to another,1,39746845836,CH,man pushes it,moving floor,lady pushes it,blue girl kicking,pulled with rope,moving floor 1078,10727696143,1821,640,480,what does the lady in red do as the boy was at the door,3,107276961432,TC,belay climber,run off,sit still on the chair,put glass cups away,adjust their things,put glass cups away 1079,7453733046,992,640,360,why does the man in white bend down after reaching the pavement,2,74537330462,CW,jump,traffic light for cars signal go,pick up the ball,training body,find video funny,pick up the ball 1080,6097994550,526,640,360,how many men were there,1,60979945508,DC,seven,two,four,three,one,two 1081,11966080214,1531,640,1138,how does the girl move the toy at the beginning of the video,2,119660802141,CH,kick it,push it in the trolley,with her hands,roll it around,swing it around,with her hands 1082,6205856607,978,272,480,what does the horse do after it turns back to the girl the second time,0,62058566071,TN,play with her hair,scrunch her legs,moves with horse,crawl,walk off,play with her hair 1083,5875242364,427,640,384,where did the baby put his fingers when he was sitting in the makeshift pool,2,58752423641,TC,nose,table,mouth,bowl,her feet,mouth 1084,2940373590,306,640,480,why is the lady and man in close proximity,3,29403735900,CW,moving the dog,talking to each other,it s sunny,dancing together,attending taekwondo class,dancing together 1085,2705374471,1556,320,240,how did the baby react when the older kid is throwing the show up and down next to the baby,1,27053744711,TC,smile,want to play,move backwards,gets up and start crawling,hug and pat baby,want to play 1086,2976913210,542,640,480,why is the man unable to ride the vehicle,0,29769132100,CW,stuck,fell off from the vehicle,a barrier in front of him,met with dead end,plastic trapped among the wheels,stuck 1087,4770216656,960,640,480,why did the man stretch his hand out at the end,3,47702166565,CW,touch the cat,show the dog to the camera,carrying baby,push swing,performing acts,push swing 1088,6018490041,825,640,480,why are the men rocking their hips back and forth,4,60184900411,CW,teach baby to dance,moving with rhythm,for balance while skating,dancing,guide the bat to hit cans,guide the bat to hit cans 1089,5889898795,2697,640,360,how does the second man in black put his hands when he ziplines down,0,58898987954,CH,holds his string,bend,stretch hands out,keep near his body,touching his shirt,holds his string 1090,3972259774,1063,640,480,what do the people do before the man in yellow hands the box over to the lady,3,39722597743,TP,take the things out of box,shake hands,kneel,make gestures to camera,looking at card,make gestures to camera 1091,2503404966,840,640,480,why is the boy in red sitting down on the toy truck,4,25034049660,CW,posing for camera,imitate the girls' actions,adjusting the wheels,observe how the truck moves,playing with it,playing with it 1092,13569831214,1664,640,480,what did both of them do after completing skiing,3,135698312146,TN,jump and pose,bend down,lift and hold by the side,raised their hands,make turn,raised their hands 1093,4264435046,566,640,480,how many dogs are there,1,42644350461,DC,one,two,four,six,nine,two 1094,6793786769,1158,640,360,why did the person near the table touch the train when it approached him,3,679378676910,CW,transport something,put items on train,prevent train from dropping off table,change its direction,prevent train from going off track,change its direction 1095,4164771889,503,640,480,how does the boy being buried react as his friends scoop sand on him,1,41647718895,TC,fell down in the pool,laughing,pick it up,throw out white item,watching the boy,laughing 1096,2400715506,414,320,240,how did the person handle the animal,2,24007155064,DO,with difficulty,carry,gently on the palm,hold the rope,touch the head by hand,gently on the palm 1097,3942617402,738,640,480,why is there so much smoke around moving train,1,39426174023,CW,burning of fuel for energy,old engine technology,check for safety,the people s belongings,city,old engine technology 1098,4092992100,461,640,480,how many people are filmed,2,40929921009,DC,three,nine,two,five,four,two 1099,7988210561,320,640,384,how did the baby reacted when the toy fell at the end of the video,4,79882105612,TC,carry the baby down,fall,stand up and dance,left,does nt feels good,does nt feels good 1100,3124551255,1962,640,474,why did nt the man at the back play with the boy,4,31245512552,CW,push out water from the toy,boy did not liked it,watching television,drinking sand water,busy with some other work,busy with some other work 1101,8531675050,1620,640,360,how many people are acting on the stage,0,853167505010,DC,two,nine,one,eleven,six,two 1102,8513603944,919,640,480,why did the child in blue helmet turn his head back while sliding,2,85136039441,CW,somone called out to him,place the ball properly,check where other kid is,check where the dog is,calling for the girl,check where other kid is 1103,4815534482,2250,640,362,why did the boy stop the car halfway through driving,1,48155344823,CW,to get the dog out,press horn,beat him up,distracted,playing with each other,press horn 1104,7728559968,1480,640,360,how are the kittens positioned at the start,4,77285599685,DO,hugged by man,look at the hand,feed water and hug the doll,side to side,lying down,lying down 1105,8594314852,377,640,360,how does the child in blue communicate to the lady in pink,3,85943148523,CH,pushes it,drawing on paper,kiss hand,hand gesture,hold her arms tight,hand gesture 1106,5145526755,1675,640,360,where is this happening,4,514552675510,DL,desert,garden,bedroom,school,wildlife reserve,wildlife reserve 1107,8594314852,377,640,360,what did the lady do after the girl point in front of her near the end,2,85943148524,TN,hi-five,repeat the pose,turn to look,walk away,cook,turn to look 1108,2932897373,558,500,375,what is the relationship between the man in grey and the lady in white,3,29328973733,DO,parent offspring,classmate,trainer trainee,couple,colleagues,couple 1109,10030609934,1680,640,360,where is this video taken,4,100306099346,DL,playground,dinning table,stage,house,porch at garden,porch at garden 1110,9565310990,1066,640,360,what is the baby doing,2,95653109904,TC,drawing,sleeping,crawling on the ground,feeding the dog,hug lady,crawling on the ground 1111,3303565503,1115,480,640,why do the man and lady suddenly stay still at the end,2,33035655036,CW,interacting with boy,listening to the woman in black,get picture taken,ensure safety,look at the side,get picture taken 1112,3112351937,448,640,480,what did the shirtless man do after the man with the flippers put his arm around him at the middle of the video,4,31123519376,TN,singing away from the microphone,clap his hands,put down ball,kiss baby,do the same thing,do the same thing 1113,5138093706,931,640,480,why did the baby moved back a little when he was trying to hold the handles,4,51380937068,CW,full cushion,disturbed,paddle backwards,babbling,lost balance,lost balance 1114,9576671750,825,640,360,how did the person show the sides of the phone,0,95766717505,CH,turn the phone,flip side to side,mike stand,by the driver,using his fingers,turn the phone 1115,5026660202,2697,640,480,what are the people doing on stage,3,50266602024,TC,adjusting microphones,taking a photo,cleaning instruments,performing,putting stage decorations,performing 1116,11587211476,1470,640,360,how did the people protect themselves from the cold weather,4,115872114765,DO,shine light,stick,rode on truck,wear facemask,wear winter clothing,wear winter clothing 1117,2824317018,1606,500,375,how did the girls behave friendly with the boy,0,28243170185,CH,bend down,sits on a chair beside him,hold his hands,gave him a red ball,kiss him,bend down 1118,8752043000,1572,640,360,why is the person pushing the baby pram,3,87520430000,CW,walking in park,catching a train,get pram out of the way,playing with the baby,testing the pram,playing with the baby 1119,6754608321,1617,272,480,what did the girl do after she looked at the baby near the end of the video,2,67546083217,TN,touch man s head,turn to baby and play,hug baby,smiles,cry,hug baby 1120,4488066715,2638,320,240,how does the baby feel when the man takes away the bowl,3,44880667158,TC,contented,happy,sleepy,sad,excited,sad 1121,7728559968,1480,640,360,why do the kittens kick each other,4,77285599682,CW,snatch toys,snatch food,disturbing one another,annoyed with one another,play fighting,play fighting 1122,9473479950,608,640,480,what is the lady eating as she looked at the baby,3,94734799500,TC,apple,biscuit,grapes,watermelon,chocolate,watermelon 1123,3112351937,448,640,480,why are the two men swimming upwards,1,31123519372,CW,got on the board,swimming to the surface to breathe,stunt,bathing,to splash water at them,swimming to the surface to breathe 1124,8505893258,888,640,360,why do the girls huddle closely to the lady in pink at the end of the video,3,85058932585,CW,read together,playing,resting,take photo together,reaching for microphone,take photo together 1125,8189958994,1869,640,360,what is the person doing in the park,2,81899589941,TC,flying kites,play with child,walking dogs,talking,adjusting the swing,walking dogs 1126,3427674558,870,640,480,what do the people do with their hands while turning around,3,34276745585,TC,touch the screen of phone,drawing,standing,move them slowly,watching video on tablet,move them slowly 1127,2547885226,406,640,480,why is the kid holding toy dinosaur in the sand,1,25478852260,CW,build sandcastle together,playing,pass to girl,shake off the sand,create a hole,playing 1128,2987766537,497,500,375,what did the baby do at the end when he cannot change the posture,2,29877665377,TC,stand up,smile,starts crying,crawl to adult,lie backwards,starts crying 1129,7771650716,1805,640,360,why did the man put the dog on the floor after carrying it,3,77716507162,CW,let it roll around,he was looking for something,bathing dog,let it walk,picking up the toy,let it walk 1130,8277866423,829,640,360,what did the black dog do after barking at the brown dog,2,82778664236,TN,walk away,walk back,chew the bone,get up slightly,lick the other dog,chew the bone 1131,4190655097,1290,640,480,why was the cat carried up at the end of the video when it tried to leave the cot,2,41906550973,CW,to play with the man,adjust the position of the cot,keep it calm,get the food,waiting for owner,keep it calm 1132,8254300526,1104,640,1138,why does the baby look upwards towards the end,2,82543005268,CW,look at squirrel,look at sun,look at adult,give bird the fruit,smile,look at adult 1133,3322503255,1233,320,240,why does the person stop waving his hands towards the end,0,33225032554,CW,plane has moved forward,wait for opponent to react,to prevent baby from hitting face,get off stage,lure the dog to jump,plane has moved forward 1134,3557498300,849,640,480,why does the adult move towards the two kids at the end,0,35574983004,CW,separate the kids,show grass,kiss them,take photo of them,feed them,separate the kids 1135,6329954198,692,640,360,how did the man in black adjust his position,1,63299541985,DO,using the mouse,keep getting up,hit the drum,running,jacket,keep getting up 1136,2573424030,1470,320,240,why is the dog on leash,2,25734240302,CW,show affection,pets,keep it under control,wants person s attention,comfortable,keep it under control 1137,8224492254,972,640,480,how did the adult support the baby,1,82244922548,CH,strapped into pram,hold baby with his hands,on white lady s back,on lady s lap,with a rope,hold baby with his hands 1138,9213637099,1539,640,360,what did the girl do before she put her hands up in the middle,1,92136370990,TP,claps,jump,bow,lay down,singing,jump 1139,4465235803,1014,640,428,where is this happening,3,44652358036,DL,beach,hospital,bedroom,barber,on the road,barber 1140,9256409422,2312,640,360,how did the lady show agreement at the end of the video,4,92564094227,CH,shake hands,claps,high-five,look at the man and smile,nod,nod 1141,8188651630,571,640,480,why is the cat moving its leg up and down,3,81886516308,CW,cleaning itself,playing with other cat,walking around,playing with human s foot,sleeping,playing with human s foot 1142,5940941487,838,640,362,why is the girl hitting the box that she is sitting on,3,59409414872,CW,try to play,birthday celebration,to pose,playing the instrument,open the box,playing the instrument 1143,6898821807,585,640,480,how does the boy react to the baby pushing his hand away,4,68988218072,TC,cry,run to woman,lean forward,walk away,laugh,laugh 1144,8080432373,2697,640,360,how did the man ensure that the girl do not fall when she is going down the stool,0,80804323738,CH,put hand out to support,carry girl down,step on stool,hold girl tightly,hold the side of stool,put hand out to support 1145,4264435046,566,640,480,what does the dog do as the lady in red jogged in the first half of the video,1,42644350462,TC,stay in car,run along,play with water,herd the sheep,resting,run along 1146,3171006258,1099,640,480,how did the man remove one of his skates,4,31710062584,CH,kicks his skates away,shake his leg vigourously,pull the string,untie the knots,using the ski sticks,using the ski sticks 1147,3383804222,999,640,480,what does the baby panda do after licking the older panda for a while at the start,2,33838042222,TN,look at the panda touching it,take the gift from the lady,turn away,touch dog s nose,push dog away,turn away 1148,3105728894,1512,640,480,why does the man wearing a red cap bend down at the start of the video,2,31057288940,CW,vomitting,tying shoelaces,pick up ball,feeding his child,fell over,pick up ball 1149,11244289523,552,640,360,what did the lady in black do after the baby picked up the towel,4,112442895237,TN,continue feeding,touch baby s feet,stares at camera,rub the baby s face,keeps it back,keeps it back 1150,3981865268,1109,640,480,why is the person looking at his laptop the whole time,2,39818652682,CW,editing the music,show the picture from camera,for music score reference,distracted,watch video,for music score reference 1151,10030609934,1680,640,360,what did the boy do after he approached the grey seat in the middle of the video,0,100306099342,TN,moved the car on the table,look at what he is pointing,catch baby,walk to the box,play with soil,moved the car on the table 1152,3066064005,819,640,480,how did the group of women feel while they are about to dine a meal,0,30660640053,TC,happy,sleepy and bored,angry,aggrieved,sad,happy 1153,2810112808,2669,320,240,how does the man in grey feel when looking at the cards in his hands near the beginning,2,28101128084,TC,happy,sad,surprised,shy,confident,surprised 1154,4217422838,1261,640,480,why did the boy in green rip out the green wrapper from the spear,4,42174228381,CW,generate required shape of glass,to play with him,stability in the woods,wide hole on the ground,open present,open present 1155,2932897373,558,500,375,what did the man in grey and lady in white do after looking at the sign board in the middle of video,1,29328973734,TN,changes the camera focus,walking,embracing it,turn camera around,a cup,walking 1156,4761953886,797,640,360,why does the girl put her hand on the dog in the middle,3,47619538862,CW,feed dog,pat it,let lady hug it,caress dog,carry dog,caress dog 1157,6713120511,1664,640,360,what does the lady at the top do as the man in black walked down the slope,3,67131205114,TC,stands near the slope,leash,speaks to the audience,position herself to slide down,follow after the girl,position herself to slide down 1158,3121571439,1212,640,428,where is this happening,1,31215714398,DL,footpath,outside house,on the road,in the sea,home,outside house 1159,6297019062,1746,640,360,how are the babies kept in place in the video,1,62970190629,CH,man holding them,sitting in baby chairs,lady holding them,sleeping,carrying in her arms,sitting in baby chairs 1160,9082180631,406,640,360,how did two children in pink move forward,0,90821806314,CH,boy pull the sledge,adult drive them,run forward,jump forward,skate,boy pull the sledge 1161,2454242177,1574,320,240,where is the baby is playing,1,24542421777,DL,along the roadside,home,in the room,on a couch in living room,playliving area,home 1162,11681746823,608,640,360,where are the people hanging out,3,116817468235,DL,playground,grassland,outside a building,bedroom,outside house,bedroom 1163,2821788355,765,320,240,why did the man squint his eyes,0,28217883554,CW,got water in it,get oxygen,look at the book,balance better,fashion,got water in it 1164,8254300526,1104,640,1138,why is the baby sitting down,0,82543005264,CW,playing,watching television,reach for the book,bathing,lose balance,playing 1165,10109097475,2698,640,360,how many planes are involved in the video,3,101090974758,DC,six,four,three,one,eight,one 1166,4815534482,2250,640,362,why is the boy looking around,4,48155344821,CW,someone called him,looking for new directions,playing hide and seek,searching for the door,check for cars,check for cars 1167,7364407194,312,640,424,how does the lady in yellow prepare the ground so that the babies can lie down on the floor comfortably,1,73644071940,CH,lying,place blankets,clean it,rock the baby,caress baby,place blankets 1168,3158022797,2697,640,480,why did the woman in yellow and the man in pink stopped dancing at the end of the video,0,31580227978,CW,not their turn,take a photo,throw at the man,take water bottle,take back her shed,not their turn 1169,8241491518,891,640,480,what does the man do after cutting off the leaves for a while,1,82414915188,TN,changes direction,pull leaves,turn the model,kneel down,pick up something else,pull leaves 1170,4189100053,874,640,360,what does the woman do after scratching the fork with her finger in the middle,0,41891000538,TN,lick her finger,touch another bell,hold the dog,takes the spoon back in bowl,scoop icecream,lick her finger 1171,2957808913,598,640,480,how does the man in black jacket move his hands as he moved his legs forward after the middle part of the video,4,29578089137,CH,get people to clap with him,raising his hands,throwing cap,hurl forward while sitting,swing,swing 1172,3502722122,425,480,640,why does the boy keep pushing the green cover down in the middle of the video,4,35027221227,CW,to get the toy,he is bored,he was angry,to tear the page,prevented him from seeing the book,prevented him from seeing the book 1173,4419096437,1584,640,360,why is the person moving his hand,2,44190964371,CW,to adjust toy,drawing,put cat to sleep,washing clothes,watering plants,put cat to sleep 1174,5803861992,2145,640,480,how did the baby ensure her head is comfortable,3,58038619923,CH,lady hold it,wear beanie,shake her head,lying on the pillow,layers of blanket,lying on the pillow 1175,5297811305,720,640,360,where is this happening,3,52978113059,DL,beach,karaoke room,hospital,outside the house,trail,outside the house 1176,7288107396,507,640,360,why did the boy extend his hands toward the present,2,72881073968,CW,push it off the table,hit it,to pick it up,pass to adult,facing the camera,to pick it up 1177,8189958994,1869,640,360,how does the lady in blue show affection towards the black dog in the middle of the video,1,81899589942,CH,pat the dog,caress the dog,wave the toy in front,hold on to its tail,kisses dog,caress the dog 1178,4815534482,2250,640,362,why is there a yellow band on the toy car,1,48155344826,CW,checking vehicle,seatbelt,teething,part of the experiment,excited playing with it,seatbelt 1179,4978714491,1200,640,480,how did the bus knew when to start moving,4,49787144917,CH,pedestrians move away,holds the pole,handle,signalled by man,light turns green,light turns green 1180,3218498932,892,640,480,what is the relationship between the boys in the videos,3,32184989323,DO,colleagues,classmates,brothers,friends,performers,friends 1181,7453733046,992,640,360,how does the girl in red react after being splashed in the face by water in the middle,1,74537330469,TN,look at him,turns around and cover face,hold on to stairs in pool,towards the man in white,smiles,turns around and cover face 1182,3359075894,414,640,480,why does the man in black stand a distance away from the man holding a bat,0,33590758949,CW,throw balls,watching the show,avoid geting hitted,wave his whip,emphasise points,throw balls 1183,10001787725,1021,640,360,how do the people feel hanging out with one another,0,100017877254,TC,happy,embarrassed,sad,angry,frustrated,happy 1184,6277800530,876,640,360,how many people were on the jeep,2,62778005304,DC,two,five,one,six,nine,one 1185,7988210561,320,640,384,why did the toy fell at the end of the video,3,79882105613,CW,cat jumps into it,lost interest,sits down to play,imbalanced,pick up ball,imbalanced 1186,3164519967,1090,640,480,where is the old lady trying to put the pacifier after the baby spit it out,4,31645199677,TN,adjusts the baby in grey,smiles,put cotton pad,move the yellow bowl away,back into baby s mouth,back into baby s mouth 1187,3321261856,855,640,480,what did the girl do as the cat was checking the bait in the middle of the video,4,33212618563,TC,cry,caress the cat,skip and look around,cycle forward,smile,smile 1188,8080432373,2697,640,360,what did the girl do when the television screen turned on,3,80804323737,TC,jump,start gesturing and speaking,wave to camera,turn to look,talks and smiles,turn to look 1189,7164729910,656,640,360,why is the boy holding the steering wheel at the start of the video,0,71647299100,CW,drive toy car,playing,excited,let the girl feed him,to steer it,drive toy car 1190,2930782930,939,640,480,how did the lady support the baby in the video,3,29307829307,CH,touch fingers,rubbing the baby,hit with stick,carry baby with right arm,hand behind head,carry baby with right arm 1191,8505893258,888,640,360,how many people were in the video,2,85058932589,DC,seven,twelve,six,five,two,six 1192,4798585428,2697,640,480,why did the woman in black turn to look at the man in yellow as he speaks,1,47985854282,CW,paying attention to him,listening to him talking,wiping,show agreement,listen to the lady talking,listening to him talking 1193,5702201498,335,640,1138,why did the man open his eyes after hugging the pillow for a while,2,57022014981,CW,distracted by the camera man,point to the video recorder,check out the camera,walk to the kitchen,call out for the baby,check out the camera 1194,7651639778,1963,640,480,why does the man in brown jacket point at the steel pipe after the man wearing hoodie starts tying something,1,76516397781,CW,demonstrate holding position,to show him where to tie,ready for rock climbing,hold the pipe,push the pipe,to show him where to tie 1195,3851961428,2062,640,480,what did the person on the most right do after he did a gesture to the man in red,3,385196142810,TN,smiles in the camera,take photos,grab his shoulders,take out goggles,roast coffee,take out goggles 1196,4166942239,590,640,480,why are the men dressed in formal,2,41669422390,CW,singing,giving talk,important event,work,keep warm,important event 1197,4010069381,369,640,480,why is there a speaker over the pole where the lady is standing,3,40100693814,CW,watch deers,speaking to audience,talking to girl,play the music,to get the baby s attention,play the music 1198,6300775954,1734,480,800,where is this video taken,4,63007759545,DL,speech event,roadside,studio,outside,gym,gym 1199,6690256857,344,640,360,what are the man and boy doing with the dog,1,66902568572,TC,carry dog up,showering it,squat down and pat the dog,playing with dog,playing,showering it 1200,4465235803,1014,640,428,how many people are involved in the video,2,44652358037,DC,five,six,three,one,four,three 1201,8627074061,2697,640,360,why did the lady raised the cup and plate after putting them together near the beginning of the video,0,86270740615,CW,show the girl,blow them,clean them under water,feed baby more food,for girl to eat,show the girl 1202,3340340268,1289,640,480,what does the girl in green do after lifting the yellow bucket up briefly near the start,0,33403402682,TN,look around,run to the back,paddle,kick ball back,put inbox,look around 1203,4740074365,584,640,360,why are the bride and groom holding each other,1,47400743657,CW,to coax her to walk,dancing,bow towards each other,posing for photos,playing with each other,dancing 1204,2984974097,899,500,375,how does the girl express her excitement while cycling,0,29849740978,CH,smile brightly,jump,cycling outfit,run around,claps,smile brightly 1205,2829462646,2500,352,240,what event is occuring,1,28294626465,DO,children s show,introducing the hall,party,traditional formal musical performance,piano,introducing the hall 1206,4882821564,2697,640,480,why did the boy return to the christmas tree after unwrapping one present,2,48828215643,CW,blow the candles,decorate the tree,wants to continue unwrapping,look at the tree,put the wrapper aside,wants to continue unwrapping 1207,6159637889,2250,640,1138,why does not the baby dance in the video,1,61596378891,CW,sledding,sleepy,fall down,wants to eat,busy playing with toys,sleepy 1208,6690256857,344,640,360,why is the dog in the pail,2,66902568579,CW,domesticated,to play with him,bathing,posing for camera,searching food,bathing 1209,3508407941,513,640,480,how does the baby feel about the bouncing,1,35084079412,TC,bored and uninterested,happy,satisfied,shy,emotional,happy 1210,4485707628,1933,352,288,why are the dogs running around,3,44857076280,CW,play with cat,herd the sheep,run with man,chasing each other,catch ball,chasing each other 1211,2735019707,583,640,480,why does the man reach out his hands at the end of the video,4,27350197073,CW,gesturing in his speech,talking,part of practice,to show the cat s body,play with baby,play with baby 1212,4279106208,559,640,360,why did the woman talk to the child after going down the slide together,0,42791062087,TN,child wants to go again,raise her left hand,put on table,cry,move backwards,child wants to go again 1213,4485707628,1933,352,288,why does the black dog put out it s tongue towards the end,4,44857076284,CW,smelling it,cold,snatched the bone,stay afloat,tired,tired 1214,6542914065,300,640,360,what does the other three people do after the man in grey pats the ball in the middle,4,65429140655,TN,runs toward the ball,walks away,look at man in light brown,watching,run,run 1215,6024684644,519,640,360,where is this place,4,60246846449,DL,zoo,field,train station,classroom,beach,beach 1216,5134317883,1890,640,360,what does the man in red do after scooping using a spoon near the end,1,513431788310,TN,put pieces on board randomly,take out price with knife,dog treat,open her mouth,turned to talk to her,take out price with knife 1217,3562017845,1200,640,428,what did the bird that crossed the water do after the bird behind sat down at the middle of the video,3,35620178456,TN,push box to where he started,put it down,talk,shake body,kiss baby,shake body 1218,3846475848,2138,640,480,what does the ferret do as the man is covering it with towel,2,38464758486,TC,jumps,closed the water bottle,try to run out,adjust them,paddle other side,try to run out 1219,6201488511,2575,640,360,how did the lady adjusted her hair,4,62014885116,CH,tie it up,wave hand and move body,wear kimono,reach out,with her hand,with her hand 1220,8387356484,1022,604,1072,where did the baby turn his head to at the end of the video,0,83873564845,TC,left,right,back,look back to keyboard,look at the rope,left 1221,8740703217,602,640,360,what does the baby do after picking up the food,2,87407032172,TN,nothing,look behind him,eat the food,put on sofa,smile,eat the food 1222,2796821016,1851,500,375,why does the boy in white stop rolling and start again in between,1,27968210163,CW,feel hot,boy in striped blocking his way,to get the toy,distracted,lower the baby,boy in striped blocking his way 1223,4465235803,1014,640,428,why is baby looking back occasionally while having the haircut,4,44652358032,CW,get it out of her face,happy about the baby,entertained,wants to move,checking,checking 1224,3524939594,436,320,240,how do the men on the cart react when the man pulling it swaying the cart from side to side,1,35249395948,TC,riding on the snow,sway head too,stand up,hold the bottom,tilts bottle to pour liquid in,sway head too 1225,4815534482,2250,640,362,why is the boy touching the keys at the center of the car,3,48155344822,CW,remove keys,clean the keys,opening a box,adjust keys,unlock treasure chest,adjust keys 1226,6018514357,1280,640,1138,how did the man help the baby get off the slide,0,60185143573,CH,hold baby s hand,pull the baby down,push the baby forward,carry the baby,with a rope,hold baby s hand 1227,12392885583,929,640,480,why did the woman put her hand in front of the baby s head,2,123928855839,CW,play with baby,position for photo,protect baby,take turn to care for baby,excited,protect baby 1228,2482028659,643,640,480,why is there a flash of light in the middle of the video,1,24820286596,CW,stage light,photo taken,people are recording santa,spot on man,it is raining,photo taken 1229,6011836129,1447,480,360,why are the women kneeling,0,60118361290,CW,doing activity,upset,playing the drum,wash hands,they are praying,doing activity 1230,4087013668,1442,640,474,how is the lady in pink rested beside the baby,3,408701366812,CH,standinng up,on a roacking chair,lying on her back,sitting,rub the baby s head,sitting 1231,3375218204,2241,640,480,what do the children do after the man lies down in the middle,4,33752182047,TN,feed baby,crawl around,clap their hands,put fingers in mouth,move over him,move over him 1232,5429688959,2490,640,360,how many people are playing instruments,2,54296889596,DC,five,eleven,one,four,three,one 1233,3107742409,1604,500,280,why does the man put both his hands in front of him while sitting down,0,31077424096,CW,hold baby firmly,playing piano,crying,demanding for some food,clapping his hands,hold baby firmly 1234,10030609934,1680,640,360,how did the boy react after someone pointed at the toy cars,2,100306099343,CH,take the cars,kick the cars,not interested,walk away,wear glove,not interested 1235,4838145161,1921,640,480,what is the animal shown in the video,4,48381451618,DO,dog,fish,rabbit,birds,cat,cat 1236,9873067604,920,640,360,why are the children happy,0,98730676040,CW,singing song together,lady tickles him,baby on car,dancing,magic tricks,singing song together 1237,2735019707,583,640,480,what does the boy do after talking to the man at the beginning,2,27350197077,TN,play with toy,wave,start hitting drum harder,turn around,pick up pink object,start hitting drum harder 1238,8188651630,571,640,480,why is the cat lying on the carpet,1,81886516300,CW,watching the adult,playing,resting,getting her attention,to fight with dog,playing 1239,3046900922,539,640,480,why does the man swing the child left to right after the pile of leaves is dismantled,1,30469009223,CW,get his attention,continue playing,getting ready,access the fruits,scared get hit,continue playing 1240,11244289523,552,640,360,why did the lady in orange stripes approach the baby and wanted to carry her,0,112442895235,CW,sit next to her,reward the baby,get the baby to wave back,make it tighter,put on keyboard,sit next to her 1241,8505893258,888,640,360,what was the lady in pink doing to the girl with floral shirt,0,85058932586,TC,holding her hand,pushing her,passing her a toy,fixing her hair,lifting the girl up,holding her hand 1242,4822859674,861,640,480,why is the girl sitting on the rocking chair moving the controller on her hand at the end of the video,2,48228596744,CW,control her phone,adjust her tricycle,playing game,upset,lull baby to sleep,playing game 1243,3388598772,335,640,480,what does the man with a white cap do ater the man in blue and the woman in black finished kissing,1,33885987723,TC,talk to man in blue,put cup on table,lift her,flip cup for game,claps his hands,put cup on table 1244,2495861393,1499,500,283,how do the people prevent their clothes from getting dirty,0,24958613930,CH,wear apron,hats,wear diapers,helmet and vest,wear a bib,wear apron 1245,6516459343,2697,640,360,why does the man in green hold a shoes in his hand at the start,3,651645934310,CW,patient s shoes,give to man next to him,to wear,to cut it,wear on baby,to cut it 1246,6297019062,1746,640,360,how was the baby in yellow kept safe on the baby chair,2,62970190620,CH,rock it,held by lady,seat belt,blanket,wear thick clothings,seat belt 1247,2567843468,572,320,240,why is the girl wearing cap,3,25678434681,CW,avoid hair from getting messy,pose for the camera,copy the lady,it s sunny,looks cool while dancing,it s sunny 1248,7492398760,2697,640,360,what does the lady do after holding the hands of the boy for a while in the middle,2,749239876010,TN,kiss baby,help the baby walk,pick up camera,points to the flower,touches his head,pick up camera 1249,7330294814,2298,640,360,why did the late in beige put the pooh bear onto the floor,1,73302948145,CW,tired of holding it,playing with baby,no longer interested,want to throw it away,scared,playing with baby 1250,8513603944,919,640,480,how many children are there,1,85136039446,DC,one,two,four,nine,three,two 1251,5549243726,527,640,360,why did the girl jump up and down in front of the baby,4,55492437261,CW,to jump over it,playing with another boy,engage girl,to sit beside her,play with baby,play with baby 1252,2809330695,2158,320,240,how many times does the baby attempt to flip over,4,28093306955,DC,five,one,four,two,three,three 1253,3345608051,2250,640,480,why are the men surrounding the two dogs,4,33456080513,CW,to catch the dog,stop them from fighting,chatting,lure dog to jump,watch dog fighting,watch dog fighting 1254,7651639778,1963,640,480,why does the man in brown jacket raise his left arm after pointing at the steel pipe,2,76516397782,CW,digging hole,spraying water,to give the cable tie,too heavy,adjust seating position,to give the cable tie 1255,5026660202,2697,640,480,how is the focus of the performance kept solely on the stage and not the audience,4,50266602022,CH,signalled by a man,camera lights,decorating the stage,arrow directions,stage light,stage light 1256,3814690167,453,640,480,who did the baby approach at the start,0,38146901671,DO,the lady,man in white,man in grey,man in black,his sister,the lady 1257,2829462646,2500,352,240,why is there a man in brown resting at the side of the wall when camera was panned to show the interior,3,28294626467,CW,playing the guitar,changing his shirt,trying to engage other people,taking a break,play with the boy,taking a break 1258,5561024834,947,640,360,why does the boy turn around after reaching the bookshelf,4,55610248341,CW,look for other toys to play,surprise,exploring the christmas stuffs,he is excited,get back on the bed,get back on the bed 1259,5801184682,1683,640,480,what did the human do when the cat hid before the black bag,4,58011846829,TP,goes near litter box,bite black cat s body,walk forward,sit down,pick the cat up,pick the cat up 1260,13884293626,5395,640,360,why is the man in brown standing behind the podium,3,138842936260,CW,repair it,need to play the drum,engage the audience,giving lecture,adjust screen,giving lecture 1261,2930782930,939,640,480,how did the lady show affection to the boy in the middle of the video,0,29307829301,CH,kiss him,touch baby face,pick up toy,bend down to see,puts hand on the baby s head,kiss him 1262,3026084730,2205,640,480,what did the man in the middle do with his spectacles after he took it out,0,30260847309,TN,folds the spectacles,stand up,snaps his fingers,snip of some hair,press the buttons,folds the spectacles 1263,2810112808,2669,320,240,what does the man in red do before placing the card down at the start,3,28101128081,TP,chewing something,run to the plant,behind him,contemplating to put card down,carry weight,contemplating to put card down 1264,3383804222,999,640,480,what is the response of the older panda as the baby panda scratches it in the middle,3,33838042223,TC,lie on it,move around,paw at it,elated,touch his arm,elated 1265,3526597179,807,640,360,what did the lady in white do after the lady in yellow turned to the man,1,35265971798,TN,hit her with cushion,moved,holds onto a plastic box,try to take microphone,play guitar,moved 1266,3524939594,436,320,240,what is the relationship between the men,1,352493959410,DO,cowboy,friends,parent offspring,team member opponent,trainer trainee,friends 1267,9576671750,825,640,360,why did the person turn the phone the whole time,1,95766717500,CW,photo taking,show sides of phone,spinning the phone,playing with the phone,doing a trick,show sides of phone 1268,4378803532,1310,640,480,what did the girl in red do after she approached the boy to look at the sparkles,4,43788035328,TN,give her something,take photo,touch the baby s chin,happy,walk away,walk away 1269,6018490041,825,640,480,why did the man in white stomp his right feet before the game,0,60184900413,CW,getting ready,stomping on grass,trying to make himself taller,trying to kill insects,to adjust posture,getting ready 1270,4740074365,584,640,360,what is the occasion in the video,1,47400743655,DO,colleagues,wedding,warm up for boxing match,speech,phone,wedding 1271,4584426085,2697,360,480,what did the lady do after grabbing the red toy after the middle part of the video,0,45844260852,TN,attract the dog,run,smiles at the baby,lift the club up,moves round,attract the dog 1272,4087013668,1442,640,474,why did the baby throw the orange stuff back into the bowl,2,40870136680,CW,play dough,feed the cat,play with food,cleaning up,feed the dog,play with food 1273,4968805923,313,640,480,what is the man in white holding behind his back before he moved his arms,2,49688059231,TP,airplane,kites,bat,racket,ball,bat 1274,8797589693,2699,640,480,what does the blonde lady do after the man in blue stands up at the start,0,87975896935,TN,bites her pen,take step up,stand up,hold boy s hand,point at his basket,bites her pen 1275,5173770364,2388,640,360,what does the baby do after removing her hand from the leg at the start,4,51737703644,TN,plays with the baby,bounce the baby,clip the cord,touch the leg,put at foot instead,put at foot instead 1276,3441428429,2697,640,480,why does the female skater suddenly hook her arm around the make skater s arm,3,34414284297,CW,perform for the audience,extend it,dance move,performing stunt,mimicking the tv show,performing stunt 1277,2731071928,1959,500,375,why is there an instrument on the girl s lap,3,27310719280,CW,dance move,performing,feed the boy,girl playing with it,read to boy,girl playing with it 1278,4147398280,1716,480,360,how did the boy strategise where to turn next,0,41473982802,CH,look all around the rubik once,ask for help,guided by the video,refer to instruction manual,looks at his script,look all around the rubik once 1279,2782307049,461,640,480,why did the lady wear helmet,1,27823070490,CW,cycling,flying fox,ride horse,on scooter,skiing,flying fox 1280,3557498300,849,640,480,why does the boy in blue run forward,4,35574983005,CW,finding the other children,chase the ball,to play with dog,to go to the lady,flying kite,flying kite 1281,9917882506,974,512,288,where are the children riding the bicycle,2,99178825066,DL,balcony,study room,outdoor covered area,park,home,outdoor covered area 1282,6582763207,696,640,360,what is the girl holding as she hits the board in front of her,4,65827632071,TC,rope,try to crawl,row using hands,look at her,sticks,sticks 1283,4103088549,485,640,480,where is this place,0,41030885497,DL,beach,theater,dirt field,playground,bus terminal,beach 1284,4272084125,732,640,480,how is the lady trying to open the bottle,0,42720841258,CH,twisting the cap,turn bottle upside down,hit bottle,hold a cup,bite the cap,twisting the cap 1285,4915733559,1069,640,480,why did the boy proceed to move towards a picture book after watching the phone,3,49157335592,CW,to read the book,read to baby,see baby s reaction,got bored about phone,bring the book to lady,got bored about phone 1286,7531285946,1170,640,360,why did the lady looked down as she climbed down the ladder,0,75312859467,CW,careful of her steps,play with dog,pick up toy,waiting for her turn,man called her,careful of her steps 1287,8064178441,2229,640,1138,why does the baby touch the toy in front of it,4,80641784412,CW,part of performance,restless,not able to sit properly,teething,play with it,play with it 1288,3060478605,432,320,240,what does the lady do while riding the horse in the middle,4,30604786052,TC,watch her clock,controlling remote control,look under the tree,shakes leg,hold down her hat,hold down her hat 1289,3445431963,1276,640,480,where did the diver put her hand after waving to the camera,0,34454319635,TN,arm,head,face,leg,shorts,arm 1290,2957808913,598,640,480,what were the other people in the background doing at the start when the man in black danced,2,295780891310,TC,repeats singing,kick forwards,walking,plays the instrument,watch them,walking 1291,7331927796,519,352,288,how does the boy react after the white dog tries to touch his face,4,73319277969,TN,retreat,touch dog s nose,stay still,ran one round,move his head,move his head 1292,2535384528,378,640,480,how did the man in black manage to make the ball fly so far,1,25353845280,CH,throw with right hand,hit hard,throw with left hand,kick it off,hurl it quickly,hit hard 1293,6443512089,2437,640,360,how does the child control the toy,2,64435120891,CH,touch the toys,put in trolley and push,turning using hands,holds it,support,turning using hands 1294,3218498932,892,640,480,where could this be happening,2,32184989328,DL,dining room,restaurant,living room,shop,front porch,living room 1295,4276006683,799,640,480,how many people are involved in the video,3,42760066839,DC,two,six,five,one,four,one 1296,8547321641,327,640,362,what did the man do after the baby walked towards the sea at the end of the video,2,85473216419,TN,throw mickey,turn the camera to face him,follow him,holds the rope on his shoulder,climbed onto the bounce house,follow him 1297,3711681535,1070,640,480,what actvity is being carried out,4,37116815356,DO,rowing competition,street performance,friend s gathering,a play,swinging,swinging 1298,8575881495,2000,640,360,how does the girl play with the toy in the middle of the video,1,85758814959,CH,throw into air,move it with her hands,turns it round and round,use her head,by reading book,move it with her hands 1299,10127533784,600,640,360,why do the people thrust their the items in their hands forward,3,101275337847,CW,push away the toy,to hit the prop,play with each other,to attack,cutting the meat,to attack 1300,3708066257,477,640,480,what colour shirt were the guy and girl wearing,0,37080662575,DO,black,blue,white,red,yellow,black 1301,4244817395,1683,640,480,what is the relationship between the boy and the adults,3,42448173955,DO,classmates,brothers,friends,parent offspring,trainer trainee,parent offspring 1302,4765717907,1180,640,480,why did the boy run towards the ball after he was put down on the ground near the end,0,47657179079,CW,to catch ball,to look at camera,unwanted food for the rabbit,come out of the slides quickly,practicing,to catch ball 1303,5885887012,956,272,480,what does the baby do after stopping briefly at the start,1,58858870123,TN,play with bottle,starts to push again,touch the cloth,crawling on the ground,reading book,starts to push again 1304,4984331176,300,640,480,why did the man in white hold and swing a rope,2,49843311760,CW,stopping her from touching cake,swing the baby,playing group games,jumping,drawing on it,playing group games 1305,5504913999,1475,640,360,why is the man holding two poles,3,55049139995,CW,playing the piano,give to boy,to hit and guide elephant,skiing,support boy to skii,skiing 1306,3383804222,999,640,480,what does the older panda do after looking up for a while in the middle,4,33838042224,TN,stand at the side,go to woman in blue,splashing water,put trunk into mouth,hug baby panda,hug baby panda 1307,3388598772,335,640,480,how is the man with a white cap feeling,0,33885987724,TC,happy,tired,angry,annoyed,focused,happy 1308,2957808913,598,640,480,what do the men on stage do when the man in black jacket is dancing the street,0,29578089132,TC,play musical instrument,singing,watch the man dancing,drink,smiling and laughing,play musical instrument 1309,3145698830,1763,640,480,why did the man point towards the stuffed toy after the middle,1,31456988305,CW,moving the baby forward,point the place for baby to sit,suggest to move it away,help the baby fix the toy,stabilise toy,point the place for baby to sit 1310,4798585428,2697,640,480,why did the man in red touch the yellow shirt man s hand after the yellow shirt man placed his arm on him,0,47985854285,CW,signal him to put down paper,hear him talk,wake him up,to help,make vibrato,signal him to put down paper 1311,3489439407,1662,640,480,what profession are these people,1,34894394071,DO,team members,they are back stage crew,piano,talent perfromance,fireman,they are back stage crew 1312,4882414082,1350,640,480,why is the feeding chair attached to the table,1,48824140822,CW,for food,baby can not reach the table,playing,waiting for food,celebration,baby can not reach the table 1313,2535384528,378,640,480,where is the man playing golf,1,25353845284,DL,beach,golf course,brown board,snow,bedroom,golf course 1314,4412508597,358,640,480,what does the boy do as the lady in blue was sitting next to him,2,44125085971,TC,watches the girl,in his mouth,wrap strap around his wrist,empty pumpkin,moving on the sofa,wrap strap around his wrist 1315,3372023610,1017,640,480,what did the lady in black do after the man in grey sang into the microphone,2,337202361012,TN,smiling,leaning against high table,take microphone back,walk past him,looks at her while singing,take microphone back 1316,9409566840,1040,640,360,why does the brown dog turn away for a while near the end,0,94095668403,CW,look at the black dog walking,to aim,distracted,resting,there is food there,look at the black dog walking 1317,3198533789,690,640,362,what roles does the man in orange play in the activity,1,31985337891,TC,director,inspector,model,office worker,slave,inspector 1318,3814690167,453,640,480,why did the woman tap her foot for while she was playing the drum,2,38146901672,CW,he needs to leave,show affection,playing the drums,keep rhythm,to balance the cycle,playing the drums 1319,6096998186,671,640,360,how many items was the woman in blonde hair holding at the end,3,60969981866,DC,four,three,six,two,seven,two 1320,4412508597,358,640,480,where are the people,3,44125085977,DL,playground,room,concert,bus,factory,bus 1321,6618792571,2518,640,480,what did the girl do after she picked up the toy spoon,4,66187925717,TN,take out candle,puts on baking sheet,walks away,put the fork in her mouth,moves forward,moves forward 1322,11871253306,1476,512,288,why are the boy in white sheeve running near the beginning,2,118712533060,CW,to jump far,run to kitchen,chase the ball,follow the dog,collect the spilled water,chase the ball 1323,3455926688,549,640,360,what happened to the kite at the end of the video,0,34559266881,DO,dropped,vanished,clashed with a ball,torn apart,hit a rock,dropped 1324,4103088549,485,640,480,what are they doing,4,41030885498,TC,ride motorboat,play golf,soccer,basketball,surfing,surfing 1325,2696280239,398,640,480,how does the bull move in the ring,1,26962802395,CH,roll over in mud,galloping,controlled by the man,run in circle,controlled by ropes,galloping 1326,3943634344,629,640,360,why is the lady holding a book in front of the girl,2,39436343449,CW,reading something out of it,read to boy,let the baby recite,refer to lyrics,direct the baby s attention,let the baby recite 1327,4087013668,1442,640,474,what did the lady in pink do after the boy threw the peels back into the bowl,1,40870136687,TN,push food back in the mouth,put the peels back into bowl,blow candles,scoop more food in bowl,nodding and smiling,put the peels back into bowl 1328,4147398280,1716,480,360,how does the boy interact with each other,1,41473982806,CH,reading books together,turn and twist rubik cube,pressing the keys,runs with the trolley,punch sandbag,turn and twist rubik cube 1329,5173770364,2388,640,360,what does the baby do after putting one hand on the adult s foot at the start,3,51737703640,TN,moves her hand,push two blocks closer,bite sock some more,tap it,kiss them,tap it 1330,4420239986,669,640,480,why does the cat use its paws to hit the dog s face,2,44202399869,CW,trying to touch each other,hit the bird,fighting with dog,curious what inside,curious,fighting with dog 1331,8513603944,919,640,480,why do the children wear helmets,2,85136039443,CW,climbing the cliff,rugby players,skiing,perform play work,ride bicycle,skiing 1332,6253433310,680,640,480,why did the boy repeatedly go in and out of the water,3,62534333106,CW,swimming,prepare himself,trying to balance himself,enjoy going underwater,playing with water,enjoy going underwater 1333,4658396458,2160,640,424,why did the baby move the toy towards his mouth after taking it up,3,46583964581,CW,fun,to eat more,check it out,wants to bite it,wants to play,wants to bite it 1334,8531675050,1620,640,360,why does the lady in black and white crouch into the red tent after pointing to the crowd,0,85316750502,CW,to demonstrate something,to sleep,block wind,observe the children,ensure dog follows her,to demonstrate something 1335,5521781780,2697,640,480,how many people were under the umbrella,4,55217817809,DC,six,eleven,five,one,two,two 1336,2782658657,787,640,360,where were the girls,2,27826586578,DL,chair,by a stream,park,sofa,bedroom,park 1337,5070310138,1603,640,480,what is the baby sitting in,1,507031013810,DO,yellow toy,bathtub,baby walker,high chair,bed,bathtub 1338,4488066715,2638,320,240,what is the baby sucking on,2,44880667159,DO,food from table,girls finger,pacifier,microphone,toy giraffe,pacifier 1339,6265968082,1275,640,360,what are the people doing in the videos,1,62659680826,TC,baking a cake,music performance,fishing,birthday celebration,wedding,music performance 1340,2454242177,1574,320,240,why is the hanging object moving in the middle,2,245424217710,TC,continue punching,man pushes the swing,boy hits it with head,baby on swing,lady pulls the metal chains,boy hits it with head 1341,5129152550,2697,640,480,how does the man speaking appear while giving the speech,3,51291525506,TC,frustrated,happy,sleepy,serious,sad,serious 1342,2482028659,643,640,480,what is the guy in striped shirt doing with the microphone,4,24820286590,TC,singing,standing,presentation,take video,speech,speech 1343,6895608152,2178,640,360,how does the person in white interact with the people in red,4,68956081523,CH,teaching to throw stones,walked down stage,pat their shouders,kiss the lady,dance,dance 1344,6300775954,1734,480,800,what does the lady do with the barbell at the end,0,63007759544,DO,put on barbell stand,throw away,give to man,hold it,put on floor,put on barbell stand 1345,8797589693,2699,640,480,why is the man at the front of the room moving his arm,4,87975896934,CW,stretching,showing affection,cheer for performance,play guitar,gesturing while talking,gesturing while talking 1346,3158022797,2697,640,480,how many people were playing together,1,31580227973,DC,eight,four,two,three,eleven,four 1347,4123211145,2697,640,480,what are the two girls doing,0,41232111451,TC,dancing,play the piano,fighting,play with toys,chase each other,dancing 1348,8024853715,486,640,360,where are the children in the video,3,80248537154,DL,fire station,police station,fireplace,park,dance hall,park 1349,3066064005,819,640,480,what is the dining table surrounded by,2,30660640050,CW,dogs and cats,flowers,posters as decorations,gifts,controllers and buttons,posters as decorations 1350,3963997053,573,640,480,what does the man wearing cap backwards do when the car approaches him,2,39639970535,TC,look at the red car,raise his hand,squat down,no reaction,touch his head,squat down 1351,4166942239,590,640,480,what does the man in red do after bending down and standing up straight,1,41669422398,TN,turn back,demonstrate to man in suit,hold boy s hand,stand still for a while,eating and watching him,demonstrate to man in suit 1352,4333544549,1065,640,360,why did the man in blue touch his pocket in the middle,4,43335445496,CW,get tissue,find wallet,take out dog food,find keys,take out a phone,take out a phone 1353,2885091387,1065,640,480,how is the water splashed from the puddle,3,28850913879,CH,boys tap feet,man rode it in,diving in,movement from car,use stick to hit the water,movement from car 1354,7531285946,1170,640,360,how did the lady crossed over the fence,1,75312859466,CH,skiing,ladder,hold roller,holds the fence,cross legs,ladder 1355,5504913999,1475,640,360,what sport is the man doing,2,55049139997,TC,badminton,swimming,skiing,tennis,bowling,skiing 1356,5352022985,1411,640,360,what does the dog do after it was pattted by the woman,1,53520229852,TN,look at girl,moves around,walk across,run away,walk away,moves around 1357,5623068492,2375,640,480,why does the man with white hair wear gloves,1,56230684920,CW,taking photos,boxing,aiming to throw,game controller,to keep his hair tidy,boxing 1358,3902997424,779,640,480,why is the man having a white tube in his mouth througout the whole video,4,39029974241,CW,go somewhere,talking,look at his keychain,take a photo,playing the instrument,playing the instrument 1359,6690256857,344,640,360,why is the boy scrubbing the dog s body,0,66902568577,CW,bathing dog,let it walk,show to the girl,playing,sniffing present,bathing dog 1360,11566980553,1721,640,480,how does the woman respond after the boy gives her the present,1,115669805537,TN,smile,puts present aside and ignore him,write something down,cry,walk back to the man,puts present aside and ignore him 1361,6582763207,696,640,360,where is this video taken,0,65827632078,DL,living room,dancing hall,train,computer table,backyard,living room 1362,3943634344,629,640,360,how did the girl move her arms while reading,1,39436343445,CH,touch her face,up and down,touch lady,touch her toes,stretch above her head,up and down 1363,4123211145,2697,640,480,why are the girls moving their body in the video,0,41232111458,CW,dancing,cycling,make space for car,swimming,singing,dancing 1364,5926256714,863,640,360,how does the man help the boy to walk,3,59262567143,CH,kiss baby,put baby s chair,point and push him away,hold the baby,hold onto chair,hold the baby 1365,4635309062,2076,640,480,what happens to the red meat in the pan after the man in white stirs it for a while,2,463530906211,TN,yes,smiled and nodded,turns colour,step back and raise hands,take out the piece,turns colour 1366,3124551255,1962,640,474,where could this be happening,1,312455125512,DL,farm,house,road,front porch,jail,house 1367,2679328607,1047,320,240,how does he boy pass the toy back to the girl,3,26793286078,CH,copy his facial expression,throw it,playing with her hair,drop on her lap,hugs the baby,drop on her lap 1368,6898821807,585,640,480,what does the baby do after grabbing the boy s hand,3,68988218079,TN,looks at the baby,helps the baby walk,stares at camera,pushes it away,hold the man s hand,pushes it away 1369,8132842161,1105,640,360,why did the boy in white stand on a higher ground when watching the show,3,81328421613,CW,talking,to sniff,wanted to play with him,short,distracted,short 1370,8211075660,1621,480,360,what does the man with the phone do after appearing at the side while the man in black was talking,4,82110756600,TN,moves towards the window,ride away,serious,run past,stands still on the left,stands still on the left 1371,3388598772,335,640,480,where is this happening,0,33885987726,DL,pub,wooded areas,kitchen,river,swimming pool,pub 1372,6253433310,680,640,480,why does the boy float up after going underneath water for some time,1,62534333102,CW,get to the surface,breathe,prize for trick performance,waves are big,stay on the board,breathe 1373,8252088130,426,640,360,how does the woman carry the bird,1,82520881300,CH,sitting,with special glove,climb with leg,hold it tightly,carry using left arm,with special glove 1374,2809330695,2158,320,240,what is the baby holding tight for a few times,0,28093306954,DO,towel,baby food,eggs,dinosaur toy,watermelon toy,towel 1375,11566980553,1721,640,480,what present does the boy receive,0,1156698055310,DO,toy,father offspring,friends,keep warm,bottle of snack,toy 1376,4636208292,2580,640,480,what does the man in beard do after putting down the drink bottle in the middle,4,46362082925,TN,roll over,pose to catch,drinks the cup,start playing the instruments,picks up the glass of beer,picks up the glass of beer 1377,7114553643,1974,640,480,what did the lady do after she pointed upwards near the end of the video,4,71145536437,TN,lie down,walk away from the table,shake her head,pick up toy,moved her hand down slowly,moved her hand down slowly 1378,3155382178,858,640,480,why does the woman follow the ball for a long while,0,31553821783,CW,playing with the ball,holding girl,rest and try again,send ball to baby,send ball to boy,playing with the ball 1379,3340340268,1289,640,480,why was the girl in green on the floor at the end,4,33403402684,CW,stay in the sun,sit down,support herself to climb out,learn dancing,trip,trip 1380,5256928210,606,640,360,how many dogs are there,2,52569282106,DC,two,nine,one,three,four,one 1381,4087654898,330,640,480,why is the girl holding the water hose,2,40876548985,CW,playing with water,get bird to drink water,to fill the bucket,release crab into sea,boy can not control hose itself,to fill the bucket 1382,3455926688,549,640,360,how is the kite moving,3,34559266883,CH,moving right only,not moving,moving up only,sideways,moving down only,sideways 1383,2712662377,1048,640,480,why did the other turtle move away near the end,1,27126623771,CW,to get to somewhere,not step on the leaf,flush,come back to eat,dangerous to cut near people,not step on the leaf 1384,3105728894,1512,640,480,what is the relationship between the people in the video,3,31057288949,DO,book launch,familyfriends,training team,colleagues,friendsteam member,colleagues 1385,4219909195,1003,640,480,what did the girl do after the man pat the pillow,0,42199091954,TN,sit down,jumping,get up,bite it,look into the toilet bowl,sit down 1386,3708066257,477,640,480,what does the woman do after stretching her arms away from the man near the beginning,2,37080662577,TN,crawl away and stand up,walk away,comes back towards the man,touch her own face,put her hands up,comes back towards the man 1387,7416295940,2388,640,384,what does the baby do when the dog approaches him,4,74162959403,TC,push dog away,make funny faces,stand up,talk to the lady,touch dog,touch dog 1388,5863411262,1018,640,360,where could this be happening,1,58634112626,DL,in a shop,outdoor,home corridor,roadside,dining room,outdoor 1389,6618792571,2518,640,480,what did the girl do after she sat on the floor in the middle of the video,2,66187925716,TN,carry baby up,lift up spoon,crawls,try standing again,turned behind,crawls 1390,10042935613,1710,640,360,how does the shirtless man get the green food,2,100429356139,CH,send by others,take over,pick it with hand,ask for help,dilivery,pick it with hand 1391,4612723694,1681,640,480,why did the man in singlet walk towards the guy in grey,4,46127236945,CW,playing prank on him,guiding him how to walk,avoid the other lady,get his attention,touch the snake,touch the snake 1392,2535384528,378,640,480,why does the man wear glove on one hand,4,25353845286,CW,lost the other pair,one hand is occupied,playing snow ball,working,grip golf club,grip golf club 1393,7605329840,635,640,360,why was the green balloon in the air nearing the end,2,76053298409,CW,boy let go of string,perform trick,girl release the balloon,blown away by wind,part of design,girl release the balloon 1394,4483447009,775,640,480,why did the duck move its head when it walked,0,44834470090,CW,looking around,helps them swim,follow the other duck,food to fall off,look where to go,looking around 1395,5070310138,1603,640,480,why is the baby sitting down,0,50703101387,CW,bathe,lost balance,play with dog,eating,watching television,bathe 1396,6291413193,1980,640,480,how is the lady in white positioned in the water,0,62914131934,TC,standing,look to the left,floating,sledding,drawing something,standing 1397,8464056582,1340,640,360,what does the dog do after looking at the hallway for a while at the end,1,84640565827,TN,put something on the floor,walk around,went under sofa,sniff the bag and the wire,tried to play with the cat,walk around 1398,4782722858,1234,640,360,who is the tallest among the three singers,3,47827228587,DO,father,woman with purple scarf,both of them,the middle singer,boy in the middle,the middle singer 1399,9473479950,608,640,480,how did the lady react to the baby s movements,4,94734799503,TC,with their legs,tried to touch camera,sitting by the side,playing with the baby,laugh,laugh 1400,3708066257,477,640,480,what did the man and the lady do when dancing,4,37080662572,CW,fight,step on each other's toes,fall down,sneeze,eye contact,eye contact 1401,3375218204,2241,640,480,what is the response of the man after the girl touches him at the start,0,33752182046,TN,nod,wave to the girl,touch the girl's head,sit down,laughs,nod 1402,4036955771,2697,640,480,what does the man on the extreme right play as the other band mates played the violin and guitar,3,40369557714,TC,playing drum,guitar,talk to him,trumpet,moves around,trumpet 1403,6964124866,515,640,360,how does the person direct the child attention s towards a picture,0,69641248664,CH,point to the picture,put it in front of child,shine light on it,bite it,touch the child,point to the picture 1404,4244817395,1683,640,480,why are there toys on the floor at the end,1,42448173954,CW,lady place there,boy pours them out of box,to hide itself,boy is unwrapping presents,to confort baby,boy pours them out of box 1405,4412508597,358,640,480,what does the lady in blue do as the boy was making funny faces,2,44125085973,TC,smile and hug,shy,sit still,introduce how to make it,pat her head,sit still 1406,5237219621,2680,640,360,what did the woman in black near the tv do after the woman in black spectacles spoke near the end,2,52372196216,TN,smile,play around the tv set,start gesturing and speaking,move head,dance,start gesturing and speaking 1407,3345608051,2250,640,480,how does one of the dog keep the other one pinned to the ground in the middle,4,33456080517,CH,push it,shake dog s paw,jump up,kick the snow,bite its neck,bite its neck 1408,4949582792,2639,640,360,why did the girl touch the baby pram at the start,1,49495827920,CW,dancing,rock it,attract baby s attention,adjust,try to open it,rock it 1409,4272084125,732,640,480,what did the man do after the lady finished talking,0,42720841256,TN,smile,stare at the screen,speaks,walks away,speak,smile 1410,6793786769,1158,640,360,why did the boy lean so close to the trains at the beginning of the video,4,67937867693,CW,to touch the sandals,watch the sence outside,to check the water level,let the girl feed him,kiss the train,kiss the train 1411,5561024834,947,640,360,why does the boy tuck his head down on the bed near the end,1,55610248342,CW,look for his blanket,playing,check under the bed,take a diaper,point to the video recorder,playing 1412,8253302563,1056,640,360,what does the boy do after sitting in the toy car for a while at the start,4,82533025631,TN,stand up,hold onto boy,put on table in front,leaves the toy behind,play with wheel,play with wheel 1413,4984331176,300,640,480,why did the student in yellow go after the lady in black singlet,4,49843311765,CW,queue for ticket,make space for man in blue,car coming,dropped her wallet,miss the right time to go,miss the right time to go 1414,3303565503,1115,480,640,why is there another guy in white approach the man and the girl,4,33035655032,CW,give flyers,pass them water bottles,dancing,game controller,director of shoot,director of shoot 1415,2824317018,1606,500,375,why do the people wear thick clothing outside,2,28243170183,CW,it is cold,snowfall outside,keep warm,as it s cold,working on snowy ground,keep warm 1416,5803861992,2145,640,480,why did the baby girl laugh,0,58038619922,CW,playing with adult,the girl is dozing off,excited for the drink,gesturing,watching television,playing with adult 1417,2596300565,2415,500,375,how does the baby push the pram differently in the start versus the end of the video,0,25963005657,DO,different direction,smiling,waving,move body,right,different direction 1418,8024853715,486,640,360,why does the child in multicolored dress move her hands,3,80248537150,CW,to build mountains,try to hit the pinata,posing for the camera,pick up sand,build sandcastle,pick up sand 1419,5297811305,720,640,360,what does the baby do after being pulled up by the woman at the start,3,52978113055,TN,laugh,sit up,look into the camera,falls back down,put baby on leg,falls back down 1420,2731071928,1959,500,375,why is the child sitting on the floor,3,27310719281,CW,resting,the kids are playing,watch tv,play the guitar,learn to crawl,play the guitar 1421,13569831214,1664,640,480,why is the girl in blue smiling at the end,3,135698312149,CW,guide her in rowing boat,taking photo with baby shark,agreeing with the order,posing,listening to her,posing 1422,8563398032,2040,640,360,what does the man with black shirt with wording do after the other man leans back near the end,4,85633980323,TN,look at computer,fall down the net,drink water,hand gesture,look at him,look at him 1423,2584172238,719,320,240,what did the girl in white do when the girl in pink was sliding down the slide,1,25841722389,TC,dance,on the ladder,ducked,stand on the plank,hold on to stairs in pool,on the ladder 1424,2596300565,2415,500,375,why is the baby pushing the pram but not sitting in the pram,3,25963005654,CW,excited,support,safety,practice walking,restless,practice walking 1425,2978295992,1056,640,360,why was the lady with the pumpkin putting her hand inside the pumpkin at the end,3,29782959927,CW,crafting,tie knots,push food back in the mouth,take out a piece of pumpkin,scoop out ingredient,take out a piece of pumpkin 1426,6272786009,535,640,384,why do the people on the boat move in a synchronised manner,1,62727860093,CW,river flow,to go faster,not fall into water,choppy waves,flowing,to go faster 1427,4857781123,1101,640,1138,why did the person with a toy shake the toy a couple of times at the start of the video,4,48577811230,CW,grab attention of boy,grab attention of cat,grab attention of girl,grab attention of hamster,grab attention of dog,grab attention of dog 1428,6143391925,1206,640,480,what did the woman do after the baby kicked the ball at the end of the video,2,61433919257,TN,touch ball,touch her feet,look at the baby,push handle,lie down too,look at the baby 1429,4955723618,1831,640,480,why did the man in black with tied up hair walked towards the man in grey in the middle of the video,2,49557236189,CW,pass food,give medal,to get the microphone,filming,join and dance together,to get the microphone 1430,5679866364,750,640,480,why did the man leading the group turn around to look back at the group,4,56798663646,CW,maintain balance on board,passing ball to them,play,to see the shoreline,waiting for them to reach shore,waiting for them to reach shore 1431,8024853715,486,640,360,how did the girl in blue respond each time the girl in multicoloured dress pick up some sand,2,80248537156,TC,watches the girl,sit down,knock away the sand,pull her away,grab the sand,knock away the sand 1432,6024684644,519,640,360,how did the man reach the sand deep into the hole while digging,2,60246846445,CH,swing his legs,squatting,bent all the way down,spade,drill,bent all the way down 1433,7987845241,1511,640,1138,why is the woman in white rubbing the leg of the dog at the start of the video,3,79878452410,CW,entangled by the leash,giving dog injection,trying to get baby s attention,preparing for injection,lady wants dog to sit down,preparing for injection 1434,4488066715,2638,320,240,why does the baby hold on to the whisk,4,44880667150,CW,learn dancing,teething,look at something,avoid falling off swing,playing,playing 1435,5907839036,2697,640,360,why did the bald man reach out his hands while talking to the people beside,3,59078390364,CW,wanted to hit someone,trying to catch ball,gesture to cameraman,discussing about the scenery,trying to feel wind,discussing about the scenery 1436,5349766264,1884,640,362,what did the lady do as she sings,0,53497662648,TC,makes noise with a spoon,sit and listen,raise and clap her hands,dancing,walks to the boy,makes noise with a spoon 1437,9917882506,974,512,288,how do the children transport themselves around the play area,1,99178825069,CH,running,cycling,rolling,crawl,walking,cycling 1438,5116088152,1205,640,360,why did the baby grab the banana after the adult point to it,1,51160881523,CW,locate the chocolate,to eat,pass to dog,happy to see it,throw on the floor,to eat 1439,6413546609,1415,640,384,what does the person on the right do when the card is upside down,3,64135466093,TC,adjust camera,throw card in the air,fold the card,flip upright,drop the card,flip upright 1440,3581585756,702,640,480,why is the girl touching her face in the beginning,0,35815857563,CW,posing,cleaning her mouth,practicing cher,playing with baby,dancing,posing 1441,3963997053,573,640,480,why is there smoke behind the places that the car drove past,4,39639970530,CW,engine is spoilt,smoke from fire,man is fixing the car,snow,road dust,road dust 1442,11503803033,623,640,360,why do the people bend their knees,1,115038030330,CW,easier to read,skiing,pull the sled,swaying to the music,finding things to eat,skiing 1443,2573424030,1470,320,240,where are the people hanging out,3,25734240306,DL,water fountain,park,outside a building,road,studio,road 1444,3355698421,1193,640,360,why do the man in white and the lady in black constantly look down,0,33556984211,CW,using their phone,playing with book,look at the book,take notes,talk to audience,using their phone 1445,3974684583,735,640,362,how does the big cylinder being moved to the right position at the beginning,4,39746845832,DO,swim,crawl,press the buttons,galloping,rotating floor,rotating floor 1446,4688219212,959,640,480,where is this be happening,2,46882192129,DL,playing baseball,pool,hall,backyard,road,hall 1447,2503404966,840,640,480,where is the boy playing with the toy,1,25034049667,DL,restaurant in a mall,living room,pool,car,sand box,living room 1448,4179163342,2172,640,480,why did the children can not stop laughing after jumping around,4,41791633425,CW,man is making baby laugh,ticklish,they are enjoying,enjoying the activity,excited,excited 1449,4782722858,1234,640,360,how did the ladies feel when performing to the crowd,2,47827228588,TC,sleepy,shy,excited,annoyed,aggrieved,excited 1450,7508439506,765,640,480,why did the boy lean forward to the boy,0,75084395065,CW,touch the baby,get the pacifer,for safety,assisting with the barbeque,tap table,touch the baby 1451,3372023610,1017,640,480,why does the woman in black lean forward and backwards while singing,1,33720236102,CW,feel the music,dancing,sing together with her,to hit the beat,for her to sing,dancing 1452,6168295272,446,640,360,why did the girl in blue jump at the end of the video,3,61682952725,CW,dancing,to put in her mouth,jump of the stage,excited,engaged in conversation,excited 1453,7088595057,1052,640,480,why did the white sheep move back at the end of the video,1,70885950575,CW,lose balance,lick the black sheep,lady sit up right,chase the brown dog,to unbuckle,lick the black sheep 1454,2987766537,497,500,375,why did the baby cry at the end,2,29877665370,CW,fall down,does nnt want the toy,cannot get up,more comfortable at crawling,boy takes away his toy,cannot get up 1455,5521781780,2697,640,480,what were the two people with the umbrella doing as the other men walked past,1,55217817808,TC,walking a dog,eating something,dancing,reading,having a picnic,eating something 1456,11849091804,1296,640,360,why does the lady smiles widely after looking at the kid holding the gift,2,118490918042,CW,posing,for fun,happy the kid likes the gift,found it funny,funny,happy the kid likes the gift 1457,2971556305,1459,640,480,why did the lady in pink smile so broadly,0,29715563058,CW,happy to be in the video,enjoy the food,having fun cooking,she was given a present,enjoy skiing,happy to be in the video 1458,11849091804,1296,640,360,how does the kid open the present,3,118490918045,CH,crawling,grabbing on to the cot,sit up,tear bit by bit,sitting on table,tear bit by bit 1459,4279106208,559,640,360,how does the lady ensure the baby s safty while sliding down the slope,2,42791062080,CH,hug baby,protect eyes from glare,slide down together,prevent it from blocking her sight,support him from behind,slide down together 1460,5586394125,1128,640,360,how does the dog with red leash drink water,0,55863941259,CH,from the red bucket,stand beside basin,use hose,from tap,from water bottle,from the red bucket 1461,3322503255,1233,320,240,what did the person in the middle do after he approached the plane,0,33225032559,TN,bend down,skiing,sitting,continue eating,move phone away,bend down 1462,3581585756,702,640,480,where are the people hanging out,0,35815857565,DL,bus,snow mountain,at a house,hospital room,garden,bus 1463,4955723618,1831,640,480,why did the lady in black face the man in black beside her before she started talking into the mcirophone,4,49557236188,CW,show agreement,laughing,learning,engrossed in performance,talk to that man,talk to that man 1464,5623068492,2375,640,480,what activity is being carried out,0,56230684925,DO,boxing,egg hunter,archery,conference call,playing balloon,boxing 1465,3164519967,1090,640,480,where is this video taken,1,31645199678,DL,playground,sofa,house,ball room,computer table,sofa 1466,2435633172,2293,500,375,how many people are there,4,24356331726,DC,one,seven,four,eleven,three,three 1467,2584172238,719,320,240,how did the woman in yellow support the boy in blue at the start of the video,3,25841722380,CH,caress baby,turn over his body,pull his finger,hold baby up,rubbing baby s hair,hold baby up 1468,4765564263,420,640,480,why are there water flowing beside the orange sheet,3,47655642635,CW,boy jumps into pool,raining,man hold the water pipe,water coming from sprinkler,near a waterfall,water coming from sprinkler 1469,3711681535,1070,640,480,why is there a net below the woman seen at the end,3,37116815355,CW,wipe glass,show baby leaves,prepare for the other to hit,for safety,look at the side,for safety 1470,8552680285,442,640,360,why does the person standing move her arms,2,85526802851,CW,dancing,pick up her bag,move ski forward,lift baby up,hold the microphone,move ski forward 1471,5635265624,584,480,640,why is the baby touching the bag beside her,4,56352656243,CW,playing with keychain,obstacle on the path,see what is inside,pour item out,curious about texture,curious about texture 1472,5047408177,648,320,240,how did the woman make sure that the clothes are neat,2,50474081775,CH,iron them,use a roller,straighten them before folding,arrange them by colours,hang them,straighten them before folding 1473,6018490041,825,640,480,what event could this be,2,60184900419,DO,a funeral,dance competition,game celebration,a wedding,music performance,game celebration 1474,8604794910,405,640,360,what did the ball run out of the court near the end,0,86047949109,CW,boy failed to catch it,hitted by girl,play with dog,girl throws it,kicked by boy,boy failed to catch it 1475,4815534482,2250,640,362,how did the boy operate the toy car,0,48155344824,CH,press his leg against the pedal,push it around,bend down and grab,remote control,jump and talk to baby,press his leg against the pedal 1476,6201488511,2575,640,360,what did the lady do after she put her hand above her eyes in the middle of the video,2,62014885114,TN,smiles at the baby,turned behind,looks round,looked at camera,smiles,looks round 1477,5662041273,2697,640,480,why did the boy place the helicopter on the table,3,56620412732,CW,did not want to play anymore,helicopter broke,to pass to father,to fly helicopter,helicopter was blocking the television,to fly helicopter 1478,5875535585,2291,640,360,what is the man in stripe shirt doing as the man in black sings,0,58755355858,TC,struming guitar,laugh,hold microphone stand,put down the glass,playing piano,struming guitar 1479,2401167740,390,500,375,how did the man show that he enjoyed the drink,4,24011677404,CH,moving animation,cover his body fully,thick clothes,he keeps doing it,smile,smile 1480,4013751996,764,320,240,how does the girl protect herself while riding toy bicycle,4,40137519960,TC,held by lady,sitting on bicycle seat,bicycle,paddle with legs,wear helmet,wear helmet 1481,3124551255,1962,640,474,what does the boy do as the brown dog walks beside him in the middle,4,31245512558,TC,pet,run out of the room,stand up,walk to man,push the dog,push the dog 1482,4217422838,1261,640,480,what did the boy do with the wrappers after he tore them from the spear,4,42174228387,TN,pick it up,moves the fork,stabilise himself,catch it,throw it aside,throw it aside 1483,10030609934,1680,640,360,why is the boy moving around in front of the seats where he put the toy cars,0,100306099347,CW,fidgeting while talking about toy car,resting,drag the train to move,playing with dog,want to grab toy car,fidgeting while talking about toy car 1484,3595273118,375,640,480,why is a camera pointed at the man initally,1,35952731182,CW,making a speech,taking photo of his speech,filming the boy,gesturing while talking,going with rhythm,taking photo of his speech 1485,3851913128,2235,640,480,how does the guy in red give instructions to others underwater,4,38519131284,CH,using string,jump from pool edge,use float,paddle,hand signals,hand signals 1486,3846475848,2138,640,480,how many people are involved in the video,4,384647584812,DC,five,six,four,two,one,one 1487,3359075894,414,640,480,what does the man in grey do after hitting the ball,0,33590758946,TN,walk backwards,watching the game,kick some more,bend towards man in red,bend down,walk backwards 1488,3402648543,516,320,240,how do the small dogs react when the big dog tries to get away,1,34026485437,TC,bite the big dog,follow after the big dog,bite toy bone,bark at the dog,go off with a clowder of cats,follow after the big dog 1489,2510696559,2117,640,480,what does the boy do after hopping the bicycle in the middle of the video,1,25106965597,TN,touch the vacumm clearner,do a stunt,fells on the ground,carry the baby down,follows him to dance,do a stunt 1490,6786501294,1806,604,1072,how does the baby respond when the boy blows out the candle,1,67865012947,TC,raised his legs,baby clap hands,starts clapping,looks up,wave smoke away,baby clap hands 1491,2717347132,818,640,480,what is the baby doing in this video,4,27173471328,TC,squeezing a ball,playing in the walker,playing with train toy,learning to walk,touching blankets,touching blankets 1492,6413546609,1415,640,384,what does the person on the right do after throwing all the cards on the floor,0,64135466091,TN,clasp his hands together,give toys to woman in orange,show the residue box,shakes his hand,stand up on sofa,clasp his hands together 1493,4189100053,874,640,360,why does the woman lick her finger after wipe the boy s mouth,4,41891000532,CW,to suck it clean,eat more,guide them,to scream,lick cream off,lick cream off 1494,2930782930,939,640,480,what did the lady do after the baby moved his hand the first time,0,29307829300,TN,waves her hand,put the red bowl on head,kiss the baby,hold onto her dress,feed another time,waves her hand 1495,5116088152,1205,640,360,how does the baby react after the adult point at the banana,4,51160881527,TN,move away,laughing,close eyes and laugh,drop,grab the banana,grab the banana 1496,4584426085,2697,360,480,why did the puppy end up in front of the lady sitting cross legged at the end,0,45844260859,CW,dragged over by lady,oversee them,attracted by toy car,sit on his own,leash got tangled,dragged over by lady 1497,13296054183,303,640,1138,how do the man make sure that they do not lose each other when cycling,4,132960541837,CH,controlling the handle,steering,bend properly and hold tightly on rope,stop halfway while cycling,keep up with each other pace,keep up with each other pace 1498,5205081904,623,360,480,what does the child do after turning around near the end,0,52050819046,TN,picks up the grey toy,look at the girl,reach hand out,picks up the car,jumping near the adult s knee,picks up the grey toy 1499,6793786769,1158,640,360,why did the boy lifted his head again in the middle of the video,1,679378676911,CW,attracted by dog,train is coming,excited,playing with something,wants to play with baby,train is coming 1500,4955723618,1831,640,480,what did the lady in black do after the man next to her gave her a microphone,3,49557236180,CH,hit them together,start singing,hand gestures,smile and speak to man,move fingers across piano,smile and speak to man 1501,3843551232,696,480,360,why did the black dog prance upwards at the start of the video,0,38435512321,CW,excited,talk to boy,help boy get up,pour content out,felt the person s hand,excited 1502,6205856607,978,272,480,what does the girl do after patting the horse,2,62058566077,TN,rub baby s face with a cloth,moving,turn back to man,look at baby,ready to ride,turn back to man 1503,11244289523,552,640,360,what did the lady in black do after the baby tried to reach for the fork,2,112442895238,TN,pick up blanket,scoop and eat too,moves the plate,keeps it back,talk to the baby,moves the plate 1504,4136617240,2697,480,352,why are there toys around the child,4,41366172401,CW,battery,played with them previously,playing with it,party hats,for girl to play,for girl to play 1505,3112351937,448,640,480,why is there something in the shirtless man s mouth,0,31123519374,CW,get oxygen,got water in it,torchlight,towel,eating,get oxygen 1506,10042935613,1710,640,360,what does the boy in red do after standing up,1,1004293561311,TN,throw up the scarf,grab the food,high five the man in white,happy,puts his paddle in it,grab the food 1507,4138579400,601,640,480,how was the boy putting objects in the cup at the start,1,41385794000,TC,put the class down,using his hands,lick and chew,start hitting drum harder,pacifier,using his hands 1508,7149153537,1384,640,360,how did the fair skinned man support the baby,4,71491535374,CH,carried on his back,use a float,put baby on a board,put baby in a chair,holding baby with his hand,holding baby with his hand 1509,3557498300,849,640,480,how does the boy in red react after seeing the kite falls to the ground,2,355749830010,TN,clap,lies still,run towards the kite,eat his food,tear it apart,run towards the kite 1510,3441428429,2697,640,480,why are the skaters on the ice rink,3,34414284291,CW,ski,his phone with audio,men hit it,performing,playing with each other,performing 1511,5561024834,947,640,360,how does the boy interact with his blanket near the end,0,55610248349,CH,gets inside the blanket,use both hands to hold tightly,throws the blanket,cover the baby,washing the blanket,gets inside the blanket 1512,8563398032,2040,640,360,what activity is being carried out,1,85633980324,TC,feeding stingray,presentation,water sport,drawing,roadside,presentation 1513,6356067859,1070,640,480,how many children are involved in the video,1,63560678599,DC,one,four,six,kitchen,seven,four 1514,2401167740,390,500,375,why did the man show his cup to the camera before drinking from it,1,24011677400,CW,to thank the lady,explain to camera,to drink from it,to show off,to welcome the lady,explain to camera 1515,3376544720,2158,352,288,what does the man in striped do after the man in black gets on the bull,4,33765447208,TN,remove cap,put elbow up,ski down,talk,help out guy,help out guy 1516,5256928210,606,640,360,why is the man kneeling down on the floor,4,52569282109,CW,feed the dog,crawling around,let kids walk through,fell down,pet the dog,pet the dog 1517,13919236672,3924,640,360,what did the girl do after she picked the black hat up,4,139192366724,TN,looked at it,rest her hand,put it somewhere else,look behind her,pick up blue object,pick up blue object 1518,4336654741,2697,640,480,why does the lady move her head towards the end,0,43366547414,CW,making baby imitate her,different poses,cycle,keep balance,windy day,making baby imitate her 1519,4925211209,768,640,360,how did the man reach the tree,3,49252112092,CH,dad push toy train,move hands,red boat person help to flip,hydraulic ladder,climb up,hydraulic ladder 1520,2824317018,1606,500,375,why does the boy reach out his hand to the man at the beginning of the video,2,28243170180,CW,pick up the stick,talking,get food,tired,pick up the present,get food 1521,3194558043,691,640,480,where are the people hanging out,0,31945580434,DL,performance stage,snow mountain,kitchen,lake,bus,performance stage 1522,8318310610,663,640,430,where is this happening,4,83183106108,DL,house,kitchen,runway,playing with the piano,performance practice,performance practice 1523,6793786769,1158,640,360,how did the boy interact with the train in the middle of the video,0,67937867697,CH,wait for it to come back,spinning the train,kicked with his legs,push the steering wheel,use sticks to hit,wait for it to come back 1524,4658396458,2160,640,424,how did the pink basket toy move in the video,3,46583964587,CH,put towel around,shake it,jumping,turn around,use hands,turn around 1525,2679328607,1047,320,240,why does the boy in blue hold the toy in his mouth,2,26793286073,CW,hands are occupied,make a funny pose,suck on it,take a picture with the toy,disturbing the girl,suck on it 1526,6988748711,1512,640,480,how does the woman in blue interact with the mud at the beginning,0,69887487117,CH,step on it,with a shovel,running her feet on ground,wipe it with towel,dig a hole,step on it 1527,4674481985,734,640,480,why is the group at the waterfall,2,46744819850,CW,watch people paddling,water park,to jump into the water,near a waterfall,kayaking,to jump into the water 1528,4420239986,669,640,480,what does the dog do before he goes under the table at the end,2,44202399867,TP,walk away,leave,lick cat,starts eating,chasing its tail,lick cat 1529,7728559968,1480,640,360,how do the kittens try to grab hold of each other,1,77285599687,CH,nail down their heads,arms and legs,jump over one another,attack the neck,tug the collar,arms and legs 1530,12682618843,1458,640,360,what does the dog do while lying down in the middle,1,126826188430,TC,sniff the bag and the wire,chew toy,look at hand,tried to climb onto person,at the cameraman,chew toy 1531,2971556305,1459,640,480,how did the lady in pink take footage of the house to keep as memory,3,29715563052,CH,with her phone,the garden of the house,the kitchen area,with her camera,walk up and down the stairs,with her camera 1532,3477387686,2034,640,480,what was moving behind the dog and the girl at the start,0,34773876861,DO,another dog,country flag,the girl's mother,multicolor box,a bird,another dog 1533,5766018720,1830,640,426,what did the baby do after she finished playing with the toy dog,3,57660187206,TN,touch dog,feed dog,train the dog,play with guitar,looking left and right,play with guitar 1534,8080432373,2697,640,360,where is this video taken,0,80804323739,DL,living room,dining table,grassland,train,dancing hall,living room 1535,6617533993,1384,640,1138,why did the girl hold onto the thing on top of the white toy in the middle of the video,0,66175339932,CW,balancing the item,remove the strings,to pour into funnel,change its colour,dismantle the toy,balancing the item 1536,9304738817,345,320,240,how does the baby feel playing with the swing,0,93047388176,TC,excited,agitated,refreshing,upset,enjoy performance,excited 1537,5145526755,1675,640,360,why are there two people in the vehicle looking towards the lionesses,3,51455267556,CW,look for dog,talking to each other,to point laser at them,observe them,try to attract baby s attention,observe them 1538,7416295940,2388,640,384,what does the adult do after adjusting the position of the toy car,4,74162959406,TN,give to baby,pat sand away,walk off,shake baby,grab sand on it,grab sand on it 1539,3804148568,2697,640,480,what is the man in black doing with the two people practising fighting with swords,0,38041485681,TC,teaching,filming the scene,focused,moves back,bleed,teaching 1540,4272084125,732,640,480,what did the lady do when she saw the camera facing her,4,42720841255,TC,amused,drink from cup,wipe her face,smile and wave,hold up the bottle,hold up the bottle 1541,6592821115,1800,640,424,why did the woman clap her hands after baby in polkadot fall in front of her,0,65928211150,CW,happy that baby can walk himself,celebrate his birthday,try to comfort baby,playing with baby,dancing,happy that baby can walk himself 1542,3711681535,1070,640,480,how many people are in the video,2,37116815359,TC,buying drink,performing a song,three,talking,martial arts class,three 1543,5070310138,1603,640,480,where did the baby touched after he put his hand in his mouth,0,50703101385,TN,nose,his palm,pacifier,tried to stuff more toy,reach hand out,nose 1544,8277866423,829,640,360,why did the brown dog bark at the black dog,4,82778664230,CW,want to join in,defense,smelling it,excited to eat,snatched the bone,snatched the bone 1545,2623954636,931,500,375,what did the boy do after he got up from the fall in the middle of the video,1,26239546360,TN,hug girl,look at the camera,walk around,picks up the helicopter,pick the ball up,look at the camera 1546,5907839036,2697,640,360,what is causing the shirt of the man in white to move in the middle,2,59078390367,DO,baby pulling shirt,scores,strong wind,shirt caught on to pole,shirt dirty,strong wind 1547,7572859950,497,640,1138,where is the baby lying,1,75728599506,DL,play area,back of the trunk,mobile,crib,bathtub,back of the trunk 1548,3131380536,2007,640,480,what did the child do after he put the spoon in his mouth first time,3,31313805366,TN,ask for another,eat,shake the toy,suck the spoon,takes them out,suck the spoon 1549,12392885583,929,640,480,what colour is the boy s clothes,0,123928855831,DO,blue,light blue,orange,purple,black and white,blue 1550,6516459343,2697,640,360,what does the man in white do after cutting the shoes for a while,2,65164593438,TN,start talking,look at the girl playing,change knife,picked up his bottle,pass paper to woman,change knife 1551,2736413196,1617,352,288,where are the people at,1,27364131964,DL,fish farm,bar,a park,in the sea,beach,bar 1552,6183104292,593,640,480,why does the man in grey shirt walk away at the end of the video,4,61831042923,CW,catch ball,adjusting,writing something,press something on the report,finish feeding,finish feeding 1553,5421648216,1290,640,360,how many sheeps are involved in the video,2,54216482166,DC,six,four,three,one,two,three 1554,3851913128,2235,640,480,how many people are involved in the video,1,38519131287,DC,two,five,four,three,one,five 1555,7786283208,636,640,360,how many children are there in total,1,778628320810,DC,six,three,two,one,nine,three 1556,2782307049,461,640,480,why is there water flowing down in the video,1,27823070498,CW,raining,waterfall,to collect the water,hailstones,they are artificial raindrops,waterfall 1557,7288107396,507,640,360,how did the lady in pink ensure that the boy does not fall from the stairs,3,72881073960,CH,carry him up,cheer for him,hold onto railing,hold his hand,hug his body,hold his hand 1558,4949582792,2639,640,360,why was the pram moving vigorously at the end,3,49495827929,CW,lady rocking pram,car is moving,music performance,girl rocking pram,strumming guitar,girl rocking pram 1559,5047408177,648,320,240,what are the woman and the girl doing in this video,1,50474081777,TC,putting the thumb inside her mouth,hang out the clothes,cycling,playing on the swings,pat her face,hang out the clothes 1560,3456030972,755,640,480,why did a man in red stand next to the boy when he saw the boy distracted,3,34560309724,CW,put toy away,boy s turn to play,decoration,make sure he focuses,shy,make sure he focuses 1561,5333075105,1168,640,480,how did the man kept himself warm,2,53330751051,DO,thick jacket,wearing a jacket,winter clothes,wear thick clothings,wear long sleeves,winter clothes 1562,8064178441,2229,640,1138,why is the boy in red sitting down,3,80641784410,CW,meditating,to play with dog,watching television,play with baby,eating from a bowl,play with baby 1563,5803861992,2145,640,480,where is this video taken,4,58038619928,DL,mountain top,snow mountain,home,dining table,bedroom,bedroom 1564,8547321641,327,640,362,what did the baby do after he walked up to the camera,2,85473216418,TN,rock chair,take the toy,walk to the sea,tried to touch camera,stares at camera,walk to the sea 1565,6772999108,1467,360,480,how was the boy making music,2,67729991084,CH,with a stick,sit down,strum the string with finger,wear glove,presses the button,strum the string with finger 1566,5047408177,648,320,240,why does the woman hold a shirt,3,50474081772,CW,bring it to the warehouse,to be thrown away,giving them away,shake and fold it,make space for more clothes,shake and fold it 1567,8505893258,888,640,360,how do the girls react when interacting with the lady in pink,0,85058932583,TC,smiling,cry,walk away,sit down,run away,smiling 1568,2977504625,384,640,360,how did the car move forward,0,29775046255,CH,boy push the car,boy turn the handle,girl push the car,remote controlled,powered by batteries,boy push the car 1569,4244817395,1683,640,480,why does the lady in strip touch the cheeck of the boy near the end,2,42448173953,CW,make boy laugh,want to kiss boy,signal him something inside drinking machine,wipe tears for boy,wipd off the food,signal him something inside drinking machine 1570,8495272210,630,640,360,how does the lady in yellow get down the slope,2,84952722100,CH,via sledge,with bicycle,skiing down,by car,man pushed her,skiing down 1571,6272786009,535,640,384,why do the people on the boat move their body,4,62727860094,CW,kayaking,to get onto the boat,steer direction of the raft,diving,paddle harder,paddle harder 1572,8531675050,1620,640,360,how do the people feel while being on the stage,4,85316750505,TC,shy,restless,bored and sleepy,pleased,confident,confident 1573,4949582792,2639,640,360,what does the girl do after rocking the pram,0,49495827921,TN,pick up the seatbelt,sits down,pour on dog,adjusts the baby in grey,walk away and play,pick up the seatbelt 1574,4420239986,669,640,480,how does the cat attack the dog s face,0,44202399868,CH,use paws hit dog face,climb,move their head,moving all over the place,jump on it,use paws hit dog face 1575,2854886555,480,320,240,what did the boy do after picking the fruit,1,28548865557,TN,looked down at ground,walked away,eat food,puts his hand on the baby,put hand inside the toy,walked away 1576,5945172741,1593,640,480,why does the child in stripes climb onto the bed in the beginning,3,59451727410,CW,entertain himself,wanted to sleep,resting,take ball from man,wanted to take his pillow,take ball from man 1577,5498331490,2160,640,480,what does the cat do on the toilet bowl at the start,0,54983314901,DO,support to poop,playing,bathtub,clean itself,plastic wrap,support to poop 1578,2925298951,398,640,480,how is the picture of the women being taken,1,29252989514,CH,posing at the white wall,camera in front,with a phone,posing with the flowers,put arms around a man,camera in front 1579,2442307875,515,640,480,what do the children do after they moved their arms to the side in the middle,2,24423078750,TN,close his eyes,turn around,change posture together,faster,look up smile and move hand,change posture together 1580,6895608152,2178,640,360,how do the people in red react when the person in white enters on stage,1,68956081520,TC,stand in a line,move to stage edge,confident,continue talking,performing,move to stage edge 1581,4846820256,671,640,480,why is the camera lens blocked near the end of the video,1,48468202565,CW,filming the sequence of events,person s finger,direct the boy s attention,done with talking,signal photo taken,person s finger 1582,2976913210,542,640,480,what is the man adjusting in vehicle near the end,0,29769132103,DO,to go back,red,musical instruments,cardboard box,mobile phone,to go back 1583,4516967897,2036,640,480,what was the man in black in the background doing as the two ladies talked in the middle of the video,3,45169678973,TC,wipe tears,lighting fire,start gesturing and speaking,walking,cycling,walking 1584,10001787725,1021,640,360,what does the baby do as it tries to move forwards,0,100017877257,TC,waddles up and down,reach for the bottle,reach for the flower,close his eyes,crawling on the ground,waddles up and down 1585,4166942239,590,640,480,what does the man in suits do after the man in red points out something about his feet,0,41669422396,TN,move his body,adjust sitting position,position and aim knife,look over,get off his horse,move his body 1586,2957808913,598,640,480,what is the the man in black doing in the middle of the street,1,29578089130,CW,lie down,dancing,to get the microphone,fight with others,parking,dancing 1587,2824317018,1606,500,375,why did the girls approach the boy after he went sitting down on the bench,2,28243170182,CW,wanted to draw together,to lift the bench together,talk to him,ask him for sweets,play together,talk to him 1588,10727696143,1821,640,480,what did the boy do after running to the door,1,107276961435,TN,walk towards the toy,talk to person outside door,dance,run to kitchen,pet cat,talk to person outside door 1589,2573424030,1470,320,240,how does the dog show that it wants to get treat,3,25734240308,CH,play biting,caress its head,wear collars,stand on 2 legs,try to pull out,stand on 2 legs 1590,4896969617,350,640,480,how did the boy stand up in the middle of the video,1,48969696172,CH,lady pull him up,push himself up sideways,use rope,in crutches,hinge on the man s feet,push himself up sideways 1591,6142416815,1267,604,1072,how many children are in the video,0,61424168153,DC,one,two,kitchen,four,three,one 1592,2400171624,996,500,375,why does the person need to be fully geared up,2,24001716244,CW,playing near the cliff,for safety,ski on snow hill,protection,controlling the helicopter,ski on snow hill 1593,7442562474,598,640,480,why did the white cat have one paw over the brown cat at the start,4,74425624748,CW,hitting the brown cat,licking the brown cat,scared,no space to put the paw,resting the paw,resting the paw 1594,8457210773,1976,640,480,what did the brown dog do after the black dog with red collar walked past in the middle,2,84572107735,TN,smell its head,get up slightly,mount the black dog,sits down,lovingly,mount the black dog 1595,4420239986,669,640,480,how did the cat stop the dog from biting it,2,44202399861,CH,grab it,tries to jump over the dog,pushing dog away,lean on table,reach towards baby s hand,pushing dog away 1596,5735711594,589,272,480,why do the other dogs run towards the bigger white dog when it is resting,1,57357115942,CW,to catch the rod,attack white dog,to snatch the green toy,give him a toy bone,snatch his food,attack white dog 1597,4010069381,369,640,480,what did the girl do at the end of the video,4,40100693818,TC,run to camera,something behind the camera,hugs the man,turn the paper around to show the camera,talk to men,talk to men 1598,5766018720,1830,640,426,where is this video taken,3,57660187204,DL,speech event,jungle,beach,room,sheltered area,room 1599,6516459343,2697,640,360,why are the men looking down at the shoe while the man in white is cutting it,2,65164593436,CW,interested,head itchy,keep it stable,to swim,chef attire,keep it stable 1600,2971556305,1459,640,480,why is the woman in pink taking video of the house,1,29715563050,CW,attracted by the flowers,filming women touring house,making vlog,wanted to sell her house,searching for hidden gems,filming women touring house 1601,5940941487,838,640,362,what is the man with guitar wearing,1,59409414871,DO,white tshirt,black shirt,pink shirt,shorts,long boots,black shirt 1602,6018514357,1280,640,1138,what does the baby hold onto while climbing up the step at the end,3,60185143577,TC,black railings,red railings,blue railings,green railings,silver railings,green railings 1603,6806999702,2697,640,360,what did the girl do after she finished playing with the ball at the end of the video,4,680699970210,TN,touch man s head,pick up something,push green obstacle away,caress the cat,go to the adult,go to the adult 1604,4636208292,2580,640,480,what does the people do after raising their glasses at the end,0,46362082926,TN,touch each other s glasses,drink,dance,paint house,talk,touch each other s glasses 1605,8740703217,602,640,360,what does she do after she reaches to pick up another piece at the end of the video,4,87407032173,TN,talk to men,point at something,do a peace sign,happy,push it down,push it down 1606,7416295940,2388,640,384,why did the baby follow the man and scoop some sand after the man showed the baby how he filled the truck,0,74162959401,CW,enjoy it,playing,move to different place,still alive,get rid of them,enjoy it 1607,7059877301,918,640,480,what did the light brown dog do after it turned its body near the beginning of the video,0,70598773010,TN,stuck out its tongue,went to another tub,runs after it,pat black and brown dogs,opened its eyes,stuck out its tongue 1608,4761953886,797,640,360,how did the dog positioned himself in the video,1,47619538864,CH,in girl s lap,lying down,standing up,near the window,running around,lying down 1609,3939145327,1194,640,360,how did the girl controlled the direction of the tricycle,2,39391453275,CH,automatic,motion sensor,using the handle grip,voice controllers,pressing buttons,using the handle grip 1610,8107573462,406,640,360,why did the boy put his hand on the ground,1,81075734624,CW,play with snow,to balance himself after he fell,adjust his shoe,want to lie down,pick something up,to balance himself after he fell 1611,3340340268,1289,640,480,what does the girl in red do after the girl in green removes the basket from her head,1,334034026810,TN,hit her back,walks away,run and catch him,put hands together,swing,walks away 1612,6480018109,709,640,360,how is the patient able to see clearly,1,64800181096,DO,man made it,spectacles,powered by batteries,helmet,press the shutter,spectacles 1613,4635309062,2076,640,480,why did the white shirt man stop cooking halfway,0,46353090620,CW,washing his hands,change another place,make room to perform,plastic blocking food,did not finish,washing his hands 1614,4984331176,300,640,480,how does the girl in yellow position her legs before running through,0,49843311768,DO,bend forward,takes support on the floor,up in the air,swing her leg,move slowly,bend forward 1615,2442307875,515,640,480,how do the children feel while performing,3,24423078758,TC,accomplished,refreshing,curious,enjoyable,saad,enjoyable 1616,8594314852,377,640,360,why does the lady in pink stand in front of the child in blue,2,85943148522,CW,show love,sunny weather outside,waiting for the child,protect child from dog,waiting for the pan,waiting for the child 1617,6018514357,1280,640,1138,what did the baby do after standing up on the slide,3,60185143575,TN,stands near the corner,stretch out the hand holding board,looked confused,turned around,take the toy out,turned around 1618,3935853204,943,640,480,what is the colour of the shirt the woman controlling the screen is wearing,1,39358532047,DO,yellow,black,orange,blue,purple,black 1619,4166942239,590,640,480,how is the man in red standing at the end of video,4,41669422399,CH,hands behind his back,folding arms,lean against wall,hands in pocket,holding fist,holding fist 1620,6896884547,1440,640,360,what does the baby do after hitting the ball in the middle of the video,1,68968845478,TN,shakes legs,toss ball down,lie down,breathe harder,lift the club up,toss ball down 1621,7572859950,497,640,1138,what does the lady do after helping the baby to wear shorts in the middle,0,75728599504,TN,stretch the shirt,pick up another toy,stand still in front,touch flame,kiss them,stretch the shirt 1622,4838145161,1921,640,480,what did the cat do after it jumped into the sink with water,2,48381451615,TN,sit up then roll back,play with the hand,watch the water flow,follow the string,walk past,watch the water flow 1623,7605329840,635,640,360,what does the man do as the children are blowing balloon,1,76053298403,TC,afraid,interacting,try to catch it,walks away,pop,interacting 1624,3719793245,342,640,480,why did the lady tilt her head backwards near the end of the video,2,37197932455,CW,trying a new dance move,stretching her head,look at camera,she heard a scream,looking at the horse,look at camera 1625,8513603944,919,640,480,how do the children move on the ground,4,85136039447,CH,walk,roll over to the side,jump around,sits in a trolley,ski,ski 1626,6542914065,300,640,360,how did the man in grey signal for the other people to move run,0,65429140651,CH,pat the ball,uses a leaf,claps,use paddle,pull leash,pat the ball 1627,4388652400,1785,640,480,why does the dog starts spinning after the man points finger,2,43886524001,CW,show affection,train dog,chasing his tail,wants to get pet,awaiting another snowball to be thrown,chasing his tail 1628,5129152550,2697,640,480,why do the people squint their eyes,0,51291525508,CW,hot sun,unhappy,photo taking,looking at the screen,take pictures,hot sun 1629,2829462646,2500,352,240,how does the man in stripes communicate,1,28294626464,CH,talking loudly,speaking and gesturing,wave frantically,point to signboards,using a pointer,speaking and gesturing 1630,10309542255,2566,640,480,how did the animals make sure that they do not get pushed too far off during the fight,3,103095422555,CH,throw mud,stomp their feet,hurl a stone,push back,shout for help,push back 1631,4087654898,330,640,480,why is the girl bent down,2,40876548983,CW,carry the boy,pick out the ball,pour water into bucket,tie her shoes,wash her hands,pour water into bucket 1632,3171006258,1099,640,480,what did the man do after he took off one of his skates,3,31710062586,TN,tidy hair,stands behind,step on the leash,stand up,walked to the corner,stand up 1633,2976913210,542,640,480,what is the man trying to do in this video on his vehicle,1,297691321010,DO,band members,get across the dirt,the man,discussion,touch the screen,get across the dirt 1634,3270490566,1515,640,480,what does the man playing the guitar on the left do after finishing the song,3,32704905666,TN,pick up the black box,put down the guitar,clap,look behind him,pick up water bottle,look behind him 1635,3261079025,553,640,480,what was the man in grey doing as he was holding the plane,3,32610790257,TC,smoking,jump up to throw it,walks away,looking at man with controller,running,looking at man with controller 1636,4189100053,874,640,360,what is the relationship between the woman and the boy,4,41891000536,DO,siblingsfriends,sibling,offspringparents,siblings,mother child,mother child 1637,4420239986,669,640,480,why did the dog open its mouth towards the cat repetitively,3,44202399865,CW,paw at the dog,show the food,distracted by something else,want to bite cat,notices what cat does,want to bite cat 1638,3046900922,539,640,480,how does the man sweep the pile of leaves away,4,30469009228,CH,using the pump,with a shovel,hold onto the side of board,run towards the wall,swinging the boy,swinging the boy 1639,6037747123,919,640,480,why was the vehicle parked there,1,60377471237,CW,parked,the ladies transportation,it s sunny,look at it,no space in front,the ladies transportation 1640,2821788355,765,320,240,why did the man couch down,4,28217883555,CW,to touch water,to splash water at dogs,scoop water for fishes,posing for camera,for balance,for balance 1641,7223854838,413,640,360,why do the kids put their hands on the glass,3,72238548380,CW,bring to table,take a photo,testing the temperature,to touch,drinking from the glass,to touch 1642,3524939594,436,320,240,where are the men hanging out,4,35249395949,DL,by a stream,carpark,home living area,mountain,hallway,hallway 1643,6297019062,1746,640,360,why did the baby in pink chair put her hand on her face in the middle of the video,1,62970190628,CW,playing with the baby,smell his ribbon,pose,fell down,be shy,smell his ribbon 1644,5919180502,1379,640,480,what does the woman in the hat do after looking at the camera,3,59191805024,TN,hold up the bottle,laughs,standing at side of the path,says something,wipe her face,says something 1645,7888256388,658,640,480,what does the girl do as the dog was sniffing the lady s shoes,0,78882563882,TC,stand at the back and watch,push dog away,hold the dog,sit on sofa,place paw on her palm,stand at the back and watch 1646,5662041273,2697,640,480,how did the helicopter get in the air,2,56620412736,CH,boy threw it in the air,tied to ceiling,with the remote control,tied to cupboard,father threw it in the air,with the remote control 1647,8254300526,1104,640,1138,why does the baby stretch his left hand out towards the end,1,82543005267,CW,sleeping,grip higher pole,lost balance,interact with the person,excited,grip higher pole 1648,3063380173,515,500,375,how many kittens are in the video,2,30633801738,DC,one,three,two,four,five,two 1649,4126010904,1698,640,480,what do the other people do as the tall man leans his face against the tv screen,4,41260109041,TC,using phone,play melodica,wait,walk to sofa,talking to each other,talking to each other 1650,6624174621,1212,640,480,why did the room become dark at the end,1,66241746215,CW,man hit the sofa,lady blew away the candles,let animal walk forward,swimming,stylish,lady blew away the candles 1651,8403741210,1327,640,360,why is the face of the short hair girl so bright when she looks into the tablet,2,84037412100,CW,looking at his ipad,watch something,screen is bright,show what she s talking about,writing on paper,screen is bright 1652,5308503740,1609,640,480,what did one of the rabbits do when the person approached it near the end of the video,4,53085037401,TC,laugh,pose with his hands,lie down and rest,look around,hop away,hop away 1653,6253433310,680,640,480,why is the boy moving his arms and legs randomly at the end of the video,3,62534333103,CW,check the tent,play with toy,take his cap,tread water,stretched backwards,tread water 1654,8224504302,1290,640,480,what are the men holding onto when they speak,1,82245043021,TC,phone,glasses,camera,microphone,milk pack,glasses 1655,4978714491,1200,640,480,where is this video taken,4,49787144916,DL,jungle,grassland,mountain top,sheltered area,road,road 1656,8253302563,1056,640,360,what does the boy do after standing up and look around for a while in the middle,0,82533025632,TN,sit down,dance,sit on swing,walks away,take a few steps,sit down 1657,8252088130,426,640,360,what did the woman do after adjusting her hand in the middle,3,82520881304,TN,touch her bag,poke her face,pick up dog,walk to show camera,reach for something,walk to show camera 1658,4744503881,488,640,480,why does the lady wearing black top come near the table at the end,1,47445038810,CW,watching the boy playing the drums,ordered by customer,talk,talking to them,talking,ordered by customer 1659,2868183184,1551,500,375,why does the girl in white hold a rod,2,28681831842,CW,fishing,to hit the fly,make food,play with baby,hit the drum,make food 1660,3843551232,696,480,360,how did the black puppy react after sering the big dog wag its tail,3,38435512327,TN,barked back,climb on it,move away,sniff the tail,walk to the man,sniff the tail 1661,2990321092,633,640,480,what did the man in black do each time he took a bite of his food,0,29903210929,TC,chew,eat,give to another person,look at the baby,milk bottle,chew 1662,5406108447,1337,640,360,why did the girl bend forward a few times in the video,4,54061084470,CW,drag the red box,to carry baby,to swing the hammock,to push her,pick up towel,pick up towel 1663,11849091804,1296,640,360,why does the kid opening the gift nods his head very fast near the beginning,1,118490918044,CW,imitate man,dancing,wants to eat,feed them,answering to someone,dancing 1664,13884293626,5395,640,360,why is there a bottle of water on the brown stand,1,138842936264,CW,female drinks water,man in brown drink,filter pouring of sand,for children to drink,for cat to drink,man in brown drink 1665,4564478328,1410,640,360,why was there a big splash of water,3,45644783285,CW,waterfall,caused by boats,there is a glass protecting them,lion jumped into water,jet boat moving,lion jumped into water 1666,5907839036,2697,640,360,why did the long pants man look down at this pants at the start,0,59078390361,CW,feel something in pocket,hands sweaty,pants dropped since belt loose,dog pull his pants,for comfort,feel something in pocket 1667,4092992100,461,640,480,what was the guy in red doing as the guy in yellow and blue prepared to ride off,1,40929921008,TC,goes away,waiting below with his bike,follows him,talk to someone else,extend his hand,waiting below with his bike 1668,2821788355,765,320,240,what does the man do after crossing the wave caused by the speedboat,3,28217883557,TN,boat capsized,throw something onto shore,grab float from back,touch the water,strokes his beard,touch the water 1669,9082180631,406,640,360,how can the two babies in red move forward,1,90821806315,CH,with their bikes,pulled by boy,wear shoes,chase each other,paddle the wheels,pulled by boy 1670,4650556666,567,640,480,why is the child on the floor near the end of the video,3,46505566662,CW,cry,to rest,take a drink,lose balance,playing with dog,lose balance 1671,4859057828,647,640,480,what did the two other ladies do after the lady in yellow stretch her arms out at the start,2,48590578281,TN,sit down,grab her,put arms around each other,hold baby s waist,pointing and laughing,put arms around each other 1672,2552130183,2697,480,360,what does the baby do after holding tight to the lady s fingers,2,25521301839,TN,put on keyboard,playing with the baby,trying to walk,put her hand on his forehead,kiss baby cheeks,trying to walk 1673,4488066715,2638,320,240,why does the adult try to keep the other hand of the baby away from the table,1,44880667151,CW,there was hot soup,prevent the bowl tipping,not to mess up the table,waiter was serving food,people are eating,prevent the bowl tipping 1674,3456030972,755,640,480,where are the children sitting in,1,34560309727,DL,high chair,classroom,crib,in the boat,steps,classroom 1675,2854886555,480,320,240,why is the boy wearing shades,3,28548865551,CW,celebrate,protect from sun,cycling,it s sunny,illustrate what he is mimicking,it s sunny 1676,8627074061,2697,640,360,what is the lady doing with the girl,2,86270740611,TC,feed the girl,playing guitar,show paper arts,dancing with her,swing the girl,show paper arts 1677,8513603944,919,640,480,why do the children slide slowly on the ground,1,85136039445,CW,reach out for the electric guitar,trying to walk,watch tv,play with toys,tired,trying to walk 1678,3131380536,2007,640,480,how did the child react after he scooped some yogurt and put into his mouth,0,31313805367,TC,smiles,look away,claps,frustration,shake his head,smiles 1679,10030609934,1680,640,360,what did the boy do after he walked away at the end of the video,2,1003060993411,TN,look back to keyboard,get off the scooter,look over fence of porch,looks down,carry the baby down,look over fence of porch 1680,3456030972,755,640,480,why did the boy stick his tongue out during the abacus class,3,34560309720,CW,take turn to play,look at something,finish arranging,trying to be funny,gesturing to the girl,trying to be funny 1681,3719793245,342,640,480,how was the girl kept safe in vehicle,4,37197932457,CH,baby restraint,wearing very thick clothing,adults holding her,safety harness,seat belt,seat belt 1682,11587211476,1470,640,360,what event is currently happening in the scene,3,1158721147610,TC,living room,barbeque party,dance performance,dog obstacle race,photoshoot,dog obstacle race 1683,4199369046,1717,640,360,how do other people react after the lady drinks from the cup,2,41993690465,TN,walks to the boy,smile,clap their hands,laughs,sway her body,clap their hands 1684,7453733046,992,640,360,what did the boy in black do after filling his cup with water,0,745373304612,TN,walk to playground,water bottle,eats the food,wipe his mouth,talk with the woman in black,walk to playground 1685,5658916668,660,640,1138,why did the man extend his arms forward,1,56589166680,CW,hold baby in place,maintain balance,dancing with partner,pointing at audience,lifting weights,maintain balance 1686,9873067604,920,640,360,how many people were singing,1,98730676049,DC,four,three,two,nine,eleven,three 1687,5521781780,2697,640,480,what does the man in grey do after taking a photo of the first structure at the start,1,55217817800,TN,enter the room,take picture of the wall,wave,examine the object,pointed at the camera,take picture of the wall 1688,2623954636,931,500,375,why does the boy look under the table at the end of the video,1,26239546362,CW,pick up the stick,ball is under the table,check for food stains,check for water drips,to keep something under table,ball is under the table 1689,6860322796,1285,640,360,how did the lady protect her eyes from the sun,1,68603227968,DO,stay in shade area,wear sunglasses,thick clothes,wearing thick clothes,wearing long sleeve shirt,wear sunglasses 1690,2697214342,1498,640,480,what is the relationship between the men,0,26972143423,DO,colleague,classmates,friends,team members,parent offspring,colleague 1691,3711681535,1070,640,480,why are there two men standing next to the woman at the top board,1,37116815357,CW,watching the man write calligraphy,crewactivity member,dancing,servant,watching performance,crewactivity member 1692,7533369046,803,640,360,what was the baby looking at in the middle of the video,1,75333690464,TC,adult,black box,dog,book,flower,black box 1693,13296054183,303,640,1138,why are the men wearing helmet and gloves,3,132960541830,CW,horse riding,working at great height,practising fight,protect themselves,it is cold,protect themselves 1694,5840177726,377,640,480,how did the men make their way upslope,4,58401777260,CH,run,move left and right,sitting on table,run up,cycle up slope,cycle up slope 1695,4859057828,647,640,480,why did the lady in jacket walk towards the two ladies at the start,0,48590578286,CW,to take a picture with them,guide her dance move,help girl stir,speaking to the audience,listen to man,to take a picture with them 1696,6516459343,2697,640,360,why did the man in green hold up the shoe as he is speaking,1,65164593431,CW,seek his help,emphasize his point,to camouflage,move out of the way,playing with it,emphasize his point 1697,5533380417,403,640,362,how did the man comfort the baby when he woke up,4,55333804175,CH,give the toy back,use bib to wipe,play with baby,wave a toy,rock on the chair,rock on the chair 1698,3942617402,738,640,480,what happens to the train as it starts moving,4,39426174024,TC,move backwards,their right,stops the engine,follow the train with eyes,more smoke comes out,more smoke comes out 1699,5885887012,956,272,480,what does the baby do after she puts both hands on the pole after she stopped near the start,0,58858870125,TN,balancing herself,kiss them,catch back balloon,sit down,move baby s hand,balancing herself 1700,8107573462,406,640,360,why did the man hold the boy s hand,4,81075734622,CW,push the boy,skiing together,to pick the boy up,pose with the boy,to support the boy,to support the boy 1701,3851913128,2235,640,480,why did the guy in red raise his hand out and made the okay sign to everyone,0,38519131282,CW,confirm they have learned,teething,copy the cartoon character,ask him to hurry up,encourage him,confirm they have learned 1702,5635265624,584,480,640,how did the mother show love to the baby around the middle of the video,1,56352656247,CH,kiss him,rubbing baby s hair,using spoon,using her finger,by reading book to him,rubbing baby s hair 1703,6300775954,1734,480,800,how did the man help the lady when she was struggling,2,63007759543,CH,remote control,looks at the product,hold the barbell,using his hands,mask,hold the barbell 1704,9473479950,608,640,480,what is the baby doing as he lied on the bed,3,94734799504,TC,sleeping,touched the baby s back,toy giraffe,swinging arms and legs,raise his arm,swinging arms and legs 1705,3321261856,855,640,480,what did the cat do after looking at the bait that the girl is holding,3,33212618561,TN,cut the meat,looked at the wall,walk past,touch it,lies down,touch it 1706,2697214342,1498,640,480,why are there three more men standing around the man in green bending the wood,2,26972143424,CW,recording,scared of snake,working on other things,following,observing,working on other things 1707,3155382178,858,640,480,why does the man move closer to the ball at the beginning,2,31553821780,CW,get close to the baby,catch fish,to kick the ball,facing the camera,prepare for another hit,to kick the ball 1708,4762946272,647,640,360,what was in the bowl,4,47629462728,DO,fruit,water,wood,plate,flour,flour 1709,5840177726,377,640,480,why did the man in brown jump up a little nearing the end,4,58401777265,CW,hold the railings,wide hole on the ground,play with camera,excited,hump on the way,hump on the way 1710,5129152550,2697,640,480,what is the relationship between the man speaking and people standing behind him,4,51291525505,DO,monitor,cameraman,short guy,prototype of a hot air balloon,team members,team members 1711,6329077812,1835,640,360,why did the lady hold the baby s head throughout the time,1,63290778128,CW,make his hair neat,support baby,taking pictures,adjusting his hair,prevent him from knocking the door,support baby 1712,3046900922,539,640,480,why is the man carrying the child,3,30469009229,CW,show baby in video,support him,for support,play with him,hot sun,play with him 1713,4970148391,732,640,480,what does the boy do after hitting the second balloon,2,497014839110,TN,move his hand,start dancing,drop bat and take off cap,take off goggles,shake the man s hand,drop bat and take off cap 1714,4740074365,584,640,360,what is the relationship between the two people slow dance in the middle,1,47400743652,DO,band member,couple,colleague,sibling,classmates,couple 1715,2604394962,1078,640,480,how did the man make the toy seem like it is looking down from the great height,2,26043949624,CH,turned the toy,push chair behind,pushing the neck downwards,spectacles,hold the toy s arm,pushing the neck downwards 1716,4488066715,2638,320,240,why does the man keep gesturing with his free hand,0,44880667155,CW,teaching baby,gesturing while talking,cycling,describing something,dancing with the baby,teaching baby 1717,5138093706,931,640,480,how did the baby move up the stairs near the end of the video,4,51380937061,CH,lady carried her,walk up,ran up,man hold her hands,crawl up,crawl up 1718,4138579400,601,640,480,what is the boy doing,2,41385794001,TC,playing driving game,kneeling down,playing with sticks,spinning,assembling structure and take out leaves,playing with sticks 1719,8594309349,459,640,360,where is the fish swimming towards at the end,1,85943093497,DO,the ship,to the right,sink area,nope,shaking,to the right 1720,9531760182,2097,640,480,what is the relationship between the lady and the man,1,95317601820,DO,friend,grandparent offspring,trainer trainee,friends,team mates,grandparent offspring 1721,8495272210,630,640,360,why does the lady in yellow change direction when she reaches the bottom of the slope,4,84952722102,CW,waiting for baby to slide down,reach a wall,check on man behind,slide again,not to hit onto snow,not to hit onto snow 1722,3261079025,553,640,480,why does the man wearing hat hold a romote controller,2,326107902510,CW,flip the slides,change tv program,to fly plane,contril the car s movement,take video,to fly plane 1723,3046900922,539,640,480,how is the child being held for most parts of the video,1,30469009226,CH,on lady s lap,carried by the man,in pram,left and right,on man s back,carried by the man 1724,3380344744,1485,640,480,where is the lady cleaning the baby,4,33803447440,DL,living room,river,pool,wash room,kitchen,kitchen 1725,3869005094,300,640,480,what are the people doing with the wooden sword,1,38690050941,TC,hang on window,practice,fighting with people,selling,they were posing with it,practice 1726,6443512089,2437,640,360,why does the child fall when the toy reaches the end of the ledge,0,64435120892,CW,toy gets stuck,to balance the bike,to catch its attention,snow on the ground,to balance himself,toy gets stuck 1727,5349766264,1884,640,362,why is the guy in chequered shirt bouncing up and down on the piano chair,3,53497662643,CW,singing along,to arouse baby interest in playing,looking after them,moving his body with the rhythm,playing with him,moving his body with the rhythm 1728,11670386946,998,640,360,what does the man in brown do after smiling at the camera in the middle,2,116703869464,TN,look around,drinks something,looks at paper,laugh,drink from cup,looks at paper 1729,9528990839,427,640,480,why is the man seating behind the lady,1,95289908397,CW,give her directions,passenger,filming her drive,there was no seat beside the lady,tying her hair,passenger 1730,4798585428,2697,640,480,where are they taking photos,1,47985854287,DL,house,gallery,the beach,restaurant,screen,gallery 1731,4483447009,775,640,480,where could this be happening,0,44834470095,DL,farm,function room,school,garden,living room,farm 1732,5056964274,924,640,480,what is the boy doing in the video,0,50569642749,TC,eating and drinking,playing with dog,walking with woman,building sandcastles,pushing chairs,eating and drinking 1733,2824317018,1606,500,375,why did the girls bend down in front of the boy when talking to him,2,28243170184,CW,take a closer look at him,look at the boy,to hear him,praise him,waiting for him to open present,to hear him 1734,9531760182,2097,640,480,why is the lady holding onto the bowl that the baby was holding at the beginning of the video,2,953176018210,CW,move the toy,put on shelf,take away from him,pick up something on the floor,readjust baby s position,take away from him 1735,3981865268,1109,640,480,why did the man move his body at the beginning of the video,3,39818652680,CW,gesturing in his speech,swing cloth,pick up the present,grooving to the music,encourage baby to play with boy,grooving to the music 1736,7887764754,1063,640,480,why did the baby keep swaying her legs,4,78877647541,CW,to get the baby s attention,change posture,man is making baby laugh,play with the toy,excited,excited 1737,7308042410,1019,640,1138,why does the man in white holding a tool makes girl to hold it in certain position near the end,1,73080424102,CW,take photo,teaching pottery to her,passing her a gift,playing game,punishing her,teaching pottery to her 1738,3843551232,696,480,360,which dog is jumping back and forth,4,38435512320,DO,the one on the chair,the white dog,the big dog,yellow dog,the black puppy,the black puppy 1739,8531675050,1620,640,360,what are the man and woman doing on the stage,1,85316750500,TC,shout at each other,acting,playing music,dancing together,presentation,acting 1740,6329954198,692,640,360,why is the man in beige shirt looking down at the beginning of the video,4,63299541988,CW,using his phone,checking,listening to music,holding a hen,looking at the man drawing,looking at the man drawing 1741,4087654898,330,640,480,how many children are there,0,40876548989,DC,two,nine,six,three,one,two 1742,3060478605,432,320,240,what did the lady do after stopping the horse in the middle,0,30604786053,TN,turned to right side,crawl,smiles,pick it up,swing around,turned to right side 1743,9408800471,1056,640,480,how does the dog reach to hit the ball in the middle of the video,2,94088004712,CH,pats with paws,lying in the tunnel,jump and hit with nose,jump down the chair,hold it in mouth,jump and hit with nose 1744,4443526735,472,480,640,what was the baby holding in his hands,1,44435267356,TC,biscuit,toy,lollipop,bottle,pacifier,toy 1745,8403741210,1327,640,360,why is the short hair girl opening her mouth when she looks at the tablet,1,84037412101,CW,suck,reading,type on her laptop,show what she s talking about,screen is bright,reading 1746,7330294814,2298,640,360,why is the baby in yellow looking up at the lady in grey,1,73302948141,CW,unclear,she is talking to baby,snacks to eat,dancing,teaching,she is talking to baby 1747,2434859163,615,500,375,why are the polar bears kept behind the glass windows,3,24348591630,CW,remove their snow,playing in ice water,eating food,safely watching,soak themselves in ice water,safely watching 1748,13919236672,3924,640,360,what did the girl do after she turned around herself at the beginning of the video,3,139192366726,TN,swing her leg,put on her shoulder,get out of car,pick up something,adjust scarf,pick up something 1749,2696280239,398,640,480,how did the person in red move his arms when the bull entered,2,26962802398,CH,reach for the microphone,strum the guitar,swing in the air,reach for the straw,reach for the red cloth,swing in the air 1750,4006608424,2697,640,480,what does the man do after getting off the swing near the middle,4,40066084246,TN,kick some more,dig deeper into box,throw the bucket,hit with bat,runs backward,runs backward 1751,2940373590,306,640,480,where are the people dancing,1,29403735906,DL,classroom,ballroom,on the streets,swimming pool,in front of the television,ballroom 1752,5445581571,964,640,360,what is the animal in the video,0,54455815710,DO,dog,rabbit,crab,horse,elephants,dog 1753,4889681401,2697,640,480,how did the men prepare for this activity,3,48896814012,CH,wear swimsuit,wear mouth guard,topup pertrol,cycling outfit,buy groceries,cycling outfit 1754,13515224395,1216,640,360,where is the lady playing with the dog,0,135152243955,DL,in her house,snow wild,kitched,garden,a forest,in her house 1755,10597533885,1728,640,360,what does the baby do after playing with the toy house in yellow at the end,3,105975338855,TN,hiding,play the instrument,squat down,goes back to the original house,looked curiously,goes back to the original house 1756,5333075105,1168,640,480,why did the man look up a few times while he moved through the thick snow,2,533307510512,CW,look for flag,reach for water,look at the cameraman,bewareof animals,imbalanced,look at the cameraman 1757,5833145209,510,640,480,what is the animal shown in the video,0,58331452098,DO,bird,tiger,fish,penguins,cat,bird 1758,3526597179,807,640,360,what is the lady in white doing at the end of the video,0,35265971794,TC,talking to lady in yellow,look closely at her teeth,record the girl performance,check out her new shoes,playing with a toy,talking to lady in yellow 1759,4707679105,965,640,480,why does the baby look up at the man in the middle of the video,0,47076791055,CW,asking something,watch the man untie the toy,check if there s any milk left,to see how to move the rod,acts to sing,asking something 1760,5129152550,2697,640,480,how do the people behind the man speaking react when listening to him,4,51291525507,TC,microphone,listening attentively,looks in the camera,taking video,nod head,nod head 1761,2829462646,2500,352,240,what does the person in blue hold,2,28294626463,TC,dj headset,toy train,camera,ice-cream,jacket,camera 1762,3943634344,629,640,360,why does the woman pull the girl s shoulder back at the start of the video,3,39436343442,CW,looking at something,adjust her clothes,indicating to the camera man,get her attention,posing for photo,get her attention 1763,8224504302,1290,640,480,why do not the two men drink,2,82245043020,CW,playing with girls,no drink left,focus on speech,busy eating,cover mouth with hands,focus on speech 1764,3452354871,511,640,360,how did the man get the bird off his shoe,3,34523548714,CH,carry the bird,shake his legs,run away,move shoe slightly,remove shoes,move shoe slightly 1765,2495861393,1499,500,283,where are the people cooking,2,24958613935,DL,house,fish market,kitchen,at home,stage,kitchen 1766,2782658657,787,640,360,what does the girl in white do after looking down at the beginning,0,27826586571,TN,turn behind,look into camera,continue talking,put plastic in pocket,place it on the top,turn behind 1767,2461993294,1999,640,480,why did the man in yellow move his hands all the time,1,24619932942,CW,practice boxing,pat the drum,sooth baby,dancing,hand gesture,pat the drum 1768,8225502382,1468,640,360,how does the man feel after sliding down the top after the third attempt,4,822550238210,TN,walk to girl,help the man,stop the bicycle,run to the field,happy,happy 1769,4798585428,2697,640,480,how did they pose for the photos initially,2,47985854289,CH,light strings,watching on the tv,arms around each other,smile and wave,man made it,arms around each other 1770,10309542255,2566,640,480,which part of the body did the animals use to fight each other,0,103095422552,DO,horns,head,leg,neck,nose,horns 1771,6754608321,1617,272,480,what does the girl do after hugging the baby in the middle,3,67546083216,TN,bring book closer to baby,walks away,remove bib,touch the baby s stomach,smile,touch the baby s stomach 1772,8064178441,2229,640,1138,what did the girl do after the baby put down the toy,1,80641784416,TN,stand up,keep it standing,hold the baby,kick is away,laugh,keep it standing 1773,6624174621,1212,640,480,what did the lady do after standing up,3,66241746213,TN,walks to the television,talk to girl,playing golf,blow candles,swing her body,blow candles 1774,10030609934,1680,640,360,how did the person holding the camera signal to the toy car in the middle of the video,3,100306099348,CH,ring a bell,turning the wheel,laser pointer,point at toy cars,raise up board,point at toy cars 1775,4815534482,2250,640,362,how did the boy transfer him across the field,0,48155344825,CH,drive toy car,steering wheel,holds the wheel,running,hands ready to catch the boy,drive toy car 1776,3046900922,539,640,480,what does the man do after putting the child down,0,30469009224,TN,walk backwards,look at baby,put baby on chest,put his arms back up,pick up grass,walk backwards 1777,2482028659,643,640,480,how did the man make his voice sound louder,1,24820286593,CH,hands around mouth,stand in front of microphone,hold microphone in hand,lean forward,hit mouth using hands,stand in front of microphone 1778,8627074061,2697,640,360,what did the lady do after she took out a green art piece from the bag,0,86270740612,TN,unfold it,walks into the kitchen,nods her head,raised up both hands,keeps looking straight,unfold it 1779,3846475848,2138,640,480,how does the man ensure that the fur of the ferret is dried,0,38464758489,CH,use towel dry throughly,with the tube,caress dog,bandaged,scrub dog s body,use towel dry throughly 1780,7114553643,1974,640,480,how did the lady signal for the man in brown vest to hug her,3,71145536435,CH,jump,caress the cat,tickle the baby,raised her hand towards the man,lie down,raised her hand towards the man 1781,4251505427,2290,640,480,what was the lady in black at the back doing as the child was facing the camera,2,42515054273,TC,looking,talking and looking,carrying baby,bend down to pick up stuffs,smiling,carrying baby 1782,5047408177,648,320,240,how did the woman help the girl sort the clothing to hang before she does so,2,50474081773,CH,put into a bag,looks at the product,pick out clothes for girl,straighten them before folding,stood and wait in front,pick out clothes for girl 1783,6160414832,1831,640,480,what is the boy in yellow do after the man in black placed the dices in one corner,1,61604148328,TN,adjust the blocks,pick the dice up,run away with ball,get up,show coin to camera,pick the dice up 1784,3060478605,432,320,240,what does the horse do while the lady is sitting on it at the start,0,30604786056,TC,walking,eating straws,jump,playing with grass,galloping around,walking 1785,3851913128,2235,640,480,what does the person in yellow do as the guy in red takes off his goggles in the middle of the video,2,38519131288,TC,look at camera and said something,run away with ball,makes a gesture too,speaks to hin,turn on the wand,makes a gesture too 1786,10127533784,600,640,360,why do the two people step backwards,0,101275337843,CW,defence,let go of cat,give the judger some space,to catch the ball,change activity,defence 1787,7571121368,1690,640,360,why does the girl in red look down while walking,2,75711213680,CW,service staff,look at dog,look for the obstacles,to teach child to walk,wanted to help stop ball,look for the obstacles 1788,7114553643,1974,640,480,why did the man in brown vest walked towards the lady in the middle of the video,2,71145536438,CW,to hit man in black s back,pick something up,to hold the lady,to be closer to the microphone,to listen to her,to hold the lady 1789,4798585428,2697,640,480,why did the people stood still while smiling,0,47985854280,CW,posing for a picture,waiting to start performance,interview,listen to man in middle,last pose,posing for a picture 1790,14012319794,3010,640,360,why is the girl running away from the camera,3,140123197940,CW,suggest to go playground,not to be hit by wave,playing with each other,prevent her flag from being taken away,pick up the paper plane,prevent her flag from being taken away 1791,8171216955,550,568,320,what did the girl do after hitting the toy everytime,3,81712169557,TN,pour the sand out,walks away,walk to white basket,moves backward,happy,moves backward 1792,5926256714,863,640,360,why are there so many toys in the room,0,59262567142,CW,for baby to play,selling the toy,presents just unwrapped,presents wrapping,it is a classroom,for baby to play 1793,3192668394,2079,320,176,whose portrait is the woman in blue drawing in the room,4,31926683944,DO,boy in red,family,the man wearing orange pants,girl with hoodie,woman in grey,woman in grey 1794,2920952624,825,352,288,what does the shorter woman do after talking with the taller woman,2,29209526249,TN,stir fry,starts speaking,open fridge,hug the woman,relaxed,open fridge 1795,4488066715,2638,320,240,why does the man let go of the bowl,1,44880667156,CW,to move away from the lady,so baby can hold it,let baby get off,drinking,cannot hold on,so baby can hold it 1796,6024684644,519,640,360,why did the lady look at the man while he digs the hole,2,60246846447,CW,ensure his safety,learning from him,to see how he digs,bored,the lady asking questions,to see how he digs 1797,6291413193,1980,640,480,what is the colour of the cap the lady in white is wearing,4,62914131936,DO,grey,white and red,pink,orange,navy blue,navy blue 1798,9498159305,1275,640,360,what did the penguin do after breaking at the earphones,1,94981593056,TN,walk across the table,look around,move towards the lady,jumps down,try to bite,look around 1799,9528990839,427,640,480,why did the man bend forward at the beginning of the video,2,95289908396,CW,part of stunt,happy,adjust his seat,to pick up the stone,talking,adjust his seat 1800,6582763207,696,640,360,what are the ladies doing in the video,0,65827632074,TC,jamming,playing on the swings,standing at a corner,walking through the woods,talk to men,jamming 1801,7961460440,360,640,480,how did the man come down from the rock,2,79614604403,CH,slide down,rub on the pole,with the rope,his legs lost grip,use shovel,with the rope 1802,3270490566,1515,640,480,what does the man playing the drum do after finishing the song,1,32704905664,TN,stares at everyone,wave to someone,put instrument down,clap,pat his legs,wave to someone 1803,2990321092,633,640,480,why is there a man standing there holding string,0,29903210924,CW,hold the food,to show to people,pull the dog,ensure safety,for him to sing or speak,hold the food 1804,11871253306,1476,512,288,why did the boy in green shoot into the goal post after picking up the ball,0,118712533063,CW,to throw it in,to not step on it,disappointed that he missed one pin,wide hole on the ground,to move it away,to throw it in 1805,5048503508,319,640,480,why is the child in blue running,1,50485035080,CW,trying to crush fishes,follow child in green,lose control of the car,dancing,climb monkey bars,follow child in green 1806,2834146886,1881,496,370,why did the black dog stick his head under the sofa after coming out from the bottom of table,0,28341468864,CW,wanted to hide,to play with the toy,eating,scratching,play with the person,wanted to hide 1807,3427674558,870,640,480,what is the relationship between the people on stage,1,34276745581,DO,classmates,dance group,friends,colleagues,band member,dance group 1808,2696280239,398,640,480,why are the man open the gate of the fence at the beginning,4,26962802394,CW,let sheep get out,preparing to jump,finished performing,let the goats enter,let the bull enter,let the bull enter 1809,12392885583,929,640,480,how did the baby react after he got the pacifier from the man in long sleeves,4,123928855837,TN,stop crying,sway his body,push swing,pinch baby s nose,moves towards the other end,moves towards the other end 1810,3375218204,2241,640,480,why does the man lie down on the floor in the middle,1,33752182041,CW,pick something up,let kids walk through,not enough chairs to sit,he fell,watching the dog and cat play,let kids walk through 1811,2510696559,2117,640,480,where is this happening,4,25106965598,DL,outdoors,bar,in the day,classroom,bicycle park,bicycle park 1812,6253433310,680,640,480,why are there air bubbles coming out from the boy s mouth,0,62534333100,CW,breathing out,physiological arousal,playing with it,likes to suck,talking,breathing out 1813,8455160795,600,640,360,how did the man with a stick gesture to the other man to walk forward,4,84551607954,CH,with hand on the ball,in the opposite direction,push the stick backwards,held onto a line,point stick,point stick 1814,4272084125,732,640,480,what did the lady do as she talk to the camera with the bottle held up,2,42720841252,TC,looks at the boy,relaxed,nod her head,present,stick out her tongue,nod her head 1815,7771650716,1805,640,360,what is the person in pink shorts doing when the man in white is playing with dog,2,77716507160,TC,clean the backyard,close the car door,stand and watch,clean the car,follow the man,stand and watch 1816,11966080214,1531,640,1138,how does the girl play with her toy at the beginning of the video,0,119660802140,CH,hit with stick,put on the sofa,move it with her hands,bounces him up and down,put toy into doll s mouth,hit with stick 1817,4443526735,472,480,640,why did the baby jump in the start of video,4,44435267351,CW,on trampoline,rope skipping,imitate rabbit,ask for more food,playing with swing,playing with swing 1818,5229476012,810,640,480,why is the lady pulling the boy s legs at the end of the video,3,52294760127,CW,dragging him to mat,stretching,move the trolley,helping him move in pool,part of the dance,helping him move in pool 1819,4378803532,1310,640,480,why does the man in black jacket move back at the end of video,0,43788035324,CW,get away from spark,playing badminton,scared by tiger,to fit into photo,move away from edge of bridge,get away from spark 1820,3233088823,462,640,480,how is the rock removed from the bridge,3,32330888231,CH,use shovel,prostrate and slide down,pull it back onto path,bulldozer,man holding it closed,bulldozer 1821,4013751996,764,320,240,why does nt the girl need to paddle at the beginning,0,40137519963,CW,going down a slope,pick up leash,washing her hands,to take the food,to have fun,going down a slope 1822,4838145161,1921,640,480,why is the cat shaking its paws after moving back,3,48381451612,CW,to remove water from his body,sleepy,prevent hitting shelf,swat water from face,injured,swat water from face 1823,4857781123,1101,640,1138,where is the dog and the person hanging out,3,48577811238,DL,outdoors,grass patch,kitchen,house,snow wild,house 1824,3124551255,1962,640,474,what does the boy do after looking up at the start,2,31245512555,TN,singing,playing with sticks,talk to the lady,kick the bottle,playing the guitar,talk to the lady 1825,11966080214,1531,640,1138,why is the toy so colorful,0,119660802142,CW,to attract buyers,light from plug,found it funny,prevent cold,sunny,to attract buyers 1826,4518113460,1867,640,480,how does the baby move around the room,2,45181134607,CH,went forwards and backwards,touch the toys,crawls and walks,jump and dance,ride bike,crawls and walks 1827,4075791856,2250,640,480,where is this video taken,2,40757918562,DL,train,ballroom,stage,construction site,field,stage 1828,4444192938,866,640,360,what did the boy in red do after the girl in pink touched his bag,1,44441929389,TN,got imbalanced,looked at the ground,goes to help,put both hands by her side,point to the lady in black,looked at the ground 1829,6078524411,2512,640,360,why is the baby raising his left arm up and down,0,60785244116,CW,playing with object,man moved it,excited,touch his face,imitate the lady,playing with object 1830,4179163342,2172,640,480,how did the youngest girl show affection to the dog,0,417916334210,CH,hug dog,rub the dog,kiss,stroke the dog,lady is carrying the dog,hug dog 1831,4740074365,584,640,360,how did the bridegroom show affection to the bride,0,47400743658,CH,kiss the bride,feed her a cake,carries and strokes it,rub the bride,hug from behind,kiss the bride 1832,3340340268,1289,640,480,what was the girl in red doing when the girl in green first stumbled on the dog,0,33403402686,TC,holding paper,stands still in shock,run,walk across,tree,holding paper 1833,6163877860,2160,640,360,why was the baby without socks eventually,4,61638778606,CW,to get to somewhere,put it down on the table,its hot inside,start swimming,baby took it off,baby took it off 1834,3960291106,1428,640,360,what does the man in white do after covering his mouth using his hand,1,39602911066,TN,on his thighs,wipe his eyes with towel,listen,look into mug,throws it inside the cage,wipe his eyes with towel 1835,4190655097,1290,640,480,how does the cat get out of the cot,0,41906550978,CH,jumps out,swing stick,fly out,swim out,with two front paws,jumps out 1836,5902452647,812,640,480,what does the woman in jeans do after moving her knees at the end,0,59024526475,TN,takes a photo,put up her finger,reach for something,run around stage,put hand down,takes a photo 1837,8253302563,1056,640,360,how does the boy enter the toy car at the start,1,82533025630,CH,remote controlled,step up into the car,pushing,remote control,jump around it,step up into the car 1838,5854324479,519,640,474,what does the man in dark brown do after making a few hand gestures and smiles at the end,3,58543244795,TN,sway his body,looks at paper,look towards the man talking,walk back,look up,walk back 1839,3303565503,1115,480,640,why were there white flashes in the middle of the video,3,33035655033,CW,from audiences phone,broken lights,torchlight,pictures taken,stagelights,pictures taken 1840,2547885226,406,640,480,what does the kid do right after standing up,1,25478852265,TN,pointed at the sandals,kicks sand off his shoes,bring jacket away,swing the dog,smile and walk forward,kicks sand off his shoes 1841,2877270840,780,640,480,why is the man talking and holding the glass,4,28772708408,CW,performing something magic,show something on the laptop,vomit something,mix the drink,talking about the drink,talking about the drink 1842,9217939684,1660,512,288,where are the people hanging out,1,92179396849,DL,forest trail,room,kitchen,playground,bus,room 1843,5875535585,2291,640,360,why does the man in black walk up and down,3,58755355857,CW,waiting to cut ribbon,resting,have closer look,interact with audience,change slides,interact with audience 1844,2599937944,449,500,375,how did the 3 ladies react when watching the man in black,0,25999379445,TC,point at him,smiling,covered his face in embarrassment,hold his hand,hold chopsticks to his tongue,point at him 1845,6018514357,1280,640,1138,what was the man doing as the baby was on the slide,0,60185143574,TC,watching the baby,using phone,dancing,taking photo of baby,exercising,watching the baby 1846,6277800530,876,640,360,what does the man hold onto while riding the jeep out of the water,1,62778005302,TC,put the man s other hand in,handle,inspect car,a paddle,pulls it off,handle 1847,4770216656,960,640,480,why does the man touch the swing periodically,0,47702166563,CW,push swing,he was bored,stop the child,disturbing the child,push the dog,push swing 1848,2735019707,583,640,480,how do the people play the instrument,3,27350197070,CH,strum the string,wave around,tap feet,pat with hands,blow,pat with hands 1849,9531760182,2097,640,480,how did the lady react when the boy brought the bowl to his right at the beginning of the video,3,95317601829,TC,lift boy up,imitate baby,shout at boy,laughing,pull the paper,laughing 1850,2461993294,1999,640,480,how many audiences are there,0,24619932947,DC,four,two,six,one,five,four 1851,3060478605,432,320,240,how was the lady transporting herself across the road,1,30604786054,CH,paddle forward,horse,cycle,use poles,skiing,horse 1852,4978714491,1200,640,480,which bus arrives at the road gate first,0,49787144919,DO,white bus,blue one,orange bus,red one,black bus,white bus 1853,3851913128,2235,640,480,why did the guy in red suddenly take off his goggles,4,38519131280,CW,adjusting the rope,done performing,bring it down to wear,for clearer vision,showhow,showhow 1854,2454242177,1574,320,240,why did the baby hold the ball in front of the dog,0,24542421770,CW,give to dog,to grab the ball,prevent dog snatch the ball,play with it,try to take toy,give to dog 1855,5702201498,335,640,1138,how is the man feeling the softness of the pillow,1,57022014982,DO,wear more clothes,hug it,wear socks,hitting the pillow,hold it on shoulder,hug it 1856,2971556305,1459,640,480,why did the women follow one another around the house,3,29715563051,CW,looking for a water bottle,to catch the dog,looking for the girl,touring house,preparing to clean the table,touring house 1857,9304738817,345,320,240,why is the woman standing behind baby,1,93047388171,CW,support walking baby,pushing swing,pulling his trolley,posing for photo,clean his toy,pushing swing 1858,5586394125,1128,640,360,what is the lady in blue shirt doing when the lady in white is patting the dog at the beginning of the video,0,55863941255,TC,talk with lady in white,patting dog,sit on sofa,feeding dog,sit down on chair,talk with lady in white 1859,4006608424,2697,640,480,how do the man and the boy get from one side of the playground to the other at the beginning of the video,3,40066084240,CH,on his belly,running,cycling,swing,pull boy s toy,swing 1860,2705374471,1556,320,240,what does the baby do after stretching his arms and legs in the middle of the video,1,27053744715,TN,look towards the camera,turn his head,bites the toy,show baby s face,pushing box,turn his head 1861,4774302357,450,640,480,why is the screen of the computer moving,2,47743023578,CW,microphone for recording,man click on different buttons,man in grey moving with mouse,giving instructions on how to dance,follow the direction of model turning,man in grey moving with mouse 1862,4822859674,861,640,480,why does the baby start moving towards the woman at the start of the video,4,48228596741,CW,take pink balloon,sit on chair,readjust baby s position,push toy train,wants food,wants food 1863,8024853715,486,640,360,where is this place,1,80248537159,DL,in a building,park,dirt field,waterfall,grassland,park 1864,6621511673,2697,640,480,why is the baby girl following the man and pointing at the pictures too,4,66215116733,CW,leading them,to place them around the house,jump with girl,follow ball that went to lady,learning from her father,learning from her father 1865,5662041273,2697,640,480,why did the boy ran back to the sofa after putting the helicopter on the table,4,56620412738,CW,play with big dog,want to climb and play,bring it back to the mattress,excited,to fly it again,to fly it again 1866,6621511673,2697,640,480,why did the girl stretch out her hands in the beginning,0,66215116730,CW,to fix the magnet,dancing,to scoop the soup,to touch the bowl,wants hug,to fix the magnet 1867,4094488636,810,640,360,what did the black dog do when the brown dog first walked towards the pole and faced it near the start,3,40944886366,TC,crawled to the toy,the concrete brick with plants,bite and push,faces brown dog,look at them,faces brown dog 1868,4635309062,2076,640,480,what does the man in white do after the man in black picks up the white bowl near the end,2,46353090626,TN,touch donkey s head,put bread down,washing hands,reads from card,step back and raise hands,washing hands 1869,4485498145,496,640,480,what activity is happening,1,44854981458,TC,learn dancing,gathering,focus group discussion,playing instruments,fire performance,gathering 1870,2957808913,598,640,480,why is the man in black jacket wearing a hat,3,29578089133,CW,protect hair from being messy,part of his cycling attire,easy to be spotted among the crowds,hot sun,buying a new hat,hot sun 1871,6691330381,1239,640,360,why is the boy wriggling his legs near the middle,2,66913303812,CW,move to another place,lady rocking him,trying to break free,touch sand water,excited,trying to break free 1872,2868183184,1551,500,375,why is the lady seated near the girl,4,28681831843,CW,pose for camera,feed the boy,recording the girl,adjusting her hairtie,assisting in preparing the food,assisting in preparing the food 1873,6143391925,1206,640,480,why did the woman bend down her head when the baby is beside her,2,61433919251,CW,ceremonial pose,adjust baby s shirt,talk to her,to show baby something,pick up leash,talk to her 1874,6329954198,692,640,360,why does the man in black get up towards the end,1,63299541982,CW,stroke the dog,finish writing,shield from sunlight,talking,pose for camera,finish writing 1875,6183104292,593,640,480,what does the tiger do after the man poured the food,3,61831042921,TN,happy,look attentively at the food,walk away,eat,open the tap,eat 1876,4263096481,637,320,240,why did the man cut the head of the fish off first,4,42630964819,CW,to create bubbles,show the organ,to show audience,wipe water off,easier to cut open,easier to cut open 1877,2821788355,765,320,240,where is this happening,1,28217883559,DL,car,sea,stage,forest,karaoke room,sea 1878,3192668394,2079,320,176,what does the man in black do after wiping his mouth,1,31926683947,TN,touch his fingers,drink,feeds the cat,shake finger,snaps his fingers,drink 1879,2834146886,1881,496,370,why did the black dog walk up the cushion beside the chair,3,28341468862,CW,getting fur shaved,lick the other dog,look for more food,to smell,curious what item on table is,to smell 1880,7771650716,1805,640,360,why did the man in white pull the leash of the grey dog,2,77716507166,CW,feed the dog,give food,dog wants to leave,dog was barking,bathe the dog,dog wants to leave 1881,4013751996,764,320,240,why did the girl squat down after some time,3,40137519962,CW,pick up clothes,trying out poses,looking at phone,watch somewhere,feed kangaroo,watch somewhere 1882,6860322796,1285,640,360,what did the brown dog do when it saw the black dog running away at the beginning of the video,0,68603227966,TC,chase after black dog,chased after it,walk around bushes,dive into water,starts biting the ball,chase after black dog 1883,8313365386,318,640,360,how did the girl signal to the lady what she wanted to show her,4,83133653866,CH,smile and wave,stir mixture with spatula,use hand gestures to demonstrate,kiss the lady,points toward it,points toward it 1884,5061117640,1587,568,320,why did nt the man walk straight into the room when he opened it,2,50611176400,CW,to give the phone,help the lady get out car,other man was showing something,looking poster,talking about something,other man was showing something 1885,5133787349,363,320,240,how does the man at the side react when the man in front is the only one left standing,2,51337873496,TC,pat his back,packing,put arms in the air,hold boy s hand,push the float,put arms in the air 1886,5323654756,2032,640,480,why is the boy in blue standing at the corner of the room,3,53236547569,CW,following,to balance,to flim the party,watching girl in pink,to put up the christmas tree,watching girl in pink 1887,3303565503,1115,480,640,how many people are posing in this shoot,3,33035655038,DC,seven,five,six,two,three,two 1888,6244675392,900,480,640,what does the cat do after the man leans backwards,4,62446753928,TN,cat bed,spoon,enjoying it,look into the toilet bowl,jumps down,jumps down 1889,4166942239,590,640,480,why does the man in the suit look confused when the man in red holds his hands in front of him,3,41669422392,CW,keep warm,paying attention to him,direct attention,check what been fixed,show something,check what been fixed 1890,5667931404,335,640,360,what happens to the truck after the boy stands up,4,56679314045,TN,touch shoulders,go behind the purple pillar,pretending to drive,move away,shifted forward,shifted forward 1891,2696280239,398,640,480,why are the men in red jacket following the man sitting on bull,0,26962802391,CW,refree,explaining the things,take pictures,to put more sand at once,stability,refree 1892,7149153537,1384,640,360,how did the bald man support the girl in orange,4,71491535379,CH,put her in chair,pull her legs,hold her head,use a float,holds the girl with his hands,holds the girl with his hands 1893,5945172741,1593,640,480,what does the lady in red do as the man is playing with the girl,3,59451727412,TC,moves her head,watch them,sing,use her phone,adjust her clothes,use her phone 1894,5205081904,623,360,480,where is the child hanging out,1,52050819045,DL,outside house,home,kitchen,dining table,indoors,home 1895,2435100235,1906,640,480,what does the man cycling do when he sees the trishaw coming in the opposite direction,1,24351002358,TC,wave hands,move to the right slightly,get off bike,turn a circle,stop his bicycle,move to the right slightly 1896,8132842161,1105,640,360,how did the man in white prevent the boy from falling,4,81328421618,CH,carried on his back,put boy on a chair,carried in arms,put boy on the floor,holding the boy with his hands,holding the boy with his hands 1897,3026084730,2205,640,480,why are the men in formal wear in this event,4,30260847300,CW,bodyguard,wedding,graduation ceremony,photoshoot,formal event,formal event 1898,5017166671,2697,640,480,why is the man sitting on the right moving his hands,2,50171666710,CW,pet the dog,acting,play instrument,hold handle to ride out,play with camera,play instrument 1899,8064178441,2229,640,1138,why does the baby turn away from the toy at the end of the video,1,80641784418,CW,clear space,lost interest,scared of rabbit,picks up the grey jacket,trip,lost interest 1900,5879651428,2697,640,1138,why did the man in white bent forward,3,58796514281,CW,take photos of the girls,jump,protection against the sun,look at his guitar fingering,moving with rhythm,look at his guitar fingering 1901,2623954636,931,500,375,why did the boy raise his hands with the ball in his hand,2,262395463610,CW,pushed by adult,being thrown,bounce higher,to kick the ball,give him more balls to throw,bounce higher 1902,3192668394,2079,320,176,why does the woman in blue constantly change her view,4,31926683946,CW,eyes were tired,get a better view of the trees,anticipating someone's arrival,looking for her paint brushes,drawing portrait of woman,drawing portrait of woman 1903,2885091387,1065,640,480,why did the car tilt at such a great angle after driving til the end of the puddle of water,1,28850913872,CW,abide to rules,difference in ground levels,the car was stuck,posing,puddles formed,difference in ground levels 1904,3963997053,573,640,480,why are there people standing behind the barricade when the car drove past them,3,39639970532,CW,road dust,dangerous animals,queue area,audiences watching,shopping,audiences watching 1905,6413546609,1415,640,384,why did the two people constantly pull down cards and throw them on the floor,2,64135466090,CW,playing with dog,playing card game,presenting,for someone to catch,for the baby play with,presenting 1906,3427674558,870,640,480,why does the girl at utomst left keep turning hear head around to look at others at the beginning,2,34276745582,CW,observe her reactions,listening to her,check on others,stay close to her mother,watch over her,check on others 1907,13884293626,5395,640,360,what is the lady in purple doing while the man in brown spoke,3,138842936261,TC,playing the guitar,stops and looks at him,kneel on grassland,writing,look at him,writing 1908,6143391925,1206,640,480,why did the baby approach the woman,0,61433919255,CW,approach the ball,play with dog,playing with her,protect from falling,getting her attention,approach the ball 1909,7999756100,618,640,360,why does the bald man move backwards at the beginning,0,79997561000,CW,adjust position,legs got tangled,reading from script,sunny weather,take something,adjust position 1910,3526597179,807,640,360,what was the man doing as the two ladies were talking at the end of the video,2,35265971797,TC,wiping his sweat,walking,listening,sitting on the sofa,hugging the dog,listening 1911,5702201498,335,640,1138,how many people are present in the video,4,57022014985,DC,five,four,two,eight,one,one 1912,6786501294,1806,604,1072,why are people crowding around the boy,2,67865012942,CW,to carry him up,dancing,celebrate his birthday,ready to fight,playing game,celebrate his birthday 1913,7308042410,1019,640,1138,what did the girl do with the sandpaper after she finished smoothing the pot,2,73080424106,TN,climb up the broom,continue feeding,put it away,wears clothes,back into baby s mouth,put it away 1914,7308042410,1019,640,1138,why did the man take the girl s hands at the end of the video,1,73080424109,CW,watch his dance technique,to teach girl,carry girl,finish presentation,talking,to teach girl 1915,2920952624,825,352,288,why does the shorter woman sprinkle something into her frying pan at the beginning of the video,0,29209526241,CW,seasoning,blow the candle,prevent spilling,balance her,stabilise crab when cutting,seasoning 1916,4915733559,1069,640,480,why did the baby step on a black platform beside the sofa when looking at the phone,0,49157335598,CW,lift himself up,fell down,clean itself,lady puts him there,being tested,lift himself up 1917,3763643225,1073,640,480,why did the boy kneel on the stairs,0,37636432252,CW,support himself,dust off grass from pants,praying,still dizzy,posing for photo,support himself 1918,5623068492,2375,640,480,what does the man with black hair do after the man with white hair bend his head down,0,56230684928,TN,move the defender,talk to the lady,lean forward,look at man in white,sway his body,move the defender 1919,7888256388,658,640,480,what did the dog do after the lady removed her hands,4,78882563881,TN,wait,shift her weight,pats the dog,lick the table,sniff her shoe,sniff her shoe 1920,4249756405,774,320,240,why was the man standing in front of a lady,1,42497564050,CW,watching fireworks,playing guitar,to officiate wedding,speaking to an audience,help woman plait,playing guitar 1921,5308503740,1609,640,480,what did the black and white rabbit do before climbing towards the tree,0,53085037402,TP,sniffing ledge,get to the red cloth,jumped,lie on the ground,standing,sniffing ledge 1922,2559262403,2158,320,240,how do the pugs drink water from the bowl,2,25592624034,CH,with straw,by spoon,with their tongues,used its tail,roll around,with their tongues 1923,2809330695,2158,320,240,what happens to the tiger toy after the baby kicks it,2,28093306958,TN,smile,raise the ball in hand,swing around fast,back away,went to play slide,swing around fast 1924,9256409422,2312,640,360,why did the lady put both her hands on her face after she turned back to the camera,0,92564094228,CW,cover her face,clean her face,shy,rub her eyes,playing hide and seek,cover her face 1925,13296054183,303,640,1138,why are the two people wearing same dress while riding bicycle,0,132960541833,CW,work uniforms,to turn,carry the baby,man was cycling,his items,work uniforms 1926,6078524411,2512,640,360,what does the boy do with the toy on the table,4,60785244118,TC,bite it,pass to man,throw it on ground,put on his head,bring it up and down,bring it up and down 1927,4378803532,1310,640,480,why does the man in red give the child in stripes the stick in his hand,3,43788035322,CW,boy needs two sticks,free his hands for food,boy keeping sticks,the boy wanted it,teaching boy to play drum,the boy wanted it 1928,4882821564,2697,640,480,what did the boy do after he walked towards the woman with a present,0,48828215646,TN,walk to the sofa,goes away,look at camera,placed around the house,stand behind the wall,walk to the sofa 1929,3626788516,337,320,240,why did the girl in pink point to the woman near the end of the video,2,36267885167,CW,avoid the flag,reach the plates,attracted by crocodile,talk to her,wipe off the paint,attracted by crocodile 1930,8575881495,2000,640,360,what does the lady in blue do as the girl was playing,1,85758814950,TC,stopped moving,watches the girl,pen,move her forward,hug adult,watches the girl 1931,5858985747,349,604,1072,why is the lady in black looking at the baby in yellow at the start of the video,4,58589857473,CW,put cream on man s face,asking for phone back,to put food in her mouth,adjusting his hair,oversees him,oversees him 1932,8594309349,459,640,360,why are there so many bubbles,2,85943093494,DO,breathing under water,boy and baby in the room,oxygen,cold weather,for everyone to drink,oxygen 1933,6592821115,1800,640,424,where is this video taken,3,65928211157,DL,beach,dancing hall,sea,living room,train,living room 1934,4199369046,1717,640,360,why is the lady holding the white object in the beginning of video,2,41993690462,CW,her medal,to eat,to drink,to comb her hair,to project her voice,to drink 1935,8493226484,968,640,1138,how many people are involved in the video,2,84932264847,DC,five,one,two,six,four,two 1936,3555755537,1599,640,480,how many people are in the video,1,35557555374,DC,three,one,seven,eight,nine,one 1937,5427285434,615,640,360,how does the baby get himself down from the couch,3,54272854344,CH,jumps out,pushed by girl,rotating around,using the stool as step,roll off,using the stool as step 1938,6188449000,1350,640,480,what was the boy doing with the paper,4,61884490004,TC,on man s shoulder,writting on it,read it,photo taking,holding it as a costume,holding it as a costume 1939,3960291106,1428,640,360,what does the woman in black do after putting her hands on her face at the end of the video,2,39602911067,TN,walk to boy in white,point at something,claps,talks to him,walk backwards,claps 1940,11244289523,552,640,360,what did the lady in black do after picking up the lettuce at the beginning,0,112442895236,TN,eats it,carry it and walk to sofa,jump,take out remaining wrapper,give to the man in grey,eats it 1941,7786283208,636,640,360,why does the girl in pink hold a toy,4,77862832082,CW,part of costume,man passed her,play with toy,waiting for food,play with it,play with it 1942,5048503508,319,640,480,what activity are the children doing,0,50485035084,TC,running in the forest,crawling on the ground,rock climbing,singing,playing,running in the forest 1943,2868183184,1551,500,375,how does the man direct the girl s attention,4,28681831849,CH,point to the table,tap his lap,shouting loudly,raise the clapperboard,hand gestures,hand gestures 1944,11670386946,998,640,360,why is the man wearing a brown reading a piece of paper while pointing at the side,4,116703869463,CW,show something on the laptop,read to the audience,giving speech,refer to what he says,showing where the display is,showing where the display is 1945,3861485381,2686,640,480,how many animals are in the video,4,38614853819,DC,two,one,three,four,five,five 1946,4249756405,774,320,240,how did the man play his instrument,1,42497564052,CH,move the mouse around,with his hands,tap his feet,blow it,operate the machine,with his hands 1947,2930782930,939,640,480,why did the baby wave his hands,2,29307829304,CW,play with the baby,happy,imitate the lady,reflects,play with them,imitate the lady 1948,13569831214,1664,640,480,why did the girl in blue jacket gave hi-five to the man recording at the end of the video,4,135698312144,CW,filming her,encourage him to try,excited,to take a photograph,celebrate the successful skiing,celebrate the successful skiing 1949,6896884547,1440,640,360,why did the baby toss the ball away from her after playing with it for some time,2,68968845474,CW,pass to boy,wanted to play car,got tired of it,wanted to take his teddy bear,wanted food from the kitchen,got tired of it 1950,9473479950,608,640,480,why did the lady tilt away in the middle of the video,2,94734799502,CW,pick up the mask,went over a bumb,baby leg is there,lose interest in lady,talking to the baby,baby leg is there 1951,4626535366,1468,640,360,what did the children do after their presentation,3,46265353665,TN,pick up the fork,lick them,pass microphone to next person,bow down,picks up the grey toy,bow down 1952,4372494989,2575,640,480,why the man bend down,2,43724949894,CW,pick up toy,tickle baby,teach baby how to pray,support the baby,move baby away from tool,teach baby how to pray 1953,4626535366,1468,640,360,why is there a board beside the children,1,46265353667,CW,noticeboard,presentation,colouring board,surfing board,showing directions,presentation 1954,4336654741,2697,640,480,what does the baby do after the lady shakes her head at the end,0,43366547417,TN,imitate her,move hands into water,kick legs up,push baby back,lady copied baby,imitate her 1955,8493226484,968,640,1138,what does the lady do as she is bringing the boy up sitting at the end,4,84932264846,TC,sitting on the log,look at boy and listen,doing the same thing,points to the flower,kiss the neck,kiss the neck 1956,4650556666,567,640,480,how is the child look while they dance,1,46505566669,TC,follow the move,unwelling to do it,happy,excited,engrossed in music,unwelling to do it 1957,2461993294,1999,640,480,how do the performers play the drums,3,24619932946,CH,press the button,using their fingers,lady holding with left hand,hit drums with hands,stand on stage,hit drums with hands 1958,3066064005,819,640,480,why are the women pulling out the chairs at the dining table,0,30660640052,CW,want to sit,playing together,to celebrate,celebrate birthday,let kids sit,want to sit 1959,2573424030,1470,320,240,why does the dog stretch its hands out constantly at the end of the video,1,25734240305,CW,itchy,asking for more treats,to ask for toy,watching it,attract baby s attention,asking for more treats 1960,4955723618,1831,640,480,why is the lady in black moving her hands at the end of video,2,49557236183,CW,playing instrument,caress dog,hand gesture while speaking,wave to baby,passing food,hand gesture while speaking 1961,3124551255,1962,640,474,what does the brown dog do after sniffing the boy at the start,1,31245512557,TN,touch boy s nose,crawled to the toy,fly away,take blue toy from elmo s mouth,eat,crawled to the toy 1962,4260763967,1017,640,480,why did he turn his head and look at the other boy in yellow halfway through looking at this toy,1,42607639671,CW,other boy has food,talk to the other boy,he wants to eat,wipe his face,to kiss,talk to the other boy 1963,6037747123,919,640,480,where is the santa claus decoration being placed,1,60377471234,DO,toy,on the car,looking down,continue reading,lying on his back,on the car 1964,4859057828,647,640,480,how did the three ladies pose for a picture,0,48590578285,CH,put arms around each other,carry him to sit on ledge,climb onto a tree,lean against the bench,look upwards,put arms around each other 1965,6168295272,446,640,360,what did the girl in blue do after she finished dancing,3,61682952728,TN,open her arms wide,laughs,jump,walk to lady in blue,look at girl in white,walk to lady in blue 1966,8464056582,1340,640,360,what does the baby do after sitting for a while in the middle,1,84640565826,TN,turn around,crawl,touch the cloth,create waves,withdrew toy,crawl 1967,8064178441,2229,640,1138,why is the baby lying on the mat,1,80641784411,CW,eat food,playing with toy,sleep,prevent him from moving around,playing with the card,playing with toy 1968,6786501294,1806,604,1072,why is the boy the only one sitting down,4,67865012946,CW,microphone too short,play with rabbit,posing for photo,cannot walk,birthday boy,birthday boy 1969,2793806282,1925,320,240,what gesture did the lady in blue made for the dog to catch the blue toy,4,27938062822,TC,tap her feet,puts her hand on the toy,wave hands,talk to dog,point,point 1970,6265968082,1275,640,360,why is the light on the audience side dim,3,62659680825,CW,lighting effects,not busy,snow hard to move,focus on performers,protect his eyes,focus on performers 1971,4138579400,601,640,480,what is the colour of the cup,2,41385794008,DO,lights,red and white,white,blue,beige,white 1972,3550839192,1050,640,362,what is the baby sitting in,4,35508391926,DO,toilet bowl,chair,floor,trolley,pram,pram 1973,3897746373,399,640,480,where is this video taken,0,38977463737,DL,swimming pool,lake,room,studio,backyard,swimming pool 1974,13884293626,5395,640,360,where is this video taken,4,138842936263,DL,snow mountain,carnival,train,kitchen,classroom,classroom 1975,9208803675,582,640,360,what does the lady in green do after the lady in red gives her a push at the start,2,92088036753,TN,kicks again,look around,swing,look at girl in red,adjusting the girl s hair,swing 1976,2977504625,384,640,360,why did the white shirt boy turn back while he is bending down beside the car at the end,0,29775046252,CW,look at people,look at clock,touch the water,pull car,cautious of car,look at people 1977,6617533993,1384,640,1138,what are the two kids doing sitting on the floor as they touch the objects,3,66175339930,TC,cleaning the mat,blowing balloon,adjusting shoes,playing with toys,watching tv,playing with toys 1978,3508407941,513,640,480,how does the baby react after the walker starts to bounce,4,35084079417,TN,stretches his arms,push walker,rolls down,sad,smile,smile 1979,4761953886,797,640,360,what does the dog do after sitting up at the end,0,47619538863,TN,leave,sniff the babys head,eat the food,run away,jump around,leave 1980,8531675050,1620,640,360,what event is occuring,3,85316750503,DO,concert,ballet,piano,marketing,rowing competition,marketing 1981,4967810888,1868,640,480,why is the lady with blonde hair bending down in the middle of the video,3,49678108884,CW,pick up something on the floor,making funny face,to get up,avoid hitting plant,entertaining him,avoid hitting plant 1982,2976913210,542,640,480,why did the man move backwards,0,29769132107,CW,trying to move the vehicle forward,do stunt,adjust his shoes,avoid the flying disc,find a rope,trying to move the vehicle forward 1983,4092992100,461,640,480,what does the guy in blue and yellow do when he reached the end,2,40929921004,TC,fall down,touch face,turn left,lay on stomach and laugh,touch his chin,turn left 1984,6168295272,446,640,360,how does the lady in black attract the child in the blue dress attention,1,61682952723,CH,stretch out arm,tap her,pushes her,nod her head,hand gesture,tap her 1985,2589540862,681,500,375,why did the girl end up on the floor at the end,4,25895408622,CW,play with children,sit down,playing the drum,pick up the white thing,lost balance after dizzyness from spinning,lost balance after dizzyness from spinning 1986,4094488636,810,640,360,what did the black dog do after the brown dog walked away from the pole nearing the end,2,40944886363,TN,shocked,lick its head,walk,lick the other dog,block the grey dog,walk 1987,7059877301,918,640,480,what did the light brown dog do after it got out from the tub near the end of the video,1,70598773019,TN,switch on back,went to another tub,bite the toy,move away,chase the dog,went to another tub 1988,2735019707,583,640,480,how does the baby react after the man gets hold of his drum,1,27350197078,TN,start rubbing his own belly,grab it back,laugh,help press the right button,hold the man s hand,grab it back 1989,3821781616,745,640,480,how did the man quench his thirst at the start,2,38217816166,CH,wears watch,operate the machine,drink beer,invert bottle,picks the glass with left hand,drink beer 1990,13296054183,303,640,1138,how did the men keep their belongings with them as they cycle,0,132960541831,CH,carry a pouch each,follows the animal,wore socks,bicycle,bag,carry a pouch each 1991,9735768590,680,640,360,how does the woman play with the baby at the start,4,97357685900,CH,intrigued,pick her up,kiss the baby,with her hands,tuck out tongue,tuck out tongue 1992,3105728894,1512,640,480,why are the two exceptionally tall men approach the stage in the middle,3,31057288946,CW,playing basketball,bounce up and down,claps with man on stage,place and take hoops,jump up stage,place and take hoops 1993,7531285946,1170,640,360,what did the cameraman do after the lady crossed over to the other side,4,75312859465,TN,looks forward,moves backward,lean on him,nod,climb ladder,climb ladder 1994,4838113006,2697,640,360,where are the people hanging out,1,483811300610,DL,car,room,snow mountain,road,lawn,room 1995,6143391925,1206,640,480,why did the baby point at the tv,2,61433919253,CW,playing game on tv,follow dance moves,interested,following notes on the television,check the lyrics,interested 1996,4024008346,588,640,360,how did the child appear while playing balloons with the man,0,40240083463,TC,happy,hit it,moving backward,laugh and move feet,push boy,happy 1997,7508439506,765,640,480,what color shirt is the baby wearing,2,75084395062,DO,green,yellow,white,blue,black,white 1998,6011836129,1447,480,360,why do the women raise their heads in the middle of the video,0,60118361291,CW,change position,show the things in her hand,balance,walk towards dog,looking at something,change position 1999,6898821807,585,640,480,why is the boy hopping at the start of the video,1,68988218071,CW,dance moves,excited,copy bigger boy,to ride horse,to flip,excited 2000,8189958994,1869,640,360,how did the lady reacted when the black dog walked around her,4,81899589946,TC,blowing,drinks water,looking,look at the girl in black,pulls the dog,pulls the dog 2001,4757890069,1125,640,480,what do the men on the third and fourth truck do when passing by,2,47578900693,TC,watch,record them from behind,waves hand,assist the driver in navigating,speak into camera,waves hand 2002,5681946487,848,320,240,how is the boy positioned in the pail when the lady wipes his face at the start,4,56819464876,TC,open mouth,lie down,with his palm,sitting in the basin,standing,standing 2003,7164729910,656,640,360,why does the boy move the toy car backwards at the start of the video,3,71647299101,CW,to move it around,closing door,play with the baby,the toy car hit the wall,pick up the ball,the toy car hit the wall 2004,4189100053,874,640,360,why does the woman hold a piece of tissue on her hand,2,41891000530,CW,support the baby s walking,signalling to boy,wipe baby s mouth,show affection,scratch cheek,wipe baby s mouth 2005,3355698421,1193,640,360,how many people are there together,3,33556984215,DC,eleven,seven,five,three,six,three 2006,4782722858,1234,640,360,why does the lady in brown looks back and dances near the beginning,1,47827228581,CW,posing,follow the rhythm,drink water,act in front of camera,thirsty,follow the rhythm 2007,3261079025,553,640,480,how was the plane moving before it took off,3,32610790258,CH,fly in plane,drive up,controlled by the woman,taxi,downwards,taxi 2008,5586394125,1128,640,360,what did the dog with white leash do after moving away from the woman,1,55863941258,TN,run to the brown dog,sniff the ball,ignores,turn around,get agitated,sniff the ball 2009,9576671750,825,640,360,what is the person doing with the phone,2,95766717501,TC,playing phone game,watching videos,showing the appearance,making a call,texting,showing the appearance 2010,5134317883,1890,640,360,why are the men removing the pulp from inside,1,51343178833,CW,prepare to assemble tree,make the pumpkin hollow,make it comfortable for the dog,reading the paper,throw something,make the pumpkin hollow 2011,5561024834,947,640,360,how does the boy get back on the bed,0,556102483411,CH,jump up,crawl down backwards,leans back,carried up by man,hitting the pillow,jump up 2012,3851961428,2062,640,480,why are there air bubbles coming out from everyone,0,38519614281,CW,breathing under water,decoration,they are breathing,breathing out,ducks,breathing under water 2013,7651639778,1963,640,480,how many people are present,2,765163977810,DC,three,two,four,seven,eleven,four 2014,7961460440,360,640,480,why is the rope hanging from the mountain,1,79614604408,CW,flying fox activity,support to come down,it is winter,to support when climbing,trying to climb,support to come down 2015,7114553643,1974,640,480,how do you think the other actors behave and act to give the full attention to the man in brown and lady,2,71145536433,CH,sit and watch,listen to the man with attention,look at them,watching on the tv,swinging cups to each other,look at them 2016,5504913999,1475,640,360,how did the man kept himself warm,2,55049139990,DO,shirtless,long sleeve clothes,wear warm clothes and glove,thick jacket,beanies,wear warm clothes and glove 2017,9917882506,974,512,288,how many children are cycling,3,99178825068,DC,four,one,three,two,eight,two 2018,4698622422,1252,640,480,how does the boy play with the ball,3,46986224228,CH,throw it,kick it,moving the sticks,hit it,dribble across,hit it 2019,2454242177,1574,320,240,how did the baby support himself when walking around the room,3,24542421776,CH,walking,watch her crawl,hold the pram,hold on to toy car,use the wall,hold on to toy car 2020,8080432373,2697,640,360,why did the man lean towards the baby girl near the end,3,80804323734,CW,carry baby down,hug her,support her,kiss her,he lost his balance,kiss her 2021,3151715056,1895,640,480,why are the people gathering,4,31517150562,CW,meeting,playing snow ball,in classes,for dinner,performing,performing 2022,4127497265,895,360,480,how does the baby react while trying to chew on the toy,4,41274972650,TC,diapers,happy,contented,play with them,frown,frown 2023,4671452046,1306,640,480,how is the man in white eating from his plate,1,467145204611,CH,with fork,with hand,with spoon,with chopsticks,use bread to dip,with hand 2024,4412508597,358,640,480,what does the boy do after tying the strape around his wrist,3,44125085970,TN,touch the cat,help boy get down,take food,make funny faces,look at baby,make funny faces 2025,5173770364,2388,640,360,why did the baby lean forward,2,51737703646,CW,to balance the bike,to stop the bike,kissing the leg,to move the bicycle,try to kick her,kissing the leg 2026,3372023610,1017,640,480,why is the man in striped shirt sitting on a chair,3,337202361011,CW,to reach the table,eatining time,they are tourists,play the drums,background music,play the drums 2027,6201488511,2575,640,360,how did the lady wipe her sweat off her face,4,62014885118,CH,someone wiped her face,with a tissue,use a hair band,use a towel,with her own hand,with her own hand 2028,14003541505,507,640,360,what does the girl in pink first do to the baby when she approached it,1,140035415053,TC,make more bubbles,touch the baby s chin,point below the piano,pushes the spoon away,shake body,touch the baby s chin 2029,2731071928,1959,500,375,what is the child doing,4,27310719282,TC,walking,bungee jump,swimming,frustration,playing the guitar,playing the guitar 2030,3049351381,1542,640,480,where are the people hanging out,2,30493513815,DL,park,ancient site,living room,forest trail,studio,living room 2031,4635309062,2076,640,480,why is there a man in black moving his arms,3,46353090621,CW,protect eyes in sunny day,exercising outdoors,shield from sunlight,prepare food,test projector,prepare food 2032,3741143820,332,640,480,how did the guy in the audience respond after the two guy performers finished talking at the end of the video,0,37411438208,TN,put hand on forehead,continue eating then scooped for baby,put it on a black table,talk to man in checkered,hug,put hand on forehead 2033,2535384528,378,640,480,why did the man in black pause after swinging,3,25353845282,CW,make a hand gesture,pose for photo,thinking about where to go,observe the flying ball,talking to another man,observe the flying ball 2034,8132842161,1105,640,360,how are the people feeling when watching the animatronics show,1,81328421611,TC,bored,happy,sleepy,nervous,afraid,happy 2035,6233408665,2246,640,360,what did the lady in pink do after she adjusted her shirt,0,62334086655,TN,clasp her hands,turn back,keeps the frame down,carry teddy bear,stop,clasp her hands 2036,4136617240,2697,480,352,why does the girl squat at the start,3,41366172409,CW,stay afloat,to take the sand from shovel,spinning wheel,dance move,keep balance,dance move 2037,12392885583,929,640,480,what did the boy do after he got the pacifier,2,123928855834,TN,pass toy to baby,make funny faces,turn around,take more food,smile,turn around 2038,2717347132,818,640,480,how is the baby s cloth kept from stains,1,27173471325,CH,feed by a man,wearing a bib,wear a vest,wear jacket,napkins and tissues,wearing a bib 2039,8783897632,974,640,360,what does the man in white do as the lady in black pushed her bike down,3,87838976321,TC,sitting and looking around,pass her water,pat her back,push bike,stretches her hand,push bike 2040,2567843468,572,320,240,what does the girl do after splashing the water at the beginning,4,25678434686,TN,pour the sand out,drink it,happy as they smile,pick up the bucket,grab starfish,grab starfish 2041,4219909195,1003,640,480,what did the girl do after she sat down,0,42199091958,TN,look to her left,turn her front,smiling,put up her finger,dance,look to her left 2042,6205856607,978,272,480,what does the girl do after tucking her hair behind her ear,0,62058566073,TN,face the man,phone,raise her hand,eat it,turn head,face the man 2043,3322503255,1233,320,240,what did the person man in the middle do after the person on the right stopped doing hand gestures,4,33225032555,TN,pull the swing and then push it,walked to the corner,turn to his right,cross his hands together,walk towards plane,walk towards plane 2044,3192668394,2079,320,176,why did the woman in grey sits and does not move her position while sitting at the sofa with woman in blue,0,31926683943,CW,for woman in blue to draw,listening to lady in black,assist her holding the baby,watching the adult,to scratch,for woman in blue to draw 2045,4984417707,441,640,360,what does the man in blue do before the elephant kicked the ball,0,49844177075,TP,blows thw whistle,get up,runs to the baby,play with pipe,lean against pole,blows thw whistle 2046,7571121368,1690,640,360,where are the people hanging out,2,75711213681,DL,beach,lake,bridge,zoo,forest trail,bridge 2047,9528990839,427,640,480,what did the lady do before she waved into the camera,1,95289908395,TP,pulled up her scarf,stood up and look in front,listening,smile,jump on bed,stood up and look in front 2048,8604794910,405,640,360,how did the children tried to hit the ball,1,86047949106,CH,throwing to each other,pose with racquet,pulling it,put it near his mouth,put in trolley and push,pose with racquet 2049,4420239986,669,640,480,why is the cat sitting on the table,0,44202399863,CW,to fight with dog,sleeping,scared of the big cat,rest,drink water,to fight with dog 2050,7571121368,1690,640,360,why does the child put her hand near her face near the end of the video,1,75711213682,CW,show the man how to do it,adjust her hair,clean her mouth,pose for camera,yawning,adjust her hair 2051,3151715056,1895,640,480,how do the performer feel as they perform,3,31517150568,TC,scared,pull his sleeves down,nervous,happy,carefree,happy 2052,11565498775,1216,640,360,what happens to the structure after the boy moves the handle up,2,115654987757,TN,reach for the airconditioners,make two thumbs up,nothing,clap,bring jacket away,nothing 2053,2716277960,402,500,375,why are the two men on the wooden log,2,27162779603,CW,act as his microphone,aim for a different part,passing by,ski,washing dog,passing by 2054,4915733559,1069,640,480,what was the lady doing with the phone at her ear at first,3,49157335595,TC,play games,cutting hair for boy,tap massages,talk,giving speech,talk 2055,2405940242,415,500,375,what did the man do when he sees the lady coming,1,24059402429,TC,hold his hand,pull the string down,look at his paper,smile,show affection,pull the string down 2056,3445431963,1276,640,480,why are the divers passing the coral reef,4,34454319631,CW,to catch lobsters,to plant more reef,to swim with the dolphins,the avoid the sharks,sightsee,sightsee 2057,4147398280,1716,480,360,where is the boy hanging out,4,41473982809,DL,at a slope,restuarant,shower,coffee shop,living room,living room 2058,6297019062,1746,640,360,what did the person do after pushing the baby in pink chair towards the other babies,4,62970190624,TN,juggle,started singing,put in her mouth,drops the pink package,put baby s hand on purple chair,put baby s hand on purple chair 2059,7088595057,1052,640,480,why is there a black sheep lying on the hay,4,70885950570,CW,to find egg shell,resting,play with snow,pretend to faint,lamb,lamb 2060,3376544720,2158,352,288,how is the man feeling when riding on the fake bull,2,33765447202,TC,sad,uncomfortable,excited,nervous,worried,excited 2061,7571121368,1690,640,360,how does the girl in pink react after the child reaches her side,3,75711213685,TN,fall down,taps water with her foot,moves his head,turns around and walk,hold something and walk onto sand,turns around and walk 2062,3526597179,807,640,360,what is the man and female doing in the video,1,35265971790,TC,searching for better vantage points,exploring the house,to teach child to walk,copying each other,to take a picture with flowers,exploring the house 2063,2925298951,398,640,480,where are the women hanging out,0,29252989515,DL,beach,backyard,forest,mountain,inflatable pool,beach 2064,4151403382,1875,640,480,where are the boys hanging out,4,41514033823,DL,roadside,fountain,classroom,backyard,living room,living room 2065,2736413196,1617,352,288,why did the man in black bite on his fingernails,0,27364131963,CW,he was thinking hard,agreeing with lady,untie the toy,get calling,wipe his finger,he was thinking hard 2066,2833209794,331,640,480,what there hanging on the black bag owned by the man wearing yellow shirt,1,28332097940,DO,balloons,santa s hat,streamers,flowers,necklace,santa s hat 2067,4378803532,1310,640,480,what did the boy in stripped do after he dropped the sparkles on the floor,2,43788035326,TN,stood up,fell down in the pool,pick it up,pick up toys,bend down to pick it,pick it up 2068,6895608152,2178,640,360,why are the people in red holding on to each other,3,68956081524,CW,washing,holding a stick,not to fall down,performance,gesture to tune,performance 2069,4970148391,732,640,480,what does the boy do after hitting the first balloon,1,49701483919,TN,stop crying,remove spectacles,look at mirror,hold railing of bed,play with toys,remove spectacles 2070,4272084125,732,640,480,why did the woman hold up the bottle after the man speaks to the camera,4,42720841250,CW,prevent boy from snatching bottle,pour wine for man,pass to woman,signal man to wave,show the bottle,show the bottle 2071,11670386946,998,640,360,where could this be happening,2,116703869467,DL,park,room,museum,farm,workplace,museum 2072,5840177726,377,640,480,how many people were cycling,3,58401777266,DC,five,four,seven,two,six,two 2073,5504913999,1475,640,360,how did the man protect his head from injury,1,55049139992,DO,beanie,wear helmet,ear muffs,mat,up down,wear helmet 2074,2771402761,1460,640,480,how do the women motivate the kid to move foward,2,277140276110,CH,pushing from behind,playing with balloon,throw a toy at the beginning,pull the baby backwards,with baby hands,throw a toy at the beginning 2075,3526597179,807,640,360,where is this video taken,2,35265971792,DL,supermarket,stage,house,studio,forest,house 2076,4896969617,350,640,480,what is the girl in pink doing on the playground structure,3,48969696174,TC,slides,climb stairs,monkey bars,swinging her legs,jumping,swinging her legs 2077,9565310990,1066,640,360,how does the baby react after falling to his front,2,95653109908,TN,he fell over,carry him up,gets up and start crawling,turn back to the toy,play with the toys,gets up and start crawling 2078,5533380417,403,640,362,which direction did the man turn at the first part of the video,0,55333804177,DO,to his right,towards two boys,towards man in white shirt,his back,towards girl with hoodie,to his right 2079,2771402761,1460,640,480,what are the people doing,3,27714027614,TC,performance,rock climbing,take turns to half squat,swimming,eating,swimming 2080,4094488636,810,640,360,why could the black dog only walk around a small area,2,40944886365,CW,cold,still want to play,held by leash,assist the chef,look at green toy,held by leash 2081,7330294814,2298,640,360,why is the lady in grey holding on to rainbow toys on he hand,2,73302948143,CW,to not fall off swing,playing with baby,making toy ready for kid,distributing cutlery,wants lady to help her hold,making toy ready for kid 2082,9256409422,2312,640,360,why does the lady put her hands on her face after she turning back,0,92564094222,CW,do not want to be filmed,shift hair,hiding,check her speech notes,convey her thoughts through actions,do not want to be filmed 2083,6291413193,1980,640,480,why is the lady in white looking at the dolphin,2,62914131931,CW,hold onto window sill,enjoying the sea,watching him swim,listening attentively,take video of baby,watching him swim 2084,4882414082,1350,640,480,why is the baby making faces while eating the noodles,2,48824140827,CW,posing for camera,restless,playing,annoyed by the cat,enjoying his food,playing 2085,3530231811,2697,640,480,how did the man with black hat play his instrument,0,35302318115,CH,strumming guitar,move fingers across piano,with drumsticks,blow into flute,beat the drums,strumming guitar 2086,8254300526,1104,640,1138,why did the adult swing a toy in the air,1,82543005261,CW,stunt,play with baby,push swing,pushed by lady,exercising,play with baby 2087,4978714491,1200,640,480,what did the green bus do after the white bus stopped behind the white line,3,49787144913,TN,turn,blowing bubbles,smile,stop beside it,accelerates,stop beside it 2088,6329954198,692,640,360,why does the man in black squat down,0,63299541980,CW,writing on the ground,it s sunny,pick up blue toy,scared of thunder,building snow man,writing on the ground 2089,14012319794,3010,640,360,why did the girl take the two sticks at the start of the video,2,140123197943,CW,to talk louder,tired of bouncing,hit the tent,crafting,play the drums,hit the tent 2090,2679130168,1504,320,240,why did the adult move the stuffed toy towards the girl s face several times near the end of the video,3,26791301682,CW,exchange it for her book,it has been cleaned and washed,for the girl to take picture,get the girl s attention,for her to hug it,get the girl s attention 2091,6142416815,1267,604,1072,why did the person rock the toy,1,61424168151,CW,amuse baby,soothe baby,feeling the music,prevent bottle from falling,not able to sit properly,soothe baby 2092,3145698830,1763,640,480,why did the baby reach forwards as the man read from the book,0,31456988302,CW,want to touch the book,to read the contents,interested to look at the pictures,rotate it upright,lick the book,want to touch the book 2093,4688219212,959,640,480,why did the coach support the gymnast boy from the back at the beginning,1,46882192120,CW,clean his hand,bring him up,trying to be funny,pull him off,shake away water,bring him up 2094,6624174621,1212,640,480,what was the woman doing before she stood up,3,66241746216,TP,dancing,start dancing,walking down the pavement,talk to girl,dance,talk to girl 2095,7492398760,2697,640,360,did the boy and girl fall hardly on the ground after the swing,0,74923987603,TN,yes,stand beside the swing,push girl,move legs backwards,ear,yes 2096,2976913210,542,640,480,where is this place,0,29769132108,DL,dirt field,park,living room,golf course,waterfall,dirt field 2097,5702201498,335,640,1138,why is the man lying down,3,57022014983,CW,play with rabbit,to play with the baby,stretching,resting,enjoying the sea breeze,resting 2098,4219909195,1003,640,480,why is the lady in green smiling,1,42199091957,CW,attract baby s attention,find the girl funny,enjoy skiing,talking to lady in white,she agrees with the lady talk,find the girl funny 2099,6356067859,1070,640,480,why did the boy reach out his hand towards the horse,0,63560678594,CW,holding the food for horse,to touch horse,to ride horse,look at horse,to clean horse,holding the food for horse 2100,6793786769,1158,640,360,how is the boy positioned in the video,1,67937867690,TC,sitting on sofa,lying on his stomach,lean on rubiks cube,lying on floor,carried in arms,lying on his stomach 2101,4896969617,350,640,480,what did the boy do after he stood up from the slide,3,48969696176,TN,move his arms,move towards the stairs,throw the stone,runs,climb over something to sit,runs 2102,5667931404,335,640,360,why did the baby bend down towards the toy truck at the beginning,1,56679314040,CW,to bite it,pick up the stone,easier to change direction,learning to walk,to put the spoon in the cup,pick up the stone 2103,3303565503,1115,480,640,how does the lady react to the man moving his hand to her waist,1,33035655037,TC,put on the girl s nose,laugh,dance,plays the instrument,waves her hand,laugh 2104,2405940242,415,500,375,where is this video taken,2,24059402426,DL,road,dancing hall,forest,playground,outdoors,forest 2105,6727904179,962,640,360,how did the two men indoors made themselves comfortable,0,67279041797,CH,lean against wall,running,lie on sofa,in a row,went forwards and backwards,lean against wall 2106,4263096481,637,320,240,why is the man holding a knife,1,42630964811,CW,costume of play,cut fish,doing martial arts,cut chicken,cut vegetables,cut fish 2107,8428551576,2688,640,360,how did the baby reach for the two metal pans,2,84285515768,CH,jump over,roll over,crawl over,adult passed to him,lean forward,crawl over 2108,4707679105,965,640,480,why is the man and the boy smiling,3,47076791053,CW,talking about something interesting,get to hit pinata,excited,reading funny book,happy to sing,reading funny book 2109,5863411262,1018,640,360,what does the man in white shirt do after caressing the donkey at the start,1,58634112623,TN,stir fry meat,walk away,touch the donkey s nose,feed the cameraman,look at him,walk away 2110,2434859163,615,500,375,why did the man in checkered shirt at the start take video with his camera,1,24348591631,CW,record the video game,record the polar bear swim,check for dirt,film bunny,film himself to give commentary,record the polar bear swim 2111,6691330381,1239,640,360,what does the man do as the boy lies on the floor,3,66913303810,TC,lie on his back,playing with the puzzle,resting,hold boy s hands together,look at him,hold boy s hands together 2112,3194558043,691,640,480,what does the man in black doing on stage,0,31945580435,TC,singing,standing,dancing,yellow,confident,singing 2113,5017166671,2697,640,480,why is the man sitting at the second seat from right strumming the string,4,50171666712,CW,to enjoy the music,enjoying the music,play fast notes,moving with rhythm,play guitar,play guitar 2114,10727696143,1821,640,480,why does the boy raise his arm when he reaches the wooden door at the start of the video,3,107276961431,CW,knock the door,play with baby,give something to boy in white,to show he reach,push the door,to show he reach 2115,6624174621,1212,640,480,why did the lady bend over the table at the end,3,66241746211,CW,pick up pebbles,put keyboard on stage,to stand up,blow candles,keep balance,blow candles 2116,4273039295,2214,640,360,which season is this happening,0,427303929510,DO,winter,spring,summer,autumn,discussion,winter 2117,3124551255,1962,640,474,why did the boy walk away from elmo,3,31245512554,CW,lady called him,found what he wanted,find dog,do something else,ride on horse,do something else 2118,2547885226,406,640,480,what does the kid do before right before standing up,2,25478852264,TP,hug lady,looking left and right,looks at the camera,play with toy,nod his head,looks at the camera 2119,3974684583,735,640,362,why do the people wear name tags,3,39746845831,CW,protection,making a model,protect from sun,worker,sunny weather,worker 2120,3063380173,515,500,375,what did the kitten outside the container do after it stood up in the middle of the video,1,30633801735,TN,sit down in front ot he person,look at cat in container,close his right eye,stood up,laugh,look at cat in container 2121,8171216955,550,568,320,why does the girl move backwards a bit every time she hits the dog toy,3,81712169555,CW,dog pulls the leash,avoid getting wet,want to take the balloon,avoid being hit,point towards the dog,avoid being hit 2122,3784543730,852,640,480,why did the driver move towards the cyclist when the blue car is approaching,0,37845437302,CW,keep distance,adjusting car,turn the scooter around,travelling on road,playing with baby,keep distance 2123,9531760182,2097,640,480,how did the lady get prepared to push the baby s head backward whenever he leaned forward,2,95317601828,CH,carry her,put toy,put her hand on baby s table,wear cap on baby,hold the cheeks,put her hand on baby s table 2124,5833145209,510,640,480,why did the black bird bend over into the water when it is in the pot,4,58331452099,CW,bite the small fish,wash itself,playing with water,look for food,drink,drink 2125,6188449000,1350,640,480,what was the colour of the paper that the boy is holding,1,61884490008,DO,white and brown,red,black,grey,pink and white,red 2126,4658396458,2160,640,424,why did the baby reach out her hand after awhile of looking at the camera,1,46583964580,CW,check baby s wellbeing and reaction,take toy to play,guide them,man closed the book,position for photo,take toy to play 2127,8403741210,1327,640,360,why did the ponytail girl move her head nearer to the tablet over time,2,84037412104,CW,see who is coming,holding the dog s collar,see the screen,tidy hair to right side,direct to the audience,see the screen 2128,4378803532,1310,640,480,what is the relationship between the child in stripes and the man in red,3,43788035325,DO,friend,team member,popper,parent offspring,friends,parent offspring 2129,8189958994,1869,640,360,where is the person walking the dogs,0,81899589945,DL,park,kitchen,front porch,jungle,grassland,park 2130,4123211145,2697,640,480,what did the girl in yellow do after she caught the towel,0,41232111455,TN,throw and catch towel,take the brush out,chase her,hit her with cushion,lean forward,throw and catch towel 2131,11566980553,1721,640,480,what does the boy do after picking up the second present,3,115669805536,TN,touch man s hoodie,take the phone out,smile,unwrap present,look at the girl,unwrap present 2132,4273039295,2214,640,360,what does the child do after the woman in green beanie pulls him up and cleans his down jacket,0,427303929512,TN,walk back,stand at the same spot,get up,says hi,raise their heads,walk back 2133,6291413193,1980,640,480,what was the lady doing as the dolphin was swimming,1,62914131930,TC,looking somewhere,stand at the side,no,move backwards,get off the float,stand at the side 2134,8797589693,2699,640,480,why did the man in blue stand up after the man in front gesture to him,4,87975896931,CW,to leave the room,pick up ball,to take photo,to perform on stage,go to front of room,go to front of room 2135,10309542255,2566,640,480,how did the animals respond when being pushed by each other during the fight,0,103095422554,TC,push back,snarl,shout,run away,bite,push back 2136,2978295992,1056,640,360,why does the woman in singlet hold the knife vertically,4,29782959921,CW,split the cake,carving the bowl,play with dog,ready to eat,carving pumpkin,carving pumpkin 2137,7531285946,1170,640,360,why does the woman turn around after she reaches the top of the ladder in the middle of the video,2,75312859463,CW,fidgeting around,readjust baby s position,to balance better when moving down,for fun,to climb up ladder,to balance better when moving down 2138,4136617240,2697,480,352,why is the girl staring at the tv,3,41366172407,CW,found it interesting,funny program,wants more caressing,follow dance moves,engrossed in watching the dot move,follow dance moves 2139,3508459605,2609,320,240,what does the man do after running across the toy at the start,1,35084596050,TN,swings again,walk towards the toy,follow baby,hold the swing,move body,walk towards the toy 2140,8604794910,405,640,360,what sport are the children doing,3,86047949104,TC,hug lady,running in the forest,football,tennis,play driving,tennis 2141,3066064005,819,640,480,what does the lady in red do after the woman in black points her finger,3,30660640057,TN,looked down,move body,gesture to red cloth,walk over,point also,walk over 2142,11966080214,1531,640,1138,what is the girl doing in this video,1,1196608021410,TC,walks away,playing toy,clapping,pat her face,skiing,playing toy 2143,5907839036,2697,640,360,why did the brown shirt man touch the binocular in front of him while the green striped shirt man walked past in the midle of video,3,59078390363,CW,interested in binocular,wipe dust off binocular,prevent baby from touching,see scenery closer via binocular,fix binocular,see scenery closer via binocular 2144,5940941487,838,640,362,how does the man playing the guitar react after looking at the boy in green dancing,4,59409414876,TN,jump down,makes hand gestures,looking at him,lean against pole,moves his body,moves his body 2145,3581585756,702,640,480,what is the relationship between the girl and the woman,0,35815857561,DO,parent offspring,friends,friend,team member,grandparent and grandchild,parent offspring 2146,4516967897,2036,640,480,what do the two ladies do with their heads as they talk to each other,3,45169678971,TC,paper,shake their heads,each other,nod heads,look around,nod heads 2147,3078294001,335,640,480,what does the man in white do at the start while the man in black was talking,2,30782940012,TC,looking for fishes,hit cans,posing,listening and agreeing with lady,start talking,posing 2148,7492398760,2697,640,360,what does the man do after swinging the girl for a while at the start,0,74923987608,TN,put girl down,nod,take out a doll,bounces her,he touch her cheeks,put girl down 2149,8225502382,1468,640,360,what are the people doing in this video,2,82255023826,TC,driving,swimming,cycling,skiing,keep up with each other pace,cycling 2150,3897746373,399,640,480,what did the girl in pink do after she swam,3,38977463738,TN,taps water with her foot,take the brush out,raise hands for dance moves,stand on the plank,move her hands away from her thighs,stand on the plank 2151,10309542255,2566,640,480,why did the animal on the left started walking towards the animal on the right,4,103095422551,CW,distracted,want to snatch its food,look for him,want to cuddle the animal,want to fight,want to fight 2152,3763643225,1073,640,480,why is the boy holding a paper giraffe,1,37636432250,CW,posing for camera,play with it,performing role play,trying to bite it,he cut it,play with it 2153,6624174621,1212,640,480,what are the event shown in the video,2,66241746212,DO,dancing,concert,birthday celebration,music show,dinner,birthday celebration 2154,6025238212,758,640,360,what does the girl in black do after the man approaches at the start,2,60252382123,TN,moves her hands in the air,blowing,start talking,cover her mouth,dance,start talking 2155,2614918961,1311,640,480,what does the baby do after putting one of his hand out of the table at the end,0,26149189616,TN,turns around,rub it on the tray,put bowl on his head,touch the book,cry again,turns around 2156,4949582792,2639,640,360,what does the girl do as the baby is lying in the pram at the start,3,49495827925,TC,watch on and clap,playing with ball,unwrap the present,rock the pram,dance,rock the pram 2157,5256928210,606,640,360,what did the man do after scratching the ends of the dog near the start,2,52569282105,TN,wag tail,play with toy,scratch body,walk away,look at hand,scratch body 2158,2604394962,1078,640,480,where is this place,1,26043949626,DL,gym,rooftop,kitchen,mountain,in a building,rooftop 2159,9473479950,608,640,480,what did the lady do after she tilted away from the baby in the middle of the video,0,94734799507,TN,smile and laughed,put her hand on forehead,hug baby,pick up leaves,carry baby up,smile and laughed 2160,2623954636,931,500,375,how did the ball land under the chair at the end of the video,3,26239546368,CH,wind blow,baby pushed it,the lady placed it there,bounced under chair,baby threw it,bounced under chair 2161,7651639778,1963,640,480,why is the man wearing a hoodie sitting on the shoulder of the other man,0,76516397780,CW,to reach the top,untie the toy,look at the screen together,watching him perform,talk to him,to reach the top 2162,10779838974,890,640,1128,what does the man at the back do while the girls push the rake,0,107798389741,TC,stands and watches the girls,stop boy from touching,open the drawer,carve pumpkin,use phone,stands and watches the girls 2163,4674481985,734,640,480,why does the man jump into the pool of water,3,46744819853,CW,get close to man,try to stand,turbelent river,part of the adventure activity,throw them into water,part of the adventure activity 2164,4635309062,2076,640,480,how does the man in black look while preparing the meat plate,2,46353090627,TC,nervous,sad,focused,angry,sleepy,focused 2165,5328004991,788,640,480,why does the child pick up a box near the end,1,53280049913,CW,learning to walk,playing with it,reflects,see what presents he got,take out leaves,playing with it 2166,8428551576,2688,640,360,why is the ipod on the floor near the middle of the video,2,84285515764,CW,man turned it,girl drops it,baby placed on floor,woman was using it,dog bite it,baby placed on floor 2167,6239210933,1030,640,480,how does the child in blue interact with the pink toy,1,62392109330,CH,bounce it,drawing on it,skipping,swipe off its hand,kiss it,drawing on it 2168,2854886555,480,320,240,why did the boy observe the fruit a while after harvesting it,2,28548865553,CW,to check his target score,want to get down the bench,amazed,look cool in the video,tired,amazed 2169,4127497265,895,360,480,what did the baby do after the first time chewing the toy,0,41274972656,TN,shake the toy,picks up the car,put it down,excited,bites it,shake the toy 2170,3261079025,553,640,480,what is the man in blue holding in his hands,4,32610790259,DO,plastic card with command,mobile phone,siblings,parent offspring,controller,controller 2171,4882414082,1350,640,480,why did the baby stretch the noodle with hands at the middle,1,48824140825,CW,pose,playing with it,break into smaller pieces,make it thinner,add it into the noodle mixture,playing with it 2172,11587211476,1470,640,360,how did the man in black react when te black dog finishes the course,1,115872114768,TC,smile and nod,start running faster,chew the bone,touch its face,run over to pull it,start running faster 2173,7164729910,656,640,360,how does the boy move the toy car backwards at the start of the video,2,71647299102,CH,bend down and pick it,hand pushes it,use legs to push,turns the handle,press the button,use legs to push 2174,2829462646,2500,352,240,what did the man hold in his hand while listening to the man speaking,1,28294626468,TC,cake,camera,pencil,pens,watch,camera 2175,5907839036,2697,640,360,why does the person holding a stack of paper raise his hands up at the end,2,59078390368,CW,gesture to cameraman,reading from paper,pointing and talking about something,hold for support,wanted to throw the paper,pointing and talking about something 2176,2977504625,384,640,360,why is the white shirt boy bending down beside the car,0,29775046250,CW,pull car,take a photo,waiting for lady and girl,to talk boy in blue,playing with the wheels,pull car 2177,5603283408,756,640,360,why did the girl bend down periodically to look at her feet,4,56032834080,CW,food drop on floor,pick up her toy,distracted by something,someone asked her to do that,look at what she stepped,look at what she stepped 2178,8557532213,379,640,360,why does the boy in yellow lie down on the grass at the end,3,85575322135,CW,recording baby s activity,pick up the ball,resting inside cage,failed at goal keeping,set off firework,failed at goal keeping 2179,2940373590,306,640,480,why are the two of them holding hands,1,29403735901,CW,show a sign,dancing together,let woman take video,same team,stay together,dancing together 2180,3897746373,399,640,480,what did the man do after the girl in pink swam,2,38977463732,TN,talk to the person in front,stand at the side,help her up,happy,moves her hand,help her up 2181,4333544549,1065,640,360,why is the man pulling the red stripe,4,43335445493,CW,playing tug of war,unwrap present,take off belt,lift the box up,control dog in leash,control dog in leash 2182,3105728894,1512,640,480,why is the woman wearing black suits looking at the person wearing big red hat,2,31057288944,CW,do not know what is going on,signal old lady to wave,talking,to show the child,want to take the hat,talking 2183,3902997424,779,640,480,how did the 2 people react to the guy playing keyboard,2,39029974242,TC,dances with the girl,smiles,girl moving and boy posing,lie down,drink from the bottle,girl moving and boy posing 2184,8455160795,600,640,360,what does the person with a stick do after suddenly moving forward onto the shore near the start,2,84551607951,TN,pick up and push boys away,performance,walk away,swim quickly away,fishes,walk away 2185,5662041273,2697,640,480,why did the plane spin many rounds when it first took off,2,56620412733,CW,to help stabilize it,get it start flying,the boy lost control,speak to the lady,unstable,the boy lost control 2186,7887764754,1063,640,480,what does the baby do after tearing some food out in the middle,4,78877647546,TN,he ate it,observe the gift,smiling,push food back in the mouth,feed dog,feed dog 2187,8594314852,377,640,360,how does the child in blue move the bicycle across the path,4,85943148521,CH,carried by lady,pedal wheels,with both hands,cycle,pushing with her legs,pushing with her legs 2188,5603283408,756,640,360,what does the girl do after turning around right at the start,4,56032834082,TN,touch the screen,touching her head,squatting,eating something,run,run 2189,4103088549,485,640,480,how did the man on the surfboard maneuver his balance on the board,1,41030885495,CH,hold the rope,spread legs and arms out,hold the side of the surfboard,steer wheel,jumping in and out the water,spread legs and arms out 2190,8505893258,888,640,360,what did the lady in pink do after holding the leftmost girl s hands,4,85058932587,TN,talk,look into the camera,hold something and walk onto sand,pick up hat,kiss hand,kiss hand 2191,4626085492,638,640,360,how did the black dog interact with the red toy at the beginning of the video,0,46260854923,CH,bites the toy,jumps down,carry it,with excitment,put in mouth,bites the toy 2192,6356067859,1070,640,480,how is the lady in white feeling as she is watching the girl in white in the middle,2,63560678597,TC,angry,alert,amused,focused,attentive,amused 2193,10597533885,1728,640,360,why is the kid sitting in the midst of toys,1,105975338850,CW,ensure baby dont fall off,playing with toys,baby can not swim,play with toys comfortably,play the keyboard,playing with toys 2194,3489439407,1662,640,480,what are the two men doing as the lady in blue stands and listen via her headphone,1,34894394072,TC,turns around,working on the radio,moving the papers,walk forward,choosing a flower,working on the radio 2195,2793806282,1925,320,240,where did the lady in blue brought the black dog after it caught the blue toy,4,27938062825,TN,street,grassland,wash room,car,stairs,stairs 2196,2400715506,414,320,240,why did the animal try to climb off the person s hands while being handled,1,24007155066,CW,the lady turned the walker,wants to move around,playing,battery operated toy,on leash,wants to move around 2197,3846475848,2138,640,480,what does the man do after cleaning one side of the ferret,2,38464758484,TN,walk to baby,enters a room,lift ferret up,close the bottle,keep tools in cabinet,lift ferret up 2198,7001078933,633,640,360,why did the man with white helmet pushed the three people in the video,2,70010789337,CW,fighting,cross the hump,practice,push them into water,lift themselves up,practice 2199,7887764754,1063,640,480,what does the dog do after getting food from the baby at the start,3,78877647543,TN,get dog to do tricks,sit down,pushed him away,eat,look at camera,eat 2200,7453733046,992,640,360,why did the boy in black stretched his arm out at the beginning of the video,0,745373304611,CW,put water in cup,to shake hands,to drink,opening box,watch the man untie the toy,put water in cup 2201,5427285434,615,640,360,why did the boy put his hand on his head at the start,3,54272854345,CW,play with baby,show he finish chewing,he is excited,prevent hat from falling,stretching his arm,prevent hat from falling 2202,4935987905,806,640,360,why is the brown dog bending down to the floor as it moved around,1,49359879053,CW,food dropped on ground,sniffing ground,the person pushed it,get closer look at the toy,keep warm,sniffing ground 2203,4372494989,2575,640,480,what does the man do after standing up,0,43724949895,TN,pray and bow,dancing to rhythm,push the float,jump,dance battle,pray and bow 2204,4626085492,638,640,360,how did the white dog reacted when the red toy dropped on the floor,1,46260854925,CH,look at dog in black vest,holds the toy in its mouth,jump up on sofa,hide in soil,hide behind lady,holds the toy in its mouth 2205,2829462646,2500,352,240,how does the person in stripes interact with the person in blue holding the camera,4,28294626462,CW,dancing around him,pushing him around,pointing to the sun outside,hugged him tightly,use his hands to visualize his words,use his hands to visualize his words 2206,3502722122,425,480,640,what does the boy hold in his hands as he sits on the chair,4,35027221222,TC,chair,ribbons,bracelet,toy,book,book 2207,7987845241,1511,640,1138,why is the woman in purple patting the dog,3,79878452411,CW,training the dog,washing the dog,playing with the dog,comforting the dog,hitting the dog,comforting the dog 2208,6031805098,1368,640,360,how did the man in white cap hit the beetle down from the tree,2,60318050987,CH,climb the tree,throw ball at beetle,hit leaves with a stick,lowered down by rope,jump up,hit leaves with a stick 2209,3830567237,716,640,480,why does the man in black move the water hose around in the middle of the video,0,38305672371,CW,wash horse s body,watering plant,washing boat,washing car,fill up the tank,wash horse s body 2210,2854886555,480,320,240,how did the boy feel after managing to harvest the fruit,0,28548865552,TN,accomplished,gets up and walks away,put hand inside the toy,try to scoop snow out,shield himself,accomplished 2211,2717347132,818,640,480,why was there saliva on the baby s mouth,1,27173471320,CW,drooled,spitting,did not wipe his mouth clean,messing around,sucking his finger,spitting 2212,5735711594,589,272,480,why does the bigger white dog suddenly move away,3,57357115941,CW,playing,to play with the dogs,to get the green toy,avoid getting surrounded by 3 dogs,to throw the ball,avoid getting surrounded by 3 dogs 2213,5875242364,427,640,384,how is the baby rested in the pool,3,58752423644,CH,swimming,lie on the it,standing,sitting,floating on board,sitting 2214,4276006683,799,640,480,how does the person interact with the cat,2,42760066830,CH,touch television screen,with two front paws,caress it,hold it,chase the tail of the toy,caress it 2215,5933003028,931,640,360,why are there wires within and outside the box,3,59330030281,CW,to trip people,for operators to stand,prevent trains from moving out,provide electricity,boosting atmohsphere,provide electricity 2216,3270490566,1515,640,480,how do the people feel while performing,3,32704905665,TC,upset,agitated,agreeable,happy,melancholic,happy 2217,2697261300,1392,640,480,how many dogs are filmed,3,26972613000,DC,one,five,four,two,three,two 2218,6895608152,2178,640,360,where is this video taken,0,68956081529,DL,stage,forest,construction site,dinning table,living room,stage 2219,4419096437,1584,640,360,what does the person do after laying his hand on the cat,3,44190964376,TN,move its head,zooms into the tap,walks across,stroke,retaliate,stroke 2220,6754608321,1617,272,480,why does the girl move her finger along the baby s stomach,0,67546083212,CW,playing with the baby,massage her,change her shirt,clean the stains on her shirt,tickle her,playing with the baby 2221,2871995580,2697,500,375,what did the boy do after he picked up the ball at the start of the video,2,28719955805,TN,play with instrument,throw it at dog,walk to the box,turns the bike around,jumps on the sofa,walk to the box 2222,3581585756,702,640,480,how many adults are on the bus,0,35815857566,DC,one,four,nine,five,two,one 2223,4955723618,1831,640,480,what is the man with white tag on shirt do while man in stripes speaking,2,49557236185,TC,drinking water,holding a balloon,lean against wall and watch,resting on chair,talking to the man beside him,lean against wall and watch 2224,7571121368,1690,640,360,why does the child stop walking for a while at the intersection,1,75711213687,CW,carry girl,preparing to jump,careful of the rocks,to look at the person filming,no more space to push cart,preparing to jump 2225,5549243726,527,640,360,how did the baby react while the girl is jumping up and down,1,55492437263,TC,sit on sofa,look at her,get down,pats the baby on back,start crying,look at her 2226,5623068492,2375,640,480,how did the two men protect their hands,0,56230684929,DO,gloves,move arms,helmet,thick clothes,on each other,gloves 2227,4859057828,647,640,480,why did the three ladies move away backwards so vigorously after standing next to each other the first time,1,48590578287,CW,dancing,they were cringing,for him to go to center,prevent her flag from being taken away,want to sit down,they were cringing 2228,3562017845,1200,640,428,what did the bird do after stepping into the water,0,35620178450,TN,bend down,walk around,look around,lifts up his leg,moves around,bend down 2229,2712662377,1048,640,480,why did the turtle put the hands on the leaf,1,27126623770,CW,not step on the leaf,facilitate eating,he was moving in it,dropped from the trees,to understand the tool,facilitate eating 2230,5328616848,446,640,480,what was the man doing while the woman prepared the ingredients,0,53286168486,TC,putting something in the oven,follow behind her,adjusting cakes,carve pumpkin,adjust shoes,putting something in the oven 2231,3557498300,849,640,480,why does the boy in blue keep running,0,35574983000,CW,flying kite,chased by dog,dance routine,talking,pass the ball,flying kite 2232,8783897632,974,640,360,where do they turn after they have reached the ground,0,87838976324,TN,their right,look at camera,turn around,giving presents,wine tasting,their right 2233,11566930393,872,640,480,where could this be happening,2,115669303937,DL,farm,dining room,living room,zoo,garden,living room 2234,2573424030,1470,320,240,why did the green shirt woman move her hands off her waist as she walks across the camera,4,25734240304,CW,attract baby s attention,posing,pass her something,waiting,her back hurt,her back hurt 2235,5427285434,615,640,360,what did the boy do after he stopped dancing at the end,2,54272854343,TN,walk away,pose with his hands,touch his head,stands up,turn around,touch his head 2236,3708066257,477,640,480,where are the people dancing,3,37080662579,DL,in the forest,in the jungle,front yard,house,concert hall,house 2237,3270490566,1515,640,480,what is the relationship between the people performing,1,32704905663,DO,singers,band member,snake handler,flute performers,parent offspring,band member 2238,6265968082,1275,640,360,how are the microphones held in place,0,62659680821,CH,mike stand,hanging with the rope,put on table,secured with cables,held in hands,mike stand 2239,6618792571,2518,640,480,why did the adult let go of the handle before the baby push the toy away,4,66187925712,CW,close the hands,because its heavy,fidgeting,adjust it,for baby can walk alone,for baby can walk alone 2240,4151403382,1875,640,480,why did the boy with brown bib pass the story book to the man,0,41514033821,CW,ask him to read,to show the slippers,hold onto toy for boy,curious,to take a closer look,ask him to read 2241,5429688959,2490,640,360,why does the singer move away from the microphone and look down at the end of the video,0,54296889593,CW,finish singing,pick up ball,attract audience,lure dog with treats,hit by microphone,finish singing 2242,9213637099,1539,640,360,why are there a group of men at the back for the field,4,92136370994,CW,playing cards,digging,playing with toy plane,watching their steps,meeting,meeting 2243,4151403382,1875,640,480,what does the boy in striped bib do after falling down,3,41514033825,TN,stay on the ground,lie on his back,run towards the man,crawl to books,stand up,crawl to books 2244,2835125654,1406,320,240,why does the man in white hold up his phone in the middle of the video,4,28351256543,CW,get calling,to unbuckle,distracted,take photos of the girls,take a photo,take a photo 2245,3942617402,738,640,480,why does the train stops near the end,3,39426174022,CW,old engine technology,safety,change direction,reach destination,combustion,reach destination 2246,4127497265,895,360,480,which part of the toy did the boy chew for the second time,0,41274972654,DO,feet,hairs,tail,head,dinosaur toy,feet 2247,2679130168,1504,320,240,how did the adult gets the child s attention onto the cushion,1,26791301689,CH,touch the sofa,hit the cushion,shout,tries to climb on the cushion,hit the sofa,hit the cushion 2248,3441428429,2697,640,480,why are the male and female skater wearing suit and costume respectively,1,34414284292,CW,she was learning from her,different costumes,uniform,to hold the lady,formal event,different costumes 2249,2567843468,572,320,240,what happens to the starfish after the girl splashes the water in the beginning,4,256784346811,TN,stand on the plank,clap her hands,stand at the side,amazed,float away,float away 2250,6443512089,2437,640,360,where is the child hanging out,0,64435120896,DL,along the roadside,playground,room,living room,balcony,along the roadside 2251,6143391925,1206,640,480,why did the woman reach out her hands at the beginning of the video,2,61433919250,CW,pick up the mask,draw cards,hold baby,plant sapling,playing with toys,hold baby 2252,6898821807,585,640,480,how does the baby react to the boy holding his face,1,68988218077,TC,crawl away,cry,run away,laughs,bite boy,cry 2253,9498159305,1275,640,360,what did the man do when the penguin was breaking the earphones,2,94981593055,TC,flap its wings,point towards the camera,pet,look around,look at phone,pet 2254,3164519967,1090,640,480,why is the old lady s mouth moving at the beginning of the video,0,316451996710,CW,talking,singing,chewing,checking tooth,blow candle,talking 2255,9256409422,2312,640,360,why is there a wire on the lady s face,4,92564094226,CW,the stage cables dropped,it came from the helmet,props for costume,part of face decoration,earpiece,earpiece 2256,4762946272,647,640,360,why did the baby have to sit on the counter,0,47629462723,CW,tall enough to help,to eat,food dropped on table,sunk,eating food,tall enough to help 2257,8457210773,1976,640,480,how many dogs are in the video,2,84572107736,DC,one,three,two,five,six,two 2258,2679130168,1504,320,240,what did the girl do when the adult tries to give her the toy pumpkin,4,26791301687,TC,carry it and walk to sofa,go to the lady in grey,waves her hands in the air,hold a cross sign,ignore it,ignore it 2259,6896884547,1440,640,360,what does the baby do after the ball dropped down onto the floor,1,68968845476,TN,sits down,climb down,get up and dance,drive up,cycle,climb down 2260,3719793245,342,640,480,how did the girl kept her hair tidy,0,37197932454,CH,hair band,tie it up,with her hands,long sleeve shirt,covered with cloth,hair band 2261,2796821016,1851,500,375,why are the boys lying on the carpet,3,27968210160,CW,looking at cat,drinking water,dance move,playing by rolling around,looking at book,playing by rolling around 2262,4846820256,671,640,480,what did the boy do after he turned back at the end of the video,1,48468202567,TN,kiss the train,holds the rope on his shoulder,write on book,motorcycle drove past,walk away from room,holds the rope on his shoulder 2263,4949582792,2639,640,360,what does the baby do as the girl played with the seatbelt in the middle,1,49495827924,TC,read a book,rock the pram,play with pink toy,kicking,smile,rock the pram 2264,6988748711,1512,640,480,where are the people working,1,69887487116,DL,fish market,outdoor,matial arts,amusement park,ring,outdoor 2265,3066064005,819,640,480,how does the woman in black signal place to sit for the lady in red at the beginning,2,30660640055,CH,called out to her,stood and wait in front of the seat,point her finger,shouted at her,walked towards her,point her finger 2266,3972259774,1063,640,480,how many people are filmed by the camera,1,39722597748,DC,one,five,six,seven,two,five 2267,4483447009,775,640,480,why were the two ducks separated by a fence,0,44834470091,CW,different cage,finding things to eat,follow the other duck,compete for food,for tigers to drink and wash,different cage 2268,2793260225,558,500,375,what happened after the lady fell,1,27932602258,TN,walks to her,got back up,wobbles,sit down,crawl,got back up 2269,9531760182,2097,640,480,what did the lady do after she took the bowl from the baby,0,95317601825,TN,put on table,put the fork down,pull her back,pick up the seatbelt,put the fork in her mouth,put on table 2270,2973331780,1015,640,480,why did the blonde woman move her body together with the singer,4,29733317801,CW,engrossed in performance,swinging to the music,extend it,listening to her,dancing,dancing 2271,9531760182,2097,640,480,why does the woman hold the baby s hand at the beginning,4,95317601823,CW,position for photo,feed baby,rocking the baby,guide him in scoping fish,take away the bowl,take away the bowl 2272,5858985747,349,604,1072,whose phone the baby in yellow pick up at the end,1,58589857470,DO,kids,woman in black,girl in black,man sitting at sofa,girl in red,woman in black 2273,2596300565,2415,500,375,how does the kid learning to walk,0,25963005652,CH,with the pram,hold on to toy car,walking toy,2 legs,reach out hand,with the pram 2274,4762946272,647,640,360,why did the woman adjust the baby s hand several times before she poured the flour,2,47629462720,CW,eat the cream,wants to eat cake,assist him,encourage the baby and reward,prevent her from messing the cake,assist him 2275,9473479950,608,640,480,what did the lady do when the baby first looked into the camera in the middle of the video,1,94734799506,TC,pick up toy,smile,talk,pick up something,start claping,smile 2276,7308042410,1019,640,1138,where did the man in white took the tools from,4,73080424107,DL,carpark,public area,on table,kitchen,at the bucket,at the bucket 2277,6136926089,1522,480,640,how does the baby get up the stairs,2,61369260894,CH,man carried him,baby stroller,crawls upward,holding the barrier,hold onto side of the chair,crawls upward 2278,3078294001,335,640,480,where are the people hanging out,1,30782940017,DL,kitchen,room,outside house,swimming pool,outdoor porch,room 2279,5945172741,1593,640,480,what does the girl do after she gets the red and black ball from the man,3,59451727413,TN,look into the ball,walk back,bounced too,gets off the bed,attract the dog,gets off the bed 2280,4698622422,1252,640,480,why did the boy throw his racket aside at the end,2,46986224221,CW,put it in a better place,reach for the airconditioners,grab the ball,to put it somewhere,to show off toy,grab the ball 2281,3105728894,1512,640,480,how many people are practising their tricks in the video,0,310572889410,DC,four,three,five,two,one,four 2282,4367056464,1162,640,360,why does the girl clap in front of the table,1,43670564642,CW,perform for the audience offstage,excited,enjoying with the piano music,fixed dance moves,face different audiences,excited 2283,2552130183,2697,480,360,why does the lady move her face close to the baby s at the beginning of the video,3,25521301834,CW,fidgeting around,talking about it,talking to boy,playing with the baby,to get down,playing with the baby 2284,8403741210,1327,640,360,how many people are involved in the video,3,84037412108,DC,five,two,four,three,one,three 2285,5504913999,1475,640,360,how is the man moving in the video,0,55049139991,CH,walking and skiing with poles,jumping around robot,walking the dog,dancing with a lady,riding on horses,walking and skiing with poles 2286,8211075660,1621,480,360,what does the man on the left do as the man on the right stood next to him,1,82110756605,TC,walking down the hill,talking on the microphone,hold man s hand,continue playing guitar,try out poses,talking on the microphone 2287,4189100053,874,640,360,how many people are involved in the video,1,41891000539,DC,one,two,five,four,three,two 2288,2809330695,2158,320,240,where is the baby resting,1,28093306956,DL,in walker,crib,lady s lap,ground,chair,crib 2289,3376544720,2158,352,288,why did the man in black wear gloves before going on a ride on the bull,2,33765447200,CW,preparing him for sports activity,let everyone watch,grip better,to open the cap,for comfort,grip better 2290,6018514357,1280,640,1138,what did the baby do after coming off the slide,1,60185143571,TN,push the toy along,walking,roll onto her stomach,wants to go again,move his hands and legs faster,walking 2291,5229476012,810,640,480,how did the boy kept himself afloat in the water,2,52294760123,CH,wish an oxygen tank,kayaking,using a tube,hold onto float,lady hold him up,using a tube 2292,4083875373,1621,360,480,where is the girl dancing,3,40838753736,DL,room,stage,at a carnival,in front of the television,beach,in front of the television 2293,6205856607,978,272,480,what does the horse do after the girl pats it in the middle of the video,0,62058566072,TN,lick her,lift the club up,put finger in her mouth,look down,look into camera and smiled,lick her 2294,2599937944,449,500,375,how did the guy in black suspend above the rushing waters,1,25999379440,TC,swing,rope,bridge side,rubber float,rubber hose,rope 2295,5297811305,720,640,360,why are the people dressed in heavy clothing,0,52978113051,CW,cold,walk on muddy fields,snowfall outside,protect from sunburnt,protection,cold 2296,3981865268,1109,640,480,how did the man place his computer,0,39818652686,CH,in front of him,at the side,on floor,touching the controls,on his lap,in front of him 2297,5134317883,1890,640,360,why do the men have knives in their hands,0,51343178831,CW,carve the pumpkin,chef attire,practising fight,look at the laptop monitor,cutting the meat,carve the pumpkin 2298,6265968082,1275,640,360,why does the guitarist sway its body constantly throughout the performance,3,62659680829,CW,attract attention,requested by the teacher,restless,engrossed in performance,pose for camera,engrossed in performance 2299,9873067604,920,640,360,how did the person try to get the girl attention,3,98730676042,CH,swing up and down,put her face near the lady,talks to her,touch head,use poles,touch head 2300,5840177726,377,640,480,why were the men turning down to their left,2,58401777264,CW,look at the ground,adjust something,turn on the path,stuck in snow,wave pushed him,turn on the path 2301,6037747123,919,640,480,why are the three people on a grass field,4,60377471231,CW,rolling around,dancing,sightseeing,playing soccer,playing golf,playing golf 2302,6018514357,1280,640,1138,what does the man do as the baby is walking,2,60185143570,TC,eat,stretching,turned to look at baby,makes a phone call,run around,turned to look at baby 2303,7691172922,1454,640,480,what was the dog lying next to at the beginning,2,76911729227,DO,car,polar bear,door,water,cat,door 2304,2596300565,2415,500,375,why is the man helping the kid to push the pram,3,25963005651,CW,playing,show child something,teaching the kid,add strength and help navigate,let child hold onto toy,add strength and help navigate 2305,2717347132,818,640,480,why is the lady holding the kid from the back,2,27173471324,CW,check for stains on the back of his shirt,position him for photo,providing support,prevent the dogs from attacking the kid,observe his directions,providing support 2306,2987766537,497,500,375,what is the baby struggling to do in this video,2,29877665371,DO,smiling,get the toy giraffe,move body,wipe the boy s mouth,swing himself,move body 2307,6690256857,344,640,360,why is the man holding the hose,0,66902568578,CW,washing dog,washing the floor,washing toilet,clean the field,putting out fire,washing dog 2308,4984417707,441,640,360,how did the ball reach the goal post at the end,4,49844177072,CH,with his mouth,person kicks it,dog brought it back,with hand,elephant hit it with leg,elephant hit it with leg 2309,8241491518,891,640,480,how did the man clear a path for walking,0,82414915182,CH,chop the leaves,stretch hands out,in his pouch,ith a stick,spread arms out,chop the leaves 2310,5635265624,584,480,640,why does the baby take the item from the lady in grey beside her,1,56352656244,CW,man pointed,woman passed to baby,to collect puzzle,woman in black want,item is shiny,woman passed to baby 2311,8464056582,1340,640,360,what does the dog do after jumping back at the start,2,84640565820,TN,spread its legs,eat the food,turn away,hop forward,keep peeking at dog,turn away 2312,2726497009,1575,640,480,how did the first female rider get down the slope,1,27264970098,CH,tiptoes and jumps,ride the bike,step up,push the chair baby is in,put them up,ride the bike 2313,5205081904,623,360,480,what activity is the child doing,1,52050819044,TC,playing with the toy,watching video on tablet,presentation,horse riding,playing instrument,watching video on tablet 2314,3626788516,337,320,240,why does the woman in brown bring the crocodile close to her face near the end of the video,1,36267885162,CW,showing crab s part to camera,pose,scoop the sauce,play with it,to climb up ladder,pose 2315,5889898795,2697,640,360,how did the third man in white shorts move his legs,1,58898987957,CH,swing leftwards,swing forward,keep it straight,swing rightwards,bend,swing forward 2316,3524939594,436,320,240,why did the man in white sitting at the back of the cart put his hands on the person in front,4,35249395940,CW,colour of purity,prepare food,fashion,direct attention,avoid falling off,avoid falling off 2317,4978714491,1200,640,480,which bus runs off first after parking for a while,3,49787144918,DO,red bus,orange bus,white bus,blue bus,black bus,blue bus 2318,2810112808,2669,320,240,why does the man in red stretch his hands out near the middle of the video,4,28101128086,CW,take photo from angle,grab toy,to unbuckle,to take a photograph,draw cards,draw cards 2319,4636208292,2580,640,480,why does the man in beard show the drink bottle in front of the video,0,46362082922,CW,show the beer they are drinking,talking something,stablize him,vomit something,demonstrating with actions,show the beer they are drinking 2320,6642268693,1143,640,480,how did the dog react when the owner threw the toy,3,66422686937,TC,caress another dog,run after it,ran after ball,go to owner,toy glasses drop,go to owner 2321,4757890069,1125,640,480,why is there a barrier palced in the middle of the opposite road,0,47578900691,CW,restrict entry,mark a dead end,construction in progress,floor wet,there was a hole on the roads,restrict entry 2322,4244817395,1683,640,480,how does the child play with the cups in the beginning,2,42448173950,CH,facilitate sucking for water,pour water,stacking the cups,spin cups,scoop sand,stacking the cups 2323,4970148391,732,640,480,why does the boy removes goggles after hitting for first time,3,49701483912,CW,catch his balance,to show man,take water out of nose,wipe water off,to get up,wipe water off 2324,4132599924,781,640,480,how does the man adjust the music,4,41325999243,CH,moving the strings,using the microphone,push level,moving a stick,press buttons,press buttons 2325,4279106208,559,640,360,why does the woman point her finger at the end of the video,0,42791062084,CW,talk to baby,to wipe her mouth,show the things in her hand,baby leg is there,take water bottle,talk to baby 2326,2589540862,681,500,375,what does the girl do as the man sits in front of the computer,2,25895408623,TC,work,watching the baby and lady,spins around,playing in toy car,inspect his mouth,spins around 2327,5681946487,848,320,240,why does the boy hold onto the cup,0,56819464873,CW,play with it,drink water,drink soup,brush teeth,bite it,play with it 2328,11276567104,989,640,360,what does the priest do after letting go of the woman s head,3,112765671043,TN,clap again,hold hands out around the baby,pat his head,pat her shoulders and talk,crawl,pat her shoulders and talk 2329,2679328607,1047,320,240,what is the relationship between the man in red and the children,4,26793286075,DO,father daughter,trainer trainee,teacher student,coach and players,parent offspring,parent offspring 2330,4603484665,1045,640,480,what is the brown dog doing while the two dogs are bitting each other,1,46034846658,TC,it is being chased,sniff the white and black dog,chew the ball,lick its paw,sniff the white dog,sniff the white and black dog 2331,7961460440,360,640,480,why did the man wear helmet,1,79614604400,CH,practice fencing,get down cliff,on scooter,playing balls,cycling,get down cliff 2332,3151715056,1895,640,480,why do the people get scared near the end,2,31517150563,CW,dog is barking,big waves,part of the performance,room is dark,sacred at cat,part of the performance 2333,4896969617,350,640,480,why did the girl in white bend down before she slide down the slide,0,489696961710,CW,to slide,get color,being dramatic,hold boy,provide support,to slide 2334,2782658657,787,640,360,what is the girl in white wearing in her hair while running,3,27826586572,TC,balloon hat,birthday hat,hat,hair tie,colorful rope,hair tie 2335,5134317883,1890,640,360,why is the man wearing blue carving the pumpkin open in a specific shape,4,51343178834,CW,to make it correct,make flame bigger,to move the trolley,hold plank for boy to hit,create an image,create an image 2336,6516459343,2697,640,360,why did the man in white move behind after the man in green put down the shoe on the table,0,65164593433,CW,change position,does not like the dog,finish his job,turn on the flashlight,next to speak,change position 2337,8990144134,457,320,240,how did the cat approach the bird,1,89901441340,CH,closely,crawls towards it,in the man s arm,stretches,hit the sofa,crawls towards it 2338,11244289523,552,640,360,how does the girl with the scarf feel towards her ipad,4,1124428952311,TC,found it funny,sore,passionate,interested,distracted,distracted 2339,4123915842,750,640,480,what did the girl do as the lady in green was doing up her hair in the middle,3,41239158427,TC,push the table,talk to the lady,adjust their things,stand up,reading her paper,stand up 2340,6168295272,446,640,360,why do the children do the same movements,1,61682952721,CW,posing for the camera,learning same dance,requested by the teacher,staging a performance,following the video,learning same dance 2341,6988748711,1512,640,480,why did the blue shirt woman drag the cloth open before stepping on the mud,1,69887487113,CW,wants her spot,spread it out,pour water into mud,excited wants to play,get something away from her face,spread it out 2342,5138093706,931,640,480,why did the person with white shoes bend forward at the end of the video,0,51380937065,CW,support baby,adjust shoes,blow the candle,take back her socks,stretching,support baby 2343,9408800471,1056,640,480,how does the dog try to catch the balloon,0,94088004718,CH,use its mouth,chasing each other,jump and lick,hits it,hold balloon with both paws,use its mouth 2344,5801184682,1683,640,480,how did the person attract the cat s attention after putting it on the floor,4,58011846823,CH,look at the hand,touch the toy with its paws,excited to get it,with the string,tap the floor using hand,tap the floor using hand 2345,8208035645,428,640,360,why did the boy change his direction in the middle of cycling,0,82080356453,CW,wants to go up slope,to turn,practice cycling,distracted,approach the girl,wants to go up slope 2346,4518113460,1867,640,480,why does the baby sit down in the middle of the video,1,45181134601,CW,pick up the toy car,attracted towards the chair,to climb down the stairs,smile,curious,attracted towards the chair 2347,4915733559,1069,640,480,how did the baby get onto higher height to look at the phone,0,49157335597,CH,push against the sofa,wrap his head using her hand,crawl and climb,point with fingers,lifting himself up from ground,push against the sofa 2348,11584566583,376,640,480,what does the lady in green hold in her right hand while standing,2,115845665830,TC,leash,paper,microphone,her nails,girl,microphone 2349,3508459605,2609,320,240,how does the baby react after the man reaches out his hands,2,35084596056,TN,hi-five,nod his head,hold the man s hand,hiking,pushes it away,hold the man s hand 2350,9565310990,1066,640,360,what does the baby do after stopping for a while in the middle,4,95653109909,TN,crawl to adult,rest,jumping near the adult s knee,look at the dog,touch the cloth,touch the cloth 2351,4896969617,350,640,480,why did the boy run off from the slide in the middle of the video,2,48969696173,CW,pick up the ball,to get mickey mouse,excited,pick something,snow hump,excited 2352,8457210773,1976,640,480,how did the brown dog play with the black dog,4,84572107738,CH,play a ball,chase,caress,hug,bite,bite 2353,8330342965,1313,640,362,what does the girl do after picking up the airplane again,2,83303429658,TN,put on shoes,continue cycling,throw it again,follows it down,move towards the slope,throw it again 2354,9408800471,1056,640,480,what does the dog do after the boy throws the balloon up,0,94088004719,TN,try to catch it,rolled away,go to the person in sandals,swipe of dirt,to play with the girl,try to catch it 2355,2796821016,1851,500,375,what does the boy in striped do after getting his leg off the other boy,2,27968210167,TN,bend his body,talk to camera,roll opposite direction,moving ti around,walk away,roll opposite direction 2356,4707679105,965,640,480,why does the man hold a book in front of him and the baby,2,47076791052,CW,looking at them play,reading,reading for baby,man is reading to the boy,give as present,reading for baby 2357,4774302357,450,640,480,what is the man in grey in front of the computer doing when the other two are playing the guitar,4,47743023575,TC,watch them playing,enjoy the music,hit the drum,have dinner,operating the computer,operating the computer 2358,5877508141,583,640,480,where is this video taken,4,58775081414,DL,kitchen,house,studio,ball room,playground,playground 2359,10082798964,345,640,360,why did the baby open her mouth,0,100827989645,CW,to talk to the lady,suck thumb,to bite it,fidgeting around,touch the toy,to talk to the lady 2360,2679130168,1504,320,240,how did the girl learn how to play with the cushion,2,26791301680,CH,remote control,use controller outside the machine,copy the adult,touching and swing,played next to him,copy the adult 2361,5349766264,1884,640,362,what are the poeple in the video doing,1,53497662640,TC,drinking and talking,jamming,barbeque,talking,squeezing a ball,jamming 2362,3375218204,2241,640,480,what colour is the girl's shirt,2,33752182044,DO,yellow,blue,pink,white,purple,pink 2363,7223854838,413,640,360,what are the children doing in the videos,1,72238548381,TC,playing slide,watching fishes,jump on float,dancing,playing with toys,watching fishes 2364,7149153537,1384,640,360,how did the girl in orange get down into the water at the beginning of the video,2,71491535375,CH,use her hand,crawl down,jumps and supported by man,slip down,picks it from the floor,jumps and supported by man 2365,10779838974,890,640,1128,what do the girls do as the man stood at the back,0,107798389745,TC,move the rake,talking over a meal,helps the man button,dancing,oversees,move the rake 2366,4273039295,2214,640,360,why does the adult wearing green became pat the baby s after the baby fell off,4,42730392956,CW,to look at other people,wants to eat,man showed her,she fell off the bike,remove the snow,remove the snow 2367,7453733046,992,640,360,what is the baby doing as she sat in the pram,4,745373304613,TC,reading book,having dinner,playing with balloon,drinking milk,sleeping,sleeping 2368,5533380417,403,640,362,why did the baby start jerking at the end,0,55333804172,CW,disturbed,approach to the bicycle,pick up balloon,lie on his side,to talk to someone,disturbed 2369,9208803675,582,640,360,why is the lady in blue climbing onto the standby position when the lady in green took off,3,92088036751,CW,start the scene,wants her spot,not get lost,waiting for her turn,carrying it,waiting for her turn 2370,4075791856,2250,640,480,what did the lady in black crossing her legs doing as the man was speaking,4,40757918565,TC,dance,sit down,happy,listen to man speak,rubbing her head,rubbing her head 2371,6713120511,1664,640,360,how did the man in black move down the slope,4,67131205113,CH,walked up,jump,using the sled,spectacles,slide down,slide down 2372,2830899473,429,640,480,what is the relationship between the men,0,28308994734,DO,friends,band mates,band members,team member opponent,trainer trainee,friends 2373,7453733046,992,640,360,how many people are playing in the water playground,4,74537330468,DC,one,kitchen,four,five,two,two 2374,8225502382,1468,640,360,why does the man in dark green jump down from the bicycle at the end of the video,2,82255023824,CW,to turn the bicycle around,put the pebble there,stunt,fell off bridge,signal that he is tired,stunt 2375,5297811305,720,640,360,how does the woman help the baby at the start,4,52978113054,CH,catch back balloon,kiss them,rock baby,push the chair baby is in,holds his hand,holds his hand 2376,4024008346,588,640,360,where are the people hanging out,3,40240083465,DL,outside a building,zoo,studio,living room,auditorium,living room 2377,3194558043,691,640,480,how did the man on the stage move,2,31945580433,CH,use to open the fans,people behind screen move them,dance following the rhymth,hit instrument with sticks,jump up and down,dance following the rhymth 2378,2796821016,1851,500,375,what do the boys do after lying down,4,27968210165,TN,put his arms back up,play with toy,talk to camera,grab the back of his chair,roll around,roll around 2379,3939145327,1194,640,360,why is the girl moving her legs in the video,4,39391453277,CW,to talk loudler,dancing with the girl,to turn the frame,to swing the hammock,paddling,paddling 2380,7651639778,1963,640,480,why does the man wearing hoodie hug the man carrying him near the end of the video,2,76516397785,CW,affectionate gesture,pour content out,thank him,to help her reverse,stop baby from going too deep,thank him 2381,3145698830,1763,640,480,what does the baby do after taking out the book from the stocking,3,31456988303,TN,her hand,lie on the bed,bite it,hold the book in his hands,play with fork,hold the book in his hands 2382,8225502382,1468,640,360,why does the man in dark green hit the wall at the start of the video,2,82255023820,CW,pick up the weight,making music,unable to balance,performing,gain people s attention,unable to balance 2383,6691330381,1239,640,360,how does the man grab the boy,4,66913303814,CH,pull boy's bag,his collar,his belt,pulled his shirt,pull boy s hands,pull boy s hands 2384,2809330695,2158,320,240,what happens to the baby after it fails to flip over,4,28093306957,TN,suck thumb,jumping near the adult s knee,climb on man,play with bottle,fall onto his back,fall onto his back 2385,3340340268,1289,640,480,what did the girl in red do after the girl in green removed the bucket in the middle,2,33403402685,TN,gesture to red cloth,hold onto her,walk way,stop riding,remove the paper too,walk way 2386,2614918961,1311,640,480,what does the boy in grey do after standing up near the end of the video,2,26149189617,TN,use chopsticks point,look at the camera,move closer to the basket,walked out of video,blows the boat,move closer to the basket 2387,4024008346,588,640,360,how does the child move the balloon in the video,4,40240083468,CH,smile,walking,between her legs,sideways,kick and push,kick and push 2388,11244289523,552,640,360,why is the baby in pink moving her mouth,2,112442895232,CW,drinking water,to talk to the lady,eating food,to pout,to scream,eating food 2389,4273039295,2214,640,360,why does the boy leave footprints,2,42730392952,CW,step on paint,step on water,walking on snow,skiing,cycling,walking on snow 2390,3462517143,722,640,480,where does the white dog run to after he finishes drinking the water,4,34625171435,TN,smell his hand,laugh,places an object on the floor,running,move away,move away 2391,4273039295,2214,640,360,what does the child do after stopping at a tree,2,42730392959,TN,play guitar and sing,crawl to adult,try to scoop snow out,lick them,pat the chair,try to scoop snow out 2392,5996148663,498,640,362,why did the lady stretched her hand backwards at the end of the video,3,59961486637,CW,scared to fall,talking to the baby,jump higher,take water bottle,man pull her hair backwards,take water bottle 2393,3902997424,779,640,480,what is the colour of the shirt of the lady cycling,3,39029974247,DO,black,light blue,white and red,blue,purple,blue 2394,7149153537,1384,640,360,how did the black skinned man hear the white skinned man clearer,0,71491535377,CH,comes closer,wear spectacles,spectacles,helmet,nod his head up and down,comes closer 2395,2679130168,1504,320,240,how many times did the girl try to stuff her face into the cushion in the beginning of the video,3,26791301685,DC,four,two,three,five,six,five 2396,5116088152,1205,640,360,why did the baby put something in his mouth,4,51160881520,CW,lick the toy,blow balloon,teething,to show his food,eat,eat 2397,11565498775,1216,640,360,why does the man bend down throughout the video,1,115654987751,CW,playing guitar,pushing the rod,swing cloth,fold the sides of cardboard,to push toy car,pushing the rod 2398,3897746373,399,640,480,what did the man do after he supported the girl in pink in the middle of the video,4,38977463735,TN,attract the dog,look down,stand at the side of the stage,stand up,talk to the other girl,talk to the other girl 2399,5875242364,427,640,384,why did the boy reached out to touch the sides of the pool,2,58752423645,CW,wash their hands,to climb up and try again,try to stand,getting in position,try to reach the land,try to stand 2400,7499763064,604,640,360,what does the lady in blue do after the man above started taking a step up at the start,0,74997630640,TN,take step up,open her arms wide,goes to get food,rope,hold other man s hand,take step up 2401,6618792571,2518,640,480,why did the adult pull the toy out when the girl was near the beanbag,0,661879257110,CW,help the baby move,push by the toy cart s wheel,wants to play with it,lost his balance,adjust it,help the baby move 2402,5662041273,2697,640,480,how did the boy control the helicopter,1,56620412730,CH,pull the rope,romote controller,pet it,in his hands,jump around it,romote controller 2403,3194558043,691,640,480,why are there people standing around the dance floor,2,31945580437,CW,wait for their turn to dance,performing,watching performance,start singing,watch the girl dancing,watching performance 2404,4984331176,300,640,480,how did man in white and lady in blue make sure that they complete the activity together,3,49843311762,CH,on same boat,tie their legs together,pull the rope together,run hand in hand,man carries the lady,run hand in hand 2405,3741143820,332,640,480,what could be the relation between the people on the stage,4,37411438203,DO,singing,classmates,snake handling,partners,team mates,team mates 2406,6143391925,1206,640,480,how many babies are there,0,61433919259,DC,one,nine,three,four,six,one 2407,5702201498,335,640,1138,where is the man resting,4,57022014984,DL,grassland,sitting on the rocks,on the bed,workshop,sofa,sofa 2408,9217939684,1660,512,288,why is the baby wearing diapers,0,92179396840,CW,catch excretion,newborn and naked,excited,to keep baby warm,get across the path,catch excretion 2409,7651639778,1963,640,480,why does the man in brown jacket touch the back of the man wearing hoodie in the middle of the video,2,76516397783,CW,pull him down,posing for photo,stablize him,grab the man,adjust his jacket,stablize him 2410,4273039295,2214,640,360,why do the people wear thick clothings outdoors,4,42730392951,CW,army attire,working on snowy ground,skiing,practising fighting,playing on snowy ground,playing on snowy ground 2411,8428551576,2688,640,360,why is the baby pressing the buttons on the item in the middle of the video,3,84285515765,CW,looking at ground,to light up bag,distracted,wants to listen to it,make it move,wants to listen to it 2412,2535384528,378,640,480,what does the man do after finishing observing the ball,0,25353845287,TN,walks away,caps the bottle,hug and dance,laugh,pass the microphone to lady,walks away 2413,11565498775,1216,640,360,how does the man react after the boy goes away,0,1156549877511,TN,walk towards the boy,holds the baby,play with toy,stands up,pick up the present,walk towards the boy 2414,5145526755,1675,640,360,how many people are involved in the video,4,51455267559,DC,one,three,four,five,two,two 2415,3066064005,819,640,480,what do the women do after reaching their correctly assigned seats,0,30660640056,TN,stand around and talk,sit on grass,smiling,singing,put up her finger,stand around and talk 2416,3026084730,2205,640,480,what did the man in the middle do after he put the paper into his pocket at the beginning of the video,2,30260847301,TN,write on book,started singing again,button his blazer,moves his hand away,look back to keyboard,button his blazer 2417,6265968082,1275,640,360,why is the man at the back holding a pair of drumsticks in the middle of the video,3,62659680823,CW,cleaning his drumsticks,taking a photo,practicing his strength,performing the drum,poking the other guitarists,performing the drum 2418,6793786769,1158,640,360,how did the boy show affection to the train at the start of the video,2,67937867692,CH,sits on train,hold the train,kiss the train,pull from behind,pick it up,kiss the train 2419,6024684644,519,640,360,what is the relationship between the woman and the man,3,60246846444,DO,trainer trainee,father and child,colleagues,couple,classmates,couple 2420,2854886555,480,320,240,where is the boy picking the fruit,2,28548865554,DL,head,classroom,in the forest,beach,floor,in the forest 2421,8224492254,972,640,480,why is the baby moving his body,4,82244922547,CW,dancing to the music,play,walking towards the lady,walking in the park,not able to sit properly,not able to sit properly 2422,4603484665,1045,640,480,how does the black and white dog interact with the white dog,2,46034846650,CH,kick it,leash,bite,rolling around,run into it,bite 2423,3151715056,1895,640,480,why are the man on the right and left holding book in their hand,3,31517150560,CW,play game,read the book,to show the elderly couple,it is a prop,performing for an event,it is a prop 2424,2405940242,415,500,375,why is the man also wearing safety gear,2,24059402424,CW,jerseys,demonstrating,safety,rugby,it s sunny,safety 2425,5061117640,1587,568,320,what does the man in grey do after smelling the burger in the middle,0,50611176407,TN,put it down,stand on hind legs,eat it,take the food away,climbs up the wooden plank,put it down 2426,3462517143,722,640,480,how is water added to the container,0,34625171430,CH,water hose,poured by lady,hanging with the rope,bending his knees,being pulled,water hose 2427,4006608424,2697,640,480,why does the boy hold onto the swing after the man falling off it the second time,2,40066084244,CW,take a picture,clean the swings,wants to go again,repair the swings,push a child,wants to go again 2428,6592821115,1800,640,424,why did the girl in pink fell in front of the woman in grey,3,65928211153,CW,tripped down by leash,pushed by boy,part of performance,slippery floor,baby pull the blanket,slippery floor 2429,7330294814,2298,640,360,where is this happening,1,73302948149,DL,horse farm,living room,runway,mountain,zoo,living room 2430,3441428429,2697,640,480,how many skaters are performing on the ice,4,344142842912,DC,eight,nine,six,four,two,two 2431,6277800530,876,640,360,what did the driver do after he rode out of the water,1,62778005303,TN,spit water out,speed up,phone,stop moving,scoop food with a spoon,speed up 2432,9256409422,2312,640,360,how did the girl react when she saw the camera after she turned back,3,92564094225,TN,touch stomach,cry,point at herself again,cover her face,happy,cover her face 2433,2925298951,398,640,480,how many women are posing for the photo,0,29252989516,DC,six,five,two,four,one,six 2434,6168295272,446,640,360,where is this video taken,1,61682952724,DL,park,dance room,room,mountain top,train,dance room 2435,3321261856,855,640,480,why is there a string connecting the toy,4,33212618565,CW,tied to it,to swing,hold the items,flying fox activity,to move the toy,to move the toy 2436,6168716346,949,640,360,how does the boy with red shirt get a crayon in the middle,4,61687163466,CH,standing,happy,with his hands,jacket,from crayon container,from crayon container 2437,2984974097,899,500,375,why did the girl constantly look at the pedal and her legs,2,29849740972,CW,counting distance,tie knots,scared of falling,support for more balance,dancing,scared of falling 2438,4190655097,1290,640,480,how does the person show his affection towards the cat,1,41906550976,CH,chase the tail of the cat,carries and strokes it,placed in a box,rub the cat,hitting each other,carries and strokes it 2439,6786501294,1806,604,1072,why do the people around the boy start clapping after the boy blows out the candle,3,67865012944,CW,light is turned on,part of performance,excited and wants to throw again,celebrate his birthday,fun,celebrate his birthday 2440,2771402761,1460,640,480,where are the people hanging out,2,27714027615,DL,car,lake,swimming pool,outside a building,grassland,swimming pool 2441,6691330381,1239,640,360,what does the boy do as the man in sitting on the chair,0,66913303811,TC,lie on floor with legs up,reading,playing music,feeding the baby,play with baby,lie on floor with legs up 2442,3206694342,1971,640,480,how does the girl in the middle in front remember the dance steps,1,32066943422,CH,holds her hand,look at the tallest girl,watch the screen,turning rounds,man carries her,look at the tallest girl 2443,3121571439,1212,640,428,what do the couple do after moving left and right at the start,4,31215714396,TN,paraglided,start dancing,point to her left,feed baby,release each other,release each other 2444,7088595057,1052,640,480,what did the white sheep do when the black sheep started to move in the middle of the video,1,70885950574,TC,walking,moves back,observe dog,sniffing the ground,follow the sheep,moves back 2445,6727904179,962,640,360,why is it bright outside the window,4,67279041798,CW,outdoor lights are on,firework in the sky,light from other buildings,fire outside the building,day time,day time 2446,4166942239,590,640,480,how did man in the suit talk to man in red,3,41669422393,CH,put hand on man in red s shoulder,on handphone,sit on sofa,standing in front of man in red,lie on beach,standing in front of man in red 2447,3340340268,1289,640,480,what did the girl in green do after removing the bucket in front of the dog,3,33403402687,TN,sit down,pat the baby s back,touch the toy,put bucket back,put hand on table,put bucket back 2448,5987365500,714,480,640,what does the girl do after removing the toy microphone,4,59873655006,TN,make it move,pick it up,put in basket,tickle the baby,laugh,laugh 2449,5913180144,1191,640,480,what does the man in blue socks do when he approach the man in pink at the end,4,59131801443,TC,sitting,run back to position,look up,hold the man s hand,put his arms around the shoulder,put his arms around the shoulder 2450,6046149003,541,640,360,what did the girl in white do after turning around in the middle,0,60461490033,TN,turn back to window,point to someone,blow candle,holds onto a plastic box,takes a photo,turn back to window 2451,8224504302,1290,640,480,why did the man in black take out his spectacles in the middle,3,82245043022,CW,show spectacles to audiences,wipe it,give to man in brown,wear it,blow off the dust,wear it 2452,2782307049,461,640,480,how did the lady in black supported herself as she helped the lady in red at the end,3,27823070497,CH,grab the lady in red,hold on to metal wall,grab the man,grab the rope,hold on to the string,grab the rope 2453,6754608321,1617,272,480,what are the two children doing,0,67546083215,TC,resting,eating,hug lady,playing at arcade,dancing,resting 2454,3124551255,1962,640,474,what does the boy do after putting his hand into the mouth of toy at the start,3,31245512556,TN,sit down,laugh,play with toy,put into his mouth,put hand inside the toy,put into his mouth 2455,6898821807,585,640,480,what did the taller boy wear while playing with the young boy,1,68988218076,DO,life vest,stripped shirt,sport suit,red shirt,jacket,stripped shirt 2456,2731071928,1959,500,375,why is the child not playing with the other toy beside her,3,27310719285,CW,playing,making himself comfortable,wants to move,busy playing guitar,likes to play with it,busy playing guitar 2457,3626788516,337,320,240,why does the woman in brown hold the crocodile with both of her hands,0,36267885161,CW,pose,control boy s movement with his legs,introduce to audience,get water out,spread the water,pose 2458,5237219621,2680,640,360,why does the woman with short hair keep looking at the woman in spectacles at the beginning,4,52372196211,CW,angry,teach the girl,reading from the book,to be in sync,listen to her speak,listen to her speak 2459,5987365500,714,480,640,why does the girl tie a ribbon on her hair,0,59873655003,CW,to look pretty,part of pink costume,check how dress looks on her,to clip fake hair,follow other kids,to look pretty 2460,6786501294,1806,604,1072,why is the boy happy,4,67865012941,CW,playing with boy,surprised camera came nearer to him,woman playing with him,amused by baby,celebrating his birthday,celebrating his birthday 2461,7988210561,320,640,384,why did the baby extend her hand towards the toy,2,79882105611,CW,push the swing,change the toy's colour,touch the toy,adjust buttons on the toy,pose for camera,touch the toy 2462,9531760182,2097,640,480,why does the woman put her hand against the baby s forehead after the baby leans forward,3,95317601822,CW,soothe baby,put on keyboard,carrying her,push baby back,touch her forehead,push baby back 2463,7605329840,635,640,360,how did the girl in stripes release the green balloon,3,76053298405,CH,jumping,throw it up,squeeze the balloon,from the mouth,release the string,from the mouth 2464,2679130168,1504,320,240,why did the girl stuff her face to the cushion throughout the video,1,26791301683,CW,pose for camera,enjoyable,make lady laugh,make man laugh,crying,enjoyable 2465,7442562474,598,640,480,how are the kittens positioned at the start of the video,4,74425624744,DO,jump on toilet,pat the cat,raise her hands upward,lie on its side,laying on the bed,laying on the bed 2466,4744503881,488,640,480,why is the room so dark,0,47445038813,CW,candlelit dinner,was travelling,burnt,for fashion,daylight,candlelit dinner 2467,4765717907,1180,640,480,what did the man do when the boy ran towards him at the start,4,47657179070,TC,walk towards the toy,let him hold string,hold the boy,kiss boy,stretch his hand out,stretch his hand out 2468,8132842161,1105,640,360,what color shirt is the baby wearing,0,81328421616,DO,white,red and black,blue,red,black,white 2469,5854324479,519,640,474,why was the man in dark brown moving his arms,1,58543244791,CW,dancing,hand gestures while talking,exercising,adjusting the microphone stand,adjusting his shirt,hand gestures while talking 2470,4983922034,479,640,480,how does the man interact with the dogs,3,49839220347,CH,caress the dog,rolling around,play biting,kick the snow,rub the dog,kick the snow 2471,2793260225,558,500,375,why did the man fall eventually,3,27932602259,CW,lady pushed him,dsitracted by the guitar,boy tugged him,he slipped,girl tripped him,he slipped 2472,7651639778,1963,640,480,how did the man in brown jacket gives support to the man in blue jack,3,76516397786,CH,cheer for him,hold his shoe,hold the rope,push his back,hold his leg,push his back 2473,6772999108,1467,360,480,what did the boy do when the girl started clapping,3,67729991083,TC,cry,throw toy at her,push her,look at her,run away,look at her 2474,3508407941,513,640,480,how does the walker help the baby learn how to stand,1,35084079413,CH,hold baby by armpits,balance on its legs,walking toy,hold onto side of the chair,with his hands,balance on its legs 2475,6097994550,526,640,360,what did the man lying down do before he rolled over,3,60979945507,TP,lie on his back,touched the baby s back,lie down,stare at camera,stand up,stare at camera 2476,3206694342,1971,640,480,what do the people do after turning around near the middle,2,32066943424,TN,rock climbing,singing,dance,smoke,discussion,dance 2477,4658396458,2160,640,424,why did the baby reach out her 2 hands in front after looking at a toy basket,3,46583964582,CW,want to take toys,baby are excited and playing,to take it out,play with toy,show excitement,play with toy 2478,8594314852,377,640,360,how does the lady in pink wait for the girl in blue,0,85943148528,CH,stood and wait in front,in the car,stand behind her,come close to the baby,stretch out hand,stood and wait in front 2479,4584426085,2697,360,480,how did the puppy react when the person with sandals was kicking it away,2,45844260857,TC,fetch the toy,bite her,retreat back,run around,bite the toy,retreat back 2480,5421648216,1290,640,360,where is this happening,1,54216482167,DL,roadside,farm,mountain,in the river,classroom,farm 2481,2736413196,1617,352,288,why is the man in black looking at the laptop,2,27364131966,CW,looking at boy cut wood,charging laptop,listening to the other man,change direction,focusing on computer,listening to the other man 2482,7001078933,633,640,360,what did the man with white helmet do after he pushed the man with black helmet,1,70010789335,TN,goes away,push the man in black jacket,laugh,arm wrestle,fell on the ground,push the man in black jacket 2483,2793806282,1925,320,240,how did the black dog move itself towards the blue toy,3,279380628211,CH,running on grass,on scooter,jump over,paddle,pulls it with its teeth,paddle 2484,8277866423,829,640,360,what did the brown dog do to get the bone from the black dog at the start,1,82778664239,CH,exchanged it with a lettuce,paw and bark,exchanged it with a ball,chase after it,lick the black dog,paw and bark 2485,4612723694,1681,640,480,why is the man holding a stick on his left hand,0,46127236941,CW,to assist in pinning down snake,playing baseball,show something on his hands,playing golf,pick the puck,to assist in pinning down snake 2486,10127533784,600,640,360,who are the people in the background supporting,1,101275337841,DO,the lady sitting down,other fencers,the elderly man,boy in the middle,woman with purple scarf,other fencers 2487,4336654741,2697,640,480,why does the baby keep moving his mouth up and down in between,3,43366547413,CW,play with it,play,to eat more,babbling,wants to move,babbling 2488,11871253306,1476,512,288,what does the boy in white sleeves do after he seeing the ball running,4,118712533062,TN,wait for teammates,run off,throw to make splash,walk towards the water,chase the ball,chase the ball 2489,8531675050,1620,640,360,what does the man do after the woman walks away from him,1,85316750509,TN,pick up something from ground,eat and speak,shake her hand,speak,stopped the bicycle,eat and speak 2490,2885091387,1065,640,480,why is there a pool of muddy water in the middle of the forest,0,28850913871,CW,flood,boy opens the water pipe,to play fetch,elephant pees there,plant sapling,flood 2491,3972259774,1063,640,480,what did the man in yellow do after giving the box to the lady,3,39722597742,TN,close door,imitate his actions,look at it,kneel,look at book,kneel 2492,5145526755,1675,640,360,why are there two bodies lying on the ground,2,51455267550,CW,to move to the camera,waiting for massage,resting,let baby get off,let the men walk through,resting 2493,8557532213,379,640,360,what sport are the two boys playing,4,85575322130,TC,tennis,baseball,toy car and sliver lid,riding bicycle,football,football 2494,5801184682,1683,640,480,why did the human grab the cat near the middle,2,58011846821,CW,distracted by something else,show affection,shift cat to another place,wants to continue playing catch,curious,shift cat to another place 2495,10109097475,2698,640,360,why is the man signaling the pilot,1,101090974752,CW,unable to talk,give instructions,for others to fix it,capture the moment,role play,give instructions 2496,6244382586,619,640,360,why did the girl in blue look at the girl in yellow initially,0,62443825865,CW,look at her riding,look at her cycling,greeting her,follow her steps,listening to her,look at her riding 2497,5561024834,947,640,360,what does the boy do after getting up from the floor,2,55610248348,TN,sing,stand up,run towards the book shelf,move backwards,tickle him,run towards the book shelf 2498,6025238212,758,640,360,how are the girls feeling at the end,4,60252382125,TC,pull his sleeves down,feel relaxed and happy,engaged,feel accomplished,amused,amused 2499,5070310138,1603,640,480,why did the baby touch the man s face after touching his own ears,4,50703101381,CW,to wake man up,show excitement,prevent dog from licking him,clean man s ears,show where his ears are,show where his ears are 2500,5586394125,1128,640,360,how did the woman in white react when the dog s head approach her,3,55863941257,TN,hug the dog,using the white paper,push it away,stroke its head,walk away,stroke its head 2501,3340340268,1289,640,480,what does the girl in red hold in her hands as she stood by the wall,1,33403402689,TC,say something to the girl,paper and jacekt,walk away,singing,explaining about the flower,paper and jacekt 2502,3375218204,2241,640,480,how many people are involved in the video,0,337521820413,DC,three,five,two,six,one,three 2503,3145698830,1763,640,480,why was the man holding up the stocking at the start,2,31456988309,CW,lecturing,singing gesture,let baby take out the book,finished demonstrating,moving the baby forward,let baby take out the book 2504,8211075660,1621,480,360,how many men are filmed,0,82110756602,DC,three,six,two,one,four,three 2505,3078294001,335,640,480,why does the man in white put his finger on his face near the end,0,30782940010,CW,hand gesture while talking,smell his finger,tell the lady to keep quiet,pose for the camera,made a mistake,hand gesture while talking 2506,4707679105,965,640,480,why does the boy sit inside the man s lap,0,47076791050,CW,reading book,to eat food,play with the boy,to produce music,someone digging nose for him,reading book 2507,9208803675,582,640,360,why did the half naked man reach out his hands towards the lady at the middle swing,4,92088036750,CW,encourage baby to dance,pushed by adult,dropped into the water,to give him a push,want to do a stunt,want to do a stunt 2508,3524939594,436,320,240,what does the man in white sitting on the cart do when the cart starts moving,3,35249395944,TC,look at the girl playing,walks away,move towards the woman,hold friend s shoulders,put on table at the back,hold friend s shoulders 2509,3388598772,335,640,480,why is the man in blue touching the woman in black,4,33885987720,CW,to push her,to attack her,to pass her something,to unbuckle the lady,to hug her,to hug her 2510,5047408177,648,320,240,why does the woman straighten the clothes before folding them,2,50474081774,CW,pack neatly,flatten the hair,so that they will not be crumpled,helping him,pull it straight down,so that they will not be crumpled 2511,4367056464,1162,640,360,how did the man in brown feel about the girls performance in front of the group,0,43670564645,TC,amused,blessed,confused but calm,find it funny,pleased,amused 2512,5229476012,810,640,480,how did the lady help the boy to keep afloat,2,52294760126,CH,support baby s head with hand,holds leash and follows dog,holding the leg,hold the float,hold onto boy,holding the leg 2513,8254300526,1104,640,1138,what was the pole for,1,82543005260,DO,suona,balance,public speaking event,birthday celebration,cameraman,balance 2514,4164771889,503,640,480,what did the boy in red pants do after changing his position,4,41647718892,TN,push backwards,shakes his head,push his bicycle up,jump into water,play with sand,play with sand 2515,8224492254,972,640,480,where is this video taken,0,82244922546,DL,home,lake side,backyard,mountain areas,studio,home 2516,5129152550,2697,640,480,why did the man in checkered shirt turned his head back at the end,2,51291525504,CW,playing game on mobile,looking at dog,distracted,shaking his head,protecting face from dog sniffing,distracted 2517,5877508141,583,640,480,how did the man signal for the boy to get down from the slide,4,58775081413,CH,adjust his cap,walk away,lie on the floor,push the boy,raise his hands,raise his hands 2518,5064681723,602,640,480,why is the lady standing at the road,0,50646817237,CW,watch deers,leading the horse,feed rabbit,play the music,take a closer look,watch deers 2519,8811725760,631,640,360,why did the lady put her face on the baby s shoulder in the middle of the video,4,88117257604,CW,resting,to watch the ball,to get close to baby,show care for the baby,pose,pose 2520,5406108447,1337,640,360,how does the girl interact with the towel,0,54061084471,CH,moves the towel with hands,using a bucket,follow a routine,wipe the table,to touch the camera,moves the towel with hands 2521,3469864014,867,320,240,why did the cats move their faces near the board,2,34698640142,CW,attracted by ball,look at mirror,smell food curious,to drink milk,avoid person s hands from petting it,smell food curious 2522,5833145209,510,640,480,where is this video taken,3,58331452097,DL,outdoors,snow mountain,kitchen,garden,computer table,garden 2523,6480018109,709,640,360,what is the nurse with hair tied up pushing behind the patient,2,64800181094,DO,help them move feet as trained,parent offspring,machines,cake,accordion,machines 2524,2495861393,1499,500,283,why does the girl display fork to the woman near the end,3,24958613933,CW,for baby to feed herself,eat food,gesture,learning how to use it,speak to her,learning how to use it 2525,4419096437,1584,640,360,what is the cameraman doing,0,44190964372,TC,putting cat to sleep,feeding cat,washing cat,caress baby,cooking,putting cat to sleep 2526,7508439506,765,640,480,how did the baby reacted when the boy put his hands on the baby s stomach,3,75084395069,TC,yawns,sit up,touch his face,laugh,bite the boy s hands,laugh 2527,3233088823,462,640,480,why is the bulldozer not moving,2,32330888235,CW,traditional costume,eating,working,feeling sleepy,to keep cool,working 2528,3784543730,852,640,480,how is the person in black moving his legs,2,37845437303,CH,skating,kicking,step on pedal,side by side,hopping,step on pedal 2529,4138579400,601,640,480,why did the boy move his right arm back and forth,4,41385794004,CW,stationary to mark the book,kid messing around,dancing,play with the wool on ground,to put objects in the cup,to put objects in the cup 2530,5681946487,848,320,240,why is the woman sitting down,2,56819464870,CW,resting,watch television,wash the boy,eating,wash clothes,wash the boy 2531,6617533993,1384,640,1138,why did the girl hold the top part of the toy without moving,0,66175339938,CW,playing,cleaning the toy,watch the toy moves,take a picture,remove the wrappers,playing 2532,3526597179,807,640,360,what did the lady in yellow do as she stood near the stairs at the end of the video,3,35265971793,TC,turn around,smile and look back at boys,hold hands of lady in purple,hold on the handles of the stairs,closes the lid,hold on the handles of the stairs 2533,2793806282,1925,320,240,how did the lady in blue ensure the black dog does not drown,4,279380628210,CH,hold front body,look at her,keeps moving her hand away,using her finger,hold onto the vest,hold onto the vest 2534,3131380536,2007,640,480,what is the colour of the spoon,2,31313805369,DO,orange,light brown,red,light blue,pink,red 2535,11849091804,1296,640,360,what is the relationship between the kids and lady,1,118490918043,DO,teacher student,parent offspring,friends,teacher and student,mother and child,parent offspring 2536,3155382178,858,640,480,how does the woman react after the man kicks the ball,4,31553821788,TN,bowls again,smile,look at ball,raised her hand,kick the man playfully,kick the man playfully 2537,6163877860,2160,640,360,what does the baby do after she accidentally kicks something off the sofa,2,61638778604,TN,touch adult s hand,tried to get up again,look over the sofa,pick back up,move his arms,look over the sofa 2538,2717347132,818,640,480,is the baby relaxed in the scene,3,27173471327,DO,pacifier,top part,stroller,yes,no,yes 2539,9082180631,406,640,360,why is there a string attached to the boy in green,0,90821806318,CW,for boy to pull sled,safety harness,help boy maintain balance,playing tug of war,for performance,for boy to pull sled 2540,4372494989,2575,640,480,why does the man in red hold the child s hand,0,43724949890,CW,teach the baby s prayers,tell girl to lift the bucket,to balance child,prevent from child from falling,take photo with child,teach the baby s prayers 2541,10109097475,2698,640,360,why did the man went to other side and again came back,4,101090974751,CW,balance better,play guitar and sing,talk to each other,enjoying the music,check the runway,check the runway 2542,8990144134,457,320,240,what was the cat doing before it saw the cat,2,89901441345,TP,stand still and walk away,move to other cat,lying down,licking an object,touch it,lying down 2543,4838145161,1921,640,480,why is there water flowing from the tap,2,48381451610,CW,to prevent babies from drowning,pipe is open,for cat to drink,raining,soapy,for cat to drink 2544,4166942239,590,640,480,what is the relation between the man in red and the man in the suit,4,41669422395,DO,team members,blue,performers,security personnel,friends,friends 2545,11503803033,623,640,360,how many people are skiing,1,115038030334,DC,four,three,five,one,two,three 2546,7533369046,803,640,360,how did the baby ensure that she do not dirty her clothes,3,75333690468,CH,wash her clothes,push toys away from baby,wear jacket,wear bib,hold her,wear bib 2547,2877270840,780,640,480,how did the man feel after tasting the wine,3,28772708403,TN,weired,excited,terrible,good,sad,good 2548,6754608321,1617,272,480,why did the girl looked into the camera in the middle of the video,4,67546083218,CW,walk towards dog,dance to the camera,cycling towards camera,showing her blanket,noticed the camera,noticed the camera 2549,4650556666,567,640,480,how did the lady prevent the child from falling,0,46505566668,CH,hold child s hands,puts on table,carried in arms,carried on her back,put in pram,hold child s hands 2550,7492398760,2697,640,360,why did the man swing the baby girl around,1,74923987600,CW,playing with microphone,playing with baby,playing with dog,instructed by elderly,push the baby,playing with baby 2551,6244675392,900,480,640,what did the baby do after the person hand her the food at the beginning of the video,3,62446753926,TN,eats the food,put on sofa,poke dough,to feed the cat,move spoon slowly towards baby,to feed the cat 2552,4013751996,764,320,240,how did the girl feel after riding on her toy bicycle,1,40137519961,TN,look towards the boy,happy,pick up another toy,get onto bike,support bicycle from falling,happy 2553,2679328607,1047,320,240,how does the girl react after the boy passes the toy to her near the end,3,267932860714,TN,he touch her cheeks,rub baby s face with a cloth,watch him,cry,keep the toy aside,cry 2554,7771650716,1805,640,360,why did the man in white bend dow on the road at the beginning,1,77716507167,CW,attack white dog from behind,to release the dog,to pet dog,chase dog,compliment dog and show affection,to release the dog 2555,11871253306,1476,512,288,why did the boy in green run after the ball near the end,1,1187125330610,CW,crawl to lady,pick up and throw it,to move it away,to retrieve ball quickly,play catch,pick up and throw it 2556,4518113460,1867,640,480,why did chair shift at the end of the video,0,45181134602,CW,baby push it,lady push it,earthquake,dog pulling it,waiter arranged,baby push it 2557,4147398280,1716,480,360,why did the boy smile to the camera after trying for quite some time to solve the cube,2,41473982804,CW,feels that it is fun sliding,happy to play,shy,gets the note wrong,having fun,shy 2558,7605329840,635,640,360,why did the girl in back stand up near the end,3,76053298406,CW,listen to man,leave the room,to turn on television,to blow somewhere else,playing with dog,to blow somewhere else 2559,10127533784,600,640,360,what do the two men in white hold in their hands while stepping towards each other,4,101275337844,TC,towel,microphone,glass,wine cup,sword,sword 2560,5056964274,924,640,480,how did the person helped the baby to drink from the drink,2,50569642744,CH,unscrew the bottle cap,tilt the glass cup,direct the straw,put bottle to mouth,with spoon,direct the straw 2561,11871253306,1476,512,288,why did the men pass a small item to the child in the beginning,2,118712533061,CW,to kick ball,lost balance,play ball with child,to throw it,make child happy,play ball with child 2562,9873067604,920,640,360,why did the boy moved his body upwards in the middle,1,98730676043,CW,pick up ball,look in front,touch sand water,playing game,to get the door,look in front 2563,6233408665,2246,640,360,how did the girl in grey signal to the lady in pink to come forward,1,62334086659,CH,bow,use clapperboard,remove wrapping paper,crawl,kiss hand,use clapperboard 2564,3897746373,399,640,480,what are the people doing in the video,3,38977463730,TC,trekking,taking a break,playing guitars,swimming,performing stunts,swimming 2565,10607095936,1080,640,360,what does the lady do after the man in red vest finishes talking at the end,3,106070959369,TN,happy,laugh,look left and right,pass microphone to red cape man,move away,pass microphone to red cape man 2566,8403741210,1327,640,360,why did the man put his hands on his face the whole time,1,84037412103,CW,show affection,tired,explaining something,keep his balance,taking notes,tired 2567,7001078933,633,640,360,how do the men protect their head from injuries,4,70010789334,DO,wear bandana,with bandage,hug their heads,put on cushion,wear helmet,wear helmet 2568,6860322796,1285,640,360,how did the lady keep herself warm,0,68603227962,DO,jacket,thick winter clothing,jacket gloves long pants,put into her pocket,put on blanket,jacket 2569,3814690167,453,640,480,what are the people doing in this video,4,38146901677,TC,family watching a girl dance,birthday celebration,cooking something,speech,practice performing,practice performing 2570,5833145209,510,640,480,how did the black bird move away from the pot towards the end of video,0,58331452090,CH,fly,walks away,runs away,someone carried the bird,jump down,fly 2571,3935853204,943,640,480,why did the lady in black then touch the screen with both her hands,4,39358532041,CW,express her words,playing with dog,projector lighting,control the screen,need both fingers to zoom,need both fingers to zoom 2572,6806999702,2697,640,360,what did the girl do to the dog when the dog stood beside the man,3,680699970211,TC,singing to the dog,stop the dog,pulls the leash towards her,touch the dog,try to lick dog's face,touch the dog 2573,6265968082,1275,640,360,where are the people performing,3,62659680827,DL,concert hall,living room,stairs,stage,park,stage 2574,3843551232,696,480,360,why did the black puppy keep looking at the big dog s tail,3,38435512326,CW,lick black dog s fur,observe it,play,interested in playing with,attack black dog,interested in playing with 2575,3455926688,549,640,360,how did the man tried to control the kite,1,34559266884,CH,with their handphone,move hands,with his legs,using machines,pushing,move hands 2576,3981865268,1109,640,480,how did the man control his music,1,39818652683,CH,strum guitars,computer,microphone,presses the button,moving the strings,computer 2577,6542914065,300,640,360,what does the man in grey do after looking at the other three people for a while in the middle,1,65429140654,TN,pointing on his palm,throw ball,shakes head,move to the side,look at him and listen,throw ball 2578,3741143820,332,640,480,what did the man wearing the cape do after the man in white shows his stick,4,37411438206,TN,tries to put out fire,drink something,walk away,interested,talks to audience,talks to audience 2579,5679866364,750,640,480,why are the people walking naked,0,56798663640,CW,swimsuit,eating,diving into water,surfing attire,bathing,swimsuit 2580,3851961428,2062,640,480,what did the man in red do after he saw the boy in blue struggle,3,38519614282,TN,get up,slap his hand on the floor,gets up and wipe his hands,help him,walk off,help him 2581,12392885583,929,640,480,why did the man in long sleeves hold out his arms,0,123928855835,CW,to give pacifier to baby,prevent from falling,to give baby food,keep the baby sleeping,hold for better support,to give pacifier to baby 2582,8189958994,1869,640,360,why did the lady stopped walking the dog in the beginning of the video,2,81899589944,CW,ask for kiss on nose,distracted,pet the dog,show affection,talk to her,pet the dog 2583,7308042410,1019,640,1138,what did the girl do after she smiled in the middle of the video,4,73080424105,TN,smiles at the baby,touch her eyes,put her head on him,push green obstacle away,look around,look around 2584,2669452260,456,640,480,why are there people standing under the canopy,1,26694522605,CW,discussing,raining outside,facilitate boarding,selling fruits,watching fireworks,raining outside 2585,3869005094,300,640,480,why did the man stop after he carried out an action,2,38690050942,CW,wait for teach to check,remember to wear shoes,wait for opponent to react,dog tugging on his pants,the other man screamed at him to stop,wait for opponent to react 2586,4276006683,799,640,480,why does the cat try to hold the person s hand with its paws,4,42760066831,CW,to catch his hand,play fighting,to catch the laser,swat water from face,to bite his hand,to bite his hand 2587,2793806282,1925,320,240,what did the black dog do after the man threw the blue toy,2,27938062829,TN,touch its face,put elbow up,swim after it,jump up and down,blocks the ball,swim after it 2588,5056964274,924,640,480,how did the baby drink,3,50569642742,CH,lean the bottle,use spoon,use glass cup,with straw,pour into smaller cup,with straw 2589,2697261300,1392,640,480,what does the lady in grey do as she stands at the porch,4,26972613003,TC,umbrella,paper and jacekt,sitting around table,excited,take picture,take picture 2590,9304738817,345,320,240,why do the lady bend down all the time,2,93047388170,CW,hold the baby,rubish not cleared,push the swing,playground,trekking,push the swing 2591,6592821115,1800,640,424,why did the woman try to remove baby s grip off her finger,4,65928211151,CW,baby was hurting her,to push baby,to get up,to feed baby more food,to make baby stand independently,to make baby stand independently 2592,6136926089,1522,480,640,where is the baby hanging out,4,61369260890,DL,grassland,on stage,along the road,living room,play area,play area 2593,8224492254,972,640,480,why did the baby open his mouth when the adult put a finger near his mouth,0,82244922543,CW,to bite,clean mouth,gesture,to play,lick the favour on her finger,to bite 2594,6727904179,962,640,360,why did the lady point her finger in a direction,1,67279041792,CW,point to camera,to show boy where to go,dance move,demonstrating an exercise,taking video,to show boy where to go 2595,4249756405,774,320,240,why was the man standing,2,42497564051,CW,hugging the lady,leaning against the wal,playing guitar,watching soccer match,clearing dead leaves,playing guitar 2596,4925211209,768,640,360,how many people are in the video,3,49252112097,DC,nine,five,seven,one,six,one 2597,4244817395,1683,640,480,what does the boy do after the lady point at the cupboard underneath him near the end,2,424481739510,TN,lick and chew,eat soup,take out a basket,clap,look at camera,take out a basket 2598,3861485381,2686,640,480,how did the leopards move around,2,38614853815,CH,roll around,someone carried them,crawl forward,in a vehicle,swim,crawl forward 2599,4179163342,2172,640,480,why did the children start to jump around in the middle of the video,2,41791633422,CW,bouncing castle,look at cameraman,excited,there is dolphins,santa came in,excited 2600,8493226484,968,640,1138,what does the lady do after the boy attempts to lie down in the middle,2,84932264845,TN,uncover eyes too,smiling,lean forward and pull him,tickle her,get up and move around,lean forward and pull him 2601,3508407941,513,640,480,how does the baby make the walker move,4,35084079410,CH,shift to different position,supported by adult,crawls and walks,move his legs,bouncing up and down,bouncing up and down 2602,11587211476,1470,640,360,why did the dog stop for a while on a bench,3,115872114762,CW,scratch itself,pee,searching for something,to rest,to sniff the rubbish,to rest 2603,6096998186,671,640,360,what did the blonde woman do after the lady in black clapped her hands,1,60969981864,TN,carry the baby,put down the souvenirs,hug girl in pink,clap,jump,put down the souvenirs 2604,2697214342,1498,640,480,why does the man in white have to hold onto the side of the wood while the man in green bending it,1,26972143422,CW,break the wood,help adjust the wood,pick up mud,waiting for their turn,not dirty his hands,help adjust the wood 2605,4219909195,1003,640,480,why did the man pat the pillow,1,42199091952,CW,ask dog come over,ask girl to sit down,remove the dust,ask lady to sit,pillow fight,ask girl to sit down 2606,6168716346,949,640,360,what is the boy with red shirt doing while the boy with jacket talking,3,61687163460,TC,nervous,looking around,grab the food,choosing crayon to colour drawing,on his waist,choosing crayon to colour drawing 2607,3107742409,1604,500,280,why does the man bend forward at the start,4,31077424090,CW,adjusting music,to move the tricycle,put tray of cookies inside,he is excited,get close to the baby,get close to the baby 2608,6272786009,535,640,384,where is the event taking place,2,62727860096,DL,forest,park,river,restaurant,garden,river 2609,8811725760,631,640,360,why did the lady and the girl stayed at a position for a while in the middle of the video,2,88117257605,CW,take photos,boy was there,pose,walk towards dog,pick up the mask,pose 2610,11849091804,1296,640,360,what is the kid with red and blue shirt doing,3,118490918040,TC,relaxed and happu,photo taking,happy and excited,open a present,playing with toys,open a present 2611,5766018720,1830,640,426,how does the dog toy get the baby s attenton at the beginning of the video,4,57660187200,CH,lying on stomach,pat the dog,push ball with paw,move her head towards the dog,shake a lot,shake a lot 2612,2669452260,456,640,480,how many people walk past the man,1,26694522601,DC,three,two,seven,thirteen,four,two 2613,8252088130,426,640,360,what does the bird do while on the lady s hand,3,82520881302,TC,walks to the boy,pottery,holding fruit,sit and look around,bend down,sit and look around 2614,3821781616,745,640,480,why did the man put his two hands together after nodding his head,3,38217816161,CW,posing for camera,to the tune of the music,playing a game,gesturing,replying to someone,gesturing 2615,6592821115,1800,640,424,how did the woman in grey feel when the baby in polkadot walked into her arms,4,65928211154,TC,annoyed,nervous,comforted,scared,happy,happy 2616,2705374471,1556,320,240,why did the older kid want to throw the shoe up and down,4,27053744710,CW,wanted to exit boot,stabilise himself,grab the ball,passionate,catch baby s attention,catch baby s attention 2617,7987845241,1511,640,1138,why is the person at the back holding the dog in the middle of the video,2,79878452412,CW,playing fetch,play with toy,ensure dog do nt move while injecting,trying to move it,washing the dog,ensure dog do nt move while injecting 2618,5766018720,1830,640,426,why did the baby put the guitar away at the end of the video,0,57660187208,CW,found another toy to play with,imbalanced,lost interest,crying,dropped his toy,found another toy to play with 2619,4698622422,1252,640,480,why did the woman go to the boy,3,46986224226,CW,to speak to him,give him a racket,gave him tissues,hold boy up,adjust his shoes,hold boy up 2620,7442562474,598,640,480,how did the brown cat hold onto the white cat nearing the end,0,74425624747,CH,hold white cat s head,bite white cat s neck,hold collar,hold white cat tail,hold leash,hold white cat s head 2621,6160414832,1831,640,480,why are the people sitting around the table throughout the video,4,61604148329,CW,talking,waiting for their turn to perform,having lunch,listening to speaker,playing cards,playing cards 2622,2971556305,1459,640,480,how does the lady in blue show them around the house,0,29715563059,CH,walks around in front,running her feet on ground,raise her glass and smile,skipping,follow behind,walks around in front 2623,3198533789,690,640,362,how do the two men working position their backs,3,31985337895,DO,on each other,shirtless,stand in a circle,bend,lie on ground,bend 2624,10727696143,1821,640,480,what does the lady in red do after moving away from the table,0,107276961438,TN,put glass cups away,walk around girl in pink,turn to leave too,walk away,watch the lady walk away,put glass cups away 2625,3380344744,1485,640,480,how did the lady handle the baby,0,33803447444,CH,clean him gently,shake baby with leg,strap baby to body,kiss the baby on forehead,holds his hands,clean him gently 2626,5129152550,2697,640,480,why does a woman walks past a man who is speaking to the crowd,4,51291525501,CW,speaking to an audience,performing together,exploring the house,hand gestures,stranger passing by,stranger passing by 2627,4635309062,2076,640,480,why does the man in black push the plate near the end,4,46353090629,CW,wants more food,suggest taking the food away,take food to table,make boy hit the plate,make space for other dish,make space for other dish 2628,4036955771,2697,640,480,what does the man on the extrme right do after he stops playing his trumpet briefly,3,40369557713,TN,bend down to look underneath,sing into mic,walked to the corner,look forward,pass phone back to woman,look forward 2629,8547321641,327,640,362,where are the people,2,85473216415,DL,bus,living room,beach,indoors,kitchen,beach 2630,4372494989,2575,640,480,why does the man in red bow,2,43724949891,CW,thank audience,to grab the food,prayer s gesture,give space to the girl,poke crocodile,prayer s gesture 2631,6988748711,1512,640,480,what does the woman in blue do after spreading out the cloth,1,69887487115,TN,put flower back into girl s hands,walks on it,look at her,play piano,play with kids,walks on it 2632,3626788516,337,320,240,why does the woman in brown pass her camera out at the beginning of the video,3,36267885160,CW,to better plant the sapling,finish playing,to read the cards,to hold the animal,she asked for it,to hold the animal 2633,11503803033,623,640,360,how do the skiiers change the direction of skiing,0,115038030336,CH,bend their knees,using the two sticks,jumps,by running up,walking,bend their knees 2634,3049351381,1542,640,480,why is the kid yawning,4,30493513813,CW,uncomfortable,fed milk,dancing to something,natural reaction to dust,sleepy,sleepy 2635,7223854838,413,640,360,why does the child in grey keep taking his hands on and off the glass,0,72238548383,CW,distracted,adjust height of the glas,the glass was hot,playing with the glass,cleans the glass,distracted 2636,11565498775,1216,640,360,what did the man do after he took the boy s hand,3,115654987756,TN,touch man s hoodie,shakes the toy,shield himself,guide boy to lift handle,hi-five,guide boy to lift handle 2637,2547885226,406,640,480,why does the kid swing his leg towards the end,0,25478852261,CW,remove the sand,to swing chair,strike a pose,play with elmo,excited,remove the sand 2638,3502722122,425,480,640,why does the boy lean sideway at the end of the video,2,35027221223,CW,keep his radio,talking to the lady,keep the book on the side,watch the performance,prepare to throw book,keep the book on the side 2639,5902452647,812,640,480,why did the woman bend down while holding a camera,1,59024526473,CW,keep balance,correct angle,talk to camera,to catch rolling fallen bapple,talk to girl at same height,correct angle 2640,10779838974,890,640,1128,why do the two girls use both hands to hold the rake,2,107798389740,CW,prevent it from falling,pose with it,push the rake,to climb on it,to clean it,push the rake 2641,4838113006,2697,640,360,what objects are placed on the tables,4,48381130069,DO,foods,microphones,dishes,fruits,bells,bells 2642,4087013668,1442,640,474,how did the white shirt woman react after the boy throw the food back into the bowl,3,40870136681,TN,taking a photo of boy,hold the cupcake,not willing to share,laugh,pat the boy,laugh 2643,4164771889,503,640,480,what is the boy in pink wearing around his wrist while burying the boy,2,41647718890,TC,hold each other,move backwards,bracelet,pat baby s tummy,get up and dance,bracelet 2644,7416295940,2388,640,384,what does the baby do after the man puts some sand on the toy car,4,74162959402,TN,throw the toy car,grab more sand,push the car,hug the man,pour the sand out of car,pour the sand out of car 2645,4838113006,2697,640,360,why is the lady in grey shifting the bells from one table to another,4,48381130060,CW,making funny faces,pass to boy to play,singing a birthday song,tie knots,performing,performing 2646,2834146886,1881,496,370,how does the black dog show that it is afraid of the bigger white dog,2,28341468865,CH,stares at him,bites him,walks away from it,look at the dog,throw a ball to distract it,walks away from it 2647,7999756100,618,640,360,how does the man in white interact with his red bag near the end,2,79997561006,CH,carried on his back,give to lady in red,lay it down,swing up and down,raise both his hands,lay it down 2648,7001078933,633,640,360,why did the white helmet man reach out his hands when running towards the black helmet man,0,70010789332,CW,push the black helmet man,catch the ball,hug the man,dancing with the man,pass ball to the man,push the black helmet man 2649,5907839036,2697,640,360,why was the bald man looking at his camera at the beginning of video,4,59078390360,CW,look at his keychain,trying to fix camera,filming the interview,wipe dust from camera,look at photos,look at photos 2650,5658916668,660,640,1138,how did the man land on the ground,4,56589166687,CH,jump down,someone pushed him,dog nudged him,he spun and fell,slipped,slipped 2651,7492398760,2697,640,360,why did the girl fall down when walking backwards near the end of the video,0,74923987605,CW,lost balance,pushed by dog,pulled by the lady,playing with boy,tripped over can,lost balance 2652,2679130168,1504,320,240,where is this video taken,2,26791301684,DL,lake side,mountain areas,bedroom,sheltered area,jungle,bedroom 2653,4276006683,799,640,480,what is the response of the cat as the person closes his palm at the end,2,42760066837,TC,look into the toilet bowl,turns over,bite it,spoon,grab his hand,bite it 2654,2782658657,787,640,360,why does the girl in white look down at the feet at the beginning of the video,0,27826586570,CW,ready to run,clean her mouth,pull rope with strength,arrange their standing,pedalling,ready to run 2655,3935853204,943,640,480,why did the lady touch the screen,3,39358532040,CW,turn on the screen,check for dust,mimicking her child s behavior,screen is interactive by touch,wipe it,screen is interactive by touch 2656,7059877301,918,640,480,what did the light brown dog do after it finished drinking water,0,70598773015,TN,came out of bucket,crawled to the toy,run,jump out,pour on kid,came out of bucket 2657,9531760182,2097,640,480,what did the lady do after she put the bowl onto the table at the beginning of the table,1,953176018211,TN,dancing,looked at baby,use her phone,feed the man,moves around,looked at baby 2658,4164771889,503,640,480,why does the boy in red pants change his position,3,41647718896,CW,teething,to wear his red jacket,to block the wind,to put more sand at once,he is more advanced,to put more sand at once 2659,9208803675,582,640,360,what does the lady in green do after jumping down from the platform at the start,4,92088036754,TN,play with it,lift her feet,talk to the people,caught her,swing,swing 2660,9217939684,1660,512,288,why does the woman wearing a grey singlet hold the baby up at the start of the video,0,92179396841,CW,help baby walk,playing catch,adjust baby position,posing with baby,lay her down and play,help baby walk 2661,3469864014,867,320,240,why did the adult bend down after moving the board away from the table,0,34698640140,CW,show cat the fish,adjust it,avoid screen,so baby can hold it,to move away from the lady,show cat the fish 2662,4970148391,732,640,480,where is the boy hanging out,1,49701483916,DL,indoor,field,on a platform,restaurant,beach,field 2663,4488066715,2638,320,240,how does the baby react when the man tries to control the whisk,1,44880667157,TC,raise his hands,does not let man do it,hi-five,move his mouth,hold the man s hand,does not let man do it 2664,7531285946,1170,640,360,why does the woman climb up the ladder at the start of the video,2,75312859461,CW,so that girl can see better,wandering around the kitchen,get to the other side,make puppet lively,take out plates from shelves,get to the other side 2665,9213637099,1539,640,360,why is the the girl in black being taught how to stand up and do the stunt,0,92136370992,CW,to learn a new skill,dancing,spectating performance,stay clear of the hula hoop,give rhythm and beat,to learn a new skill 2666,5854324479,519,640,474,why is the man in dark brown smiling at the end of the video,4,58543244793,CW,said something funny,tie the lady s shoelaces,sign of respect,enjoy dancing,finish talking,finish talking 2667,4136617240,2697,480,352,why does the girl move her body in front of the television,3,41366172400,CW,passing to man to help,watch something,watch tv,dancing,mimicking the tv show,dancing 2668,4674481985,734,640,480,where is this place,2,46744819858,DL,outdoors,dirt field,waterfall,playground,stage,waterfall 2669,5138093706,931,640,480,what did the baby do after he turned to look at the handles of the stairs,2,51380937067,TN,lick them,plays with another toy,stretch hand out,happy,crawl towards camera,stretch hand out 2670,9217939684,1660,512,288,how does the baby get to the girl in pink near the end,4,921793968412,CH,cycle,roll,jump,man carried her there,crawl,crawl 2671,6480018109,709,640,360,why is there a machine following the man as he walks out of the room,3,64800181093,CW,playing,finished controlling the helicopter,to film process of meeting people,for supporting his health,repeat the route again,for supporting his health 2672,3145698830,1763,640,480,what does the man do after taking the book from the boy,4,31456988307,TN,walk towards the boy,turn behind to look,unlock door,help boy get down,read the book for the baby,read the book for the baby 2673,8547321641,327,640,362,why does the baby go so near to the camera at the beginning of the video,2,85473216413,CW,does nt like the taste at first,look at dog,excited,distracted,dancing,excited 2674,3372023610,1017,640,480,how many people are there in the video,3,337202361010,DC,seven,one,two,four,six,four 2675,7771650716,1805,640,360,how did the man in white control the movement of the grey dog,4,77716507165,CH,shout at the dog,put hands on its neck,carry it in arms,hold its legs,using leash,using leash 2676,4765564263,420,640,480,where are the children playing water at,0,47655642637,DL,backyard,living area,water park,river,office,backyard 2677,2717347132,818,640,480,why does the lady seems so cautious about the kid,1,27173471323,CW,scared the baby will be hungry,scared the baby will fall,scared the baby will be bored,scared the baby will be angry,scared the baby will be tired,scared the baby will fall 2678,2940373590,306,640,480,what is the relationship between the two people dancing,4,29403735905,DO,work mates,team mates,team members,girl in braids,couple,couple 2679,2503404966,840,640,480,why is the boy holding on to the handles of the toy,0,25034049661,CW,steer it,cleaning it,dismantle it,paint it green,polish it,steer it 2680,2971556305,1459,640,480,how did the lady in navy get her message across effectively,0,29715563054,CH,many hand gestures to describe something,raise her hand,speak with microphone,make eye contact,looking at the man throughout,many hand gestures to describe something 2681,3046900922,539,640,480,why does the man swing the child into the pile of leaves,4,30469009221,CW,performing,push the baby,did not stand well,wants to go away,playing with him,playing with him 2682,5889898795,2697,640,360,why is there a woman in white standing next to the people going down the zipline,0,58898987952,CW,for support,pose,not very active,pack things in,for balancing the microphone,for support 2683,3359075894,414,640,480,why does the man in grey swing the bat a few times before the ball is thrown,0,33590758940,CW,warm up,position ball,waiting for him to throw,resting,end of practice,warm up 2684,5889898795,2697,640,360,how do the people wanting to zipline position themselves for the lady in white to secure them,0,58898987959,DO,facing forward,standing at the back,nodding her head,use recycling bag,move slowly,facing forward 2685,4949582792,2639,640,360,how was the pram made to move at the end,1,49495827928,CH,pushed by man,rocked by girl,crawl,lady in red pulles it,look all around the rubik once,rocked by girl 2686,8208035645,428,640,360,why does the boy wear helmet,0,82080356456,CW,cycling,skating,working at great height,performing on stage,skiing,cycling 2687,7164729910,656,640,360,why is the boy looking at the back at the end of the video,2,71647299105,CW,wants to eat,play with baby,checking not to bump the sofa,check the tent,trying ot open bottle,checking not to bump the sofa 2688,5840177726,377,640,480,why is there a flash when the man in brown jump on his bike,1,58401777262,CW,stunt,camera taking photos,stabilise the bikes,converse with each other,stabilise bicycles,camera taking photos 2689,3719793245,342,640,480,how many people are there in the video,3,37197932456,DC,six,four,five,two,thirteen,two 2690,9528990839,427,640,480,why did the man sitting in the driver seat turn behind and point before turning the steering wheel,1,95289908390,CW,take photo,talk to the passenger,checking his surrounding,to move into the parking lot,lookout for people,talk to the passenger 2691,3218498932,892,640,480,what does the boy in red do after playing with his phone for a while in the middle,3,32184989326,TN,put at the side,clap,look backwards at them,look at tv,play with her,look at tv 2692,3175315183,2513,640,480,how many toys are hang above the baby,2,31753151834,DC,three,two,five,one,four,five 2693,3145698830,1763,640,480,what does the boy do after the man returned the book to the boy,4,31456988308,TN,picks it up,look at camera,shake hands,toy glasses drop,gets up and walks away,gets up and walks away 2694,2604394962,1078,640,480,why did the man look at the toy in front of him before standing up,3,26043949620,CW,talking to children,ensure toy do not fall,oversees the kids,see how to play with it,show toy to children,see how to play with it 2695,6143391925,1206,640,480,where are the woman and baby at,3,61433919258,DL,her crib,chair,on the bus,house,kitchen,house 2696,4083875373,1621,360,480,why did the girl jump and dance around when watching the show,0,40838753730,CW,excited by the music,make balloon fly,for fun,having fun,finds person in blue funny,excited by the music 2697,8811725760,631,640,360,why did the baby stretch out her legs,3,88117257602,CW,morning exercise,play with the dog,reach for her legs,sit properly on slide,try to get into water,sit properly on slide 2698,5679866364,750,640,480,what did the old woman do after she finishes talking with the old man,2,56798663643,TN,put her hand on ther chin,clap,look towards the water,walk around,play with baby,look towards the water 2699,5008618500,754,640,480,why is the baby in diapers,3,50086185003,DO,playing,showered,it s sunny,too young to go toilet himself,for someone to wear,too young to go toilet himself 2700,3502722122,425,480,640,why does the boy look down the whole time,2,35027221220,CW,adjust shoes,communicate with dog,playing with book,look at the pathway,looking at magazine,playing with book 2701,4164771889,503,640,480,how many boys are working together to bury the boy,3,41647718899,DC,seven,three,one,five,twice,five 2702,6031805098,1368,640,360,why did man in white cap raise his arms,0,60318050982,CW,hit the leaves,catching basketball,dance,protect his eyes,to keep the water bottle,hit the leaves 2703,3261079025,553,640,480,what happened to the plane after it took off,2,32610790252,TN,hit the wall,hit the tree,drop,turn back,drop on water,drop 2704,8313365386,318,640,360,what does the lady do near the end after she leaned forward and viewed the picture,2,83133653865,TN,smile,talks to the camera guy,starts talking,wipe her face,smiles and waves hand,starts talking 2705,6136926089,1522,480,640,why does the baby push around the cart at the beginning,1,61369260891,CW,man shake the toy,playing with the cart,lost his balance,to push to lady,excited,playing with the cart 2706,2990321092,633,640,480,why do the men pull their heads and bodies back when they bite the food,3,29903210923,CW,take a break,play with each other,not finish the food in mouth,free food from string,challenge,free food from string 2707,8107573462,406,640,360,what is the man and the boy doing in this video,2,810757346212,TC,playing snow ball,fishing,skiing,playing around,looking at the car,skiing 2708,3960291106,1428,640,360,why is the man in white so happy,1,39602911068,CW,wipe his mouth,amused by the topic,his birthday,playing with kids,funny action,amused by the topic 2709,4123915842,750,640,480,what does the girl do after the lady in black has adjusted her socks,3,41239158424,TN,jump,walk towards woman,clap,stand up,lift up her leg,stand up 2710,4658396458,2160,640,424,how did the toys in front of the baby get stacked up in the middle of the video,4,46583964585,CH,use legs to slide forward,taking support of the ladies leg,lady made it,hold them together,baby made it,baby made it 2711,3124551255,1962,640,474,what does the boy do after watching the elmo for a while at the end,0,312455125510,TN,stood up,touch his head,turn around,take food,pick up something else,stood up 2712,10042935613,1710,640,360,why does the boy in red touch the food with his bare left hand while eating,3,100429356134,CW,take food to table,record it for memory,leave food residue,to pick the food up,look at its teeth,to pick the food up 2713,4388652400,1785,640,480,where is this place,1,43886524006,DL,waterfall,living room,grassland,kitchen,studio,living room 2714,6542914065,300,640,360,how many people are involved in the video,2,65429140657,DC,three,six,five,two,one,five 2715,5008618500,754,640,480,where did the lady lying on,2,50086185000,DO,kitchen,grassland,bed,mat on floor,sofa,bed 2716,8171216955,550,568,320,why did the girl pat the head of the toy dog at the beginning,4,81712169551,CW,show the lady,teach boy how to play,happy to hold the dog,scared to hug it,get something out of it,get something out of it 2717,2435100235,1906,640,480,why is the man wearing a yellow uniform,2,24351002353,CW,to pass the uniform to the man in white,to give it to the officer,he is rickshaw driver,matches his yellow jeep,easy to spot him in the dark,he is rickshaw driver 2718,4488066715,2638,320,240,why does the adult hold on to the whisk while the baby is holding the other side,4,44880667153,CW,making cake,stirring mixture,pose for camera,adding more ingredients,prevent it from tipping,prevent it from tipping 2719,6265968082,1275,640,360,how do the people feel while performing,1,62659680828,TC,slightly embarassed,serious,worried,feel accomplished,sad,serious 2720,4126010904,1698,640,480,how many times does the tall man lean his face on the television,0,41260109047,DC,four,three,five,one,two,four 2721,8189958994,1869,640,360,what is the lady doing before she stopped the dog in the beginning of the video,2,81899589949,TP,put the box aside,walk away,walking the dog,smile at the camera,talk,walking the dog 2722,8312058649,774,640,1138,what does the baby do after turning his head back to the front,0,83120586494,TN,look at toys,stares at camera,turns it more,lean forward and put head down,picks up the grey toy,look at toys 2723,10779838974,890,640,1128,why are the girls moving forward,3,107798389748,CW,holding up her toy,look for directions,hitting the drums,push the rake,engrossed,push the rake 2724,5349766264,1884,640,362,why is the lady using a spoon,4,53497662641,CW,eating,food dropped on table,take food,judges,hit her hand,hit her hand 2725,8177965766,705,640,360,what does the man on stage do after standing for a while,3,81779657665,TN,bend down and touch the woman s back,clapped,lighted up,sit down,look at the puppets,sit down 2726,2868183184,1551,500,375,how does the girl pick up the food after it is cooked,0,28681831846,CH,use tongs,hold it tightly,with her hands,use hand gestures,with the spoon,use tongs 2727,6592821115,1800,640,424,why did the woman put the baby in polkadot away from her,2,65928211158,CW,playing with girl,learning,encourage baby to walk,keep it well,do not want to be bothered,encourage baby to walk 2728,4838145161,1921,640,480,why does the cat put its head under flowing tap water in the middle of the video,3,48381451613,CW,ball rolling away,wants to catch something in tv,curious,drink,curious about laptop,drink 2729,8604794910,405,640,360,why does the girl in blue swing the racket in the middle of the video,3,86047949101,CW,wants to refer back,to hit the boy,carry girl down stairs,try to catch the ball,for fun,try to catch the ball 2730,3711681535,1070,640,480,what happens to the woman after being pushed by the man in blue,3,37116815358,TN,swim,fell down,drop the chain,she swings,stood up,she swings 2731,3249402410,697,640,480,what did the lady in black on the right do after she finished spreading the cheese on the pizza,0,32494024103,TN,put it at the side,clap,display cake on table,rub hands to shake off crumbs,give to the man in grey,put it at the side 2732,7364407194,312,640,424,why are the babies lying down on a blanket each,4,73644071944,CW,baby puts it on,hungry,to reach the piano,play with him,lie down on floor comfortably,lie down on floor comfortably 2733,9088819598,670,640,480,what does the baby do after he dropped the ball,2,90888195984,TN,walk over to pick it up,turn towards the toy,move his hands and legs faster,pick up toys,lie down,move his hands and legs faster 2734,7536230796,1773,640,1138,what does the boy do after approaching the table near the end,1,75362307965,TN,blow to the people sitting around him,plays with red toy,move away,stands,walks away,plays with red toy 2735,2978295992,1056,640,360,what does the other woman do while the lady in singlet cuts the pumpkin,0,29782959922,TC,sewing,holding book,watch her,use hand to support,wipe on the bib,sewing 2736,6806999702,2697,640,360,why does the child run after the ball,0,68069997024,CW,to pick up the ball,put it in a better place,want to keep the ball,the ball was about to roll on the streets,prevent dog from taking the ball,to pick up the ball 2737,4838113006,2697,640,360,why did the lady in grey bend and squat down in the middle of the video,3,48381130063,CW,crafting,take balloon away from baby,put funnel down,get closer to the bell,guiding her child to climb upstairs,get closer to the bell 2738,4761953886,797,640,360,what does the dog do as the girl was caressing it at the start,3,47619538861,TC,follow after the girl,try to lick her face,turn towards lady,fidget around,get dog to do tricks,fidget around 2739,3508459605,2609,320,240,what activity is being carried out,0,35084596058,TC,playing,boxing,dancing,flying aeroplane,hiking,playing 2740,2401167740,390,500,375,what does the man do after drinking from his cup,3,24011677406,TN,stops drinking,speaking,walk away,put down his cup,opened its mouth,put down his cup 2741,2584172238,719,320,240,what did the boy in blue do after he crawled up the slide,1,25841722388,TN,get up and jump,slide down,points backwards,move his arms,gets up and run towards them,slide down 2742,6297019062,1746,640,360,what did the person do after putting on hand on the baby on pink chair on the purple chair,1,62970190627,TN,walks away,took away the bucket,moves them,feed baby with spoon,takes another chair,took away the bucket 2743,6136926089,1522,480,640,what does the boy do after getting up on the slide,3,61369260897,TN,stand still,move back to spot to jump,climb over something to sit,turns around and come down,walked off,turns around and come down 2744,2696280239,398,640,480,why does the man fall on ground,4,26962802393,CW,fell backwards,snow is slippery,loses the support of the rope,let baby get off,bull moving too violently,bull moving too violently 2745,12392885583,929,640,480,how does the woman try to protect the baby when the baby approach the end of the bed,4,123928855836,CH,kiss them,carry her and support neck,rock baby,in her arm,hand in front of baby s head,hand in front of baby s head 2746,4822859674,861,640,480,how did the man in slippers support baby at the start of the video,0,48228596740,CH,hold his shoulder,pull his hand,carried on shoulder,place on sofa,stop baby from going too deep,hold his shoulder 2747,8388104887,1233,640,480,what did the dog do after it came back with the ball the second time,3,83881048874,TN,bring it to lady in jeans,bring to the person,stood up,lie down,play,lie down 2748,4103088549,485,640,480,why is the man lying down on the board in the beginning,1,41030885490,CW,watching sunset,waiting for wave,he was sunbathing,he was talking on the phone,talking to lady,waiting for wave 2749,4765564263,420,640,480,why does the boy with orange pants hold a toy in his hands,4,47655642633,CW,pass to adult,playing with dog,follow the girl,use to comfort the baby,playing with it,playing with it 2750,6592821115,1800,640,424,what did the woman in grey do after the baby in polkadot fell in front of her,0,65928211155,TN,clap,hold a cross sign,continues crawling,cycle forward,talks to the woman in red,clap 2751,5679866364,750,640,480,why was the man in yellow looking back at the group while they were crossing the water,3,56798663645,CW,taking photo of them,to come up together,to stretch,waiting for them to reach shore,listening to them,waiting for them to reach shore 2752,6025238212,758,640,360,what activity could this be,2,60252382128,TC,singing,making music,cosplay,karoake,board meeting,cosplay 2753,5996148663,498,640,362,judging by the lady s attire and the location what activity is she doing,1,59961486631,TC,playing tablet,hiking,playing with toys,boat ride,gaming,hiking 2754,3375218204,2241,640,480,what does the girl do after walking for a while at the start,4,33752182045,TN,hold dog leash,hold baby,crawl on the ground,walk off,point to her left,point to her left 2755,4846820256,671,640,480,where are the people at,4,48468202563,DL,construction site,dancing hall,stage,road,boat,boat 2756,3477387686,2034,640,480,how many times did the girl put her palm out,2,34773876869,DC,one,five,four,three,seven,four 2757,4671452046,1306,640,480,why did the baby bend forward at the beginning of the video,4,46714520468,CW,eat food,listen to woman in blue,look under the table,caress dog,to put the spoon in the cup,to put the spoon in the cup 2758,2834146886,1881,496,370,why did the adult move his feet away when the black dog approach,1,28341468861,CW,finish feeding,to make space for dog,take more candies,take more balls,take more food for hte dog,to make space for dog 2759,3550839192,1050,640,362,how did the baby react when the train approached,3,35508391921,TC,push the toy train,happy to see the baby walking,falls down,follow the train with eyes,run to the train station,follow the train with eyes 2760,4130504920,422,640,480,what is the baby doing as the balloon was placed above her,4,41305049201,TC,play with green toy,help the baby,confused,spinning around,laugh,laugh 2761,2697261300,1392,640,480,what does the lady in white do as the lady in grey was using the camera,2,26972613005,TC,dance happily,umbrella,watch lady in grey,change direction of clicking picture,smile at her,watch lady in grey 2762,5833145209,510,640,480,what did the black bird do after it jumped into the water the second time,0,58331452096,TN,fly off,assist it,walk away,turns around,go to man in green,fly off 2763,13919236672,3924,640,360,why does the girl bend down in the middle of the video,4,139192366722,CW,fidgeting around,take the book,to get down,play with the lady,drag the red box,drag the red box 2764,9082180631,406,640,360,why did the boy in green turned back at the beginning of the video,3,90821806319,CW,pick up the weight,distracted,he fell,look at people on the sled,he likes his food,look at people on the sled 2765,4762946272,647,640,360,how did the woman manage to get the boy pour the spoon into the bowl after the spoon is filled,4,47629462721,CH,hold her hand on the can,licks the spoon,use both hands,lick repeatedly,point to the bowl,point to the bowl 2766,8594314852,377,640,360,who walked pass the kid when he stopped at the road,0,85943148525,TC,lady in jeans,the black dog,older man,boy in red,man in shorts,lady in jeans 2767,11503803033,623,640,360,why does the person hold sticks,1,115038030332,CW,playing with cat,skiing,hiking,suggest man to go other side,take a photo,skiing 2768,8241491518,891,640,480,why did the man wear gloves to clear the path,4,82414915180,CW,catch fish,ride motorcycle,better grip,climbing the cliff,safely cutting the tree,safely cutting the tree 2769,6300775954,1734,480,800,why did the lady walked forward at the end of the video,3,63007759546,CW,to get nearer to the ball,suggest man to go other side,look at boy,put down the barbell,pointing to duck,put down the barbell 2770,8594309349,459,640,360,why are the people wearing the scuba shoes,1,85943093499,CW,pactice swimming,to swim better,comfortable,for safety,part of the training,to swim better 2771,8797589693,2699,640,480,how does the man in black signal the man in leather coat to sit at the front row in the middle,4,87975896937,CH,shake his hand,keep getting up,pat the seat,tap man,using his hands,using his hands 2772,5658916668,660,640,1138,why are there so much snow on the ground,3,56589166685,DO,people pour snow,adjust his ski board,heavy snowfall,skii area,snow stuck on shoe,skii area 2773,6297019062,1746,640,360,how many babies are there in the video,3,62970190622,DC,two,three,five,four,seven,four 2774,8024853715,486,640,360,what are the girls doing in this video,0,802485371510,TC,playing with sand,put toy animal onto train,sitting,piano duet,ski,playing with sand 2775,4087013668,1442,640,474,why did the baby keep taking the food peels out of the bowl and throwing it,0,40870136682,CW,play for fun,look at each other,play with food,give baby back food,curious,play for fun 2776,3060478605,432,320,240,how is the horse being guided,4,30604786051,CH,strings,using reins,shirtless man guides it,lured with food,rope,rope 2777,5945172741,1593,640,480,what does the man do after taking the red ball away in the middle,3,59451727418,TN,kick it,use his hands to control,throw the ball,wave his hand,run towards the ball,wave his hand 2778,2401167740,390,500,375,what kind of cup is the man drinking from,2,24011677405,DO,goblet,stainless steel cup,ceramic cup,glass,vacuum cup,ceramic cup 2779,5116088152,1205,640,360,what does the baby do after picking the banana up,3,51160881528,TN,eat the banana,waves her hands in the air,stretch his hand out,drops it,squeeze it,drops it 2780,8188651630,571,640,480,how does the person move higher feet when the cat grabs hold of it towards the end,3,81886516305,CH,kick towards cat,move left and right,running away,shake it,drag the toy around,shake it 2781,6078524411,2512,640,360,how did the baby do after playing by himself for a while,3,60785244112,TN,starts crying,stop moving,playing with sofa,bored and sleepy,move his head around,bored and sleepy 2782,10597533885,1728,640,360,why does the baby turn her head to another set of toys,1,105975338852,CW,excited then got distracted,wants to play,trying to sleep,excited,touch the toy,wants to play 2783,4166942239,590,640,480,why does the man in red look down,0,41669422391,CW,look at man in black s shoes,ball rolled at his feet,dog come near,baby crawling,step on something,look at man in black s shoes 2784,2932897373,558,500,375,what did the cameraman do after filming the man in grey and woman in white on the middle of the video,1,29328973736,TN,touch chin while talking,turn camera around,begin snowboarding,take a drink,run off,turn camera around 2785,9528990839,427,640,480,how did the lady protect her head,4,95289908393,DO,wear helmet,pillow,bandage,tie it with hair band,hat,hat 2786,2559262403,2158,320,240,what does one of the pug do after following the other approaching the water bowl the second time,4,25592624036,TN,fly off,shake its body,look into his mouth,raises his hands and smiles,chases it into the corner,chases it into the corner 2787,5801184682,1683,640,480,what did the human do when the cat bit the hands,2,58011846826,TC,look at bird,push it,play with cat,stand still,rubs against him,play with cat 2788,4372494989,2575,640,480,how does the baby show that it wants to be carried,2,43724949896,CH,jump up and down,swing himself forward,put his arms up,sit down,lie down,put his arms up 2789,2614918961,1311,640,480,where are the children hanging out,3,26149189614,DL,staircase,room,kitchen,home,on a couch in living room,home 2790,4650556666,567,640,480,how did the child keep his feet warm,3,46505566667,DO,wear thick clothes,covered with blanket,long sleeve clothing,wear socks,winter clothing,wear socks 2791,6272786009,535,640,384,why do the boats move in single file,0,62727860091,CW,race,enjoy the scenic beauty,another boat came to help,stong wind,to stay on,race 2792,2623954636,931,500,375,where did the ball bounce first after the boy threw it for the first time,2,26239546367,TN,left,drop down,towards camera,run to boy,run away,towards camera 2793,11541421563,2403,640,360,why does the woman in brown goes and comes back near the group at the start,4,115414215631,CW,to catch rolling fallen bapple,man directs her,teach the girl,conversing,take a new score,take a new score 2794,7442562474,598,640,480,why did the brown cat turn around and face his back on the bed in the middle,4,74425624745,CW,touch the paper inside,put properly,getting ready to shower,just woke up,playing with white cat,playing with white cat 2795,8455160795,600,640,360,how many people are there,3,84551607953,DC,four,seven,five,two,three,two 2796,2771402761,1460,640,480,what are the women doing while the girl is swimming,0,27714027617,TC,help her swim,swimming,lying on chair,claps for girl,chatting on side,help her swim 2797,3155382178,858,640,480,why does the woman follow the man at the beginning,0,31553821781,CW,chase the ball,to speak to him,follow where balloon bounce to,turns her head,practicing,chase the ball 2798,5296635780,652,640,480,why does the lady laugh after bringing her hand near the man s mouth,3,52966357803,CW,pleasant conversation,she is happy,encourage baby to sit up independently,funny,other lady jokes,funny 2799,6516459343,2697,640,360,why did the man in white pick up a knife after changing place with the man in green,4,65164593434,CW,reacting to the bread,it was bloodied,proceed with next part of celebration,cut the vegetables,cut the shoe,cut the shoe 2800,2604394962,1078,640,480,what is the man doing with the toy,3,26043949627,TC,repairing,talking,chopping leaves,play with it,dancing,play with it 2801,4626535366,1468,640,360,what did the boy next to the boy with spectacle do after they bowed,1,46265353669,TN,sit down,point to bucket,wave,hold the man s hand,gesture his hands upwards,point to bucket 2802,6516459343,2697,640,360,why is the man in green holding onto the shoe as the man in white is cutting it,4,65164593435,CW,the man asked for it,ear protection,walk in mud,assist securing at right position,provide support,provide support 2803,3376544720,2158,352,288,what activity is happening,4,33765447206,TC,interview,water skiing,golf,obstacle challenge for dog,bull riding,bull riding 2804,3322503255,1233,320,240,why did the three person on the ground wear the neon green vests,3,33225032556,CW,part of costume,soldiers,protect from sun,ensure they can be seen,playing,ensure they can be seen 2805,6136926089,1522,480,640,why does the baby suddenly let go of the cart in the middle of the vieo,3,61369260892,CW,fun,lost his balance,do nt want baby to bite,go to slide,off balance,go to slide 2806,5129152550,2697,640,480,why does the lady standing behind the spectacled man smiling and nodding her head,4,51291525503,CW,happy,likes the rabbit,friendly,witnesses to the event,agrees with man s view,agrees with man s view 2807,2771402761,1460,640,480,why is the lady staying near the kid in swimming,4,27714027613,CW,release crab into sea,support baby afloat,to play with the bubbles,play with baby,follow the girl,follow the girl 2808,2705374471,1556,320,240,why did the older kid want to throw the shoe to land on the baby,3,27053744713,CW,to do a stunt again,hands need for holding table,interested in other toy,catch baby s attention,play with it,catch baby s attention 2809,2793260225,558,500,375,why did the man without a cap fall off eventually,0,27932602253,CW,because the lady lost balance,let baby get off,get oxygen,got hit,to stop the recording,because the lady lost balance 2810,4199369046,1717,640,360,why is the lady in black wearing a hat on her head,3,41993690460,CW,show different actions,protect sun,part of stunt,christmas attire,posing,christmas attire 2811,7531285946,1170,640,360,how did the lady kept the camera when she was not using it,3,75312859460,CH,put into handbag,place on sofa,pass to man,sling across back,put on shelf,sling across back 2812,6168295272,446,640,360,why do the children look in the same direction when dancing,0,61682952720,CW,for rehearsing,show happiness,controller for dancing game,sunlight in the backside,enjoy performing,for rehearsing 2813,4130504920,422,640,480,what did the person do after the baby turned away near the end,2,41305049203,TN,sits down,check her arm,stop playing with balloon,adjusting safety wear,get up,stop playing with balloon 2814,5323654756,2032,640,480,how did the girl in pink keep her hair tidy,2,53236547568,CH,with a cap,use her hands,tie up,hair net,clip neatly,tie up 2815,2400715506,414,320,240,how did the animal explore the unfamiliar setting,4,24007155060,CH,look around,ask others,search for the map,bark,sniff around,sniff around 2816,6895608152,2178,640,360,what are the two people in red doing as the lady in white dances,4,68956081527,TC,bored,walk away,chair,hair band,holding each other,holding each other 2817,2716277960,402,500,375,how did the two men cross to the other side of the river,4,27162779605,CH,wear life vest,standing,waterfall,canoe,use wooden log as bridge,use wooden log as bridge 2818,10082798964,345,640,360,what hand gesture did the mother do at the end of the video,3,100827989648,DO,siblings,siblingoffspring,billing,clap hands,game,clap hands 2819,2461993294,1999,640,480,what does the lady at the left back do after watching the performance for a while,4,24619932949,TN,get off stage,walk toward the red chair,leave the stage,play the drum,scratch head,scratch head 2820,4164771889,503,640,480,where are they,1,416477188910,DL,classroom,beach,gymnasium,horse enclosure,hospital room,beach 2821,6291413193,1980,640,480,how does the lady in white position her arms while the dolphin swims behind her,4,62914131935,TC,lie down and pose,dips her ladle in,looking somewhere,jump as well,behind her back,behind her back 2822,6690256857,344,640,360,how did the man shower the dog,0,66902568574,CH,use hose,with blanket,put dog in river,diving in,jump out of pool,use hose 2823,2793806282,1925,320,240,what did the lady in blue do as the black dog is swimming,2,27938062827,TC,follow behind,talk to girl in grey,assist it,catapult,float away,assist it 2824,2833209794,331,640,480,what else does the man in yellow carry aside from a black laptop bag,4,28332097943,DO,water bottle,microphone,baby,posters,book,book 2825,6762389913,1371,640,360,what does the brown dog do after being licked for a while at the start,3,67623899135,TN,turn around,walk away,sit down,looks at the camera,touch dog s nose,looks at the camera 2826,3452354871,511,640,360,what did the bird do as the man shifted his foot,4,34523548719,TC,flying across the grassland,try to beak underneath the man shoe,eat the food,walked to a box,shake head,shake head 2827,8455160795,600,640,360,why did the man in grey start walking forward in the middle,1,84551607955,CW,his turn to bowl,other man gesture with stick,giving lecture,dilemma whether to fix the wig,servant,other man gesture with stick 2828,7499763064,604,640,360,how many people are climbing,3,74997630641,DC,eleven,four,seven,two,six,two 2829,3249402410,697,640,480,how is the lady in black on the left spreading the sauce on the pizza,3,32494024102,CH,using fingers,with the spoon,using shaker,in circle,sprinkling,in circle 2830,5138093706,931,640,480,how did the baby tried to support himself to stand up at the end of the video,0,51380937063,CH,hold handle of stairs,called for help,hold the lady's hands,baby pulled ropes,pull the strings,hold handle of stairs 2831,3939145327,1194,640,360,how is the girl moving around in the video,3,39391453270,CH,walking,swimming,jumping,cycling,swing up and down,cycling 2832,3383804222,999,640,480,where is this happening,1,33838042227,DL,work place,zoo,hall,performance practice,hiking trail,zoo 2833,10309542255,2566,640,480,where is this place,2,103095422557,DL,a hut,wedding hall,park,porch outside house,near a staircase,park 2834,3555755537,1599,640,480,why is the person on the floor,4,35557555370,CW,fell down,playing dog,stopped by policeman,sunbathing in beach,resting,resting 2835,10042935613,1710,640,360,what does the boy in blue do after waving his hand,0,100429356138,TN,pick up the fork,lie down,trying to move,plays the drum,continue playing with toy,pick up the fork 2836,5017166671,2697,640,480,why the man on the right hitting,4,50171666714,CW,mashing potatoes,playing hockey,making dough,boxing,music performance,music performance 2837,6018490041,825,640,480,what did the men need to do with the bat in the game,3,60184900412,DO,catch all the balls,change all their clothes,foosball,hit all the cans,toy that moves,hit all the cans 2838,5803861992,2145,640,480,what is the girl touching when the woman hit her with the fan,1,58038619926,TC,cap,lady s hands,dog,her shoes,lady s face,lady s hands 2839,6896884547,1440,640,360,what did the baby hold when sitting at the sofa,1,68968845473,TC,teddy bear,ball,shoe,bottle,bowl,ball 2840,4765564263,420,640,480,why are the children lying near the grass,0,47655642630,CW,playing with water,listen to the music,play with the dog,feed the cat,painting,playing with water 2841,7786283208,636,640,360,how does the girl in white use her hands to help her get up,2,77862832086,CH,hold onto chair,hold the table,takes support on the floor,support the box from behind,use poles,takes support on the floor 2842,3198533789,690,640,362,why do the two men working bend their backs,2,31985337896,CW,to whip their hair,ensure safety,get nearer to the roof,talking,play game,get nearer to the roof 2843,5889898795,2697,640,360,how many people ziplined down,4,58898987955,DC,six,four,seven,three,two,two 2844,6143391925,1206,640,480,why did the ball move,0,61433919254,CW,baby kicks it,hit away by dog,woman kicks it,man throw it into the air,lady throw it into the air,baby kicks it 2845,9088819598,670,640,480,why was the baby s chair rocking,3,90888195987,CW,wind blowing,pulled by girl,lady pushes it,he was moving in it,remote controlled,he was moving in it 2846,3972259774,1063,640,480,why did the lady in red point to the lady next to her when the man in yellow brought the box out,1,39722597747,CW,calling for help,shows lady own the gift,stop her from walking over,give her a drink,take a photo of her,shows lady own the gift 2847,4838113006,2697,640,360,what does the lady do after picking up another bell from table b,1,48381130066,TN,blow candles,shake it,puts on baking sheet,drink the drinks,rinse crab,shake it 2848,8575881495,2000,640,360,what does the girl do after laying the toy on the sofa near the end,2,85758814957,TN,walk in circles,pet,lay down,hold another toy,rolls,lay down 2849,8604794910,405,640,360,why does the boy swing his racket at the end of the video,0,86047949103,CW,to hit ball,take his cap,check the tent,to hit the girl,scare away the dog,to hit ball 2850,5134317883,1890,640,360,what does the man in red do after picking up the pulp near the end,3,51343178838,TN,attach man on ground to him,pose to catch,move the rod,keep it on the side,guiding,keep it on the side 2851,6329954198,692,640,360,why is the man in black looking down as he squats on the floor,2,63299541984,CW,for baby to rest,pick up toy,writing on the ground,he fell,play his toy,writing on the ground 2852,2435633172,2293,500,375,what did the pig do when it reached the rock,0,24356331722,TC,rub its body,playing with orange toy,pick up food with mouth,play with toy with mouth,walk to rock,rub its body 2853,6642268693,1143,640,480,why did the dog leave the toy after a while at the start,2,66422686930,CW,the toy was faulty,follow owner,not interested,baby took the toy away,chase another dog,not interested 2854,7887764754,1063,640,480,what does the baby do after the dog takes the food from her at the end,2,78877647547,TN,place paw on her palm,look at girl,eat,same direction as dog,play with the blanket on the floor,eat 2855,3562017845,1200,640,428,what did the bird do after stepping into the water,2,35620178451,CW,follow another bird,fly away,look down,wash themselves,eating pieces of bread,look down 2856,7999756100,618,640,360,why are the people spread apart when they are setting up their equipment on the slope,0,79997561002,CW,take photos at different spots,instructed by woman in red,release the lantern,not singing,natural,take photos at different spots 2857,3821781616,745,640,480,why did the man tap his leg after putting down his hands,3,38217816162,CW,to support himself,let the girl cycle,to swim,gesturing,help boy get down the merry,gesturing 2858,8211075660,1621,480,360,what does the man on the right do as the man on the left was talking at the start,0,82110756601,TC,stands still on the right,look at his phone,read newspaper,walk back and forth,pat his back,stands still on the right 2859,3814690167,453,640,480,why did the lady hold two sticks,4,38146901673,CW,balance herself,hiking,sledding,skiing,play the instrument,play the instrument 2860,3359075894,414,640,480,why does the man in white bend down near the man in black at the beginning,4,33590758942,CW,pass ball to kid,talking to boys,play with kids,support him,keep something down,keep something down 2861,8547321641,327,640,362,why does the man try to hold onto the baby s shoulder near the end of the video,4,85473216410,CW,give encouragement,thank him,keep the book on the side,support baby,stop baby from going too deep,stop baby from going too deep 2862,5607805258,718,640,1138,why does the cat push the dog away,4,56078052583,CW,curious,just woke up,surprised,to catch the laser,dog bites it,dog bites it 2863,4199369046,1717,640,360,what is shown in the background,3,41993690466,DO,snow moutain,lake,screen,bookshelf,sea view,bookshelf 2864,2712662377,1048,640,480,where are the turtles hanging out,3,27126623774,DL,on the floor,sea,fish tank,grassy area,at a house,grassy area 2865,5662041273,2697,640,480,why was there a light flashing on the controller when the boy pressed on it,1,56620412734,CW,controller was spoilt,indicate switched on,helicopter was missing,for decoration,indicate low battery,indicate switched on 2866,4968805923,313,640,480,why did the man in white move his arms when the man in black threw something at him,0,49688059232,CW,to hit the balloon,to catch it,get phone calling,dancing to music,to give affirmation,to hit the balloon 2867,8224504302,1290,640,480,what is the relationship between the two men on stage,0,82245043026,DO,teammates,coworkers,classmates,work mates,band members,teammates 2868,3026084730,2205,640,480,why did the two men at the side stand with their hands behind their back,2,302608473010,CW,spectators,turn on the path,courtesy,waiting to hit the balloon,ensure safety,courtesy 2869,6024684644,519,640,360,how did the man feel as he digs the hole,0,60246846448,TC,happy,sad,tired,afraid,alert,happy 2870,2716277960,402,500,375,why is there 2 men pushing their bicycle as they cross the wooden log,3,27162779601,CW,look out for anything incoming,competition,to turn the bicycle around,can not directly ride pass it,practice cycling,can not directly ride pass it 2871,4612723694,1681,640,480,why is the guy having one leg kneeling on the ground,3,46127236940,CW,playing with baby,play with toys,fell off from the swing,get closer to snake,playing piano,get closer to snake 2872,5256928210,606,640,360,what does the dog do as the man is patting it,1,52569282100,TC,biting on to the blue toy,look around,lie down,kick its body,run out of the room,look around 2873,3655906094,563,640,480,why did the man in grey throw his stick up,3,36559060940,CW,doing drills,caressing for dog,hit golf ball,doing stunt,ice hockey player,doing stunt 2874,5877508141,583,640,480,what is the man looking at,3,58775081410,DO,team member,horses,girls,boy,cars,boy 2875,2857132732,726,320,240,why is the man holding instrument in his hand with the kid,4,28571327321,CW,repainting it,repairing the handles,clean the instrument,repair the strings,playing it,playing it 2876,2821968703,900,320,240,why is the man wobbling throughout,0,28219687031,CW,hard to balance,protect from hot sun,expressive,look at the cameraman,to adjust snowboard,hard to balance 2877,5323654756,2032,640,480,why is the girl in pink carrying so many balloons in her hands,2,53236547565,CW,adjust something,show excitement,to play with it,dancing,encourage girl to jump,to play with it 2878,8797589693,2699,640,480,how does the man in black signal the man in blue to take a seat at the start,4,87975896936,CH,clap his hand,pull chair out,shake his hand,nod his head,gestures towards a chair,gestures towards a chair 2879,8388104887,1233,640,480,how many times did the dog run back and forth,4,83881048877,DC,three,fifteen,one,nine,two,two 2880,6860322796,1285,640,360,how many dogs are there playing,2,68603227964,DC,four,one,two,three,five,two 2881,7605329840,635,640,360,what did the girl in stripes do after blowing the green balloon,3,76053298404,TN,swing,stretch out hand,pat the baby s back,let it go,catch back balloon,let it go 2882,3372023610,1017,640,480,what is the lady in black holding in her left hand as she sang,4,33720236103,DO,book,microphone,country flag card,stick,cup,cup 2883,4859057828,647,640,480,how many ladies are there,1,48590578288,DC,six,three,four,two,seven,three 2884,6300775954,1734,480,800,how does the blonde woman exercise with the barbell,2,63007759540,CH,lie down,running,squats,by playing the piano,bends down to dance with her,squats 2885,6480018109,709,640,360,where is this video taken,3,64800181092,DL,roadside,supermarket,park,hospital,dining table,hospital 2886,2623954636,931,500,375,where did the boy face when he threw the ball into the sky,3,26239546365,TC,white dog,mimic man,looking at ball,at the baby chair,face forward,at the baby chair 2887,8604794910,405,640,360,where is this video taken,0,86047949108,DL,tennis court,dinning table,living room,supermarket,computer table,tennis court 2888,8783897632,974,640,360,where are the people riding bikes,0,87838976328,DO,wild outside,living room,backyard,beach,city street,wild outside 2889,5064681723,602,640,480,what is the lady looking at when she stood at the road,4,50646817236,TC,the man,the boy,dog,looking down at piano keys,deers,deers 2890,7453733046,992,640,360,why does the girl in blue pull the girl in red backwards near the beginning,0,74537330460,CW,wants her spot,try to get her into water,dance together,playing the game,encourage the girl,wants her spot 2891,6786501294,1806,604,1072,how does the boy respond to the blond lady who is talking to him,3,67865012948,TC,did not respond,staring at boy,look at boy and listen,look upwards to her and talk,looks at camera and talk,look upwards to her and talk 2892,6786501294,1806,604,1072,why is there a cake,3,67865012949,DO,container being spin around,showcase,engrossed in them,birthday celebration,to blow the candles,birthday celebration 2893,4626085492,638,640,360,where is this video taken,2,46260854926,DL,outdoors,field,room,forest,mountain,room 2894,8064178441,2229,640,1138,where are the children playing,0,806417844110,DL,living room,beach,staircase,playground,forest area,living room 2895,4217422838,1261,640,480,where is this video taken,4,42174228386,DL,road,lake,studio,computer table,living room,living room 2896,4859057828,647,640,480,what does the lady in yellow do with her arms after laughing when they finished posing,2,48590578282,TN,cycle away,look at camera turn around,raise her hand up and down,rub baby s face with a cloth,look at camera,raise her hand up and down 2897,11276567104,989,640,360,what does the priest do while the woman is kneeling before him,2,112765671048,TP,carve pumpkin,walk away,giving blessings and touching her forehead,playing with the dog,looking around and talking,giving blessings and touching her forehead 2898,2435633172,2293,500,375,what does the pig do after shaking itself in the middle,4,24356331720,TN,turn one round,lie down,feed dog,lie on its side,clean itself,clean itself 2899,4251505427,2290,640,480,why did the child with beanie stretch his arms out near the end,2,42515054274,CW,to play the game,to grab ball,focus camera on her,grab the woman s finger,touch white thing,focus camera on her 2900,10309542255,2566,640,480,why did the animals spread their legs wide apart,0,103095422556,CW,get pushed by one another,to reach the water,playing in the water,see how the others do,wants to sleep,get pushed by one another 2901,2821968703,900,320,240,what does the man do after riding normally for a while at the end,4,28219687036,TN,adjust the white woman getting dressed,snip of some hair,moves hands,stop hitting,lost balance,lost balance 2902,6772999108,1467,360,480,what is the boy holding in his hand,0,67729991088,DO,guitar,jackets,towel,stick,cup,guitar 2903,5296635780,652,640,480,why does the lady cover her mouth as she smiles,0,52966357805,CW,polite,likes baby,speak something interesting,shy,to look at the cameraman,polite 2904,7492398760,2697,640,360,why did the baby girl walk unstable,1,74923987604,CW,carry baby,swing,feed baby,slippery floor with snow,still learning how to walk,swing 2905,4765564263,420,640,480,why are the children half naked,2,47655642631,CW,bathing,playing on beach,playing with water,draw something on their belly,prevent pants from getting wet,playing with water 2906,11565498775,1216,640,360,why does the man move the boy s hands near the end of the video,3,115654987754,CW,pick up the stick,dancing with boy,to hit his hand,to adjust his hand,pass something to boy,to adjust his hand 2907,5026660202,2697,640,480,why is the guitarist in the middle tapping foot on the ground,3,50266602026,CW,check his fingering on the guitar,swaying to music,tune his guitar,keep the rhythm,space out his movements,keep the rhythm 2908,8171216955,550,568,320,how did the girl react after she hitted the toy dog,1,81712169559,TN,licks baby,bend down table,to look at the cameraman,finds baby s actions amusing,playing with balloons,bend down table 2909,3530231811,2697,640,480,who is standing in front of the man playing guitar,4,35302318111,TC,old man,man in white,the drumer,man in black jacket,lady in black skirt,lady in black skirt 2910,3340340268,1289,640,480,how does the girl in green avoid obstacles while walking with a bucket over her head,1,33403402688,CH,swing them,reaches her hand out,moves the pacifier,walk slowly,using a stick,reaches her hand out 2911,4264435046,566,640,480,how many vehicles were filmed,3,42644350468,DC,four,one,six,three,five,three 2912,4123915842,750,640,480,why is the lady in green and black kneeling over the child,2,41239158422,CW,listening to her,reading book to her,making child ready,playing with her,feeding her,making child ready 2913,5129152550,2697,640,480,why is the man using his hand gestures occasionally,1,51291525500,CW,talk to each other,express his views,direct attention,cycling,engage audience,express his views 2914,9735768590,680,640,360,what did the baby do before raising his hand at the end,2,97357685909,TP,look up smile and move hand,bounce up and down,stares at woman,reach hand out,yawns,stares at woman 2915,4518113460,1867,640,480,why did baby stand up,2,45181134606,CW,get onto sofa,get off car,push chair,bow to audience,chase the ball,push chair 2916,5681946487,848,320,240,how does the woman pull the water onto the boy while he is standing up,1,56819464872,CH,turn on the tap,use cup,squezze the wet towel,holds the girl with his hands,put hands on table,use cup 2917,2461993294,1999,640,480,why is a white fan placed so close to the performers near the living room,1,24619932944,CW,celebrating birthday,cooling the place,photoshoot,as a stage effect,camera,cooling the place 2918,2925298951,398,640,480,what does the woman in red do after leaning towards the woman in blue scraft,4,29252989517,TN,smiles,clap,watch and listen about flower,stretch her hands,takes her tongue out,takes her tongue out 2919,6188449000,1350,640,480,what was the colour of the ukulele,2,61884490009,DO,white and red,blue and white,red,beige,purple,red 2920,6642268693,1143,640,480,why did the dog bite on to the human s hand halfway through the video,2,66422686933,CW,waiting to fetch ball,clean its nose,playing,looking at camera,felt the person s hand,playing 2921,2821788355,765,320,240,why is the man in red pants wearing a safety vest,0,28217883550,CW,avoid drowning at sea,safety protection,safety purposes,riding jeep,sledding,avoid drowning at sea 2922,8388104887,1233,640,480,what did the dog do after the person put the ball in its mouth at first,4,83881048875,TN,steals the ball and goes away,wants to grab ball with mouth,jump up,bite the toy,pull out,pull out 2923,3372023610,1017,640,480,what did the lady in grey do after watching them perform for a while,0,33720236109,TN,move away,start dancing,eat and drink,stand up and flip the chart,look at the man,move away 2924,13515224395,1216,640,360,how many dogs appear in the video,0,135152243956,DC,two,five,one,four,three,two 2925,3402648543,516,320,240,who does the cage in the middle with the metal bowl belong to,4,34026485433,DO,rainforest rescue organization,passerby,lady in yellow,man in red pants,dogs,dogs 2926,8387356484,1022,604,1072,why is there a decorated christmas tree indoors,3,83873564840,CW,birthday cake candles,winter,climb up,festive season,attract the dog,festive season 2927,3581585756,702,640,480,what was the boy in blue carrying when running at the back of the bus,1,35815857568,TC,balloon,toy sword,red ball,soft toy,bag,toy sword 2928,5863411262,1018,640,360,how many people are involved in the video,0,58634112627,DC,five,three,one,four,two,five 2929,3655906094,563,640,480,how did the man with the drum made music,2,36559060945,CH,kick it,automatic,hit with sticks,swing the club,pat with hands,hit with sticks 2930,3942617402,738,640,480,what happens to the train after moving for a while near the end,1,39426174025,TN,push toy train,stops,changes direction,move,follow the train with eyes,stops 2931,4935987905,806,640,360,how did the brown dog moved around in the video,2,49359879054,CH,follow man,step on water puddle,walk,running,on skateboard,walk 2932,5803861992,2145,640,480,how is the baby react when the lady hit her with the fan,3,58038619929,TC,no response,touches his head,adjust her shirt,laugh,shake body,laugh 2933,3441428429,2697,640,480,why are the skaters performing together on ice rink,2,34414284294,CW,playing with each other,controller for dancing game,duet,playing icehockey,slope is steep need more energy,duet 2934,4882821564,2697,640,480,why was there torn wrapping paper at the ground near the sofa at the end of the video,2,48828215648,CW,pulled down by grey cat,lady puts it there,boy threw it there,man tears it down,baby is playing,boy threw it there 2935,4083875373,1621,360,480,why did the girl look at the televsion,2,40838753731,CW,watch out for the baby,to look cool,follow the performers to dance,program is funny,engrossed in performance,follow the performers to dance 2936,3452354871,511,640,360,why did the man slowly turn his shoe,3,34523548713,CW,his leg was numb,shoes was dirtied,avoid the puddle of mud,does not injure the bird,injured his ankle,does not injure the bird 2937,8557532213,379,640,360,why did the boy in blue turn back and run near the beginning of the video,4,85575322139,CW,ready to get the ball,catch it,excited,boy in green threw wrongly,running after ball,running after ball 2938,6244382586,619,640,360,how did the girl made sure that her hair is out of her face while she is riding,1,62443825868,CH,clip her hair,wear helmet properly,turns her head,tie her hair,hold her hair,wear helmet properly 2939,4612723694,1681,640,480,how did the man use the stick to help him,2,46127236949,CH,press buttons,adjust the leaves,pick up the snake,adjust flowers,poke the mud,pick up the snake 2940,4846820256,671,640,480,what did the man do to the loose rope after the boy pulled the rope in the middle of the video,0,48468202564,TN,push the rope downward,walk around,throw his hands around and jump,look at the camera,show him the toy,push the rope downward 2941,4136617240,2697,480,352,what does the girl do after turning around the first time,3,41366172406,TN,smile,pull the leash,clap their hands,clap and dance,take the food,clap and dance 2942,6879924118,488,640,360,why are they all standing in the middle of the field chatting,4,68799241180,CW,taking the pipe somewhere else,spectators,looking for food,paying attention,preparing to play,preparing to play 2943,5323654756,2032,640,480,where is this video taken,0,53236547564,DL,dining room,backyard,road,forest,room,dining room 2944,3763643225,1073,640,480,why does the boy run towards the steps,3,37636432256,CW,to get the door,follow the ball,to get the kite controller from man,place the giraffe on top,trying to get up,place the giraffe on top 2945,3626788516,337,320,240,what did the woman in brown do after passing the camera at the start,3,36267885165,TN,hold the girl s hand,said something,smile,hold the animal,show doll to camera,hold the animal 2946,3508459605,2609,320,240,how does the man support the baby,1,350845960511,CH,pull the baby backwards,hold the baby s hands,put baby in a chair,put baby in a pram,in left arm supporting baby s head,hold the baby s hands 2947,2435633172,2293,500,375,what does the pig do after coming out of the puddle,1,24356331721,TN,shake off water,walk to rock,eats from the floor,throw away remaining marshmallows,jump out,walk to rock 2948,4179163342,2172,640,480,what did the shortest girl do after the man moved his body quickly at the end of the video,1,41791633429,TN,hold the checkered girl s leg,move body like man,hug,tilt head forward,follow her,move body like man 2949,4024008346,588,640,360,what activity is being carried out,0,40240083466,TC,playing balloon,eating,walking dog,feeding stingray,playing music,playing balloon 2950,4444192938,866,640,360,where are the kids hanging out,1,44441929387,DL,kitchen,staircase,playground,on stage,homeindoor,staircase 2951,4688219212,959,640,480,what does the boy do after staying topside down for a while in the middle,1,46882192126,TN,shake hands,get down to the ground,pick up grass,stand up,hold s the rod,get down to the ground 2952,9917882506,974,512,288,what does the girl do in the middle after she put her feet on the ground,0,99178825061,TN,stops cycling for a while,stop and point,point to her left,touch her bag,put up her finger,stops cycling for a while 2953,4626535366,1468,640,360,why does the boy with silver shoe bend down at the beginning of the video,1,46265353661,CW,to adjust shoelaces,pick up things,remove shoes,play with the sand,remove the ball,pick up things 2954,5996148663,498,640,362,what did the lady do after trying to drink the water directly,0,59961486633,TN,looked down at ground,pour on dog,rinse crab,laughs,change hands that held to the bottle,looked down at ground 2955,11503803033,623,640,360,what does the person in grey do after stopping for a while at the beginning,3,115038030337,TN,continue digging,happy,stand up,skies again,bend down,skies again 2956,8428551576,2688,640,360,why did the baby walk towards the book shelf at the end,4,84285515761,CW,wants to touch red puppet,dancing,baby was shown the big toy,take a book,to find something,to find something 2957,10727696143,1821,640,480,what does the boy do after moving away from the door at the end,3,107276961436,TN,stop for awhile,turn to his right,enters a room,sit on the couch,pick something up,sit on the couch 2958,2405940242,415,500,375,how did the man make sure that the lady does not bump into the tree when the lady arrives,1,24059402423,CH,hold her hand,pull rope to change direction,looks down and walks slowly,holds her tightly,wear bib,pull rope to change direction 2959,8387356484,1022,604,1072,where is the baby looking,0,83873564842,TC,camera,seatbelt from seat,snow,performance,forest,camera 2960,4164771889,503,640,480,what did the boy in pink do after the boy with printed pants created put a mound of sand on the boy,4,41647718898,TN,laughing,push the boy,raised his head to look,point to the structure,put more sand,put more sand 2961,7288107396,507,640,360,why does the child run across the room,0,72881073962,CW,to pick up the gift,follow the ball,playing with dog,chasing each other,want to sit down,to pick up the gift 2962,5533380417,403,640,362,what did the baby do after it moved its feet,1,55333804174,TN,tried to touch camera,move the body,relaxing,touches his face,turns it more,move the body 2963,7288107396,507,640,360,why does the lady in red point across the room,1,72881073961,CW,points at television,points at the gift,playing with boy,stretching her arms,dancing,points at the gift 2964,2567843468,572,320,240,where is the girl playing,1,25678434687,DL,kitched,inflatable pool,play room,living room,in house,inflatable pool 2965,4126010904,1698,640,480,what does the tall man do after touching the screen,2,41260109044,TN,open bottle,kiss baby,dances,talking to each other,singing,dances 2966,4822859674,861,640,480,how does the man in slippers help the other boy after he falls down in the middle of the video,4,48228596743,CH,ask woman to come,man carried boy to pool edge,put into pram,run towards him,pick boy up,pick boy up 2967,11276567104,989,640,360,how does the woman in the coat react when the woman in white walks to her side,2,112765671046,TC,hand her cushion,drink water,pass her paper,draw,sit down,pass her paper 2968,2930782930,939,640,480,what did the lady do before she kissed the baby,1,29307829305,TP,move hands into water,hold baby s hand,talk,stand up,clasp ball together,hold baby s hand 2969,4264435046,566,640,480,what did the stray dog do after first running out,1,42644350465,TN,go near the dog,run to the end,lick baby s hand,sit,tried to pick up toy,run to the end 2970,4094488636,810,640,360,how many dogs are there,4,40944886361,DC,six,four,three,one,two,two 2971,6097994550,526,640,360,how did the man on top get off,0,60979945509,CH,climb off,operate the machine,pull the rope,jump down plane,got dragged down,climb off 2972,4190655097,1290,640,480,what does the cat do after the person tries to caress it,1,41906550977,TN,looks confused,rubs against him,licks his hand,lick its paw,stroke itself,rubs against him 2973,7771650716,1805,640,360,how did the man in white show affection to the grey dog in the middle of the video,3,77716507168,CH,lift dog up and down,hugs the dog tightly,cuddle to sleep,rubs the dog,change his collar,rubs the dog 2974,4199369046,1717,640,360,why is the lady in black the only one standing up in the room,4,41993690461,CW,she gives talk,trying to look in,group shirt,make people laugh,delivering speech,delivering speech 2975,3383804222,999,640,480,how does the older panda carry the baby panda up at the end,3,33838042225,CH,use trunk,with its trunk,left and right,hands,provide milk,hands 2976,5467727317,1230,640,360,why did the elephant look around at the start,1,54677273170,CW,play with them,curious,for milk,making tourists happy,finished peeing,curious 2977,6480018109,709,640,360,why is the patient holding to the walking aid as he walks out of the ward,1,64800181098,CW,look at it,old,talking over the phone,playing with the baby,pick baby up,old 2978,5296635780,652,640,480,what is the response of the man as the woman speaks to him at the end of the video,3,52966357806,TC,shake hands,play the drums,smile,nod head,point to camera,nod head 2979,6898821807,585,640,480,why does the baby push the right hand of the boy away at the end of the video,2,68988218074,CW,protect the dog,protect his food,uncomfortable,take his cap,wants to move around,uncomfortable 2980,10082798964,345,640,360,how is the baby reacting to the mother teaching her,1,100827989644,TC,does hand gesture,learning seriously,happy to see the baby walking,look at camera,gently,learning seriously 2981,11276567104,989,640,360,why are there god s picture and crosses placed around the place,0,112765671042,CW,place of worship,take pictures,common costume for performance,filming movies,in the prison,place of worship 2982,5133787349,363,320,240,how many of the man are actually involved in the fighting on stage,1,51337873499,DC,three,four,one,seven,five,four 2983,3943634344,629,640,360,what did the lady do after clapping at the end of the video,3,394363434410,TN,eat,walk away from the table,look around,holds the book,makes faces,holds the book 2984,11849091804,1296,640,360,what is the other kid and lady sitting on the ground trying to do,2,118490918041,DO,bottle,friends,organize the presents,sofa,kid,organize the presents 2985,3830567237,716,640,480,what does the horse do as the man in black is washing its body,3,38305672376,TC,walk past,start running,kick the girl,stand there,closed the water bottle,stand there 2986,4130504920,422,640,480,how many babies are there,3,41305049205,DC,three,four,two,one,nine,one 2987,4671452046,1306,640,480,how did the lady in green make sure that she does not wake the baby in her arms up from sleep,0,46714520464,CH,not move,sunglasses,holds his hands tightly,ropes surrounding her,hold onto railing,not move 2988,4518113460,1867,640,480,what does the adult do after the baby starts crawling away,1,45181134609,TN,crawls away,follow the baby,look into camera,stand up,push the toy car,follow the baby 2989,7961460440,360,640,480,what did the man do after he reached the ground,2,796146044010,TN,lower the camera on his shirt,lie on tiger,leaves the rope,smile,lean against the screen,leaves the rope 2990,2978295992,1056,640,360,what does the lady in singlet do as the lady next to her is sewing,2,29782959924,TC,record their process,pet gently,carve pumpkin,help the baby walk,look at phone,carve pumpkin 2991,6024684644,519,640,360,why does the woman lie next to the hole,2,60246846442,CW,suntanning,looking at stars,resting,looking at the man,looking at birds chirping,resting 2992,8505893258,888,640,360,why does the lady in pink hold their hand,3,85058932580,CW,to explain the man well,pinning her hair,watching to ensure safety,show affection,frustrated,show affection 2993,3452354871,511,640,360,why does the bird try to beak underneath the man shoe at the beginning of the video,2,34523548710,CW,looking for worms,playing with the dried leaves,find food,there was light under the shoe,look for water,find food 2994,5116088152,1205,640,360,why did the adult point to the banana in the middle,0,51160881522,CW,suggest baby to eat,to pass to the lady,want to get back banana,wants to eat,to feed baby,suggest baby to eat 2995,3078294001,335,640,480,how many people are there,3,30782940018,DC,five,six,eleven,two,one,two 2996,3441428429,2697,640,480,what does the male skater do after he pushes the female skater away at the beginning,4,34414284299,TN,look over fence of porch,turns the baby over,wipe stuff off her dress,take his skateboard,get up,get up 2997,6356067859,1070,640,480,why did the girl in white bend down and grab something before putting in front of the horse,4,63560678592,CW,to feed the horses,learning horse riding,demonstration,part of the dance,to take more food,to take more food 2998,2584172238,719,320,240,where are the people at,2,25841722385,DL,office,airport,playground,studio,beach,playground 2999,2454242177,1574,320,240,how did baby react when the dog bite the ball,2,24542421771,TC,pushed him away,chase after ball,shouts,love,stood up,shouts 3000,7492398760,2697,640,360,why did the lady in purple swing the boy too after some time,3,74923987602,CW,place something on windowsill,show something interesting,move it backwards and forwards,boy wanted it too,too young to have strong grip,boy wanted it too 3001,2796821016,1851,500,375,how do the boys move on the floor,1,27968210164,CH,he is in a boc,roll around,laying down,jumps,sitting down,roll around 3002,8388104887,1233,640,480,how did the dog hold on to the ball when the person gave it to it,0,83881048870,CH,mouth,getting ready to throw pose,swing bat,paws at it,caress dog,mouth 3003,5328616848,446,640,480,why did the boy touch his mouth,1,53286168481,CW,taste the dough,tasting cookie,clean his mouth,tasting cupcakes,pose for camera,tasting cookie 3004,3175315183,2513,640,480,why is the baby lying on his back,0,31753151830,CW,playing with hanging toys,sleeping,lady was washing his belly,playing in the snow,let dog lick his face,playing with hanging toys 3005,5803861992,2145,640,480,where is the woman hitting the fan,0,58038619927,TC,baby s forehead,her body,man s head,ball,washing machine,baby s forehead 3006,6754608321,1617,272,480,how does the girl show affection towards the baby,2,67546083213,CH,pat head,feed her,hugs the baby,holds her hands,kiss the body,hugs the baby 3007,4978714491,1200,640,480,why did the blue bus stop beside the white bus as well,0,49787144911,CW,both had to stop at signal,road slippery,clip it,resting,speedmeter,both had to stop at signal 3008,5854324479,519,640,474,why is the man in plaid shirt looking at the man in dark brown,3,58543244792,CW,afraid of the man,to protect himself,taking a photo,listening to man talking,to injure the man,listening to man talking 3009,2925298951,398,640,480,why do the women put up their hands near their faces,4,29252989518,CW,testing out facial cleanser,washing face,gesturing,make funny faces,posing,posing 3010,2679130168,1504,320,240,where did the adult put the toy pumpkin in the end,1,26791301688,TC,table,on the bed,floor,in plate,window sill,on the bed 3011,2877270840,780,640,480,how does the man hold the wine glass,1,28772708407,CH,cross them on the table,hold the stem of glass,grab the side of glass,tilt and show bottle label,put on table,hold the stem of glass 3012,3445431963,1276,640,480,how did the first diver filmed position higher hands before waving to the camera,4,34454319634,TP,watch,swim back towards the man,look at man,pick up and push boys away,cross arm,cross arm 3013,3155382178,858,640,480,how many people are there,4,31553821786,DC,eleven,one,seven,four,two,two 3014,6239210933,1030,640,480,what does the child do after looking at the laptop,1,62392109335,TN,touch the top layer of the laptop,draw on pink toy,play with laptop,touch her head,blowing balloon,draw on pink toy 3015,13884293626,5395,640,360,what did the lady in purple do after she let down her hair,1,138842936267,TN,bend down,comb fingers through hair,push the back of car,put it back on,hug the lady,comb fingers through hair 3016,4263096481,637,320,240,why is the man holding a knife,4,42630964818,CW,break the bones,pose for camera,cut the fruit,wash the blood off,cut fish,cut fish 3017,3741143820,332,640,480,why is the woman at the back wearing the same tie as the guy in white shirt,0,37411438204,CW,same team,giving speech,making a dance,hosting program,singing in a concert,same team 3018,4650556666,567,640,480,why did the child kick his leg in the middle,1,46505566666,CW,enjoying popsicle,dancing with adult,for the toy,comfortable,eating ice cream,dancing with adult 3019,4626085492,638,640,360,how did the dog in black with suit interact with the red toy on the bed,2,46260854922,CH,lie next to it,kick off bed,bite it,hug it,put head on toy,bite it 3020,4603484665,1045,640,480,what are the black and white dogs doing in this video,2,46034846655,TC,eating food,chase each other,playing,trying to sleep,lying down resting,playing 3021,4264435046,566,640,480,what did the stray dog do just when the lady made a turn,1,42644350464,TC,trying to bite lady,run towards lady,stay still,hide behind a tree,bark at man in black,run towards lady 3022,5256928210,606,640,360,why is the man s hand on the dog in the middle,2,52569282102,CW,to keep him close,wants to run away,pet the dog,domesticated,comb the dog,pet the dog 3023,6142416815,1267,604,1072,what did the baby do after he opened his eyes at the start of the video,1,61424168154,TN,stand and push box,closes eyes,laugh and hold baby s body,shake hands,black box,closes eyes 3024,4260763967,1017,640,480,how many boys are in the video,3,42607639675,DC,five,eight,eleven,two,nine,two 3025,3846475848,2138,640,480,why does the ferret try to run around,2,38464758483,CW,to go through the course,catch ball,escape from towel,it is being chased,want to play with it,escape from towel 3026,9304738817,345,320,240,why does the lady always keep her hands near the back of the baby,2,93047388173,CW,holding the baby,feed baby,support baby from falling,playing with the baby,in case she falls,support baby from falling 3027,9082180631,406,640,360,where are the people at,3,90821806313,DL,playground,water park,beach,slippery road,living room,slippery road 3028,2821788355,765,320,240,what does the man do after squatting down for a while at the start of the video,0,28217883558,TN,stand up,play the drums,touch the camera,raise up two more figers,he is talking,stand up 3029,8752043000,1572,640,360,how did the person move the pram,1,87520430003,CH,move in circles,pushing it back and forth,move left and right,with remote controller,kick it,pushing it back and forth 3030,5429688959,2490,640,360,what is happening in the video,1,54296889594,TC,flying fox,singing performance,feeding dogs,dancing performance,cooking something,singing performance 3031,6329077812,1835,640,360,why does the lady wipe the baby s mouth,0,63290778123,CW,baby spits out milk,chooolate stains,strawberry stains,there was paint on his face,there was water spills,baby spits out milk 3032,2495861393,1499,500,283,why is woman displaying different vegetables to the children,0,24958613932,CW,teaching them about vegetable,for child to feed goat,baby needs to eat,show what she talks,to feed the horses,teaching them about vegetable 3033,3489439407,1662,640,480,what is the relationship between the people,0,34894394070,DO,colleague,phone,partners,husband wife,team members,colleague 3034,14003541505,507,640,360,what is the baby trying to do,2,140035415051,DO,piano,ride a tricycle,crawl to the girl,classmate,a walking toy,crawl to the girl 3035,7691172922,1454,640,480,how does the lady react when the dog comes to her,0,76911729225,TC,caress the dog,looks at the direction,follow after the girl,watches dog run away,move trolley backwards,caress the dog 3036,6618792571,2518,640,480,why did the adult hold onto the handle of the toy as the baby is exploring the features,0,66187925711,CW,stabilize toy car,pull bike,to show baby features,tying a rope,controlling bicycle,stabilize toy car 3037,8387356484,1022,604,1072,what is the baby doing with his legs,3,83873564844,TC,putting on mat,cross legs,resting,swinging them,kicking toys,swinging them 3038,4251505427,2290,640,480,what does the child with beanie do after touching the baby s cheeks with his finger at the end,4,42515054275,TN,laughing,frown,no reaction,look left,touch camera,touch camera 3039,2559262403,2158,320,240,why are the pugs coming near the bowl occasionally,3,25592624031,CW,talking to the lady,stain while eating yogurt,drink soup,drink water,grab attention of dog,drink water 3040,6018490041,825,640,480,what does the man in white do after hitting all the cans in the middle,3,60184900417,TN,standing,point and talk,start dancing,step back and raise hands,drink from cup,step back and raise hands 3041,2400171624,996,500,375,why did he stopped halfway for a short while in the video,3,24001716241,CW,something caught his attention,press something on the report,restless,change direction,he reached the shore,change direction 3042,11966080214,1531,640,1138,why does the girl hold the stick whenever she is playing with the toy,1,119660802146,CW,to reverse,it comes as a set,performing at an event,keep baby from falling,wants lady to help her hold,it comes as a set 3043,8132842161,1105,640,360,why did the people look forward,1,81328421610,CW,watching television,watching performance,taking photo,interacting with the audience,watching movie,watching performance 3044,4465235803,1014,640,428,what does the lady do after shaving for a while at the start,4,44652358033,TN,passes him the hat,walk away and play,take camera,put cotton pad,comb hair,comb hair 3045,3981865268,1109,640,480,why did the screen constantly change designs,0,39818652681,CW,music performance,show the whole stretch,camera flashes,take photo,man in grey moving with mouse,music performance 3046,2482028659,643,640,480,what is the guy in the striped shirt doing,2,24820286591,TC,test,horseriding,speech,presentation,play with baby,speech 3047,7988210561,320,640,384,what did the baby do after she touched the toy s hand,4,79882105615,TN,try to crawl forward,smile,take the toy out,close his eyes,pull the toy in front,pull the toy in front 3048,2925298951,398,640,480,what does the woman in red do repeatedly from the middle of the video,3,29252989512,CW,catch baby s attention,pick up the toy,pick something up,adjust her hair,pose for camera,adjust her hair 3049,6621511673,2697,640,480,why is the man carrying the baby girl,2,66215116731,CW,with his hands,playing,playing and teaching with kid,hot sun,play with the baby,playing and teaching with kid 3050,3218498932,892,640,480,what does the boy in white do after laughing for a while in the middle,2,32184989327,TN,climb and move away,talk to camera,look around,feed the cameraman,started talking and move hands,look around 3051,4744503881,488,640,480,why is the music being played with guitar and trumpet at the restaurant,1,47445038812,CW,interview,restaurant music,performance,saxophone player switching to it later,listening to speaker,restaurant music 3052,6617533993,1384,640,1138,why did the boy move to the back at the middle of the video,0,66175339939,CW,play with toy,gesturing to the girl,asking the girl to play,pick up the present,eating sandwich,play with toy 3053,6300775954,1734,480,800,what did the man do when the lady was struggling to stand up,3,63007759542,TC,hold the rope,looking down at piano keys,reads the card,bend down to help her,raise his hand,bend down to help her 3054,4412508597,358,640,480,how many people are filmed,4,44125085975,DC,two,four,seven,one,three,three 3055,6253433310,680,640,480,how many people were in the pool,1,62534333109,DC,eleven,three,two,four,nine,three 3056,3171006258,1099,640,480,what activity was the man doing before he fell,2,31710062588,TP,stand on slope,feed baby,skiing,playing the guitar,talks to the lady,skiing 3057,2821788355,765,320,240,why does the man attempt to touch the sea during his ride,2,282178835510,CW,lost his balance,wash his hands,fun,collect fishes,picking up seaweed,fun 3058,4825843801,710,320,240,how many penguins are there,1,48258438011,DC,five,three,one,four,two,three 3059,6097994550,526,640,360,what does the man on the ground do when the man sat on top of him,4,60979945505,TC,doing push ups,vaping,break free of handcuff,talking,wrestle him,wrestle him 3060,2835125654,1406,320,240,why does the woman in orange turn her back to the elephant and stand still for a while at the beginning of the video,2,28351256540,CW,pick up something under it,take panda from her,posing for a photo,pedalling,gather power to run,posing for a photo 3061,4367056464,1162,640,360,how did the girl feel when dancing in front of a group of adults,0,43670564641,TC,excited,confused,found it funny,awkward,shy,excited 3062,4518113460,1867,640,480,why does the baby hold on to the chair at the end,0,45181134603,CW,to stand up,aid him in his movement,secured to the chair,dance,playing,to stand up 3063,6895608152,2178,640,360,why does the lighting of the stage change when the person in white enters the stage,2,68956081521,CW,he is playing music,as a stage effect,change of mood,going with the rhythm,cooling the place,change of mood 3064,7533369046,803,640,360,why is the baby pushing the black desk at the start of the video,4,75333690461,CW,entertain the baby,move back,to feel safe,cover his face,curious,curious 3065,4010069381,369,640,480,where are the people performing,3,401006938110,DL,outdoors,outside restaurant,event hall,stage,public area,stage 3066,3830567237,716,640,480,what do the two women in stripes do at the end while the man is washing the horse,1,38305672378,TC,kiss it,walk past,stand at the side to control the horse,give the girl more food,sit at the side under the tree,walk past 3067,8428551576,2688,640,360,why does the baby pick up the ipod after putting it down,0,84285515760,CW,insert the wire in,press the button,give to girl,shake it,trying to open it,insert the wire in 3068,11587211476,1470,640,360,how did the dog know that he is free to run through the obstacle course,3,115872114766,CH,the owner removed the leash,the owner points at where to go,follow man s hand,trained before,the dog was alone,trained before 3069,3960291106,1428,640,360,why does the man in white cover his mouth with his hand in the middle of the video,4,39602911063,CW,moving with rhythm,talking,beatbox,drinking water,laughing,laughing 3070,4915733559,1069,640,480,why did the woman pass the phone to the baby,1,49157335593,CW,let baby answer the call,involve the baby to see,wanted to be carried,end call,to make baby sit on her lap,involve the baby to see 3071,6097994550,526,640,360,what does the man sitting on top of the man do while the man was lying down,0,60979945503,TC,attack him,feeding the baby,playing the drum,looking around,play archery,attack him 3072,8312058649,774,640,1138,why does the baby move his hands constantly while relaxing on the chair,3,83120586491,CW,baby chair,playing,trying to be comfortable,excited,look at cat,excited 3073,5333075105,1168,640,480,why did the man put his arm on his waist at the end of the video,2,53330751058,CW,angry,to pick up something,exhausted from climbing,massage his back,for fun,exhausted from climbing 3074,4635309062,2076,640,480,what does the man in white do after adding oil at the beginning,0,46353090625,TN,stir fry meat,flip cup for game,instructs man to raise his hands,walks away,head bang,stir fry meat 3075,4882414082,1350,640,480,why did the baby chew on the noodle that is left on the table,4,48824140820,CW,get the fruit,pushing the food in,put the biscuit on the table,play with food,curious and fun,curious and fun 3076,5662041273,2697,640,480,why did the boy stood in front of the fallen helicopter for a while before picking it up in the middle of the video,0,566204127311,CW,trying to fly it,to show he reach,adjust his cap,get ball from man in red,look at the trolley,trying to fly it 3077,9293415110,2160,640,360,how many people are on the stage,2,92934151101,DC,two,nine,four,seven,three,four 3078,3861485381,2686,640,480,what did the man in cap do after the animals went in the forest,2,38614853816,TN,carry the ball on the other side,jump,video other leopards,adjust the canoe,red and white,video other leopards 3079,4166942239,590,640,480,what is the man in red trying to show the man in the suit,0,41669422394,DO,dance move,wine,a cup,his laptop,his new shoes,dance move 3080,5328616848,446,640,480,what did the man do after putting the tray into the oven,4,53286168484,TN,waves at the camera,pick up paper,keep tools in cabinet,carry pole to the other side,doing something with the microwave,doing something with the microwave 3081,2930782930,939,640,480,where is this video taken,0,29307829308,DL,park,on the plane,outside,kitchen,construction site,park 3082,9917882506,974,512,288,why does the girl put down her feet in the middle of the video,1,99178825060,CW,pick up hat,to balance the cycle,jump higher,she fell,for fun,to balance the cycle 3083,5833145209,510,640,480,how did the black bird get out of the water puddle to the side of the pot,4,58331452094,CH,fly off,someone carried the bird,walked out,climb on a wooden stick,jump,jump 3084,6713120511,1664,640,360,how did the first person move down the slope,4,67131205111,CH,walked up,by running up,lady pushes girl forward,with the sleds,slide down,slide down 3085,2885091387,1065,640,480,why is the car moving slowly,2,28850913878,CW,close to the end of the road,give way,hard to move in puddle,no power,get more space to ride,hard to move in puddle 3086,11566980553,1721,640,480,what did the lady do after putting aside the present,3,115669805532,TN,points at the door,carry baby on her tummy,raise her hand,use her phone,continue cycling,use her phone 3087,10042935613,1710,640,360,why does the boy in red stand up near the end of the video,4,100429356132,CW,he is bored,try to blow out cnadles,look at something,check on his friend,to grab the food,to grab the food 3088,2697214342,1498,640,480,how did the man in green bends the wood,3,26972143425,CH,pull and push the side,using a cutter,constantly hit it,with his hand,hanging over fire,with his hand 3089,5056964274,924,640,480,why is there someone else in the video other than the boy,1,50569642743,CW,carry boy,assists boy in drinking,taking pictures of boy,pushing baby pram,prevent boy from falling,assists boy in drinking 3090,3960291106,1428,640,360,why does the woman in black shift backwards near the end of the video,1,39602911062,CW,take water bottle,to clap,play with the lady,get closer to the bell,looking for something,to clap 3091,10001787725,1021,640,360,why is there a fan on the sofa,2,100017877252,CW,left by someone,for the dogs to rest,blow wind,for sale,blowing at the dog,blow wind 3092,4123211145,2697,640,480,how is the taller girl seeing things clearly,4,41232111452,DO,with screw,sit in front,lean forward,use poles,glasses,glasses 3093,6031805098,1368,640,360,where is this video taken,2,60318050988,DL,dancing hall,speech event,roadside,backyard,boxing ring,roadside 3094,4138579400,601,640,480,what did the boy do after he scratched his head,0,41385794007,TN,pick up objects and place it in cup,wipe his face,hug man,walk backwards,turn back,pick up objects and place it in cup 3095,8493226484,968,640,1138,what does the lady do after putting her hand behind the head of the boy at the start,3,84932264844,TN,touches his head,push baby back,pin woman s hair,lean forward,dance,lean forward 3096,3372023610,1017,640,480,what did the man in grey do after the lady in black put the microphone in front of him,1,33720236105,TN,walk away,sing,laughing,look at man in grey,move her hand,sing 3097,4123211145,2697,640,480,why did the girl in orange bite her nail in the middle,0,41232111454,CW,does not know how to dance,lick the icecream,dance move,her nail gets hurt,lady in apron moves her feet,does not know how to dance 3098,5803861992,2145,640,480,what is the brand of the hand fan,3,58038619925,DO,cameraman,car,cards,osim,mobile phone,osim 3099,5017166671,2697,640,480,what did the man at the front do after lifting the circular object up at the middle,2,50171666711,TN,run,look at phone,tap it,digs out sand,hold the boy,tap it 3100,3557498300,849,640,480,what did the man in red do after watching the kite fall down at the end,3,35574983006,TN,sit with his legs crossed,burn the kite,hold onto sides,separate two children playing,threw ball,separate two children playing 3101,3581585756,702,640,480,why does the boy run towards the back of the bus,4,35815857562,CW,try to stop him,go to finish line,pretend to park car,careful of being hurt,playing around,playing around 3102,7771650716,1805,640,360,why is the dog tugging on the leash,3,77716507161,CW,to keep him close,controlled by owner,show excitement,wants to run away,identity,wants to run away 3103,12682618843,1458,640,360,what does the dog do after letting go of the bone after the middle part of the video,1,126826188431,TN,run alone,use paw to grab it,approach another dog,look at camera,looks elsewhere,use paw to grab it 3104,2984974097,899,500,375,how did the girl feel riding the bicycle,1,29849740971,TC,uncomfortable,excited,scared,affectionate,energetic,excited 3105,8464056582,1340,640,360,why did the baby struggle to crawl on the floor,4,84640565821,CW,can not stand,lost balance,change position,lose balance,not experienced in crawling,not experienced in crawling 3106,5681946487,848,320,240,why did the woman use a towel,4,56819464871,CW,wiped the floor,dried her hands,wiped dishes,wiped table,cleaned boy s face,cleaned boy s face 3107,9304738817,345,320,240,how does the lady make the swing move,3,93047388172,CH,using the handle grip,strum the guitar,whip the ladle,push him forward,ride a horse,push him forward 3108,4264435046,566,640,480,how does lady make the dog run,4,42644350460,CH,release leash,throw a ball,cycle and let dog follow,call dog in a distance,pull on leash,pull on leash 3109,6096998186,671,640,360,what did the blonde woman do after she opened her present,4,60969981862,TN,place it on the top,put down the souvenirs,shake her head,let girl blow the candle,hold them up,hold them up 3110,8313365386,318,640,360,what was the girl doing as the lady is sitting next to her,2,83133653863,TC,get up,kneel,looking at a book,empty pumpkin,pin woman s hair,looking at a book 3111,6624174621,1212,640,480,how were the candles blown out,4,66241746214,CH,girl blow,boy blew it out,kept adding wood,light strings,lady blew the candle,lady blew the candle 3112,7114553643,1974,640,480,why did the lady in yellow skirt raise up both hands and sing or talk at the start,4,71145536432,CW,curious,excited to listen,to hold the ball,engage the audience,performing,performing 3113,4925211209,768,640,360,how did the man protect his head,2,49252112095,DO,gloves,on man s lap,helmet,beanie,by watching him,helmet 3114,4123915842,750,640,480,how was the girl dressed up,2,41239158429,DO,move her body,winter clothes,wear kimono,follow a routine,tshirt,wear kimono 3115,6244675392,900,480,640,what activity is being carried out,3,624467539210,DO,playing music,boxing,kayaking,feeding the cat,archery,feeding the cat 3116,3452354871,511,640,360,why did the bird breaking itself after getting of the man s shoe,2,34523548712,CW,feed on the worms,eating leaves,cleaning itself,dipping into waters,biting the tree sticks,cleaning itself 3117,3261079025,553,640,480,where did the plane crash onto,0,32610790253,DL,the snow,zoo,bench,in a house,forest,the snow 3118,3626788516,337,320,240,why does the man opposite the woman in brown hold her camera at the beginning of the video,4,36267885164,CW,script for his speech,check on beat,engrossed in singing,looking at object,take photo for her,take photo for her 3119,3477387686,2034,640,480,what is the lady sitting on the grassland doing,4,34773876860,TC,watching a boy,assisting a girl,resting,reading to boy,playing with dog,playing with dog 3120,4263096481,637,320,240,where did the man put the fish when he was cutting it,1,42630964816,TC, oven,sink area,back to table,the water bottle,his hand,sink area 3121,2809330695,2158,320,240,why is the baby trying to flip his body over several times,1,28093306950,CW,uncomfortable position,change his pose,tries to close her mouth,play with the toy,play with them,change his pose 3122,2614918961,1311,640,480,why does the baby bring the two toys on his hand nearer to each other some times,4,26149189612,CW,try to balance the toy,push the swing,played with them previously,try pull baby to sit up,playing with the toys,playing with the toys 3123,13296054183,303,640,1138,how did the men react when either one of them are moving ahead from the other,3,132960541834,TC,drink,tired,playing instruments,pedal faster,try out poses,pedal faster 3124,5134317883,1890,640,360,why are the men cutting the pumpkin,1,51343178832,CW,display cloth,make props,eat smaller peices,easier to turn,finish eating,make props 3125,3972259774,1063,640,480,why does the man in yellow bring a box out,4,39722597741,CW,transfer tools to bag,take out his team uniform,take out a hat,open his present,give box to lady in yellow,give box to lady in yellow 3126,4968805923,313,640,480,what did the middle man in black do after the rightmost man threw the balloon,1,49688059237,TN,kick forwards,look,jumps,threw balloon,pass on the arrows,look 3127,11871253306,1476,512,288,what does the boy in green do after picking up the ball,4,118712533066,TN,put ball into hole again,move forward to lane,to get another bowling ball,roll it,throw it away,throw it away 3128,2857132732,726,320,240,how did the man change the notes when the baby is trying to play the instrument,4,28571327326,CH,press buttons,pulling the stick,adjust the tightness of the strings,adjust the sliders,using his left hand,using his left hand 3129,3175315183,2513,640,480,why does the baby stretch his hand occasionlly,2,31753151832,CW,to hug lady,draw card,hit the toys,pour water,grab slippers,hit the toys 3130,4419096437,1584,640,360,how does the person signal for the cat to close its eyes,3,44190964374,CH,swing cat in arms,snap his finger,hold it on shoulder,chant and hand gesture,pat its head,chant and hand gesture 3131,3869005094,300,640,480,why are the people dressed in the same costume,1,38690050940,CW,for safety,uniform,for a photo,going on a trip,sunny weather,uniform 3132,8594314852,377,640,360,why did the girl in blue stretch her right hand out at the end of the video,2,85943148527,CW,to slide from left to right,using mouse,hand gesture,dancing,support baby,hand gesture 3133,3060478605,432,320,240,what does the lady wear on her head while riding,1,30604786058,TC,scarf,hat,spectacles,tiara,party hats,hat 3134,2482028659,643,640,480,how many people are in the video,3,24820286594,DC,one,five,eight,four,three,four 3135,3427674558,870,640,480,how many people can be seen dancing on the stage,1,34276745587,DC,one,six,three,nine,two,six 3136,3869005094,300,640,480,how did they move themselves around the hall,2,38690050946,CH,crawling,jumps,went forwards and backwards,standing,lady push it,went forwards and backwards 3137,5863411262,1018,640,360,what does the man in plaid shirt do after putting his hands together for a while at the end,0,58634112621,TN,walk backward,close his legs,pull up his shirt,play guitar,hug,walk backward 3138,3321261856,855,640,480,where is the girl looking at as she stomp her feet near the end of the video,4,33212618566,TC,the lid,her feets,her hands,chair,the cat,the cat 3139,3843551232,696,480,360,how did the small puppy approach the big dog s tail,1,38435512325,CH,avoid them,approach its tail,put food on sofa,by the brush,try to pull out,approach its tail 3140,8428551576,2688,640,360,what does the baby do after grabbing the two metal pans,1,84285515769,TN,clap,play with them,stick out tongue,places the vacuum upright,pushes it,play with them 3141,2835125654,1406,320,240,how do the elephants physically intereact with each other nearing the end,4,28351256544,CH,swim and walk,stroke the lioness head,lean forward,put food into mouth by trunk,touch trunk,touch trunk 3142,10779838974,890,640,1128,what did the girl in white do after turning behind in the middle,2,107798389747,TN,push her,pass to other people,push the rake again,kneel down,walk to the girl in white,push the rake again 3143,5235909148,354,640,360,how did the man travelling on the rope ensure that he did not fall to the ground,3,52359091487,CH,run beside boy,hold him by his hands,with his hands,wearing a harness,using the sled,wearing a harness 3144,4915733559,1069,640,480,how did the boy response afte the lady took back her phone,4,49157335591,TN,start crying,jump up and down,want to snatch phone,start dancing,walk to the table,walk to the table 3145,10727696143,1821,640,480,what was the boy doing before he ran forward at the start,1,107276961437,TP,sitting still,standing and touching his lips,climbing up,smiles,bite a slip of paper,standing and touching his lips 3146,6898821807,585,640,480,what does the boy do after bouncing on the sofa,3,689882180711,TN,get off the sofa,show him a toy,run to kitchen,look at baby,panda toy,look at baby 3147,6443512089,2437,640,360,what happens to the baby when the toy falls off the pavement,0,64435120898,TC,trip and fall,smile,nothing happen,let go of toy,move his hands and legs faster,trip and fall 3148,10779838974,890,640,1128,how many girls are there,1,107798389749,DC,three,two,four,six,five,two 3149,2868183184,1551,500,375,what does the girl do after the woman opens the cap,4,28681831847,TN,take the music script,jumps up,hands over the remote,walks away,look closer,look closer 3150,7059877301,918,640,480,why did the white dog approached the light brown dog,0,70598773016,CW,want to drink water,make dog clap,they pushed him away,chase it,walk around with the other dogs,want to drink water 3151,8403741210,1327,640,360,what does the girl sitting on the left do after supporting her head with her hands for a while,0,84037412105,TN,put hand down,walk over,rolls on the ground,drink from a cup,walks to the boy,put hand down 3152,8513603944,919,640,480,how does the man in black clear the snow,4,85136039449,CH,put in a basket,push to the side,vacuum cleaner,kick it away,shove it out,shove it out 3153,3145698830,1763,640,480,why did the baby stick his hand into the stocking at the beginning,2,31456988300,CW,to play with it,man shake the toy,reaching for book,adult moving his hand,support the baby,reaching for book 3154,4179163342,2172,640,480,why did all the children look intensively at the man in black,3,41791633420,CW,repeating his actions,supervise,witness for the oath,listening to man,introduce his stuff,listening to man 3155,8495272210,630,640,360,how does the lady in yellow change direction,3,84952722101,CH,reach out,sudden giggle,stop moving and stretch arms,with her skiing stick,takes support on the floor,with her skiing stick 3156,6205856607,978,272,480,how does the man react when the horse plays with the girl,4,62058566070,TC,riding,kick the horse,pull the horse away,move his head,smile,smile 3157,4130504920,422,640,480,what did the baby do when the balloon was placed on the her nose near the end,0,41305049202,TC,turn his head,touch cake,jump up and down,close eyes and laugh,pick up the balloon,turn his head 3158,4955723618,1831,640,480,what is the lady in black doing with her hands as she spoke into the microphone at the end of the video,0,49557236182,TC,let lady talk,smiling,signing it,cover her face,say something,let lady talk 3159,4882414082,1350,640,480,where is the baby sitting,1,48824140828,DL,grassland,high chair,baby trolley,living room sofa,room,high chair 3160,4983922034,479,640,480,why do the dogs jump,0,49839220341,CW,bite the snow,playing with kid,bite the toy,posing for camera,look at the cameraman,bite the snow 3161,7331927796,519,352,288,why did the boy lean back near the end,3,73319277966,CW,happy and laughing,let baby explore inside again,reading the book,protecting face from dog sniffing,look at the cameraman,protecting face from dog sniffing 3162,6691330381,1239,640,360,what does the man do after pulling the boy forward in the middle,0,66913303815,TN,hold his hands,touch man s hoodie,let him hold string,smiles,point his finger,hold his hands 3163,5061117640,1587,568,320,what does the man in grey do after pointing somewhere at the end,1,50611176408,TN,dance,stand up,smiling,continue paddling,hit the ball,stand up 3164,4584426085,2697,360,480,what does the person in sandals do when the puppy first put its mouth at the sandals,0,45844260854,TC,move foot away,slapped the dog,use hand to cover mouth,clap,let dog lick,move foot away 3165,8552680285,442,640,360,why are there ropes attached to the man skiing,3,85526802856,CW,hiking,to suspend in air,thick snow on the floor,pull the sled,control their speed,pull the sled 3166,6964124866,515,640,360,how does the child interact with the cards,4,69641248663,CH,bite it,tear it,pass to adult,lick it,playing with cards,playing with cards 3167,2503404966,840,640,480,how does the boy move the toy around,2,25034049664,CH,dribble the ball,jumps,use legs to move forward,press the buttons,flip the toy around,use legs to move forward 3168,6806999702,2697,640,360,why was the girl on the floor in the middle of the video,2,68069997023,CW,get the toy,pick up something on ground,she fell,to take toy on floor,adjusting shoes,she fell 3169,3763643225,1073,640,480,why was the boy raising his arms throughout the video,1,37636432255,CW,exercising,hold the giraffe up,catching a ball,on a rollercoaster ride,part of the dance routine,hold the giraffe up 3170,14003541505,507,640,360,why did the girl in pink move away after touching the baby s chin,1,140035415056,CW,take food for baby,give baby space,to change her dress,take tissues,call for help,give baby space 3171,2435100235,1906,640,480,what does the man cycling do after talking to the man in the trishaw for a while,0,24351002356,TN,take watch out of pocket,lift up the tyre,moves hands,contented,walk behind,take watch out of pocket 3172,6078524411,2512,640,360,how does the baby play with the paper,2,60785244115,CH,bite it,tear it,hit against the table,throw on the ground,throw into air,hit against the table 3173,9082180631,406,640,360,how are the boy and lady moving forward,0,90821806317,CH,slide forward,walk,jump forward,riding horse,cycling,slide forward 3174,6031805098,1368,640,360,why does the man in the white cap flip the beetle,1,60318050981,CW,playing with beetle,so it can move,crushing beetle,pass to boy,excited,so it can move 3175,2830899473,429,640,480,what is the man in grey holding,1,28308994733,DO,scissors,tripod,toy dianasour,dog s paws,offspring,tripod 3176,2435633172,2293,500,375,what does the pig do after digging the ground at the start,4,24356331723,TN,continue rubbing dog s head,run away,jump,wakes up and lean forward,lie in puddle,lie in puddle 3177,5875535585,2291,640,360,what does the guitarist in red do with his head constantly while he is playing the guitar,4,58755355854,TC,lean against the wall,touch his head,rotate in circle,lean backwards,swing his head,swing his head 3178,4774302357,450,640,480,how did the man in grey playing the guitar see his surrounding clearly,1,47743023572,DO,stainding,wear spectacles,hit hand on it,strum strings with fingers,with his hands,wear spectacles 3179,5658916668,660,640,1138,why was the man lying flat on his tummy nearing the end,3,56589166688,CW,sleeping,catch dog,check out the camera,fell from his board,to cushion the boy s fall,fell from his board 3180,4263096481,637,320,240,what did the man do after he cut the head of the fish off,4,42630964815,TN,dive in,lifts up his leg,pose,swipe off food collected on knife,cut open the fish sideways,cut open the fish sideways 3181,5603283408,756,640,360,what was the girl carrying as she walked,0,56032834084,TC,bag,phone,balloon,baby,her young brother,bag 3182,8495272210,630,640,360,where is this video taken,2,84952722108,DL,outside,room,snow mountain,train,outdoor,snow mountain 3183,6713120511,1664,640,360,what does the person with blue sleeves do as the first person slid down,0,67131205110,TC,stand at the side and observe,stands still,sits up,playing with the boy,ski down,stand at the side and observe 3184,7536230796,1773,640,1138,where is the boy hanging out,1,75362307967,DL,playground,home,grassland,outdoors,mountain,home 3185,3471421544,1786,640,480,how does the baby interact with the toy in front of him,2,34714215445,CH,baby frown,rub his stomach,touch the toy with fingers,dad carry baby s body upright,adult push toy,touch the toy with fingers 3186,6691330381,1239,640,360,what does the man do after the boy kicked the man in the middle,1,66913303816,TN,ducks and fight back,man pulls him forward,pick little boy up,let go of boy s hand,put elbow up,man pulls him forward 3187,7453733046,992,640,360,how does the girl in red react after being pulled backwards by the girl in blue,1,74537330465,TN,point below the piano,stands still in shock,run to the back,poke her,the girl slide down,stands still in shock 3188,11849091804,1296,640,360,where are the people hanging out,3,118490918048,DL,snow hill,jungle,water fountain,living room,outside house,living room 3189,6592821115,1800,640,424,what did the lady in grey do after the girl in pink left her side,4,659282111512,TN,point at the music script,walk away,look to her left,excited,place baby a distance away,place baby a distance away 3190,5996148663,498,640,362,how did the lady protect her eyes from the sun,4,59961486634,DO,wear bandage,use her hands,with her long hair,ride behind a tree,wear sunglasses,wear sunglasses 3191,6592821115,1800,640,424,what did the lady in stripped do after the lady in grey hugged the girl in pink,4,659282111510,TN,sit down,point below the piano,place baby a distance away,pat the boy s head,hug girl in pink,hug girl in pink 3192,8188651630,571,640,480,why is the cat clinging on to a colourful sock,1,81886516301,CW,scared,playing,watching the adult,for support,get caressed,playing 3193,6713120511,1664,640,360,what did the man in black do after the first lady slide down,3,67131205116,TN,get up,stand up and flip the chart,tickle her,observe her,stop playing the guitar,observe her 3194,11681746823,608,640,360,what does the baby do after the lady starts shaking her head,3,116817468237,TN,rocking baby,pick up baby,put the pacifier in her motuh,shakes her head,carry baby,shakes her head 3195,11681746823,608,640,360,why did the baby touch the lady s face,2,116817468232,CW,pat her face,clean her face,stop her from shaking,give her a kiss,rub her eyes,stop her from shaking 3196,6860322796,1285,640,360,how did the lady keeps her hair out of her face,2,68603227969,CH,sweep hair downwards,swimming cap,tie hair up,hands,using her hand,tie hair up 3197,3830567237,716,640,480,what does the man in black do as the horse stood still in the middle,2,38305672377,TC,pet,tap his feet on horse,wash horse,training,look at man in grey,wash horse 3198,6037747123,919,640,480,how do the two ladies block the sun from shining at their eyes,3,60377471235,CH,wear bandana,wear a coat,wear sunglasses,use their hands,wear cap,use their hands 3199,7288107396,507,640,360,what did the boy do after he approached the present,4,72881073964,TN,put hand inside the toy,dance,shield himself,touch camera,pick up the present,pick up the present 3200,3960291106,1428,640,360,what is the lady doing as she clapped at the end of the video,2,39602911069,TC,pose,wave,laughing,her hair,pull string from below,laughing 3201,8495272210,630,640,360,why did the lady held her poles up as she skied down the slope,1,849527221011,CW,show the kid it is ok,poles should not touch the ground,to slide,cheer with kids,surrender,poles should not touch the ground 3202,5070310138,1603,640,480,what did the baby do after he touched the man s ears,1,50703101382,TN,holds his arm,put his hand into mouth,take the toy,blink its eyes,touch his hair,put his hand into mouth 3203,4264435046,566,640,480,what was the lady holding on to as she jogged out at the start,4,42644350467,TC,sparkle,bottle,ball,balloon,leash,leash 3204,7001078933,633,640,360,why did the white helmet and black helmet man bend down before moving towards each other,0,70010789331,CW,getting into position,balance themselves,pick something from the grass,doing squats,want to sit down,getting into position 3205,3066064005,819,640,480,how many women in total that can be seen in the video,2,30660640054,DC,four,one,five,seven,six,five 3206,6188449000,1350,640,480,what did the boy do after he put the paper on his body,4,61884490005,TN,walk,stare at camera,put hand in mouth,starts running with the trolley,use it as a costume,use it as a costume 3207,4103088549,485,640,480,how many people successfully got on the surfboard,3,41030885499,DC,twelve,five,three,one,two,one 3208,2573424030,1470,320,240,what does the man with the food do after seeing the dog standing on two legs,2,25734240309,TN,wagging tail,put hand on floor,give dog treat,stop moving,chasing its tail,give dog treat 3209,6895608152,2178,640,360,why is the girl wearing such a white skirt,1,68956081526,DO,her birthday,ballet skirt,wedding,siblings,the lake,ballet skirt 3210,7786283208,636,640,360,why are the babies rolling on the floor,3,77862832083,CW,to reach book on floor,playing with toy on floor,fell down,playing,trying to sleep,playing 3211,11587211476,1470,640,360,where is this place,0,115872114769,DL,field,playground,stage,waterfall,theatre,field 3212,9217939684,1660,512,288,how do the people feel while hanging out with one another,4,92179396846,TC,angry,annoyed,sad,tired,happy,happy 3213,5549243726,527,640,360,how does the girl get the baby s attention at the beginning,3,55492437268,CH,intrigued,take toy bunny,shakes her head,clap,playing with her hair,clap 3214,2405940242,415,500,375,what did the lady do after she collided into the man,0,24059402428,TN,stand up,look down,stopped the bicycle,climb up from the chair,laugh,stand up 3215,3939145327,1194,640,360,why did the girl turned back in the middle of the video,2,39391453274,CW,to dodge baby hitting her,indicating to the camera man,adjust the teddy bear,to check on the kid,to better plant the sapling,adjust the teddy bear 3216,4333544549,1065,640,360,how many men are there,4,43335445499,DC,three,six,four,eight,two,two 3217,5735711594,589,272,480,why does the large white dog bark on the other dogs while the other dogs approach it,2,57357115940,CW,guide the direction,play with it,to claim territory,get feed,escape,to claim territory 3218,2584172238,719,320,240,why did the women in yellow suddenly lift the baby in blue up before the baby reached the end of the slide,3,25841722382,CW,dry her hands,celebrating birthday,girl in green is deaf,make space for girl,wants her spot,make space for girl 3219,10607095936,1080,640,360,what does the man in red vest do after the man in red cape raise his hand at the end,1,1060709593610,TN,grab his shoulders,hi-five him,count down,turns and looks at him,take his phone out,hi-five him 3220,6046149003,541,640,360,why does the girl in white stretch her hands out while staring outside,4,60461490034,CW,look closely of the teeth,help the girls,to give people when painting,engage the audience,hold onto window sill,hold onto window sill 3221,2495861393,1499,500,283,why does the woman bent near the beginning,0,24958613931,CW,take out food,controlling kite,grooving along with music,speaking,pick up something,take out food 3222,5323654756,2032,640,480,what is the girl in green doing as she sat on the chair at first,1,53236547562,TC,look at the paper,looking at girl in pink,raise their hands,watching television,patting the dog,looking at girl in pink 3223,3107742409,1604,500,280,how is the baby being held,2,31077424092,CH,being swung in a cot,by the woman,by man s hands,laying on the ground,laying in the pram,by man s hands 3224,4782722858,1234,640,360,what did the lady in brown skirt do after the second time she shaked her body,0,47827228584,TN,clap,look at orange cabinet,catch baby,walk back to the lady,put hands together,clap 3225,2821968703,900,320,240,where is this happening,1,28219687037,DL,residential area,sea,skate park,swimming pool,living room,sea 3226,2401167740,390,500,375,how did the man feel after drinking his drink from the cup,4,24011677402,TN,worried,frustrated,calm,frightened,happy,happy 3227,4542882771,866,480,640,how is the baby eating,3,45428827710,CH,fed by lady,hold the bowl,grab with hands,with spoon,with fork,with spoon 3228,9528990839,427,640,480,what did the lady do after she smiled into the camera at the end of the video,1,95289908398,TN,swing her leg,wave,moved her hand down slowly,holds the book,turn to the front,wave 3229,3524939594,436,320,240,why does the man pushing the cart squat down a bit after stopping the cart in the middle,4,35249395945,CW,to make space,touch the woman,to go down the slope,walk off,get himself to stop,get himself to stop 3230,6786501294,1806,604,1072,what is the cartoon on the cake,3,678650129410,DO,yellow,strawberry,robot,cartoon character,brown,cartoon character 3231,4761953886,797,640,360,how many dogs are there,2,47619538865,DC,three,two,one,six,four,one 3232,6762389913,1371,640,360,where is this happening,3,67623899138,DL,wooded areas,hiking,bowling alley,bedroom,classroom,bedroom 3233,5308503740,1609,640,480,what is the animal shown in the video,0,53085037403,DO,rabbit,sheeps,elephants,birds,penguins,rabbit 3234,4443526735,472,480,640,why was the baby s back facing the camera at the end,1,44435267355,CW,dropped his toy,the swinging chair turned,focussed on something else,looking for baby on left,record for memory,the swinging chair turned 3235,2735019707,583,640,480,how many drums in total are there for the people to play,2,27350197079,DC,four,two,six,three,eleven,six 3236,2821788355,765,320,240,how did the man make sure that he does not fall,4,28217883553,CH,standing still and avoid moving,attached to a safety harness,removes his belongings,hold onto cap,bend properly and hold tightly on rope,bend properly and hold tightly on rope 3237,4698622422,1252,640,480,how was the boy moving the ball right before he fell,3,46986224229,CH,using his hands to push,hold on to floor,run around,use racket,push,use racket 3238,4857781123,1101,640,1138,how does the dog react after seeing the toy at the beginning,3,48577811235,TN,lift head up,go to the person in sandals,feed dog,interested,biting,interested 3239,3708066257,477,640,480,how many peopl are dancing,4,37080662571,DC,one,three,four,five,two,two 3240,4983922034,479,640,480,how many dogs are there,4,49839220345,DC,six,two,nine,one,three,three 3241,7531285946,1170,640,360,how did the lady in green support herself as she climbed up,2,75312859464,CH,take big steps,takes support on the floor,held the two poles,by the fence,hold the rope,held the two poles 3242,7330294814,2298,640,360,what does the lady in white do after walking a few steps at the start,1,73302948146,TN,jump and switched off the light,sit down,feed horse with grass,picks up something to drink,push the rake again,sit down 3243,4765564263,420,640,480,how did the girl in black suit move away from the orange sheet,3,47655642634,CH,jump off,crawl,skateboarding,walk,hold onto rope,walk 3244,9409566840,1040,640,360,where are the dogs hanging out,1,94095668404,DL,a forest,room,outside in snow,snow wild,bed,room 3245,3972259774,1063,640,480,what did the bald man at the back do when he saw the group of people in front of the camera,2,39722597745,TC,gave them a drink,move towards the woman,pause to look at them,nod to them,throw ball,pause to look at them 3246,3508407941,513,640,480,why does the baby hold on to the green handler while playing,4,35084079414,CW,part of toy,push trolley,to play with dog,to sit down,for support,for support 3247,3471421544,1786,640,480,why does the baby stretch his arm forward in the middle,4,34714215442,CW,wipe his face,want to stand up,grab the woman s finger,touch the man,touch toy,touch toy 3248,5256928210,606,640,360,what does the man hold on his right hand while he pats the dog,3,52569282108,TC,camera,soft toy,flower,leash,treats,leash 3249,5885887012,956,272,480,why does the girl stretch her arm up,1,58858870120,CW,tap on screen,moving the pram,get the phone,control dogs,posing,moving the pram 3250,3508407941,513,640,480,what is the baby doing,4,35084079415,TC,singing a song,lying on the chair,nod his head,guitar,playing,playing 3251,3427674558,870,640,480,what activity is being carried out,1,34276745583,TC,a talk,dance,egg hunter,playing,horse riding,dance 3252,8594309349,459,640,360,how did the lady in black ensure she knows the time,3,85943093493,CH,ask her friends,check the phone,look at the clock hanging on the wall,smart watch,look at the laptop,smart watch 3253,10001787725,1021,640,360,how does the woman move the baby backwards,4,100017877255,CH,carry her,jumping up and down,shake baby with leg,hands support bum and back,moves her hand,moves her hand 3254,7453733046,992,640,360,what did the girl in pink do when she saw the man putting the ball on the water,0,745373304614,TC,turn around and cover face,moves her hand,gets off the bed,run back,stand and watch,turn around and cover face 3255,4762946272,647,640,360,how did the boy respond after the woman took the measuring spoons away from him,4,47629462726,TN,pick it up,picks the cup up,pour flour,sniff her shoe,looks at spoon,looks at spoon 3256,5008618500,754,640,480,how does the lady fix her hair in the middle of the video,4,50086185005,CH,playing with cutlery,hold up toy,turns it round and round,use hair band,put hair behind ear,put hair behind ear 3257,8254300526,1104,640,1138,how does the baby grab onto the pole,1,82543005266,CH,put in trolley and push,with both hands,flip the toy around,bit it,by pushing it,with both hands 3258,3151715056,1895,640,480,why did the little girl put her face on the arm in the middle of the video,1,31517150565,CW,wipe her face,shy,sleepy,get closer to the bell,wipe her arm,shy 3259,4219909195,1003,640,480,what did the girl do after she stood up at the beginning of the video,3,42199091951,TN,talk,pat her face,pick up something,touch the shoulder and hair of the man,stroller,touch the shoulder and hair of the man 3260,2984974097,899,500,375,how many wheels does the girl s bike have,3,29849740976,DC,five,six,seven,four,three,four 3261,8797589693,2699,640,480,why did the man in blue turn to the lady in grey jacket before sitting down,0,87975896933,CW,talk to lady,want to hug her,to pass her something,audience,get a better view,talk to lady 3262,8557532213,379,640,360,why did the baby wear something on his head,0,85575322133,CW,shade the sunlight,role play,protect head,swimming,skiing,shade the sunlight 3263,2726497009,1575,640,480,why did the male rider slow down a little halfway through,1,27264970099,CW,because he lost balance,to make a turn,make a hand gesture to someone,look at the cameraman,focus on the lady,to make a turn 3264,3192668394,2079,320,176,how does the man in brown feel while moving his head and body on the sofa,3,31926683945,TC,confused,angry,sad,happy,sore,happy 3265,3943634344,629,640,360,why is the woman pointing at each picture in the book,2,39436343440,CW,colouring the book together,flip to another page,direct the baby s attention,talking to students,let the baby recite,direct the baby s attention 3266,3655906094,563,640,480,why did the man in blue hat bend down after talking to the indian man,0,36559060944,CW,put down instrument,pick up the water bottle,pick up dog,baby is crying,stoped by boy in green,put down instrument 3267,2400171624,996,500,375,why did the skier took so long before he went down,0,24001716240,CW,preparing,thick snow on the floor,follow trail,change posture to support baby,want to try another hill,preparing 3268,5679866364,750,640,480,where is this place,1,56798663647,DL,kitchen,beach,bus terminal,bedroom,a hut,beach 3269,6690256857,344,640,360,how did the man spray water on the dog,4,66902568575,CH,tilt th ebottle,scrub dog s body,with a wet tissue,hold a scoop,use hose,use hose 3270,3105728894,1512,640,480,how does the man with purple hat keep the hula hoop from falling down,0,31057288941,CH,spin it,hold onto it,carry on shoulders,jumping up and down,hold with hands,spin it 3271,3508459605,2609,320,240,why does the man reach out his hand at the beginning,0,35084596051,CW,invite baby to play,to hug baby,feed baby,pass toy to baby,to hit baby,invite baby to play 3272,7533369046,803,640,360,what is being hung on the baby s neck,2,75333690467,DO,parent offspring,lying down,bib,parent and child,mat,bib 3273,3963997053,573,640,480,why does the man wearing cap backwards have to squat down when the car approaches him,2,39639970536,CW,pat the dog,pick something up from ground,take photo,distracted,escape from car,take photo 3274,9735768590,680,640,360,why does the baby constantly look at the woman,1,97357685902,CW,talk to lady,woman is playing with baby,listening to the person in front,reading from the book,wait for food,woman is playing with baby 3275,3471421544,1786,640,480,why does the chair move throughout the video,0,34714215443,CW,baby trying to walk,dog push chair,they are camera shots,baby was crying,camera taking photos,baby trying to walk 3276,6895608152,2178,640,360,why do the people in red move to the edge of the stage when the person in white enters,0,68956081522,CW,give the stage to the lady in white,lighting effect,main performer,engage audience,main people,give the stage to the lady in white 3277,7508439506,765,640,480,why did the baby laugh,2,75084395060,CW,playing with toy,drinking water,boy played with him,eating food,dancing,boy played with him 3278,5017166671,2697,640,480,what did the person at the front do after the person on the most right started hitting the board at the start,0,50171666718,TN,play his instrument,looks at where it goes,pull the rope,feed baby,press button,play his instrument 3279,8797589693,2699,640,480,why did the man in front moving his hands while talking at the beginning,2,87975896930,CW,fencing equipment,play game,gestured the black man to go,lure the dog to jump,point at the whiteboard,gestured the black man to go 3280,2885091387,1065,640,480,why did the man in blue squat and watch the van driving through the pool of muddy water,1,28850913870,CW,continue to steer,record the moment,pick up a stone,draw something on ground,replace him to play game,record the moment 3281,5064681723,602,640,480,where is this video taken,1,50646817230,DL,in house,zoo,sheltered area,outdoors,kitchen,zoo 3282,7786283208,636,640,360,how are the children positioned on the floor at the start,1,77862832089,DO,sit up,lying down,jump,touch the toys,ski,lying down 3283,12392885583,929,640,480,how did the baby go towards the woman,2,1239288558311,CH,jump,run,crawl,ride the man,carried by man,crawl 3284,7223854838,413,640,360,how does the lady help the boy in green see over the glass in the middle,3,72238548387,CH,put him on the high chair,bring the glass down,adjust level of the table,lift the boy up,brought the glass to him,lift the boy up 3285,4378803532,1310,640,480,why is the person in beige looking at the boy,2,437880353211,CW,boy playing piano,boy serving food,boy playing with sparkle,boy caressing dog,boy learning to walk,boy playing with sparkle 3286,8224504302,1290,640,480,what does the man in black do after putting on his spectacles,2,82245043028,TN,says something,fall down the net,shake finger,look at him,clapping,shake finger 3287,8505893258,888,640,360,how does the lady in pink show her affection for the girls,2,85058932582,CH,hug them one by one,touching and swing,kiss hand,crawl,hit face gently with fan,kiss hand 3288,3530231811,2697,640,480,why is the guitarist contantly turning to look at the paper beside him,1,35302318113,CW,test the sound,play music properly,into music,to focus on performance,reach to take out leaves,play music properly 3289,5667931404,335,640,360,why did the baby pick up the stone from the toy truck,2,56679314041,CW,pull toy telephone closer,show to the cameraman,transfer the stone somewhere else,to understand the tool,play with toy,transfer the stone somewhere else 3290,3974684583,735,640,362,why did the people spin around,4,39746845833,CW,pushing the cylinder,kick the ball,push with stroller,operated by man,standing on rotating floor,standing on rotating floor 3291,9528990839,427,640,480,why is the man sitting in the driver seat pointing around while turning the wheel,4,95289908392,CW,take photo,looking at the scenery,calling out to the lady in purple,wanted to take a fruit,talking to man behind him,talking to man behind him 3292,5235909148,354,640,360,what did the man travelling across the rope do after he reached the other side,2,52359091485,TN,bend down and touch the woman s back,got up,stand on the platform,continue typing,walk backwards,stand on the platform 3293,4942054721,645,640,360,what was the goat at the leftmost doing at the end of the video,1,49420547215,TC,sleeping,moving,point to gradd,pose with its hands,turn to its left,moving 3294,7999756100,618,640,360,where are the people hanging out,0,79997561005,DL,mountain,forest trail,water fountain,living room,studio,mountain 3295,3508459605,2609,320,240,what does the baby do after holding the man s hands,0,35084596055,TN,steps on the toy,nod his head,put his hands on his knees,smiling,shake his head,steps on the toy 3296,2535384528,378,640,480,what does the man in white do after the man playing golf approaches near him,2,25353845289,TN,walk away,hit golf ball,takes his club,raise his arms,look at where the ball went,takes his club 3297,5056964274,924,640,480,what is the boy trying to do with the straw initally,2,50569642740,TC,threw the scarf,posing for camera,poke the hole,feeding the dog,shake the microphone,poke the hole 3298,6078524411,2512,640,360,why did the baby close his eye,4,60785244113,CW,feel scared,playing with man,man touched his face,crying,feel sleepy,feel sleepy 3299,3402648543,516,320,240,how does the big dog attempt to prevent the small dogs from sucking,4,34026485438,CH,jump on its head,bite small dogs head,bark at them,bares his teeth and growl,walk away,walk away 3300,8752043000,1572,640,360,how did the baby react to the pushing at the start of the video,3,87520430001,CH,hand behind head,shake his head,crying,smiling,sleeping,smiling 3301,8505893258,888,640,360,what was the colour of the pot at the back,2,85058932588,DO,blue,brown,pink,light blue,green,pink 3302,5445581571,964,640,360,why did the black spotted dog looked up at the end of the video,0,54455815718,CW,look at white dog,play with brown dog,trying to move it,something caught its attention,react to the lady,look at white dog 3303,2736413196,1617,352,288,what did the man in black do after the man in green turned the camera towards himself,2,27364131967,TN,stretches it out,lean over to man,put hands in the mouth,tilt head,shakes head,put hands in the mouth 3304,6018490041,825,640,480,how many players are involved in the video,2,60184900418,DC,three,two,four,five,one,four 3305,2552130183,2697,480,360,how many people are in the room,0,25521301837,DC,three,one,eight,two,five,three 3306,3508459605,2609,320,240,what happens to the baby as she tries to step on the side of the toy,4,350845960512,TC,cry,fall forward,fall backward,fall to the left,lose balance,lose balance 3307,2796821016,1851,500,375,what does the boy in striped do after bumping into the other boy in the middle of the video,0,27968210166,TN,put leg on other boy,look at the camera,laugh and hold baby s body,walk away from room,hug girl,put leg on other boy 3308,11670386946,998,640,360,why is the big silver aeroplane at an indoor space,4,116703869461,CW,work,moving his body with the rhythm,forgot to be closed,presents wrappers,display for exhibition,display for exhibition 3309,13515224395,1216,640,360,why is the dog panting so much,0,135152243953,CW,being touched by girl,try to bite each other,curious,guide direction,detect what it is,being touched by girl 3310,4179163342,2172,640,480,why did the shortest girl attempt to hug the dog in the middle of the video,1,41791633423,CW,stop it from eating,show affection,playing with it,get it to come out,dog is chewing on toy,show affection 3311,3626788516,337,320,240,what animal is in the video,0,36267885163,DO,lizard,dolphin,deer,bird,crocodile,lizard 3312,4279106208,559,640,360,how did the child react after coming down the slide,1,42791062086,TN,turn behind her,wants to go again,climb on man,walking,smiles,wants to go again 3313,3555755537,1599,640,480,what did the white dog do after it came into view at the start,3,35557555372,TN,crawl out,running,throws it inside the cage,walk and look around,black dog runs it after,walk and look around 3314,5987365500,714,480,640,what is the girl holding,0,59873655000,DO,toy microphone,bin,bib,spoon,pacifier,toy microphone 3315,3388598772,335,640,480,why do the man in blue and lady in black hold onto each other,2,33885987722,CW,fighting,speaking,hugging,moving with the music,shaking hands,hugging 3316,2623954636,931,500,375,how did the boy support himself to stand up in the middle of the video,2,26239546366,CH,touches the baby,hold door knob,with his hands,hold flower vase,leaning on the piano,with his hands 3317,3557498300,849,640,480,how many children are in the video,2,35574983001,DC,one,five,three,seven,kitchen,three 3318,6078524411,2512,640,360,why did the touch his face,2,60785244111,CW,pull his hair,bite his fingers,rub his eye,touch his mouth,touch his hair,rub his eye 3319,6621511673,2697,640,480,what color is the baby s dress,0,66215116734,DO,red,lights,green,grey,light blue,red 3320,13919236672,3924,640,360,why does the girl turn around after spinning for a while near the beginning,4,139192366721,CW,finish playing guitar,keep balance,practicing dancing,look at lady,to look around,to look around 3321,4984331176,300,640,480,why did the students wait for a while before running through the skipping rope obstacle,3,49843311764,CW,not proficient at walking,wait their partner,to tidy their outfit,wait for rope to swing away,get into water,wait for rope to swing away 3322,3981865268,1109,640,480,where is the man looking at when he was moving his body at the beginning of the video,2,39818652684,TC,stretch his arm,sitting,into his computer,his nose,hides below the table,into his computer 3323,3804148568,2697,640,480,why did the man in all black pretend to hold a sword when the two people practising are listenting to the man,2,38041485685,CW,show disrespect,mimicking the actions of the other man,demonstrate holding position,tease man in grey,to pose for a photo,demonstrate holding position 3324,4915733559,1069,640,480,how did the lady take back the phone from the baby,4,49157335594,CH,grab phone with both hands,pushes the boy,move it around,with baby pouch,snatch it back,snatch it back 3325,6690256857,344,640,360,how did the boy try to clean the dog s body,4,66902568576,CH,scratch it,pat the dog,wipe dog with towel,blow dry the dog s hair,scrub dog s body,scrub dog s body 3326,4925211209,768,640,360,what did the man do before cutting the tree,2,49252112096,TP,puts his hand on the baby,fly up,move to position,cycling,turn the model,move to position 3327,6037747123,919,640,480,how does the lady in red shorts position her right hand at the end of the video,2,60377471238,DO,pat lady s shoulder,touch the nose,in her pockets,points towards him,left and right,in her pockets 3328,11244289523,552,640,360,why did the girl in black wear a scarf indoors,1,112442895230,CW,costume,cold weather,ordered by customer,talk,carry baby,cold weather 3329,7999756100,618,640,360,why did the man in blue hold his phone,0,79997561003,CW,record scenery,record performance,to answer call,playing games,taking group photo,record scenery 3330,2482028659,643,640,480,why is he holding a price of paper on his hand,2,24820286597,CW,reading the paper,wipe his hands,help his speech,props,to catch his breath,help his speech 3331,9873067604,920,640,360,which child did the head get touched,1,98730676048,DO,baby,girl,boy near the window,boy in white,the tallest ball,girl 3332,2697214342,1498,640,480,why does the man in green wear gloves,0,26972143420,CW,gear up for work,playing snow ball,catch fish,keep hands warm,cycling,gear up for work 3333,3402648543,516,320,240,what is the relationship between the two small dogs and the big dog,3,34026485430,DO,dice toy,light brown dog,panda,parent offspring,dogs,parent offspring 3334,5877508141,583,640,480,why is the man looking upwards at the beginning of the video,4,58775081417,CW,looking at sky,exercising,looking at bird,looking at plane,looking at boy,looking at boy 3335,3270490566,1515,640,480,why is the man standing on the right moving his left hand up and down the guitar,2,32704905661,CW,play the keys,enjoy the music,strum guitar,singing,part of performance,strum guitar 3336,7786283208,636,640,360,why did the girl in white put her hands on the floor as she moves,4,77862832087,CW,grab toy,learn dancing,she finished her routine,she sat down,trying to stand up,trying to stand up 3337,4984331176,300,640,480,how many groups passed the rope,4,49843311763,DC,one,two,five,six,three,three 3338,3939145327,1194,640,360,why did the girl put her legs down on the floor in the middle of the video,1,39391453278,CW,to balance the cycle,adjust her tricycle,boy was there,for her to stand there,get closer to the bell,adjust her tricycle 3339,2679328607,1047,320,240,why does the baby start crying after the boy in blue puts the toy on her lap,3,26793286074,CW,she wants to drink,scared,throwing tantrum,does nt want the toy,she was hungry,does nt want the toy 3340,4564478328,1410,640,360,how did the lioness who got attacked from the back react,2,45644783288,TC,rest,attack back,turn back and jump,try to pull dog s head up,hit the cat back,turn back and jump 3341,10042935613,1710,640,360,what does the shirtless man do after he grabbed the plate in the middle,0,100429356130,TN,eat,smile,put food back down,play with clay,look into camera,eat 3342,7987845241,1511,640,1138,how many people were needed to hold the dog down during the injection,4,79878452417,DC,six,three,four,one,two,two 3343,2736413196,1617,352,288,what did the man in orange do after he pointed at the laptop in the middle of the video,2,27364131968,TN,look in front,button his blazer,look at the other man,adjust it straight on the floor,dances with the girl,look at the other man 3344,9256409422,2312,640,360,what did the lady do after she finished talking in front of the camera,1,92564094229,TN,dances,nod,look left and right,cry,play with baby,nod 3345,8171216955,550,568,320,what is the relationship between the two children,4,81712169552,DO,school mates,friends,sport team mates,band member,siblings,siblings 3346,8388104887,1233,640,480,why did the dog jump upwards when the human took the ball from the human,4,83881048871,CW,play with baby,to grab it,so that it could grab it,play with big dog,want to catch the ball,want to catch the ball 3347,3595273118,375,640,480,how is the man talking to the audience,2,35952731181,CH,near one another,hand gestures,passionately,carry him,set camera up,passionately 3348,3112351937,448,640,480,why are there so many bubbles,3,31123519375,CW,display,many fish,for baby to play,breathing,blowing soap bubbles,breathing 3349,2957808913,598,640,480,how are the band that appeared in the middle related to the man in the black jacket,0,29578089131,DO,team member,classmate,teacher student,sibling,fatherdaughter,team member 3350,6879924118,488,640,360,why are there three man standing in a line on the field,2,68799241181,CW,to perform,stroke the dog,listen to the man speaking,defender,prevent it from falling,listen to the man speaking 3351,2920952624,825,352,288,what does the shorter woman do after walking away and coming back,0,29209526248,TN,stir fry,dog stop walking,play with baby,hold the mother s hand,touch the plate,stir fry 3352,4127497265,895,360,480,why is the baby looking down in the middle,0,41274972658,CW,pick up toy,reflects,looking own phone,fall,chewing,pick up toy 3353,6727904179,962,640,360,what did the boy do after the lady pointed towards a direction,2,67279041795,TN,lift up the boy,lean on him,look in lady s direction,looks forward,looks at camera,look in lady s direction 3354,4564478328,1410,640,360,how does the lioness standing in front drink water at the start of the video,0,45644783280,CH,bend down,hold edges of crib,water puddle on the side,using back legs,use trunk,bend down 3355,6413546609,1415,640,384,why did the person on the right flip the card at the end,3,64135466092,CW,to look at the card,playing with the card,throwing the card,card was upside down,spinning the card,card was upside down 3356,11503803033,623,640,360,how do the people move themselves forward on snow,0,115038030335,CH,push the stick backwards,on sled,fly in plane,jump over snow pile,pulled by horse,push the stick backwards 3357,8594309349,459,640,360,what kind of sport it is,0,85943093492,DO,scuba diving,obstacle challenge for dog,baseball,dancing,ski,scuba diving 3358,5352022985,1411,640,360,what does the adult do after the dog approaches her,2,53520229856,TN,paw at it,close eyes and open mouth,pat the dog,turn towards lady,bends down,pat the dog 3359,8330342965,1313,640,362,what does the girl do after throwing the airplane,1,83303429655,TN,adjust hair band,run to retrieve it,chase girl,hug woman s leg,laughed,run to retrieve it 3360,4217422838,1261,640,480,how did the boy in green open his present at the beginning of the video,0,42174228383,CH,rip off wrapping paper,remove bubble wrap,remove plastic,put his arm up,open the box,rip off wrapping paper 3361,4123915842,750,640,480,what did the lady in black do after passing something to the lady in green,2,41239158426,TN,unbuckle,walks away,adjust the girl s clothes,pointed at baby,clap,adjust the girl s clothes 3362,2871995580,2697,500,375,how did the man react when the boy swung the stick toy towards the man near the end of the video,4,28719955807,TC,catches it back,stand up and point,kicks it,swing in the video,moved back,moved back 3363,2454242177,1574,320,240,why did the baby kneel down on the floor after walking for some distance with the toy car,3,24542421775,CW,try to make toy work,place is uneven,bite the toy,avoid getting hitted by hanging object,to blow balloon,avoid getting hitted by hanging object 3364,7331927796,519,352,288,what did the big dog after the boy approached the lady,3,73319277961,TN,chase after her,climbing up,bark and jerk,play with the small brown dog,lick his feet,play with the small brown dog 3365,3171006258,1099,640,480,where is this video taken,4,31710062585,DL,outside,desert,along the streets,mountain,forest,forest 3366,2990321092,633,640,480,what did the man in white do after he finished his food,2,29903210928,TN,turn around,adjust something,took a step back,keep his left arm on table,pass paper to woman,took a step back 3367,7691172922,1454,640,480,why did the dog stand up after resting on the mat,3,76911729222,CW,pat the dog,put the dog further,want to play with it,to greet the lady,play,to greet the lady 3368,5133787349,363,320,240,where is this occurring,2,513378734910,DL,garden,car,stage,river,outdoors,stage 3369,5070310138,1603,640,480,what is the baby doing as he sat in a tub at the beginning of the video,1,50703101380,TC,looking at television,reading a book,touch adult,touching her feet,extend his hand,reading a book 3370,5877508141,583,640,480,did the boy get down after the man raised his arm,0,58775081415,TN,no,starts running with the trolley,on man s shoulder,lie down,raise more fingers,no 3371,2405940242,415,500,375,why is the man in red wearing gloves,4,24059402421,CW,cycling stunt,chef,act cool,guide the route to take,protect hands from friction,protect hands from friction 3372,8225502382,1468,640,360,why is the man in dark green running down the slope in the middle of the video,3,82255023821,CW,throw the ball,get into water,pick ball and throw it,doing stunt,to pat the dog,doing stunt 3373,7961460440,360,640,480,why is the man looking downwards most of the time,0,79614604404,CW,get down the cliff,reading,play guitar and sing,wave pushed him,looking at drum stick,get down the cliff 3374,4024008346,588,640,360,how did the child use the yellow balloon in the middle of the video,0,40240083462,CH,hit the blue balloon,with his hands,dragged it up and down,carry the baby,assemble pieces together,hit the blue balloon 3375,2824317018,1606,500,375,what are people in this video doing at the logs or bench area,4,28243170189,TC,singing performance,drinking and talking,lying on bench,making music,sitting,sitting 3376,5048503508,319,640,480,what did the boy in green do after he slowed his running in the middle,3,50485035085,TN,to get another bowling ball,throw the ball,drag toy towards him,run faster,jump into water,run faster 3377,4087013668,1442,640,474,how is the baby rested on the table,3,40870136686,CH,put toy on adult s hand,on his stomach,sititng,sitting on table,uncomfortable,sitting on table 3378,4367056464,1162,640,360,how is the girl positioned in front of the table,1,43670564646,DO,move her hands around on the screen,standing,lie on table,sitting,press the key,standing 3379,9612838272,453,640,360,what does the boy do after sliding down,3,96128382722,TN,pick up grass,lie down,point in a direction,walk,no reaction,walk 3380,2623954636,931,500,375,why did the boy bend down in the middle of the video,0,26239546361,CW,pick up the ball,to show the food,interact with lady in blue,shake away water,pick out food,pick up the ball 3381,8253302563,1056,640,360,what does the boy do after opening the door of the toy car at the start,4,82533025634,TN,happy,look around and raise hands,moves the toy,tried to climb,enters the toy car,enters the toy car 3382,8811725760,631,640,360,how did the girl get down the slide,0,88117257607,CH,slide down,styrofoam,with surfboard,jump down,move baby s arms and legs,slide down 3383,6592821115,1800,640,424,what did the baby in polka dot do when the cameraman extended her hand,4,659282111513,TC,take photos,hug her,jump up and down,walk away,give her something,give her something 3384,3376544720,2158,352,288,where are the people hanging out,4,33765447207,DL,playground,grassland,road,beach,outside,outside 3385,5133787349,363,320,240,what does the man in white do after he enters the stage,3,51337873494,TN,filming,performing,hit cans,does hand gesture,sing,does hand gesture 3386,8594309349,459,640,360,how is the man breathing in the video,1,85943093491,CH,machines,wearing oxygen tank and mask,inhaler,nebuliser,breathing tube,wearing oxygen tank and mask 3387,5433090067,607,480,640,why was there a man following the girl,3,54330900671,CW,to coax her to walk,to climb on th e man s back,walk,look after baby,he is talking,look after baby 3388,8318310610,663,640,430,what does the girls do after kicking their right legs in the middle,3,83183106107,TN,dancing,tap paper on table,unroll the gold toy,move in circle,run after it,move in circle 3389,5735711594,589,272,480,what is the white dog doing in this video,3,57357115947,TC,playing with the person,put white paper in front of dog,get up from the mattress,playing with the other dogs,put toy down,playing with the other dogs 3390,6480018109,709,640,360,how does the man support himself as he walks,2,64800181090,CH,hold the walls,stretch hands out,use walking handle,hold the nurse,hold the table,use walking handle 3391,8224504302,1290,640,480,what does the man in black do after shaking his hand near his mouth in the middle,0,82245043027,TN,look through pockets,take a book out,give to another person,look at the picture frames,puts it back on the table,look through pockets 3392,11871253306,1476,512,288,why are the children running around,0,118712533068,CW,chasing balls,chasing the car,follow child in green,scared,running competition,chasing balls 3393,5658916668,660,640,1138,why did the man sliding downslope stoop low when he slides down hill,4,56589166682,CW,can not balance anymore,get into water,no pedal,finished with the ride,to keep balance,to keep balance 3394,11541421563,2403,640,360,what activity could this be,2,1154142156311,TC,sledding,flying fox,singing,horse riding,feeding egg to fish,singing 3395,5333075105,1168,640,480,how did the man carry his things along with him,3,53330751052,CH,tote bag,ride jeep,on trolley,backpack,on man s lap,backpack 3396,14003541505,507,640,360,why did the girl in pink touch the baby s chin,3,140035415057,CW,wipe the stain,wash her face,tickle the baby,play with baby,remove food residue,play with baby 3397,4219909195,1003,640,480,how did the man see clearly,1,421990919511,DO,stand behind the baby,wear spectacles,moving animation,standing,turn his head to look around,wear spectacles 3398,5913180144,1191,640,480,what do the other people do as the man in grey suit walked to the stage,4,59131801441,TC,clap hands,look at the band,keeps phone in pockets,take photos,stand in their position,stand in their position 3399,3846475848,2138,640,480,where is this happening,0,384647584811,DL,bathroom,road,living room,outdoor,bedroom,bathroom 3400,6031805098,1368,640,360,why does the man in the white cap hit the leaves,3,60318050980,CW,dancing,exercising,clearing leaves,hit off the insect,making speech,hit off the insect 3401,4132599924,781,640,480,what is the the man doing,0,41325999242,TC,pressing buttons,skateboarding,bungee jump,showing us an experiment,packing,pressing buttons 3402,6011836129,1447,480,360,why do the women look down and up,0,60118361299,CW,doing yoga,their head hurt,talk to each other,to play drums,trying to find something,doing yoga 3403,6205856607,978,272,480,how does the girl in pink react when the horse licks her,0,62058566076,TC,smile,shouted,run away,jumped,disgusted,smile 3404,6037747123,919,640,480,why is there a stanta claus soft toy on the vehicle,3,60377471230,DO,entertain baby,to help fix the wheel,playing with toys,decoration,want to pick up it,decoration 3405,4915733559,1069,640,480,how did the baby support himself when standing on the platform,4,49157335596,CH,on his arm,holding the barrier,hold the baby s arms,on the table,hold on to the sofa,hold on to the sofa 3406,5623068492,2375,640,480,what does the man with white hair do after punching at the start,0,56230684926,TN,ducks,moving his body with rhythm,wear jacket,caress his hairs,kneel down,ducks 3407,7059877301,918,640,480,how many dogs are there in the video,2,70598773017,DC,one,four,three,six,five,three 3408,3145698830,1763,640,480,how did the man tell the baby to sit on the white stuffed toy,2,31456988306,CH,pat the toy,kiss to the baby,point towards it,pull his legs,watch baby closely,point towards it 3409,4984331176,300,640,480,how is the rope being swung,3,49843311767,CH,controller,operated by machine,moving the flag up and down,two people swing it around,boat pulling the string forward,two people swing it around 3410,2957808913,598,640,480,why did another man in brown walk towards the band towards the end of the video,2,29578089134,CW,rest,recording video,give them instructions,play with them,performing the guitar,give them instructions 3411,6244675392,900,480,640,how does the baby react after the cat jumps off the man s lap,4,62446753929,TN,look towards the camera,looked at the wall,fidget,resting,looks for the cat,looks for the cat 3412,6201488511,2575,640,360,why did the man move his lips,2,62014885113,CW,eating apple,drinking water,talking,posing for a photo,blow candle,talking 3413,5349766264,1884,640,362,what did the lady do at the end of the video after their performance,2,534976626411,TN,closes the lid,walk away,picks up her phone,move her arms,look up and smile,picks up her phone 3414,6183104292,593,640,480,why is the man in grey shirt tilting the container at the start of the video,4,61831042920,CW,getting ready to hit ball,plant sapling,mixing things,talking to man in black,pour food out,pour food out 3415,4635309062,2076,640,480,how does the man in white ensure the meat is cook thoroughly,0,46353090628,CH,constantly stir frying it,put their head through the holes,placed on plate,uses its paw,use towel dry throughly,constantly stir frying it 3416,8107573462,406,640,360,why did the boy sit on the ground,3,81075734620,CW,he wanted to roll in snow,man pushed him,play with snow,he fell down,build snowman,he fell down 3417,5070310138,1603,640,480,where is this video taken,2,50703101389,DL,dinning table,computer table,bathroom,grassland,beach,bathroom 3418,10607095936,1080,640,360,what does the lady do after walking to the man in red cape at the start,3,106070959365,TN,kiss the boy,turn around,avoid him,take his microphone and talk,stop walking,take his microphone and talk 3419,3105728894,1512,640,480,what is the people s occupation,3,310572889411,DO,fireman,celebration,discussion,performers,swimming,performers 3420,13919236672,3924,640,360,why is the girl walking around the room,0,139192366728,CW,looking for toys,talking to girl,speaker,exploring the house,watching performance,looking for toys 3421,4707679105,965,640,480,how did the man ensure he can see the book clearly,0,47076791059,DO,wear glasses,puts book on table,look at book,slides as visual,put his face near book,wear glasses 3422,3171006258,1099,640,480,how did the man balance himself as he was standing up,2,31710062587,CH,hold handle bar,hold the dance pole,hold tree,stretch out his hands,hold the strings,hold tree 3423,7364407194,312,640,424,how many babies are in the video,3,73644071941,DC,four,one,three,two,kitchen,two 3424,2810112808,2669,320,240,how many people are there,0,28101128088,DC,three,eleven,five,one,four,three 3425,6011836129,1447,480,360,which lady is the leader of the yoga activity,2,60118361297,DO,lady in white,lady in black,lady in deep blue,lady in red,lady in orange,lady in deep blue 3426,11966080214,1531,640,1138,why did the girl pull the string of the toy in the beginning of the video,3,119660802144,CW,adjust size of the toy,to help him move again,pose for camera,move the toy,change strap of the toy,move the toy 3427,4147398280,1716,480,360,how does the boy keep himself warm indoors,1,41473982803,DO,cover his body fully,wear long-sleeved clothing,towel,wear shoes,lean against wall,wear long-sleeved clothing 3428,11681746823,608,640,360,why did the lady shake her head,4,116817468233,CW,dancing to the music,disapprove the boy,restless,calling the boy to come down,play with the baby,play with the baby 3429,4671452046,1306,640,480,what did the lady in brown do when the baby toppled the cup,4,46714520466,TC,pull baby away,wipe the table,jump up from her seat,hit the baby,picks the cup up,picks the cup up 3430,3595273118,375,640,480,why does the person in the grey coat raise his hands initally,2,35952731180,CW,emphasise point,wedding,engage audience,wanted to speak something,round table,engage audience 3431,5766018720,1830,640,426,why are there so many toys surrounding the baby,0,57660187201,CW,baby palying,for kid to play,classroom,boy and baby in the room,it is a classroom,baby palying 3432,4782722858,1234,640,360,why did the lady in black swing from left to right,3,47827228586,CW,making a magic trick,posing for the camera,sitting on a swing,dancing to the beat,pushed by lady in red,dancing to the beat 3433,5445581571,964,640,360,why is the white dog and grey spots not moving at the begining,2,54455815711,CW,trying to pick up ball,show that they are domestic,resting,bite the dog,too young,resting 3434,4765564263,420,640,480,what did the boy with orange pants do after gliding for a while,4,47655642638,TN,smile,yes,proud,take a few steps back,stood up,stood up 3435,7331927796,519,352,288,what was the lady doing as the boy approached her,1,73319277962,TC,bend down,sitting on the log,smiles as she plays with baby,looking at book,hold his hand,sitting on the log 3436,9217939684,1660,512,288,what does the baby do after crawling for a short while,0,921793968410,TN,stand up,pick up something,fall down,rise right arm,lies on his side,stand up 3437,4444192938,866,640,360,what does the girl in red do after reaching the bottom of the stairs,4,44441929385,TN,stretch her hands,cross her arms,eat,sit up,runs forward,runs forward 3438,8403741210,1327,640,360,how does the girl sitting on the left attempt to read together with the girl holding the tablet,3,84037412106,CH,look and nod,pointed her reading with pencil,type on keyboard,look at screen,smiles a lot,look at screen 3439,11566980553,1721,640,480,why does the boy go to the lady after picking up the first present,3,115669805531,CW,carry baby,to take the food,try ask for support,put on her lap,to figureo out what it is,put on her lap 3440,7308042410,1019,640,1138,what activity is the girl doing,0,73080424104,TC,pottery,skiing,picking up the ball,playing instrument,cycling,pottery 3441,7442562474,598,640,480,why are the kittens interacting with each other in this manner,2,74425624742,CW,chase the tail of the toy,surprised,playing,get caressed,ticklish,playing 3442,10082798964,345,640,360,why is the lady moving her hands,3,100827989643,CW,adjusting her clothes,drawing,swimming,talking to kid,petting the dog,talking to kid 3443,4333544549,1065,640,360,how many dogs are there,4,43335445498,DC,one,nine,six,four,two,two 3444,3383804222,999,640,480,how many pandas are involved in the video,3,33838042226,DC,five,three,one,two,four,two 3445,8495272210,630,640,360,how did the lady push herself forward at the begining of the video,4,84952722107,CH,man push her,pull the rope,step on pedals,hold onto pillar,push the ski poles backward,push the ski poles backward 3446,13569831214,1664,640,480,what does the second girl do after completing the skiing,0,135698312148,TN,dances,play with her hairs,stand up,pick up leaves,fell,dances 3447,4740074365,584,640,360,why do the two people standing together smile the whole time,1,47400743654,CW,find the baby cute,happy dancing,part of their performance,talk something funny,pose for photos,happy dancing 3448,6297019062,1746,640,360,why is the baby in yellow looking down in the middle of the video,3,62970190621,CW,bottle taken out from mouth,trying to open bottle,dropped his toy,looking at seatbelt,pick up snow,looking at seatbelt 3449,3960291106,1428,640,360,why did the lady looked down at the beginning of the video,2,39602911064,CW,give attention,pick up leash,laughing,to reach book on floor,talking to boy,laughing 3450,5879651428,2697,640,1138,what is the man in white doing as he sits on the bench,4,58796514284,TC,lighting cigarette,hold up a cup,wipe his eyes with towel,talking,playing the guitar,playing the guitar 3451,3508459605,2609,320,240,what does the baby do after first approaching the toy at the start,4,35084596054,TN,turn to his back,sit down,bites it,uncomfortable,steps on the toy,steps on the toy 3452,5945172741,1593,640,480,what did the man do when the child climbed up and approached him,3,59451727411,TC,touch her cheek with palm,go behind the purple pillar,hi-five,play with toy,talk,play with toy 3453,2679328607,1047,320,240,how do the children interact with each other,2,26793286071,CH,point to one another,holds each other's finger,share the toy,hand gesture,tickle one another,share the toy 3454,3164519967,1090,640,480,why did the old lady pat the baby,1,31645199671,CW,baby burb,put him to sleep,baby is scared,baby is crying,sing to baby,put him to sleep 3455,2454242177,1574,320,240,how did the blue toy help the baby to walk,0,24542421774,CH,gives support,with its paws,walking toy,hold front body,threw backwards,gives support 3456,10109097475,2698,640,360,where is this happening,4,101090974757,DL,performance practice,under water,outdoors,playground,runway,runway 3457,5863411262,1018,640,360,what does the man in striped shirt do after the man in white shirt walks a way at the start,4,58634112624,TN,cross his arms and look in front,walk opposite direction,push the trolley,trying to move,caress the donkey,caress the donkey 3458,8080432373,2697,640,360,why did the baby look down at the chair in the beginning,0,80804323732,CW,man points at it,she drops food there,learn to stand,being fed,prevent from falling down,man points at it 3459,3049351381,1542,640,480,why is the kid lying on man s arm,1,30493513810,CW,play with toys,resting,controlling the model toy,they are on a chairlift,lean for support,resting 3460,3869005094,300,640,480,what did the four people do together before they start their practice,3,38690050943,TP,move behind,pass to others,practice another move,raise the sword,bow down,raise the sword 3461,4087654898,330,640,480,how did the girl turn on the hose,4,40876548981,CH,carry a bucket,turn a knob,kicks it,ask adult to turn it on,press the lever,press the lever 3462,5635265624,584,480,640,what is the lady wearing in her left hand,1,56352656246,DO,a ball,watch,cake,helmet,balloon,watch 3463,4217422838,1261,640,480,what did the lady do when the boy was struggling to pull the wrapper open in the middle of the video,2,42174228382,TC,flip it back,look back at her,pull the paper,look at the camera,pick up something,pull the paper 3464,4542882771,866,480,640,what does the baby do after seeing the food spill on the table,3,45428827716,TN,scoop more food in bowl,nothing,smiling,continue eating,eat the food,continue eating 3465,2573424030,1470,320,240,why did the man reach his hand out to the baby at the start,2,25734240300,CW,to carry,pointing something,feed them,to grab the toy,to note something on the book,feed them 3466,4190655097,1290,640,480,where is the cat and the person hanging out,4,41906550979,DL,toilet,golf range,on a pillow,by a stream,in the house,in the house 3467,6168716346,949,640,360,how does the boy with red shirt feel at the start,0,61687163465,DO,happy,emotional,refreshing,annoyed,enjoyable,happy 3468,4636208292,2580,640,480,where are the people hanging out,2,46362082920,DL,zoo,beach,dining table,car,classroom,dining table 3469,5056964274,924,640,480,why did the baby hold something in his hand,4,50569642746,CW,share with girl,give to dog,carry the bottle,to throw,to taste,to taste 3470,8330342965,1313,640,362,why does the girl run from one direction to another,3,83303429653,CW,hitting the drums,there are incoming vehicles,enjoying and playing,pick up the paper plane,different poses,pick up the paper plane 3471,8557532213,379,640,360,how did the boy in blue react after the ball moves away from from the boy in yellow,0,85575322132,TN,chase up the ball,look at camera,put the paper to his face,holds the structure,lay on stomach and laugh,chase up the ball 3472,2599937944,449,500,375,how many people were in the video,0,25999379448,DC,four,one,five,two,nine,four 3473,3741143820,332,640,480,why deos the man with grey and black sweater walks to the corner of the stage in the beginning,0,37411438205,CW,takes his position for the play,bring microphones on the stage,talk to the dancer,adjust his microphone,takes his lyric book,takes his position for the play 3474,3821781616,745,640,480,what did the man do after tapping his leg,1,38217816164,TN,drop into water,nod,rotate them,move forward,take out the paper,nod 3475,9304738817,345,320,240,where is this happening,2,93047388177,DL,bowling alley,office,playground,beach,kitchen,playground 3476,4765717907,1180,640,480,how did the man help the boy reach the goal for him to shoot the ball,1,47657179074,CH,use golf club,carried him,use racket,dribble the ball,using the stick,carried him 3477,3155382178,858,640,480,what does the woman do when she first approached the man at the start,4,31553821789,TC,hold his hand,lying on his stomach,looking at him and nodding,remove the dust from man,kick the man playfully,kick the man playfully 3478,4968805923,313,640,480,how did the man express his excitement after he managed to hit the water balloon,1,49688059234,CH,stabilise himself,throw his cap onto the floor,wave his bat,jump u and down,start dancing,throw his cap onto the floor 3479,2726497009,1575,640,480,why did the second female rider get off her bike,3,27264970096,CW,grab water,met with dead end,keeping an eye on baby,trail too bumpy,adjust shoes,trail too bumpy 3480,6244382586,619,640,360,how did the girl in blue check if the girl in yellow is fine,2,62443825866,CH,pat her back,push her up with hands,look at her,hold her hands,walking in front,look at her 3481,7999756100,618,640,360,why did the man in blue shown after the middle lift up his right hand?,0,79997561004,DO,use phone camera,adjuct helmet,run hand in hand,watch tv,make hand gestures,use phone camera 3482,4740074365,584,640,360,how did the bride keep her hair tidy,0,47400743656,CH,use hair band,tie her hair,with her hand,comb,towel,use hair band 3483,11681746823,608,640,360,how did the baby move,0,116817468230,CH,follow the lady shaking,swing his hands,run around,push the chair,roll on floor,follow the lady shaking 3484,4955723618,1831,640,480,what did the man in black in front of the man in grey do before the man in grey passed him the microphone,4,49557236186,TP,stands still on the left,shakes head,talk into microphone,put hand in mouth,look at man in grey,look at man in grey 3485,4272084125,732,640,480,why is the lady smiling,3,42720841254,CW,gesturing,won the game,speaking,opening the wine,pose for photo,opening the wine 3486,5875535585,2291,640,360,what does the man in black do after he lets go of the mic stand at the start,0,58755355855,TN,goes to the front,continue running awhile,clap,pass to man in blue,look through pockets,goes to the front 3487,5296635780,652,640,480,why does the lady bring her hand near the man s mouth,0,52966357802,CW,teasing him,showing magic tricks,speaking,large crowd,cycling,teasing him 3488,13515224395,1216,640,360,why is the lady squatting on a platform in front of a house,1,135152243950,CW,brush the dog,playing with dog,to keep watch of baby,looking at phone,direct attention,playing with dog 3489,3530231811,2697,640,480,why does not the man wearing black jacket playing instrument,4,35302318112,CW,taking photos,dancing,broken stage lights,bring attention to performance,singer,singer 3490,2987766537,497,500,375,why is there a mat on the floor,3,29877665376,CW,fells down,baby in room,kid dropped it,for baby to rest,play with toy,for baby to rest 3491,6159637889,2250,640,1138,where is the baby resting on,2,61596378894,DL,mobile,in walker,cradle,bed,baby trolley,cradle 3492,4036955771,2697,640,480,what did the lady with a pram do when the band was performing,3,40369557711,TC,jamming,giving speech,sit and listen,stop and watch,thank the audience,stop and watch 3493,4272084125,732,640,480,how is the lady opening the bottle,2,42720841257,CH,using two pots,with a stick,bottle opener,hit the table,press the button,bottle opener 3494,7531285946,1170,640,360,why is the woman holding the two poles while climbing at the start of the video,3,75312859462,CW,act in front of camera,playing with it,support girl,climb up ladder,go kitchen take thing,climb up ladder 3495,2977504625,384,640,360,why did the boy in the car look backwards at the end of the video,4,29775046253,CW,look at clock,to exit through door,pick up the fish,avoid getting hit,looking at man,looking at man 3496,11503803033,623,640,360,why does the person in grey turn around at the beginning of the video,2,115038030331,CW,writing something,look at dog,teaching the person in blue,look at scenery,getting ready to hit ball,teaching the person in blue 3497,4103088549,485,640,480,why does the man fall down towards the end after surfing on the board,1,41030885491,CW,want to do a flip,big wave,tripped down by stone,stay on the board,board is slippy,big wave 3498,3063380173,515,500,375,how did the kitten inside the container react when the kitten outside was moving its paws at the start of the video,3,30633801734,TC,table,tap the cushion it was on,back away,try to touch paws,smile,try to touch paws 3499,5803861992,2145,640,480,what is the lady holding,3,58038619924,DO,grandmother,luggage,wrist band,fan,horse guide,fan 3500,4626535366,1468,640,360,where is this video taken,4,46265353666,DL,front porch,dining table,road,jungle,stage,stage 3501,2482028659,643,640,480,why is the man holding a piece of paper,0,24820286592,CW,speech script,hold painted picture,birthday card,draw on it,set up fire,speech script 3502,4126010904,1698,640,480,why does the man in beard move away from the frame near the end of the video,4,41260109042,CW,dismayed that plane landed on roof,fell down,struggling to open packaging,he lost,turns to the back,turns to the back 3503,7416295940,2388,640,384,how does the baby play with the yellow toy,4,74162959409,CH,stack together,put it on bicycle,kiss it,press button,dragged it up and down,dragged it up and down 3504,3105728894,1512,640,480,why is the person carrying a hula loop jumping with one leg in the middle of the video,4,31057288942,CW,jump out of hoop,being a clown,dodge opponent s foil,injured his other leg,perform tricks,perform tricks 3505,6233408665,2246,640,360,why are the two girls sitting at the table,3,62334086650,CW,watching television,posing for photo,eating snacks,watching people perform,talking to lady in white,watching people perform 3506,4968805923,313,640,480,how did the man in white react when the man in black threw the balloon,2,49688059238,TC,hi-five and pat shoulder,push the man in black jacket,wave bat to hit it,walk towards the thrown disc,jumped,wave bat to hit it 3507,2495861393,1499,500,283,why does the girl lean forwards while the adult picks up the carrot near the beginning,2,249586139310,CW,to eat,baby gets excited,curious,blow candle,guiding the dog,curious 3508,6136926089,1522,480,640,why did the boy put his hands on the black stairs,1,61369260895,CW,pick up toy,crawls to climb up,hand was dirty,fell down,cold,crawls to climb up 3509,5902452647,812,640,480,how does the woman in jeans move on the grassland at the end,4,59024526476,TC,bicycle,run,with skateboard,with trolley,walks on her knees,walks on her knees 3510,3557498300,849,640,480,why does the adult throw the kite up at the beginning of the video,1,35574983003,CW,let kids to pick kites,to fly the kite,play with dog,clap his hands,use his phone,to fly the kite 3511,8388104887,1233,640,480,what was the colour of the dog s collar,2,83881048876,DO,light blue,orange,black,navy blue,pink and white,black 3512,4774302357,450,640,480,why did the man in grey in front of the computer put his hands on the table,2,47743023576,CW,comfortable,eating,control keyboard and mouse,for the dog to eat,tapping to the beat,control keyboard and mouse 3513,7987845241,1511,640,1138,how does the dog react when it is being injected,3,79878452414,TC,bite the toy,bark,hop forward,no reaction,pick up food with mouth,no reaction 3514,2973331780,1015,640,480,why did the lady with blonde hair follow the lady in white in the middle of the video,2,29733317805,CW,scratch her head,to jump over,dancing along,check out a shop,cleaning him,dancing along 3515,3814690167,453,640,480,why did the man in glasses bounce up and down at the start of the video,4,38146901670,CW,warm up,supportive audience,clap to the beats,to show his passion for dancing,begin to sing,begin to sing 3516,6265968082,1275,640,360,why is the man in brown strumming the guitar at the start of the video,1,62659680822,CW,posing,performing the guitar,testing guitar strings,adjusting the strings,adjusting sound quality,performing the guitar 3517,3380344744,1485,640,480,why did she use a different cloth to clean the baby,0,33803447445,CW,clean his face,play with the toy,pick bottle up,prevent hair getting into eyes,play with baby,clean his face 3518,3359075894,414,640,480,why does the man in white turn around after throwing the ball near the end,3,33590758943,CW,to see where it lands,look at ladies,prepare for another hit,look at the ball,to catch ball,look at the ball 3519,5735711594,589,272,480,how did the big white dog respond when the smaller dogs approach it,4,57357115944,TC,watch,no reaction,spectacles,yellow toy,ran away,ran away 3520,5561024834,947,640,360,what did the boy do after he walked to the book shelf,1,55610248346,TN,sit on chair,walk back to bed,put down the bottle,play with cardboard paper,keep a book,walk back to bed 3521,5116088152,1205,640,360,what does the baby do after eating the pear with one hand at the beginning,0,51160881526,TN,use both hands,smiling,suck the spoon,pour it out,look at camera,use both hands 3522,3078294001,335,640,480,what does the man in white do after moving away from the man in black,0,30782940015,TN,hand gesture while talking,stand still and talk,extend hand,dance,look at the girl playing,hand gesture while talking 3523,4485707628,1933,352,288,what does the black dog do at the end of the video after running around,0,44857076287,TN,sit and look around,lick the man s face,run away,run in opposite direction,sniffing,sit and look around 3524,3452354871,511,640,360,why was the bird s head moving vigorously,0,34523548716,CW,cleaning itself,showing affection,small and light,playing with toy,to shoot,cleaning itself 3525,9082180631,406,640,360,how do the two stand people move along the road,1,90821806310,CH,drive in a straight line,ski,in a car,sitting on sledge,fly in plane,ski 3526,6291413193,1980,640,480,why did the lady in white hold up the black object and put it near her mouth,2,62914131933,CW,lady in black is fatter,listening attentively,page message over,put down glass,signal old lady to wave,page message over 3527,8107573462,406,640,360,why did the boy stay on the ground after falling down,1,810757346211,CW,can not climb so decided to crawl,lazy,observing where to go next,to move to the camera,boy is nascent and learning,lazy 3528,6253433310,680,640,480,what did the boy do after he bent his legs underwater,3,62534333107,TN,stare at it for awhile,swim back towards the man,dive in,change posture underwater,move back to spot to jump,change posture underwater 3529,9735768590,680,640,360,what did the woman do after she tickled the baby in the middle,1,97357685908,TN,does hand gesture,look at baby,take off bib,pop it,laughs,look at baby 3530,3155382178,858,640,480,why does the woman try to kick the ball even though the man has already kicked it away,0,31553821782,CW,tackle the man,get ready to catch ball,play with baby,to pick up the ball,to pat it,tackle the man 3531,8171216955,550,568,320,why are there so many cards placed on the table,4,81712169553,CW,discussion,explain the source of honey,people are playing,make art work,let children play,let children play 3532,5533380417,403,640,362,why is the man holding a baby in his hand,2,55333804170,CW,support the boy,play with baby,to rock baby to sleep,make the baby calm,putting to sleep,to rock baby to sleep 3533,3557498300,849,640,480,where are the people at,2,35574983002,DL,in the sea,living room,park,classroom,airport,park 3534,8208035645,428,640,360,why was the boy looking down at the start of the video,3,82080356455,CW,pick up the stick,look for other ship,to see how to move the rod,looking at the slope,trying ot open bottle,looking at the slope 3535,4075791856,2250,640,480,how did the two people in front of the table amplified their voice,1,40757918561,CH,mic,speaking in the microphone,hand gestures,mircophones,tilting their heads,speaking in the microphone 3536,8254300526,1104,640,1138,how is the baby positioned at the start,0,82543005265,DO,sit up,lady pushes girl forward,safety belt,sitting on baby chair,walking,sit up 3537,4978714491,1200,640,480,why is there words and numbers on the board in front of the bus,3,49787144915,CW,watching,advertisement,not in operation,indicate the bus number and route,to signify something,indicate the bus number and route 3538,4024008346,588,640,360,why did the child bend down at the beginning of the video,2,40240083464,CW,pick up the present,to dance on the floor,throw balloon,picks up the grey jacket,look at man,throw balloon 3539,4333544549,1065,640,360,why does man in white bend down,1,43335445491,CW,pick up rubbish,pat dog,carry box,bow to man in blue,to dodge ball,pat dog 3540,3942617402,738,640,480,why is there smoke when the train engine is moving,0,39426174020,CW,combustion,for a ceremony,check for safety,cars passing by,safety,combustion 3541,14003541505,507,640,360,how does the girl in pink interact with the baby at the end of the video,1,140035415059,CH,change his shirt,carry the baby,turn the handle bars,picks the toy from the floor,read him a book,carry the baby 3542,4273039295,2214,640,360,why is there an adult wearing green following the baby when the baby walks around,3,42730392953,CW,make baby eat apple,listening to her,pass her something,look after the baby,taking picture of baby,look after the baby 3543,5561024834,947,640,360,how does the boy move on the floor,4,556102483410,CH,crawling,touching the controls,toy bike,he is in a boc,jumps,jumps 3544,5352022985,1411,640,360,why does the adult bend down after the dog approaches her,2,53520229851,CW,catch the ball,let dog jump on her,pat the dog,feed the dog,put on leash on dog,pat the dog 3545,3784543730,852,640,480,what is the man in black doing,1,37845437307,TC,happy,cycling,using laptop,skiing,talking,cycling 3546,4896969617,350,640,480,what did the girl in white do after she was at the top of the slide,1,48969696177,TN,switch on it,prepares to slide,push boy on swing,jump off seat and spread arms,happy,prepares to slide 3547,4006608424,2697,640,480,how did the man get off the swing the second time,3,40066084243,CH,another man hep him,rolls down,walks away,falls down,stands up,falls down 3548,2405940242,415,500,375,how did the man in red protect his hands from the friction,2,24059402422,DO,smile with teeth,standing,wear gloves,swim,control his computer,wear gloves 3549,5803861992,2145,640,480,how did the woman beside the baby girl entertain her,2,58038619921,CH,pull her legs,crawl,hit face gently with fan,kiss the baby on forehead,tickle her belly,hit face gently with fan 3550,8493226484,968,640,1138,why is the woman holding onto the boy constantly,2,84932264840,CW,assist the boy in swimming,he can not swim,support him from falling,dancing with him,play with boy,support him from falling 3551,4707679105,965,640,480,what is the boy looking at as he sat in front of the man,3,47076791058,TC,playing with toys,eat taco,playing with the puzzle,book,kiss the boy,book 3552,5235909148,354,640,360,how does the man travel from one tree to another,2,52359091481,CH,moving the bicycle,chop the leaves,slide on rope,cycle,walking,slide on rope 3553,8594314852,377,640,360,why did the girl in blue stop and turn around at the start,2,85943148526,CW,pour ingredient in,scared,waiting for the lady,take out vegetables,dance,waiting for the lady 3554,3376544720,2158,352,288,how does the bull move,3,33765447209,CH,galloping,turning in circle,jump up,spin and up and down,run in circle,spin and up and down 3555,4217422838,1261,640,480,why did the boy put one leg on the shovel at the end of the video,4,42174228389,CW,step on insect,push the shovel forward,stand on shovel,part of performance,pose,pose 3556,8783897632,974,640,360,how many people are filmed,4,87838976329,DC,four,one,three,six,two,two 3557,4896969617,350,640,480,how did the girl in white get to the top,0,48969696171,CH,climb,by cable car,by elevator,by lift,the lady carry her up,climb 3558,6239210933,1030,640,480,where is the child hanging out,3,62392109338,DL,playground,bed,kitchen,on a couch in living room,balcony,on a couch in living room 3559,5549243726,527,640,360,how did the baby react aftert he girl claps his hand,3,55492437262,TC,smiles,put the cake aside,show excitement,look at girl,smiling,look at girl 3560,4419096437,1584,640,360,how does the person react after the cat opens its eyes,3,44190964377,TN,no reaction,zooms into the tap,keep watching the string move,use hand gesture,sniffs the camera,use hand gesture 3561,3375218204,2241,640,480,why did the three people put their hand below their legs as they were walking,0,33752182043,CW,playing,to kiss,to pat their head,to grab something,reach for something in back pocket,playing 3562,2400715506,414,320,240,where is this place in the house,1,24007155067,DL,bathtub,bedroom,in a cave,classroom,home,bedroom 3563,3830567237,716,640,480,how does the man in black wash the horse,1,38305672374,CH,with his hand,hose,using a bucket of water,under shower,in river,hose 3564,9088819598,670,640,480,what happens to the ball after the baby keeps moving,3,90888195983,TN,jump towards it,move around,kick her legs,rolls off the chair,let go of one hand and turn,rolls off the chair 3565,7453733046,992,640,360,what does the man in white do after picking up the ball from the water puddle,0,74537330466,TN,takes it near the water hole,turn his head away,run towards cone,step back and raise hands,walk away,takes it near the water hole 3566,7988210561,320,640,384,how is the baby positioned in the video,4,79882105618,TC,sleeping,standing,rolling around,lying on mat,sitting,sitting 3567,4925211209,768,640,360,why is there a large truck at the end of the video,4,49252112094,CW,show game,make different sounds,campsite,pull the fishing rod,to carry the men,to carry the men 3568,8277866423,829,640,360,what did the brown dog do after failing to get the bone,4,82778664235,TN,block the grey dog,licking toy,ran back into the cage,lick the other dog,chew the mattress,chew the mattress 3569,4671452046,1306,640,480,why did the lady in green looked at the baby in her hand for a while,3,467145204612,CW,itching,carrying her,feeding baby,unclear,listening to her,unclear 3570,13884293626,5395,640,360,why is the lady in purple bending over the table,4,138842936262,CW,stabilize food,resting,blow the candles,resting,writing,writing 3571,6762389913,1371,640,360,why did the cameraman caress the black dog after the black dog finished licking for the first time,3,67623899131,CW,happy to be shown affection,playing with each other,comb fur with comb,show affection,give more food,show affection 3572,3164519967,1090,640,480,how is the baby rested on the old lady,4,31645199674,CH,sit on laps,carried in baby bag,support on the side,carried on her back,lie on her belly,lie on her belly 3573,4765717907,1180,640,480,what did the man do after picking the boy up the first time,2,47657179072,TN,hold railing of bed,swing it,move boy,look at mirror,take phone away,move boy 3574,2782658657,787,640,360,how does the girl in pink position her hands while running,3,27826586577,TC,guide bride s hands,hit water with her hands,put on table,stretched out next to her,follow a routine,stretched out next to her 3575,4968805923,313,640,480,where are they at,0,496880592310,DL,field,on a roof,factory,restaurant,gymnasium,field 3576,9408800471,1056,640,480,why does the boy run towards the balloon when it is on the ground,1,94088004717,CW,to catch ball,pick it up,to not step on it,to bounce the balloon,kick balloon away,pick it up 3577,3321261856,855,640,480,why is the toy on the floor moving,2,33212618568,CW,kicked by toddler,kicked by man,the toddler was controlling it,protect baby from falling,pushed by dog,the toddler was controlling it 3578,4123915842,750,640,480,what does the girl do after standing up,0,41239158423,TN,look at lady in black,put down her club,looking down at piano keys,slide down,cycling,look at lady in black 3579,2793806282,1925,320,240,how did the black dog hold the blue toy,0,27938062824,CH,bite it,with two paws,jumping in snow,caress,gets on top,bite it 3580,2435633172,2293,500,375,where is this place,4,24356331727,DL,kitchen,bus terminal,porch outside house,in a building,zoo,zoo 3581,3804148568,2697,640,480,why did the man in all black pointing to their swords while the two people are practising with them,3,38041485684,CW,guide man,introduce his stuff,count the bullets,show where to hit,to give affirmation,show where to hit 3582,3445431963,1276,640,480,why did the first diver wave at the start,3,34454319633,CW,take the food,perform a trick,to signal the seals,greeting,to wave to the dolphins,greeting 3583,10030609934,1680,640,360,how did the boy moved around in the video,4,1003060993410,CH,left to right,touch baby s feet,waves hand,hug the boys tighter,strolls around,strolls around 3584,5623068492,2375,640,480,where are the people hanging out,2,56230684924,DL,auditorium,playground,home,kitchen,lawn,home 3585,8241491518,891,640,480,how does the man deal with the cutoff leaves,1,82414915189,CH,manually,pull,grab the leaves,kick away,set camera up,pull 3586,5926256714,863,640,360,why is the boy looking up,0,59262567145,CW,looking at the man,look at sky,to converse,eating,controlling the helicopter,looking at the man 3587,7499763064,604,640,360,what does the lady in blue hold onto while waiting behind the man,0,74997630646,TC,rope,umbrella,bottle,camera,man s hand,rope 3588,3376544720,2158,352,288,why did the man in stripes hold onto the bull,0,33765447201,CW,stay put on it,cleans the bull,feeds the bull,take a picture with it,the bull is running away,stay put on it 3589,4671452046,1306,640,480,why the cup toppled,3,46714520462,CW,earthquake,man knock onto it,lady pull the table cloth,baby stir too strongly,cat push it,baby stir too strongly 3590,8252088130,426,640,360,why does the lady have to lift her left arm up,2,82520881303,CW,hold her hat,interacting with audience,hold bird,rest on ice box,swim underwater,hold bird 3591,2793260225,558,500,375,what was the man without a cap try to do while on the shoulders,4,27932602250,TC,lean back and play with water,touched his blue beanie,moves the car backward,play rugby,to climb up on shoulders,to climb up on shoulders 3592,5352022985,1411,640,360,how does the dog move through the snow,3,53520229855,CH,thick clothes,skiing,on sled,jumps,carried by boy,jumps 3593,12682618843,1458,640,360,what did the dog do after bringing the bear across to the front at the start,3,126826188432,TN,walk towards the cameraman,carry dog up,wag tail,bite it,looking at the baby,bite it 3594,3026084730,2205,640,480,how did the man in the middle signal that his speech is over,2,302608473012,CH,strap around his neck,run towards the starting point,hand gesture to move,pass his microphone,uncross point cross again,hand gesture to move 3595,3131380536,2007,640,480,why does the child hold a scoop,3,31313805364,CW,taste soup,chocolate stuck on his fingers,playing,eating yogurt,feed the baby,eating yogurt 3596,4199369046,1717,640,360,what is the lady wearing on her head,0,41993690467,TC,christmas hat,helmat,clip,crown,halloween horns,christmas hat 3597,10779838974,890,640,1128,how do the two girls plough a field,2,107798389742,CH,holding the dog s collar,holding and pulling it,push the rake,ride a horse,hit face gently with fan,push the rake 3598,4658396458,2160,640,424,how did the toy fall off after the adult has stacked it,4,46583964586,CH,being jumped on,puts the guitar back,putting it on the table,steer,baby pulled them,baby pulled them 3599,2793260225,558,500,375,what did the man in black hat do near the end of the video,2,27932602255,DO,check on the boy,untie the toy,point at the lady,pick ball up,walk away to do something else,point at the lady 3600,2510696559,2117,640,480,what does the boy do after looking down at his bicycle at the start of the video,4,25106965595,TN,stopped and stood still on the tyre,looks at camera,tap it,do a stunt,cycles,cycles 3601,3974684583,735,640,362,why do the people wear neon jackets while in the room,0,39746845830,CW,working time,daylight,night,climb up,provide cinematic effects,working time 3602,6762389913,1371,640,360,what is the response of the black dog as the person caresses it at the end,4,67623899137,TC,look away,calm,move to right side,lie down,enjoys it,enjoys it 3603,5667931404,335,640,360,where is the baby hanging out,0,56679314042,DL,along a pathway,baby crib,house floor,kitchen,in walker,along a pathway 3604,3233088823,462,640,480,what is the time of the day as this construction occur in the video,0,32330888237,DO,night,seesaw,wedding,prototype of a hot air balloon,phone,night 3605,4983922034,479,640,480,why is the man kicking snow,4,49839220340,CW,wants to play,slipped,dancing,playing with child,playing with dogs,playing with dogs 3606,6786501294,1806,604,1072,what is the occasion occuring,3,67865012940,DO,acting,wedding,swimming,birthday celebration,musical performance,birthday celebration 3607,2821788355,765,320,240,what does the man do after travelling along with the speedboat for a while,1,28217883556,TN,lost balance,stand up,take watch out of pocket,exit stage,get out of boat,stand up 3608,2977504625,384,640,360,what did the boy in white do after he looked behind at the start of the video,3,29775046257,TN,run off,walks down the play area,crawled forward towards the man,look forward,talk to camera,look forward 3609,4219909195,1003,640,480,why was the man looking left and right at the beginning of the video,3,42199091956,CW,finding handphone,catching mosquitoes,play with dog,play with girl,examing students,play with girl 3610,2405940242,415,500,375,what is the activity in the video,4,24059402427,TC,feeding dogs,making music,paragliding,trekking,flying fox,flying fox 3611,7887764754,1063,640,480,what is the response of the baby as the dog approaches her at the start,0,78877647544,TC,feed dog,look at baby,follow,love,pushed him away,feed dog 3612,5429688959,2490,640,360,why does the lighting at the back keep changing,4,54296889591,CW,the lights are spoilt,disco lights,man blew them off,camera taking photos,part of stage setup,part of stage setup 3613,3112351937,448,640,480,why did the man with the flippers put his arm around the other man,3,31123519370,CW,wake him up,dancing underwater,push him to fish,help swim upwards,pull him from fish,help swim upwards 3614,8241491518,891,640,480,what is the man doing,0,82414915186,TC,chopping leaves,watching television,pressing buttons,talking,kayaking,chopping leaves 3615,5048503508,319,640,480,what colour boots is the boy in blue wearing while running,1,50485035082,TC,blue,red,black,green,white,red 3616,8171216955,550,568,320,where is the toy dog kept,2,817121695511,DL,roadside,sofa,on the table,kitchen,house,on the table 3617,2809330695,2158,320,240,where is the baby fidgeting,3,28093306953,DL,sofa,on the mattress,kitchen,in the cradle,playground,in the cradle 3618,13884293626,5395,640,360,how is the lady in purple writing her notes in the video,4,138842936268,CH,move her body,stood and wait in front,put hair behind ear,show example,bend over table,bend over table 3619,9208803675,582,640,360,why are there two ladies in red at the standby area,2,92088036752,CW,to catch other girls,waiting for the pan,ensure safety,tell them to disperse,her snack,ensure safety 3620,5352022985,1411,640,360,what does the dog do as the adult ran at the start,2,53520229854,TC,walk towards the cameraman,continue resting,follow the adult,continue catching balls,bite on rope,follow the adult 3621,8024853715,486,640,360,why does the child in the multicolored dress picking up sand,2,80248537152,CW,move with the wind,throw sand to pond,playing with little girl,wanted to build a sand pile,move to different place,playing with little girl 3622,9088819598,670,640,480,how does the baby play with the ball,1,90888195982,CH,throw it in the basket,put it near his mouth,bite it,kick the toy,hit it with hands,put it near his mouth 3623,3198533789,690,640,362,how does the person in orange observe the two men working,3,31985337897,TC,record with phone,stand in between them,laying down,stand aside,go closer,stand aside 3624,6037747123,919,640,480,why did all of the people looking far out,1,60377471232,CW,look at cat,looking for the golf ball,going on a trip,look at something on the ground,they are looking at a video,looking for the golf ball 3625,8211075660,1621,480,360,why was the yellow tape behind lifted up higher at the end of the video,3,82110756603,CW,people walking underneath the tape,someone walked into the tape,tape being removed,police car go underneath the tape,take photo,police car go underneath the tape 3626,2547885226,406,640,480,where is the kid playing,1,25478852266,DL,sports hall,sand pit,bedroom,forest area,playground,sand pit 3627,4264435046,566,640,480,what did the lady do when she reached the end of the road,1,42644350463,TC,smiles,jog the opposite direction,turn around,points at the door,grab the handle,jog the opposite direction 3628,4420239986,669,640,480,how did the dog reach for the cat,3,44202399866,CH,placed in a box,hold camera,grab it,lean on table,flick toy band,lean on table 3629,5133787349,363,320,240,how does the man in black to go on stage,1,51337873493,CH,jump down from platform,push by the man in white,roll in,carry by two man in white,walk up the stairs,push by the man in white 3630,5586394125,1128,640,360,why did the dog with white leash bend down after moving away from the women,4,55863941253,CW,carry her up,wants some more rubs,pee,reward dog,sniff the ball,sniff the ball 3631,2976913210,542,640,480,how did the man ensure safety when riding the vehicle,2,29769132101,CH,wear ribbons,wear headbands,wear helmet,wear binoculars,wear life vest,wear helmet 3632,4249756405,774,320,240,why did the man looked up near the end of the video,3,42497564056,CW,pick up ball,pick up skateboard,play with baby,listening to the lady,make cheers gesture,listening to the lady 3633,4815534482,2250,640,362,why did the boy push his right leg,2,48155344820,CW,playing with ball,kick the cup,move the car,reach for the ball,step on pedals,move the car 3634,2435100235,1906,640,480,why are there so many empty trishaws parked,3,24351002359,CW,the tourist have gone for sightseeing,it is lunch time,business has closed,no business,preparing to be washed,no business 3635,5586394125,1128,640,360,why did the blue shirt woman touch the dog when it came beside her,2,55863941250,CW,take off leash,reward dog,patting it,guide the dog,push it away,patting it 3636,11565498775,1216,640,360,why does the boy let go of the structure at the end,4,115654987755,CW,man pushed him,he fell down,dog nudged him,show he finish chewing,stop playing,stop playing 3637,2930782930,939,640,480,why did the lady looked at the baby and waved to the camera at the beginning of the video,1,29307829309,CW,adjust her hair,tell baby to follow,get the baby to wave back,curious,give attention,tell baby to follow 3638,3861485381,2686,640,480,what did the two leopards do when they reached the higher ground,3,38614853813,TC,attack back,jump,catches up,look straight ahead,hit the smaller elephant,look straight ahead 3639,6329954198,692,640,360,where is this video taken,1,63299541986,DL,park,outdoor,ball room,train,speech event,outdoor 3640,3124551255,1962,640,474,why is the elmo flailing in front of the boy,2,31245512553,CW,spoilt toy,boy hits it,playing with the boy,flapping his wings,lady kicks the elmo,playing with the boy 3641,8495272210,630,640,360,how did the lady protect her eyes from the sunlight,0,84952722105,DO,sunglasses,cap,wear thick clothes,put in the pocket,use their hands,sunglasses 3642,4925211209,768,640,360,why did the crane move around at first before stabilizing,2,49252112093,CW,play with them,run together,adjust to correct position,prepare to jump,lady kicks the horse,adjust to correct position 3643,3974684583,735,640,362,why does the cylinder stop at the rotating floor,3,39746845835,CW,reach out for the electric guitar,from hose,allow the girl to play,prepare to change direction,playing with toy,prepare to change direction 3644,3340340268,1289,640,480,why does the girl in green keep bumping into the side wall at the beginning,4,33403402681,CW,holding the rope,get it to move,video professionally,posing for a picture,ca nt see her way,ca nt see her way 3645,3843551232,696,480,360,why did the black puppy go towards the black and white dog s tail,3,38435512323,TN,to bite it,want to drink,black dog takes away its toy,to smell it,to jump over it,to smell it 3646,3233088823,462,640,480,how is the bulldozer able to reach the rocks in the bridge,0,32330888238,CH,by raising the blade,wearing helmets,move his legs,3 wheels,pull the rope attached to the bridge,by raising the blade 3647,4542882771,866,480,640,what activity is the baby doing,3,45428827715,TC,running,playing with toy,touching dangling things,eating,crawling,eating 3648,3508407941,513,640,480,where is the baby hanging out,4,35084079416,DL,along the road,house,along a pathway,living room,in walker,in walker 3649,12682618843,1458,640,360,what did the dog hold onto with his paw briefly while chewing the bone at the start,2,126826188435,TC,person s hand,cat,toy bear,other dog,eat them,toy bear 3650,7442562474,598,640,480,how do the kittens interact with each other,0,74425624741,CH,hit and bite,gently caress,chase each other,feed water and hug the doll,chase the tail of the toy,hit and bite 3651,4603484665,1045,640,480,why does the black dog walk around the other two dogs when they are interacting,1,46034846652,CW,excited to eat,observing,hungry,want to play with one another,cold,observing 3652,4013751996,764,320,240,what does the girl do after finishing talking at the end,1,40137519968,TN,adjust the stool,sit on grass,walk away,nod,walks to the boy,sit on grass 3653,3261079025,553,640,480,how did the men made the plane fly off,4,32610790251,CH,standing and looking,running,throw the plane,hit hard,remote controller,remote controller 3654,6727904179,962,640,360,why did the man wearing a hat outside swing his papers,3,67279041791,CW,wind blowing his paper,want to throw paper,to hit the boy,show boy direction,act cool,show boy direction 3655,6898821807,585,640,480,why does the boy squeeze the cheek of the baby at the start of the video,0,68988218070,CW,playing with baby,get food out,feed baby,pose for photo,to show woman,playing with baby 3656,3508459605,2609,320,240,where are the people hanging out,1,35084596057,DL,home,garden,zoo,living room,outside house,garden 3657,5498331490,2160,640,480,why does the cat turn around after sitting on the toilet bowl for a while,1,54983314902,CW,playing,cleaning the toilet bowl,drinking tap water,cat was nudged to move forward,lick in another way,cleaning the toilet bowl 3658,6096998186,671,640,360,why is the blonde woman touching the bubble wrap at the start of the video,3,60969981860,CW,wrapping a gift,feel the bubble wrap,pass the bubble wrap to someone,unwrapping presents,hold the bubble wrap up,unwrapping presents 3659,3429509208,374,640,480,why is the baby hiding behind the vacuum cleaner in the beginning,2,34295092080,CW,playing with man,he was stuck at the sofa,want to push vacuum cleaner forward,for baby to clean floor,teaching the kid,want to push vacuum cleaner forward 3660,2716277960,402,500,375,what are the two men currently doing in the forest,1,27162779608,TC,hiking,cycling,pulling rope,toy car,stand and watch,cycling 3661,5879651428,2697,640,1138,why did the man in white looked up near the end of the video,0,58796514282,CW,look at man walking past,to hit man in black s back,check out the instrument,get ready to hit ball,playing basketball,look at man walking past 3662,3049351381,1542,640,480,how is the kid positioned in the video,0,30493513811,DO,lies on adults arm,sit on ladys laps,lying on bed,lying on mat,lying on sofa,lies on adults arm 3663,10082798964,345,640,360,what is the lady trying to explain the kid,0,100827989640,DO,series of actions,to the person opposite her,parent children,teach them dance,help them move feet as trained,series of actions 3664,5913180144,1191,640,480,how does the man in grey hold the man in blue socks,1,59131801447,CH,hugged him,lift him up,gave him a high-five,touch his head,pushed him,lift him up 3665,4087013668,1442,640,474,why was the adult poking the pumpkin with a tool beside the baby,1,40870136684,CW,assist securing at right position,carving pumpkin,cut pumpkin,makes pumpkin soup,finish eating,carving pumpkin 3666,4279106208,559,640,360,what were the lady and the child doing in this video,0,42791062089,TC,playing slide,ski,playing with train toy,playing at the playground,playing in the walker,playing slide 3667,8493226484,968,640,1138,why did the woman move her legs up and down constantly,0,84932264841,CW,play with boy,to move with rhythm of music,to kick the ball,annoyed by the fly around her legs,someone was sweeping the floor,play with boy 3668,4419096437,1584,640,360,what does the cat do after seeing the man moves his hand,0,44190964379,TN,close eyes,run away,on man s shoulder,relaxed,lady s leg,close eyes 3669,2712662377,1048,640,480,how does the other turtle react after the turtle eating pulls on the leaf,0,27126623773,TN,move away,shake its head,happy,moving back and forth,make it do tricks,move away 3670,11503803033,623,640,360,where are the people hanging out,0,115038030333,DL,snow mountain,zoo,garden,house,car,snow mountain 3671,4189100053,874,640,360,why does the woman put out her hand when the boy tries to feed himself initially,0,41891000531,CW,catch dropping cream,food stick on his face,feed baby,keep it in her mouth,the girl is dozing off,catch dropping cream 3672,6617533993,1384,640,1138,what does the girl do after the toy drops,0,66175339936,TN,pick up toy,look to her left,look into the camera,clasp ball together,hug the woman,pick up toy 3673,3489439407,1662,640,480,what does the lady in blue hold in her hand,0,34894394074,TC,pen,pencils,basketball,flowers,ribbons,pen 3674,6329954198,692,640,360,why did the man in black stood up a few times in the middle of the video,2,63299541983,CW,pretend to be a bull,to check progress,change the place,hand gesture while talking,explaining something,change the place 3675,6031805098,1368,640,360,why did the boy in yellow shirt approach the beetle,3,60318050986,CW,dance,wants to play with him,curious,take a photo,reposition trolley,take a photo 3676,7364407194,312,640,424,what did the baby in blue do before he looked up at the end,2,73644071943,TP,smiles,crawl over,looked to his right,put it in cylinder,bored and uninterested,looked to his right 3677,3376544720,2158,352,288,why did the man in black walk briskly,3,33765447204,CW,change into his new shoes,get attention of bull,make baby laugh,excited to go up,dance around,excited to go up 3678,10727696143,1821,640,480,how many children are there,2,107276961439,DC,nine,four,one,six,three,one 3679,2987766537,497,500,375,where is the baby lying,2,29877665379,DL,chair,bathtub,on the mat,mobile,baby crib,on the mat 3680,6898821807,585,640,480,what are the boy and baby sitting on,4,689882180710,DO,stroller,balloon sledge,swing,puppet,sofa,sofa 3681,3508459605,2609,320,240,what does the baby do after the man starts swinging his body,4,35084596059,TN,push boy,shake his head,move his body,lean forward,swings with the man,swings with the man 3682,3508459605,2609,320,240,how is the water pumped up,2,350845960510,CH,touch it,scuba tank,man step on the side,water tube,pull with rope,man step on the side 3683,6516459343,2697,640,360,what does the man in white do after holding the shoe stably,2,65164593437,TN,plays the guitar,sitting,position and aim knife,hitting the pole,put on table at the back,position and aim knife 3684,3429509208,374,640,480,why did the boy stopped moving the vacuum cleaner after turning it to face another direction,1,342950920811,CW,shake off water spill,reach for camera,rub bat,so baby can hold it,resting,reach for camera 3685,8132842161,1105,640,360,why did the man in blue clap his hands,3,81328421615,CW,play with boy,encourage boy,gesture to animals,show amazement,celebrating birthday,show amazement 3686,6898821807,585,640,480,why is the boy touching the cheek of the baby with his own cheek in the middle of the video,3,68988218073,CW,wants to eat his food,to cover baby face,protect the baby from falling,playing for fun,feel temperature,playing for fun 3687,9873067604,920,640,360,how did the girl react when the person touch her head,2,98730676047,TC,brush away hand,no reaction,turn head and smile,start crying,yawn,turn head and smile 3688,3456030972,755,640,480,what is the relationship between the man in red and the chidlren in the room,3,34560309725,DO,team member,dance move,a speech,teacher student,bride and groom,teacher student 3689,8024853715,486,640,360,why is the child in pink standing in the background,0,80248537153,CW,she is watching,avoiding the sun,curious about the tree,reading book,to juggle balls,she is watching 3690,5504913999,1475,640,360,how did the man support himself to prevent fall at the end of the video,3,55049139998,CH,support with ski equipments,reach for the tree,hold on to the paddles,support with poles,hold on to the lady,support with poles 3691,2932897373,558,500,375,why are there a man in grey and a lady in white looking at some sign boards along the street,0,29328973731,CW,shopping,pose for photo,adjust their glasses,read marriage vows,gesturing instructions,shopping 3692,8064178441,2229,640,1138,why does the girl touch the toy after the toy falls down,0,80641784413,CW,attract the baby,it comes as a set,lost balance,put on shoe first,affection,attract the baby 3693,2793806282,1925,320,240,how does the lady assist the black dog in swimming in the pool,1,27938062820,CH,hug it,helping it stay afloat,pull the leash,use pail,put on float,helping it stay afloat 3694,9498159305,1275,640,360,what animal is beside the man as he is sitting,4,94981593051,DO,parrot,duck,cat,dog,penguin,penguin 3695,3763643225,1073,640,480,how did the boy feel when he plays with the paper giraffe,0,37636432253,TC,happy,tired,angry,sad,shocked,happy 3696,8783897632,974,640,360,what does the man in white do after getting off his bike in the middle,0,87838976320,TN,push bike,tries to put out fire,stood up,point and talk,throw it aside,push bike 3697,3508459605,2609,320,240,why does the man stomp on the side of the toy,0,35084596052,CW,push out water from the toy,kick it,make noise,flatten it,step on bug,push out water from the toy 3698,2973331780,1015,640,480,why was the lady in white on the sofa holding her hands in front of her,3,29733317802,CW,to balance,rest,likes the company,recording,curious,recording 3699,5323654756,2032,640,480,what is the girl in pink doing as she holds on to a bunch of balloons,1,53236547560,TC,run towards the lady in black,spinning around,went into a room and closed the door,singing,swinging her arms,spinning around 3700,7088595057,1052,640,480,why did the big white sheep nuzzle the black sheep with its nose,0,70885950573,CW,feeding the baby,eager to start moving,play with big dog,to play with him,interested,feeding the baby 3701,8318310610,663,640,430,what does the girls do after turning to their left for a while at the start,2,83183106106,TN,moves her bag away,walk away,bend down,move to her left,walk over,bend down 3702,6244675392,900,480,640,why does the man suddenly lean backward near the end of the video,0,62446753924,CW,to rest,looking at the view,pushed by waves,fold the sides of cardboard,talking,to rest 3703,6160414832,1831,640,480,why did the man in black move the figure on the board,0,61604148324,CW,playing games,catch it,take it away,to dodge,pass to baby,playing games 3704,8594309349,459,640,360,how is the fish moving its body,2,85943093498,CH,up and down,towards the corals,left to right,towards the boaters,swimming around the shore,left to right 3705,3121571439,1212,640,428,how is the lady feeling after finishing dancing at the end,2,312157143910,TN,wave,get off stage,excited,moves backward,walk away from adult,excited 3706,3502722122,425,480,640,what does the boy do after closing the book at the end,3,35027221226,TN,grab phone,wave at girl,roll around,keep the book on the side,point in a direction,keep the book on the side 3707,7605329840,635,640,360,what does the man wear on his head,1,76053298408,DO,dog s paws,balloon hat,scarf,spectacles,cap,balloon hat 3708,3502722122,425,480,640,how does the boy interact with the book at the beginning of the video,2,35027221225,CH,throw the book,reach out to touch,turns the page with hands,tear the page,shake the book,turns the page with hands 3709,2596300565,2415,500,375,what did the baby do after letting go of the pram,1,25963005656,TN,pick up the tray,move the other side,pick it up,hold hands out around the baby,crawl back up the pillow,move the other side 3710,3960291106,1428,640,360,why does the man in white using a towel in the middle,4,39602911061,CW,dry his shirt,playing,make lying down more comfortable,throw something,wipe his eyes,wipe his eyes 3711,14003541505,507,640,360,how does the baby position her hands when the girl in pink touches her chin,4,1400354150510,TC,on the girl's head,on her shoulders,touch the dog,grab the ropes,stretched out in the air,stretched out in the air 3712,5297811305,720,640,360,what does the baby do after grabbing some snow in the middle,1,52978113056,TN,play with snow,throws it at the lady,move to the rut,unhappy,start skiing zig zag,throws it at the lady 3713,4136617240,2697,480,352,how does the girl move her body,2,41366172405,CH,remote control,crawl on floor,jumping up and down,talk about it,to touch the camera,jumping up and down 3714,8253302563,1056,640,360,what does the boy do after entering the toy car at the start,4,82533025635,TN,happy,bring toy to other side,fall down,put on table in front,sit,sit 3715,4166942239,590,640,480,where is this happening,2,416694223910,DL,outdoors,on the road,living room,trail,beach,living room 3716,9565310990,1066,640,360,where is the baby hanging out,0,95653109905,DL,grassland,along the road,play area,home,homeindoor,grassland 3717,3198533789,690,640,362,why does the man in white bend down,2,31985337892,CW,play with toys,make a toast,holding machine,clean the floor,to kayak,holding machine 3718,7223854838,413,640,360,how are the people positioned in the video,3,72238548385,DO,sitting,shake body,pretend to punch him,standing,lean on laptop,standing 3719,5658916668,660,640,1138,why did the man fall down at the end,3,56589166683,CW,pick up jacket,play with snow,tripped by man,sliding down slope,pushes by man,sliding down slope 3720,2535384528,378,640,480,how many people are together on the field,0,25353845288,DC,three,six,one,seven,eleven,three 3721,2971556305,1459,640,480,how does the lady in pink feel,1,29715563057,TC,upset,happy and dancing around,dizzy,proud,does not like it,happy and dancing around 3722,6018514357,1280,640,1138,what did the baby do when she reaches the steps at the end,0,60185143572,TC,climb up,sit on the steps,cry,look at man,run away,climb up 3723,5586394125,1128,640,360,how did the woman in white show affection to the dog when it came to her,1,55863941256,CH,kiss it,pat it,hug the dog,feed the dog,comb its fur,pat it 3724,2885091387,1065,640,480,where is the car travelling,4,28850913877,DL,carpark,avenue,high way,stage,forest,forest 3725,11587211476,1470,640,360,why is another man preparing to unleash his white dog after the black dog finishes the course,0,115872114767,TN,waiting for his turn,running,jump to bite snow,focused,stand there watching,waiting for his turn 3726,5047408177,648,320,240,where is this place,4,50474081776,DL,field,park,theatre,in a building,outdoors,outdoors 3727,6621511673,2697,640,480,how do the people direct the attention to a magnet on the tree,2,66215116738,CH,taking it down,throw it away,pointing using finger,shine light on it,hit it,pointing using finger 3728,2978295992,1056,640,360,how is the pumpkin being cut,4,29782959923,CH,baby tears it,throwing around,lady in red carried it out,dropped from elephant s mouth,lady uses knife,lady uses knife 3729,5008618500,754,640,480,how did the lady support the baby throughout the entire video,0,50086185007,CH,hold baby s head,carried in arms,swing legs up,tickle the baby,hug each other,hold baby s head 3730,3846475848,2138,640,480,what does the man do after the ferret attempts to run away,0,38464758487,TN,use towel cover it,follow baby,swing his body,go near the dog,watch baby play,use towel cover it 3731,3784543730,852,640,480,where is the man cycling,4,37845437308,DL,playground,outdoor covered area,workshop,contryside,on the road,on the road 3732,6011836129,1447,480,360,where is this place,1,60118361298,DL,restaurant,yoga class,mountain,home,classroom,yoga class 3733,7572859950,497,640,1138,why is lady assisting in making baby wear clothes,1,75728599503,CW,make it tighter,prepare to get out,copy some characters,playing with him,make it neat,prepare to get out 3734,4276006683,799,640,480,what does the person do after shaking the body of the cat at the start,2,42760066834,TN,place cat on carpet,move to other cat,move hand away,jump off,drink water,move hand away 3735,4635309062,2076,640,480,why is the man in white moving the pan,3,46353090622,CW,pour food into plate,having lunch,bring it out,cooking,washing it,cooking 3736,13919236672,3924,640,360,why does the girl look down while walking at the beginning,4,139192366720,CW,she drops the food,she is feeling dizzy,to teach child to walk,give the baby some space,looking for something,looking for something 3737,4013751996,764,320,240,where is the girl hanging out,2,40137519966,DL,bedroom,kitchen,garden,home,room,garden 3738,8188651630,571,640,480,how does the cat play with the human foot,3,81886516307,CH,jump over it,licks the foot,sniffing,grab and bite it,lie on the carpet,grab and bite it 3739,5863411262,1018,640,360,what does the man in white shirt do after the donkey turns his head at the start,1,58634112620,TN,laugh,touch donkey s head,throw the toy,threw his cap,reading book,touch donkey s head 3740,6233408665,2246,640,360,why did the lady in pink adjusted her shirt in the middle of the video,0,62334086656,CW,prepare for her performance,reach the plates,to get up,take photo together,put it close to her,prepare for her performance 3741,3124551255,1962,640,474,how does the man in red help tidy the hair of the boy in the middle,1,31245512559,CH,wear beanie,with his hand,with comb,hairspray,tie them up,with his hand 3742,5766018720,1830,640,426,why was the baby staring at the toy dog at the beginning of the video,3,57660187207,CW,wants to play with baby,take the toy,looking at camera,wants to play with it,support him sit,wants to play with it 3743,9408800471,1056,640,480,why does the dog follow the boy as he hits the ball,2,94088004711,CW,to play with him,pass the ball,interested to play ball,to grab it,catch the ball,interested to play ball 3744,3218498932,892,640,480,what are the boys doing,0,32184989320,TC,watching television,playing,try out poses,cooking,chopping leaves,watching television 3745,3345608051,2250,640,480,why does one of the men bend down after one of the dog is pinned to the floor in the middle,1,33456080519,CW,snif twig,watch more closely,follow direction of man s leg,play with it,fell down,watch more closely 3746,6356067859,1070,640,480,what does the boy in jeans do after approaching the horse at the start,1,63560678595,TN,puts his hand into his pocket,feed horse,tap his feet on horse,throw the sign down,rode backwards,feed horse 3747,6239210933,1030,640,480,what does the child do after finishing drawing,4,62392109336,TN,vacuums the flow,picks up the present,bored,places the vacuum upright,show off her drawing,show off her drawing 3748,3263908208,300,640,360,why are the yachts unstable,2,32639082081,CW,man bounce on it,people are dancing,sea waves,strong wind,choppy waves,sea waves 3749,8495272210,630,640,360,why did the lady in yellow smiled as she moves down the slope,1,849527221010,CW,posing for photo,enjoy skiing,children cheering her,posing for video,enjoy performing,enjoy skiing 3750,2552130183,2697,480,360,what was the baby doing before turning back at the end,4,25521301833,TP,play with owl toy,picks up the car,suck his thumb,playing with toys,jumping near the adult s knee,jumping near the adult s knee 3751,10727696143,1821,640,480,why did the lady in red walk out in the middle,4,107276961430,CW,look at the bald man,to service food,signal finish line,take a paper,put glass cups away,put glass cups away 3752,8627074061,2697,640,360,where did the girl put her hands when the lady showed her the green art piece,0,86270740616,TC,on her head,point at girl in pink,chair,table,on her laps,on her head 3753,10607095936,1080,640,360,what type of performance is this,4,106070959362,DO,party concert,parade,group discussion,marketing,a play,a play 3754,4518113460,1867,640,480,what does the baby do after holding on to the chair near the end,4,45181134608,TN,press on laptop,crawls again,suck his thumb,touches the plant,walks,walks 3755,5681946487,848,320,240,why does the woman cover her knees with a towel while bathing the boy,3,56819464874,CW,to cover herself,get baby to open mouth,newborn,prevent getting wet,not toilet trained,prevent getting wet 3756,11276567104,989,640,360,why does the woman in white kneel in front of the person in gold for a while,4,112765671040,CW,help the man,want food,tell man to stand up,prevent man from messing the cake,worship,worship 3757,4249756405,774,320,240,why is the lady moving her hand when the man was playing guitar in front of her,0,42497564053,CW,hand gesture,play the correct notes,provide music,to dance,moving with the rhythm,hand gesture 3758,4485498145,496,640,480,why are there some people standing at the back,2,44854981452,CW,cold weather,audience,waiting for their turn,stay together,looking at pictures,waiting for their turn 3759,3194558043,691,640,480,what does the man on the dance floor do after dancing for a while,0,31945580436,TN,do a handstand move,observe,walk towards the camera,hi-five,look at her,do a handstand move 3760,3821781616,745,640,480,what did the man do after drinking,2,38217816167,TN,said something,put down his cup,touch his fingers,cap the bottle,drink more,touch his fingers 3761,3233088823,462,640,480,what is the bulldozer deployed to do,0,32330888230,DO,removing something,football,street performance,snake handling,drama,removing something 3762,3469864014,867,320,240,where was the fish lying on,0,34698640148,DL,cutting board,high chair,cradle,tap,on the floor,cutting board 3763,5504913999,1475,640,360,what did the man do after he reached somewhere behind the camera,2,55049139993,TN,look towards the right,wave,stand on slope,bend down,flush the toilet,stand on slope 3764,2833209794,331,640,480,how many bags is the man in black carrying,1,28332097949,DC,five,two,three,one,four,two 3765,2925298951,398,640,480,why does the woman with the camera bend down at the end of the video,4,29252989513,CW,pick up hat,pointing to duck,tie shoelaces,adjust her shoes,adjust the camera,adjust the camera 3766,4762946272,647,640,360,where was the box of flour kept after enough was added into the bowl,4,47629462729,TN,put into his mouth,hide away,eat calmly,resumes writing,cabinet,cabinet 3767,5061117640,1587,568,320,why did the man sniff the food on the table after taking it out from the bag,1,50611176402,CW,reacting to the bread,smell it,he did not take enough,show wine in glass,pick out the roasted food,smell it 3768,8064178441,2229,640,1138,why does the baby put the toy down in the middle of the video,1,80641784414,CW,looking for dog,support him sit,looking at the doll,use the tool on the tyre,for toy,support him sit 3769,11566980553,1721,640,480,what does the boy do after unwrapping the present,2,115669805539,TN,get off the dest,grab the back of his chair,show the lady,walks forward,relax his fingers,show the lady 3770,2920952624,825,352,288,why does the taller woman move her knife up and down on the cutting board throughout the whole video,4,29209526240,CW,cut the insides,feed girl,observe her reactions,performance,carefully,carefully 3771,4483447009,775,640,480,what does the duck do after approaching the fence in the middle,0,44834470094,TN,communicate with other duck,land on the grass,sleeping,moved away,look at ground,communicate with other duck 3772,7223854838,413,640,360,why does the girl in pink try to give the toy to the lady in between,3,72238548384,CW,does not want the toy,take a photo of the toy,she was asked to,wants lady to help her hold,exchange for her present,wants lady to help her hold 3773,4092992100,461,640,480,why are the boys geared in helmets,2,40929921000,CW,sledding,rugby,cycling,skiing,racecar,cycling 3774,5858985747,349,604,1072,why did the baby in yellow pick up a phone on the sofa towards the end of the video,1,58589857472,CW,to drop it,to put near face,pass to woman,phone blinking,to hide,to put near face 3775,2973331780,1015,640,480,why are there people sitting on the sofa,1,29733317807,CW,eating food,watching the two people performing,reading and resting,listening to the cameraman,watch television,watching the two people performing 3776,2810112808,2669,320,240,what does the man in red do as the woman in black was drawing the cards,1,28101128080,TC,taps his side,look through his cards,grab the cards,steps back,clap,look through his cards 3777,3846475848,2138,640,480,why does the man dry the ferret with a towel,3,38464758481,CW,gesturing for people to go over,blow nose,wash his hands,dry from bathing,clean his face,dry from bathing 3778,9256409422,2312,640,360,why is the lady moving her hands as she speaks in front of the camera,2,92564094223,CW,illustrate her point,singing,hand gestures,moving baby s hands,gesturing as she speaks,hand gestures 3779,6300775954,1734,480,800,what did the lady do everytime she squat down,4,63007759547,TC,swing the club to hit ball,put down her club,put up her finger,pin woman s hair,stand up,stand up 3780,4336654741,2697,640,480,how is the lady feeling at the end,2,43366547418,TC,shocked,curious,happy,calmer and happier,confused but calm,happy 3781,2510696559,2117,640,480,what does the boy do after cycling up the ramp at the start of the video,0,25106965596,TN,turns the bike around,touch the vacumm clearner,cycles,push the toy down,throw the ball,turns the bike around 3782,5406108447,1337,640,360,what did the baby do after she accidentally threw the towel to the side,4,54061084475,TN,catch back balloon,blur,bevery from falling,shock,pick back up,pick back up 3783,3939145327,1194,640,360,why did the girl suddenly stop riding,1,39391453273,CW,stop by cake shop,reach a wall,rest,reach for something in back pocket,to stretch her body,reach a wall 3784,4889681401,2697,640,480,what did the man in blue do when cameraman pass him,1,48896814011,TC,wave to camera,look at camera and smile,point to camera,blow whistle,wave flag,look at camera and smile 3785,5008618500,754,640,480,what is the lady trying to do with the girl in this video,2,500861850011,DO,talk with her,feed the girl,teach girl about baby,dancing with her,teach her how to play,teach girl about baby 3786,10607095936,1080,640,360,why does the man in red cape point his finger in the middle,2,106070959367,CW,direct baby s attention,point at man,engage with audience,show the way,signalling to do down,engage with audience 3787,3164519967,1090,640,480,how is the old lady rested on the sofa,2,31645199673,CH,hug the girl in red,in the man s arm,sit and lean on the sofa,lying on her back,put legs on the table,sit and lean on the sofa 3788,8575881495,2000,640,360,what does the girl do at the end after lying down again near the end,1,85758814952,TN,caressing for the dog,throws the pink toy,raise her hands,pet dog,fall down,throws the pink toy 3789,3524939594,436,320,240,why does the man in white put his hands on the man in black,1,35249395946,CW,posing for camera,for support,get man s attention,fighting,dancing,for support 3790,8594314852,377,640,360,what did the girl do when she stopped at the end of the video,2,859431485211,TC,touch baby,point behind the camera,point her front,touch baby lips,yawn,point her front 3791,3814690167,453,640,480,where is this place,1,38146901676,DL,mountain,house,classroom,theatre,dirt field,house 3792,4970148391,732,640,480,why is the boy dancing with the base bat in the beginning,1,49701483910,CW,dropped his toy,playing it,talk to the person,practicing swing,doing a routine,playing it 3793,6582763207,696,640,360,how did the lady in red hold the microphone,1,65827632076,CH,tie to her neck,with left hand,with right hand,on microphone stand,man holding for her,with left hand 3794,10309542255,2566,640,480,what are the animals doing in this video,0,103095422558,TC,fighting,running,eating,climbing tree,sleeping,fighting 3795,2401167740,390,500,375,what was the man doing before taking a drink from his cup,1,24011677403,TP,walk away,speaking,flip cup for game,dancing,rope skipping,speaking 3796,2830899473,429,640,480,why do the men carry big bags while walking,3,28308994735,CW,observe brown shirt man,walk against wind,engage the audience,to carry items,protect legs and head,to carry items 3797,4465235803,1014,640,428,what is the lady doing with the trimmer,2,44652358030,TC,making faces at camera,piano duet,cutting hair for boy,gaming,playing with sticks,cutting hair for boy 3798,7728559968,1480,640,360,why do the kittens grab hold of each other with their arms,3,77285599681,CW,sleep together,likes the company,frightened by the dog,play fighting,try to snatch toys,play fighting 3799,2599937944,449,500,375,what did the lady in white do after talking to her friends,0,25999379447,TN,point at man,hit her with cushion,turn behind her,stand up,avoid him,point at man 3800,3429509208,374,640,480,why is the vacuum cleaner moving,1,342950920810,CW,for girl to play,pushed by boy,man push it,controlled by man,kid dropped it,pushed by boy 3801,8064178441,2229,640,1138,how does the baby manage to sit up in the middle of the video,0,80641784415,CH,use toy as support,move spoon in zigzag,climb,flip open the book,hand behind head,use toy as support 3802,3355698421,1193,640,360,what does the lady in white shirt do as the man and woman opposite him were talking,1,33556984214,TC,amused,use phone,squat down,start talking,flowers,use phone 3803,8531675050,1620,640,360,how does the lady in black and white communicate to the crowd,2,85316750501,CH,nod,make eye contact,with her voice,hand gestures,nodding her head,with her voice 3804,2434859163,615,500,375,what animal is this,1,24348591634,DO,cat,polar bear,dog,rabbit,lion,polar bear 3805,6188449000,1350,640,480,why was the woman swaying her body,1,61884490007,CW,cycling,dancing while playing ukulele,trying engage girl,unstable to move,gain momentum to hit the ball,dancing while playing ukulele 3806,3741143820,332,640,480,why are all the people on the stage holding a stick,2,37411438200,CW,control the music,as a stage effect,part of the play,his turn to speak,perform show,part of the play 3807,4372494989,2575,640,480,where are the people hanging out,3,43724949898,DL,park,forest trail,auditorium,house,grassland,house 3808,3963997053,573,640,480,why is the car driving so fast on the dirt road,2,39639970533,CW,uneven ground,car is spoiling,performing,for sale,escape from police,performing 3809,4882821564,2697,640,480,what did the woman do after the boy walked towards her with a present,1,48828215645,TN,stand still in front,bend down and talk to him,walk to the sofa,flip the pages,lift up the boy,bend down and talk to him 3810,6183104292,593,640,480,what does the lady do as the man poured the food,2,61831042924,TC,by her hands,dancing,use her phone,feed goat,pretend to feed toy dog,use her phone 3811,10607095936,1080,640,360,what does the cross on the lady s costume represent,2,106070959360,DO,parent offspring,wrist band,nurse,balloon,firends,nurse 3812,6542914065,300,640,360,who capture the ball at the end,3,65429140650,DO,lady in black,kids,girl with hoodie,man in black shirt,the guy,man in black shirt 3813,6159637889,2250,640,1138,how is the cradle moved in the middle of the video,2,61596378893,CH,baby moved,laying on the mat,person pulled and let go,cycling,palm facing the air,person pulled and let go 3814,4838113006,2697,640,360,what does the lady do after reaching table b from table a,4,48381130067,TN,walk forward,smiles,hands over the remote,looks forward,squat down,squat down 3815,4126010904,1698,640,480,how does the man in beard react after the bald man lean his face on the television,1,41260109045,TN,push dog away,moves away,playing the drum,walks away from the television,watch,moves away 3816,8080432373,2697,640,360,how did the man show affection to the baby at the end of the video,0,80804323736,CH,kiss baby,play with him,hug him,pat her head,caress his shoulders,kiss baby 3817,3655906094,563,640,480,how did the man in grey prevent the stick from falling in the middle of the video,3,36559060948,CH,kneel down,push himself using legs,puts them on floor,support with his hand,lean against the wall,support with his hand 3818,5635265624,584,480,640,what is baby trying to do near the black bag,2,56352656245,DO,pat the balloon,take the baby doll,grab something,bubbles,crawl to the girl,grab something 3819,4838113006,2697,640,360,why is the man in green filming the scene,2,48381130062,CW,unable to balance,to grill food,record for later use,reporting news live,let him speak,record for later use 3820,4967810888,1868,640,480,why is a lady shaking the green fan at the side of the room,2,49678108885,CW,playing with baby,blow on it,cool herself,part of her performance,adjust their clothes,cool herself 3821,8313365386,318,640,360,why did the lady in red point to the front of the paper at the start of the video,0,83133653860,CW,direct the attention,want to rest,wipe the man s mouth,take photos,soothe baby,direct the attention 3822,10779838974,890,640,1128,why is there a man standing at the end watching the two girls plouging the field,2,107798389744,CW,posing for camera,calling someone,oversee the girls,playing with the girls,strolling,oversee the girls 3823,13296054183,303,640,1138,why did the men look at each other when they cycle,3,132960541838,CW,talk to man behind,looking after him,reading from paper,keep each other in check,dancing,keep each other in check 3824,6011836129,1447,480,360,how many ladies are doing yoga,4,60118361294,DC,nine,two,one,three,four,four 3825,8495272210,630,640,360,why is the lady wearing the thick yellow jacket,4,84952722109,CW,hold her stuff,to look cool,keep warm,walk in water,protection from cold,protection from cold 3826,6188449000,1350,640,480,how did the boy react as he was playing with the paper,2,61884490006,TC,baby was happy,lean and look forward,happy to use it as prop,shy,dancing,happy to use it as prop 3827,6024684644,519,640,360,what is the man doing in the sand,2,602468464410,TC,sitting and listening to woman speaking,finding something,making a hole,playing the guitar,playing with sticks,making a hole 3828,3526597179,807,640,360,what is the relationship between the man in blue and the lady in white,0,35265971791,DO,couple,teammates,camera,trainer trainee,parent offspring,couple 3829,5048503508,319,640,480,how were the children moving through the forest,4,50485035086,CH,cycling,push sticks,hydraulic ladder,with her ski,running,running 3830,7988210561,320,640,384,where is the baby touching as she sat on the floor looking at the toy in the beginning of the video,0,79882105619,TC,her feet,toy in hand,dance shoes,socks,her hand,her feet 3831,4968805923,313,640,480,how many people are in the video,0,49688059239,DC,three,eleven,seven,six,five,three 3832,4013751996,764,320,240,what does the girl do after stopping the toy bicycle,3,40137519964,TN,excited,hold the toy hammer,jump down to same side,stand up,give out glass,stand up 3833,3851961428,2062,640,480,what did the boy do after he took out the goggles,3,38519614288,TN,smile,no reaction,spray out horizontally,get up,on his lap,get up 3834,6097994550,526,640,360,what did the person lying down do after he rolled over near the end,0,60979945501,TN,crawl to camera,happy,stay on the ground,rolls back to original position,fidget,crawl to camera 3835,3026084730,2205,640,480,what did the man in the middle do after he buttoned his blazer,1,30260847308,TN,watch it,take off his spectacles,bend forward,adjust diapers,poses for the camera,take off his spectacles 3836,4367056464,1162,640,360,why are the others staring at the girl,3,43670564648,CW,they are looking at a video,direct attention to it,check safety,looking her dance,girl lead the way,looking her dance 3837,5945172741,1593,640,480,why did the girl stretch her arm out to the man near the middle,4,59451727419,CW,to sit comfortably,pick up blue toy car,grab the camera,wanted the man to move the pram,take the red ball,take the red ball 3838,3655906094,563,640,480,why did the man with black suit and shades touch his ears after blowing into his trumpet,3,36559060942,CW,cover his ears,put on the earphone,enjoy the music,scratch,adjust the earplug,scratch 3839,9576671750,825,640,360,how many phones are shown in the video,3,95766717506,DC,six,five,three,one,nine,one 3840,5679866364,750,640,480,why did the last lady in bikini stretch out her arms,0,56798663648,CW,balancing in water,washing her feet,taking a selfie,holding the baby,protect eyes from sun,balancing in water 3841,11871253306,1476,512,288,why did tthe boy in white sleeves run after the ball near the start,2,118712533067,CW,check if people are behind,prepare for another hit,to kick it,to sit on it,boy s turn to play,to kick it 3842,8225502382,1468,640,360,how does the man in dark green react after losing his balance at the beginning,2,82255023827,TN,check out the rock,grab his ankle,frustrated,stand there,to get another bowling ball,frustrated 3843,8513603944,919,640,480,what is the person in black doing near the children,1,85136039442,TC,wearing spectacles,clearing the snow,dancing,rafting,talking to each other,clearing the snow 3844,3263908208,300,640,360,what is the color of the nearest sailboat,4,32639082087,DO,yellow,red,green,red,white,white 3845,4825843801,710,320,240,what do the penguins do after looking around at the beginning,0,48258438013,TN,walk around,show the lady,mouthing one another,lie on his back,turn back to paper,walk around 3846,5133787349,363,320,240,why are there four men on the stage,0,51337873490,CW,performing,doing experiment,award ceremony,setting up lights,modelling,performing 3847,12392885583,929,640,480,what did the baby put in his mouth,3,1239288558310,DO,classmate,food,toy car,pacifier,toy giraffe,pacifier 3848,2877270840,780,640,480,why is the man half naked,4,28772708400,CW,sun tan,hot indoor,surfing attire,small space,feels hot outside,feels hot outside 3849,6205856607,978,272,480,why does the girl move her head away from the horse at the end of the video,0,62058566078,CW,avoid the horse,sneeze,show the man something,look at camera,to take hay,avoid the horse 3850,8189958994,1869,640,360,what did the black dog do when it saw the white dog,2,81899589947,TC,licking and cleaning it,try to snatch the toy,trying to chase the white dog,bite,put white paper in front of dog,trying to chase the white dog 3851,5667931404,335,640,360,what is the animal printed on the baby s jacket,1,56679314043,DO,gorilla,tiger,elephant,cat,horse,tiger 3852,9528990839,427,640,480,why did the man bend sideway at the end of the video,3,95289908394,CW,look at the lady sitting,touch the boy in stripes,help girl find something,laughing,stop playing with baby,laughing 3853,2705374471,1556,320,240,why does the boy keep tossing and catching the toy,3,27053744716,CW,perform a stunt,pushed by lady,lady rocking him,catch baby s attention,for fun,catch baby s attention 3854,4276006683,799,640,480,why does the cat follow the movement of the person s hand,4,42760066832,CW,to scratch,stay stable,show affect,brush the hair away,to catch his hand,to catch his hand 3855,5129152550,2697,640,480,how do the people behind the man speaking feel about the man s speech,1,51291525509,TC,happy and dancing around,interested,angry,annoyed,sleepy and bored,interested 3856,11541421563,2403,640,360,why is the man in orange nodding his head at the end of the video,3,115414215639,CW,agreeing in the conversation,gesture hi,nodding to the beat,singing,he reached the shore,singing 3857,4485707628,1933,352,288,why does the grey dog go towards the white dog,2,44857076281,CW,walk away,owner put it on,chase it,white dog pushes the brown dog,trying to pick up ball,chase it 3858,3359075894,414,640,480,what does the man in grey do after the man in black throws the ball at him,4,33590758945,TN,position at the corner,pass on the arrows,smiles with excitement,smell the toy,hit the ball with the bat,hit the ball with the bat 3859,3429509208,374,640,480,how did the boy kept his feet warm,4,34295092086,DO,winter clothes,wear warm clothes and glove,gloves,socks and long sleeves,wear shoes,wear shoes 3860,2547885226,406,640,480,what happens to the toy dinosaur when the kid starts playing with it,1,25478852268,TC,light up,it moves,push the toy train,swing around fast,falls,it moves 3861,7416295940,2388,640,384,where is the baby playing,3,741629594010,DL,pool,at home,school,sand box,kitchen,sand box 3862,6964124866,515,640,360,where are the people sitting at,3,69641248661,DL,bed,chair,sofa,floor,stage,floor 3863,6806999702,2697,640,360,what did the girl do after she fell on the ground,0,68069997027,TN,get up,stabilise herself,turned behind,walks to her,get up after a short while,get up 3864,11681746823,608,640,360,how does the baby react seeing the lady shaking her head,2,116817468238,TC,walks away from the lady,kept lying on lady arms,shakes head and touch lady,put the pacifier in her motuh,wanted to play keyboard,shakes head and touch lady 3865,4272084125,732,640,480,why was the woman twisting the bottle opener at the start,3,42720841251,CW,to pour ingredients out on tray,ensure the red liquid is in,close the bottle,opening the bottle,bring closer to baby,opening the bottle 3866,5047408177,648,320,240,what does the girl do after she took out a yellow shorts from the basket,1,50474081771,TN,hang it out,put it back,put on the clothes,show to the boy,helping him to wear,put it back 3867,2696280239,398,640,480,what happens after the gate was opened at the start,2,26962802396,TN,smile,looks at the camera,the bull ran into the ring,push the robot,prepare to swing bowling ball,the bull ran into the ring 3868,3158022797,2697,640,480,why did the man in pink sway his body at the beginning of the video,3,31580227976,CW,open bag,hand gesture to throw,teach the girl how to swing,part of game,pick up the bicycle,part of game 3869,4164771889,503,640,480,how did the boy in black make space to scoop more sand onto the boy on the ground,3,41647718894,CH,the lady lowered him,kick it,walks close to him,moved backwards,bent all the way down,moved backwards 3870,7771650716,1805,640,360,why did the black dog walk towards the grey dog when the grey dog walked forward,4,77716507163,CW,it was chased,scared at the black dog,interested in the toy,still want to play,playing,playing 3871,6806999702,2697,640,360,what did the dog do after the girl approached the adult and stood beside him,3,68069997029,TN,wag tail,crawl to the dog,walk towards the cameraman,approach them,pulls the leash towards her,approach them 3872,7059877301,918,640,480,why did the light brown dog bend down in the middle of the video,3,70598773011,CW,felt the carpet moving,missed the ball,sniff something,to drink water,kiss it,to drink water 3873,5008618500,754,640,480,where is this place,1,500861850010,DL,martial arts classroom,hospital,bus terminal,restaurant,farm,hospital 3874,3846475848,2138,640,480,what does the man do after finishing cleaning the ferret,3,38464758485,TN,hold the microphone,put his hand in front of camera,keep tools in cabinet,use towel dry ferret,rock baby,use towel dry ferret 3875,3851913128,2235,640,480,what event is happening,1,38519131286,TC,show,diving training,making zongzi,stage,performance,diving training 3876,7442562474,598,640,480,why are the kittens lying on the bed,0,74425624740,CW,playing,sleeping,prevent falling,posing for photo,for warm,playing 3877,3902997424,779,640,480,why is the lady in blue riding the bike with one hand at the start of the video,2,39029974240,CW,follow woman in black hoodie,play with baby,wave the other hand,waiting for her turn,wants to refer back,wave the other hand 3878,2835125654,1406,320,240,what did the elephants do after the elephant on the left pushed the elephant on the right backwards nearing the end,0,28351256548,TN,stay still,walks,blows thw whistle,hit the smaller elephant,put on fence,stay still 3879,3897746373,399,640,480,how did the people kept their hair dry in the video,0,38977463733,CH,swimming cap,wear thick clothes,wear warm clothes,jacket,tie it up,swimming cap 3880,12682618843,1458,640,360,why did the dog move his paws and mouth forward after the middle part of the video,3,126826188434,CW,lick its paws,brown dog took its toy,react to the lady,grab toy,waiting for more food,grab toy 3881,8171216955,550,568,320,what is the girl hitting,2,817121695510,DO,toy microphone,fan,toy dog,a soft toy,piano,toy dog 3882,6621511673,2697,640,480,why does the man turn his head towards the girl,0,66215116739,CW,see girl s reaction,look at camera,angry at girl,want to touch girl,annoyed at girl,see girl s reaction 3883,5129152550,2697,640,480,why so many people have gathered to listen to a man,4,51291525502,CW,talk to each other,hiking outfit,take video,listening attentively,important information,important information 3884,3869005094,300,640,480,where is this video taken,3,38690050947,DL,dinning table,computer table,along the streets,hall,roadside,hall 3885,2731071928,1959,500,375,how many children are in the video,0,27310719283,DC,one,five,four,three,two,one 3886,3502722122,425,480,640,what does the boy do when the green back page does not hold still,1,35027221221,TC,tear the page,ignore it,look at the music sheets,closed the book,preparing to throw the book,ignore it 3887,4978714491,1200,640,480,why did the white bus stop,0,49787144910,CW,because traffic signal turned red,offer help,people get off bus,setting up,both had to stop at signal,because traffic signal turned red 3888,8080432373,2697,640,360,why did the baby lean her head near the end,2,80804323733,CW,touch the toy,rest on the pillow,allow man to kiss her,direct the man s attention,turn on the toy light,allow man to kiss her 3889,3441428429,2697,640,480,why is there a spotlight following them wherever the skaters go,1,34414284295,CW,for fun,draw attention to skater,ceremony tradition,engrossed in music,performing,draw attention to skater 3890,2885091387,1065,640,480,what happens to the car after it gets into the puddle,2,28850913875,TN,turn around and walk away,bend down to pick it,sink slightly,break down,speed up,sink slightly 3891,10030609934,1680,640,360,what colour is the two toy cars shown in the middle of the video,1,100306099340,DO,lights,yellow and blue,blue,light blue,pink,yellow and blue 3892,5205081904,623,360,480,why does the child sit down properly after squatting for a while,0,52050819042,CW,to be more comfortable,he was moving in it,the baby can sit more comfortably,feel confortable,natural instinct,to be more comfortable 3893,6011836129,1447,480,360,what do the other women do when the lady in deep blue vest look up,3,60118361295,TC,clap for her,clean mouth and look,stands on the table,copy her actions,talk to the other 2 people,copy her actions 3894,4782722858,1234,640,360,why are the ladies having microphone of them,1,47827228580,CW,making annoucments,sing,giving a talk,speech,selling microphones,sing 3895,9217939684,1660,512,288,why does the woman in pink point her finger and turn her head to the woman in grey singlet at the start of the video,1,92179396842,CW,avoid hitting plant,ask baby to walk,asked her to stand in position,keep the cloth,posing,ask baby to walk 3896,7536230796,1773,640,1138,how does the boy interact with the red toy,3,75362307966,CH,pass to woman,roll it on floor,kiss it,put head on it,transform into something else,put head on it 3897,6480018109,709,640,360,why is there a nurse in the man s back as he is walking,1,64800181091,CW,observe his behaviour,to support him,give him new set of clothes,giving him space to move,check for stains on his clothes,to support him 3898,2604394962,1078,640,480,why did the man turn the head of the toy to look down,1,26043949622,CW,stay clear of the dust,play with it,immitate girl to play,make baby laugh,attract baby s attention,play with it 3899,6806999702,2697,640,360,why does the dog chase the ball,4,68069997022,CW,catch the snowball,to snatch the toy,play with baby,practice catching ball,to bite it,to bite it 3900,5229476012,810,640,480,how did the lady see the boy clearly,1,52294760128,DO,turn his head to look around,wear spectacles,coming close to eachother,child holds his finger,on her lap,wear spectacles 3901,4136617240,2697,480,352,how is the girl positioned at the start,0,41366172404,DO,squatting,use poles,refer to her laptop,push with legs,swing her leg,squatting 3902,2877270840,780,640,480,why did the man just hold and not drink the wie at the start,3,28772708401,CW,mix the drink,friend wanted another drink,full,introduce the wine,give him drink,introduce the wine 3903,8797589693,2699,640,480,why did the lady in grey jacket turn over after the man in blue stood up,0,87975896932,CW,look at man,to rescue toddler who fell,adjust her chair,clap for him,pick something up,look at man 3904,6046149003,541,640,360,what does the girl in blue do as the girl in white looks outside,2,60461490030,TC,walk to bald man,turn back to look,stand beside and look,move hands around,flipping the pages,stand beside and look 3905,9873067604,920,640,360,what did the girl do when the person touch the girl s head,1,98730676046,TC,brush hand away,turn head,put her hands under child,no actiion,wear beanie,turn head 3906,8783897632,974,640,360,why are the people wearing helmit,1,87838976325,CW,dancing,cycling,dance partner,costume party,riding scooter,cycling 3907,4889681401,2697,640,480,what activity is being carried out,1,48896814014,TC,walking dog,cycling,flying kite,canoeing,skiiing,cycling 3908,8495272210,630,640,360,how did the lady move herself on the snow,1,84952722104,CH,sled,with her ski,repeat sliding,walk,car,with her ski 3909,2716277960,402,500,375,why are the two man in the forest,2,27162779602,CW,his toys,keep warm,biking,support,recording,biking 3910,3939145327,1194,640,360,what did the girl do after she knocked onto the wall in the middle of the video,1,39391453271,TN,roll on her back,adjust her tricycle,start claping,point,watch the ball,adjust her tricycle 3911,9531760182,2097,640,480,what did the lady do after the baby leaned forward,2,95317601824,TN,swing her right hand,support baby s head with hands,put her hand on his forehead,touch baby,touches his head,put her hand on his forehead 3912,6618792571,2518,640,480,how is the baby moving from place to place,0,66187925713,CH,walking with toy car,moving his legs,lady hold in her arm,move in circle,walking,walking with toy car 3913,3388598772,335,640,480,what does the woman in black do after hugging the man at the start of the video,1,33885987728,TN,put food on table,wipe tears,clap,smile,turn back,wipe tears 3914,2599937944,449,500,375,what did the lady in white do after pointing at the guy in black,2,25999379446,TN,happy,touching her head,said something to person beside her,start talking,lie on sofa,said something to person beside her 3915,4075791856,2250,640,480,why is there an opened box placed on at the front of the stage,1,40757918560,CW,to read it,support microphone,performacne,block sunlight out,following the beat,support microphone 3916,2400715506,414,320,240,why can the animal be lifted by one hand,2,24007155061,CW,express happiness,dancing,small and light,snowing,making himself comfortable,small and light 3917,6136926089,1522,480,640,what does the boy do after coming down from the slide,4,61369260899,TN,turned around,change posture underwater,talking,look at camera,move towards the stairs,move towards the stairs 3918,4942054721,645,640,360,why did the goat at leftmost move towards the group in the end,4,49420547213,CW,find shadow,play with elmo,to move away from the lady,was frightened by the dog,wants to feed somewhere else,wants to feed somewhere else 3919,2495861393,1499,500,283,how do the children appear while listening to the adult,2,24958613937,TC,listening to the lady,beside one another,distracted,listening attentively,happy,distracted 3920,2599937944,449,500,375,why was the guy in black holding to the rope,1,25999379442,CW,rock climbing,bounce over running water,pulling a log,prepration for hike,protect from the wind,bounce over running water 3921,2857132732,726,320,240,why did the man remove the instrument from his lap at the end of the video,1,28571327327,CW,change something on screen,finish playing with the child,to strum the guitar,bow towards audience,to stop the child,finish playing with the child 3922,14012319794,3010,640,360,why did the girl open the door at the end of the video,0,140123197946,CW,take bottle of syrup,avoid the flag,more comfortable position,to swing the hammock,open it and get out,take bottle of syrup 3923,2834146886,1881,496,370,why did the white dog not go up the cushion that the black dog went up,1,28341468863,CW,busy playing with his toy,limited space,trying to finish his food,he is sleepy,he is tired,limited space 3924,6592821115,1800,640,424,what did the girl in pink do after she saw the lady in grey carry the baby in polkadot,0,65928211159,TN,go to the lady in grey,put both hands by her side,take it away,goes to help,take a blue mini bucket,go to the lady in grey 3925,5940941487,838,640,362,how many people are performing,0,59409414875,DC,five,four,eight,seven,eleven,five 3926,2830899473,429,640,480,why are the men walking slowly,4,28308994732,CW,acting,careful of the rocks,looking at the structure around,finished controlling the helicopter,enjoy the walk,enjoy the walk 3927,3158022797,2697,640,480,why are the people moving around using the remote controller,2,31580227971,CW,people are working,man in grey moving with mouse,playing and dancing,pedalling,giving instructions on how to dance,playing and dancing 3928,7330294814,2298,640,360,what does the lady in white do after holding the plush in front of the baby at the end,2,73302948148,TN,speak to lady,rub the baby s face,put plush on the floor,bite the doll s legs,pack her stuff,put plush on the floor 3929,4688219212,959,640,480,how does the coach help the boy to get onto the rings at the start,2,46882192122,CH,put it back into hole,by hand gesture,carry him up,press button,reward with food,carry him up 3930,4674481985,734,640,480,how did the man get support when he walks to the edge of the cliff,4,46744819856,CH,motorcycles,hold the lady,using the sled,poke the snow,held onto a rope,held onto a rope 3931,4744503881,488,640,480,why did the lady on the right bend to the other side in the middle,1,47445038811,CW,drink,turn to look around,enjoy the music,play with things on floor,dancing with baby,turn to look around 3932,4765564263,420,640,480,why is the hair of the girl in black suit wet,2,47655642636,CW,it is raining,swimming,playing water,jump into water,washing hairs,playing water 3933,6244382586,619,640,360,what are the girls holding as they ride,2,62443825864,TC,horse neck,pottery,leash,wear pants,sitting and looking around,leash 3934,5116088152,1205,640,360,what happens to the banana after the baby holds on loosely to it near the end,4,51160881529,TN,waves her hands in the air,break down,face grimace,use both hands,drop,drop 3935,4006608424,2697,640,480,how is the boy being held while the man is on the swing,1,40066084241,CH,on his back,on the man s stomach,on his shoulders,on his knees,on his lap,on the man s stomach 3936,4444192938,866,640,360,why does the girl in pink put her hand inside the bag,2,44441929382,CW,put phone into pocket,take out red toy,take out something,keep book,hide the toy,take out something 3937,9408800471,1056,640,480,why does the dog stand still next to the ball until the boy catches up with the dog near the end of the video,1,94088004715,CW,waiting for him to throw,for boy to pick up,bring ball with him,trying to fly it,aim wrongly,for boy to pick up 3938,6160414832,1831,640,480,what game are they playing,1,61604148322,DO,computer game,monopoly,toy that moves,rowing competition,television,monopoly 3939,4516967897,2036,640,480,how do the two ladies position their hands while at the fountain,0,45169678975,TC,place at the side,hold onto the chair,holding hands,place on surfboard,put in pockets,place at the side 3940,5445581571,964,640,360,what is the white dog playing with before he looked up,1,54455815713,TP,remote controller,yellow toy,ball,toy giraffe,toy watermelon,yellow toy 3941,10030609934,1680,640,360,what did the boy do before he bend down at the beginning of the video,0,100306099349,TP,looking at toy on ground,falls,put his hand into his mouth,hides below the table,stood up,looking at toy on ground 3942,3192668394,2079,320,176,where are the people hanging out,4,31926683949,DL,outside house,lake,kitchen,outside a building,living room,living room 3943,8318310610,663,640,430,why are the girls dressed similarly to each other in the performance,0,83183106101,CW,same group,costume,dancing,dance uniform,thinks it s cool,same group 3944,6244675392,900,480,640,why does the baby keep moving its hand back and forth,4,62446753922,CW,chase the tail of the toy,to bite the cat,to touch adult,prevent cat from touching its head,to feed the cat,to feed the cat 3945,4138579400,601,640,480,how many times did he put stuffs in the cup before it dropped,4,41385794009,DC,seven,three,two,one,five,five 3946,2547885226,406,640,480,why does the kid leaves the dinosaur on the sand towards the end,4,25478852262,CW,get his attention,lose balance,she is playing with sand,got distracted,keep it for observation,keep it for observation 3947,4136617240,2697,480,352,why is there a cat sitting on the chair,0,41366172403,CW,sleeping,watch the girl,resting together,playing with human s foot,drink water,sleeping 3948,4635309062,2076,640,480,where are the two men cooking,0,463530906210,DL,kitchen,workshop,bedroom,house,at a restaurant,kitchen 3949,4765717907,1180,640,480,what did the boy do after being let on the ground near the end,1,47657179076,TN,look down,talk to camera,leaves the rope,turn around,stay on the ground,talk to camera 3950,13569831214,1664,640,480,why did the girl in blue show her thumbs up,3,135698312147,CW,check out the slide going down,like the performance,checking out scenery,pose for photo,encourage the boy,pose for photo 3951,5133787349,363,320,240,why are there flashes of light,0,51337873492,CW,photo taking,lightning,reflective stripes,torch light,light stick,photo taking 3952,2821968703,900,320,240,what happens to the man after he crash into the sea at the end,4,28219687039,TN,sit down,get out of boat,fall down,walked to the truck,fall into water,fall into water 3953,8594309349,459,640,360,what is the animal in the video,1,85943093495,DO,lizard,fishes,swans,penguins,elephants,fishes 3954,5919180502,1379,640,480,what is the cameraman wearing,4,59191805026,TC,watch,mask,hairbands,jacket,hat and sunglasses,hat and sunglasses 3955,2809330695,2158,320,240,why did the baby look like he is almost going to cry when he tries to turn his body over,3,28093306951,CW,restricted,comforted,playful,frustrated,happy,frustrated 3956,4564478328,1410,640,360,why does the lioness at the back climb up to the lioness in front in the middle of the video,4,45644783281,CW,lick lion,to get down,hit the hanging toy,pass balloon to baby,fighting,fighting 3957,5945172741,1593,640,480,what did the girl do after she got off the bed near the end,3,59451727414,TN,adjust hair band,pick up the pillow,lift her legs,leaves the room,sit down,leaves the room 3958,11871253306,1476,512,288,what does the boy in white sleeves do after he catch up the running ball,0,118712533069,TN,kick the ball,hold the swing,look at teammate,brought it back,bring to the person,kick the ball 3959,4444192938,866,640,360,how did the girl in red move down the stairs,1,44441929380,CH,bend down,walk down,sit on moving chair,grab the rope,jump down,walk down 3960,8225502382,1468,640,360,what does the man in dark green do after reaching the top the second time,3,82255023828,TN,laugh,construct toy structure,dancing,stops at the side,throws it at the centre of the table,stops at the side 3961,3164519967,1090,640,480,how did the baby kept himself warm,1,316451996711,DO,wear beanie,wear more clothes,wear long-sleeved clothings,wrap around blanket,shirt,wear more clothes 3962,4151403382,1875,640,480,what does the boy in brown bib do after picking up a book,1,41514033826,TN,talk to him,flip open to read,play with cardboard paper,excited,sway his body,flip open to read 3963,4075791856,2250,640,480,how did the lady and man in front of the microphone knew what to say,1,40757918564,CH,use microphone,reading from the paper,standing next to each other,use hand gestures to demonstrate,talk and point to her,reading from the paper 3964,2503404966,840,640,480,what does the boy do after reaching the darker side of the room at the end,4,25034049665,TN,hold s the rod,climb up,pick something up,enters a room,stop for awhile,stop for awhile 3965,4740074365,584,640,360,why do the two people move around,2,47400743653,CW,playing instruments,talk to the person,dancing,exercising,playing catching,dancing 3966,5586394125,1128,640,360,why did the white shirt woman point at the dog s back when it is starting to move away from her,3,55863941252,CW,get dog to turn around,get something off dog,prevent it from leaving,direct attention,pointing at dog costume,direct attention 3967,4146348376,1585,640,480,where are the men hanging out,0,41463483762,DL,balcony,fountain,classroom,restaurant,by a stream,balcony 3968,10001787725,1021,640,360,why is the baby smiling,4,100017877253,CW,excited about the food,playing with the dog,lady tickles him,playing with adult,happy,happy 3969,5237219621,2680,640,360,how do you know that the woman with black spectacles at the start is married,2,52372196210,DO,wearing a wedding gown,holding flowers,wearing a wedding ring,grandparent and grandchild,walking with the groom,wearing a wedding ring 3970,9612838272,453,640,360,why does the girl raise her arms when she first slid down,1,96128382724,CW,safety,excited,did not get toy,point at something,unstable to move,excited 3971,8064178441,2229,640,1138,what does the girl do after the baby tosses away the toy at the end,2,80641784419,TN,hold hands out around the baby,stir it herself,make it move,lies down,touch the ball,make it move 3972,7149153537,1384,640,360,why are the men half naked,0,71491535371,CW,swimming,tanning themselves,bathing,posing for photo,cleaning their backs,swimming 3973,4132599924,781,640,480,how does the man react after the light changes the color,4,41325999244,TN,look at baby,look up,tired,sitting on sofa,shake around,shake around 3974,6025238212,758,640,360,what does the girl in gold do after raising her right arm up at the start,0,60252382124,TN,hold on to her eye mask,lick her lips,move in circle,put it on the floor,cover her mouth,hold on to her eye mask 3975,5662041273,2697,640,480,why is the boy sitting on the couch,0,566204127310,CW,flying helicopter,watching television,resting,eating snacks,chatting with parents,flying helicopter 3976,8189958994,1869,640,360,why did the black dog shake its body,4,81899589940,CW,remove water,dry itself,attracting attention,excited to eat,normal wiggling,normal wiggling 3977,4859057828,647,640,480,what does the lady in blue do when she approached the lady in white at the start,1,48590578289,TC,play piano,moving her arms mini dance,put her hand up,stand,cover face,moving her arms mini dance 3978,4915733559,1069,640,480,why did the baby pull the phone from the woman in the middle,0,49157335590,CW,to talk,record performance,talk to person speaking in phone,keep it from falling,show affection,to talk 3979,4378803532,1310,640,480,where is this video taken,2,43788035329,DL,sea,road,sheltered area,mountain top,dining table,sheltered area 3980,7001078933,633,640,360,why did the man in black jacket moved a few steps back in the middle of the video,1,70010789333,CW,scared of dog,pushed by man in white helmet,playing with dog,catch a ball,exercising,pushed by man in white helmet 3981,9917882506,974,512,288,how does the girl react after the boy stops his bike,1,99178825065,TN,push bike,look towards the boy,stop riding,raises her hands,get off bike,look towards the boy 3982,3340340268,1289,640,480,what did the girl in green do after putting the bucket back on her head in front of the dog,1,33403402683,TN,swing,stretch out hand,kick ball back,pat the baby s back,look around,stretch out hand 3983,2857132732,726,320,240,how did the man guide the child to try the instrument,1,28571327325,CH,show him a video tape,using the child s hand to strum,read off an instruction manual,send him to music classes,let the child watch,using the child s hand to strum 3984,4219909195,1003,640,480,how did the girl keep her hair away from her face,1,42199091959,CH,in pony tail,hair clip,hair band,braided,hat,hair clip 3985,5008618500,754,640,480,how did the lady convey her message to the child in pink effectively,4,50086185009,CH,use whiteboard,nod her head,holds on to the toy,kiss them,use hand gestures and point,use hand gestures and point 3986,5907839036,2697,640,360,why is the man in white shirt looking forward in the middle,0,59078390365,CW,look at scenery,taking a photo,listening to someone,look at performance,watching television,look at scenery 3987,2697214342,1498,640,480,how did the guys working protect themself from any injury,2,26972143428,DO,wear helmet,stay close to the girl,wearing protective gloves,hold him,wear life jacket,wearing protective gloves 3988,3380344744,1485,640,480,what is the lady wearing to prevent herself from getting wet,0,33803447443,DO,apron,the tiles,grooming brush,cloth,helmet,apron 3989,5352022985,1411,640,360,what does the adult do at the start while the dog was on the snow,0,53520229857,TC,runs around,bite it,caress the dog,cycling,walk up,runs around 3990,6188449000,1350,640,480,why did the boy move around the room as the woman was playing the ukulele,2,61884490002,CW,having fun indoors,acting to play it,dancing,performing a duet,let girl blow second candle,dancing 3991,7001078933,633,640,360,why are the man in white and the one in black bent down towards each other,3,70010789338,CW,laugh at each other,hug each other,guitar battle,to push each other,tie shoelace,to push each other 3992,4485707628,1933,352,288,what does the white dog do on the rock after it has jumped up,4,44857076286,TN,shake its body,run away,retreat,supporting,lie down,lie down 3993,6896884547,1440,640,360,how does the girl make the ball drop to the floor at the end,1,68968845479,CH,hit it with the golf stick,toss it down,press the button,push it down,kick it down,toss it down 3994,4774302357,450,640,480,why does the man playing the banjo move his head towards the end,2,47743023571,CW,nodding,shaking off water,moving with rhythm,to lean against the pillow,to pose for a photo,moving with rhythm 3995,2614918961,1311,640,480,why does the boy in grey move closer to the basket near the end,3,26149189613,CW,look at man in blue,listening to the man,having fun,to pick up some toy,watch him play,to pick up some toy 3996,4838113006,2697,640,360,why is the audience looking at the lady as she repositions the objects on the table,1,48381130064,CW,witnesses to the event,watch what s she doing,talking and relaxing,observing the child,resting,watch what s she doing 3997,6188449000,1350,640,480,why was the boy spreading out his arms at first,0,61884490000,CW,dancing,moving the baby forward,to get the door,kid messing around,playing with green item,dancing 3998,5875242364,427,640,384,what did the dog do after it finished kicking the water in the pool,2,58752423643,TN,move back to spot to jump,put his fingers in his mouth,jump out,go to lady,comes out,jump out 3999,14003541505,507,640,360,how does the baby move around,2,140035415058,CH,pushed in a cart,carried by boy,crawl,inside the cot,walk around,crawl 4000,8189958994,1869,640,360,why did the black dog walk in a circle around the lady in blue for after the lady finished petting it,0,81899589943,CW,get away from the white dog,let lady hug it,to smell it,caress the dog,get familiar with lady,get away from the white dog 4001,7331927796,519,352,288,why does the boy walk towards the lady in black,4,73319277960,CW,to give a hug,look at her phone,to listen to their conversation,get the paint,play with the dog,play with the dog 4002,4967810888,1868,640,480,why is the lady moving her hands around,3,49678108881,CW,flying kite,dancing,to catch rolling fallen bapple,gesturing as she speaks,hold the rope,gesturing as she speaks 4003,4970148391,732,640,480,why does the boy removes his cap after hitting for second time,4,49701483913,CW,rub bat,touch the bed,give to man,kick ball,shake off water spill,shake off water spill 4004,8531675050,1620,640,360,what did the women do before going near the man,4,85316750506,TP,carry boy,looking at book,lean on him,dance,do up her hairs,do up her hairs 4005,8024853715,486,640,360,why is the sand in the red platform,1,80248537155,CW,boating in river,to hold the sand,playground,dogs were rolling in the sand,direct attention,to hold the sand 4006,3372023610,1017,640,480,why are the group of people looking in the same direction,2,33720236101,CW,posing for a photo,looking at audience,following notes on the television,engrossed in show,check the slides,following notes on the television 4007,8188651630,571,640,480,why is the cat using its hind legs to dig on the sock,3,81886516303,CW,peeing,uncomfortable,touch the paper inside,playing with sock,to find food,playing with sock 4008,7508439506,765,640,480,why is the man lying on his side,1,75084395063,CW,pet the dog,playing with baby,play piano,comfortable,play with rabbit,playing with baby 4009,6329077812,1835,640,360,why is there a piece of tissue in front of the baby,1,63290778120,CW,clean the table,to wipe baby after feeding him,wipe bottle,clean the utensils,clean food spills,to wipe baby after feeding him 4010,2796821016,1851,500,375,where are the boys hanging out,0,27968210168,DL,living room,fountain,shower,footpath,balcony,living room 4011,2782307049,461,640,480,what was the lady in black doing as the lady in red slide towards her,2,27823070496,TC,sledding,dancing to music,preparing to catch lady in red,singing,reaching for the remote sensor,preparing to catch lady in red 4012,3981865268,1109,640,480,how is the man positioned in the video,3,39818652685,TC,lying down,walking,birthday celebration,bent forward,kneeling down,bent forward 4013,6011836129,1447,480,360,what do the other women do when the lady in deep blue vest looks down,1,60118361296,TC,move hands around,copy her actions,pass microphone to lady beside her,the girls ride a horse,they start taking down notes,copy her actions 4014,8531675050,1620,640,360,why did the woman walk away from the man,0,85316750508,CW,walk to the tent,go near camera,want to play somewhere else,goes to the llittle girl,scared of dog,walk to the tent 4015,2589540862,681,500,375,how does the girl move herself around the room at the beginning,2,25895408625,CH,crawl,jumps,spin around,swing her leg,chase the dog around,spin around 4016,8252088130,426,640,360,how is the bird held,1,82520881305,CH,by man s hands,on lady s arm,on a toy,in cage,open their wings,on lady s arm 4017,3804148568,2697,640,480,how do the people interact with the swords,0,38041485689,CH,swing the swords,put on holder,admire through glass,hide under bed,hug it,swing the swords 4018,6168295272,446,640,360,how is the boy in purple rested on the lady in black,3,61682952726,CH,crawl on her back,on her shoulders,sitting on her knees,lie on lap,on her back,lie on lap 4019,3429509208,374,640,480,how did the vacuum machine move closer to the camera,4,34295092089,CH,in a row,lady carry it,hold it up,man pulls it,pushed by boy,pushed by boy 4020,4935987905,806,640,360,what is the black dog doing on the grass,4,49359879050,TC,stood up,get mud on himself,lie below tree,smells the grass,rolling around,rolling around 4021,3469864014,867,320,240,why did the adult touch the fish on the board after moving it away from the table,1,34698640141,CW,show the organ,adjust it,to take a picture,to massage the fish,to show the dog the fish,adjust it 4022,5586394125,1128,640,360,why did the dog in red leash put its head into the red container,1,55863941254,CW,play around,drink,to get inside,to catch the fish,get away dust,drink 4023,8253302563,1056,640,360,what does the boy do after chewing the horn at the end,0,82533025636,TN,press the horn with his hand,moves to the side,moving ti around,eat again,hold and move baby s arms,press the horn with his hand 4024,6096998186,671,640,360,why does the blonde woman hold the pair of souvenirs up in the middle of the video,1,60969981861,CW,pass to someone,show her presents,playing with baby,dancing with the souvenirs,playing with dog,show her presents 4025,4671452046,1306,640,480,what did the lady in brown do after talking to the lady in purple,3,467145204610,TN,pointed at baby,look down,stands up,laughs,wipes her eyes,laughs 4026,2821968703,900,320,240,why is the man holding on to a rope,0,28219687030,CW,balance,play on the swing,support to come down,playing,to hang the bottle,balance 4027,3063380173,515,500,375,what are the kittens doing inside and outside the container,2,30633801730,TC,move its head,bite boy,playing,bite the cat,throw spoon,playing 4028,10127533784,600,640,360,why does the fencer on the right clench his fist at the end,1,101275337845,CW,fight back,he won,throw the ball,fist bump with woman,dodge opponent s foil,he won 4029,3060478605,432,320,240,why does the lady raise her left arm over her head in the middle,0,30604786050,CW,hold her hat,call for help,take picture,rest on the pile of grass,prepare to hit baseball,hold her hat 4030,8811725760,631,640,360,why was the woman holding onto the girl,1,88117257600,CW,showing her directions,support girl to slide,try to get her into water,watch out for cars,encourage her to slide,support girl to slide 4031,5681946487,848,320,240,why is the boy in the red basin,0,56819464879,CW,bathing,swimming,eating,sleeping,taking a toy,bathing 4032,2810112808,2669,320,240,why did the lady in black stretch her hand several times after the man in red draws the cards,3,28101128083,CW,grab food,take drinks,drops the food,draw cards,snatch the man s cards,draw cards 4033,5889898795,2697,640,360,how do the people get attached to the zipline,4,58898987951,CH,hold onto it,hold onto pole,hold onto remote control,rope attached to pull van,hook,hook 4034,4249756405,774,320,240,how many people are there in the video,1,42497564059,DC,eleven,two,six,five,thirteen,two 4035,2885091387,1065,640,480,How did the man in blue react when the man saw the car almost tilting to fall,3,28850913874,TC,to catch the car,relaxed himself,warm up,stand up frantically,help them split the weight,stand up frantically 4036,8171216955,550,568,320,why does the woman push the toy dog towards the children at the end of the video,1,81712169554,CW,to help it move again,let children play,talking about it,to throw the toy,pet the dog,let children play 4037,3804148568,2697,640,480,why are the men wearing face masks,1,38041485683,CW,to get oxygen inside water,fencing outfit,protect eyes,cycling,ensure safety,fencing outfit 4038,11670386946,998,640,360,what does the man in brown do after turning his head to the right at the end,0,116703869466,TN,talk and look at paper,stroking the dog,smoke,put arms behind back,bend also,talk and look at paper 4039,5297811305,720,640,360,how is the woman feeling at the end of the video,3,52978113057,TC,reluctant,sad,listening attentively,happy,enjoying,happy 4040,3218498932,892,640,480,why did the boy in white with glasses laugh in the middle of the video,0,32184989321,CW,laugh at the programme,find the activity fun to play,show the spray to someone,let the girl feed him,feeling the music,laugh at the programme 4041,4626085492,638,640,360,why did the black dog on the sofa jumped down at the end of the video,1,46260854928,CW,laughing,to play with the toy,fell down,get away from dog,wants to play with toy dropped,to play with the toy 4042,3375218204,2241,640,480,what do these people do after walking into a corner at the end,1,337521820411,TN,start running,walk back into room,picks up the grey toy,look at boy,talks to the lady,walk back into room 4043,4151403382,1875,640,480,how does the man react after the boy in brown bib passes him the book,4,41514033827,TN,flip open to read,happy,keep a book,serious,take it from him,take it from him 4044,3897746373,399,640,480,why are the children on the plank when the girl in pink is swimming,0,38977463736,CW,resting,play with water,playing with each other,preparing to go swimming,looking at dolphins,resting 4045,9735768590,680,640,360,how many babies are in the video,3,97357685901,DC,two,seven,four,one,three,one 4046,2871995580,2697,500,375,how did the boy use the stick toy he had taken from the basket of toys,3,28719955809,CH,use stick to move forward,pull the string,take from table,hit the ball,pressing the buttons and exploring it,hit the ball 4047,2510696559,2117,640,480,why did the blue shirt woman move her hand when she walked past the front,3,25106965591,CW,guide her in rowing boat,check out the other side,signal her to speak,gesturing to friend,show love,gesturing to friend 4048,4949582792,2639,640,360,why does the girl place two hands on the pram at the end,4,49495827927,CW,dance move,react to the performance,to get in pram,hi-five baby,rock the pram,rock the pram 4049,3164519967,1090,640,480,what did the old lady do after the baby spit out the pacifier,4,31645199676,TN,adjust the baby s shirt,wipe her hands with tissue,smile and laugh,sits down,put it back,put it back 4050,8330342965,1313,640,362,why does the girl throw the paper airplane,2,83303429654,CW,dislike it,dancing,make it fly,can not control it,play with dog,make it fly 4051,8752043000,1572,640,360,where did the baby put his hand as he was being pushed on the pram,1,87520430002,TC,on his lap,in his mouth,touch his forehead,on the table,chair,in his mouth 4052,3741143820,332,640,480,why does a man in audience laughs at the end,4,37411438201,CW,boy beside him told him a joke,someone messed up the interview,girl dropped her yoghurt,excited about the new shoes,act is funny,act is funny 4053,4765717907,1180,640,480,where are the man and the boy playing,3,47657179071,DL,pool,bedroom,classroom,park,living room,park 4054,3526597179,807,640,360,what are the three people doing at the end of the video,0,35265971799,TC,having a conversation,drinking coffee,baking cakes,record the man cycling,wait for their children to arrive,having a conversation 4055,4968805923,313,640,480,what did the rightmost man in black do before the man in white hit the balloon,2,49688059236,TP,raise his hand,drop bat,threw balloon,walk towards the thrown disc,jumps,threw balloon 4056,5498331490,2160,640,480,what was the cat doing before it first turned around,1,54983314900,TP,bite boy,pooping,climbing over it,hit the bird,lady s leg,pooping 4057,5833145209,510,640,480,how did the black bird dry itself when it flew to the sides of the pot,2,58331452093,CH,jump,wrapped in towel,shake its body,roll over on ground,lie down on gradd,shake its body 4058,3233088823,462,640,480,why are there lose rocks around the floor,1,32330888234,CW,can not stand,demolition,for cat to play,to reach the sand,relax,demolition 4059,4087654898,330,640,480,why is there water gushing out of the bucket,0,40876548988,CW,water from hose was too strong,showering the dog,waterfall,water park,steer direction of the raft,water from hose was too strong 4060,2584172238,719,320,240,what did the woman in yellow do after the boy in blue slid down the slide at the middle of the video,4,25841722384,TN,point,look at water,slide down,pull the white dog,carry boy up,carry boy up 4061,4671452046,1306,640,480,what was the man in white doing with the plate in his hand,0,46714520469,TC,eating,washing,put on shelf,drawing,showcase his medal,eating 4062,8495272210,630,640,360,why did the lady wear helmet,1,84952722103,CW,skateboarding,skiing,cycling,dancing,fencing,skiing 4063,8575881495,2000,640,360,where are the people hanging out,0,85758814954,DL,living room,classroom,swimming pool,auditorium,water fountain,living room 4064,5256928210,606,640,360,what does the man do after looking at his hand near the end,0,52569282103,TN,pet the dog,lie on tiger,move his hands around,hand gestures,smoke,pet the dog 4065,6621511673,2697,640,480,why does the girl move her hands,1,66215116737,CW,dancing,point at magnet,touch her hair,hold a cup,pick up a book,point at magnet 4066,8627074061,2697,640,360,why did the woman in blue holding pieces of artworks,0,86270740613,CW,show girl the artworks,protect artwork from falling,selling to couple,repaint it,introduce to man,show girl the artworks 4067,4984417707,441,640,360,what was the elephant at the goal post doing before the ball was kicked over,4,49844177074,TP,eat and drink,guide the baby elephants,swim in water,swimming,moving around,moving around 4068,5070310138,1603,640,480,how did the baby react after the man leaned forward,1,50703101384,TN,sing,touch his ears,stand there,blessed,move forward,touch his ears 4069,4757890069,1125,640,480,how many vehicles passed by,4,47578900694,DC,one,six,three,two,four,four 4070,3830567237,716,640,480,how is the horse being held,3,38305672375,CH,by the saddle,by it s tail,by it s legs,handle,the horse is lying flat on its back,handle 4071,3303565503,1115,480,640,why does the other man walk in and move her leg,4,33035655034,CW,cycling,tie her shoelace,end of performance,untangle rope,help position them,help position them 4072,2857132732,726,320,240,how does the baby feel about the instrument,2,28571327320,DO,shy,sad,curious,happy,excited,curious 4073,3121571439,1212,640,428,why does the lady in pink jump after they dance,2,31215714392,CW,posing,playing with toy,overjoyed,excited for the drink,learn to dance,overjoyed 4074,4967810888,1868,640,480,why are there people sitting around in the room,4,49678108883,CW,form a circle,witness the engagement,comfortable,working,listening to speaker,listening to speaker 4075,4516967897,2036,640,480,why are the two ladies nodding their heads,2,45169678977,CW,falling asleep,tired,agree with one another,helps with the running,armwestling,agree with one another 4076,6018514357,1280,640,1138,why did the baby turn around after standing up on the slide,0,60185143578,CW,wants to get down,to look at man,wants to ride again,wants man to join her,wants to sit down,wants to get down 4077,2810112808,2669,320,240,how do the three people position themselves in the room,4,28101128085,DO,dancing around,with toy,serious,thick clothing,seated on sofa chair,seated on sofa chair 4078,6168716346,949,640,360,what are the two boys doing in the videos,3,61687163461,TC,enjoy the view,chase each other,playing with sand,drawing,playing football,drawing 4079,5863411262,1018,640,360,how does the donkey look at the end,1,58634112622,DO,clean itself,tired,towards the left,wakes up and lean forward,turn away,tired 4080,4825843801,710,320,240,how do the other two penguins react after one penguin starts walking,1,48258438014,TN,sit and watch them,follow,flies away,five,touch the earphones,follow 4081,7288107396,507,640,360,where is this video taken,4,72881073967,DL,playground,beach,road,lake side,living room,living room 4082,5889898795,2697,640,360,how do the people go to the other side of the wood,4,58898987956,CH,drive the car,crawl on ground,hiking,cycling,slide down the rope,slide down the rope 4083,7533369046,803,640,360,what is the baby doing,1,75333690460,TC,jumping around,looking around,running in the forest,playing with the toy,touching dangling things,looking around 4084,4949582792,2639,640,360,what does the girl do the seatbelt in the middle,3,49495827926,TC,bend down and talk to boy,watch the lady,dance,play with it,swing her legs,play with it 4085,2726497009,1575,640,480,why does the second female bike rider push her bike to the side after stopping it,2,27264970095,CW,avoid the sunlight,wanted to enter the shops,not blocking the way,stay close to the boy,look out for anything incoming,not blocking the way 4086,8241491518,891,640,480,why does the man bend down while cutting,2,82414915185,CW,dribbling ball,play with elmo,chop leaves,keep the rod fixed at one place,play game,chop leaves 4087,5521781780,2697,640,480,what does the man in black cap do after reaching the border of the structure near the end,2,55217817804,TN,turns around,change slides,stands on the corner,catch the ball,put hand in mouth,stands on the corner 4088,3131380536,2007,640,480,how does the child play with the spoon,3,31313805361,CH,using his hands,touch the chair,throw the spoon,moves the spoon in cup and mouth,turn his body around,moves the spoon in cup and mouth 4089,2400171624,996,500,375,what does the skier do after stopping for a while,2,24001716247,TN,sat down,moves hands,change direction,shake body vigorously,jump,change direction 4090,8513603944,919,640,480,why are the children in red and blue helmet sliding on snowy ground,3,85136039440,CW,want to see it break,thick snow,slope,learning to skiing,slipped,learning to skiing 4091,8388104887,1233,640,480,what did the dog do after it picked up the ball that was thrown,4,83881048873,TN,bat,hit with racket,throw the ball,lie down,walk back,walk back 4092,5879651428,2697,640,1138,why did the man in blue walked past the man in white at the beginning of the video,2,58796514280,CW,wants to play with him,to adjust the mic,look at scenery,go to front of room,knock onto the rock,look at scenery 4093,5145526755,1675,640,360,what does the lioness on the left do after staring forward for a while at the start,4,51455267558,TN,lift its head up,rest,lick mouth,charges forward,look to the side,look to the side 4094,6244382586,619,640,360,what alphabet is on the wall shown at the end,4,62443825869,DO,h,b,g,p,f,f 4095,2920952624,825,352,288,where is this happening,0,292095262410,DL,kitchen,on the road,river,forest,hiking,kitchen 4096,6480018109,709,640,360,why are there wheels on the walking aid,1,64800181099,CW,easier to control the sensors,easiter to push,glide across the ice easily,able to move faster,easy to dismantle,easiter to push 4097,11587211476,1470,640,360,why is the woman in pink moving around in the middle of the field,2,115872114760,CW,beating drum,hide from the baby,to judge the event,play with ball,guide the horse,to judge the event 4098,2442307875,515,640,480,what was the smallest girl at the outer right doing at the end of the video,4,24423078755,TC,rests at the corner of bed,spinning in circles,retract her hand,taps the other sock,synchronise with her friends ,synchronise with her friends 4099,10082798964,345,640,360,what is the relation between the kid and lady,0,100827989641,DO,parent offspring,teacher and student,teacher student,lady is mother,sisters cousins,parent offspring 4100,10127533784,600,640,360,what is the role of the man standing in the background,4,101275337842,DO,host,singer,audiance,microphone,referee,referee 4101,2984974097,899,500,375,why did the girl move so slowly,1,29849740970,CW,wait for the boy,struggle in pedalling bicycle,boy pulls it,to clean her hand,pedal bicycle to move forward,struggle in pedalling bicycle 4102,4419096437,1584,640,360,how does the cat react after being carressed by the person,4,44190964373,TN,eat,scratch it,rubs against him,stretch out and hit with paw,open its eyes,open its eyes 4103,9498159305,1275,640,360,why does the man shake the earphones after the penguin turnes away from him,2,94981593052,CW,cat not responding,give space to the girl,attract penguin attention,not his turn,take photos,attract penguin attention 4104,4757890069,1125,640,480,what were the people filmed near the middle of the video doing as the vehicles drove past,1,47578900692,TC,singing a song,talking to each other,reversing their bicycle,hanging clothes,making music,talking to each other 4105,6642268693,1143,640,480,why did the dog sniff and lick the person s hand in the middle of the video,2,66422686931,CW,brown dog took its toy,bigger dog didnt want it,get attention,felt the person s hand,get rid of snow,get attention 4106,3383804222,999,640,480,why did the older panda arch its head back when the baby panda stretches her legs repetitively on the older s belly,2,33838042221,CW,for milk,to cool himself,enjoys getting scratched,to meet other panda,trying to touch each other,enjoys getting scratched 4107,10597533885,1728,640,360,why does the kid pick out specific toys,0,105975338851,CW,her favourite toys,to play with,teething,play,stabilize toy car,her favourite toys 4108,3340340268,1289,640,480,what does the girl in green do with her hands while walking at the start,1,33403402680,TC,also walks backwards,stretch out hand,walks away,on her head,look at the paper,stretch out hand 4109,5235909148,354,640,360,why are there people on already on the other side at the end of the video,3,52359091486,CW,change something on screen,looking at the baby,clicking picture,help the man get off zipline,a person playing with the cat,help the man get off zipline 4110,6244675392,900,480,640,how does the cat react when the baby puts food in front of it,4,62446753927,TC,continue sitting,stretch out and hit with paw,walks across,jump off man,smells the food,smells the food 4111,6413546609,1415,640,384,what does the person on the left do as the person on the right throws the cards down,0,64135466094,TC,do the same,turn behind,bowls again,stretch arms in the air,look at cards,do the same 4112,5433090067,607,480,640,how does the man ensure the safety of the girl,1,54330900674,CH,hold her body,stay close to the girl,wear life vest,hands ready to catch the girl,put cushion on the floor,stay close to the girl 4113,3851961428,2062,640,480,why did the man in red do a hand gesture,3,38519614287,CW,calling for help,for the video,to take photo,signalling,playing with the dogs,signalling 4114,7691172922,1454,640,480,what does the dog do after running up the stairs,1,76911729226,TN,guide dog while running,turn around and wait for lady,go to the back of cage,lie on the ground,run around the man,turn around and wait for lady 4115,3198533789,690,640,362,judging from the activity what are the occupations of the man in black and man in white,4,31985337893,TC,riding the atv,policeman,doctor,surfer,constructor,constructor 4116,5229476012,810,640,480,why did the woman in black swimsuit stand behind boy,4,52294760120,CW,pick boy up,prevent boy from jumping,help boy diving,playing with each other,control boy s movement,control boy s movement 4117,3462517143,722,640,480,where is the container at,2,34625171436,DL,backyard,classroom,garden,home,aracade,garden 4118,7416295940,2388,640,384,why does the boy life the toy car up in the middle,1,741629594011,CW,wagging his hands,pour the sand out of car,bring car to table,show it to man,hit ball,pour the sand out of car 4119,5296635780,652,640,480,what is the response of the lady after the man speaks to her at the start of the video,2,52966357804,TN,raise his eyebrows,play with baby,pretend to punch him,point at something,talk,pretend to punch him 4120,5679866364,750,640,480,what did the last lady in the bikini do with her hands after she enters the water,2,56798663644,TN,hold the girl s stomach,look at boy,move her hands away from her thighs,touch the baby s arm,jump into water,move her hands away from her thighs 4121,4603484665,1045,640,480,how did the brown dog approach the pair of dogs playing,1,46034846656,CH,bite them,walk nearer to them,chase,rub the dog,push with nose,walk nearer to them 4122,4419096437,1584,640,360,how many times does the person signal for the cat to close its eyes,0,44190964378,DC,five,two,four,one,three,five 4123,5498331490,2160,640,480,what does the cat do with its two front paws on the toile bowl in the second half of the video,1,54983314907,TC,raise its head,cleans the toilet bowl,tap the cushion it was on,move out sofa,watch the brown cat,cleans the toilet bowl 4124,8811725760,631,640,360,why did the lady lean forward when the girl was sliding down the slide,2,88117257609,CW,enjoy the ride,interact with the fish,support girl,release ball,catch girl,support girl 4125,8330342965,1313,640,362,why does the girl run around,3,83303429652,CW,chasing each other,exercising,move baby with toy car,play with paper airplane,want to play in water,play with paper airplane 4126,5134317883,1890,640,360,what does the man in red initially do with a spoon,2,51343178835,DO,left hand,cup of drink,scoop the pulp out,coke,bride and groom,scoop the pulp out 4127,3851913128,2235,640,480,why did the guy in red then put his goggles back,4,38519131281,CW,guide the route to take,dancing to music,acknowledge,continue watching the show,show another action,show another action 4128,5987365500,714,480,640,why does the girl smile towards the end,1,59873655002,CW,managed to ride by herself,she is happy,entertained by baby,smile to the camera,excited to go bouncy castle,she is happy 4129,2726497009,1575,640,480,how does the second female rider get down the slope,0,27264970097,CH,push the bike,carry her up,hold onto the front of the ride,hold onto the rocks,skated too fast,push the bike 4130,6205856607,978,272,480,where is the man and the girl,4,620585660710,DL,field,outdoor,sea,on a sofa,horse stable,horse stable 4131,7786283208,636,640,360,what does the boy do after getting up,1,77862832088,TN,playing the guitar,walks away,take food,watching television,walks forward,walks away 4132,6024684644,519,640,360,how does the man dig a hole in the sand,0,60246846440,CH,using cup,beating it,using hands,using a shovel,kicking with feet,using cup 4133,3711681535,1070,640,480,why does the man in blue push the woman in the middle of the video,1,37116815352,CW,keep for memory,to swing the lady,protect it,wo nt get in the way,let person in yellow helmit go down,to swing the lady 4134,5854324479,519,640,474,why is the man in dark brown moving backwards at the end of the video,1,58543244794,CW,pick up the ball,to exit through door,to skate faster,pushed by waves,to rest,to exit through door 4135,9473479950,608,640,480,how is the baby positioned,1,94734799508,TC,move around,on his back,uncomfortable,sitting in lady s arms,laughing,on his back 4136,7288107396,507,640,360,why did the lady bend forward to the boy in the middle of the video,0,72881073966,CW,holding his hand,pass her the toy,take balloon away from baby,give the boy something,talking to lady,holding his hand 4137,3471421544,1786,640,480,why does the toy light up after the middle part of the video,0,34714215440,CW,baby touch toy,interested in balloon,baby cry,change direction,balloon blowing on her face,baby touch toy 4138,5047408177,648,320,240,why did the girl pick out a white item from the bucket at the beginning,1,50474081778,CW,wash it in the laundry,hang it out,give to lady,throw to the dog,play with the boy,hang it out 4139,4199369046,1717,640,360,why did the lady stand up,3,41993690463,CW,receive medal,guide the old lady,give seat to handicap,giving speech,finish eating,giving speech 4140,4822859674,861,640,480,what did the boy who fell on the floor at the beginning of the video do after he fell,1,48228596747,TN,carry the baby down,crawl,got back up,stand up and dance,pick it up,crawl 4141,3508459605,2609,320,240,why does the man lift the baby up near the end of the video,2,35084596053,CW,to dance on the floor,happy,put the baby on the side,to play,take care of her,put the baby on the side 4142,9498159305,1275,640,360,where is this video taken,1,94981593054,DL,bedroom,penguin habitat,ballroom,on the plane,backyard,penguin habitat 4143,8224492254,972,640,480,what did the adult do after the baby bite on his finger,3,82244922549,TN,open his palm,put his hand into mouth,pick up the bottle,closes his finger,touch his hand,closes his finger 4144,4626535366,1468,640,360,why did the boy with spectacles stand nearer to the board and further from others,0,46265353662,CW,presenting,riding the toy horse,assisting with the barbeque,pushing the rod,main performer kicking boards others hold,presenting 4145,3303565503,1115,480,640,how does the man seem to be feeling while posing,2,33035655039,TC,friendly,affectionate,tired,enjoying,confused but calm,tired 4146,7149153537,1384,640,360,what did the fair skinned man do when the black skinned man approached with the girl in pink,1,71491535378,TC,move backwards,exchange hand gesture,looking towards the ground,push them away,splash water at them,exchange hand gesture 4147,7288107396,507,640,360,where is the child before he runs on the floor,2,72881073965,DL,sitting on chair,lady s laps,stairs,bed,sofa,stairs 4148,2669452260,456,640,480,why is the road wet,1,26694522603,CW,kid open water tap,raining,washing the road,training ground,child play water,raining 4149,5885887012,956,272,480,what does the baby do while holding the pole,4,58858870122,TC,get the balloons,playing the guitar,relaxing,playing with toy,pushes it,pushes it 4150,3821781616,745,640,480,why did the man reach out his hands after smiling at the end,0,38217816163,CW,gesturing,celebrating his birthday,react to camera,enjoying,excited,gesturing 4151,2435100235,1906,640,480,what do we see on the route after the man in white shirt passes by a taxi and turns right,2,24351002354,CW,people resting,beach,bicycles,baby pick up the ball,a man walking over to check if he is okay,bicycles 4152,2796821016,1851,500,375,why do the boys roll around the carpet,1,27968210161,CW,attracted by the cat,playing around,put keyboard on his lap,listening to the cameraman,take the comb,playing around 4153,3151715056,1895,640,480,how does the man in the middle use the musical instrument,3,31517150566,CH,pressing buttons,hit it,with the turntable,shake up and down,speaker and microphone,shake up and down 4154,6239210933,1030,640,480,how does the child move the pink toy from the floor to his lap after dropping it,4,62392109334,CH,pull the side of the pram,hold the toy,clap,stretched out in the air,using the string and pen,using the string and pen 4155,3489439407,1662,640,480,why are the lady and two men staring at the screens in front of them,3,34894394076,CW,listen to the presentation,dancing game,distracted by people on top,looking at the two ladies speak,check the slides,looking at the two ladies speak 4156,5145526755,1675,640,360,why is there a lioness having its head straight up right,4,51455267552,CW,look at laser on ground,jump and fight,finished peeing,preying,to observe,to observe 4157,5406108447,1337,640,360,what did the baby do after hitting the floor with the towel,0,54061084476,TN,lift it up,suck his thumb,blur,crawl back up the pillow,put his fingers in his mouth,lift it up 4158,2697214342,1498,640,480,where are they working,2,26972143427,DL,side of a road,hall,factory or workshop,outdoors,field,factory or workshop 4159,3026084730,2205,640,480,why are there flashes of light when the speech is being made,1,30260847304,CW,power failure,camera taking photo,waving light sticks,spotlight emphasize attention,flickering stage lights,camera taking photo 4160,6143391925,1206,640,480,why did the baby move out her leg after the woman talked to her,4,61433919252,CW,take control from the girl,legs tired,put on shoe first,prevent boy from bothering girl,kick ball,kick ball 4161,6025238212,758,640,360,why are the girls wearing party eye masks,3,60252382120,CW,polite,dancing with the girl,watch over her,cosplay,speaking,cosplay 4162,6690256857,344,640,360,why did the man bend forward,2,66902568571,CW,pick up the bottle,wash their hands,bathing dog,bathing himself,focusing in the music,bathing dog 4163,4978714491,1200,640,480,how are the bus moving on the road,3,49787144914,CH,put arms on the window sill,horse,using a line,slowly,put down on the ground,slowly 4164,7571121368,1690,640,360,what did the child wear on her body,3,75711213683,TC,scarf,dress,tiara,life jacket,hat,life jacket 4165,2925298951,398,640,480,what does the lady in blue scarf hold in her hands while posing for the camera,4,29252989510,TC,camera,bag,book,bottle,cup,cup 4166,3218498932,892,640,480,why did nt the boy in maroon watch the television,0,32184989322,CW,distracted with phone,following notes on the television,where the car is,looking at book,to play game,distracted with phone 4167,5173770364,2388,640,360,what does the baby do to the man s leg,4,51737703645,TC,hug it,put toy on it,climb on it,put bottle on it,kiss it,kiss it 4168,12392885583,929,640,480,why does the baby approach the man in long sleeves,3,123928855830,CW,get more ice cream,play with man,for support,to get the pacifier,for milk,to get the pacifier 4169,7114553643,1974,640,480,what did the lady do after the man hugged her in the middle of the video,4,71145536434,TN,touch his head,put the box aside,hugs her,tilt head forward,dances,dances 4170,5603283408,756,640,360,what is the man in blue shorts doing as the girl was walking at the start,3,56032834081,TC,jumped backwards,walk in front of girl,search the bag,gesturing to girl,stand up from his seat,gesturing to girl 4171,3171006258,1099,640,480,why is the man on the floor,0,31710062583,CW,fell,adjust shoes,remove snow,wear socks,relax,fell 4172,4249756405,774,320,240,what instrument is the man playing,2,42497564057,DO,nerf gun,battle game,guitar,keyboard,suona,guitar 4173,7308042410,1019,640,1138,why did the man in white bend forward to the girl in the middle of the video,0,73080424101,CW,teaching pottery to her,paying attention to lady,put snake on her,laugh at the programme,say something,teaching pottery to her 4174,8752043000,1572,640,360,what is the baby s expression when he approached the person,0,87520430005,TC,smiling,sleepy,annoyed,nervous,crying,smiling 4175,8990144134,457,320,240,what does the cat do after hitting the bird,4,89901441346,TN,lick the other cat,no reaction,keep watching the string move,rubs against him,look at bird,look at bird 4176,4782722858,1234,640,360,why did the blonde lady wearing sunglasses,4,47827228585,CW,it s sunny,prevent pole falling on her head,protect eyes from sun,ride horse,to look cool,to look cool 4177,4770216656,960,640,480,how was the boy moving in the video,3,47702166566,CH,on horses,walking and skiing with poles,left and right,man push his swing,wear covered clothes,man push his swing 4178,5134317883,1890,640,360,how does the man in blue scoop the pumpkin,3,51343178836,CH,wait at the dining table,walks slowly towards it,bend down,with a knife,fork,with a knife 4179,11565498775,1216,640,360,how does the man assist the boy to do correctly,0,1156549877510,CH,adjust his posture,turning and looking,pick up and push boys away,using toy,carry him,adjust his posture 4180,2987766537,497,500,375,how is the baby lying on the mat,1,29877665373,CH,on his back,on his belly,tickled him,in her arms,knocked down by the boy,on his belly 4181,6233408665,2246,640,360,why did the woman in pink walk away,4,62334086653,CW,to get more food,do not want to get wet,pick up clothes,clean her hands,her performance ended,her performance ended 4182,4485498145,496,640,480,what does the half bald man do after nodding at the end,2,44854981456,TN,lean against the screen,lost balance,turn to his right,clap,look down and shake head,turn to his right 4183,3121571439,1212,640,428,what does the man do as the lady approaches at the start,2,31215714395,TC,lying on her stomach,picking,hold her,show affection,lie on floor resting,hold her 4184,11584566583,376,640,480,what does the lady in green hold in her left hand while standing,2,115845665831,TC,passport,flower,paper,headphone,microphone,paper 4185,6300775954,1734,480,800,what did the lady do after she took the dumbbell from the rack,2,63007759548,TN,sit down,check documents,take a few steps back,hold a cross sign,showed it to the camera,take a few steps back 4186,5913180144,1191,640,480,why are there so many people standing together,1,59131801440,CW,look at squirrel,performing,gather for phototaking,exchange contact numbers,queuing for their turn,performing 4187,6772999108,1467,360,480,how did the girl made sure her hair is out of her face,4,67729991086,CH,using her hand,wear bib,shake her head,sweep hair downwards,tie it up,tie it up 4188,7223854838,413,640,360,why is the lady lifting the boy in green up,4,72238548388,CW,was her turn,attract baby s attention,making child ready,itching,help the boy see over glass,help the boy see over glass 4189,3107742409,1604,500,280,what does the man do while the baby stands in front of him,1,31077424093,TC,use phone,hold baby s hands,talks to the woman,rock chair,kiss baby,hold baby s hands 4190,8330342965,1313,640,362,how is the girl positioned at the start,3,83303429656,TC,cycling,sitting down,playing with sticks,standing near the wall,rolling on floor,standing near the wall 4191,7651639778,1963,640,480,where is the video being taken,4,765163977811,DL,mountain area,kitchen,museum,baseball field,outdoors,outdoors 4192,3939145327,1194,640,360,how did the girl shift her tricycle away from the wall,3,39391453276,CH,adjust handles,asked for help,remote controller,move it with her hands,pedal to the streets,move it with her hands 4193,3322503255,1233,320,240,how did the person on the right signal to the pilot,0,33225032552,CH,hand movement,nod his head,run in the direction he wants,wave the flags,with their handphone,hand movement 4194,7786283208,636,640,360,what did the girl in white do after getting up,2,77862832084,TN,grab her,cup,run towards the camera,play with leash,go to lady in stripes,run towards the camera 4195,11849091804,1296,640,360,how does the boy react after unwrapping the present,4,118490918046,TN,dance,explain how the tank works,take the phone out,talk to the lady,exclaim excitedly,exclaim excitedly 4196,2599937944,449,500,375,why is the guy in black suspending above the rushing waters,2,25999379441,CW,pose for the camera,prepare to jump,water activity,riding a yacht,catching fish,water activity 4197,3270490566,1515,640,480,why are the two man holding guitars strumming their strings,3,32704905660,CW,tuning the guitar,singing,playing the drum,make music,moving to the beat,make music 4198,2589540862,681,500,375,why did the man at the computer lean forward at the middle,4,25895408624,CW,show child something,preparing something,using it,adjusting the music,try to catch girl,try to catch girl 4199,9576671750,825,640,360,what is the person holding,0,95766717503,DO,phone,cup,bottle,children s toy,music instrument,phone 4200,4635309062,2076,640,480,why is the white shirt man moving his arms,3,46353090623,CW,cut the shoe,make a toast,prepare to attack,cooking,start eating first as he s hungry,cooking 4201,4217422838,1261,640,480,what did the boy do after he completely tore the wrappers from the spear,4,42174228388,TN,pulled the jeans down,pick the toy from water,look at baby,fall onto the ground,stand up,stand up 4202,5875242364,427,640,384,what did the brown dog repeatedly do in the inflatable pool,3,58752423640,TC,move around the pool,wag its tail,touch his head,kick the water,comes out,kick the water 4203,4333544549,1065,640,360,how does the man in blue get his phone in the middle of the video,1,43335445494,CH,received it from lady,take out from his pocket,pick up from table,take out from charger,pick up from car chair,take out from his pocket 4204,2810112808,2669,320,240,what are these people holding in their hands,2,28101128082,DO,scissors,phone,cards,sofa,doll and microphone,cards 4205,3164519967,1090,640,480,why did the old lady pick up the pacifier,2,31645199670,CW,put in sink,keep in box,put back to baby s mouth,pass to man,baby is crying,put back to baby s mouth 4206,5205081904,623,360,480,what did the boy do after squatting down for a while,3,52050819047,TN,walk forward,pick up grass,bend down and touch the woman s back,lie backwards,continue cycling,lie backwards 4207,4674481985,734,640,480,what is currenlty happening in this video,0,46744819859,TC,people jumping into the water,enjoying a cable car ride,people dancing,martial arts,lady playing with her pet,people jumping into the water 4208,5421648216,1290,640,360,why are the sheeps insde a fence,0,54216482160,CW,protect them,prevent running away,prevent run away,controlled by owner,to prevent poeple from skiing away,protect them 4209,5623068492,2375,640,480,why does the man with black hair put up his hand,1,56230684921,CW,watch his performance,defender,writing on the ground,posing,indicate where to do stunt,defender 4210,5681946487,848,320,240,how does the boy wet his hair,1,56819464877,CH,on man s lap,using a cup,hug baby,use a spoon,put head into water,using a cup 4211,3851961428,2062,640,480,where is this video taken,3,38519614286,DL,roadside,forest,dining table,pool,studio,pool 4212,9208803675,582,640,360,where is this happening,4,92088036755,DL,bedroom,classroom,on the road,hospital,park,park 4213,2810112808,2669,320,240,why are the three people sitting in a circle,4,28101128087,CW,waiting for their turn,curious and interested about the plant,talk together,listening to a podcast,playing card game together,playing card game together 4214,6205856607,978,272,480,how does the girl react when the horse turns towards her the first time,3,62058566074,TC,climb onto chair,run away,shouted,smile,disgusted,smile 4215,4388652400,1785,640,480,why does the man points towards the screen near the beginning to the dog,1,43886524000,CW,wants to play with toy,to get the dog s attention,chasing his tail,to attack ball,scratch more,to get the dog s attention 4216,3249402410,697,640,480,what did the lady in black on the left do after she finished spreading the sauce on her pizza,3,32494024108,TN,slice the pizza,cut the meat,point,put cheese,put on plate,put cheese 4217,2623954636,931,500,375,why is the boy walking around the room after throwing the ball,4,26239546363,CW,playing with the woman,get ready to change clothes,playing with the cat,to take the phone,chase the ball,chase the ball 4218,6762389913,1371,640,360,why did the black dog lick the brown dog at the beginning of the video,1,67623899130,CW,play with snow,show affection,wants to drink,playing with the cameraman,tired,show affection 4219,5349969207,1193,640,360,how does the black dog keep itself cool,3,53499692077,CH,jumping in snow,lie on its belly,jump into water,position in front of fan,wear hoodie,position in front of fan 4220,9612838272,453,640,360,what does the girl do after climbing up,0,96128382726,TN,slide down,grab the camera,wave and dance,playing with toys,climb onto man s back,slide down 4221,3814690167,453,640,480,how did the baby react when the lady did not respond to his approaching,3,38146901678,TC,look at camera,smiling,bring book closer to baby,kept lying on lady arms,kicking his legs,kept lying on lady arms 4222,4249756405,774,320,240,how did the lady react to the man,1,42497564058,CH,look away,talk to the man,watching on the tv,look at her phone,press remote control,talk to the man 4223,4925211209,768,640,360,why did the man wear helmet,1,49252112090,CW,sunny,working at high place,pactice fencing,perform play work,horse riding,working at high place 4224,5858985747,349,604,1072,what does the baby in yellow do after walking close to the sofa at the end,2,58589857476,TN,sofa,turn around,pick up phone,bend down,excited,pick up phone 4225,2973331780,1015,640,480,where is this video taken,0,29733317806,DL,room,kitchen,park,train,station,room 4226,3830567237,716,640,480,why does the man in blue look down while walking in the middle,2,38305672373,CW,resting,hand gesture,looking at phone,talking to man at bottom,hug dog,looking at phone 4227,3175315183,2513,640,480,why did the baby lean his head to his right in the middle,0,31753151833,CW,to bite hanging toy,look at the lady,to grab the blanket,to crawl away,prevent falling,to bite hanging toy 4228,11966080214,1531,640,1138,why did the girl move nearer to the wall at the beginning of the video,3,119660802147,CW,take a book,take a flower,adjust the fan,more comfortable position,adjust the shelves,more comfortable position 4229,3063380173,515,500,375,how did the kitten inside the container react when the kitten outside did not come in at the middle of the video,4,30633801737,TC,tap the cushion it was on,sit down in front ot he person,look at cat in container,play with it,try to come out,try to come out 4230,7961460440,360,640,480,why did the man step on the branches in the middle of the video,0,79614604409,CW,in order to land,pick up the kite,to break them for fire,point at something,to get more fruits,in order to land 4231,2973331780,1015,640,480,how did the lady in black express her feeling as she sang,0,29733317804,DO,sway her body,speak loudly,jump up and down,holds her hand,running,sway her body 4232,6896884547,1440,640,360,why is the baby holding onto the ball,0,68968845470,CW,pat it,kick off the ground,dancing,golfing,to put it in the holder,pat it 4233,3851961428,2062,640,480,how are the people breathing in the video,0,38519614280,CH,oxygen tanks,oxgen masks,nebuliser,inhaler,machines,oxygen tanks 4234,4707679105,965,640,480,what did the boy do after he pointed at the book at the end of the video,4,470767910510,TN,stand behind baby,lift bottle to drink,moved the car on the table,gets back up,look at the man,look at the man 4235,7888256388,658,640,480,what did the dog do after sniffing the lady s shoes,2,78882563883,TN,looks at the direction,put dog back,walk away,move backwards,eat food,walk away 4236,6617533993,1384,640,1138,how does the girl sit while playing with the toy,4,66175339935,CH,by holding her hands,hold the attached string,making faces,lie on floor mat,kneel,kneel 4237,6244382586,619,640,360,what is the lady in blue looking at,2,62443825863,TC,the man in black,mountains,girls ride horse,the stage,rope,girls ride horse 4238,7888256388,658,640,480,why did the dog move forward towards the lady after it was patted,1,78882563885,CW,copy whatever he sees,sniff her shoe,dog pulls the leash,wants to get pet,find the girl,sniff her shoe 4239,3429509208,374,640,480,why is the boy touching the vacuum cleaner,0,34295092081,CW,push it,wash their hands,show interest,press the keys,drinking,push it 4240,4516967897,2036,640,480,how do the two ladies feel while talking,1,45169678976,TC,confused but calm,relaxed,happy whenever the man kisses them,bored and uninterested,agitated,relaxed 4241,5521781780,2697,640,480,what does the man in white do while sitting under the umbrella,3,55217817806,TC,talking,stand up,put on railing,eating something,bat,eating something 4242,4970148391,732,640,480,what does the boy do when the balloon approaches,1,49701483914,TC,run to trampoline,hit it,lean and look forward,throw bat,move baby up down,hit it 4243,4087013668,1442,640,474,where did the baby take the peels from,1,408701366810,DL,pumpkin,stainless basin,pour the bottle,cup,lady s hands,stainless basin 4244,7308042410,1019,640,1138,what is the girl doing while sitting on the ground,4,73080424100,TC,play with baby,playing with ball,watching,posing,pottery,pottery 4245,3372023610,1017,640,480,what are the possible relationships among the 4 people,4,33720236108,DO,coworkers,team member,teacher student,classmates,friends,friends 4246,6727904179,962,640,360,what did the boy do after he reached the end of the window,0,67279041796,TN,walk away,reach for the airconditioners,walk to baby,very happy,grab the back of his chair,walk away 4247,4179163342,2172,640,480,why did the man in black move his hands as he talked,0,41791633421,CW,gesture this words,test projector,reading from script,making machine move,cold,gesture this words 4248,10109097475,2698,640,360,why did the aircraft stopped on the runway,2,101090974754,CW,record performance,plane went high in the sky,finish testing the runway,direct the plane,landing,finish testing the runway 4249,4419096437,1584,640,360,why did the cat open its eyes the first time,4,44190964370,CW,disturbed by dog,basket shaked,tickled by feather,fan blowing in its face,get caressed,get caressed 4250,6011836129,1447,480,360,how do the women support their upper body,3,60118361293,CH,put hand on table,hug the wall,with a walking stick,put hand on ground,they lean on each other,put hand on ground 4251,9217939684,1660,512,288,what happens to the baby when he approaches the woman in pink,2,92179396847,TC,kick her,watch her reaction,fall down,turns around and walk,smile,fall down 4252,6163877860,2160,640,360,how was the baby positioned at the start of the video,2,61638778603,DO,taking support of the ladies leg,held by man,sitting,carry and bounce him up,crawling,sitting 4253,7987845241,1511,640,1138,how does the woman in white respond once the woman at the back presses the bandage down,4,79878452416,TC,play with the toy,take the brush out,change direction of clicking picture,close the lid,pat dog,pat dog 4254,2735019707,583,640,480,why are the different sizes of drums placed together,4,27350197074,CW,showcase,perfomance costume,play tennis,engrossed in music,make different sounds,make different sounds 4255,8604794910,405,640,360,what did the children do each time after they swing the racquet,0,86047949100,TN,pose with racquet,prepares swinging again,hi-five,walk to white basket,looking at arcade,pose with racquet 4256,3524939594,436,320,240,why did the man pushing the cart accelerate and stop the cart suddenly,2,35249395943,CW,someone asked him to do,display settings,create fear and thrill,need more strength,more thrilling,create fear and thrill 4257,5504913999,1475,640,360,how did the man pushed himself to move,1,55049139994,CH,use strings,use poles to push,asked for help,cycle up slope,motivate himself,use poles to push 4258,10082798964,345,640,360,what does the mother do next after raising her right hand,0,100827989647,TN,scrunch her fingers,rubs her mouth,drag it towards her,walk off,touch baby s hand,scrunch her fingers 4259,3060478605,432,320,240,how many people were riding the horse,0,30604786057,DC,one,two,six,five,three,one 4260,4083875373,1621,360,480,what happens to the girl after spinning too many rounds in the middle,2,40838753733,TN,tie her hair,dancing backward,gets dizzy,dancing,raise her leg,gets dizzy 4261,2782658657,787,640,360,what did the girl in pink do after she reached the stairs,2,27826586575,TN,picks up the water bottle,happy,stop,pose for camera,look at camera,stop 4262,4127497265,895,360,480,what did the baby doing after shaking his arms,2,41274972657,TN,move his head around,shakes her head,chew the toy,stop crying,close his eyes,chew the toy 4263,8428551576,2688,640,360,why does the baby hold the ipod at the start of the video,2,84285515763,CW,give to baby,listen music,playing with it,to throw it,give ipod to lady,playing with it 4264,5134317883,1890,640,360,whta are the two men doing in the video,1,51343178830,DO,music show,curving pumpkin,singing,play the guitar,having dinner,curving pumpkin 4265,8493226484,968,640,1138,why did the woman put her hand on the back of the boy s head,4,84932264842,CW,pat his head,adjust his hair,reposition the pillow,put him on the bed,support him from falling,support him from falling 4266,5349766264,1884,640,362,how did the man in black checkered see clearly,4,53497662647,DO,swinging cups to each other,hit the drum,shocked,sit in front of the classroom,wear spectacles,wear spectacles 4267,7499763064,604,640,360,what does the lady in blue do as the man was trying to climb higher nearing the end,4,74997630642,TC,move hands around,stretch her feet,stand still,move her forward,wait and watch,wait and watch 4268,3530231811,2697,640,480,what is the possible relationship among the people on the stage,4,35302318116,DO,team member,friends,classmates,rock,band members,band members 4269,2920952624,825,352,288,how does the shorter woman stir fry her dish after sprinkle something,2,29209526242,CH,a knife,use big spoon,with a spatula,put force to push knife down,using fingers,with a spatula 4270,4103088549,485,640,480,why does the man start swimming furiously in the beginning,0,41030885493,CW,to catch the wave,to swim away from the shark,he was in a race,stung by jellyfish,to help the toddler,to catch the wave 4271,2782307049,461,640,480,what activity is the lady in red doing,4,27823070499,TC,mask,camera strap,goggle,picking,flying fox,flying fox 4272,5421648216,1290,640,360,what does the white sheep do after looking at the other two sheeps at the start,2,54216482164,TN,walking,walk away,nothing,move away,chased it,nothing 4273,6272786009,535,640,384,what event is taking place,0,62727860095,DO,rowing competition,informal dinner and dance gathering,dinner,family gathering,a conference of leaders,rowing competition 4274,5549243726,527,640,360,why did the girl clap her hands at the beginning,1,55492437260,CW,holding up her toy,attract baby s attention,saying hi,performing,to hold the ball,attract baby s attention 4275,4942054721,645,640,360,what were the goats doing that were zoomed in by the video doing,4,49420547214,TC,grazing,playing fetch,standing,fighting,feeding,feeding 4276,3303565503,1115,480,640,why does the man suddenly move his hand to her waist and let out a breath of air,0,33035655035,CW,tired,check on her,get recorded,talking about her,protect boy from falling off,tired 4277,3321261856,855,640,480,where is this video taken,4,33212618564,DL,sheltered area,on the plane,outside,speech hall,corridor,corridor 4278,2920952624,825,352,288,how does the shorter woman reach the frying pan to stir fry after sprinkling something into it,1,29209526246,CH,using spoon,steps on a stool,use both hands,in circle,using fingers,steps on a stool 4279,2697261300,1392,640,480,why was the lady in grey having her arms stretched out in the middle,4,26972613002,CW,playing drums,answering a call,make voice louder,protect sun,take picture,take picture 4280,7887764754,1063,640,480,what does the baby do after the dog eats the food on her hand at the start,1,78877647542,TN,move spoon slowly towards baby,look at camera,get dog to do tricks,ignore baby,happy,look at camera 4281,8387356484,1022,604,1072,what did the baby put into his mouth at the beginning of the video,3,83873564841,TC,closes eyes,fall,standing,his hand,bites the toy,his hand 4282,5735711594,589,272,480,where is this place,3,57357115946,DL,train station,in a building,golf course,park,theatre,park 4283,9531760182,2097,640,480,how is the baby kept supported at the table,4,95317601826,CH,lie prone on back,on woman s lap,sofa,laying in the pram,baby chair,baby chair 4284,8387356484,1022,604,1072,where is the baby sitting,0,83873564843,DL,baby chair,indoors,in walker,play area,living room,baby chair 4285,4138579400,601,640,480,how did the boy test the strength of the marshmello bridge in supporting the weights in the cup,3,41385794003,CH,pick up candies on the floor,he opened his own mouth,with his feet,putting sticks in it,hold the boat,putting sticks in it 4286,5940941487,838,640,362,what does the lady do after looking at the girl near the end of the video,3,59409414874,TN,wave,start clapping,point somewhere,smiles,talks to him,smiles 4287,2782307049,461,640,480,how did the lady red supported herself as she slide down the rope,2,27823070494,CH,climb up,jump on the other foot only,hold the handle,girl in black holding her,push manually herself,hold the handle 4288,4092992100,461,640,480,how does the guy in red move his bicycle up at the start,3,40929921006,CH,ask adult to help,pulled the handles,ride quickly,push,ride slowly,push 4289,2461993294,1999,640,480,where are the people performing,0,246199329410,DL,room,in the sea,concert hall,ice field,road,room 4290,8387356484,1022,604,1072,where is this video taken,4,83873564846,DL,backyard,train,playground,sea,house,house 4291,13296054183,303,640,1138,what are the men doing in the park,3,132960541835,TC,water skiing,reading,trekking,cycling,hiking,cycling 4292,4420239986,669,640,480,why did the cat stand up halfway when the dog started biting her,1,44202399862,CW,irritated,defense,clean nose,fight back,excited,defense 4293,3249402410,697,640,480,why did the lady in black on the left put the scoop into the pot at the beginning of the video,3,32494024100,CW,to dip the brush conveniently,getting a drink,scoop the sand out,scoop the sauce,put cake to eat,scoop the sauce 4294,4136617240,2697,480,352,why is there a lady dancing near the girl,1,41366172402,CW,watching her steps,dancing with the girl,learn to dance,props,her belongings,dancing with the girl 4295,3452354871,511,640,360,how did the bird clean itself,1,34523548715,CH,dip into water,shake head and wings,jump into water puddle,jump into the pond,flying and spinning,shake head and wings 4296,6037747123,919,640,480,what are the people on the grass doing,0,60377471233,TC,playing golf,rafting,beach volleyball,standing around,rugby,playing golf 4297,4189100053,874,640,360,how does the boy feed himself,3,41891000533,CH,use scoop,spoon feed,lady passed them the food,using fork,let boy sit on lap,using fork 4298,11244289523,552,640,360,why did the lady in black hold the tissue in front of the baby s mouth,4,112442895233,CW,make funny face,caress baby,for baby to bite,play with baby,clean baby mouth,clean baby mouth 4299,3427674558,870,640,480,why is there light only on stage,1,34276745580,CW,swaying while performing,focus on the performers,attention on him,separate the performers from the audience,to reach the drum,focus on the performers 4300,5133787349,363,320,240,how does the man at the side react when the man in white and man in black in the centre at the start,2,51337873495,TC,sit down,clap his hands,move arms in air,walk towards the thrown disc,walks off the stage,move arms in air 4301,5008618500,754,640,480,why is the lady holding the back of the baby throughout the video,3,50086185004,CW,to feel baby s head,to video him,teaching him swim,lift baby up,support baby,lift baby up 4302,7331927796,519,352,288,why does the white dog reach up towards the boy s face near the end,2,73319277964,CW,affectionate gesture,snatch away toy,to sniff,push down boy,lick his toy,to sniff 4303,5913180144,1191,640,480,how are the people positioned on the stage,3,59131801445,TC,standing in a circle,sitting in a circle,random allocation,stand in a line,messily,stand in a line 4304,4485498145,496,640,480,where could this be happening,2,44854981457,DL,bouncy castle,roadside,shop,lab,kitchen,shop 4305,2400171624,996,500,375,where are the people hanging out,4,24001716245,DL,living room,swimming pool,grassland,garden,hill,hill 4306,13569831214,1664,640,480,what is the relation between two people skiing down the snow,3,135698312140,DO,parent offspring,teacher and student,employer and employee,friends,strangers,friends 4307,4584426085,2697,360,480,what was the puppy doing before the lady put the red shirt over its body,1,45844260858,TP,moved back to the wall,climbing on to lady,walk away,bite her arm,look around,climbing on to lady 4308,8811725760,631,640,360,how did the lady help the girl get onto the slide,0,88117257601,CH,carry girl,walked up with her,asked hor help,lifted her on her shoulders,put her in a baby carrier,carry girl 4309,3935853204,943,640,480,how are the other people positioned around,4,39358532046,TC,sitting on the sofa,running around,sitting around the campfire,dancing randomly,standing,standing 4310,10607095936,1080,640,360,how many people are involved in the video,0,1060709593611,DC,five,two,three,one,four,five 4311,2877270840,780,640,480,why is the man swirling his wine glass,3,28772708404,CW,to drink when he is thirsty,for water to drip down,feel the music,mix the drink,show wine in glass,mix the drink 4312,4626535366,1468,640,360,what are the four children doing while one of them is presenting,4,462653536610,TC,gesture,play driving,drinking milk,sitting in the corner,standing in a line,standing in a line 4313,3355698421,1193,640,360,what does the man in checkered do after drinking from his glass,4,33556984216,TN,good,flip cup for game,picks up the glass of beer,caps the bottle,talk with the woman in black,talk with the woman in black 4314,8594314852,377,640,360,why is the child in blue wearing a helmet,0,85943148520,CW,cycling,perform play work,keep hands warm,protect from sunlight,riding horse,cycling 4315,6988748711,1512,640,480,why did the blue shirt woman step on the cloth of the mud at the start,3,69887487110,CW,check the quality of cloth,spread it out,show its function,flatten soil,take something from mud,flatten soil 4316,6582763207,696,640,360,what is the girl doing,2,65827632070,TC,gaming,playing with her book,playing with sticks,put down her club,applying cream on face,playing with sticks 4317,5662041273,2697,640,480,why did the boy move off the sofa,0,56620412731,CW,find the helicopter,pick up the phone,go for a walk,find his mother,open the door,find the helicopter 4318,2454242177,1574,320,240,how did the baby play with the toy car,4,24542421772,CH,fidgeting on toy car,play with tool,he was stuck at the sofa,intrigued by the wheels,push it around,push it around 4319,6297019062,1746,640,360,what is the baby in purple chair doing as he sat on it,2,62970190626,TC,excited,wrap strap around his wrist,touching his chair,water bottle,watching the baby and lady,touching his chair 4320,8428551576,2688,640,360,how does the baby listen to the ipod,1,84285515767,CH,swipe off the person s hand,put ipod next to ear,wireless earplugs,puts in her mouth,headphones,put ipod next to ear 4321,4949582792,2639,640,360,why was the girl stretching her arms out to the pram after she rocked the pram,0,49495827922,CW,play with seatbelt,make baby happy,face the camera and sit down,rock it,rock the pram,play with seatbelt 4322,3261079025,553,640,480,why is the man wearing cap holding a controller in his hand,1,32610790250,CW,swiped by the person,control the plane,play with chidren,control the car,control the screen,control the plane 4323,6097994550,526,640,360,why did the person lying down sit up towards the man on top of him at the start,3,60979945502,CW,exercising,hold him tightly,break free of handcuff,attack him,got his gun,attack him 4324,8107573462,406,640,360,why did the boy fall,1,81075734626,CW,trying to catch fishes,boy is nascent and learning,lose balance,reading the book,move to next base,boy is nascent and learning 4325,14012319794,3010,640,360,how many children are in the video,4,140123197941,DC,three,six,seven,kitchen,one,one 4326,8388104887,1233,640,480,what did the dog do after the person threw the ball,3,83881048872,TN,lays down,smell it,looking at ball,chase after ball,bring it to lady in jeans,chase after ball 4327,6168716346,949,640,360,what does the boy with blue shirt do after looking away for a while at the start,2,61687163467,TN,move to the side,following him,touch his chin,push the blue book down,point towards kitchen,touch his chin 4328,8107573462,406,640,360,why did the man let go of the boy s hand while he ski down the slope,0,81075734625,CW,boy had fell down,his hands were cold,wanted boy to move on his own,he wanted to push the boy,pose for photo,boy had fell down 4329,8330342965,1313,640,362,why does the girl have a paper airplane in her hand,0,83303429651,CW,play with paper airplane,take a photo,unfold the paper airplane,pass to adult,pretending to play,play with paper airplane 4330,5008618500,754,640,480,how did the child in pink react after the lady show the belly button of the baby to her,0,50086185008,TN,look curiously,look at toy,goes to help,take the cube,swinging her arms,look curiously 4331,4272084125,732,640,480,why is the man smiling into the camera at the end of the video,4,42720841259,CW,enjoy dancing,to talk,excited to throw someone,listening to the lady,excited,excited 4332,4485498145,496,640,480,who is the woman talking to initially,3,44854981451,DO,boy in red,man in blue,lady in yellow,to the person opposite her,the middle singer,to the person opposite her 4333,6329077812,1835,640,360,how did the lady react after the baby spited out milk,0,63290778125,TN,wipe away,pleased,move hands into water,move the toy again and again,push baby back,wipe away 4334,6143391925,1206,640,480,how did the baby play with the ball,4,614339192510,CH,turning using hands,throwing to each other,hug it,pass to adult,kick it,kick it 4335,7453733046,992,640,360,what did the girl in blue do after pulling the girl in pink away,0,74537330463,TN,step on water hole,she smiled,walked away,wash hands in mud,change position of her legs,step on water hole 4336,3066064005,819,640,480,why does the woman in black open the lid of the bowl on the table,1,30660640058,CW,eat,ready to eat,ordered by customer,listening to lady in black,read book,ready to eat 4337,7533369046,803,640,360,what did the baby do after she turned away from the black box at the end of the video,1,75333690462,TN,put the box aside,look at the white box,carry baby up,do a peace sign,dance with hands,look at the white box 4338,3943634344,629,640,360,what did the lady do after the girl finished reciting the pictures on the book,2,39436343443,TN,look at camera,look at the other girl,claps,flip page,hands it to the baby,claps 4339,4612723694,1681,640,480,how did the man in grey slowly let the snake out of the bag,4,46127236947,CH,both hands,shake body,holds his string,rests on the sofa,pick up bag,pick up bag 4340,3046900922,539,640,480,what does the child do after being placed on the ground,1,30469009227,TN,pat the chair,walked away,jumping near the adult s knee,rise right arm,lie on the ground,walked away 4341,4516967897,2036,640,480,what were the two ladies doing before they started talking at the start of the video,4,45169678974,TP,hanging clothes,scratch her head,kiss her,nodding,staring at the fountain,staring at the fountain 4342,5533380417,403,640,362,what did the man do after the baby moved its hands,0,55333804173,TN,looks at the baby,guide boy to lift handle,stand there,pinch baby s nose,drag trolley,looks at the baby 4343,5561024834,947,640,360,what does the boy do after doing a spin on the bed,0,55610248347,TN,gets down from the bed,takes support,pick up the other side,sit prone on bed,walk towards the girl,gets down from the bed 4344,7492398760,2697,640,360,why is the lady holding the camera up at the start,4,74923987607,CW,just carrying it,to get the baby s attention,putting it on shelf,showing to woman,take photos,take photos 4345,4147398280,1716,480,360,what did the boy do when he is trying to solve it,2,41473982801,CW,teach the other boy how to play,reach for tissue,eyes does not leave the cube,wants to hit spoon,crawl to the adult,eyes does not leave the cube 4346,6168716346,949,640,360,what does the boy with blue shirt do after looking at the box of crayons for a while at the end,1,61687163469,TN,go to the lady,looked at the boy in red,sits next to the grey lady,looked at the crayons,flip open to read,looked at the boy in red 4347,6168295272,446,640,360,how did the girl in blue reacted when the lady in blue shaked her hands in front of the girl,2,616829527210,TC,sit down on chair,goes to get food,smile and hug,waving her arms,put hands over the skarf,smile and hug 4348,4419096437,1584,640,360,where is the cat resting,4,44190964375,DL,stone,ledge,balcony,house,on a pillow,on a pillow 4349,2793260225,558,500,375,how was the lady in pink positioning herself on top of the man s shoulders,0,27932602257,CH,used her knees,kiss girl,smile,walking backwards,hold it up with her right hand,used her knees 4350,6233408665,2246,640,360,what is the lady in pink doing in front of the girls,0,62334086654,TC,singing,with their legs,pushes the spoon away,watching them,ran backwards,singing 4351,8241491518,891,640,480,why does the man swing his hand hard,4,82414915183,CW,legs painful,make it more fun,talking,press keyboard,chop leaves,chop leaves 4352,4983922034,479,640,480,how do the two dogs in front of the man react every time he kicks,4,49839220344,TC,follow the black dog,catch ball,runs around,stop moving,jump to bite snow,jump to bite snow 4353,4688219212,959,640,480,what does the coach do after the boy jumps down from the rings at the end,2,46882192128,TN,move back to spot to jump,turn around,shake his hand,throw mickey,climb up the stairs,shake his hand 4354,14012319794,3010,640,360,what did the girl do after she got the flag,4,140123197945,TN,put down her club,stand up,stomp her foot,walks away,run around the room,run around the room 4355,2604394962,1078,640,480,why did the man turn the body of the toy away from the edge of the wall,0,26043949623,CW,play with it,fidgeting,prevent toy from dropping,let hit swim,rocking the toy,play with it 4356,9293415110,2160,640,360,what activity is being carried out,0,92934151103,TC,dancing,playing at living room,roadside,cycling,conference call,dancing 4357,4146348376,1585,640,480,what does the man do after finishing talking to the group,3,41463483763,TN,walk back to table,talks to the lady,joins the audience,start writing,smile,start writing 4358,8313365386,318,640,360,what does the girl in green do after she flipped the page,4,83133653861,TN,stand at the same spot,speaks to the camera,look at the paper,play with it,points her finger on something,points her finger on something 4359,9917882506,974,512,288,what was the boy doing right before the girl came to a stop in the middle,4,99178825063,TP,turn around,dancing backward,open his mouth,touch his cheek with palm,starts cycling again,starts cycling again 4360,8224492254,972,640,480,why did the adult move her finger to the baby while holding his hands,1,82244922542,CW,push baby back,let baby bite,playing with him,balance and prevent from falling,asking baby to come,let baby bite 4361,6690256857,344,640,360,why did the one of the boys hold the dog up,3,66902568570,CW,wants to play with toy,to play with dog,get its attention,shower it,make it jump,shower it 4362,3026084730,2205,640,480,why did the men leave the stage after finishing his speech,0,30260847305,CW,done talking,make way for the next performance,get his water,allow audience to see the stage decorations,use the phone,done talking 4363,2717347132,818,640,480,what did the baby do as he looked his left after the middle,1,27173471321,TC,hit the toy,grab the blanket,take off sweater,dress clothes,wearing socks,grab the blanket 4364,2584172238,719,320,240,what did the girl in pink do after the boy in blue slid down the slide,4,25841722383,TN,happy,come closer to the baby,walk away,slippery,slide down,slide down 4365,2971556305,1459,640,480,why does the lady in pink have her hands raised up in the video,4,29715563056,CW,adjust her hair,her turn to perform,cover eyes,like it,making video,making video 4366,4518113460,1867,640,480,why does the man walk around the baby,3,45181134600,CW,feed the baby,putting on clothes for baby,rearranging furnitures,playing with the baby,finding ball,playing with the baby 4367,3158022797,2697,640,480,what is the relationship of the people in the video,3,31580227977,DO,friendsteam member,friendsfamile member,teammates,family,wedding,family 4368,3869005094,300,640,480,how many people are in the video,1,38690050949,DC,eleven,four,nine,seven,two,four 4369,3943634344,629,640,360,how did the lady get the attention of the girl at the beginning of the video,4,39436343447,CH,touch baby face,put on the lady body,claps,sitting on the horse,points finger towards the picture,points finger towards the picture 4370,4372494989,2575,640,480,how does the man in red attempt to teach the child about how to pray,0,43724949893,CH,hold his hands,show him a video,dance with him,read to him,talk and nod,hold his hands 4371,5070310138,1603,640,480,why are there toy ducklings in the waters,0,50703101383,CW,for baby to play with,eat the food dropped,eating pieces of bread,get food,playing in water,for baby to play with 4372,6239210933,1030,640,480,why does the child in blue drop the pink toy after changing the toy s orientation,3,62392109333,CW,stop the baby,play with dog,not skilled at walking,play with it,playing with baby,play with it 4373,4707679105,965,640,480,what did the baby do after the man flipped the book,0,47076791054,TN,point at the book,picks it up,put her fingers together,hold her up,walk back to bed,point at the book 4374,4970148391,732,640,480,what happens to the water ball after being hit,0,49701483915,TN,burst,pick up and push boys away,pass it around,straighten up,turn back,burst 4375,3555755537,1599,640,480,why does the person put a towel on his neck,1,35557555373,CW,absorb water,make lying down more comfortable,wipe off sweat,shield from raining,performance move,make lying down more comfortable 4376,2726497009,1575,640,480,why is the first female wearing a helmet,0,27264970090,CW,cycling,riding motorcycle,roller skating,playing in obstacle course,kayaking,cycling 4377,3471421544,1786,640,480,what does the baby do after he lights up the toy,2,34714215441,TN,frown,curious,look at lights,dances,try to turn around,look at lights 4378,10042935613,1710,640,360,what does the boy in red do after he wiped his hands with the tissue,0,100429356135,TN,keep chewing food,run to the plant,rub leg,spray at boy in brown,walk away,keep chewing food 4379,4189100053,874,640,360,how does the woman attempt to prevent food spillage at the start,4,41891000537,CH,lean forward,excited,wear a bib,boy hands over the food,hold palm out under spoon,hold palm out under spoon 4380,2454242177,1574,320,240,what did the dog do after getting the ball at the start of the video,1,24542421773,TN,resting,starts biting the ball,walk around in circles,bark,lie on the ball,starts biting the ball 4381,8318310610,663,640,430,how many girls are involved in the video,1,83183106109,DC,seven,five,one,three,two,five 4382,5833145209,510,640,480,why did the bird jump into the water,2,58331452091,CW,to swim,feed on fishes,to bathe,find food,making air bubbles,to bathe 4383,3526597179,807,640,360,why is the lady in white looking around her as she walks around the house,4,35265971795,CW,looking for a lady,ensure the flower vase do nt fall,calling out to the man,searching for better vantage points,observing,observing 4384,3902997424,779,640,480,how many people were watching the man playing keyboard,4,39029974246,DC,four,one,three,five,two,two 4385,4955723618,1831,640,480,why did the man in black with tied up hair turned backwards after he received the microphone,4,49557236187,CW,script on card,give microphone to lady,pull the fishing rod,check for incoming traffic,go somewhere else,go somewhere else 4386,2495861393,1499,500,283,what does the adult do after showing the children the carrot,0,24958613938,TN,bend down to take other things,took bacon,pick up toy leg,on the bed,caress the rabbit,bend down to take other things 4387,3233088823,462,640,480,how is the bulldozer controlled,0,32330888233,CH,from the drivers cabin,use microphone,moving their legs,pulled by another boat,string,from the drivers cabin 4388,4217422838,1261,640,480,why is the boy seatin down on the floor with a lot green boxes,3,42174228380,CW,free hands for other toys,he fell,push the skateboard,boxing,playing with it,boxing 4389,4935987905,806,640,360,how many dogs are there in the video,3,49359879051,DC,one,five,two,three,six,three 4390,6291413193,1980,640,480,what did the lady do after speaking into walkie talkie,3,62914131937,TN,picks up her bottle,licks girl,point towards the board,look at dolphin,point at statue,look at dolphin 4391,3121571439,1212,640,428,what is the relation between the man in black and the lady in pink,0,31215714394,DO,couple,teammates,team member,grandparent grandchild,father and daughter,couple 4392,2854886555,480,320,240,how did the boy take the fruit from the tree,0,28548865556,CH,pulled it out,climb the ladder,he jumps up,climb the tree,cut it down,pulled it out 4393,3456030972,755,640,480,how does the child in black interact with the abacus near the end,1,34560309728,CH,touch baby s feet,use finger to push the beads,hand gestures,press the keys,speaking in the microphone,use finger to push the beads 4394,4273039295,2214,640,360,what does the woman in green beanie do after the child falls down,2,427303929511,TN,lift her feet,baby touch her hand,pull him up,stand at the same spot,on her head,pull him up 4395,11565498775,1216,640,360,what did the man do after the boy ran away,2,115654987750,TN,lean in to watch,puts it on the table,follow boy,use towel cover it,sitting on the sofa,follow boy 4396,2567843468,572,320,240,why does the girl learn forwards at the end,4,256784346810,CW,play with the babies,practicing dance moves,to get the baby s attention,tie shoelaces,try to grab the starfish,try to grab the starfish 4397,3155382178,858,640,480,what does the man do after kicking the ball,3,315538217810,TN,kick some more,prepares swinging again,throw ball,run towards the ball,shift the wooden thing,run towards the ball 4398,4219909195,1003,640,480,what did the man do after he adjusted the girl s leg,3,421990919512,TN,clasp her hands,kick,bend her body,look to his left,touch her face,look to his left 4399,4765717907,1180,640,480,why did the man carry the boy for the second time,0,47657179073,CW,to reach the basket,go to another chair,playing around,to break up the fight,let boy pour the soil,to reach the basket 4400,3830567237,716,640,480,why does the man in black hold the water hose at the beginning of the video,0,38305672370,CW,let horse drink,hand gesture,watch the man untie the toy,wash horse s body,drinking,let horse drink 4401,5333075105,1168,640,480,how did the man kept his head warm,1,53330751050,DO,wearing a cap,beanie,put on blanket,blanket,jackets,beanie 4402,5933003028,931,640,360,why is the computer screen on for,1,59330030283,CW,game,recording data,playing a movie,performance,giving instructions on how to dance,recording data 4403,9082180631,406,640,360,where did the lady in black put her hands while she skate,1,90821806316,TC,cross in front,behind her back,touch her hair,hold the sledge,her nose,behind her back 4404,4010069381,369,640,480,why does the lady walks away after the conversation with man is over,3,40100693813,CW,pick up phone,enjoying stroll,giving her space to perform,help man do something else,performance ended,help man do something else 4405,7988210561,320,640,384,why did the baby tilted her body to her left near the end of the video,2,79882105617,CW,to climb down the stairs,to watch the ball,to adjust the toy,reach for the tool on the tyre,eat the food,to adjust the toy 4406,5623068492,2375,640,480,why does the man with black hair lift the other man s hands up near the beginning,3,56230684923,CW,playing,distracted,hand gestures,practice boxing,scared of snake,practice boxing 4407,3078294001,335,640,480,why does the man in black open up his hands near the end,3,30782940011,CW,protect his hands,playing game,test projector,hand gesture while talking,finish writing,hand gesture while talking 4408,4388652400,1785,640,480,why is there no one play with the dog,2,43886524005,CW,feeling sleepy,carried by man,focused on tv,busy playing with baby,special challenge,focused on tv 4409,4130504920,422,640,480,why was there a balloon above the baby at the start,4,41305049206,CW,blow dry the toy,continue lighting it up,look at something,learning to swim,playing around,playing around 4410,9576671750,825,640,360,how did the person hold the phone,4,95766717507,CH,hold middle of the phone,with one hand,put on his body,put on the table,hold the sides of the phone,hold the sides of the phone 4411,5561024834,947,640,360,why does the boy cover himself with the blanket near the end,0,55610248343,CW,playing,keep warm,playing with baby,prevent water into eyes,hot weather,playing 4412,9408800471,1056,640,480,why does the boy constantly throw the balloon up throughout the video,4,94088004714,CW,to take video,aiming,excited and wants to throw again,throw the ball in hoop,play with dog,play with dog 4413,4955723618,1831,640,480,what did the man in grey do after he finished his speech,0,49557236181,TN,pass microphone to man in black,laugh,moves hands,walk back to table,talks to the lady,pass microphone to man in black 4414,3375218204,2241,640,480,what is the relationship between the man and the two kids,3,33752182040,DO,grandparent offspring,brothers,friends,parent offspring,teacher student,parent offspring 4415,9735768590,680,640,360,how does the woman attain the baby s attention at the start,0,97357685907,CH,tucking out her tongue,with cloth,push the chair baby is in,push baby over,shakes her head,tucking out her tongue 4416,4846820256,671,640,480,how did the people protect their head from the sun,4,48468202560,DO,wear yellow hat,sunglasses,wearing swimming goggles,hand,wear caps,wear caps 4417,4036955771,2697,640,480,what did the man and boy behind do as the band was performing at the start,2,40369557712,TC,wave hand to the crowd,dancing,walk behind them,play guitar,look at the guitarist,walk behind them 4418,4485707628,1933,352,288,why did the white dog get onto rock,3,44857076283,CW,bite brown dog,for food,carry by owner,to rest,for shade,to rest 4419,7728559968,1480,640,360,how do the kittens move their legs,2,77285599686,CH,rolling,jumping,kick,licking,pulling the string,kick 4420,5996148663,498,640,362,how did the lady wiped her mouth at the end of the video,1,59961486635,CH,use tissue,her own hands,a cloth,stickers,paper,her own hands 4421,7786283208,636,640,360,why are the kids on the floor,0,77862832080,CW,playing,play with water,sleeping,play with cat,waiting for women,playing 4422,4244817395,1683,640,480,what activity is the boy carrying out,3,42448173959,TC,talking,dance battle,spinning,cooking,baseball,cooking 4423,6713120511,1664,640,360,what does the first person do with her hands as she slid down,3,67131205112,TC,playing with sticks,drinking soup,pick up shoe,stretched out,jumps up,stretched out 4424,8253302563,1056,640,360,what does the boy do after playing with the steering wheel for a while at the end,4,82533025637,TN,running,stood up,adjust it,playing with sofa,close the door of toy car,close the door of toy car 4425,4485498145,496,640,480,why does the woman in pink use her hands while talking,3,44854981453,CW,speaking something,make others notice that,expressive,to explain the man well,engrossed,to explain the man well 4426,6136926089,1522,480,640,what does the boy do when it reached the black stairs,4,61369260896,TC,move backwards,went into the house too,hide behind wall,gets up and wipe his hands,starts crawling upward,starts crawling upward 4427,4857781123,1101,640,1138,what does the dog do after the toy is put away at the end,3,48577811236,TN,get back up,continue walking,play with toy,turn away,walked to a bozx before turning back,turn away 4428,2871995580,2697,500,375,why does the kid go to corner of the room with the box near the start of the video,4,28719955802,CW,playing,dancing,wants to play with baby,pat the cat there,find something,find something 4429,4244817395,1683,640,480,why did the boy squat down after the lady pointed down,2,42448173956,CW,scoop sand,tie shoelaces,take something from drinking machine,pick up the ball,pick up the blue toy,take something from drinking machine 4430,4444192938,866,640,360,what does the girl in red do with her hands while walking down the stairs,3,44441929386,TC,stretch her hands,entered too,drags the box out,nose picking,stop in the middle,nose picking 4431,2669452260,456,640,480,what does the man do after drinking,3,26694522604,TN,touch his fingers,cap the bottle,close the bottle,put down the can,put on gloves,put down the can 4432,4260763967,1017,640,480,why is the boy in blue holding the black item in his hands,0,42607639670,CW,want to play,he is performing a show,watching girl in pink,playing phone,drink water,want to play 4433,2782658657,787,640,360,how did the girl in pink react when she ran past the girl in white,0,27826586574,TC,walk towards stairs,play with baby in yellow,sit on sofa,kick ball to her,stands still in shock,walk towards stairs 4434,2679130168,1504,320,240,why did the adult keep hitting on the cushion as the girl s watching the adult,3,26791301681,CW,remove dust,clean the cushion,change cushion covers,show the girl how to play,adjusting position of the cushion,show the girl how to play 4435,5940941487,838,640,362,how does the lady amplify the volume of her voice,4,59409414873,CH,cup her face with hand,use a speaker,use a voice changer,record with phone and increase volume,sings in the microphone,sings in the microphone 4436,5926256714,863,640,360,why did the man holding the boy take steps forward,1,59262567146,CW,play the piano,moving the baby forward,dancing,push himself forward,form a circle,moving the baby forward 4437,8455160795,600,640,360,what does the person with the stick do after pointing forward with the stick in the middle,2,84551607950,TN,smile,lift and hold by the side,run up shore,look at direction of ball,behind,run up shore 4438,3375218204,2241,640,480,what do the children do after lying on the ground for a while in the middle,4,33752182049,TN,suck their thumb,touches the plant,wave their hands,pet the dog,stand up,stand up 4439,3897746373,399,640,480,how many people are standing on the white stage at the end,1,38977463731,DC,five,six,four,three,two,six 4440,2932897373,558,500,375,why did the cameraman keep turning around,2,29328973735,CW,wave towards audiences,capture the helicopter,show the scenery,film the man riding,look between baby and camera,show the scenery 4441,8188651630,571,640,480,how does the cat grab onto the human s foot towards the end of the video,4,81886516304,CH,with the string,jump,walk,hitting each other,front paws,front paws 4442,8330342965,1313,640,362,why does the girl stretch her hands outwards in the video,1,83303429659,CW,cue woman to talk,throw the airplane,dancing,point at something,holding girl,throw the airplane 4443,3218498932,892,640,480,what does the boy in red do after the boy in black touches him at the start,3,32184989324,TN,flash,move backwards,put in his mouth,rub leg,grab his shoulders,rub leg 4444,5048503508,319,640,480,where are the people hanging out,0,50485035083,DL,forest,swimming pool,auditorium,room,hospital room,forest 4445,10082798964,345,640,360,how does the lady teach the baby,2,100827989649,CH,read from book,talk to baby,using hand gestures,hold baby in her hands,strap baby to body,using hand gestures 4446,6136926089,1522,480,640,how does the baby interact with the slide in the middle of the video,0,61369260893,CH,lay on the slide,baby sit down,hold them together,lie on tummy,bend down,lay on the slide 4447,7533369046,803,640,360,how does the baby move around,1,75333690463,CH,swing in her arms,crawl,walking with toy car,cradle,push with stroller,crawl 4448,6160414832,1831,640,480,what is the shirtless boy doing in front of the camera near the end of the video,4,61604148323,TC,sleeping,playing with dog,surfing,touch the camera,dancing,dancing 4449,11276567104,989,640,360,why did the priest pat the woman in white before she stood up,4,112765671041,CW,carry her up,prevent fall,playing with girl,being unsure,tell her to stand up,tell her to stand up 4450,7288107396,507,640,360,what animal is shown in the video,1,72881073969,DO,sheeps,dog,camel,elephants,rabbit,dog 4451,4882821564,2697,640,480,how many children are in the video,1,48828215649,DC,six,one,kitchen,two,four,one 4452,12392885583,929,640,480,why does the baby turn around at the middle of the video,0,123928855833,CW,he got the pacifier,picks up the grey jacket,enjoy playing with the man,to pick up bag,sits down to play,he got the pacifier 4453,4688219212,959,640,480,what does the coach do after pushing the boy up at the start,4,46882192124,TN,smiles,put hand inside the toy,sit on chair,pushes the box,watch the boy,watch the boy 4454,11587211476,1470,640,360,why is the man in black following the dog,4,115872114761,CW,see where is it going,wanted to change his clothes,get its attention,wanted to feed the dog,to guide the dog,to guide the dog 4455,4367056464,1162,640,360,what does the girl do with her hands in the middle of the video,2,43670564647,TC,riding bicycle,turned behind,clapping,unwrapping present,put in the mouth,clapping 4456,4130504920,422,640,480,what was the person doing as the baby lied on the mattress,2,41305049200,TC,stare forward,fidget,put balloon above him,play with book,sleeping,put balloon above him 4457,6244382586,619,640,360,what is the girl in blue looking at at the start of the video,1,62443825861,TC,mountains,the yellow shirt girl,the girl in purple,glass beaker,the man in blue,the yellow shirt girl 4458,7571121368,1690,640,360,why does the girl in pink look at the child at the beginning,2,75711213684,CW,watching to ensure safety,engrossed,watch her cross the intersection,to understand what is going on,uniform,watch her cross the intersection 4459,4968805923,313,640,480,why is the right most man in black standing at a distance away from the man in white,2,49688059230,CW,waiting to cut ribbon,watching over him,to throw waterball,help the cooker,take video,to throw waterball 4460,4251505427,2290,640,480,what does the child with beanie do after pointing 1 finger up at the start,0,42515054276,TN,go closer to camera,touch white object,put chin on table,hit the toy,takes them out,go closer to camera 4461,2552130183,2697,480,360,why does the lady hold the baby s stomach near the end,3,25521301832,CW,showing affection,pull the lady s hair,touch her forehead,help the baby crawl,to support the baby,help the baby crawl 4462,3784543730,852,640,480,how did the driver kept his distance from the blue car,4,37845437305,CH,in his bag,spectacles,drivers drove,tie around waist,moving towards the right cyclist,moving towards the right cyclist 4463,5349969207,1193,640,360,why does the brown dog show its belly after lying down,0,53499692072,CW,confortable,excited,eating,play together,to bite the white dog,confortable 4464,5061117640,1587,568,320,what does the man in grey do after looking into the room at the start,2,50611176404,TN,sitting,look at the presenters,enter the room,pick something up,watch,enter the room 4465,4260763967,1017,640,480,why are the boys sitting on the green mat on the floor,2,42607639672,CW,playing toy phone,reading,play mat,pet the dog,sleeping,play mat 4466,4984417707,441,640,360,why did the elephant near the goal kick its leg near the end of the video,3,49844177070,CW,kick towards the dog,keep balance in water,stunt,trying to kick ball,remove the dirt,trying to kick ball 4467,4765564263,420,640,480,how did the boy with orange pants moved himself on the orange sheet at the beginning of the video,2,47655642632,CH,hold the handle,jump off,glide,slide away,rolling side to side,glide 4468,6018490041,825,640,480,why is the person at bottom right holding a camera,4,60184900414,CW,record a speech,pass camera to other man,take photo of kids,record the music performance,record the race,record the race 4469,6621511673,2697,640,480,what does the baby do after folding her hands in the middle of the video,4,66215116736,TN,look towards the camera,lean forward,smile and move hands,swing the cradle higher,point at another magnet,point at another magnet 4470,3489439407,1662,640,480,how are the two men next to the lady in blue positioned,0,34894394075,TC,sitting,standing,lying down,jumping,rolling around,sitting 4471,2930782930,939,640,480,why did the lady shift the baby up at the beginning of the video,0,29307829306,CW,adjust,hug baby,more comfortable position,enjoying the song,take pink balloon,adjust 4472,3372023610,1017,640,480,how did the man in grey play his instrument,0,33720236107,CH,strum it,with a bow,press buttons,press piano keys,with two sticks,strum it 4473,3192668394,2079,320,176,what is the woman in blue doing with a piece of paper and drawing equippment while sitting at the sofa,2,31926683942,TC,writing a letter,drawing a dog,drawing portrait of lady in grey,taking memos,drawing the violin,drawing portrait of lady in grey 4474,5907839036,2697,640,360,why did the green shirt man rest his hand on the fence after walking to the fence,0,59078390362,CW,enjoying view by the fence,trying to lift weight,want to rest his hands,stretching his hands,to adjust it,enjoying view by the fence 4475,3198533789,690,640,362,why does the man in white flick his feet backwards before he starts using the water pump,1,31985337894,CW,practicing,create balance,strong current,keep to the beat,play with water,create balance 4476,2716277960,402,500,375,how did the two men get the bicycles across the river,1,27162779604,CH,bagpack,carry the bicycles,ride up and down slopes,balance,sitting on bicycle seat,carry the bicycles 4477,4774302357,450,640,480,where is this video taken,2,47743023574,DL,field,backyard,room,construction site,speech event,room 4478,13296054183,303,640,1138,where is this place,3,132960541836,DL,porch outside house,zoo,farm,park,bus terminal,park 4479,6163877860,2160,640,360,how did the baby move around the sofa,4,61638778605,CH,man carried him,using a baby chair,bounce up and down,roll around,crawl,crawl 4480,8428551576,2688,640,360,why does the baby put the ipod down and climb away near the end of the video,1,84285515766,CW,use the tool on the tyre,grab the metal pans,attracted by blue item,push the trolley,show what music he is playing,grab the metal pans 4481,9612838272,453,640,360,how do the children transport themselves down to the bottom,2,96128382721,CH,holding hands with each other,jump down,slide down,kayaking,hold the ropes,slide down 4482,5945172741,1593,640,480,what was the design of the child's shirt,3,59451727415,DO,bubbles,plain,balloon,striped,dinosaur,striped 4483,4822859674,861,640,480,how happpened to the boy after the man released his hands in the middle,2,48228596745,TN,sit down,turn around,fall over,start dancing,run away,fall over 4484,2434859163,615,500,375,how are the viewers interacting with polar bears,4,24348591636,CH,stay near them,walk around them,touch their furs,feeds them food,stay behind the glass,stay behind the glass 4485,4688219212,959,640,480,how does the coach prevent any potential injuries in the middle,2,46882192125,CH,shoes,gloves,extend hand to help,bandaged,covered shoes,extend hand to help 4486,8330342965,1313,640,362,why is the girl in the corner of the room of the initally,2,83303429650,CW,writing on paper,watching television,ready to throw the paper airplane,time to eat food,gave birth to baby,ready to throw the paper airplane 4487,2821788355,765,320,240,how did the man in red pants maintain his balance,4,28217883551,CH,standing still and avoid moving,removes his belongings,avoid making hand gestures,hug onto a pole,bend properly and follow boat s movement,bend properly and follow boat s movement 4488,3981865268,1109,640,480,how did the man knew how to control his performance,3,39818652688,CH,move left and right,copy the man s action,look at the screen behind,operate the machine,play the piano,operate the machine 4489,4674481985,734,640,480,why is the man holding the string before he jumps into the water,3,46744819855,CW,stay floated,wave hit him,part of the adventure activity,to get support,to warmup the body,to get support 4490,8575881495,2000,640,360,how does the girl react after turning to look at the woman in blue near the end,1,85758814956,TN,moving her spoon slowly,smile,paint house,put hands over lady in blue,the girls riding,smile 4491,3063380173,515,500,375,how did the kitten outside the container react when the kitten inside did not come out at the middle of the video,1,30633801736,TC,sniffing,continue playing from outside,look at cat in container,plates,retreat back,continue playing from outside 4492,3322503255,1233,320,240,why is the person on the ground moving his hands,2,33225032550,CW,dancing,training ground,guiding directions,move the cycle,stabilize themselves under water,guiding directions 4493,11566930393,872,640,480,what does the boy do after walking around the toy at the end,2,115669303935,TN,put hand inside the toy,get off the dest,sit down,comes back,blow to the people sitting around him,sit down 4494,7508439506,765,640,480,how many people are there in the video,1,75084395067,DC,two,three,four,eleven,six,three 4495,2877270840,780,640,480,what does the man do after drinking from the glass,2,28772708406,TN,roll up sleeves,smile,swirl the drink,touch his fingers,shorten the rope,swirl the drink 4496,3935853204,943,640,480,how does the lady interact with the screen,0,39358532045,CH,move her hands around on the screen,wipe with tissue,draw on it,brush it,uses a stylus pen,move her hands around on the screen 4497,7887764754,1063,640,480,what does the dog do after sitting for a while in the middle,1,78877647545,TN,about to go out,lie down,run away,sniff the babys head,walked away,lie down 4498,2782307049,461,640,480,where is this video taken,1,27823070495,DL,outdoors,cliff,grassland,sea,dining table,cliff 4499,2552130183,2697,480,360,how does the lady react after the baby swings his hand at her face,1,25521301835,TN,put on keyboard,moves her face back,cries,shake her head,catches the baby,moves her face back 4500,8208035645,428,640,360,what does the boy do after making a turn,0,82080356450,TN,cycle towards the slope,bend his back,singing,continue reading,riding bicycle,cycle towards the slope 4501,8563398032,2040,640,360,why did the man with plain black shirt move his hands in front of him,3,85633980321,CW,shield from sun,show the object,giving his consent,emphasise points,writing on the ground,emphasise points 4502,8547321641,327,640,362,why does the baby look down while walking towards the sea near the end of the video,3,85473216414,CW,push toy car,attracted to the floating thing,look after the girl,cautious walking,strolling,cautious walking 4503,4103088549,485,640,480,why does the man going from one side to another when surfing,1,41030885492,CW,trying to not fall,follow the wave direction,follow the wind,waves are big,to steer in the right direction,follow the wave direction 4504,7987845241,1511,640,1138,what does the dog do after the injection is done,2,79878452415,TN,running,bends down to pat dog,put its paw back,wag tail,play with dog,put its paw back 4505,2871995580,2697,500,375,why does the man throw the ball on the mat near the beginning,0,28719955800,CW,play with kid,practice catching ball,lure dog to run,playing with cat,want to take big ball,play with kid 4506,8080432373,2697,640,360,how did the girl balance herself when she get down from the stool,4,80804323735,CH,rock back and forth,using her feet,walk slowly,with her fingers,hold the blue box,hold the blue box 4507,4671452046,1306,640,480,why did the baby bend over to side,0,46714520463,CW,to stir in cup,want the soft toy,want more biscuit,to grab cloth,want to ride,to stir in cup 4508,3261079025,553,640,480,why are there lines everywhere on the ground,3,32610790255,CW,allow the girl to play,dogs are running,man draws on ground,plane take off,kids are playing,plane take off 4509,6168716346,949,640,360,why does the boy in blue jacket picks up the crayon from the circle box at the end,1,61687163463,CW,want to play with toys,want to continue colouring,he wanted to escape,highlight,take out food,want to continue colouring 4510,4244817395,1683,640,480,what does the man do to the boy before leaving him in the middle,4,42448173957,TP,show boy toy plane,let him hold string,turn around,hold his hands,pat his head,pat his head 4511,7651639778,1963,640,480,why does the man wearing black sweater lend his hands to the man wearing hoodie at the end of the video,2,76516397784,CW,to pick up something,gesture for the filming,stop him from falling,pass something to him,dancing,stop him from falling 4512,4626535366,1468,640,360,why do all the kids bend near the end,0,46265353663,CW,thanking audience,to sit down,performance,play with elmo,adjusting music,thanking audience 4513,4626085492,638,640,360,why is the red toy on the floor at the beginning of the video,0,46260854924,CW,fell from the red dog s mouth,decoration below christmas tree,baby kick down,string snapped,to wash,fell from the red dog s mouth 4514,5026660202,2697,640,480,how does the guitarist in the middle keep the beat of the music throughout the performance,1,50266602020,CH,clap her hands,stamp her foot,shake the microphone,move the meter,tap the chair,stamp her foot 4515,7605329840,635,640,360,what are the children doing as the man is sitting down,4,76053298401,TC,bicycle,laugh,withdrew toy,eat taco,blowing balloon,blowing balloon 4516,2401167740,390,500,375,where is the man,3,24011677401,DL,home,cinema,shopping mall,room,playground,room 4517,3383804222,999,640,480,why did the baby panda extend its legs towards the older panda,3,33838042220,CW,reach for treat,lose balance,enjoys getting scratched,scratch older panda,show the baby how to play,scratch older panda 4518,4846820256,671,640,480,how does the boy keep himself from drowning if falling into the sea,2,48468202561,CH,cover with his hands,with arms open,wear life jacket,hold onto railing,hand signals,wear life jacket 4519,9735768590,680,640,360,how does the baby react seeing the woman tucks out her tongue,1,97357685904,TC,walk through her legs,smiles,put face close to baby,point also,move hands into water,smiles 4520,2821968703,900,320,240,why did the man crash into the sea at the end,4,28219687034,CW,to catch the wave,fast enough to catch the wave,stunt,avoid getting wet,let go of rope,let go of rope 4521,4083875373,1621,360,480,what does the girl do after sitting down near the end,4,40838753734,TN,smile at camera,take the music script,nod head and stares,put down her club,rolls on the ground,rolls on the ground 4522,6201488511,2575,640,360,why did the lady in white constantly squint her eyes,4,62014885111,CW,agree,protect from sun,performing,formal event,it is sunny,it is sunny 4523,3508407941,513,640,480,why does the baby make the walker bounce more after looking over to the ground,4,35084079411,CW,want to get out of walker,lost his balance,upset and cries,change his pose,move more actively,move more actively 4524,13515224395,1216,640,360,why does the dog stand still throughout the video,0,135152243957,CW,letting her pat him,being dried,watch dog skateboarding,show excitement,walk together,letting her pat him 4525,6244675392,900,480,640,where are the people hanging out,0,62446753925,DL,home,lawn,zoo,bus,waterfall,home 4526,6291413193,1980,640,480,why is there a man standing in the deeper waters,4,62914131932,CW,watching boy play,observing,looking at paper,to whip their hair,to view the dolphine,to view the dolphine 4527,4896969617,350,640,480,why did the girl climb the stair to get to the top of the slide,4,48969696178,CW,enjoy the ride,go for another ride,slippery,challenge herself,to slide,to slide 4528,10109097475,2698,640,360,why did the man walked towards the aircraft in the beginning,2,101090974750,CW,having fun,dancing,give signal to pilot,his turn to bowl,to get better look of performance,give signal to pilot 4529,3372023610,1017,640,480,why does the woman in black turn towards the person playing guitar after singing for sometime,3,33720236104,CW,take photo of him,want to play his guitar,clap for him,to let him sing,to talk to him,to let him sing 4530,7887764754,1063,640,480,where could this be happening,2,78877647549,DL,workplace,outdoor,in house,park,front porch,in house 4531,5919180502,1379,640,480,what is the lady in black swimsuit wearing the entire time she is in the pool,2,59191805025,TC,looking at scenery,playing piano,hat,baby,look at boy,hat 4532,9528990839,427,640,480,where is this video taken,3,95289908399,DL,jungle,speech event,train,desert,sea,desert 4533,4674481985,734,640,480,how did the man who jumped into the water respond after getting into the water,4,46744819852,TN,spray out horizontally,swimming,sit up,excited,swim back out,swim back out 4534,9088819598,670,640,480,why did the ball end up rolling off the chair,3,90888195986,CW,adjust position of car to turn,slipped,thrown by person,baby was moving,unbalanced,baby was moving 4535,2821968703,900,320,240,why did the man let go of the rope at the end,4,28219687033,CW,push swing,get closer to the other man,small space,lowered down slowly,ca nt hold on,ca nt hold on 4536,4123211145,2697,640,480,how did girl in orange pass the jacket away,3,412321114510,CH,kick it,turn bottle upside down,give to girl in yellow,throw it,moves the jacket with hands,throw it 4537,3462517143,722,640,480,how does the white dog react to the brown dog leaving the container,0,34625171434,TC,drink again,walks away,run to the brown dog,jump up,look at him,drink again 4538,6793786769,1158,640,360,what did the boy do when the trained approached him near the end of the video,2,67937867694,TC,put on helmet,turns toward the cameraman,kiss the train,write on book,point at camera,kiss the train 4539,2623954636,931,500,375,what did the boy do after the ball rolled under the chair,0,26239546369,TN,try to take it back,drink from the lid,turn around,picks it up,walk backwards while watching bowl move,try to take it back 4540,3218498932,892,640,480,what does the boy in black do after swinging his leg for a while at the start,0,32184989325,TN,touch boy in red,stood forward and pointed fingers,stop the bicycle,cover up the hole,run to catch the ball,touch boy in red 4541,3131380536,2007,640,480,why does the child tilt the carton on it s side,3,31313805360,CW,yawning,playing with toys,lick yogurt taste,accumulate residue to side,playing,accumulate residue to side 4542,8312058649,774,640,1138,how does the baby move her chair back and forth throughout the video,3,83120586490,CH,lady pushes it,with support of the toy,baby moved,swing legs up,lay on the slide,swing legs up 4543,2614918961,1311,640,480,why is the baby standing at the table,0,26149189619,CW,playing with blocks,claw the toys,bathing,starting position,learn to walk,playing with blocks 4544,3263908208,300,640,360,how did the birds in the video move themselves,1,32639082083,CH,waddle in water,fly,chasing each other,walking in mud,dip head into water,fly 4545,8563398032,2040,640,360,how does the man in plain shirt react after the other man put his hand on his arm near the end,4,85633980327,TN,cross over his right hand,point at the screen,touch the pole,walk towards plane,look at man,look at man 4546,8627074061,2697,640,360,what did the girl do after she took the green art piece from the lady,1,86270740614,TN,smile and listen carefully,try to pull it open,talk to the people,swing,run and catch him,try to pull it open 4547,2834146886,1881,496,370,how does the white dog engage with the cushion,1,28341468867,CH,slide down,smells it,rubs,lick using mouth,lie on it,smells it 4548,2552130183,2697,480,360,what does the lady do after sitting the baby in front of her,3,25521301838,TN,touch the bib,play with baby s cheek,points to the flower,help the baby walk,bring book closer to baby,help the baby walk 4549,6618792571,2518,640,480,why did the adult approached the girl when she hit the beanbag,1,66187925719,CW,carry baby,help the baby move,for the girl to help,push by the toy cart s wheel,do nt want to put on ground,help the baby move 4550,4123211145,2697,640,480,how are the two girls positioned in the front,0,41232111450,CW,standing together,sleeping together,facing different audiences,rolling on the bed,waiting by the fence,standing together 4551,2971556305,1459,640,480,why did the lady in navy gesture when she speaks,3,29715563053,CW,engage all audiences,hand gesture,talking to each other,showing around house,hand gestures,showing around house 4552,8752043000,1572,640,360,where is the baby lying on,4,87520430004,DO,lady s arm,chair,bed,sofa,pram,pram 4553,4333544549,1065,640,360,how are the dogs being led on the streets,0,43335445497,CH,leash,walking while sniffing the ground,sit in car,using cages,carried by man,leash 4554,7164729910,656,640,360,why is the boy unable to move the toy car in the middle of the video,3,71647299104,CW,to cover the cup,flaunt their toys,girl blocking him,stuck at carpet,girl steps on it,stuck at carpet 4555,2824317018,1606,500,375,why did the boy push the girl in blue s hand away when she offered him some food,3,28243170186,CW,take food from,follow,prevent baby from touching,does not want food,find boy funny,does not want food 4556,6618792571,2518,640,480,why was the girl on the floor in the middle of the video,1,66187925714,CW,changed her mind,to take toy on floor,lose interest in lady,to climb up ladder,drag the red box,to take toy on floor 4557,5945172741,1593,640,480,why did the man lean forward to the girl s face when he held her,4,59451727416,CW,ready to catch her,to give a hi-five,wipe her face,reach for her hand,kiss her,kiss her 4558,7651639778,1963,640,480,what gesture did the man in blue jacket did with the man in black jacket,3,76516397788,DO,sibling,plastic card with command,fix the bunker,shakes hands and hugs,colleagues,shakes hands and hugs 4559,6772999108,1467,360,480,what is the boy doing,3,67729991081,TC,hug lady,eating,skiing,playing the guitar,cycling,playing the guitar 4560,6160414832,1831,640,480,what did the man in stripped do when the boy in yellow approached him,3,61604148326,TC,walk towards camera,throw to make splash,hand over the carrot,bring the dice close to boy,walk back,bring the dice close to boy 4561,6806999702,2697,640,360,how did the girl react when she saw that the ball was running at the beginning,2,68069997025,TC,turn back to take another ball,jump,run after ball,throw another ball,walk away towards the shelter,run after ball 4562,4367056464,1162,640,360,why did the man in brown raise his eyebrows when the camera turned to him,3,43670564644,CW,paying attention to him,hot sun,bright lights,pose for camera,observing the reaction,pose for camera 4563,5521781780,2697,640,480,why does the man in brown put his hand on his head while looking up near the middle of the video,4,55217817801,CW,hold the helmet,sun is too bright so cover his eyes,to prevent rain drops on his head,it is a move in the dance,rub his hair,rub his hair 4564,6988748711,1512,640,480,why did the blue shirt woman touch her hair while walking toward the mud,0,69887487111,CW,hair is blocing her face,tidy it,check if girl is alright,play with baby,attracted towards the toy,hair is blocing her face 4565,10607095936,1080,640,360,why do the man in the vest and the man with a cape hi-five after they answer the lady s question,2,106070959364,CW,drink,celebrate successful skiing,celebrate answering correctly,pose for photo,show for fun,celebrate answering correctly 4566,4967810888,1868,640,480,how are the people there positioned excluding speaker,0,49678108887,DO,sitting,lean backwards,standing in a line,tie their hair,sitting around the table,sitting 4567,9498159305,1275,640,360,how is the man rested beside the penguin,3,94981593053,CH,swing at the side,pet it,sitting,on the floor,on a stand,on the floor 4568,10042935613,1710,640,360,what do the boys and lady do as the shirtless man walked in,4,100429356136,TC,hold her hands,follow the girl,take photo of her,sit on swing,eating,eating 4569,2930782930,939,640,480,what did the lady do after she bounced the baby at the end of the video,4,29307829302,TN,turn to baby and play,pick up something,swing her leg,dance with hands,walk away,walk away 4570,2495861393,1499,500,283,what do the children do after listening to the adult talking near the end,3,24958613939,TN,leaves,sit on grass,look at camera,pick up the fork,drink the cup,pick up the fork 4571,4465235803,1014,640,428,why is the baby sitting in the toy car and watching tv,3,44652358031,CW,resting,to read the book,playing with it,haircut,distracted with phone,haircut 4572,8318310610,663,640,430,what does the girl in blue jacket do after turning around at the start,3,83183106105,TN,tickle baby,jump up snd down,open her arms wide,move hands around,give girl more instructions,move hands around 4573,5987365500,714,480,640,what did the girl do with her hands at the end of the video,3,59873655008,DO,hold metal pole,gives a flying kiss,cup her face,claps,show heart shape,claps 4574,3105728894,1512,640,480,what does the man in blue clothing do after picking up the neon rings,2,31057288948,TN,pick up disk and read,point camera with sunglasses,spin the rings,try to catch the fishes,eat,spin the rings 4575,4798585428,2697,640,480,why did the man in red extend his hand out,4,47985854288,CW,bespectacled man s instructions part of trick,share food with others,cycling stunt,intrigued by him,pass camera to another person,pass camera to another person 4576,2835125654,1406,320,240,what does the boy at the fence do while the elephants are moving around,1,28351256541,TC,resting,take photo,blows thw whistle,swimming,hold each other s trunks,take photo 4577,5858985747,349,604,1072,what does the baby in yellow do after raising his hands up at the start,0,58589857475,TN,turn backwards,hit toy,cries,jump forward,steps on the toy,turn backwards 4578,7536230796,1773,640,1138,what does the boy do after approaching the tv at the beginning,2,75362307964,TN,smile,play with toy,switch it on,look into bag,kiss baby,switch it on 4579,3821781616,745,640,480,what did the man do after nodding his head in the start of the video,3,38217816160,TN,hug boy,raise up two more figers,his nose,speaking and gesture,laughing,speaking and gesture 4580,2821968703,900,320,240,what event is happening,3,28219687038,TC,boxing game,playing charades,speech,water skiing,a wedding,water skiing 4581,3375218204,2241,640,480,what does the boy do after moving across the man in the middle,2,33752182048,TN,read book,cook food,lie down,sit down,eat snack,lie down 4582,4127497265,895,360,480,which part of the toy did the boy chew for the first time,1,41274972651,DO,sibling,head,play with toy,friends,left hand,head 4583,12682618843,1458,640,360,why was the bone not in the dog s mouth at the end,0,126826188436,CW,it let go of it,take the food,boy takes it out,lady to control dog,carried by man,it let go of it 4584,5064681723,602,640,480,how did the man control the dog,3,50646817232,CH,wear collars,carry baby to chase it,kick with his leg,leash,ate from his hand,leash 4585,2535384528,378,640,480,why did the man in black swing his hips,2,25353845281,CW,dancing,morning exercises,golf technique,feeling uncomfortable,prepare for running,golf technique 4586,7605329840,635,640,360,what did the girl in stripes do when the man extended his hand out to her,3,76053298400,TC,takes a toy,moved,put envelop on table,hi-five,put the cake aside,hi-five 4587,5875535585,2291,640,360,what does the man in checked shirt do as the man in black sings,0,58755355851,TC,play the guitar,take microphone back,playing the keyboard,put down the glass,play the drums,play the guitar 4588,8547321641,327,640,362,why does the man go in front of the baby at the end of the video,4,85473216411,CW,look at someone,restless,focued on baby,trying to cat the ball,stop baby from going too deep,stop baby from going too deep 4589,4094488636,810,640,360,how did the red rope get in between the brown dog s leg in the middle of the video,2,40944886362,CH,water puddle on the side,flip over,they walked around each other,put head inside,climb over them,they walked around each other 4590,6642268693,1143,640,480,why did the dog stretch its head and jump up to the owner s hand,0,66422686936,CW,wants to be caressed,wants food,scared by the bigger dog,avoid the smaller dog,show excitement for the popcorn,wants to be caressed 4591,2547885226,406,640,480,how does the kid play with the dinosaur,2,25478852263,CH,licking it,flip the toy around,holds it,mimics on a phone call,bite its tail,holds it 4592,6806999702,2697,640,360,why did the girl run down the slope,1,68069997020,CW,run to pick baby up,to retrieve the ball,playing with boy,follow the man,chase the dog,to retrieve the ball 4593,8254300526,1104,640,1138,how does the socks get removed,3,82543005269,CH,throwing them,baby pull it off,dog bite it,adult takes them off,kicked off the baby,adult takes them off 4594,4485498145,496,640,480,what does the woman in white do after looking down beside her at the start,0,44854981454,TN,turn back to her front,play with leash,put under amrpit,forward,shake baby up and down,turn back to her front 4595,5623068492,2375,640,480,how does the man with white hair react after the man in black hair starts swaying his body,4,56230684927,TN,goes away,hands on his hips,laughs,plays the guitar,sway his body,sway his body 4596,11565498775,1216,640,360,how does the boy react while pushing the handle at the end,0,115654987759,TC,smiles,cry,move forward and backwards,dance,jump up and down,smiles 4597,4970148391,732,640,480,how does the boy keep the bat stable on the ground,0,49701483918,CH,lean against his body,sit on cushion,put on stone,swing chair is protected,wear shoes,lean against his body 4598,5328004991,788,640,480,what activity is being done,4,53280049915,TC,carrying baby at beach,feeding the cat,playing at living room,cycling,cooking,cooking 4599,6168295272,446,640,360,how does the child in the blue dress feel when told to move her hands,4,61682952722,TC,restless,disappointed,sad,shocked,happy,happy 4600,5308503740,1609,640,480,how many rabbits are there in the video,4,53085037400,DC,three,six,five,four,two,two 4601,4516967897,2036,640,480,why did the two ladies stretch their hands forward for most parts of the video,1,45169678970,CW,do squat,rest hands on the ledge,to get down,attract the baby girl,pick up towel,rest hands on the ledge 4602,3445431963,1276,640,480,how do the people shown in this video breath,2,34454319630,CH,breath from an aeroplane,run out of the room,carry oxygen tank,grasp the float,stand close to window,carry oxygen tank 4603,4279106208,559,640,360,why does the woman hold the boy s hand when going down the slide,1,42791062081,CW,encourage the girl,slide down with baby,dangerous,interested,to support him,slide down with baby 4604,5635265624,584,480,640,how did the woman feel while playing with the baby,2,56352656248,TC,calm,satisfied,happy,embarrassed,worried,happy 4605,2510696559,2117,640,480,why did the boy stand the bicycle on one wheel when he is at the top of the stairs,0,25106965592,CW,trying tricks,motorbike can not move,to move the tricycle,lost balance,excited,trying tricks 4606,8253302563,1056,640,360,why did the boy steer the wheel after pressing the horn,0,82533025633,CW,to play with it,to turn,play with the wool on ground,lost balance,because it is a dead end,to play with it 4607,3380344744,1485,640,480,why did the lady use the cloth to wipe the baby,0,33803447442,CW,washing it,clean baby s face,keep baby from falling,help baby stand up,adjust the baby s shirt,washing it 4608,8225502382,1468,640,360,why is the man in dark green smiling in the middle of the video after falling down,0,82255023822,CW,embarrassed,look at the guy in dark blue,finish climbing,posing for the camera,find it funny to throw snowballs,embarrassed 4609,2854886555,480,320,240,what kind of fruit does the boy pick,0,28548865555,DO,red fruit,sibling,taco,friends,pacifier,red fruit 4610,6277800530,876,640,360,why was the man s hands stretched in front in the middle,4,62778005301,CW,play the piano,play game,hand gesture,painting at a low postion,hold handle to ride out,hold handle to ride out 4611,3131380536,2007,640,480,why is the yogurt pack on the table finally,1,31313805362,CW,easy for child to drink,child puts on it,soup spilled,reacting to the bread,lady puts on it,child puts on it 4612,7059877301,918,640,480,why did the light brown dog turned its body around near the beginning of the video,0,70598773018,CW,make a turn,felt the person s hand,playing,snatch the toy,play with it,make a turn 4613,5138093706,931,640,480,why did the woman in purple reach out her hand,3,51380937064,CW,take a lightstick,take a cake,carrying baby,help baby up,stretching,help baby up 4614,5008618500,754,640,480,why is the lady pointing at the bellybutton of the baby in the middle of the video,2,50086185001,CW,indicating blood,re engage girl,talking about it,tickle baby,presentation,talking about it 4615,5328616848,446,640,480,why did the man bend down at the end,1,53286168483,CW,playing game on mobile,put tray of cookies inside,adjust shoes,talk to the girl,get close to the baby,put tray of cookies inside 4616,4127497265,895,360,480,what toy is the baby holding,1,41274972652,DO,parent and child,giraffe toy,microphone,toy car,silver box,giraffe toy 4617,4444192938,866,640,360,why did the boy in red looked at the girl in pink near the beginning of the video,4,44441929384,CW,girl dancing,girl crying,to sit on the sleigh,girl has crown,girl tapped him,girl tapped him 4618,3763643225,1073,640,480,how did the boy support himself when he is about to fall,3,37636432251,CH,hold the lady,he spun and fell,hold on to wall,hold on to floor,press button,hold on to floor 4619,6183104292,593,640,480,where is this place,1,61831042926,DL,near a staircase,zoo,wedding hall,kitchen,train station,zoo 4620,4092992100,461,640,480,what does the guy in red do after the guy in yellow rode off,3,40929921007,TN,throw the bike away,take off helmet,pick up the dust,push his bicycle up,holds the baby,push his bicycle up 4621,3719793245,342,640,480,what is the girl playing,1,37197932451,DO,multicolor box,car,cat toy,friend,sand,car 4622,6542914065,300,640,360,why did the running people stop after a while,4,65429140652,CW,take a break,lose balance,to look at brother,the girl in pink slipped,finished the drill,finished the drill 4623,6786501294,1806,604,1072,why does the boy blow out the candle on the cake,1,67865012943,CW,light candle again,part of birthday cake celebration,the light is turned on,help the baby,move candles closer to girl,part of birthday cake celebration 4624,4635309062,2076,640,480,why does the man in black have to bend down at the beginning,1,46353090624,CW,hand gesture while talking,to prepare food,watching boy play,assist the chef,shield from sunlight,to prepare food 4625,4949582792,2639,640,360,what did the girl do after putting her head at the pram,1,49495827923,TN,wears clothes,lift her head back up,let go of vacuum,pick up the seatbelt,move her left arm,lift her head back up 4626,7149153537,1384,640,360,where is this video taken,1,71491535376,DL,dinning table,swimming pool,ballroom,lake,roadside,swimming pool 4627,7088595057,1052,640,480,why did the white sheep bend down towards the black sheep in the middle of the video,3,70885950577,CW,brown dog took its toy,lamb,pick up stick,lick the black sheep,panting,lick the black sheep 4628,6239210933,1030,640,480,why does the child in blue change the orientation of the pink toy after drawing on it,3,62392109332,CW,playing with the toys,to get more paint,waiting for the child,show off the drawing,to not fall off,show off the drawing 4629,7001078933,633,640,360,what did the man with white helmet do before he bend down,4,70010789330,TP,smile and pose,push the trolley,clicks the picture,wipe his eyes with towel,shifted his position,shifted his position 4630,4516967897,2036,640,480,what did the lady with short blonde hair do at the end of the video,2,45169678972,TC,put into mouth,playing,walked away,look at girl in white,touch her knee,walked away 4631,6898821807,585,640,480,what does the boy do when he realises the baby is crying,2,68988218078,TC,shake his body,walk off,puts his face next to baby,run away,show toy to baby,puts his face next to baby 4632,6078524411,2512,640,360,what did the boy do after putting his head on the table,0,60785244110,TN,close his eyes,look into camera,chew,puts away the residue,hold spoon with left hand,close his eyes 4633,3851913128,2235,640,480,what does the guy in red do after doing some hand gestures in the middle of the video,0,38519131285,TN,takes off his goggles,zoom into the baby,caress the girl s haed,sit down,pick up shower head,takes off his goggles 4634,2736413196,1617,352,288,how did the man in black react after the man in orange did some hand gestures near the end of the video,1,27364131962,TN,turn behind to look,put finger in the mouth,stares,started singing again,look at man in black,put finger in the mouth 4635,10607095936,1080,640,360,how does the lady temporarily pass the microphone to the man in red vest in the middle,3,106070959368,CH,walking,use clapperboard,holds man s hands,hold microphone and point toward him,throw microphone to him,hold microphone and point toward him 4636,7508439506,765,640,480,how did the man made sure the baby does not stain the bed,0,75084395066,CH,put baby on mat,sit baby on lap,put baby on pillow,hug baby tightly,hold baby,put baby on mat 4637,8740703217,602,640,360,why did the baby move her hands up and down at the start,3,87407032170,CW,victory gesture,to pick up toy dolls,man moved it,to pick up cucumbers,hanging from pole,to pick up cucumbers 4638,3935853204,943,640,480,how did the lady enlarge the view of the screen after the middle part of the video,0,39358532044,CH,use another hand to help her zoom,press the button,romote controller,put it on the sofa,slide over the keys,use another hand to help her zoom 4639,8575881495,2000,640,360,what does the girl do after sitting up the first time,4,85758814951,TN,get up,pat dog s head,touch with other glass,stand up and follow boy,makes face gesture in camera,makes face gesture in camera 4640,13569831214,1664,640,480,why both of them are wearing jackets and helmet,4,135698312142,CW,riding scooter,cycling,playing rugby,practising fight,skiing,skiing 4641,2552130183,2697,480,360,why does the lady moves her finger across the baby s tummy at the beginning of the video,3,25521301830,CW,playing with her,guide the girl,fidgeting,playing with the baby,readjust baby s position,playing with the baby 4642,3155382178,858,640,480,what does the man do after kicking the ball away from the lady,2,31553821784,TN,drop bat and run,kick the man playfully,run towards the ball,get up,run after it,run towards the ball 4643,4757890069,1125,640,480,why are there light flashing as they move forwards,4,47578900690,CW,from the camera,stage lights,light bulb blinking,power failure,emergency lights,emergency lights 4644,3164519967,1090,640,480,what did the old lady do after patting the baby for a while,2,31645199675,TN,put on keyboard,clap the baby s hands,kiss baby,shake her head,look away,kiss baby 4645,8575881495,2000,640,360,what does the girl do after getting up at the end,2,85758814958,TN,playing with toys,dancing,hand gesture,nods her head,looks forward,hand gesture 4646,4126010904,1698,640,480,why did the tall man approach the tv after he dances,4,41260109043,CW,distracted,affectionate gesture,take pictures,part of their routine,want to check out himself,want to check out himself 4647,2461993294,1999,640,480,why is the man in navy holding a camera,3,24619932940,CW,filming the wedding,filming the birthday,take photo of sunset,take photo of performance,for easy spotting,take photo of performance 4648,9213637099,1539,640,360,why is the lady demonstrating how to execute the stunt,4,92136370993,CW,attract the baby,explain well to the men,to show baby something in her hands,playing and enjoying with other boy,to teach the girl,to teach the girl 4649,8313365386,318,640,360,what did the girl do after the lady in red pointed at the start,2,83133653862,TN,touching baby s hand,slide down,turns the page,wave,move body,turns the page 4650,11584566583,376,640,480,how many people are speaking on the microphone,0,115845665835,DC,one,five,nine,six,three,one 4651,5766018720,1830,640,426,how is the baby positioned as she plays the toys,0,57660187205,DO,sitting,mimics on a phone call,hold baby in her hands,crawl on floor mat,touch toy with her hands,sitting 4652,4838113006,2697,640,360,what does the lady do after touching the first bell on table b,3,48381130065,TN,walk off,raise her hand,move to her left,drag it towards her,clap hands,drag it towards her 4653,4488066715,2638,320,240,why does the baby bounce up and down when the bowl is taken away from him,4,44880667152,CW,play with food,give up walking,eating food,hold it in place,upset,upset 4654,6964124866,515,640,360,where are the people hanging out,2,69641248665,DL,auditorium,playground,room,grassland,outdoor porch,room 4655,10109097475,2698,640,360,what does the man in red do after walking close to the plane in the middle,1,101090974756,TN,happy,walks away,throw something,dance,caress the donkey,walks away 4656,3322503255,1233,320,240,where is this video taken,1,33225032557,DL,boxing ring,parking lot,front porch,grassland,jungle,parking lot 4657,7888256388,658,640,480,why did the lady touch the dog at the start,4,78882563880,CW,get his attention,caressing for him,to play with him,playing with baby,pat it,pat it 4658,11849091804,1296,640,360,what does the boy do while unwrapping the present,0,118490918047,TC,take the phone out,put hand inside the toy,bend his back,play with toy,unwrapping a gift,take the phone out 4659,4838145161,1921,640,480,why is the cat shaking its head at the end of the video,4,48381451614,CW,distracted by something else,drink water,follow the toy,sleepy,dry face,dry face 4660,5875242364,427,640,384,what did the baby do after he touched the sides of the pool,3,58752423648,TN,swimming,wants to go again,sit at the side and watch him,put his fingers in his mouth,relaxing and playing,put his fingers in his mouth 4661,5467727317,1230,640,360,how many elephants are there,4,54677273174,DC,one,four,three,six,two,two 4662,4412508597,358,640,480,why did the boy lift his left hand up at the start,3,44125085976,CW,to balance the toy,prevent hat from falling,grip higher pole,to wrap strap around,play with the wool on ground,to wrap strap around 4663,7728559968,1480,640,360,why do the cats stand up after trying to bite each other,3,77285599684,CW,defend itself,reach for the toys,look for the owner,tired,look for food,tired 4664,5877508141,583,640,480,what did the man do after the boy stopped holding on to the slide,0,58775081416,TN,move his arms,climb up the stairs,walk towards the stair,tries to cathc it,fill red bowl,move his arms 4665,7492398760,2697,640,360,what does the man do as the boy runs over to him at the end,2,749239876013,TC,let him hold string,throw ball,catch him,point his finger,move body,catch him 4666,6253433310,680,640,480,what was the colour of the boy s goggles,0,62534333108,DO,blue,red and white,white and red,grey,black and white,blue 4667,6205856607,978,272,480,what is the animal show in the video,3,62058566075,DO,lion,leopad,dog,horse,cow,horse 4668,3046900922,539,640,480,why is the man carrying the child,4,30469009220,CW,help him walk,to help him hit the plate,to reach the basketball hoop,looking at them play,playing with him,playing with him 4669,4859057828,647,640,480,why did three of them stand next to each other again at the end of the video,4,48590578284,CW,hand gesture for cutting,take something,stop baby from going too deep,restless,pose for photo,pose for photo 4670,4761953886,797,640,360,what does the girl do as the dog sat next to her at the start,4,47619538860,TC,look at the table,wave at it,shave the dog,play with toy,caress the dog,caress the dog 4671,6860322796,1285,640,360,what did the lady do after playing with the black dog for a while,3,68603227965,TN,stand up and flip the chart,rubs the dog,touch baby s hand,give attention to brown dog,smell her legs,give attention to brown dog 4672,3972259774,1063,640,480,why do they wave hands towards the end,1,39722597744,CW,enjoying the water,to bid farewell to camera,finish event,greet someone,affectionate gesture,to bid farewell to camera 4673,7786283208,636,640,360,why does the baby in white get up near the end,3,77862832081,CW,to put the food,grab falling ball,play with other children,running to other place,take food,running to other place 4674,6617533993,1384,640,1138,why are the two children seated in front of the toy,1,66175339933,CW,play the keyboard,stacking things on the toy,learn to read book,watch the toy moves,cleaning the toy,stacking things on the toy 4675,7999756100,618,640,360,why does the man in white bend down near the end,3,79997561001,CW,type on laptop,offer help,along with the rhythm,setting up,wet by the sea,setting up 4676,8132842161,1105,640,360,why do the seagulls have robotic fixed movements in the exhibits,1,81328421614,CW,trained to behave like this,robotic seagulls,dancing,trainer moving them,eating fish,robotic seagulls 4677,11276567104,989,640,360,how does the woman respond when the priest lets go of her head,0,112765671044,TC,listen to priest talk,sit on grass,touch her feet,put her hands under child,smile at camera,listen to priest talk 4678,5138093706,931,640,480,how is the baby moving around the place,1,51380937060,CH,rolling around,crawling,sitting in a baby carrier,jumping,dancing,crawling 4679,13515224395,1216,640,360,why does the dog wear a collar around its neck,0,135152243958,CW,show that it is domesticated,looking for food,show ownership,for identification,identify dog,show that it is domesticated 4680,11566980553,1721,640,480,why does the boy bend down at the beginning of the video,3,115669805535,CW,pick up the ball,pick up the stick,play with toy,pick up the present,hold it in a different way,pick up the present 4681,8990144134,457,320,240,how did the bird react when the cat hits it,3,89901441341,TC,paw at it,rub the cat,move away,no reaction,paws back,no reaction 4682,5549243726,527,640,360,what does the girl do after clapping her hands,3,55492437267,TN,point at table,scrunch her legs,remote sensor,jump,happy,jump 4683,2984974097,899,500,375,where is the girl cycling,1,29849740979,DL,room,road side,living area,reading corner,forest,road side 4684,4674481985,734,640,480,why did the man leave the bag on the cliff when he jumps down into the waters,0,46744819857,CW,keep it dry,to see if he was ok,lost his balance,help them up,prepare himself,keep it dry 4685,7691172922,1454,640,480,how does the dog react when she started to move away from it at the beginning,0,76911729228,TC,run to her,chase after him,stopped touching the dog,sniff her shoe,walk away,run to her 4686,2868183184,1551,500,375,what does the man do after the girl finishes spreading the batter,2,28681831845,TN,show his fist,throw the bat and run off,close the lid,raised her hand,looks up,close the lid 4687,4984417707,441,640,360,how is the elephant at the goal post being guided,2,49844177079,CH,by the lady sitting on top,with a carrot stick,by the man sitting on top,lady wave the stick,boy was pulling rope in front,by the man sitting on top 4688,4127497265,895,360,480,where is the baby playing with his toy,4,41274972653,DL,home,on a bed,her crib,water park,living room,living room 4689,2697214342,1498,640,480,how many guys can be seen working in the video,1,26972143429,DC,one,four,two,five,six,four 4690,5662041273,2697,640,480,what did the boy do after the helicopter fell on the floor in the middle of the video,1,56620412737,TN,pick the ball up,picks up the helicopter,get back onto skateboard,turn around,carry the baby down,picks up the helicopter 4691,4036955771,2697,640,480,what does the man on the extreme left play as the other band mates play the violin and trumpet,4,40369557715,TC,yes,raise his arms,singing,sit around and listen,guitar,guitar 4692,8171216955,550,568,320,why does the girl laugh,0,81712169550,CW,hits the toy dog,she did wrong action,enjoying the ice cream,enjoying the dancing,find man funny,hits the toy dog 4693,4838145161,1921,640,480,what did the cat do after its nose touched the water at the beginning of the video,2,48381451617,TN,stood up,licks himself,retreat back,staring,licked the face,retreat back 4694,2990321092,633,640,480,How did the man get their food,4,29903210920,CH,fed by each other,jump up,with hands,with spoon,look upwards and bite,look upwards and bite 4695,5926256714,863,640,360,why does the man assists the boy,4,59262567140,CW,prevent falling off,boy is injured,teaching boy to swim,heavy bag,learning how to walk,learning how to walk 4696,5498331490,2160,640,480,what does the cat do after sitting on the toilet bowl for a while at the start,0,54983314906,TN,cleans the toilet bowl,throw spoon,licked the face,jump down,retaliate,cleans the toilet bowl 4697,4626535366,1468,640,360,why does the boy standing next to girl points to another boy,4,46265353660,CW,learning how to prepare dining table,want to be ahead,to look after that item closely,invite the girl,to pickup the trash,to pickup the trash 4698,6031805098,1368,640,360,why does the cameraman point camera at the floor,2,60318050983,CW,camera dropped on floor,controlled by boy,take a clearer look of beetle,to move in the game,show river,take a clearer look of beetle 4699,3595273118,375,640,480,what is this event,1,35952731184,DO,celebration,public speaking event,friend s gathering,museum demonstration,rowing competition,public speaking event 4700,2589540862,681,500,375,what does the man do as the girl started spinning herself at the start,0,25895408620,TC,looking at her,look backwards,hug her,twirling her,laugh,looking at her 4701,3455926688,549,640,360,what did the lady in black do when the man was flying the kite,3,34559266885,TC,jump,pierce balloon,move forward,stand behind,scratch legs,stand behind 4702,2824317018,1606,500,375,how did the girl in blue react when she got rejected,4,28243170187,TC,wash hands in mud,moved over to the sofa,pointed at baby,shouted,she smiled,she smiled 4703,5801184682,1683,640,480,why was the cat lying on its back near the end,0,58011846827,CW,playing,play with dog,tired,play with spool,getting her attention,playing 4704,6988748711,1512,640,480,why did the red shirt man reach out his hands when he stepped up to the mounds of dirt,4,69887487112,CW,nervous,to give phone,open fence,reach out for the thing,balance,balance 4705,5445581571,964,640,360,what did the white dog do after he looked at the black spotted dog,4,54455815716,TN,no reaction,white dog,follow the black dog,sniff dog s butt,play with toy,play with toy 4706,6443512089,2437,640,360,how does the child react when he sees his shadow,1,64435120894,TC,look away,chase shadow,frustration,walk away,touch his hair,chase shadow 4707,9531760182,2097,640,480,where are the people hanging out,1,95317601827,DL,lawn,restaurant,bedroom,swimming pool,water fountain,restaurant 4708,3581585756,702,640,480,how does the woman show affection towards the girl at the beginning,0,35815857564,CH,kiss the girl,talks to her,shakes her head,help her wear clothes,touch her nose,kiss the girl 4709,5323654756,2032,640,480,why did the person with yellow sleeves extended her hand at the beginning of the video,2,53236547567,CW,to hold lady s hands,demand for more food,pass girl balloons,pick up leash,reaching for television remote,pass girl balloons 4710,4179163342,2172,640,480,where is this video taken,0,41791633427,DL,kitchen,outdoors,forest,room,construction site,kitchen 4711,9213637099,1539,640,360,why did the lady hold on to the shoulders of the two people beside her near the start,3,92136370991,CW,hold the rope,controlling kite,stopping her from touching cake,pushed herself up in the air,lift the dog,pushed herself up in the air 4712,5333075105,1168,640,480,how did the man kept his palm warm,2,53330751054,DO,put hands in pocket,wear long sleeves,gloves,jackets,blanket,gloves 4713,9612838272,453,640,360,how did the girl get to the top of the slide,2,96128382727,CH,move feet and spread arms,carried by man,climb up,step on the paddles,hold onto the front of the ride,climb up 4714,2793806282,1925,320,240,why did the lady holding the balck dog stretch her hands out in the middle,3,27938062823,CW,attack white dog from behind,caress the dog,prevent dog from escaping,grab the blue toy,gesturing dog to jump,grab the blue toy 4715,4707679105,965,640,480,what activity are they doing,3,47076791057,TC,feeding session,playing with cat,discussion,reading,karoake,reading 4716,6142416815,1267,604,1072,how did the person make sure that the baby sleeps soundly on the toy,3,61424168152,CH,hold the stairs,hold the chair,by the hands,rock the chair,feel happy,rock the chair 4717,5445581571,964,640,360,what did the black spotted dog do after the white dog got up from the floor,3,54455815714,TN,follow the black dog,try to snatch the slipper,keeps sitting,look at white dog,put head outside,look at white dog 4718,3581585756,702,640,480,why does the girl stand still at the beginning of the video,3,35815857560,CW,follow the boy,to show in the video,dance,posing,making pottery,posing 4719,2835125654,1406,320,240,what does the elephant on the left do after being pushed backwards by the elephant on the right after the middle of the video,0,28351256545,TN,pushed back,carry the bear,holds the boy in orange again,guide the baby elephants,laugh,pushed back 4720,6806999702,2697,640,360,why does the child run down the slope after the ball rolls away from him,3,68069997021,CW,running competition,someone in opposite call boy,come out of the slides quickly,chase ball,to kick it,chase ball 4721,3719793245,342,640,480,what is the relationship between the girl and the lady,1,37197932450,DO,friends,parent offspring,teacher student,friend,team member,parent offspring 4722,9565310990,1066,640,360,how does the baby move on the ground,0,95653109906,CH,crawling,walking,cycling,supported by adult,rolling,crawling 4723,7728559968,1480,640,360,why are the kittens lying on the carpet,0,77285599680,CW,play fighting,watching the adult,comfortable,try to catch cap,playing by rolling around,play fighting 4724,7453733046,992,640,360,why does the man in white put the ball on top of the water hole in the middle,4,74537330461,CW,to get an arrow,to kayak,part of game rule,try to catch ball,to attract the children,to attract the children 4725,4179163342,2172,640,480,what are the children playing,1,41791633426,DL,playground,kitchen,classroom,park,living room,kitchen 4726,3462517143,722,640,480,what does the brown dog do after circling inside the container,2,34625171433,TN,chase the cat,look up to the camera,step out of container,lying down,walk around,step out of container 4727,6762389913,1371,640,360,why is there a laptop screen turned on in front of the dogs,3,67623899133,CW,video call from grandmother,clicking the lyrics,nobody using currently,doing work,playing music,doing work 4728,3935853204,943,640,480,what do the other people do as the lady in black plays with the screen,1,39358532043,TC,playing with the dog,stand at the side and observe,playing computer,they are dancing,working on their laptop,stand at the side and observe 4729,7691172922,1454,640,480,how does the dog respond when it senses the lady,4,76911729224,TC,sleep,run away,try to lick her face,climb onto lap,turn his head,turn his head 4730,4967810888,1868,640,480,why does the woman speaking turn around while talking,0,49678108880,CW,talking to the crowd,check her speech notes,for referencing,make face,pretend to hit the drum,talking to the crowd 4731,2793806282,1925,320,240,what did the man on the land do with the blue toy after the lady gestured to the dog,2,27938062828,TN,look up,fidgeting with the object,throw it,tried to chase,observe it,throw it 4732,2868183184,1551,500,375,why does the lady in flower skirt shift to the left of the girl in white in the middle,4,28681831844,CW,talk to man in cyan,take a bottle,place the scoop,take a towel,to open the cover,to open the cover 4733,4765717907,1180,640,480,what did the boy do when the man carried him up to the pole,4,47657179075,TC,biting on to the blue toy,hit the plate,catch him,clap,put ball through pole,put ball through pole 4734,4010069381,369,640,480,what are the people doing in the video,2,40100693819,TC,speech,birthday celebration,performing,wedding,taking a break,performing 4735,4260763967,1017,640,480,how did the boy in yellow build his toy,4,42607639676,CH,use frame,use paper,adjust his posture,using a phone,assemble pieces together,assemble pieces together 4736,4138579400,601,640,480,why did the boy stop his right arm in the middle of the video,3,41385794005,CW,grab comb,pick up the ball,show the spray to someone,cup fell down,avoid getting hit,cup fell down 4737,2405940242,415,500,375,how did the lady feel after the ride,0,24059402425,TN,happy,worried,frightened,calm,dizzy,happy 4738,4774302357,450,640,480,why does the man playing guitar look at the man playing banjo throughout,1,47743023573,CW,posing,follow his beat,part of performance,make effective impression,talking to him,follow his beat 4739,5406108447,1337,640,360,how does the girl get the towel after throwing it far away,3,54061084473,CH,anticlockwise direction,crawl away,using a bucket,bends to hold the towel,run to pick it up,bends to hold the towel 4740,8783897632,974,640,360,why do the cyclists move in a single file,0,87838976326,CW,only one narrow path,pulled by bike,enjoy the view,uneven ground,go across the pond,only one narrow path 4741,4103088549,485,640,480,how did the man make sure that he stand up at the rigth time,4,41030885494,CH,wait to be called,look at timer,wait for signal from girl,when bell ring,swim furiously to catch wave,swim furiously to catch wave 4742,8552680285,442,640,360,how does the person sitting on the sleigh not fall to the side,1,85526802854,CH,someone holding her,hold tightly to the sleigh,wear helmet and life jacket,wear warm clothes,man pulling it,hold tightly to the sleigh 4743,7442562474,598,640,480,why was the brown cat grabbing the white cat s head nearing the end,1,74425624746,CW,clean white cat,playing with white cat,to lick its body,bite white cat,resting the paw,playing with white cat 4744,2623954636,931,500,375,what did the boy do after he threw the ball for the first time,4,26239546364,TN,give to the other boy,caress another dog,take phone away,put baby over shoulder,look at the ball bounces,look at the ball bounces 4745,3359075894,414,640,480,what did the man in grey do at the end,4,33590758941,TC,go back to his seat,bend towards man in red,stretch his hands,stroking the dog,hit the ball,hit the ball 4746,4013751996,764,320,240,how does the girl stop the toy bicycle,0,40137519965,CH,put feet on the ground,arrive at wall,pedal,point her boards to make triangle,baby seat,put feet on the ground 4747,7331927796,519,352,288,what does the boy do at the start while the woman was sitting at the log,1,733192779610,TC,wrap strap around his wrist,walk towards the small brown dog,touch her forehead,demonstrate meditating position,falls down,walk towards the small brown dog 4748,3830567237,716,640,480,why was the floor wet at the start,1,38305672379,CW,fall over,from hose,baby in room,to reach the sand,wet,from hose 4749,4219909195,1003,640,480,where is this video taken,2,421990919510,DL,lake,outdoor,living room,train,supermarket,living room 4750,4485498145,496,640,480,what does the woman in pink do after looking down at the painting at the end,2,44854981455,TN,walk away,stop and pose for camera,talk to the person in front,walk towards the girl with curly hair,point below the piano,talk to the person in front 4751,4798585428,2697,640,480,why did the man in red touch the newspaper that the man in yellow was holding,0,479858542811,CW,push the newspaper away,for the picture,wants to read the newspaper,show support,hold the newspaper,push the newspaper away 4752,8224492254,972,640,480,why did the baby open his mouth at the start,4,82244922540,CW,brushing teeth,wants to bite the sandwich,eat the food,check for teeth stains,yawn,yawn 4753,3121571439,1212,640,428,why do the man in black and the woman in pink spin when they go under the arms of the other person,4,31215714391,CW,push her away,holding the hoop,play with,play with her,perform a move,perform a move 4754,3155382178,858,640,480,what does the lady do after she first received the ball from the man,2,31553821785,TN,pick another ball,raise the stick,kicks the ball,hit the balls,move spoon away,kicks the ball 4755,4123915842,750,640,480,why is the child sitting and standing on the mat,0,41239158420,CW,making her ready,crawling,keep clean,playing with toy on floor,playing with blocks,making her ready 4756,5623068492,2375,640,480,why does the man with black hair start swaying his body in the middle of the video,2,56230684922,CW,look sexy,explaining something,practice boxing,to get the microphone,to aim,practice boxing 4757,3263908208,300,640,360,why are there so many sailboats on the sea,3,32639082080,CW,residential area,for sale,exhibition,tourist attraction,organising competition,tourist attraction 4758,10042935613,1710,640,360,what does the shirtless man do when he first walked in,2,100429356137,TC,eat food,feed baby,carry plate,goes to the other boy,move to the side,carry plate 4759,4650556666,567,640,480,how did the woman and the baby dance,4,46505566661,CH,shake their heads,guide bride s hands,follow a routine,jump up and down,turning rounds,turning rounds 4760,3711681535,1070,640,480,why does the woman hold onto the ropes at her side after letting go of the handle,2,37116815354,CW,prevent baby from falling,drink water,maintain balance,tightening the rope,excited gesture,maintain balance 4761,7961460440,360,640,480,how did the man get down from the mountain,1,79614604405,TC,parachute,with ropes,staircases,skiing,sled,with ropes 4762,4984417707,441,640,360,what did the man in blue do after the elephant kicked the ball near the end,1,49844177073,TN,walk backwards,blows the whistle,jump down the waterfall,swung him around,jump on the spot,blows the whistle 4763,4889681401,2697,640,480,what was on the back of the bicycles,1,48896814010,DO,propeller,flags,steering wheels,wheels,television,flags 4764,2782307049,461,640,480,what does the lady in black do after she finishes the ride,4,27823070493,TN,shake head,drink water,dance along for fun,picking something from ground,help the lady in red,help the lady in red 4765,2871995580,2697,500,375,how many children are in the video,1,28719955808,DC,four,one,five,two,seven,one 4766,2833209794,331,640,480,why does the person in yellow get onto the left side of escalator instead of the right like the rest,3,28332097946,CW,to aid in his layering work,dizzy,both men raised their cups,left hand not holding anything,record the activity,left hand not holding anything 4767,6160414832,1831,640,480,what are the possible relationships among the people in the video,3,61604148325,DO,friendsteam member,bandmates,living room,family,team member,family 4768,3026084730,2205,640,480,what did the three men do after the middle man finished speaking,3,302608473011,TN,starts playing guitar,talks to the lady,drink,walks away,lower the camera on his shirt,walks away 4769,2573424030,1470,320,240,why does the woman in white put up her hand at the end of the video,3,257342403011,CW,posing,wipe the man s mouth,dancing along,talking and waving goodbye,do squat,talking and waving goodbye 4770,7331927796,519,352,288,how many dogs are there in the video,4,73319277967,DC,five,two,four,one,three,three 4771,3263908208,300,640,360,why is the yacht just floating on the water,4,32639082082,CW,to get onto the boat,help divers swim,playing in water,sea waves,enjoy the scenic beauty,enjoy the scenic beauty 4772,6582763207,696,640,360,why is the lady with microphone moving her mouth,0,65827632079,CW,singing,eating food,talking to audience,reading from script,drinking water,singing 4773,2535384528,378,640,480,what does the man do right after hitting the ball,2,25353845285,TN,throw the ball,continue playing guitar,looks at where it goes,hit with racket,laughs,looks at where it goes 4774,5427285434,615,640,360,why did the boy put his hand on his face after he got off the sofa,3,54272854346,CW,tie his hair,clean his face,rub his head,adjust glasses,feed himself,adjust glasses 4775,3375218204,2241,640,480,what does the man do after standing up at the end,1,337521820410,TN,dancing to rhythm,hold boys hand,clap his hand,kiss baby,lie on the boy,hold boys hand 4776,8604794910,405,640,360,how did the children protect their head from the sun,2,86047949107,DO,use hands,shade and cap,wear hat,wear yellow hat,cap and sunglasses,wear hat 4777,3112351937,448,640,480,why did the man with flippers have something on his back,3,31123519373,CW,part of costume,backpack,for drinking,for oxygen supply,identify himself,for oxygen supply 4778,2696280239,398,640,480,why did the man in black pull the rope at the beginning,2,26962802392,CW,help check screen together,indicate where to do stunt,open the gate,play on the swing,getting pulled,open the gate 4779,3502722122,425,480,640,what is the boy doing in the video,0,35027221224,TC,playing with book,playing with toy,to move closer,crossing the road,giving letter,playing with book 4780,4798585428,2697,640,480,why did the man in spectacles and black shirt reach out his hand after walking in front of the man in red,2,47985854283,CW,paying attention to him,grab some food,to take away camera,following,agree with him,to take away camera 4781,6879924118,488,640,360,where are the people,1,68799241183,DO,lake side,field,classroom,park,hall,field 4782,3943634344,629,640,360,what did the girl do each time she say picture pointed by the lady,3,39436343441,TC,looks at the boy,turn to look,clap her hand,speaks and move her body,shake balloon,speaks and move her body 4783,4006608424,2697,640,480,why is man lying on the ground at the end,3,40066084245,CW,let person caress,fall off the sled,playing with the card,fell off from the swing,hot,fell off from the swing 4784,6163877860,2160,640,360,why did the book disappear from the sofa,2,61638778601,CW,someone bought it,man picked it,baby kicked it,baby threw it,dog bit it,baby kicked it 4785,4006608424,2697,640,480,what does the boy do after running towards the swing at the end,3,40066084247,TN,kick it,passes the ball,hit the drum,hold the swing,prepares swinging again,hold the swing 4786,4650556666,567,640,480,how did the child get up at the start of the video,4,46505566665,CH,ask man to carry,pull with rope,girl helped him,with support from chair,lady hold child s hands,lady hold child s hands 4787,5429688959,2490,640,360,how did the singer make his voice amplified,4,54296889590,CH,loudspeaker,using his hands,computer,shouting,microphone,microphone 4788,4087654898,330,640,480,why did the boy bend down,0,40876548982,CW,to touch water,lost balance,pick up coat,to sit down,to fill his pump with water,to touch water 4789,4688219212,959,640,480,what does the boy do after jumping down from the rings at the end,3,46882192127,TN,touch his head,take his skateboard,pick up blanket,shake the man s hand,smile,shake the man s hand 4790,2567843468,572,320,240,why does the girl taps on the water repeatedly,2,25678434682,CW,wash hands,keep her toy afloat,splash the water,trying engage the fishes,wash her leg,splash the water 4791,4626085492,638,640,360,how did the black dog with a vest get down on the floor,4,46260854920,CH,slide down,lady carry down,roll down,pull by dog on floor,jump down,jump down 4792,6239210933,1030,640,480,what does the child do after pulling up the pen and the string,1,62392109337,TN,suck his thumb,draw,take the toy out,walk through her legs,relaxing,draw 4793,4889681401,2697,640,480,how does the man in blue react after being caught on camera,2,48896814013,TN,looks at the seasky,sit on the floor,smile,cry,scroll his computer,smile 4794,3804148568,2697,640,480,what activity is being carried out,4,38041485687,TC,treasure hunt,drawing,dancing,jousting,fencing,fencing 4795,6727904179,962,640,360,where is this video taken,2,67279041793,DL,outside,park,indoors,field,speech event,indoors 4796,2435100235,1906,640,480,what is the relationship between the man wearing the white shirt to the other cyclist he is talking to after looking to the right,3,24351002350,TN,teacher and student,strangers,parents,friends,takes a photo,friends 4797,3846475848,2138,640,480,how does the ferret attemt to get rid of the water on its fur in the middle of the video,4,38464758488,CH,up and down,holds the baby,yawn,use spoon wipe off,shake its body,shake its body 4798,5913180144,1191,640,480,what does the man in blue socks do after he raises his hand and lifts his finger near the end,2,59131801448,TN,sits next to the grey lady,smiling,put his arm around another boy,sits on fence,heat up metal,put his arm around another boy 4799,4838145161,1921,640,480,where is this video taken,1,48381451616,DL,sea,kitchen,room,bedroom,sheltered area,kitchen 4800,4087013668,1442,640,474,why are there newspaper around the table,0,408701366811,CW,keep table clean,for adults to read,art and craft,baby throwing,to clean windows,keep table clean 4801,10779838974,890,640,1128,what does the girl in green do as the girl in white pushed the rake,2,107798389743,TC,push the girl,walk away,support the rake from the back,look around,hold onto her,support the rake from the back 4802,2871995580,2697,500,375,what did the man do after the boy threw the ball at him at the start of the video,0,28719955804,TN,pick the ball up,walk to the box,walk around,turn behind to look,play with instrument,pick the ball up 4803,6244675392,900,480,640,why does the baby extend her hand to the animal in the middle of the video,4,62446753921,CW,hit the cat,trying to grab something,to drop bag down,bottle taken out from mouth,to feed the cat,to feed the cat 4804,4984331176,300,640,480,how do the people know when to go,1,49843311769,CH,wait for queue number,see when rope touch ground,see flag,gun shot,timer on screen,see when rope touch ground 4805,8552680285,442,640,360,how does the person sitting on the sleigh move forwards,3,85526802853,CH,paddle left and right,put legs on ground,push the ski handles,man pulling it,bend their knees,man pulling it 4806,2679130168,1504,320,240,why is the girl smiling throughout the video,1,26791301686,CW,there is food,happy,someone gave her a ball,posing for the camera,dancing to the music,happy 4807,4147398280,1716,480,360,what does the boy do after managing to solve one face of the rubik,4,41473982807,TN,walks towards the camera,shakes the box,hit the ball,dancing and jumping,twist it again,twist it again 4808,9498159305,1275,640,360,what did the man do after the penguin turned away,4,94981593057,TN,walk towards the boy,help the man,walk towards the aircraft,use towel cover it,touch the earphones,touch the earphones 4809,2552130183,2697,480,360,why does the lady hold the baby s hand in the middle of the video,1,25521301831,CW,make balloon fly,help the baby walk,be shy,show care for the baby,prevent baby from moving,help the baby walk 4810,8252088130,426,640,360,why does the woman wear a glove,4,82520881301,CW,sunny weather,cycling,prevent injuring her leg,it is sunny,hold bird,hold bird 4811,13884293626,5395,640,360,how was the laptop placed in front of the lady in purple,3,138842936265,CH,on the trolley,closed,behind her,opened,on top of lady,opened 4812,8024853715,486,640,360,how did the girl in multicoloured dress respond each time the girl in blue knock away the sand she picked up,1,80248537157,TC,clapped for her,pick up sand again,change position of her legs,push the other girl,rest one arm on lady s chair,pick up sand again 4813,8797589693,2699,640,480,where is this happening,4,87975896939,DL,restaurant,house floor,porch,by a pool,classroom,classroom 4814,2868183184,1551,500,375,how does the man guide the girl while she is cooking,2,28681831848,CH,wipe with tissue,walk,use hand gestures,kneel on floor,use fork,use hand gestures 4815,3489439407,1662,640,480,why is the lady wearing a headphone,2,34894394073,CW,listening to music,talking to the security guard officer,to hear the people in the monitor,look cool in the videos,block out the noises from the dogs,to hear the people in the monitor 4816,3429509208,374,640,480,where is this video taken,0,34295092085,DL,living room,mountain top,speech event,dining table,mountain areas,living room 4817,8211075660,1621,480,360,how did the car not hit the yellow tape,4,82110756604,CH,car stopped before the tape,car moved back after driver saw the tape,someone remove the tape,someone cut the tape,someone raise the tape,someone raise the tape 4818,4774302357,450,640,480,how did the man in grey shirt play his instrument,1,47743023570,CH,kick it,strum the strings,hit with two sticks,press buttons,clap it,strum the strings 4819,6621511673,2697,640,480,why is the man pointing on the different pictures,3,66215116732,CW,she laughs,cool dancing,direct the attention,teaching the kid,for fun,teaching the kid 4820,3145698830,1763,640,480,what did the man do after pulling the baby to him,2,31456988301,TN,talked to the toddler,put baby on chest,let the baby sit,hi-five,smile,let the baby sit 4821,2559262403,2158,320,240,why are the pugs lying next to each other in the beginning,3,25592624030,CW,playing with toy,laughing,lie down on floor comfortably,resting,for food,resting 4822,6160414832,1831,640,480,how did the man in striped determine the number to play,3,61604148320,CH,spin a wheel,look at his book,keyboard and mouse,rolling the dice,asked each other,rolling the dice 4823,3322503255,1233,320,240,why does the person go near the plane towards the end,3,33225032553,CW,give signal to pilot,pick it up,on board,to assist,taking off,to assist 4824,8080432373,2697,640,360,why did the baby look at her left in the beginning,1,80804323730,CW,to open the video game,watch television,to block the camera screen,focus on something else,sleeping,watch television 4825,4024008346,588,640,360,why did the child not kick the blue balloon after the man kick it to her at first,4,40240083461,CW,try to stand up,playing with dog,getting caught,playing with it,stuck at sofa,stuck at sofa 4826,5933003028,931,640,360,why does the person repeatedly move his or her hands in many directions around the box,3,59330030280,CW,better express his speech,move the cycle,swimming,test different stimulation,paddle backwards,test different stimulation 4827,4650556666,567,640,480,what did the child do after he fell on the ground at the end of the video,1,46505566663,TN,holds the rope on his shoulder,sit on the floor,touch the cat,stood up,get up,sit on the floor 4828,3322503255,1233,320,240,what did the person on the right do as the plane is parking into the lot,0,33225032558,TC,make hand gestures,driving a car,driving off,stand up,drop the flags,make hand gestures 4829,4443526735,472,480,640,why did the baby kick his legs,4,44435267352,CW,rope skipping,playing with toy on floor,taekwondo training,push food away,trying to stand,trying to stand 4830,3595273118,375,640,480,why is the man standing on the stage,1,35952731183,CW,singing,speech,dancing,playing piano,playing guitar,speech 4831,2717347132,818,640,480,where is this place,2,27173471326,DL,field,porch outside house,home,kitchen,bus terminal,home 4832,9873067604,920,640,360,how are the children feeling while they are in the car,4,98730676041,TC,alert,weary,proud,confused,happy,happy 4833,2771402761,1460,640,480,what does the woman in white do after talking to the kid,2,27714027618,TN,continue talking,pick up baby,points,happy,run towards the camera,points 4834,3784543730,852,640,480,how is the person in black moving forward,1,37845437304,CH,crawling,cycling,skating,swimming,skiing,cycling 4835,11584566583,376,640,480,what did the lady in pink do just before the end of the video,3,115845665834,TP,crawl away,pick up toy,point her front,walk away,turn the paper around to show the camera,walk away 4836,5328004991,788,640,480,what does the woman do after the child letting go of the stirrer,1,53280049918,TN,show sponge to camera,stir it herself,refill the bucket,frown,touch the baby s arm,stir it herself 4837,4123211145,2697,640,480,what did the girl in yellow do in the middle of the video,4,41232111456,CW,reach the plates,arrange her standing,put soap on cloth,reach the microphone,adjust shirt,adjust shirt 4838,4671452046,1306,640,480,where is this video taken,2,46714520467,DL,sheltered area,stage,kitchen,room,speech event,kitchen 4839,3942617402,738,640,480,where is the train running,3,39426174026,DL,garden,in the wild,dessert,tracks,roadside,tracks 4840,11566980553,1721,640,480,why was the boy tearing the wrapping,3,115669805533,CW,to throw in the water,distracted,ask for help,open the present,trying to catch fishes,open the present 4841,5429688959,2490,640,360,why is the man on stage,3,54296889595,CW,receive certificates,dancing,giving speech,singing,listening to speaker,singing 4842,3427674558,870,640,480,what ddi the performers do after facing the right side,1,34276745584,TN,continue talking,bend knees,takes his right hand in pocket,takes out his gun,wushu,bend knees 4843,8387356484,1022,604,1072,what did the baby do with his head in the middle of the video,4,83873564848,TC,playing with train toy,put on table,turns sideways,cover with paper,nod his head,nod his head 4844,4279106208,559,640,360,where is this place,1,42791062088,DL,stage,playground,dirt field,waterfall,kitchen,playground 4845,5323654756,2032,640,480,what did the girl in pink do after she picked up something from the side of the room,4,53236547561,TN,go downstairs,falls down,hold toy up,point below the piano,put in her mouth,put in her mouth 4846,4006608424,2697,640,480,what does the man do after running back to the start in the middle,2,40066084248,TN,put the bike down,excited,swings again,run with him,push the robot,swings again 4847,7059877301,918,640,480,how did the light brown dog drink water,4,70598773013,CH,swim,chew the toy,put bottle to mouth,kick off,licking it,licking it 4848,4942054721,645,640,360,how did the goats show that they were a group,2,49420547211,CH,drinking the same milk,in same cage,travel together,had the same leash,had the same collar,travel together 4849,5863411262,1018,640,360,why is the woman in white holding a camera at the end,4,58634112625,CW,hold her stuff,performing,support baby,supervising,taking photo,taking photo 4850,3902997424,779,640,480,why did the man in white raise up both his arms when the camera moved towards him,4,39029974243,CW,start off fair,signal to jump,main guitarist,sunny weather,posing,posing 4851,4674481985,734,640,480,how did the person get into water in the middle,2,46744819851,CH,wear thick clothes,man in white pushes him,jump from rock,crawl down,slide down,jump from rock 4852,4127497265,895,360,480,why is the baby looking down at the start,1,41274972655,CW,yawn,pick up toy,man shake the toy,to break lobster,curious,pick up toy 4853,3562017845,1200,640,428,what did the bird at the back do after it started to walk,0,35620178454,TN,sit down,pat the dog,kicks the other bird out,change direction of walker for baby,stretch its body,sit down 4854,4584426085,2697,360,480,what did the puppy do while the lady was dressing it with the red shirt,1,45844260850,TC,swing left arm,climbing on to lady,look around,close the drawer,squat down,climbing on to lady 4855,3158022797,2697,640,480,what did the man in pink do that was different from the rest of the people in the middle,0,31580227975,TC,turned one round,engaged,move backwards,looking around,hugging,turned one round 4856,9293415110,2160,640,360,why did the girl smile and move around on the stage,4,92934151100,CW,watch performance,her belongings,look for something behind,to show her where to walk,performing,performing 4857,4698622422,1252,640,480,why is the boy running after the ball,2,46986224225,CW,happy,pick up and throw it,play with ball,pick up ball,prepare for another hit,play with ball 4858,2567843468,572,320,240,how does the girl splash the water,2,25678434689,CH,with her toys,a float,hit water with her hands,toy boat,jump up and down first,hit water with her hands 4859,8107573462,406,640,360,how did the boy react when he fell down on the ground,2,810757346210,TC,stand up,smile,stay on the ground,carry him up,stare at camera,stay on the ground 4860,3869005094,300,640,480,what did the two outer person do when the two inner person step forward,4,38690050944,TC,bow,wave to them ,clap hands,run away,step backward,step backward 4861,4896969617,350,640,480,how did the girl in pink ensure she does not fall,2,48969696175,CH,hold the lady s hands,tie herself with rope,hold onto structure,use harness,standing away from edge,hold onto structure 4862,3530231811,2697,640,480,why is the man on the right moving his body throughout the video,3,35302318114,CW,out of excitement,dancing,clap with audience,playing the guitar,move away wire,playing the guitar 4863,2834146886,1881,496,370,what does the black dog do after coming out from the bottom of the table,0,28341468866,TN,comes to the camera,bark,starts eating,chase the brown dog,played along with him,comes to the camera 4864,3581585756,702,640,480,what does the boy do after leaving his seat in the middle of the video,1,35815857569,TN,waving his hands,runs to the back,stood up,move pebbles,get up,runs to the back 4865,5735711594,589,272,480,why does the brown dog go near the white dog initally,0,57357115943,CW,attack white dog from behind,to give him a toy bone,trying to pick up ball,wanted to hug him,train dog,attack white dog from behind 4866,7088595057,1052,640,480,what are the two white sheeps doing at the back of the video,0,70885950578,TC,eating,run,sniff the ground,look at second toy,moves back,eating 4867,5549243726,527,640,360,where are the children hanging out,0,55492437266,DL,living room,playground,along the roadside,dining table,balcony,living room 4868,4244817395,1683,640,480,what does the boy do after stacking the cups,4,42448173958,TN,put arms behind back,drink from the lid,hold spoon with left hand,put hand in mouth,bring over to the playset,bring over to the playset 4869,5235909148,354,640,360,how did the man on the landing platform help the man to land,3,52359091480,CH,squat down,set camera up,knee pads,hold the rope,move left and right,hold the rope 4870,5919180502,1379,640,480,how many people are sitting at the ledge of the swimming pool,2,59191805029,DC,six,four,two,eight,seven,two 4871,5427285434,615,640,360,what did the boy do after getting off the sofa,3,54272854340,TN,walk to baby,raise his arm,tried to climb,run to kitchen,continue pushing,run to kitchen 4872,9576671750,825,640,360,what is in the background of the video,2,95766717504,DO,birthday party,mouth talking,computer screen,the score,park,computer screen 4873,4126010904,1698,640,480,what does the tall man do after lifting his face from the tv the first time,0,41260109046,TN,talk to other people,lift it up again,wave his hands,walks to the centre,run towards him,talk to other people 4874,5328616848,446,640,480,why was the woman holding the bowl at an angle,0,53286168480,CW,to pour ingredients out on tray,having a meal,picking up food,chewing,playing piano,to pour ingredients out on tray 4875,4882821564,2697,640,480,why did the boy place the unwrapped present on the ground,0,48828215642,CW,make space on sofa for next,for dog to play,watching their steps,want to keep toy,teach baby how to play,make space on sofa for next 4876,4087013668,1442,640,474,what did the lady in pink do after the boy looked at her at the end of the video,2,40870136688,TN,moves round,looking at present,clap hands,smiles,touch her knee,clap hands 4877,4276006683,799,640,480,what does the cat do after the person moves his hand left and right at the start,3,42760066835,TN,swipe person hand away,push it,lick the hand,try to catch the hand,smells him,try to catch the hand 4878,2510696559,2117,640,480,how many people are cycling in the video,2,251069655910,DC,eleven,eight,one,six,five,one 4879,10109097475,2698,640,360,what does the man in red do after looking at a distance from the plane at the start,4,101090974755,TN,shakes his head,happy,point forward,count down,moves away,moves away 4880,5498331490,2160,640,480,how many cats are there,4,54983314904,DC,two,four,three,five,one,one 4881,6188449000,1350,640,480,why is the woman holding the ukulele,0,61884490001,CW,acting to play it,to hold the ball,wipe tears,help to flip piano score,gesturing,acting to play it 4882,6188449000,1350,640,480,why did the boy walk away from the woman,0,61884490003,CW,to take a paper,exploring the christmas stuffs,to take picture,following boy,observe boy,to take a paper 4883,5907839036,2697,640,360,what does the man in striped shirt do after walking towards the barrier at the start,3,59078390366,TN,kiss baby,start dancing,take photograph,look at scenery,drink water from cup,look at scenery 4884,2614918961,1311,640,480,what toy is the children playing with,1,26149189615,DO,train,blocks,pick up fallen paper,classmate,rocket,blocks 4885,5858985747,349,604,1072,why is the girl in red holding on to a book with her hands at the start of the video,1,58589857474,CW,take photo together,turning the pages,reading to woman,she took it from shelf,gesture of affection,turning the pages 4886,9531760182,2097,640,480,how are the lady and the baby interacting with each other at the beginning of the video,2,95317601821,CH,in bed,hold the baby s chest,playing with cutlery,pick up toy,carry baby with right arm,playing with cutlery 4887,2567843468,572,320,240,how does the girl feel while playing,2,25678434688,TC,terrible,curious,happy,does not like it,confused,happy 4888,5498331490,2160,640,480,why does the cat bend down towards the toilet bowl in the middle,3,54983314903,CW,to drink,playing with white cat,go near camera,cleaning the toilet bowl,play with dog,cleaning the toilet bowl 4889,4443526735,472,480,640,why is the baby sitting on the boucy baby chair,0,44435267350,CW,learning to stand,audience,playing with the laptop,too young to stand alone,toys built into the special chair,learning to stand 4890,4603484665,1045,640,480,why does the brown dog walk to the two dogs when they are interacting,0,46034846653,CW,want to play,to stop them,to guide the dog,look for food,smelling it,want to play 4891,4132599924,781,640,480,why does the man bend down near the end,1,41325999241,CW,protecting face from dog sniffing,adjusting music,falls,play with the wool on ground,pick the puck,adjusting music 4892,5421648216,1290,640,360,what does the brown sheep do after walking close to the black sheep at the start,3,54216482165,TN,flap wings,let go of grey rooster,look at bottle,stands next to him,chase the brown dog,stands next to him 4893,5987365500,714,480,640,how does the girl style her hair,3,59873655004,CH,with feathers,with fake wigs,with coloured hair,with a ribbon,with hairspray,with a ribbon 4894,8552680285,442,640,360,why does the man standing hold onto two sticks,0,85526802857,CW,ski,to stick the sticks in the ground,for the game,taking a photo,assist walking on hill,ski 4895,5349969207,1193,640,360,what did the brown dog do after it lie on the floor at the end of the video,0,53499692074,TN,get up,bite toy and shake head,get close to the brown dog,resting,walks forward,get up 4896,5854324479,519,640,474,why did the man in dark brown move backwards,2,58543244790,CW,nervous,someone pushed him,leaving the room,afraid,exercising,leaving the room 4897,4190655097,1290,640,480,how does the person react when the cat tries to leave its cot,1,41906550975,TC,run away,puts it back,hug the cat,move his head,walked away,puts it back 4898,6096998186,671,640,360,how did the blonde woman react to her pair of souvenirs,0,60969981863,TC,hold the souvenirs up,put them on her head,run towards the lady in black,put in her bag,throw them away,hold the souvenirs up 4899,11670386946,998,640,360,what does the man in brown do after reading the piece of paper for a while at the end,4,116703869465,TN,happy,walk backward,moves hands,look at the camera,points at airplanes,points at airplanes 4900,4983922034,479,640,480,what does the black dog do after watching the two dogs jumping,0,49839220343,TN,dig snow,jump again,sits down,look at them,ignored white dog,dig snow 4901,2434859163,615,500,375,where is this place,1,24348591635,DL,wedding hall,zoo,waterfall,bus terminal,outside a house,zoo 4902,4190655097,1290,640,480,how did the cat feel when it bite the person and tried to scratch him,0,41906550970,TC,irritated,happy,excited,sad,disappointed,irritated 4903,4179163342,2172,640,480,why is the lips of the man moving as he stood in front of the children,4,41791633428,CW,part of performance,speaking into microphone,making a speech,talking to the man,talking to children,talking to children 4904,6443512089,2437,640,360,why does the child wear a beanie,4,64435120890,CW,keep warm,sleeping time,protect from sun,dancing costume,cold,cold 4905,6713120511,1664,640,360,what did the man in black do after the last lady slid down,3,67131205115,TN,poke her,put hands together,tickle her,walk over to her,put arm on hip,walk over to her 4906,14012319794,3010,640,360,why did the little girl take out the bottle of syrup from the cupboard near the end of the video,4,140123197942,CW,feed insects,take snack out,opening box,acting tool,want to drink,want to drink 4907,7308042410,1019,640,1138,how did the man teach the girl how to hold the tools,3,73080424108,CH,use rope,pictures,demonstrated 1 time,held her hands,use hand gestures,held her hands 4908,5926256714,863,640,360,how are the boy s arms positioned,0,59262567144,DO,upward,on lady arms,put baby on his lap,sitting,kiss the baby,upward 4909,9565310990,1066,640,360,why did the baby crawl towards the cloth,2,95653109900,CW,lost balance,dancing,get across the path,playing with it,hide,get across the path 4910,2976913210,542,640,480,why did the man need to ride such a specialised vehicle on such fields,1,29769132109,CW,strong wind,get across marsh,practising fighting,perform stunt,open space,get across marsh 4911,6277800530,876,640,360,how does the man transport himself across,1,62778005300,CH,cycle up slope,jeep,using the sled,handles on the machine,spread arms out,jeep 4912,8575881495,2000,640,360,what does the girl do while the lady in blue was watching her in the middle,3,85758814953,TC,smile,talk to the other 2 people,look at parcel,moving on the sofa,search the bag,moving on the sofa 4913,5885887012,956,272,480,judging from the video where is the baby playing,2,58858870124,DO,smiling,birthday party,playground,swimming,rocking chair,playground 4914,8990144134,457,320,240,why did the cat stretch its paws out after sitting up,2,89901441343,CW,go somewhere,change playing position,hit the bird,playing,relaxed,hit the bird 4915,11566980553,1721,640,480,what is the relationship between the boy and the lady,4,115669805530,DO,colleagues,siblingsfriends,father daughter,grandmother,parent offspring,parent offspring 4916,5133787349,363,320,240,how does the man in front react when the other two fall down,0,51337873498,TC,face audience,fall down too,jump for joy,take off his jacket,throw his glasses,face audience 4917,2614918961,1311,640,480,how did the baby supported himself as he stood up,2,26149189618,CH,hold the lady s arm,stretch arms out,on the table,grabbing on to the cot,lifting himself up from ground,on the table 4918,6160414832,1831,640,480,what did the man in striped do before he threw the dices,4,61604148321,TP,stretch arms in the air,adjust girl s posture,dig deeper into box,throw the ball,shake the dice,shake the dice 4919,4126010904,1698,640,480,what does the tall man do at the start while holding his cup,1,41260109040,TC,take a book out,touch the screen,curious,look at phone,writing something,touch the screen 4920,3249402410,697,640,480,why did the lady in red pass the lady in pink the pan and held it there for a while,3,32494024105,CW,ensure safety,to get some icecream,to finish eating the food,talking,the pan was hot,talking 4921,11670386946,998,640,360,how many people are mainly involved in the video,2,116703869468,DC,eight,four,one,six,three,one 4922,9256409422,2312,640,360,why does the lady turn away from the camera initally,4,92564094221,CW,wanted to play with the baby,looking at tickets,maintaing her balance,she was changing her outfit,shy,shy 4923,2442307875,515,640,480,how are the children positioned on stage,0,24423078751,TC,stand in a line,move to stage edge,sticks,sitting around,sitting in a line,stand in a line 4924,5421648216,1290,640,360,why did the black sheep bend down near the end,4,54216482162,CW,keep warm in snow,gesture,lick the other dog,rest,eat the grass,eat the grass 4925,2559262403,2158,320,240,what does one of the pug do after the other one move nearer to the corner,4,25592624035,TN,chases it into the corner,pick it up,look its right,catch it,pushes it away,pushes it away 4926,7572859950,497,640,1138,what does the lady do after stretching the shirt of the baby in the middle,3,75728599505,TN,kiss baby,touch the baby s stomach,smile,flip her to the side,falls back down,flip her to the side 4927,2990321092,633,640,480,what were the men trying to do,4,29903210922,DO,teammates,photographer,test,colleagues,eat food,eat food 4928,5875535585,2291,640,360,why did a man hold up his phone while the band is performing,4,58755355853,CW,referring to scoresheet,facing the audience,drinking,instruct them to stop,take photo,take photo 4929,3192668394,2079,320,176,why does the man in green shake his head,1,31926683948,CW,reluctant to go home,to dance,does not want to be filmed in camera,disapprove the man in white,feeling uncomfortable,to dance 4930,4036955771,2697,640,480,what do the people do as they stood in a straight line,1,40369557710,TC,putting up a cloth,play music,dancing,speaking,squatting,play music 4931,5987365500,714,480,640,how does the girl position her other hand not holding the microphone,2,59873655007,DO,on the wheel,on the sofa,on her waist,on forehead,clip hair up,on her waist 4932,3562017845,1200,640,428,what animals are these,4,35620178453,DO,tigers,dogs,cats,elephants,birds,birds 4933,5919180502,1379,640,480,what does the man do after he points the camera at himself,3,59191805021,TN,change his position,dancing to rhythm,yawns,poses,nods head,poses 4934,7533369046,803,640,360,why is the baby sitting on the floor,1,75333690469,CW,resting,crawling around,rolling around floor,picking something up,not enough chairs,crawling around 4935,4984417707,441,640,360,why did the ball not go inside the goal net near the end,2,49844177077,CW,adjust to comfortable position to hit,put it in a better place,other elephant saved it,boy kicked it,done playing,other elephant saved it 4936,5877508141,583,640,480,why did the man raise his hands towards the boy,2,58775081411,CW,to touch the boy,pass kite to boy,suggest boy to get down,to hit the boy,stretching,suggest boy to get down 4937,2829462646,2500,352,240,what does the person in stripes wear on his shirt,2,28294626460,TC,flowers,sunflower,a tag,brooch,badge,a tag 4938,3107742409,1604,500,280,what does the man do after he bends forward to the baby at the start,4,31077424095,TN,put the baby back,push swing,talk to boy,lie down,play with baby s hands,play with baby s hands 4939,4166942239,590,640,480,what does the man in red do when the man in suits seems lost in the middle of the video,2,41669422397,TC,drink,put it on a black table,use hand gestures,stopped him,moves forward,use hand gestures 4940,7771650716,1805,640,360,where is this video taken,2,77716507169,DL,snow mountain,jungle,road,backyard,studio,road 4941,2503404966,840,640,480,why did the boy touch the front wheel after looking up,4,25034049663,CW,touch it,toy driver,check for cars,acting cool,prevent himself from falling,prevent himself from falling 4942,8277866423,829,640,360,how did the brown dog feel when the black dog lunges at the bone,1,82778664231,TC,sad,angry,happy,shocked,worried,angry 4943,3112351937,448,640,480,how many people are there,4,31123519378,DC,seven,three,four,eleven,two,two 4944,11565498775,1216,640,360,why does the boy try to squat down after moving closer to the man,4,115654987753,CW,fish splashing too much,playing the piano,man is entertaining,teach him swimming,pushing the rod,pushing the rod 4945,3171006258,1099,640,480,why did the man hold onto the pole as he stood up,0,31710062581,CW,to help him up,clean the pole,the handle was broken,repairing the pole,to lift up higher,to help him up 4946,4087013668,1442,640,474,how is the baby playing with the peels,3,40870136683,CH,hit against the table,show to lady,eat the peels,throwing around,touched it,throwing around 4947,11566930393,872,640,480,how does the other person remove the plastic wrap from the toy in the middle,4,115669303932,CH,leave it to stand upright,use finger to wipe,adult takes them off,using stick,hands,hands 4948,5205081904,623,360,480,what did the boy do after he picked up the grey toy,2,52050819043,TN,attempt to wear,chew,watching video on tablet,moves the object,play with toy,watching video on tablet 4949,13884293626,5395,640,360,what is the possible relationship between the lady in purple and man in brown,3,138842936269,DO,husbandwifefriends,nurse,family member,teacher student,husband wife,teacher student 4950,6168716346,949,640,360,from the types of clothes they are wearing what weather it could be,2,61687163464,DO,raining,snowing,cooling,winter cold,hot,cooling 4951,3375218204,2241,640,480,where is this happening,2,337521820412,DL,kitchen,karaoke room,living room,outdoors,classroom,living room 4952,8171216955,550,568,320,how did the girl hit the toy,2,81712169556,CH,pick it up,with her feet,with her hands,with a rod,swing the club,with her hands 4953,4092992100,461,640,480,why is another boy in red and black standing behind the boy in blue,2,40929921005,CW,building sand castles,dancing to the music,wait for his turn,clap his hands,clean the floor,wait for his turn 4954,7114553643,1974,640,480,why did the man in brown vest and the lady moved her body as they hugged together,2,71145536436,CW,conversing,show affection,dancing,escort lady,playing her instrument,dancing 4955,7330294814,2298,640,360,what is the baby in yellow doing on the floor,4,73302948140,TC,fell down,rolling around,crawling,clapping,playing,playing 4956,5433090067,607,480,640,why did the girl go towards the door at the beginning of the video,2,54330900670,CW,open the door,to hold lady s hands,look into another room,pick up toy,close the door,look into another room 4957,4770216656,960,640,480,what does the man do as the boy is swinging,0,47702166560,TC,push swing,punching sandbag,watching tv,cleaning toy car and sliver lid,eating ice-cream,push swing 4958,4483447009,775,640,480,how many ducks are involved in the video,4,44834470096,DC,five,six,four,one,two,two 4959,5586394125,1128,640,360,why did the white shirt woman touch the dog s head when it came beside her at the beginning of the video,1,55863941251,CW,hit the dog,caress it,push the dog away,entangled by the leash,put on leash,caress it 4960,11276567104,989,640,360,why does the priest touch the woman s forehead with his thumb,0,112765671045,CW,giving blessing,man does not finish the beer,let boy play,teasing him,adjust hair,giving blessing 4961,8627074061,2697,640,360,why did the lady took out the art pieces one by one throughout the video,2,86270740619,CW,organise again,pose for photos,show the girl the art piece,distribute to students,man chooses,show the girl the art piece 4962,2978295992,1056,640,360,why is the woman holding a knife,0,29782959920,CW,cutting a pumpkin,show man how to cut watermelon,cake spill,split the cake,remove the tendons and fat,cutting a pumpkin 4963,4838113006,2697,640,360,why is the lady in grey positioning the bells on table b in the video,2,48381130061,CW,pick her child up,make space for crab,special arrangement,celebratory pose,see the screen clearer,special arrangement 4964,4612723694,1681,640,480,why is the man in grey holding on to a white bag at the beginning of the video,4,46127236942,CW,taking out food,take a photo,keep his rubbish,adjust the bag strap,release snake from bag,release snake from bag 4965,6793786769,1158,640,360,how did the person change the direction of the train in the middle of the video,1,67937867691,CH,pulled from right,let it head to right,man pushes it,stretch out his hand,turn backwards,let it head to right 4966,7442562474,598,640,480,how did the white cat show affection towards the brown cat at the start,2,74425624749,CH,with her hands,sit on toilet,lick the brown cat,crawl,sitting on the sofa,lick the brown cat 4967,5885887012,956,272,480,how is the toy being moved,2,58858870121,CH,use legs to move forward,pulled by lady,baby pushes it,turn the model,man pushes it,baby pushes it 4968,4465235803,1014,640,428,what is the response of the baby as the lady tries to shave his neck in the middle,3,44652358034,TC,push spectacle up,adjust the baby s shirt,carry the baby up,turn around and look,shake her head,turn around and look 4969,3151715056,1895,640,480,why are the ladies holding towel in their hand,0,31517150561,CW,warm their hand,prevent dirtying shirt,not stain her clothes,dancing,dry her hands,warm their hand 4970,11871253306,1476,512,288,how did the men make the game more challenging for the children,4,118712533065,CH,cry,punch air,hold the boy,touching the controls,kicked the ball away,kicked the ball away 4971,2796821016,1851,500,375,what does the boy in white do to get pass the other boy at the end,1,27968210169,TC,walk away,climb and move away,cries,pulls the boy in red,filming,climb and move away 4972,3530231811,2697,640,480,what did the man in black do after he stepped backwards in the middle of the video,3,35302318118,TN,punch him,bounce baby,walk over,started singing again,put in front of baby,started singing again 4973,2589540862,681,500,375,why did the man at the back reach out to the girl in the middle of the video,1,25895408621,CW,touch her hair,prevent her from falling down,take balloon away from girl,talking to the girl,help her sit down,prevent her from falling down 4974,5064681723,602,640,480,how did the lady support the baby,4,50646817233,CH,kiss its forehead,rock baby,hold her hand,carry on her back,strap baby to body,strap baby to body 4975,9576671750,825,640,360,how did the person show the back of the phone,0,95766717508,CH,flip the phone,pushing it back and forth,adjust camera,put on table,lift up the phone,flip the phone 4976,3355698421,1193,640,360,what does the lady in black do as the man in checkered shirt was drinking at the start,4,33556984210,TC,move his hand to grab the drink,stand still at the side,walking,smiling,use her phone,use her phone 4977,3846475848,2138,640,480,why is the man cleaning the ferret,0,38464758480,CW,bathing,to dry,compliment dog and show affection,talking about something,dry from bathing,bathing 4978,4882821564,2697,640,480,why did the boy clap his hands when he ran to the christmas tree,4,48828215640,CW,adjust the tree,get away the dust,dancing,pressed a button to activate,presents,presents 4979,8224492254,972,640,480,why did the adult hold onto the baby s hands throughout the video,2,82244922541,CW,wearing a watch for him,trying to clean his hands,support him,teaching him to play piano,drawing a flower with him,support him 4980,7888256388,658,640,480,why did the dog look up at the lady at the start,2,78882563886,CW,play with him,sniff her face,being patted,show love,to sniff,being patted 4981,8594314852,377,640,360,what did the lady do after she stopped walking in the middle of the video,1,859431485210,TN,answer the phone,turn to look at kid,touch her feet,pick up something,start claping,turn to look at kid 4982,4412508597,358,640,480,what does the lady in white do as the boy was making funny faces,4,44125085974,TC,stares,look and walk around,girl talks to lady,amused,sit in front of him,sit in front of him 4983,4123915842,750,640,480,why does the lady in black touch the girl s clothes at the end,0,41239158428,CW,adjust the clothes,take off her clothes,sew on clothes,add scarf,add jacket,adjust the clothes 4984,9473479950,608,640,480,how did the baby kept his legs raised at the beginning of the video,0,94734799509,CH,hold them with hands,man holding it up,lady helps him,swinging arms and legs,put on table,hold them with hands 4985,3939145327,1194,640,360,what did the girl do after she checked her teddy bear in the middle of the video,2,39391453279,TN,put finger in her mouth,dances,cycle forward,eat ice cream,direct baby away,cycle forward 4986,6078524411,2512,640,360,what did the boy do after rubbing his eyes,3,60785244114,TN,play with toy,cry,wipe his face,stare blankly in front of him,look towards the right,stare blankly in front of him 4987,3249402410,697,640,480,how did the lady in black on the right remove the remaining cheese on her hands at the end of the video,0,32494024107,CH,sweep her hand,licks her hand,shake hands right and left,rub on tissue,wash under water,sweep her hand 4988,4846820256,671,640,480,why does the boy move back throughout the video,0,48468202562,CW,pull the rope,wants to eat,part of practice,to adjust his hand,playing with phone,pull the rope 4989,4707679105,965,640,480,what did the man do after he looked at the camera at the end of the video,4,47076791056,TN,use computer,walked out of video,hug boy,himself in the mirror,smile,smile 4990,13919236672,3924,640,360,why does the girl pick up the black hat near the end of the video,2,139192366723,CW,make musical sound,direct attention,looking for something,to get down the step,tired of bouncing,looking for something 4991,5061117640,1587,568,320,what does the man in grey do after sitting down int he middle,3,50611176406,TN,talking on phone,take the pipe,smiling,smell burger,cross his legs,smell burger 4992,5662041273,2697,640,480,what did the boy do after he picked up the helicopter from the floor,4,56620412739,TN,ran to the man,crawl,walk to baby,move towards the stairs,kept it on the table,kept it on the table 4993,3960291106,1428,640,360,how did everyone show signs of appreciation at the end of the video,0,39602911065,CH,clap,wave and pose for camera,crawls,caress his head,exchange handshakes,clap 4994,3555755537,1599,640,480,why does the person lie down without wearing her footwear,2,35557555371,CW,follow woman,cleasn environment,resting,hot indoor,sunbathing in beach,resting 4995,6233408665,2246,640,360,what did the people on the sofa do after the lady in pink finished singing,3,62334086658,TN,sitting,give it to the girl,take music sheet,clap,walk in circles,clap ================================================ FILE: data/multiple_choice_qa/STAR.csv ================================================ ,video_name,question,answer_number,question_id,question_type,a0,a1,a2,a3,answer 1,6H78U_11.1_19.6,Which object was tidied up by the person?,2,Interaction_T1_13,Interaction_T1,The closet/cabinet.,The blanket.,The clothes.,The table.,The clothes. 2,6H78U_15.6_22.7,Which object was tidied up by the person?,2,Interaction_T1_14,Interaction_T1,The blanket.,The table.,The clothes.,The closet/cabinet.,The clothes. 3,RNLTR_7.3_13.5,Which object was thrown by the person?,2,Interaction_T1_31,Interaction_T1,The pillow.,The bag.,The clothes.,The box.,The clothes. 4,RNLTR_11.6_16.4,Which object was put down by the person?,1,Interaction_T1_32,Interaction_T1,The food.,The shoe.,The blanket.,The sandwich.,The shoe. 5,VNQTH_2.7_9.2,Which object was tidied up by the person?,1,Interaction_T1_40,Interaction_T1,The broom.,The closet/cabinet.,The blanket.,The table.,The closet/cabinet. 6,Y79PC_16.9_22.6,Which object was thrown by the person?,3,Interaction_T1_43,Interaction_T1,The box.,The pillow.,The broom.,The clothes.,The clothes. 7,4GLAP_16.1_20.7,Which object was thrown by the person?,1,Interaction_T1_70,Interaction_T1,The food.,The shoe.,The pillow.,The towel.,The shoe. 8,4GLAP_15.7_21.4,Which object was put down by the person?,0,Interaction_T1_71,Interaction_T1,The paper/notebook.,The clothes.,The cup/glass/bottle.,The pillow.,The paper/notebook. 9,XO8NL_3.6_12.5,Which object was thrown by the person?,2,Interaction_T1_76,Interaction_T1,The shoe.,The clothes.,The pillow.,The food.,The pillow. 10,OY3LS_2.5_10.1,Which object was opened by the person?,0,Interaction_T1_78,Interaction_T1,The laptop.,The refrigerator.,The door.,The bag.,The laptop. 11,OY3LS_34.9_41.4,Which object was sat on by the person?,1,Interaction_T1_81,Interaction_T1,The bed.,The sofa/couch.,The table.,The floor.,The sofa/couch. 12,5T0NX_2.3_8,Which object was put down by the person?,0,Interaction_T1_95,Interaction_T1,The dish.,The clothes.,The laptop.,The food.,The dish. 13,RG0KS_0_7.6,Which object was tidied up by the person?,3,Interaction_T1_100,Interaction_T1,The table.,The towel.,The clothes.,The blanket.,The blanket. 14,RG0KS_17.4_27,Which object was put down by the person?,1,Interaction_T1_101,Interaction_T1,The cup/glass/bottle.,The box.,The clothes.,The bag.,The box. 15,N5PLR_1.6_10.6,Which object was taken by the person?,0,Interaction_T1_104,Interaction_T1,The clothes.,The cup/glass/bottle.,The sandwich.,The book.,The clothes. 16,N5PLR_5.2_10.4,Which object was thrown by the person?,0,Interaction_T1_106,Interaction_T1,The clothes.,The broom.,The bag.,The food.,The clothes. 17,8UCK1_8.7_13.9,Which object was closed by the person?,3,Interaction_T1_111,Interaction_T1,The refrigerator.,The door.,The box.,The closet/cabinet.,The closet/cabinet. 18,NUKJ0_19.4_26.6,Which object was closed by the person?,0,Interaction_T1_137,Interaction_T1,The book.,The laptop.,The box.,The closet/cabinet.,The book. 19,NUKJ0_11_17.6,Which object was taken by the person?,3,Interaction_T1_139,Interaction_T1,The laptop.,The dish.,The box.,The paper/notebook.,The paper/notebook. 20,XOOTA_0_6,Which object was lied on by the person?,2,Interaction_T1_147,Interaction_T1,The paper/notebook.,The sofa/couch.,The floor.,The bed.,The floor. 21,XOOTA_4.5_9,Which object was sat on by the person?,0,Interaction_T1_148,Interaction_T1,The floor.,The table.,The sofa/couch.,The bed.,The floor. 22,LBRYS_8.9_13.4,Which object was put down by the person?,2,Interaction_T1_171,Interaction_T1,The sandwich.,The bag.,The shoe.,The cup/glass/bottle.,The shoe. 23,LBRYS_12.3_16.8,Which object was put down by the person?,1,Interaction_T1_172,Interaction_T1,The box.,The shoe.,The clothes.,The cup/glass/bottle.,The shoe. 24,LBRYS_7.8_15.4,Which object was taken by the person?,2,Interaction_T1_173,Interaction_T1,The dish.,The paper/notebook.,The shoe.,The laptop.,The shoe. 25,KA09C_13.4_18.5,Which object was put down by the person?,2,Interaction_T1_184,Interaction_T1,The broom.,The paper/notebook.,The shoe.,The bag.,The shoe. 26,H0L5S_20.4_27.5,Which object was taken by the person?,0,Interaction_T1_188,Interaction_T1,The towel.,The pillow.,The picture.,The phone/camera.,The towel. 27,7MRKY_29.9_36.1,Which object was closed by the person?,2,Interaction_T1_197,Interaction_T1,The closet/cabinet.,The box.,The laptop.,The book.,The laptop. 28,7MRKY_24.8_32.8,Which object was put down by the person?,1,Interaction_T1_198,Interaction_T1,The cup/glass/bottle.,The broom.,The pillow.,The clothes.,The broom. 29,7HSZJ_17.2_22,Which object was put down by the person?,2,Interaction_T1_210,Interaction_T1,The box.,The pillow.,The towel.,The food.,The towel. 30,7HSZJ_19.5_24.4,Which object was put down by the person?,1,Interaction_T1_211,Interaction_T1,The paper/notebook.,The towel.,The picture.,The dish.,The towel. 31,7HSZJ_15.2_20.1,Which object was taken by the person?,3,Interaction_T1_212,Interaction_T1,The cup/glass/bottle.,The clothes.,The food.,The towel.,The towel. 32,7HSZJ_18.9_23.4,Which object was taken by the person?,2,Interaction_T1_213,Interaction_T1,The picture.,The book.,The towel.,The paper/notebook.,The towel. 33,TBRZ5_7_13.2,Which object was thrown by the person?,3,Interaction_T1_226,Interaction_T1,The bag.,The box.,The clothes.,The pillow.,The pillow. 34,TBRZ5_6.8_15.6,Which object was put down by the person?,3,Interaction_T1_227,Interaction_T1,The book.,The dish.,The shoe.,The pillow.,The pillow. 35,DGPAW_3.5_12.8,Which object was put down by the person?,3,Interaction_T1_235,Interaction_T1,The phone/camera.,The book.,The clothes.,The picture.,The picture. 36,E002I_4.7_14.1,Which object was lied on by the person?,1,Interaction_T1_236,Interaction_T1,The door.,The bed.,The sofa/couch.,The floor.,The bed. 37,E002I_3_8.3,Which object was taken by the person?,1,Interaction_T1_238,Interaction_T1,The picture.,The pillow.,The book.,The blanket.,The pillow. 38,E002I_4.1_9.4,Which object was put down by the person?,3,Interaction_T1_239,Interaction_T1,The dish.,The phone/camera.,The sandwich.,The pillow.,The pillow. 39,6CAZU_10.6_16.1,Which object was taken by the person?,1,Interaction_T1_262,Interaction_T1,The towel.,The sandwich.,The paper/notebook.,The picture.,The sandwich. 40,QLAS7_10.6_18.5,Which object was tidied up by the person?,0,Interaction_T1_263,Interaction_T1,The closet/cabinet.,The broom.,The blanket.,The table.,The closet/cabinet. 41,QLAS7_8.5_16.6,Which object was put down by the person?,2,Interaction_T1_264,Interaction_T1,The laptop.,The paper/notebook.,The picture.,The box.,The picture. 42,D1WYU_7.2_14.4,Which object was thrown by the person?,1,Interaction_T1_287,Interaction_T1,The pillow.,The bag.,The clothes.,The blanket.,The bag. 43,D1WYU_20.3_25.2,Which object was put down by the person?,1,Interaction_T1_288,Interaction_T1,The pillow.,The shoe.,The clothes.,The cup/glass/bottle.,The shoe. 44,D1WYU_8.1_13.8,Which object was put down by the person?,2,Interaction_T1_289,Interaction_T1,The shoe.,The food.,The bag.,The phone/camera.,The bag. 45,VIN5T_1.4_6,Which object was put down by the person?,1,Interaction_T1_293,Interaction_T1,The clothes.,The pillow.,The blanket.,The cup/glass/bottle.,The pillow. 46,VIN5T_1.5_6.2,Which object was thrown by the person?,0,Interaction_T1_294,Interaction_T1,The pillow.,The box.,The broom.,The clothes.,The pillow. 47,MXATD_0_6,Which object was taken by the person?,2,Interaction_T1_297,Interaction_T1,The clothes.,The picture.,The dish.,The cup/glass/bottle.,The dish. 48,MXATD_0.2_6,Which object was put down by the person?,3,Interaction_T1_298,Interaction_T1,The book.,The cup/glass/bottle.,The bag.,The dish.,The dish. 49,MXATD_0.6_9,Which object was washed by the person?,0,Interaction_T1_299,Interaction_T1,The dish.,The table.,The cup/glass/bottle.,The clothes.,The dish. 50,YB67Z_13.7_18.9,Which object was closed by the person?,1,Interaction_T1_307,Interaction_T1,The door.,The box.,The window.,The closet/cabinet.,The box. 51,YB67Z_14.3_21,Which object was taken by the person?,0,Interaction_T1_308,Interaction_T1,The box.,The dish.,The towel.,The blanket.,The box. 52,YB67Z_11.9_19.1,Which object was tidied up by the person?,2,Interaction_T1_309,Interaction_T1,The clothes.,The closet/cabinet.,The table.,The broom.,The table. 53,YB67Z_12.7_22.3,Which object was put down by the person?,2,Interaction_T1_310,Interaction_T1,The book.,The blanket.,The box.,The bag.,The box. 54,1O1JS_0_3.7,Which object was taken by the person?,1,Interaction_T1_320,Interaction_T1,The box.,The towel.,The clothes.,The picture.,The towel. 55,1O1JS_26.2_30.9,Which object was put down by the person?,3,Interaction_T1_321,Interaction_T1,The cup/glass/bottle.,The paper/notebook.,The clothes.,The towel.,The towel. 56,A2X7Q_11.1_18.7,Which object was put down by the person?,1,Interaction_T1_350,Interaction_T1,The food.,The sandwich.,The clothes.,The towel.,The sandwich. 57,1L5D3_13.6_21.6,Which object was put down by the person?,3,Interaction_T1_357,Interaction_T1,The broom.,The cup/glass/bottle.,The clothes.,The pillow.,The pillow. 58,1L5D3_2.9_10,Which object was taken by the person?,0,Interaction_T1_358,Interaction_T1,The pillow.,The cup/glass/bottle.,The book.,The food.,The pillow. 59,3N1I2_14.2_20.3,Which object was taken by the person?,1,Interaction_T1_373,Interaction_T1,The box.,The pillow.,The blanket.,The bag.,The pillow. 60,S572F_13_21,Which object was taken by the person?,2,Interaction_T1_375,Interaction_T1,The phone/camera.,The food.,The blanket.,The towel.,The blanket. 61,S572F_0.6_10.4,Which object was put down by the person?,3,Interaction_T1_376,Interaction_T1,The laptop.,The food.,The bag.,The towel.,The towel. 62,ATV2F_12.7_20.7,Which object was opened by the person?,3,Interaction_T1_379,Interaction_T1,The refrigerator.,The box.,The door.,The laptop.,The laptop. 63,IWTWJ_13.2_20.8,Which object was sat on by the person?,2,Interaction_T1_391,Interaction_T1,The floor.,The bed.,The sofa/couch.,The table.,The sofa/couch. 64,IWTWJ_4.2_9.5,Which object was tidied up by the person?,2,Interaction_T1_393,Interaction_T1,The clothes.,The closet/cabinet.,The blanket.,The towel.,The blanket. 65,NJANX_3_9.7,Which object was put down by the person?,1,Interaction_T1_425,Interaction_T1,The dish.,The box.,The pillow.,The towel.,The box. 66,NJANX_17.7_22,Which object was washed by the person?,0,Interaction_T1_426,Interaction_T1,The table.,The mirror.,The cup/glass/bottle.,The clothes.,The table. 67,NJANX_2.4_9.6,Which object was taken by the person?,1,Interaction_T1_427,Interaction_T1,The towel.,The box.,The bag.,The phone/camera.,The box. 68,TRHT1_0_4.2,Which object was sat on by the person?,2,Interaction_T1_432,Interaction_T1,The bed.,The floor.,The sofa/couch.,The table.,The sofa/couch. 69,W0QSB_25.9_35,Which object was put down by the person?,1,Interaction_T1_453,Interaction_T1,The paper/notebook.,The dish.,The broom.,The cup/glass/bottle.,The dish. 70,W0QSB_25.6_35,Which object was taken by the person?,0,Interaction_T1_454,Interaction_T1,The dish.,The laptop.,The phone/camera.,The food.,The dish. 71,C83CH_11.9_17,Which object was put down by the person?,2,Interaction_T1_455,Interaction_T1,The cup/glass/bottle.,The pillow.,The clothes.,The shoe.,The clothes. 72,C83CH_11.9_17,Which object was thrown by the person?,0,Interaction_T1_456,Interaction_T1,The clothes.,The box.,The broom.,The shoe.,The clothes. 73,5NG6Q_9.9_18.1,Which object was taken by the person?,1,Interaction_T1_457,Interaction_T1,The paper/notebook.,The dish.,The broom.,The book.,The dish. 74,5NG6Q_13.8_21,Which object was put down by the person?,2,Interaction_T1_458,Interaction_T1,The food.,The broom.,The dish.,The towel.,The dish. 75,5NG6Q_17.7_25.4,Which object was washed by the person?,2,Interaction_T1_459,Interaction_T1,The clothes.,The window.,The dish.,The table.,The dish. 76,5NG6Q_17.6_25.6,Which object was tidied up by the person?,0,Interaction_T1_460,Interaction_T1,The table.,The closet/cabinet.,The blanket.,The clothes.,The table. 77,C1DK7_4.2_10.2,Which object was closed by the person?,1,Interaction_T1_476,Interaction_T1,The box.,The laptop.,The door.,The closet/cabinet.,The laptop. 78,C1DK7_17.1_21.6,Which object was put down by the person?,3,Interaction_T1_479,Interaction_T1,The book.,The box.,The food.,The phone/camera.,The phone/camera. 79,V0ZD9_23.5_28.5,Which object was taken by the person?,3,Interaction_T1_506,Interaction_T1,The book.,The shoe.,The food.,The clothes.,The clothes. 80,YHXU9_14.7_19.2,Which object was tidied up by the person?,3,Interaction_T1_520,Interaction_T1,The table.,The towel.,The closet/cabinet.,The clothes.,The clothes. 81,YHXU9_19.3_25,Which object was thrown by the person?,3,Interaction_T1_522,Interaction_T1,The shoe.,The broom.,The food.,The book.,The book. 82,PH5VU_30.5_37.4,Which object was opened by the person?,0,Interaction_T1_526,Interaction_T1,The book.,The bag.,The door.,The closet/cabinet.,The book. 83,VJG6E_9_18,Which object was opened by the person?,3,Interaction_T1_531,Interaction_T1,The window.,The door.,The book.,The laptop.,The laptop. 84,VJG6E_2.7_9.4,Which object was thrown by the person?,0,Interaction_T1_532,Interaction_T1,The blanket.,The towel.,The pillow.,The broom.,The blanket. 85,VJG6E_3_10,Which object was tidied up by the person?,3,Interaction_T1_533,Interaction_T1,The closet/cabinet.,The clothes.,The towel.,The blanket.,The blanket. 86,8V8HC_1.6_8,Which object was thrown by the person?,3,Interaction_T1_536,Interaction_T1,The box.,The bag.,The clothes.,The pillow.,The pillow. 87,8V8HC_1.7_7.1,Which object was taken by the person?,3,Interaction_T1_537,Interaction_T1,The shoe.,The sandwich.,The towel.,The pillow.,The pillow. 88,5C4EK_5.4_11.4,Which object was taken by the person?,2,Interaction_T1_545,Interaction_T1,The phone/camera.,The pillow.,The paper/notebook.,The sandwich.,The paper/notebook. 89,NW0KT_42.6_50,Which object was washed by the person?,0,Interaction_T1_559,Interaction_T1,The mirror.,The clothes.,The window.,The table.,The mirror. 90,NW0KT_8.6_13.9,Which object was taken by the person?,1,Interaction_T1_561,Interaction_T1,The pillow.,The paper/notebook.,The shoe.,The dish.,The paper/notebook. 91,NYHD7_0_4.7,Which object was sat at by the person?,0,Interaction_T1_575,Interaction_T1,The table.,The bed.,The sofa/couch.,The floor.,The table. 92,NYHD7_18_26.9,Which object was taken by the person?,1,Interaction_T1_576,Interaction_T1,The box.,The phone/camera.,The cup/glass/bottle.,The dish.,The phone/camera. 93,NYHD7_22.4_27.2,Which object was put down by the person?,1,Interaction_T1_577,Interaction_T1,The food.,The phone/camera.,The bag.,The pillow.,The phone/camera. 94,3Q6N1_0_4.4,Which object was opened by the person?,1,Interaction_T1_611,Interaction_T1,The door.,The laptop.,The window.,The closet/cabinet.,The laptop. 95,T7ST5_6.8_11.6,Which object was thrown by the person?,2,Interaction_T1_620,Interaction_T1,The shoe.,The pillow.,The towel.,The blanket.,The towel. 96,8SDK5_16.7_23,Which object was sat on by the person?,2,Interaction_T1_631,Interaction_T1,The bed.,The floor.,The sofa/couch.,The table.,The sofa/couch. 97,U9KYC_21.3_29.4,Which object was taken by the person?,1,Interaction_T1_651,Interaction_T1,The book.,The shoe.,The food.,The pillow.,The shoe. 98,9MNZ5_21.1_27.2,Which object was closed by the person?,2,Interaction_T1_652,Interaction_T1,The window.,The laptop.,The box.,The refrigerator.,The box. 99,9MNZ5_9_13.8,Which object was taken by the person?,0,Interaction_T1_653,Interaction_T1,The box.,The picture.,The pillow.,The dish.,The box. 100,9MNZ5_10.4_17.8,Which object was opened by the person?,3,Interaction_T1_654,Interaction_T1,The book.,The door.,The refrigerator.,The box.,The box. 101,DR7K0_13.9_20.7,Which object was put down by the person?,3,Interaction_T1_676,Interaction_T1,The shoe.,The dish.,The sandwich.,The broom.,The broom. 102,M98YV_5.1_11.6,Which object was eaten by the person?,0,Interaction_T1_697,Interaction_T1,The sandwich.,The medicine.,The clothes.,The window.,The sandwich. 103,ON2Z4_22.1_28,Which object was taken by the person?,1,Interaction_T1_711,Interaction_T1,The laptop.,The book.,The phone/camera.,The food.,The book. 104,ON2Z4_8.4_16.3,Which object was taken by the person?,0,Interaction_T1_713,Interaction_T1,The blanket.,The phone/camera.,The paper/notebook.,The pillow.,The blanket. 105,ON2Z4_18.4_23.7,Which object was closed by the person?,1,Interaction_T1_714,Interaction_T1,The door.,The book.,The window.,The laptop.,The book. 106,U5T4M_8.9_14.1,Which object was closed by the person?,2,Interaction_T1_739,Interaction_T1,The door.,The window.,The refrigerator.,The laptop.,The refrigerator. 107,U5T4M_13.4_21,Which object was sat at by the person?,2,Interaction_T1_743,Interaction_T1,The sofa/couch.,The floor.,The table.,The bed.,The table. 108,ZNQVC_24.4_32,Which object was taken by the person?,0,Interaction_T1_745,Interaction_T1,The shoe.,The food.,The book.,The pillow.,The shoe. 109,6ZWSU_11.6_19.8,Which object was put down by the person?,3,Interaction_T1_767,Interaction_T1,The pillow.,The food.,The cup/glass/bottle.,The shoe.,The shoe. 110,YOCI8_0_9,Which object was sat at by the person?,1,Interaction_T1_776,Interaction_T1,The sofa/couch.,The table.,The bed.,The floor.,The table. 111,YOCI8_1_8.8,Which object was tidied up by the person?,0,Interaction_T1_777,Interaction_T1,The table.,The closet/cabinet.,The blanket.,The towel.,The table. 112,G6ZOB_25.7_31.2,Which object was put down by the person?,2,Interaction_T1_818,Interaction_T1,The clothes.,The phone/camera.,The book.,The food.,The book. 113,03PRW_27.1_33.2,Which object was sat on by the person?,2,Interaction_T1_835,Interaction_T1,The table.,The bed.,The sofa/couch.,The floor.,The sofa/couch. 114,OVFR0_0_5.3,Which object was put down by the person?,1,Interaction_T1_846,Interaction_T1,The sandwich.,The book.,The food.,The paper/notebook.,The book. 115,JTBXI_31.3_36.5,Which object was taken by the person?,3,Interaction_T1_881,Interaction_T1,The phone/camera.,The book.,The cup/glass/bottle.,The pillow.,The pillow. 116,JTBXI_38_42,Which object was put down by the person?,3,Interaction_T1_882,Interaction_T1,The picture.,The cup/glass/bottle.,The food.,The pillow.,The pillow. 117,JTBXI_35.1_41.2,Which object was taken by the person?,3,Interaction_T1_883,Interaction_T1,The phone/camera.,The clothes.,The broom.,The pillow.,The pillow. 118,1HZGH_0_9.9,Which object was lied on by the person?,2,Interaction_T1_891,Interaction_T1,The bed.,The shoe.,The sofa/couch.,The floor.,The sofa/couch. 119,WXBEO_17.9_23.7,Which object was closed by the person?,2,Interaction_T1_918,Interaction_T1,The book.,The door.,The refrigerator.,The box.,The refrigerator. 120,358JF_4.4_9.7,Which object was put down by the person?,1,Interaction_T1_924,Interaction_T1,The shoe.,The cup/glass/bottle.,The book.,The laptop.,The cup/glass/bottle. 121,136V6_13.9_19.4,Which object was lied on by the person?,1,Interaction_T1_980,Interaction_T1,The mirror.,The sofa/couch.,The floor.,The bed.,The sofa/couch. 122,136V6_5_10.5,Which object was thrown by the person?,0,Interaction_T1_981,Interaction_T1,The shoe.,The pillow.,The towel.,The clothes.,The shoe. 123,136V6_30.2_35,Which object was taken by the person?,1,Interaction_T1_984,Interaction_T1,The sandwich.,The broom.,The box.,The blanket.,The broom. 124,XOOPP_6.7_15.2,Which object was put down by the person?,0,Interaction_T1_1005,Interaction_T1,The picture.,The phone/camera.,The box.,The blanket.,The picture. 125,OKXIQ_20.4_26,Which object was closed by the person?,3,Interaction_T1_1006,Interaction_T1,The book.,The door.,The box.,The closet/cabinet.,The closet/cabinet. 126,ZPRJH_0_4.5,Which object was sat on by the person?,1,Interaction_T1_1019,Interaction_T1,The bed.,The floor.,The table.,The sofa/couch.,The floor. 127,A33VQ_11.1_19.7,Which object was opened by the person?,1,Interaction_T1_1086,Interaction_T1,The window.,The refrigerator.,The closet/cabinet.,The book.,The refrigerator. 128,A33VQ_21_29.4,Which object was closed by the person?,1,Interaction_T1_1087,Interaction_T1,The door.,The refrigerator.,The book.,The box.,The refrigerator. 129,WM2J7_0_9,Which object was washed by the person?,2,Interaction_T1_1095,Interaction_T1,The dish.,The cup/glass/bottle.,The window.,The mirror.,The window. 130,R971Z_11.1_19.8,Which object was put down by the person?,2,Interaction_T1_1108,Interaction_T1,The cup/glass/bottle.,The towel.,The shoe.,The pillow.,The shoe. 131,2BO2G_28.5_35.7,Which object was put down by the person?,1,Interaction_T1_1109,Interaction_T1,The sandwich.,The picture.,The broom.,The paper/notebook.,The picture. 132,2BO2G_5.4_12,Which object was put down by the person?,0,Interaction_T1_1110,Interaction_T1,The box.,The cup/glass/bottle.,The food.,The paper/notebook.,The box. 133,2BO2G_17.3_26.6,Which object was put down by the person?,3,Interaction_T1_1111,Interaction_T1,The book.,The blanket.,The broom.,The picture.,The picture. 134,BVN7J_26.2_36,Which object was put down by the person?,0,Interaction_T1_1125,Interaction_T1,The dish.,The pillow.,The shoe.,The food.,The dish. 135,BVN7J_0_6.4,Which object was taken by the person?,3,Interaction_T1_1126,Interaction_T1,The book.,The food.,The shoe.,The dish.,The dish. 136,BVN7J_6.7_12.7,Which object was taken by the person?,0,Interaction_T1_1127,Interaction_T1,The dish.,The box.,The towel.,The laptop.,The dish. 137,BVN7J_17.8_23.7,Which object was taken by the person?,3,Interaction_T1_1128,Interaction_T1,The towel.,The clothes.,The paper/notebook.,The dish.,The dish. 138,OWUW8_0.3_4.6,Which object was thrown by the person?,1,Interaction_T1_1165,Interaction_T1,The shoe.,The clothes.,The book.,The food.,The clothes. 139,OWUW8_0_4.2,Which object was tidied up by the person?,2,Interaction_T1_1166,Interaction_T1,The table.,The towel.,The clothes.,The blanket.,The clothes. 140,E7GV1_0_3.1,Which object was taken by the person?,0,Interaction_T1_1168,Interaction_T1,The phone/camera.,The food.,The laptop.,The bag.,The phone/camera. 141,3JCEI_8.3_13,Which object was closed by the person?,2,Interaction_T1_1169,Interaction_T1,The door.,The closet/cabinet.,The laptop.,The box.,The laptop. 142,999BP_0_6.4,Which object was put down by the person?,2,Interaction_T1_1179,Interaction_T1,The dish.,The sandwich.,The bag.,The blanket.,The bag. 143,NTXXB_11_17.5,Which object was taken by the person?,1,Interaction_T1_1202,Interaction_T1,The paper/notebook.,The phone/camera.,The cup/glass/bottle.,The broom.,The phone/camera. 144,44PFW_17.6_24.2,Which object was opened by the person?,0,Interaction_T1_1219,Interaction_T1,The door.,The book.,The refrigerator.,The closet/cabinet.,The door. 145,44PFW_19.5_26,Which object was closed by the person?,0,Interaction_T1_1220,Interaction_T1,The door.,The refrigerator.,The laptop.,The window.,The door. 146,FO24A_0_6.9,Which object was sat at by the person?,2,Interaction_T1_1225,Interaction_T1,The floor.,The bed.,The table.,The sofa/couch.,The table. 147,Z7KC1_22.6_31,Which object was taken by the person?,0,Interaction_T1_1243,Interaction_T1,The broom.,The box.,The bag.,The paper/notebook.,The broom. 148,65UVU_5.1_9.3,Which object was put down by the person?,0,Interaction_T1_1246,Interaction_T1,The box.,The broom.,The book.,The bag.,The box. 149,65UVU_9.6_16.1,Which object was taken by the person?,0,Interaction_T1_1247,Interaction_T1,The box.,The shoe.,The broom.,The dish.,The box. 150,YX3V0_4.2_8.7,Which object was opened by the person?,0,Interaction_T1_1249,Interaction_T1,The book.,The door.,The closet/cabinet.,The refrigerator.,The book. 151,YX3V0_1.4_7.1,Which object was tidied up by the person?,1,Interaction_T1_1250,Interaction_T1,The broom.,The table.,The blanket.,The closet/cabinet.,The table. 152,5GP8M_6.5_14,Which object was put down by the person?,3,Interaction_T1_1255,Interaction_T1,The towel.,The food.,The book.,The phone/camera.,The phone/camera. 153,IOGR7_15.8_24.6,Which object was sat on by the person?,1,Interaction_T1_1265,Interaction_T1,The table.,The floor.,The bed.,The sofa/couch.,The floor. 154,BI6Y4_25.3_33.1,Which object was sat at by the person?,2,Interaction_T1_1272,Interaction_T1,The floor.,The sofa/couch.,The table.,The bed.,The table. 155,CVDZM_15.4_21.3,Which object was thrown by the person?,0,Interaction_T1_1276,Interaction_T1,The book.,The bag.,The towel.,The broom.,The book. 156,4BEZX_35.3_40,Which object was thrown by the person?,3,Interaction_T1_1289,Interaction_T1,The clothes.,The pillow.,The food.,The towel.,The towel. 157,4BEZX_35.3_40.6,Which object was put down by the person?,0,Interaction_T1_1291,Interaction_T1,The towel.,The box.,The shoe.,The dish.,The towel. 158,4BEZX_35.3_41.5,Which object was tidied up by the person?,3,Interaction_T1_1292,Interaction_T1,The blanket.,The clothes.,The closet/cabinet.,The towel.,The towel. 159,4BEZX_18.2_23.5,Which object was taken by the person?,2,Interaction_T1_1293,Interaction_T1,The phone/camera.,The food.,The towel.,The blanket.,The towel. 160,8XXNK_3_9,Which object was opened by the person?,1,Interaction_T1_1295,Interaction_T1,The refrigerator.,The box.,The window.,The door.,The box. 161,XKU2U_19.2_26.5,Which object was thrown by the person?,0,Interaction_T1_1300,Interaction_T1,The bag.,The box.,The broom.,The blanket.,The bag. 162,XKU2U_18.1_24.2,Which object was taken by the person?,1,Interaction_T1_1301,Interaction_T1,The laptop.,The bag.,The food.,The clothes.,The bag. 163,XKU2U_20.5_26.1,Which object was put down by the person?,0,Interaction_T1_1302,Interaction_T1,The bag.,The dish.,The food.,The sandwich.,The bag. 164,9YOI8_24.6_30.3,Which object was closed by the person?,2,Interaction_T1_1308,Interaction_T1,The closet/cabinet.,The refrigerator.,The window.,The door.,The window. 165,9YOI8_4.8_11.9,Which object was opened by the person?,3,Interaction_T1_1309,Interaction_T1,The door.,The laptop.,The book.,The window.,The window. 166,HOYUT_7.7_13.7,Which object was put down by the person?,1,Interaction_T1_1311,Interaction_T1,The book.,The towel.,The picture.,The pillow.,The towel. 167,HOYUT_15.6_20.1,Which object was taken by the person?,0,Interaction_T1_1312,Interaction_T1,The towel.,The blanket.,The clothes.,The cup/glass/bottle.,The towel. 168,HOYUT_9.1_13.9,Which object was thrown by the person?,3,Interaction_T1_1313,Interaction_T1,The clothes.,The pillow.,The food.,The towel.,The towel. 169,7TA23_14.6_21.4,Which object was put down by the person?,3,Interaction_T1_1336,Interaction_T1,The dish.,The box.,The sandwich.,The shoe.,The shoe. 170,0HGNK_7.3_13.1,Which object was put down by the person?,3,Interaction_T1_1359,Interaction_T1,The clothes.,The food.,The laptop.,The box.,The box. 171,4U8WV_8_14.9,Which object was thrown by the person?,0,Interaction_T1_1360,Interaction_T1,The towel.,The clothes.,The shoe.,The pillow.,The towel. 172,4U8WV_8.5_15.2,Which object was put down by the person?,0,Interaction_T1_1361,Interaction_T1,The towel.,The pillow.,The dish.,The picture.,The towel. 173,ICQUJ_13.8_22,Which object was eaten by the person?,2,Interaction_T1_1368,Interaction_T1,The medicine.,The door.,The sandwich.,The window.,The sandwich. 174,ICQUJ_15.9_21,Which object was put down by the person?,1,Interaction_T1_1369,Interaction_T1,The dish.,The sandwich.,The clothes.,The broom.,The sandwich. 175,ICQUJ_12.9_20.4,Which object was taken by the person?,1,Interaction_T1_1370,Interaction_T1,The phone/camera.,The sandwich.,The book.,The blanket.,The sandwich. 176,M6ERH_30_33,Which object was sat at by the person?,2,Interaction_T1_1375,Interaction_T1,The bed.,The sofa/couch.,The table.,The floor.,The table. 177,PRHR7_22.6_27.4,Which object was taken by the person?,3,Interaction_T1_1390,Interaction_T1,The box.,The cup/glass/bottle.,The book.,The towel.,The towel. 178,31LW5_4.1_10,Which object was lied on by the person?,0,Interaction_T1_1396,Interaction_T1,The bed.,The clothes.,The sofa/couch.,The floor.,The bed. 179,5W1Z7_0_8,Which object was lied on by the person?,0,Interaction_T1_1397,Interaction_T1,The bed.,The bag.,The sofa/couch.,The floor.,The bed. 180,S444Y_6.3_11.7,Which object was taken by the person?,2,Interaction_T1_1404,Interaction_T1,The towel.,The sandwich.,The bag.,The picture.,The bag. 181,S444Y_8.6_16,Which object was opened by the person?,2,Interaction_T1_1405,Interaction_T1,The refrigerator.,The door.,The bag.,The box.,The bag. 182,IAHN3_7.4_16,Which object was taken by the person?,0,Interaction_T1_1475,Interaction_T1,The phone/camera.,The clothes.,The laptop.,The book.,The phone/camera. 183,727IZ_14.9_19.6,Which object was sat at by the person?,3,Interaction_T1_1477,Interaction_T1,The sofa/couch.,The bed.,The floor.,The table.,The table. 184,727IZ_17.1_21.5,Which object was put down by the person?,0,Interaction_T1_1478,Interaction_T1,The paper/notebook.,The book.,The food.,The clothes.,The paper/notebook. 185,Q5YDL_13_17.8,Which object was closed by the person?,2,Interaction_T1_1510,Interaction_T1,The box.,The refrigerator.,The laptop.,The book.,The laptop. 186,Q5YDL_15.8_20.3,Which object was closed by the person?,3,Interaction_T1_1513,Interaction_T1,The door.,The closet/cabinet.,The window.,The laptop.,The laptop. 187,EEGGA_0_5.3,Which object was put down by the person?,0,Interaction_T1_1537,Interaction_T1,The blanket.,The paper/notebook.,The clothes.,The towel.,The blanket. 188,X8JVY_4.4_10.1,Which object was taken by the person?,2,Interaction_T1_1539,Interaction_T1,The phone/camera.,The shoe.,The book.,The clothes.,The book. 189,IIW0F_7_15.9,Which object was put down by the person?,3,Interaction_T1_1545,Interaction_T1,The towel.,The book.,The box.,The blanket.,The blanket. 190,IIW0F_7_14.3,Which object was tidied up by the person?,0,Interaction_T1_1546,Interaction_T1,The towel.,The closet/cabinet.,The broom.,The table.,The towel. 191,W0XPU_0_6.1,Which object was taken by the person?,2,Interaction_T1_1560,Interaction_T1,The dish.,The box.,The shoe.,The cup/glass/bottle.,The shoe. 192,W0XPU_20.9_26,Which object was eaten by the person?,3,Interaction_T1_1561,Interaction_T1,The door.,The medicine.,The paper/notebook.,The sandwich.,The sandwich. 193,W0XPU_0.3_6.5,Which object was put down by the person?,2,Interaction_T1_1562,Interaction_T1,The paper/notebook.,The dish.,The shoe.,The book.,The shoe. 194,W0XPU_17.3_24.3,Which object was taken by the person?,0,Interaction_T1_1563,Interaction_T1,The sandwich.,The paper/notebook.,The blanket.,The towel.,The sandwich. 195,DMO76_17.9_22.8,Which object was put down by the person?,3,Interaction_T1_1590,Interaction_T1,The cup/glass/bottle.,The broom.,The food.,The phone/camera.,The phone/camera. 196,QASDI_0_6,Which object was taken by the person?,3,Interaction_T1_1600,Interaction_T1,The cup/glass/bottle.,The towel.,The book.,The laptop.,The laptop. 197,AMT7R_4.3_12.5,Which object was put down by the person?,3,Interaction_T1_1607,Interaction_T1,The book.,The broom.,The bag.,The picture.,The picture. 198,AMT7R_0_4.9,Which object was taken by the person?,2,Interaction_T1_1608,Interaction_T1,The pillow.,The phone/camera.,The picture.,The shoe.,The picture. 199,SANRG_14.5_19.1,Which object was put down by the person?,1,Interaction_T1_1645,Interaction_T1,The phone/camera.,The blanket.,The book.,The food.,The blanket. 200,13IS9_18_23.5,Which object was closed by the person?,3,Interaction_T1_1656,Interaction_T1,The book.,The window.,The closet/cabinet.,The laptop.,The laptop. 201,13IS9_17_23.3,Which object was taken by the person?,3,Interaction_T1_1657,Interaction_T1,The sandwich.,The cup/glass/bottle.,The food.,The laptop.,The laptop. 202,YACA8_15.9_23.9,Which object was taken by the person?,1,Interaction_T1_1668,Interaction_T1,The sandwich.,The shoe.,The food.,The book.,The shoe. 203,VS7VS_17.6_25.5,Which object was thrown by the person?,2,Interaction_T1_1671,Interaction_T1,The pillow.,The bag.,The book.,The blanket.,The book. 204,VS7VS_12_19.1,Which object was put down by the person?,3,Interaction_T1_1672,Interaction_T1,The clothes.,The towel.,The blanket.,The book.,The book. 205,TIPFG_5.3_13.5,Which object was taken by the person?,0,Interaction_T1_1680,Interaction_T1,The shoe.,The box.,The dish.,The bag.,The shoe. 206,TIPFG_10.6_19,Which object was put down by the person?,0,Interaction_T1_1681,Interaction_T1,The box.,The dish.,The food.,The cup/glass/bottle.,The box. 207,TIPFG_10.5_16.3,Which object was closed by the person?,3,Interaction_T1_1682,Interaction_T1,The book.,The door.,The laptop.,The box.,The box. 208,RRQEV_0_8.5,Which object was tidied up by the person?,2,Interaction_T1_1684,Interaction_T1,The table.,The closet/cabinet.,The clothes.,The blanket.,The clothes. 209,RRQEV_0_3.9,Which object was taken by the person?,0,Interaction_T1_1685,Interaction_T1,The blanket.,The clothes.,The towel.,The cup/glass/bottle.,The blanket. 210,3T785_14.1_20.3,Which object was taken by the person?,0,Interaction_T1_1710,Interaction_T1,The laptop.,The bag.,The broom.,The blanket.,The laptop. 211,3T785_16.1_24.1,Which object was put down by the person?,3,Interaction_T1_1711,Interaction_T1,The book.,The pillow.,The towel.,The laptop.,The laptop. 212,3T785_2.3_7.2,Which object was taken by the person?,0,Interaction_T1_1712,Interaction_T1,The clothes.,The shoe.,The food.,The phone/camera.,The clothes. 213,U33ZS_7.6_14.8,Which object was opened by the person?,1,Interaction_T1_1714,Interaction_T1,The box.,The laptop.,The book.,The window.,The laptop. 214,L29HE_9.3_16.4,Which object was taken by the person?,0,Interaction_T1_1743,Interaction_T1,The broom.,The food.,The bag.,The sandwich.,The broom. 215,V3SOF_32.5_38.9,Which object was closed by the person?,2,Interaction_T1_1761,Interaction_T1,The closet/cabinet.,The box.,The refrigerator.,The book.,The refrigerator. 216,V3SOF_0.4_8.2,Which object was put down by the person?,3,Interaction_T1_1764,Interaction_T1,The food.,The picture.,The blanket.,The dish.,The dish. 217,V3SOF_5.8_15.3,Which object was put down by the person?,2,Interaction_T1_1765,Interaction_T1,The laptop.,The cup/glass/bottle.,The dish.,The phone/camera.,The dish. 218,ZVRBL_0_6.1,Which object was tidied up by the person?,2,Interaction_T1_1780,Interaction_T1,The towel.,The blanket.,The table.,The clothes.,The table. 219,HT9YB_47_53,Which object was taken by the person?,1,Interaction_T1_1810,Interaction_T1,The paper/notebook.,The phone/camera.,The box.,The clothes.,The phone/camera. 220,LUQWY_24.8_33.1,Which object was closed by the person?,3,Interaction_T1_1811,Interaction_T1,The closet/cabinet.,The refrigerator.,The box.,The laptop.,The laptop. 221,LUQWY_0.9_6.6,Which object was taken by the person?,0,Interaction_T1_1812,Interaction_T1,The laptop.,The sandwich.,The shoe.,The pillow.,The laptop. 222,LD6TD_12.2_18.3,Which object was closed by the person?,1,Interaction_T1_1826,Interaction_T1,The window.,The book.,The closet/cabinet.,The box.,The book. 223,RQRRD_7.5_12.9,Which object was closed by the person?,2,Interaction_T1_1872,Interaction_T1,The door.,The window.,The box.,The closet/cabinet.,The box. 224,RQRRD_5.9_11.1,Which object was opened by the person?,3,Interaction_T1_1873,Interaction_T1,The book.,The door.,The refrigerator.,The box.,The box. 225,3CLVI_16.8_24.3,Which object was tidied up by the person?,0,Interaction_T1_1886,Interaction_T1,The closet/cabinet.,The table.,The blanket.,The clothes.,The closet/cabinet. 226,J7BOV_4.6_11.9,Which object was put down by the person?,3,Interaction_T1_1897,Interaction_T1,The laptop.,The food.,The clothes.,The phone/camera.,The phone/camera. 227,M8OYC_18.1_27.1,Which object was tidied up by the person?,0,Interaction_T1_1911,Interaction_T1,The closet/cabinet.,The blanket.,The clothes.,The broom.,The closet/cabinet. 228,UY0SK_3.8_8.6,Which object was taken by the person?,2,Interaction_T1_1941,Interaction_T1,The box.,The bag.,The paper/notebook.,The cup/glass/bottle.,The paper/notebook. 229,UY0SK_10.9_16.5,Which object was put down by the person?,1,Interaction_T1_1942,Interaction_T1,The clothes.,The paper/notebook.,The book.,The food.,The paper/notebook. 230,DPLMM_7.1_13.2,Which object was put down by the person?,1,Interaction_T1_1943,Interaction_T1,The paper/notebook.,The pillow.,The dish.,The blanket.,The pillow. 231,DPLMM_4.1_13.6,Which object was lied on by the person?,0,Interaction_T1_1944,Interaction_T1,The floor.,The bed.,The broom.,The sofa/couch.,The floor. 232,DPLMM_0_8.4,Which object was sat on by the person?,2,Interaction_T1_1945,Interaction_T1,The table.,The bed.,The floor.,The sofa/couch.,The floor. 233,DPLMM_7.5_12.8,Which object was taken by the person?,2,Interaction_T1_1946,Interaction_T1,The laptop.,The bag.,The pillow.,The phone/camera.,The pillow. 234,HXUI5_34_39,Which object was taken by the person?,0,Interaction_T1_1951,Interaction_T1,The phone/camera.,The clothes.,The sandwich.,The blanket.,The phone/camera. 235,HXUI5_11.9_18.3,Which object was taken by the person?,3,Interaction_T1_1952,Interaction_T1,The laptop.,The cup/glass/bottle.,The food.,The clothes.,The clothes. 236,1TIAK_8.3_12.5,Which object was taken by the person?,3,Interaction_T1_1959,Interaction_T1,The cup/glass/bottle.,The laptop.,The bag.,The paper/notebook.,The paper/notebook. 237,3B97C_12_18.7,Which object was put down by the person?,0,Interaction_T1_1962,Interaction_T1,The laptop.,The clothes.,The cup/glass/bottle.,The phone/camera.,The laptop. 238,UYZKX_21.2_26.9,Which object was thrown by the person?,3,Interaction_T1_1966,Interaction_T1,The box.,The shoe.,The pillow.,The blanket.,The blanket. 239,74GN1_25.9_33.6,Which object was put down by the person?,0,Interaction_T1_1968,Interaction_T1,The food.,The clothes.,The dish.,The laptop.,The food. 240,W7CR5_4.2_11.2,Which object was thrown by the person?,0,Interaction_T1_1976,Interaction_T1,The towel.,The broom.,The pillow.,The box.,The towel. 241,WP5RH_6.8_16.1,Which object was taken by the person?,3,Interaction_T1_1987,Interaction_T1,The laptop.,The towel.,The book.,The bag.,The bag. 242,K9UXS_17.6_24.8,Which object was taken by the person?,2,Interaction_T1_2000,Interaction_T1,The food.,The dish.,The blanket.,The cup/glass/bottle.,The blanket. 243,K9UXS_22_31,Which object was tidied up by the person?,3,Interaction_T1_2001,Interaction_T1,The table.,The clothes.,The towel.,The blanket.,The blanket. 244,FQGW4_1.4_8.4,Which object was thrown by the person?,1,Interaction_T1_2041,Interaction_T1,The broom.,The shoe.,The food.,The blanket.,The shoe. 245,D1NT7_10.8_18.6,Which object was put down by the person?,2,Interaction_T1_2063,Interaction_T1,The food.,The clothes.,The box.,The shoe.,The box. 246,D1NT7_9.4_14.3,Which object was closed by the person?,2,Interaction_T1_2064,Interaction_T1,The door.,The laptop.,The box.,The closet/cabinet.,The box. 247,1FIGA_9.6_15.1,Which object was closed by the person?,1,Interaction_T1_2118,Interaction_T1,The door.,The box.,The book.,The refrigerator.,The box. 248,1FIGA_15.5_23.7,Which object was put down by the person?,3,Interaction_T1_2119,Interaction_T1,The clothes.,The food.,The phone/camera.,The book.,The book. 249,W8XQ9_0.2_5.8,Which object was tidied up by the person?,2,Interaction_T1_2122,Interaction_T1,The towel.,The clothes.,The table.,The blanket.,The table. 250,S673O_0_3.2,Which object was lied on by the person?,0,Interaction_T1_2169,Interaction_T1,The sofa/couch.,The bed.,The floor.,The paper/notebook.,The sofa/couch. 251,DWHPO_27.4_31,Which object was taken by the person?,0,Interaction_T1_2183,Interaction_T1,The phone/camera.,The paper/notebook.,The book.,The cup/glass/bottle.,The phone/camera. 252,DWHPO_15.7_21.3,Which object was put down by the person?,2,Interaction_T1_2184,Interaction_T1,The dish.,The cup/glass/bottle.,The phone/camera.,The towel.,The phone/camera. 253,2PREF_0_6,Which object was put down by the person?,1,Interaction_T1_2210,Interaction_T1,The shoe.,The dish.,The clothes.,The sandwich.,The dish. 254,2PREF_10.1_15.2,Which object was closed by the person?,3,Interaction_T1_2211,Interaction_T1,The door.,The laptop.,The book.,The closet/cabinet.,The closet/cabinet. 255,T1CQE_21.4_29.9,Which object was taken by the person?,3,Interaction_T1_2219,Interaction_T1,The cup/glass/bottle.,The clothes.,The paper/notebook.,The laptop.,The laptop. 256,T1CQE_30.9_37,Which object was opened by the person?,2,Interaction_T1_2220,Interaction_T1,The bag.,The window.,The laptop.,The door.,The laptop. 257,2WGSN_14_23.3,Which object was taken by the person?,3,Interaction_T1_2223,Interaction_T1,The pillow.,The clothes.,The blanket.,The towel.,The towel. 258,KV99H_1_6,Which object was taken by the person?,1,Interaction_T1_2225,Interaction_T1,The blanket.,The bag.,The dish.,The clothes.,The bag. 259,KV99H_8_13,Which object was taken by the person?,0,Interaction_T1_2226,Interaction_T1,The shoe.,The blanket.,The box.,The laptop.,The shoe. 260,EDVAM_10.2_16,Which object was closed by the person?,3,Interaction_T1_2227,Interaction_T1,The closet/cabinet.,The laptop.,The door.,The window.,The window. 261,EDVAM_0_7,Which object was sat on by the person?,1,Interaction_T1_2228,Interaction_T1,The table.,The sofa/couch.,The floor.,The bed.,The sofa/couch. 262,TJBGM_15.6_20.8,Which object was taken by the person?,3,Interaction_T1_2269,Interaction_T1,The box.,The bag.,The food.,The book.,The book. 263,YMGGV_11.7_17.9,Which object was taken by the person?,2,Interaction_T1_2320,Interaction_T1,The picture.,The book.,The blanket.,The laptop.,The blanket. 264,YMGGV_0_5.7,Which object was sat on by the person?,3,Interaction_T1_2321,Interaction_T1,The bed.,The floor.,The table.,The sofa/couch.,The sofa/couch. 265,C5BMA_29_34,Which object was put down by the person?,1,Interaction_T1_2322,Interaction_T1,The food.,The sandwich.,The towel.,The picture.,The sandwich. 266,C5BMA_28.8_34,Which object was thrown by the person?,3,Interaction_T1_2323,Interaction_T1,The pillow.,The blanket.,The book.,The food.,The food. 267,LW5O6_9.5_16,Which object was taken by the person?,3,Interaction_T1_2326,Interaction_T1,The food.,The cup/glass/bottle.,The blanket.,The bag.,The bag. 268,CXSYS_5.4_10.1,Which object was put down by the person?,3,Interaction_T1_2331,Interaction_T1,The towel.,The pillow.,The cup/glass/bottle.,The bag.,The bag. 269,MD6P2_0_8.8,Which object was eaten by the person?,0,Interaction_T1_2334,Interaction_T1,The medicine.,The towel.,The pillow.,The sandwich.,The medicine. 270,MD6P2_5_13.4,Which object was opened by the person?,3,Interaction_T1_2335,Interaction_T1,The door.,The book.,The laptop.,The box.,The box. 271,HOI88_11.7_21.6,Which object was sat on by the person?,1,Interaction_T1_2337,Interaction_T1,The table.,The sofa/couch.,The bed.,The floor.,The sofa/couch. 272,AEZDA_7.3_13,Which object was thrown by the person?,1,Interaction_T1_2338,Interaction_T1,The towel.,The bag.,The food.,The shoe.,The bag. 273,AEZDA_5.5_13.6,Which object was put down by the person?,2,Interaction_T1_2339,Interaction_T1,The pillow.,The paper/notebook.,The bag.,The food.,The bag. 274,0MFAM_22.9_28.3,Which object was taken by the person?,3,Interaction_T1_2345,Interaction_T1,The box.,The book.,The cup/glass/bottle.,The broom.,The broom. 275,WOD0G_10.8_20.2,Which object was put down by the person?,3,Interaction_T1_2354,Interaction_T1,The dish.,The food.,The cup/glass/bottle.,The towel.,The towel. 276,WXUZK_1.9_11.1,Which object was thrown by the person?,0,Interaction_T1_2357,Interaction_T1,The clothes.,The bag.,The book.,The shoe.,The clothes. 277,GXIWH_7.5_16.1,Which object was taken by the person?,1,Interaction_T1_2359,Interaction_T1,The dish.,The cup/glass/bottle.,The bag.,The clothes.,The cup/glass/bottle. 278,FCBEQ_4.6_13,Which object was put down by the person?,0,Interaction_T1_2382,Interaction_T1,The food.,The shoe.,The bag.,The clothes.,The food. 279,NM65M_4.3_10.4,Which object was taken by the person?,2,Interaction_T1_2407,Interaction_T1,The phone/camera.,The food.,The pillow.,The laptop.,The pillow. 280,NM65M_12.1_16.9,Which object was thrown by the person?,0,Interaction_T1_2408,Interaction_T1,The blanket.,The clothes.,The shoe.,The pillow.,The blanket. 281,NM65M_12.6_17,Which object was put down by the person?,2,Interaction_T1_2409,Interaction_T1,The book.,The dish.,The blanket.,The cup/glass/bottle.,The blanket. 282,RXLKF_1.8_9.4,Which object was sat on by the person?,3,Interaction_T1_2413,Interaction_T1,The bed.,The table.,The floor.,The sofa/couch.,The sofa/couch. 283,19PNV_14.7_21.3,Which object was taken by the person?,3,Interaction_T1_2421,Interaction_T1,The bag.,The laptop.,The pillow.,The blanket.,The blanket. 284,NVGDG_9.8_16.8,Which object was sat on by the person?,3,Interaction_T1_2424,Interaction_T1,The floor.,The bed.,The table.,The sofa/couch.,The sofa/couch. 285,NVGDG_13_17.3,Which object was taken by the person?,3,Interaction_T1_2425,Interaction_T1,The broom.,The clothes.,The towel.,The blanket.,The blanket. 286,LOSLI_7.8_14,Which object was put down by the person?,3,Interaction_T1_2428,Interaction_T1,The phone/camera.,The picture.,The cup/glass/bottle.,The clothes.,The clothes. 287,LOSLI_5.6_14.1,Which object was taken by the person?,0,Interaction_T1_2429,Interaction_T1,The clothes.,The sandwich.,The dish.,The cup/glass/bottle.,The clothes. 288,24XHS_20.3_26.3,Which object was opened by the person?,1,Interaction_T1_2430,Interaction_T1,The door.,The refrigerator.,The bag.,The book.,The refrigerator. 289,24XHS_27.1_32.5,Which object was closed by the person?,0,Interaction_T1_2431,Interaction_T1,The refrigerator.,The box.,The closet/cabinet.,The door.,The refrigerator. 290,4JWAH_12.9_18.4,Which object was taken by the person?,3,Interaction_T1_2447,Interaction_T1,The pillow.,The cup/glass/bottle.,The bag.,The phone/camera.,The phone/camera. 291,YUEB9_0_9.1,Which object was opened by the person?,3,Interaction_T1_2448,Interaction_T1,The door.,The window.,The laptop.,The bag.,The bag. 292,K71S1_0_5.6,Which object was opened by the person?,2,Interaction_T1_2449,Interaction_T1,The window.,The closet/cabinet.,The box.,The refrigerator.,The box. 293,K71S1_1.3_9.3,Which object was put down by the person?,0,Interaction_T1_2450,Interaction_T1,The box.,The cup/glass/bottle.,The bag.,The laptop.,The box. 294,K71S1_11.8_21.5,Which object was put down by the person?,3,Interaction_T1_2452,Interaction_T1,The shoe.,The dish.,The cup/glass/bottle.,The blanket.,The blanket. 295,K71S1_10.1_14.9,Which object was taken by the person?,3,Interaction_T1_2453,Interaction_T1,The picture.,The clothes.,The food.,The blanket.,The blanket. 296,K71S1_12.2_20.9,Which object was tidied up by the person?,0,Interaction_T1_2454,Interaction_T1,The clothes.,The table.,The towel.,The broom.,The clothes. 297,OA9W5_9_15.8,Which object was taken by the person?,1,Interaction_T1_2456,Interaction_T1,The food.,The book.,The cup/glass/bottle.,The picture.,The book. 298,JMA1R_4.1_9.5,Which object was put down by the person?,2,Interaction_T1_2477,Interaction_T1,The book.,The cup/glass/bottle.,The towel.,The broom.,The towel. 299,JMA1R_1.7_7,Which object was taken by the person?,0,Interaction_T1_2478,Interaction_T1,The towel.,The food.,The cup/glass/bottle.,The blanket.,The towel. 300,JOLLV_0_7.7,Which object was sat on by the person?,3,Interaction_T1_2495,Interaction_T1,The table.,The bed.,The floor.,The sofa/couch.,The sofa/couch. 301,V3RAX_14.8_24.4,Which object was tidied up by the person?,1,Interaction_T1_2507,Interaction_T1,The blanket.,The clothes.,The table.,The closet/cabinet.,The clothes. 302,V3RAX_7.1_15.6,Which object was thrown by the person?,1,Interaction_T1_2509,Interaction_T1,The broom.,The blanket.,The food.,The pillow.,The blanket. 303,FM5D5_11_18.1,Which object was tidied up by the person?,3,Interaction_T1_2516,Interaction_T1,The table.,The blanket.,The closet/cabinet.,The clothes.,The clothes. 304,8LAK1_4.4_10.4,Which object was put down by the person?,2,Interaction_T1_2527,Interaction_T1,The broom.,The cup/glass/bottle.,The food.,The clothes.,The food. 305,WR2Q2_8.6_16.6,Which object was eaten by the person?,1,Interaction_T1_2532,Interaction_T1,The bed.,The sandwich.,The medicine.,The book.,The sandwich. 306,IWF0U_0.8_7.5,Which object was tidied up by the person?,3,Interaction_T1_2552,Interaction_T1,The table.,The closet/cabinet.,The towel.,The blanket.,The blanket. 307,564DX_19.2_23.9,Which object was put down by the person?,3,Interaction_T1_2596,Interaction_T1,The broom.,The picture.,The sandwich.,The cup/glass/bottle.,The cup/glass/bottle. 308,78R4Y_11_15.4,Which object was thrown by the person?,1,Interaction_T1_2599,Interaction_T1,The towel.,The bag.,The shoe.,The clothes.,The bag. 309,78R4Y_9.8_15.6,Which object was put down by the person?,3,Interaction_T1_2600,Interaction_T1,The box.,The shoe.,The food.,The bag.,The bag. 310,STAFD_3.3_12,Which object was eaten by the person?,1,Interaction_T1_2604,Interaction_T1,The picture.,The sandwich.,The bag.,The medicine.,The sandwich. 311,YFI1M_20.2_26.1,Which object was taken by the person?,0,Interaction_T1_2616,Interaction_T1,The phone/camera.,The clothes.,The dish.,The paper/notebook.,The phone/camera. 312,0O36O_7.3_14.5,Which object was closed by the person?,0,Interaction_T1_2618,Interaction_T1,The box.,The door.,The laptop.,The refrigerator.,The box. 313,P2HZG_4_10.2,Which object was closed by the person?,2,Interaction_T1_2641,Interaction_T1,The door.,The box.,The laptop.,The refrigerator.,The laptop. 314,P2HZG_0_9.3,Which object was sat at by the person?,2,Interaction_T1_2644,Interaction_T1,The floor.,The bed.,The table.,The sofa/couch.,The table. 315,2Q3ZJ_19.5_25.8,Which object was opened by the person?,2,Interaction_T1_2682,Interaction_T1,The laptop.,The window.,The closet/cabinet.,The bag.,The closet/cabinet. 316,2Q3ZJ_20.3_29.4,Which object was closed by the person?,0,Interaction_T1_2683,Interaction_T1,The closet/cabinet.,The refrigerator.,The box.,The door.,The closet/cabinet. 317,MFQ5S_0_5.3,Which object was opened by the person?,2,Interaction_T1_2692,Interaction_T1,The box.,The bag.,The closet/cabinet.,The door.,The closet/cabinet. 318,MFQ5S_6_12.8,Which object was closed by the person?,1,Interaction_T1_2693,Interaction_T1,The refrigerator.,The closet/cabinet.,The box.,The door.,The closet/cabinet. 319,PDRVY_9_16.4,Which object was taken by the person?,3,Interaction_T1_2694,Interaction_T1,The sandwich.,The clothes.,The broom.,The bag.,The bag. 320,PDRVY_22.7_27.3,Which object was thrown by the person?,1,Interaction_T1_2695,Interaction_T1,The box.,The bag.,The pillow.,The clothes.,The bag. 321,5CZRC_3_11.4,Which object was taken by the person?,2,Interaction_T1_2696,Interaction_T1,The laptop.,The paper/notebook.,The cup/glass/bottle.,The broom.,The cup/glass/bottle. 322,E6PSM_23.2_28.3,Which object was thrown by the person?,1,Interaction_T1_2699,Interaction_T1,The pillow.,The box.,The bag.,The blanket.,The box. 323,TAZGF_7.3_13,Which object was sat on by the person?,3,Interaction_T1_2718,Interaction_T1,The bed.,The floor.,The table.,The sofa/couch.,The sofa/couch. 324,TAZGF_7.36_13,Which object was sat at by the person?,1,Interaction_T1_2719,Interaction_T1,The sofa/couch.,The table.,The floor.,The bed.,The table. 325,BN4VH_14.3_18.9,Which object was taken by the person?,2,Interaction_T1_2720,Interaction_T1,The paper/notebook.,The cup/glass/bottle.,The dish.,The phone/camera.,The dish. 326,IS7PL_0_6.6,Which object was eaten by the person?,0,Interaction_T1_2721,Interaction_T1,The sandwich.,The door.,The medicine.,The dish.,The sandwich. 327,01ZWG_4.9_11,Which object was opened by the person?,3,Interaction_T1_2724,Interaction_T1,The refrigerator.,The bag.,The closet/cabinet.,The laptop.,The laptop. 328,01ZWG_7.2_13.5,Which object was sat at by the person?,1,Interaction_T1_2725,Interaction_T1,The sofa/couch.,The table.,The bed.,The floor.,The table. 329,7UV4O_5.4_13.5,Which object was put down by the person?,1,Interaction_T1_2727,Interaction_T1,The dish.,The pillow.,The book.,The shoe.,The pillow. 330,7UV4O_4.7_13.7,Which object was thrown by the person?,2,Interaction_T1_2728,Interaction_T1,The shoe.,The clothes.,The pillow.,The food.,The pillow. 331,IO712_0_5.9,Which object was closed by the person?,3,Interaction_T1_2750,Interaction_T1,The book.,The laptop.,The box.,The window.,The window. 332,IO712_3.7_11.6,Which object was sat on by the person?,3,Interaction_T1_2753,Interaction_T1,The table.,The bed.,The sofa/couch.,The floor.,The floor. 333,KVYOZ_1.2_6,Which object was put down by the person?,3,Interaction_T1_2810,Interaction_T1,The dish.,The cup/glass/bottle.,The clothes.,The picture.,The picture. 334,FL4NG_23.3_28,Which object was put down by the person?,1,Interaction_T1_2815,Interaction_T1,The cup/glass/bottle.,The clothes.,The paper/notebook.,The sandwich.,The clothes. 335,FL4NG_23_28,Which object was thrown by the person?,0,Interaction_T1_2816,Interaction_T1,The clothes.,The bag.,The blanket.,The shoe.,The clothes. 336,V8JOH_0_8.7,Which object was eaten by the person?,3,Interaction_T1_2818,Interaction_T1,The sandwich.,The broom.,The phone/camera.,The medicine.,The medicine. 337,A015X_17_21.6,Which object was taken by the person?,0,Interaction_T1_2819,Interaction_T1,The paper/notebook.,The cup/glass/bottle.,The book.,The clothes.,The paper/notebook. 338,D67MQ_28.6_33,Which object was sat on by the person?,0,Interaction_T1_2833,Interaction_T1,The floor.,The table.,The sofa/couch.,The bed.,The floor. 339,SHVVB_15.7_20.5,Which object was put down by the person?,0,Interaction_T1_2844,Interaction_T1,The paper/notebook.,The blanket.,The laptop.,The cup/glass/bottle.,The paper/notebook. 340,FM078_12.3_19.4,Which object was put down by the person?,3,Interaction_T1_2852,Interaction_T1,The sandwich.,The laptop.,The pillow.,The box.,The box. 341,FM078_0.9_7.3,Which object was put down by the person?,3,Interaction_T1_2855,Interaction_T1,The bag.,The cup/glass/bottle.,The pillow.,The dish.,The dish. 342,41EQS_0_7.9,Which object was tidied up by the person?,3,Interaction_T1_2856,Interaction_T1,The towel.,The table.,The clothes.,The blanket.,The blanket. 343,41EQS_3.6_8.7,Which object was put down by the person?,2,Interaction_T1_2857,Interaction_T1,The clothes.,The cup/glass/bottle.,The blanket.,The book.,The blanket. 344,6PL9Z_0_6.4,Which object was sat on by the person?,3,Interaction_T1_2871,Interaction_T1,The floor.,The table.,The bed.,The sofa/couch.,The sofa/couch. 345,DRGKV_12.4_17.3,Which object was thrown by the person?,1,Interaction_T1_2892,Interaction_T1,The pillow.,The clothes.,The towel.,The bag.,The clothes. 346,ICL1M_16.1_22.1,Which object was closed by the person?,3,Interaction_T1_2909,Interaction_T1,The laptop.,The closet/cabinet.,The refrigerator.,The book.,The book. 347,LHMMJ_14.7_22.3,Which object was tidied up by the person?,0,Interaction_T1_2915,Interaction_T1,The closet/cabinet.,The clothes.,The blanket.,The table.,The closet/cabinet. 348,X5YL3_13_19,Which object was closed by the person?,0,Interaction_T1_2931,Interaction_T1,The refrigerator.,The window.,The door.,The closet/cabinet.,The refrigerator. 349,57A1A_11_16,Which object was thrown by the person?,1,Interaction_T1_2938,Interaction_T1,The bag.,The broom.,The blanket.,The shoe.,The broom. 350,J867Z_13.3_20,Which object was thrown by the person?,0,Interaction_T1_2941,Interaction_T1,The book.,The broom.,The food.,The shoe.,The book. 351,DHPNN_8.8_15.5,Which object was thrown by the person?,1,Interaction_T1_2945,Interaction_T1,The pillow.,The food.,The towel.,The clothes.,The food. 352,RJIEO_4.8_9.9,Which object was put down by the person?,0,Interaction_T1_2955,Interaction_T1,The bag.,The picture.,The shoe.,The dish.,The bag. 353,5OIQ7_0_8.7,Which object was lied on by the person?,3,Interaction_T1_2964,Interaction_T1,The sofa/couch.,The window.,The floor.,The bed.,The bed. 354,432NL_25.1_32,Which object was eaten by the person?,1,Interaction_T1_2980,Interaction_T1,The sandwich.,The medicine.,The sofa/couch.,The clothes.,The medicine. 355,432NL_13.6_20.3,Which object was closed by the person?,2,Interaction_T1_2981,Interaction_T1,The door.,The closet/cabinet.,The refrigerator.,The laptop.,The refrigerator. 356,432NL_2.1_7.5,Which object was opened by the person?,1,Interaction_T1_2982,Interaction_T1,The bag.,The refrigerator.,The door.,The laptop.,The refrigerator. 357,JL8XT_24.1_34,Which object was washed by the person?,3,Interaction_T1_2996,Interaction_T1,The window.,The clothes.,The dish.,The mirror.,The mirror. 358,JL8XT_24.6_34,Which object was tidied up by the person?,3,Interaction_T1_2997,Interaction_T1,The table.,The towel.,The broom.,The closet/cabinet.,The closet/cabinet. 359,JVXMI_0.1_4.7,Which object was taken by the person?,2,Interaction_T1_2998,Interaction_T1,The paper/notebook.,The dish.,The phone/camera.,The cup/glass/bottle.,The phone/camera. 360,LH6LE_15.2_22,Which object was put down by the person?,3,Interaction_T1_3000,Interaction_T1,The cup/glass/bottle.,The clothes.,The blanket.,The dish.,The dish. 361,LH6LE_5.6_12.2,Which object was taken by the person?,2,Interaction_T1_3002,Interaction_T1,The food.,The cup/glass/bottle.,The dish.,The phone/camera.,The dish. 362,1RNK6_7.2_12.5,Which object was taken by the person?,3,Interaction_T1_3022,Interaction_T1,The phone/camera.,The clothes.,The dish.,The box.,The box. 363,1RNK6_6.7_14,Which object was tidied up by the person?,0,Interaction_T1_3023,Interaction_T1,The closet/cabinet.,The table.,The broom.,The clothes.,The closet/cabinet. 364,OUAIS_23.1_29,Which object was thrown by the person?,2,Interaction_T1_3040,Interaction_T1,The clothes.,The towel.,The pillow.,The bag.,The pillow. 365,NVBBD_10.5_17.5,Which object was put down by the person?,3,Interaction_T1_3044,Interaction_T1,The picture.,The laptop.,The box.,The shoe.,The shoe. 366,2LCLG_11_16.4,Which object was taken by the person?,0,Interaction_T1_3054,Interaction_T1,The paper/notebook.,The cup/glass/bottle.,The food.,The box.,The paper/notebook. 367,TZL6H_24_32,Which object was washed by the person?,3,Interaction_T1_3058,Interaction_T1,The table.,The cup/glass/bottle.,The clothes.,The mirror.,The mirror. 368,WAOE7_6.4_13.3,Which object was thrown by the person?,0,Interaction_T1_3089,Interaction_T1,The food.,The bag.,The shoe.,The box.,The food. 369,D6D85_21.8_27.1,Which object was taken by the person?,3,Interaction_T1_3097,Interaction_T1,The book.,The phone/camera.,The pillow.,The sandwich.,The sandwich. 370,D6D85_1.9_6.7,Which object was put down by the person?,2,Interaction_T1_3098,Interaction_T1,The phone/camera.,The pillow.,The sandwich.,The clothes.,The sandwich. 371,U6L1X_1.3_7.6,Which object was taken by the person?,3,Interaction_T1_3101,Interaction_T1,The towel.,The paper/notebook.,The phone/camera.,The broom.,The broom. 372,U6L1X_19.8_24.6,Which object was put down by the person?,3,Interaction_T1_3102,Interaction_T1,The dish.,The phone/camera.,The paper/notebook.,The broom.,The broom. 373,H8UJ3_15.1_23.1,Which object was opened by the person?,0,Interaction_T1_3112,Interaction_T1,The book.,The window.,The closet/cabinet.,The box.,The book. 374,CH8XJ_13.5_20.1,Which object was opened by the person?,2,Interaction_T1_3124,Interaction_T1,The bag.,The door.,The closet/cabinet.,The box.,The closet/cabinet. 375,CH8XJ_16.9_25.4,Which object was thrown by the person?,2,Interaction_T1_3125,Interaction_T1,The pillow.,The box.,The shoe.,The clothes.,The shoe. 376,CH8XJ_17.2_25,Which object was put down by the person?,1,Interaction_T1_3126,Interaction_T1,The towel.,The shoe.,The box.,The clothes.,The shoe. 377,2NV6L_17.8_27.8,Which object was taken by the person?,2,Interaction_T1_3146,Interaction_T1,The laptop.,The clothes.,The pillow.,The broom.,The pillow. 378,2NV6L_9.6_18.1,Which object was put down by the person?,2,Interaction_T1_3147,Interaction_T1,The picture.,The cup/glass/bottle.,The bag.,The food.,The bag. 379,MUO4G_4.7_12.8,Which object was opened by the person?,2,Interaction_T1_3198,Interaction_T1,The door.,The laptop.,The refrigerator.,The bag.,The refrigerator. 380,MUO4G_0_6.7,Which object was sat on by the person?,0,Interaction_T1_3199,Interaction_T1,The table.,The sofa/couch.,The bed.,The floor.,The table. 381,RRZU3_3.3_11,Which object was opened by the person?,1,Interaction_T1_3210,Interaction_T1,The refrigerator.,The laptop.,The door.,The closet/cabinet.,The laptop. 382,RRZU3_16.9_22.2,Which object was put down by the person?,0,Interaction_T1_3211,Interaction_T1,The dish.,The bag.,The phone/camera.,The food.,The dish. 383,0IAGO_3.7_12.5,Which object was put down by the person?,2,Interaction_T1_3241,Interaction_T1,The book.,The towel.,The shoe.,The pillow.,The shoe. 384,5MF9Y_14.8_20.3,Which object was thrown by the person?,3,Interaction_T1_3243,Interaction_T1,The box.,The towel.,The pillow.,The food.,The food. 385,5MF9Y_13.6_19.8,Which object was put down by the person?,2,Interaction_T1_3244,Interaction_T1,The dish.,The food.,The broom.,The paper/notebook.,The broom. 386,5MF9Y_7.3_12.1,Which object was put down by the person?,2,Interaction_T1_3246,Interaction_T1,The broom.,The bag.,The paper/notebook.,The picture.,The paper/notebook. 387,2544C_0_6,Which object was thrown by the person?,1,Interaction_T1_3310,Interaction_T1,The book.,The towel.,The box.,The clothes.,The towel. 388,2544C_10.6_15.8,Which object was put down by the person?,1,Interaction_T1_3311,Interaction_T1,The phone/camera.,The towel.,The sandwich.,The broom.,The towel. 389,NCJ1X_7.4_13.2,Which object was taken by the person?,0,Interaction_T1_3333,Interaction_T1,The clothes.,The laptop.,The food.,The cup/glass/bottle.,The clothes. 390,NCJ1X_12.3_17.8,Which object was put down by the person?,2,Interaction_T1_3334,Interaction_T1,The sandwich.,The pillow.,The clothes.,The cup/glass/bottle.,The clothes. 391,ANA5N_14.8_21.8,Which object was put down by the person?,1,Interaction_T1_3357,Interaction_T1,The dish.,The towel.,The pillow.,The food.,The towel. 392,0Z36L_28.7_32,Which object was put down by the person?,1,Interaction_T1_3359,Interaction_T1,The towel.,The bag.,The sandwich.,The dish.,The bag. 393,C6LW1_7.6_12.4,Which object was taken by the person?,1,Interaction_T1_3363,Interaction_T1,The cup/glass/bottle.,The phone/camera.,The shoe.,The bag.,The phone/camera. 394,C6LW1_19.4_24.3,Which object was put down by the person?,0,Interaction_T1_3365,Interaction_T1,The phone/camera.,The blanket.,The cup/glass/bottle.,The food.,The phone/camera. 395,JBJGX_12.3_19.9,Which object was closed by the person?,1,Interaction_T1_3399,Interaction_T1,The door.,The laptop.,The closet/cabinet.,The box.,The laptop. 396,JBJGX_24.6_31.5,Which object was opened by the person?,1,Interaction_T1_3400,Interaction_T1,The book.,The laptop.,The closet/cabinet.,The refrigerator.,The laptop. 397,9335E_19.1_27.3,Which object was put down by the person?,3,Interaction_T1_3405,Interaction_T1,The clothes.,The cup/glass/bottle.,The paper/notebook.,The dish.,The dish. 398,WLA52_18.8_25.6,Which object was taken by the person?,2,Interaction_T1_3411,Interaction_T1,The clothes.,The towel.,The broom.,The laptop.,The broom. 399,WLA52_15.8_23,Which object was put down by the person?,1,Interaction_T1_3412,Interaction_T1,The dish.,The blanket.,The cup/glass/bottle.,The clothes.,The blanket. 400,N2GFQ_33.4_39,Which object was lied on by the person?,1,Interaction_T1_3437,Interaction_T1,The bed.,The sofa/couch.,The medicine.,The floor.,The sofa/couch. 401,N2GFQ_6.9_13.5,Which object was put down by the person?,2,Interaction_T1_3438,Interaction_T1,The dish.,The picture.,The bag.,The towel.,The bag. 402,C9HLB_29.4_35,Which object was closed by the person?,3,Interaction_T1_3442,Interaction_T1,The closet/cabinet.,The window.,The door.,The laptop.,The laptop. 403,WRW74_3.7_9.3,Which object was opened by the person?,1,Interaction_T1_3451,Interaction_T1,The window.,The box.,The closet/cabinet.,The bag.,The box. 404,BQKW5_2.7_8,Which object was put down by the person?,0,Interaction_T1_3469,Interaction_T1,The box.,The sandwich.,The pillow.,The book.,The box. 405,YE991_22.8_28,Which object was put down by the person?,0,Interaction_T1_3480,Interaction_T1,The cup/glass/bottle.,The shoe.,The phone/camera.,The food.,The cup/glass/bottle. 406,AWITI_9.9_15.9,Which object was taken by the person?,2,Interaction_T1_3485,Interaction_T1,The box.,The food.,The pillow.,The book.,The pillow. 407,XXIT4_0_6.4,Which object was sat at by the person?,1,Interaction_T1_3490,Interaction_T1,The floor.,The table.,The sofa/couch.,The bed.,The table. 408,XAX61_5.5_10.5,Which object was opened by the person?,1,Interaction_T1_3498,Interaction_T1,The refrigerator.,The bag.,The window.,The door.,The bag. 409,XAX61_3.8_9.7,Which object was put down by the person?,3,Interaction_T1_3499,Interaction_T1,The blanket.,The clothes.,The picture.,The bag.,The bag. 410,H2B7U_0_8,Which object was washed by the person?,1,Interaction_T1_3508,Interaction_T1,The table.,The clothes.,The window.,The dish.,The clothes. 411,9BCZU_26.1_34,Which object was washed by the person?,1,Interaction_T1_3509,Interaction_T1,The window.,The clothes.,The cup/glass/bottle.,The dish.,The clothes. 412,9BCZU_21.3_27,Which object was taken by the person?,1,Interaction_T1_3510,Interaction_T1,The cup/glass/bottle.,The clothes.,The food.,The picture.,The clothes. 413,ZED9E_0_3.1,Which object was eaten by the person?,1,Interaction_T1_3511,Interaction_T1,The picture.,The sandwich.,The bag.,The medicine.,The sandwich. 414,9PXC0_8_15,Which object was taken by the person?,2,Interaction_T1_3515,Interaction_T1,The pillow.,The phone/camera.,The box.,The clothes.,The box. 415,9PXC0_0_8.7,Which object was lied on by the person?,3,Interaction_T1_3517,Interaction_T1,The laptop.,The sofa/couch.,The floor.,The bed.,The bed. 416,9PXC0_11.2_19.1,Which object was opened by the person?,1,Interaction_T1_3518,Interaction_T1,The door.,The box.,The window.,The book.,The box. 417,M0KTN_23.5_28.8,Which object was taken by the person?,3,Interaction_T1_3537,Interaction_T1,The dish.,The sandwich.,The paper/notebook.,The blanket.,The blanket. 418,4S3UZ_25.8_31.7,Which object was put down by the person?,1,Interaction_T1_3553,Interaction_T1,The pillow.,The broom.,The sandwich.,The shoe.,The broom. 419,BCONW_5.5_13.3,Which object was closed by the person?,0,Interaction_T1_3556,Interaction_T1,The refrigerator.,The door.,The laptop.,The closet/cabinet.,The refrigerator. 420,8BSG7_16.7_21.6,Which object was opened by the person?,2,Interaction_T1_3570,Interaction_T1,The refrigerator.,The laptop.,The door.,The box.,The door. 421,8BSG7_17.3_24,Which object was closed by the person?,3,Interaction_T1_3571,Interaction_T1,The laptop.,The window.,The book.,The door.,The door. 422,JZDL6_9_14,Which object was sat on by the person?,1,Interaction_T1_3578,Interaction_T1,The sofa/couch.,The bed.,The table.,The floor.,The bed. 423,FETME_15.4_21.2,Which object was put down by the person?,2,Interaction_T1_3593,Interaction_T1,The pillow.,The food.,The paper/notebook.,The dish.,The paper/notebook. 424,FETME_7.4_12.7,Which object was taken by the person?,1,Interaction_T1_3594,Interaction_T1,The clothes.,The paper/notebook.,The sandwich.,The food.,The paper/notebook. 425,M704T_11.6_19.6,Which object was taken by the person?,1,Interaction_T1_3598,Interaction_T1,The box.,The towel.,The book.,The sandwich.,The towel. 426,M704T_18.5_26.2,Which object was thrown by the person?,0,Interaction_T1_3599,Interaction_T1,The towel.,The clothes.,The blanket.,The pillow.,The towel. 427,YSABV_3.7_10.4,Which object was thrown by the person?,3,Interaction_T1_3601,Interaction_T1,The book.,The food.,The box.,The clothes.,The clothes. 428,J6TVB_0_5.7,Which object was sat at by the person?,1,Interaction_T1_3615,Interaction_T1,The sofa/couch.,The table.,The floor.,The bed.,The table. 429,J6TVB_10.5_20.5,Which object was put down by the person?,0,Interaction_T1_3618,Interaction_T1,The dish.,The bag.,The cup/glass/bottle.,The laptop.,The dish. 430,DTJS6_14_19.7,Which object was taken by the person?,2,Interaction_T1_3631,Interaction_T1,The cup/glass/bottle.,The picture.,The food.,The clothes.,The food. 431,5K0KJ_18_25.3,Which object was taken by the person?,0,Interaction_T1_3636,Interaction_T1,The phone/camera.,The cup/glass/bottle.,The towel.,The sandwich.,The phone/camera. 432,Q7RK6_7.6_13.4,Which object was put down by the person?,1,Interaction_T1_3664,Interaction_T1,The laptop.,The pillow.,The book.,The phone/camera.,The pillow. 433,1MZJF_16.9_25,Which object was sat on by the person?,2,Interaction_T1_3688,Interaction_T1,The sofa/couch.,The table.,The floor.,The bed.,The floor. 434,ZAJAJ_12.2_17.6,Which object was taken by the person?,1,Interaction_T1_3708,Interaction_T1,The clothes.,The picture.,The laptop.,The food.,The picture. 435,ZAJAJ_2.4_12.2,Which object was put down by the person?,0,Interaction_T1_3709,Interaction_T1,The pillow.,The paper/notebook.,The book.,The clothes.,The pillow. 436,ZAJAJ_24.1_29.1,Which object was opened by the person?,3,Interaction_T1_3710,Interaction_T1,The box.,The closet/cabinet.,The bag.,The laptop.,The laptop. 437,ZAJAJ_27.3_32.2,Which object was put down by the person?,1,Interaction_T1_3711,Interaction_T1,The dish.,The laptop.,The bag.,The pillow.,The laptop. 438,L0NFK_19_25,Which object was thrown by the person?,1,Interaction_T1_3721,Interaction_T1,The box.,The pillow.,The clothes.,The book.,The pillow. 439,VNVRA_0.5_5.8,Which object was taken by the person?,1,Interaction_T1_3722,Interaction_T1,The sandwich.,The box.,The picture.,The phone/camera.,The box. 440,VNVRA_5.3_10,Which object was put down by the person?,0,Interaction_T1_3724,Interaction_T1,The box.,The cup/glass/bottle.,The picture.,The paper/notebook.,The box. 441,KLP7V_7.9_16.3,Which object was put down by the person?,2,Interaction_T1_3740,Interaction_T1,The food.,The pillow.,The box.,The clothes.,The box. 442,O18DS_19.4_24.2,Which object was closed by the person?,3,Interaction_T1_3745,Interaction_T1,The door.,The box.,The refrigerator.,The book.,The book. 443,K87AC_12.7_18.6,Which object was taken by the person?,1,Interaction_T1_3752,Interaction_T1,The cup/glass/bottle.,The clothes.,The dish.,The towel.,The clothes. 444,WBS4I_8.9_15.5,Which object was closed by the person?,0,Interaction_T1_3772,Interaction_T1,The closet/cabinet.,The window.,The laptop.,The door.,The closet/cabinet. 445,WBS4I_14.2_20.4,Which object was opened by the person?,0,Interaction_T1_3773,Interaction_T1,The closet/cabinet.,The laptop.,The bag.,The book.,The closet/cabinet. 446,P4DL9_25_32.2,Which object was taken by the person?,3,Interaction_T1_3777,Interaction_T1,The dish.,The cup/glass/bottle.,The blanket.,The phone/camera.,The phone/camera. 447,P4DL9_0_7.2,Which object was closed by the person?,0,Interaction_T1_3778,Interaction_T1,The refrigerator.,The closet/cabinet.,The box.,The window.,The refrigerator. 448,OO4FE_0_6.9,Which object was tidied up by the person?,0,Interaction_T1_3785,Interaction_T1,The table.,The closet/cabinet.,The blanket.,The towel.,The table. 449,52WDV_19.5_26.7,Which object was opened by the person?,0,Interaction_T1_3786,Interaction_T1,The book.,The window.,The door.,The closet/cabinet.,The book. 450,52WDV_1.2_10.2,Which object was taken by the person?,2,Interaction_T1_3787,Interaction_T1,The food.,The box.,The clothes.,The broom.,The clothes. 451,AZFKK_0.7_8.8,Which object was opened by the person?,3,Interaction_T1_3788,Interaction_T1,The bag.,The laptop.,The refrigerator.,The box.,The box. 452,AZFKK_0_5.5,Which object was put down by the person?,1,Interaction_T1_3789,Interaction_T1,The food.,The box.,The dish.,The paper/notebook.,The box. 453,AZFKK_9.8_16.1,Which object was taken by the person?,3,Interaction_T1_3790,Interaction_T1,The broom.,The shoe.,The laptop.,The paper/notebook.,The paper/notebook. 454,AZFKK_0_3.4,Which object was thrown by the person?,3,Interaction_T1_3791,Interaction_T1,The shoe.,The towel.,The clothes.,The box.,The box. 455,AZFKK_1.3_7.6,Which object was taken by the person?,1,Interaction_T1_3792,Interaction_T1,The towel.,The box.,The book.,The clothes.,The box. 456,AZFKK_12.1_17.7,Which object was put down by the person?,0,Interaction_T1_3793,Interaction_T1,The paper/notebook.,The phone/camera.,The dish.,The book.,The paper/notebook. 457,LSVHK_18.1_23.8,Which object was thrown by the person?,2,Interaction_T1_3806,Interaction_T1,The clothes.,The bag.,The towel.,The box.,The towel. 458,LSVHK_15.3_20.7,Which object was taken by the person?,3,Interaction_T1_3808,Interaction_T1,The book.,The cup/glass/bottle.,The phone/camera.,The towel.,The towel. 459,FX1T5_2.6_12,Which object was put down by the person?,2,Interaction_T1_3810,Interaction_T1,The laptop.,The dish.,The picture.,The food.,The picture. 460,OCVY4_1.3_7.4,Which object was opened by the person?,3,Interaction_T1_3854,Interaction_T1,The box.,The laptop.,The door.,The bag.,The bag. 461,OCVY4_1.1_8.1,Which object was taken by the person?,0,Interaction_T1_3855,Interaction_T1,The food.,The shoe.,The cup/glass/bottle.,The dish.,The food. 462,KU656_0_6.8,Which object was lied on by the person?,1,Interaction_T1_3872,Interaction_T1,The dish.,The bed.,The sofa/couch.,The floor.,The bed. 463,U3T5A_22.5_27.9,Which object was taken by the person?,2,Interaction_T1_3892,Interaction_T1,The sandwich.,The towel.,The dish.,The box.,The dish. 464,TK76G_10.8_16,Which object was put down by the person?,0,Interaction_T1_3903,Interaction_T1,The towel.,The clothes.,The cup/glass/bottle.,The paper/notebook.,The towel. 465,2GF6R_0_4.2,Which object was taken by the person?,0,Interaction_T1_3913,Interaction_T1,The sandwich.,The phone/camera.,The paper/notebook.,The picture.,The sandwich. 466,SM5WL_0_8.3,Which object was lied on by the person?,2,Interaction_T1_3927,Interaction_T1,The sandwich.,The floor.,The bed.,The sofa/couch.,The bed. 467,3IRHH_0.7_7.3,Which object was taken by the person?,2,Interaction_T1_3929,Interaction_T1,The book.,The sandwich.,The paper/notebook.,The phone/camera.,The paper/notebook. 468,3IRHH_14.6_21.3,Which object was put down by the person?,0,Interaction_T1_3930,Interaction_T1,The dish.,The food.,The phone/camera.,The broom.,The dish. 469,SXI64_9.5_15.1,Which object was thrown by the person?,0,Interaction_T1_3949,Interaction_T1,The clothes.,The book.,The food.,The pillow.,The clothes. 470,SXI64_10.6_16.8,Which object was taken by the person?,1,Interaction_T1_3950,Interaction_T1,The dish.,The clothes.,The cup/glass/bottle.,The sandwich.,The clothes. 471,7SXQS_1_7,Which object was closed by the person?,2,Interaction_T1_3954,Interaction_T1,The laptop.,The book.,The window.,The door.,The window. 472,7SXQS_11_17.5,Which object was taken by the person?,2,Interaction_T1_3955,Interaction_T1,The dish.,The broom.,The blanket.,The shoe.,The blanket. 473,1UI6I_0_8.7,Which object was opened by the person?,3,Interaction_T1_3977,Interaction_T1,The window.,The refrigerator.,The door.,The closet/cabinet.,The closet/cabinet. 474,1UI6I_4.5_13,Which object was closed by the person?,1,Interaction_T1_3978,Interaction_T1,The book.,The closet/cabinet.,The refrigerator.,The door.,The closet/cabinet. 475,5I4UT_2.7_8.1,Which object was lied on by the person?,1,Interaction_T1_3982,Interaction_T1,The laptop.,The floor.,The bed.,The sofa/couch.,The floor. 476,NCRCW_5.3_10.2,Which object was taken by the person?,1,Interaction_T1_3989,Interaction_T1,The cup/glass/bottle.,The pillow.,The box.,The blanket.,The pillow. 477,NCRCW_19.3_24.9,Which object was put down by the person?,3,Interaction_T1_3990,Interaction_T1,The broom.,The cup/glass/bottle.,The laptop.,The pillow.,The pillow. 478,08F85_14.4_23.2,Which object was eaten by the person?,2,Interaction_T1_3993,Interaction_T1,The bed.,The sandwich.,The medicine.,The broom.,The medicine. 479,WLE0F_3.3_9.2,Which object was opened by the person?,3,Interaction_T1_3994,Interaction_T1,The book.,The door.,The window.,The bag.,The bag. 480,4MFE0_19.8_27.2,Which object was taken by the person?,1,Interaction_T1_4012,Interaction_T1,The sandwich.,The book.,The box.,The cup/glass/bottle.,The book. 481,BWLA8_6_13,Which object was closed by the person?,1,Interaction_T1_4053,Interaction_T1,The refrigerator.,The closet/cabinet.,The window.,The door.,The closet/cabinet. 482,BWLA8_6_13,Which object was opened by the person?,1,Interaction_T1_4054,Interaction_T1,The bag.,The closet/cabinet.,The refrigerator.,The laptop.,The closet/cabinet. 483,4YL07_0_3.2,Which object was taken by the person?,1,Interaction_T1_4091,Interaction_T1,The cup/glass/bottle.,The picture.,The laptop.,The book.,The picture. 484,FVITB_22_28.8,Which object was closed by the person?,3,Interaction_T1_4097,Interaction_T1,The box.,The book.,The door.,The refrigerator.,The refrigerator. 485,FVITB_19.8_25.3,Which object was opened by the person?,3,Interaction_T1_4098,Interaction_T1,The book.,The window.,The bag.,The refrigerator.,The refrigerator. 486,R1RDT_5_13,Which object was lied on by the person?,1,Interaction_T1_4106,Interaction_T1,The sofa/couch.,The bed.,The clothes.,The floor.,The bed. 487,YMM1Z_16.2_21.2,Which object was closed by the person?,1,Interaction_T1_4108,Interaction_T1,The door.,The refrigerator.,The box.,The book.,The refrigerator. 488,YMM1Z_14.9_20.3,Which object was opened by the person?,3,Interaction_T1_4109,Interaction_T1,The book.,The door.,The closet/cabinet.,The refrigerator.,The refrigerator. 489,FL6DF_3.2_8.1,Which object was opened by the person?,0,Interaction_T1_4112,Interaction_T1,The laptop.,The window.,The bag.,The door.,The laptop. 490,FL6DF_14.6_19.7,Which object was put down by the person?,2,Interaction_T1_4115,Interaction_T1,The pillow.,The box.,The laptop.,The sandwich.,The laptop. 491,ZS9XR_23.3_33.3,Which object was put down by the person?,2,Interaction_T1_4128,Interaction_T1,The book.,The pillow.,The paper/notebook.,The towel.,The paper/notebook. 492,ZS9XR_10.6_17.1,Which object was eaten by the person?,3,Interaction_T1_4129,Interaction_T1,The clothes.,The shoe.,The sandwich.,The medicine.,The medicine. 493,JJLTF_27.4_35,Which object was put down by the person?,0,Interaction_T1_4142,Interaction_T1,The cup/glass/bottle.,The laptop.,The phone/camera.,The box.,The cup/glass/bottle. 494,A3OWG_10.6_17,Which object was taken by the person?,3,Interaction_T1_4150,Interaction_T1,The box.,The blanket.,The food.,The broom.,The broom. 495,QKIYJ_26.7_34,Which object was taken by the person?,2,Interaction_T1_4153,Interaction_T1,The pillow.,The bag.,The picture.,The broom.,The picture. 496,MLS4T_2.1_10.4,Which object was put down by the person?,2,Interaction_T1_4163,Interaction_T1,The book.,The dish.,The box.,The clothes.,The box. 497,MLS4T_2.3_7.5,Which object was thrown by the person?,3,Interaction_T1_4165,Interaction_T1,The shoe.,The towel.,The clothes.,The box.,The box. 498,YGQ7E_0_8.9,Which object was sat at by the person?,2,Interaction_T1_4166,Interaction_T1,The floor.,The bed.,The table.,The sofa/couch.,The table. 499,YGQ7E_8.9_16.5,Which object was tidied up by the person?,1,Interaction_T1_4167,Interaction_T1,The towel.,The table.,The blanket.,The clothes.,The table. 500,BAUQE_5_10.2,Which object was taken by the person?,2,Interaction_T1_4175,Interaction_T1,The clothes.,The book.,The broom.,The cup/glass/bottle.,The broom. 501,BAUQE_0_7,Which object was tidied up by the person?,3,Interaction_T1_4176,Interaction_T1,The towel.,The blanket.,The table.,The clothes.,The clothes. 502,BGQIF_1.6_6.7,Which object was sat on by the person?,2,Interaction_T1_4183,Interaction_T1,The table.,The bed.,The sofa/couch.,The floor.,The sofa/couch. 503,BGQIF_2.9_9.4,Which object was put down by the person?,1,Interaction_T1_4184,Interaction_T1,The laptop.,The pillow.,The food.,The box.,The pillow. 504,APVAD_17.3_21.9,Which object was taken by the person?,0,Interaction_T1_4188,Interaction_T1,The book.,The food.,The bag.,The clothes.,The book. 505,P4HXN_26.8_33.3,Which object was put down by the person?,1,Interaction_T1_4197,Interaction_T1,The phone/camera.,The laptop.,The blanket.,The clothes.,The laptop. 506,UF91R_12.3_17.4,Which object was closed by the person?,2,Interaction_T1_4198,Interaction_T1,The laptop.,The box.,The refrigerator.,The book.,The refrigerator. 507,UF91R_7.3_12.1,Which object was closed by the person?,2,Interaction_T1_4200,Interaction_T1,The door.,The closet/cabinet.,The laptop.,The window.,The laptop. 508,PQYWB_6.1_10.7,Which object was put down by the person?,3,Interaction_T1_4219,Interaction_T1,The box.,The sandwich.,The clothes.,The towel.,The towel. 509,C8WLX_25.2_35,Which object was taken by the person?,2,Interaction_T1_4221,Interaction_T1,The blanket.,The book.,The shoe.,The clothes.,The shoe. 510,M1FNW_2.1_7.7,Which object was put down by the person?,1,Interaction_T1_4239,Interaction_T1,The pillow.,The laptop.,The clothes.,The broom.,The laptop. 511,M1FNW_1.8_6.9,Which object was taken by the person?,1,Interaction_T1_4240,Interaction_T1,The broom.,The laptop.,The picture.,The food.,The laptop. 512,HJ8U7_14.6_20.5,Which object was taken by the person?,0,Interaction_T1_4242,Interaction_T1,The cup/glass/bottle.,The broom.,The laptop.,The dish.,The cup/glass/bottle. 513,ZXSRR_0_4.6,Which object was put down by the person?,3,Interaction_T1_4243,Interaction_T1,The cup/glass/bottle.,The broom.,The pillow.,The laptop.,The laptop. 514,NNG97_0.6_6.4,Which object was put down by the person?,3,Interaction_T1_4264,Interaction_T1,The sandwich.,The dish.,The cup/glass/bottle.,The book.,The book. 515,X8XQE_7.9_13.8,Which object was closed by the person?,1,Interaction_T1_4292,Interaction_T1,The door.,The closet/cabinet.,The box.,The book.,The closet/cabinet. 516,9ZQ0R_18.1_23.9,Which object was put down by the person?,1,Interaction_T1_4300,Interaction_T1,The laptop.,The phone/camera.,The bag.,The shoe.,The phone/camera. 517,EFR6I_16.9_23.5,Which object was taken by the person?,0,Interaction_T1_4302,Interaction_T1,The paper/notebook.,The clothes.,The pillow.,The towel.,The paper/notebook. 518,NKCXF_9.8_15.3,Which object was put down by the person?,1,Interaction_T1_4308,Interaction_T1,The towel.,The pillow.,The broom.,The clothes.,The pillow. 519,NKCXF_25.8_29,Which object was put down by the person?,3,Interaction_T1_4310,Interaction_T1,The towel.,The clothes.,The food.,The phone/camera.,The phone/camera. 520,W2LM5_0_4.1,Which object was taken by the person?,2,Interaction_T1_4311,Interaction_T1,The blanket.,The cup/glass/bottle.,The broom.,The laptop.,The broom. 521,JQLD3_10.3_15.5,Which object was put down by the person?,2,Interaction_T1_4320,Interaction_T1,The pillow.,The blanket.,The sandwich.,The broom.,The sandwich. 522,NYPOF_6.2_12.2,Which object was opened by the person?,3,Interaction_T1_4353,Interaction_T1,The laptop.,The box.,The bag.,The closet/cabinet.,The closet/cabinet. 523,40309_26.3_32,Which object was closed by the person?,1,Interaction_T1_4356,Interaction_T1,The laptop.,The closet/cabinet.,The door.,The refrigerator.,The closet/cabinet. 524,ZZ2SF_16.2_25.5,Which object was eaten by the person?,3,Interaction_T1_4382,Interaction_T1,The pillow.,The sandwich.,The picture.,The medicine.,The medicine. 525,8L9AJ_13.7_20.3,Which object was taken by the person?,3,Interaction_T1_4383,Interaction_T1,The sandwich.,The phone/camera.,The book.,The laptop.,The laptop. 526,9X208_22.2_26.8,Which object was taken by the person?,3,Interaction_T1_4385,Interaction_T1,The cup/glass/bottle.,The book.,The sandwich.,The towel.,The towel. 527,PNAXO_0_5,Which object was taken by the person?,2,Interaction_T1_4394,Interaction_T1,The box.,The towel.,The sandwich.,The paper/notebook.,The sandwich. 528,LW51F_11.3_17,Which object was closed by the person?,2,Interaction_T1_4398,Interaction_T1,The refrigerator.,The closet/cabinet.,The book.,The door.,The book. 529,WPPAT_16.6_24.1,Which object was opened by the person?,3,Interaction_T1_4413,Interaction_T1,The window.,The book.,The door.,The closet/cabinet.,The closet/cabinet. 530,WPPAT_20.5_25.7,Which object was closed by the person?,2,Interaction_T1_4414,Interaction_T1,The door.,The window.,The closet/cabinet.,The book.,The closet/cabinet. 531,6QSON_22.9_28,Which object was put down by the person?,1,Interaction_T1_4420,Interaction_T1,The cup/glass/bottle.,The bag.,The laptop.,The sandwich.,The bag. 532,Q3HZI_14.9_23.1,Which object was taken by the person?,0,Interaction_T1_4422,Interaction_T1,The bag.,The broom.,The towel.,The sandwich.,The bag. 533,Q3HZI_0_3.7,Which object was taken by the person?,1,Interaction_T1_4423,Interaction_T1,The picture.,The pillow.,The towel.,The food.,The pillow. 534,2YJUQ_4.3_9.7,Which object was sat at by the person?,2,Interaction_T1_4424,Interaction_T1,The floor.,The sofa/couch.,The table.,The bed.,The table. 535,BE51K_11.3_19.8,Which object was sat on by the person?,1,Interaction_T1_4429,Interaction_T1,The table.,The bed.,The sofa/couch.,The floor.,The bed. 536,2I871_11_16.6,Which object was taken by the person?,0,Interaction_T1_4435,Interaction_T1,The bag.,The towel.,The blanket.,The cup/glass/bottle.,The bag. 537,S3FY2_27.7_31,Which object was thrown by the person?,0,Interaction_T1_4444,Interaction_T1,The clothes.,The shoe.,The bag.,The book.,The clothes. 538,TPSUY_6_12,Which object was put down by the person?,2,Interaction_T1_4455,Interaction_T1,The paper/notebook.,The bag.,The broom.,The phone/camera.,The broom. 539,TPSUY_12_17.1,Which object was tidied up by the person?,0,Interaction_T1_4456,Interaction_T1,The clothes.,The closet/cabinet.,The broom.,The table.,The clothes. 540,EUJK0_14.3_22.1,Which object was closed by the person?,3,Interaction_T1_4474,Interaction_T1,The refrigerator.,The closet/cabinet.,The window.,The laptop.,The laptop. 541,EUJK0_17.1_24.1,Which object was put down by the person?,3,Interaction_T1_4475,Interaction_T1,The shoe.,The pillow.,The book.,The laptop.,The laptop. 542,N7GBK_0.5_6,Which object was washed by the person?,0,Interaction_T1_4485,Interaction_T1,The clothes.,The cup/glass/bottle.,The mirror.,The table.,The clothes. 543,GBMNT_10.4_17.3,Which object was put down by the person?,3,Interaction_T1_4495,Interaction_T1,The pillow.,The clothes.,The towel.,The bag.,The bag. 544,GBMNT_10.1_17.5,Which object was taken by the person?,0,Interaction_T1_4496,Interaction_T1,The bag.,The box.,The broom.,The book.,The bag. 545,GBMNT_15.9_24.4,Which object was opened by the person?,1,Interaction_T1_4497,Interaction_T1,The refrigerator.,The bag.,The window.,The door.,The bag. 546,8MLCU_4.4_10.2,Which object was put down by the person?,0,Interaction_T1_4500,Interaction_T1,The box.,The phone/camera.,The blanket.,The clothes.,The box. 547,8MLCU_8.5_14.4,Which object was opened by the person?,0,Interaction_T1_4501,Interaction_T1,The refrigerator.,The window.,The box.,The closet/cabinet.,The refrigerator. 548,34J80_19.3_28,Which object was put down by the person?,0,Interaction_T1_4504,Interaction_T1,The food.,The cup/glass/bottle.,The clothes.,The broom.,The food. 549,34J80_19_26.6,Which object was taken by the person?,1,Interaction_T1_4505,Interaction_T1,The cup/glass/bottle.,The food.,The bag.,The paper/notebook.,The food. 550,FTG07_0.9_9.3,Which object was tidied up by the person?,2,Interaction_T1_4513,Interaction_T1,The closet/cabinet.,The towel.,The table.,The clothes.,The table. 551,GLGQJ_21.1_29.3,Which object was closed by the person?,0,Interaction_T1_4518,Interaction_T1,The window.,The box.,The book.,The closet/cabinet.,The window. 552,TOOYI_12.2_19.1,Which object was closed by the person?,3,Interaction_T1_4524,Interaction_T1,The closet/cabinet.,The book.,The refrigerator.,The box.,The box. 553,TOOYI_0_4.7,Which object was opened by the person?,2,Interaction_T1_4525,Interaction_T1,The door.,The bag.,The box.,The refrigerator.,The box. 554,TOOYI_16.7_25,Which object was put down by the person?,3,Interaction_T1_4526,Interaction_T1,The food.,The dish.,The blanket.,The box.,The box. 555,TOOYI_0.5_5.7,Which object was taken by the person?,3,Interaction_T1_4527,Interaction_T1,The dish.,The pillow.,The laptop.,The blanket.,The blanket. 556,TOOYI_1.6_7.4,Which object was put down by the person?,1,Interaction_T1_4528,Interaction_T1,The picture.,The blanket.,The towel.,The box.,The blanket. 557,PV745_7.2_14.8,Which object was taken by the person?,2,Interaction_T1_4541,Interaction_T1,The sandwich.,The book.,The box.,The cup/glass/bottle.,The box. 558,T2J3M_22.4_27.2,Which object was tidied up by the person?,1,Interaction_T1_4583,Interaction_T1,The clothes.,The closet/cabinet.,The towel.,The table.,The closet/cabinet. 559,M52K2_39.1_45.6,Which object was taken by the person?,2,Interaction_T1_4591,Interaction_T1,The clothes.,The cup/glass/bottle.,The bag.,The box.,The bag. 560,XLR4B_21.8_30.9,Which object was sat at by the person?,2,Interaction_T1_4594,Interaction_T1,The bed.,The sofa/couch.,The table.,The floor.,The table. 561,GN912_16.6_21,Which object was taken by the person?,3,Interaction_T1_4604,Interaction_T1,The phone/camera.,The clothes.,The cup/glass/bottle.,The dish.,The dish. 562,JCNHL_19.1_27.6,Which object was opened by the person?,3,Interaction_T1_4615,Interaction_T1,The book.,The door.,The bag.,The box.,The box. 563,JCNHL_20.5_28,Which object was tidied up by the person?,0,Interaction_T1_4617,Interaction_T1,The clothes.,The closet/cabinet.,The table.,The towel.,The clothes. 564,QXT9W_33.9_39.9,Which object was closed by the person?,3,Interaction_T1_4629,Interaction_T1,The box.,The door.,The refrigerator.,The book.,The book. 565,QXT9W_37.2_42.2,Which object was put down by the person?,2,Interaction_T1_4631,Interaction_T1,The pillow.,The sandwich.,The book.,The clothes.,The book. 566,CLW8L_7.1_13.1,Which object was taken by the person?,3,Interaction_T1_4657,Interaction_T1,The phone/camera.,The dish.,The blanket.,The pillow.,The pillow. 567,IBX56_10.7_19.1,Which object was tidied up by the person?,2,Interaction_T1_4675,Interaction_T1,The table.,The closet/cabinet.,The clothes.,The blanket.,The clothes. 568,HONL7_1_11,Which object was put down by the person?,0,Interaction_T1_4693,Interaction_T1,The paper/notebook.,The phone/camera.,The book.,The shoe.,The paper/notebook. 569,TETZ7_12.5_19.5,Which object was taken by the person?,1,Interaction_T1_4703,Interaction_T1,The broom.,The phone/camera.,The towel.,The clothes.,The phone/camera. 570,X9WTR_33.2_39.4,Which object was opened by the person?,1,Interaction_T1_4715,Interaction_T1,The refrigerator.,The book.,The door.,The window.,The book. 571,X9WTR_23.8_33,Which object was taken by the person?,1,Interaction_T1_4716,Interaction_T1,The towel.,The book.,The food.,The box.,The book. 572,QRWQ3_26.1_33.3,Which object was opened by the person?,0,Interaction_T1_4727,Interaction_T1,The box.,The closet/cabinet.,The door.,The book.,The box. 573,QRWQ3_13_18.4,Which object was put down by the person?,3,Interaction_T1_4728,Interaction_T1,The broom.,The picture.,The food.,The dish.,The dish. 574,MF09L_39.1_44.9,Which object was taken by the person?,0,Interaction_T1_4741,Interaction_T1,The phone/camera.,The towel.,The pillow.,The clothes.,The phone/camera. 575,03M0K_7.5_13.9,Which object was opened by the person?,3,Interaction_T1_4782,Interaction_T1,The door.,The refrigerator.,The book.,The laptop.,The laptop. 576,XQDQ4_7.4_16.7,Which object was taken by the person?,0,Interaction_T1_4827,Interaction_T1,The cup/glass/bottle.,The pillow.,The phone/camera.,The sandwich.,The cup/glass/bottle. 577,6B93R_6.8_12.2,Which object was put down by the person?,0,Interaction_T1_4831,Interaction_T1,The food.,The book.,The shoe.,The clothes.,The food. 578,AFTMI_32.3_37.8,Which object was taken by the person?,1,Interaction_T1_4835,Interaction_T1,The blanket.,The pillow.,The cup/glass/bottle.,The clothes.,The pillow. 579,969Z9_0.8_7.4,Which object was sat at by the person?,3,Interaction_T1_4836,Interaction_T1,The sofa/couch.,The bed.,The floor.,The table.,The table. 580,IFQS1_8.7_13.3,Which object was put down by the person?,0,Interaction_T1_4837,Interaction_T1,The blanket.,The dish.,The towel.,The clothes.,The blanket. 581,F5TL0_8.8_13.6,Which object was closed by the person?,1,Interaction_T1_4853,Interaction_T1,The box.,The refrigerator.,The door.,The closet/cabinet.,The refrigerator. 582,01KML_18.1_26.8,Which object was taken by the person?,0,Interaction_T1_4892,Interaction_T1,The laptop.,The cup/glass/bottle.,The paper/notebook.,The blanket.,The laptop. 583,3EIRZ_3.7_11.3,Which object was tidied up by the person?,2,Interaction_T1_4905,Interaction_T1,The table.,The blanket.,The clothes.,The towel.,The clothes. 584,PKNT2_16.3_22.4,Which object was put down by the person?,1,Interaction_T1_4942,Interaction_T1,The shoe.,The book.,The picture.,The clothes.,The book. 585,H51V5_11.1_18,Which object was taken by the person?,2,Interaction_T1_4946,Interaction_T1,The food.,The cup/glass/bottle.,The dish.,The sandwich.,The dish. 586,GGAN0_18.4_24,Which object was put down by the person?,0,Interaction_T1_4953,Interaction_T1,The bag.,The clothes.,The broom.,The cup/glass/bottle.,The bag. 587,F0ZPW_23.4_31.3,Which object was taken by the person?,3,Interaction_T1_4957,Interaction_T1,The towel.,The box.,The shoe.,The dish.,The dish. 588,6JGXL_13_20.9,Which object was eaten by the person?,1,Interaction_T1_4964,Interaction_T1,The refrigerator.,The medicine.,The picture.,The sandwich.,The medicine. 589,GMMVC_0_6.3,Which object was put down by the person?,2,Interaction_T1_4972,Interaction_T1,The sandwich.,The broom.,The blanket.,The dish.,The blanket. 590,P4FXX_5.7_14.7,Which object was put down by the person?,1,Interaction_T1_4974,Interaction_T1,The picture.,The food.,The clothes.,The towel.,The food. 591,P4FXX_4.5_9.7,Which object was eaten by the person?,0,Interaction_T1_4975,Interaction_T1,The sandwich.,The paper/notebook.,The medicine.,The dish.,The sandwich. 592,3Z1YC_17.5_22.9,Which object was taken by the person?,0,Interaction_T1_4978,Interaction_T1,The bag.,The towel.,The book.,The pillow.,The bag. 593,E0ZBC_31.4_38.1,Which object was taken by the person?,0,Interaction_T1_4980,Interaction_T1,The book.,The clothes.,The pillow.,The cup/glass/bottle.,The book. 594,GTK8W_30.8_36.6,Which object was taken by the person?,0,Interaction_T1_4988,Interaction_T1,The bag.,The broom.,The book.,The phone/camera.,The bag. 595,81YUE_21.4_30.6,Which object was put down by the person?,3,Interaction_T1_4997,Interaction_T1,The blanket.,The cup/glass/bottle.,The towel.,The clothes.,The clothes. 596,D87LI_14.9_19.6,Which object was closed by the person?,2,Interaction_T1_4998,Interaction_T1,The door.,The box.,The laptop.,The refrigerator.,The laptop. 597,AK9IB_24.3_30.2,Which object was opened by the person?,2,Interaction_T1_5002,Interaction_T1,The window.,The door.,The box.,The bag.,The box. 598,AK9IB_24.5_31.4,Which object was put down by the person?,1,Interaction_T1_5003,Interaction_T1,The pillow.,The shoe.,The food.,The clothes.,The shoe. 599,AK9IB_27.4_35,Which object was closed by the person?,3,Interaction_T1_5004,Interaction_T1,The refrigerator.,The book.,The laptop.,The box.,The box. 600,VWAEL_24.7_30.5,Which object was taken by the person?,1,Interaction_T1_5006,Interaction_T1,The paper/notebook.,The box.,The picture.,The towel.,The box. 601,330ZE_0.3_9.8,Which object was tidied up by the person?,0,Interaction_T1_5015,Interaction_T1,The table.,The broom.,The clothes.,The blanket.,The table. 602,JUF24_18.4_26.9,Which object was taken by the person?,3,Interaction_T1_5049,Interaction_T1,The book.,The cup/glass/bottle.,The paper/notebook.,The food.,The food. 603,2RTH2_11.6_17,Which object was put down by the person?,2,Interaction_T1_5085,Interaction_T1,The pillow.,The picture.,The towel.,The phone/camera.,The towel. 604,HNPC8_0_7.5,Which object was put down by the person?,2,Interaction_T1_5095,Interaction_T1,The pillow.,The food.,The dish.,The picture.,The dish. 605,VT64S_9.9_16.6,Which object was opened by the person?,3,Interaction_T1_5108,Interaction_T1,The laptop.,The book.,The door.,The bag.,The bag. 606,IGEU5_16.2_21.7,Which object was thrown by the person?,0,Interaction_T1_5109,Interaction_T1,The pillow.,The clothes.,The towel.,The blanket.,The pillow. 607,R9NRA_23.9_32,Which object was lied on by the person?,0,Interaction_T1_5118,Interaction_T1,The sofa/couch.,The bed.,The refrigerator.,The floor.,The sofa/couch. 608,FQIM2_0_4.2,Which object was put down by the person?,0,Interaction_T1_5119,Interaction_T1,The clothes.,The cup/glass/bottle.,The book.,The phone/camera.,The clothes. 609,FQIM2_0_4.9,Which object was thrown by the person?,1,Interaction_T1_5120,Interaction_T1,The blanket.,The clothes.,The bag.,The broom.,The clothes. 610,T0LOH_0_4.2,Which object was taken by the person?,2,Interaction_T1_5145,Interaction_T1,The food.,The bag.,The blanket.,The shoe.,The blanket. 611,EGVGL_17.5_23,Which object was opened by the person?,1,Interaction_T1_5147,Interaction_T1,The laptop.,The bag.,The door.,The book.,The bag. 612,8IPWO_8.7_14.4,Which object was opened by the person?,1,Interaction_T1_5157,Interaction_T1,The box.,The book.,The laptop.,The closet/cabinet.,The book. 613,2ZXJ5_12.4_18,Which object was put down by the person?,3,Interaction_T1_5162,Interaction_T1,The food.,The picture.,The clothes.,The pillow.,The pillow. 614,2ZXJ5_7.5_12.7,Which object was sat on by the person?,0,Interaction_T1_5163,Interaction_T1,The sofa/couch.,The bed.,The floor.,The table.,The sofa/couch. 615,QJXNG_10.4_15.6,Which object was opened by the person?,0,Interaction_T1_5221,Interaction_T1,The bag.,The book.,The window.,The door.,The bag. 616,QJXNG_9.6_17.3,Which object was taken by the person?,3,Interaction_T1_5222,Interaction_T1,The cup/glass/bottle.,The food.,The blanket.,The bag.,The bag. 617,H41MY_0_4.2,Which object was taken by the person?,3,Interaction_T1_5233,Interaction_T1,The pillow.,The cup/glass/bottle.,The bag.,The sandwich.,The sandwich. 618,H41MY_0_5.8,Which object was put down by the person?,1,Interaction_T1_5234,Interaction_T1,The food.,The sandwich.,The dish.,The book.,The sandwich. 619,DIR8Q_3_8,Which object was put down by the person?,1,Interaction_T1_5249,Interaction_T1,The picture.,The phone/camera.,The book.,The clothes.,The phone/camera. 620,9LHP3_6.4_12.3,Which object was sat on by the person?,3,Interaction_T1_5278,Interaction_T1,The floor.,The table.,The bed.,The sofa/couch.,The sofa/couch. 621,9LHP3_2.1_11.1,Which object was put down by the person?,3,Interaction_T1_5279,Interaction_T1,The food.,The bag.,The clothes.,The shoe.,The shoe. 622,9LHP3_2.1_9.8,Which object was taken by the person?,1,Interaction_T1_5280,Interaction_T1,The clothes.,The shoe.,The sandwich.,The food.,The shoe. 623,JBZF5_0_7.4,Which object was tidied up by the person?,3,Interaction_T1_5284,Interaction_T1,The towel.,The blanket.,The clothes.,The table.,The table. 624,BZ1TH_0_3.3,Which object was opened by the person?,0,Interaction_T1_5291,Interaction_T1,The book.,The refrigerator.,The closet/cabinet.,The window.,The book. 625,DHR83_0.3_5.4,Which object was put down by the person?,1,Interaction_T1_5305,Interaction_T1,The bag.,The paper/notebook.,The clothes.,The picture.,The paper/notebook. 626,7T6MB_0_6.9,Which object was taken by the person?,1,Interaction_T1_5343,Interaction_T1,The clothes.,The shoe.,The broom.,The towel.,The shoe. 627,APH4V_14_19.1,Which object was closed by the person?,2,Interaction_T1_5348,Interaction_T1,The refrigerator.,The closet/cabinet.,The door.,The box.,The door. 628,XPDI1_5_10,Which object was put down by the person?,0,Interaction_T1_5350,Interaction_T1,The dish.,The picture.,The paper/notebook.,The clothes.,The dish. 629,XPDI1_17_22,Which object was taken by the person?,3,Interaction_T1_5351,Interaction_T1,The cup/glass/bottle.,The box.,The book.,The dish.,The dish. 630,RAQNI_8.1_16.2,Which object was tidied up by the person?,3,Interaction_T1_5370,Interaction_T1,The table.,The clothes.,The towel.,The blanket.,The blanket. 631,3B81O_0_7.9,Which object was opened by the person?,0,Interaction_T1_5384,Interaction_T1,The window.,The book.,The closet/cabinet.,The laptop.,The window. 632,9B93K_2_10.4,Which object was taken by the person?,2,Interaction_T1_5430,Interaction_T1,The laptop.,The broom.,The sandwich.,The bag.,The sandwich. 633,FKJ9L_0.1_7.8,Which object was put down by the person?,2,Interaction_T1_5439,Interaction_T1,The blanket.,The towel.,The box.,The dish.,The box. 634,VO45S_9.1_14.1,Which object was put down by the person?,2,Interaction_T1_5467,Interaction_T1,The bag.,The shoe.,The box.,The picture.,The box. 635,B8DL6_14.1_22,Which object was tidied up by the person?,0,Interaction_T1_5474,Interaction_T1,The table.,The broom.,The towel.,The clothes.,The table. 636,C4KZ4_0.6_5.8,Which object was closed by the person?,0,Interaction_T1_5477,Interaction_T1,The book.,The window.,The laptop.,The door.,The book. 637,VGAMG_0_3.1,Which object was taken by the person?,0,Interaction_T1_5480,Interaction_T1,The dish.,The towel.,The pillow.,The bag.,The dish. 638,VGAMG_9.6_15.6,Which object was put down by the person?,2,Interaction_T1_5481,Interaction_T1,The box.,The book.,The dish.,The clothes.,The dish. 639,4P13T_0_4.8,Which object was taken by the person?,3,Interaction_T1_5491,Interaction_T1,The towel.,The paper/notebook.,The clothes.,The bag.,The bag. 640,4P13T_11_17,Which object was put down by the person?,1,Interaction_T1_5492,Interaction_T1,The clothes.,The book.,The dish.,The box.,The book. 641,K34BE_1.1_6.1,Which object was taken by the person?,0,Interaction_T1_5502,Interaction_T1,The bag.,The clothes.,The paper/notebook.,The shoe.,The bag. 642,M3S4D_1.2_11,Which object was put down by the person?,1,Interaction_T1_5503,Interaction_T1,The sandwich.,The box.,The clothes.,The book.,The box. 643,U0X4P_26.2_30.8,Which object was thrown by the person?,2,Interaction_T1_5519,Interaction_T1,The book.,The shoe.,The clothes.,The blanket.,The clothes. 644,OMFOJ_15.2_21.1,Which object was opened by the person?,0,Interaction_T1_5525,Interaction_T1,The window.,The door.,The refrigerator.,The box.,The window. 645,OMFOJ_17.9_24.7,Which object was closed by the person?,3,Interaction_T1_5526,Interaction_T1,The book.,The door.,The box.,The window.,The window. 646,Y6P1E_2_7.6,Which object was opened by the person?,2,Interaction_T1_5539,Interaction_T1,The window.,The door.,The closet/cabinet.,The bag.,The closet/cabinet. 647,G87XG_18_22.5,Which object was put down by the person?,3,Interaction_T1_5552,Interaction_T1,The bag.,The food.,The clothes.,The book.,The book. 648,EBTD6_20.7_27,Which object was taken by the person?,2,Interaction_T1_5573,Interaction_T1,The food.,The bag.,The dish.,The clothes.,The dish. 649,8V97G_17.9_26,Which object was opened by the person?,3,Interaction_T1_5574,Interaction_T1,The laptop.,The box.,The bag.,The door.,The door. 650,8V97G_22.4_27.5,Which object was closed by the person?,2,Interaction_T1_5575,Interaction_T1,The laptop.,The closet/cabinet.,The door.,The window.,The door. 651,MI0UK_4.9_10.9,Which object was put down by the person?,3,Interaction_T1_5581,Interaction_T1,The dish.,The blanket.,The towel.,The pillow.,The pillow. 652,MI0UK_4.8_10.2,Which object was taken by the person?,0,Interaction_T1_5582,Interaction_T1,The pillow.,The bag.,The broom.,The paper/notebook.,The pillow. 653,MI0UK_5.8_11,Which object was thrown by the person?,2,Interaction_T1_5583,Interaction_T1,The food.,The bag.,The pillow.,The clothes.,The pillow. 654,AS7SG_22.1_31,Which object was opened by the person?,3,Interaction_T1_5612,Interaction_T1,The box.,The window.,The door.,The laptop.,The laptop. 655,AS7SG_18_23.9,Which object was put down by the person?,3,Interaction_T1_5613,Interaction_T1,The pillow.,The blanket.,The food.,The laptop.,The laptop. 656,6RQHP_13.4_21.1,Which object was washed by the person?,0,Interaction_T1_5620,Interaction_T1,The dish.,The cup/glass/bottle.,The clothes.,The table.,The dish. 657,4G00A_24.3_31.1,Which object was taken by the person?,3,Interaction_T1_5629,Interaction_T1,The shoe.,The dish.,The bag.,The broom.,The broom. 658,05WY6_27.6_31,Which object was put down by the person?,2,Interaction_T1_5634,Interaction_T1,The box.,The picture.,The towel.,The dish.,The towel. 659,05WY6_27.6_31,Which object was taken by the person?,1,Interaction_T1_5635,Interaction_T1,The blanket.,The towel.,The food.,The book.,The towel. 660,RCD08_24.2_30.2,Which object was thrown by the person?,1,Interaction_T1_5654,Interaction_T1,The box.,The towel.,The blanket.,The clothes.,The towel. 661,RCD08_6.7_12.7,Which object was taken by the person?,0,Interaction_T1_5655,Interaction_T1,The blanket.,The picture.,The phone/camera.,The laptop.,The blanket. 662,B57IW_11.1_17.1,Which object was taken by the person?,1,Interaction_T1_5661,Interaction_T1,The food.,The phone/camera.,The cup/glass/bottle.,The laptop.,The phone/camera. 663,EQQ2T_6.4_12,Which object was thrown by the person?,3,Interaction_T1_5678,Interaction_T1,The bag.,The pillow.,The towel.,The clothes.,The clothes. 664,EQQ2T_0.1_6.2,Which object was taken by the person?,2,Interaction_T1_5679,Interaction_T1,The book.,The food.,The clothes.,The bag.,The clothes. 665,JKZG5_0.5_8.6,Which object was eaten by the person?,0,Interaction_T1_5686,Interaction_T1,The medicine.,The sandwich.,The window.,The clothes.,The medicine. 666,R1DCJ_0.8_10.2,Which object was taken by the person?,1,Interaction_T1_5690,Interaction_T1,The book.,The cup/glass/bottle.,The phone/camera.,The pillow.,The cup/glass/bottle. 667,JJON5_6.7_14.7,Which object was opened by the person?,3,Interaction_T1_5704,Interaction_T1,The closet/cabinet.,The bag.,The book.,The refrigerator.,The refrigerator. 668,MVPQF_1.7_10.7,Which object was put down by the person?,0,Interaction_T1_5709,Interaction_T1,The bag.,The food.,The laptop.,The cup/glass/bottle.,The bag. 669,Q8TB3_5.5_10.1,Which object was put down by the person?,3,Interaction_T1_5717,Interaction_T1,The pillow.,The dish.,The shoe.,The picture.,The picture. 670,DH66I_3.5_9.9,Which object was put down by the person?,0,Interaction_T1_5726,Interaction_T1,The box.,The sandwich.,The clothes.,The blanket.,The box. 671,BDWIX_15.8_22.2,Which object was put down by the person?,2,Interaction_T1_5799,Interaction_T1,The cup/glass/bottle.,The box.,The blanket.,The bag.,The blanket. 672,BDWIX_18.4_23.8,Which object was tidied up by the person?,3,Interaction_T1_5800,Interaction_T1,The table.,The towel.,The closet/cabinet.,The clothes.,The clothes. 673,TU1C9_10.9_20.7,Which object was eaten by the person?,2,Interaction_T1_5802,Interaction_T1,The medicine.,The blanket.,The sandwich.,The window.,The sandwich. 674,SPUPH_0_7.7,Which object was closed by the person?,1,Interaction_T1_5807,Interaction_T1,The laptop.,The closet/cabinet.,The window.,The door.,The closet/cabinet. 675,V10LX_8.7_15.5,Which object was put down by the person?,3,Interaction_T1_5853,Interaction_T1,The clothes.,The laptop.,The paper/notebook.,The cup/glass/bottle.,The cup/glass/bottle. 676,LQO5R_25_34,Which object was sat on by the person?,3,Interaction_T1_5866,Interaction_T1,The bed.,The floor.,The table.,The sofa/couch.,The sofa/couch. 677,92UB5_24.2_32,Which object was put down by the person?,2,Interaction_T1_5867,Interaction_T1,The sandwich.,The food.,The pillow.,The box.,The pillow. 678,K47J5_24_28.8,Which object was put down by the person?,3,Interaction_T1_5874,Interaction_T1,The pillow.,The broom.,The cup/glass/bottle.,The dish.,The dish. 679,2RRSO_4.4_9,Which object was tidied up by the person?,1,Interaction_T1_5889,Interaction_T1,The closet/cabinet.,The clothes.,The towel.,The table.,The clothes. 680,2RRSO_2.2_10.6,Which object was washed by the person?,1,Interaction_T1_5890,Interaction_T1,The window.,The clothes.,The table.,The dish.,The clothes. 681,KO80I_18_23.1,Which object was put down by the person?,0,Interaction_T1_5891,Interaction_T1,The pillow.,The cup/glass/bottle.,The food.,The shoe.,The pillow. 682,52MV9_13.9_21.4,Which object was put down by the person?,0,Interaction_T1_5897,Interaction_T1,The dish.,The picture.,The cup/glass/bottle.,The food.,The dish. 683,WCERV_1.4_8.4,Which object was put down by the person?,2,Interaction_T1_5899,Interaction_T1,The cup/glass/bottle.,The laptop.,The blanket.,The book.,The blanket. 684,RZY2I_5_10,Which object was opened by the person?,0,Interaction_T1_5905,Interaction_T1,The window.,The bag.,The door.,The closet/cabinet.,The window. 685,NMC5N_11_16,Which object was put down by the person?,0,Interaction_T1_5909,Interaction_T1,The cup/glass/bottle.,The dish.,The towel.,The paper/notebook.,The cup/glass/bottle. 686,DQEC3_0_8.3,Which object was tidied up by the person?,2,Interaction_T1_5930,Interaction_T1,The broom.,The table.,The closet/cabinet.,The clothes.,The closet/cabinet. 687,YUCU2_10.4_16.7,Which object was closed by the person?,0,Interaction_T1_5941,Interaction_T1,The closet/cabinet.,The door.,The laptop.,The window.,The closet/cabinet. 688,NLWBW_2.1_8.5,Which object was put down by the person?,3,Interaction_T1_5943,Interaction_T1,The box.,The food.,The book.,The bag.,The bag. 689,NLWBW_6.8_11.9,Which object was put down by the person?,1,Interaction_T1_5944,Interaction_T1,The paper/notebook.,The bag.,The food.,The blanket.,The bag. 690,NLWBW_6.2_10.8,Which object was taken by the person?,3,Interaction_T1_5945,Interaction_T1,The box.,The food.,The pillow.,The bag.,The bag. 691,D7KU2_7.7_14.1,Which object was put down by the person?,1,Interaction_T1_5946,Interaction_T1,The clothes.,The broom.,The box.,The shoe.,The broom. 692,5EEFP_0_4.2,Which object was put down by the person?,2,Interaction_T1_5950,Interaction_T1,The blanket.,The cup/glass/bottle.,The shoe.,The food.,The shoe. 693,3V2HJ_4.8_14.8,Which object was put down by the person?,1,Interaction_T1_5973,Interaction_T1,The book.,The bag.,The shoe.,The food.,The bag. 694,OA6XR_15.5_22.5,Which object was put down by the person?,3,Interaction_T1_5975,Interaction_T1,The book.,The shoe.,The phone/camera.,The blanket.,The blanket. 695,3064K_19.2_25,Which object was taken by the person?,0,Interaction_T1_5979,Interaction_T1,The dish.,The broom.,The book.,The box.,The dish. 696,3064K_3_8.1,Which object was tidied up by the person?,0,Interaction_T1_5980,Interaction_T1,The blanket.,The broom.,The table.,The clothes.,The blanket. 697,JBY4E_2.8_9.2,Which object was put down by the person?,0,Interaction_T1_5981,Interaction_T1,The blanket.,The broom.,The box.,The book.,The blanket. 698,WN7T3_1.1_9.1,Which object was put down by the person?,0,Interaction_T1_5986,Interaction_T1,The box.,The food.,The sandwich.,The dish.,The box. 699,8J723_25.9_35.5,Which object was opened by the person?,0,Interaction_T1_5990,Interaction_T1,The window.,The refrigerator.,The book.,The closet/cabinet.,The window. 700,3MLVF_16.1_21.2,Which object was closed by the person?,3,Interaction_T1_5995,Interaction_T1,The closet/cabinet.,The door.,The box.,The refrigerator.,The refrigerator. 701,TVJ0L_2.4_7.7,Which object was thrown by the person?,0,Interaction_T1_6041,Interaction_T1,The book.,The pillow.,The towel.,The box.,The book. 702,TVJ0L_0.4_7.4,Which object was put down by the person?,0,Interaction_T1_6042,Interaction_T1,The book.,The laptop.,The bag.,The cup/glass/bottle.,The book. 703,FRLW2_25.7_32,Which object was thrown by the person?,1,Interaction_T1_6052,Interaction_T1,The broom.,The shoe.,The box.,The clothes.,The shoe. 704,FRLW2_8.6_15.4,Which object was put down by the person?,2,Interaction_T1_6053,Interaction_T1,The towel.,The clothes.,The bag.,The pillow.,The bag. 705,FRLW2_3.4_9.4,Which object was taken by the person?,2,Interaction_T1_6054,Interaction_T1,The towel.,The phone/camera.,The bag.,The cup/glass/bottle.,The bag. 706,75KQ6_8.8_16.3,Which object was put down by the person?,0,Interaction_T1_6061,Interaction_T1,The dish.,The book.,The food.,The blanket.,The dish. 707,75KQ6_2.6_7.6,Which object was taken by the person?,3,Interaction_T1_6062,Interaction_T1,The blanket.,The clothes.,The shoe.,The dish.,The dish. 708,MYPU6_0.5_5.8,Which object was thrown by the person?,1,Interaction_T1_6097,Interaction_T1,The book.,The clothes.,The broom.,The pillow.,The clothes. 709,3W6TL_8.4_15.1,Which object was put down by the person?,3,Interaction_T1_6109,Interaction_T1,The cup/glass/bottle.,The clothes.,The box.,The pillow.,The pillow. 710,3W6TL_0_8,Which object was taken by the person?,2,Interaction_T1_6110,Interaction_T1,The box.,The picture.,The pillow.,The bag.,The pillow. 711,3W6TL_0_8,Which object was thrown by the person?,1,Interaction_T1_6111,Interaction_T1,The broom.,The pillow.,The clothes.,The bag.,The pillow. 712,YCGJS_8_14.4,Which object was sat at by the person?,1,Interaction_T1_6113,Interaction_T1,The floor.,The table.,The bed.,The sofa/couch.,The table. 713,86GSE_10.1_20,Which object was sat on by the person?,1,Interaction_T1_6161,Interaction_T1,The table.,The sofa/couch.,The bed.,The floor.,The sofa/couch. 714,86GSE_9.6_19,Which object was taken by the person?,2,Interaction_T1_6162,Interaction_T1,The picture.,The book.,The shoe.,The clothes.,The shoe. 715,9J166_9.9_17.5,Which object was opened by the person?,2,Interaction_T1_6173,Interaction_T1,The door.,The box.,The window.,The closet/cabinet.,The window. 716,AO8RW_3.1_12.6,Which object was put down by the person?,0,Interaction_T1_6198,Interaction_T1,The clothes.,The paper/notebook.,The towel.,The cup/glass/bottle.,The clothes. 717,TGUKM_0_5.2,Which object was thrown by the person?,0,Interaction_T1_6211,Interaction_T1,The book.,The bag.,The box.,The towel.,The book. 718,TGUKM_0_5.5,Which object was put down by the person?,2,Interaction_T1_6212,Interaction_T1,The food.,The bag.,The book.,The sandwich.,The book. 719,Y5ZU3_16.2_22.1,Which object was taken by the person?,2,Interaction_T1_6213,Interaction_T1,The clothes.,The book.,The broom.,The food.,The broom. 720,EXPOA_23.3_28.2,Which object was taken by the person?,2,Interaction_T1_6229,Interaction_T1,The cup/glass/bottle.,The picture.,The clothes.,The blanket.,The clothes. 721,0F453_11.4_20,Which object was taken by the person?,1,Interaction_T1_6233,Interaction_T1,The cup/glass/bottle.,The paper/notebook.,The book.,The phone/camera.,The paper/notebook. 722,0F453_0.3_7.9,Which object was opened by the person?,1,Interaction_T1_6234,Interaction_T1,The bag.,The refrigerator.,The book.,The door.,The refrigerator. 723,5JSFE_21.9_29,Which object was taken by the person?,2,Interaction_T1_6246,Interaction_T1,The bag.,The cup/glass/bottle.,The paper/notebook.,The sandwich.,The paper/notebook. 724,68YR6_15.8_20.5,Which object was closed by the person?,0,Interaction_T1_6254,Interaction_T1,The door.,The laptop.,The window.,The box.,The door. 725,68YR6_15.2_19.5,Which object was opened by the person?,2,Interaction_T1_6255,Interaction_T1,The closet/cabinet.,The bag.,The door.,The book.,The door. 726,G8YWY_4.2_8.8,Which object was put down by the person?,3,Interaction_T1_6257,Interaction_T1,The paper/notebook.,The clothes.,The shoe.,The food.,The food. 727,1C6P3_0.7_8.6,Which object was eaten by the person?,1,Interaction_T1_6283,Interaction_T1,The towel.,The sandwich.,The floor.,The medicine.,The sandwich. 728,M506V_9.4_17.8,Which object was thrown by the person?,1,Interaction_T1_6286,Interaction_T1,The clothes.,The towel.,The box.,The food.,The towel. 729,1ZBUS_4_13.6,Which object was put down by the person?,2,Interaction_T1_6294,Interaction_T1,The cup/glass/bottle.,The food.,The bag.,The clothes.,The bag. 730,1ZBUS_5.2_10.8,Which object was sat at by the person?,1,Interaction_T1_6295,Interaction_T1,The sofa/couch.,The table.,The floor.,The bed.,The table. 731,YLE12_3_9.6,Which object was taken by the person?,2,Interaction_T1_6317,Interaction_T1,The dish.,The picture.,The paper/notebook.,The cup/glass/bottle.,The paper/notebook. 732,YLE12_7.2_12.4,Which object was taken by the person?,1,Interaction_T1_6318,Interaction_T1,The cup/glass/bottle.,The paper/notebook.,The clothes.,The box.,The paper/notebook. 733,YLE12_9.9_16.4,Which object was taken by the person?,1,Interaction_T1_6319,Interaction_T1,The food.,The paper/notebook.,The cup/glass/bottle.,The box.,The paper/notebook. 734,YLE12_6.3_11,Which object was put down by the person?,1,Interaction_T1_6320,Interaction_T1,The laptop.,The paper/notebook.,The shoe.,The book.,The paper/notebook. 735,YLE12_8.4_13.3,Which object was put down by the person?,3,Interaction_T1_6321,Interaction_T1,The box.,The clothes.,The phone/camera.,The paper/notebook.,The paper/notebook. 736,YLE12_11.9_17,Which object was put down by the person?,3,Interaction_T1_6322,Interaction_T1,The clothes.,The bag.,The laptop.,The paper/notebook.,The paper/notebook. 737,I4N6K_17.8_24.3,Which object was taken by the person?,1,Interaction_T1_6332,Interaction_T1,The shoe.,The book.,The laptop.,The cup/glass/bottle.,The book. 738,M2XIS_3.6_9.4,Which object was opened by the person?,3,Interaction_T1_6335,Interaction_T1,The bag.,The refrigerator.,The door.,The laptop.,The laptop. 739,M2XIS_0_6.4,Which object was put down by the person?,3,Interaction_T1_6336,Interaction_T1,The phone/camera.,The clothes.,The cup/glass/bottle.,The laptop.,The laptop. 740,M2XIS_2.7_7.4,Which object was sat on by the person?,2,Interaction_T1_6337,Interaction_T1,The bed.,The floor.,The sofa/couch.,The table.,The sofa/couch. 741,9A58F_2.9_8.1,Which object was thrown by the person?,0,Interaction_T1_6339,Interaction_T1,The shoe.,The clothes.,The towel.,The book.,The shoe. 742,9A58F_15.9_21.2,Which object was closed by the person?,2,Interaction_T1_6340,Interaction_T1,The closet/cabinet.,The book.,The laptop.,The refrigerator.,The laptop. 743,9A58F_6.4_12.9,Which object was opened by the person?,2,Interaction_T1_6341,Interaction_T1,The window.,The refrigerator.,The laptop.,The door.,The laptop. 744,9A58F_5.7_10.9,Which object was taken by the person?,0,Interaction_T1_6342,Interaction_T1,The laptop.,The picture.,The broom.,The towel.,The laptop. 745,9A58F_16.5_21.3,Which object was put down by the person?,1,Interaction_T1_6343,Interaction_T1,The dish.,The laptop.,The bag.,The blanket.,The laptop. 746,024PD_52.3_59,Which object was closed by the person?,2,Interaction_T1_6380,Interaction_T1,The laptop.,The refrigerator.,The book.,The closet/cabinet.,The book. 747,024PD_2.1_10.6,Which object was put down by the person?,0,Interaction_T1_6381,Interaction_T1,The book.,The blanket.,The broom.,The food.,The book. 748,VTIUW_11.2_15.8,Which object was taken by the person?,3,Interaction_T1_6400,Interaction_T1,The dish.,The food.,The laptop.,The phone/camera.,The phone/camera. 749,P2UBC_16.1_21.8,Which object was taken by the person?,0,Interaction_T1_6409,Interaction_T1,The shoe.,The laptop.,The phone/camera.,The book.,The shoe. 750,P2UBC_0_9.3,Which object was lied on by the person?,0,Interaction_T1_6410,Interaction_T1,The sofa/couch.,The food.,The floor.,The bed.,The sofa/couch. 751,P2UBC_6_15.7,Which object was sat on by the person?,3,Interaction_T1_6411,Interaction_T1,The floor.,The bed.,The table.,The sofa/couch.,The sofa/couch. 752,CII5H_6.5_14.7,Which object was tidied up by the person?,1,Interaction_T1_6455,Interaction_T1,The broom.,The clothes.,The blanket.,The table.,The clothes. 753,75RPN_10.2_16.8,Which object was taken by the person?,0,Interaction_T1_6472,Interaction_T1,The pillow.,The blanket.,The clothes.,The food.,The pillow. 754,MA1ON_1_5,Which object was lied on by the person?,0,Interaction_T1_6486,Interaction_T1,The floor.,The table.,The sofa/couch.,The bed.,The floor. 755,IXISD_10.7_15.6,Which object was put down by the person?,1,Interaction_T1_6513,Interaction_T1,The bag.,The shoe.,The book.,The towel.,The shoe. 756,3CAPI_29.1_34,Which object was thrown by the person?,1,Interaction_T1_6523,Interaction_T1,The clothes.,The blanket.,The pillow.,The box.,The blanket. 757,D8OSC_5.9_11.1,Which object was thrown by the person?,1,Interaction_T1_6538,Interaction_T1,The pillow.,The broom.,The towel.,The box.,The broom. 758,D8OSC_5.4_10.9,Which object was put down by the person?,1,Interaction_T1_6539,Interaction_T1,The bag.,The broom.,The phone/camera.,The food.,The broom. 759,4U52R_8.5_15,Which object was put down by the person?,2,Interaction_T1_6554,Interaction_T1,The clothes.,The food.,The box.,The sandwich.,The box. 760,6N7G6_0.2_7.3,Which object was sat at by the person?,0,Interaction_T1_6567,Interaction_T1,The table.,The sofa/couch.,The bed.,The floor.,The table. 761,TWZA4_0.5_6.7,Which object was opened by the person?,3,Interaction_T1_6586,Interaction_T1,The box.,The door.,The bag.,The book.,The book. 762,TWZA4_0_4.2,Which object was taken by the person?,3,Interaction_T1_6587,Interaction_T1,The broom.,The phone/camera.,The pillow.,The book.,The book. 763,M1GW9_0.2_5.2,Which object was taken by the person?,1,Interaction_T1_6589,Interaction_T1,The clothes.,The pillow.,The cup/glass/bottle.,The food.,The pillow. 764,M1GW9_13.5_23.5,Which object was thrown by the person?,1,Interaction_T1_6591,Interaction_T1,The broom.,The pillow.,The clothes.,The shoe.,The pillow. 765,EO6OI_18.6_27.6,Which object was washed by the person?,0,Interaction_T1_6616,Interaction_T1,The table.,The clothes.,The dish.,The window.,The table. 766,EO6OI_33.6_38.9,Which object was taken by the person?,2,Interaction_T1_6617,Interaction_T1,The shoe.,The pillow.,The broom.,The phone/camera.,The broom. 767,EO6OI_40.6_45.7,Which object was put down by the person?,0,Interaction_T1_6618,Interaction_T1,The broom.,The picture.,The food.,The dish.,The broom. 768,L7HA6_27_32.9,Which object was put down by the person?,3,Interaction_T1_6621,Interaction_T1,The sandwich.,The laptop.,The book.,The phone/camera.,The phone/camera. 769,ARCUY_36_41.5,Which object was put down by the person?,0,Interaction_T1_6640,Interaction_T1,The pillow.,The bag.,The dish.,The towel.,The pillow. 770,8G9A9_1.9_7.8,Which object was taken by the person?,1,Interaction_T1_6651,Interaction_T1,The cup/glass/bottle.,The laptop.,The bag.,The broom.,The laptop. 771,8G9A9_17.8_22.7,Which object was opened by the person?,1,Interaction_T1_6652,Interaction_T1,The bag.,The laptop.,The refrigerator.,The door.,The laptop. 772,8G9A9_22.1_27.6,Which object was closed by the person?,2,Interaction_T1_6653,Interaction_T1,The book.,The refrigerator.,The laptop.,The box.,The laptop. 773,A0ZW3_20.9_26.2,Which object was opened by the person?,3,Interaction_T1_6682,Interaction_T1,The door.,The refrigerator.,The window.,The laptop.,The laptop. 774,L8Y8D_47.8_56,Which object was closed by the person?,3,Interaction_T1_6699,Interaction_T1,The box.,The laptop.,The book.,The refrigerator.,The refrigerator. 775,6VF2L_23.1_30.9,Which object was taken by the person?,3,Interaction_T1_6707,Interaction_T1,The pillow.,The broom.,The bag.,The blanket.,The blanket. 776,JF36Q_0_7.8,Which object was closed by the person?,1,Interaction_T1_6708,Interaction_T1,The box.,The window.,The closet/cabinet.,The door.,The window. 777,JF36Q_25.4_31,Which object was closed by the person?,1,Interaction_T1_6709,Interaction_T1,The closet/cabinet.,The laptop.,The refrigerator.,The door.,The laptop. 778,80E3X_0_6.9,Which object was lied on by the person?,3,Interaction_T1_6736,Interaction_T1,The laptop.,The floor.,The sofa/couch.,The bed.,The bed. 779,F6A4W_7.1_15.8,Which object was thrown by the person?,0,Interaction_T1_6756,Interaction_T1,The shoe.,The clothes.,The broom.,The pillow.,The shoe. 780,F6A4W_8_15.1,Which object was taken by the person?,0,Interaction_T1_6757,Interaction_T1,The shoe.,The book.,The cup/glass/bottle.,The towel.,The shoe. 781,F6A4W_21.8_28,Which object was put down by the person?,2,Interaction_T1_6758,Interaction_T1,The clothes.,The phone/camera.,The dish.,The towel.,The dish. 782,AEUVY_16.4_22.9,Which object was put down by the person?,0,Interaction_T1_6787,Interaction_T1,The phone/camera.,The food.,The book.,The clothes.,The phone/camera. 783,KFC28_29.2_35,Which object was closed by the person?,2,Interaction_T1_6788,Interaction_T1,The laptop.,The window.,The closet/cabinet.,The door.,The closet/cabinet. 784,YVH4J_36.8_45.9,Which object was taken by the person?,3,Interaction_T1_6790,Interaction_T1,The cup/glass/bottle.,The food.,The laptop.,The paper/notebook.,The paper/notebook. 785,8DL54_20.3_27.8,Which object was closed by the person?,1,Interaction_T1_6798,Interaction_T1,The closet/cabinet.,The refrigerator.,The box.,The book.,The refrigerator. 786,PHH6B_2.1_7.6,Which object was taken by the person?,3,Interaction_T1_6808,Interaction_T1,The food.,The laptop.,The cup/glass/bottle.,The sandwich.,The sandwich. 787,CSLEP_0_6.1,Which object was lied on by the person?,3,Interaction_T1_6814,Interaction_T1,The door.,The floor.,The sofa/couch.,The bed.,The bed. 788,HFTEO_1.9_11.8,Which object was tidied up by the person?,2,Interaction_T1_6830,Interaction_T1,The table.,The broom.,The clothes.,The towel.,The clothes. 789,8VWV2_1.6_7.3,Which object was sat at by the person?,2,Interaction_T1_6834,Interaction_T1,The bed.,The sofa/couch.,The table.,The floor.,The table. 790,8VWV2_0_7.3,Which object was sat on by the person?,0,Interaction_T1_6835,Interaction_T1,The floor.,The sofa/couch.,The table.,The bed.,The floor. 791,8VWV2_52.5_58.3,Which object was put down by the person?,3,Interaction_T1_6836,Interaction_T1,The food.,The laptop.,The pillow.,The dish.,The dish. 792,SMMK4_10.5_16.2,Which object was taken by the person?,1,Interaction_T1_6841,Interaction_T1,The broom.,The cup/glass/bottle.,The paper/notebook.,The blanket.,The cup/glass/bottle. 793,BLIFO_2.4_10.8,Which object was tidied up by the person?,0,Interaction_T1_6855,Interaction_T1,The towel.,The clothes.,The table.,The closet/cabinet.,The towel. 794,BLIFO_1_9.1,Which object was opened by the person?,0,Interaction_T1_6856,Interaction_T1,The closet/cabinet.,The door.,The window.,The bag.,The closet/cabinet. 795,AWGMW_0_4.9,Which object was lied on by the person?,0,Interaction_T1_6857,Interaction_T1,The sofa/couch.,The floor.,The bed.,The closet/cabinet.,The sofa/couch. 796,J84TZ_0_4.5,Which object was lied on by the person?,3,Interaction_T1_6861,Interaction_T1,The floor.,The door.,The bed.,The sofa/couch.,The sofa/couch. 797,J84TZ_11.8_21,Which object was taken by the person?,2,Interaction_T1_6862,Interaction_T1,The dish.,The box.,The blanket.,The paper/notebook.,The blanket. 798,O2OUX_13.5_17.9,Which object was closed by the person?,1,Interaction_T1_6872,Interaction_T1,The box.,The laptop.,The door.,The book.,The laptop. 799,MC50M_5_11.1,Which object was taken by the person?,3,Interaction_T1_6889,Interaction_T1,The book.,The clothes.,The phone/camera.,The blanket.,The blanket. 800,A5XR5_13.8_19.4,Which object was taken by the person?,3,Interaction_T1_6892,Interaction_T1,The phone/camera.,The box.,The cup/glass/bottle.,The food.,The food. 801,HCM5Y_0_8.4,Which object was sat on by the person?,1,Interaction_T1_6903,Interaction_T1,The table.,The floor.,The bed.,The sofa/couch.,The floor. 802,RKGG5_6_10.7,Which object was thrown by the person?,2,Interaction_T1_6904,Interaction_T1,The food.,The clothes.,The broom.,The blanket.,The broom. 803,RKGG5_12.6_21,Which object was lied on by the person?,2,Interaction_T1_6906,Interaction_T1,The bed.,The refrigerator.,The sofa/couch.,The floor.,The sofa/couch. 804,C69Y1_11_16.7,Which object was closed by the person?,1,Interaction_T1_6920,Interaction_T1,The laptop.,The closet/cabinet.,The door.,The refrigerator.,The closet/cabinet. 805,59KH0_7.7_15.3,Which object was taken by the person?,1,Interaction_T1_6969,Interaction_T1,The towel.,The clothes.,The cup/glass/bottle.,The paper/notebook.,The clothes. 806,3GA59_16.9_21.7,Which object was taken by the person?,1,Interaction_T1_6970,Interaction_T1,The blanket.,The paper/notebook.,The dish.,The box.,The paper/notebook. 807,AXS82_13.7_19.2,Which object was closed by the person?,2,Interaction_T1_6975,Interaction_T1,The closet/cabinet.,The laptop.,The book.,The door.,The book. 808,AXS82_25.1_31,Which object was opened by the person?,3,Interaction_T1_6976,Interaction_T1,The door.,The book.,The laptop.,The refrigerator.,The refrigerator. 809,NE37I_16.1_22.2,Which object was taken by the person?,2,Interaction_T1_6982,Interaction_T1,The blanket.,The clothes.,The pillow.,The dish.,The pillow. 810,IWK2Y_5.5_11,Which object was taken by the person?,0,Interaction_T1_6990,Interaction_T1,The pillow.,The phone/camera.,The cup/glass/bottle.,The blanket.,The pillow. 811,6KIA4_17.5_24,Which object was washed by the person?,3,Interaction_T1_7007,Interaction_T1,The mirror.,The clothes.,The cup/glass/bottle.,The table.,The table. 812,6KIA4_0_4.1,Which object was taken by the person?,2,Interaction_T1_7008,Interaction_T1,The bag.,The broom.,The dish.,The towel.,The dish. 813,J4RPL_16.5_22.5,Which object was put down by the person?,0,Interaction_T1_7016,Interaction_T1,The paper/notebook.,The bag.,The clothes.,The towel.,The paper/notebook. 814,J4RPL_0_4.8,Which object was taken by the person?,0,Interaction_T1_7017,Interaction_T1,The paper/notebook.,The laptop.,The picture.,The cup/glass/bottle.,The paper/notebook. 815,JOYAJ_13.4_19.4,Which object was closed by the person?,0,Interaction_T1_7064,Interaction_T1,The refrigerator.,The box.,The laptop.,The door.,The refrigerator. 816,55AH5_15.1_21.8,Which object was lied on by the person?,0,Interaction_T1_7078,Interaction_T1,The sofa/couch.,The refrigerator.,The bed.,The floor.,The sofa/couch. 817,L58KN_8.5_13.6,Which object was thrown by the person?,0,Interaction_T1_7080,Interaction_T1,The towel.,The blanket.,The bag.,The pillow.,The towel. 818,L58KN_8.2_13.6,Which object was put down by the person?,0,Interaction_T1_7081,Interaction_T1,The towel.,The clothes.,The picture.,The cup/glass/bottle.,The towel. 819,M5UQR_12.4_19.7,Which object was put down by the person?,3,Interaction_T1_7085,Interaction_T1,The picture.,The cup/glass/bottle.,The food.,The phone/camera.,The phone/camera. 820,937EW_25_33,Which object was tidied up by the person?,2,Interaction_T1_7088,Interaction_T1,The clothes.,The blanket.,The closet/cabinet.,The table.,The closet/cabinet. 821,937EW_0_5,Which object was taken by the person?,3,Interaction_T1_7089,Interaction_T1,The food.,The shoe.,The sandwich.,The clothes.,The clothes. 822,937EW_6.7_14.1,Which object was taken by the person?,3,Interaction_T1_7090,Interaction_T1,The laptop.,The pillow.,The cup/glass/bottle.,The clothes.,The clothes. 823,MNC10_11.7_17.5,Which object was taken by the person?,2,Interaction_T1_7091,Interaction_T1,The cup/glass/bottle.,The paper/notebook.,The food.,The sandwich.,The food. 824,IKJB4_14.5_23.6,Which object was put down by the person?,0,Interaction_T1_7094,Interaction_T1,The paper/notebook.,The laptop.,The broom.,The dish.,The paper/notebook. 825,I562C_14.5_19.9,Which object was taken by the person?,1,Interaction_T1_7096,Interaction_T1,The box.,The dish.,The phone/camera.,The bag.,The dish. 826,UVP3F_4.1_13,Which object was opened by the person?,0,Interaction_T1_7103,Interaction_T1,The refrigerator.,The box.,The window.,The book.,The refrigerator. 827,UVP3F_7.9_13.3,Which object was closed by the person?,2,Interaction_T1_7104,Interaction_T1,The closet/cabinet.,The laptop.,The refrigerator.,The door.,The refrigerator. 828,GPR89_51.1_56.9,Which object was put down by the person?,1,Interaction_T1_7107,Interaction_T1,The cup/glass/bottle.,The paper/notebook.,The sandwich.,The food.,The paper/notebook. 829,KRLT7_4.7_12.5,Which object was thrown by the person?,1,Interaction_T1_7114,Interaction_T1,The broom.,The clothes.,The pillow.,The blanket.,The clothes. 830,QEV60_2.7_8.5,Which object was put down by the person?,3,Interaction_T1_7124,Interaction_T1,The dish.,The broom.,The food.,The pillow.,The pillow. 831,QEV60_0_4.6,Which object was taken by the person?,2,Interaction_T1_7125,Interaction_T1,The blanket.,The food.,The pillow.,The cup/glass/bottle.,The pillow. 832,9OMY1_22_28,Which object was sat on by the person?,0,Interaction_T1_7145,Interaction_T1,The sofa/couch.,The bed.,The floor.,The table.,The sofa/couch. 833,9OMY1_1.2_6.3,Which object was opened by the person?,1,Interaction_T1_7146,Interaction_T1,The bag.,The box.,The closet/cabinet.,The laptop.,The box. 834,JLGLU_15.4_22.9,Which object was taken by the person?,2,Interaction_T1_7148,Interaction_T1,The phone/camera.,The clothes.,The towel.,The cup/glass/bottle.,The towel. 835,F24GU_10.8_18.7,Which object was lied on by the person?,0,Interaction_T1_7151,Interaction_T1,The floor.,The bed.,The sofa/couch.,The blanket.,The floor. 836,IZ2XX_9.1_14.2,Which object was put down by the person?,1,Interaction_T1_7153,Interaction_T1,The shoe.,The book.,The bag.,The food.,The book. 837,GO761_3.5_9.7,Which object was taken by the person?,2,Interaction_T1_7154,Interaction_T1,The phone/camera.,The book.,The pillow.,The bag.,The pillow. 838,GO761_3_12,Which object was put down by the person?,1,Interaction_T1_7155,Interaction_T1,The towel.,The pillow.,The paper/notebook.,The phone/camera.,The pillow. 839,KONWE_17.6_22.5,Which object was thrown by the person?,2,Interaction_T1_7159,Interaction_T1,The blanket.,The clothes.,The pillow.,The shoe.,The pillow. 840,UMT5R_0_6,Which object was taken by the person?,0,Interaction_T1_7166,Interaction_T1,The bag.,The cup/glass/bottle.,The clothes.,The book.,The bag. 841,OE751_18.4_23.8,Which object was taken by the person?,2,Interaction_T1_7182,Interaction_T1,The cup/glass/bottle.,The bag.,The blanket.,The paper/notebook.,The blanket. 842,1HGEX_16.8_24.4,Which object was opened by the person?,0,Interaction_T1_7183,Interaction_T1,The book.,The box.,The window.,The door.,The book. 843,1HGEX_26.8_31,Which object was closed by the person?,1,Interaction_T1_7184,Interaction_T1,The door.,The book.,The closet/cabinet.,The box.,The book. 844,1HGEX_15.1_21.1,Which object was taken by the person?,1,Interaction_T1_7185,Interaction_T1,The food.,The book.,The dish.,The box.,The book. 845,EDXBD_0_9.7,Which object was sat at by the person?,0,Interaction_T1_7203,Interaction_T1,The table.,The bed.,The floor.,The sofa/couch.,The table. 846,V115C_17.6_25,Which object was put down by the person?,3,Interaction_T1_7208,Interaction_T1,The laptop.,The cup/glass/bottle.,The pillow.,The clothes.,The clothes. 847,V115C_18.2_23,Which object was thrown by the person?,1,Interaction_T1_7209,Interaction_T1,The pillow.,The clothes.,The towel.,The shoe.,The clothes. 848,428VQ_3.8_8.5,Which object was closed by the person?,1,Interaction_T1_7231,Interaction_T1,The refrigerator.,The book.,The box.,The door.,The book. 849,428VQ_0_8,Which object was opened by the person?,3,Interaction_T1_7232,Interaction_T1,The door.,The bag.,The refrigerator.,The book.,The book. 850,NR9L2_16.4_23.7,Which object was opened by the person?,1,Interaction_T1_7233,Interaction_T1,The laptop.,The closet/cabinet.,The door.,The bag.,The closet/cabinet. 851,NR9L2_18.3_27.8,Which object was put down by the person?,2,Interaction_T1_7234,Interaction_T1,The blanket.,The phone/camera.,The food.,The clothes.,The food. 852,NR9L2_15.3_23.2,Which object was closed by the person?,1,Interaction_T1_7235,Interaction_T1,The door.,The closet/cabinet.,The window.,The laptop.,The closet/cabinet. 853,QPX3S_6.4_11.4,Which object was put down by the person?,2,Interaction_T1_7248,Interaction_T1,The clothes.,The sandwich.,The food.,The bag.,The food. 854,RBC8N_16.4_25.2,Which object was taken by the person?,2,Interaction_T1_7254,Interaction_T1,The cup/glass/bottle.,The clothes.,The pillow.,The broom.,The pillow. 855,KFGXC_10.8_17.7,Which object was put down by the person?,1,Interaction_T1_7271,Interaction_T1,The book.,The food.,The cup/glass/bottle.,The clothes.,The food. 856,B7LO8_0_5.9,Which object was taken by the person?,3,Interaction_T1_7276,Interaction_T1,The box.,The shoe.,The cup/glass/bottle.,The clothes.,The clothes. 857,B7LO8_14.5_19,Which object was taken by the person?,0,Interaction_T1_7277,Interaction_T1,The phone/camera.,The food.,The box.,The pillow.,The phone/camera. 858,IKZN3_8.1_13.5,Which object was put down by the person?,1,Interaction_T1_7280,Interaction_T1,The dish.,The cup/glass/bottle.,The picture.,The bag.,The cup/glass/bottle. 859,IU5TH_6.6_14.2,Which object was closed by the person?,0,Interaction_T1_7289,Interaction_T1,The laptop.,The window.,The closet/cabinet.,The door.,The laptop. 860,E6A0Y_5_11,Which object was put down by the person?,1,Interaction_T1_7301,Interaction_T1,The cup/glass/bottle.,The clothes.,The box.,The shoe.,The clothes. 861,E6A0Y_5.9_13.4,Which object was washed by the person?,2,Interaction_T1_7302,Interaction_T1,The mirror.,The cup/glass/bottle.,The clothes.,The dish.,The clothes. 862,KUBUA_0_6.1,Which object was put down by the person?,0,Interaction_T1_7315,Interaction_T1,The broom.,The cup/glass/bottle.,The food.,The blanket.,The broom. 863,DQ46N_22.4_28.7,Which object was closed by the person?,0,Interaction_T1_7326,Interaction_T1,The closet/cabinet.,The window.,The laptop.,The door.,The closet/cabinet. 864,M1TZR_27.5_36.2,Which object was taken by the person?,0,Interaction_T1_7332,Interaction_T1,The towel.,The cup/glass/bottle.,The broom.,The laptop.,The towel. 865,O8PO3_1.8_10,Which object was taken by the person?,3,Interaction_T1_7347,Interaction_T1,The paper/notebook.,The clothes.,The picture.,The dish.,The dish. 866,UDAQU_15.3_20.4,Which object was put down by the person?,3,Interaction_T1_7358,Interaction_T1,The picture.,The book.,The shoe.,The sandwich.,The sandwich. 867,9M5UE_11.5_16.9,Which object was taken by the person?,2,Interaction_T1_7377,Interaction_T1,The blanket.,The food.,The dish.,The laptop.,The dish. 868,R74DE_17.2_22.7,Which object was put down by the person?,3,Interaction_T1_7380,Interaction_T1,The clothes.,The phone/camera.,The cup/glass/bottle.,The blanket.,The blanket. 869,Q6WH2_29.5_36,Which object was opened by the person?,0,Interaction_T1_7390,Interaction_T1,The book.,The closet/cabinet.,The laptop.,The bag.,The book. 870,7ZCXJ_0_9.2,Which object was lied on by the person?,2,Interaction_T1_7426,Interaction_T1,The sofa/couch.,The pillow.,The floor.,The bed.,The floor. 871,7ZCXJ_5.5_12.6,Which object was sat on by the person?,2,Interaction_T1_7427,Interaction_T1,The table.,The sofa/couch.,The floor.,The bed.,The floor. 872,3UZ88_24.6_30.9,Which object was closed by the person?,0,Interaction_T1_7447,Interaction_T1,The door.,The box.,The refrigerator.,The book.,The door. 873,Y7WEK_24.6_29.2,Which object was closed by the person?,0,Interaction_T1_7458,Interaction_T1,The book.,The closet/cabinet.,The door.,The box.,The book. 874,WH1S5_6.8_11.5,Which object was taken by the person?,0,Interaction_T1_7466,Interaction_T1,The sandwich.,The box.,The clothes.,The shoe.,The sandwich. 875,V7PGV_19.5_25.1,Which object was put down by the person?,0,Interaction_T1_7484,Interaction_T1,The towel.,The box.,The phone/camera.,The dish.,The towel. 876,SMVKB_0_3.6,Which object was taken by the person?,3,Interaction_T1_7485,Interaction_T1,The towel.,The bag.,The phone/camera.,The pillow.,The pillow. 877,RFMRB_10.1_17.1,Which object was put down by the person?,2,Interaction_T1_7497,Interaction_T1,The clothes.,The pillow.,The blanket.,The towel.,The blanket. 878,RFMRB_11.9_17.4,Which object was tidied up by the person?,3,Interaction_T1_7498,Interaction_T1,The clothes.,The closet/cabinet.,The broom.,The blanket.,The blanket. 879,0OE6M_6_12.2,Which object was put down by the person?,3,Interaction_T1_7544,Interaction_T1,The clothes.,The paper/notebook.,The phone/camera.,The towel.,The towel. 880,0OE6M_4.5_11.9,Which object was taken by the person?,1,Interaction_T1_7546,Interaction_T1,The book.,The towel.,The broom.,The laptop.,The towel. 881,G4E4S_53.2_60,Which object was closed by the person?,2,Interaction_T1_7550,Interaction_T1,The door.,The box.,The closet/cabinet.,The laptop.,The closet/cabinet. 882,BQAUC_2.1_8,Which object was put down by the person?,0,Interaction_T1_7551,Interaction_T1,The shoe.,The clothes.,The food.,The phone/camera.,The shoe. 883,1HAYV_0_4.3,Which object was eaten by the person?,3,Interaction_T1_7553,Interaction_T1,The laptop.,The medicine.,The bag.,The sandwich.,The sandwich. 884,HOGVD_0_8.3,Which object was opened by the person?,2,Interaction_T1_7563,Interaction_T1,The book.,The refrigerator.,The bag.,The door.,The bag. 885,M5S4U_19_28,Which object was tidied up by the person?,0,Interaction_T1_7601,Interaction_T1,The closet/cabinet.,The clothes.,The blanket.,The table.,The closet/cabinet. 886,M5S4U_26.4_30.9,Which object was thrown by the person?,0,Interaction_T1_7602,Interaction_T1,The towel.,The pillow.,The food.,The clothes.,The towel. 887,M5S4U_26.4_30.9,Which object was put down by the person?,0,Interaction_T1_7603,Interaction_T1,The towel.,The food.,The book.,The pillow.,The towel. 888,8BBX0_18.5_25.1,Which object was taken by the person?,3,Interaction_T1_7605,Interaction_T1,The picture.,The food.,The paper/notebook.,The bag.,The bag. 889,8BBX0_8.1_14.6,Which object was put down by the person?,0,Interaction_T1_7606,Interaction_T1,The bag.,The blanket.,The laptop.,The clothes.,The bag. 890,CDIW7_6.6_13.5,Which object was put down by the person?,1,Interaction_T1_7622,Interaction_T1,The clothes.,The box.,The pillow.,The towel.,The box. 891,MQGVS_20.7_27.1,Which object was put down by the person?,0,Interaction_T1_7635,Interaction_T1,The blanket.,The picture.,The bag.,The box.,The blanket. 892,MQGVS_3_9.7,Which object was taken by the person?,1,Interaction_T1_7636,Interaction_T1,The sandwich.,The blanket.,The cup/glass/bottle.,The laptop.,The blanket. 893,MQGVS_22.2_28.2,Which object was thrown by the person?,0,Interaction_T1_7637,Interaction_T1,The blanket.,The pillow.,The bag.,The broom.,The blanket. 894,MQGVS_5.9_13,Which object was tidied up by the person?,2,Interaction_T1_7638,Interaction_T1,The broom.,The closet/cabinet.,The blanket.,The table.,The blanket. 895,PYIA3_1.4_7,Which object was opened by the person?,3,Interaction_T1_7642,Interaction_T1,The laptop.,The door.,The closet/cabinet.,The refrigerator.,The refrigerator. 896,ZA7ST_28.2_32.4,Which object was taken by the person?,2,Interaction_T1_7650,Interaction_T1,The book.,The paper/notebook.,The bag.,The picture.,The bag. 897,23YS1_33.9_43.3,Which object was tidied up by the person?,2,Interaction_T1_7681,Interaction_T1,The table.,The clothes.,The closet/cabinet.,The blanket.,The closet/cabinet. 898,X4DOF_11.8_17,Which object was put down by the person?,3,Interaction_T1_7690,Interaction_T1,The dish.,The phone/camera.,The cup/glass/bottle.,The pillow.,The pillow. 899,X4DOF_0_5.5,Which object was taken by the person?,2,Interaction_T1_7691,Interaction_T1,The sandwich.,The broom.,The pillow.,The cup/glass/bottle.,The pillow. 900,72R6A_0.3_6.6,Which object was taken by the person?,2,Interaction_T1_7695,Interaction_T1,The cup/glass/bottle.,The pillow.,The towel.,The food.,The towel. 901,72R6A_19.9_26.5,Which object was put down by the person?,0,Interaction_T1_7696,Interaction_T1,The towel.,The cup/glass/bottle.,The laptop.,The bag.,The towel. 902,3AE3T_2.1_7.1,Which object was put down by the person?,2,Interaction_T1_7702,Interaction_T1,The phone/camera.,The clothes.,The laptop.,The broom.,The laptop. 903,O7OD2_8_16.1,Which object was eaten by the person?,0,Interaction_T1_7708,Interaction_T1,The sandwich.,The towel.,The table.,The medicine.,The sandwich. 904,B69CF_14_20.6,Which object was closed by the person?,3,Interaction_T1_7740,Interaction_T1,The refrigerator.,The closet/cabinet.,The book.,The window.,The window. 905,5GPOJ_8.5_13.5,Which object was closed by the person?,0,Interaction_T1_7757,Interaction_T1,The book.,The door.,The window.,The refrigerator.,The book. 906,80FWF_9_15.4,Which object was put down by the person?,1,Interaction_T1_7764,Interaction_T1,The dish.,The towel.,The cup/glass/bottle.,The picture.,The towel. 907,80FWF_6.7_15.7,Which object was tidied up by the person?,1,Interaction_T1_7765,Interaction_T1,The table.,The towel.,The clothes.,The closet/cabinet.,The towel. 908,MY5CQ_11.5_17.4,Which object was closed by the person?,3,Interaction_T1_7778,Interaction_T1,The closet/cabinet.,The box.,The door.,The laptop.,The laptop. 909,K1D2G_5.1_15.1,Which object was tidied up by the person?,2,Interaction_T1_7780,Interaction_T1,The clothes.,The broom.,The blanket.,The table.,The blanket. 910,K1D2G_8.5_16.8,Which object was thrown by the person?,2,Interaction_T1_7781,Interaction_T1,The clothes.,The food.,The blanket.,The book.,The blanket. 911,E18UD_13.2_21.4,Which object was taken by the person?,1,Interaction_T1_7792,Interaction_T1,The cup/glass/bottle.,The food.,The pillow.,The bag.,The food. 912,KNGUT_0_5,Which object was opened by the person?,0,Interaction_T1_7801,Interaction_T1,The bag.,The door.,The refrigerator.,The window.,The bag. 913,MYZLT_33.5_38.7,Which object was taken by the person?,3,Interaction_T1_7810,Interaction_T1,The clothes.,The picture.,The dish.,The towel.,The towel. 914,0SBT3_1.8_7,Which object was opened by the person?,3,Interaction_T1_7848,Interaction_T1,The closet/cabinet.,The bag.,The box.,The book.,The book. 915,0SBT3_0_7,Which object was sat on by the person?,1,Interaction_T1_7849,Interaction_T1,The table.,The sofa/couch.,The bed.,The floor.,The sofa/couch. 916,0SBT3_0.8_5.3,Which object was put down by the person?,1,Interaction_T1_7851,Interaction_T1,The laptop.,The sandwich.,The picture.,The phone/camera.,The sandwich. 917,6C4DV_0.5_7,Which object was tidied up by the person?,2,Interaction_T1_7859,Interaction_T1,The table.,The towel.,The closet/cabinet.,The clothes.,The closet/cabinet. 918,JXNEN_10.4_17.7,Which object was eaten by the person?,2,Interaction_T1_7869,Interaction_T1,The medicine.,The box.,The sandwich.,The door.,The sandwich. 919,3EDV7_2.6_10.4,Which object was washed by the person?,3,Interaction_T1_7874,Interaction_T1,The dish.,The table.,The window.,The clothes.,The clothes. 920,0OSJY_8.6_14.7,Which object was put down by the person?,3,Interaction_T1_7908,Interaction_T1,The book.,The towel.,The bag.,The broom.,The broom. 921,013SD_0_4.3,Which object was put down by the person?,0,Interaction_T1_7912,Interaction_T1,The box.,The food.,The bag.,The paper/notebook.,The box. 922,BJXRT_16.6_24.3,Which object was taken by the person?,1,Interaction_T1_7921,Interaction_T1,The food.,The dish.,The cup/glass/bottle.,The blanket.,The dish. 923,U3ANG_25.7_35.6,Which object was put down by the person?,2,Interaction_T1_7930,Interaction_T1,The phone/camera.,The sandwich.,The book.,The food.,The book. 924,ZX1R7_12.6_20,Which object was taken by the person?,3,Interaction_T1_7942,Interaction_T1,The box.,The clothes.,The broom.,The pillow.,The pillow. 925,ELBLK_16.2_21.1,Which object was taken by the person?,1,Interaction_T1_7947,Interaction_T1,The phone/camera.,The food.,The shoe.,The cup/glass/bottle.,The food. 926,S1J2Q_0_9.7,Which object was tidied up by the person?,3,Interaction_T1_7962,Interaction_T1,The table.,The closet/cabinet.,The blanket.,The clothes.,The clothes. 927,S1J2Q_22.3_28.4,Which object was closed by the person?,0,Interaction_T1_7963,Interaction_T1,The refrigerator.,The book.,The laptop.,The closet/cabinet.,The refrigerator. 928,UIERL_13.5_19.2,Which object was taken by the person?,1,Interaction_T1_7974,Interaction_T1,The laptop.,The food.,The box.,The cup/glass/bottle.,The food. 929,OJIEC_5.7_12.2,Which object was taken by the person?,3,Interaction_T1_7977,Interaction_T1,The cup/glass/bottle.,The clothes.,The food.,The towel.,The towel. 930,KZODG_15.3_22.9,Which object was closed by the person?,0,Interaction_T1_7981,Interaction_T1,The laptop.,The refrigerator.,The box.,The book.,The laptop. 931,3DO95_13.6_23,Which object was put down by the person?,0,Interaction_T1_7982,Interaction_T1,The pillow.,The dish.,The book.,The sandwich.,The pillow. 932,3ND23_8.1_13.9,Which object was sat on by the person?,0,Interaction_T1_7985,Interaction_T1,The sofa/couch.,The bed.,The floor.,The table.,The sofa/couch. 933,3ND23_11.6_20.2,Which object was taken by the person?,2,Interaction_T1_7987,Interaction_T1,The laptop.,The sandwich.,The blanket.,The bag.,The blanket. 934,3ND23_9.9_19.9,Which object was put down by the person?,2,Interaction_T1_7988,Interaction_T1,The food.,The picture.,The blanket.,The dish.,The blanket. 935,HFWE9_0_3.1,Which object was taken by the person?,3,Interaction_T1_8019,Interaction_T1,The book.,The cup/glass/bottle.,The clothes.,The sandwich.,The sandwich. 936,ZOMM2_26.1_32,Which object was eaten by the person?,0,Interaction_T1_8031,Interaction_T1,The sandwich.,The closet/cabinet.,The clothes.,The medicine.,The sandwich. 937,27JQL_6.4_11.9,Which object was put down by the person?,0,Interaction_T1_8035,Interaction_T1,The towel.,The food.,The clothes.,The dish.,The towel. 938,27JQL_6.8_11.6,Which object was thrown by the person?,0,Interaction_T1_8036,Interaction_T1,The towel.,The pillow.,The bag.,The book.,The towel. 939,27JQL_3_12.1,Which object was taken by the person?,0,Interaction_T1_8037,Interaction_T1,The towel.,The broom.,The dish.,The food.,The towel. 940,O2DXE_3_10.6,Which object was put down by the person?,1,Interaction_T1_8048,Interaction_T1,The picture.,The blanket.,The phone/camera.,The laptop.,The blanket. 941,56XKK_4.3_14.3,Which object was put down by the person?,2,Interaction_T1_8054,Interaction_T1,The clothes.,The cup/glass/bottle.,The bag.,The paper/notebook.,The bag. 942,9207X_18.1_22,Which object was closed by the person?,1,Interaction_T1_8078,Interaction_T1,The door.,The closet/cabinet.,The laptop.,The window.,The closet/cabinet. 943,MDG2T_8.3_14.1,Which object was taken by the person?,0,Interaction_T1_8079,Interaction_T1,The towel.,The blanket.,The book.,The phone/camera.,The towel. 944,MDG2T_14.8_24.8,Which object was put down by the person?,3,Interaction_T1_8081,Interaction_T1,The phone/camera.,The food.,The cup/glass/bottle.,The towel.,The towel. 945,MDG2T_15_23.9,Which object was thrown by the person?,1,Interaction_T1_8082,Interaction_T1,The pillow.,The towel.,The book.,The box.,The towel. 946,IHSRC_18_27.8,Which object was taken by the person?,0,Interaction_T1_8092,Interaction_T1,The picture.,The clothes.,The book.,The broom.,The picture. 947,IHSRC_0_4.3,Which object was taken by the person?,3,Interaction_T1_8093,Interaction_T1,The bag.,The blanket.,The box.,The shoe.,The shoe. 948,QXEWB_0_3.7,Which object was thrown by the person?,2,Interaction_T1_8100,Interaction_T1,The blanket.,The box.,The book.,The clothes.,The book. 949,84893_7.8_15.3,Which object was tidied up by the person?,1,Interaction_T1_8104,Interaction_T1,The table.,The blanket.,The broom.,The clothes.,The blanket. 950,TCN06_12.3_18.8,Which object was tidied up by the person?,1,Interaction_T1_8114,Interaction_T1,The towel.,The blanket.,The broom.,The clothes.,The blanket. 951,TAGEG_14.2_20,Which object was put down by the person?,1,Interaction_T1_8132,Interaction_T1,The food.,The dish.,The bag.,The clothes.,The dish. 952,TAGEG_15.1_20,Which object was tidied up by the person?,2,Interaction_T1_8133,Interaction_T1,The blanket.,The table.,The closet/cabinet.,The towel.,The closet/cabinet. 953,TAGEG_8.7_13.2,Which object was taken by the person?,3,Interaction_T1_8134,Interaction_T1,The book.,The towel.,The cup/glass/bottle.,The dish.,The dish. 954,KXCSL_3.1_9.5,Which object was closed by the person?,0,Interaction_T1_8140,Interaction_T1,The refrigerator.,The laptop.,The door.,The closet/cabinet.,The refrigerator. 955,WV9FZ_23_30,Which object was sat at by the person?,2,Interaction_T1_8155,Interaction_T1,The bed.,The sofa/couch.,The table.,The floor.,The table. 956,ZZ89F_13.6_20.6,Which object was closed by the person?,2,Interaction_T1_8201,Interaction_T1,The box.,The door.,The refrigerator.,The closet/cabinet.,The refrigerator. 957,JY6TC_0_4,Which object was lied on by the person?,2,Interaction_T1_8209,Interaction_T1,The blanket.,The floor.,The bed.,The sofa/couch.,The bed. 958,JY6TC_0.8_9.7,Which object was sat on by the person?,1,Interaction_T1_8210,Interaction_T1,The sofa/couch.,The bed.,The floor.,The table.,The bed. 959,0CESB_23.3_32,Which object was tidied up by the person?,2,Interaction_T1_8214,Interaction_T1,The table.,The clothes.,The blanket.,The closet/cabinet.,The blanket. 960,0CESB_20_27,Which object was taken by the person?,0,Interaction_T1_8215,Interaction_T1,The blanket.,The box.,The broom.,The food.,The blanket. 961,Z6HEA_2.6_11.4,Which object was washed by the person?,1,Interaction_T1_8233,Interaction_T1,The cup/glass/bottle.,The clothes.,The table.,The mirror.,The clothes. 962,Z6HEA_9.1_16.2,Which object was sat on by the person?,1,Interaction_T1_8235,Interaction_T1,The bed.,The floor.,The sofa/couch.,The table.,The floor. 963,10AEA_0_3.5,Which object was taken by the person?,1,Interaction_T1_8240,Interaction_T1,The sandwich.,The towel.,The laptop.,The clothes.,The towel. 964,10AEA_0.6_6,Which object was thrown by the person?,0,Interaction_T1_8241,Interaction_T1,The towel.,The pillow.,The shoe.,The food.,The towel. 965,ZFQNZ_8.9_13.8,Which object was closed by the person?,0,Interaction_T1_8246,Interaction_T1,The refrigerator.,The closet/cabinet.,The book.,The window.,The refrigerator. 966,ZFQNZ_1.5_7.8,Which object was opened by the person?,0,Interaction_T1_8248,Interaction_T1,The refrigerator.,The laptop.,The book.,The closet/cabinet.,The refrigerator. 967,HL5OP_14.4_21.7,Which object was thrown by the person?,1,Interaction_T1_8270,Interaction_T1,The towel.,The food.,The box.,The book.,The food. 968,HL5OP_28.5_35.1,Which object was taken by the person?,0,Interaction_T1_8271,Interaction_T1,The dish.,The cup/glass/bottle.,The paper/notebook.,The food.,The dish. 969,HL5OP_28.9_37,Which object was tidied up by the person?,1,Interaction_T1_8272,Interaction_T1,The towel.,The table.,The blanket.,The clothes.,The table. 970,HL5OP_19_27.9,Which object was taken by the person?,1,Interaction_T1_8274,Interaction_T1,The towel.,The dish.,The sandwich.,The phone/camera.,The dish. 971,BZD0Q_12.9_22.8,Which object was taken by the person?,1,Interaction_T1_8284,Interaction_T1,The paper/notebook.,The bag.,The dish.,The clothes.,The bag. 972,Z70KK_8_15,Which object was washed by the person?,1,Interaction_T1_8297,Interaction_T1,The mirror.,The table.,The clothes.,The window.,The table. 973,Z70KK_21_26,Which object was taken by the person?,3,Interaction_T1_8298,Interaction_T1,The blanket.,The bag.,The clothes.,The broom.,The broom. 974,OAHDH_13.9_20.6,Which object was put down by the person?,2,Interaction_T1_8304,Interaction_T1,The shoe.,The phone/camera.,The dish.,The food.,The dish. 975,OAHDH_17.1_23,Which object was washed by the person?,2,Interaction_T1_8305,Interaction_T1,The table.,The cup/glass/bottle.,The dish.,The clothes.,The dish. 976,KFI7N_5.5_10,Which object was thrown by the person?,3,Interaction_T1_8347,Interaction_T1,The blanket.,The pillow.,The towel.,The broom.,The broom. 977,HA02S_31.4_38,Which object was put down by the person?,3,Interaction_T1_8354,Interaction_T1,The phone/camera.,The towel.,The sandwich.,The broom.,The broom. 978,V31YX_5.2_10.8,Which object was taken by the person?,0,Interaction_T1_8360,Interaction_T1,The food.,The shoe.,The cup/glass/bottle.,The clothes.,The food. 979,16UNJ_6.1_14,Which object was taken by the person?,3,Interaction_T1_8361,Interaction_T1,The food.,The blanket.,The bag.,The shoe.,The shoe. 980,SUI1X_1.7_10.3,Which object was opened by the person?,3,Interaction_T1_8366,Interaction_T1,The box.,The door.,The laptop.,The bag.,The bag. 981,9AFSH_3.5_10.7,Which object was thrown by the person?,0,Interaction_T1_8383,Interaction_T1,The pillow.,The box.,The shoe.,The clothes.,The pillow. 982,9AFSH_2.4_7.2,Which object was put down by the person?,1,Interaction_T1_8384,Interaction_T1,The bag.,The pillow.,The cup/glass/bottle.,The sandwich.,The pillow. 983,DBT6E_8.6_15.1,Which object was put down by the person?,3,Interaction_T1_8393,Interaction_T1,The food.,The dish.,The broom.,The bag.,The bag. 984,CR5G1_13.1_18.6,Which object was taken by the person?,0,Interaction_T1_8424,Interaction_T1,The blanket.,The shoe.,The towel.,The pillow.,The blanket. 985,TVCQF_12_17,Which object was opened by the person?,3,Interaction_T1_8448,Interaction_T1,The laptop.,The door.,The bag.,The box.,The box. 986,TVCQF_6.5_13.9,Which object was sat at by the person?,1,Interaction_T1_8449,Interaction_T1,The floor.,The table.,The bed.,The sofa/couch.,The table. 987,LLOGB_8.7_14.1,Which object was taken by the person?,3,Interaction_T1_8466,Interaction_T1,The cup/glass/bottle.,The broom.,The blanket.,The phone/camera.,The phone/camera. 988,W2DAK_9.5_17.4,Which object was opened by the person?,1,Interaction_T1_8477,Interaction_T1,The refrigerator.,The box.,The window.,The closet/cabinet.,The box. 989,CSYES_9.6_17,Which object was put down by the person?,0,Interaction_T1_8478,Interaction_T1,The towel.,The bag.,The cup/glass/bottle.,The clothes.,The towel. 990,CSYES_10.7_17,Which object was taken by the person?,1,Interaction_T1_8479,Interaction_T1,The paper/notebook.,The phone/camera.,The clothes.,The pillow.,The phone/camera. 991,NV4FC_0_3.1,Which object was sat on by the person?,3,Interaction_T1_8482,Interaction_T1,The sofa/couch.,The floor.,The table.,The bed.,The bed. 992,NV4FC_15.7_21.3,Which object was thrown by the person?,2,Interaction_T1_8484,Interaction_T1,The broom.,The box.,The shoe.,The bag.,The shoe. 993,XFRYR_8.8_16.2,Which object was closed by the person?,3,Interaction_T1_8486,Interaction_T1,The book.,The window.,The door.,The closet/cabinet.,The closet/cabinet. 994,AJTDO_20.8_25.3,Which object was thrown by the person?,1,Interaction_T1_8498,Interaction_T1,The clothes.,The pillow.,The blanket.,The broom.,The pillow. 995,AJTDO_9_18.5,Which object was put down by the person?,1,Interaction_T1_8499,Interaction_T1,The broom.,The pillow.,The paper/notebook.,The book.,The pillow. 996,8VSV6_9.2_17,Which object was sat at by the person?,0,Interaction_T1_8504,Interaction_T1,The table.,The floor.,The bed.,The sofa/couch.,The table. 997,XYGU1_11.8_20.5,Which object was opened by the person?,1,Interaction_T1_8534,Interaction_T1,The door.,The book.,The closet/cabinet.,The laptop.,The book. 998,WJ1E7_8.7_14.1,Which object was put down by the person?,3,Interaction_T1_8535,Interaction_T1,The clothes.,The bag.,The box.,The shoe.,The shoe. 999,SPJVR_13.9_19.3,Which object was thrown by the person?,3,Interaction_T1_8549,Interaction_T1,The pillow.,The clothes.,The book.,The blanket.,The blanket. 1000,9O0HH_1.5_6.4,Which object was closed by the person?,0,Interaction_T1_8558,Interaction_T1,The closet/cabinet.,The door.,The book.,The window.,The closet/cabinet. 1001,OKYYQ_2.3_10.3,Which object was put down by the person?,0,Interaction_T1_8586,Interaction_T1,The paper/notebook.,The clothes.,The laptop.,The sandwich.,The paper/notebook. 1002,129SP_27.5_32,Which object was closed by the person?,3,Interaction_T1_8598,Interaction_T1,The refrigerator.,The closet/cabinet.,The window.,The door.,The door. 1003,129SP_25.3_31.8,Which object was opened by the person?,1,Interaction_T1_8599,Interaction_T1,The window.,The door.,The closet/cabinet.,The bag.,The door. 1004,306S9_4.3_9.4,Which object was put down by the person?,0,Interaction_T1_8608,Interaction_T1,The food.,The cup/glass/bottle.,The book.,The box.,The food. 1005,306S9_8.6_14.4,Which object was put down by the person?,1,Interaction_T1_8609,Interaction_T1,The bag.,The food.,The towel.,The clothes.,The food. 1006,XPWYQ_16_22.9,Which object was put down by the person?,3,Interaction_T1_8621,Interaction_T1,The cup/glass/bottle.,The paper/notebook.,The phone/camera.,The book.,The book. 1007,XPWYQ_14.3_19.6,Which object was put down by the person?,2,Interaction_T1_8622,Interaction_T1,The food.,The bag.,The book.,The blanket.,The book. 1008,UDGRS_20.6_27.6,Which object was closed by the person?,1,Interaction_T1_8633,Interaction_T1,The window.,The book.,The refrigerator.,The closet/cabinet.,The book. 1009,86X97_1.4_7.6,Which object was taken by the person?,1,Interaction_T1_8647,Interaction_T1,The clothes.,The book.,The food.,The laptop.,The book. 1010,M7BD4_20.2_26.2,Which object was closed by the person?,1,Interaction_T1_8668,Interaction_T1,The door.,The laptop.,The refrigerator.,The book.,The laptop. 1011,M7BD4_13.9_19.6,Which object was put down by the person?,1,Interaction_T1_8669,Interaction_T1,The dish.,The paper/notebook.,The towel.,The food.,The paper/notebook. 1012,R1X8P_7.6_15.2,Which object was taken by the person?,0,Interaction_T1_8671,Interaction_T1,The phone/camera.,The pillow.,The laptop.,The cup/glass/bottle.,The phone/camera. 1013,R1X8P_0_3.7,Which object was opened by the person?,3,Interaction_T1_8672,Interaction_T1,The bag.,The door.,The book.,The closet/cabinet.,The closet/cabinet. 1014,QM4AD_17.7_23.4,Which object was put down by the person?,1,Interaction_T1_8678,Interaction_T1,The picture.,The cup/glass/bottle.,The clothes.,The bag.,The cup/glass/bottle. 1015,MZJ9D_0_7.4,Which object was opened by the person?,1,Interaction_T1_8699,Interaction_T1,The door.,The laptop.,The book.,The refrigerator.,The laptop. 1016,MZJ9D_0_9.9,Which object was sat on by the person?,1,Interaction_T1_8700,Interaction_T1,The bed.,The sofa/couch.,The floor.,The table.,The sofa/couch. 1017,V9W9C_31.8_37,Which object was tidied up by the person?,0,Interaction_T1_8719,Interaction_T1,The table.,The broom.,The blanket.,The closet/cabinet.,The table. 1018,9632M_26.6_32,Which object was taken by the person?,2,Interaction_T1_8720,Interaction_T1,The clothes.,The book.,The towel.,The sandwich.,The towel. 1019,0JB3D_5.4_11.7,Which object was closed by the person?,3,Interaction_T1_8750,Interaction_T1,The window.,The closet/cabinet.,The book.,The refrigerator.,The refrigerator. 1020,F3O37_4.5_11.5,Which object was taken by the person?,2,Interaction_T1_8756,Interaction_T1,The shoe.,The cup/glass/bottle.,The pillow.,The paper/notebook.,The pillow. 1021,F3O37_5.8_10.5,Which object was thrown by the person?,1,Interaction_T1_8757,Interaction_T1,The pillow.,The shoe.,The towel.,The clothes.,The shoe. 1022,S3TZ1_5.9_13,Which object was closed by the person?,0,Interaction_T1_8792,Interaction_T1,The refrigerator.,The window.,The closet/cabinet.,The door.,The refrigerator. 1023,3EJQW_0_6.1,Which object was sat at by the person?,3,Interaction_T1_8801,Interaction_T1,The bed.,The floor.,The sofa/couch.,The table.,The table. 1024,3EJQW_0_5.3,Which object was sat on by the person?,0,Interaction_T1_8802,Interaction_T1,The sofa/couch.,The floor.,The bed.,The table.,The sofa/couch. 1025,58Z9R_0_8.6,Which object was opened by the person?,1,Interaction_T1_8807,Interaction_T1,The bag.,The door.,The window.,The closet/cabinet.,The door. 1026,OK2AF_23_30,Which object was taken by the person?,2,Interaction_T1_8820,Interaction_T1,The pillow.,The food.,The book.,The dish.,The book. 1027,WE2PF_3.3_12.2,Which object was opened by the person?,2,Interaction_T1_8830,Interaction_T1,The box.,The door.,The bag.,The refrigerator.,The bag. 1028,UEP20_17.9_22.7,Which object was taken by the person?,0,Interaction_T1_8848,Interaction_T1,The sandwich.,The book.,The dish.,The pillow.,The sandwich. 1029,UEP20_14.6_23.1,Which object was lied on by the person?,1,Interaction_T1_8850,Interaction_T1,The floor.,The bed.,The sofa/couch.,The table.,The bed. 1030,5X5DT_14.2_19.5,Which object was taken by the person?,1,Interaction_T1_8858,Interaction_T1,The clothes.,The bag.,The cup/glass/bottle.,The box.,The bag. 1031,I329H_0_8.9,Which object was opened by the person?,0,Interaction_T1_8869,Interaction_T1,The bag.,The closet/cabinet.,The door.,The window.,The bag. 1032,VKXLL_28.4_36.2,Which object was put down by the person?,0,Interaction_T1_8875,Interaction_T1,The paper/notebook.,The dish.,The clothes.,The broom.,The paper/notebook. 1033,VKXLL_44.5_50.6,Which object was put down by the person?,0,Interaction_T1_8876,Interaction_T1,The paper/notebook.,The sandwich.,The phone/camera.,The food.,The paper/notebook. 1034,VKXLL_51.4_57.9,Which object was put down by the person?,3,Interaction_T1_8877,Interaction_T1,The box.,The cup/glass/bottle.,The clothes.,The paper/notebook.,The paper/notebook. 1035,VKXLL_22.1_28.6,Which object was opened by the person?,1,Interaction_T1_8878,Interaction_T1,The door.,The box.,The bag.,The closet/cabinet.,The box. 1036,VKXLL_1.5_6.2,Which object was taken by the person?,1,Interaction_T1_8881,Interaction_T1,The broom.,The box.,The paper/notebook.,The clothes.,The box. 1037,UFVO8_5.4_11,Which object was put down by the person?,0,Interaction_T1_8883,Interaction_T1,The broom.,The laptop.,The bag.,The blanket.,The broom. 1038,V9RT3_17_21.5,Which object was put down by the person?,0,Interaction_T1_8890,Interaction_T1,The phone/camera.,The clothes.,The bag.,The food.,The phone/camera. 1039,Q8UJ8_0.9_5.9,Which object was opened by the person?,3,Interaction_T1_8895,Interaction_T1,The door.,The book.,The window.,The bag.,The bag. 1040,F9YMU_11.9_16.5,Which object was taken by the person?,0,Interaction_T1_8913,Interaction_T1,The paper/notebook.,The laptop.,The bag.,The cup/glass/bottle.,The paper/notebook. 1041,XZ9C0_0_8.7,Which object was lied on by the person?,2,Interaction_T1_8914,Interaction_T1,The book.,The sofa/couch.,The bed.,The floor.,The bed. 1042,LY10X_24.1_31.6,Which object was eaten by the person?,0,Interaction_T1_8928,Interaction_T1,The medicine.,The mirror.,The window.,The sandwich.,The medicine. 1043,3XKBC_18.8_28.1,Which object was opened by the person?,2,Interaction_T1_8932,Interaction_T1,The window.,The closet/cabinet.,The laptop.,The door.,The laptop. 1044,3XKBC_19.6_24.7,Which object was sat at by the person?,1,Interaction_T1_8934,Interaction_T1,The sofa/couch.,The table.,The floor.,The bed.,The table. 1045,OEE36_21.1_29.1,Which object was put down by the person?,2,Interaction_T1_8937,Interaction_T1,The picture.,The food.,The towel.,The book.,The towel. 1046,OEE36_32.3_40.2,Which object was put down by the person?,2,Interaction_T1_8938,Interaction_T1,The shoe.,The clothes.,The box.,The phone/camera.,The box. 1047,EC695_13.3_18.6,Which object was taken by the person?,1,Interaction_T1_8965,Interaction_T1,The towel.,The laptop.,The bag.,The phone/camera.,The laptop. 1048,1333C_19.8_26.7,Which object was put down by the person?,1,Interaction_T1_8966,Interaction_T1,The pillow.,The dish.,The cup/glass/bottle.,The clothes.,The dish. 1049,1333C_8_13.1,Which object was taken by the person?,3,Interaction_T1_8967,Interaction_T1,The towel.,The food.,The box.,The dish.,The dish. 1050,0Y19Q_18.3_24,Which object was put down by the person?,0,Interaction_T1_8968,Interaction_T1,The cup/glass/bottle.,The towel.,The laptop.,The broom.,The cup/glass/bottle. 1051,983K8_2.7_12.5,Which object was taken by the person?,0,Interaction_T1_8969,Interaction_T1,The blanket.,The bag.,The shoe.,The phone/camera.,The blanket. 1052,983K8_26.5_32,Which object was put down by the person?,0,Interaction_T1_8970,Interaction_T1,The blanket.,The towel.,The clothes.,The broom.,The blanket. 1053,L9J5I_9.2_16.7,Which object was taken by the person?,1,Interaction_T1_9010,Interaction_T1,The broom.,The paper/notebook.,The clothes.,The picture.,The paper/notebook. 1054,FZJTT_16_24,Which object was taken by the person?,3,Interaction_T1_9014,Interaction_T1,The bag.,The food.,The cup/glass/bottle.,The phone/camera.,The phone/camera. 1055,PZD7Z_0_7.1,Which object was sat at by the person?,2,Interaction_T1_9015,Interaction_T1,The floor.,The bed.,The table.,The sofa/couch.,The table. 1056,PZD7Z_9.5_17.6,Which object was put down by the person?,0,Interaction_T1_9016,Interaction_T1,The broom.,The phone/camera.,The laptop.,The box.,The broom. 1057,OZCGO_2.3_7.2,Which object was thrown by the person?,0,Interaction_T1_9034,Interaction_T1,The pillow.,The clothes.,The box.,The book.,The pillow. 1058,OZCGO_4.4_9,Which object was put down by the person?,0,Interaction_T1_9035,Interaction_T1,The pillow.,The sandwich.,The food.,The cup/glass/bottle.,The pillow. 1059,C61BE_5_10,Which object was taken by the person?,3,Interaction_T1_9039,Interaction_T1,The shoe.,The pillow.,The laptop.,The blanket.,The blanket. 1060,EAKL5_19.3_28.5,Which object was put down by the person?,1,Interaction_T1_9041,Interaction_T1,The towel.,The phone/camera.,The dish.,The clothes.,The phone/camera. 1061,6TNP4_0_9.8,Which object was opened by the person?,0,Interaction_T1_9056,Interaction_T1,The refrigerator.,The bag.,The door.,The closet/cabinet.,The refrigerator. 1062,34OT4_24.6_33.1,Which object was put down by the person?,3,Interaction_T1_9060,Interaction_T1,The paper/notebook.,The clothes.,The food.,The pillow.,The pillow. 1063,MA15X_8.6_18.3,Which object was put down by the person?,1,Interaction_T1_9062,Interaction_T1,The clothes.,The blanket.,The box.,The dish.,The blanket. 1064,MA15X_65.7_72,Which object was thrown by the person?,0,Interaction_T1_9063,Interaction_T1,The blanket.,The food.,The towel.,The pillow.,The blanket. 1065,MA15X_1.9_9.8,Which object was taken by the person?,0,Interaction_T1_9064,Interaction_T1,The blanket.,The phone/camera.,The box.,The bag.,The blanket. 1066,V54TI_10_18.2,Which object was taken by the person?,3,Interaction_T1_9077,Interaction_T1,The cup/glass/bottle.,The towel.,The phone/camera.,The pillow.,The pillow. 1067,V54TI_7.9_14.1,Which object was put down by the person?,0,Interaction_T1_9078,Interaction_T1,The picture.,The broom.,The sandwich.,The box.,The picture. 1068,CJ58B_14.5_19.9,Which object was taken by the person?,2,Interaction_T1_9090,Interaction_T1,The phone/camera.,The cup/glass/bottle.,The bag.,The box.,The bag. 1069,CJ58B_18.9_27.4,Which object was put down by the person?,2,Interaction_T1_9091,Interaction_T1,The phone/camera.,The cup/glass/bottle.,The bag.,The book.,The bag. 1070,CJ58B_20_25.8,Which object was thrown by the person?,2,Interaction_T1_9092,Interaction_T1,The pillow.,The blanket.,The bag.,The food.,The bag. 1071,B8PQL_5.5_10.1,Which object was taken by the person?,0,Interaction_T1_9103,Interaction_T1,The broom.,The blanket.,The bag.,The cup/glass/bottle.,The broom. 1072,B8PQL_6.9_16.3,Which object was washed by the person?,2,Interaction_T1_9104,Interaction_T1,The mirror.,The dish.,The window.,The clothes.,The window. 1073,Z6LYG_36.3_42,Which object was closed by the person?,1,Interaction_T1_9122,Interaction_T1,The laptop.,The refrigerator.,The window.,The door.,The refrigerator. 1074,Z6LYG_1.9_8.2,Which object was opened by the person?,2,Interaction_T1_9123,Interaction_T1,The bag.,The book.,The refrigerator.,The door.,The refrigerator. 1075,1G90H_4.7_11.1,Which object was taken by the person?,0,Interaction_T1_9137,Interaction_T1,The cup/glass/bottle.,The box.,The clothes.,The blanket.,The cup/glass/bottle. 1076,8DSGI_9_16.4,Which object was taken by the person?,1,Interaction_T1_9140,Interaction_T1,The cup/glass/bottle.,The book.,The clothes.,The towel.,The book. 1077,8DSGI_13.4_20,Which object was opened by the person?,3,Interaction_T1_9142,Interaction_T1,The box.,The bag.,The laptop.,The book.,The book. 1078,Y2DK5_17.1_25.9,Which object was opened by the person?,1,Interaction_T1_9151,Interaction_T1,The laptop.,The refrigerator.,The bag.,The closet/cabinet.,The refrigerator. 1079,Y2DK5_9.6_16.9,Which object was put down by the person?,1,Interaction_T1_9152,Interaction_T1,The phone/camera.,The box.,The bag.,The sandwich.,The box. 1080,0CG15_25.8_33.3,Which object was closed by the person?,1,Interaction_T1_9171,Interaction_T1,The door.,The closet/cabinet.,The laptop.,The box.,The closet/cabinet. 1081,NPM0Z_16.7_22.4,Which object was put down by the person?,0,Interaction_T1_9201,Interaction_T1,The book.,The blanket.,The cup/glass/bottle.,The pillow.,The book. 1082,ACJBD_32_36.7,Which object was tidied up by the person?,2,Interaction_T1_9209,Interaction_T1,The table.,The blanket.,The clothes.,The broom.,The clothes. 1083,G4AJK_35.2_40.7,Which object was put down by the person?,0,Interaction_T1_9211,Interaction_T1,The food.,The bag.,The book.,The cup/glass/bottle.,The food. 1084,1E7VU_12_18.5,Which object was closed by the person?,2,Interaction_T1_9212,Interaction_T1,The window.,The box.,The closet/cabinet.,The door.,The closet/cabinet. 1085,BPH56_0_6.8,Which object was taken by the person?,0,Interaction_T1_9217,Interaction_T1,The dish.,The bag.,The picture.,The book.,The dish. 1086,HPAYB_5.6_13.3,Which object was put down by the person?,3,Interaction_T1_9235,Interaction_T1,The food.,The broom.,The picture.,The bag.,The bag. 1087,RTEWJ_0_5.5,Which object was put down by the person?,2,Interaction_T1_9241,Interaction_T1,The cup/glass/bottle.,The clothes.,The sandwich.,The box.,The sandwich. 1088,USNP1_4.3_11.4,Which object was taken by the person?,3,Interaction_T1_9247,Interaction_T1,The clothes.,The pillow.,The shoe.,The phone/camera.,The phone/camera. 1089,5V5EL_3.7_11,Which object was put down by the person?,1,Interaction_T1_9266,Interaction_T1,The clothes.,The phone/camera.,The food.,The cup/glass/bottle.,The phone/camera. 1090,CCCUJ_24.6_32.2,Which object was put down by the person?,2,Interaction_T1_9268,Interaction_T1,The dish.,The towel.,The laptop.,The cup/glass/bottle.,The laptop. 1091,CCCUJ_27_35,Which object was taken by the person?,0,Interaction_T1_9269,Interaction_T1,The blanket.,The towel.,The phone/camera.,The food.,The blanket. 1092,W9HYI_8.4_14.3,Which object was taken by the person?,1,Interaction_T1_9282,Interaction_T1,The towel.,The food.,The cup/glass/bottle.,The blanket.,The food. 1093,ZOTR8_6.7_15,Which object was put down by the person?,2,Interaction_T1_9286,Interaction_T1,The food.,The phone/camera.,The shoe.,The dish.,The shoe. 1094,L9ANI_7.3_12.9,Which object was taken by the person?,1,Interaction_T1_9288,Interaction_T1,The clothes.,The towel.,The phone/camera.,The cup/glass/bottle.,The towel. 1095,Z5THW_29.3_35,Which object was put down by the person?,2,Interaction_T1_9289,Interaction_T1,The clothes.,The cup/glass/bottle.,The towel.,The shoe.,The towel. 1096,BI31D_8.3_18,Which object was sat on by the person?,2,Interaction_T1_9299,Interaction_T1,The sofa/couch.,The floor.,The bed.,The table.,The bed. 1097,BI31D_5.2_10.1,Which object was put down by the person?,1,Interaction_T1_9300,Interaction_T1,The food.,The phone/camera.,The box.,The cup/glass/bottle.,The phone/camera. 1098,194WK_6.6_12.5,Which object was put down by the person?,2,Interaction_T1_9310,Interaction_T1,The phone/camera.,The laptop.,The book.,The bag.,The book. 1099,194WK_4.9_10.2,Which object was closed by the person?,2,Interaction_T1_9311,Interaction_T1,The laptop.,The window.,The book.,The door.,The book. 1100,DHFA6_15_22.6,Which object was put down by the person?,3,Interaction_T1_9332,Interaction_T1,The sandwich.,The laptop.,The clothes.,The box.,The box. 1101,3ZC4Y_17.2_24.9,Which object was closed by the person?,0,Interaction_T1_9343,Interaction_T1,The refrigerator.,The book.,The laptop.,The box.,The refrigerator. 1102,3ZC4Y_15.1_21.7,Which object was opened by the person?,3,Interaction_T1_9344,Interaction_T1,The closet/cabinet.,The box.,The book.,The refrigerator.,The refrigerator. 1103,3ZC4Y_18.8_23.8,Which object was thrown by the person?,3,Interaction_T1_9345,Interaction_T1,The clothes.,The book.,The blanket.,The food.,The food. 1104,NOFSE_7.1_13.5,Which object was put down by the person?,2,Interaction_T1_9350,Interaction_T1,The laptop.,The bag.,The dish.,The clothes.,The dish. 1105,Z97SD_18.1_24.1,Which object was opened by the person?,1,Interaction_T1_9357,Interaction_T1,The book.,The refrigerator.,The door.,The closet/cabinet.,The refrigerator. 1106,Z97SD_25.1_30.7,Which object was closed by the person?,2,Interaction_T1_9358,Interaction_T1,The box.,The window.,The refrigerator.,The door.,The refrigerator. 1107,TD2DR_7.4_14.3,Which object was taken by the person?,3,Interaction_T1_9359,Interaction_T1,The food.,The dish.,The blanket.,The phone/camera.,The phone/camera. 1108,21MI8_3.9_10.1,Which object was opened by the person?,3,Interaction_T1_9361,Interaction_T1,The refrigerator.,The window.,The book.,The laptop.,The laptop. 1109,5657O_6.4_13.8,Which object was put down by the person?,2,Interaction_T1_9363,Interaction_T1,The cup/glass/bottle.,The laptop.,The clothes.,The bag.,The clothes. 1110,MOQIU_13.5_20,Which object was taken by the person?,2,Interaction_T1_9383,Interaction_T1,The box.,The picture.,The phone/camera.,The cup/glass/bottle.,The phone/camera. 1111,2MJ72_11_17,Which object was closed by the person?,0,Interaction_T1_9391,Interaction_T1,The door.,The box.,The refrigerator.,The closet/cabinet.,The door. 1112,RNLTR_7.3_13.5,What did the person do with the clothes?,1,Interaction_T2_23,Interaction_T2,Tidied up.,Threw.,Put down.,Washed.,Threw. 1113,VNQTH_2.7_9.2,What did the person do with the closet/cabinet?,2,Interaction_T2_31,Interaction_T2,Closed.,Threw.,Tidied up.,Opened.,Tidied up. 1114,Y79PC_16.9_22.6,What did the person do with the clothes?,2,Interaction_T2_35,Interaction_T2,Took.,Tidied up.,Threw.,Put down.,Threw. 1115,4GLAP_16.1_20.7,What did the person do with the shoe?,1,Interaction_T2_61,Interaction_T2,Took.,Threw.,Put down.,Sat on.,Threw. 1116,OY3LS_2.5_10.1,What did the person do with the laptop?,0,Interaction_T2_71,Interaction_T2,Opened.,Put down.,Took.,Closed.,Opened. 1117,OY3LS_18.5_23.8,What did the person do with the clothes?,3,Interaction_T2_75,Interaction_T2,Put down.,Tidied up.,Washed.,Threw.,Threw. 1118,OY3LS_34.9_41.4,What did the person do with the sofa/couch?,2,Interaction_T2_76,Interaction_T2,Threw.,Put down.,Sat on.,Lied on.,Sat on. 1119,RG0KS_0_7.6,What did the person do with the blanket?,1,Interaction_T2_98,Interaction_T2,Washed.,Tidied up.,Put down.,Threw.,Tidied up. 1120,8UCK1_8.7_13.9,What did the person do with the closet/cabinet?,0,Interaction_T2_103,Interaction_T2,Closed.,Opened.,Tidied up.,Sat on.,Closed. 1121,NUKJ0_10.4_17.8,What did the person do with the book?,2,Interaction_T2_127,Interaction_T2,Put down.,Took.,Opened.,Threw.,Opened. 1122,NUKJ0_19.4_26.6,What did the person do with the book?,1,Interaction_T2_128,Interaction_T2,Threw.,Closed.,Took.,Opened.,Closed. 1123,KA09C_13.4_18.5,What did the person do with the shoe?,1,Interaction_T2_174,Interaction_T2,Took.,Put down.,Washed.,Threw.,Put down. 1124,H0L5S_20.4_27.5,What did the person do with the towel?,3,Interaction_T2_176,Interaction_T2,Threw.,Tidied up.,Put down.,Took.,Took. 1125,7MRKY_29.9_36.1,What did the person do with the laptop?,3,Interaction_T2_185,Interaction_T2,Opened.,Took.,Put down.,Closed.,Closed. 1126,DGPAW_3.5_12.8,What did the person do with the picture?,1,Interaction_T2_215,Interaction_T2,Opened.,Put down.,Threw.,Took.,Put down. 1127,E002I_4.7_14.1,What did the person do with the bed?,3,Interaction_T2_216,Interaction_T2,Took.,Sat on.,Washed.,Lied on.,Lied on. 1128,NUW9G_0_6.8,What did the person do with the towel?,2,Interaction_T2_220,Interaction_T2,Threw.,Took.,Put down.,Tidied up.,Put down. 1129,6CAZU_10.6_16.1,What did the person do with the sandwich?,3,Interaction_T2_241,Interaction_T2,Tidied up.,Ate.,Put down.,Took.,Took. 1130,YB67Z_11.9_19.1,What did the person do with the table?,1,Interaction_T2_277,Interaction_T2,Washed.,Tidied up.,Sat on.,Opened.,Tidied up. 1131,3XL0K_0_5.5,What did the person do with the closet/cabinet?,2,Interaction_T2_330,Interaction_T2,Lied on.,Tidied up.,Closed.,Opened.,Closed. 1132,3XL0K_0.3_4.5,What did the person do with the door?,3,Interaction_T2_331,Interaction_T2,Took.,Threw.,Opened.,Closed.,Closed. 1133,ATV2F_7.8_14.5,What did the person do with the clothes?,0,Interaction_T2_358,Interaction_T2,Threw.,Took.,Washed.,Tidied up.,Threw. 1134,IWTWJ_13.2_20.8,What did the person do with the sofa/couch?,3,Interaction_T2_370,Interaction_T2,Ate.,Took.,Lied on.,Sat on.,Sat on. 1135,IWTWJ_4.1_9.5,What did the person do with the towel?,1,Interaction_T2_371,Interaction_T2,Put down.,Threw.,Tidied up.,Took.,Threw. 1136,NJANX_17.7_22,What did the person do with the table?,2,Interaction_T2_403,Interaction_T2,Tidied up.,Opened.,Washed.,Sat on.,Washed. 1137,TRHT1_1.9_6.3,What did the person do with the clothes?,3,Interaction_T2_407,Interaction_T2,Put down.,Tidied up.,Took.,Threw.,Threw. 1138,TRHT1_0_4.2,What did the person do with the sofa/couch?,0,Interaction_T2_408,Interaction_T2,Sat on.,Lied on.,Tidied up.,Opened.,Sat on. 1139,5NG6Q_17.6_25.6,What did the person do with the table?,1,Interaction_T2_433,Interaction_T2,Ate.,Tidied up.,Sat on.,Washed.,Tidied up. 1140,C1DK7_4.2_10.2,What did the person do with the laptop?,0,Interaction_T2_446,Interaction_T2,Closed.,Opened.,Put down.,Took.,Closed. 1141,V0ZD9_23.5_28.5,What did the person do with the clothes?,1,Interaction_T2_467,Interaction_T2,Threw.,Took.,Put down.,Washed.,Took. 1142,VJG6E_9_18,What did the person do with the laptop?,1,Interaction_T2_488,Interaction_T2,Put down.,Opened.,Threw.,Took.,Opened. 1143,NW0KT_42.6_50,What did the person do with the mirror?,2,Interaction_T2_523,Interaction_T2,Took.,Tidied up.,Washed.,Ate.,Washed. 1144,NW0KT_4.9_9.7,What did the person do with the book?,1,Interaction_T2_525,Interaction_T2,Threw.,Opened.,Took.,Closed.,Opened. 1145,NW0KT_13.6_18.6,What did the person do with the book?,1,Interaction_T2_529,Interaction_T2,Opened.,Closed.,Put down.,Took.,Closed. 1146,NYHD7_0_4.7,What did the person do with the table?,0,Interaction_T2_551,Interaction_T2,Sat at.,Put down.,Washed.,Tidied up.,Sat at. 1147,3Q6N1_0_4.4,What did the person do with the laptop?,0,Interaction_T2_581,Interaction_T2,Opened.,Put down.,Took.,Closed.,Opened. 1148,T7ST5_3.6_9.3,What did the person do with the food?,2,Interaction_T2_590,Interaction_T2,Threw.,Sat on.,Put down.,Took.,Put down. 1149,8SDK5_16.7_23,What did the person do with the sofa/couch?,2,Interaction_T2_602,Interaction_T2,Washed.,Took.,Sat on.,Lied on.,Sat on. 1150,SS3IL_4.3_9.4,What did the person do with the sandwich?,1,Interaction_T2_608,Interaction_T2,Took.,Put down.,Opened.,Ate.,Put down. 1151,U9KYC_21.3_29.4,What did the person do with the shoe?,2,Interaction_T2_631,Interaction_T2,Put down.,Washed.,Took.,Threw.,Took. 1152,9MNZ5_40.1_50.1,What did the person do with the book?,1,Interaction_T2_637,Interaction_T2,Threw.,Opened.,Put down.,Closed.,Opened. 1153,M98YV_5.1_11.6,What did the person do with the sandwich?,0,Interaction_T2_670,Interaction_T2,Ate.,Took.,Sat on.,Put down.,Ate. 1154,U5T4M_8.9_14.1,What did the person do with the refrigerator?,2,Interaction_T2_703,Interaction_T2,Opened.,Put down.,Closed.,Lied on.,Closed. 1155,U5T4M_13.4_21,What did the person do with the table?,0,Interaction_T2_705,Interaction_T2,Sat at.,Ate.,Tidied up.,Washed.,Sat at. 1156,ZNQVC_8.8_15.3,What did the person do with the closet/cabinet?,1,Interaction_T2_711,Interaction_T2,Put down.,Closed.,Opened.,Tidied up.,Closed. 1157,15PMU_15.5_21.2,What did the person do with the clothes?,3,Interaction_T2_722,Interaction_T2,Washed.,Took.,Threw.,Put down.,Put down. 1158,43CCM_20.2_25.5,What did the person do with the clothes?,1,Interaction_T2_734,Interaction_T2,Washed.,Put down.,Took.,Threw.,Put down. 1159,03PRW_27.1_33.2,What did the person do with the sofa/couch?,1,Interaction_T2_793,Interaction_T2,Put down.,Sat on.,Closed.,Lied on.,Sat on. 1160,1HZGH_0_9.9,What did the person do with the sofa/couch?,3,Interaction_T2_854,Interaction_T2,Sat on.,Tidied up.,Threw.,Lied on.,Lied on. 1161,358JF_4.4_9.7,What did the person do with the cup/glass/bottle?,1,Interaction_T2_872,Interaction_T2,Washed.,Put down.,Sat on.,Took.,Put down. 1162,3WMV4_3.1_9.1,What did the person do with the sandwich?,1,Interaction_T2_895,Interaction_T2,Took.,Ate.,Put down.,Threw.,Ate. 1163,OQ54Y_5.4_10.3,What did the person do with the refrigerator?,0,Interaction_T2_910,Interaction_T2,Closed.,Opened.,Lied on.,Put down.,Closed. 1164,136V6_13.9_19.4,What did the person do with the sofa/couch?,0,Interaction_T2_923,Interaction_T2,Lied on.,Threw.,Took.,Sat on.,Lied on. 1165,136V6_5_10.5,What did the person do with the shoe?,1,Interaction_T2_924,Interaction_T2,Took.,Threw.,Washed.,Put down.,Threw. 1166,OKXIQ_20.4_26,What did the person do with the closet/cabinet?,3,Interaction_T2_945,Interaction_T2,Tidied up.,Opened.,Put down.,Closed.,Closed. 1167,ZPRJH_0_4.5,What did the person do with the floor?,3,Interaction_T2_959,Interaction_T2,Ate.,Tidied up.,Lied on.,Sat on.,Sat on. 1168,BEAAA_0_4.1,What did the person do with the sandwich?,0,Interaction_T2_985,Interaction_T2,Ate.,Put down.,Sat on.,Took.,Ate. 1169,98W87_10.2_15.4,What did the person do with the sandwich?,2,Interaction_T2_1017,Interaction_T2,Ate.,Put down.,Took.,Tidied up.,Took. 1170,98W87_21.3_27,What did the person do with the sandwich?,0,Interaction_T2_1018,Interaction_T2,Put down.,Took.,Tidied up.,Ate.,Put down. 1171,A33VQ_11.1_19.7,What did the person do with the refrigerator?,0,Interaction_T2_1021,Interaction_T2,Opened.,Tidied up.,Threw.,Closed.,Opened. 1172,A33VQ_21_29.4,What did the person do with the refrigerator?,3,Interaction_T2_1022,Interaction_T2,Ate.,Sat on.,Opened.,Closed.,Closed. 1173,WM2J7_0_9,What did the person do with the window?,0,Interaction_T2_1027,Interaction_T2,Washed.,Tidied up.,Closed.,Opened.,Washed. 1174,3R4DD_0_9.1,What did the person do with the clothes?,0,Interaction_T2_1030,Interaction_T2,Took.,Threw.,Washed.,Put down.,Took. 1175,3R4DD_2.1_9.6,What did the person do with the towel?,2,Interaction_T2_1031,Interaction_T2,Tidied up.,Threw.,Took.,Put down.,Took. 1176,E7GV1_0_3.1,What did the person do with the phone/camera?,2,Interaction_T2_1095,Interaction_T2,Ate.,Threw.,Took.,Put down.,Took. 1177,3JCEI_9.6_17.8,What did the person do with the clothes?,3,Interaction_T2_1096,Interaction_T2,Took.,Washed.,Put down.,Threw.,Threw. 1178,3JCEI_8.3_13,What did the person do with the laptop?,1,Interaction_T2_1097,Interaction_T2,Took.,Closed.,Put down.,Opened.,Closed. 1179,3JCEI_10.4_15.1,What did the person do with the food?,3,Interaction_T2_1098,Interaction_T2,Took.,Put down.,Lied on.,Threw.,Threw. 1180,76Z3W_14.1_22,What did the person do with the table?,0,Interaction_T2_1110,Interaction_T2,Tidied up.,Washed.,Sat on.,Ate.,Tidied up. 1181,HRASP_6.3_11.6,What did the person do with the shoe?,2,Interaction_T2_1120,Interaction_T2,Took.,Put down.,Threw.,Washed.,Threw. 1182,HRASP_5.5_11.8,What did the person do with the clothes?,3,Interaction_T2_1124,Interaction_T2,Took.,Opened.,Tidied up.,Threw.,Threw. 1183,NTXXB_11_17.5,What did the person do with the phone/camera?,3,Interaction_T2_1128,Interaction_T2,Opened.,Threw.,Put down.,Took.,Took. 1184,FO24A_0_6.9,What did the person do with the table?,2,Interaction_T2_1145,Interaction_T2,Washed.,Tidied up.,Sat at.,Put down.,Sat at. 1185,YX3V0_1.4_7.1,What did the person do with the table?,1,Interaction_T2_1164,Interaction_T2,Washed.,Tidied up.,Opened.,Sat on.,Tidied up. 1186,LZ2Y4_10.4_15.3,What did the person do with the dish?,2,Interaction_T2_1187,Interaction_T2,Took.,Washed.,Put down.,Tidied up.,Put down. 1187,IOGR7_18.5_22.7,What did the person do with the closet/cabinet?,2,Interaction_T2_1189,Interaction_T2,Opened.,Lied on.,Closed.,Tidied up.,Closed. 1188,IOGR7_15.8_24.6,What did the person do with the floor?,3,Interaction_T2_1190,Interaction_T2,Took.,Lied on.,Ate.,Sat on.,Sat on. 1189,BI6Y4_25.3_33.1,What did the person do with the table?,0,Interaction_T2_1195,Interaction_T2,Sat at.,Lied on.,Washed.,Tidied up.,Sat at. 1190,8XXNK_3_9,What did the person do with the box?,0,Interaction_T2_1220,Interaction_T2,Opened.,Put down.,Took.,Closed.,Opened. 1191,9YOI8_24.6_30.3,What did the person do with the window?,0,Interaction_T2_1230,Interaction_T2,Closed.,Washed.,Opened.,Ate.,Closed. 1192,9YOI8_4.8_11.9,What did the person do with the window?,3,Interaction_T2_1231,Interaction_T2,Tidied up.,Closed.,Washed.,Opened.,Opened. 1193,NG1Q8_26.3_31.8,What did the person do with the closet/cabinet?,2,Interaction_T2_1242,Interaction_T2,Opened.,Tidied up.,Closed.,Put down.,Closed. 1194,NG1Q8_26.3_32,What did the person do with the door?,0,Interaction_T2_1243,Interaction_T2,Closed.,Opened.,Took.,Put down.,Closed. 1195,2ZICJ_25.6_30.5,What did the person do with the refrigerator?,1,Interaction_T2_1264,Interaction_T2,Opened.,Closed.,Put down.,Ate.,Closed. 1196,337O2_13.8_23.7,What did the person do with the clothes?,1,Interaction_T2_1273,Interaction_T2,Put down.,Threw.,Ate.,Took.,Threw. 1197,0HGNK_7.3_13.1,What did the person do with the box?,0,Interaction_T2_1285,Interaction_T2,Put down.,Closed.,Threw.,Opened.,Put down. 1198,M6ERH_30_33,What did the person do with the table?,2,Interaction_T2_1304,Interaction_T2,Washed.,Tidied up.,Sat at.,Lied on.,Sat at. 1199,PRHR7_22.6_27.4,What did the person do with the towel?,0,Interaction_T2_1319,Interaction_T2,Took.,Threw.,Tidied up.,Put down.,Took. 1200,31LW5_4.1_10,What did the person do with the bed?,1,Interaction_T2_1325,Interaction_T2,Ate.,Lied on.,Washed.,Sat on.,Lied on. 1201,5W1Z7_0_8,What did the person do with the bed?,3,Interaction_T2_1326,Interaction_T2,Took.,Threw.,Sat on.,Lied on.,Lied on. 1202,IAHN3_7.4_16,What did the person do with the phone/camera?,0,Interaction_T2_1393,Interaction_T2,Took.,Washed.,Put down.,Sat on.,Took. 1203,727IZ_14.9_19.6,What did the person do with the table?,1,Interaction_T2_1398,Interaction_T2,Opened.,Sat at.,Tidied up.,Washed.,Sat at. 1204,Q5YDL_13_17.8,What did the person do with the laptop?,3,Interaction_T2_1432,Interaction_T2,Opened.,Put down.,Took.,Closed.,Closed. 1205,Q5YDL_15.8_20.3,What did the person do with the laptop?,2,Interaction_T2_1437,Interaction_T2,Opened.,Took.,Closed.,Put down.,Closed. 1206,X8JVY_4.4_10.1,What did the person do with the book?,0,Interaction_T2_1453,Interaction_T2,Took.,Threw.,Opened.,Closed.,Took. 1207,DMO76_17.9_22.8,What did the person do with the phone/camera?,2,Interaction_T2_1499,Interaction_T2,Opened.,Sat on.,Put down.,Took.,Put down. 1208,QASDI_0_6,What did the person do with the laptop?,3,Interaction_T2_1516,Interaction_T2,Opened.,Put down.,Closed.,Took.,Took. 1209,SANRG_13.7_18.8,What did the person do with the towel?,0,Interaction_T2_1563,Interaction_T2,Threw.,Tidied up.,Took.,Put down.,Threw. 1210,RRQEV_0_8.5,What did the person do with the clothes?,3,Interaction_T2_1590,Interaction_T2,Threw.,Put down.,Took.,Tidied up.,Tidied up. 1211,L29HE_9.3_16.4,What did the person do with the broom?,2,Interaction_T2_1653,Interaction_T2,Put down.,Tidied up.,Took.,Threw.,Took. 1212,V3SOF_32.5_38.9,What did the person do with the refrigerator?,2,Interaction_T2_1671,Interaction_T2,Lied on.,Put down.,Closed.,Opened.,Closed. 1213,ZVRBL_0_6.1,What did the person do with the table?,1,Interaction_T2_1696,Interaction_T2,Washed.,Tidied up.,Sat on.,Closed.,Tidied up. 1214,LUQWY_24.8_33.1,What did the person do with the laptop?,1,Interaction_T2_1728,Interaction_T2,Put down.,Closed.,Opened.,Took.,Closed. 1215,LD6TD_12.2_18.3,What did the person do with the book?,1,Interaction_T2_1739,Interaction_T2,Opened.,Closed.,Threw.,Took.,Closed. 1216,TDGNE_22.9_29,What did the person do with the refrigerator?,1,Interaction_T2_1753,Interaction_T2,Ate.,Opened.,Lied on.,Closed.,Opened. 1217,RQRRD_16.9_22.3,What did the person do with the clothes?,0,Interaction_T2_1772,Interaction_T2,Threw.,Took.,Tidied up.,Washed.,Threw. 1218,J7BOV_4.6_11.9,What did the person do with the phone/camera?,0,Interaction_T2_1784,Interaction_T2,Put down.,Took.,Sat on.,Lied on.,Put down. 1219,M8OYC_18.1_27.1,What did the person do with the closet/cabinet?,0,Interaction_T2_1796,Interaction_T2,Tidied up.,Closed.,Opened.,Ate.,Tidied up. 1220,M8OYC_30_35,What did the person do with the closet/cabinet?,2,Interaction_T2_1798,Interaction_T2,Sat on.,Tidied up.,Closed.,Opened.,Closed. 1221,HXUI5_11.9_18.3,What did the person do with the clothes?,1,Interaction_T2_1837,Interaction_T2,Put down.,Took.,Washed.,Threw.,Took. 1222,S407A_13.1_22,What did the person do with the towel?,0,Interaction_T2_1840,Interaction_T2,Put down.,Threw.,Took.,Tidied up.,Put down. 1223,1TIAK_8.3_12.5,What did the person do with the paper/notebook?,3,Interaction_T2_1847,Interaction_T2,Put down.,Sat on.,Washed.,Took.,Took. 1224,3B97C_12_18.7,What did the person do with the laptop?,0,Interaction_T2_1848,Interaction_T2,Put down.,Closed.,Took.,Opened.,Put down. 1225,74GN1_25.7_33.6,What did the person do with the dish?,2,Interaction_T2_1859,Interaction_T2,Washed.,Put down.,Took.,Lied on.,Took. 1226,W7CR5_4.2_11.2,What did the person do with the towel?,3,Interaction_T2_1868,Interaction_T2,Took.,Put down.,Tidied up.,Threw.,Threw. 1227,FQS7O_6.9_11.5,What did the person do with the book?,2,Interaction_T2_1870,Interaction_T2,Put down.,Opened.,Closed.,Threw.,Closed. 1228,WP5RH_6.8_16.1,What did the person do with the bag?,3,Interaction_T2_1876,Interaction_T2,Threw.,Opened.,Put down.,Took.,Took. 1229,W8XQ9_0.2_5.8,What did the person do with the table?,1,Interaction_T2_1997,Interaction_T2,Washed.,Tidied up.,Closed.,Sat on.,Tidied up. 1230,LSKA2_10_19.7,What did the person do with the sandwich?,3,Interaction_T2_2020,Interaction_T2,Put down.,Ate.,Washed.,Took.,Took. 1231,S673O_0_3.2,What did the person do with the sofa/couch?,2,Interaction_T2_2038,Interaction_T2,Took.,Put down.,Lied on.,Sat on.,Lied on. 1232,DWHPO_15.7_21.3,What did the person do with the phone/camera?,1,Interaction_T2_2053,Interaction_T2,Took.,Put down.,Closed.,Sat at.,Put down. 1233,T1CQE_30.9_37,What did the person do with the laptop?,3,Interaction_T2_2080,Interaction_T2,Closed.,Put down.,Took.,Opened.,Opened. 1234,2WGSN_14_23.3,What did the person do with the towel?,1,Interaction_T2_2083,Interaction_T2,Threw.,Took.,Tidied up.,Put down.,Took. 1235,EDVAM_10.2_16,What did the person do with the window?,0,Interaction_T2_2088,Interaction_T2,Closed.,Put down.,Opened.,Washed.,Closed. 1236,EDVAM_0_7,What did the person do with the sofa/couch?,0,Interaction_T2_2089,Interaction_T2,Sat on.,Lied on.,Threw.,Took.,Sat on. 1237,TJBGM_15.6_20.8,What did the person do with the book?,3,Interaction_T2_2121,Interaction_T2,Washed.,Opened.,Put down.,Took.,Took. 1238,YMGGV_0_5.7,What did the person do with the sofa/couch?,3,Interaction_T2_2168,Interaction_T2,Lied on.,Opened.,Washed.,Sat on.,Sat on. 1239,C5BMA_28.8_34,What did the person do with the food?,0,Interaction_T2_2170,Interaction_T2,Threw.,Opened.,Took.,Put down.,Threw. 1240,LW5O6_9.5_16,What did the person do with the bag?,0,Interaction_T2_2173,Interaction_T2,Took.,Threw.,Put down.,Opened.,Took. 1241,CXSYS_5.4_10.1,What did the person do with the bag?,3,Interaction_T2_2174,Interaction_T2,Opened.,Threw.,Took.,Put down.,Put down. 1242,MD6P2_0_8.8,What did the person do with the medicine?,0,Interaction_T2_2179,Interaction_T2,Ate.,Lied on.,Opened.,Closed.,Ate. 1243,MD6P2_5_13.4,What did the person do with the box?,3,Interaction_T2_2180,Interaction_T2,Put down.,Closed.,Threw.,Opened.,Opened. 1244,HOI88_11.7_21.6,What did the person do with the sofa/couch?,2,Interaction_T2_2184,Interaction_T2,Lied on.,Put down.,Sat on.,Closed.,Sat on. 1245,0MFAM_22.9_28.3,What did the person do with the broom?,0,Interaction_T2_2190,Interaction_T2,Took.,Threw.,Washed.,Put down.,Took. 1246,WOD0G_14.5_19.9,What did the person do with the clothes?,3,Interaction_T2_2201,Interaction_T2,Tidied up.,Put down.,Took.,Threw.,Threw. 1247,GXIWH_7.5_16.1,What did the person do with the cup/glass/bottle?,0,Interaction_T2_2204,Interaction_T2,Took.,Washed.,Put down.,Lied on.,Took. 1248,FCBEQ_4.6_13,What did the person do with the food?,2,Interaction_T2_2214,Interaction_T2,Washed.,Threw.,Put down.,Took.,Put down. 1249,RXLKF_5.4_15.2,What did the person do with the book?,2,Interaction_T2_2233,Interaction_T2,Tidied up.,Threw.,Opened.,Closed.,Opened. 1250,RXLKF_1.8_9.4,What did the person do with the sofa/couch?,1,Interaction_T2_2235,Interaction_T2,Lied on.,Sat on.,Washed.,Put down.,Sat on. 1251,19PNV_14.7_21.3,What did the person do with the blanket?,2,Interaction_T2_2244,Interaction_T2,Put down.,Tidied up.,Took.,Threw.,Took. 1252,NVGDG_9.8_16.8,What did the person do with the sofa/couch?,2,Interaction_T2_2245,Interaction_T2,Lied on.,Put down.,Sat on.,Took.,Sat on. 1253,24XHS_20.3_26.3,What did the person do with the refrigerator?,1,Interaction_T2_2249,Interaction_T2,Took.,Opened.,Ate.,Closed.,Opened. 1254,24XHS_27.1_32.5,What did the person do with the refrigerator?,1,Interaction_T2_2250,Interaction_T2,Washed.,Closed.,Opened.,Sat on.,Closed. 1255,NEM29_7.7_14.5,What did the person do with the clothes?,3,Interaction_T2_2256,Interaction_T2,Took.,Tidied up.,Put down.,Threw.,Threw. 1256,YUEB9_0_9.1,What did the person do with the bag?,1,Interaction_T2_2261,Interaction_T2,Put down.,Opened.,Took.,Threw.,Opened. 1257,K71S1_12.2_20.9,What did the person do with the clothes?,0,Interaction_T2_2263,Interaction_T2,Tidied up.,Threw.,Put down.,Took.,Tidied up. 1258,OA9W5_31.7_35,What did the person do with the book?,0,Interaction_T2_2268,Interaction_T2,Closed.,Opened.,Put down.,Took.,Closed. 1259,JOLLV_10.8_17.3,What did the person do with the refrigerator?,3,Interaction_T2_2299,Interaction_T2,Closed.,Put down.,Tidied up.,Opened.,Opened. 1260,JOLLV_0_7.7,What did the person do with the sofa/couch?,1,Interaction_T2_2300,Interaction_T2,Lied on.,Sat on.,Threw.,Closed.,Sat on. 1261,V3RAX_20.8_29,What did the person do with the sandwich?,3,Interaction_T2_2306,Interaction_T2,Put down.,Sat on.,Took.,Ate.,Ate. 1262,V3RAX_7.1_15.6,What did the person do with the blanket?,0,Interaction_T2_2307,Interaction_T2,Threw.,Tidied up.,Put down.,Took.,Threw. 1263,FM5D5_11_18.1,What did the person do with the clothes?,1,Interaction_T2_2313,Interaction_T2,Washed.,Tidied up.,Put down.,Took.,Tidied up. 1264,8LAK1_4.4_10.4,What did the person do with the food?,0,Interaction_T2_2318,Interaction_T2,Put down.,Threw.,Opened.,Took.,Put down. 1265,WR2Q2_0_7.6,What did the person do with the sandwich?,1,Interaction_T2_2322,Interaction_T2,Took.,Ate.,Put down.,Opened.,Ate. 1266,WR2Q2_8.6_16.6,What did the person do with the sandwich?,3,Interaction_T2_2323,Interaction_T2,Took.,Put down.,Sat on.,Ate.,Ate. 1267,IWF0U_0.8_7.5,What did the person do with the blanket?,2,Interaction_T2_2346,Interaction_T2,Threw.,Took.,Tidied up.,Put down.,Tidied up. 1268,78R4Y_12_17,What did the person do with the refrigerator?,2,Interaction_T2_2378,Interaction_T2,Lied on.,Opened.,Closed.,Threw.,Closed. 1269,STAFD_3.3_12,What did the person do with the sandwich?,3,Interaction_T2_2383,Interaction_T2,Put down.,Took.,Opened.,Ate.,Ate. 1270,YFI1M_14.2_22.8,What did the person do with the clothes?,1,Interaction_T2_2398,Interaction_T2,Tidied up.,Put down.,Took.,Threw.,Put down. 1271,0O36O_7.3_14.5,What did the person do with the box?,1,Interaction_T2_2403,Interaction_T2,Took.,Closed.,Put down.,Threw.,Closed. 1272,HYD3N_22.6_32,What did the person do with the dish?,0,Interaction_T2_2412,Interaction_T2,Put down.,Washed.,Closed.,Took.,Put down. 1273,HYD3N_20.4_27,What did the person do with the sandwich?,3,Interaction_T2_2414,Interaction_T2,Ate.,Opened.,Took.,Put down.,Put down. 1274,P2HZG_4_10.2,What did the person do with the laptop?,3,Interaction_T2_2420,Interaction_T2,Opened.,Took.,Put down.,Closed.,Closed. 1275,P2HZG_23.2_29.2,What did the person do with the closet/cabinet?,3,Interaction_T2_2421,Interaction_T2,Opened.,Took.,Tidied up.,Closed.,Closed. 1276,P2HZG_0_9.3,What did the person do with the table?,1,Interaction_T2_2423,Interaction_T2,Closed.,Sat at.,Washed.,Tidied up.,Sat at. 1277,VML1Z_0_6.2,What did the person do with the closet/cabinet?,0,Interaction_T2_2454,Interaction_T2,Opened.,Closed.,Tidied up.,Put down.,Opened. 1278,MFQ5S_0_5.3,What did the person do with the closet/cabinet?,3,Interaction_T2_2462,Interaction_T2,Tidied up.,Sat on.,Closed.,Opened.,Opened. 1279,MFQ5S_6_12.8,What did the person do with the closet/cabinet?,2,Interaction_T2_2463,Interaction_T2,Washed.,Opened.,Closed.,Tidied up.,Closed. 1280,PDRVY_22.7_27.3,What did the person do with the bag?,1,Interaction_T2_2468,Interaction_T2,Put down.,Threw.,Opened.,Took.,Threw. 1281,E6PSM_23.2_28.3,What did the person do with the box?,2,Interaction_T2_2471,Interaction_T2,Put down.,Opened.,Threw.,Took.,Threw. 1282,E6PSM_33.3_39.2,What did the person do with the book?,2,Interaction_T2_2472,Interaction_T2,Took.,Opened.,Closed.,Lied on.,Closed. 1283,AZMVM_18.5_28,What did the person do with the pillow?,0,Interaction_T2_2478,Interaction_T2,Put down.,Threw.,Took.,Sat on.,Put down. 1284,TAZGF_7.3_13,What did the person do with the sofa/couch?,2,Interaction_T2_2486,Interaction_T2,Lied on.,Closed.,Sat on.,Threw.,Sat on. 1285,TAZGF_7.36_13,What did the person do with the table?,2,Interaction_T2_2489,Interaction_T2,Put down.,Washed.,Sat at.,Tidied up.,Sat at. 1286,BN4VH_14.3_18.9,What did the person do with the dish?,2,Interaction_T2_2490,Interaction_T2,Put down.,Lied on.,Took.,Washed.,Took. 1287,IS7PL_0_6.6,What did the person do with the sandwich?,0,Interaction_T2_2491,Interaction_T2,Ate.,Took.,Put down.,Washed.,Ate. 1288,01ZWG_4.9_11,What did the person do with the laptop?,3,Interaction_T2_2495,Interaction_T2,Put down.,Sat at.,Took.,Opened.,Opened. 1289,01ZWG_7.2_13.5,What did the person do with the table?,2,Interaction_T2_2496,Interaction_T2,Washed.,Tidied up.,Sat at.,Closed.,Sat at. 1290,IO712_0_5.9,What did the person do with the window?,3,Interaction_T2_2514,Interaction_T2,Opened.,Washed.,Ate.,Closed.,Closed. 1291,IO712_3.7_11.6,What did the person do with the floor?,1,Interaction_T2_2515,Interaction_T2,Tidied up.,Sat on.,Lied on.,Ate.,Sat on. 1292,KVYOZ_1.2_6,What did the person do with the picture?,0,Interaction_T2_2548,Interaction_T2,Put down.,Tidied up.,Threw.,Took.,Put down. 1293,V8JOH_0_8.7,What did the person do with the medicine?,3,Interaction_T2_2552,Interaction_T2,Sat on.,Closed.,Lied on.,Ate.,Ate. 1294,A015X_17_21.6,What did the person do with the paper/notebook?,1,Interaction_T2_2553,Interaction_T2,Put down.,Took.,Ate.,Tidied up.,Took. 1295,D67MQ_28.6_33,What did the person do with the floor?,3,Interaction_T2_2561,Interaction_T2,Lied on.,Ate.,Put down.,Sat on.,Sat on. 1296,41EQS_6.8_13.8,What did the person do with the bag?,3,Interaction_T2_2580,Interaction_T2,Opened.,Put down.,Took.,Threw.,Threw. 1297,41EQS_0_9.3,What did the person do with the towel?,3,Interaction_T2_2581,Interaction_T2,Took.,Put down.,Tidied up.,Threw.,Threw. 1298,LNWWJ_4.6_9.9,What did the person do with the pillow?,1,Interaction_T2_2582,Interaction_T2,Put down.,Threw.,Washed.,Took.,Threw. 1299,LNWWJ_3.6_9.7,What did the person do with the clothes?,2,Interaction_T2_2583,Interaction_T2,Took.,Washed.,Threw.,Tidied up.,Threw. 1300,6PL9Z_0_6.4,What did the person do with the sofa/couch?,1,Interaction_T2_2599,Interaction_T2,Opened.,Sat on.,Lied on.,Threw.,Sat on. 1301,7NBPG_0_4.8,What did the person do with the book?,3,Interaction_T2_2600,Interaction_T2,Put down.,Threw.,Took.,Opened.,Opened. 1302,DRGKV_12.4_17.3,What did the person do with the clothes?,2,Interaction_T2_2613,Interaction_T2,Took.,Put down.,Threw.,Tidied up.,Threw. 1303,ICL1M_16.1_22.1,What did the person do with the book?,0,Interaction_T2_2623,Interaction_T2,Closed.,Put down.,Took.,Opened.,Closed. 1304,LHMMJ_14.7_22.3,What did the person do with the closet/cabinet?,3,Interaction_T2_2627,Interaction_T2,Closed.,Sat on.,Opened.,Tidied up.,Tidied up. 1305,X5YL3_13_19,What did the person do with the refrigerator?,2,Interaction_T2_2636,Interaction_T2,Tidied up.,Opened.,Closed.,Ate.,Closed. 1306,57A1A_11_16,What did the person do with the broom?,1,Interaction_T2_2642,Interaction_T2,Took.,Threw.,Put down.,Tidied up.,Threw. 1307,J867Z_13.3_20,What did the person do with the book?,1,Interaction_T2_2645,Interaction_T2,Opened.,Threw.,Put down.,Closed.,Threw. 1308,DHPNN_8.8_15.5,What did the person do with the food?,0,Interaction_T2_2649,Interaction_T2,Threw.,Lied on.,Took.,Put down.,Threw. 1309,RJIEO_4.8_9.9,What did the person do with the bag?,2,Interaction_T2_2651,Interaction_T2,Took.,Threw.,Put down.,Opened.,Put down. 1310,5OIQ7_0_8.7,What did the person do with the bed?,0,Interaction_T2_2658,Interaction_T2,Lied on.,Sat on.,Took.,Ate.,Lied on. 1311,432NL_25.1_32,What did the person do with the medicine?,2,Interaction_T2_2671,Interaction_T2,Lied on.,Washed.,Ate.,Opened.,Ate. 1312,432NL_13.6_20.3,What did the person do with the refrigerator?,2,Interaction_T2_2672,Interaction_T2,Opened.,Sat on.,Closed.,Put down.,Closed. 1313,432NL_2.1_7.5,What did the person do with the refrigerator?,3,Interaction_T2_2673,Interaction_T2,Washed.,Closed.,Threw.,Opened.,Opened. 1314,JL8XT_24.1_34,What did the person do with the mirror?,3,Interaction_T2_2685,Interaction_T2,Took.,Opened.,Sat at.,Washed.,Washed. 1315,JL8XT_24.6_34,What did the person do with the closet/cabinet?,3,Interaction_T2_2686,Interaction_T2,Opened.,Ate.,Closed.,Tidied up.,Tidied up. 1316,JVXMI_0.1_4.7,What did the person do with the phone/camera?,3,Interaction_T2_2687,Interaction_T2,Put down.,Lied on.,Sat on.,Took.,Took. 1317,1RNK6_6.7_14,What did the person do with the closet/cabinet?,1,Interaction_T2_2708,Interaction_T2,Closed.,Tidied up.,Opened.,Put down.,Tidied up. 1318,OUAIS_23.1_29,What did the person do with the pillow?,1,Interaction_T2_2725,Interaction_T2,Took.,Threw.,Put down.,Lied on.,Threw. 1319,NVBBD_10.5_17.5,What did the person do with the shoe?,0,Interaction_T2_2729,Interaction_T2,Put down.,Threw.,Washed.,Took.,Put down. 1320,2LCLG_12.1_17.2,What did the person do with the book?,3,Interaction_T2_2739,Interaction_T2,Put down.,Took.,Opened.,Threw.,Threw. 1321,2LCLG_18.2_23,What did the person do with the bag?,3,Interaction_T2_2740,Interaction_T2,Opened.,Took.,Put down.,Threw.,Threw. 1322,TZL6H_24_32,What did the person do with the mirror?,1,Interaction_T2_2743,Interaction_T2,Sat on.,Washed.,Threw.,Took.,Washed. 1323,H8UJ3_15.1_23.1,What did the person do with the book?,3,Interaction_T2_2788,Interaction_T2,Took.,Put down.,Closed.,Opened.,Opened. 1324,CH8XJ_13.5_20.1,What did the person do with the closet/cabinet?,1,Interaction_T2_2808,Interaction_T2,Lied on.,Opened.,Tidied up.,Closed.,Opened. 1325,PON7X_16.1_26,What did the person do with the sandwich?,0,Interaction_T2_2814,Interaction_T2,Ate.,Took.,Washed.,Put down.,Ate. 1326,2XVR0_13.8_20,What did the person do with the sandwich?,1,Interaction_T2_2826,Interaction_T2,Washed.,Put down.,Ate.,Took.,Put down. 1327,2XVR0_14.3_21.3,What did the person do with the dish?,3,Interaction_T2_2827,Interaction_T2,Washed.,Threw.,Took.,Put down.,Put down. 1328,MX9XB_27.8_34.6,What did the person do with the bag?,3,Interaction_T2_2852,Interaction_T2,Opened.,Took.,Put down.,Threw.,Threw. 1329,MX9XB_28.3_36,What did the person do with the food?,1,Interaction_T2_2853,Interaction_T2,Put down.,Threw.,Took.,Tidied up.,Threw. 1330,MUO4G_4.7_12.8,What did the person do with the refrigerator?,1,Interaction_T2_2864,Interaction_T2,Closed.,Opened.,Lied on.,Threw.,Opened. 1331,MUO4G_0_6.7,What did the person do with the table?,0,Interaction_T2_2865,Interaction_T2,Sat on.,Washed.,Tidied up.,Opened.,Sat on. 1332,RRZU3_3.3_11,What did the person do with the laptop?,0,Interaction_T2_2872,Interaction_T2,Opened.,Closed.,Took.,Put down.,Opened. 1333,0IAGO_3.7_12.5,What did the person do with the shoe?,0,Interaction_T2_2897,Interaction_T2,Put down.,Opened.,Threw.,Took.,Put down. 1334,HFW6H_36.4_41.7,What did the person do with the clothes?,2,Interaction_T2_2966,Interaction_T2,Tidied up.,Took.,Threw.,Put down.,Threw. 1335,2544C_0_6,What did the person do with the towel?,1,Interaction_T2_2974,Interaction_T2,Took.,Threw.,Put down.,Tidied up.,Threw. 1336,ANA5N_4.3_10.3,What did the person do with the closet/cabinet?,1,Interaction_T2_3010,Interaction_T2,Tidied up.,Closed.,Opened.,Took.,Closed. 1337,0Z36L_28.7_32,What did the person do with the bag?,0,Interaction_T2_3012,Interaction_T2,Put down.,Threw.,Opened.,Took.,Put down. 1338,JBJGX_12.3_19.9,What did the person do with the laptop?,2,Interaction_T2_3052,Interaction_T2,Opened.,Took.,Closed.,Put down.,Closed. 1339,JBJGX_24.6_31.5,What did the person do with the laptop?,0,Interaction_T2_3053,Interaction_T2,Opened.,Closed.,Put down.,Took.,Opened. 1340,43FG9_3.6_11.4,What did the person do with the towel?,0,Interaction_T2_3055,Interaction_T2,Threw.,Took.,Tidied up.,Put down.,Threw. 1341,ZCH1J_0_8,What did the person do with the bag?,0,Interaction_T2_3074,Interaction_T2,Opened.,Took.,Threw.,Put down.,Opened. 1342,N2GFQ_33.4_39,What did the person do with the sofa/couch?,1,Interaction_T2_3085,Interaction_T2,Closed.,Lied on.,Threw.,Sat on.,Lied on. 1343,C9HLB_29.4_35,What did the person do with the laptop?,0,Interaction_T2_3088,Interaction_T2,Closed.,Opened.,Put down.,Took.,Closed. 1344,WRW74_3.7_9.3,What did the person do with the box?,3,Interaction_T2_3093,Interaction_T2,Closed.,Put down.,Took.,Opened.,Opened. 1345,XXIT4_0_6.4,What did the person do with the table?,2,Interaction_T2_3124,Interaction_T2,Washed.,Opened.,Sat at.,Tidied up.,Sat at. 1346,H2B7U_0_5.4,What did the person do with the blanket?,2,Interaction_T2_3139,Interaction_T2,Took.,Threw.,Put down.,Tidied up.,Put down. 1347,ZED9E_0_3.1,What did the person do with the sandwich?,3,Interaction_T2_3141,Interaction_T2,Put down.,Tidied up.,Took.,Ate.,Ate. 1348,9PXC0_23.5_31,What did the person do with the book?,3,Interaction_T2_3149,Interaction_T2,Took.,Put down.,Threw.,Opened.,Opened. 1349,9PXC0_0_8.7,What did the person do with the bed?,0,Interaction_T2_3150,Interaction_T2,Lied on.,Ate.,Sat on.,Put down.,Lied on. 1350,4S3UZ_25.8_31.7,What did the person do with the broom?,2,Interaction_T2_3170,Interaction_T2,Took.,Tidied up.,Put down.,Threw.,Put down. 1351,JZDL6_9_14,What did the person do with the bed?,2,Interaction_T2_3188,Interaction_T2,Threw.,Ate.,Sat on.,Lied on.,Sat on. 1352,J6TVB_0_5.7,What did the person do with the table?,3,Interaction_T2_3220,Interaction_T2,Washed.,Tidied up.,Took.,Sat at.,Sat at. 1353,DTJS6_14_19.7,What did the person do with the food?,2,Interaction_T2_3232,Interaction_T2,Lied on.,Put down.,Took.,Threw.,Took. 1354,5K0KJ_18_25.3,What did the person do with the phone/camera?,1,Interaction_T2_3237,Interaction_T2,Opened.,Took.,Tidied up.,Put down.,Took. 1355,I713Z_19.4_24.7,What did the person do with the refrigerator?,2,Interaction_T2_3264,Interaction_T2,Closed.,Tidied up.,Opened.,Washed.,Opened. 1356,Q7RK6_2.2_8.3,What did the person do with the clothes?,3,Interaction_T2_3267,Interaction_T2,Took.,Washed.,Put down.,Threw.,Threw. 1357,1MZJF_16.9_25,What did the person do with the floor?,3,Interaction_T2_3288,Interaction_T2,Took.,Washed.,Lied on.,Sat on.,Sat on. 1358,L0NFK_19_25,What did the person do with the pillow?,1,Interaction_T2_3310,Interaction_T2,Ate.,Threw.,Put down.,Took.,Threw. 1359,I20N2_27.3_34,What did the person do with the towel?,2,Interaction_T2_3322,Interaction_T2,Put down.,Took.,Threw.,Tidied up.,Threw. 1360,KLP7V_7.9_16.3,What did the person do with the box?,0,Interaction_T2_3325,Interaction_T2,Put down.,Threw.,Took.,Opened.,Put down. 1361,O18DS_19.4_24.2,What did the person do with the book?,1,Interaction_T2_3330,Interaction_T2,Opened.,Closed.,Took.,Put down.,Closed. 1362,ABHC6_2.5_12,What did the person do with the bag?,2,Interaction_T2_3334,Interaction_T2,Took.,Put down.,Opened.,Threw.,Opened. 1363,ABHC6_10.4_15.2,What did the person do with the clothes?,2,Interaction_T2_3336,Interaction_T2,Threw.,Tidied up.,Took.,Washed.,Took. 1364,P4DL9_0_7.2,What did the person do with the refrigerator?,1,Interaction_T2_3355,Interaction_T2,Opened.,Closed.,Washed.,Threw.,Closed. 1365,OO4FE_0_6.9,What did the person do with the table?,0,Interaction_T2_3356,Interaction_T2,Tidied up.,Lied on.,Sat on.,Washed.,Tidied up. 1366,52WDV_19.5_26.7,What did the person do with the book?,1,Interaction_T2_3357,Interaction_T2,Took.,Opened.,Closed.,Threw.,Opened. 1367,FX1T5_4.5_14.3,What did the person do with the book?,2,Interaction_T2_3366,Interaction_T2,Threw.,Put down.,Opened.,Took.,Opened. 1368,KU656_0_6.8,What did the person do with the bed?,2,Interaction_T2_3423,Interaction_T2,Sat on.,Closed.,Lied on.,Washed.,Lied on. 1369,IUOC0_22.2_29,What did the person do with the sandwich?,2,Interaction_T2_3446,Interaction_T2,Put down.,Threw.,Ate.,Took.,Ate. 1370,TK76G_10.8_16,What did the person do with the towel?,1,Interaction_T2_3456,Interaction_T2,Threw.,Put down.,Took.,Tidied up.,Put down. 1371,2GF6R_0_4.2,What did the person do with the sandwich?,1,Interaction_T2_3464,Interaction_T2,Ate.,Took.,Put down.,Threw.,Took. 1372,SM5WL_0_8.3,What did the person do with the bed?,3,Interaction_T2_3476,Interaction_T2,Opened.,Sat on.,Tidied up.,Lied on.,Lied on. 1373,3IRHH_21.4_28.8,What did the person do with the book?,3,Interaction_T2_3477,Interaction_T2,Threw.,Closed.,Took.,Opened.,Opened. 1374,7SXQS_1_7,What did the person do with the window?,0,Interaction_T2_3489,Interaction_T2,Closed.,Threw.,Opened.,Washed.,Closed. 1375,5I4UT_2.7_8.1,What did the person do with the floor?,1,Interaction_T2_3509,Interaction_T2,Sat on.,Lied on.,Put down.,Closed.,Lied on. 1376,08F85_14.4_23.2,What did the person do with the medicine?,0,Interaction_T2_3523,Interaction_T2,Ate.,Took.,Tidied up.,Sat on.,Ate. 1377,WLE0F_3.3_9.2,What did the person do with the bag?,3,Interaction_T2_3524,Interaction_T2,Threw.,Put down.,Took.,Opened.,Opened. 1378,LGS4C_15.8_24.5,What did the person do with the door?,1,Interaction_T2_3559,Interaction_T2,Put down.,Closed.,Opened.,Took.,Closed. 1379,4YL07_0_3.2,What did the person do with the picture?,0,Interaction_T2_3600,Interaction_T2,Took.,Put down.,Closed.,Threw.,Took. 1380,R1RDT_5_13,What did the person do with the bed?,1,Interaction_T2_3615,Interaction_T2,Sat on.,Lied on.,Took.,Put down.,Lied on. 1381,FL6DF_10.3_15.9,What did the person do with the pillow?,0,Interaction_T2_3617,Interaction_T2,Threw.,Put down.,Tidied up.,Took.,Threw. 1382,FL6DF_3.2_8.1,What did the person do with the laptop?,0,Interaction_T2_3618,Interaction_T2,Opened.,Closed.,Put down.,Lied on.,Opened. 1383,ZS9XR_10.6_17.1,What did the person do with the medicine?,1,Interaction_T2_3634,Interaction_T2,Opened.,Ate.,Lied on.,Put down.,Ate. 1384,JJLTF_27.4_35,What did the person do with the cup/glass/bottle?,2,Interaction_T2_3647,Interaction_T2,Took.,Sat on.,Put down.,Washed.,Put down. 1385,A3OWG_10.6_17,What did the person do with the broom?,2,Interaction_T2_3653,Interaction_T2,Put down.,Threw.,Took.,Tidied up.,Took. 1386,BAUQE_0_7,What did the person do with the clothes?,3,Interaction_T2_3678,Interaction_T2,Washed.,Took.,Put down.,Tidied up.,Tidied up. 1387,BGQIF_1.6_6.7,What did the person do with the sofa/couch?,3,Interaction_T2_3685,Interaction_T2,Put down.,Took.,Lied on.,Sat on.,Sat on. 1388,APVAD_12.7_21,What did the person do with the clothes?,2,Interaction_T2_3688,Interaction_T2,Put down.,Took.,Threw.,Tidied up.,Threw. 1389,APVAD_11.5_16.5,What did the person do with the pillow?,1,Interaction_T2_3689,Interaction_T2,Took.,Threw.,Put down.,Sat on.,Threw. 1390,P4HXN_26.8_33.3,What did the person do with the laptop?,3,Interaction_T2_3693,Interaction_T2,Took.,Closed.,Opened.,Put down.,Put down. 1391,UF91R_7.3_12.1,What did the person do with the laptop?,3,Interaction_T2_3694,Interaction_T2,Put down.,Took.,Opened.,Closed.,Closed. 1392,PQYWB_6.1_10.7,What did the person do with the towel?,0,Interaction_T2_3707,Interaction_T2,Put down.,Tidied up.,Threw.,Took.,Put down. 1393,C8WLX_25.2_35,What did the person do with the shoe?,1,Interaction_T2_3708,Interaction_T2,Put down.,Took.,Lied on.,Threw.,Took. 1394,HJ8U7_14.6_20.5,What did the person do with the cup/glass/bottle?,0,Interaction_T2_3724,Interaction_T2,Took.,Washed.,Put down.,Threw.,Took. 1395,ZXSRR_0_4.6,What did the person do with the laptop?,3,Interaction_T2_3725,Interaction_T2,Took.,Tidied up.,Opened.,Put down.,Put down. 1396,X8XQE_7.9_13.8,What did the person do with the closet/cabinet?,2,Interaction_T2_3755,Interaction_T2,Threw.,Opened.,Closed.,Tidied up.,Closed. 1397,WWPEN_18_24.6,What did the person do with the closet/cabinet?,0,Interaction_T2_3756,Interaction_T2,Opened.,Put down.,Closed.,Tidied up.,Opened. 1398,9ZQ0R_18.1_23.9,What did the person do with the phone/camera?,3,Interaction_T2_3762,Interaction_T2,Took.,Threw.,Lied on.,Put down.,Put down. 1399,EFR6I_16.9_23.5,What did the person do with the paper/notebook?,0,Interaction_T2_3763,Interaction_T2,Took.,Opened.,Ate.,Put down.,Took. 1400,W2LM5_0_4.1,What did the person do with the broom?,1,Interaction_T2_3770,Interaction_T2,Tidied up.,Took.,Threw.,Put down.,Took. 1401,40309_22.4_29.2,What did the person do with the door?,3,Interaction_T2_3800,Interaction_T2,Closed.,Put down.,Ate.,Opened.,Opened. 1402,ZZ2SF_16.2_25.5,What did the person do with the medicine?,3,Interaction_T2_3824,Interaction_T2,Closed.,Sat at.,Threw.,Ate.,Ate. 1403,8L9AJ_13.7_20.3,What did the person do with the laptop?,0,Interaction_T2_3825,Interaction_T2,Took.,Put down.,Opened.,Closed.,Took. 1404,RJCNV_12.2_17.9,What did the person do with the book?,0,Interaction_T2_3830,Interaction_T2,Opened.,Took.,Put down.,Threw.,Opened. 1405,PNAXO_0_5,What did the person do with the sandwich?,1,Interaction_T2_3832,Interaction_T2,Put down.,Took.,Ate.,Lied on.,Took. 1406,LW51F_11.3_17,What did the person do with the book?,0,Interaction_T2_3836,Interaction_T2,Closed.,Took.,Put down.,Opened.,Closed. 1407,PHN7Z_20_27,What did the person do with the door?,3,Interaction_T2_3845,Interaction_T2,Took.,Sat on.,Opened.,Closed.,Closed. 1408,2YJUQ_4.3_9.7,What did the person do with the table?,1,Interaction_T2_3856,Interaction_T2,Washed.,Sat at.,Put down.,Tidied up.,Sat at. 1409,BE51K_11.3_19.8,What did the person do with the bed?,2,Interaction_T2_3860,Interaction_T2,Tidied up.,Washed.,Sat on.,Lied on.,Sat on. 1410,2I871_11_16.6,What did the person do with the bag?,3,Interaction_T2_3864,Interaction_T2,Threw.,Put down.,Opened.,Took.,Took. 1411,S3FY2_27.7_31,What did the person do with the clothes?,3,Interaction_T2_3871,Interaction_T2,Took.,Tidied up.,Washed.,Threw.,Threw. 1412,3FEYY_12.3_17.3,What did the person do with the towel?,2,Interaction_T2_3880,Interaction_T2,Tidied up.,Took.,Put down.,Threw.,Put down. 1413,VPBIO_4.5_9.1,What did the person do with the bag?,2,Interaction_T2_3881,Interaction_T2,Put down.,Took.,Opened.,Threw.,Opened. 1414,N7GBK_2_6,What did the person do with the towel?,0,Interaction_T2_3903,Interaction_T2,Put down.,Threw.,Took.,Tidied up.,Put down. 1415,8MLCU_8.5_14.4,What did the person do with the refrigerator?,1,Interaction_T2_3912,Interaction_T2,Closed.,Opened.,Took.,Lied on.,Opened. 1416,FTG07_0.9_9.3,What did the person do with the table?,2,Interaction_T2_3927,Interaction_T2,Took.,Sat on.,Tidied up.,Washed.,Tidied up. 1417,GLGQJ_21.1_29.3,What did the person do with the window?,3,Interaction_T2_3932,Interaction_T2,Put down.,Opened.,Washed.,Closed.,Closed. 1418,TOOYI_0_4.7,What did the person do with the box?,3,Interaction_T2_3935,Interaction_T2,Closed.,Put down.,Threw.,Opened.,Opened. 1419,M52K2_39.1_45.6,What did the person do with the bag?,1,Interaction_T2_3989,Interaction_T2,Opened.,Took.,Threw.,Put down.,Took. 1420,XLR4B_21.8_30.9,What did the person do with the table?,2,Interaction_T2_3992,Interaction_T2,Tidied up.,Opened.,Sat at.,Washed.,Sat at. 1421,GN912_16.6_21,What did the person do with the dish?,3,Interaction_T2_3998,Interaction_T2,Threw.,Put down.,Washed.,Took.,Took. 1422,JCNHL_19.1_27.6,What did the person do with the box?,3,Interaction_T2_4008,Interaction_T2,Took.,Put down.,Closed.,Opened.,Opened. 1423,QXT9W_16.6_24.2,What did the person do with the book?,1,Interaction_T2_4021,Interaction_T2,Took.,Opened.,Threw.,Put down.,Opened. 1424,CLW8L_7.1_13.1,What did the person do with the pillow?,3,Interaction_T2_4044,Interaction_T2,Washed.,Put down.,Threw.,Took.,Took. 1425,17RPG_27.7_33,What did the person do with the sandwich?,0,Interaction_T2_4045,Interaction_T2,Ate.,Put down.,Threw.,Took.,Ate. 1426,17RPG_24.1_30.2,What did the person do with the clothes?,2,Interaction_T2_4046,Interaction_T2,Took.,Washed.,Threw.,Put down.,Threw. 1427,IBX56_10.7_19.1,What did the person do with the clothes?,1,Interaction_T2_4058,Interaction_T2,Washed.,Tidied up.,Sat at.,Took.,Tidied up. 1428,CFWP7_31.7_37,What did the person do with the shoe?,3,Interaction_T2_4073,Interaction_T2,Took.,Opened.,Put down.,Threw.,Threw. 1429,CFWP7_31.8_37,What did the person do with the clothes?,2,Interaction_T2_4074,Interaction_T2,Put down.,Took.,Threw.,Tidied up.,Threw. 1430,QRWQ3_26.1_33.3,What did the person do with the box?,0,Interaction_T2_4112,Interaction_T2,Opened.,Threw.,Put down.,Took.,Opened. 1431,03M0K_7.5_13.9,What did the person do with the laptop?,2,Interaction_T2_4153,Interaction_T2,Took.,Put down.,Opened.,Closed.,Opened. 1432,XQDQ4_7.4_16.7,What did the person do with the cup/glass/bottle?,2,Interaction_T2_4190,Interaction_T2,Put down.,Threw.,Took.,Washed.,Took. 1433,AFTMI_32.3_37.8,What did the person do with the pillow?,1,Interaction_T2_4201,Interaction_T2,Threw.,Took.,Put down.,Closed.,Took. 1434,969Z9_0.8_7.4,What did the person do with the table?,3,Interaction_T2_4202,Interaction_T2,Washed.,Tidied up.,Opened.,Sat at.,Sat at. 1435,IFQS1_8.7_13.3,What did the person do with the blanket?,1,Interaction_T2_4203,Interaction_T2,Threw.,Put down.,Took.,Tidied up.,Put down. 1436,F5TL0_8.8_13.6,What did the person do with the refrigerator?,2,Interaction_T2_4221,Interaction_T2,Put down.,Opened.,Closed.,Sat on.,Closed. 1437,01KML_18.1_26.8,What did the person do with the laptop?,3,Interaction_T2_4264,Interaction_T2,Closed.,Put down.,Opened.,Took.,Took. 1438,3EIRZ_0.2_10.2,What did the person do with the sandwich?,1,Interaction_T2_4278,Interaction_T2,Tidied up.,Ate.,Took.,Put down.,Ate. 1439,5XKVP_4_9,What did the person do with the blanket?,1,Interaction_T2_4309,Interaction_T2,Tidied up.,Threw.,Took.,Lied on.,Threw. 1440,GGAN0_18.4_24,What did the person do with the bag?,1,Interaction_T2_4317,Interaction_T2,Opened.,Put down.,Threw.,Took.,Put down. 1441,6JGXL_13_20.9,What did the person do with the medicine?,2,Interaction_T2_4329,Interaction_T2,Lied on.,Washed.,Ate.,Put down.,Ate. 1442,3Z1YC_17.5_22.9,What did the person do with the bag?,3,Interaction_T2_4337,Interaction_T2,Threw.,Put down.,Opened.,Took.,Took. 1443,GTK8W_18.8_25.1,What did the person do with the book?,3,Interaction_T2_4347,Interaction_T2,Took.,Opened.,Put down.,Closed.,Closed. 1444,GTK8W_31.3_36.4,What did the person do with the book?,2,Interaction_T2_4348,Interaction_T2,Threw.,Closed.,Opened.,Put down.,Opened. 1445,81YUE_21.4_30.6,What did the person do with the clothes?,0,Interaction_T2_4352,Interaction_T2,Put down.,Threw.,Tidied up.,Took.,Put down. 1446,D87LI_14.9_19.6,What did the person do with the laptop?,3,Interaction_T2_4353,Interaction_T2,Opened.,Took.,Put down.,Closed.,Closed. 1447,VWAEL_24.7_30.5,What did the person do with the box?,3,Interaction_T2_4361,Interaction_T2,Put down.,Closed.,Threw.,Took.,Took. 1448,330ZE_0_3.7,What did the person do with the bag?,3,Interaction_T2_4372,Interaction_T2,Opened.,Put down.,Threw.,Took.,Took. 1449,330ZE_0.3_9.8,What did the person do with the table?,3,Interaction_T2_4374,Interaction_T2,Washed.,Closed.,Sat on.,Tidied up.,Tidied up. 1450,ALXUC_2.8_7.8,What did the person do with the sandwich?,3,Interaction_T2_4383,Interaction_T2,Sat on.,Ate.,Put down.,Took.,Took. 1451,ALXUC_0_7.2,What did the person do with the food?,0,Interaction_T2_4384,Interaction_T2,Took.,Washed.,Threw.,Put down.,Took. 1452,CCN3E_10.3_16.7,What did the person do with the door?,2,Interaction_T2_4402,Interaction_T2,Closed.,Lied on.,Opened.,Washed.,Opened. 1453,2RTH2_11.6_17,What did the person do with the towel?,1,Interaction_T2_4439,Interaction_T2,Tidied up.,Put down.,Took.,Threw.,Put down. 1454,HNPC8_5.8_11.9,What did the person do with the closet/cabinet?,2,Interaction_T2_4445,Interaction_T2,Sat on.,Tidied up.,Closed.,Opened.,Closed. 1455,VT64S_3.5_10,What did the person do with the food?,0,Interaction_T2_4463,Interaction_T2,Took.,Closed.,Threw.,Put down.,Took. 1456,IGEU5_16.2_21.7,What did the person do with the pillow?,2,Interaction_T2_4464,Interaction_T2,Opened.,Took.,Threw.,Put down.,Threw. 1457,R9NRA_23.9_32,What did the person do with the sofa/couch?,2,Interaction_T2_4473,Interaction_T2,Put down.,Opened.,Lied on.,Sat on.,Lied on. 1458,T0LOH_0_4.2,What did the person do with the blanket?,0,Interaction_T2_4496,Interaction_T2,Took.,Threw.,Tidied up.,Put down.,Took. 1459,EGVGL_17.5_23,What did the person do with the bag?,0,Interaction_T2_4500,Interaction_T2,Opened.,Put down.,Threw.,Took.,Opened. 1460,8IPWO_8.7_14.4,What did the person do with the book?,0,Interaction_T2_4504,Interaction_T2,Opened.,Closed.,Took.,Put down.,Opened. 1461,2ZXJ5_7.5_12.7,What did the person do with the sofa/couch?,2,Interaction_T2_4506,Interaction_T2,Put down.,Lied on.,Sat on.,Took.,Sat on. 1462,QJXNG_10.4_17.2,What did the person do with the phone/camera?,2,Interaction_T2_4564,Interaction_T2,Took.,Threw.,Put down.,Opened.,Put down. 1463,DIR8Q_3_8,What did the person do with the phone/camera?,2,Interaction_T2_4576,Interaction_T2,Sat on.,Tidied up.,Put down.,Took.,Put down. 1464,9LHP3_6.4_12.3,What did the person do with the sofa/couch?,1,Interaction_T2_4597,Interaction_T2,Lied on.,Sat on.,Tidied up.,Washed.,Sat on. 1465,JBZF5_0_7.4,What did the person do with the table?,1,Interaction_T2_4600,Interaction_T2,Washed.,Tidied up.,Put down.,Sat on.,Tidied up. 1466,BZ1TH_0_3.3,What did the person do with the book?,1,Interaction_T2_4605,Interaction_T2,Closed.,Opened.,Put down.,Took.,Opened. 1467,DHR83_0.3_5.4,What did the person do with the paper/notebook?,0,Interaction_T2_4619,Interaction_T2,Put down.,Took.,Washed.,Threw.,Put down. 1468,QL92H_2.9_8.1,What did the person do with the bag?,2,Interaction_T2_4638,Interaction_T2,Opened.,Put down.,Threw.,Took.,Threw. 1469,7T6MB_0_6.9,What did the person do with the shoe?,2,Interaction_T2_4653,Interaction_T2,Put down.,Threw.,Took.,Lied on.,Took. 1470,APH4V_14_19.1,What did the person do with the door?,0,Interaction_T2_4658,Interaction_T2,Closed.,Tidied up.,Sat on.,Opened.,Closed. 1471,3B81O_28.6_34,What did the person do with the window?,3,Interaction_T2_4695,Interaction_T2,Washed.,Opened.,Took.,Closed.,Closed. 1472,3B81O_0_7.9,What did the person do with the window?,3,Interaction_T2_4696,Interaction_T2,Washed.,Closed.,Put down.,Opened.,Opened. 1473,T1KK1_0_3.1,What did the person do with the dish?,0,Interaction_T2_4741,Interaction_T2,Took.,Put down.,Threw.,Washed.,Took. 1474,9B93K_20_25.7,What did the person do with the sandwich?,1,Interaction_T2_4747,Interaction_T2,Opened.,Put down.,Took.,Ate.,Put down. 1475,9B93K_2_10.4,What did the person do with the sandwich?,0,Interaction_T2_4749,Interaction_T2,Took.,Ate.,Put down.,Lied on.,Took. 1476,FKJ9L_0.1_7.8,What did the person do with the box?,2,Interaction_T2_4752,Interaction_T2,Threw.,Closed.,Put down.,Opened.,Put down. 1477,B8DL6_14.1_22,What did the person do with the table?,3,Interaction_T2_4773,Interaction_T2,Sat on.,Took.,Washed.,Tidied up.,Tidied up. 1478,C4KZ4_0.6_5.8,What did the person do with the book?,0,Interaction_T2_4776,Interaction_T2,Closed.,Opened.,Took.,Put down.,Closed. 1479,K34BE_1.1_6.1,What did the person do with the bag?,1,Interaction_T2_4799,Interaction_T2,Opened.,Took.,Put down.,Threw.,Took. 1480,M3S4D_1.2_11,What did the person do with the box?,0,Interaction_T2_4800,Interaction_T2,Put down.,Took.,Opened.,Closed.,Put down. 1481,Y6P1E_2_7.6,What did the person do with the closet/cabinet?,3,Interaction_T2_4830,Interaction_T2,Closed.,Lied on.,Tidied up.,Opened.,Opened. 1482,AS7SG_18.8_26.4,What did the person do with the sandwich?,3,Interaction_T2_4890,Interaction_T2,Opened.,Took.,Put down.,Ate.,Ate. 1483,6RQHP_13.4_21.1,What did the person do with the dish?,0,Interaction_T2_4894,Interaction_T2,Washed.,Took.,Put down.,Closed.,Washed. 1484,4G00A_24.3_31.1,What did the person do with the broom?,1,Interaction_T2_4903,Interaction_T2,Tidied up.,Took.,Threw.,Put down.,Took. 1485,RCD08_24.2_30.2,What did the person do with the towel?,3,Interaction_T2_4924,Interaction_T2,Put down.,Tidied up.,Took.,Threw.,Threw. 1486,B57IW_11.1_17.1,What did the person do with the phone/camera?,2,Interaction_T2_4929,Interaction_T2,Ate.,Put down.,Took.,Tidied up.,Took. 1487,JKZG5_0.5_8.6,What did the person do with the medicine?,2,Interaction_T2_4946,Interaction_T2,Threw.,Opened.,Ate.,Took.,Ate. 1488,R1DCJ_0.8_10.2,What did the person do with the cup/glass/bottle?,1,Interaction_T2_4950,Interaction_T2,Tidied up.,Took.,Washed.,Put down.,Took. 1489,JJON5_6.7_14.7,What did the person do with the refrigerator?,2,Interaction_T2_4961,Interaction_T2,Put down.,Closed.,Opened.,Threw.,Opened. 1490,Q8TB3_5.5_10.1,What did the person do with the picture?,1,Interaction_T2_4974,Interaction_T2,Lied on.,Put down.,Took.,Washed.,Put down. 1491,DH66I_3.5_9.9,What did the person do with the box?,1,Interaction_T2_4983,Interaction_T2,Closed.,Put down.,Took.,Opened.,Put down. 1492,G4NOT_22.9_28.3,What did the person do with the door?,3,Interaction_T2_5004,Interaction_T2,Sat on.,Threw.,Opened.,Closed.,Closed. 1493,XBB9P_0_4.5,What did the person do with the closet/cabinet?,3,Interaction_T2_5023,Interaction_T2,Put down.,Tidied up.,Closed.,Opened.,Opened. 1494,9K2TY_27.4_32,What did the person do with the towel?,2,Interaction_T2_5041,Interaction_T2,Put down.,Took.,Threw.,Tidied up.,Threw. 1495,BDWIX_18.4_23.8,What did the person do with the clothes?,1,Interaction_T2_5055,Interaction_T2,Put down.,Tidied up.,Threw.,Took.,Tidied up. 1496,TU1C9_10.9_20.7,What did the person do with the sandwich?,0,Interaction_T2_5057,Interaction_T2,Ate.,Washed.,Took.,Put down.,Ate. 1497,V10LX_8.7_15.5,What did the person do with the cup/glass/bottle?,0,Interaction_T2_5093,Interaction_T2,Put down.,Tidied up.,Took.,Washed.,Put down. 1498,LQO5R_25_34,What did the person do with the sofa/couch?,2,Interaction_T2_5105,Interaction_T2,Opened.,Lied on.,Sat on.,Ate.,Sat on. 1499,92UB5_24.2_32,What did the person do with the pillow?,2,Interaction_T2_5106,Interaction_T2,Sat on.,Threw.,Put down.,Took.,Put down. 1500,KEPDQ_2_6,What did the person do with the dish?,2,Interaction_T2_5112,Interaction_T2,Washed.,Took.,Put down.,Sat at.,Put down. 1501,KEPDQ_2.1_6,What did the person do with the food?,0,Interaction_T2_5113,Interaction_T2,Put down.,Threw.,Washed.,Took.,Put down. 1502,WCERV_1.4_8.4,What did the person do with the blanket?,1,Interaction_T2_5134,Interaction_T2,Threw.,Put down.,Tidied up.,Took.,Put down. 1503,RZY2I_5_10,What did the person do with the window?,3,Interaction_T2_5140,Interaction_T2,Put down.,Washed.,Closed.,Opened.,Opened. 1504,NMC5N_11_16,What did the person do with the cup/glass/bottle?,0,Interaction_T2_5144,Interaction_T2,Put down.,Closed.,Washed.,Took.,Put down. 1505,DQEC3_0_8.3,What did the person do with the closet/cabinet?,3,Interaction_T2_5162,Interaction_T2,Sat on.,Closed.,Opened.,Tidied up.,Tidied up. 1506,DQEC3_11.7_17.2,What did the person do with the bag?,0,Interaction_T2_5163,Interaction_T2,Opened.,Put down.,Threw.,Took.,Opened. 1507,D7KU2_7.7_14.1,What did the person do with the broom?,3,Interaction_T2_5175,Interaction_T2,Lied on.,Threw.,Took.,Put down.,Put down. 1508,5EEFP_0_4.2,What did the person do with the shoe?,1,Interaction_T2_5176,Interaction_T2,Took.,Put down.,Threw.,Opened.,Put down. 1509,5FDHU_0.2_6.1,What did the person do with the sandwich?,1,Interaction_T2_5191,Interaction_T2,Washed.,Ate.,Put down.,Took.,Ate. 1510,3064K_3_8.1,What did the person do with the blanket?,0,Interaction_T2_5200,Interaction_T2,Tidied up.,Threw.,Took.,Put down.,Tidied up. 1511,JBY4E_5.4_10.4,What did the person do with the dish?,3,Interaction_T2_5202,Interaction_T2,Put down.,Closed.,Washed.,Took.,Took. 1512,8J723_25.9_35.5,What did the person do with the window?,0,Interaction_T2_5211,Interaction_T2,Opened.,Washed.,Closed.,Tidied up.,Opened. 1513,FRLW2_25.7_32,What did the person do with the shoe?,2,Interaction_T2_5259,Interaction_T2,Took.,Closed.,Threw.,Put down.,Threw. 1514,MYPU6_0.5_5.8,What did the person do with the clothes?,3,Interaction_T2_5298,Interaction_T2,Put down.,Washed.,Tidied up.,Threw.,Threw. 1515,3W6TL_13.1_20.1,What did the person do with the closet/cabinet?,2,Interaction_T2_5312,Interaction_T2,Took.,Tidied up.,Closed.,Opened.,Closed. 1516,YCGJS_8_14.4,What did the person do with the table?,0,Interaction_T2_5317,Interaction_T2,Sat at.,Tidied up.,Washed.,Took.,Sat at. 1517,86GSE_10.1_20,What did the person do with the sofa/couch?,3,Interaction_T2_5357,Interaction_T2,Lied on.,Tidied up.,Ate.,Sat on.,Sat on. 1518,9J166_9.9_17.5,What did the person do with the window?,1,Interaction_T2_5367,Interaction_T2,Closed.,Opened.,Sat on.,Washed.,Opened. 1519,9J166_17.4_21.9,What did the person do with the book?,1,Interaction_T2_5368,Interaction_T2,Opened.,Closed.,Put down.,Took.,Closed. 1520,9J166_18.6_23,What did the person do with the window?,1,Interaction_T2_5369,Interaction_T2,Threw.,Closed.,Opened.,Washed.,Closed. 1521,ZQAMW_19.4_24.2,What did the person do with the dish?,0,Interaction_T2_5388,Interaction_T2,Took.,Closed.,Put down.,Washed.,Took. 1522,AO8RW_3.1_12.6,What did the person do with the clothes?,1,Interaction_T2_5396,Interaction_T2,Threw.,Put down.,Took.,Tidied up.,Put down. 1523,Y5ZU3_16.2_22.1,What did the person do with the broom?,3,Interaction_T2_5405,Interaction_T2,Threw.,Put down.,Tidied up.,Took.,Took. 1524,0F453_0.3_7.9,What did the person do with the refrigerator?,1,Interaction_T2_5426,Interaction_T2,Closed.,Opened.,Ate.,Tidied up.,Opened. 1525,5JSFE_21.9_29,What did the person do with the paper/notebook?,1,Interaction_T2_5437,Interaction_T2,Washed.,Took.,Put down.,Sat on.,Took. 1526,1C6P3_0.7_8.6,What did the person do with the sandwich?,1,Interaction_T2_5461,Interaction_T2,Put down.,Ate.,Closed.,Took.,Ate. 1527,M506V_9.4_17.8,What did the person do with the towel?,1,Interaction_T2_5464,Interaction_T2,Tidied up.,Threw.,Took.,Put down.,Threw. 1528,1ZBUS_5.2_10.8,What did the person do with the table?,3,Interaction_T2_5473,Interaction_T2,Put down.,Tidied up.,Washed.,Sat at.,Sat at. 1529,M2XIS_2.7_7.4,What did the person do with the sofa/couch?,1,Interaction_T2_5492,Interaction_T2,Ate.,Sat on.,Lied on.,Closed.,Sat on. 1530,9A58F_2.9_8.1,What did the person do with the shoe?,3,Interaction_T2_5494,Interaction_T2,Put down.,Took.,Washed.,Threw.,Threw. 1531,W9XY8_1.1_8.4,What did the person do with the closet/cabinet?,3,Interaction_T2_5495,Interaction_T2,Took.,Tidied up.,Closed.,Opened.,Opened. 1532,024PD_52.3_59,What did the person do with the book?,2,Interaction_T2_5529,Interaction_T2,Threw.,Put down.,Closed.,Lied on.,Closed. 1533,YXQWH_20.6_26.1,What did the person do with the food?,3,Interaction_T2_5581,Interaction_T2,Took.,Sat at.,Threw.,Put down.,Put down. 1534,75RPN_10.2_16.8,What did the person do with the pillow?,1,Interaction_T2_5598,Interaction_T2,Threw.,Took.,Put down.,Ate.,Took. 1535,MA1ON_1_5,What did the person do with the floor?,2,Interaction_T2_5614,Interaction_T2,Closed.,Opened.,Lied on.,Sat on.,Lied on. 1536,IXISD_10.7_15.6,What did the person do with the shoe?,3,Interaction_T2_5637,Interaction_T2,Took.,Threw.,Lied on.,Put down.,Put down. 1537,3CAPI_3.7_10.5,What did the person do with the clothes?,1,Interaction_T2_5645,Interaction_T2,Tidied up.,Threw.,Took.,Washed.,Threw. 1538,3CAPI_29.1_34,What did the person do with the blanket?,2,Interaction_T2_5646,Interaction_T2,Tidied up.,Took.,Threw.,Put down.,Threw. 1539,3CAPI_6.4_12.3,What did the person do with the clothes?,0,Interaction_T2_5647,Interaction_T2,Threw.,Washed.,Put down.,Took.,Threw. 1540,OB1XO_16.9_22.2,What did the person do with the clothes?,0,Interaction_T2_5650,Interaction_T2,Threw.,Washed.,Put down.,Opened.,Threw. 1541,6N7G6_0.2_7.3,What did the person do with the table?,3,Interaction_T2_5678,Interaction_T2,Tidied up.,Opened.,Washed.,Sat at.,Sat at. 1542,M1GW9_13.5_23.5,What did the person do with the pillow?,0,Interaction_T2_5700,Interaction_T2,Threw.,Closed.,Took.,Put down.,Threw. 1543,EO6OI_3.9_10.2,What did the person do with the towel?,0,Interaction_T2_5713,Interaction_T2,Tidied up.,Put down.,Threw.,Took.,Tidied up. 1544,EO6OI_18.6_27.6,What did the person do with the table?,0,Interaction_T2_5716,Interaction_T2,Washed.,Opened.,Tidied up.,Sat on.,Washed. 1545,L7HA6_27_32.9,What did the person do with the phone/camera?,3,Interaction_T2_5721,Interaction_T2,Lied on.,Closed.,Took.,Put down.,Put down. 1546,ARCUY_36_41.5,What did the person do with the pillow?,3,Interaction_T2_5737,Interaction_T2,Washed.,Took.,Threw.,Put down.,Put down. 1547,R9382_13.4_20.3,What did the person do with the refrigerator?,3,Interaction_T2_5772,Interaction_T2,Sat on.,Opened.,Washed.,Closed.,Closed. 1548,R9382_20.4_29,What did the person do with the sandwich?,3,Interaction_T2_5773,Interaction_T2,Took.,Put down.,Opened.,Ate.,Ate. 1549,A0ZW3_20.9_26.2,What did the person do with the laptop?,1,Interaction_T2_5777,Interaction_T2,Closed.,Opened.,Took.,Put down.,Opened. 1550,L8Y8D_47.8_56,What did the person do with the refrigerator?,0,Interaction_T2_5790,Interaction_T2,Closed.,Took.,Sat on.,Opened.,Closed. 1551,JF36Q_0_7.8,What did the person do with the window?,3,Interaction_T2_5800,Interaction_T2,Opened.,Put down.,Washed.,Closed.,Closed. 1552,JF36Q_25.4_31,What did the person do with the laptop?,3,Interaction_T2_5801,Interaction_T2,Opened.,Put down.,Took.,Closed.,Closed. 1553,80E3X_0_6.9,What did the person do with the bed?,1,Interaction_T2_5823,Interaction_T2,Took.,Lied on.,Threw.,Sat on.,Lied on. 1554,AEUVY_16.4_22.9,What did the person do with the phone/camera?,1,Interaction_T2_5873,Interaction_T2,Washed.,Put down.,Closed.,Took.,Put down. 1555,KFC28_29.2_35,What did the person do with the closet/cabinet?,3,Interaction_T2_5874,Interaction_T2,Tidied up.,Washed.,Opened.,Closed.,Closed. 1556,YVH4J_33_38.2,What did the person do with the bag?,0,Interaction_T2_5875,Interaction_T2,Opened.,Threw.,Put down.,Took.,Opened. 1557,PHH6B_19.2_25.3,What did the person do with the sandwich?,3,Interaction_T2_5892,Interaction_T2,Threw.,Took.,Ate.,Put down.,Put down. 1558,CSLEP_0_6.1,What did the person do with the bed?,0,Interaction_T2_5897,Interaction_T2,Lied on.,Sat on.,Took.,Tidied up.,Lied on. 1559,8VWV2_1.6_7.3,What did the person do with the table?,1,Interaction_T2_5920,Interaction_T2,Tidied up.,Sat at.,Put down.,Washed.,Sat at. 1560,8VWV2_0_7.3,What did the person do with the floor?,0,Interaction_T2_5922,Interaction_T2,Sat on.,Tidied up.,Ate.,Lied on.,Sat on. 1561,SMMK4_10.5_16.2,What did the person do with the cup/glass/bottle?,2,Interaction_T2_5928,Interaction_T2,Threw.,Put down.,Took.,Washed.,Took. 1562,VVTJJ_3.1_9.6,What did the person do with the dish?,2,Interaction_T2_5930,Interaction_T2,Threw.,Took.,Put down.,Washed.,Put down. 1563,BLIFO_2.4_10.8,What did the person do with the towel?,2,Interaction_T2_5938,Interaction_T2,Threw.,Took.,Tidied up.,Put down.,Tidied up. 1564,BLIFO_1_9.1,What did the person do with the closet/cabinet?,1,Interaction_T2_5939,Interaction_T2,Tidied up.,Opened.,Closed.,Ate.,Opened. 1565,AWGMW_0_4.9,What did the person do with the sofa/couch?,3,Interaction_T2_5940,Interaction_T2,Sat on.,Ate.,Closed.,Lied on.,Lied on. 1566,J84TZ_0_4.5,What did the person do with the sofa/couch?,1,Interaction_T2_5944,Interaction_T2,Threw.,Lied on.,Put down.,Sat on.,Lied on. 1567,O2OUX_13.5_17.9,What did the person do with the laptop?,2,Interaction_T2_5953,Interaction_T2,Put down.,Took.,Closed.,Opened.,Closed. 1568,MC50M_2.7_9.2,What did the person do with the clothes?,0,Interaction_T2_5977,Interaction_T2,Put down.,Took.,Washed.,Threw.,Put down. 1569,A5XR5_13.8_19.4,What did the person do with the food?,0,Interaction_T2_5981,Interaction_T2,Took.,Tidied up.,Put down.,Threw.,Took. 1570,HCM5Y_0_8.4,What did the person do with the floor?,0,Interaction_T2_5986,Interaction_T2,Sat on.,Washed.,Closed.,Lied on.,Sat on. 1571,RKGG5_6_10.7,What did the person do with the broom?,0,Interaction_T2_5987,Interaction_T2,Threw.,Put down.,Tidied up.,Took.,Threw. 1572,RKGG5_12.6_21,What did the person do with the sofa/couch?,2,Interaction_T2_5989,Interaction_T2,Threw.,Sat on.,Lied on.,Ate.,Lied on. 1573,3GA59_16.9_21.7,What did the person do with the paper/notebook?,0,Interaction_T2_6041,Interaction_T2,Took.,Sat on.,Put down.,Ate.,Took. 1574,AXS82_13.7_19.2,What did the person do with the book?,2,Interaction_T2_6044,Interaction_T2,Threw.,Opened.,Closed.,Took.,Closed. 1575,AXS82_25.1_31,What did the person do with the refrigerator?,0,Interaction_T2_6045,Interaction_T2,Opened.,Tidied up.,Closed.,Sat on.,Opened. 1576,NE37I_16.1_22.2,What did the person do with the pillow?,2,Interaction_T2_6053,Interaction_T2,Threw.,Put down.,Took.,Closed.,Took. 1577,IWK2Y_5.5_11,What did the person do with the pillow?,0,Interaction_T2_6061,Interaction_T2,Took.,Opened.,Threw.,Put down.,Took. 1578,6KIA4_17.5_24,What did the person do with the table?,0,Interaction_T2_6072,Interaction_T2,Washed.,Tidied up.,Closed.,Sat on.,Washed. 1579,JOYAJ_6.7_15.2,What did the person do with the door?,2,Interaction_T2_6122,Interaction_T2,Closed.,Lied on.,Opened.,Sat on.,Opened. 1580,55AH5_15.1_21.8,What did the person do with the sofa/couch?,0,Interaction_T2_6131,Interaction_T2,Lied on.,Sat on.,Ate.,Threw.,Lied on. 1581,937EW_25_33,What did the person do with the closet/cabinet?,0,Interaction_T2_6136,Interaction_T2,Tidied up.,Closed.,Put down.,Opened.,Tidied up. 1582,MNC10_11.7_17.5,What did the person do with the food?,3,Interaction_T2_6137,Interaction_T2,Put down.,Tidied up.,Threw.,Took.,Took. 1583,IKJB4_14.5_23.6,What did the person do with the paper/notebook?,3,Interaction_T2_6140,Interaction_T2,Washed.,Took.,Closed.,Put down.,Put down. 1584,GPR89_51.1_56.9,What did the person do with the paper/notebook?,3,Interaction_T2_6153,Interaction_T2,Lied on.,Took.,Threw.,Put down.,Put down. 1585,KRLT7_4.7_12.5,What did the person do with the clothes?,0,Interaction_T2_6160,Interaction_T2,Threw.,Opened.,Took.,Put down.,Threw. 1586,9OMY1_22_28,What did the person do with the sofa/couch?,0,Interaction_T2_6185,Interaction_T2,Sat on.,Opened.,Washed.,Lied on.,Sat on. 1587,9OMY1_1.2_6.3,What did the person do with the box?,1,Interaction_T2_6186,Interaction_T2,Put down.,Opened.,Threw.,Closed.,Opened. 1588,JLGLU_15.4_22.9,What did the person do with the towel?,2,Interaction_T2_6188,Interaction_T2,Tidied up.,Threw.,Took.,Put down.,Took. 1589,F24GU_10.8_18.7,What did the person do with the floor?,1,Interaction_T2_6191,Interaction_T2,Took.,Lied on.,Sat on.,Threw.,Lied on. 1590,IZ2XX_9.1_14.2,What did the person do with the book?,3,Interaction_T2_6193,Interaction_T2,Closed.,Threw.,Took.,Put down.,Put down. 1591,KONWE_17.6_22.5,What did the person do with the pillow?,2,Interaction_T2_6197,Interaction_T2,Took.,Closed.,Threw.,Put down.,Threw. 1592,1HGEX_26.8_31,What did the person do with the book?,0,Interaction_T2_6226,Interaction_T2,Closed.,Opened.,Threw.,Put down.,Closed. 1593,EDXBD_0_9.7,What did the person do with the table?,1,Interaction_T2_6234,Interaction_T2,Tidied up.,Sat at.,Put down.,Washed.,Sat at. 1594,2GQDN_4.1_9,What did the person do with the box?,3,Interaction_T2_6253,Interaction_T2,Ate.,Put down.,Closed.,Opened.,Opened. 1595,KTKWL_19.4_25.8,What did the person do with the box?,1,Interaction_T2_6264,Interaction_T2,Put down.,Opened.,Threw.,Took.,Opened. 1596,QPX3S_6.4_11.4,What did the person do with the food?,1,Interaction_T2_6270,Interaction_T2,Threw.,Put down.,Lied on.,Took.,Put down. 1597,KFGXC_10.8_17.7,What did the person do with the food?,3,Interaction_T2_6289,Interaction_T2,Threw.,Took.,Ate.,Put down.,Put down. 1598,IKZN3_8.1_13.5,What did the person do with the cup/glass/bottle?,2,Interaction_T2_6298,Interaction_T2,Took.,Washed.,Put down.,Lied on.,Put down. 1599,IU5TH_6.6_14.2,What did the person do with the laptop?,0,Interaction_T2_6307,Interaction_T2,Closed.,Opened.,Took.,Put down.,Closed. 1600,KUBUA_0_6.1,What did the person do with the broom?,2,Interaction_T2_6326,Interaction_T2,Threw.,Took.,Put down.,Tidied up.,Put down. 1601,DQ46N_22.4_28.7,What did the person do with the closet/cabinet?,1,Interaction_T2_6332,Interaction_T2,Opened.,Closed.,Sat on.,Tidied up.,Closed. 1602,M1TZR_22.3_30.2,What did the person do with the sandwich?,0,Interaction_T2_6338,Interaction_T2,Put down.,Took.,Ate.,Sat on.,Put down. 1603,O8PO3_1.8_10,What did the person do with the dish?,0,Interaction_T2_6358,Interaction_T2,Took.,Washed.,Put down.,Ate.,Took. 1604,R74DE_18.1_23.3,What did the person do with the towel?,1,Interaction_T2_6393,Interaction_T2,Tidied up.,Threw.,Put down.,Took.,Threw. 1605,Q6WH2_29.5_36,What did the person do with the book?,1,Interaction_T2_6405,Interaction_T2,Threw.,Opened.,Took.,Put down.,Opened. 1606,320ZB_0_4.7,What did the person do with the clothes?,1,Interaction_T2_6435,Interaction_T2,Tidied up.,Threw.,Took.,Washed.,Threw. 1607,320ZB_0_4.2,What did the person do with the towel?,0,Interaction_T2_6436,Interaction_T2,Threw.,Put down.,Tidied up.,Took.,Threw. 1608,3UZ88_24.6_30.9,What did the person do with the door?,0,Interaction_T2_6458,Interaction_T2,Closed.,Opened.,Took.,Ate.,Closed. 1609,Y7WEK_24.6_29.2,What did the person do with the book?,2,Interaction_T2_6470,Interaction_T2,Washed.,Took.,Closed.,Opened.,Closed. 1610,WH1S5_6.8_11.5,What did the person do with the sandwich?,0,Interaction_T2_6476,Interaction_T2,Took.,Sat on.,Ate.,Put down.,Took. 1611,GC1Q1_6.6_11.6,What did the person do with the towel?,2,Interaction_T2_6542,Interaction_T2,Threw.,Tidied up.,Put down.,Took.,Put down. 1612,0OE6M_3.4_8,What did the person do with the clothes?,2,Interaction_T2_6554,Interaction_T2,Put down.,Took.,Threw.,Tidied up.,Threw. 1613,G4E4S_4.4_11.1,What did the person do with the clothes?,3,Interaction_T2_6557,Interaction_T2,Threw.,Took.,Washed.,Put down.,Put down. 1614,G4E4S_53.2_60,What did the person do with the closet/cabinet?,1,Interaction_T2_6558,Interaction_T2,Opened.,Closed.,Sat on.,Tidied up.,Closed. 1615,BQAUC_2.1_8,What did the person do with the shoe?,2,Interaction_T2_6559,Interaction_T2,Sat on.,Took.,Put down.,Threw.,Put down. 1616,1HAYV_0_4.3,What did the person do with the sandwich?,1,Interaction_T2_6561,Interaction_T2,Tidied up.,Ate.,Put down.,Took.,Ate. 1617,HOGVD_0_8.3,What did the person do with the bag?,3,Interaction_T2_6571,Interaction_T2,Put down.,Took.,Threw.,Opened.,Opened. 1618,M5S4U_19_28,What did the person do with the closet/cabinet?,1,Interaction_T2_6603,Interaction_T2,Lied on.,Tidied up.,Opened.,Closed.,Tidied up. 1619,CDIW7_6.6_13.5,What did the person do with the box?,0,Interaction_T2_6618,Interaction_T2,Put down.,Took.,Closed.,Threw.,Put down. 1620,PYIA3_1.4_7,What did the person do with the refrigerator?,1,Interaction_T2_6635,Interaction_T2,Ate.,Opened.,Closed.,Put down.,Opened. 1621,ZA7ST_30.4_35,What did the person do with the box?,2,Interaction_T2_6643,Interaction_T2,Put down.,Threw.,Opened.,Took.,Opened. 1622,23YS1_33.9_43.3,What did the person do with the closet/cabinet?,0,Interaction_T2_6665,Interaction_T2,Tidied up.,Put down.,Opened.,Closed.,Tidied up. 1623,3AE3T_2.1_7.1,What did the person do with the laptop?,0,Interaction_T2_6684,Interaction_T2,Put down.,Opened.,Took.,Closed.,Put down. 1624,O7OD2_8_16.1,What did the person do with the sandwich?,3,Interaction_T2_6690,Interaction_T2,Put down.,Took.,Closed.,Ate.,Ate. 1625,B69CF_14_20.6,What did the person do with the window?,1,Interaction_T2_6721,Interaction_T2,Opened.,Closed.,Took.,Washed.,Closed. 1626,MY5CQ_14_19.6,What did the person do with the book?,0,Interaction_T2_6760,Interaction_T2,Opened.,Closed.,Took.,Threw.,Opened. 1627,MY5CQ_11.5_17.4,What did the person do with the laptop?,1,Interaction_T2_6761,Interaction_T2,Put down.,Closed.,Opened.,Threw.,Closed. 1628,D09K3_22_30,What did the person do with the door?,0,Interaction_T2_6765,Interaction_T2,Opened.,Ate.,Closed.,Sat on.,Opened. 1629,E18UD_13.2_21.4,What did the person do with the food?,0,Interaction_T2_6769,Interaction_T2,Took.,Ate.,Threw.,Put down.,Took. 1630,KNGUT_0_5,What did the person do with the bag?,2,Interaction_T2_6777,Interaction_T2,Took.,Put down.,Opened.,Threw.,Opened. 1631,MYZLT_33.5_38.7,What did the person do with the towel?,2,Interaction_T2_6785,Interaction_T2,Put down.,Threw.,Took.,Tidied up.,Took. 1632,0SBT3_0_7,What did the person do with the sofa/couch?,2,Interaction_T2_6811,Interaction_T2,Lied on.,Washed.,Sat on.,Threw.,Sat on. 1633,6C4DV_0.5_7,What did the person do with the closet/cabinet?,3,Interaction_T2_6814,Interaction_T2,Lied on.,Opened.,Closed.,Tidied up.,Tidied up. 1634,6C4DV_0.5_8.2,What did the person do with the phone/camera?,1,Interaction_T2_6815,Interaction_T2,Put down.,Took.,Sat at.,Threw.,Took. 1635,JXNEN_10.4_17.7,What did the person do with the sandwich?,0,Interaction_T2_6823,Interaction_T2,Ate.,Put down.,Took.,Threw.,Ate. 1636,EY6P4_0.5_7,What did the person do with the closet/cabinet?,2,Interaction_T2_6826,Interaction_T2,Closed.,Sat on.,Opened.,Tidied up.,Opened. 1637,3EDV7_2.6_10.4,What did the person do with the clothes?,2,Interaction_T2_6827,Interaction_T2,Threw.,Tidied up.,Washed.,Took.,Washed. 1638,013SD_0_4.3,What did the person do with the box?,1,Interaction_T2_6864,Interaction_T2,Took.,Put down.,Closed.,Threw.,Put down. 1639,J6P6H_9.5_17.4,What did the person do with the sandwich?,1,Interaction_T2_6886,Interaction_T2,Took.,Ate.,Put down.,Washed.,Ate. 1640,ELBLK_16.2_21.1,What did the person do with the food?,3,Interaction_T2_6896,Interaction_T2,Washed.,Put down.,Threw.,Took.,Took. 1641,S1J2Q_22.3_28.4,What did the person do with the refrigerator?,2,Interaction_T2_6904,Interaction_T2,Opened.,Washed.,Closed.,Ate.,Closed. 1642,UIERL_13.5_19.2,What did the person do with the food?,1,Interaction_T2_6916,Interaction_T2,Put down.,Took.,Threw.,Ate.,Took. 1643,OJIEC_5.7_12.2,What did the person do with the towel?,2,Interaction_T2_6919,Interaction_T2,Put down.,Tidied up.,Took.,Threw.,Took. 1644,KZODG_15.3_22.9,What did the person do with the laptop?,1,Interaction_T2_6920,Interaction_T2,Took.,Closed.,Put down.,Opened.,Closed. 1645,3ND23_8.1_13.9,What did the person do with the sofa/couch?,3,Interaction_T2_6923,Interaction_T2,Closed.,Lied on.,Took.,Sat on.,Sat on. 1646,HFWE9_0_3.1,What did the person do with the sandwich?,0,Interaction_T2_6948,Interaction_T2,Took.,Closed.,Put down.,Ate.,Took. 1647,27JQL_17.7_24.1,What did the person do with the sandwich?,1,Interaction_T2_6965,Interaction_T2,Took.,Ate.,Lied on.,Put down.,Ate. 1648,O2DXE_3_10.6,What did the person do with the blanket?,3,Interaction_T2_6974,Interaction_T2,Tidied up.,Took.,Threw.,Put down.,Put down. 1649,9207X_18.1_22,What did the person do with the closet/cabinet?,2,Interaction_T2_6992,Interaction_T2,Opened.,Tidied up.,Closed.,Washed.,Closed. 1650,IHSRC_0_4,What did the person do with the bag?,1,Interaction_T2_7005,Interaction_T2,Took.,Opened.,Put down.,Threw.,Opened. 1651,QXEWB_0_3.7,What did the person do with the book?,0,Interaction_T2_7016,Interaction_T2,Threw.,Put down.,Opened.,Took.,Threw. 1652,VEHER_1.8_9.8,What did the person do with the box?,0,Interaction_T2_7017,Interaction_T2,Took.,Opened.,Ate.,Put down.,Took. 1653,VEHER_2_10.4,What did the person do with the clothes?,1,Interaction_T2_7018,Interaction_T2,Tidied up.,Took.,Washed.,Threw.,Took. 1654,84893_15.2_20.5,What did the person do with the shoe?,2,Interaction_T2_7022,Interaction_T2,Took.,Put down.,Threw.,Lied on.,Threw. 1655,84893_8.7_15.6,What did the person do with the clothes?,3,Interaction_T2_7023,Interaction_T2,Put down.,Washed.,Took.,Threw.,Threw. 1656,84893_7.8_15.3,What did the person do with the blanket?,1,Interaction_T2_7024,Interaction_T2,Took.,Tidied up.,Threw.,Put down.,Tidied up. 1657,TCN06_12.3_18.8,What did the person do with the blanket?,1,Interaction_T2_7032,Interaction_T2,Threw.,Tidied up.,Took.,Put down.,Tidied up. 1658,WV9FZ_23_30,What did the person do with the table?,2,Interaction_T2_7057,Interaction_T2,Tidied up.,Washed.,Sat at.,Ate.,Sat at. 1659,Z6HEA_2.6_11.4,What did the person do with the clothes?,2,Interaction_T2_7116,Interaction_T2,Put down.,Tidied up.,Washed.,Took.,Washed. 1660,Z6HEA_9.1_16.2,What did the person do with the floor?,2,Interaction_T2_7118,Interaction_T2,Threw.,Lied on.,Sat on.,Washed.,Sat on. 1661,ZFQNZ_8.9_13.8,What did the person do with the refrigerator?,3,Interaction_T2_7127,Interaction_T2,Opened.,Put down.,Washed.,Closed.,Closed. 1662,ZFQNZ_1.5_7.8,What did the person do with the refrigerator?,0,Interaction_T2_7128,Interaction_T2,Opened.,Washed.,Closed.,Lied on.,Opened. 1663,HL5OP_14.4_21.7,What did the person do with the food?,3,Interaction_T2_7147,Interaction_T2,Lied on.,Took.,Put down.,Threw.,Threw. 1664,HL5OP_28.9_37,What did the person do with the table?,2,Interaction_T2_7149,Interaction_T2,Washed.,Sat on.,Tidied up.,Opened.,Tidied up. 1665,BZD0Q_12.9_22.8,What did the person do with the bag?,0,Interaction_T2_7160,Interaction_T2,Took.,Put down.,Opened.,Threw.,Took. 1666,KFI7N_5.5_10,What did the person do with the broom?,3,Interaction_T2_7213,Interaction_T2,Put down.,Tidied up.,Took.,Threw.,Threw. 1667,16UNJ_6.1_14,What did the person do with the shoe?,3,Interaction_T2_7225,Interaction_T2,Put down.,Threw.,Tidied up.,Took.,Took. 1668,SUI1X_1.7_10.3,What did the person do with the bag?,1,Interaction_T2_7226,Interaction_T2,Put down.,Opened.,Threw.,Took.,Opened. 1669,DBT6E_21.8_31.8,What did the person do with the laptop?,2,Interaction_T2_7249,Interaction_T2,Closed.,Took.,Opened.,Put down.,Opened. 1670,CR5G1_13.1_18.6,What did the person do with the blanket?,1,Interaction_T2_7280,Interaction_T2,Threw.,Took.,Put down.,Tidied up.,Took. 1671,TVCQF_12_17,What did the person do with the box?,3,Interaction_T2_7307,Interaction_T2,Threw.,Closed.,Put down.,Opened.,Opened. 1672,TVCQF_6.5_13.9,What did the person do with the table?,0,Interaction_T2_7308,Interaction_T2,Sat at.,Threw.,Washed.,Tidied up.,Sat at. 1673,W2DAK_9.5_17.4,What did the person do with the box?,3,Interaction_T2_7334,Interaction_T2,Took.,Put down.,Threw.,Opened.,Opened. 1674,NV4FC_0_3.1,What did the person do with the bed?,3,Interaction_T2_7339,Interaction_T2,Ate.,Lied on.,Threw.,Sat on.,Sat on. 1675,NV4FC_15.7_21.3,What did the person do with the shoe?,2,Interaction_T2_7340,Interaction_T2,Closed.,Took.,Threw.,Put down.,Threw. 1676,XFRYR_8.8_16.2,What did the person do with the closet/cabinet?,3,Interaction_T2_7346,Interaction_T2,Put down.,Opened.,Tidied up.,Closed.,Closed. 1677,AJTDO_20.8_25.3,What did the person do with the pillow?,3,Interaction_T2_7358,Interaction_T2,Took.,Put down.,Ate.,Threw.,Threw. 1678,8VSV6_9.2_17,What did the person do with the table?,0,Interaction_T2_7366,Interaction_T2,Sat at.,Threw.,Washed.,Tidied up.,Sat at. 1679,XYGU1_11.8_20.5,What did the person do with the book?,0,Interaction_T2_7386,Interaction_T2,Opened.,Sat at.,Put down.,Closed.,Opened. 1680,SPJVR_13.9_19.3,What did the person do with the blanket?,1,Interaction_T2_7397,Interaction_T2,Took.,Threw.,Tidied up.,Put down.,Threw. 1681,IBIWF_9.1_15.9,What did the person do with the picture?,3,Interaction_T2_7413,Interaction_T2,Took.,Opened.,Washed.,Put down.,Put down. 1682,IBIWF_6.8_12.1,What did the person do with the phone/camera?,3,Interaction_T2_7414,Interaction_T2,Sat on.,Closed.,Took.,Put down.,Put down. 1683,GLIC0_21.1_26.7,What did the person do with the clothes?,0,Interaction_T2_7422,Interaction_T2,Put down.,Threw.,Took.,Washed.,Put down. 1684,GLIC0_22.2_28.7,What did the person do with the bag?,0,Interaction_T2_7423,Interaction_T2,Put down.,Took.,Threw.,Opened.,Put down. 1685,OKYYQ_2.5_8.5,What did the person do with the book?,2,Interaction_T2_7429,Interaction_T2,Took.,Put down.,Closed.,Opened.,Closed. 1686,86X97_1.4_7.6,What did the person do with the book?,1,Interaction_T2_7477,Interaction_T2,Closed.,Took.,Put down.,Opened.,Took. 1687,M7BD4_20.2_26.2,What did the person do with the laptop?,1,Interaction_T2_7491,Interaction_T2,Put down.,Closed.,Took.,Opened.,Closed. 1688,QM4AD_17.7_23.4,What did the person do with the cup/glass/bottle?,2,Interaction_T2_7503,Interaction_T2,Washed.,Closed.,Put down.,Took.,Put down. 1689,MZJ9D_0_7.4,What did the person do with the laptop?,3,Interaction_T2_7518,Interaction_T2,Took.,Put down.,Sat at.,Opened.,Opened. 1690,MZJ9D_0_9.9,What did the person do with the sofa/couch?,0,Interaction_T2_7519,Interaction_T2,Sat on.,Took.,Threw.,Lied on.,Sat on. 1691,V9W9C_31.8_37,What did the person do with the table?,0,Interaction_T2_7537,Interaction_T2,Tidied up.,Sat on.,Threw.,Washed.,Tidied up. 1692,9632M_26.6_32,What did the person do with the towel?,0,Interaction_T2_7538,Interaction_T2,Took.,Threw.,Put down.,Tidied up.,Took. 1693,UDGP2_0_6.8,What did the person do with the refrigerator?,1,Interaction_T2_7546,Interaction_T2,Tidied up.,Opened.,Put down.,Closed.,Opened. 1694,JSLW5_0_6.4,What did the person do with the closet/cabinet?,0,Interaction_T2_7561,Interaction_T2,Opened.,Tidied up.,Put down.,Closed.,Opened. 1695,0JB3D_21.2_28.2,What did the person do with the towel?,0,Interaction_T2_7567,Interaction_T2,Took.,Put down.,Threw.,Tidied up.,Took. 1696,70PUI_10.7_16.7,What did the person do with the towel?,2,Interaction_T2_7589,Interaction_T2,Put down.,Tidied up.,Took.,Threw.,Took. 1697,70PUI_10.7_16.7,What did the person do with the blanket?,3,Interaction_T2_7590,Interaction_T2,Tidied up.,Threw.,Put down.,Took.,Took. 1698,3EJQW_0_6.1,What did the person do with the table?,1,Interaction_T2_7632,Interaction_T2,Washed.,Sat at.,Tidied up.,Closed.,Sat at. 1699,3EJQW_0_5.3,What did the person do with the sofa/couch?,1,Interaction_T2_7633,Interaction_T2,Washed.,Sat on.,Ate.,Lied on.,Sat on. 1700,58Z9R_0_8.6,What did the person do with the door?,2,Interaction_T2_7638,Interaction_T2,Threw.,Closed.,Opened.,Put down.,Opened. 1701,ZOL0R_9.5_14.8,What did the person do with the clothes?,2,Interaction_T2_7639,Interaction_T2,Put down.,Washed.,Threw.,Took.,Threw. 1702,WE2PF_3.3_12.2,What did the person do with the bag?,1,Interaction_T2_7662,Interaction_T2,Took.,Opened.,Threw.,Put down.,Opened. 1703,UEP20_14.6_23.1,What did the person do with the bed?,1,Interaction_T2_7679,Interaction_T2,Sat on.,Lied on.,Closed.,Ate.,Lied on. 1704,I329H_0_8.9,What did the person do with the bag?,3,Interaction_T2_7697,Interaction_T2,Threw.,Put down.,Took.,Opened.,Opened. 1705,VKXLL_22.1_28.6,What did the person do with the box?,2,Interaction_T2_7706,Interaction_T2,Threw.,Put down.,Opened.,Closed.,Opened. 1706,Q8UJ8_0.9_5.9,What did the person do with the bag?,0,Interaction_T2_7720,Interaction_T2,Opened.,Threw.,Took.,Put down.,Opened. 1707,XZ9C0_0_8.7,What did the person do with the bed?,0,Interaction_T2_7736,Interaction_T2,Lied on.,Opened.,Sat on.,Closed.,Lied on. 1708,LY10X_24.1_31.6,What did the person do with the medicine?,3,Interaction_T2_7754,Interaction_T2,Closed.,Took.,Sat on.,Ate.,Ate. 1709,3XKBC_18.8_28.1,What did the person do with the laptop?,0,Interaction_T2_7758,Interaction_T2,Opened.,Took.,Closed.,Put down.,Opened. 1710,3XKBC_19.6_24.7,What did the person do with the table?,2,Interaction_T2_7760,Interaction_T2,Took.,Washed.,Sat at.,Tidied up.,Sat at. 1711,EC695_13.3_18.6,What did the person do with the laptop?,3,Interaction_T2_7785,Interaction_T2,Put down.,Closed.,Opened.,Took.,Took. 1712,0Y19Q_18.3_24,What did the person do with the cup/glass/bottle?,0,Interaction_T2_7788,Interaction_T2,Put down.,Took.,Washed.,Lied on.,Put down. 1713,FZJTT_16_24,What did the person do with the phone/camera?,1,Interaction_T2_7828,Interaction_T2,Ate.,Took.,Washed.,Put down.,Took. 1714,PZD7Z_0_7.1,What did the person do with the table?,0,Interaction_T2_7829,Interaction_T2,Sat at.,Tidied up.,Washed.,Took.,Sat at. 1715,C61BE_0_8,What did the person do with the sandwich?,3,Interaction_T2_7848,Interaction_T2,Put down.,Took.,Opened.,Ate.,Ate. 1716,EAKL5_19.3_28.5,What did the person do with the phone/camera?,1,Interaction_T2_7851,Interaction_T2,Washed.,Put down.,Took.,Lied on.,Put down. 1717,6TNP4_0_9.8,What did the person do with the refrigerator?,3,Interaction_T2_7860,Interaction_T2,Took.,Closed.,Tidied up.,Opened.,Opened. 1718,34OT4_24.6_33.1,What did the person do with the pillow?,0,Interaction_T2_7864,Interaction_T2,Put down.,Sat on.,Threw.,Took.,Put down. 1719,MA15X_65.7_72,What did the person do with the blanket?,2,Interaction_T2_7866,Interaction_T2,Took.,Tidied up.,Threw.,Put down.,Threw. 1720,0BZAD_7.5_12.9,What did the person do with the book?,2,Interaction_T2_7884,Interaction_T2,Put down.,Took.,Opened.,Threw.,Opened. 1721,B8PQL_6.9_16.3,What did the person do with the window?,1,Interaction_T2_7893,Interaction_T2,Closed.,Washed.,Opened.,Lied on.,Washed. 1722,Z6LYG_36.3_42,What did the person do with the refrigerator?,1,Interaction_T2_7903,Interaction_T2,Opened.,Closed.,Put down.,Sat on.,Closed. 1723,Z6LYG_1.9_8.2,What did the person do with the refrigerator?,1,Interaction_T2_7904,Interaction_T2,Ate.,Opened.,Closed.,Lied on.,Opened. 1724,1G90H_4.7_11.1,What did the person do with the cup/glass/bottle?,1,Interaction_T2_7916,Interaction_T2,Washed.,Took.,Put down.,Closed.,Took. 1725,Y2DK5_17.1_25.9,What did the person do with the refrigerator?,2,Interaction_T2_7926,Interaction_T2,Closed.,Threw.,Opened.,Put down.,Opened. 1726,0CG15_19.7_24.9,What did the person do with the clothes?,2,Interaction_T2_7939,Interaction_T2,Tidied up.,Took.,Put down.,Washed.,Put down. 1727,IZCB0_2.2_12.2,What did the person do with the door?,2,Interaction_T2_7951,Interaction_T2,Opened.,Put down.,Closed.,Tidied up.,Closed. 1728,ACJBD_32_36.7,What did the person do with the clothes?,3,Interaction_T2_7967,Interaction_T2,Threw.,Washed.,Took.,Tidied up.,Tidied up. 1729,G4AJK_35.2_40.7,What did the person do with the food?,0,Interaction_T2_7969,Interaction_T2,Put down.,Threw.,Lied on.,Took.,Put down. 1730,1E7VU_12_18.5,What did the person do with the closet/cabinet?,0,Interaction_T2_7970,Interaction_T2,Closed.,Opened.,Tidied up.,Threw.,Closed. 1731,BPH56_0_6.8,What did the person do with the dish?,3,Interaction_T2_7977,Interaction_T2,Put down.,Opened.,Washed.,Took.,Took. 1732,HPAYB_5.6_13.3,What did the person do with the bag?,0,Interaction_T2_7992,Interaction_T2,Put down.,Threw.,Took.,Opened.,Put down. 1733,USNP1_4.3_11.4,What did the person do with the phone/camera?,0,Interaction_T2_8008,Interaction_T2,Took.,Put down.,Lied on.,Tidied up.,Took. 1734,5V5EL_3.7_11,What did the person do with the phone/camera?,0,Interaction_T2_8029,Interaction_T2,Put down.,Opened.,Took.,Washed.,Put down. 1735,BI31D_8.3_18,What did the person do with the bed?,2,Interaction_T2_8059,Interaction_T2,Tidied up.,Lied on.,Sat on.,Ate.,Sat on. 1736,DHFA6_15_22.6,What did the person do with the box?,0,Interaction_T2_8080,Interaction_T2,Put down.,Took.,Closed.,Opened.,Put down. 1737,3ZC4Y_18.8_23.8,What did the person do with the food?,0,Interaction_T2_8090,Interaction_T2,Threw.,Took.,Sat on.,Put down.,Threw. 1738,Z97SD_18.1_24.1,What did the person do with the refrigerator?,1,Interaction_T2_8104,Interaction_T2,Closed.,Opened.,Ate.,Washed.,Opened. 1739,Z97SD_25.1_30.7,What did the person do with the refrigerator?,0,Interaction_T2_8105,Interaction_T2,Closed.,Threw.,Opened.,Sat on.,Closed. 1740,TD2DR_7.4_14.3,What did the person do with the phone/camera?,3,Interaction_T2_8106,Interaction_T2,Opened.,Put down.,Lied on.,Took.,Took. 1741,21MI8_3.9_10.1,What did the person do with the laptop?,2,Interaction_T2_8108,Interaction_T2,Closed.,Took.,Opened.,Put down.,Opened. 1742,5657O_6.4_13.8,What did the person do with the clothes?,0,Interaction_T2_8110,Interaction_T2,Put down.,Opened.,Took.,Threw.,Put down. 1743,MOQIU_13.5_20,What did the person do with the phone/camera?,1,Interaction_T2_8126,Interaction_T2,Washed.,Took.,Ate.,Put down.,Took. 1744,2MJ72_11_17,What did the person do with the door?,3,Interaction_T2_8134,Interaction_T2,Opened.,Lied on.,Threw.,Closed.,Closed. 1745,6H78U_11.5_19.6,What did the person do while they were holding the blanket?,0,Interaction_T3_5,Interaction_T3,Put down the blanket.,Took the blanket.,Threw the blanket.,Tidied up the blanket.,Put down the blanket. 1746,VNQTH_0_9.4,What did the person do while they were holding the blanket?,2,Interaction_T3_22,Interaction_T3,Took the blanket.,Tidied up the blanket.,Put down the blanket.,Threw the blanket.,Put down the blanket. 1747,XO8NL_6.4_11.6,What did the person do while they were holding the towel?,2,Interaction_T3_56,Interaction_T3,Took the towel.,Tidied up the towel.,Put down the towel.,Threw the towel.,Put down the towel. 1748,OY3LS_2.5_10.1,What did the person do while they were holding the laptop?,3,Interaction_T3_63,Interaction_T3,Put down the laptop.,Closed the laptop.,Took the laptop.,Opened the laptop.,Opened the laptop. 1749,RG0KS_16.7_24.9,What did the person do while they were touching the box?,2,Interaction_T3_80,Interaction_T3,Put down the box.,Opened the box.,Took the box.,Threw the box.,Took the box. 1750,RG0KS_0_7.6,What did the person do while they were holding the blanket?,0,Interaction_T3_82,Interaction_T3,Tidied up the blanket.,Threw the blanket.,Put down the blanket.,Took the blanket.,Tidied up the blanket. 1751,1O1JS_26.2_30.9,What did the person do while they were holding the towel?,2,Interaction_T3_237,Interaction_T3,Tidied up the towel.,Threw the towel.,Put down the towel.,Took the towel.,Put down the towel. 1752,ATV2F_10.9_19.4,What did the person do while they were holding the laptop?,2,Interaction_T3_305,Interaction_T3,Took the laptop.,Closed the laptop.,Put down the laptop.,Opened the laptop.,Put down the laptop. 1753,IWTWJ_4.1_9.5,What did the person do while they were holding the towel?,0,Interaction_T3_308,Interaction_T3,Threw the towel.,Tidied up the towel.,Put down the towel.,Took the towel.,Threw the towel. 1754,VJG6E_2.7_9.4,What did the person do while they were holding the blanket?,2,Interaction_T3_423,Interaction_T3,Took the blanket.,Tidied up the blanket.,Threw the blanket.,Put down the blanket.,Threw the blanket. 1755,VJG6E_9_18,What did the person do while they were touching the laptop?,1,Interaction_T3_425,Interaction_T3,Closed the laptop.,Opened the laptop.,Took the laptop.,Put down the laptop.,Opened the laptop. 1756,9MNZ5_21.1_27.2,What did the person do while they were holding the box?,3,Interaction_T3_537,Interaction_T3,Opened the box.,Took the box.,Put down the box.,Closed the box.,Closed the box. 1757,9MNZ5_21.1_27.2,What did the person do while they were touching the box?,1,Interaction_T3_538,Interaction_T3,Put down the box.,Closed the box.,Opened the box.,Took the box.,Closed the box. 1758,ON2Z4_8.4_16.3,What did the person do while they were touching the blanket?,3,Interaction_T3_566,Interaction_T3,Put down the blanket.,Tidied up the blanket.,Threw the blanket.,Took the blanket.,Took the blanket. 1759,15PMU_15.5_21.2,What did the person do while they were holding the clothes?,3,Interaction_T3_600,Interaction_T3,Washed the clothes.,Took the clothes.,Threw the clothes.,Put down the clothes.,Put down the clothes. 1760,43CCM_20.2_25.5,What did the person do while they were holding the clothes?,1,Interaction_T3_612,Interaction_T3,Took the clothes.,Put down the clothes.,Threw the clothes.,Washed the clothes.,Put down the clothes. 1761,G6ZOB_25.7_31.2,What did the person do while they were holding the book?,3,Interaction_T3_633,Interaction_T3,Threw the book.,Closed the book.,Opened the book.,Put down the book.,Put down the book. 1762,G6ZOB_25.7_31.2,What did the person do while they were touching the book?,3,Interaction_T3_634,Interaction_T3,Closed the book.,Threw the book.,Opened the book.,Put down the book.,Put down the book. 1763,OVFR0_0_5.3,What did the person do while they were holding the book?,2,Interaction_T3_658,Interaction_T3,Took the book.,Closed the book.,Put down the book.,Opened the book.,Put down the book. 1764,OVFR0_0_5.3,What did the person do while they were touching the book?,1,Interaction_T3_659,Interaction_T3,Opened the book.,Put down the book.,Closed the book.,Took the book.,Put down the book. 1765,BQZ52_1.9_10,What did the person do while they were holding the clothes?,2,Interaction_T3_727,Interaction_T3,Put down the clothes.,Washed the clothes.,Took the clothes.,Threw the clothes.,Took the clothes. 1766,R971Z_7.5_14.9,What did the person do while they were touching the clothes?,3,Interaction_T3_853,Interaction_T3,Put down the clothes.,Tidied up the clothes.,Threw the clothes.,Took the clothes.,Took the clothes. 1767,3JCEI_8.3_13,What did the person do while they were touching the laptop?,3,Interaction_T3_907,Interaction_T3,Took the laptop.,Put down the laptop.,Opened the laptop.,Closed the laptop.,Closed the laptop. 1768,76Z3W_15.8_22,What did the person do while they were holding the towel?,0,Interaction_T3_923,Interaction_T3,Took the towel.,Threw the towel.,Put down the towel.,Tidied up the towel.,Took the towel. 1769,76Z3W_15.8_22,What did the person do while they were touching the towel?,1,Interaction_T3_924,Interaction_T3,Tidied up the towel.,Took the towel.,Threw the towel.,Put down the towel.,Took the towel. 1770,65UVU_5.1_9.3,What did the person do while they were holding the box?,3,Interaction_T3_959,Interaction_T3,Closed the box.,Threw the box.,Opened the box.,Put down the box.,Put down the box. 1771,5GP8M_8.5_14,What did the person do while they were holding the book?,1,Interaction_T3_960,Interaction_T3,Put down the book.,Took the book.,Opened the book.,Closed the book.,Took the book. 1772,4BEZX_18.2_23.5,What did the person do while they were covered by the towel?,3,Interaction_T3_993,Interaction_T3,Tidied up the towel.,Threw the towel.,Put down the towel.,Took the towel.,Took the towel. 1773,8XXNK_3_9,What did the person do while they were holding the box?,0,Interaction_T3_994,Interaction_T3,Opened the box.,Threw the box.,Put down the box.,Took the box.,Opened the box. 1774,337O2_13.8_23.7,What did the person do while they were touching the clothes?,3,Interaction_T3_1040,Interaction_T3,Put down the clothes.,Took the clothes.,Tidied up the clothes.,Threw the clothes.,Threw the clothes. 1775,337O2_13.8_23.7,What did the person do while they were holding the clothes?,1,Interaction_T3_1041,Interaction_T3,Tidied up the clothes.,Threw the clothes.,Washed the clothes.,Put down the clothes.,Threw the clothes. 1776,IULK6_0_7.1,What did the person do while they were touching the book?,3,Interaction_T3_1161,Interaction_T3,Opened the book.,Threw the book.,Put down the book.,Took the book.,Took the book. 1777,IULK6_0_7.1,What did the person do while they were holding the book?,0,Interaction_T3_1163,Interaction_T3,Took the book.,Opened the book.,Put down the book.,Closed the book.,Took the book. 1778,EEGGA_0_5.3,What did the person do while they were holding the blanket?,3,Interaction_T3_1191,Interaction_T3,Threw the blanket.,Tidied up the blanket.,Took the blanket.,Put down the blanket.,Put down the blanket. 1779,SANRG_13.7_18.8,What did the person do while they were touching the towel?,2,Interaction_T3_1278,Interaction_T3,Tidied up the towel.,Took the towel.,Threw the towel.,Put down the towel.,Threw the towel. 1780,VS7VS_12_19.1,What did the person do while they were holding the book?,1,Interaction_T3_1295,Interaction_T3,Closed the book.,Put down the book.,Took the book.,Opened the book.,Put down the book. 1781,VS7VS_12_19.1,What did the person do while they were touching the book?,1,Interaction_T3_1296,Interaction_T3,Took the book.,Put down the book.,Closed the book.,Opened the book.,Put down the book. 1782,RRQEV_12.3_18.4,What did the person do while they were holding the book?,0,Interaction_T3_1303,Interaction_T3,Took the book.,Put down the book.,Opened the book.,Closed the book.,Took the book. 1783,RRQEV_0_8.5,What did the person do while they were holding the clothes?,0,Interaction_T3_1305,Interaction_T3,Tidied up the clothes.,Put down the clothes.,Threw the clothes.,Took the clothes.,Tidied up the clothes. 1784,RRQEV_4.7_11.3,What did the person do while they were holding the blanket?,1,Interaction_T3_1307,Interaction_T3,Threw the blanket.,Put down the blanket.,Tidied up the blanket.,Took the blanket.,Put down the blanket. 1785,BFH78_20.7_25,What did the person do while they were carrying the towel?,3,Interaction_T3_1328,Interaction_T3,Put down the towel.,Threw the towel.,Tidied up the towel.,Took the towel.,Took the towel. 1786,U33ZS_0.5_9.1,What did the person do while they were holding the laptop?,1,Interaction_T3_1335,Interaction_T3,Closed the laptop.,Took the laptop.,Opened the laptop.,Put down the laptop.,Took the laptop. 1787,LUQWY_24.8_33.1,What did the person do while they were touching the laptop?,1,Interaction_T3_1412,Interaction_T3,Opened the laptop.,Closed the laptop.,Took the laptop.,Put down the laptop.,Closed the laptop. 1788,LD6TD_12.2_18.3,What did the person do while they were holding the book?,3,Interaction_T3_1422,Interaction_T3,Put down the book.,Took the book.,Threw the book.,Closed the book.,Closed the book. 1789,LD6TD_12.2_18.3,What did the person do while they were touching the book?,3,Interaction_T3_1423,Interaction_T3,Threw the book.,Opened the book.,Took the book.,Closed the book.,Closed the book. 1790,3CLVI_18.2_24.6,What did the person do while they were holding the towel?,1,Interaction_T3_1450,Interaction_T3,Put down the towel.,Took the towel.,Threw the towel.,Tidied up the towel.,Took the towel. 1791,3CLVI_18.2_24.6,What did the person do while they were touching the towel?,0,Interaction_T3_1451,Interaction_T3,Took the towel.,Tidied up the towel.,Threw the towel.,Put down the towel.,Took the towel. 1792,3B97C_12_18.7,What did the person do while they were holding the laptop?,0,Interaction_T3_1518,Interaction_T3,Put down the laptop.,Closed the laptop.,Opened the laptop.,Took the laptop.,Put down the laptop. 1793,UYZKX_21.2_26.9,What did the person do while they were holding the blanket?,1,Interaction_T3_1523,Interaction_T3,Put down the blanket.,Threw the blanket.,Tidied up the blanket.,Took the blanket.,Threw the blanket. 1794,K9UXS_5.9_11.7,What did the person do while they were holding the clothes?,1,Interaction_T3_1549,Interaction_T3,Took the clothes.,Put down the clothes.,Washed the clothes.,Threw the clothes.,Put down the clothes. 1795,D1NT7_9.4_14.3,What did the person do while they were touching the box?,3,Interaction_T3_1602,Interaction_T3,Put down the box.,Took the box.,Opened the box.,Closed the box.,Closed the box. 1796,T1CQE_30.9_37,What did the person do while they were touching the laptop?,1,Interaction_T3_1714,Interaction_T3,Closed the laptop.,Opened the laptop.,Put down the laptop.,Took the laptop.,Opened the laptop. 1797,2WGSN_14_23.3,What did the person do while they were holding the towel?,1,Interaction_T3_1716,Interaction_T3,Put down the towel.,Took the towel.,Tidied up the towel.,Threw the towel.,Took the towel. 1798,CXSYS_5.4_10.1,What did the person do while they were holding the bag?,3,Interaction_T3_1797,Interaction_T3,Took the bag.,Opened the bag.,Threw the bag.,Put down the bag.,Put down the bag. 1799,MD6P2_5_13.4,What did the person do while they were holding the box?,3,Interaction_T3_1799,Interaction_T3,Put down the box.,Threw the box.,Took the box.,Opened the box.,Opened the box. 1800,WXUZK_1_8.7,What did the person do while they were holding the clothes?,0,Interaction_T3_1817,Interaction_T3,Put down the clothes.,Tidied up the clothes.,Threw the clothes.,Washed the clothes.,Put down the clothes. 1801,NVGDG_13_17.3,What did the person do while they were touching the blanket?,3,Interaction_T3_1843,Interaction_T3,Put down the blanket.,Tidied up the blanket.,Threw the blanket.,Took the blanket.,Took the blanket. 1802,NVGDG_13_17.3,What did the person do while they were carrying the blanket?,0,Interaction_T3_1844,Interaction_T3,Took the blanket.,Tidied up the blanket.,Put down the blanket.,Threw the blanket.,Took the blanket. 1803,NVGDG_13_17.3,What did the person do while they were covered by the blanket?,1,Interaction_T3_1845,Interaction_T3,Threw the blanket.,Took the blanket.,Tidied up the blanket.,Put down the blanket.,Took the blanket. 1804,NVGDG_13_17.3,What did the person do while they were holding the blanket?,2,Interaction_T3_1846,Interaction_T3,Put down the blanket.,Tidied up the blanket.,Took the blanket.,Threw the blanket.,Took the blanket. 1805,NEM29_12.8_18.9,What did the person do while they were touching the bag?,0,Interaction_T3_1857,Interaction_T3,Took the bag.,Threw the bag.,Put down the bag.,Opened the bag.,Took the bag. 1806,YUEB9_0_9.1,What did the person do while they were touching the bag?,2,Interaction_T3_1861,Interaction_T3,Put down the bag.,Took the bag.,Opened the bag.,Threw the bag.,Opened the bag. 1807,K71S1_12.2_20.9,What did the person do while they were holding the clothes?,1,Interaction_T3_1862,Interaction_T3,Washed the clothes.,Tidied up the clothes.,Took the clothes.,Put down the clothes.,Tidied up the clothes. 1808,V3RAX_7.1_15.6,What did the person do while they were covered by the blanket?,3,Interaction_T3_1894,Interaction_T3,Put down the blanket.,Tidied up the blanket.,Took the blanket.,Threw the blanket.,Threw the blanket. 1809,FM5D5_11_18.1,What did the person do while they were holding the clothes?,1,Interaction_T3_1896,Interaction_T3,Threw the clothes.,Tidied up the clothes.,Took the clothes.,Put down the clothes.,Tidied up the clothes. 1810,FM5D5_11_18.1,What did the person do while they were touching the clothes?,1,Interaction_T3_1898,Interaction_T3,Put down the clothes.,Tidied up the clothes.,Took the clothes.,Threw the clothes.,Tidied up the clothes. 1811,0O36O_7.3_14.5,What did the person do while they were touching the box?,3,Interaction_T3_1972,Interaction_T3,Opened the box.,Put down the box.,Took the box.,Closed the box.,Closed the box. 1812,PDRVY_22.7_27.3,What did the person do while they were holding the bag?,1,Interaction_T3_2026,Interaction_T3,Opened the bag.,Threw the bag.,Put down the bag.,Took the bag.,Threw the bag. 1813,E6PSM_23.4_27.7,What did the person do while they were holding the book?,0,Interaction_T3_2028,Interaction_T3,Took the book.,Put down the book.,Threw the book.,Opened the book.,Took the book. 1814,E6PSM_23.4_27.7,What did the person do while they were touching the book?,0,Interaction_T3_2029,Interaction_T3,Took the book.,Threw the book.,Opened the book.,Put down the book.,Took the book. 1815,E6PSM_23.2_28.3,What did the person do while they were holding the box?,2,Interaction_T3_2030,Interaction_T3,Put down the box.,Opened the box.,Threw the box.,Took the box.,Threw the box. 1816,01ZWG_4.9_11,What did the person do while they were touching the laptop?,3,Interaction_T3_2052,Interaction_T3,Put down the laptop.,Closed the laptop.,Took the laptop.,Opened the laptop.,Opened the laptop. 1817,01ZWG_4.9_11,What did the person do while they were holding the laptop?,1,Interaction_T3_2053,Interaction_T3,Closed the laptop.,Opened the laptop.,Took the laptop.,Put down the laptop.,Opened the laptop. 1818,FM078_12.3_19.4,What did the person do while they were touching the box?,2,Interaction_T3_2122,Interaction_T3,Closed the box.,Threw the box.,Put down the box.,Opened the box.,Put down the box. 1819,FM078_12.3_19.4,What did the person do while they were holding the box?,0,Interaction_T3_2123,Interaction_T3,Put down the box.,Closed the box.,Threw the box.,Opened the box.,Put down the box. 1820,41EQS_0_9.3,What did the person do while they were holding the towel?,2,Interaction_T3_2126,Interaction_T3,Took the towel.,Put down the towel.,Threw the towel.,Tidied up the towel.,Threw the towel. 1821,41EQS_0_7.9,What did the person do while they were holding the blanket?,1,Interaction_T3_2127,Interaction_T3,Threw the blanket.,Tidied up the blanket.,Took the blanket.,Put down the blanket.,Tidied up the blanket. 1822,41EQS_0_7.9,What did the person do while they were touching the blanket?,3,Interaction_T3_2128,Interaction_T3,Took the blanket.,Threw the blanket.,Put down the blanket.,Tidied up the blanket.,Tidied up the blanket. 1823,41EQS_6.8_13.8,What did the person do while they were holding the bag?,1,Interaction_T3_2129,Interaction_T3,Put down the bag.,Threw the bag.,Opened the bag.,Took the bag.,Threw the bag. 1824,7NBPG_0_4.8,What did the person do while they were holding the book?,1,Interaction_T3_2139,Interaction_T3,Put down the book.,Opened the book.,Threw the book.,Closed the book.,Opened the book. 1825,DRGKV_12.4_17.3,What did the person do while they were holding the clothes?,2,Interaction_T3_2148,Interaction_T3,Put down the clothes.,Tidied up the clothes.,Threw the clothes.,Took the clothes.,Threw the clothes. 1826,ICL1M_16.1_22.1,What did the person do while they were holding the book?,2,Interaction_T3_2160,Interaction_T3,Took the book.,Put down the book.,Closed the book.,Opened the book.,Closed the book. 1827,J867Z_13.3_20,What did the person do while they were holding the book?,2,Interaction_T3_2175,Interaction_T3,Put down the book.,Closed the book.,Threw the book.,Took the book.,Threw the book. 1828,KQYR0_19.5_25,What did the person do while they were touching the clothes?,0,Interaction_T3_2204,Interaction_T3,Took the clothes.,Put down the clothes.,Threw the clothes.,Tidied up the clothes.,Took the clothes. 1829,2LCLG_18.2_23,What did the person do while they were holding the bag?,3,Interaction_T3_2230,Interaction_T3,Opened the bag.,Put down the bag.,Took the bag.,Threw the bag.,Threw the bag. 1830,2LCLG_18.2_23,What did the person do while they were touching the bag?,1,Interaction_T3_2231,Interaction_T3,Took the bag.,Threw the bag.,Put down the bag.,Opened the bag.,Threw the bag. 1831,H8UJ3_15.1_23.1,What did the person do while they were touching the book?,0,Interaction_T3_2265,Interaction_T3,Opened the book.,Closed the book.,Put down the book.,Took the book.,Opened the book. 1832,H8UJ3_15.1_23.1,What did the person do while they were holding the book?,2,Interaction_T3_2266,Interaction_T3,Closed the book.,Took the book.,Opened the book.,Put down the book.,Opened the book. 1833,Z7QTA_11.3_18.1,What did the person do while they were holding the bag?,3,Interaction_T3_2273,Interaction_T3,Threw the bag.,Opened the bag.,Took the bag.,Put down the bag.,Put down the bag. 1834,Z7QTA_14.7_23.2,What did the person do while they were holding the box?,2,Interaction_T3_2274,Interaction_T3,Threw the box.,Opened the box.,Put down the box.,Took the box.,Put down the box. 1835,MX9XB_27.8_34.6,What did the person do while they were holding the bag?,2,Interaction_T3_2320,Interaction_T3,Took the bag.,Put down the bag.,Threw the bag.,Opened the bag.,Threw the bag. 1836,RRZU3_3.3_11,What did the person do while they were holding the laptop?,3,Interaction_T3_2332,Interaction_T3,Closed the laptop.,Took the laptop.,Put down the laptop.,Opened the laptop.,Opened the laptop. 1837,HFW6H_36.4_41.7,What did the person do while they were holding the clothes?,1,Interaction_T3_2403,Interaction_T3,Washed the clothes.,Threw the clothes.,Put down the clothes.,Took the clothes.,Threw the clothes. 1838,UEC1F_12.6_18,What did the person do while they were holding the blanket?,3,Interaction_T3_2404,Interaction_T3,Put down the blanket.,Threw the blanket.,Tidied up the blanket.,Took the blanket.,Took the blanket. 1839,UEC1F_13.2_19.4,What did the person do while they were holding the clothes?,3,Interaction_T3_2405,Interaction_T3,Threw the clothes.,Tidied up the clothes.,Put down the clothes.,Took the clothes.,Took the clothes. 1840,UEC1F_13.2_19.4,What did the person do while they were touching the clothes?,1,Interaction_T3_2406,Interaction_T3,Washed the clothes.,Took the clothes.,Tidied up the clothes.,Threw the clothes.,Took the clothes. 1841,UEC1F_12.6_18,What did the person do while they were touching the blanket?,2,Interaction_T3_2407,Interaction_T3,Put down the blanket.,Threw the blanket.,Took the blanket.,Tidied up the blanket.,Took the blanket. 1842,2544C_0_6,What did the person do while they were holding the towel?,3,Interaction_T3_2413,Interaction_T3,Took the towel.,Put down the towel.,Tidied up the towel.,Threw the towel.,Threw the towel. 1843,2544C_0_6,What did the person do while they were covered by the towel?,3,Interaction_T3_2414,Interaction_T3,Put down the towel.,Tidied up the towel.,Took the towel.,Threw the towel.,Threw the towel. 1844,0Z36L_28.7_32,What did the person do while they were touching the bag?,0,Interaction_T3_2445,Interaction_T3,Put down the bag.,Took the bag.,Threw the bag.,Opened the bag.,Put down the bag. 1845,JBJGX_12.3_19.9,What did the person do while they were touching the laptop?,0,Interaction_T3_2469,Interaction_T3,Closed the laptop.,Opened the laptop.,Took the laptop.,Put down the laptop.,Closed the laptop. 1846,43FG9_3.2_8.7,What did the person do while they were holding the clothes?,2,Interaction_T3_2471,Interaction_T3,Tidied up the clothes.,Washed the clothes.,Put down the clothes.,Threw the clothes.,Put down the clothes. 1847,43FG9_3.6_11.4,What did the person do while they were holding the towel?,2,Interaction_T3_2472,Interaction_T3,Took the towel.,Tidied up the towel.,Threw the towel.,Put down the towel.,Threw the towel. 1848,43FG9_3.6_11.4,What did the person do while they were touching the towel?,3,Interaction_T3_2473,Interaction_T3,Took the towel.,Put down the towel.,Tidied up the towel.,Threw the towel.,Threw the towel. 1849,WLA52_15.8_23,What did the person do while they were holding the blanket?,0,Interaction_T3_2483,Interaction_T3,Put down the blanket.,Took the blanket.,Threw the blanket.,Tidied up the blanket.,Put down the blanket. 1850,ZCH1J_0_8,What did the person do while they were holding the bag?,3,Interaction_T3_2487,Interaction_T3,Threw the bag.,Put down the bag.,Took the bag.,Opened the bag.,Opened the bag. 1851,C9HLB_29.4_35,What did the person do while they were touching the laptop?,0,Interaction_T3_2497,Interaction_T3,Closed the laptop.,Took the laptop.,Put down the laptop.,Opened the laptop.,Closed the laptop. 1852,BQKW5_11.5_17.3,What did the person do while they were holding the towel?,1,Interaction_T3_2511,Interaction_T3,Threw the towel.,Put down the towel.,Tidied up the towel.,Took the towel.,Put down the towel. 1853,BQKW5_2.7_8,What did the person do while they were holding the box?,3,Interaction_T3_2512,Interaction_T3,Threw the box.,Opened the box.,Took the box.,Put down the box.,Put down the box. 1854,XAX61_3.8_9.7,What did the person do while they were holding the bag?,0,Interaction_T3_2531,Interaction_T3,Put down the bag.,Threw the bag.,Opened the bag.,Took the bag.,Put down the bag. 1855,XAX61_3.8_9.7,What did the person do while they were touching the bag?,1,Interaction_T3_2532,Interaction_T3,Opened the bag.,Put down the bag.,Took the bag.,Threw the bag.,Put down the bag. 1856,H2B7U_0_5.4,What did the person do while they were holding the blanket?,0,Interaction_T3_2539,Interaction_T3,Put down the blanket.,Threw the blanket.,Took the blanket.,Tidied up the blanket.,Put down the blanket. 1857,9BCZU_25_32.1,What did the person do while they were holding the blanket?,0,Interaction_T3_2540,Interaction_T3,Put down the blanket.,Tidied up the blanket.,Threw the blanket.,Took the blanket.,Put down the blanket. 1858,M0KTN_23.5_28.8,What did the person do while they were touching the blanket?,3,Interaction_T3_2559,Interaction_T3,Put down the blanket.,Threw the blanket.,Tidied up the blanket.,Took the blanket.,Took the blanket. 1859,Q7RK6_2.2_8.3,What did the person do while they were holding the clothes?,1,Interaction_T3_2654,Interaction_T3,Tidied up the clothes.,Threw the clothes.,Took the clothes.,Put down the clothes.,Threw the clothes. 1860,ZAJAJ_24.1_29.1,What did the person do while they were holding the laptop?,3,Interaction_T3_2680,Interaction_T3,Closed the laptop.,Put down the laptop.,Took the laptop.,Opened the laptop.,Opened the laptop. 1861,ZAJAJ_24.1_29.1,What did the person do while they were touching the laptop?,3,Interaction_T3_2681,Interaction_T3,Put down the laptop.,Closed the laptop.,Took the laptop.,Opened the laptop.,Opened the laptop. 1862,VNVRA_5.3_10,What did the person do while they were holding the box?,1,Interaction_T3_2691,Interaction_T3,Opened the box.,Put down the box.,Threw the box.,Closed the box.,Put down the box. 1863,I20N2_27.3_34,What did the person do while they were holding the towel?,3,Interaction_T3_2702,Interaction_T3,Tidied up the towel.,Put down the towel.,Took the towel.,Threw the towel.,Threw the towel. 1864,O18DS_19.4_24.2,What did the person do while they were holding the book?,1,Interaction_T3_2708,Interaction_T3,Took the book.,Closed the book.,Put down the book.,Opened the book.,Closed the book. 1865,O18DS_19.4_24.2,What did the person do while they were touching the book?,0,Interaction_T3_2709,Interaction_T3,Closed the book.,Opened the book.,Threw the book.,Took the book.,Closed the book. 1866,ABHC6_10.4_15.2,What did the person do while they were holding the clothes?,2,Interaction_T3_2715,Interaction_T3,Washed the clothes.,Put down the clothes.,Took the clothes.,Tidied up the clothes.,Took the clothes. 1867,52WDV_1.2_10.2,What did the person do while they were touching the clothes?,1,Interaction_T3_2726,Interaction_T3,Threw the clothes.,Took the clothes.,Tidied up the clothes.,Put down the clothes.,Took the clothes. 1868,LSVHK_15.3_20.7,What did the person do while they were holding the towel?,2,Interaction_T3_2738,Interaction_T3,Put down the towel.,Tidied up the towel.,Took the towel.,Threw the towel.,Took the towel. 1869,FX1T5_4.5_14.3,What did the person do while they were holding the book?,3,Interaction_T3_2740,Interaction_T3,Closed the book.,Threw the book.,Took the book.,Opened the book.,Opened the book. 1870,TK76G_10.8_16,What did the person do while they were touching the towel?,0,Interaction_T3_2805,Interaction_T3,Put down the towel.,Tidied up the towel.,Took the towel.,Threw the towel.,Put down the towel. 1871,3IRHH_21.4_28.8,What did the person do while they were holding the book?,0,Interaction_T3_2819,Interaction_T3,Opened the book.,Closed the book.,Took the book.,Put down the book.,Opened the book. 1872,WLE0F_3.3_9.2,What did the person do while they were holding the bag?,2,Interaction_T3_2858,Interaction_T3,Took the bag.,Put down the bag.,Opened the bag.,Threw the bag.,Opened the bag. 1873,4MFE0_19.8_27.2,What did the person do while they were holding the book?,1,Interaction_T3_2869,Interaction_T3,Put down the book.,Took the book.,Closed the book.,Opened the book.,Took the book. 1874,4MFE0_19.8_27.2,What did the person do while they were touching the book?,3,Interaction_T3_2870,Interaction_T3,Closed the book.,Put down the book.,Opened the book.,Took the book.,Took the book. 1875,FL6DF_14.6_19.7,What did the person do while they were touching the laptop?,0,Interaction_T3_2913,Interaction_T3,Put down the laptop.,Opened the laptop.,Took the laptop.,Closed the laptop.,Put down the laptop. 1876,BAUQE_0_7,What did the person do while they were touching the clothes?,0,Interaction_T3_2954,Interaction_T3,Tidied up the clothes.,Took the clothes.,Washed the clothes.,Put down the clothes.,Tidied up the clothes. 1877,APVAD_12.7_21,What did the person do while they were holding the clothes?,3,Interaction_T3_2959,Interaction_T3,Put down the clothes.,Took the clothes.,Tidied up the clothes.,Threw the clothes.,Threw the clothes. 1878,P4HXN_26.8_33.3,What did the person do while they were holding the laptop?,1,Interaction_T3_2962,Interaction_T3,Took the laptop.,Put down the laptop.,Closed the laptop.,Opened the laptop.,Put down the laptop. 1879,UF91R_7.3_12.1,What did the person do while they were touching the laptop?,0,Interaction_T3_2963,Interaction_T3,Closed the laptop.,Opened the laptop.,Put down the laptop.,Took the laptop.,Closed the laptop. 1880,PQYWB_6.1_10.7,What did the person do while they were holding the towel?,0,Interaction_T3_2971,Interaction_T3,Put down the towel.,Tidied up the towel.,Threw the towel.,Took the towel.,Put down the towel. 1881,LW51F_11.3_17,What did the person do while they were holding the book?,2,Interaction_T3_3062,Interaction_T3,Put down the book.,Took the book.,Closed the book.,Opened the book.,Closed the book. 1882,EUJK0_14.3_22.1,What did the person do while they were touching the laptop?,0,Interaction_T3_3107,Interaction_T3,Closed the laptop.,Took the laptop.,Opened the laptop.,Put down the laptop.,Closed the laptop. 1883,N7GBK_2_6,What did the person do while they were holding the towel?,0,Interaction_T3_3111,Interaction_T3,Put down the towel.,Threw the towel.,Took the towel.,Tidied up the towel.,Put down the towel. 1884,8MLCU_4.4_10.2,What did the person do while they were holding the box?,3,Interaction_T3_3120,Interaction_T3,Took the box.,Closed the box.,Threw the box.,Put down the box.,Put down the box. 1885,TOOYI_12.2_19.1,What did the person do while they were holding the box?,3,Interaction_T3_3137,Interaction_T3,Opened the box.,Threw the box.,Took the box.,Closed the box.,Closed the box. 1886,TOOYI_0_4.7,What did the person do while they were holding the box?,3,Interaction_T3_3138,Interaction_T3,Closed the box.,Took the box.,Put down the box.,Opened the box.,Opened the box. 1887,TOOYI_0_4.7,What did the person do while they were touching the box?,2,Interaction_T3_3139,Interaction_T3,Put down the box.,Took the box.,Opened the box.,Threw the box.,Opened the box. 1888,JCNHL_12_21.4,What did the person do while they were holding the clothes?,0,Interaction_T3_3185,Interaction_T3,Threw the clothes.,Took the clothes.,Put down the clothes.,Tidied up the clothes.,Threw the clothes. 1889,JCNHL_19.1_27.6,What did the person do while they were touching the box?,1,Interaction_T3_3186,Interaction_T3,Threw the box.,Opened the box.,Put down the box.,Took the box.,Opened the box. 1890,QXT9W_16.6_24.2,What did the person do while they were holding the book?,2,Interaction_T3_3198,Interaction_T3,Put down the book.,Took the book.,Opened the book.,Closed the book.,Opened the book. 1891,17RPG_24.1_30.2,What did the person do while they were holding the clothes?,0,Interaction_T3_3221,Interaction_T3,Threw the clothes.,Tidied up the clothes.,Took the clothes.,Put down the clothes.,Threw the clothes. 1892,CFWP7_31.8_37,What did the person do while they were touching the clothes?,2,Interaction_T3_3238,Interaction_T3,Put down the clothes.,Tidied up the clothes.,Threw the clothes.,Washed the clothes.,Threw the clothes. 1893,03M0K_7.5_13.9,What did the person do while they were touching the laptop?,3,Interaction_T3_3293,Interaction_T3,Took the laptop.,Put down the laptop.,Closed the laptop.,Opened the laptop.,Opened the laptop. 1894,IFQS1_8.7_13.3,What did the person do while they were holding the blanket?,1,Interaction_T3_3330,Interaction_T3,Tidied up the blanket.,Put down the blanket.,Threw the blanket.,Took the blanket.,Put down the blanket. 1895,PKNT2_16.3_22.4,What did the person do while they were touching the book?,1,Interaction_T3_3401,Interaction_T3,Threw the book.,Put down the book.,Closed the book.,Opened the book.,Put down the book. 1896,GGAN0_18.4_24,What did the person do while they were holding the bag?,3,Interaction_T3_3408,Interaction_T3,Took the bag.,Opened the bag.,Threw the bag.,Put down the bag.,Put down the bag. 1897,GMMVC_0_6.3,What did the person do while they were covered by the blanket?,0,Interaction_T3_3421,Interaction_T3,Put down the blanket.,Took the blanket.,Tidied up the blanket.,Threw the blanket.,Put down the blanket. 1898,3Z1YC_17.5_22.9,What did the person do while they were holding the bag?,1,Interaction_T3_3425,Interaction_T3,Threw the bag.,Took the bag.,Put down the bag.,Opened the bag.,Took the bag. 1899,GTK8W_30.8_36.6,What did the person do while they were holding the bag?,0,Interaction_T3_3436,Interaction_T3,Took the bag.,Threw the bag.,Opened the bag.,Put down the bag.,Took the bag. 1900,81YUE_21.4_30.6,What did the person do while they were touching the clothes?,0,Interaction_T3_3441,Interaction_T3,Put down the clothes.,Tidied up the clothes.,Threw the clothes.,Washed the clothes.,Put down the clothes. 1901,D87LI_14.9_19.6,What did the person do while they were touching the laptop?,3,Interaction_T3_3442,Interaction_T3,Took the laptop.,Opened the laptop.,Put down the laptop.,Closed the laptop.,Closed the laptop. 1902,BZ1TH_0_3.3,What did the person do while they were holding the book?,2,Interaction_T3_3614,Interaction_T3,Closed the book.,Put down the book.,Opened the book.,Threw the book.,Opened the book. 1903,BZ1TH_0_3.3,What did the person do while they were touching the book?,1,Interaction_T3_3615,Interaction_T3,Took the book.,Opened the book.,Closed the book.,Threw the book.,Opened the book. 1904,QL92H_2.9_8.1,What did the person do while they were holding the bag?,1,Interaction_T3_3637,Interaction_T3,Opened the bag.,Threw the bag.,Put down the bag.,Took the bag.,Threw the bag. 1905,RAQNI_8.1_16.2,What did the person do while they were holding the blanket?,3,Interaction_T3_3663,Interaction_T3,Took the blanket.,Threw the blanket.,Put down the blanket.,Tidied up the blanket.,Tidied up the blanket. 1906,FKJ9L_0.1_7.8,What did the person do while they were holding the box?,0,Interaction_T3_3713,Interaction_T3,Put down the box.,Threw the box.,Opened the box.,Closed the box.,Put down the box. 1907,VO45S_9.1_14.1,What did the person do while they were holding the box?,3,Interaction_T3_3725,Interaction_T3,Closed the box.,Threw the box.,Took the box.,Put down the box.,Put down the box. 1908,U0X4P_26.2_30.8,What did the person do while they were holding the clothes?,0,Interaction_T3_3760,Interaction_T3,Threw the clothes.,Washed the clothes.,Put down the clothes.,Tidied up the clothes.,Threw the clothes. 1909,G87XG_18_22.5,What did the person do while they were holding the book?,1,Interaction_T3_3789,Interaction_T3,Opened the book.,Put down the book.,Took the book.,Threw the book.,Put down the book. 1910,G87XG_18_22.5,What did the person do while they were touching the book?,3,Interaction_T3_3790,Interaction_T3,Closed the book.,Opened the book.,Took the book.,Put down the book.,Put down the book. 1911,AS7SG_22.1_31,What did the person do while they were holding the laptop?,0,Interaction_T3_3836,Interaction_T3,Opened the laptop.,Closed the laptop.,Took the laptop.,Put down the laptop.,Opened the laptop. 1912,AS7SG_22.1_31,What did the person do while they were touching the laptop?,2,Interaction_T3_3837,Interaction_T3,Took the laptop.,Put down the laptop.,Opened the laptop.,Closed the laptop.,Opened the laptop. 1913,RCD08_24.2_30.2,What did the person do while they were holding the towel?,0,Interaction_T3_3862,Interaction_T3,Threw the towel.,Took the towel.,Put down the towel.,Tidied up the towel.,Threw the towel. 1914,DH66I_3.5_9.9,What did the person do while they were holding the box?,1,Interaction_T3_3908,Interaction_T3,Took the box.,Put down the box.,Threw the box.,Closed the box.,Put down the box. 1915,9K2TY_19.2_23.9,What did the person do while they were holding the blanket?,3,Interaction_T3_3935,Interaction_T3,Threw the blanket.,Took the blanket.,Tidied up the blanket.,Put down the blanket.,Put down the blanket. 1916,9K2TY_27.4_32,What did the person do while they were holding the towel?,2,Interaction_T3_3936,Interaction_T3,Took the towel.,Put down the towel.,Threw the towel.,Tidied up the towel.,Threw the towel. 1917,BDWIX_18.4_23.8,What did the person do while they were holding the clothes?,2,Interaction_T3_3946,Interaction_T3,Washed the clothes.,Threw the clothes.,Tidied up the clothes.,Put down the clothes.,Tidied up the clothes. 1918,3V2HJ_4.8_14.8,What did the person do while they were having bag on the back?,3,Interaction_T3_4059,Interaction_T3,Opened the bag.,Threw the bag.,Took the bag.,Put down the bag.,Put down the bag. 1919,3V2HJ_4.8_14.8,What did the person do while they were touching the bag?,2,Interaction_T3_4060,Interaction_T3,Opened the bag.,Took the bag.,Put down the bag.,Threw the bag.,Put down the bag. 1920,OA6XR_15.5_22.5,What did the person do while they were touching the blanket?,0,Interaction_T3_4061,Interaction_T3,Put down the blanket.,Tidied up the blanket.,Threw the blanket.,Took the blanket.,Put down the blanket. 1921,OA6XR_15.5_22.5,What did the person do while they were holding the blanket?,1,Interaction_T3_4062,Interaction_T3,Took the blanket.,Put down the blanket.,Tidied up the blanket.,Threw the blanket.,Put down the blanket. 1922,3064K_3_8.1,What did the person do while they were holding the blanket?,1,Interaction_T3_4065,Interaction_T3,Took the blanket.,Tidied up the blanket.,Put down the blanket.,Threw the blanket.,Tidied up the blanket. 1923,WN7T3_1.1_9.1,What did the person do while they were holding the box?,2,Interaction_T3_4069,Interaction_T3,Took the box.,Opened the box.,Put down the box.,Closed the box.,Put down the box. 1924,FRLW2_3.4_9.4,What did the person do while they were holding the bag?,1,Interaction_T3_4108,Interaction_T3,Opened the bag.,Took the bag.,Threw the bag.,Put down the bag.,Took the bag. 1925,57MEO_7.3_15,What did the person do while they were holding the book?,0,Interaction_T3_4118,Interaction_T3,Put down the book.,Closed the book.,Took the book.,Opened the book.,Put down the book. 1926,EXPOA_22.4_27.3,What did the person do while they were touching the clothes?,2,Interaction_T3_4220,Interaction_T3,Tidied up the clothes.,Threw the clothes.,Put down the clothes.,Washed the clothes.,Put down the clothes. 1927,M2XIS_0_6.4,What did the person do while they were holding the laptop?,2,Interaction_T3_4279,Interaction_T3,Opened the laptop.,Closed the laptop.,Put down the laptop.,Took the laptop.,Put down the laptop. 1928,9A58F_15.9_21.2,What did the person do while they were holding the laptop?,3,Interaction_T3_4282,Interaction_T3,Put down the laptop.,Opened the laptop.,Took the laptop.,Closed the laptop.,Closed the laptop. 1929,9A58F_15.9_21.2,What did the person do while they were touching the laptop?,2,Interaction_T3_4283,Interaction_T3,Took the laptop.,Put down the laptop.,Closed the laptop.,Opened the laptop.,Closed the laptop. 1930,024PD_2.1_10.6,What did the person do while they were holding the book?,1,Interaction_T3_4308,Interaction_T3,Closed the book.,Put down the book.,Took the book.,Opened the book.,Put down the book. 1931,YXQWH_20.6_26.1,What did the person do while they were holding the bag?,3,Interaction_T3_4358,Interaction_T3,Took the bag.,Threw the bag.,Opened the bag.,Put down the bag.,Put down the bag. 1932,CII5H_6.5_14.7,What did the person do while they were holding the clothes?,2,Interaction_T3_4359,Interaction_T3,Put down the clothes.,Washed the clothes.,Tidied up the clothes.,Threw the clothes.,Tidied up the clothes. 1933,CII5H_11.6_20,What did the person do while they were holding the blanket?,3,Interaction_T3_4361,Interaction_T3,Threw the blanket.,Tidied up the blanket.,Took the blanket.,Put down the blanket.,Put down the blanket. 1934,3LLDC_1.5_6.8,What did the person do while they were holding the bag?,1,Interaction_T3_4410,Interaction_T3,Threw the bag.,Put down the bag.,Took the bag.,Opened the bag.,Put down the bag. 1935,3CAPI_29.1_34,What did the person do while they were holding the blanket?,3,Interaction_T3_4415,Interaction_T3,Took the blanket.,Put down the blanket.,Tidied up the blanket.,Threw the blanket.,Threw the blanket. 1936,OB1XO_0.2_7.2,What did the person do while they were touching the clothes?,0,Interaction_T3_4417,Interaction_T3,Took the clothes.,Tidied up the clothes.,Threw the clothes.,Put down the clothes.,Took the clothes. 1937,OB1XO_16.9_22.2,What did the person do while they were holding the clothes?,1,Interaction_T3_4418,Interaction_T3,Tidied up the clothes.,Threw the clothes.,Put down the clothes.,Washed the clothes.,Threw the clothes. 1938,OB1XO_16.9_22.2,What did the person do while they were touching the clothes?,2,Interaction_T3_4419,Interaction_T3,Washed the clothes.,Tidied up the clothes.,Threw the clothes.,Put down the clothes.,Threw the clothes. 1939,A0ZW3_20.9_26.2,What did the person do while they were holding the laptop?,1,Interaction_T3_4505,Interaction_T3,Closed the laptop.,Opened the laptop.,Put down the laptop.,Took the laptop.,Opened the laptop. 1940,6VF2L_24.3_32.5,What did the person do while they were holding the clothes?,3,Interaction_T3_4524,Interaction_T3,Took the clothes.,Tidied up the clothes.,Threw the clothes.,Put down the clothes.,Put down the clothes. 1941,CSLEP_6.6_13.2,What did the person do while they were holding the clothes?,1,Interaction_T3_4603,Interaction_T3,Threw the clothes.,Took the clothes.,Tidied up the clothes.,Put down the clothes.,Took the clothes. 1942,HFTEO_0_7.7,What did the person do while they were holding the clothes?,0,Interaction_T3_4617,Interaction_T3,Took the clothes.,Tidied up the clothes.,Threw the clothes.,Washed the clothes.,Took the clothes. 1943,HFTEO_0_7.7,What did the person do while they were touching the clothes?,1,Interaction_T3_4618,Interaction_T3,Threw the clothes.,Took the clothes.,Washed the clothes.,Put down the clothes.,Took the clothes. 1944,HFTEO_0_7.7,What did the person do while they were lying on the clothes?,0,Interaction_T3_4619,Interaction_T3,Took the clothes.,Tidied up the clothes.,Put down the clothes.,Threw the clothes.,Took the clothes. 1945,J84TZ_11.8_21,What did the person do while they were covered by the blanket?,0,Interaction_T3_4643,Interaction_T3,Took the blanket.,Tidied up the blanket.,Put down the blanket.,Threw the blanket.,Took the blanket. 1946,J84TZ_11.8_21,What did the person do while they were carrying the blanket?,1,Interaction_T3_4644,Interaction_T3,Tidied up the blanket.,Took the blanket.,Threw the blanket.,Put down the blanket.,Took the blanket. 1947,O2OUX_13.5_17.9,What did the person do while they were touching the laptop?,0,Interaction_T3_4649,Interaction_T3,Closed the laptop.,Took the laptop.,Put down the laptop.,Opened the laptop.,Closed the laptop. 1948,9OMY1_1.2_6.3,What did the person do while they were touching the box?,2,Interaction_T3_4797,Interaction_T3,Put down the box.,Closed the box.,Opened the box.,Took the box.,Opened the box. 1949,IZ2XX_9.1_14.2,What did the person do while they were holding the book?,3,Interaction_T3_4801,Interaction_T3,Closed the book.,Took the book.,Opened the book.,Put down the book.,Put down the book. 1950,UMT5R_0_6,What did the person do while they were holding the bag?,3,Interaction_T3_4811,Interaction_T3,Opened the bag.,Threw the bag.,Put down the bag.,Took the bag.,Took the bag. 1951,OE751_18.4_23.8,What did the person do while they were holding the blanket?,0,Interaction_T3_4827,Interaction_T3,Took the blanket.,Put down the blanket.,Tidied up the blanket.,Threw the blanket.,Took the blanket. 1952,428VQ_0_8,What did the person do while they were holding the book?,0,Interaction_T3_4854,Interaction_T3,Opened the book.,Threw the book.,Closed the book.,Put down the book.,Opened the book. 1953,428VQ_0_8,What did the person do while they were touching the book?,3,Interaction_T3_4855,Interaction_T3,Threw the book.,Took the book.,Closed the book.,Opened the book.,Opened the book. 1954,KTKWL_19.4_25.8,What did the person do while they were holding the box?,1,Interaction_T3_4858,Interaction_T3,Put down the box.,Opened the box.,Took the box.,Closed the box.,Opened the box. 1955,KTKWL_19.4_25.8,What did the person do while they were touching the box?,3,Interaction_T3_4859,Interaction_T3,Put down the box.,Threw the box.,Closed the box.,Opened the box.,Opened the box. 1956,B7LO8_0_5.9,What did the person do while they were touching the clothes?,2,Interaction_T3_4884,Interaction_T3,Threw the clothes.,Put down the clothes.,Took the clothes.,Tidied up the clothes.,Took the clothes. 1957,IU5TH_11_18.6,What did the person do while they were holding the bag?,0,Interaction_T3_4892,Interaction_T3,Took the bag.,Threw the bag.,Opened the bag.,Put down the bag.,Took the bag. 1958,IU5TH_6.6_14.2,What did the person do while they were touching the laptop?,2,Interaction_T3_4893,Interaction_T3,Took the laptop.,Put down the laptop.,Closed the laptop.,Opened the laptop.,Closed the laptop. 1959,E6A0Y_5_11,What did the person do while they were holding the clothes?,0,Interaction_T3_4901,Interaction_T3,Put down the clothes.,Tidied up the clothes.,Took the clothes.,Threw the clothes.,Put down the clothes. 1960,R74DE_18.1_23.3,What did the person do while they were touching the towel?,2,Interaction_T3_4954,Interaction_T3,Tidied up the towel.,Put down the towel.,Threw the towel.,Took the towel.,Threw the towel. 1961,R74DE_18.1_23.3,What did the person do while they were covered by the towel?,3,Interaction_T3_4955,Interaction_T3,Tidied up the towel.,Put down the towel.,Took the towel.,Threw the towel.,Threw the towel. 1962,R74DE_18.1_23.3,What did the person do while they were carrying the towel?,3,Interaction_T3_4956,Interaction_T3,Put down the towel.,Tidied up the towel.,Took the towel.,Threw the towel.,Threw the towel. 1963,R74DE_18.1_23.3,What did the person do while they were holding the towel?,3,Interaction_T3_4957,Interaction_T3,Took the towel.,Tidied up the towel.,Put down the towel.,Threw the towel.,Threw the towel. 1964,Q6WH2_29.5_36,What did the person do while they were touching the book?,2,Interaction_T3_4970,Interaction_T3,Took the book.,Put down the book.,Opened the book.,Closed the book.,Opened the book. 1965,Q6WH2_29.5_36,What did the person do while they were holding the book?,3,Interaction_T3_4971,Interaction_T3,Put down the book.,Closed the book.,Took the book.,Opened the book.,Opened the book. 1966,320ZB_0_4.7,What did the person do while they were holding the clothes?,2,Interaction_T3_4993,Interaction_T3,Tidied up the clothes.,Put down the clothes.,Threw the clothes.,Washed the clothes.,Threw the clothes. 1967,320ZB_0_4.2,What did the person do while they were holding the towel?,2,Interaction_T3_4994,Interaction_T3,Tidied up the towel.,Put down the towel.,Threw the towel.,Took the towel.,Threw the towel. 1968,Y7WEK_24.6_29.2,What did the person do while they were holding the book?,3,Interaction_T3_5013,Interaction_T3,Took the book.,Threw the book.,Opened the book.,Closed the book.,Closed the book. 1969,V7PGV_19.5_25.1,What did the person do while they were holding the towel?,3,Interaction_T3_5023,Interaction_T3,Took the towel.,Tidied up the towel.,Threw the towel.,Put down the towel.,Put down the towel. 1970,RFMRB_10.1_17.1,What did the person do while they were touching the blanket?,1,Interaction_T3_5037,Interaction_T3,Tidied up the blanket.,Put down the blanket.,Threw the blanket.,Took the blanket.,Put down the blanket. 1971,5ZDNU_4.1_14,What did the person do while they were holding the clothes?,1,Interaction_T3_5047,Interaction_T3,Threw the clothes.,Put down the clothes.,Took the clothes.,Tidied up the clothes.,Put down the clothes. 1972,0OE6M_4.5_11.9,What did the person do while they were holding the towel?,3,Interaction_T3_5071,Interaction_T3,Threw the towel.,Tidied up the towel.,Put down the towel.,Took the towel.,Took the towel. 1973,0OE6M_3.4_8,What did the person do while they were holding the clothes?,3,Interaction_T3_5072,Interaction_T3,Washed the clothes.,Tidied up the clothes.,Put down the clothes.,Threw the clothes.,Threw the clothes. 1974,HOGVD_0_8.3,What did the person do while they were holding the bag?,2,Interaction_T3_5083,Interaction_T3,Threw the bag.,Took the bag.,Opened the bag.,Put down the bag.,Opened the bag. 1975,CDIW7_6.6_13.5,What did the person do while they were holding the box?,0,Interaction_T3_5114,Interaction_T3,Put down the box.,Closed the box.,Threw the box.,Opened the box.,Put down the box. 1976,MQGVS_20.7_27.1,What did the person do while they were holding the blanket?,0,Interaction_T3_5129,Interaction_T3,Put down the blanket.,Tidied up the blanket.,Threw the blanket.,Took the blanket.,Put down the blanket. 1977,ZA7ST_30.4_35,What did the person do while they were holding the box?,3,Interaction_T3_5137,Interaction_T3,Put down the box.,Closed the box.,Threw the box.,Opened the box.,Opened the box. 1978,ZA7ST_30.4_35,What did the person do while they were touching the box?,0,Interaction_T3_5138,Interaction_T3,Opened the box.,Closed the box.,Put down the box.,Threw the box.,Opened the box. 1979,72R6A_19.9_26.5,What did the person do while they were holding the towel?,3,Interaction_T3_5164,Interaction_T3,Took the towel.,Tidied up the towel.,Threw the towel.,Put down the towel.,Put down the towel. 1980,3AE3T_2.1_7.1,What did the person do while they were holding the laptop?,2,Interaction_T3_5169,Interaction_T3,Opened the laptop.,Took the laptop.,Put down the laptop.,Closed the laptop.,Put down the laptop. 1981,MY5CQ_11.5_17.4,What did the person do while they were touching the laptop?,0,Interaction_T3_5226,Interaction_T3,Closed the laptop.,Took the laptop.,Put down the laptop.,Opened the laptop.,Closed the laptop. 1982,KNGUT_0_5,What did the person do while they were touching the bag?,1,Interaction_T3_5234,Interaction_T3,Put down the bag.,Opened the bag.,Took the bag.,Threw the bag.,Opened the bag. 1983,013SD_0_4.3,What did the person do while they were holding the box?,3,Interaction_T3_5297,Interaction_T3,Closed the box.,Took the box.,Opened the box.,Put down the box.,Put down the box. 1984,BJXRT_0_7.1,What did the person do while they were touching the towel?,1,Interaction_T3_5300,Interaction_T3,Put down the towel.,Took the towel.,Threw the towel.,Tidied up the towel.,Took the towel. 1985,BJXRT_0_9,What did the person do while they were touching the blanket?,2,Interaction_T3_5301,Interaction_T3,Tidied up the blanket.,Put down the blanket.,Took the blanket.,Threw the blanket.,Took the blanket. 1986,BJXRT_0_9,What did the person do while they were holding the blanket?,1,Interaction_T3_5302,Interaction_T3,Tidied up the blanket.,Took the blanket.,Threw the blanket.,Put down the blanket.,Took the blanket. 1987,U3ANG_25.7_35.6,What did the person do while they were holding the book?,0,Interaction_T3_5307,Interaction_T3,Put down the book.,Closed the book.,Opened the book.,Took the book.,Put down the book. 1988,S1J2Q_0_4.7,What did the person do while they were touching the blanket?,1,Interaction_T3_5324,Interaction_T3,Threw the blanket.,Took the blanket.,Tidied up the blanket.,Put down the blanket.,Took the blanket. 1989,KZODG_15.3_22.9,What did the person do while they were touching the laptop?,2,Interaction_T3_5334,Interaction_T3,Put down the laptop.,Took the laptop.,Closed the laptop.,Opened the laptop.,Closed the laptop. 1990,3ND23_0_8.1,What did the person do while they were touching the book?,0,Interaction_T3_5337,Interaction_T3,Took the book.,Opened the book.,Put down the book.,Closed the book.,Took the book. 1991,O2DXE_3_10.6,What did the person do while they were covered by the blanket?,2,Interaction_T3_5371,Interaction_T3,Took the blanket.,Tidied up the blanket.,Put down the blanket.,Threw the blanket.,Put down the blanket. 1992,QXEWB_0_3.7,What did the person do while they were holding the book?,0,Interaction_T3_5404,Interaction_T3,Threw the book.,Put down the book.,Opened the book.,Closed the book.,Threw the book. 1993,84893_7.8_15.3,What did the person do while they were holding the blanket?,2,Interaction_T3_5406,Interaction_T3,Threw the blanket.,Put down the blanket.,Tidied up the blanket.,Took the blanket.,Tidied up the blanket. 1994,84893_7.8_15.3,What did the person do while they were touching the blanket?,1,Interaction_T3_5408,Interaction_T3,Threw the blanket.,Tidied up the blanket.,Put down the blanket.,Took the blanket.,Tidied up the blanket. 1995,Z6HEA_2.6_11.4,What did the person do while they were holding the clothes?,2,Interaction_T3_5486,Interaction_T3,Put down the clothes.,Threw the clothes.,Washed the clothes.,Tidied up the clothes.,Washed the clothes. 1996,BZD0Q_12.9_22.8,What did the person do while they were holding the bag?,1,Interaction_T3_5513,Interaction_T3,Threw the bag.,Took the bag.,Put down the bag.,Opened the bag.,Took the bag. 1997,Z70KK_7.9_13,What did the person do while they were holding the bag?,2,Interaction_T3_5523,Interaction_T3,Took the bag.,Threw the bag.,Put down the bag.,Opened the bag.,Put down the bag. 1998,SUI1X_1.7_10.3,What did the person do while they were holding the bag?,0,Interaction_T3_5559,Interaction_T3,Opened the bag.,Threw the bag.,Took the bag.,Put down the bag.,Opened the bag. 1999,DBT6E_21.8_31.8,What did the person do while they were holding the laptop?,0,Interaction_T3_5585,Interaction_T3,Opened the laptop.,Put down the laptop.,Closed the laptop.,Took the laptop.,Opened the laptop. 2000,DBT6E_8.6_15.1,What did the person do while they were holding the bag?,3,Interaction_T3_5587,Interaction_T3,Threw the bag.,Opened the bag.,Took the bag.,Put down the bag.,Put down the bag. 2001,VS5IY_23.5_29.7,What did the person do while they were holding the bag?,2,Interaction_T3_5614,Interaction_T3,Put down the bag.,Threw the bag.,Took the bag.,Opened the bag.,Took the bag. 2002,W2DAK_9.5_17.4,What did the person do while they were holding the box?,1,Interaction_T3_5666,Interaction_T3,Closed the box.,Opened the box.,Put down the box.,Threw the box.,Opened the box. 2003,W2DAK_9.5_17.4,What did the person do while they were touching the box?,2,Interaction_T3_5667,Interaction_T3,Threw the box.,Put down the box.,Opened the box.,Took the box.,Opened the box. 2004,CSYES_9.6_17,What did the person do while they were holding the towel?,3,Interaction_T3_5668,Interaction_T3,Tidied up the towel.,Took the towel.,Threw the towel.,Put down the towel.,Put down the towel. 2005,XYGU1_11.8_20.5,What did the person do while they were touching the book?,1,Interaction_T3_5696,Interaction_T3,Put down the book.,Opened the book.,Threw the book.,Closed the book.,Opened the book. 2006,SPJVR_13.9_19.3,What did the person do while they were holding the blanket?,3,Interaction_T3_5704,Interaction_T3,Put down the blanket.,Tidied up the blanket.,Took the blanket.,Threw the blanket.,Threw the blanket. 2007,M7BD4_20.2_26.2,What did the person do while they were touching the laptop?,3,Interaction_T3_5772,Interaction_T3,Took the laptop.,Opened the laptop.,Put down the laptop.,Closed the laptop.,Closed the laptop. 2008,M7BD4_20.2_26.2,What did the person do while they were holding the laptop?,3,Interaction_T3_5773,Interaction_T3,Took the laptop.,Put down the laptop.,Opened the laptop.,Closed the laptop.,Closed the laptop. 2009,MZJ9D_0_7.4,What did the person do while they were touching the laptop?,0,Interaction_T3_5782,Interaction_T3,Opened the laptop.,Put down the laptop.,Took the laptop.,Closed the laptop.,Opened the laptop. 2010,MZJ9D_0_7.4,What did the person do while they were holding the laptop?,3,Interaction_T3_5783,Interaction_T3,Closed the laptop.,Put down the laptop.,Took the laptop.,Opened the laptop.,Opened the laptop. 2011,UQ93G_9_14.2,What did the person do while they were holding the clothes?,3,Interaction_T3_5881,Interaction_T3,Washed the clothes.,Threw the clothes.,Tidied up the clothes.,Took the clothes.,Took the clothes. 2012,I329H_0_8.9,What did the person do while they were holding the bag?,1,Interaction_T3_5887,Interaction_T3,Took the bag.,Opened the bag.,Put down the bag.,Threw the bag.,Opened the bag. 2013,VKXLL_22.1_28.6,What did the person do while they were touching the box?,0,Interaction_T3_5891,Interaction_T3,Opened the box.,Put down the box.,Closed the box.,Took the box.,Opened the box. 2014,3XKBC_18.8_28.1,What did the person do while they were touching the laptop?,2,Interaction_T3_5926,Interaction_T3,Closed the laptop.,Took the laptop.,Opened the laptop.,Put down the laptop.,Opened the laptop. 2015,OEE36_21.1_29.1,What did the person do while they were holding the towel?,2,Interaction_T3_5928,Interaction_T3,Tidied up the towel.,Took the towel.,Put down the towel.,Threw the towel.,Put down the towel. 2016,OEE36_32.3_40.2,What did the person do while they were touching the box?,2,Interaction_T3_5929,Interaction_T3,Threw the box.,Opened the box.,Put down the box.,Took the box.,Put down the box. 2017,DRIWX_0_4.1,What did the person do while they were holding the clothes?,1,Interaction_T3_5973,Interaction_T3,Tidied up the clothes.,Took the clothes.,Washed the clothes.,Put down the clothes.,Took the clothes. 2018,MA15X_65.7_72,What did the person do while they were holding the blanket?,0,Interaction_T3_6000,Interaction_T3,Threw the blanket.,Took the blanket.,Tidied up the blanket.,Put down the blanket.,Threw the blanket. 2019,MA15X_65.7_72,What did the person do while they were carrying the blanket?,3,Interaction_T3_6001,Interaction_T3,Tidied up the blanket.,Put down the blanket.,Took the blanket.,Threw the blanket.,Threw the blanket. 2020,0BZAD_7.5_12.9,What did the person do while they were holding the book?,2,Interaction_T3_6015,Interaction_T3,Closed the book.,Took the book.,Opened the book.,Threw the book.,Opened the book. 2021,8DSGI_5.8_10.9,What did the person do while they were holding the clothes?,0,Interaction_T3_6047,Interaction_T3,Threw the clothes.,Took the clothes.,Tidied up the clothes.,Put down the clothes.,Threw the clothes. 2022,Y2DK5_9.6_16.9,What did the person do while they were holding the box?,1,Interaction_T3_6050,Interaction_T3,Closed the box.,Put down the box.,Opened the box.,Took the box.,Put down the box. 2023,0QES3_0.1_5.6,What did the person do while they were holding the book?,3,Interaction_T3_6051,Interaction_T3,Took the book.,Closed the book.,Opened the book.,Put down the book.,Put down the book. 2024,NPM0Z_16.7_22.4,What did the person do while they were holding the book?,2,Interaction_T3_6075,Interaction_T3,Opened the book.,Took the book.,Put down the book.,Closed the book.,Put down the book. 2025,NPM0Z_16.7_22.4,What did the person do while they were touching the book?,1,Interaction_T3_6076,Interaction_T3,Opened the book.,Put down the book.,Took the book.,Closed the book.,Put down the book. 2026,ACJBD_32_36.7,What did the person do while they were holding the clothes?,2,Interaction_T3_6082,Interaction_T3,Put down the clothes.,Washed the clothes.,Tidied up the clothes.,Threw the clothes.,Tidied up the clothes. 2027,ACJBD_32_36.7,What did the person do while they were touching the clothes?,1,Interaction_T3_6083,Interaction_T3,Took the clothes.,Tidied up the clothes.,Threw the clothes.,Put down the clothes.,Tidied up the clothes. 2028,RTEWJ_2.2_9.8,What did the person do while they were holding the towel?,2,Interaction_T3_6101,Interaction_T3,Threw the towel.,Put down the towel.,Took the towel.,Tidied up the towel.,Took the towel. 2029,RTEWJ_2.2_9.8,What did the person do while they were touching the towel?,0,Interaction_T3_6102,Interaction_T3,Took the towel.,Put down the towel.,Threw the towel.,Tidied up the towel.,Took the towel. 2030,RTEWJ_2.8_8.4,What did the person do while they were touching the blanket?,3,Interaction_T3_6103,Interaction_T3,Put down the blanket.,Threw the blanket.,Tidied up the blanket.,Took the blanket.,Took the blanket. 2031,CCCUJ_24.6_32.2,What did the person do while they were holding the laptop?,0,Interaction_T3_6128,Interaction_T3,Put down the laptop.,Opened the laptop.,Closed the laptop.,Took the laptop.,Put down the laptop. 2032,L9ANI_7.3_12.9,What did the person do while they were holding the towel?,1,Interaction_T3_6142,Interaction_T3,Put down the towel.,Took the towel.,Threw the towel.,Tidied up the towel.,Took the towel. 2033,Z5THW_29.3_35,What did the person do while they were holding the towel?,0,Interaction_T3_6143,Interaction_T3,Put down the towel.,Threw the towel.,Took the towel.,Tidied up the towel.,Put down the towel. 2034,194WK_4.9_10.2,What did the person do while they were holding the book?,0,Interaction_T3_6160,Interaction_T3,Closed the book.,Opened the book.,Put down the book.,Threw the book.,Closed the book. 2035,DHFA6_15_22.6,What did the person do while they were touching the box?,1,Interaction_T3_6170,Interaction_T3,Closed the box.,Put down the box.,Threw the box.,Opened the box.,Put down the box. 2036,NOFSE_8_12,What did the person do while they were holding the blanket?,3,Interaction_T3_6178,Interaction_T3,Tidied up the blanket.,Threw the blanket.,Put down the blanket.,Took the blanket.,Took the blanket. 2037,5657O_6.4_13.8,What did the person do while they were holding the clothes?,2,Interaction_T3_6182,Interaction_T3,Washed the clothes.,Tidied up the clothes.,Put down the clothes.,Threw the clothes.,Put down the clothes. 2038,4GLAP_15.7_21.4,What did the person do while they were touching the shoe and standing on the floor?,2,Interaction_T4_21,Interaction_T4,Lied on the sofa/couch.,Took the broom.,Put down the paper/notebook.,Took the paper/notebook.,Put down the paper/notebook. 2039,4GLAP_15.7_21.4,What did the person do while they were touching the doorknob and standing on the floor?,2,Interaction_T4_22,Interaction_T4,Threw the pillow.,Opened the door.,Put down the paper/notebook.,Took the paper/notebook.,Put down the paper/notebook. 2040,OY3LS_37.2_42.1,What did the person do while they were covered by the blanket and lying on the sofa/couch?,1,Interaction_T4_23,Interaction_T4,Closed the laptop.,Put down the laptop.,Put down the pillow.,Opened the laptop.,Put down the laptop. 2041,RG0KS_16_25.3,What did the person do while they were touching the box and standing on the floor?,2,Interaction_T4_27,Interaction_T4,Put down the shoe.,Took the broom.,Took the shoe.,Threw the shoe.,Took the shoe. 2042,XOOTA_0_6,What did the person do while they were covered by the blanket and touching the vacuum?,0,Interaction_T4_84,Interaction_T4,Lied on the floor.,Took the paper/notebook.,Sat on the floor.,Threw the broom.,Lied on the floor. 2043,XOOTA_4.5_9,What did the person do while they were touching the vacuum and covered by the blanket?,2,Interaction_T4_85,Interaction_T4,Washed the cup/glass/bottle.,Lied on the floor.,Sat on the floor.,Sat on the bed.,Sat on the floor. 2044,XOOTA_4.5_9,What did the person do while they were touching the vacuum and carrying the blanket?,3,Interaction_T4_86,Interaction_T4,Lied on the floor.,Took the shoe.,Took the box.,Sat on the floor.,Sat on the floor. 2045,GKH0F_24_31.6,What did the person do while they were standing on the floor and sitting on the bed?,0,Interaction_T4_87,Interaction_T4,Put down the bag.,Took the bag.,Threw the bag.,Threw the blanket.,Put down the bag. 2046,GKH0F_24_31.6,What did the person do while they were standing on the floor and sitting on the sofa/couch?,3,Interaction_T4_88,Interaction_T4,Opened the bag.,Threw the bag.,Took the bag.,Put down the bag.,Put down the bag. 2047,GKH0F_24_31.6,What did the person do while they were standing on the floor and sitting on the chair?,1,Interaction_T4_89,Interaction_T4,Took the bag.,Put down the bag.,Opened the box.,Threw the bag.,Put down the bag. 2048,WX8N8_5.9_11.1,What did the person do while they were covered by the towel and touching the blanket?,3,Interaction_T4_156,Interaction_T4,Took the clothes.,Sat on the sofa/couch.,Tidied up the clothes.,Put down the clothes.,Put down the clothes. 2049,YB67Z_11.9_19.1,What did the person do while they were touching the box and sitting on the chair?,0,Interaction_T4_222,Interaction_T4,Tidied up the table.,Opened the bag.,Sat on the table.,Took the paper/notebook.,Tidied up the table. 2050,YB67Z_11.9_19.1,What did the person do while they were touching the box and leaning on the chair?,1,Interaction_T4_223,Interaction_T4,Closed the refrigerator.,Tidied up the table.,Sat on the table.,Put down the food.,Tidied up the table. 2051,ATV2F_10.9_19.4,What did the person do while they were touching the blanket and sitting on the bed?,3,Interaction_T4_328,Interaction_T4,Opened the laptop.,Closed the laptop.,Took the food.,Put down the laptop.,Put down the laptop. 2052,TRHT1_0_4.2,What did the person do while they were sitting on the chair and standing on the floor?,2,Interaction_T4_387,Interaction_T4,Took the blanket.,Lied on the sofa/couch.,Sat on the sofa/couch.,Closed the book.,Sat on the sofa/couch. 2053,TRHT1_0_4.2,What did the person do while they were sitting on the chair and touching the pillow?,1,Interaction_T4_388,Interaction_T4,Lied on the sofa/couch.,Sat on the sofa/couch.,Sat on the floor.,Put down the blanket.,Sat on the sofa/couch. 2054,TRHT1_0_4.2,What did the person do while they were sitting on the chair and carrying the pillow?,2,Interaction_T4_389,Interaction_T4,Opened the door.,Lied on the sofa/couch.,Sat on the sofa/couch.,Opened the refrigerator.,Sat on the sofa/couch. 2055,TRHT1_1.9_6.3,What did the person do while they were sitting on the chair and standing on the floor?,2,Interaction_T4_390,Interaction_T4,Tidied up the clothes.,Took the towel.,Threw the clothes.,Took the clothes.,Threw the clothes. 2056,C1DK7_4.2_10.2,What did the person do while they were touching the table and sitting on the chair?,2,Interaction_T4_418,Interaction_T4,Took the cup/glass/bottle.,Put down the laptop.,Closed the laptop.,Opened the laptop.,Closed the laptop. 2057,C1DK7_4.2_10.2,What did the person do while they were touching the table and leaning on the chair?,2,Interaction_T4_419,Interaction_T4,Took the laptop.,Put down the laptop.,Closed the laptop.,Took the book.,Closed the laptop. 2058,C1DK7_17.1_21.6,What did the person do while they were leaning on the chair and touching the table?,2,Interaction_T4_420,Interaction_T4,Ate the sandwich.,Took the paper/notebook.,Put down the phone/camera.,Took the phone/camera.,Put down the phone/camera. 2059,C1DK7_17.1_21.6,What did the person do while they were sitting on the chair and touching the table?,0,Interaction_T4_421,Interaction_T4,Put down the phone/camera.,Took the cup/glass/bottle.,Took the phone/camera.,Opened the book.,Put down the phone/camera. 2060,YHXU9_15_23.7,What did the person do while they were standing on the floor and touching the book?,0,Interaction_T4_460,Interaction_T4,Took the paper/notebook.,Put down the paper/notebook.,Threw the towel.,Opened the box.,Took the paper/notebook. 2061,VJG6E_9_18,What did the person do while they were touching the table and sitting on the chair?,3,Interaction_T4_470,Interaction_T4,Closed the laptop.,Took the cup/glass/bottle.,Put down the laptop.,Opened the laptop.,Opened the laptop. 2062,VJG6E_9_18,What did the person do while they were leaning on the chair and touching the table?,0,Interaction_T4_471,Interaction_T4,Opened the laptop.,Put down the laptop.,Took the paper/notebook.,Closed the laptop.,Opened the laptop. 2063,5C4EK_5.4_11.4,What did the person do while they were sitting on the chair and touching the book?,1,Interaction_T4_476,Interaction_T4,Put down the paper/notebook.,Took the paper/notebook.,Put down the cup/glass/bottle.,Tidied up the closet/cabinet.,Took the paper/notebook. 2064,5C4EK_5.4_11.4,What did the person do while they were leaning on the chair and touching the book?,2,Interaction_T4_477,Interaction_T4,Put down the clothes.,Put down the paper/notebook.,Took the paper/notebook.,Put down the cup/glass/bottle.,Took the paper/notebook. 2065,NW0KT_8.6_13.9,What did the person do while they were touching the closet/cabinet and sitting on the book?,3,Interaction_T4_482,Interaction_T4,Put down the clothes.,Put down the paper/notebook.,Lied on the floor.,Took the paper/notebook.,Took the paper/notebook. 2066,8SDK5_16.7_23,What did the person do while they were touching the box and sitting on the chair?,2,Interaction_T4_569,Interaction_T4,Took the broom.,Lied on the sofa/couch.,Sat on the sofa/couch.,Took the food.,Sat on the sofa/couch. 2067,8SDK5_16.7_23,What did the person do while they were touching the box and leaning on the chair?,2,Interaction_T4_570,Interaction_T4,Closed the door.,Took the food.,Sat on the sofa/couch.,Lied on the sofa/couch.,Sat on the sofa/couch. 2068,8SDK5_16.7_23,What did the person do while they were sitting on the chair and carrying the box?,0,Interaction_T4_571,Interaction_T4,Sat on the sofa/couch.,Put down the food.,Took the broom.,Lied on the sofa/couch.,Sat on the sofa/couch. 2069,8SDK5_16.7_23,What did the person do while they were leaning on the chair and carrying the box?,1,Interaction_T4_572,Interaction_T4,Took the paper/notebook.,Sat on the sofa/couch.,Washed the clothes.,Lied on the sofa/couch.,Sat on the sofa/couch. 2070,9MNZ5_23_28.3,What did the person do while they were sitting on the chair and touching the table?,3,Interaction_T4_635,Interaction_T4,Opened the box.,Threw the box.,Took the sandwich.,Put down the box.,Put down the box. 2071,9MNZ5_9_13.8,What did the person do while they were sitting on the chair and touching the table?,3,Interaction_T4_636,Interaction_T4,Opened the book.,Closed the box.,Threw the box.,Took the box.,Took the box. 2072,9MNZ5_10.4_17.8,What did the person do while they were sitting on the chair and touching the table?,1,Interaction_T4_637,Interaction_T4,Closed the box.,Opened the box.,Ate the sandwich.,Put down the box.,Opened the box. 2073,9MNZ5_10.4_17.8,What did the person do while they were leaning on the chair and touching the table?,3,Interaction_T4_638,Interaction_T4,Put down the food.,Closed the box.,Threw the box.,Opened the box.,Opened the box. 2074,9MNZ5_23_28.3,What did the person do while they were leaning on the chair and touching the table?,3,Interaction_T4_639,Interaction_T4,Closed the box.,Threw the box.,Put down the picture.,Put down the box.,Put down the box. 2075,6ZWSU_16.2_21.8,What did the person do while they were touching the shoe and sitting on the floor?,2,Interaction_T4_716,Interaction_T4,Put down the phone/camera.,Threw the shoe.,Took the phone/camera.,Took the bag.,Took the phone/camera. 2076,JZULS_21.1_25.7,What did the person do while they were touching the cup/glass/bottle and sitting on the chair?,0,Interaction_T4_861,Interaction_T4,Took the dish.,Washed the dish.,Sat at the table.,Put down the dish.,Took the dish. 2077,JZULS_21.1_25.7,What did the person do while they were drinking from the cup/glass/bottle and sitting on the chair?,2,Interaction_T4_862,Interaction_T4,Put down the dish.,Took the sandwich.,Took the dish.,Washed the dish.,Took the dish. 2078,JTBXI_31.5_37.7,What did the person do while they were touching the blanket and having bag on the back?,1,Interaction_T4_890,Interaction_T4,Threw the pillow.,Put down the pillow.,Took the pillow.,Opened the door.,Put down the pillow. 2079,JTBXI_35.1_41.2,What did the person do while they were touching the blanket and having bag on the back?,2,Interaction_T4_891,Interaction_T4,Took the towel.,Put down the pillow.,Took the pillow.,Threw the pillow.,Took the pillow. 2080,1HZGH_0_9.9,What did the person do while they were covered by the blanket and leaning on the bed?,0,Interaction_T4_904,Interaction_T4,Lied on the sofa/couch.,Closed the door.,Took the phone/camera.,Sat on the sofa/couch.,Lied on the sofa/couch. 2081,1HZGH_0_9.9,What did the person do while they were covered by the blanket and sitting on the bed?,3,Interaction_T4_905,Interaction_T4,Threw the food.,Sat on the sofa/couch.,Opened the door.,Lied on the sofa/couch.,Lied on the sofa/couch. 2082,3WMV4_3.1_9.1,What did the person do while they were drinking from the cup/glass/bottle and leaning on the window?,1,Interaction_T4_931,Interaction_T4,Put down the sandwich.,Ate the sandwich.,Took the bag.,Took the sandwich.,Ate the sandwich. 2083,3WMV4_3.1_9.1,What did the person do while they were drinking from the cup/glass/bottle and touching the window?,3,Interaction_T4_932,Interaction_T4,Took the sandwich.,Put down the sandwich.,Took the dish.,Ate the sandwich.,Ate the sandwich. 2084,136V6_13.9_19.4,What did the person do while they were touching the book and leaning on the bed?,3,Interaction_T4_937,Interaction_T4,Sat on the sofa/couch.,Put down the paper/notebook.,Washed the mirror.,Lied on the sofa/couch.,Lied on the sofa/couch. 2085,136V6_13.9_19.4,What did the person do while they were touching the chair and leaning on the bed?,1,Interaction_T4_938,Interaction_T4,Closed the laptop.,Lied on the sofa/couch.,Sat on the sofa/couch.,Put down the phone/camera.,Lied on the sofa/couch. 2086,136V6_13.9_19.4,What did the person do while they were sitting on the chair and leaning on the bed?,3,Interaction_T4_939,Interaction_T4,Opened the book.,Sat on the sofa/couch.,Closed the laptop.,Lied on the sofa/couch.,Lied on the sofa/couch. 2087,BEAAA_0_4.1,What did the person do while they were sitting on the chair and touching the clothes?,2,Interaction_T4_1017,Interaction_T4,Put down the sandwich.,Put down the book.,Ate the sandwich.,Took the sandwich.,Ate the sandwich. 2088,BEAAA_0_4.1,What did the person do while they were touching the clothes and leaning on the chair?,0,Interaction_T4_1018,Interaction_T4,Ate the sandwich.,Took the cup/glass/bottle.,Sat on the floor.,Put down the sandwich.,Ate the sandwich. 2089,2BO2G_17.3_26.6,What did the person do while they were touching the book and leaning on the table?,1,Interaction_T4_1054,Interaction_T4,Took the picture.,Put down the picture.,Opened the refrigerator.,Took the clothes.,Put down the picture. 2090,2BO2G_17.3_26.6,What did the person do while they were leaning on the table and touching the box?,1,Interaction_T4_1055,Interaction_T4,Took the picture.,Put down the picture.,Opened the refrigerator.,Opened the laptop.,Put down the picture. 2091,2BO2G_17.3_26.6,What did the person do while they were leaning on the table and touching the groceries?,2,Interaction_T4_1056,Interaction_T4,Tidied up the table.,Took the picture.,Put down the picture.,Took the shoe.,Put down the picture. 2092,BVN7J_6.7_12.7,What did the person do while they were touching the table and carrying the towel?,3,Interaction_T4_1059,Interaction_T4,Put down the dish.,Opened the door.,Washed the dish.,Took the dish.,Took the dish. 2093,BVN7J_6.7_12.7,What did the person do while they were touching the shelf and wiping the table?,3,Interaction_T4_1060,Interaction_T4,Opened the laptop.,Washed the dish.,Put down the dish.,Took the dish.,Took the dish. 2094,3JCEI_8.3_13,What did the person do while they were touching the table and sitting on the bed?,1,Interaction_T4_1087,Interaction_T4,Took the laptop.,Closed the laptop.,Put down the phone/camera.,Opened the laptop.,Closed the laptop. 2095,3JCEI_9.6_17.8,What did the person do while they were sitting on the sofa/couch and standing on the floor?,2,Interaction_T4_1091,Interaction_T4,Threw the pillow.,Put down the clothes.,Threw the clothes.,Took the clothes.,Threw the clothes. 2096,3JCEI_9.6_17.8,What did the person do while they were sitting on the sofa/couch and touching the laptop?,3,Interaction_T4_1092,Interaction_T4,Tidied up the clothes.,Ate the sandwich.,Put down the clothes.,Threw the clothes.,Threw the clothes. 2097,3JCEI_9.6_17.8,What did the person do while they were touching the laptop and standing on the floor?,2,Interaction_T4_1093,Interaction_T4,Tidied up the clothes.,Took the clothes.,Threw the clothes.,Put down the paper/notebook.,Threw the clothes. 2098,3JCEI_9.6_17.8,What did the person do while they were touching the table and standing on the floor?,3,Interaction_T4_1094,Interaction_T4,Washed the clothes.,Took the clothes.,Took the paper/notebook.,Threw the clothes.,Threw the clothes. 2099,HRASP_5.5_11.8,What did the person do while they were touching the light and standing on the floor?,3,Interaction_T4_1098,Interaction_T4,Washed the clothes.,Put down the clothes.,Took the clothes.,Threw the clothes.,Threw the clothes. 2100,HRASP_5.5_11.8,What did the person do while they were standing on the floor and touching the cup/glass/bottle?,3,Interaction_T4_1099,Interaction_T4,Washed the clothes.,Took the dish.,Put down the clothes.,Threw the clothes.,Threw the clothes. 2101,93REJ_9.1_14.9,What did the person do while they were sitting on the chair and drinking from the cup/glass/bottle?,0,Interaction_T4_1118,Interaction_T4,Put down the clothes.,Put down the dish.,Tidied up the clothes.,Washed the clothes.,Put down the clothes. 2102,93REJ_9.1_14.9,What did the person do while they were leaning on the chair and drinking from the cup/glass/bottle?,3,Interaction_T4_1119,Interaction_T4,Sat at the table.,Took the clothes.,Washed the clothes.,Put down the clothes.,Put down the clothes. 2103,93REJ_10.2_15.4,What did the person do while they were standing on the floor and sitting on the chair?,2,Interaction_T4_1120,Interaction_T4,Took the towel.,Threw the book.,Put down the towel.,Tidied up the towel.,Put down the towel. 2104,93REJ_10.2_15.4,What did the person do while they were standing on the floor and leaning on the chair?,0,Interaction_T4_1121,Interaction_T4,Put down the towel.,Threw the towel.,Tidied up the towel.,Opened the box.,Put down the towel. 2105,93REJ_10.2_15.4,What did the person do while they were drinking from the cup/glass/bottle and sitting on the chair?,0,Interaction_T4_1122,Interaction_T4,Put down the towel.,Took the towel.,Tidied up the towel.,Threw the towel.,Put down the towel. 2106,93REJ_10.2_15.4,What did the person do while they were drinking from the cup/glass/bottle and leaning on the chair?,3,Interaction_T4_1123,Interaction_T4,Took the towel.,Put down the dish.,Threw the towel.,Put down the towel.,Put down the towel. 2107,LQC89_10.2_16.4,What did the person do while they were touching the table and sitting on the floor?,2,Interaction_T4_1138,Interaction_T4,Put down the sandwich.,Ate the sandwich.,Took the sandwich.,Threw the book.,Took the sandwich. 2108,BI6Y4_25.3_33.1,What did the person do while they were sitting on the chair and touching the cup/glass/bottle?,2,Interaction_T4_1145,Interaction_T4,Put down the broom.,Put down the food.,Sat at the table.,Tidied up the table.,Sat at the table. 2109,BI6Y4_25.3_33.1,What did the person do while they were leaning on the chair and touching the cup/glass/bottle?,1,Interaction_T4_1146,Interaction_T4,Opened the door.,Sat at the table.,Put down the food.,Tidied up the table.,Sat at the table. 2110,CVDZM_13.8_22.2,What did the person do while they were touching the towel and carrying the blanket?,0,Interaction_T4_1177,Interaction_T4,Put down the book.,Opened the door.,Closed the book.,Opened the book.,Put down the book. 2111,8XXNK_8_14.4,What did the person do while they were touching the box and sitting on the bed?,2,Interaction_T4_1185,Interaction_T4,Threw the food.,Took the cup/glass/bottle.,Put down the food.,Took the food.,Put down the food. 2112,8XXNK_8_14.4,What did the person do while they were touching the box and sitting on the sofa/couch?,0,Interaction_T4_1186,Interaction_T4,Put down the food.,Threw the food.,Opened the window.,Took the food.,Put down the food. 2113,7TA23_6.4_11.3,What did the person do while they were standing on the floor and touching the phone/camera?,1,Interaction_T4_1198,Interaction_T4,Closed the book.,Put down the clothes.,Washed the clothes.,Threw the clothes.,Put down the clothes. 2114,2ZICJ_4.1_10.1,What did the person do while they were touching the shelf and sitting on the floor?,0,Interaction_T4_1205,Interaction_T4,Opened the closet/cabinet.,Tidied up the closet/cabinet.,Closed the closet/cabinet.,Took the clothes.,Opened the closet/cabinet. 2115,2ZICJ_24.3_30.8,What did the person do while they were sitting on the floor and touching the refrigerator?,1,Interaction_T4_1210,Interaction_T4,Opened the door.,Closed the door.,Took the blanket.,Put down the box.,Closed the door. 2116,2ZICJ_24.3_30.8,What did the person do while they were sitting on the floor and touching the closet/cabinet?,1,Interaction_T4_1211,Interaction_T4,Tidied up the blanket.,Closed the door.,Opened the door.,Put down the book.,Closed the door. 2117,QCVZN_12.7_22,What did the person do while they were sitting on the sofa/couch and touching the paper/notebook?,3,Interaction_T4_1212,Interaction_T4,Threw the book.,Closed the book.,Took the food.,Opened the book.,Opened the book. 2118,5W1Z7_0_8,What did the person do while they were lying on the pillow and touching the dish?,3,Interaction_T4_1233,Interaction_T4,Opened the door.,Tidied up the clothes.,Sat on the bed.,Lied on the bed.,Lied on the bed. 2119,5W1Z7_0_8,What did the person do while they were lying on the pillow and touching the cup/glass/bottle?,0,Interaction_T4_1234,Interaction_T4,Lied on the bed.,Sat on the bed.,Opened the window.,Took the food.,Lied on the bed. 2120,EEGGA_0_5.3,What did the person do while they were touching the towel and sitting on the chair?,0,Interaction_T4_1340,Interaction_T4,Put down the blanket.,Tidied up the blanket.,Ate the sandwich.,Threw the blanket.,Put down the blanket. 2121,EEGGA_0_5.3,What did the person do while they were touching the towel and leaning on the chair?,0,Interaction_T4_1341,Interaction_T4,Put down the blanket.,Threw the blanket.,Tidied up the blanket.,Took the blanket.,Put down the blanket. 2122,72LJ3_15.1_22.6,What did the person do while they were covered by the blanket and sitting on the bed?,3,Interaction_T4_1427,Interaction_T4,Closed the book.,Opened the book.,Put down the clothes.,Threw the book.,Threw the book. 2123,72LJ3_15.1_22.6,What did the person do while they were touching the paper/notebook and sitting on the bed?,3,Interaction_T4_1428,Interaction_T4,Put down the book.,Closed the book.,Took the phone/camera.,Threw the book.,Threw the book. 2124,72LJ3_15.1_22.6,What did the person do while they were touching the blanket and sitting on the bed?,1,Interaction_T4_1429,Interaction_T4,Opened the book.,Threw the book.,Took the laptop.,Closed the book.,Threw the book. 2125,SANRG_0_3.6,What did the person do while they were sitting on the sofa/couch and touching the towel?,3,Interaction_T4_1430,Interaction_T4,Took the cup/glass/bottle.,Put down the blanket.,Tidied up the blanket.,Took the blanket.,Took the blanket. 2126,SANRG_0_3.6,What did the person do while they were leaning on the sofa/couch and touching the towel?,3,Interaction_T4_1431,Interaction_T4,Took the cup/glass/bottle.,Threw the blanket.,Tidied up the blanket.,Took the blanket.,Took the blanket. 2127,SANRG_13.7_19.1,What did the person do while they were leaning on the sofa/couch and standing on the floor?,2,Interaction_T4_1433,Interaction_T4,Took the blanket.,Put down the cup/glass/bottle.,Threw the blanket.,Tidied up the blanket.,Threw the blanket. 2128,YACA8_15.9_23.9,What did the person do while they were standing on the floor and touching the clothes?,2,Interaction_T4_1444,Interaction_T4,Put down the shoe.,Put down the towel.,Took the shoe.,Threw the shoe.,Took the shoe. 2129,TIPFG_5.3_13.5,What did the person do while they were touching the box and sitting on the chair?,0,Interaction_T4_1446,Interaction_T4,Took the shoe.,Put down the clothes.,Threw the shoe.,Put down the shoe.,Took the shoe. 2130,TIPFG_5.3_13.5,What did the person do while they were touching the box and drinking from the cup/glass/bottle?,2,Interaction_T4_1447,Interaction_T4,Put down the shoe.,Opened the door.,Took the shoe.,Threw the shoe.,Took the shoe. 2131,TIPFG_5.3_13.5,What did the person do while they were sitting on the chair and drinking from the cup/glass/bottle?,0,Interaction_T4_1448,Interaction_T4,Took the shoe.,Washed the mirror.,Threw the shoe.,Put down the food.,Took the shoe. 2132,TIPFG_5.3_13.5,What did the person do while they were drinking from the cup/glass/bottle and touching the chair?,2,Interaction_T4_1449,Interaction_T4,Put down the shoe.,Opened the box.,Took the shoe.,Threw the shoe.,Took the shoe. 2133,TIPFG_10.6_19,What did the person do while they were touching the shoe and drinking from the cup/glass/bottle?,1,Interaction_T4_1450,Interaction_T4,Opened the box.,Put down the box.,Closed the box.,Threw the box.,Put down the box. 2134,TIPFG_10.6_19,What did the person do while they were sitting on the chair and drinking from the cup/glass/bottle?,0,Interaction_T4_1451,Interaction_T4,Put down the box.,Closed the box.,Sat at the table.,Threw the box.,Put down the box. 2135,TIPFG_10.6_19,What did the person do while they were touching the chair and drinking from the cup/glass/bottle?,2,Interaction_T4_1452,Interaction_T4,Threw the box.,Put down the food.,Put down the box.,Closed the box.,Put down the box. 2136,5INX3_25.7_35.1,What did the person do while they were sitting on the chair and touching the table?,0,Interaction_T4_1457,Interaction_T4,Put down the towel.,Tidied up the towel.,Threw the towel.,Opened the laptop.,Put down the towel. 2137,BFH78_17.9_22.4,What did the person do while they were touching the book and sitting on the chair?,2,Interaction_T4_1470,Interaction_T4,Threw the pillow.,Put down the paper/notebook.,Took the paper/notebook.,Sat at the table.,Took the paper/notebook. 2138,BFH78_17.9_22.4,What did the person do while they were touching the book and leaning on the chair?,3,Interaction_T4_1471,Interaction_T4,Tidied up the towel.,Took the phone/camera.,Put down the paper/notebook.,Took the paper/notebook.,Took the paper/notebook. 2139,BFH78_17.9_22.4,What did the person do while they were touching the book and carrying the towel?,3,Interaction_T4_1472,Interaction_T4,Put down the paper/notebook.,Took the laptop.,Took the clothes.,Took the paper/notebook.,Took the paper/notebook. 2140,BFH78_17.9_22.4,What did the person do while they were touching the table and leaning on the chair?,2,Interaction_T4_1474,Interaction_T4,Took the towel.,Put down the paper/notebook.,Took the paper/notebook.,Put down the pillow.,Took the paper/notebook. 2141,BFH78_17.9_22.4,What did the person do while they were touching the table and carrying the towel?,0,Interaction_T4_1475,Interaction_T4,Took the paper/notebook.,Took the blanket.,Sat on the bed.,Put down the paper/notebook.,Took the paper/notebook. 2142,BFH78_17.9_22.4,What did the person do while they were sitting on the chair and carrying the towel?,3,Interaction_T4_1476,Interaction_T4,Took the food.,Tidied up the closet/cabinet.,Put down the paper/notebook.,Took the paper/notebook.,Took the paper/notebook. 2143,BFH78_20.7_25,What did the person do while they were touching the table and leaning on the chair?,3,Interaction_T4_1480,Interaction_T4,Put down the dish.,Threw the towel.,Tidied up the towel.,Took the towel.,Took the towel. 2144,BFH78_20.7_25,What did the person do while they were touching the paper/notebook and sitting on the chair?,3,Interaction_T4_1483,Interaction_T4,Tidied up the towel.,Put down the towel.,Sat at the table.,Took the towel.,Took the towel. 2145,BFH78_20.7_25,What did the person do while they were touching the paper/notebook and leaning on the chair?,1,Interaction_T4_1484,Interaction_T4,Put down the towel.,Took the towel.,Opened the book.,Threw the towel.,Took the towel. 2146,BFH78_22.2_32,What did the person do while they were touching the book and sitting on the chair?,0,Interaction_T4_1485,Interaction_T4,Tidied up the towel.,Sat at the table.,Put down the towel.,Threw the towel.,Tidied up the towel. 2147,BFH78_22.2_32,What did the person do while they were touching the book and leaning on the chair?,2,Interaction_T4_1486,Interaction_T4,Put down the cup/glass/bottle.,Took the towel.,Tidied up the towel.,Threw the towel.,Tidied up the towel. 2148,BFH78_22.2_32,What did the person do while they were touching the book and standing on the chair?,0,Interaction_T4_1487,Interaction_T4,Tidied up the towel.,Took the towel.,Put down the towel.,Put down the box.,Tidied up the towel. 2149,BFH78_22.2_32,What did the person do while they were touching the paper/notebook and sitting on the chair?,0,Interaction_T4_1488,Interaction_T4,Tidied up the towel.,Tidied up the table.,Put down the towel.,Threw the towel.,Tidied up the towel. 2150,BFH78_22.2_32,What did the person do while they were touching the paper/notebook and leaning on the chair?,2,Interaction_T4_1489,Interaction_T4,Took the towel.,Closed the door.,Tidied up the towel.,Put down the towel.,Tidied up the towel. 2151,BFH78_22.2_32,What did the person do while they were touching the paper/notebook and standing on the chair?,2,Interaction_T4_1490,Interaction_T4,Took the cup/glass/bottle.,Threw the towel.,Tidied up the towel.,Put down the towel.,Tidied up the towel. 2152,BFH78_22.2_32,What did the person do while they were sitting on the chair and touching the table?,3,Interaction_T4_1491,Interaction_T4,Put down the dish.,Put down the towel.,Took the towel.,Tidied up the towel.,Tidied up the towel. 2153,BFH78_22.2_32,What did the person do while they were touching the table and leaning on the chair?,0,Interaction_T4_1492,Interaction_T4,Tidied up the towel.,Threw the towel.,Put down the box.,Took the towel.,Tidied up the towel. 2154,BFH78_22.2_32,What did the person do while they were touching the table and standing on the chair?,0,Interaction_T4_1493,Interaction_T4,Tidied up the towel.,Threw the towel.,Took the cup/glass/bottle.,Put down the towel.,Tidied up the towel. 2155,BFH78_7.7_12.7,What did the person do while they were touching the table and leaning on the chair?,1,Interaction_T4_1496,Interaction_T4,Put down the phone/camera.,Took the phone/camera.,Put down the shoe.,Took the food.,Took the phone/camera. 2156,U33ZS_0.5_9.1,What did the person do while they were carrying the bag and sitting on the chair?,1,Interaction_T4_1501,Interaction_T4,Opened the laptop.,Took the laptop.,Ate the medicine.,Closed the laptop.,Took the laptop. 2157,U33ZS_0.5_9.1,What did the person do while they were touching the book and sitting on the chair?,0,Interaction_T4_1502,Interaction_T4,Took the laptop.,Put down the laptop.,Closed the laptop.,Sat at the table.,Took the laptop. 2158,U33ZS_0.5_9.1,What did the person do while they were touching the bag and sitting on the chair?,3,Interaction_T4_1503,Interaction_T4,Closed the laptop.,Took the food.,Opened the laptop.,Took the laptop.,Took the laptop. 2159,U33ZS_0.5_9.1,What did the person do while they were touching the table and sitting on the chair?,2,Interaction_T4_1504,Interaction_T4,Took the dish.,Put down the laptop.,Took the laptop.,Closed the laptop.,Took the laptop. 2160,U33ZS_7.6_14.8,What did the person do while they were sitting on the chair and touching the paper/notebook?,2,Interaction_T4_1505,Interaction_T4,Put down the laptop.,Put down the phone/camera.,Opened the laptop.,Took the laptop.,Opened the laptop. 2161,U33ZS_7.6_14.8,What did the person do while they were sitting on the chair and touching the bag?,3,Interaction_T4_1506,Interaction_T4,Ate the sandwich.,Closed the laptop.,Put down the laptop.,Opened the laptop.,Opened the laptop. 2162,2KGV3_5.7_12.3,What did the person do while they were sitting on the sofa/couch and touching the book?,0,Interaction_T4_1654,Interaction_T4,Put down the sandwich.,Took the sandwich.,Put down the cup/glass/bottle.,Ate the sandwich.,Put down the sandwich. 2163,2KGV3_5.7_12.3,What did the person do while they were sitting on the sofa/couch and touching the paper/notebook?,2,Interaction_T4_1655,Interaction_T4,Ate the sandwich.,Opened the door.,Put down the sandwich.,Took the sandwich.,Put down the sandwich. 2164,2KGV3_5.7_12.3,What did the person do while they were touching the book and leaning on the sofa/couch?,3,Interaction_T4_1656,Interaction_T4,Took the sandwich.,Ate the sandwich.,Closed the closet/cabinet.,Put down the sandwich.,Put down the sandwich. 2165,2KGV3_5.7_12.3,What did the person do while they were touching the book and sitting on the bed?,3,Interaction_T4_1657,Interaction_T4,Ate the sandwich.,Lied on the sofa/couch.,Took the sandwich.,Put down the sandwich.,Put down the sandwich. 2166,2KGV3_5.7_12.3,What did the person do while they were sitting on the bed and leaning on the sofa/couch?,1,Interaction_T4_1658,Interaction_T4,Ate the sandwich.,Put down the sandwich.,Took the sandwich.,Put down the book.,Put down the sandwich. 2167,2KGV3_5.7_12.3,What did the person do while they were sitting on the bed and touching the paper/notebook?,0,Interaction_T4_1659,Interaction_T4,Put down the sandwich.,Ate the sandwich.,Took the sandwich.,Closed the box.,Put down the sandwich. 2168,2KGV3_5.7_12.3,What did the person do while they were touching the paper/notebook and leaning on the sofa/couch?,1,Interaction_T4_1660,Interaction_T4,Took the towel.,Put down the sandwich.,Sat on the sofa/couch.,Ate the sandwich.,Put down the sandwich. 2169,2KGV3_5.7_12.3,What did the person do while they were leaning on the bed and touching the book?,3,Interaction_T4_1661,Interaction_T4,Took the sandwich.,Opened the box.,Ate the sandwich.,Put down the sandwich.,Put down the sandwich. 2170,2KGV3_5.7_12.3,What did the person do while they were leaning on the bed and touching the paper/notebook?,0,Interaction_T4_1662,Interaction_T4,Put down the sandwich.,Took the sandwich.,Ate the sandwich.,Tidied up the table.,Put down the sandwich. 2171,HT9YB_47_53,What did the person do while they were sitting on the sofa/couch and touching the laptop?,3,Interaction_T4_1692,Interaction_T4,Put down the phone/camera.,Put down the food.,Put down the blanket.,Took the phone/camera.,Took the phone/camera. 2172,HT9YB_47_53,What did the person do while they were leaning on the sofa/couch and touching the laptop?,2,Interaction_T4_1693,Interaction_T4,Put down the clothes.,Put down the phone/camera.,Took the phone/camera.,Closed the door.,Took the phone/camera. 2173,LUQWY_24.8_33.1,What did the person do while they were sitting on the chair and leaning on the sofa/couch?,3,Interaction_T4_1694,Interaction_T4,Took the laptop.,Took the phone/camera.,Opened the laptop.,Closed the laptop.,Closed the laptop. 2174,LUQWY_24.8_33.1,What did the person do while they were sitting on the bed and leaning on the sofa/couch?,1,Interaction_T4_1695,Interaction_T4,Opened the laptop.,Closed the laptop.,Took the laptop.,Ate the medicine.,Closed the laptop. 2175,3CLVI_18.9_25.2,What did the person do while they were touching the door and carrying the towel?,0,Interaction_T4_1719,Interaction_T4,Closed the closet/cabinet.,Tidied up the closet/cabinet.,Opened the closet/cabinet.,Took the broom.,Closed the closet/cabinet. 2176,3CLVI_18.9_25.2,What did the person do while they were touching the doorway and carrying the towel?,3,Interaction_T4_1720,Interaction_T4,Tidied up the closet/cabinet.,Opened the door.,Sat at the table.,Closed the closet/cabinet.,Closed the closet/cabinet. 2177,3CLVI_16.8_24.3,What did the person do while they were touching the door and carrying the towel?,1,Interaction_T4_1721,Interaction_T4,Opened the closet/cabinet.,Tidied up the closet/cabinet.,Closed the closet/cabinet.,Threw the clothes.,Tidied up the closet/cabinet. 2178,DPLMM_4.1_13.6,What did the person do while they were carrying the pillow and touching the light?,1,Interaction_T4_1739,Interaction_T4,Put down the towel.,Lied on the floor.,Sat on the floor.,Put down the laptop.,Lied on the floor. 2179,DPLMM_4.1_13.6,What did the person do while they were carrying the pillow and touching the doorway?,2,Interaction_T4_1740,Interaction_T4,Tidied up the closet/cabinet.,Sat on the floor.,Lied on the floor.,Put down the picture.,Lied on the floor. 2180,S407A_13.1_22,What did the person do while they were wiping the dish and sitting on the chair?,1,Interaction_T4_1751,Interaction_T4,Sat on the sofa/couch.,Put down the towel.,Tidied up the towel.,Took the towel.,Put down the towel. 2181,S407A_13.1_22,What did the person do while they were touching the dish and sitting on the chair?,0,Interaction_T4_1752,Interaction_T4,Put down the towel.,Threw the towel.,Tidied up the towel.,Put down the food.,Put down the towel. 2182,FQS7O_14.8_20,What did the person do while they were touching the table and sitting on the floor?,1,Interaction_T4_1770,Interaction_T4,Took the paper/notebook.,Put down the book.,Closed the book.,Opened the book.,Put down the book. 2183,FQS7O_14.8_20,What did the person do while they were touching the paper/notebook and sitting on the floor?,1,Interaction_T4_1771,Interaction_T4,Took the food.,Put down the book.,Threw the book.,Took the book.,Put down the book. 2184,FQS7O_14.8_20,What did the person do while they were touching the shelf and sitting on the floor?,0,Interaction_T4_1772,Interaction_T4,Put down the book.,Tidied up the table.,Took the book.,Closed the book.,Put down the book. 2185,D1NT7_10.8_18.6,What did the person do while they were standing on the floor and touching the blanket?,0,Interaction_T4_1841,Interaction_T4,Put down the box.,Opened the box.,Took the box.,Closed the door.,Put down the box. 2186,T1CQE_18.9_27.4,What did the person do while they were sitting on the bed and standing on the floor?,0,Interaction_T4_1951,Interaction_T4,Opened the bag.,Put down the shoe.,Took the bag.,Threw the bag.,Opened the bag. 2187,T1CQE_21.4_29.9,What did the person do while they were touching the bag and sitting on the floor?,3,Interaction_T4_1952,Interaction_T4,Closed the laptop.,Took the food.,Opened the laptop.,Took the laptop.,Took the laptop. 2188,T1CQE_21.4_29.9,What did the person do while they were touching the bag and sitting on the bed?,1,Interaction_T4_1953,Interaction_T4,Put down the laptop.,Took the laptop.,Opened the laptop.,Closed the laptop.,Took the laptop. 2189,T1CQE_21.4_29.9,What did the person do while they were standing on the floor and sitting on the bed?,1,Interaction_T4_1954,Interaction_T4,Closed the laptop.,Took the laptop.,Threw the blanket.,Opened the laptop.,Took the laptop. 2190,R0207_28.4_33.9,What did the person do while they were lying on the floor and touching the laptop?,1,Interaction_T4_1977,Interaction_T4,Ate the sandwich.,Put down the sandwich.,Took the cup/glass/bottle.,Sat on the floor.,Put down the sandwich. 2191,HOI88_11.7_21.6,What did the person do while they were lying on the table and touching the book?,0,Interaction_T4_1994,Interaction_T4,Sat on the sofa/couch.,Lied on the sofa/couch.,Put down the clothes.,Put down the shoe.,Sat on the sofa/couch. 2192,RXLKF_1.8_9.4,What did the person do while they were covered by the blanket and touching the book?,0,Interaction_T4_2004,Interaction_T4,Sat on the sofa/couch.,Took the phone/camera.,Lied on the sofa/couch.,Put down the paper/notebook.,Sat on the sofa/couch. 2193,NEM29_12.8_18.9,What did the person do while they were sitting on the bed and lying on the television?,1,Interaction_T4_2016,Interaction_T4,Put down the bag.,Took the bag.,Opened the bag.,Threw the bag.,Took the bag. 2194,NEM29_12.8_18.9,What did the person do while they were touching the food and sitting on the bed?,1,Interaction_T4_2017,Interaction_T4,Took the sandwich.,Took the bag.,Opened the bag.,Threw the bag.,Took the bag. 2195,NEM29_12.8_18.9,What did the person do while they were touching the food and lying on the television?,1,Interaction_T4_2018,Interaction_T4,Threw the bag.,Took the bag.,Opened the bag.,Put down the bag.,Took the bag. 2196,NEM29_12.8_18.9,What did the person do while they were touching the clothes and sitting on the bed?,3,Interaction_T4_2019,Interaction_T4,Threw the bag.,Put down the bag.,Took the cup/glass/bottle.,Took the bag.,Took the bag. 2197,NEM29_12.8_18.9,What did the person do while they were touching the clothes and lying on the television?,3,Interaction_T4_2020,Interaction_T4,Opened the bag.,Put down the bag.,Threw the bag.,Took the bag.,Took the bag. 2198,NEM29_12.8_18.9,What did the person do while they were touching the bed and lying on the television?,3,Interaction_T4_2021,Interaction_T4,Put down the bag.,Threw the bag.,Opened the bag.,Took the bag.,Took the bag. 2199,4JWAH_12.9_18.4,What did the person do while they were touching the pillow and sitting on the bed?,2,Interaction_T4_2022,Interaction_T4,Took the food.,Opened the book.,Took the phone/camera.,Put down the phone/camera.,Took the phone/camera. 2200,4JWAH_12.9_18.4,What did the person do while they were carrying the pillow and sitting on the bed?,1,Interaction_T4_2023,Interaction_T4,Put down the clothes.,Took the phone/camera.,Put down the phone/camera.,Opened the door.,Took the phone/camera. 2201,K71S1_1.3_9.3,What did the person do while they were standing on the floor and touching the clothes?,3,Interaction_T4_2024,Interaction_T4,Threw the box.,Opened the box.,Took the phone/camera.,Put down the box.,Put down the box. 2202,JOLLV_0_7.7,What did the person do while they were covered by the blanket and touching the bag?,1,Interaction_T4_2035,Interaction_T4,Put down the shoe.,Sat on the sofa/couch.,Opened the door.,Lied on the sofa/couch.,Sat on the sofa/couch. 2203,FM5D5_11_18.1,What did the person do while they were sitting on the chair and touching the bag?,2,Interaction_T4_2049,Interaction_T4,Put down the clothes.,Washed the clothes.,Tidied up the clothes.,Opened the book.,Tidied up the clothes. 2204,AZMVM_17.4_24.6,What did the person do while they were sitting on the bed and touching the pillow?,1,Interaction_T4_2083,Interaction_T4,Tidied up the closet/cabinet.,Opened the closet/cabinet.,Closed the closet/cabinet.,Took the cup/glass/bottle.,Opened the closet/cabinet. 2205,SHVVB_15.7_20.5,What did the person do while they were drinking from the cup/glass/bottle and touching the table?,0,Interaction_T4_2134,Interaction_T4,Put down the paper/notebook.,Put down the dish.,Took the clothes.,Took the paper/notebook.,Put down the paper/notebook. 2206,SHVVB_15.7_20.5,What did the person do while they were drinking from the cup/glass/bottle and touching the book?,3,Interaction_T4_2135,Interaction_T4,Washed the mirror.,Closed the box.,Took the paper/notebook.,Put down the paper/notebook.,Put down the paper/notebook. 2207,ICL1M_16.1_22.1,What did the person do while they were sitting on the bed and touching the cup/glass/bottle?,2,Interaction_T4_2148,Interaction_T4,Put down the blanket.,Put down the book.,Closed the book.,Threw the book.,Closed the book. 2208,DHPNN_8.8_15.5,What did the person do while they were writing on the paper/notebook and sitting on the chair?,2,Interaction_T4_2161,Interaction_T4,Sat at the table.,Took the food.,Threw the food.,Put down the food.,Threw the food. 2209,DHPNN_8.8_15.5,What did the person do while they were writing on the paper/notebook and touching the table?,3,Interaction_T4_2162,Interaction_T4,Put down the cup/glass/bottle.,Put down the blanket.,Took the food.,Threw the food.,Threw the food. 2210,DHPNN_8.8_15.5,What did the person do while they were sitting on the chair and touching the paper/notebook?,0,Interaction_T4_2163,Interaction_T4,Threw the food.,Took the food.,Opened the book.,Put down the food.,Threw the food. 2211,DHPNN_8.8_15.5,What did the person do while they were sitting on the chair and touching the table?,2,Interaction_T4_2164,Interaction_T4,Took the food.,Put down the phone/camera.,Threw the food.,Put down the food.,Threw the food. 2212,U6L1X_19.8_24.6,What did the person do while they were standing on the floor and touching the closet/cabinet?,3,Interaction_T4_2189,Interaction_T4,Opened the door.,Threw the broom.,Took the laptop.,Put down the broom.,Put down the broom. 2213,U6L1X_19.8_24.6,What did the person do while they were standing on the floor and touching the door?,0,Interaction_T4_2190,Interaction_T4,Put down the broom.,Took the broom.,Threw the broom.,Put down the clothes.,Put down the broom. 2214,ZNH10_12.2_20,What did the person do while they were lying on the bed and touching the towel?,0,Interaction_T4_2191,Interaction_T4,Took the blanket.,Tidied up the blanket.,Put down the clothes.,Threw the blanket.,Took the blanket. 2215,ZNH10_12.2_20,What did the person do while they were leaning on the bed and touching the towel?,3,Interaction_T4_2192,Interaction_T4,Put down the cup/glass/bottle.,Threw the blanket.,Put down the blanket.,Took the blanket.,Took the blanket. 2216,H8UJ3_15.1_23.1,What did the person do while they were sitting on the chair and touching the table?,0,Interaction_T4_2193,Interaction_T4,Opened the book.,Threw the book.,Put down the book.,Put down the phone/camera.,Opened the book. 2217,PON7X_16.1_26,What did the person do while they were touching the book and leaning on the chair?,3,Interaction_T4_2219,Interaction_T4,Took the sandwich.,Put down the sandwich.,Took the paper/notebook.,Ate the sandwich.,Ate the sandwich. 2218,PON7X_16.1_26,What did the person do while they were touching the table and sitting on the chair?,2,Interaction_T4_2220,Interaction_T4,Put down the cup/glass/bottle.,Took the sandwich.,Ate the sandwich.,Threw the clothes.,Ate the sandwich. 2219,PON7X_16.1_26,What did the person do while they were touching the table and leaning on the chair?,3,Interaction_T4_2221,Interaction_T4,Took the sandwich.,Took the food.,Put down the sandwich.,Ate the sandwich.,Ate the sandwich. 2220,MUO4G_4.7_12.8,What did the person do while they were sitting on the table and touching the doorknob?,1,Interaction_T4_2243,Interaction_T4,Closed the refrigerator.,Opened the refrigerator.,Put down the book.,Lied on the floor.,Opened the refrigerator. 2221,5MF9Y_13.6_19.8,What did the person do while they were standing on the floor and touching the food?,1,Interaction_T4_2249,Interaction_T4,Threw the broom.,Put down the broom.,Ate the sandwich.,Took the broom.,Put down the broom. 2222,JBJGX_24.6_31.5,What did the person do while they were touching the clothes and sitting on the sofa/couch?,3,Interaction_T4_2293,Interaction_T4,Took the cup/glass/bottle.,Put down the laptop.,Closed the laptop.,Opened the laptop.,Opened the laptop. 2223,JBJGX_24.6_31.5,What did the person do while they were touching the clothes and leaning on the sofa/couch?,1,Interaction_T4_2294,Interaction_T4,Closed the laptop.,Opened the laptop.,Took the dish.,Put down the laptop.,Opened the laptop. 2224,JBJGX_23.4_28.4,What did the person do while they were sitting on the sofa/couch and touching the laptop?,3,Interaction_T4_2295,Interaction_T4,Took the cup/glass/bottle.,Threw the clothes.,Washed the clothes.,Put down the clothes.,Put down the clothes. 2225,AWITI_2.3_7.9,What did the person do while they were leaning on the doorway and touching the light?,3,Interaction_T4_2335,Interaction_T4,Opened the door.,Put down the box.,Put down the laptop.,Closed the door.,Closed the door. 2226,M0KTN_23.5_28.8,What did the person do while they were touching the cup/glass/bottle and sitting on the floor?,0,Interaction_T4_2350,Interaction_T4,Took the blanket.,Put down the blanket.,Took the dish.,Threw the blanket.,Took the blanket. 2227,L0NFK_19_25,What did the person do while they were leaning on the chair and sitting on the floor?,0,Interaction_T4_2429,Interaction_T4,Threw the pillow.,Took the pillow.,Put down the clothes.,Put down the towel.,Threw the pillow. 2228,L0NFK_19_25,What did the person do while they were sitting on the floor and touching the chair?,1,Interaction_T4_2430,Interaction_T4,Put down the food.,Threw the pillow.,Took the pillow.,Tidied up the clothes.,Threw the pillow. 2229,OO4FE_10.4_18.3,What did the person do while they were sitting on the chair and touching the table?,3,Interaction_T4_2448,Interaction_T4,Put down the bag.,Put down the book.,Closed the book.,Took the book.,Took the book. 2230,KU656_7.9_12.8,What did the person do while they were sitting on the bed and touching the shelf?,2,Interaction_T4_2464,Interaction_T4,Tidied up the towel.,Threw the towel.,Took the towel.,Put down the laptop.,Took the towel. 2231,KU656_7.9_12.8,What did the person do while they were sitting on the bed and touching the clothes?,3,Interaction_T4_2465,Interaction_T4,Threw the towel.,Tidied up the towel.,Ate the sandwich.,Took the towel.,Took the towel. 2232,SM5WL_0_8.3,What did the person do while they were writing on the paper/notebook and sitting on the floor?,3,Interaction_T4_2487,Interaction_T4,Took the food.,Sat on the bed.,Put down the blanket.,Lied on the bed.,Lied on the bed. 2233,SM5WL_0_8.3,What did the person do while they were writing on the paper/notebook and covered by the blanket?,3,Interaction_T4_2488,Interaction_T4,Put down the book.,Took the paper/notebook.,Sat on the bed.,Lied on the bed.,Lied on the bed. 2234,SM5WL_0_8.3,What did the person do while they were writing on the paper/notebook and touching the blanket?,2,Interaction_T4_2489,Interaction_T4,Opened the laptop.,Put down the book.,Lied on the bed.,Sat on the bed.,Lied on the bed. 2235,SM5WL_0_8.3,What did the person do while they were sitting on the floor and covered by the blanket?,2,Interaction_T4_2490,Interaction_T4,Sat on the bed.,Threw the box.,Lied on the bed.,Took the phone/camera.,Lied on the bed. 2236,SM5WL_0_8.3,What did the person do while they were sitting on the floor and touching the paper/notebook?,0,Interaction_T4_2491,Interaction_T4,Lied on the bed.,Sat on the bed.,Opened the book.,Put down the sandwich.,Lied on the bed. 2237,SM5WL_0_8.3,What did the person do while they were sitting on the floor and touching the blanket?,0,Interaction_T4_2492,Interaction_T4,Lied on the bed.,Threw the book.,Took the towel.,Sat on the bed.,Lied on the bed. 2238,SM5WL_0_8.3,What did the person do while they were covered by the blanket and touching the paper/notebook?,3,Interaction_T4_2493,Interaction_T4,Closed the refrigerator.,Opened the book.,Sat on the bed.,Lied on the bed.,Lied on the bed. 2239,8EKYA_0_7,What did the person do while they were touching the doorway and carrying the pillow?,1,Interaction_T4_2547,Interaction_T4,Closed the closet/cabinet.,Opened the door.,Closed the door.,Put down the clothes.,Opened the door. 2240,8EKYA_5_11.2,What did the person do while they were carrying the pillow and touching the doorway?,0,Interaction_T4_2548,Interaction_T4,Closed the door.,Put down the pillow.,Opened the door.,Threw the food.,Closed the door. 2241,FL6DF_10.3_15.9,What did the person do while they were sitting on the sofa/couch and touching the laptop?,2,Interaction_T4_2568,Interaction_T4,Put down the pillow.,Ate the sandwich.,Threw the pillow.,Took the pillow.,Threw the pillow. 2242,FL6DF_10.3_15.9,What did the person do while they were carrying the laptop and sitting on the sofa/couch?,0,Interaction_T4_2570,Interaction_T4,Threw the pillow.,Put down the pillow.,Took the pillow.,Took the food.,Threw the pillow. 2243,FL6DF_10.3_15.9,What did the person do while they were carrying the laptop and leaning on the sofa/couch?,1,Interaction_T4_2571,Interaction_T4,Put down the pillow.,Threw the pillow.,Took the food.,Took the pillow.,Threw the pillow. 2244,FL6DF_10.3_15.9,What did the person do while they were touching the blanket and sitting on the sofa/couch?,2,Interaction_T4_2572,Interaction_T4,Opened the book.,Put down the pillow.,Threw the pillow.,Took the pillow.,Threw the pillow. 2245,FL6DF_10.3_15.9,What did the person do while they were touching the blanket and leaning on the sofa/couch?,1,Interaction_T4_2573,Interaction_T4,Opened the window.,Threw the pillow.,Took the bag.,Put down the pillow.,Threw the pillow. 2246,ZS9XR_10.6_17.1,What did the person do while they were sitting on the sofa/couch and touching the bag?,2,Interaction_T4_2575,Interaction_T4,Washed the cup/glass/bottle.,Closed the refrigerator.,Ate the medicine.,Sat at the table.,Ate the medicine. 2247,ZS9XR_10.6_17.1,What did the person do while they were sitting on the sofa/couch and touching the food?,2,Interaction_T4_2576,Interaction_T4,Threw the blanket.,Threw the food.,Ate the medicine.,Tidied up the clothes.,Ate the medicine. 2248,I1OLQ_26_32,What did the person do while they were sitting on the sofa/couch and leaning on the chair?,0,Interaction_T4_2605,Interaction_T4,Opened the bag.,Put down the bag.,Threw the bag.,Took the box.,Opened the bag. 2249,NKCXF_11.6_16.8,What did the person do while they were touching the pillow and sitting on the sofa/couch?,1,Interaction_T4_2631,Interaction_T4,Washed the dish.,Took the phone/camera.,Took the bag.,Put down the phone/camera.,Took the phone/camera. 2250,NKCXF_11.6_16.8,What did the person do while they were touching the pillow and leaning on the sofa/couch?,0,Interaction_T4_2632,Interaction_T4,Took the phone/camera.,Put down the phone/camera.,Tidied up the towel.,Opened the bag.,Took the phone/camera. 2251,9X208_22.2_26.8,What did the person do while they were sitting on the bed and touching the doorway?,2,Interaction_T4_2675,Interaction_T4,Tidied up the towel.,Threw the towel.,Took the towel.,Took the box.,Took the towel. 2252,9X208_22.2_26.8,What did the person do while they were sitting on the bed and touching the door?,0,Interaction_T4_2676,Interaction_T4,Took the towel.,Tidied up the towel.,Threw the towel.,Put down the towel.,Took the towel. 2253,9X208_22.2_26.8,What did the person do while they were sitting on the bed and touching the doorknob?,2,Interaction_T4_2677,Interaction_T4,Put down the towel.,Threw the towel.,Took the towel.,Tidied up the towel.,Took the towel. 2254,LW51F_11.3_17,What did the person do while they were touching the towel and wiping the mirror?,1,Interaction_T4_2684,Interaction_T4,Took the book.,Closed the book.,Put down the book.,Opened the book.,Closed the book. 2255,2YJUQ_4.3_9.7,What did the person do while they were touching the cup/glass/bottle and sitting on the chair?,3,Interaction_T4_2694,Interaction_T4,Put down the towel.,Took the sandwich.,Tidied up the table.,Sat at the table.,Sat at the table. 2256,VPBIO_4.5_9.1,What did the person do while they were standing on the floor and touching the groceries?,3,Interaction_T4_2706,Interaction_T4,Put down the bag.,Took the bag.,Threw the bag.,Opened the bag.,Opened the bag. 2257,EUJK0_19_26.6,What did the person do while they were touching the laptop and sitting on the chair?,2,Interaction_T4_2715,Interaction_T4,Threw the book.,Took the cup/glass/bottle.,Took the book.,Put down the book.,Took the book. 2258,EUJK0_19_26.6,What did the person do while they were touching the laptop and leaning on the chair?,2,Interaction_T4_2716,Interaction_T4,Sat at the table.,Threw the book.,Took the book.,Closed the book.,Took the book. 2259,EUJK0_17.1_24.1,What did the person do while they were sitting on the chair and touching the book?,1,Interaction_T4_2719,Interaction_T4,Put down the phone/camera.,Put down the laptop.,Opened the laptop.,Took the laptop.,Put down the laptop. 2260,CXF35_13.7_20.6,What did the person do while they were touching the pillow and sitting on the bed?,3,Interaction_T4_2724,Interaction_T4,Closed the door.,Took the phone/camera.,Put down the clothes.,Opened the door.,Opened the door. 2261,TOOYI_1.6_7.4,What did the person do while they were touching the box and covered by the towel?,3,Interaction_T4_2731,Interaction_T4,Took the blanket.,Tidied up the blanket.,Threw the blanket.,Put down the blanket.,Put down the blanket. 2262,PV745_7.2_14.8,What did the person do while they were sitting on the chair and touching the groceries?,0,Interaction_T4_2733,Interaction_T4,Took the box.,Threw the box.,Put down the box.,Closed the box.,Took the box. 2263,PV745_7.2_14.8,What did the person do while they were leaning on the chair and touching the groceries?,1,Interaction_T4_2734,Interaction_T4,Threw the box.,Took the box.,Closed the box.,Put down the box.,Took the box. 2264,XLR4B_21.8_30.9,What did the person do while they were sitting on the chair and touching the sandwich?,3,Interaction_T4_2741,Interaction_T4,Lied on the floor.,Tidied up the table.,Put down the dish.,Sat at the table.,Sat at the table. 2265,XLR4B_21.8_30.9,What did the person do while they were touching the sandwich and leaning on the chair?,1,Interaction_T4_2742,Interaction_T4,Lied on the bed.,Sat at the table.,Took the food.,Tidied up the table.,Sat at the table. 2266,CLW8L_7.1_13.1,What did the person do while they were covered by the blanket and lying on the bed?,3,Interaction_T4_2788,Interaction_T4,Threw the pillow.,Took the phone/camera.,Put down the pillow.,Took the pillow.,Took the pillow. 2267,HONL7_0.1_5.8,What did the person do while they were touching the laptop and lying on the floor?,0,Interaction_T4_2790,Interaction_T4,Took the book.,Closed the book.,Threw the book.,Put down the paper/notebook.,Took the book. 2268,HONL7_1_11,What did the person do while they were lying on the floor and touching the laptop?,3,Interaction_T4_2791,Interaction_T4,Put down the bag.,Took the paper/notebook.,Put down the dish.,Put down the paper/notebook.,Put down the paper/notebook. 2269,HONL7_1_11,What did the person do while they were touching the laptop and sitting on the floor?,1,Interaction_T4_2792,Interaction_T4,Took the paper/notebook.,Put down the paper/notebook.,Threw the food.,Put down the food.,Put down the paper/notebook. 2270,HONL7_1_11,What did the person do while they were touching the book and lying on the floor?,2,Interaction_T4_2793,Interaction_T4,Took the paper/notebook.,Took the cup/glass/bottle.,Put down the paper/notebook.,Ate the sandwich.,Put down the paper/notebook. 2271,HONL7_1_11,What did the person do while they were touching the book and sitting on the floor?,0,Interaction_T4_2794,Interaction_T4,Put down the paper/notebook.,Took the paper/notebook.,Took the shoe.,Put down the bag.,Put down the paper/notebook. 2272,X9WTR_31.6_40.4,What did the person do while they were sitting on the sofa/couch and touching the book?,3,Interaction_T4_2796,Interaction_T4,Took the paper/notebook.,Put down the sandwich.,Lied on the bed.,Put down the paper/notebook.,Put down the paper/notebook. 2273,AFTMI_32.3_37.8,What did the person do while they were sitting on the chair and touching the shelf?,0,Interaction_T4_2814,Interaction_T4,Took the pillow.,Opened the closet/cabinet.,Threw the pillow.,Put down the pillow.,Took the pillow. 2274,969Z9_0.8_7.4,What did the person do while they were touching the phone/camera and sitting on the chair?,1,Interaction_T4_2815,Interaction_T4,Took the cup/glass/bottle.,Sat at the table.,Tidied up the table.,Opened the box.,Sat at the table. 2275,01KML_18.1_26.8,What did the person do while they were touching the vacuum and standing on the floor?,0,Interaction_T4_2844,Interaction_T4,Took the laptop.,Opened the laptop.,Took the cup/glass/bottle.,Closed the laptop.,Took the laptop. 2276,MHTRY_2.4_9,What did the person do while they were touching the doorway and standing on the floor?,3,Interaction_T4_2845,Interaction_T4,Threw the towel.,Opened the window.,Tidied up the towel.,Took the towel.,Took the towel. 2277,MHTRY_2.4_9,What did the person do while they were touching the door and standing on the floor?,1,Interaction_T4_2846,Interaction_T4,Tidied up the towel.,Took the towel.,Put down the towel.,Took the shoe.,Took the towel. 2278,106AY_10.9_20.6,What did the person do while they were touching the box and standing on the floor?,1,Interaction_T4_2854,Interaction_T4,Threw the shoe.,Put down the shoe.,Took the towel.,Took the shoe.,Put down the shoe. 2279,PKNT2_16.3_22.4,What did the person do while they were sitting on the chair and touching the table?,0,Interaction_T4_2867,Interaction_T4,Put down the book.,Ate the sandwich.,Took the book.,Threw the book.,Put down the book. 2280,PKNT2_16.3_22.4,What did the person do while they were touching the table and leaning on the chair?,3,Interaction_T4_2868,Interaction_T4,Took the book.,Put down the cup/glass/bottle.,Closed the book.,Put down the book.,Put down the book. 2281,GMMVC_0_6.3,What did the person do while they were touching the book and sitting on the sofa/couch?,1,Interaction_T4_2906,Interaction_T4,Sat at the table.,Put down the blanket.,Tidied up the blanket.,Threw the blanket.,Put down the blanket. 2282,GMMVC_0_6.3,What did the person do while they were touching the book and leaning on the sofa/couch?,2,Interaction_T4_2907,Interaction_T4,Threw the blanket.,Tidied up the towel.,Put down the blanket.,Tidied up the blanket.,Put down the blanket. 2283,E0ZBC_31.4_38.1,What did the person do while they were sitting on the sofa/couch and touching the table?,3,Interaction_T4_2930,Interaction_T4,Opened the book.,Closed the book.,Took the clothes.,Took the book.,Took the book. 2284,E0ZBC_31.4_38.1,What did the person do while they were touching the cup/glass/bottle and sitting on the sofa/couch?,0,Interaction_T4_2931,Interaction_T4,Took the book.,Closed the book.,Opened the book.,Took the dish.,Took the book. 2285,D87LI_15.6_20.7,What did the person do while they were touching the laptop and sitting on the sofa/couch?,0,Interaction_T4_2941,Interaction_T4,Took the phone/camera.,Tidied up the blanket.,Put down the phone/camera.,Ate the sandwich.,Took the phone/camera. 2286,D87LI_15.6_20.7,What did the person do while they were touching the table and sitting on the sofa/couch?,3,Interaction_T4_2942,Interaction_T4,Put down the phone/camera.,Took the cup/glass/bottle.,Put down the picture.,Took the phone/camera.,Took the phone/camera. 2287,D87LI_14.9_19.6,What did the person do while they were sitting on the sofa/couch and touching the table?,1,Interaction_T4_2943,Interaction_T4,Took the laptop.,Closed the laptop.,Opened the book.,Put down the laptop.,Closed the laptop. 2288,D87LI_14.9_19.6,What did the person do while they were sitting on the sofa/couch and touching the phone/camera?,0,Interaction_T4_2944,Interaction_T4,Closed the laptop.,Took the laptop.,Put down the book.,Put down the laptop.,Closed the laptop. 2289,R9NRA_23.9_32,What did the person do while they were lying on the pillow and touching the cup/glass/bottle?,3,Interaction_T4_2992,Interaction_T4,Threw the shoe.,Sat on the sofa/couch.,Ate the medicine.,Lied on the sofa/couch.,Lied on the sofa/couch. 2290,JBZF5_0_7.4,What did the person do while they were having bag on the back and touching the laptop?,2,Interaction_T4_3084,Interaction_T4,Sat on the table.,Put down the broom.,Tidied up the table.,Put down the phone/camera.,Tidied up the table. 2291,4G00A_24.3_31.1,What did the person do while they were sitting on the bed and standing on the floor?,3,Interaction_T4_3256,Interaction_T4,Took the food.,Threw the broom.,Put down the clothes.,Took the broom.,Took the broom. 2292,8W31Y_0.5_7.2,What did the person do while they were covered by the blanket and leaning on the bed?,3,Interaction_T4_3263,Interaction_T4,Threw the food.,Put down the phone/camera.,Put down the paper/notebook.,Took the food.,Took the food. 2293,BDWIX_18.4_23.8,What did the person do while they were touching the blanket and covered by the towel?,3,Interaction_T4_3314,Interaction_T4,Threw the clothes.,Put down the box.,Put down the clothes.,Tidied up the clothes.,Tidied up the clothes. 2294,BDWIX_18.4_23.8,What did the person do while they were touching the blanket and carrying the towel?,0,Interaction_T4_3315,Interaction_T4,Tidied up the clothes.,Put down the box.,Took the clothes.,Washed the clothes.,Tidied up the clothes. 2295,K47J5_24_28.8,What did the person do while they were sitting on the chair and touching the medicine?,0,Interaction_T4_3320,Interaction_T4,Put down the dish.,Washed the dish.,Sat on the bed.,Took the dish.,Put down the dish. 2296,K47J5_24_28.8,What did the person do while they were leaning on the chair and touching the medicine?,3,Interaction_T4_3321,Interaction_T4,Took the dish.,Washed the dish.,Closed the box.,Put down the dish.,Put down the dish. 2297,KO80I_18_23.1,What did the person do while they were sitting on the floor and carrying the phone/camera?,3,Interaction_T4_3324,Interaction_T4,Put down the cup/glass/bottle.,Took the pillow.,Threw the pillow.,Put down the pillow.,Put down the pillow. 2298,3064K_8.2_18,What did the person do while they were sitting on the sofa/couch and touching the dish?,1,Interaction_T4_3359,Interaction_T4,Washed the clothes.,Put down the clothes.,Took the clothes.,Threw the blanket.,Put down the clothes. 2299,3064K_8.2_18,What did the person do while they were leaning on the sofa/couch and touching the dish?,3,Interaction_T4_3360,Interaction_T4,Took the clothes.,Tidied up the towel.,Washed the clothes.,Put down the clothes.,Put down the clothes. 2300,CF9QP_13.6_20.9,What did the person do while they were touching the food and sitting on the floor?,2,Interaction_T4_3362,Interaction_T4,Threw the bag.,Put down the bag.,Opened the bag.,Threw the towel.,Opened the bag. 2301,CF9QP_13.6_20.9,What did the person do while they were touching the cup/glass/bottle and sitting on the floor?,1,Interaction_T4_3363,Interaction_T4,Took the dish.,Opened the bag.,Put down the bag.,Threw the bag.,Opened the bag. 2302,HOZ76_20_25,What did the person do while they were leaning on the table and sitting on the chair?,3,Interaction_T4_3379,Interaction_T4,Put down the book.,Took the cup/glass/bottle.,Opened the book.,Took the book.,Took the book. 2303,HOZ76_20_25,What did the person do while they were leaning on the table and touching the chair?,1,Interaction_T4_3380,Interaction_T4,Closed the book.,Took the book.,Ate the sandwich.,Opened the book.,Took the book. 2304,HOZ76_20_25,What did the person do while they were touching the table and sitting on the chair?,1,Interaction_T4_3381,Interaction_T4,Opened the book.,Took the book.,Opened the laptop.,Threw the book.,Took the book. 2305,HOZ76_23_28,What did the person do while they were leaning on the table and sitting on the chair?,0,Interaction_T4_3382,Interaction_T4,Opened the book.,Threw the book.,Put down the cup/glass/bottle.,Took the book.,Opened the book. 2306,HOZ76_23_28,What did the person do while they were leaning on the table and touching the chair?,2,Interaction_T4_3383,Interaction_T4,Threw the book.,Took the book.,Opened the book.,Closed the book.,Opened the book. 2307,HOZ76_23_28,What did the person do while they were sitting on the chair and touching the table?,3,Interaction_T4_3384,Interaction_T4,Closed the book.,Threw the book.,Took the cup/glass/bottle.,Opened the book.,Opened the book. 2308,YCGJS_8_14.4,What did the person do while they were touching the food and sitting on the chair?,0,Interaction_T4_3426,Interaction_T4,Sat at the table.,Took the cup/glass/bottle.,Tidied up the table.,Put down the box.,Sat at the table. 2309,YCGJS_8_14.4,What did the person do while they were touching the food and leaning on the chair?,3,Interaction_T4_3427,Interaction_T4,Opened the closet/cabinet.,Took the cup/glass/bottle.,Tidied up the table.,Sat at the table.,Sat at the table. 2310,1C6P3_0.7_8.6,What did the person do while they were sitting on the chair and touching the table?,1,Interaction_T4_3490,Interaction_T4,Put down the sandwich.,Ate the sandwich.,Took the phone/camera.,Took the sandwich.,Ate the sandwich. 2311,M506V_9.4_17.8,What did the person do while they were standing on the floor and touching the laptop?,3,Interaction_T4_3499,Interaction_T4,Tidied up the towel.,Took the dish.,Took the towel.,Threw the towel.,Threw the towel. 2312,M506V_9.4_17.8,What did the person do while they were standing on the floor and touching the table?,2,Interaction_T4_3500,Interaction_T4,Tidied up the towel.,Took the phone/camera.,Threw the towel.,Put down the towel.,Threw the towel. 2313,9A58F_2.9_8.1,What did the person do while they were standing on the floor and touching the laptop?,2,Interaction_T4_3530,Interaction_T4,Put down the shoe.,Took the dish.,Threw the shoe.,Took the shoe.,Threw the shoe. 2314,CII5H_16.4_24.3,What did the person do while they were leaning on the shelf and touching the door?,2,Interaction_T4_3577,Interaction_T4,Opened the closet/cabinet.,Tidied up the closet/cabinet.,Closed the closet/cabinet.,Put down the shoe.,Closed the closet/cabinet. 2315,OB1XO_16.9_22.2,What did the person do while they were touching the shoe and sitting on the bed?,3,Interaction_T4_3596,Interaction_T4,Took the clothes.,Put down the clothes.,Washed the clothes.,Threw the clothes.,Threw the clothes. 2316,UVPSZ_3.7_12.3,What did the person do while they were touching the doorway and standing on the floor?,3,Interaction_T4_3675,Interaction_T4,Put down the shoe.,Put down the sandwich.,Opened the door.,Closed the door.,Closed the door. 2317,6VF2L_23.1_30.9,What did the person do while they were standing on the floor and touching the clothes?,2,Interaction_T4_3688,Interaction_T4,Opened the closet/cabinet.,Put down the blanket.,Took the blanket.,Threw the blanket.,Took the blanket. 2318,CSLEP_0_6.1,What did the person do while they were lying on the floor and covered by the blanket?,1,Interaction_T4_3728,Interaction_T4,Sat on the bed.,Lied on the bed.,Took the blanket.,Took the shoe.,Lied on the bed. 2319,HCM5Y_12.6_18.4,What did the person do while they were carrying the pillow and touching the doorway?,3,Interaction_T4_3744,Interaction_T4,Threw the shoe.,Closed the door.,Put down the broom.,Opened the door.,Opened the door. 2320,RKGG5_6_10.7,What did the person do while they were sitting on the sofa/couch and leaning on the pillow?,3,Interaction_T4_3745,Interaction_T4,Put down the blanket.,Took the book.,Took the broom.,Threw the broom.,Threw the broom. 2321,RKGG5_6_10.7,What did the person do while they were sitting on the sofa/couch and touching the pillow?,1,Interaction_T4_3746,Interaction_T4,Put down the picture.,Threw the broom.,Tidied up the blanket.,Took the broom.,Threw the broom. 2322,RKGG5_6_10.7,What did the person do while they were sitting on the sofa/couch and carrying the pillow?,2,Interaction_T4_3747,Interaction_T4,Took the laptop.,Put down the broom.,Threw the broom.,Took the phone/camera.,Threw the broom. 2323,RKGG5_6_10.7,What did the person do while they were sitting on the floor and leaning on the pillow?,3,Interaction_T4_3748,Interaction_T4,Sat on the floor.,Put down the broom.,Took the towel.,Threw the broom.,Threw the broom. 2324,RKGG5_6_10.7,What did the person do while they were sitting on the floor and touching the pillow?,1,Interaction_T4_3749,Interaction_T4,Put down the cup/glass/bottle.,Threw the broom.,Took the food.,Took the broom.,Threw the broom. 2325,RKGG5_6_10.7,What did the person do while they were sitting on the floor and carrying the pillow?,0,Interaction_T4_3750,Interaction_T4,Threw the broom.,Closed the book.,Put down the broom.,Lied on the floor.,Threw the broom. 2326,59KH0_7.7_15.3,What did the person do while they were touching the laptop and sitting on the chair?,1,Interaction_T4_3792,Interaction_T4,Washed the clothes.,Took the clothes.,Threw the clothes.,Sat on the table.,Took the clothes. 2327,59KH0_7.7_15.3,What did the person do while they were sitting on the chair and touching the table?,0,Interaction_T4_3793,Interaction_T4,Took the clothes.,Tidied up the clothes.,Put down the food.,Threw the clothes.,Took the clothes. 2328,M5UQR_12.4_19.7,What did the person do while they were sitting on the chair and standing on the floor?,0,Interaction_T4_3825,Interaction_T4,Put down the phone/camera.,Took the phone/camera.,Put down the shoe.,Put down the pillow.,Put down the phone/camera. 2329,M5UQR_12.4_19.7,What did the person do while they were leaning on the chair and standing on the floor?,2,Interaction_T4_3826,Interaction_T4,Took the phone/camera.,Tidied up the table.,Put down the phone/camera.,Opened the box.,Put down the phone/camera. 2330,I562C_14.5_19.9,What did the person do while they were sitting on the chair and touching the food?,0,Interaction_T4_3827,Interaction_T4,Took the dish.,Took the picture.,Washed the dish.,Put down the sandwich.,Took the dish. 2331,I562C_14.5_19.9,What did the person do while they were touching the food and leaning on the chair?,1,Interaction_T4_3828,Interaction_T4,Put down the dish.,Took the dish.,Took the phone/camera.,Washed the dish.,Took the dish. 2332,RBC8N_16.4_25.2,What did the person do while they were sitting on the floor and touching the laptop?,3,Interaction_T4_3879,Interaction_T4,Put down the pillow.,Took the cup/glass/bottle.,Threw the pillow.,Took the pillow.,Took the pillow. 2333,RBC8N_16.4_25.2,What did the person do while they were touching the food and sitting on the floor?,2,Interaction_T4_3880,Interaction_T4,Threw the pillow.,Took the broom.,Took the pillow.,Put down the pillow.,Took the pillow. 2334,IU5TH_11_18.6,What did the person do while they were touching the laptop and sitting on the chair?,3,Interaction_T4_3906,Interaction_T4,Threw the towel.,Put down the bag.,Opened the bag.,Took the bag.,Took the bag. 2335,IU5TH_11_18.6,What did the person do while they were touching the laptop and leaning on the chair?,3,Interaction_T4_3907,Interaction_T4,Threw the towel.,Put down the bag.,Opened the bag.,Took the bag.,Took the bag. 2336,Q071E_2.4_10.7,What did the person do while they were covered by the blanket and wiping the table?,1,Interaction_T4_3912,Interaction_T4,Took the bag.,Opened the bag.,Threw the bag.,Put down the cup/glass/bottle.,Opened the bag. 2337,DQ46N_4.4_9.6,What did the person do while they were sitting on the chair and touching the cup/glass/bottle?,2,Interaction_T4_3931,Interaction_T4,Closed the closet/cabinet.,Took the food.,Opened the closet/cabinet.,Tidied up the closet/cabinet.,Opened the closet/cabinet. 2338,MQGVS_20.7_27.1,What did the person do while they were standing on the floor and touching the towel?,3,Interaction_T4_4048,Interaction_T4,Took the blanket.,Opened the closet/cabinet.,Threw the blanket.,Put down the blanket.,Put down the blanket. 2339,5GPOJ_8.5_13.5,What did the person do while they were sitting on the sofa/couch and touching the paper/notebook?,3,Interaction_T4_4088,Interaction_T4,Opened the book.,Took the book.,Put down the book.,Closed the book.,Closed the book. 2340,5GPOJ_8.5_13.5,What did the person do while they were writing on the paper/notebook and sitting on the sofa/couch?,2,Interaction_T4_4089,Interaction_T4,Opened the book.,Took the book.,Closed the book.,Put down the book.,Closed the book. 2341,MY5CQ_11.5_17.4,What did the person do while they were touching the table and sitting on the chair?,3,Interaction_T4_4094,Interaction_T4,Took the laptop.,Put down the dish.,Put down the laptop.,Closed the laptop.,Closed the laptop. 2342,MY5CQ_11.5_17.4,What did the person do while they were sitting on the chair and touching the book?,3,Interaction_T4_4095,Interaction_T4,Opened the laptop.,Took the laptop.,Put down the cup/glass/bottle.,Closed the laptop.,Closed the laptop. 2343,KNGUT_0_5,What did the person do while they were sitting on the bed and touching the cup/glass/bottle?,2,Interaction_T4_4096,Interaction_T4,Took the bag.,Put down the laptop.,Opened the bag.,Threw the bag.,Opened the bag. 2344,JXNEN_10.4_17.7,What did the person do while they were touching the table and sitting on the chair?,2,Interaction_T4_4122,Interaction_T4,Took the food.,Took the sandwich.,Ate the sandwich.,Put down the sandwich.,Ate the sandwich. 2345,0OSJY_8.6_14.7,What did the person do while they were sitting on the bed and touching the doorknob?,2,Interaction_T4_4128,Interaction_T4,Threw the broom.,Took the broom.,Put down the broom.,Lied on the sofa/couch.,Put down the broom. 2346,S1J2Q_0_9.7,What did the person do while they were standing on the doorway and touching the blanket?,2,Interaction_T4_4146,Interaction_T4,Put down the clothes.,Threw the clothes.,Tidied up the clothes.,Opened the door.,Tidied up the clothes. 2347,KZODG_15.3_22.9,What did the person do while they were sitting on the sofa/couch and touching the phone/camera?,0,Interaction_T4_4149,Interaction_T4,Closed the laptop.,Put down the book.,Opened the laptop.,Took the laptop.,Closed the laptop. 2348,3DO95_13.6_23,What did the person do while they were sitting on the sofa/couch and touching the book?,3,Interaction_T4_4150,Interaction_T4,Took the pillow.,Threw the pillow.,Put down the dish.,Put down the pillow.,Put down the pillow. 2349,3DO95_13.6_23,What did the person do while they were sitting on the sofa/couch and touching the paper/notebook?,1,Interaction_T4_4151,Interaction_T4,Threw the pillow.,Put down the pillow.,Opened the book.,Took the pillow.,Put down the pillow. 2350,EM0B6_16.1_23.2,What did the person do while they were touching the cup/glass/bottle and sitting on the sofa/couch?,2,Interaction_T4_4175,Interaction_T4,Ate the sandwich.,Took the dish.,Took the sandwich.,Put down the sandwich.,Took the sandwich. 2351,EM0B6_16.1_23.2,What did the person do while they were drinking from the cup/glass/bottle and sitting on the sofa/couch?,3,Interaction_T4_4176,Interaction_T4,Put down the sandwich.,Ate the sandwich.,Took the dish.,Took the sandwich.,Took the sandwich. 2352,56XKK_4.3_14.3,What did the person do while they were touching the door and wiping the table?,3,Interaction_T4_4179,Interaction_T4,Threw the bag.,Opened the bag.,Took the bag.,Put down the bag.,Put down the bag. 2353,56XKK_4.3_14.3,What did the person do while they were touching the groceries and wiping the table?,1,Interaction_T4_4180,Interaction_T4,Took the bag.,Put down the bag.,Threw the bag.,Opened the bag.,Put down the bag. 2354,56XKK_4.3_14.3,What did the person do while they were wiping the table and touching the food?,2,Interaction_T4_4181,Interaction_T4,Threw the bag.,Put down the sandwich.,Put down the bag.,Took the bag.,Put down the bag. 2355,84893_8.7_15.6,What did the person do while they were touching the blanket and standing on the floor?,0,Interaction_T4_4244,Interaction_T4,Threw the clothes.,Put down the clothes.,Opened the door.,Tidied up the clothes.,Threw the clothes. 2356,84893_8.7_15.6,What did the person do while they were carrying the blanket and standing on the floor?,2,Interaction_T4_4245,Interaction_T4,Put down the clothes.,Took the towel.,Threw the clothes.,Took the clothes.,Threw the clothes. 2357,84893_15.2_20.5,What did the person do while they were standing on the floor and touching the doorway?,3,Interaction_T4_4246,Interaction_T4,Put down the clothes.,Took the shoe.,Took the broom.,Threw the shoe.,Threw the shoe. 2358,TCN06_12.3_18.8,What did the person do while they were having bag on the back and standing on the floor?,1,Interaction_T4_4252,Interaction_T4,Put down the blanket.,Tidied up the blanket.,Threw the blanket.,Took the food.,Tidied up the blanket. 2359,TCN06_12.3_18.8,What did the person do while they were standing on the floor and touching the bag?,0,Interaction_T4_4253,Interaction_T4,Tidied up the blanket.,Took the blanket.,Threw the book.,Put down the blanket.,Tidied up the blanket. 2360,TCN06_12.3_18.8,What did the person do while they were standing on the floor and carrying the bag?,1,Interaction_T4_4254,Interaction_T4,Put down the blanket.,Tidied up the blanket.,Took the blanket.,Threw the food.,Tidied up the blanket. 2361,TAGEG_13.2_17.8,What did the person do while they were standing on the floor and touching the shelf?,3,Interaction_T4_4255,Interaction_T4,Closed the closet/cabinet.,Threw the clothes.,Tidied up the closet/cabinet.,Opened the closet/cabinet.,Opened the closet/cabinet. 2362,Z6HEA_2.6_11.4,What did the person do while they were sitting on the chair and standing on the floor?,1,Interaction_T4_4304,Interaction_T4,Took the clothes.,Washed the clothes.,Tidied up the table.,Put down the clothes.,Washed the clothes. 2363,Z6HEA_2.6_11.4,What did the person do while they were leaning on the chair and standing on the floor?,0,Interaction_T4_4305,Interaction_T4,Washed the clothes.,Tidied up the clothes.,Took the clothes.,Threw the book.,Washed the clothes. 2364,9AFSH_2.4_7.2,What did the person do while they were sitting on the sofa/couch and leaning on the chair?,2,Interaction_T4_4360,Interaction_T4,Threw the clothes.,Took the box.,Put down the pillow.,Threw the pillow.,Put down the pillow. 2365,9AFSH_2.4_7.2,What did the person do while they were sitting on the sofa/couch and touching the chair?,3,Interaction_T4_4361,Interaction_T4,Took the blanket.,Threw the pillow.,Took the pillow.,Put down the pillow.,Put down the pillow. 2366,9AFSH_2.4_7.2,What did the person do while they were leaning on the sofa/couch and touching the chair?,0,Interaction_T4_4362,Interaction_T4,Put down the pillow.,Took the pillow.,Threw the pillow.,Put down the paper/notebook.,Put down the pillow. 2367,9AFSH_3.5_10.7,What did the person do while they were sitting on the sofa/couch and touching the chair?,1,Interaction_T4_4363,Interaction_T4,Tidied up the blanket.,Threw the pillow.,Took the pillow.,Put down the blanket.,Threw the pillow. 2368,9AFSH_3.5_10.7,What did the person do while they were leaning on the sofa/couch and sitting on the chair?,1,Interaction_T4_4364,Interaction_T4,Took the box.,Threw the pillow.,Put down the pillow.,Took the blanket.,Threw the pillow. 2369,9AFSH_3.5_10.7,What did the person do while they were leaning on the sofa/couch and touching the chair?,2,Interaction_T4_4365,Interaction_T4,Took the pillow.,Put down the pillow.,Threw the pillow.,Closed the laptop.,Threw the pillow. 2370,6ALEL_10.6_16.6,What did the person do while they were touching the clothes and standing on the floor?,3,Interaction_T4_4440,Interaction_T4,Opened the door.,Tidied up the towel.,Took the towel.,Threw the towel.,Threw the towel. 2371,6ALEL_10.6_16.6,What did the person do while they were touching the clothes and leaning on the doorway?,2,Interaction_T4_4441,Interaction_T4,Put down the towel.,Tidied up the towel.,Threw the towel.,Took the towel.,Threw the towel. 2372,6ALEL_10.6_16.6,What did the person do while they were standing on the floor and leaning on the doorway?,3,Interaction_T4_4442,Interaction_T4,Took the towel.,Opened the door.,Tidied up the towel.,Threw the towel.,Threw the towel. 2373,6ALEL_11.6_16.9,What did the person do while they were touching the clothes and leaning on the doorway?,1,Interaction_T4_4443,Interaction_T4,Tidied up the towel.,Put down the towel.,Took the towel.,Threw the towel.,Put down the towel. 2374,6ALEL_11.6_16.9,What did the person do while they were standing on the floor and leaning on the doorway?,0,Interaction_T4_4444,Interaction_T4,Put down the towel.,Put down the box.,Tidied up the towel.,Threw the towel.,Put down the towel. 2375,8VSV6_9.2_17,What did the person do while they were standing on the floor and sitting on the chair?,3,Interaction_T4_4470,Interaction_T4,Took the food.,Tidied up the table.,Put down the book.,Sat at the table.,Sat at the table. 2376,XYGU1_11.8_20.5,What did the person do while they were touching the table and drinking from the cup/glass/bottle?,2,Interaction_T4_4473,Interaction_T4,Threw the book.,Put down the dish.,Opened the book.,Took the book.,Opened the book. 2377,V9W9C_31.8_37,What did the person do while they were sitting on the chair and drinking from the cup/glass/bottle?,3,Interaction_T4_4519,Interaction_T4,Tidied up the clothes.,Sat on the table.,Took the dish.,Tidied up the table.,Tidied up the table. 2378,UDGP2_15.3_20.7,What did the person do while they were standing on the floor and touching the cup/glass/bottle?,3,Interaction_T4_4527,Interaction_T4,Put down the shoe.,Threw the food.,Took the food.,Put down the food.,Put down the food. 2379,OK2AF_13.5_21.2,What did the person do while they were touching the doorway and sitting on the sofa/couch?,2,Interaction_T4_4557,Interaction_T4,Opened the door.,Put down the blanket.,Closed the door.,Took the cup/glass/bottle.,Closed the door. 2380,OK2AF_13.5_21.2,What did the person do while they were touching the doorway and leaning on the sofa/couch?,1,Interaction_T4_4558,Interaction_T4,Opened the door.,Closed the door.,Tidied up the table.,Put down the blanket.,Closed the door. 2381,WE2PF_3.3_12.2,What did the person do while they were sitting on the sofa/couch and leaning on the chair?,3,Interaction_T4_4567,Interaction_T4,Put down the bag.,Took the clothes.,Took the bag.,Opened the bag.,Opened the bag. 2382,UEP20_12.6_21.6,What did the person do while they were touching the book and lying on the bed?,3,Interaction_T4_4569,Interaction_T4,Took the paper/notebook.,Lied on the sofa/couch.,Opened the book.,Put down the paper/notebook.,Put down the paper/notebook. 2383,5X5DT_14.2_19.5,What did the person do while they were touching the laptop and sitting on the chair?,2,Interaction_T4_4572,Interaction_T4,Opened the bag.,Threw the bag.,Took the bag.,Took the pillow.,Took the bag. 2384,5X5DT_14.2_19.5,What did the person do while they were touching the laptop and leaning on the chair?,1,Interaction_T4_4573,Interaction_T4,Put down the bag.,Took the bag.,Took the sandwich.,Threw the bag.,Took the bag. 2385,EC695_13.3_18.6,What did the person do while they were lying on the sofa/couch and covered by the blanket?,3,Interaction_T4_4599,Interaction_T4,Took the food.,Closed the laptop.,Put down the laptop.,Took the laptop.,Took the laptop. 2386,PZD7Z_9.5_17.6,What did the person do while they were standing on the floor and touching the vacuum?,2,Interaction_T4_4607,Interaction_T4,Washed the cup/glass/bottle.,Closed the door.,Put down the broom.,Threw the broom.,Put down the broom. 2387,6TNP4_0_9.8,What did the person do while they were sitting on the floor and touching the shoe?,2,Interaction_T4_4610,Interaction_T4,Closed the refrigerator.,Ate the sandwich.,Opened the refrigerator.,Put down the broom.,Opened the refrigerator. 2388,1G90H_4.7_11.1,What did the person do while they were lying on the floor and touching the box?,0,Interaction_T4_4650,Interaction_T4,Took the cup/glass/bottle.,Tidied up the table.,Washed the cup/glass/bottle.,Put down the cup/glass/bottle.,Took the cup/glass/bottle. 2389,02CYP_3.4_10.6,What did the person do while they were sitting on the sofa/couch and touching the dish?,2,Interaction_T4_4705,Interaction_T4,Washed the cup/glass/bottle.,Took the cup/glass/bottle.,Put down the cup/glass/bottle.,Threw the blanket.,Put down the cup/glass/bottle. 2390,194WK_6.6_12.5,What did the person do while they were touching the mirror and sitting on the chair?,1,Interaction_T4_4709,Interaction_T4,Closed the book.,Put down the book.,Opened the book.,Threw the book.,Put down the book. 2391,194WK_6.6_12.5,What did the person do while they were touching the table and sitting on the chair?,1,Interaction_T4_4710,Interaction_T4,Took the phone/camera.,Put down the book.,Closed the book.,Took the book.,Put down the book. 2392,NOFSE_10.4_16.5,What did the person do while they were touching the dish and carrying the pillow?,3,Interaction_T4_4728,Interaction_T4,Opened the door.,Sat on the table.,Closed the refrigerator.,Closed the door.,Closed the door. 2393,21MI8_3.9_10.1,What did the person do while they were drinking from the cup/glass/bottle and touching the table?,2,Interaction_T4_4733,Interaction_T4,Took the laptop.,Put down the dish.,Opened the laptop.,Put down the laptop.,Opened the laptop. 2394,OZSB3_18.6_27.8,What did the person do while they were sitting on the chair and touching the bag?,2,Interaction_T4_4736,Interaction_T4,Opened the book.,Threw the pillow.,Took the pillow.,Put down the pillow.,Took the pillow. 2395,OZSB3_18.6_27.8,What did the person do while they were sitting on the chair and touching the table?,3,Interaction_T4_4737,Interaction_T4,Took the phone/camera.,Threw the pillow.,Put down the pillow.,Took the pillow.,Took the pillow. 2396,OZSB3_18.6_27.8,What did the person do while they were leaning on the chair and touching the bag?,1,Interaction_T4_4738,Interaction_T4,Threw the pillow.,Took the pillow.,Took the food.,Put down the pillow.,Took the pillow. 2397,OZSB3_18.6_27.8,What did the person do while they were leaning on the chair and touching the table?,1,Interaction_T4_4739,Interaction_T4,Threw the pillow.,Took the pillow.,Took the paper/notebook.,Put down the pillow.,Took the pillow. 2398,OZSB3_18.6_27.8,What did the person do while they were touching the bag and lying on the chair?,0,Interaction_T4_4740,Interaction_T4,Took the pillow.,Threw the pillow.,Tidied up the clothes.,Put down the laptop.,Took the pillow. 2399,6H78U_15.6_24.6,Which object did the person put down after they tidied up the clothes?,0,Sequence_T1_5,Sequence_T1,The blanket.,The picture.,The towel.,The phone/camera.,The blanket. 2400,6H78U_16.6_25.6,Which object did the person take after they put down the blanket?,0,Sequence_T1_6,Sequence_T1,The towel.,The sandwich.,The clothes.,The dish.,The towel. 2401,RNLTR_7.3_16.4,Which object did the person put down after they threw the clothes?,0,Sequence_T1_19,Sequence_T1,The shoe.,The sandwich.,The bag.,The towel.,The shoe. 2402,VNQTH_1.4_9.2,Which object did the person tidy up after they put down the clothes?,3,Sequence_T1_25,Sequence_T1,The table.,The clothes.,The blanket.,The closet/cabinet.,The closet/cabinet. 2403,Y79PC_0.3_22.6,Which object did the person throw after they watched outside the window?,0,Sequence_T1_28,Sequence_T1,The clothes.,The towel.,The food.,The bag.,The clothes. 2404,4GLAP_0_21.4,Which object did the person put down after they held the shoe?,2,Sequence_T1_52,Sequence_T1,The dish.,The towel.,The paper/notebook.,The phone/camera.,The paper/notebook. 2405,4GLAP_15.7_20.7,Which object did the person throw after they put down the paper/notebook?,0,Sequence_T1_53,Sequence_T1,The shoe.,The book.,The food.,The box.,The shoe. 2406,XO8NL_3.6_11.6,Which object did the person put down after they threw the pillow?,2,Sequence_T1_56,Sequence_T1,The clothes.,The broom.,The towel.,The paper/notebook.,The towel. 2407,OY3LS_18.5_37.6,Which object did the person put down after they held the clothes?,1,Sequence_T1_61,Sequence_T1,The box.,The phone/camera.,The blanket.,The broom.,The phone/camera. 2408,OY3LS_34.7_41.4,Which object did the person sit on after they took the blanket?,2,Sequence_T1_62,Sequence_T1,The floor.,The table.,The sofa/couch.,The shoe.,The sofa/couch. 2409,OY3LS_18.5_37.6,Which object did the person put down after they threw the clothes?,3,Sequence_T1_63,Sequence_T1,The bag.,The dish.,The picture.,The phone/camera.,The phone/camera. 2410,RG0KS_16.7_27,Which object did the person put down after they held the shoe?,2,Sequence_T1_83,Sequence_T1,The dish.,The cup/glass/bottle.,The box.,The phone/camera.,The box. 2411,NUKJ0_10.4_17.6,Which object did the person take after they opened the book?,1,Sequence_T1_121,Sequence_T1,The shoe.,The paper/notebook.,The box.,The phone/camera.,The paper/notebook. 2412,XOOTA_0_9,Which object did the person sit on after they held the blanket?,0,Sequence_T1_132,Sequence_T1,The floor.,The bed.,The sofa/couch.,The table.,The floor. 2413,KA09C_9.8_18.5,Which object did the person put down after they tidied up the clothes?,2,Sequence_T1_171,Sequence_T1,The broom.,The blanket.,The shoe.,The sandwich.,The shoe. 2414,H0L5S_0_27.5,Which object did the person take after they sat on the floor?,3,Sequence_T1_175,Sequence_T1,The box.,The cup/glass/bottle.,The phone/camera.,The towel.,The towel. 2415,7MRKY_24.8_36.1,Which object did the person close after they put down the broom?,2,Sequence_T1_183,Sequence_T1,The sandwich.,The box.,The laptop.,The book.,The laptop. 2416,7HSZJ_17_22,Which object did the person put down after they watched outside the window?,2,Sequence_T1_197,Sequence_T1,The shoe.,The cup/glass/bottle.,The towel.,The box.,The towel. 2417,E002I_4.1_14.1,Which object did the person lie on after they put down the pillow?,3,Sequence_T1_221,Sequence_T1,The sofa/couch.,The floor.,The food.,The bed.,The bed. 2418,WX8N8_6.2_10.8,Which object did the person throw after they took the towel?,2,Sequence_T1_228,Sequence_T1,The blanket.,The bag.,The clothes.,The broom.,The clothes. 2419,6CAZU_5.5_16.1,Which object did the person take after they watched outside the window?,3,Sequence_T1_249,Sequence_T1,The book.,The food.,The dish.,The sandwich.,The sandwich. 2420,6CAZU_9.8_16.1,Which object did the person take after they held the food?,1,Sequence_T1_250,Sequence_T1,The pillow.,The sandwich.,The phone/camera.,The book.,The sandwich. 2421,QLAS7_10.5_18.5,Which object did the person tidy up after they opened the door?,0,Sequence_T1_251,Sequence_T1,The closet/cabinet.,The window.,The clothes.,The towel.,The closet/cabinet. 2422,QLAS7_8.5_15.6,Which object did the person open after they put down the picture?,1,Sequence_T1_252,Sequence_T1,The refrigerator.,The closet/cabinet.,The bag.,The book.,The closet/cabinet. 2423,VIN5T_0_6,Which object did the person put down after they sat on the floor?,1,Sequence_T1_280,Sequence_T1,The food.,The pillow.,The dish.,The towel.,The pillow. 2424,MXATD_0.6_10.8,Which object did the person open after they washed the dish?,1,Sequence_T1_288,Sequence_T1,The laptop.,The closet/cabinet.,The door.,The table.,The closet/cabinet. 2425,YB67Z_11.9_22.3,Which object did the person put down after they tidied up the table?,3,Sequence_T1_292,Sequence_T1,The broom.,The paper/notebook.,The laptop.,The box.,The box. 2426,YB67Z_5.4_19.1,Which object did the person tidy up after they opened the box?,1,Sequence_T1_293,Sequence_T1,The broom.,The table.,The closet/cabinet.,The book.,The table. 2427,YB67Z_0_19.1,Which object did the person tidy up after they held the box?,0,Sequence_T1_294,Sequence_T1,The table.,The towel.,The closet/cabinet.,The book.,The table. 2428,1O1JS_1.5_30.9,Which object did the person put down after they washed the dish?,0,Sequence_T1_299,Sequence_T1,The towel.,The broom.,The sandwich.,The clothes.,The towel. 2429,1O1JS_0_30.9,Which object did the person put down after they watched outside the window?,0,Sequence_T1_300,Sequence_T1,The towel.,The cup/glass/bottle.,The bag.,The food.,The towel. 2430,A2X7Q_10.7_18.7,Which object did the person put down after they took the food?,2,Sequence_T1_336,Sequence_T1,The dish.,The clothes.,The sandwich.,The picture.,The sandwich. 2431,A2X7Q_3.8_10.7,Which object did the person take after they opened the door?,3,Sequence_T1_337,Sequence_T1,The broom.,The box.,The paper/notebook.,The bag.,The bag. 2432,3XL0K_0_4.5,Which object did the person close after they held the phone/camera?,3,Sequence_T1_346,Sequence_T1,The laptop.,The book.,The window.,The door.,The door. 2433,3N1I2_2.9_13.2,Which object did the person open after they held the sandwich?,0,Sequence_T1_358,Sequence_T1,The refrigerator.,The door.,The laptop.,The box.,The refrigerator. 2434,3N1I2_0_13.2,Which object did the person open after they held the food?,3,Sequence_T1_359,Sequence_T1,The closet/cabinet.,The window.,The door.,The refrigerator.,The refrigerator. 2435,DSZYT_0_7.1,Which object did the person put down after they held the dish?,1,Sequence_T1_366,Sequence_T1,The phone/camera.,The cup/glass/bottle.,The bag.,The box.,The cup/glass/bottle. 2436,ATV2F_7.8_19.4,Which object did the person put down after they threw the clothes?,2,Sequence_T1_367,Sequence_T1,The phone/camera.,The pillow.,The laptop.,The towel.,The laptop. 2437,ATV2F_0_13.9,Which object did the person put down after they took the clothes?,1,Sequence_T1_368,Sequence_T1,The box.,The blanket.,The paper/notebook.,The bag.,The blanket. 2438,ATV2F_9.8_19.4,Which object did the person put down after they sat on the bed?,0,Sequence_T1_369,Sequence_T1,The laptop.,The sandwich.,The food.,The blanket.,The laptop. 2439,ATV2F_7.3_14.5,Which object did the person throw after they put down the blanket?,3,Sequence_T1_370,Sequence_T1,The pillow.,The towel.,The box.,The clothes.,The clothes. 2440,IWTWJ_0_4.9,Which object did the person take after they held the blanket?,3,Sequence_T1_379,Sequence_T1,The shoe.,The laptop.,The dish.,The clothes.,The clothes. 2441,IWTWJ_4.4_20.8,Which object did the person sit on after they threw the clothes?,1,Sequence_T1_380,Sequence_T1,The table.,The sofa/couch.,The bed.,The food.,The sofa/couch. 2442,NJANX_3_22,Which object did the person wash after they put down the box?,1,Sequence_T1_410,Sequence_T1,The clothes.,The table.,The dish.,The phone/camera.,The table. 2443,NJANX_17.7_22,Which object did the person close after they washed the table?,3,Sequence_T1_411,Sequence_T1,The mirror.,The laptop.,The refrigerator.,The box.,The box. 2444,NJANX_0_9.6,Which object did the person take after they tidied up the table?,2,Sequence_T1_412,Sequence_T1,The cup/glass/bottle.,The sandwich.,The box.,The food.,The box. 2445,TRHT1_1.9_6.4,Which object did the person put down after they threw the clothes?,1,Sequence_T1_415,Sequence_T1,The book.,The pillow.,The bag.,The food.,The pillow. 2446,TRHT1_0_6.3,Which object did the person throw after they sat on the sofa/couch?,3,Sequence_T1_416,Sequence_T1,The towel.,The pillow.,The shoe.,The clothes.,The clothes. 2447,5NG6Q_13.8_25.6,Which object did the person tidy up after they put down the dish?,3,Sequence_T1_428,Sequence_T1,The towel.,The blanket.,The clothes.,The table.,The table. 2448,5NG6Q_17.6_25.4,Which object did the person wash after they tidied up the table?,1,Sequence_T1_429,Sequence_T1,The clothes.,The dish.,The mirror.,The table.,The dish. 2449,C1DK7_4.2_21.6,Which object did the person put down after they closed the laptop?,2,Sequence_T1_442,Sequence_T1,The bag.,The pillow.,The phone/camera.,The window.,The phone/camera. 2450,C1DK7_0_10.2,Which object did the person close after they held the phone/camera?,2,Sequence_T1_443,Sequence_T1,The closet/cabinet.,The door.,The laptop.,The book.,The laptop. 2451,C1DK7_0_10.2,Which object did the person close after they sat at the table?,2,Sequence_T1_444,Sequence_T1,The book.,The closet/cabinet.,The laptop.,The door.,The laptop. 2452,V0ZD9_0_28.5,Which object did the person take after they held the dish?,3,Sequence_T1_470,Sequence_T1,The book.,The cup/glass/bottle.,The food.,The clothes.,The clothes. 2453,YJ1KW_9.5_15.8,Which object did the person put down after they sat at the table?,1,Sequence_T1_490,Sequence_T1,The cup/glass/bottle.,The food.,The book.,The blanket.,The food. 2454,PH5VU_30.5_36,Which object did the person take after they opened the book?,1,Sequence_T1_493,Sequence_T1,The sandwich.,The paper/notebook.,The food.,The cup/glass/bottle.,The paper/notebook. 2455,VJG6E_3_18,Which object did the person open after they put down the blanket?,0,Sequence_T1_500,Sequence_T1,The laptop.,The box.,The window.,The door.,The laptop. 2456,VJG6E_2.6_9.4,Which object did the person throw after they put down the towel?,2,Sequence_T1_501,Sequence_T1,The pillow.,The clothes.,The blanket.,The towel.,The blanket. 2457,VJG6E_3_18,Which object did the person open after they tidied up the blanket?,2,Sequence_T1_502,Sequence_T1,The window.,The closet/cabinet.,The laptop.,The bag.,The laptop. 2458,VJG6E_7.6_18,Which object did the person open after they sat at the table?,0,Sequence_T1_503,Sequence_T1,The laptop.,The closet/cabinet.,The book.,The refrigerator.,The laptop. 2459,5C4EK_2.2_11.4,Which object did the person take after they closed the book?,3,Sequence_T1_510,Sequence_T1,The laptop.,The clothes.,The phone/camera.,The paper/notebook.,The paper/notebook. 2460,NW0KT_4.9_13.9,Which object did the person take after they opened the book?,0,Sequence_T1_521,Sequence_T1,The paper/notebook.,The food.,The towel.,The cup/glass/bottle.,The paper/notebook. 2461,NW0KT_42.3_50,Which object did the person wash after they took the towel?,3,Sequence_T1_522,Sequence_T1,The table.,The dish.,The window.,The mirror.,The mirror. 2462,NYHD7_0_26.9,Which object did the person take after they sat at the table?,2,Sequence_T1_534,Sequence_T1,The cup/glass/bottle.,The pillow.,The phone/camera.,The food.,The phone/camera. 2463,HSWPR_0_8.3,Which object did the person put down after they sat on the sofa/couch?,2,Sequence_T1_544,Sequence_T1,The phone/camera.,The blanket.,The cup/glass/bottle.,The pillow.,The cup/glass/bottle. 2464,T7ST5_3.6_11.6,Which object did the person throw after they put down the food?,1,Sequence_T1_586,Sequence_T1,The bag.,The towel.,The pillow.,The blanket.,The towel. 2465,8SDK5_0_23,Which object did the person sit on after they held the box?,1,Sequence_T1_598,Sequence_T1,The floor.,The sofa/couch.,The blanket.,The table.,The sofa/couch. 2466,SS3IL_1.7_9.3,Which object did the person put down after they held the food?,3,Sequence_T1_610,Sequence_T1,The blanket.,The sandwich.,The book.,The dish.,The dish. 2467,U9KYC_11.4_29.4,Which object did the person take after they held the broom?,3,Sequence_T1_635,Sequence_T1,The book.,The paper/notebook.,The pillow.,The shoe.,The shoe. 2468,9MNZ5_0_13.8,Which object did the person take after they sat at the table?,3,Sequence_T1_636,Sequence_T1,The phone/camera.,The shoe.,The bag.,The box.,The box. 2469,9MNZ5_16.1_27.2,Which object did the person close after they put down the food?,3,Sequence_T1_639,Sequence_T1,The laptop.,The closet/cabinet.,The refrigerator.,The box.,The box. 2470,DR7K0_13.9_22.7,Which object did the person take after they put down the broom?,1,Sequence_T1_656,Sequence_T1,The box.,The clothes.,The sandwich.,The towel.,The clothes. 2471,U5T4M_8_14.1,Which object did the person close after they held the sandwich?,0,Sequence_T1_705,Sequence_T1,The refrigerator.,The closet/cabinet.,The door.,The book.,The refrigerator. 2472,U5T4M_8.9_21,Which object did the person sit at after they closed the refrigerator?,0,Sequence_T1_706,Sequence_T1,The table.,The floor.,The sofa/couch.,The book.,The table. 2473,U5T4M_7_14.1,Which object did the person close after they took the food?,0,Sequence_T1_707,Sequence_T1,The refrigerator.,The closet/cabinet.,The book.,The window.,The refrigerator. 2474,U5T4M_7.5_14.1,Which object did the person close after they held the food?,3,Sequence_T1_708,Sequence_T1,The book.,The laptop.,The box.,The refrigerator.,The refrigerator. 2475,ZNQVC_8.9_32,Which object did the person take after they closed the door?,0,Sequence_T1_713,Sequence_T1,The shoe.,The bag.,The clothes.,The pillow.,The shoe. 2476,ZNQVC_14.4_32,Which object did the person take after they sat on the bed?,1,Sequence_T1_714,Sequence_T1,The laptop.,The shoe.,The bag.,The broom.,The shoe. 2477,6ZWSU_0_7.2,Which object did the person put down after they closed the door?,2,Sequence_T1_737,Sequence_T1,The bag.,The blanket.,The book.,The phone/camera.,The book. 2478,6ZWSU_9.6_19.8,Which object did the person put down after they sat on the floor?,2,Sequence_T1_739,Sequence_T1,The cup/glass/bottle.,The paper/notebook.,The shoe.,The food.,The shoe. 2479,YOCI8_0_8.8,Which object did the person tidy up after they held the clothes?,0,Sequence_T1_745,Sequence_T1,The table.,The blanket.,The closet/cabinet.,The towel.,The table. 2480,YOCI8_0_8.8,Which object did the person tidy up after they held the blanket?,3,Sequence_T1_746,Sequence_T1,The clothes.,The closet/cabinet.,The broom.,The table.,The table. 2481,G6ZOB_7_31.2,Which object did the person put down after they closed the door?,2,Sequence_T1_787,Sequence_T1,The phone/camera.,The laptop.,The book.,The food.,The book. 2482,03PRW_10_33.2,Which object did the person sit on after they ate the sandwich?,0,Sequence_T1_803,Sequence_T1,The sofa/couch.,The table.,The floor.,The medicine.,The sofa/couch. 2483,03PRW_0_33.2,Which object did the person sit on after they held the blanket?,2,Sequence_T1_804,Sequence_T1,The floor.,The food.,The sofa/couch.,The bed.,The sofa/couch. 2484,03PRW_0_33.2,Which object did the person sit on after they held the food?,3,Sequence_T1_805,Sequence_T1,The table.,The bed.,The floor.,The sofa/couch.,The sofa/couch. 2485,JTBXI_26.2_36.5,Which object did the person take after they tidied up the blanket?,2,Sequence_T1_863,Sequence_T1,The box.,The dish.,The pillow.,The cup/glass/bottle.,The pillow. 2486,WXBEO_15.7_23.7,Which object did the person close after they took the cup/glass/bottle?,2,Sequence_T1_897,Sequence_T1,The closet/cabinet.,The book.,The refrigerator.,The door.,The refrigerator. 2487,OQ54Y_19.6_31.1,Which object did the person sit at after they drank from the cup/glass/bottle?,1,Sequence_T1_950,Sequence_T1,The sofa/couch.,The table.,The broom.,The bed.,The table. 2488,OQ54Y_13.4_31.1,Which object did the person sit at after they opened the refrigerator?,1,Sequence_T1_951,Sequence_T1,The sofa/couch.,The table.,The bed.,The bag.,The table. 2489,136V6_13.5_19.4,Which object did the person lie on after they opened the book?,3,Sequence_T1_958,Sequence_T1,The floor.,The bed.,The box.,The sofa/couch.,The sofa/couch. 2490,136V6_13.7_19.4,Which object did the person lie on after they watched at the book?,3,Sequence_T1_961,Sequence_T1,The bag.,The bed.,The floor.,The sofa/couch.,The sofa/couch. 2491,136V6_1.1_10.5,Which object did the person throw after they closed the door?,1,Sequence_T1_962,Sequence_T1,The towel.,The shoe.,The clothes.,The broom.,The shoe. 2492,BEAAA_0_11.8,Which object did the person put down after they held the food?,2,Sequence_T1_1009,Sequence_T1,The cup/glass/bottle.,The broom.,The clothes.,The sandwich.,The clothes. 2493,BEAAA_0_11.8,Which object did the person put down after they ate the sandwich?,3,Sequence_T1_1010,Sequence_T1,The paper/notebook.,The food.,The blanket.,The clothes.,The clothes. 2494,2BO2G_18.5_35.7,Which object did the person put down after they held the box?,3,Sequence_T1_1069,Sequence_T1,The pillow.,The food.,The sandwich.,The picture.,The picture. 2495,2BO2G_0_12,Which object did the person put down after they tidied up the table?,0,Sequence_T1_1070,Sequence_T1,The box.,The cup/glass/bottle.,The bag.,The picture.,The box. 2496,0PVKV_18.5_25.1,Which object did the person take after they put down the cup/glass/bottle?,0,Sequence_T1_1101,Sequence_T1,The sandwich.,The bag.,The broom.,The phone/camera.,The sandwich. 2497,3JCEI_0_13,Which object did the person close after they sat on the bed?,3,Sequence_T1_1116,Sequence_T1,The book.,The box.,The window.,The laptop.,The laptop. 2498,3JCEI_0_13,Which object did the person close after they sat on the sofa/couch?,0,Sequence_T1_1117,Sequence_T1,The laptop.,The box.,The book.,The window.,The laptop. 2499,3JCEI_0_13,Which object did the person close after they sat at the table?,0,Sequence_T1_1118,Sequence_T1,The laptop.,The book.,The door.,The refrigerator.,The laptop. 2500,999BP_1.8_7.7,Which object did the person take after they held the food?,3,Sequence_T1_1126,Sequence_T1,The box.,The cup/glass/bottle.,The sandwich.,The bag.,The bag. 2501,76Z3W_14.1_22,Which object did the person take after they tidied up the table?,3,Sequence_T1_1128,Sequence_T1,The dish.,The picture.,The box.,The towel.,The towel. 2502,76Z3W_14.2_22,Which object did the person take after they held the clothes?,1,Sequence_T1_1129,Sequence_T1,The blanket.,The towel.,The sandwich.,The bag.,The towel. 2503,NTXXB_0_17.5,Which object did the person take after they watched outside the window?,2,Sequence_T1_1150,Sequence_T1,The clothes.,The paper/notebook.,The phone/camera.,The box.,The phone/camera. 2504,93REJ_9.4_15.4,Which object did the person put down after they washed the clothes?,2,Sequence_T1_1166,Sequence_T1,The laptop.,The sandwich.,The towel.,The phone/camera.,The towel. 2505,93REJ_0_13.9,Which object did the person take after they sat at the table?,0,Sequence_T1_1168,Sequence_T1,The towel.,The dish.,The book.,The blanket.,The towel. 2506,65UVU_0_9.3,Which object did the person put down after they opened the door?,2,Sequence_T1_1181,Sequence_T1,The paper/notebook.,The pillow.,The box.,The food.,The box. 2507,YX3V0_1.4_7.7,Which object did the person take after they tidied up the table?,0,Sequence_T1_1182,Sequence_T1,The book.,The shoe.,The broom.,The blanket.,The book. 2508,YX3V0_1.3_7.1,Which object did the person tidy up after they took the paper/notebook?,0,Sequence_T1_1183,Sequence_T1,The table.,The broom.,The closet/cabinet.,The blanket.,The table. 2509,5GP8M_3.1_14,Which object did the person put down after they opened the closet/cabinet?,3,Sequence_T1_1188,Sequence_T1,The cup/glass/bottle.,The clothes.,The food.,The phone/camera.,The phone/camera. 2510,IOGR7_15.8_21.9,Which object did the person close after they sat on the floor?,1,Sequence_T1_1192,Sequence_T1,The book.,The door.,The closet/cabinet.,The box.,The door. 2511,LQC89_7.9_16.4,Which object did the person take after they put down the cup/glass/bottle?,3,Sequence_T1_1194,Sequence_T1,The phone/camera.,The towel.,The paper/notebook.,The sandwich.,The sandwich. 2512,BI6Y4_0_33.1,Which object did the person sit at after they held the dish?,1,Sequence_T1_1198,Sequence_T1,The sandwich.,The table.,The floor.,The bed.,The table. 2513,BI6Y4_4.6_33.1,Which object did the person sit at after they drank from the cup/glass/bottle?,1,Sequence_T1_1199,Sequence_T1,The sofa/couch.,The table.,The floor.,The refrigerator.,The table. 2514,CVDZM_14.6_21.3,Which object did the person throw after they put down the paper/notebook?,1,Sequence_T1_1210,Sequence_T1,The pillow.,The book.,The clothes.,The food.,The book. 2515,4BEZX_15.8_23.5,Which object did the person take after they closed the door?,2,Sequence_T1_1223,Sequence_T1,The bag.,The book.,The towel.,The picture.,The towel. 2516,8XXNK_0_9,Which object did the person open after they sat on the sofa/couch?,2,Sequence_T1_1225,Sequence_T1,The bag.,The refrigerator.,The box.,The laptop.,The box. 2517,8XXNK_0_9,Which object did the person open after they held the food?,3,Sequence_T1_1227,Sequence_T1,The refrigerator.,The laptop.,The bag.,The box.,The box. 2518,8XXNK_0_9,Which object did the person open after they sat on the bed?,1,Sequence_T1_1228,Sequence_T1,The door.,The box.,The bag.,The book.,The box. 2519,XKU2U_0_24.2,Which object did the person take after they washed the mirror?,1,Sequence_T1_1232,Sequence_T1,The pillow.,The bag.,The book.,The table.,The bag. 2520,9YOI8_14.8_30.3,Which object did the person close after they drank from the cup/glass/bottle?,2,Sequence_T1_1240,Sequence_T1,The refrigerator.,The box.,The window.,The door.,The window. 2521,9YOI8_0.2_11.9,Which object did the person open after they held the dish?,0,Sequence_T1_1241,Sequence_T1,The window.,The closet/cabinet.,The refrigerator.,The book.,The window. 2522,9YOI8_0.5_11.9,Which object did the person open after they held the food?,2,Sequence_T1_1242,Sequence_T1,The bag.,The door.,The window.,The closet/cabinet.,The window. 2523,HOYUT_7.1_13.7,Which object did the person put down after they held the clothes?,0,Sequence_T1_1246,Sequence_T1,The towel.,The shoe.,The blanket.,The box.,The towel. 2524,7TA23_8.7_21.4,Which object did the person put down after they took the phone/camera?,1,Sequence_T1_1265,Sequence_T1,The food.,The shoe.,The dish.,The picture.,The shoe. 2525,7TA23_10_21.4,Which object did the person put down after they held the phone/camera?,0,Sequence_T1_1267,Sequence_T1,The shoe.,The food.,The paper/notebook.,The clothes.,The shoe. 2526,337O2_0_23.7,Which object did the person throw after they held the dish?,0,Sequence_T1_1280,Sequence_T1,The clothes.,The pillow.,The food.,The shoe.,The clothes. 2527,0HGNK_0_13.1,Which object did the person put down after they sat at the table?,1,Sequence_T1_1287,Sequence_T1,The shoe.,The box.,The book.,The sandwich.,The box. 2528,M6ERH_11.6_33,Which object did the person sit at after they put down the food?,0,Sequence_T1_1303,Sequence_T1,The table.,The sofa/couch.,The dish.,The bed.,The table. 2529,PRHR7_0_27.4,Which object did the person take after they held the dish?,1,Sequence_T1_1315,Sequence_T1,The broom.,The towel.,The paper/notebook.,The sandwich.,The towel. 2530,31LW5_0_10,Which object did the person lie on after they held the pillow?,0,Sequence_T1_1319,Sequence_T1,The bed.,The sofa/couch.,The floor.,The laptop.,The bed. 2531,S444Y_7.2_16,Which object did the person open after they held the clothes?,1,Sequence_T1_1325,Sequence_T1,The book.,The bag.,The closet/cabinet.,The door.,The bag. 2532,727IZ_11.2_19.6,Which object did the person sit at after they closed the door?,1,Sequence_T1_1425,Sequence_T1,The floor.,The table.,The bed.,The refrigerator.,The table. 2533,727IZ_14.5_19.6,Which object did the person sit at after they watched at the book?,1,Sequence_T1_1426,Sequence_T1,The floor.,The table.,The bed.,The broom.,The table. 2534,Q5YDL_0_17.8,Which object did the person close after they sat on the sofa/couch?,0,Sequence_T1_1451,Sequence_T1,The laptop.,The box.,The closet/cabinet.,The book.,The laptop. 2535,Q5YDL_0_17.8,Which object did the person close after they watched at the book?,2,Sequence_T1_1452,Sequence_T1,The box.,The window.,The laptop.,The door.,The laptop. 2536,IIW0F_0_15.9,Which object did the person put down after they held the phone/camera?,1,Sequence_T1_1482,Sequence_T1,The book.,The blanket.,The picture.,The broom.,The blanket. 2537,IIW0F_7_13.2,Which object did the person take after they put down the blanket?,3,Sequence_T1_1483,Sequence_T1,The clothes.,The dish.,The bag.,The towel.,The towel. 2538,W0XPU_2.7_24.3,Which object did the person take after they sat on the bed?,3,Sequence_T1_1495,Sequence_T1,The dish.,The paper/notebook.,The towel.,The sandwich.,The sandwich. 2539,W0XPU_0.3_24.3,Which object did the person take after they put down the shoe?,1,Sequence_T1_1496,Sequence_T1,The phone/camera.,The sandwich.,The clothes.,The bag.,The sandwich. 2540,72LJ3_0_18.9,Which object did the person close after they sat on the bed?,0,Sequence_T1_1565,Sequence_T1,The book.,The door.,The window.,The closet/cabinet.,The book. 2541,13IS9_0_23.3,Which object did the person take after they sat on the sofa/couch?,2,Sequence_T1_1574,Sequence_T1,The paper/notebook.,The towel.,The laptop.,The sandwich.,The laptop. 2542,YACA8_3.4_23.9,Which object did the person take after they put down the clothes?,0,Sequence_T1_1584,Sequence_T1,The shoe.,The sandwich.,The clothes.,The pillow.,The shoe. 2543,VS7VS_1.1_19.1,Which object did the person put down after they tidied up the closet/cabinet?,0,Sequence_T1_1586,Sequence_T1,The book.,The box.,The clothes.,The broom.,The book. 2544,VS7VS_3.1_19.1,Which object did the person put down after they took the paper/notebook?,2,Sequence_T1_1587,Sequence_T1,The dish.,The sandwich.,The book.,The broom.,The book. 2545,TIPFG_1_13.5,Which object did the person take after they opened the box?,3,Sequence_T1_1594,Sequence_T1,The clothes.,The food.,The sandwich.,The shoe.,The shoe. 2546,TIPFG_0_13.5,Which object did the person take after they drank from the cup/glass/bottle?,0,Sequence_T1_1595,Sequence_T1,The shoe.,The blanket.,The paper/notebook.,The bag.,The shoe. 2547,TIPFG_5.3_16.3,Which object did the person close after they took the shoe?,1,Sequence_T1_1596,Sequence_T1,The closet/cabinet.,The box.,The door.,The window.,The box. 2548,TIPFG_0_13.5,Which object did the person take after they sat on the sofa/couch?,1,Sequence_T1_1597,Sequence_T1,The cup/glass/bottle.,The shoe.,The phone/camera.,The towel.,The shoe. 2549,5INX3_0_35.1,Which object did the person put down after they sat at the table?,3,Sequence_T1_1601,Sequence_T1,The pillow.,The picture.,The cup/glass/bottle.,The towel.,The towel. 2550,BFH78_17.6_22.4,Which object did the person take after they held the book?,3,Sequence_T1_1612,Sequence_T1,The pillow.,The dish.,The phone/camera.,The paper/notebook.,The paper/notebook. 2551,BFH78_14.4_22.4,Which object did the person take after they opened the book?,3,Sequence_T1_1615,Sequence_T1,The book.,The towel.,The box.,The paper/notebook.,The paper/notebook. 2552,3T785_0_8,Which object did the person put down after they held the phone/camera?,2,Sequence_T1_1620,Sequence_T1,The pillow.,The clothes.,The towel.,The cup/glass/bottle.,The towel. 2553,3T785_2.1_7.2,Which object did the person take after they put down the towel?,1,Sequence_T1_1621,Sequence_T1,The laptop.,The clothes.,The picture.,The cup/glass/bottle.,The clothes. 2554,3T785_6.1_20.3,Which object did the person take after they put down the clothes?,2,Sequence_T1_1622,Sequence_T1,The book.,The picture.,The laptop.,The phone/camera.,The laptop. 2555,U33ZS_0.6_7.7,Which object did the person take after they put down the laptop?,3,Sequence_T1_1623,Sequence_T1,The broom.,The cup/glass/bottle.,The phone/camera.,The paper/notebook.,The paper/notebook. 2556,L29HE_0_16.4,Which object did the person take after they sat on the floor?,3,Sequence_T1_1656,Sequence_T1,The shoe.,The laptop.,The clothes.,The broom.,The broom. 2557,V3SOF_4_13.8,Which object did the person take after they closed the closet/cabinet?,0,Sequence_T1_1679,Sequence_T1,The dish.,The towel.,The clothes.,The blanket.,The dish. 2558,V3SOF_20.5_38.9,Which object did the person close after they opened the door?,3,Sequence_T1_1683,Sequence_T1,The box.,The closet/cabinet.,The book.,The refrigerator.,The refrigerator. 2559,ZVRBL_0_16.6,Which object did the person put down after they tidied up the table?,1,Sequence_T1_1703,Sequence_T1,The towel.,The dish.,The sandwich.,The paper/notebook.,The dish. 2560,2KGV3_7.9_22.5,Which object did the person close after they put down the food?,3,Sequence_T1_1722,Sequence_T1,The door.,The closet/cabinet.,The laptop.,The book.,The book. 2561,HT9YB_0_53,Which object did the person take after they sat on the sofa/couch?,2,Sequence_T1_1744,Sequence_T1,The paper/notebook.,The book.,The phone/camera.,The cup/glass/bottle.,The phone/camera. 2562,HT9YB_0_53,Which object did the person take after they held the laptop?,1,Sequence_T1_1745,Sequence_T1,The bag.,The phone/camera.,The book.,The cup/glass/bottle.,The phone/camera. 2563,LUQWY_3.5_33.1,Which object did the person close after they sat on the bed?,0,Sequence_T1_1746,Sequence_T1,The laptop.,The closet/cabinet.,The book.,The refrigerator.,The laptop. 2564,LUQWY_5.3_33.1,Which object did the person close after they sat on the sofa/couch?,0,Sequence_T1_1747,Sequence_T1,The laptop.,The book.,The door.,The closet/cabinet.,The laptop. 2565,LD6TD_0_18.3,Which object did the person close after they sat at the table?,2,Sequence_T1_1757,Sequence_T1,The window.,The closet/cabinet.,The book.,The laptop.,The book. 2566,RQRRD_5.2_11.1,Which object did the person open after they took the clothes?,3,Sequence_T1_1787,Sequence_T1,The door.,The closet/cabinet.,The book.,The box.,The box. 2567,RQRRD_6.8_12.9,Which object did the person close after they held the clothes?,3,Sequence_T1_1788,Sequence_T1,The book.,The refrigerator.,The closet/cabinet.,The box.,The box. 2568,3CLVI_16.3_24.3,Which object did the person tidy up after they opened the door?,0,Sequence_T1_1796,Sequence_T1,The closet/cabinet.,The blanket.,The book.,The towel.,The closet/cabinet. 2569,3CLVI_16.8_24,Which object did the person take after they tidied up the closet/cabinet?,2,Sequence_T1_1798,Sequence_T1,The book.,The bag.,The clothes.,The phone/camera.,The clothes. 2570,M8OYC_12.7_27.1,Which object did the person tidy up after they held the food?,1,Sequence_T1_1816,Sequence_T1,The towel.,The closet/cabinet.,The mirror.,The clothes.,The closet/cabinet. 2571,M8OYC_14.6_27.1,Which object did the person tidy up after they put down the food?,0,Sequence_T1_1817,Sequence_T1,The closet/cabinet.,The towel.,The blanket.,The table.,The closet/cabinet. 2572,M8OYC_12.4_27.1,Which object did the person tidy up after they took the food?,0,Sequence_T1_1818,Sequence_T1,The closet/cabinet.,The towel.,The laptop.,The blanket.,The closet/cabinet. 2573,UY0SK_12.8_18,Which object did the person take after they held the sandwich?,0,Sequence_T1_1842,Sequence_T1,The dish.,The food.,The phone/camera.,The book.,The dish. 2574,UY0SK_13_18,Which object did the person take after they held the food?,3,Sequence_T1_1843,Sequence_T1,The book.,The box.,The pillow.,The dish.,The dish. 2575,UY0SK_10.9_18,Which object did the person take after they put down the paper/notebook?,0,Sequence_T1_1844,Sequence_T1,The dish.,The pillow.,The towel.,The blanket.,The dish. 2576,DPLMM_4.1_13.2,Which object did the person put down after they lied on the floor?,1,Sequence_T1_1845,Sequence_T1,The shoe.,The pillow.,The cup/glass/bottle.,The towel.,The pillow. 2577,DPLMM_0_13.6,Which object did the person lie on after they held the pillow?,2,Sequence_T1_1846,Sequence_T1,The medicine.,The sofa/couch.,The floor.,The bed.,The floor. 2578,UYZKX_3.9_26.9,Which object did the person throw after they opened the closet/cabinet?,1,Sequence_T1_1856,Sequence_T1,The food.,The blanket.,The book.,The clothes.,The blanket. 2579,74GN1_25.7_33.6,Which object did the person put down after they took the dish?,0,Sequence_T1_1857,Sequence_T1,The food.,The phone/camera.,The cup/glass/bottle.,The picture.,The food. 2580,W7CR5_0_11.2,Which object did the person throw after they held the blanket?,1,Sequence_T1_1866,Sequence_T1,The broom.,The towel.,The clothes.,The bag.,The towel. 2581,K9UXS_0_11.7,Which object did the person put down after they sat on the floor?,3,Sequence_T1_1881,Sequence_T1,The paper/notebook.,The picture.,The blanket.,The clothes.,The clothes. 2582,D1NT7_3.2_14.3,Which object did the person close after they put down the dish?,2,Sequence_T1_1945,Sequence_T1,The door.,The book.,The box.,The closet/cabinet.,The box. 2583,1FIGA_4.8_13.8,Which object did the person open after they took the book?,0,Sequence_T1_1993,Sequence_T1,The box.,The door.,The bag.,The refrigerator.,The box. 2584,1FIGA_4.8_13.8,Which object did the person open after they held the book?,0,Sequence_T1_1994,Sequence_T1,The box.,The closet/cabinet.,The refrigerator.,The door.,The box. 2585,W8XQ9_0_5.8,Which object did the person tidy up after they took the clothes?,3,Sequence_T1_1995,Sequence_T1,The broom.,The towel.,The laptop.,The table.,The table. 2586,DWHPO_1.3_21.3,Which object did the person put down after they took the food?,1,Sequence_T1_2041,Sequence_T1,The shoe.,The phone/camera.,The broom.,The sandwich.,The phone/camera. 2587,T1CQE_18.9_29.9,Which object did the person take after they opened the bag?,2,Sequence_T1_2075,Sequence_T1,The picture.,The paper/notebook.,The laptop.,The blanket.,The laptop. 2588,2WGSN_8_23.3,Which object did the person take after they washed the cup/glass/bottle?,2,Sequence_T1_2082,Sequence_T1,The book.,The clothes.,The towel.,The paper/notebook.,The towel. 2589,KV99H_2.1_17,Which object did the person put down after they opened the bag?,1,Sequence_T1_2083,Sequence_T1,The book.,The shoe.,The phone/camera.,The clothes.,The shoe. 2590,KV99H_8.8_23,Which object did the person put down after they held the shoe?,0,Sequence_T1_2084,Sequence_T1,The book.,The broom.,The sandwich.,The paper/notebook.,The book. 2591,EDVAM_0_16,Which object did the person close after they held the pillow?,2,Sequence_T1_2085,Sequence_T1,The door.,The refrigerator.,The window.,The book.,The window. 2592,EDVAM_0_16,Which object did the person close after they sat on the sofa/couch?,2,Sequence_T1_2086,Sequence_T1,The laptop.,The book.,The window.,The refrigerator.,The window. 2593,TJBGM_0_20.8,Which object did the person take after they held the broom?,2,Sequence_T1_2125,Sequence_T1,The sandwich.,The dish.,The book.,The picture.,The book. 2594,R0207_0_12.1,Which object did the person take after they lied on the floor?,2,Sequence_T1_2141,Sequence_T1,The food.,The paper/notebook.,The sandwich.,The book.,The sandwich. 2595,R0207_6.1_33.9,Which object did the person put down after they took the food?,2,Sequence_T1_2143,Sequence_T1,The clothes.,The towel.,The sandwich.,The dish.,The sandwich. 2596,R0207_7.6_33.9,Which object did the person put down after they held the food?,1,Sequence_T1_2144,Sequence_T1,The book.,The sandwich.,The bag.,The clothes.,The sandwich. 2597,YMGGV_0_17.9,Which object did the person take after they sat on the sofa/couch?,2,Sequence_T1_2164,Sequence_T1,The dish.,The book.,The blanket.,The shoe.,The blanket. 2598,C5BMA_13.9_34,Which object did the person throw after they ate the sandwich?,1,Sequence_T1_2165,Sequence_T1,The clothes.,The food.,The bag.,The blanket.,The food. 2599,C5BMA_9_34,Which object did the person throw after they held the sandwich?,0,Sequence_T1_2166,Sequence_T1,The food.,The book.,The blanket.,The bag.,The food. 2600,C5BMA_28.8_34,Which object did the person put down after they threw the food?,0,Sequence_T1_2167,Sequence_T1,The sandwich.,The bag.,The picture.,The box.,The sandwich. 2601,MD6P2_0_13.4,Which object did the person open after they ate the medicine?,3,Sequence_T1_2171,Sequence_T1,The closet/cabinet.,The refrigerator.,The sandwich.,The box.,The box. 2602,MD6P2_0_13.4,Which object did the person open after they held the medicine?,1,Sequence_T1_2172,Sequence_T1,The refrigerator.,The box.,The laptop.,The closet/cabinet.,The box. 2603,HOI88_10.7_21.6,Which object did the person sit on after they held the book?,3,Sequence_T1_2174,Sequence_T1,The table.,The bed.,The floor.,The sofa/couch.,The sofa/couch. 2604,HOI88_2.6_21.6,Which object did the person sit on after they sat at the table?,2,Sequence_T1_2175,Sequence_T1,The floor.,The bed.,The sofa/couch.,The table.,The sofa/couch. 2605,AEZDA_0_13.6,Which object did the person put down after they held the food?,3,Sequence_T1_2176,Sequence_T1,The clothes.,The phone/camera.,The cup/glass/bottle.,The bag.,The bag. 2606,WOD0G_0_20.2,Which object did the person put down after they held the book?,1,Sequence_T1_2186,Sequence_T1,The dish.,The towel.,The broom.,The clothes.,The towel. 2607,WOD0G_10.8_19.9,Which object did the person throw after they put down the towel?,3,Sequence_T1_2187,Sequence_T1,The broom.,The bag.,The blanket.,The clothes.,The clothes. 2608,NM65M_5.8_16.9,Which object did the person throw after they held the pillow?,3,Sequence_T1_2217,Sequence_T1,The shoe.,The book.,The bag.,The blanket.,The blanket. 2609,NM65M_4.3_16.9,Which object did the person throw after they took the pillow?,2,Sequence_T1_2218,Sequence_T1,The shoe.,The book.,The blanket.,The broom.,The blanket. 2610,RXLKF_0_9.4,Which object did the person sit on after they held the blanket?,3,Sequence_T1_2219,Sequence_T1,The bed.,The floor.,The medicine.,The sofa/couch.,The sofa/couch. 2611,RXLKF_0_9.4,Which object did the person sit on after they took the book?,2,Sequence_T1_2220,Sequence_T1,The box.,The bed.,The sofa/couch.,The floor.,The sofa/couch. 2612,19PNV_0_21.3,Which object did the person take after they watched outside the window?,2,Sequence_T1_2232,Sequence_T1,The book.,The food.,The blanket.,The dish.,The blanket. 2613,19PNV_14.6_21.3,Which object did the person take after they held the pillow?,2,Sequence_T1_2233,Sequence_T1,The paper/notebook.,The towel.,The blanket.,The cup/glass/bottle.,The blanket. 2614,24XHS_3.8_26.3,Which object did the person open after they ate the medicine?,1,Sequence_T1_2235,Sequence_T1,The window.,The refrigerator.,The sandwich.,The bag.,The refrigerator. 2615,24XHS_0_26.3,Which object did the person open after they held the medicine?,0,Sequence_T1_2236,Sequence_T1,The refrigerator.,The book.,The door.,The box.,The refrigerator. 2616,NEM29_7.7_18.9,Which object did the person take after they threw the clothes?,2,Sequence_T1_2244,Sequence_T1,The dish.,The picture.,The bag.,The towel.,The bag. 2617,K71S1_0.8_9.3,Which object did the person put down after they sat on the floor?,1,Sequence_T1_2251,Sequence_T1,The cup/glass/bottle.,The box.,The towel.,The clothes.,The box. 2618,OA9W5_0_12,Which object did the person put down after they held the food?,0,Sequence_T1_2253,Sequence_T1,The sandwich.,The cup/glass/bottle.,The dish.,The pillow.,The sandwich. 2619,OA9W5_8.2_15.8,Which object did the person take after they put down the food?,1,Sequence_T1_2254,Sequence_T1,The towel.,The book.,The picture.,The cup/glass/bottle.,The book. 2620,OA9W5_0_12,Which object did the person put down after they took the food?,2,Sequence_T1_2255,Sequence_T1,The paper/notebook.,The dish.,The sandwich.,The shoe.,The sandwich. 2621,JOLLV_0_17.3,Which object did the person open after they sat on the sofa/couch?,2,Sequence_T1_2283,Sequence_T1,The window.,The laptop.,The refrigerator.,The book.,The refrigerator. 2622,V3RAX_0_15.6,Which object did the person throw after they lied on the bed?,3,Sequence_T1_2292,Sequence_T1,The bag.,The box.,The shoe.,The blanket.,The blanket. 2623,V3RAX_4.9_15.6,Which object did the person throw after they held the clothes?,1,Sequence_T1_2294,Sequence_T1,The towel.,The blanket.,The bag.,The book.,The blanket. 2624,FM5D5_11_17.5,Which object did the person put down after they tidied up the clothes?,2,Sequence_T1_2301,Sequence_T1,The book.,The broom.,The bag.,The blanket.,The bag. 2625,FM5D5_4.2_18.1,Which object did the person tidy up after they threw the bag?,1,Sequence_T1_2302,Sequence_T1,The towel.,The clothes.,The food.,The closet/cabinet.,The clothes. 2626,8LAK1_4.4_29,Which object did the person take after they put down the food?,1,Sequence_T1_2308,Sequence_T1,The box.,The shoe.,The book.,The dish.,The shoe. 2627,8LAK1_7_29,Which object did the person take after they opened the box?,3,Sequence_T1_2309,Sequence_T1,The towel.,The phone/camera.,The food.,The shoe.,The shoe. 2628,564DX_1.4_8.4,Which object did the person close after they took the cup/glass/bottle?,1,Sequence_T1_2359,Sequence_T1,The door.,The refrigerator.,The closet/cabinet.,The box.,The refrigerator. 2629,78R4Y_3.3_15.6,Which object did the person put down after they took the food?,1,Sequence_T1_2364,Sequence_T1,The dish.,The bag.,The sandwich.,The laptop.,The bag. 2630,78R4Y_5.4_15.6,Which object did the person put down after they held the food?,3,Sequence_T1_2365,Sequence_T1,The picture.,The cup/glass/bottle.,The dish.,The bag.,The bag. 2631,P2HZG_0_10.2,Which object did the person close after they sat at the table?,0,Sequence_T1_2388,Sequence_T1,The laptop.,The book.,The door.,The window.,The laptop. 2632,2Q3ZJ_18.2_25.8,Which object did the person open after they held the phone/camera?,3,Sequence_T1_2426,Sequence_T1,The refrigerator.,The box.,The door.,The closet/cabinet.,The closet/cabinet. 2633,2Q3ZJ_0_25.8,Which object did the person open after they took the clothes?,1,Sequence_T1_2427,Sequence_T1,The bag.,The closet/cabinet.,The door.,The box.,The closet/cabinet. 2634,5CZRC_0_11.4,Which object did the person take after they held the food?,0,Sequence_T1_2431,Sequence_T1,The cup/glass/bottle.,The bag.,The dish.,The phone/camera.,The cup/glass/bottle. 2635,E6PSM_5.8_28.3,Which object did the person throw after they closed the door?,3,Sequence_T1_2435,Sequence_T1,The book.,The pillow.,The clothes.,The box.,The box. 2636,AZMVM_17.4_28,Which object did the person put down after they opened the closet/cabinet?,2,Sequence_T1_2442,Sequence_T1,The shoe.,The box.,The pillow.,The phone/camera.,The pillow. 2637,TAZGF_7.3_13,Which object did the person sit at after they sat on the sofa/couch?,3,Sequence_T1_2448,Sequence_T1,The floor.,The bed.,The sofa/couch.,The table.,The table. 2638,TAZGF_5_13,Which object did the person sit on after they put down the food?,2,Sequence_T1_2449,Sequence_T1,The floor.,The broom.,The sofa/couch.,The table.,The sofa/couch. 2639,TAZGF_6.7_13,Which object did the person sit on after they held the food?,0,Sequence_T1_2450,Sequence_T1,The sofa/couch.,The blanket.,The table.,The floor.,The sofa/couch. 2640,BN4VH_1.8_18.9,Which object did the person take after they held the blanket?,3,Sequence_T1_2451,Sequence_T1,The phone/camera.,The towel.,The pillow.,The dish.,The dish. 2641,01ZWG_4.9_13.5,Which object did the person sit at after they opened the laptop?,3,Sequence_T1_2453,Sequence_T1,The floor.,The bed.,The box.,The table.,The table. 2642,IO712_1.9_11.6,Which object did the person sit on after they took the book?,2,Sequence_T1_2471,Sequence_T1,The sofa/couch.,The table.,The floor.,The bed.,The floor. 2643,KVYOZ_0_6,Which object did the person put down after they sat on the floor?,3,Sequence_T1_2512,Sequence_T1,The phone/camera.,The dish.,The broom.,The picture.,The picture. 2644,FL4NG_0_28,Which object did the person throw after they held the phone/camera?,1,Sequence_T1_2515,Sequence_T1,The pillow.,The clothes.,The shoe.,The blanket.,The clothes. 2645,FM078_0.2_7.3,Which object did the person put down after they tidied up the table?,3,Sequence_T1_2550,Sequence_T1,The picture.,The paper/notebook.,The shoe.,The dish.,The dish. 2646,41EQS_0_8.7,Which object did the person put down after they threw the towel?,3,Sequence_T1_2551,Sequence_T1,The clothes.,The food.,The bag.,The blanket.,The blanket. 2647,6PL9Z_3.5_13.4,Which object did the person take after they held the blanket?,3,Sequence_T1_2564,Sequence_T1,The pillow.,The cup/glass/bottle.,The shoe.,The book.,The book. 2648,7NBPG_20.2_28,Which object did the person take after they threw the book?,0,Sequence_T1_2565,Sequence_T1,The paper/notebook.,The laptop.,The cup/glass/bottle.,The bag.,The paper/notebook. 2649,7NBPG_20.2_28,Which object did the person take after they put down the book?,2,Sequence_T1_2566,Sequence_T1,The phone/camera.,The box.,The paper/notebook.,The towel.,The paper/notebook. 2650,7NBPG_0_24.4,Which object did the person close after they took the paper/notebook?,2,Sequence_T1_2567,Sequence_T1,The closet/cabinet.,The door.,The book.,The refrigerator.,The book. 2651,LHMMJ_14.7_22.3,Which object did the person take after they tidied up the closet/cabinet?,2,Sequence_T1_2592,Sequence_T1,The dish.,The box.,The food.,The clothes.,The food. 2652,X5YL3_5.4_19,Which object did the person close after they put down the food?,1,Sequence_T1_2604,Sequence_T1,The laptop.,The refrigerator.,The closet/cabinet.,The door.,The refrigerator. 2653,X5YL3_5.7_19,Which object did the person close after they held the food?,0,Sequence_T1_2606,Sequence_T1,The refrigerator.,The window.,The box.,The door.,The refrigerator. 2654,J867Z_3.5_20,Which object did the person throw after they put down the cup/glass/bottle?,2,Sequence_T1_2613,Sequence_T1,The dish.,The shoe.,The book.,The clothes.,The book. 2655,DHPNN_0_15.5,Which object did the person throw after they sat at the table?,3,Sequence_T1_2615,Sequence_T1,The bag.,The broom.,The box.,The food.,The food. 2656,RJIEO_4.4_9.9,Which object did the person put down after they sat on the bed?,0,Sequence_T1_2618,Sequence_T1,The bag.,The food.,The dish.,The phone/camera.,The bag. 2657,432NL_13.6_32,Which object did the person eat after they closed the refrigerator?,2,Sequence_T1_2636,Sequence_T1,The book.,The sandwich.,The medicine.,The sofa/couch.,The medicine. 2658,432NL_4.5_20.3,Which object did the person close after they took the food?,0,Sequence_T1_2637,Sequence_T1,The refrigerator.,The box.,The door.,The closet/cabinet.,The refrigerator. 2659,432NL_13.9_32,Which object did the person eat after they held the food?,0,Sequence_T1_2638,Sequence_T1,The medicine.,The mirror.,The closet/cabinet.,The sandwich.,The medicine. 2660,JL8XT_0_34,Which object did the person wash after they held the phone/camera?,0,Sequence_T1_2647,Sequence_T1,The mirror.,The table.,The box.,The dish.,The mirror. 2661,JL8XT_24.1_34,Which object did the person tidy up after they washed the mirror?,1,Sequence_T1_2648,Sequence_T1,The towel.,The closet/cabinet.,The clothes.,The broom.,The closet/cabinet. 2662,LH6LE_3.5_12.2,Which object did the person take after they opened the closet/cabinet?,0,Sequence_T1_2650,Sequence_T1,The dish.,The towel.,The cup/glass/bottle.,The picture.,The dish. 2663,KQYR0_0.9_20.9,Which object did the person take after they tidied up the clothes?,2,Sequence_T1_2651,Sequence_T1,The dish.,The paper/notebook.,The book.,The towel.,The book. 2664,1RNK6_0_14,Which object did the person tidy up after they watched outside the window?,3,Sequence_T1_2661,Sequence_T1,The sandwich.,The towel.,The blanket.,The closet/cabinet.,The closet/cabinet. 2665,1RNK6_6.7_12.5,Which object did the person take after they tidied up the closet/cabinet?,0,Sequence_T1_2662,Sequence_T1,The box.,The sandwich.,The paper/notebook.,The bag.,The box. 2666,OUAIS_0_20,Which object did the person take after they lied on the floor?,3,Sequence_T1_2673,Sequence_T1,The food.,The shoe.,The phone/camera.,The clothes.,The clothes. 2667,OUAIS_11.7_29,Which object did the person throw after they took the clothes?,2,Sequence_T1_2675,Sequence_T1,The bag.,The towel.,The pillow.,The blanket.,The pillow. 2668,NVBBD_0_17.5,Which object did the person put down after they opened the door?,1,Sequence_T1_2678,Sequence_T1,The cup/glass/bottle.,The shoe.,The laptop.,The blanket.,The shoe. 2669,2LCLG_2_16.4,Which object did the person take after they opened the bag?,1,Sequence_T1_2684,Sequence_T1,The book.,The paper/notebook.,The laptop.,The pillow.,The paper/notebook. 2670,TZL6H_6_32,Which object did the person wash after they drank from the cup/glass/bottle?,3,Sequence_T1_2687,Sequence_T1,The bag.,The clothes.,The cup/glass/bottle.,The mirror.,The mirror. 2671,TZL6H_22.3_32,Which object did the person wash after they held the clothes?,1,Sequence_T1_2688,Sequence_T1,The cup/glass/bottle.,The mirror.,The clothes.,The sandwich.,The mirror. 2672,TZL6H_0_32,Which object did the person wash after they ate the medicine?,2,Sequence_T1_2689,Sequence_T1,The sandwich.,The dish.,The mirror.,The clothes.,The mirror. 2673,6UMSJ_3.4_13.7,Which object did the person take after they put down the food?,1,Sequence_T1_2690,Sequence_T1,The bag.,The phone/camera.,The towel.,The book.,The phone/camera. 2674,WAOE7_6.4_11,Which object did the person put down after they threw the food?,3,Sequence_T1_2703,Sequence_T1,The book.,The pillow.,The paper/notebook.,The sandwich.,The sandwich. 2675,D6D85_0_6.7,Which object did the person put down after they sat on the sofa/couch?,0,Sequence_T1_2709,Sequence_T1,The sandwich.,The blanket.,The picture.,The bag.,The sandwich. 2676,D6D85_0_6.7,Which object did the person put down after they held the food?,3,Sequence_T1_2710,Sequence_T1,The picture.,The paper/notebook.,The clothes.,The sandwich.,The sandwich. 2677,H8UJ3_11.6_23.1,Which object did the person open after they sat at the table?,1,Sequence_T1_2725,Sequence_T1,The door.,The book.,The closet/cabinet.,The bag.,The book. 2678,Z7QTA_9.7_18.1,Which object did the person put down after they held the box?,3,Sequence_T1_2740,Sequence_T1,The cup/glass/bottle.,The phone/camera.,The shoe.,The bag.,The bag. 2679,Z7QTA_8.7_18.1,Which object did the person put down after they took the box?,3,Sequence_T1_2741,Sequence_T1,The laptop.,The dish.,The cup/glass/bottle.,The bag.,The bag. 2680,Z7QTA_14.4_23.2,Which object did the person put down after they tidied up the closet/cabinet?,1,Sequence_T1_2742,Sequence_T1,The cup/glass/bottle.,The box.,The book.,The laptop.,The box. 2681,CH8XJ_13.5_25.4,Which object did the person throw after they opened the closet/cabinet?,3,Sequence_T1_2747,Sequence_T1,The food.,The clothes.,The box.,The shoe.,The shoe. 2682,PON7X_0_26,Which object did the person eat after they held the book?,3,Sequence_T1_2757,Sequence_T1,The window.,The medicine.,The broom.,The sandwich.,The sandwich. 2683,PON7X_0_26,Which object did the person eat after they watched at the book?,3,Sequence_T1_2758,Sequence_T1,The shoe.,The laptop.,The medicine.,The sandwich.,The sandwich. 2684,PON7X_0_26,Which object did the person eat after they sat at the table?,1,Sequence_T1_2759,Sequence_T1,The refrigerator.,The sandwich.,The sofa/couch.,The medicine.,The sandwich. 2685,PON7X_0_26,Which object did the person eat after they sat on the table?,0,Sequence_T1_2760,Sequence_T1,The sandwich.,The floor.,The medicine.,The bed.,The sandwich. 2686,2NV6L_5.7_18.1,Which object did the person put down after they held the shoe?,0,Sequence_T1_2771,Sequence_T1,The bag.,The blanket.,The laptop.,The towel.,The bag. 2687,2NV6L_9.6_27.8,Which object did the person take after they put down the bag?,2,Sequence_T1_2772,Sequence_T1,The towel.,The shoe.,The pillow.,The blanket.,The pillow. 2688,2XVR0_0_20,Which object did the person put down after they held the food?,3,Sequence_T1_2773,Sequence_T1,The phone/camera.,The paper/notebook.,The picture.,The sandwich.,The sandwich. 2689,MX9XB_0_34.6,Which object did the person throw after they held the food?,0,Sequence_T1_2806,Sequence_T1,The bag.,The blanket.,The box.,The food.,The bag. 2690,MUO4G_0_12.8,Which object did the person open after they sat on the table?,1,Sequence_T1_2815,Sequence_T1,The laptop.,The refrigerator.,The bag.,The door.,The refrigerator. 2691,RRZU3_2.7_11,Which object did the person open after they lied on the sofa/couch?,0,Sequence_T1_2823,Sequence_T1,The laptop.,The door.,The closet/cabinet.,The refrigerator.,The laptop. 2692,RRZU3_3.3_22.2,Which object did the person put down after they opened the laptop?,1,Sequence_T1_2824,Sequence_T1,The phone/camera.,The dish.,The picture.,The pillow.,The dish. 2693,RRZU3_9.5_22.2,Which object did the person put down after they drank from the cup/glass/bottle?,3,Sequence_T1_2825,Sequence_T1,The paper/notebook.,The clothes.,The bag.,The dish.,The dish. 2694,5MF9Y_1.3_12.1,Which object did the person put down after they held the broom?,3,Sequence_T1_2852,Sequence_T1,The towel.,The food.,The cup/glass/bottle.,The paper/notebook.,The paper/notebook. 2695,5MF9Y_13.6_20.3,Which object did the person throw after they put down the broom?,1,Sequence_T1_2853,Sequence_T1,The book.,The food.,The clothes.,The bag.,The food. 2696,HFW6H_29.6_41.7,Which object did the person throw after they put down the cup/glass/bottle?,1,Sequence_T1_2902,Sequence_T1,The blanket.,The clothes.,The shoe.,The broom.,The clothes. 2697,UEC1F_12.7_19.4,Which object did the person take after they held the blanket?,1,Sequence_T1_2904,Sequence_T1,The pillow.,The clothes.,The cup/glass/bottle.,The paper/notebook.,The clothes. 2698,2544C_0_15.8,Which object did the person put down after they held the broom?,0,Sequence_T1_2910,Sequence_T1,The towel.,The pillow.,The clothes.,The sandwich.,The towel. 2699,2544C_0_15.8,Which object did the person put down after they held the clothes?,2,Sequence_T1_2911,Sequence_T1,The blanket.,The food.,The towel.,The sandwich.,The towel. 2700,ANA5N_14.2_21.8,Which object did the person put down after they opened the closet/cabinet?,2,Sequence_T1_2948,Sequence_T1,The dish.,The clothes.,The towel.,The broom.,The towel. 2701,0Z36L_22.4_32,Which object did the person put down after they watched outside the window?,2,Sequence_T1_2952,Sequence_T1,The towel.,The clothes.,The bag.,The phone/camera.,The bag. 2702,0Z36L_0.6_32,Which object did the person put down after they held the clothes?,2,Sequence_T1_2953,Sequence_T1,The towel.,The book.,The bag.,The sandwich.,The bag. 2703,JBJGX_0_19.9,Which object did the person close after they sat on the sofa/couch?,1,Sequence_T1_2983,Sequence_T1,The book.,The laptop.,The closet/cabinet.,The box.,The laptop. 2704,JBJGX_12.2_19.9,Which object did the person close after they took the clothes?,1,Sequence_T1_2984,Sequence_T1,The window.,The laptop.,The door.,The book.,The laptop. 2705,JBJGX_23.4_31.5,Which object did the person open after they put down the clothes?,0,Sequence_T1_2985,Sequence_T1,The laptop.,The door.,The refrigerator.,The bag.,The laptop. 2706,43FG9_3.2_11.4,Which object did the person throw after they put down the clothes?,2,Sequence_T1_2987,Sequence_T1,The bag.,The blanket.,The towel.,The box.,The towel. 2707,9335E_19.1_43,Which object did the person open after they put down the dish?,3,Sequence_T1_2990,Sequence_T1,The refrigerator.,The door.,The box.,The closet/cabinet.,The closet/cabinet. 2708,WLA52_15.8_25.6,Which object did the person take after they put down the blanket?,3,Sequence_T1_3001,Sequence_T1,The picture.,The phone/camera.,The dish.,The broom.,The broom. 2709,WLA52_0.6_23,Which object did the person put down after they took the clothes?,2,Sequence_T1_3002,Sequence_T1,The broom.,The cup/glass/bottle.,The blanket.,The phone/camera.,The blanket. 2710,WLA52_1.3_23,Which object did the person put down after they held the clothes?,3,Sequence_T1_3003,Sequence_T1,The box.,The dish.,The shoe.,The blanket.,The blanket. 2711,N2GFQ_6.9_39,Which object did the person lie on after they put down the bag?,2,Sequence_T1_3018,Sequence_T1,The bed.,The floor.,The sofa/couch.,The book.,The sofa/couch. 2712,N2GFQ_1.6_13.5,Which object did the person put down after they closed the door?,2,Sequence_T1_3019,Sequence_T1,The picture.,The sandwich.,The bag.,The blanket.,The bag. 2713,WRW74_1.9_9.3,Which object did the person open after they took the dish?,0,Sequence_T1_3028,Sequence_T1,The box.,The door.,The closet/cabinet.,The laptop.,The box. 2714,AWITI_2.3_15.9,Which object did the person take after they closed the door?,3,Sequence_T1_3058,Sequence_T1,The cup/glass/bottle.,The paper/notebook.,The shoe.,The pillow.,The pillow. 2715,H2B7U_0_22.7,Which object did the person open after they held the blanket?,3,Sequence_T1_3071,Sequence_T1,The refrigerator.,The box.,The window.,The door.,The door. 2716,H2B7U_0_22.7,Which object did the person open after they held the clothes?,1,Sequence_T1_3072,Sequence_T1,The laptop.,The door.,The box.,The closet/cabinet.,The door. 2717,H2B7U_0_22.7,Which object did the person open after they washed the clothes?,0,Sequence_T1_3073,Sequence_T1,The door.,The bag.,The closet/cabinet.,The window.,The door. 2718,9BCZU_25_34,Which object did the person wash after they put down the blanket?,0,Sequence_T1_3074,Sequence_T1,The clothes.,The table.,The phone/camera.,The window.,The clothes. 2719,9PXC0_0_15,Which object did the person take after they lied on the bed?,0,Sequence_T1_3081,Sequence_T1,The box.,The bag.,The laptop.,The pillow.,The box. 2720,9PXC0_1.3_15,Which object did the person take after they sat on the bed?,1,Sequence_T1_3082,Sequence_T1,The pillow.,The box.,The dish.,The clothes.,The box. 2721,4S3UZ_0_31.7,Which object did the person put down after they sat on the floor?,3,Sequence_T1_3101,Sequence_T1,The paper/notebook.,The laptop.,The book.,The broom.,The broom. 2722,BCONW_4.5_13.3,Which object did the person close after they took the cup/glass/bottle?,2,Sequence_T1_3104,Sequence_T1,The book.,The closet/cabinet.,The refrigerator.,The box.,The refrigerator. 2723,JZDL6_7.8_14,Which object did the person sit on after they took the shoe?,2,Sequence_T1_3121,Sequence_T1,The sofa/couch.,The paper/notebook.,The bed.,The table.,The bed. 2724,FETME_13.8_21.2,Which object did the person put down after they closed the book?,0,Sequence_T1_3135,Sequence_T1,The paper/notebook.,The laptop.,The food.,The pillow.,The paper/notebook. 2725,M704T_9.8_19.6,Which object did the person take after they closed the door?,1,Sequence_T1_3136,Sequence_T1,The cup/glass/bottle.,The towel.,The book.,The phone/camera.,The towel. 2726,J6TVB_0_20.5,Which object did the person put down after they drank from the cup/glass/bottle?,0,Sequence_T1_3150,Sequence_T1,The dish.,The cup/glass/bottle.,The picture.,The bag.,The dish. 2727,J6TVB_0_20.5,Which object did the person put down after they sat at the table?,3,Sequence_T1_3151,Sequence_T1,The laptop.,The sandwich.,The cup/glass/bottle.,The dish.,The dish. 2728,J6TVB_0_20.5,Which object did the person put down after they took the cup/glass/bottle?,0,Sequence_T1_3152,Sequence_T1,The dish.,The cup/glass/bottle.,The bag.,The sandwich.,The dish. 2729,I713Z_7.5_24.7,Which object did the person open after they held the laptop?,3,Sequence_T1_3187,Sequence_T1,The door.,The closet/cabinet.,The box.,The refrigerator.,The refrigerator. 2730,Q7RK6_2.2_13.4,Which object did the person put down after they threw the clothes?,0,Sequence_T1_3189,Sequence_T1,The pillow.,The shoe.,The broom.,The towel.,The pillow. 2731,ZAJAJ_12.2_29.1,Which object did the person open after they took the picture?,3,Sequence_T1_3220,Sequence_T1,The bag.,The blanket.,The closet/cabinet.,The laptop.,The laptop. 2732,ZAJAJ_2.4_17.6,Which object did the person take after they put down the pillow?,0,Sequence_T1_3221,Sequence_T1,The picture.,The blanket.,The paper/notebook.,The box.,The picture. 2733,ZAJAJ_13.8_29.1,Which object did the person open after they held the picture?,2,Sequence_T1_3222,Sequence_T1,The box.,The refrigerator.,The laptop.,The sandwich.,The laptop. 2734,VNVRA_0_5.8,Which object did the person take after they opened the closet/cabinet?,1,Sequence_T1_3231,Sequence_T1,The book.,The box.,The clothes.,The laptop.,The box. 2735,I20N2_8.4_33.1,Which object did the person put down after they took the towel?,2,Sequence_T1_3239,Sequence_T1,The laptop.,The sandwich.,The clothes.,The bag.,The clothes. 2736,I20N2_10.5_33.1,Which object did the person put down after they tidied up the towel?,1,Sequence_T1_3240,Sequence_T1,The book.,The clothes.,The bag.,The blanket.,The clothes. 2737,KLP7V_0_16.3,Which object did the person put down after they tidied up the closet/cabinet?,2,Sequence_T1_3242,Sequence_T1,The pillow.,The clothes.,The box.,The broom.,The box. 2738,K87AC_0.7_16.4,Which object did the person put down after they closed the door?,3,Sequence_T1_3250,Sequence_T1,The pillow.,The phone/camera.,The broom.,The clothes.,The clothes. 2739,ABHC6_3_15.2,Which object did the person take after they opened the closet/cabinet?,2,Sequence_T1_3254,Sequence_T1,The bag.,The towel.,The clothes.,The food.,The clothes. 2740,WBS4I_5.7_15.5,Which object did the person close after they took the paper/notebook?,2,Sequence_T1_3270,Sequence_T1,The box.,The door.,The closet/cabinet.,The book.,The closet/cabinet. 2741,52WDV_1.2_26.7,Which object did the person open after they took the clothes?,2,Sequence_T1_3281,Sequence_T1,The door.,The bag.,The book.,The refrigerator.,The book. 2742,FX1T5_0.6_12,Which object did the person put down after they held the book?,3,Sequence_T1_3288,Sequence_T1,The blanket.,The paper/notebook.,The pillow.,The picture.,The picture. 2743,FX1T5_0.9_12,Which object did the person put down after they closed the book?,2,Sequence_T1_3291,Sequence_T1,The paper/notebook.,The dish.,The picture.,The broom.,The picture. 2744,KU656_0_12.8,Which object did the person take after they lied on the bed?,1,Sequence_T1_3355,Sequence_T1,The shoe.,The towel.,The clothes.,The phone/camera.,The towel. 2745,TK76G_0_16,Which object did the person put down after they washed the table?,2,Sequence_T1_3383,Sequence_T1,The paper/notebook.,The book.,The towel.,The phone/camera.,The towel. 2746,TK76G_0_16,Which object did the person put down after they took the food?,3,Sequence_T1_3384,Sequence_T1,The shoe.,The cup/glass/bottle.,The sandwich.,The towel.,The towel. 2747,TK76G_0_16,Which object did the person put down after they tidied up the table?,1,Sequence_T1_3385,Sequence_T1,The sandwich.,The towel.,The laptop.,The picture.,The towel. 2748,3IRHH_0.7_21.3,Which object did the person put down after they took the paper/notebook?,3,Sequence_T1_3406,Sequence_T1,The picture.,The sandwich.,The book.,The dish.,The dish. 2749,3IRHH_0_7.3,Which object did the person take after they held the dish?,3,Sequence_T1_3408,Sequence_T1,The clothes.,The food.,The bag.,The paper/notebook.,The paper/notebook. 2750,7SXQS_1_17.5,Which object did the person take after they closed the window?,1,Sequence_T1_3418,Sequence_T1,The laptop.,The blanket.,The towel.,The phone/camera.,The blanket. 2751,NCRCW_3.7_10.2,Which object did the person take after they sat on the floor?,1,Sequence_T1_3447,Sequence_T1,The blanket.,The pillow.,The phone/camera.,The bag.,The pillow. 2752,08F85_1_23.2,Which object did the person eat after they opened the closet/cabinet?,0,Sequence_T1_3450,Sequence_T1,The medicine.,The clothes.,The refrigerator.,The sandwich.,The medicine. 2753,08F85_11.1_23.2,Which object did the person eat after they opened the closet/cabinet?,1,Sequence_T1_3451,Sequence_T1,The sandwich.,The medicine.,The bag.,The dish.,The medicine. 2754,4MFE0_0_27.2,Which object did the person take after they held the food?,1,Sequence_T1_3465,Sequence_T1,The bag.,The book.,The blanket.,The box.,The book. 2755,LGS4C_0_24.5,Which object did the person close after they held the phone/camera?,3,Sequence_T1_3481,Sequence_T1,The book.,The closet/cabinet.,The laptop.,The door.,The door. 2756,XNBUT_0_10,Which object did the person close after they held the phone/camera?,1,Sequence_T1_3483,Sequence_T1,The box.,The door.,The closet/cabinet.,The book.,The door. 2757,BWLA8_0_13,Which object did the person close after they took the book?,1,Sequence_T1_3498,Sequence_T1,The refrigerator.,The closet/cabinet.,The laptop.,The door.,The closet/cabinet. 2758,4YL07_7_14.2,Which object did the person take after they watched at the picture?,0,Sequence_T1_3516,Sequence_T1,The cup/glass/bottle.,The phone/camera.,The pillow.,The bag.,The cup/glass/bottle. 2759,FVITB_6.2_25.3,Which object did the person open after they took the food?,2,Sequence_T1_3520,Sequence_T1,The book.,The door.,The refrigerator.,The bag.,The refrigerator. 2760,FL6DF_10.3_19.7,Which object did the person put down after they threw the pillow?,3,Sequence_T1_3527,Sequence_T1,The shoe.,The book.,The clothes.,The laptop.,The laptop. 2761,FL6DF_0.9_8.1,Which object did the person open after they sat on the sofa/couch?,2,Sequence_T1_3528,Sequence_T1,The refrigerator.,The closet/cabinet.,The laptop.,The door.,The laptop. 2762,FL6DF_8.9_15.9,Which object did the person throw after they put down the blanket?,2,Sequence_T1_3530,Sequence_T1,The blanket.,The clothes.,The pillow.,The shoe.,The pillow. 2763,ZS9XR_1.5_17.1,Which object did the person eat after they took the food?,0,Sequence_T1_3540,Sequence_T1,The medicine.,The shoe.,The sandwich.,The bed.,The medicine. 2764,JJLTF_2.4_35,Which object did the person put down after they held the dish?,1,Sequence_T1_3553,Sequence_T1,The dish.,The cup/glass/bottle.,The food.,The box.,The cup/glass/bottle. 2765,BAUQE_0_10.2,Which object did the person take after they tidied up the clothes?,0,Sequence_T1_3579,Sequence_T1,The broom.,The phone/camera.,The pillow.,The towel.,The broom. 2766,BGQIF_1.6_9.4,Which object did the person put down after they sat on the sofa/couch?,0,Sequence_T1_3586,Sequence_T1,The pillow.,The phone/camera.,The dish.,The cup/glass/bottle.,The pillow. 2767,APVAD_6.7_16.5,Which object did the person throw after they held the clothes?,1,Sequence_T1_3589,Sequence_T1,The broom.,The pillow.,The towel.,The blanket.,The pillow. 2768,P4HXN_0.8_33.3,Which object did the person put down after they washed the clothes?,3,Sequence_T1_3596,Sequence_T1,The clothes.,The shoe.,The pillow.,The laptop.,The laptop. 2769,UF91R_9.7_14.3,Which object did the person open after they took the food?,0,Sequence_T1_3597,Sequence_T1,The refrigerator.,The window.,The box.,The bag.,The refrigerator. 2770,UF91R_11.3_17.4,Which object did the person close after they held the food?,1,Sequence_T1_3598,Sequence_T1,The book.,The refrigerator.,The closet/cabinet.,The door.,The refrigerator. 2771,PQYWB_0_10.7,Which object did the person put down after they held the phone/camera?,2,Sequence_T1_3614,Sequence_T1,The paper/notebook.,The blanket.,The towel.,The dish.,The towel. 2772,C8WLX_23_35,Which object did the person take after they sat at the table?,2,Sequence_T1_3616,Sequence_T1,The phone/camera.,The broom.,The shoe.,The box.,The shoe. 2773,I1OLQ_8.4_32,Which object did the person open after they closed the door?,2,Sequence_T1_3619,Sequence_T1,The laptop.,The book.,The bag.,The box.,The bag. 2774,I1OLQ_14_32,Which object did the person open after they sat on the sofa/couch?,2,Sequence_T1_3620,Sequence_T1,The book.,The door.,The bag.,The closet/cabinet.,The bag. 2775,M1FNW_0_6.9,Which object did the person take after they held the phone/camera?,0,Sequence_T1_3627,Sequence_T1,The laptop.,The dish.,The food.,The paper/notebook.,The laptop. 2776,NNG97_0.6_14,Which object did the person take after they put down the book?,0,Sequence_T1_3643,Sequence_T1,The laptop.,The food.,The sandwich.,The box.,The laptop. 2777,NKCXF_0_15.3,Which object did the person put down after they sat on the sofa/couch?,3,Sequence_T1_3674,Sequence_T1,The blanket.,The cup/glass/bottle.,The clothes.,The pillow.,The pillow. 2778,JQLD3_0_10.6,Which object did the person take after they sat at the table?,3,Sequence_T1_3677,Sequence_T1,The blanket.,The cup/glass/bottle.,The picture.,The sandwich.,The sandwich. 2779,JQLD3_0_10.6,Which object did the person take after they held the box?,3,Sequence_T1_3678,Sequence_T1,The phone/camera.,The food.,The picture.,The sandwich.,The sandwich. 2780,NYPOF_2_12.2,Which object did the person open after they held the clothes?,1,Sequence_T1_3703,Sequence_T1,The refrigerator.,The closet/cabinet.,The door.,The laptop.,The closet/cabinet. 2781,40309_22.4_32,Which object did the person close after they opened the door?,2,Sequence_T1_3706,Sequence_T1,The door.,The refrigerator.,The closet/cabinet.,The book.,The closet/cabinet. 2782,ZZ2SF_0_25.5,Which object did the person eat after they held the phone/camera?,1,Sequence_T1_3734,Sequence_T1,The bed.,The medicine.,The sandwich.,The blanket.,The medicine. 2783,8L9AJ_2.7_20.3,Which object did the person take after they opened the box?,1,Sequence_T1_3735,Sequence_T1,The dish.,The laptop.,The clothes.,The book.,The laptop. 2784,9X208_0_26.8,Which object did the person take after they lied on the bed?,0,Sequence_T1_3736,Sequence_T1,The towel.,The paper/notebook.,The cup/glass/bottle.,The phone/camera.,The towel. 2785,RJCNV_11.5_17.9,Which object did the person open after they sat at the table?,3,Sequence_T1_3739,Sequence_T1,The door.,The bag.,The laptop.,The book.,The book. 2786,RJCNV_3.2_17.9,Which object did the person open after they closed the door?,2,Sequence_T1_3740,Sequence_T1,The window.,The laptop.,The book.,The box.,The book. 2787,LW51F_0_17,Which object did the person close after they held the mirror?,2,Sequence_T1_3747,Sequence_T1,The window.,The box.,The book.,The door.,The book. 2788,LW51F_0_17,Which object did the person close after they washed the mirror?,3,Sequence_T1_3748,Sequence_T1,The window.,The door.,The dish.,The book.,The book. 2789,6QSON_9.5_24.3,Which object did the person open after they put down the cup/glass/bottle?,1,Sequence_T1_3761,Sequence_T1,The door.,The bag.,The book.,The laptop.,The bag. 2790,BE51K_0_19.8,Which object did the person sit on after they watched outside the window?,2,Sequence_T1_3768,Sequence_T1,The sofa/couch.,The table.,The bed.,The floor.,The bed. 2791,BE51K_0_19.8,Which object did the person sit on after they put down the bag?,2,Sequence_T1_3769,Sequence_T1,The table.,The sofa/couch.,The bed.,The floor.,The bed. 2792,2I871_0_16.6,Which object did the person take after they held the phone/camera?,0,Sequence_T1_3772,Sequence_T1,The bag.,The cup/glass/bottle.,The shoe.,The towel.,The bag. 2793,2I871_0_16.6,Which object did the person take after they lied on the floor?,0,Sequence_T1_3773,Sequence_T1,The bag.,The laptop.,The pillow.,The phone/camera.,The bag. 2794,S3FY2_0_31,Which object did the person throw after they put down the towel?,2,Sequence_T1_3782,Sequence_T1,The box.,The blanket.,The clothes.,The food.,The clothes. 2795,3FEYY_12_17.3,Which object did the person put down after they took the cup/glass/bottle?,0,Sequence_T1_3793,Sequence_T1,The towel.,The food.,The broom.,The shoe.,The towel. 2796,VPBIO_0.2_9.1,Which object did the person open after they put down the food?,0,Sequence_T1_3794,Sequence_T1,The bag.,The closet/cabinet.,The laptop.,The refrigerator.,The bag. 2797,EUJK0_17.1_26.6,Which object did the person take after they put down the laptop?,3,Sequence_T1_3808,Sequence_T1,The picture.,The cup/glass/bottle.,The blanket.,The book.,The book. 2798,8MLCU_4.4_14.4,Which object did the person open after they put down the box?,1,Sequence_T1_3831,Sequence_T1,The book.,The refrigerator.,The door.,The bag.,The refrigerator. 2799,34J80_2.9_26.6,Which object did the person take after they drank from the cup/glass/bottle?,0,Sequence_T1_3836,Sequence_T1,The food.,The phone/camera.,The towel.,The book.,The food. 2800,GLGQJ_19.5_29.3,Which object did the person close after they took the phone/camera?,2,Sequence_T1_3847,Sequence_T1,The laptop.,The door.,The window.,The closet/cabinet.,The window. 2801,GLGQJ_0_29.3,Which object did the person close after they washed the cup/glass/bottle?,1,Sequence_T1_3848,Sequence_T1,The clothes.,The window.,The box.,The door.,The window. 2802,TOOYI_4.6_19.1,Which object did the person close after they put down the towel?,2,Sequence_T1_3850,Sequence_T1,The door.,The window.,The box.,The book.,The box. 2803,TOOYI_1.6_19.1,Which object did the person close after they put down the blanket?,0,Sequence_T1_3852,Sequence_T1,The box.,The door.,The closet/cabinet.,The refrigerator.,The box. 2804,T2J3M_13.1_27.2,Which object did the person tidy up after they put down the clothes?,1,Sequence_T1_3893,Sequence_T1,The broom.,The closet/cabinet.,The blanket.,The towel.,The closet/cabinet. 2805,T2J3M_9.2_27.2,Which object did the person tidy up after they opened the door?,2,Sequence_T1_3894,Sequence_T1,The table.,The broom.,The closet/cabinet.,The bag.,The closet/cabinet. 2806,M52K2_39.1_45.6,Which object did the person put down after they took the bag?,2,Sequence_T1_3897,Sequence_T1,The dish.,The box.,The clothes.,The laptop.,The clothes. 2807,M52K2_1.7_22.8,Which object did the person put down after they sat on the floor?,0,Sequence_T1_3898,Sequence_T1,The food.,The picture.,The blanket.,The towel.,The food. 2808,XLR4B_5.3_30.9,Which object did the person sit at after they ate the sandwich?,3,Sequence_T1_3899,Sequence_T1,The bed.,The floor.,The medicine.,The table.,The table. 2809,XLR4B_0.1_30.9,Which object did the person sit at after they held the sandwich?,0,Sequence_T1_3900,Sequence_T1,The table.,The floor.,The blanket.,The sofa/couch.,The table. 2810,XLR4B_0.4_30.9,Which object did the person sit at after they held the food?,3,Sequence_T1_3901,Sequence_T1,The sofa/couch.,The floor.,The broom.,The table.,The table. 2811,GN912_16.6_21,Which object did the person eat after they took the dish?,1,Sequence_T1_3908,Sequence_T1,The medicine.,The sandwich.,The window.,The picture.,The sandwich. 2812,JCNHL_19.1_26.8,Which object did the person put down after they opened the box?,1,Sequence_T1_3915,Sequence_T1,The pillow.,The clothes.,The laptop.,The cup/glass/bottle.,The clothes. 2813,JCNHL_12_27.6,Which object did the person open after they threw the clothes?,0,Sequence_T1_3916,Sequence_T1,The box.,The bag.,The laptop.,The door.,The box. 2814,JCNHL_12.4_27.6,Which object did the person open after they held the clothes?,1,Sequence_T1_3917,Sequence_T1,The bag.,The box.,The door.,The closet/cabinet.,The box. 2815,QXT9W_10.7_24.2,Which object did the person open after they sat at the table?,2,Sequence_T1_3927,Sequence_T1,The refrigerator.,The window.,The book.,The door.,The book. 2816,CLW8L_0_13.1,Which object did the person take after they lied on the bed?,3,Sequence_T1_3945,Sequence_T1,The broom.,The picture.,The phone/camera.,The pillow.,The pillow. 2817,17RPG_24.1_33,Which object did the person eat after they threw the clothes?,2,Sequence_T1_3946,Sequence_T1,The dish.,The medicine.,The sandwich.,The food.,The sandwich. 2818,IBX56_0.9_19.1,Which object did the person tidy up after they ate the sandwich?,2,Sequence_T1_3959,Sequence_T1,The towel.,The closet/cabinet.,The clothes.,The medicine.,The clothes. 2819,IBX56_0_19.1,Which object did the person tidy up after they held the food?,1,Sequence_T1_3960,Sequence_T1,The pillow.,The clothes.,The blanket.,The closet/cabinet.,The clothes. 2820,IBX56_0_19.1,Which object did the person tidy up after they held the sandwich?,1,Sequence_T1_3961,Sequence_T1,The blanket.,The clothes.,The medicine.,The towel.,The clothes. 2821,HONL7_0_5.8,Which object did the person take after they lied on the floor?,3,Sequence_T1_3979,Sequence_T1,The blanket.,The bag.,The shoe.,The book.,The book. 2822,HONL7_0.1_11,Which object did the person put down after they took the book?,2,Sequence_T1_3980,Sequence_T1,The shoe.,The sandwich.,The paper/notebook.,The bag.,The paper/notebook. 2823,X9WTR_22.5_33,Which object did the person take after they sat on the sofa/couch?,3,Sequence_T1_4003,Sequence_T1,The phone/camera.,The towel.,The box.,The book.,The book. 2824,Y6ROG_0_17.2,Which object did the person take after they sat on the sofa/couch?,2,Sequence_T1_4004,Sequence_T1,The towel.,The phone/camera.,The bag.,The dish.,The bag. 2825,Y6ROG_0_17.2,Which object did the person take after they held the phone/camera?,0,Sequence_T1_4005,Sequence_T1,The bag.,The box.,The cup/glass/bottle.,The food.,The bag. 2826,QRWQ3_13_33.3,Which object did the person open after they put down the dish?,2,Sequence_T1_4014,Sequence_T1,The closet/cabinet.,The bag.,The box.,The laptop.,The box. 2827,AFTMI_13.5_37.8,Which object did the person take after they held the shoe?,3,Sequence_T1_4104,Sequence_T1,The phone/camera.,The towel.,The clothes.,The pillow.,The pillow. 2828,AFTMI_0_37.8,Which object did the person take after they sat on the sofa/couch?,0,Sequence_T1_4105,Sequence_T1,The pillow.,The laptop.,The book.,The clothes.,The pillow. 2829,969Z9_0_7.4,Which object did the person sit at after they held the phone/camera?,1,Sequence_T1_4106,Sequence_T1,The broom.,The table.,The bed.,The floor.,The table. 2830,IFQS1_6.1_13.3,Which object did the person put down after they washed the clothes?,0,Sequence_T1_4107,Sequence_T1,The blanket.,The broom.,The shoe.,The laptop.,The blanket. 2831,106AY_28.5_35,Which object did the person open after they held the food?,0,Sequence_T1_4142,Sequence_T1,The bag.,The laptop.,The window.,The box.,The bag. 2832,106AY_27.8_35,Which object did the person open after they took the food?,2,Sequence_T1_4144,Sequence_T1,The door.,The book.,The bag.,The refrigerator.,The bag. 2833,3EIRZ_0.2_11.3,Which object did the person tidy up after they ate the sandwich?,2,Sequence_T1_4146,Sequence_T1,The towel.,The closet/cabinet.,The clothes.,The medicine.,The clothes. 2834,5XKVP_3.1_9,Which object did the person throw after they tidied up the table?,1,Sequence_T1_4170,Sequence_T1,The food.,The blanket.,The broom.,The pillow.,The blanket. 2835,H51V5_10.8_18,Which object did the person take after they held the food?,0,Sequence_T1_4172,Sequence_T1,The dish.,The shoe.,The bag.,The phone/camera.,The dish. 2836,F0ZPW_22.6_31.3,Which object did the person take after they drank from the cup/glass/bottle?,3,Sequence_T1_4179,Sequence_T1,The food.,The blanket.,The bag.,The dish.,The dish. 2837,6JGXL_0_20.9,Which object did the person eat after they sat at the table?,1,Sequence_T1_4191,Sequence_T1,The phone/camera.,The medicine.,The sandwich.,The floor.,The medicine. 2838,GMMVC_10.6_17.4,Which object did the person put down after they closed the book?,3,Sequence_T1_4195,Sequence_T1,The food.,The phone/camera.,The laptop.,The paper/notebook.,The paper/notebook. 2839,3Z1YC_14.8_22.9,Which object did the person take after they held the broom?,1,Sequence_T1_4203,Sequence_T1,The cup/glass/bottle.,The bag.,The box.,The sandwich.,The bag. 2840,E0ZBC_0_38.1,Which object did the person take after they sat on the sofa/couch?,0,Sequence_T1_4204,Sequence_T1,The book.,The pillow.,The phone/camera.,The food.,The book. 2841,E0ZBC_0_38.1,Which object did the person take after they sat at the table?,1,Sequence_T1_4205,Sequence_T1,The broom.,The book.,The shoe.,The bag.,The book. 2842,81YUE_10.6_30.6,Which object did the person put down after they lied on the bed?,2,Sequence_T1_4220,Sequence_T1,The cup/glass/bottle.,The shoe.,The clothes.,The sandwich.,The clothes. 2843,D87LI_0_19.6,Which object did the person close after they sat at the table?,2,Sequence_T1_4222,Sequence_T1,The door.,The book.,The laptop.,The refrigerator.,The laptop. 2844,D87LI_0_19.6,Which object did the person close after they sat on the sofa/couch?,1,Sequence_T1_4223,Sequence_T1,The closet/cabinet.,The laptop.,The book.,The door.,The laptop. 2845,AK9IB_24.3_31.4,Which object did the person put down after they opened the box?,0,Sequence_T1_4225,Sequence_T1,The shoe.,The food.,The phone/camera.,The dish.,The shoe. 2846,AK9IB_24.5_35,Which object did the person close after they put down the shoe?,0,Sequence_T1_4226,Sequence_T1,The box.,The door.,The refrigerator.,The laptop.,The box. 2847,VWAEL_7.6_30.5,Which object did the person take after they held the phone/camera?,1,Sequence_T1_4228,Sequence_T1,The pillow.,The box.,The cup/glass/bottle.,The picture.,The box. 2848,330ZE_0_9.8,Which object did the person tidy up after they put down the food?,0,Sequence_T1_4238,Sequence_T1,The table.,The clothes.,The closet/cabinet.,The phone/camera.,The table. 2849,330ZE_0_9.8,Which object did the person tidy up after they held the food?,1,Sequence_T1_4239,Sequence_T1,The book.,The table.,The towel.,The broom.,The table. 2850,2RTH2_0_17,Which object did the person put down after they tidied up the table?,2,Sequence_T1_4301,Sequence_T1,The box.,The paper/notebook.,The towel.,The cup/glass/bottle.,The towel. 2851,HNPC8_0_11.9,Which object did the person close after they held the dish?,0,Sequence_T1_4305,Sequence_T1,The closet/cabinet.,The laptop.,The window.,The box.,The closet/cabinet. 2852,HNPC8_0_11.9,Which object did the person close after they put down the dish?,2,Sequence_T1_4306,Sequence_T1,The book.,The window.,The closet/cabinet.,The door.,The closet/cabinet. 2853,VT64S_4.9_16.6,Which object did the person open after they held the food?,2,Sequence_T1_4329,Sequence_T1,The box.,The book.,The bag.,The window.,The bag. 2854,R9NRA_19.4_32,Which object did the person lie on after they put down the cup/glass/bottle?,2,Sequence_T1_4338,Sequence_T1,The broom.,The floor.,The sofa/couch.,The bed.,The sofa/couch. 2855,R9NRA_0_16,Which object did the person take after they sat on the sofa/couch?,1,Sequence_T1_4339,Sequence_T1,The laptop.,The dish.,The cup/glass/bottle.,The food.,The dish. 2856,8IPWO_1.8_14.4,Which object did the person open after they drank from the cup/glass/bottle?,3,Sequence_T1_4372,Sequence_T1,The door.,The refrigerator.,The window.,The book.,The book. 2857,2ZXJ5_7.5_18,Which object did the person put down after they sat on the sofa/couch?,3,Sequence_T1_4373,Sequence_T1,The book.,The dish.,The box.,The pillow.,The pillow. 2858,2ZXJ5_5.7_12.7,Which object did the person sit on after they put down the cup/glass/bottle?,3,Sequence_T1_4374,Sequence_T1,The table.,The floor.,The broom.,The sofa/couch.,The sofa/couch. 2859,QJXNG_0_17.3,Which object did the person take after they held the phone/camera?,1,Sequence_T1_4420,Sequence_T1,The towel.,The bag.,The picture.,The dish.,The bag. 2860,QJXNG_0_17.3,Which object did the person take after they sat on the bed?,0,Sequence_T1_4421,Sequence_T1,The bag.,The pillow.,The picture.,The laptop.,The bag. 2861,9LHP3_2.1_12.3,Which object did the person sit on after they put down the shoe?,0,Sequence_T1_4449,Sequence_T1,The sofa/couch.,The bed.,The picture.,The table.,The sofa/couch. 2862,9LHP3_2.1_12.3,Which object did the person sit on after they took the shoe?,0,Sequence_T1_4450,Sequence_T1,The sofa/couch.,The bed.,The blanket.,The table.,The sofa/couch. 2863,9LHP3_5_12.3,Which object did the person sit on after they held the shoe?,3,Sequence_T1_4451,Sequence_T1,The table.,The floor.,The food.,The sofa/couch.,The sofa/couch. 2864,DHR83_0_5.4,Which object did the person put down after they held the sandwich?,0,Sequence_T1_4467,Sequence_T1,The paper/notebook.,The dish.,The clothes.,The cup/glass/bottle.,The paper/notebook. 2865,DHR83_0_5.4,Which object did the person put down after they ate the sandwich?,0,Sequence_T1_4468,Sequence_T1,The paper/notebook.,The book.,The food.,The picture.,The paper/notebook. 2866,DHR83_0_5.4,Which object did the person put down after they held the food?,2,Sequence_T1_4469,Sequence_T1,The broom.,The clothes.,The paper/notebook.,The pillow.,The paper/notebook. 2867,XPDI1_0_10,Which object did the person put down after they drank from the cup/glass/bottle?,0,Sequence_T1_4518,Sequence_T1,The dish.,The box.,The shoe.,The paper/notebook.,The dish. 2868,RAQNI_0_16.2,Which object did the person tidy up after they held the clothes?,1,Sequence_T1_4531,Sequence_T1,The table.,The blanket.,The towel.,The closet/cabinet.,The blanket. 2869,9B93K_1.8_10.4,Which object did the person take after they held the food?,2,Sequence_T1_4586,Sequence_T1,The cup/glass/bottle.,The book.,The sandwich.,The dish.,The sandwich. 2870,VGAMG_4_15.6,Which object did the person put down after they took the cup/glass/bottle?,3,Sequence_T1_4615,Sequence_T1,The sandwich.,The clothes.,The laptop.,The dish.,The dish. 2871,4P13T_4.4_17,Which object did the person put down after they opened the bag?,3,Sequence_T1_4623,Sequence_T1,The pillow.,The box.,The sandwich.,The book.,The book. 2872,4P13T_0_17,Which object did the person put down after they took the bag?,1,Sequence_T1_4624,Sequence_T1,The box.,The book.,The food.,The towel.,The book. 2873,U0X4P_0_30.8,Which object did the person throw after they watched outside the window?,2,Sequence_T1_4637,Sequence_T1,The blanket.,The towel.,The clothes.,The box.,The clothes. 2874,G87XG_8.7_22.5,Which object did the person put down after they sat at the table?,0,Sequence_T1_4662,Sequence_T1,The book.,The broom.,The food.,The cup/glass/bottle.,The book. 2875,EBTD6_2.5_18.6,Which object did the person take after they opened the door?,2,Sequence_T1_4681,Sequence_T1,The clothes.,The cup/glass/bottle.,The sandwich.,The phone/camera.,The sandwich. 2876,EBTD6_14.2_25.8,Which object did the person put down after they took the food?,0,Sequence_T1_4683,Sequence_T1,The sandwich.,The towel.,The dish.,The phone/camera.,The sandwich. 2877,AS7SG_18.8_31,Which object did the person open after they ate the sandwich?,3,Sequence_T1_4717,Sequence_T1,The refrigerator.,The door.,The box.,The laptop.,The laptop. 2878,AS7SG_3.6_23.9,Which object did the person put down after they ate the sandwich?,3,Sequence_T1_4718,Sequence_T1,The broom.,The food.,The cup/glass/bottle.,The laptop.,The laptop. 2879,AS7SG_0_23.9,Which object did the person put down after they held the sandwich?,0,Sequence_T1_4719,Sequence_T1,The laptop.,The food.,The cup/glass/bottle.,The phone/camera.,The laptop. 2880,AS7SG_0_23.9,Which object did the person put down after they held the food?,0,Sequence_T1_4720,Sequence_T1,The laptop.,The cup/glass/bottle.,The dish.,The bag.,The laptop. 2881,4G00A_18.9_31.1,Which object did the person take after they put down the cup/glass/bottle?,3,Sequence_T1_4737,Sequence_T1,The phone/camera.,The bag.,The shoe.,The broom.,The broom. 2882,05WY6_0_31,Which object did the person put down after they sat on the sofa/couch?,1,Sequence_T1_4745,Sequence_T1,The sandwich.,The towel.,The dish.,The shoe.,The towel. 2883,B57IW_4.2_17.1,Which object did the person take after they opened the door?,0,Sequence_T1_4764,Sequence_T1,The phone/camera.,The picture.,The broom.,The clothes.,The phone/camera. 2884,8W31Y_0_7.2,Which object did the person take after they lied on the bed?,3,Sequence_T1_4775,Sequence_T1,The dish.,The phone/camera.,The cup/glass/bottle.,The food.,The food. 2885,MVPQF_0.1_10.7,Which object did the person put down after they opened the closet/cabinet?,3,Sequence_T1_4794,Sequence_T1,The book.,The broom.,The phone/camera.,The bag.,The bag. 2886,G4NOT_0_28.3,Which object did the person close after they held the phone/camera?,2,Sequence_T1_4834,Sequence_T1,The window.,The refrigerator.,The door.,The closet/cabinet.,The door. 2887,9K2TY_19.2_32,Which object did the person throw after they put down the blanket?,2,Sequence_T1_4872,Sequence_T1,The clothes.,The box.,The towel.,The picture.,The towel. 2888,BDWIX_11.3_22.2,Which object did the person put down after they held the clothes?,3,Sequence_T1_4883,Sequence_T1,The towel.,The laptop.,The shoe.,The blanket.,The blanket. 2889,BDWIX_10.2_22.2,Which object did the person put down after they threw the clothes?,2,Sequence_T1_4884,Sequence_T1,The towel.,The shoe.,The blanket.,The picture.,The blanket. 2890,BDWIX_9.8_22.2,Which object did the person put down after they washed the clothes?,0,Sequence_T1_4885,Sequence_T1,The blanket.,The bag.,The shoe.,The laptop.,The blanket. 2891,BDWIX_8.6_22.2,Which object did the person put down after they took the towel?,2,Sequence_T1_4886,Sequence_T1,The cup/glass/bottle.,The sandwich.,The blanket.,The bag.,The blanket. 2892,SPUPH_6.1_11.4,Which object did the person take after they held the food?,1,Sequence_T1_4895,Sequence_T1,The box.,The sandwich.,The clothes.,The phone/camera.,The sandwich. 2893,92UB5_0_32,Which object did the person put down after they sat at the table?,1,Sequence_T1_4941,Sequence_T1,The picture.,The pillow.,The bag.,The clothes.,The pillow. 2894,92UB5_0_32,Which object did the person put down after they watched at the book?,1,Sequence_T1_4942,Sequence_T1,The towel.,The pillow.,The broom.,The paper/notebook.,The pillow. 2895,K47J5_0_28.8,Which object did the person put down after they held the phone/camera?,0,Sequence_T1_4945,Sequence_T1,The dish.,The paper/notebook.,The box.,The cup/glass/bottle.,The dish. 2896,K47J5_14.2_28.8,Which object did the person put down after they ate the medicine?,2,Sequence_T1_4946,Sequence_T1,The cup/glass/bottle.,The sandwich.,The dish.,The broom.,The dish. 2897,K47J5_13.1_28.8,Which object did the person put down after they held the medicine?,0,Sequence_T1_4947,Sequence_T1,The dish.,The sandwich.,The shoe.,The blanket.,The dish. 2898,2RRSO_0_10.6,Which object did the person wash after they held the sandwich?,3,Sequence_T1_4963,Sequence_T1,The dish.,The phone/camera.,The table.,The clothes.,The clothes. 2899,KO80I_0_23.1,Which object did the person put down after they held the phone/camera?,1,Sequence_T1_4964,Sequence_T1,The dish.,The pillow.,The cup/glass/bottle.,The paper/notebook.,The pillow. 2900,KO80I_0_23.1,Which object did the person put down after they sat on the floor?,1,Sequence_T1_4965,Sequence_T1,The phone/camera.,The pillow.,The food.,The sandwich.,The pillow. 2901,RZY2I_4_10,Which object did the person open after they took the bag?,2,Sequence_T1_4973,Sequence_T1,The door.,The closet/cabinet.,The window.,The bag.,The window. 2902,MCNRZ_15_22.7,Which object did the person take after they drank from the cup/glass/bottle?,0,Sequence_T1_4978,Sequence_T1,The dish.,The picture.,The bag.,The food.,The dish. 2903,NLWBW_0_8.5,Which object did the person put down after they closed the door?,0,Sequence_T1_5008,Sequence_T1,The bag.,The box.,The blanket.,The laptop.,The bag. 2904,D7KU2_0_14.1,Which object did the person put down after they sat on the floor?,3,Sequence_T1_5009,Sequence_T1,The shoe.,The sandwich.,The bag.,The broom.,The broom. 2905,OA6XR_0_22.5,Which object did the person put down after they held the book?,2,Sequence_T1_5033,Sequence_T1,The laptop.,The clothes.,The blanket.,The paper/notebook.,The blanket. 2906,3064K_0_8.1,Which object did the person tidy up after they sat on the sofa/couch?,2,Sequence_T1_5035,Sequence_T1,The broom.,The towel.,The blanket.,The clothes.,The blanket. 2907,8J723_0_35.5,Which object did the person open after they held the broom?,1,Sequence_T1_5043,Sequence_T1,The closet/cabinet.,The window.,The refrigerator.,The bag.,The window. 2908,3MLVF_15.5_21.2,Which object did the person close after they took the cup/glass/bottle?,3,Sequence_T1_5048,Sequence_T1,The window.,The box.,The closet/cabinet.,The refrigerator.,The refrigerator. 2909,HOZ76_0_25,Which object did the person take after they sat at the table?,1,Sequence_T1_5069,Sequence_T1,The box.,The book.,The food.,The shoe.,The book. 2910,EK19H_3.8_17.6,Which object did the person put down after they held the dish?,2,Sequence_T1_5076,Sequence_T1,The clothes.,The book.,The sandwich.,The cup/glass/bottle.,The sandwich. 2911,EK19H_4.2_17.6,Which object did the person put down after they held the food?,1,Sequence_T1_5077,Sequence_T1,The dish.,The sandwich.,The bag.,The clothes.,The sandwich. 2912,FRLW2_8.6_32,Which object did the person throw after they put down the bag?,2,Sequence_T1_5085,Sequence_T1,The towel.,The blanket.,The shoe.,The pillow.,The shoe. 2913,86GSE_9.6_20,Which object did the person sit on after they took the shoe?,2,Sequence_T1_5173,Sequence_T1,The table.,The floor.,The sofa/couch.,The paper/notebook.,The sofa/couch. 2914,9J166_0_17.5,Which object did the person open after they held the book?,2,Sequence_T1_5180,Sequence_T1,The bag.,The door.,The window.,The closet/cabinet.,The window. 2915,9J166_0_17.5,Which object did the person open after they watched at the book?,3,Sequence_T1_5181,Sequence_T1,The door.,The bag.,The refrigerator.,The window.,The window. 2916,V9XR6_0_20,Which object did the person lie on after they sat at the table?,2,Sequence_T1_5185,Sequence_T1,The floor.,The sofa/couch.,The bed.,The phone/camera.,The bed. 2917,Y5ZU3_0_22.1,Which object did the person take after they sat on the floor?,3,Sequence_T1_5212,Sequence_T1,The pillow.,The bag.,The clothes.,The broom.,The broom. 2918,Y5ZU3_0_22.1,Which object did the person take after they put down the paper/notebook?,0,Sequence_T1_5213,Sequence_T1,The broom.,The food.,The picture.,The cup/glass/bottle.,The broom. 2919,EXPOA_12.3_27.3,Which object did the person put down after they sat at the table?,2,Sequence_T1_5225,Sequence_T1,The book.,The food.,The clothes.,The picture.,The clothes. 2920,EXPOA_0.3_27.3,Which object did the person put down after they drank from the cup/glass/bottle?,0,Sequence_T1_5226,Sequence_T1,The clothes.,The food.,The sandwich.,The dish.,The clothes. 2921,0F453_0.3_20,Which object did the person take after they held the phone/camera?,3,Sequence_T1_5233,Sequence_T1,The pillow.,The shoe.,The food.,The paper/notebook.,The paper/notebook. 2922,0F453_0.3_20,Which object did the person take after they opened the refrigerator?,1,Sequence_T1_5234,Sequence_T1,The dish.,The paper/notebook.,The towel.,The picture.,The paper/notebook. 2923,5JSFE_19.6_29,Which object did the person take after they opened the door?,1,Sequence_T1_5242,Sequence_T1,The food.,The paper/notebook.,The clothes.,The cup/glass/bottle.,The paper/notebook. 2924,M506V_0_17.8,Which object did the person throw after they held the laptop?,3,Sequence_T1_5288,Sequence_T1,The bag.,The pillow.,The box.,The towel.,The towel. 2925,M506V_6.4_17.8,Which object did the person throw after they washed the table?,2,Sequence_T1_5289,Sequence_T1,The mirror.,The book.,The towel.,The bag.,The towel. 2926,1ZBUS_4.5_10.8,Which object did the person sit at after they opened the bag?,3,Sequence_T1_5292,Sequence_T1,The bed.,The floor.,The refrigerator.,The table.,The table. 2927,YLE12_0_9.6,Which object did the person take after they tidied up the table?,1,Sequence_T1_5300,Sequence_T1,The broom.,The paper/notebook.,The phone/camera.,The dish.,The paper/notebook. 2928,I4N6K_14.9_24.3,Which object did the person take after they tidied up the table?,0,Sequence_T1_5307,Sequence_T1,The book.,The broom.,The bag.,The clothes.,The book. 2929,M2XIS_0_7.4,Which object did the person sit on after they put down the laptop?,0,Sequence_T1_5308,Sequence_T1,The sofa/couch.,The paper/notebook.,The floor.,The bed.,The sofa/couch. 2930,M2XIS_0_7.4,Which object did the person sit on after they held the laptop?,2,Sequence_T1_5309,Sequence_T1,The food.,The bed.,The sofa/couch.,The floor.,The sofa/couch. 2931,M2XIS_2.7_9.4,Which object did the person open after they sat on the sofa/couch?,0,Sequence_T1_5310,Sequence_T1,The laptop.,The window.,The closet/cabinet.,The book.,The laptop. 2932,9A58F_2.9_10.9,Which object did the person take after they threw the shoe?,2,Sequence_T1_5311,Sequence_T1,The phone/camera.,The box.,The laptop.,The towel.,The laptop. 2933,024PD_0_10.6,Which object did the person put down after they held the phone/camera?,0,Sequence_T1_5337,Sequence_T1,The book.,The cup/glass/bottle.,The sandwich.,The box.,The book. 2934,VTIUW_0_15.8,Which object did the person take after they sat at the table?,0,Sequence_T1_5359,Sequence_T1,The phone/camera.,The book.,The cup/glass/bottle.,The food.,The phone/camera. 2935,P2UBC_10.8_21.8,Which object did the person take after they opened the door?,0,Sequence_T1_5364,Sequence_T1,The shoe.,The clothes.,The cup/glass/bottle.,The laptop.,The shoe. 2936,P2UBC_6_21.8,Which object did the person take after they sat on the sofa/couch?,2,Sequence_T1_5365,Sequence_T1,The picture.,The towel.,The shoe.,The laptop.,The shoe. 2937,CII5H_2.1_14.7,Which object did the person tidy up after they opened the door?,2,Sequence_T1_5393,Sequence_T1,The refrigerator.,The closet/cabinet.,The clothes.,The towel.,The clothes. 2938,75RPN_3.8_16.8,Which object did the person take after they held the blanket?,1,Sequence_T1_5402,Sequence_T1,The food.,The pillow.,The laptop.,The towel.,The pillow. 2939,IXISD_0_15.6,Which object did the person put down after they sat on the sofa/couch?,1,Sequence_T1_5437,Sequence_T1,The dish.,The shoe.,The box.,The paper/notebook.,The shoe. 2940,OB1XO_0_7.2,Which object did the person take after they sat on the bed?,1,Sequence_T1_5444,Sequence_T1,The broom.,The clothes.,The blanket.,The food.,The clothes. 2941,4U52R_1.4_15,Which object did the person put down after they tidied up the clothes?,1,Sequence_T1_5461,Sequence_T1,The shoe.,The box.,The towel.,The blanket.,The box. 2942,6N7G6_0_7.3,Which object did the person sit at after they held the food?,3,Sequence_T1_5476,Sequence_T1,The blanket.,The sofa/couch.,The floor.,The table.,The table. 2943,6N7G6_0_7.3,Which object did the person sit at after they took the food?,0,Sequence_T1_5477,Sequence_T1,The table.,The bed.,The floor.,The pillow.,The table. 2944,M1GW9_3.8_23.5,Which object did the person throw after they opened the door?,3,Sequence_T1_5506,Sequence_T1,The towel.,The box.,The book.,The pillow.,The pillow. 2945,EO6OI_3.9_10.6,Which object did the person put down after they tidied up the towel?,0,Sequence_T1_5531,Sequence_T1,The blanket.,The pillow.,The food.,The clothes.,The blanket. 2946,EO6OI_13.6_27.6,Which object did the person wash after they took the towel?,3,Sequence_T1_5534,Sequence_T1,The window.,The mirror.,The cup/glass/bottle.,The table.,The table. 2947,EO6OI_13.6_27.6,Which object did the person wash after they held the clothes?,0,Sequence_T1_5536,Sequence_T1,The table.,The dish.,The sandwich.,The cup/glass/bottle.,The table. 2948,EO6OI_23.8_38.9,Which object did the person take after they put down the clothes?,3,Sequence_T1_5537,Sequence_T1,The pillow.,The paper/notebook.,The food.,The broom.,The broom. 2949,L7HA6_15_32.9,Which object did the person put down after they drank from the cup/glass/bottle?,1,Sequence_T1_5538,Sequence_T1,The clothes.,The phone/camera.,The dish.,The broom.,The phone/camera. 2950,8G9A9_3.4_11.9,Which object did the person put down after they held the laptop?,3,Sequence_T1_5569,Sequence_T1,The box.,The picture.,The blanket.,The phone/camera.,The phone/camera. 2951,8G9A9_1.9_11.9,Which object did the person put down after they took the laptop?,1,Sequence_T1_5572,Sequence_T1,The sandwich.,The phone/camera.,The cup/glass/bottle.,The bag.,The phone/camera. 2952,A0ZW3_0_26.2,Which object did the person open after they lied on the floor?,0,Sequence_T1_5595,Sequence_T1,The laptop.,The box.,The book.,The door.,The laptop. 2953,A0ZW3_17.3_26.2,Which object did the person open after they sat on the floor?,2,Sequence_T1_5596,Sequence_T1,The book.,The bag.,The laptop.,The box.,The laptop. 2954,L8Y8D_43.7_56,Which object did the person close after they drank from the cup/glass/bottle?,2,Sequence_T1_5608,Sequence_T1,The door.,The book.,The refrigerator.,The laptop.,The refrigerator. 2955,6VF2L_14.3_30.9,Which object did the person take after they drank from the cup/glass/bottle?,1,Sequence_T1_5615,Sequence_T1,The dish.,The blanket.,The food.,The pillow.,The blanket. 2956,F6A4W_2.4_15.8,Which object did the person throw after they drank from the cup/glass/bottle?,0,Sequence_T1_5670,Sequence_T1,The shoe.,The bag.,The food.,The clothes.,The shoe. 2957,F6A4W_4.3_15.8,Which object did the person throw after they drank from the cup/glass/bottle?,1,Sequence_T1_5671,Sequence_T1,The bag.,The shoe.,The clothes.,The blanket.,The shoe. 2958,F6A4W_8_28,Which object did the person put down after they took the shoe?,3,Sequence_T1_5672,Sequence_T1,The pillow.,The book.,The clothes.,The dish.,The dish. 2959,F6A4W_0_15.8,Which object did the person throw after they held the dish?,2,Sequence_T1_5673,Sequence_T1,The pillow.,The food.,The shoe.,The book.,The shoe. 2960,99XHN_0_28,Which object did the person put down after they held the food?,3,Sequence_T1_5676,Sequence_T1,The broom.,The sandwich.,The laptop.,The dish.,The dish. 2961,WBATR_26.1_34,Which object did the person take after they put down the food?,0,Sequence_T1_5687,Sequence_T1,The clothes.,The shoe.,The sandwich.,The cup/glass/bottle.,The clothes. 2962,KFC28_0.7_35,Which object did the person close after they took the shoe?,0,Sequence_T1_5698,Sequence_T1,The closet/cabinet.,The box.,The window.,The door.,The closet/cabinet. 2963,KFC28_0.4_35,Which object did the person close after they sat at the table?,0,Sequence_T1_5699,Sequence_T1,The closet/cabinet.,The book.,The door.,The box.,The closet/cabinet. 2964,YVH4J_33_45.9,Which object did the person take after they opened the bag?,0,Sequence_T1_5701,Sequence_T1,The paper/notebook.,The blanket.,The phone/camera.,The dish.,The paper/notebook. 2965,8DL54_17.1_27.8,Which object did the person close after they put down the dish?,3,Sequence_T1_5707,Sequence_T1,The window.,The door.,The closet/cabinet.,The refrigerator.,The refrigerator. 2966,PHH6B_14.8_25.3,Which object did the person put down after they took the cup/glass/bottle?,1,Sequence_T1_5710,Sequence_T1,The box.,The sandwich.,The picture.,The dish.,The sandwich. 2967,CSLEP_0_13.2,Which object did the person take after they lied on the bed?,0,Sequence_T1_5716,Sequence_T1,The clothes.,The laptop.,The dish.,The cup/glass/bottle.,The clothes. 2968,HFTEO_0_11.8,Which object did the person tidy up after they lied on the floor?,2,Sequence_T1_5731,Sequence_T1,The broom.,The bed.,The clothes.,The closet/cabinet.,The clothes. 2969,8VWV2_6.9_58.3,Which object did the person put down after they took the food?,2,Sequence_T1_5736,Sequence_T1,The box.,The cup/glass/bottle.,The dish.,The picture.,The dish. 2970,8VWV2_0_7.3,Which object did the person sit at after they sat on the floor?,3,Sequence_T1_5737,Sequence_T1,The bed.,The sofa/couch.,The floor.,The table.,The table. 2971,BLIFO_1_10.8,Which object did the person tidy up after they opened the closet/cabinet?,2,Sequence_T1_5744,Sequence_T1,The refrigerator.,The blanket.,The towel.,The clothes.,The towel. 2972,J84TZ_0_21,Which object did the person take after they lied on the sofa/couch?,2,Sequence_T1_5750,Sequence_T1,The dish.,The pillow.,The blanket.,The food.,The blanket. 2973,A5XR5_0_19.4,Which object did the person take after they sat at the table?,3,Sequence_T1_5772,Sequence_T1,The blanket.,The shoe.,The cup/glass/bottle.,The food.,The food. 2974,RKGG5_6_11.5,Which object did the person take after they threw the broom?,3,Sequence_T1_5783,Sequence_T1,The food.,The shoe.,The phone/camera.,The pillow.,The pillow. 2975,RKGG5_7_21,Which object did the person lie on after they held the pillow?,1,Sequence_T1_5784,Sequence_T1,The bed.,The sofa/couch.,The floor.,The dish.,The sofa/couch. 2976,RKGG5_7_21,Which object did the person lie on after they took the pillow?,1,Sequence_T1_5785,Sequence_T1,The bed.,The sofa/couch.,The broom.,The floor.,The sofa/couch. 2977,RKGG5_0_10.7,Which object did the person throw after they sat on the sofa/couch?,3,Sequence_T1_5786,Sequence_T1,The shoe.,The box.,The bag.,The broom.,The broom. 2978,AXS82_13.7_31,Which object did the person open after they closed the book?,0,Sequence_T1_5848,Sequence_T1,The refrigerator.,The door.,The window.,The closet/cabinet.,The refrigerator. 2979,AXS82_18.1_31,Which object did the person open after they held the sandwich?,1,Sequence_T1_5849,Sequence_T1,The laptop.,The refrigerator.,The window.,The bag.,The refrigerator. 2980,NE37I_0_22.2,Which object did the person take after they put down the food?,1,Sequence_T1_5858,Sequence_T1,The phone/camera.,The pillow.,The broom.,The bag.,The pillow. 2981,NE37I_0_22.2,Which object did the person take after they held the dish?,2,Sequence_T1_5859,Sequence_T1,The sandwich.,The bag.,The pillow.,The food.,The pillow. 2982,IWK2Y_0.4_11,Which object did the person take after they watched at the picture?,2,Sequence_T1_5871,Sequence_T1,The towel.,The laptop.,The pillow.,The book.,The pillow. 2983,6KIA4_0_24,Which object did the person wash after they took the dish?,0,Sequence_T1_5879,Sequence_T1,The table.,The dish.,The pillow.,The mirror.,The table. 2984,J4RPL_16.5_26.8,Which object did the person take after they put down the paper/notebook?,2,Sequence_T1_5882,Sequence_T1,The bag.,The blanket.,The towel.,The picture.,The towel. 2985,J4RPL_0_22.5,Which object did the person put down after they sat at the table?,0,Sequence_T1_5883,Sequence_T1,The paper/notebook.,The food.,The sandwich.,The laptop.,The paper/notebook. 2986,JOYAJ_6.7_19.4,Which object did the person close after they opened the door?,1,Sequence_T1_5927,Sequence_T1,The bag.,The refrigerator.,The laptop.,The closet/cabinet.,The refrigerator. 2987,JOYAJ_9.1_19.4,Which object did the person close after they held the food?,2,Sequence_T1_5928,Sequence_T1,The laptop.,The closet/cabinet.,The refrigerator.,The book.,The refrigerator. 2988,55AH5_0_21.8,Which object did the person lie on after they opened the door?,3,Sequence_T1_5937,Sequence_T1,The bed.,The floor.,The window.,The sofa/couch.,The sofa/couch. 2989,55AH5_5.5_21.8,Which object did the person lie on after they held the food?,2,Sequence_T1_5938,Sequence_T1,The bed.,The medicine.,The sofa/couch.,The floor.,The sofa/couch. 2990,L58KN_0_13.6,Which object did the person put down after they tidied up the clothes?,1,Sequence_T1_5939,Sequence_T1,The shoe.,The towel.,The picture.,The dish.,The towel. 2991,M5UQR_0_19.7,Which object did the person put down after they held the mirror?,3,Sequence_T1_5940,Sequence_T1,The sandwich.,The bag.,The towel.,The phone/camera.,The phone/camera. 2992,937EW_13.9_33,Which object did the person tidy up after they watched at the picture?,3,Sequence_T1_5943,Sequence_T1,The table.,The clothes.,The blanket.,The closet/cabinet.,The closet/cabinet. 2993,937EW_7.8_33,Which object did the person tidy up after they held the clothes?,1,Sequence_T1_5944,Sequence_T1,The towel.,The closet/cabinet.,The table.,The blanket.,The closet/cabinet. 2994,937EW_6.7_33,Which object did the person tidy up after they took the clothes?,3,Sequence_T1_5945,Sequence_T1,The clothes.,The paper/notebook.,The broom.,The closet/cabinet.,The closet/cabinet. 2995,I562C_13.8_19.9,Which object did the person take after they sat at the table?,2,Sequence_T1_5950,Sequence_T1,The pillow.,The phone/camera.,The dish.,The laptop.,The dish. 2996,I562C_8.6_19.9,Which object did the person take after they closed the door?,1,Sequence_T1_5951,Sequence_T1,The pillow.,The dish.,The paper/notebook.,The laptop.,The dish. 2997,GPR89_0_56.9,Which object did the person put down after they tidied up the table?,0,Sequence_T1_5959,Sequence_T1,The paper/notebook.,The food.,The cup/glass/bottle.,The book.,The paper/notebook. 2998,GPR89_42.6_56.9,Which object did the person put down after they took the book?,2,Sequence_T1_5960,Sequence_T1,The bag.,The dish.,The paper/notebook.,The box.,The paper/notebook. 2999,QEV60_0_8.5,Which object did the person put down after they sat on the floor?,2,Sequence_T1_5972,Sequence_T1,The clothes.,The food.,The pillow.,The phone/camera.,The pillow. 3000,9OMY1_0_6.3,Which object did the person open after they sat at the table?,2,Sequence_T1_5988,Sequence_T1,The door.,The refrigerator.,The box.,The book.,The box. 3001,9OMY1_1.2_28,Which object did the person sit on after they opened the box?,2,Sequence_T1_5989,Sequence_T1,The closet/cabinet.,The floor.,The sofa/couch.,The table.,The sofa/couch. 3002,JLGLU_0_22.9,Which object did the person take after they opened the door?,0,Sequence_T1_5990,Sequence_T1,The towel.,The pillow.,The food.,The cup/glass/bottle.,The towel. 3003,F24GU_1.1_18.7,Which object did the person lie on after they watched outside the window?,3,Sequence_T1_5992,Sequence_T1,The bed.,The blanket.,The sofa/couch.,The floor.,The floor. 3004,IZ2XX_2.9_14.2,Which object did the person put down after they closed the door?,3,Sequence_T1_5994,Sequence_T1,The broom.,The towel.,The clothes.,The book.,The book. 3005,KONWE_10_22.5,Which object did the person throw after they sat on the bed?,0,Sequence_T1_5997,Sequence_T1,The pillow.,The box.,The clothes.,The bag.,The pillow. 3006,1HGEX_0_21.1,Which object did the person take after they sat at the table?,0,Sequence_T1_6017,Sequence_T1,The book.,The laptop.,The food.,The clothes.,The book. 3007,2GQDN_3.3_9,Which object did the person open after they took the food?,0,Sequence_T1_6039,Sequence_T1,The box.,The book.,The closet/cabinet.,The window.,The box. 3008,QPX3S_0_11.4,Which object did the person put down after they watched outside the window?,3,Sequence_T1_6057,Sequence_T1,The pillow.,The box.,The bag.,The food.,The food. 3009,RBC8N_2.5_25.2,Which object did the person take after they put down the food?,0,Sequence_T1_6060,Sequence_T1,The pillow.,The phone/camera.,The shoe.,The sandwich.,The pillow. 3010,KFGXC_0_17.7,Which object did the person put down after they held the dish?,2,Sequence_T1_6073,Sequence_T1,The cup/glass/bottle.,The paper/notebook.,The food.,The phone/camera.,The food. 3011,IU5TH_12.2_19,Which object did the person open after they took the sandwich?,0,Sequence_T1_6093,Sequence_T1,The bag.,The closet/cabinet.,The window.,The book.,The bag. 3012,M1TZR_1.4_30.2,Which object did the person put down after they held the dish?,2,Sequence_T1_6129,Sequence_T1,The food.,The towel.,The sandwich.,The broom.,The sandwich. 3013,M1TZR_2.7_30.2,Which object did the person put down after they held the dish?,0,Sequence_T1_6130,Sequence_T1,The sandwich.,The blanket.,The towel.,The cup/glass/bottle.,The sandwich. 3014,UDAQU_0_20.4,Which object did the person put down after they sat on the floor?,2,Sequence_T1_6159,Sequence_T1,The box.,The cup/glass/bottle.,The sandwich.,The pillow.,The sandwich. 3015,UDAQU_0_20.4,Which object did the person put down after they held the food?,0,Sequence_T1_6160,Sequence_T1,The sandwich.,The picture.,The pillow.,The cup/glass/bottle.,The sandwich. 3016,9M5UE_0_16.9,Which object did the person take after they held the phone/camera?,2,Sequence_T1_6173,Sequence_T1,The laptop.,The food.,The dish.,The paper/notebook.,The dish. 3017,9M5UE_11.1_16.9,Which object did the person take after they drank from the cup/glass/bottle?,0,Sequence_T1_6174,Sequence_T1,The dish.,The box.,The book.,The phone/camera.,The dish. 3018,9M5UE_0_16.9,Which object did the person take after they sat at the table?,3,Sequence_T1_6175,Sequence_T1,The picture.,The shoe.,The bag.,The dish.,The dish. 3019,R74DE_17.2_24.3,Which object did the person take after they put down the blanket?,3,Sequence_T1_6177,Sequence_T1,The sandwich.,The phone/camera.,The bag.,The pillow.,The pillow. 3020,Q6WH2_32.8_36,Which object did the person put down after they watched at the book?,0,Sequence_T1_6189,Sequence_T1,The food.,The box.,The paper/notebook.,The dish.,The food. 3021,Q6WH2_0_36,Which object did the person open after they ate the sandwich?,3,Sequence_T1_6190,Sequence_T1,The refrigerator.,The door.,The closet/cabinet.,The book.,The book. 3022,Q6WH2_29.5_36,Which object did the person put down after they opened the book?,1,Sequence_T1_6191,Sequence_T1,The cup/glass/bottle.,The food.,The box.,The paper/notebook.,The food. 3023,Q6WH2_0_36,Which object did the person open after they held the food?,1,Sequence_T1_6192,Sequence_T1,The closet/cabinet.,The book.,The door.,The bag.,The book. 3024,7ZCXJ_5.5_29,Which object did the person throw after they sat on the floor?,3,Sequence_T1_6217,Sequence_T1,The shoe.,The bag.,The food.,The blanket.,The blanket. 3025,Y7WEK_0_29.2,Which object did the person close after they sat on the sofa/couch?,1,Sequence_T1_6244,Sequence_T1,The laptop.,The book.,The window.,The door.,The book. 3026,WH1S5_7.5_28.8,Which object did the person put down after they held the food?,1,Sequence_T1_6250,Sequence_T1,The box.,The sandwich.,The phone/camera.,The dish.,The sandwich. 3027,GC1Q1_0_11.5,Which object did the person put down after they opened the door?,0,Sequence_T1_6307,Sequence_T1,The clothes.,The blanket.,The sandwich.,The box.,The clothes. 3028,0OE6M_3.4_11.9,Which object did the person take after they threw the clothes?,1,Sequence_T1_6315,Sequence_T1,The cup/glass/bottle.,The towel.,The dish.,The blanket.,The towel. 3029,M5S4U_19_30.9,Which object did the person throw after they tidied up the closet/cabinet?,2,Sequence_T1_6366,Sequence_T1,The blanket.,The bag.,The towel.,The book.,The towel. 3030,8BBX0_12.3_25.1,Which object did the person take after they opened the door?,2,Sequence_T1_6367,Sequence_T1,The dish.,The laptop.,The bag.,The sandwich.,The bag. 3031,ZA7ST_0_34.3,Which object did the person open after they held the medicine?,1,Sequence_T1_6398,Sequence_T1,The closet/cabinet.,The bag.,The box.,The book.,The bag. 3032,ZA7ST_28.2_35,Which object did the person open after they took the bag?,3,Sequence_T1_6399,Sequence_T1,The bag.,The book.,The closet/cabinet.,The box.,The box. 3033,5O31N_2.1_42,Which object did the person put down after they closed the door?,0,Sequence_T1_6410,Sequence_T1,The clothes.,The bag.,The food.,The phone/camera.,The clothes. 3034,X4DOF_3.5_17,Which object did the person put down after they watched outside the window?,2,Sequence_T1_6433,Sequence_T1,The towel.,The cup/glass/bottle.,The pillow.,The bag.,The pillow. 3035,O7OD2_0.5_16.1,Which object did the person eat after they held the food?,2,Sequence_T1_6446,Sequence_T1,The refrigerator.,The clothes.,The sandwich.,The medicine.,The sandwich. 3036,YH70K_0_26.8,Which object did the person put down after they tidied up the table?,0,Sequence_T1_6447,Sequence_T1,The dish.,The sandwich.,The clothes.,The pillow.,The dish. 3037,B69CF_0_20.6,Which object did the person close after they lied on the floor?,0,Sequence_T1_6472,Sequence_T1,The window.,The book.,The refrigerator.,The door.,The window. 3038,5GPOJ_0_13.5,Which object did the person close after they sat on the sofa/couch?,0,Sequence_T1_6484,Sequence_T1,The book.,The refrigerator.,The closet/cabinet.,The box.,The book. 3039,5GPOJ_8.5_14.4,Which object did the person put down after they closed the book?,3,Sequence_T1_6485,Sequence_T1,The towel.,The broom.,The cup/glass/bottle.,The paper/notebook.,The paper/notebook. 3040,MY5CQ_0_17.4,Which object did the person close after they sat at the table?,2,Sequence_T1_6502,Sequence_T1,The box.,The book.,The laptop.,The door.,The laptop. 3041,E18UD_0_21.4,Which object did the person take after they sat at the table?,1,Sequence_T1_6511,Sequence_T1,The blanket.,The food.,The clothes.,The cup/glass/bottle.,The food. 3042,MYZLT_0.6_38.7,Which object did the person take after they held the phone/camera?,2,Sequence_T1_6525,Sequence_T1,The cup/glass/bottle.,The bag.,The towel.,The laptop.,The towel. 3043,ITJIY_0_20,Which object did the person open after they sat at the table?,1,Sequence_T1_6547,Sequence_T1,The laptop.,The closet/cabinet.,The window.,The door.,The closet/cabinet. 3044,ITJIY_0_20,Which object did the person open after they put down the food?,0,Sequence_T1_6548,Sequence_T1,The closet/cabinet.,The bag.,The refrigerator.,The book.,The closet/cabinet. 3045,ITJIY_0_20,Which object did the person open after they took the food?,1,Sequence_T1_6549,Sequence_T1,The bag.,The closet/cabinet.,The door.,The box.,The closet/cabinet. 3046,0SBT3_0_5.3,Which object did the person put down after they sat on the sofa/couch?,0,Sequence_T1_6553,Sequence_T1,The sandwich.,The dish.,The shoe.,The picture.,The sandwich. 3047,0SBT3_0.8_6,Which object did the person take after they put down the sandwich?,2,Sequence_T1_6554,Sequence_T1,The blanket.,The cup/glass/bottle.,The book.,The pillow.,The book. 3048,6C4DV_0.2_7,Which object did the person tidy up after they put down the cup/glass/bottle?,0,Sequence_T1_6556,Sequence_T1,The closet/cabinet.,The clothes.,The food.,The blanket.,The closet/cabinet. 3049,0OSJY_0_14.7,Which object did the person put down after they sat on the bed?,3,Sequence_T1_6595,Sequence_T1,The laptop.,The towel.,The phone/camera.,The broom.,The broom. 3050,BJXRT_1.5_24.3,Which object did the person take after they held the blanket?,1,Sequence_T1_6603,Sequence_T1,The food.,The dish.,The pillow.,The bag.,The dish. 3051,ZX1R7_9.4_20,Which object did the person take after they held the dish?,3,Sequence_T1_6621,Sequence_T1,The shoe.,The sandwich.,The cup/glass/bottle.,The pillow.,The pillow. 3052,ZX1R7_0_20,Which object did the person take after they held the phone/camera?,0,Sequence_T1_6622,Sequence_T1,The pillow.,The broom.,The food.,The box.,The pillow. 3053,ZX1R7_0_20,Which object did the person take after they sat on the bed?,2,Sequence_T1_6623,Sequence_T1,The bag.,The phone/camera.,The pillow.,The laptop.,The pillow. 3054,S1J2Q_4.4_20.8,Which object did the person open after they took the clothes?,2,Sequence_T1_6637,Sequence_T1,The door.,The closet/cabinet.,The refrigerator.,The box.,The refrigerator. 3055,S1J2Q_5_20.8,Which object did the person open after they held the clothes?,2,Sequence_T1_6638,Sequence_T1,The door.,The box.,The refrigerator.,The closet/cabinet.,The refrigerator. 3056,KZODG_0_22.9,Which object did the person close after they sat on the sofa/couch?,1,Sequence_T1_6652,Sequence_T1,The book.,The laptop.,The refrigerator.,The box.,The laptop. 3057,3DO95_0_23,Which object did the person put down after they lied on the sofa/couch?,2,Sequence_T1_6653,Sequence_T1,The blanket.,The phone/camera.,The pillow.,The cup/glass/bottle.,The pillow. 3058,3ND23_1.4_13.9,Which object did the person sit on after they put down the book?,3,Sequence_T1_6656,Sequence_T1,The phone/camera.,The floor.,The table.,The sofa/couch.,The sofa/couch. 3059,3ND23_9_19.9,Which object did the person put down after they sat at the table?,1,Sequence_T1_6657,Sequence_T1,The laptop.,The blanket.,The broom.,The picture.,The blanket. 3060,3ND23_8.1_19.9,Which object did the person put down after they sat on the sofa/couch?,3,Sequence_T1_6658,Sequence_T1,The cup/glass/bottle.,The food.,The clothes.,The blanket.,The blanket. 3061,3ND23_1.4_13.9,Which object did the person sit on after they held the book?,2,Sequence_T1_6659,Sequence_T1,The floor.,The bed.,The sofa/couch.,The table.,The sofa/couch. 3062,ZOMM2_24.1_32,Which object did the person eat after they held the food?,0,Sequence_T1_6692,Sequence_T1,The sandwich.,The medicine.,The dish.,The box.,The sandwich. 3063,27JQL_0_12.1,Which object did the person take after they sat at the table?,3,Sequence_T1_6696,Sequence_T1,The shoe.,The paper/notebook.,The picture.,The towel.,The towel. 3064,FNNTW_0_20.2,Which object did the person put down after they held the phone/camera?,3,Sequence_T1_6700,Sequence_T1,The sandwich.,The phone/camera.,The towel.,The cup/glass/bottle.,The cup/glass/bottle. 3065,O2DXE_0_10.6,Which object did the person put down after they lied on the floor?,3,Sequence_T1_6707,Sequence_T1,The food.,The phone/camera.,The paper/notebook.,The blanket.,The blanket. 3066,56XKK_0_14.3,Which object did the person put down after they closed the door?,3,Sequence_T1_6710,Sequence_T1,The phone/camera.,The broom.,The food.,The bag.,The bag. 3067,56XKK_0_14.3,Which object did the person put down after they held the food?,0,Sequence_T1_6712,Sequence_T1,The bag.,The towel.,The dish.,The phone/camera.,The bag. 3068,9207X_1.1_16,Which object did the person open after they held the phone/camera?,0,Sequence_T1_6727,Sequence_T1,The closet/cabinet.,The box.,The bag.,The door.,The closet/cabinet. 3069,MDG2T_6_14.1,Which object did the person take after they put down the dish?,1,Sequence_T1_6728,Sequence_T1,The shoe.,The towel.,The picture.,The book.,The towel. 3070,84893_0.7_15.3,Which object did the person tidy up after they put down the clothes?,3,Sequence_T1_6747,Sequence_T1,The broom.,The towel.,The closet/cabinet.,The blanket.,The blanket. 3071,84893_0_15.3,Which object did the person tidy up after they watched outside the window?,3,Sequence_T1_6748,Sequence_T1,The refrigerator.,The broom.,The towel.,The blanket.,The blanket. 3072,84893_13.6_20.5,Which object did the person throw after they held the clothes?,0,Sequence_T1_6749,Sequence_T1,The shoe.,The box.,The bag.,The broom.,The shoe. 3073,TAGEG_14.2_20,Which object did the person tidy up after they put down the dish?,0,Sequence_T1_6765,Sequence_T1,The closet/cabinet.,The table.,The towel.,The broom.,The closet/cabinet. 3074,TAGEG_13.2_20,Which object did the person put down after they opened the closet/cabinet?,0,Sequence_T1_6768,Sequence_T1,The dish.,The clothes.,The book.,The laptop.,The dish. 3075,KXCSL_1.6_9.5,Which object did the person close after they put down the food?,0,Sequence_T1_6770,Sequence_T1,The refrigerator.,The box.,The door.,The closet/cabinet.,The refrigerator. 3076,WV9FZ_3.4_30,Which object did the person sit at after they held the food?,1,Sequence_T1_6784,Sequence_T1,The sofa/couch.,The table.,The box.,The bed.,The table. 3077,WV9FZ_3_30,Which object did the person sit at after they took the food?,2,Sequence_T1_6785,Sequence_T1,The pillow.,The bed.,The table.,The floor.,The table. 3078,KFHLP_0_7.7,Which object did the person close after they held the phone/camera?,1,Sequence_T1_6813,Sequence_T1,The closet/cabinet.,The door.,The book.,The box.,The door. 3079,KFHLP_0_7.7,Which object did the person close after they held the dish?,3,Sequence_T1_6814,Sequence_T1,The book.,The closet/cabinet.,The box.,The door.,The door. 3080,Z6HEA_2.6_16.2,Which object did the person sit on after they washed the clothes?,3,Sequence_T1_6850,Sequence_T1,The bed.,The table.,The dish.,The floor.,The floor. 3081,HL5OP_28.5_37,Which object did the person tidy up after they took the dish?,0,Sequence_T1_6880,Sequence_T1,The table.,The clothes.,The broom.,The closet/cabinet.,The table. 3082,HL5OP_16.6_27.9,Which object did the person take after they opened the bag?,3,Sequence_T1_6881,Sequence_T1,The book.,The bag.,The picture.,The dish.,The dish. 3083,BZD0Q_11.3_22.8,Which object did the person take after they put down the cup/glass/bottle?,3,Sequence_T1_6896,Sequence_T1,The broom.,The phone/camera.,The sandwich.,The bag.,The bag. 3084,Z70KK_8_26,Which object did the person take after they washed the table?,2,Sequence_T1_6908,Sequence_T1,The food.,The towel.,The broom.,The blanket.,The broom. 3085,Z70KK_7.9_15,Which object did the person wash after they put down the bag?,3,Sequence_T1_6909,Sequence_T1,The mirror.,The food.,The window.,The table.,The table. 3086,HA02S_0_38,Which object did the person put down after they opened the door?,0,Sequence_T1_6939,Sequence_T1,The broom.,The bag.,The sandwich.,The food.,The broom. 3087,SUI1X_0_10.3,Which object did the person open after they sat on the floor?,2,Sequence_T1_6949,Sequence_T1,The closet/cabinet.,The door.,The bag.,The laptop.,The bag. 3088,9AFSH_0_7.2,Which object did the person put down after they sat on the sofa/couch?,1,Sequence_T1_6961,Sequence_T1,The picture.,The pillow.,The cup/glass/bottle.,The food.,The pillow. 3089,DBT6E_10.8_23.4,Which object did the person open after they sat on the floor?,0,Sequence_T1_6967,Sequence_T1,The bag.,The closet/cabinet.,The door.,The book.,The bag. 3090,CR5G1_0_18.6,Which object did the person take after they held the phone/camera?,2,Sequence_T1_6992,Sequence_T1,The food.,The cup/glass/bottle.,The blanket.,The laptop.,The blanket. 3091,CR5G1_10.9_18.6,Which object did the person take after they sat on the floor?,1,Sequence_T1_6993,Sequence_T1,The clothes.,The blanket.,The dish.,The broom.,The blanket. 3092,VS5IY_3.6_10.2,Which object did the person put down after they tidied up the table?,2,Sequence_T1_6995,Sequence_T1,The towel.,The picture.,The paper/notebook.,The cup/glass/bottle.,The paper/notebook. 3093,VS5IY_13.7_29.7,Which object did the person take after they held the clothes?,3,Sequence_T1_6996,Sequence_T1,The sandwich.,The food.,The broom.,The bag.,The bag. 3094,VS5IY_9.4_18.1,Which object did the person take after they put down the book?,2,Sequence_T1_6997,Sequence_T1,The laptop.,The phone/camera.,The clothes.,The food.,The clothes. 3095,74DPG_20.7_40,Which object did the person put down after they drank from the cup/glass/bottle?,0,Sequence_T1_7000,Sequence_T1,The dish.,The food.,The box.,The phone/camera.,The dish. 3096,9NV2G_0_23.1,Which object did the person put down after they lied on the bed?,2,Sequence_T1_7004,Sequence_T1,The bag.,The pillow.,The cup/glass/bottle.,The dish.,The cup/glass/bottle. 3097,TVCQF_4.7_13.9,Which object did the person sit at after they drank from the cup/glass/bottle?,1,Sequence_T1_7018,Sequence_T1,The bed.,The table.,The sofa/couch.,The medicine.,The table. 3098,TVCQF_6.5_17,Which object did the person open after they sat at the table?,1,Sequence_T1_7019,Sequence_T1,The laptop.,The box.,The bag.,The book.,The box. 3099,CSYES_9.6_17,Which object did the person take after they put down the towel?,2,Sequence_T1_7039,Sequence_T1,The cup/glass/bottle.,The blanket.,The phone/camera.,The book.,The phone/camera. 3100,CSYES_0_17,Which object did the person put down after they tidied up the blanket?,2,Sequence_T1_7040,Sequence_T1,The book.,The pillow.,The towel.,The clothes.,The towel. 3101,NV4FC_20_26.1,Which object did the person take after they held the book?,1,Sequence_T1_7043,Sequence_T1,The dish.,The paper/notebook.,The phone/camera.,The book.,The paper/notebook. 3102,NV4FC_5.5_21.3,Which object did the person throw after they put down the clothes?,2,Sequence_T1_7047,Sequence_T1,The food.,The pillow.,The shoe.,The box.,The shoe. 3103,XFRYR_6.8_16.2,Which object did the person close after they took the food?,0,Sequence_T1_7049,Sequence_T1,The closet/cabinet.,The box.,The refrigerator.,The door.,The closet/cabinet. 3104,AJTDO_0_18.5,Which object did the person put down after they held the clothes?,0,Sequence_T1_7054,Sequence_T1,The pillow.,The broom.,The shoe.,The towel.,The pillow. 3105,8VSV6_0_17,Which object did the person sit at after they lied on the floor?,0,Sequence_T1_7059,Sequence_T1,The table.,The bed.,The sofa/couch.,The floor.,The table. 3106,XYGU1_4.7_20.5,Which object did the person open after they sat at the table?,3,Sequence_T1_7085,Sequence_T1,The window.,The closet/cabinet.,The door.,The book.,The book. 3107,OKYYQ_0_10.3,Which object did the person put down after they watched at the book?,0,Sequence_T1_7120,Sequence_T1,The paper/notebook.,The clothes.,The towel.,The phone/camera.,The paper/notebook. 3108,OKYYQ_0_10.3,Which object did the person put down after they held the book?,1,Sequence_T1_7121,Sequence_T1,The food.,The paper/notebook.,The dish.,The bag.,The paper/notebook. 3109,N7130_0_13.5,Which object did the person put down after they opened the door?,3,Sequence_T1_7130,Sequence_T1,The clothes.,The box.,The food.,The phone/camera.,The phone/camera. 3110,306S9_1.3_9.4,Which object did the person put down after they sat on the floor?,2,Sequence_T1_7137,Sequence_T1,The bag.,The clothes.,The food.,The pillow.,The food. 3111,UDGRS_16.6_25.8,Which object did the person put down after they tidied up the table?,3,Sequence_T1_7150,Sequence_T1,The towel.,The paper/notebook.,The food.,The phone/camera.,The phone/camera. 3112,M7BD4_0_19.6,Which object did the person put down after they held the laptop?,3,Sequence_T1_7178,Sequence_T1,The clothes.,The box.,The pillow.,The paper/notebook.,The paper/notebook. 3113,M7BD4_18_26.2,Which object did the person close after they opened the closet/cabinet?,1,Sequence_T1_7179,Sequence_T1,The window.,The laptop.,The closet/cabinet.,The refrigerator.,The laptop. 3114,MQ4YR_0_24.9,Which object did the person take after they lied on the bed?,1,Sequence_T1_7191,Sequence_T1,The blanket.,The bag.,The sandwich.,The phone/camera.,The bag. 3115,V9W9C_29.2_37,Which object did the person tidy up after they drank from the cup/glass/bottle?,3,Sequence_T1_7210,Sequence_T1,The blanket.,The closet/cabinet.,The broom.,The table.,The table. 3116,V9W9C_27.7_37,Which object did the person tidy up after they took the cup/glass/bottle?,2,Sequence_T1_7211,Sequence_T1,The broom.,The pillow.,The table.,The towel.,The table. 3117,9632M_4.9_32,Which object did the person take after they held the food?,3,Sequence_T1_7213,Sequence_T1,The paper/notebook.,The clothes.,The phone/camera.,The towel.,The towel. 3118,0JB3D_3.1_11.7,Which object did the person close after they took the cup/glass/bottle?,0,Sequence_T1_7238,Sequence_T1,The refrigerator.,The door.,The window.,The closet/cabinet.,The refrigerator. 3119,F3O37_4.5_10.5,Which object did the person put down after they took the pillow?,2,Sequence_T1_7241,Sequence_T1,The bag.,The dish.,The shoe.,The sandwich.,The shoe. 3120,F3O37_0_11.5,Which object did the person take after they held the shoe?,3,Sequence_T1_7242,Sequence_T1,The phone/camera.,The shoe.,The book.,The pillow.,The pillow. 3121,F3O37_0_11.5,Which object did the person take after they held the clothes?,1,Sequence_T1_7243,Sequence_T1,The cup/glass/bottle.,The pillow.,The shoe.,The dish.,The pillow. 3122,S3TZ1_4.9_13,Which object did the person close after they put down the food?,3,Sequence_T1_7267,Sequence_T1,The window.,The closet/cabinet.,The book.,The refrigerator.,The refrigerator. 3123,S3TZ1_5.4_13,Which object did the person close after they held the food?,1,Sequence_T1_7269,Sequence_T1,The window.,The refrigerator.,The door.,The closet/cabinet.,The refrigerator. 3124,ZOL0R_3.7_14.8,Which object did the person throw after they opened the door?,1,Sequence_T1_7280,Sequence_T1,The towel.,The clothes.,The box.,The book.,The clothes. 3125,OK2AF_13.5_30,Which object did the person take after they closed the door?,3,Sequence_T1_7287,Sequence_T1,The cup/glass/bottle.,The broom.,The picture.,The book.,The book. 3126,UEP20_12.6_23.1,Which object did the person lie on after they put down the paper/notebook?,3,Sequence_T1_7314,Sequence_T1,The blanket.,The floor.,The sofa/couch.,The bed.,The bed. 3127,UEP20_14.6_22.7,Which object did the person take after they lied on the bed?,0,Sequence_T1_7315,Sequence_T1,The sandwich.,The clothes.,The broom.,The blanket.,The sandwich. 3128,5X5DT_10.6_19.5,Which object did the person take after they closed the laptop?,3,Sequence_T1_7321,Sequence_T1,The shoe.,The blanket.,The phone/camera.,The bag.,The bag. 3129,5X5DT_0_19.5,Which object did the person take after they held the laptop?,1,Sequence_T1_7322,Sequence_T1,The food.,The bag.,The clothes.,The cup/glass/bottle.,The bag. 3130,UQ93G_21.2_30,Which object did the person put down after they opened the door?,3,Sequence_T1_7323,Sequence_T1,The bag.,The blanket.,The book.,The clothes.,The clothes. 3131,VKXLL_22.1_36.2,Which object did the person put down after they opened the box?,2,Sequence_T1_7341,Sequence_T1,The clothes.,The food.,The paper/notebook.,The cup/glass/bottle.,The paper/notebook. 3132,VKXLL_16.9_28.6,Which object did the person open after they put down the dish?,1,Sequence_T1_7342,Sequence_T1,The bag.,The box.,The book.,The refrigerator.,The box. 3133,VKXLL_1.5_10,Which object did the person put down after they held the box?,0,Sequence_T1_7343,Sequence_T1,The pillow.,The blanket.,The phone/camera.,The picture.,The pillow. 3134,VKXLL_1.5_10,Which object did the person put down after they took the box?,1,Sequence_T1_7344,Sequence_T1,The shoe.,The pillow.,The cup/glass/bottle.,The blanket.,The pillow. 3135,UFVO8_3.2_11,Which object did the person put down after they opened the closet/cabinet?,3,Sequence_T1_7347,Sequence_T1,The cup/glass/bottle.,The pillow.,The sandwich.,The broom.,The broom. 3136,V9RT3_0_21.5,Which object did the person put down after they sat at the table?,0,Sequence_T1_7352,Sequence_T1,The phone/camera.,The paper/notebook.,The cup/glass/bottle.,The food.,The phone/camera. 3137,Q8UJ8_0.6_5.9,Which object did the person open after they sat at the table?,0,Sequence_T1_7359,Sequence_T1,The bag.,The window.,The door.,The refrigerator.,The bag. 3138,F9YMU_0_16.5,Which object did the person take after they closed the door?,0,Sequence_T1_7367,Sequence_T1,The paper/notebook.,The food.,The book.,The broom.,The paper/notebook. 3139,F9YMU_9.3_16.5,Which object did the person take after they sat at the table?,0,Sequence_T1_7368,Sequence_T1,The paper/notebook.,The phone/camera.,The blanket.,The box.,The paper/notebook. 3140,XZ9C0_0_14.9,Which object did the person take after they lied on the bed?,2,Sequence_T1_7369,Sequence_T1,The book.,The sandwich.,The bag.,The shoe.,The bag. 3141,LY10X_14.5_31.6,Which object did the person eat after they opened the closet/cabinet?,1,Sequence_T1_7376,Sequence_T1,The sandwich.,The medicine.,The window.,The shoe.,The medicine. 3142,3XKBC_18.8_24.7,Which object did the person sit at after they opened the laptop?,3,Sequence_T1_7380,Sequence_T1,The bed.,The floor.,The door.,The table.,The table. 3143,3XKBC_11.9_28.1,Which object did the person open after they put down the clothes?,3,Sequence_T1_7381,Sequence_T1,The box.,The closet/cabinet.,The book.,The laptop.,The laptop. 3144,EC695_0_18.6,Which object did the person take after they lied on the sofa/couch?,0,Sequence_T1_7406,Sequence_T1,The laptop.,The cup/glass/bottle.,The phone/camera.,The clothes.,The laptop. 3145,1333C_4.9_13.1,Which object did the person take after they threw the towel?,1,Sequence_T1_7407,Sequence_T1,The laptop.,The dish.,The box.,The blanket.,The dish. 3146,0Y19Q_14_24,Which object did the person put down after they watched outside the window?,0,Sequence_T1_7408,Sequence_T1,The cup/glass/bottle.,The shoe.,The food.,The box.,The cup/glass/bottle. 3147,983K8_0_12.5,Which object did the person take after they ate the sandwich?,0,Sequence_T1_7409,Sequence_T1,The blanket.,The clothes.,The food.,The sandwich.,The blanket. 3148,983K8_0_12.5,Which object did the person take after they held the food?,2,Sequence_T1_7410,Sequence_T1,The sandwich.,The cup/glass/bottle.,The blanket.,The bag.,The blanket. 3149,L9J5I_0_16.7,Which object did the person take after they put down the food?,3,Sequence_T1_7441,Sequence_T1,The clothes.,The box.,The blanket.,The paper/notebook.,The paper/notebook. 3150,L9J5I_0_16.7,Which object did the person take after they sat on the bed?,3,Sequence_T1_7442,Sequence_T1,The food.,The picture.,The laptop.,The paper/notebook.,The paper/notebook. 3151,L9J5I_0_16.7,Which object did the person take after they held the food?,0,Sequence_T1_7443,Sequence_T1,The paper/notebook.,The picture.,The phone/camera.,The book.,The paper/notebook. 3152,FZJTT_0_24,Which object did the person take after they lied on the sofa/couch?,2,Sequence_T1_7446,Sequence_T1,The food.,The cup/glass/bottle.,The phone/camera.,The book.,The phone/camera. 3153,PZD7Z_0_17.6,Which object did the person put down after they sat at the table?,0,Sequence_T1_7447,Sequence_T1,The broom.,The clothes.,The laptop.,The box.,The broom. 3154,C61BE_0_10,Which object did the person take after they ate the sandwich?,1,Sequence_T1_7459,Sequence_T1,The phone/camera.,The blanket.,The broom.,The paper/notebook.,The blanket. 3155,C61BE_0_10,Which object did the person take after they held the sandwich?,0,Sequence_T1_7460,Sequence_T1,The blanket.,The picture.,The shoe.,The bag.,The blanket. 3156,C61BE_0_10,Which object did the person take after they held the food?,2,Sequence_T1_7461,Sequence_T1,The clothes.,The bag.,The blanket.,The pillow.,The blanket. 3157,C61BE_0_10,Which object did the person take after they held the dish?,3,Sequence_T1_7462,Sequence_T1,The box.,The laptop.,The towel.,The blanket.,The blanket. 3158,EAKL5_8.9_28.5,Which object did the person put down after they tidied up the table?,2,Sequence_T1_7463,Sequence_T1,The paper/notebook.,The pillow.,The phone/camera.,The towel.,The phone/camera. 3159,34OT4_0_33.1,Which object did the person put down after they held the phone/camera?,0,Sequence_T1_7474,Sequence_T1,The pillow.,The paper/notebook.,The cup/glass/bottle.,The book.,The pillow. 3160,34OT4_16.2_33.1,Which object did the person put down after they drank from the cup/glass/bottle?,0,Sequence_T1_7475,Sequence_T1,The pillow.,The shoe.,The sandwich.,The dish.,The pillow. 3161,34OT4_0_33.1,Which object did the person put down after they sat at the table?,0,Sequence_T1_7476,Sequence_T1,The pillow.,The food.,The picture.,The blanket.,The pillow. 3162,MA15X_17.5_72,Which object did the person throw after they drank from the cup/glass/bottle?,1,Sequence_T1_7477,Sequence_T1,The box.,The blanket.,The clothes.,The bag.,The blanket. 3163,MA15X_21.8_72,Which object did the person throw after they put down the cup/glass/bottle?,2,Sequence_T1_7478,Sequence_T1,The broom.,The bag.,The blanket.,The pillow.,The blanket. 3164,MA15X_21_72,Which object did the person throw after they took the cup/glass/bottle?,1,Sequence_T1_7479,Sequence_T1,The shoe.,The blanket.,The bag.,The clothes.,The blanket. 3165,MA15X_18.2_72,Which object did the person throw after they sat on the sofa/couch?,0,Sequence_T1_7480,Sequence_T1,The blanket.,The shoe.,The towel.,The box.,The blanket. 3166,V54TI_0_14.1,Which object did the person put down after they lied on the bed?,0,Sequence_T1_7488,Sequence_T1,The picture.,The clothes.,The book.,The sandwich.,The picture. 3167,V54TI_7.9_18.2,Which object did the person take after they put down the picture?,1,Sequence_T1_7491,Sequence_T1,The dish.,The pillow.,The box.,The phone/camera.,The pillow. 3168,0BZAD_5.9_12.9,Which object did the person open after they sat on the floor?,2,Sequence_T1_7495,Sequence_T1,The box.,The door.,The book.,The closet/cabinet.,The book. 3169,CJ58B_17.4_27.4,Which object did the person put down after they held the food?,2,Sequence_T1_7497,Sequence_T1,The cup/glass/bottle.,The food.,The bag.,The laptop.,The bag. 3170,B8PQL_3.6_10.1,Which object did the person take after they closed the door?,2,Sequence_T1_7503,Sequence_T1,The paper/notebook.,The bag.,The broom.,The cup/glass/bottle.,The broom. 3171,B8PQL_5.5_16.3,Which object did the person wash after they took the broom?,1,Sequence_T1_7505,Sequence_T1,The picture.,The window.,The dish.,The mirror.,The window. 3172,Z6LYG_10.8_42,Which object did the person close after they took the food?,3,Sequence_T1_7520,Sequence_T1,The laptop.,The closet/cabinet.,The door.,The refrigerator.,The refrigerator. 3173,Z6LYG_30.5_42,Which object did the person close after they put down the dish?,0,Sequence_T1_7521,Sequence_T1,The refrigerator.,The closet/cabinet.,The window.,The book.,The refrigerator. 3174,1G90H_0_11.1,Which object did the person take after they lied on the floor?,0,Sequence_T1_7533,Sequence_T1,The cup/glass/bottle.,The clothes.,The pillow.,The phone/camera.,The cup/glass/bottle. 3175,8DSGI_9.6_20,Which object did the person open after they put down the clothes?,0,Sequence_T1_7537,Sequence_T1,The book.,The door.,The laptop.,The bag.,The book. 3176,0CG15_19.7_29.7,Which object did the person open after they put down the clothes?,2,Sequence_T1_7558,Sequence_T1,The laptop.,The door.,The closet/cabinet.,The box.,The closet/cabinet. 3177,ACJBD_30.8_36.7,Which object did the person tidy up after they put down the pillow?,0,Sequence_T1_7587,Sequence_T1,The clothes.,The closet/cabinet.,The table.,The blanket.,The clothes. 3178,ACJBD_13.7_35.2,Which object did the person put down after they took the clothes?,2,Sequence_T1_7588,Sequence_T1,The bag.,The cup/glass/bottle.,The blanket.,The towel.,The blanket. 3179,G4AJK_9_40.7,Which object did the person put down after they ate the sandwich?,2,Sequence_T1_7589,Sequence_T1,The towel.,The cup/glass/bottle.,The food.,The book.,The food. 3180,1E7VU_2.1_18.5,Which object did the person close after they held the phone/camera?,3,Sequence_T1_7592,Sequence_T1,The refrigerator.,The book.,The door.,The closet/cabinet.,The closet/cabinet. 3181,1E7VU_3.1_18.5,Which object did the person close after they put down the dish?,2,Sequence_T1_7594,Sequence_T1,The door.,The refrigerator.,The closet/cabinet.,The laptop.,The closet/cabinet. 3182,EG1XK_13.9_32.9,Which object did the person open after they drank from the cup/glass/bottle?,0,Sequence_T1_7598,Sequence_T1,The door.,The box.,The book.,The laptop.,The door. 3183,USNP1_0_11.4,Which object did the person take after they lied on the sofa/couch?,1,Sequence_T1_7623,Sequence_T1,The pillow.,The phone/camera.,The cup/glass/bottle.,The laptop.,The phone/camera. 3184,CCCUJ_11.6_32.2,Which object did the person put down after they closed the door?,2,Sequence_T1_7639,Sequence_T1,The clothes.,The book.,The laptop.,The picture.,The laptop. 3185,BI31D_5.2_18,Which object did the person sit on after they put down the phone/camera?,3,Sequence_T1_7661,Sequence_T1,The sofa/couch.,The floor.,The blanket.,The bed.,The bed. 3186,194WK_0_10.2,Which object did the person close after they sat at the table?,2,Sequence_T1_7671,Sequence_T1,The laptop.,The door.,The book.,The window.,The book. 3187,DHFA6_0.2_22.6,Which object did the person put down after they held the pillow?,0,Sequence_T1_7685,Sequence_T1,The box.,The bag.,The picture.,The phone/camera.,The box. 3188,3ZC4Y_17.2_23.8,Which object did the person throw after they closed the refrigerator?,2,Sequence_T1_7694,Sequence_T1,The box.,The laptop.,The food.,The broom.,The food. 3189,3ZC4Y_0_21.7,Which object did the person open after they held the dish?,2,Sequence_T1_7695,Sequence_T1,The door.,The laptop.,The refrigerator.,The closet/cabinet.,The refrigerator. 3190,NOFSE_1.6_13.5,Which object did the person put down after they drank from the cup/glass/bottle?,1,Sequence_T1_7698,Sequence_T1,The pillow.,The dish.,The phone/camera.,The box.,The dish. 3191,NOFSE_0.5_13.5,Which object did the person put down after they opened the door?,0,Sequence_T1_7701,Sequence_T1,The dish.,The towel.,The book.,The clothes.,The dish. 3192,Z97SD_24.3_30.7,Which object did the person close after they held the food?,2,Sequence_T1_7706,Sequence_T1,The box.,The door.,The refrigerator.,The window.,The refrigerator. 3193,Z97SD_17.8_24.1,Which object did the person open after they took the food?,2,Sequence_T1_7707,Sequence_T1,The window.,The box.,The refrigerator.,The bag.,The refrigerator. 3194,21MI8_0_10.1,Which object did the person open after they drank from the cup/glass/bottle?,2,Sequence_T1_7709,Sequence_T1,The book.,The door.,The laptop.,The closet/cabinet.,The laptop. 3195,5657O_0_13.8,Which object did the person put down after they held the phone/camera?,1,Sequence_T1_7711,Sequence_T1,The broom.,The clothes.,The box.,The phone/camera.,The clothes. 3196,OZSB3_0_27.8,Which object did the person take after they sat at the table?,3,Sequence_T1_7724,Sequence_T1,The phone/camera.,The blanket.,The shoe.,The pillow.,The pillow. 3197,MOQIU_0_20,Which object did the person take after they sat on the sofa/couch?,2,Sequence_T1_7727,Sequence_T1,The cup/glass/bottle.,The bag.,The phone/camera.,The food.,The phone/camera. 3198,MOQIU_0_20,Which object did the person take after they sat at the table?,1,Sequence_T1_7728,Sequence_T1,The cup/glass/bottle.,The phone/camera.,The book.,The dish.,The phone/camera. 3199,6H78U_15.6_24.6,Which object did the person tidy up before they put down the blanket?,1,Sequence_T2_10,Sequence_T2,The towel.,The clothes.,The pillow.,The broom.,The clothes. 3200,6H78U_8.5_16,Which object did the person put down before they took the clothes?,2,Sequence_T2_11,Sequence_T2,The bag.,The door.,The phone/camera.,The laptop.,The phone/camera. 3201,RNLTR_11.6_24,Which object did the person put down before they sat on the bed?,2,Sequence_T2_27,Sequence_T2,The dish.,The blanket.,The shoe.,The phone/camera.,The shoe. 3202,RNLTR_11.6_24,Which object did the person put down before they sat on the sofa/couch?,0,Sequence_T2_28,Sequence_T2,The shoe.,The box.,The book.,The blanket.,The shoe. 3203,VNQTH_2.7_10.3,Which object did the person tidy up before they took the phone/camera?,1,Sequence_T2_36,Sequence_T2,The pillow.,The closet/cabinet.,The picture.,The table.,The closet/cabinet. 3204,N56QO_0.8_11,Which object did the person take before they held the dish?,0,Sequence_T2_51,Sequence_T2,The cup/glass/bottle.,The box.,The clothes.,The bag.,The cup/glass/bottle. 3205,4GLAP_16.1_28.5,Which object did the person throw before they opened the door?,3,Sequence_T2_63,Sequence_T2,The towel.,The clothes.,The medicine.,The shoe.,The shoe. 3206,XO8NL_6.5_32,Which object did the person put down before they held the mirror?,1,Sequence_T2_67,Sequence_T2,The book.,The pillow.,The dish.,The laptop.,The pillow. 3207,OY3LS_28.6_41.8,Which object did the person put down before they took the blanket?,3,Sequence_T2_72,Sequence_T2,The laptop.,The picture.,The clothes.,The phone/camera.,The phone/camera. 3208,OY3LS_28.6_41.4,Which object did the person put down before they sat on the sofa/couch?,3,Sequence_T2_75,Sequence_T2,The food.,The dish.,The table.,The phone/camera.,The phone/camera. 3209,RG0KS_0_27,Which object did the person tidy up before they held the box?,3,Sequence_T2_86,Sequence_T2,The closet/cabinet.,The book.,The pillow.,The blanket.,The blanket. 3210,RG0KS_0_24.9,Which object did the person tidy up before they took the box?,0,Sequence_T2_87,Sequence_T2,The blanket.,The food.,The towel.,The phone/camera.,The blanket. 3211,N5PLR_5.2_33.2,Which object did the person throw before they sat on the table?,1,Sequence_T2_89,Sequence_T2,The broom.,The clothes.,The floor.,The refrigerator.,The clothes. 3212,NUKJ0_11_26.6,Which object did the person take before they closed the book?,2,Sequence_T2_113,Sequence_T2,The door.,The cup/glass/bottle.,The paper/notebook.,The picture.,The paper/notebook. 3213,NUKJ0_11_24,Which object did the person take before they watched at the book?,2,Sequence_T2_115,Sequence_T2,The phone/camera.,The broom.,The paper/notebook.,The food.,The paper/notebook. 3214,NUKJ0_11_25.6,Which object did the person take before they held the book?,2,Sequence_T2_116,Sequence_T2,The pillow.,The phone/camera.,The paper/notebook.,The sandwich.,The paper/notebook. 3215,GKH0F_24_34,Which object did the person put down before they held the phone/camera?,2,Sequence_T2_120,Sequence_T2,The clothes.,The blanket.,The bag.,The door.,The bag. 3216,H0L5S_20.4_29.4,Which object did the person take before they opened the door?,3,Sequence_T2_150,Sequence_T2,The pillow.,The box.,The cup/glass/bottle.,The towel.,The towel. 3217,7MRKY_24.8_36.1,Which object did the person put down before they closed the laptop?,1,Sequence_T2_158,Sequence_T2,The blanket.,The broom.,The sandwich.,The clothes.,The broom. 3218,TBRZ5_7_26.3,Which object did the person throw before they held the phone/camera?,3,Sequence_T2_175,Sequence_T2,The box.,The blanket.,The towel.,The pillow.,The pillow. 3219,DGPAW_3.5_16.6,Which object did the person put down before they opened the door?,2,Sequence_T2_183,Sequence_T2,The food.,The towel.,The picture.,The shoe.,The picture. 3220,E002I_4.1_14.1,Which object did the person put down before they lied on the bed?,2,Sequence_T2_184,Sequence_T2,The picture.,The cup/glass/bottle.,The pillow.,The dish.,The pillow. 3221,E002I_4.7_19.7,Which object did the person lie on before they closed the door?,3,Sequence_T2_185,Sequence_T2,The book.,The window.,The sofa/couch.,The bed.,The bed. 3222,VIN5T_1.5_13.1,Which object did the person throw before they held the phone/camera?,1,Sequence_T2_218,Sequence_T2,The book.,The pillow.,The blanket.,The food.,The pillow. 3223,VIN5T_1.5_21,Which object did the person throw before they took the phone/camera?,2,Sequence_T2_219,Sequence_T2,The blanket.,The picture.,The pillow.,The book.,The pillow. 3224,MXATD_0.6_10.8,Which object did the person wash before they opened the closet/cabinet?,2,Sequence_T2_220,Sequence_T2,The bag.,The clothes.,The dish.,The laptop.,The dish. 3225,YB67Z_11.9_22.3,Which object did the person tidy up before they put down the box?,3,Sequence_T2_224,Sequence_T2,The phone/camera.,The blanket.,The closet/cabinet.,The table.,The table. 3226,1O1JS_0_30.2,Which object did the person take before they washed the dish?,2,Sequence_T2_228,Sequence_T2,The clothes.,The door.,The towel.,The phone/camera.,The towel. 3227,1L5D3_13.6_32,Which object did the person put down before they held the phone/camera?,0,Sequence_T2_255,Sequence_T2,The pillow.,The book.,The laptop.,The table.,The pillow. 3228,1L5D3_13.6_32,Which object did the person put down before they took the phone/camera?,3,Sequence_T2_256,Sequence_T2,The towel.,The paper/notebook.,The blanket.,The pillow.,The pillow. 3229,1L5D3_13.6_32,Which object did the person put down before they sat on the bed?,0,Sequence_T2_257,Sequence_T2,The pillow.,The blanket.,The sofa/couch.,The shoe.,The pillow. 3230,S572F_0.6_21,Which object did the person put down before they took the blanket?,3,Sequence_T2_270,Sequence_T2,The phone/camera.,The paper/notebook.,The medicine.,The towel.,The towel. 3231,S572F_0.6_16.6,Which object did the person put down before they washed the clothes?,1,Sequence_T2_271,Sequence_T2,The shoe.,The towel.,The blanket.,The cup/glass/bottle.,The towel. 3232,S572F_13_26.6,Which object did the person take before they tidied up the clothes?,0,Sequence_T2_272,Sequence_T2,The blanket.,The pillow.,The door.,The shoe.,The blanket. 3233,S572F_0_10.4,Which object did the person take before they put down the towel?,1,Sequence_T2_273,Sequence_T2,The dish.,The clothes.,The blanket.,The floor.,The clothes. 3234,IWTWJ_0.1_9.5,Which object did the person take before they tidied up the blanket?,0,Sequence_T2_291,Sequence_T2,The clothes.,The towel.,The book.,The medicine.,The clothes. 3235,NJANX_3_22,Which object did the person put down before they washed the table?,3,Sequence_T2_311,Sequence_T2,The dish.,The broom.,The closet/cabinet.,The box.,The box. 3236,TRHT1_0_6.3,Which object did the person sit on before they threw the clothes?,3,Sequence_T2_314,Sequence_T2,The food.,The towel.,The floor.,The sofa/couch.,The sofa/couch. 3237,5NG6Q_13.8_25.6,Which object did the person put down before they tidied up the table?,2,Sequence_T2_324,Sequence_T2,The laptop.,The picture.,The dish.,The blanket.,The dish. 3238,C1DK7_17.1_25.9,Which object did the person put down before they opened the door?,2,Sequence_T2_336,Sequence_T2,The clothes.,The book.,The phone/camera.,The sofa/couch.,The phone/camera. 3239,C1DK7_4.2_21.6,Which object did the person close before they put down the phone/camera?,3,Sequence_T2_337,Sequence_T2,The bag.,The refrigerator.,The paper/notebook.,The laptop.,The laptop. 3240,YHXU9_14.7_21.8,Which object did the person tidy up before they took the book?,1,Sequence_T2_368,Sequence_T2,The bag.,The clothes.,The sofa/couch.,The closet/cabinet.,The clothes. 3241,PH5VU_30.9_40.3,Which object did the person take before they put down the picture?,1,Sequence_T2_373,Sequence_T2,The table.,The paper/notebook.,The broom.,The sandwich.,The paper/notebook. 3242,VJG6E_3_18,Which object did the person put down before they opened the laptop?,3,Sequence_T2_378,Sequence_T2,The dish.,The bed.,The broom.,The blanket.,The blanket. 3243,VJG6E_3_18,Which object did the person put down before they watched outside the window?,3,Sequence_T2_379,Sequence_T2,The book.,The broom.,The pillow.,The blanket.,The blanket. 3244,VJG6E_3_18,Which object did the person put down before they sat at the table?,1,Sequence_T2_380,Sequence_T2,The dish.,The blanket.,The food.,The pillow.,The blanket. 3245,5C4EK_2.2_11.4,Which object did the person close before they took the paper/notebook?,2,Sequence_T2_390,Sequence_T2,The closet/cabinet.,The refrigerator.,The book.,The window.,The book. 3246,NW0KT_8.6_24,Which object did the person take before they watched at the book?,2,Sequence_T2_397,Sequence_T2,The phone/camera.,The food.,The paper/notebook.,The floor.,The paper/notebook. 3247,NW0KT_8.6_18.6,Which object did the person take before they closed the book?,3,Sequence_T2_401,Sequence_T2,The picture.,The shoe.,The pillow.,The paper/notebook.,The paper/notebook. 3248,NYHD7_0_26.9,Which object did the person sit at before they took the phone/camera?,2,Sequence_T2_412,Sequence_T2,The clothes.,The floor.,The table.,The box.,The table. 3249,3Q6N1_0_8.6,Which object did the person open before they ate the sandwich?,2,Sequence_T2_442,Sequence_T2,The shoe.,The refrigerator.,The laptop.,The bag.,The laptop. 3250,3Q6N1_0_9.5,Which object did the person open before they put down the food?,2,Sequence_T2_443,Sequence_T2,The clothes.,The book.,The laptop.,The window.,The laptop. 3251,3Q6N1_0_9.4,Which object did the person open before they held the food?,2,Sequence_T2_444,Sequence_T2,The bag.,The door.,The laptop.,The towel.,The laptop. 3252,T7ST5_7.1_23,Which object did the person put down before they watched outside the window?,1,Sequence_T2_451,Sequence_T2,The clothes.,The towel.,The box.,The table.,The towel. 3253,SS3IL_4.3_21.1,Which object did the person put down before they sat at the table?,0,Sequence_T2_464,Sequence_T2,The sandwich.,The broom.,The cup/glass/bottle.,The closet/cabinet.,The sandwich. 3254,SS3IL_4.3_13.4,Which object did the person put down before they took the phone/camera?,0,Sequence_T2_465,Sequence_T2,The sandwich.,The bed.,The picture.,The blanket.,The sandwich. 3255,9MNZ5_10.4_23.3,Which object did the person open before they put down the food?,3,Sequence_T2_479,Sequence_T2,The book.,The laptop.,The closet/cabinet.,The box.,The box. 3256,DR7K0_13.9_22.7,Which object did the person put down before they took the clothes?,0,Sequence_T2_495,Sequence_T2,The broom.,The blanket.,The box.,The bag.,The broom. 3257,M98YV_5.1_31,Which object did the person eat before they held the food?,2,Sequence_T2_509,Sequence_T2,The closet/cabinet.,The medicine.,The sandwich.,The shoe.,The sandwich. 3258,M98YV_5.1_31,Which object did the person eat before they held the phone/camera?,3,Sequence_T2_510,Sequence_T2,The box.,The medicine.,The book.,The sandwich.,The sandwich. 3259,ON2Z4_8.4_22.2,Which object did the person take before they held the book?,0,Sequence_T2_521,Sequence_T2,The blanket.,The box.,The shoe.,The paper/notebook.,The blanket. 3260,ON2Z4_8.4_23.4,Which object did the person take before they opened the book?,3,Sequence_T2_522,Sequence_T2,The paper/notebook.,The food.,The bed.,The blanket.,The blanket. 3261,ON2Z4_8.4_23.7,Which object did the person take before they closed the book?,1,Sequence_T2_524,Sequence_T2,The towel.,The blanket.,The paper/notebook.,The picture.,The blanket. 3262,15PMU_17.9_32,Which object did the person take before they held the dish?,1,Sequence_T2_563,Sequence_T2,The phone/camera.,The cup/glass/bottle.,The bag.,The food.,The cup/glass/bottle. 3263,6ZWSU_11.6_21.8,Which object did the person put down before they took the phone/camera?,3,Sequence_T2_568,Sequence_T2,The box.,The picture.,The book.,The shoe.,The shoe. 3264,OVFR0_0_17.3,Which object did the person put down before they opened the door?,2,Sequence_T2_631,Sequence_T2,The clothes.,The medicine.,The book.,The cup/glass/bottle.,The book. 3265,136V6_13.9_28.2,Which object did the person lie on before they closed the book?,1,Sequence_T2_726,Sequence_T2,The towel.,The sofa/couch.,The bed.,The window.,The sofa/couch. 3266,136V6_5_17.3,Which object did the person throw before they took the book?,3,Sequence_T2_732,Sequence_T2,The closet/cabinet.,The blanket.,The box.,The shoe.,The shoe. 3267,BEAAA_0_11.8,Which object did the person eat before they put down the clothes?,1,Sequence_T2_768,Sequence_T2,The towel.,The sandwich.,The medicine.,The shoe.,The sandwich. 3268,98W87_10.2_26.2,Which object did the person take before they held the food?,2,Sequence_T2_791,Sequence_T2,The closet/cabinet.,The paper/notebook.,The sandwich.,The phone/camera.,The sandwich. 3269,WM2J7_0_23.8,Which object did the person wash before they opened the door?,3,Sequence_T2_798,Sequence_T2,The closet/cabinet.,The table.,The towel.,The window.,The window. 3270,3R4DD_2.1_18.4,Which object did the person take before they tidied up the clothes?,1,Sequence_T2_799,Sequence_T2,The floor.,The towel.,The book.,The cup/glass/bottle.,The towel. 3271,3R4DD_2.1_32.3,Which object did the person take before they tidied up the blanket?,0,Sequence_T2_800,Sequence_T2,The towel.,The dish.,The cup/glass/bottle.,The bed.,The towel. 3272,R971Z_11.1_32.8,Which object did the person put down before they held the mirror?,1,Sequence_T2_808,Sequence_T2,The clothes.,The shoe.,The cup/glass/bottle.,The book.,The shoe. 3273,3JCEI_8.3_15.1,Which object did the person close before they threw the food?,0,Sequence_T2_849,Sequence_T2,The laptop.,The towel.,The sandwich.,The book.,The laptop. 3274,3JCEI_10.4_21,Which object did the person throw before they held the laptop?,3,Sequence_T2_850,Sequence_T2,The bag.,The pillow.,The dish.,The food.,The food. 3275,HRASP_6.3_14.2,Which object did the person throw before they took the cup/glass/bottle?,2,Sequence_T2_863,Sequence_T2,The broom.,The closet/cabinet.,The shoe.,The clothes.,The shoe. 3276,93REJ_8.8_14.9,Which object did the person take before they put down the clothes?,1,Sequence_T2_886,Sequence_T2,The phone/camera.,The towel.,The food.,The pillow.,The towel. 3277,93REJ_10.2_18.2,Which object did the person put down before they drank from the cup/glass/bottle?,1,Sequence_T2_887,Sequence_T2,The dish.,The towel.,The pillow.,The laptop.,The towel. 3278,93REJ_10.2_32,Which object did the person put down before they sat on the floor?,0,Sequence_T2_888,Sequence_T2,The towel.,The blanket.,The medicine.,The cup/glass/bottle.,The towel. 3279,FO24A_0_9,Which object did the person sit at before they held the phone/camera?,0,Sequence_T2_889,Sequence_T2,The table.,The shoe.,The sofa/couch.,The pillow.,The table. 3280,YX3V0_1.4_32,Which object did the person tidy up before they held the book?,1,Sequence_T2_895,Sequence_T2,The clothes.,The table.,The broom.,The door.,The table. 3281,YX3V0_1.4_7.7,Which object did the person tidy up before they took the book?,3,Sequence_T2_896,Sequence_T2,The towel.,The closet/cabinet.,The door.,The table.,The table. 3282,5GP8M_8.5_34,Which object did the person take before they held the picture?,0,Sequence_T2_902,Sequence_T2,The book.,The window.,The clothes.,The paper/notebook.,The book. 3283,5GP8M_8.5_31.5,Which object did the person take before they watched at the picture?,0,Sequence_T2_904,Sequence_T2,The book.,The box.,The clothes.,The broom.,The book. 3284,8XXNK_3_14.4,Which object did the person open before they put down the food?,1,Sequence_T2_926,Sequence_T2,The medicine.,The box.,The bag.,The refrigerator.,The box. 3285,8XXNK_3_19,Which object did the person open before they took the food?,1,Sequence_T2_927,Sequence_T2,The door.,The box.,The blanket.,The refrigerator.,The box. 3286,9YOI8_4.8_22.7,Which object did the person open before they drank from the cup/glass/bottle?,1,Sequence_T2_931,Sequence_T2,The box.,The window.,The clothes.,The refrigerator.,The window. 3287,HOYUT_9.1_16,Which object did the person throw before they opened the door?,0,Sequence_T2_933,Sequence_T2,The towel.,The shoe.,The clothes.,The laptop.,The towel. 3288,HOYUT_12.3_20.1,Which object did the person close before they took the towel?,3,Sequence_T2_934,Sequence_T2,The window.,The sandwich.,The box.,The closet/cabinet.,The closet/cabinet. 3289,7TA23_8.7_21.4,Which object did the person take before they put down the shoe?,1,Sequence_T2_947,Sequence_T2,The floor.,The phone/camera.,The towel.,The food.,The phone/camera. 3290,QCVZN_12.8_26,Which object did the person put down before they sat on the sofa/couch?,1,Sequence_T2_950,Sequence_T2,The sandwich.,The book.,The pillow.,The door.,The book. 3291,QCVZN_12.8_26,Which object did the person put down before they sat at the table?,1,Sequence_T2_951,Sequence_T2,The phone/camera.,The book.,The box.,The clothes.,The book. 3292,ICQUJ_15.9_22,Which object did the person put down before they held the food?,3,Sequence_T2_961,Sequence_T2,The shoe.,The towel.,The pillow.,The sandwich.,The sandwich. 3293,M6ERH_11.6_33,Which object did the person put down before they sat at the table?,1,Sequence_T2_965,Sequence_T2,The refrigerator.,The food.,The cup/glass/bottle.,The bag.,The food. 3294,S444Y_6.3_37,Which object did the person take before they held the clothes?,0,Sequence_T2_981,Sequence_T2,The bag.,The sandwich.,The bed.,The phone/camera.,The bag. 3295,727IZ_5.3_14.7,Which object did the person take before they closed the closet/cabinet?,3,Sequence_T2_1042,Sequence_T2,The cup/glass/bottle.,The towel.,The food.,The paper/notebook.,The paper/notebook. 3296,Q5YDL_13_20.1,Which object did the person close before they took the food?,0,Sequence_T2_1061,Sequence_T2,The laptop.,The refrigerator.,The book.,The dish.,The laptop. 3297,EEGGA_0_8.9,Which object did the person put down before they took the food?,1,Sequence_T2_1076,Sequence_T2,The box.,The blanket.,The shoe.,The phone/camera.,The blanket. 3298,X8JVY_4.4_30,Which object did the person take before they put down the food?,0,Sequence_T2_1078,Sequence_T2,The book.,The paper/notebook.,The phone/camera.,The closet/cabinet.,The book. 3299,W0XPU_0.3_24,Which object did the person put down before they sat on the bed?,3,Sequence_T2_1096,Sequence_T2,The towel.,The picture.,The cup/glass/bottle.,The shoe.,The shoe. 3300,W0XPU_17.3_32,Which object did the person take before they held the food?,1,Sequence_T2_1097,Sequence_T2,The laptop.,The sandwich.,The blanket.,The broom.,The sandwich. 3301,W0XPU_0.3_24.3,Which object did the person put down before they took the sandwich?,3,Sequence_T2_1098,Sequence_T2,The food.,The box.,The window.,The shoe.,The shoe. 3302,SANRG_0_18.8,Which object did the person take before they threw the towel?,0,Sequence_T2_1153,Sequence_T2,The blanket.,The book.,The clothes.,The bag.,The blanket. 3303,TIPFG_5.3_16.3,Which object did the person take before they closed the box?,0,Sequence_T2_1176,Sequence_T2,The shoe.,The food.,The pillow.,The broom.,The shoe. 3304,RRQEV_12.3_19,Which object did the person take before they held the picture?,0,Sequence_T2_1177,Sequence_T2,The book.,The paper/notebook.,The blanket.,The shoe.,The book. 3305,RRQEV_0_11.3,Which object did the person tidy up before they put down the blanket?,2,Sequence_T2_1179,Sequence_T2,The bag.,The broom.,The clothes.,The floor.,The clothes. 3306,BFH78_7.7_19.9,Which object did the person take before they opened the book?,0,Sequence_T2_1195,Sequence_T2,The phone/camera.,The table.,The box.,The cup/glass/bottle.,The phone/camera. 3307,BFH78_17.9_23.2,Which object did the person take before they put down the book?,2,Sequence_T2_1196,Sequence_T2,The clothes.,The blanket.,The paper/notebook.,The window.,The paper/notebook. 3308,BFH78_19.3_25,Which object did the person put down before they took the towel?,1,Sequence_T2_1198,Sequence_T2,The cup/glass/bottle.,The paper/notebook.,The picture.,The floor.,The paper/notebook. 3309,U33ZS_1.5_32,Which object did the person take before they held the book?,1,Sequence_T2_1202,Sequence_T2,The picture.,The paper/notebook.,The blanket.,The bag.,The paper/notebook. 3310,U33ZS_1.5_14.8,Which object did the person take before they opened the laptop?,2,Sequence_T2_1204,Sequence_T2,The food.,The box.,The paper/notebook.,The closet/cabinet.,The paper/notebook. 3311,V3SOF_4_13.8,Which object did the person close before they took the dish?,2,Sequence_T2_1242,Sequence_T2,The door.,The window.,The closet/cabinet.,The blanket.,The closet/cabinet. 3312,V3SOF_4_15.3,Which object did the person close before they put down the dish?,0,Sequence_T2_1243,Sequence_T2,The closet/cabinet.,The window.,The refrigerator.,The phone/camera.,The closet/cabinet. 3313,V3SOF_4_13.1,Which object did the person close before they held the dish?,0,Sequence_T2_1245,Sequence_T2,The closet/cabinet.,The refrigerator.,The door.,The medicine.,The closet/cabinet. 3314,ZVRBL_0_12.3,Which object did the person tidy up before they held the dish?,2,Sequence_T2_1261,Sequence_T2,The paper/notebook.,The closet/cabinet.,The table.,The towel.,The table. 3315,ZVRBL_0_16.6,Which object did the person tidy up before they put down the dish?,0,Sequence_T2_1262,Sequence_T2,The table.,The pillow.,The clothes.,The sandwich.,The table. 3316,LUQWY_0.9_32.8,Which object did the person take before they sat on the bed?,0,Sequence_T2_1285,Sequence_T2,The laptop.,The blanket.,The sofa/couch.,The clothes.,The laptop. 3317,LUQWY_0.9_32.8,Which object did the person take before they sat on the sofa/couch?,3,Sequence_T2_1286,Sequence_T2,The clothes.,The cup/glass/bottle.,The table.,The laptop.,The laptop. 3318,LD6TD_12.2_36,Which object did the person close before they took the cup/glass/bottle?,2,Sequence_T2_1293,Sequence_T2,The pillow.,The refrigerator.,The book.,The box.,The book. 3319,TDGNE_6.1_27.8,Which object did the person put down before they opened the door?,0,Sequence_T2_1302,Sequence_T2,The food.,The cup/glass/bottle.,The medicine.,The box.,The food. 3320,RQRRD_7.5_22.3,Which object did the person close before they threw the clothes?,3,Sequence_T2_1326,Sequence_T2,The phone/camera.,The door.,The window.,The box.,The box. 3321,RQRRD_5.9_14.6,Which object did the person open before they held the clothes?,3,Sequence_T2_1327,Sequence_T2,The bag.,The closet/cabinet.,The book.,The box.,The box. 3322,3CLVI_18.2_24.7,Which object did the person take before they closed the door?,1,Sequence_T2_1335,Sequence_T2,The dish.,The towel.,The broom.,The clothes.,The towel. 3323,3CLVI_18.9_29.3,Which object did the person close before they threw the clothes?,3,Sequence_T2_1338,Sequence_T2,The door.,The towel.,The book.,The closet/cabinet.,The closet/cabinet. 3324,J7BOV_8.4_29.4,Which object did the person take before they drank from the cup/glass/bottle?,0,Sequence_T2_1346,Sequence_T2,The dish.,The pillow.,The box.,The towel.,The dish. 3325,J7BOV_8.4_32.9,Which object did the person take before they put down the cup/glass/bottle?,3,Sequence_T2_1347,Sequence_T2,The book.,The bag.,The towel.,The dish.,The dish. 3326,J7BOV_4.6_12.4,Which object did the person put down before they took the cup/glass/bottle?,2,Sequence_T2_1348,Sequence_T2,The closet/cabinet.,The picture.,The phone/camera.,The box.,The phone/camera. 3327,UY0SK_10.9_19.6,Which object did the person put down before they held the sandwich?,2,Sequence_T2_1379,Sequence_T2,The pillow.,The book.,The paper/notebook.,The cup/glass/bottle.,The paper/notebook. 3328,UY0SK_10.9_19.3,Which object did the person put down before they held the food?,0,Sequence_T2_1380,Sequence_T2,The paper/notebook.,The clothes.,The cup/glass/bottle.,The dish.,The paper/notebook. 3329,UY0SK_10.9_18,Which object did the person put down before they took the dish?,3,Sequence_T2_1381,Sequence_T2,The shoe.,The blanket.,The food.,The paper/notebook.,The paper/notebook. 3330,UY0SK_10.9_19.3,Which object did the person put down before they held the dish?,3,Sequence_T2_1382,Sequence_T2,The sandwich.,The medicine.,The food.,The paper/notebook.,The paper/notebook. 3331,DPLMM_0_13.2,Which object did the person sit on before they put down the pillow?,0,Sequence_T2_1383,Sequence_T2,The floor.,The picture.,The sofa/couch.,The bed.,The floor. 3332,DPLMM_0_12.8,Which object did the person sit on before they took the pillow?,1,Sequence_T2_1384,Sequence_T2,The bed.,The floor.,The sofa/couch.,The clothes.,The floor. 3333,UYZKX_3.9_26.9,Which object did the person open before they threw the blanket?,3,Sequence_T2_1390,Sequence_T2,The paper/notebook.,The door.,The box.,The closet/cabinet.,The closet/cabinet. 3334,74GN1_25.9_36.1,Which object did the person put down before they held the dish?,0,Sequence_T2_1397,Sequence_T2,The food.,The pillow.,The bag.,The shoe.,The food. 3335,35ZZP_3.5_12.4,Which object did the person close before they put down the food?,3,Sequence_T2_1432,Sequence_T2,The clothes.,The box.,The refrigerator.,The closet/cabinet.,The closet/cabinet. 3336,D1NT7_3.2_14.3,Which object did the person put down before they closed the box?,3,Sequence_T2_1456,Sequence_T2,The towel.,The broom.,The sofa/couch.,The dish.,The dish. 3337,D1NT7_15.5_33,Which object did the person take before they tidied up the clothes?,3,Sequence_T2_1459,Sequence_T2,The book.,The towel.,The cup/glass/bottle.,The blanket.,The blanket. 3338,1FIGA_9.6_19.5,Which object did the person close before they opened the door?,0,Sequence_T2_1500,Sequence_T2,The box.,The window.,The book.,The bed.,The box. 3339,W8XQ9_0.2_21.7,Which object did the person tidy up before they put down the clothes?,0,Sequence_T2_1502,Sequence_T2,The table.,The blanket.,The refrigerator.,The closet/cabinet.,The table. 3340,W8XQ9_0.2_20.9,Which object did the person tidy up before they held the clothes?,3,Sequence_T2_1503,Sequence_T2,The blanket.,The dish.,The cup/glass/bottle.,The table.,The table. 3341,LSKA2_10.1_30,Which object did the person take before they held the sandwich?,0,Sequence_T2_1511,Sequence_T2,The food.,The clothes.,The dish.,The cup/glass/bottle.,The food. 3342,S673O_0_31.4,Which object did the person lie on before they ate the sandwich?,2,Sequence_T2_1524,Sequence_T2,The bag.,The bed.,The sofa/couch.,The medicine.,The sofa/couch. 3343,S673O_0_35,Which object did the person lie on before they drank from the cup/glass/bottle?,0,Sequence_T2_1525,Sequence_T2,The sofa/couch.,The medicine.,The bed.,The bag.,The sofa/couch. 3344,S673O_24.4_35,Which object did the person eat before they held the food?,1,Sequence_T2_1526,Sequence_T2,The closet/cabinet.,The sandwich.,The medicine.,The laptop.,The sandwich. 3345,2PREF_0_15.1,Which object did the person put down before they opened the closet/cabinet?,1,Sequence_T2_1547,Sequence_T2,The box.,The dish.,The book.,The refrigerator.,The dish. 3346,2PREF_0_14.4,Which object did the person put down before they took the food?,1,Sequence_T2_1549,Sequence_T2,The clothes.,The dish.,The window.,The cup/glass/bottle.,The dish. 3347,2WGSN_14_27.1,Which object did the person take before they washed the dish?,0,Sequence_T2_1556,Sequence_T2,The towel.,The table.,The paper/notebook.,The clothes.,The towel. 3348,EDVAM_0_16,Which object did the person sit on before they closed the window?,1,Sequence_T2_1557,Sequence_T2,The bed.,The sofa/couch.,The bag.,The book.,The sofa/couch. 3349,YMGGV_0_17.9,Which object did the person sit on before they took the blanket?,0,Sequence_T2_1609,Sequence_T2,The sofa/couch.,The bed.,The refrigerator.,The floor.,The sofa/couch. 3350,LW5O6_9.5_17,Which object did the person take before they held the shoe?,3,Sequence_T2_1610,Sequence_T2,The blanket.,The laptop.,The pillow.,The bag.,The bag. 3351,MD6P2_0_13.4,Which object did the person eat before they opened the box?,3,Sequence_T2_1614,Sequence_T2,The sandwich.,The towel.,The bag.,The medicine.,The medicine. 3352,MD6P2_5_22.3,Which object did the person open before they held the medicine?,3,Sequence_T2_1615,Sequence_T2,The picture.,The closet/cabinet.,The bag.,The box.,The box. 3353,MD6P2_5_28.8,Which object did the person open before they ate the medicine?,3,Sequence_T2_1616,Sequence_T2,The closet/cabinet.,The laptop.,The book.,The box.,The box. 3354,MD6P2_5_29.3,Which object did the person open before they tidied up the table?,3,Sequence_T2_1617,Sequence_T2,The door.,The paper/notebook.,The window.,The box.,The box. 3355,WXUZK_1.9_31,Which object did the person throw before they lied on the bed?,1,Sequence_T2_1630,Sequence_T2,The pillow.,The clothes.,The blanket.,The shoe.,The clothes. 3356,NM65M_4.3_16.9,Which object did the person take before they threw the blanket?,0,Sequence_T2_1654,Sequence_T2,The pillow.,The paper/notebook.,The clothes.,The table.,The pillow. 3357,NM65M_4.3_17,Which object did the person take before they held the blanket?,2,Sequence_T2_1655,Sequence_T2,The towel.,The clothes.,The pillow.,The sofa/couch.,The pillow. 3358,RXLKF_1.8_30.2,Which object did the person sit on before they held the book?,3,Sequence_T2_1656,Sequence_T2,The clothes.,The table.,The floor.,The sofa/couch.,The sofa/couch. 3359,RXLKF_1.8_15.2,Which object did the person sit on before they opened the book?,3,Sequence_T2_1657,Sequence_T2,The bag.,The door.,The floor.,The sofa/couch.,The sofa/couch. 3360,NVGDG_9.8_32.8,Which object did the person sit on before they held the blanket?,1,Sequence_T2_1668,Sequence_T2,The picture.,The sofa/couch.,The bed.,The table.,The sofa/couch. 3361,NVGDG_9.8_17.3,Which object did the person sit on before they took the blanket?,3,Sequence_T2_1669,Sequence_T2,The shoe.,The bag.,The bed.,The sofa/couch.,The sofa/couch. 3362,K71S1_10.1_18.2,Which object did the person take before they held the clothes?,0,Sequence_T2_1681,Sequence_T2,The blanket.,The cup/glass/bottle.,The pillow.,The towel.,The blanket. 3363,K71S1_0_24.3,Which object did the person open before they sat on the floor?,3,Sequence_T2_1682,Sequence_T2,The closet/cabinet.,The cup/glass/bottle.,The laptop.,The box.,The box. 3364,K71S1_10.1_20.9,Which object did the person take before they tidied up the clothes?,2,Sequence_T2_1684,Sequence_T2,The dish.,The food.,The blanket.,The shoe.,The blanket. 3365,JOLLV_0_17.3,Which object did the person sit on before they opened the refrigerator?,2,Sequence_T2_1707,Sequence_T2,The box.,The broom.,The sofa/couch.,The bed.,The sofa/couch. 3366,V3RAX_14.8_29,Which object did the person tidy up before they ate the sandwich?,0,Sequence_T2_1719,Sequence_T2,The clothes.,The table.,The medicine.,The window.,The clothes. 3367,V3RAX_7.1_21.2,Which object did the person throw before they took the clothes?,1,Sequence_T2_1721,Sequence_T2,The towel.,The blanket.,The shoe.,The cup/glass/bottle.,The blanket. 3368,V3RAX_7.1_24.4,Which object did the person throw before they tidied up the clothes?,2,Sequence_T2_1723,Sequence_T2,The pillow.,The closet/cabinet.,The blanket.,The phone/camera.,The blanket. 3369,V3RAX_7.1_19.5,Which object did the person throw before they held the clothes?,0,Sequence_T2_1724,Sequence_T2,The blanket.,The door.,The broom.,The towel.,The blanket. 3370,FM5D5_4.2_18.1,Which object did the person throw before they tidied up the clothes?,1,Sequence_T2_1728,Sequence_T2,The box.,The bag.,The dish.,The pillow.,The bag. 3371,IWF0U_0.8_20.3,Which object did the person tidy up before they sat at the table?,2,Sequence_T2_1742,Sequence_T2,The laptop.,The clothes.,The blanket.,The bed.,The blanket. 3372,STAFD_3.3_46.4,Which object did the person eat before they threw the clothes?,2,Sequence_T2_1774,Sequence_T2,The refrigerator.,The medicine.,The sandwich.,The towel.,The sandwich. 3373,YFI1M_14.2_26.1,Which object did the person put down before they took the phone/camera?,0,Sequence_T2_1785,Sequence_T2,The clothes.,The book.,The towel.,The picture.,The clothes. 3374,P2HZG_0_10.2,Which object did the person sit at before they closed the laptop?,2,Sequence_T2_1798,Sequence_T2,The picture.,The bed.,The table.,The closet/cabinet.,The table. 3375,P2HZG_4_18.4,Which object did the person close before they opened the closet/cabinet?,3,Sequence_T2_1799,Sequence_T2,The book.,The clothes.,The refrigerator.,The laptop.,The laptop. 3376,PDRVY_17.9_27.3,Which object did the person close before they threw the bag?,1,Sequence_T2_1830,Sequence_T2,The box.,The closet/cabinet.,The laptop.,The door.,The closet/cabinet. 3377,PDRVY_9_24.6,Which object did the person take before they closed the closet/cabinet?,2,Sequence_T2_1831,Sequence_T2,The phone/camera.,The towel.,The bag.,The sandwich.,The bag. 3378,TAZGF_5_13,Which object did the person put down before they sat on the sofa/couch?,2,Sequence_T2_1851,Sequence_T2,The bed.,The picture.,The food.,The book.,The food. 3379,TAZGF_5_13,Which object did the person put down before they sat at the table?,3,Sequence_T2_1852,Sequence_T2,The phone/camera.,The picture.,The dish.,The food.,The food. 3380,01ZWG_4.9_13.5,Which object did the person open before they sat at the table?,2,Sequence_T2_1855,Sequence_T2,The floor.,The refrigerator.,The laptop.,The book.,The laptop. 3381,IO712_3.7_28.2,Which object did the person sit on before they held the book?,1,Sequence_T2_1871,Sequence_T2,The table.,The floor.,The broom.,The bed.,The floor. 3382,IO712_3.7_14.3,Which object did the person sit on before they opened the book?,2,Sequence_T2_1872,Sequence_T2,The box.,The laptop.,The floor.,The table.,The floor. 3383,IO712_0_8.6,Which object did the person close before they took the book?,3,Sequence_T2_1873,Sequence_T2,The laptop.,The door.,The blanket.,The window.,The window. 3384,IO712_3.7_31.5,Which object did the person sit on before they watched at the book?,1,Sequence_T2_1875,Sequence_T2,The laptop.,The floor.,The table.,The bed.,The floor. 3385,KVYOZ_1.2_8,Which object did the person put down before they took the cup/glass/bottle?,0,Sequence_T2_1908,Sequence_T2,The picture.,The bag.,The blanket.,The food.,The picture. 3386,KVYOZ_0_6,Which object did the person sit on before they put down the picture?,3,Sequence_T2_1909,Sequence_T2,The sofa/couch.,The box.,The medicine.,The floor.,The floor. 3387,V8JOH_0_22,Which object did the person eat before they closed the door?,0,Sequence_T2_1911,Sequence_T2,The medicine.,The sandwich.,The laptop.,The food.,The medicine. 3388,SHVVB_15.7_31,Which object did the person put down before they held the sandwich?,2,Sequence_T2_1935,Sequence_T2,The food.,The cup/glass/bottle.,The paper/notebook.,The blanket.,The paper/notebook. 3389,FM078_27.7_36.2,Which object did the person close before they opened the bag?,3,Sequence_T2_1938,Sequence_T2,The refrigerator.,The paper/notebook.,The book.,The closet/cabinet.,The closet/cabinet. 3390,41EQS_6.8_33,Which object did the person throw before they sat at the table?,2,Sequence_T2_1940,Sequence_T2,The book.,The blanket.,The bag.,The closet/cabinet.,The bag. 3391,41EQS_3.6_13.8,Which object did the person put down before they threw the bag?,2,Sequence_T2_1941,Sequence_T2,The shoe.,The floor.,The blanket.,The paper/notebook.,The blanket. 3392,41EQS_6.8_33,Which object did the person throw before they drank from the cup/glass/bottle?,1,Sequence_T2_1942,Sequence_T2,The book.,The bag.,The closet/cabinet.,The blanket.,The bag. 3393,6PL9Z_0_9.5,Which object did the person sit on before they took the blanket?,3,Sequence_T2_1952,Sequence_T2,The floor.,The bed.,The window.,The sofa/couch.,The sofa/couch. 3394,6PL9Z_3.4_11.3,Which object did the person take before they held the book?,1,Sequence_T2_1953,Sequence_T2,The cup/glass/bottle.,The blanket.,The laptop.,The paper/notebook.,The blanket. 3395,7NBPG_20.2_28,Which object did the person throw before they took the paper/notebook?,1,Sequence_T2_1954,Sequence_T2,The shoe.,The book.,The bag.,The laptop.,The book. 3396,DRGKV_12.4_30.6,Which object did the person throw before they held the phone/camera?,2,Sequence_T2_1965,Sequence_T2,The pillow.,The blanket.,The clothes.,The closet/cabinet.,The clothes. 3397,ICL1M_16.1_26.2,Which object did the person close before they drank from the cup/glass/bottle?,2,Sequence_T2_1975,Sequence_T2,The closet/cabinet.,The door.,The book.,The window.,The book. 3398,ICL1M_16.1_31,Which object did the person close before they put down the cup/glass/bottle?,0,Sequence_T2_1976,Sequence_T2,The book.,The box.,The door.,The closet/cabinet.,The book. 3399,BWG9B_0_32,Which object did the person take before they sat on the sofa/couch?,2,Sequence_T2_2000,Sequence_T2,The bag.,The clothes.,The cup/glass/bottle.,The phone/camera.,The cup/glass/bottle. 3400,5OIQ7_0_27.1,Which object did the person lie on before they drank from the cup/glass/bottle?,1,Sequence_T2_2002,Sequence_T2,The book.,The bed.,The clothes.,The sofa/couch.,The bed. 3401,5OIQ7_0_28.8,Which object did the person lie on before they ate the medicine?,3,Sequence_T2_2003,Sequence_T2,The towel.,The sofa/couch.,The sandwich.,The bed.,The bed. 3402,LH6LE_15.2_26.9,Which object did the person put down before they closed the closet/cabinet?,2,Sequence_T2_2030,Sequence_T2,The bag.,The food.,The dish.,The phone/camera.,The dish. 3403,OUAIS_23.1_36.7,Which object did the person throw before they opened the door?,3,Sequence_T2_2046,Sequence_T2,The food.,The bag.,The blanket.,The pillow.,The pillow. 3404,OUAIS_11.7_29,Which object did the person take before they threw the pillow?,3,Sequence_T2_2047,Sequence_T2,The broom.,The book.,The paper/notebook.,The clothes.,The clothes. 3405,2LCLG_18.2_32,Which object did the person throw before they held the book?,2,Sequence_T2_2055,Sequence_T2,The blanket.,The broom.,The bag.,The shoe.,The bag. 3406,2LCLG_11_17.2,Which object did the person take before they threw the book?,3,Sequence_T2_2056,Sequence_T2,The dish.,The bag.,The box.,The paper/notebook.,The paper/notebook. 3407,TZL6H_0_21.9,Which object did the person eat before they drank from the cup/glass/bottle?,0,Sequence_T2_2060,Sequence_T2,The medicine.,The sandwich.,The laptop.,The clothes.,The medicine. 3408,TZL6H_0_32,Which object did the person eat before they washed the mirror?,1,Sequence_T2_2061,Sequence_T2,The cup/glass/bottle.,The medicine.,The dish.,The sandwich.,The medicine. 3409,TZL6H_0_27.9,Which object did the person eat before they held the clothes?,0,Sequence_T2_2062,Sequence_T2,The medicine.,The food.,The dish.,The sandwich.,The medicine. 3410,U6L1X_19.8_27.2,Which object did the person put down before they closed the closet/cabinet?,1,Sequence_T2_2073,Sequence_T2,The cup/glass/bottle.,The broom.,The picture.,The shoe.,The broom. 3411,ZNH10_12.3_30,Which object did the person take before they held the blanket?,2,Sequence_T2_2077,Sequence_T2,The phone/camera.,The laptop.,The towel.,The clothes.,The towel. 3412,2NV6L_9.6_27.8,Which object did the person put down before they took the pillow?,3,Sequence_T2_2098,Sequence_T2,The clothes.,The blanket.,The cup/glass/bottle.,The bag.,The bag. 3413,MUO4G_0_12.8,Which object did the person sit on before they opened the refrigerator?,1,Sequence_T2_2129,Sequence_T2,The floor.,The table.,The closet/cabinet.,The laptop.,The table. 3414,RRZU3_3.3_21.6,Which object did the person open before they drank from the cup/glass/bottle?,1,Sequence_T2_2139,Sequence_T2,The window.,The laptop.,The phone/camera.,The closet/cabinet.,The laptop. 3415,RRZU3_3.3_22.2,Which object did the person open before they put down the dish?,1,Sequence_T2_2140,Sequence_T2,The box.,The laptop.,The pillow.,The book.,The laptop. 3416,5MF9Y_13.6_20.3,Which object did the person put down before they threw the food?,2,Sequence_T2_2159,Sequence_T2,The cup/glass/bottle.,The towel.,The broom.,The pillow.,The broom. 3417,UEC1F_12.6_18.7,Which object did the person take before they held the clothes?,3,Sequence_T2_2194,Sequence_T2,The food.,The bed.,The towel.,The blanket.,The blanket. 3418,2544C_10.6_78.7,Which object did the person put down before they took the broom?,1,Sequence_T2_2200,Sequence_T2,The clothes.,The towel.,The shoe.,The box.,The towel. 3419,2544C_10.6_45,Which object did the person put down before they tidied up the table?,3,Sequence_T2_2201,Sequence_T2,The clothes.,The food.,The pillow.,The towel.,The towel. 3420,C6LW1_19.4_25.8,Which object did the person put down before they took the cup/glass/bottle?,2,Sequence_T2_2237,Sequence_T2,The shoe.,The bag.,The phone/camera.,The door.,The phone/camera. 3421,JBJGX_12.3_28.4,Which object did the person close before they put down the clothes?,2,Sequence_T2_2255,Sequence_T2,The sofa/couch.,The dish.,The laptop.,The book.,The laptop. 3422,43FG9_0.7_8.7,Which object did the person close before they put down the clothes?,3,Sequence_T2_2256,Sequence_T2,The book.,The box.,The pillow.,The closet/cabinet.,The closet/cabinet. 3423,9335E_19.1_43,Which object did the person put down before they opened the closet/cabinet?,0,Sequence_T2_2259,Sequence_T2,The dish.,The medicine.,The cup/glass/bottle.,The food.,The dish. 3424,WLA52_0.6_23,Which object did the person take before they put down the blanket?,1,Sequence_T2_2264,Sequence_T2,The shoe.,The clothes.,The bag.,The phone/camera.,The clothes. 3425,ZCH1J_0_23.2,Which object did the person open before they held the food?,0,Sequence_T2_2268,Sequence_T2,The bag.,The book.,The floor.,The refrigerator.,The bag. 3426,N2GFQ_6.9_39,Which object did the person put down before they lied on the sofa/couch?,3,Sequence_T2_2275,Sequence_T2,The table.,The clothes.,The cup/glass/bottle.,The bag.,The bag. 3427,WRW74_3.7_24.9,Which object did the person open before they took the dish?,2,Sequence_T2_2283,Sequence_T2,The book.,The door.,The box.,The closet/cabinet.,The box. 3428,WRW74_3.7_19.1,Which object did the person open before they held the dish?,1,Sequence_T2_2284,Sequence_T2,The door.,The box.,The closet/cabinet.,The bag.,The box. 3429,BQKW5_2.7_16.2,Which object did the person put down before they took the towel?,1,Sequence_T2_2297,Sequence_T2,The broom.,The box.,The window.,The picture.,The box. 3430,BQKW5_11.5_32.7,Which object did the person put down before they washed the clothes?,2,Sequence_T2_2298,Sequence_T2,The pillow.,The shoe.,The towel.,The blanket.,The towel. 3431,XXIT4_0_18.9,Which object did the person sit at before they ate the sandwich?,1,Sequence_T2_2305,Sequence_T2,The medicine.,The table.,The towel.,The sofa/couch.,The table. 3432,9BCZU_21.3_32.1,Which object did the person take before they put down the blanket?,1,Sequence_T2_2308,Sequence_T2,The picture.,The clothes.,The closet/cabinet.,The cup/glass/bottle.,The clothes. 3433,9BCZU_25_34,Which object did the person put down before they washed the clothes?,3,Sequence_T2_2309,Sequence_T2,The window.,The shoe.,The phone/camera.,The blanket.,The blanket. 3434,HJM82_0_30.7,Which object did the person take before they drank from the cup/glass/bottle?,2,Sequence_T2_2310,Sequence_T2,The book.,The food.,The phone/camera.,The closet/cabinet.,The phone/camera. 3435,9PXC0_11.2_26.3,Which object did the person open before they held the phone/camera?,3,Sequence_T2_2312,Sequence_T2,The window.,The paper/notebook.,The bag.,The box.,The box. 3436,9PXC0_0_15,Which object did the person lie on before they took the box?,1,Sequence_T2_2313,Sequence_T2,The window.,The bed.,The broom.,The floor.,The bed. 3437,9PXC0_0_15,Which object did the person lie on before they held the box?,0,Sequence_T2_2314,Sequence_T2,The bed.,The table.,The medicine.,The sofa/couch.,The bed. 3438,JZDL6_9_28.7,Which object did the person sit on before they held the shoe?,0,Sequence_T2_2356,Sequence_T2,The bed.,The sofa/couch.,The table.,The floor.,The bed. 3439,FETME_7.4_20.4,Which object did the person take before they held the book?,3,Sequence_T2_2365,Sequence_T2,The food.,The cup/glass/bottle.,The box.,The paper/notebook.,The paper/notebook. 3440,FETME_7.4_15.7,Which object did the person take before they opened the book?,2,Sequence_T2_2366,Sequence_T2,The refrigerator.,The food.,The paper/notebook.,The bag.,The paper/notebook. 3441,J6TVB_10.5_25.3,Which object did the person put down before they took the phone/camera?,3,Sequence_T2_2376,Sequence_T2,The cup/glass/bottle.,The pillow.,The book.,The dish.,The dish. 3442,J6TVB_0_20.5,Which object did the person sit at before they put down the dish?,1,Sequence_T2_2377,Sequence_T2,The food.,The table.,The phone/camera.,The floor.,The table. 3443,ZAJAJ_2.4_17.6,Which object did the person put down before they took the picture?,1,Sequence_T2_2430,Sequence_T2,The cup/glass/bottle.,The pillow.,The dish.,The broom.,The pillow. 3444,ZAJAJ_12.2_29.1,Which object did the person take before they opened the laptop?,0,Sequence_T2_2431,Sequence_T2,The picture.,The closet/cabinet.,The book.,The pillow.,The picture. 3445,I20N2_8.4_31.1,Which object did the person take before they held the clothes?,0,Sequence_T2_2446,Sequence_T2,The towel.,The closet/cabinet.,The laptop.,The bag.,The towel. 3446,I20N2_8.4_33.1,Which object did the person take before they put down the clothes?,3,Sequence_T2_2447,Sequence_T2,The food.,The blanket.,The phone/camera.,The towel.,The towel. 3447,I20N2_8.4_33.1,Which object did the person take before they threw the clothes?,3,Sequence_T2_2448,Sequence_T2,The blanket.,The dish.,The bag.,The towel.,The towel. 3448,KLP7V_7.9_25,Which object did the person put down before they drank from the cup/glass/bottle?,0,Sequence_T2_2450,Sequence_T2,The box.,The clothes.,The picture.,The broom.,The box. 3449,WBS4I_8.9_20.9,Which object did the person close before they held the book?,0,Sequence_T2_2469,Sequence_T2,The closet/cabinet.,The laptop.,The door.,The refrigerator.,The closet/cabinet. 3450,P4DL9_0_32.2,Which object did the person close before they took the phone/camera?,2,Sequence_T2_2472,Sequence_T2,The door.,The bed.,The refrigerator.,The box.,The refrigerator. 3451,OO4FE_0.1_18.3,Which object did the person throw before they took the book?,2,Sequence_T2_2475,Sequence_T2,The towel.,The laptop.,The bag.,The blanket.,The bag. 3452,52WDV_1.2_26.7,Which object did the person take before they opened the book?,0,Sequence_T2_2476,Sequence_T2,The clothes.,The paper/notebook.,The dish.,The sandwich.,The clothes. 3453,LSVHK_18.1_27.3,Which object did the person throw before they opened the door?,0,Sequence_T2_2481,Sequence_T2,The towel.,The blanket.,The food.,The book.,The towel. 3454,FX1T5_2.6_14.3,Which object did the person put down before they opened the book?,0,Sequence_T2_2482,Sequence_T2,The picture.,The blanket.,The clothes.,The sandwich.,The picture. 3455,OCVY4_0_8.1,Which object did the person put down before they took the food?,1,Sequence_T2_2507,Sequence_T2,The picture.,The bag.,The book.,The dish.,The bag. 3456,KU656_0_12.8,Which object did the person lie on before they took the towel?,3,Sequence_T2_2525,Sequence_T2,The sofa/couch.,The clothes.,The food.,The bed.,The bed. 3457,KU656_0_21.8,Which object did the person lie on before they held the clothes?,0,Sequence_T2_2526,Sequence_T2,The bed.,The box.,The book.,The sofa/couch.,The bed. 3458,2GF6R_0_23,Which object did the person take before they held the food?,0,Sequence_T2_2557,Sequence_T2,The sandwich.,The picture.,The broom.,The book.,The sandwich. 3459,SM5WL_0_17.1,Which object did the person lie on before they tidied up the blanket?,2,Sequence_T2_2569,Sequence_T2,The closet/cabinet.,The paper/notebook.,The bed.,The sofa/couch.,The bed. 3460,3IRHH_14.6_28.8,Which object did the person put down before they opened the book?,0,Sequence_T2_2570,Sequence_T2,The dish.,The shoe.,The box.,The bag.,The dish. 3461,3IRHH_0.7_21.3,Which object did the person take before they put down the dish?,1,Sequence_T2_2571,Sequence_T2,The bag.,The paper/notebook.,The sandwich.,The cup/glass/bottle.,The paper/notebook. 3462,7SXQS_11_32,Which object did the person take before they sat at the table?,0,Sequence_T2_2578,Sequence_T2,The blanket.,The book.,The bed.,The dish.,The blanket. 3463,7SXQS_1_17.5,Which object did the person close before they took the blanket?,2,Sequence_T2_2579,Sequence_T2,The laptop.,The box.,The window.,The dish.,The window. 3464,1UI6I_4.5_16.4,Which object did the person close before they held the mirror?,3,Sequence_T2_2593,Sequence_T2,The book.,The window.,The door.,The closet/cabinet.,The closet/cabinet. 3465,5I4UT_2.7_10.7,Which object did the person lie on before they watched at the picture?,2,Sequence_T2_2597,Sequence_T2,The dish.,The blanket.,The floor.,The bed.,The floor. 3466,BWLA8_6_30.4,Which object did the person close before they watched at the book?,0,Sequence_T2_2638,Sequence_T2,The closet/cabinet.,The refrigerator.,The picture.,The window.,The closet/cabinet. 3467,R1RDT_5_26.1,Which object did the person lie on before they closed the door?,0,Sequence_T2_2662,Sequence_T2,The bed.,The food.,The floor.,The window.,The bed. 3468,R1RDT_5_26.3,Which object did the person lie on before they held the phone/camera?,2,Sequence_T2_2663,Sequence_T2,The sofa/couch.,The clothes.,The bed.,The broom.,The bed. 3469,FL6DF_3.2_13.8,Which object did the person open before they took the blanket?,0,Sequence_T2_2665,Sequence_T2,The laptop.,The sandwich.,The closet/cabinet.,The door.,The laptop. 3470,FL6DF_3.2_13.6,Which object did the person open before they tidied up the blanket?,0,Sequence_T2_2666,Sequence_T2,The laptop.,The refrigerator.,The bag.,The box.,The laptop. 3471,FL6DF_3.2_13.5,Which object did the person open before they held the blanket?,0,Sequence_T2_2667,Sequence_T2,The laptop.,The floor.,The window.,The door.,The laptop. 3472,FL6DF_10.3_19.7,Which object did the person throw before they put down the laptop?,0,Sequence_T2_2668,Sequence_T2,The pillow.,The clothes.,The shoe.,The door.,The pillow. 3473,ZS9XR_10.6_41.9,Which object did the person eat before they tidied up the table?,3,Sequence_T2_2679,Sequence_T2,The broom.,The sandwich.,The picture.,The medicine.,The medicine. 3474,ZS9XR_23.3_43.2,Which object did the person put down before they washed the table?,3,Sequence_T2_2680,Sequence_T2,The food.,The towel.,The book.,The paper/notebook.,The paper/notebook. 3475,ZS9XR_10.6_33.3,Which object did the person eat before they put down the paper/notebook?,2,Sequence_T2_2682,Sequence_T2,The refrigerator.,The sandwich.,The medicine.,The shoe.,The medicine. 3476,MLS4T_2.3_12.3,Which object did the person throw before they took the cup/glass/bottle?,3,Sequence_T2_2704,Sequence_T2,The dish.,The clothes.,The bag.,The box.,The box. 3477,YGQ7E_8.9_22,Which object did the person tidy up before they opened the door?,0,Sequence_T2_2705,Sequence_T2,The table.,The clothes.,The floor.,The closet/cabinet.,The table. 3478,BAUQE_0_10.2,Which object did the person tidy up before they took the broom?,0,Sequence_T2_2707,Sequence_T2,The clothes.,The dish.,The towel.,The table.,The clothes. 3479,BGQIF_1.6_9.4,Which object did the person sit on before they put down the pillow?,0,Sequence_T2_2712,Sequence_T2,The sofa/couch.,The refrigerator.,The dish.,The bed.,The sofa/couch. 3480,BGQIF_2.9_17.7,Which object did the person put down before they held the food?,3,Sequence_T2_2713,Sequence_T2,The dish.,The laptop.,The book.,The pillow.,The pillow. 3481,BGQIF_2.9_37.4,Which object did the person put down before they held the food?,3,Sequence_T2_2714,Sequence_T2,The blanket.,The sandwich.,The towel.,The pillow.,The pillow. 3482,APVAD_17.3_26.2,Which object did the person take before they opened the door?,2,Sequence_T2_2715,Sequence_T2,The refrigerator.,The towel.,The book.,The broom.,The book. 3483,UF91R_7.3_14.3,Which object did the person close before they opened the refrigerator?,1,Sequence_T2_2723,Sequence_T2,The door.,The laptop.,The dish.,The closet/cabinet.,The laptop. 3484,PQYWB_6.1_36.1,Which object did the person put down before they opened the door?,0,Sequence_T2_2733,Sequence_T2,The towel.,The sandwich.,The cup/glass/bottle.,The table.,The towel. 3485,ZXSRR_0_37,Which object did the person put down before they ate the sandwich?,3,Sequence_T2_2740,Sequence_T2,The cup/glass/bottle.,The shoe.,The bed.,The laptop.,The laptop. 3486,ZXSRR_0_37,Which object did the person put down before they held the sandwich?,3,Sequence_T2_2741,Sequence_T2,The cup/glass/bottle.,The closet/cabinet.,The book.,The laptop.,The laptop. 3487,ZXSRR_0_37,Which object did the person put down before they held the food?,1,Sequence_T2_2742,Sequence_T2,The closet/cabinet.,The laptop.,The dish.,The sandwich.,The laptop. 3488,ZXSRR_0_37,Which object did the person put down before they took the food?,1,Sequence_T2_2743,Sequence_T2,The dish.,The laptop.,The paper/notebook.,The closet/cabinet.,The laptop. 3489,ZXSRR_0_37,Which object did the person put down before they took the sandwich?,0,Sequence_T2_2744,Sequence_T2,The laptop.,The phone/camera.,The paper/notebook.,The dish.,The laptop. 3490,ZXSRR_0_37,Which object did the person put down before they took the book?,1,Sequence_T2_2745,Sequence_T2,The cup/glass/bottle.,The laptop.,The medicine.,The picture.,The laptop. 3491,PRV4N_2.7_42.5,Which object did the person take before they watched at the book?,1,Sequence_T2_2759,Sequence_T2,The table.,The cup/glass/bottle.,The phone/camera.,The pillow.,The cup/glass/bottle. 3492,NNG97_0.6_14,Which object did the person put down before they took the laptop?,3,Sequence_T2_2761,Sequence_T2,The bag.,The box.,The shoe.,The book.,The book. 3493,X8XQE_7.9_38.8,Which object did the person close before they held the phone/camera?,2,Sequence_T2_2777,Sequence_T2,The door.,The clothes.,The closet/cabinet.,The book.,The closet/cabinet. 3494,EFR6I_16.9_35.2,Which object did the person take before they held the book?,1,Sequence_T2_2782,Sequence_T2,The towel.,The paper/notebook.,The refrigerator.,The laptop.,The paper/notebook. 3495,EFR6I_16.9_28.2,Which object did the person take before they watched at the book?,0,Sequence_T2_2783,Sequence_T2,The paper/notebook.,The dish.,The laptop.,The bag.,The paper/notebook. 3496,NKCXF_9.8_16.8,Which object did the person put down before they took the phone/camera?,3,Sequence_T2_2788,Sequence_T2,The laptop.,The shoe.,The bed.,The pillow.,The pillow. 3497,ZZ2SF_16.2_32,Which object did the person eat before they drank from the cup/glass/bottle?,2,Sequence_T2_2831,Sequence_T2,The sandwich.,The pillow.,The medicine.,The door.,The medicine. 3498,8L9AJ_13.7_31.2,Which object did the person take before they closed the box?,0,Sequence_T2_2832,Sequence_T2,The laptop.,The towel.,The food.,The blanket.,The laptop. 3499,9X208_22.2_30.4,Which object did the person take before they opened the door?,2,Sequence_T2_2834,Sequence_T2,The cup/glass/bottle.,The phone/camera.,The towel.,The refrigerator.,The towel. 3500,6QSON_9.5_24.3,Which object did the person put down before they opened the bag?,0,Sequence_T2_2847,Sequence_T2,The cup/glass/bottle.,The floor.,The broom.,The food.,The cup/glass/bottle. 3501,Q3HZI_0_17.7,Which object did the person take before they opened the door?,3,Sequence_T2_2848,Sequence_T2,The sofa/couch.,The dish.,The shoe.,The pillow.,The pillow. 3502,2YJUQ_4.3_31.6,Which object did the person sit at before they watched outside the window?,3,Sequence_T2_2849,Sequence_T2,The food.,The book.,The floor.,The table.,The table. 3503,2YJUQ_4.3_22.8,Which object did the person sit at before they drank from the cup/glass/bottle?,3,Sequence_T2_2850,Sequence_T2,The floor.,The bed.,The paper/notebook.,The table.,The table. 3504,2YJUQ_4.3_34.7,Which object did the person sit at before they put down the cup/glass/bottle?,0,Sequence_T2_2851,Sequence_T2,The table.,The sofa/couch.,The paper/notebook.,The clothes.,The table. 3505,EUJK0_17.1_26.6,Which object did the person put down before they took the book?,3,Sequence_T2_2882,Sequence_T2,The sofa/couch.,The cup/glass/bottle.,The clothes.,The laptop.,The laptop. 3506,8MLCU_4.4_14.4,Which object did the person put down before they opened the refrigerator?,3,Sequence_T2_2893,Sequence_T2,The broom.,The dish.,The bed.,The box.,The box. 3507,FTG07_0.9_9.6,Which object did the person tidy up before they took the cup/glass/bottle?,2,Sequence_T2_2907,Sequence_T2,The shoe.,The clothes.,The table.,The broom.,The table. 3508,GLGQJ_21.1_39.1,Which object did the person close before they held the phone/camera?,0,Sequence_T2_2908,Sequence_T2,The window.,The closet/cabinet.,The book.,The pillow.,The window. 3509,TOOYI_0_5.7,Which object did the person open before they took the blanket?,1,Sequence_T2_2914,Sequence_T2,The refrigerator.,The box.,The bag.,The dish.,The box. 3510,PV745_7.2_26.5,Which object did the person take before they held the book?,2,Sequence_T2_2927,Sequence_T2,The cup/glass/bottle.,The picture.,The box.,The pillow.,The box. 3511,PV745_7.2_69.7,Which object did the person take before they put down the shoe?,2,Sequence_T2_2928,Sequence_T2,The towel.,The food.,The box.,The pillow.,The box. 3512,PV745_7.2_74,Which object did the person take before they put down the clothes?,0,Sequence_T2_2929,Sequence_T2,The box.,The shoe.,The cup/glass/bottle.,The book.,The box. 3513,PV745_7.2_35,Which object did the person take before they put down the food?,3,Sequence_T2_2930,Sequence_T2,The towel.,The medicine.,The pillow.,The box.,The box. 3514,QXT9W_37.2_62.7,Which object did the person put down before they watched outside the window?,3,Sequence_T2_2977,Sequence_T2,The shoe.,The bag.,The floor.,The book.,The book. 3515,QXT9W_3.2_43.1,Which object did the person take before they sat at the table?,0,Sequence_T2_2978,Sequence_T2,The book.,The shoe.,The cup/glass/bottle.,The closet/cabinet.,The book. 3516,17RPG_24.1_33,Which object did the person throw before they ate the sandwich?,1,Sequence_T2_2993,Sequence_T2,The broom.,The clothes.,The medicine.,The box.,The clothes. 3517,HONL7_0.1_11,Which object did the person take before they put down the paper/notebook?,1,Sequence_T2_3010,Sequence_T2,The bag.,The book.,The blanket.,The table.,The book. 3518,TETZ7_12.5_20.6,Which object did the person take before they opened the door?,2,Sequence_T2_3016,Sequence_T2,The pillow.,The book.,The phone/camera.,The laptop.,The phone/camera. 3519,X9WTR_23.8_62.7,Which object did the person take before they sat at the table?,0,Sequence_T2_3023,Sequence_T2,The book.,The broom.,The dish.,The cup/glass/bottle.,The book. 3520,QRWQ3_13_33.3,Which object did the person put down before they opened the box?,2,Sequence_T2_3029,Sequence_T2,The laptop.,The refrigerator.,The dish.,The picture.,The dish. 3521,QRWQ3_26.1_37,Which object did the person open before they held the medicine?,2,Sequence_T2_3030,Sequence_T2,The book.,The bag.,The box.,The picture.,The box. 3522,XQDQ4_7.4_27.1,Which object did the person take before they opened the box?,1,Sequence_T2_3091,Sequence_T2,The laptop.,The cup/glass/bottle.,The bag.,The pillow.,The cup/glass/bottle. 3523,6B93R_6.8_33.9,Which object did the person put down before they took the cup/glass/bottle?,3,Sequence_T2_3093,Sequence_T2,The broom.,The phone/camera.,The book.,The food.,The food. 3524,F5TL0_8.8_24.2,Which object did the person close before they drank from the cup/glass/bottle?,3,Sequence_T2_3102,Sequence_T2,The closet/cabinet.,The door.,The paper/notebook.,The refrigerator.,The refrigerator. 3525,F5TL0_8.8_21.9,Which object did the person close before they took the cup/glass/bottle?,0,Sequence_T2_3103,Sequence_T2,The refrigerator.,The door.,The closet/cabinet.,The paper/notebook.,The refrigerator. 3526,106AY_15_25.5,Which object did the person put down before they took the cup/glass/bottle?,1,Sequence_T2_3126,Sequence_T2,The shoe.,The box.,The sandwich.,The food.,The box. 3527,3EIRZ_0.2_11.3,Which object did the person eat before they tidied up the clothes?,2,Sequence_T2_3127,Sequence_T2,The table.,The cup/glass/bottle.,The sandwich.,The medicine.,The sandwich. 3528,GTK8W_30.8_38,Which object did the person take before they put down the food?,3,Sequence_T2_3174,Sequence_T2,The picture.,The sandwich.,The sofa/couch.,The bag.,The bag. 3529,D87LI_14.9_31,Which object did the person close before they held the phone/camera?,0,Sequence_T2_3178,Sequence_T2,The laptop.,The box.,The bed.,The book.,The laptop. 3530,D87LI_14.9_20.7,Which object did the person close before they took the phone/camera?,0,Sequence_T2_3179,Sequence_T2,The laptop.,The clothes.,The book.,The closet/cabinet.,The laptop. 3531,AK9IB_24.3_31.4,Which object did the person open before they put down the shoe?,2,Sequence_T2_3181,Sequence_T2,The bag.,The refrigerator.,The box.,The table.,The box. 3532,AK9IB_24.5_35,Which object did the person put down before they closed the box?,1,Sequence_T2_3182,Sequence_T2,The pillow.,The shoe.,The book.,The towel.,The shoe. 3533,ALXUC_2.8_17,Which object did the person take before they held the food?,0,Sequence_T2_3194,Sequence_T2,The sandwich.,The book.,The towel.,The picture.,The sandwich. 3534,2RTH2_11.6_17.6,Which object did the person put down before they took the cup/glass/bottle?,1,Sequence_T2_3231,Sequence_T2,The laptop.,The towel.,The food.,The shoe.,The towel. 3535,VT64S_3.6_33,Which object did the person take before they held the food?,2,Sequence_T2_3241,Sequence_T2,The dish.,The laptop.,The bag.,The cup/glass/bottle.,The bag. 3536,FQIM2_0_7,Which object did the person put down before they watched outside the window?,2,Sequence_T2_3247,Sequence_T2,The cup/glass/bottle.,The sandwich.,The clothes.,The food.,The clothes. 3537,T0LOH_0_21.7,Which object did the person take before they held the clothes?,2,Sequence_T2_3262,Sequence_T2,The pillow.,The towel.,The blanket.,The sofa/couch.,The blanket. 3538,2ZXJ5_7.5_16.8,Which object did the person sit on before they held the pillow?,0,Sequence_T2_3274,Sequence_T2,The sofa/couch.,The floor.,The bed.,The box.,The sofa/couch. 3539,2ZXJ5_7.5_18,Which object did the person sit on before they put down the pillow?,2,Sequence_T2_3275,Sequence_T2,The dish.,The clothes.,The sofa/couch.,The bed.,The sofa/couch. 3540,H41MY_0_13.6,Which object did the person take before they drank from the cup/glass/bottle?,3,Sequence_T2_3314,Sequence_T2,The book.,The blanket.,The phone/camera.,The sandwich.,The sandwich. 3541,9LHP3_2.1_12.3,Which object did the person put down before they sat on the sofa/couch?,0,Sequence_T2_3333,Sequence_T2,The shoe.,The medicine.,The paper/notebook.,The clothes.,The shoe. 3542,9LHP3_6.4_32.2,Which object did the person sit on before they held the phone/camera?,2,Sequence_T2_3334,Sequence_T2,The door.,The table.,The sofa/couch.,The bed.,The sofa/couch. 3543,BZ1TH_0_7.9,Which object did the person open before they took the cup/glass/bottle?,2,Sequence_T2_3336,Sequence_T2,The door.,The bag.,The book.,The closet/cabinet.,The book. 3544,QL92H_13.1_19.9,Which object did the person take before they closed the closet/cabinet?,1,Sequence_T2_3363,Sequence_T2,The bag.,The book.,The food.,The laptop.,The book. 3545,QL92H_2.9_14.2,Which object did the person throw before they opened the closet/cabinet?,2,Sequence_T2_3364,Sequence_T2,The clothes.,The shoe.,The bag.,The box.,The bag. 3546,7T6MB_0_32,Which object did the person take before they held the medicine?,3,Sequence_T2_3378,Sequence_T2,The paper/notebook.,The cup/glass/bottle.,The broom.,The shoe.,The shoe. 3547,7T6MB_0_32,Which object did the person take before they lied on the bed?,3,Sequence_T2_3379,Sequence_T2,The dish.,The food.,The box.,The shoe.,The shoe. 3548,RAQNI_8.1_18.6,Which object did the person tidy up before they put down the clothes?,2,Sequence_T2_3391,Sequence_T2,The medicine.,The closet/cabinet.,The blanket.,The towel.,The blanket. 3549,RAQNI_14.9_33,Which object did the person take before they watched outside the window?,0,Sequence_T2_3392,Sequence_T2,The clothes.,The food.,The towel.,The cup/glass/bottle.,The clothes. 3550,VUOQF_5.5_33,Which object did the person open before they held the food?,0,Sequence_T2_3397,Sequence_T2,The closet/cabinet.,The door.,The sandwich.,The laptop.,The closet/cabinet. 3551,3B81O_0_22.2,Which object did the person open before they washed the dish?,1,Sequence_T2_3399,Sequence_T2,The door.,The window.,The closet/cabinet.,The food.,The window. 3552,3B81O_0_21.6,Which object did the person open before they put down the dish?,1,Sequence_T2_3401,Sequence_T2,The picture.,The window.,The refrigerator.,The box.,The window. 3553,T1KK1_0_8.2,Which object did the person take before they put down the cup/glass/bottle?,0,Sequence_T2_3428,Sequence_T2,The dish.,The book.,The food.,The broom.,The dish. 3554,T5JY8_14.9_32,Which object did the person take before they watched outside the window?,1,Sequence_T2_3432,Sequence_T2,The shoe.,The cup/glass/bottle.,The door.,The phone/camera.,The cup/glass/bottle. 3555,VO45S_9.1_32,Which object did the person put down before they washed the cup/glass/bottle?,1,Sequence_T2_3462,Sequence_T2,The phone/camera.,The box.,The picture.,The table.,The box. 3556,VO45S_9.1_27.7,Which object did the person put down before they washed the dish?,0,Sequence_T2_3463,Sequence_T2,The box.,The towel.,The sofa/couch.,The pillow.,The box. 3557,VGAMG_4_15.6,Which object did the person take before they put down the dish?,0,Sequence_T2_3469,Sequence_T2,The cup/glass/bottle.,The towel.,The shoe.,The table.,The cup/glass/bottle. 3558,4P13T_0_17,Which object did the person take before they put down the book?,1,Sequence_T2_3475,Sequence_T2,The sofa/couch.,The bag.,The phone/camera.,The clothes.,The bag. 3559,K34BE_1.1_18,Which object did the person take before they held the broom?,0,Sequence_T2_3479,Sequence_T2,The bag.,The picture.,The sandwich.,The book.,The bag. 3560,M3S4D_1.2_17.5,Which object did the person put down before they drank from the cup/glass/bottle?,0,Sequence_T2_3480,Sequence_T2,The box.,The window.,The book.,The clothes.,The box. 3561,AS7SG_18_26.4,Which object did the person put down before they ate the sandwich?,2,Sequence_T2_3541,Sequence_T2,The food.,The phone/camera.,The laptop.,The box.,The laptop. 3562,RCD08_6.7_30.2,Which object did the person take before they threw the towel?,2,Sequence_T2_3565,Sequence_T2,The box.,The book.,The blanket.,The sandwich.,The blanket. 3563,RCD08_6.7_30.1,Which object did the person take before they put down the clothes?,0,Sequence_T2_3566,Sequence_T2,The blanket.,The towel.,The paper/notebook.,The pillow.,The blanket. 3564,RCD08_6.7_29.5,Which object did the person take before they held the clothes?,1,Sequence_T2_3567,Sequence_T2,The towel.,The blanket.,The pillow.,The broom.,The blanket. 3565,JKZG5_0.5_8.7,Which object did the person eat before they drank from the cup/glass/bottle?,3,Sequence_T2_3580,Sequence_T2,The picture.,The dish.,The sandwich.,The medicine.,The medicine. 3566,JJON5_6.7_29,Which object did the person open before they put down the food?,1,Sequence_T2_3589,Sequence_T2,The clothes.,The refrigerator.,The window.,The book.,The refrigerator. 3567,MVPQF_1.7_18.5,Which object did the person put down before they took the food?,2,Sequence_T2_3592,Sequence_T2,The dish.,The towel.,The bag.,The refrigerator.,The bag. 3568,MVPQF_14.5_32.2,Which object did the person take before they held the food?,2,Sequence_T2_3593,Sequence_T2,The laptop.,The bag.,The sandwich.,The paper/notebook.,The sandwich. 3569,9K2TY_19.2_32,Which object did the person put down before they threw the towel?,2,Sequence_T2_3652,Sequence_T2,The refrigerator.,The food.,The blanket.,The phone/camera.,The blanket. 3570,SPUPH_0_9.1,Which object did the person open before they took the food?,1,Sequence_T2_3662,Sequence_T2,The bag.,The closet/cabinet.,The box.,The picture.,The closet/cabinet. 3571,2RRSO_4.4_31,Which object did the person tidy up before they held the medicine?,3,Sequence_T2_3710,Sequence_T2,The towel.,The table.,The box.,The clothes.,The clothes. 3572,2RRSO_4.4_31,Which object did the person tidy up before they held the food?,1,Sequence_T2_3711,Sequence_T2,The broom.,The clothes.,The towel.,The table.,The clothes. 3573,52MV9_13.9_32.7,Which object did the person put down before they ate the sandwich?,0,Sequence_T2_3713,Sequence_T2,The dish.,The food.,The phone/camera.,The clothes.,The dish. 3574,52MV9_13.9_72,Which object did the person put down before they held the food?,1,Sequence_T2_3716,Sequence_T2,The bag.,The dish.,The box.,The phone/camera.,The dish. 3575,52MV9_13.9_67.4,Which object did the person put down before they tidied up the table?,2,Sequence_T2_3717,Sequence_T2,The clothes.,The bed.,The dish.,The picture.,The dish. 3576,WCERV_1.4_23,Which object did the person put down before they took the paper/notebook?,1,Sequence_T2_3718,Sequence_T2,The picture.,The blanket.,The food.,The box.,The blanket. 3577,RZY2I_4_10,Which object did the person take before they opened the window?,1,Sequence_T2_3722,Sequence_T2,The shoe.,The bag.,The book.,The closet/cabinet.,The bag. 3578,MCNRZ_0_22.7,Which object did the person open before they put down the cup/glass/bottle?,1,Sequence_T2_3728,Sequence_T2,The book.,The laptop.,The bed.,The refrigerator.,The laptop. 3579,MCNRZ_0_22.7,Which object did the person open before they took the dish?,1,Sequence_T2_3729,Sequence_T2,The door.,The laptop.,The book.,The closet/cabinet.,The laptop. 3580,DQEC3_0_17.2,Which object did the person tidy up before they opened the bag?,1,Sequence_T2_3749,Sequence_T2,The sofa/couch.,The closet/cabinet.,The book.,The blanket.,The closet/cabinet. 3581,NLWBW_6.8_44,Which object did the person put down before they drank from the cup/glass/bottle?,0,Sequence_T2_3756,Sequence_T2,The bag.,The blanket.,The dish.,The food.,The bag. 3582,D7KU2_0_14.1,Which object did the person sit on before they held the broom?,0,Sequence_T2_3758,Sequence_T2,The floor.,The phone/camera.,The window.,The sofa/couch.,The floor. 3583,D7KU2_0_14.1,Which object did the person sit on before they put down the broom?,2,Sequence_T2_3759,Sequence_T2,The bed.,The clothes.,The floor.,The laptop.,The floor. 3584,3V2HJ_4.8_23,Which object did the person put down before they drank from the cup/glass/bottle?,1,Sequence_T2_3784,Sequence_T2,The shoe.,The bag.,The book.,The dish.,The bag. 3585,3064K_3_18,Which object did the person tidy up before they put down the clothes?,0,Sequence_T2_3785,Sequence_T2,The blanket.,The broom.,The closet/cabinet.,The phone/camera.,The blanket. 3586,WN7T3_1.1_32,Which object did the person put down before they watched outside the window?,1,Sequence_T2_3792,Sequence_T2,The picture.,The box.,The dish.,The clothes.,The box. 3587,3MLVF_16.1_32,Which object did the person close before they put down the cup/glass/bottle?,2,Sequence_T2_3795,Sequence_T2,The closet/cabinet.,The shoe.,The refrigerator.,The window.,The refrigerator. 3588,EK19H_3.8_18.5,Which object did the person take before they held the food?,1,Sequence_T2_3819,Sequence_T2,The bag.,The sandwich.,The clothes.,The dish.,The sandwich. 3589,FRLW2_8.6_32,Which object did the person put down before they threw the shoe?,3,Sequence_T2_3824,Sequence_T2,The pillow.,The phone/camera.,The sofa/couch.,The bag.,The bag. 3590,75KQ6_8.8_22,Which object did the person put down before they held the food?,1,Sequence_T2_3828,Sequence_T2,The phone/camera.,The dish.,The box.,The window.,The dish. 3591,57MEO_0_14.2,Which object did the person open before they held the book?,1,Sequence_T2_3829,Sequence_T2,The closet/cabinet.,The door.,The bag.,The blanket.,The door. 3592,3W6TL_8.4_19.9,Which object did the person put down before they closed the door?,0,Sequence_T2_3862,Sequence_T2,The pillow.,The broom.,The clothes.,The sandwich.,The pillow. 3593,YCGJS_8_32,Which object did the person sit at before they held the food?,1,Sequence_T2_3863,Sequence_T2,The refrigerator.,The table.,The picture.,The sofa/couch.,The table. 3594,86GSE_9.6_20,Which object did the person take before they sat on the sofa/couch?,2,Sequence_T2_3891,Sequence_T2,The paper/notebook.,The picture.,The shoe.,The food.,The shoe. 3595,9J166_9.9_21.9,Which object did the person open before they closed the book?,0,Sequence_T2_3898,Sequence_T2,The window.,The bag.,The box.,The shoe.,The window. 3596,V9XR6_13.7_37.7,Which object did the person lie on before they opened the closet/cabinet?,3,Sequence_T2_3899,Sequence_T2,The door.,The sofa/couch.,The refrigerator.,The bed.,The bed. 3597,TGUKM_0_33,Which object did the person throw before they held the laptop?,3,Sequence_T2_3932,Sequence_T2,The bag.,The pillow.,The food.,The book.,The book. 3598,0F453_0.3_20,Which object did the person open before they took the paper/notebook?,0,Sequence_T2_3940,Sequence_T2,The refrigerator.,The bag.,The cup/glass/bottle.,The window.,The refrigerator. 3599,68YR6_15.8_32,Which object did the person close before they washed the window?,1,Sequence_T2_3950,Sequence_T2,The refrigerator.,The door.,The dish.,The pillow.,The door. 3600,M506V_9.4_32,Which object did the person throw before they tidied up the table?,3,Sequence_T2_3968,Sequence_T2,The broom.,The blanket.,The pillow.,The towel.,The towel. 3601,1ZBUS_5.2_21.8,Which object did the person sit at before they held the sandwich?,1,Sequence_T2_3974,Sequence_T2,The food.,The table.,The picture.,The floor.,The table. 3602,I4N6K_14.6_26.1,Which object did the person close before they tidied up the table?,3,Sequence_T2_3991,Sequence_T2,The refrigerator.,The medicine.,The closet/cabinet.,The book.,The book. 3603,M2XIS_2.7_9.4,Which object did the person sit on before they opened the laptop?,2,Sequence_T2_3992,Sequence_T2,The table.,The blanket.,The sofa/couch.,The book.,The sofa/couch. 3604,M2XIS_0_7.4,Which object did the person put down before they sat on the sofa/couch?,2,Sequence_T2_3993,Sequence_T2,The bag.,The broom.,The laptop.,The clothes.,The laptop. 3605,9A58F_2.9_10.9,Which object did the person throw before they took the laptop?,3,Sequence_T2_3994,Sequence_T2,The door.,The box.,The pillow.,The shoe.,The shoe. 3606,P2UBC_6_29.3,Which object did the person sit on before they opened the door?,3,Sequence_T2_4034,Sequence_T2,The bed.,The table.,The paper/notebook.,The sofa/couch.,The sofa/couch. 3607,P2UBC_6_21.8,Which object did the person sit on before they took the shoe?,1,Sequence_T2_4035,Sequence_T2,The picture.,The sofa/couch.,The bed.,The table.,The sofa/couch. 3608,CII5H_11.6_23.9,Which object did the person put down before they closed the door?,3,Sequence_T2_4055,Sequence_T2,The phone/camera.,The box.,The cup/glass/bottle.,The blanket.,The blanket. 3609,4U52R_8.5_30,Which object did the person put down before they held the broom?,1,Sequence_T2_4108,Sequence_T2,The clothes.,The box.,The shoe.,The closet/cabinet.,The box. 3610,4U52R_8.5_30,Which object did the person put down before they sat on the bed?,3,Sequence_T2_4109,Sequence_T2,The dish.,The phone/camera.,The clothes.,The box.,The box. 3611,6N7G6_0.2_35,Which object did the person sit at before they held the blanket?,2,Sequence_T2_4116,Sequence_T2,The pillow.,The laptop.,The table.,The sofa/couch.,The table. 3612,6N7G6_0.2_32.6,Which object did the person sit at before they took the blanket?,2,Sequence_T2_4117,Sequence_T2,The cup/glass/bottle.,The broom.,The table.,The bed.,The table. 3613,TWZA4_0.5_18.3,Which object did the person open before they held the phone/camera?,1,Sequence_T2_4139,Sequence_T2,The box.,The book.,The closet/cabinet.,The floor.,The book. 3614,M1GW9_0.2_9.9,Which object did the person take before they opened the door?,3,Sequence_T2_4140,Sequence_T2,The cup/glass/bottle.,The food.,The blanket.,The pillow.,The pillow. 3615,M1GW9_13.5_27.5,Which object did the person throw before they closed the door?,0,Sequence_T2_4141,Sequence_T2,The pillow.,The table.,The clothes.,The blanket.,The pillow. 3616,EO6OI_18.6_28.7,Which object did the person wash before they put down the towel?,2,Sequence_T2_4160,Sequence_T2,The window.,The clothes.,The table.,The bed.,The table. 3617,L7HA6_0_26.7,Which object did the person take before they drank from the cup/glass/bottle?,2,Sequence_T2_4163,Sequence_T2,The book.,The bed.,The phone/camera.,The dish.,The phone/camera. 3618,8G9A9_1.9_14.7,Which object did the person take before they held the phone/camera?,1,Sequence_T2_4191,Sequence_T2,The blanket.,The laptop.,The pillow.,The cup/glass/bottle.,The laptop. 3619,R9382_13.4_29,Which object did the person close before they ate the sandwich?,3,Sequence_T2_4216,Sequence_T2,The window.,The door.,The bag.,The refrigerator.,The refrigerator. 3620,R9382_13.4_27.5,Which object did the person close before they held the sandwich?,2,Sequence_T2_4217,Sequence_T2,The window.,The book.,The refrigerator.,The door.,The refrigerator. 3621,L8Y8D_29.5_36.5,Which object did the person close before they opened the refrigerator?,3,Sequence_T2_4230,Sequence_T2,The blanket.,The laptop.,The door.,The closet/cabinet.,The closet/cabinet. 3622,F6A4W_8_28,Which object did the person take before they put down the dish?,2,Sequence_T2_4277,Sequence_T2,The sandwich.,The towel.,The shoe.,The food.,The shoe. 3623,AEUVY_16.4_31,Which object did the person put down before they held the broom?,1,Sequence_T2_4292,Sequence_T2,The shoe.,The phone/camera.,The book.,The refrigerator.,The phone/camera. 3624,8DL54_17.1_27.8,Which object did the person put down before they closed the refrigerator?,0,Sequence_T2_4299,Sequence_T2,The dish.,The paper/notebook.,The bag.,The sandwich.,The dish. 3625,PHH6B_2.1_8.7,Which object did the person take before they held the food?,0,Sequence_T2_4302,Sequence_T2,The sandwich.,The door.,The dish.,The phone/camera.,The sandwich. 3626,CSLEP_0_21,Which object did the person lie on before they put down the clothes?,0,Sequence_T2_4305,Sequence_T2,The bed.,The picture.,The floor.,The sofa/couch.,The bed. 3627,CSLEP_0_13.2,Which object did the person lie on before they took the clothes?,2,Sequence_T2_4306,Sequence_T2,The floor.,The laptop.,The bed.,The sofa/couch.,The bed. 3628,HFTEO_6.1_32,Which object did the person put down before they sat on the floor?,2,Sequence_T2_4318,Sequence_T2,The blanket.,The picture.,The clothes.,The cup/glass/bottle.,The clothes. 3629,8VWV2_1.6_10.9,Which object did the person sit at before they held the dish?,2,Sequence_T2_4324,Sequence_T2,The window.,The bed.,The table.,The food.,The table. 3630,VVTJJ_3.4_31,Which object did the person put down before they sat at the table?,0,Sequence_T2_4327,Sequence_T2,The cup/glass/bottle.,The dish.,The phone/camera.,The sandwich.,The cup/glass/bottle. 3631,BLIFO_1_10.8,Which object did the person open before they tidied up the towel?,1,Sequence_T2_4334,Sequence_T2,The book.,The closet/cabinet.,The refrigerator.,The table.,The closet/cabinet. 3632,AWGMW_0_14.3,Which object did the person lie on before they took the cup/glass/bottle?,2,Sequence_T2_4335,Sequence_T2,The floor.,The broom.,The sofa/couch.,The bed.,The sofa/couch. 3633,J84TZ_0_21,Which object did the person lie on before they held the blanket?,2,Sequence_T2_4338,Sequence_T2,The laptop.,The floor.,The sofa/couch.,The closet/cabinet.,The sofa/couch. 3634,J84TZ_0_21,Which object did the person lie on before they took the blanket?,1,Sequence_T2_4339,Sequence_T2,The bed.,The sofa/couch.,The cup/glass/bottle.,The bag.,The sofa/couch. 3635,HCM5Y_0_18.4,Which object did the person sit on before they opened the door?,2,Sequence_T2_4366,Sequence_T2,The bed.,The bag.,The floor.,The table.,The floor. 3636,RKGG5_6_21,Which object did the person throw before they held the pillow?,3,Sequence_T2_4367,Sequence_T2,The phone/camera.,The clothes.,The box.,The broom.,The broom. 3637,RKGG5_6_11.5,Which object did the person throw before they took the pillow?,3,Sequence_T2_4368,Sequence_T2,The book.,The clothes.,The laptop.,The broom.,The broom. 3638,RKGG5_7_21,Which object did the person take before they lied on the sofa/couch?,1,Sequence_T2_4369,Sequence_T2,The blanket.,The pillow.,The bag.,The clothes.,The pillow. 3639,C69Y1_11_42.5,Which object did the person close before they drank from the cup/glass/bottle?,3,Sequence_T2_4385,Sequence_T2,The window.,The book.,The food.,The closet/cabinet.,The closet/cabinet. 3640,59KH0_7.7_35,Which object did the person take before they sat at the table?,0,Sequence_T2_4421,Sequence_T2,The clothes.,The sandwich.,The cup/glass/bottle.,The phone/camera.,The clothes. 3641,AXS82_13.7_28.8,Which object did the person close before they held the sandwich?,2,Sequence_T2_4424,Sequence_T2,The cup/glass/bottle.,The closet/cabinet.,The book.,The window.,The book. 3642,AXS82_13.7_31,Which object did the person close before they opened the refrigerator?,0,Sequence_T2_4425,Sequence_T2,The book.,The closet/cabinet.,The laptop.,The towel.,The book. 3643,6KIA4_0_24,Which object did the person take before they washed the table?,0,Sequence_T2_4448,Sequence_T2,The dish.,The phone/camera.,The door.,The cup/glass/bottle.,The dish. 3644,J4RPL_16.5_26.8,Which object did the person put down before they took the towel?,3,Sequence_T2_4451,Sequence_T2,The picture.,The food.,The dish.,The paper/notebook.,The paper/notebook. 3645,L58KN_8.5_31,Which object did the person throw before they opened the window?,1,Sequence_T2_4499,Sequence_T2,The blanket.,The towel.,The broom.,The clothes.,The towel. 3646,L58KN_8.5_31,Which object did the person throw before they opened the closet/cabinet?,0,Sequence_T2_4500,Sequence_T2,The towel.,The blanket.,The broom.,The clothes.,The towel. 3647,937EW_6.7_33,Which object did the person take before they tidied up the closet/cabinet?,0,Sequence_T2_4501,Sequence_T2,The clothes.,The table.,The blanket.,The book.,The clothes. 3648,937EW_6.7_24.2,Which object did the person take before they watched at the picture?,1,Sequence_T2_4502,Sequence_T2,The pillow.,The clothes.,The phone/camera.,The bed.,The clothes. 3649,MNC10_7.6_17.5,Which object did the person throw before they took the food?,3,Sequence_T2_4503,Sequence_T2,The bag.,The dish.,The clothes.,The broom.,The broom. 3650,KRLT7_4.7_22.8,Which object did the person throw before they held the phone/camera?,2,Sequence_T2_4513,Sequence_T2,The food.,The pillow.,The clothes.,The paper/notebook.,The clothes. 3651,KRLT7_4.7_22.8,Which object did the person throw before they took the phone/camera?,1,Sequence_T2_4514,Sequence_T2,The blanket.,The clothes.,The towel.,The laptop.,The clothes. 3652,9OMY1_1.2_28,Which object did the person open before they sat on the sofa/couch?,3,Sequence_T2_4527,Sequence_T2,The laptop.,The window.,The picture.,The box.,The box. 3653,JLGLU_15.4_28.3,Which object did the person take before they closed the door?,3,Sequence_T2_4529,Sequence_T2,The dish.,The phone/camera.,The window.,The towel.,The towel. 3654,F24GU_10.8_32,Which object did the person lie on before they watched at the picture?,2,Sequence_T2_4530,Sequence_T2,The sofa/couch.,The laptop.,The floor.,The closet/cabinet.,The floor. 3655,F24GU_10.8_32,Which object did the person lie on before they watched at the book?,1,Sequence_T2_4531,Sequence_T2,The bed.,The floor.,The table.,The sofa/couch.,The floor. 3656,UMT5R_0_21.2,Which object did the person take before they held the food?,2,Sequence_T2_4541,Sequence_T2,The phone/camera.,The sandwich.,The bag.,The clothes.,The bag. 3657,UMT5R_0_24.6,Which object did the person take before they opened the closet/cabinet?,1,Sequence_T2_4542,Sequence_T2,The pillow.,The bag.,The towel.,The table.,The bag. 3658,OE751_18.4_34,Which object did the person take before they held the clothes?,0,Sequence_T2_4549,Sequence_T2,The blanket.,The cup/glass/bottle.,The box.,The towel.,The blanket. 3659,OE751_18.4_34,Which object did the person take before they closed the door?,1,Sequence_T2_4550,Sequence_T2,The bed.,The blanket.,The dish.,The cup/glass/bottle.,The blanket. 3660,OE751_18.4_33.4,Which object did the person take before they closed the closet/cabinet?,3,Sequence_T2_4551,Sequence_T2,The towel.,The clothes.,The sandwich.,The blanket.,The blanket. 3661,MC6J7_11.5_33.1,Which object did the person throw before they closed the door?,0,Sequence_T2_4555,Sequence_T2,The clothes.,The towel.,The blanket.,The floor.,The clothes. 3662,EDXBD_0_14,Which object did the person sit at before they opened the door?,2,Sequence_T2_4557,Sequence_T2,The bed.,The laptop.,The table.,The cup/glass/bottle.,The table. 3663,RBC8N_2.5_25.2,Which object did the person put down before they took the pillow?,2,Sequence_T2_4587,Sequence_T2,The dish.,The window.,The food.,The cup/glass/bottle.,The food. 3664,B7LO8_2.9_19,Which object did the person put down before they took the phone/camera?,1,Sequence_T2_4603,Sequence_T2,The cup/glass/bottle.,The clothes.,The shoe.,The towel.,The clothes. 3665,IKZN3_8.1_33.4,Which object did the person put down before they sat at the table?,1,Sequence_T2_4605,Sequence_T2,The book.,The cup/glass/bottle.,The dish.,The food.,The cup/glass/bottle. 3666,IU5TH_6.6_17.6,Which object did the person close before they took the food?,0,Sequence_T2_4613,Sequence_T2,The laptop.,The refrigerator.,The book.,The closet/cabinet.,The laptop. 3667,DQ46N_22.4_31.7,Which object did the person close before they held the dish?,1,Sequence_T2_4640,Sequence_T2,The food.,The closet/cabinet.,The window.,The door.,The closet/cabinet. 3668,M1TZR_27.5_36.4,Which object did the person take before they held the clothes?,1,Sequence_T2_4644,Sequence_T2,The bag.,The towel.,The broom.,The dish.,The towel. 3669,M1TZR_24_36.2,Which object did the person put down before they took the towel?,2,Sequence_T2_4645,Sequence_T2,The sofa/couch.,The clothes.,The dish.,The bag.,The dish. 3670,9M5UE_11.5_19.4,Which object did the person take before they put down the cup/glass/bottle?,1,Sequence_T2_4677,Sequence_T2,The book.,The dish.,The phone/camera.,The blanket.,The dish. 3671,R74DE_17.2_24.3,Which object did the person put down before they took the pillow?,1,Sequence_T2_4678,Sequence_T2,The clothes.,The blanket.,The paper/notebook.,The dish.,The blanket. 3672,R74DE_17.2_23.3,Which object did the person put down before they threw the towel?,1,Sequence_T2_4679,Sequence_T2,The food.,The blanket.,The sofa/couch.,The dish.,The blanket. 3673,7ZCXJ_5.5_29,Which object did the person sit on before they threw the blanket?,2,Sequence_T2_4713,Sequence_T2,The phone/camera.,The sofa/couch.,The floor.,The bag.,The floor. 3674,WH1S5_6.8_27.3,Which object did the person take before they held the food?,3,Sequence_T2_4737,Sequence_T2,The paper/notebook.,The phone/camera.,The towel.,The sandwich.,The sandwich. 3675,SMVKB_0_22.8,Which object did the person take before they opened the closet/cabinet?,0,Sequence_T2_4751,Sequence_T2,The pillow.,The paper/notebook.,The dish.,The cup/glass/bottle.,The pillow. 3676,RFMRB_11.9_21.7,Which object did the person tidy up before they took the cup/glass/bottle?,3,Sequence_T2_4756,Sequence_T2,The dish.,The towel.,The clothes.,The blanket.,The blanket. 3677,5ZDNU_4.1_21.4,Which object did the person put down before they took the book?,1,Sequence_T2_4774,Sequence_T2,The phone/camera.,The clothes.,The broom.,The cup/glass/bottle.,The clothes. 3678,0OE6M_3.4_11.9,Which object did the person throw before they took the towel?,1,Sequence_T2_4783,Sequence_T2,The pillow.,The clothes.,The bed.,The bag.,The clothes. 3679,BQAUC_2.1_14.3,Which object did the person put down before they held the mirror?,0,Sequence_T2_4791,Sequence_T2,The shoe.,The clothes.,The phone/camera.,The book.,The shoe. 3680,1HAYV_0_8.2,Which object did the person eat before they drank from the cup/glass/bottle?,2,Sequence_T2_4792,Sequence_T2,The floor.,The book.,The sandwich.,The medicine.,The sandwich. 3681,1HAYV_0_26.4,Which object did the person eat before they drank from the cup/glass/bottle?,2,Sequence_T2_4793,Sequence_T2,The refrigerator.,The medicine.,The sandwich.,The closet/cabinet.,The sandwich. 3682,M5S4U_19_30.9,Which object did the person tidy up before they threw the towel?,0,Sequence_T2_4822,Sequence_T2,The closet/cabinet.,The food.,The broom.,The box.,The closet/cabinet. 3683,M5S4U_19_30.9,Which object did the person tidy up before they put down the towel?,2,Sequence_T2_4823,Sequence_T2,The table.,The phone/camera.,The closet/cabinet.,The clothes.,The closet/cabinet. 3684,8BBX0_8.1_19.3,Which object did the person put down before they opened the door?,2,Sequence_T2_4824,Sequence_T2,The paper/notebook.,The book.,The bag.,The blanket.,The bag. 3685,8BBX0_18.5_25.5,Which object did the person take before they closed the door?,3,Sequence_T2_4826,Sequence_T2,The paper/notebook.,The pillow.,The sandwich.,The bag.,The bag. 3686,PYIA3_1.4_10.3,Which object did the person open before they took the food?,1,Sequence_T2_4845,Sequence_T2,The table.,The refrigerator.,The window.,The bag.,The refrigerator. 3687,ZA7ST_28.2_35,Which object did the person take before they opened the box?,3,Sequence_T2_4850,Sequence_T2,The pillow.,The shoe.,The door.,The bag.,The bag. 3688,DGMDT_20.8_30,Which object did the person put down before they held the phone/camera?,3,Sequence_T2_4855,Sequence_T2,The shoe.,The medicine.,The food.,The bag.,The bag. 3689,DGMDT_20.8_30,Which object did the person put down before they took the phone/camera?,0,Sequence_T2_4856,Sequence_T2,The bag.,The pillow.,The paper/notebook.,The cup/glass/bottle.,The bag. 3690,DGMDT_3.9_23.8,Which object did the person take before they held the food?,1,Sequence_T2_4857,Sequence_T2,The pillow.,The bag.,The closet/cabinet.,The sandwich.,The bag. 3691,X4DOF_0_13.6,Which object did the person take before they watched outside the window?,3,Sequence_T2_4883,Sequence_T2,The shoe.,The paper/notebook.,The broom.,The pillow.,The pillow. 3692,3AE3T_2.1_19.5,Which object did the person put down before they sat on the sofa/couch?,3,Sequence_T2_4887,Sequence_T2,The refrigerator.,The book.,The food.,The laptop.,The laptop. 3693,5GPOJ_8.5_14.4,Which object did the person close before they put down the paper/notebook?,2,Sequence_T2_4920,Sequence_T2,The bag.,The refrigerator.,The book.,The door.,The book. 3694,MY5CQ_11.5_19.6,Which object did the person close before they opened the book?,2,Sequence_T2_4931,Sequence_T2,The closet/cabinet.,The food.,The laptop.,The box.,The laptop. 3695,ITJIY_0_20,Which object did the person put down before they opened the closet/cabinet?,2,Sequence_T2_4966,Sequence_T2,The bag.,The laptop.,The food.,The sandwich.,The food. 3696,0SBT3_0.8_7,Which object did the person put down before they held the book?,3,Sequence_T2_4967,Sequence_T2,The bag.,The paper/notebook.,The bed.,The sandwich.,The sandwich. 3697,0SBT3_0.8_6,Which object did the person put down before they took the book?,2,Sequence_T2_4968,Sequence_T2,The picture.,The clothes.,The sandwich.,The blanket.,The sandwich. 3698,6C4DV_1.2_18.8,Which object did the person take before they held the phone/camera?,3,Sequence_T2_4971,Sequence_T2,The laptop.,The sandwich.,The food.,The cup/glass/bottle.,The cup/glass/bottle. 3699,6C4DV_0.5_7.1,Which object did the person tidy up before they took the cup/glass/bottle?,2,Sequence_T2_4972,Sequence_T2,The clothes.,The bed.,The closet/cabinet.,The towel.,The closet/cabinet. 3700,JXNEN_10.4_27,Which object did the person eat before they held the food?,0,Sequence_T2_4978,Sequence_T2,The sandwich.,The medicine.,The book.,The table.,The sandwich. 3701,JXNEN_10.4_27,Which object did the person eat before they sat on the sofa/couch?,3,Sequence_T2_4979,Sequence_T2,The food.,The medicine.,The table.,The sandwich.,The sandwich. 3702,EY6P4_0.5_11,Which object did the person open before they watched at the book?,3,Sequence_T2_4982,Sequence_T2,The door.,The sofa/couch.,The refrigerator.,The closet/cabinet.,The closet/cabinet. 3703,3EDV7_2.6_31,Which object did the person wash before they held the pillow?,1,Sequence_T2_4983,Sequence_T2,The table.,The clothes.,The bag.,The picture.,The clothes. 3704,J6P6H_9.5_18.4,Which object did the person eat before they took the food?,2,Sequence_T2_5024,Sequence_T2,The cup/glass/bottle.,The medicine.,The sandwich.,The pillow.,The sandwich. 3705,S1J2Q_4.4_20.8,Which object did the person take before they opened the refrigerator?,2,Sequence_T2_5041,Sequence_T2,The pillow.,The paper/notebook.,The clothes.,The box.,The clothes. 3706,S1J2Q_22.3_32,Which object did the person close before they took the food?,3,Sequence_T2_5042,Sequence_T2,The door.,The window.,The closet/cabinet.,The refrigerator.,The refrigerator. 3707,S1J2Q_22.3_32,Which object did the person close before they put down the food?,1,Sequence_T2_5043,Sequence_T2,The closet/cabinet.,The refrigerator.,The box.,The laptop.,The refrigerator. 3708,UIERL_13.5_25.3,Which object did the person take before they held the dish?,0,Sequence_T2_5051,Sequence_T2,The food.,The phone/camera.,The cup/glass/bottle.,The medicine.,The food. 3709,KZODG_15.3_32,Which object did the person close before they held the phone/camera?,2,Sequence_T2_5054,Sequence_T2,The door.,The book.,The laptop.,The food.,The laptop. 3710,3DO95_13.6_28.1,Which object did the person put down before they took the book?,1,Sequence_T2_5055,Sequence_T2,The cup/glass/bottle.,The pillow.,The clothes.,The blanket.,The pillow. 3711,3ND23_8.1_19.9,Which object did the person sit on before they put down the blanket?,2,Sequence_T2_5058,Sequence_T2,The phone/camera.,The broom.,The sofa/couch.,The table.,The sofa/couch. 3712,ZOMM2_22.1_32,Which object did the person take before they held the food?,3,Sequence_T2_5080,Sequence_T2,The dish.,The cup/glass/bottle.,The window.,The sandwich.,The sandwich. 3713,27JQL_6.8_24.1,Which object did the person throw before they ate the sandwich?,0,Sequence_T2_5084,Sequence_T2,The towel.,The refrigerator.,The medicine.,The broom.,The towel. 3714,27JQL_6.8_32,Which object did the person throw before they held the dish?,2,Sequence_T2_5085,Sequence_T2,The pillow.,The door.,The towel.,The box.,The towel. 3715,27JQL_6.8_32,Which object did the person throw before they held the food?,2,Sequence_T2_5086,Sequence_T2,The bag.,The cup/glass/bottle.,The towel.,The broom.,The towel. 3716,56XKK_4.3_20.8,Which object did the person put down before they opened the door?,3,Sequence_T2_5097,Sequence_T2,The book.,The picture.,The shoe.,The bag.,The bag. 3717,MDG2T_6_14.1,Which object did the person put down before they took the towel?,2,Sequence_T2_5112,Sequence_T2,The paper/notebook.,The clothes.,The dish.,The picture.,The dish. 3718,MDG2T_0_10.7,Which object did the person take before they put down the dish?,0,Sequence_T2_5113,Sequence_T2,The cup/glass/bottle.,The shoe.,The blanket.,The bag.,The cup/glass/bottle. 3719,IHSRC_0_32,Which object did the person open before they watched at the picture?,2,Sequence_T2_5123,Sequence_T2,The book.,The door.,The bag.,The sofa/couch.,The bag. 3720,VEHER_1.8_9.9,Which object did the person take before they held the clothes?,3,Sequence_T2_5131,Sequence_T2,The broom.,The blanket.,The door.,The box.,The box. 3721,84893_7.8_15.6,Which object did the person tidy up before they threw the clothes?,1,Sequence_T2_5134,Sequence_T2,The towel.,The blanket.,The sofa/couch.,The pillow.,The blanket. 3722,TAGEG_8.7_17.8,Which object did the person take before they opened the closet/cabinet?,1,Sequence_T2_5151,Sequence_T2,The cup/glass/bottle.,The dish.,The laptop.,The sandwich.,The dish. 3723,KXCSL_3.1_31,Which object did the person close before they sat on the floor?,1,Sequence_T2_5152,Sequence_T2,The book.,The refrigerator.,The closet/cabinet.,The towel.,The refrigerator. 3724,KXCSL_1.6_9.5,Which object did the person put down before they closed the refrigerator?,1,Sequence_T2_5153,Sequence_T2,The cup/glass/bottle.,The food.,The pillow.,The book.,The food. 3725,ZZ89F_13.6_26.5,Which object did the person close before they held the dish?,2,Sequence_T2_5172,Sequence_T2,The door.,The sandwich.,The refrigerator.,The window.,The refrigerator. 3726,JY6TC_0.8_16.4,Which object did the person sit on before they took the cup/glass/bottle?,2,Sequence_T2_5179,Sequence_T2,The floor.,The table.,The bed.,The towel.,The bed. 3727,JY6TC_0.8_21,Which object did the person sit on before they put down the paper/notebook?,2,Sequence_T2_5180,Sequence_T2,The sofa/couch.,The dish.,The bed.,The shoe.,The bed. 3728,Z6HEA_0_11.4,Which object did the person put down before they washed the clothes?,3,Sequence_T2_5194,Sequence_T2,The shoe.,The cup/glass/bottle.,The broom.,The towel.,The towel. 3729,Z6HEA_9.1_21.8,Which object did the person sit on before they took the food?,1,Sequence_T2_5196,Sequence_T2,The table.,The floor.,The sofa/couch.,The bed.,The floor. 3730,Z6HEA_2.6_16.2,Which object did the person wash before they sat on the floor?,0,Sequence_T2_5197,Sequence_T2,The clothes.,The window.,The table.,The bed.,The clothes. 3731,Z6HEA_9.1_32,Which object did the person sit on before they held the food?,0,Sequence_T2_5199,Sequence_T2,The floor.,The closet/cabinet.,The blanket.,The table.,The floor. 3732,ZFQNZ_8.9_18.3,Which object did the person close before they held the food?,0,Sequence_T2_5205,Sequence_T2,The refrigerator.,The paper/notebook.,The window.,The door.,The refrigerator. 3733,ZFQNZ_8.9_15.3,Which object did the person close before they took the food?,2,Sequence_T2_5206,Sequence_T2,The box.,The window.,The refrigerator.,The closet/cabinet.,The refrigerator. 3734,HL5OP_28.5_37,Which object did the person take before they tidied up the table?,2,Sequence_T2_5220,Sequence_T2,The broom.,The cup/glass/bottle.,The dish.,The floor.,The dish. 3735,HL5OP_14.4_22.3,Which object did the person throw before they opened the bag?,0,Sequence_T2_5221,Sequence_T2,The food.,The book.,The towel.,The clothes.,The food. 3736,Z70KK_7.9_15,Which object did the person put down before they washed the table?,0,Sequence_T2_5239,Sequence_T2,The bag.,The clothes.,The closet/cabinet.,The food.,The bag. 3737,Z70KK_8_32,Which object did the person wash before they held the broom?,0,Sequence_T2_5240,Sequence_T2,The table.,The box.,The cup/glass/bottle.,The window.,The table. 3738,Z70KK_8_26,Which object did the person wash before they took the broom?,2,Sequence_T2_5241,Sequence_T2,The dish.,The door.,The table.,The phone/camera.,The table. 3739,DBT6E_8.6_33,Which object did the person put down before they sat on the floor?,1,Sequence_T2_5286,Sequence_T2,The book.,The bag.,The bed.,The laptop.,The bag. 3740,VS5IY_9.4_18.1,Which object did the person put down before they took the clothes?,2,Sequence_T2_5301,Sequence_T2,The refrigerator.,The towel.,The book.,The phone/camera.,The book. 3741,TVCQF_6.5_17,Which object did the person sit at before they opened the box?,0,Sequence_T2_5310,Sequence_T2,The table.,The sofa/couch.,The clothes.,The laptop.,The table. 3742,LLOGB_8.7_31,Which object did the person take before they lied on the bed?,1,Sequence_T2_5318,Sequence_T2,The dish.,The phone/camera.,The medicine.,The food.,The phone/camera. 3743,6ALEL_19.3_27,Which object did the person take before they held the food?,3,Sequence_T2_5321,Sequence_T2,The paper/notebook.,The dish.,The bag.,The sandwich.,The sandwich. 3744,6ALEL_11.6_24.2,Which object did the person put down before they took the food?,1,Sequence_T2_5322,Sequence_T2,The door.,The towel.,The cup/glass/bottle.,The book.,The towel. 3745,CSYES_9.6_31,Which object did the person put down before they held the phone/camera?,1,Sequence_T2_5324,Sequence_T2,The cup/glass/bottle.,The towel.,The blanket.,The food.,The towel. 3746,NV4FC_15.7_25.8,Which object did the person throw before they took the book?,0,Sequence_T2_5328,Sequence_T2,The shoe.,The clothes.,The box.,The blanket.,The shoe. 3747,NV4FC_21.5_26.8,Which object did the person take before they opened the book?,2,Sequence_T2_5329,Sequence_T2,The picture.,The clothes.,The paper/notebook.,The phone/camera.,The paper/notebook. 3748,NV4FC_0_10.4,Which object did the person sit on before they put down the clothes?,2,Sequence_T2_5333,Sequence_T2,The floor.,The paper/notebook.,The bed.,The sofa/couch.,The bed. 3749,XFRYR_8.8_16.9,Which object did the person close before they held the food?,1,Sequence_T2_5335,Sequence_T2,The laptop.,The closet/cabinet.,The refrigerator.,The table.,The closet/cabinet. 3750,XYGU1_0_32,Which object did the person put down before they sat at the table?,1,Sequence_T2_5367,Sequence_T2,The phone/camera.,The book.,The door.,The broom.,The book. 3751,XYGU1_11.8_20.9,Which object did the person open before they drank from the cup/glass/bottle?,1,Sequence_T2_5368,Sequence_T2,The bag.,The book.,The broom.,The door.,The book. 3752,WJ1E7_8.7_33,Which object did the person put down before they sat at the table?,1,Sequence_T2_5369,Sequence_T2,The blanket.,The shoe.,The bag.,The picture.,The shoe. 3753,9O0HH_1.5_37,Which object did the person close before they held the food?,1,Sequence_T2_5378,Sequence_T2,The refrigerator.,The closet/cabinet.,The door.,The broom.,The closet/cabinet. 3754,9O0HH_1.5_30.4,Which object did the person close before they put down the food?,1,Sequence_T2_5379,Sequence_T2,The refrigerator.,The closet/cabinet.,The window.,The book.,The closet/cabinet. 3755,OKYYQ_2.5_15.6,Which object did the person close before they opened the closet/cabinet?,0,Sequence_T2_5390,Sequence_T2,The book.,The picture.,The door.,The refrigerator.,The book. 3756,N7130_5.6_32,Which object did the person put down before they sat on the bed?,2,Sequence_T2_5395,Sequence_T2,The laptop.,The table.,The phone/camera.,The shoe.,The phone/camera. 3757,N7130_5.6_32,Which object did the person put down before they lied on the bed?,2,Sequence_T2_5397,Sequence_T2,The pillow.,The laptop.,The phone/camera.,The floor.,The phone/camera. 3758,XPWYQ_16_26,Which object did the person put down before they held the phone/camera?,3,Sequence_T2_5411,Sequence_T2,The paper/notebook.,The clothes.,The box.,The book.,The book. 3759,UDGRS_19.9_27.6,Which object did the person put down before they closed the book?,1,Sequence_T2_5414,Sequence_T2,The paper/notebook.,The phone/camera.,The cup/glass/bottle.,The towel.,The phone/camera. 3760,UDGRS_16.5_29.8,Which object did the person take before they tidied up the table?,3,Sequence_T2_5415,Sequence_T2,The book.,The door.,The broom.,The phone/camera.,The phone/camera. 3761,86X97_1.4_11.2,Which object did the person take before they watched outside the window?,3,Sequence_T2_5423,Sequence_T2,The broom.,The pillow.,The phone/camera.,The book.,The book. 3762,86X97_1.4_18.6,Which object did the person take before they watched outside the window?,1,Sequence_T2_5424,Sequence_T2,The cup/glass/bottle.,The book.,The phone/camera.,The bed.,The book. 3763,F3O37_6_14.6,Which object did the person put down before they held the pillow?,2,Sequence_T2_5481,Sequence_T2,The paper/notebook.,The sandwich.,The clothes.,The bag.,The clothes. 3764,UEP20_12.6_22.7,Which object did the person put down before they took the sandwich?,0,Sequence_T2_5530,Sequence_T2,The paper/notebook.,The floor.,The towel.,The food.,The paper/notebook. 3765,UEP20_12.6_23.1,Which object did the person put down before they lied on the bed?,3,Sequence_T2_5532,Sequence_T2,The shoe.,The pillow.,The clothes.,The paper/notebook.,The paper/notebook. 3766,UEP20_17.9_25,Which object did the person take before they closed the closet/cabinet?,2,Sequence_T2_5533,Sequence_T2,The broom.,The cup/glass/bottle.,The sandwich.,The blanket.,The sandwich. 3767,UQ93G_9_30,Which object did the person take before they opened the door?,1,Sequence_T2_5538,Sequence_T2,The table.,The clothes.,The dish.,The picture.,The clothes. 3768,VKXLL_22.1_36.2,Which object did the person open before they put down the paper/notebook?,0,Sequence_T2_5546,Sequence_T2,The box.,The cup/glass/bottle.,The bag.,The refrigerator.,The box. 3769,VKXLL_16.9_28.6,Which object did the person put down before they opened the box?,1,Sequence_T2_5547,Sequence_T2,The clothes.,The dish.,The window.,The laptop.,The dish. 3770,VKXLL_1.5_10,Which object did the person take before they put down the pillow?,1,Sequence_T2_5548,Sequence_T2,The window.,The box.,The book.,The blanket.,The box. 3771,UFVO8_5.4_13.2,Which object did the person put down before they closed the door?,1,Sequence_T2_5549,Sequence_T2,The phone/camera.,The broom.,The shoe.,The book.,The broom. 3772,Q8UJ8_0.9_19.3,Which object did the person open before they drank from the cup/glass/bottle?,2,Sequence_T2_5558,Sequence_T2,The laptop.,The phone/camera.,The bag.,The closet/cabinet.,The bag. 3773,XZ9C0_0_14.9,Which object did the person lie on before they took the bag?,2,Sequence_T2_5565,Sequence_T2,The sofa/couch.,The refrigerator.,The bed.,The floor.,The bed. 3774,OEE36_21.1_36.5,Which object did the person put down before they closed the box?,2,Sequence_T2_5576,Sequence_T2,The broom.,The cup/glass/bottle.,The towel.,The medicine.,The towel. 3775,OEE36_21.1_38,Which object did the person put down before they held the box?,0,Sequence_T2_5577,Sequence_T2,The towel.,The broom.,The shoe.,The food.,The towel. 3776,OEE36_32.3_41,Which object did the person put down before they took the blanket?,0,Sequence_T2_5578,Sequence_T2,The box.,The broom.,The clothes.,The door.,The box. 3777,OEE36_32.3_41,Which object did the person put down before they held the blanket?,0,Sequence_T2_5579,Sequence_T2,The box.,The cup/glass/bottle.,The window.,The laptop.,The box. 3778,L9J5I_0_16.7,Which object did the person put down before they took the paper/notebook?,3,Sequence_T2_5611,Sequence_T2,The phone/camera.,The sandwich.,The box.,The food.,The food. 3779,PZD7Z_0_17.6,Which object did the person sit at before they put down the broom?,2,Sequence_T2_5614,Sequence_T2,The picture.,The towel.,The table.,The sofa/couch.,The table. 3780,C61BE_0_10,Which object did the person eat before they took the blanket?,3,Sequence_T2_5623,Sequence_T2,The towel.,The medicine.,The dish.,The sandwich.,The sandwich. 3781,6TNP4_0_46,Which object did the person open before they put down the shoe?,3,Sequence_T2_5630,Sequence_T2,The box.,The sandwich.,The closet/cabinet.,The refrigerator.,The refrigerator. 3782,6TNP4_0_46,Which object did the person open before they took the shoe?,3,Sequence_T2_5631,Sequence_T2,The food.,The door.,The closet/cabinet.,The refrigerator.,The refrigerator. 3783,V54TI_10_28.7,Which object did the person take before they opened the door?,2,Sequence_T2_5644,Sequence_T2,The shoe.,The broom.,The pillow.,The book.,The pillow. 3784,V54TI_7.9_18.2,Which object did the person put down before they took the pillow?,1,Sequence_T2_5645,Sequence_T2,The phone/camera.,The picture.,The shoe.,The window.,The picture. 3785,0BZAD_7.5_31,Which object did the person open before they took the food?,0,Sequence_T2_5647,Sequence_T2,The book.,The blanket.,The laptop.,The refrigerator.,The book. 3786,0BZAD_7.5_32,Which object did the person open before they held the food?,0,Sequence_T2_5648,Sequence_T2,The book.,The cup/glass/bottle.,The refrigerator.,The laptop.,The book. 3787,CJ58B_15.6_32,Which object did the person open before they held the food?,0,Sequence_T2_5650,Sequence_T2,The bag.,The clothes.,The refrigerator.,The book.,The bag. 3788,B8PQL_2.1_8.3,Which object did the person throw before they closed the door?,1,Sequence_T2_5654,Sequence_T2,The phone/camera.,The towel.,The blanket.,The shoe.,The towel. 3789,B8PQL_5.5_16.3,Which object did the person take before they washed the window?,1,Sequence_T2_5657,Sequence_T2,The picture.,The broom.,The dish.,The bag.,The broom. 3790,8DSGI_13.4_32,Which object did the person open before they sat on the floor?,2,Sequence_T2_5691,Sequence_T2,The laptop.,The door.,The book.,The window.,The book. 3791,0QES3_0.1_20.2,Which object did the person put down before they closed the door?,3,Sequence_T2_5697,Sequence_T2,The shoe.,The pillow.,The closet/cabinet.,The book.,The book. 3792,0QES3_0.1_20.1,Which object did the person put down before they opened the door?,0,Sequence_T2_5698,Sequence_T2,The book.,The picture.,The shoe.,The cup/glass/bottle.,The book. 3793,0CG15_19.7_29.7,Which object did the person put down before they opened the closet/cabinet?,1,Sequence_T2_5711,Sequence_T2,The blanket.,The clothes.,The towel.,The cup/glass/bottle.,The clothes. 3794,ACJBD_13.7_35.2,Which object did the person take before they put down the blanket?,0,Sequence_T2_5730,Sequence_T2,The clothes.,The phone/camera.,The floor.,The shoe.,The clothes. 3795,ACJBD_30.8_36.7,Which object did the person put down before they tidied up the clothes?,2,Sequence_T2_5731,Sequence_T2,The broom.,The towel.,The pillow.,The book.,The pillow. 3796,HPAYB_5.6_16.4,Which object did the person put down before they took the clothes?,2,Sequence_T2_5739,Sequence_T2,The towel.,The broom.,The bag.,The box.,The bag. 3797,HPAYB_5.2_13.3,Which object did the person take before they put down the bag?,2,Sequence_T2_5740,Sequence_T2,The cup/glass/bottle.,The shoe.,The clothes.,The pillow.,The clothes. 3798,RTEWJ_0_8.4,Which object did the person put down before they took the blanket?,2,Sequence_T2_5744,Sequence_T2,The cup/glass/bottle.,The sofa/couch.,The sandwich.,The paper/notebook.,The sandwich. 3799,6KI0S_0_22.9,Which object did the person lie on before they held the blanket?,1,Sequence_T2_5757,Sequence_T2,The picture.,The bed.,The medicine.,The floor.,The bed. 3800,6KI0S_0_27,Which object did the person lie on before they held the pillow?,0,Sequence_T2_5758,Sequence_T2,The bed.,The medicine.,The broom.,The floor.,The bed. 3801,5V5EL_3.7_19,Which object did the person put down before they took the bag?,0,Sequence_T2_5765,Sequence_T2,The phone/camera.,The box.,The clothes.,The medicine.,The phone/camera. 3802,CCCUJ_24.6_60.7,Which object did the person put down before they held the blanket?,1,Sequence_T2_5767,Sequence_T2,The bag.,The laptop.,The window.,The towel.,The laptop. 3803,CCCUJ_24.6_35,Which object did the person put down before they took the blanket?,3,Sequence_T2_5768,Sequence_T2,The paper/notebook.,The sandwich.,The floor.,The laptop.,The laptop. 3804,ZOTR8_6.7_18.7,Which object did the person put down before they took the cup/glass/bottle?,1,Sequence_T2_5781,Sequence_T2,The phone/camera.,The shoe.,The paper/notebook.,The bag.,The shoe. 3805,L9ANI_7.3_33,Which object did the person take before they washed the table?,0,Sequence_T2_5782,Sequence_T2,The towel.,The broom.,The clothes.,The bag.,The towel. 3806,BI31D_5.2_18,Which object did the person put down before they sat on the bed?,3,Sequence_T2_5787,Sequence_T2,The blanket.,The door.,The pillow.,The phone/camera.,The phone/camera. 3807,194WK_6.6_21.1,Which object did the person put down before they held the mirror?,0,Sequence_T2_5793,Sequence_T2,The book.,The laptop.,The phone/camera.,The broom.,The book. 3808,DHFA6_15_39.2,Which object did the person put down before they sat on the sofa/couch?,1,Sequence_T2_5807,Sequence_T2,The clothes.,The box.,The picture.,The bag.,The box. 3809,NOFSE_7.1_22.1,Which object did the person put down before they held the pillow?,2,Sequence_T2_5816,Sequence_T2,The paper/notebook.,The sandwich.,The dish.,The laptop.,The dish. 3810,NOFSE_7.1_25.5,Which object did the person put down before they held the blanket?,2,Sequence_T2_5817,Sequence_T2,The medicine.,The box.,The dish.,The laptop.,The dish. 3811,Z97SD_18.1_32,Which object did the person open before they held the food?,0,Sequence_T2_5824,Sequence_T2,The refrigerator.,The window.,The pillow.,The book.,The refrigerator. 3812,21MI8_3.9_13.4,Which object did the person open before they put down the cup/glass/bottle?,3,Sequence_T2_5825,Sequence_T2,The box.,The pillow.,The bag.,The laptop.,The laptop. 3813,6H78U_15.6_24.6,What happened after the person tidied up the clothes?,0,Sequence_T3_4,Sequence_T3,Put down the blanket.,Took the phone/camera.,Tidied up the blanket.,Put down the towel.,Put down the blanket. 3814,6H78U_16.6_25.6,What happened after the person put down the blanket?,0,Sequence_T3_5,Sequence_T3,Took the towel.,Took the picture.,Took the phone/camera.,Sat on the table.,Took the towel. 3815,RNLTR_7.3_16.4,What happened after the person threw the clothes?,0,Sequence_T3_17,Sequence_T3,Put down the shoe.,Put down the towel.,Threw the shoe.,Put down the food.,Put down the shoe. 3816,VNQTH_1.4_9.2,What happened after the person put down the clothes?,2,Sequence_T3_22,Sequence_T3,Took the pillow.,Opened the closet/cabinet.,Tidied up the closet/cabinet.,Put down the box.,Tidied up the closet/cabinet. 3817,Y79PC_0.3_22.6,What happened after the person watched outside the window?,3,Sequence_T3_25,Sequence_T3,Took the phone/camera.,Threw the broom.,Tidied up the table.,Threw the clothes.,Threw the clothes. 3818,4GLAP_0_21.4,What happened after the person held the shoe?,3,Sequence_T3_44,Sequence_T3,Sat on the table.,Took the food.,Put down the box.,Put down the paper/notebook.,Put down the paper/notebook. 3819,4GLAP_15.7_20.7,What happened after the person put down the paper/notebook?,0,Sequence_T3_45,Sequence_T3,Threw the shoe.,Opened the box.,Closed the laptop.,Put down the cup/glass/bottle.,Threw the shoe. 3820,K7VCU_12.2_18,What happened after the person took the dish?,0,Sequence_T3_47,Sequence_T3,Put down the cup/glass/bottle.,Sat on the sofa/couch.,Ate the sandwich.,Took the laptop.,Put down the cup/glass/bottle. 3821,XO8NL_3.6_11.6,What happened after the person threw the pillow?,3,Sequence_T3_48,Sequence_T3,Took the phone/camera.,Took the box.,Took the towel.,Put down the towel.,Put down the towel. 3822,OY3LS_7_23.8,What happened after the person closed the laptop?,1,Sequence_T3_49,Sequence_T3,Washed the clothes.,Threw the clothes.,Opened the box.,Put down the book.,Threw the clothes. 3823,OY3LS_2.5_23.8,What happened after the person opened the laptop?,3,Sequence_T3_50,Sequence_T3,Took the dish.,Threw the food.,Took the paper/notebook.,Threw the clothes.,Threw the clothes. 3824,OY3LS_34.7_41.4,What happened after the person took the blanket?,0,Sequence_T3_53,Sequence_T3,Sat on the sofa/couch.,Put down the clothes.,Threw the book.,Took the blanket.,Sat on the sofa/couch. 3825,OY3LS_18.5_37.6,What happened after the person threw the clothes?,1,Sequence_T3_54,Sequence_T3,Washed the table.,Put down the phone/camera.,Threw the towel.,Took the clothes.,Put down the phone/camera. 3826,OY3LS_34.9_42.1,What happened after the person sat on the sofa/couch?,0,Sequence_T3_55,Sequence_T3,Put down the laptop.,Put down the bag.,Took the pillow.,Threw the book.,Put down the laptop. 3827,NUKJ0_10.4_17.6,What happened after the person opened the book?,3,Sequence_T3_96,Sequence_T3,Took the book.,Put down the sandwich.,Took the box.,Took the paper/notebook.,Took the paper/notebook. 3828,KQDX6_4_25,What happened after the person drank from the cup/glass/bottle?,3,Sequence_T3_100,Sequence_T3,Put down the dish.,Closed the box.,Opened the book.,Opened the door.,Opened the door. 3829,GKH0F_23.4_31.6,What happened after the person took the phone/camera?,0,Sequence_T3_109,Sequence_T3,Put down the bag.,Opened the book.,Took the laptop.,Opened the closet/cabinet.,Put down the bag. 3830,GKH0F_0.8_13,What happened after the person sat on the sofa/couch?,3,Sequence_T3_110,Sequence_T3,Ate the sandwich.,Put down the pillow.,Washed the clothes.,Took the bag.,Took the bag. 3831,KA09C_9.8_18.5,What happened after the person tidied up the clothes?,0,Sequence_T3_142,Sequence_T3,Put down the shoe.,Took the laptop.,Washed the dish.,Threw the food.,Put down the shoe. 3832,H0L5S_0_27.5,What happened after the person sat on the floor?,0,Sequence_T3_146,Sequence_T3,Took the towel.,Put down the sandwich.,Took the cup/glass/bottle.,Closed the refrigerator.,Took the towel. 3833,7MRKY_24.8_36.1,What happened after the person put down the broom?,0,Sequence_T3_154,Sequence_T3,Closed the laptop.,Tidied up the closet/cabinet.,Threw the towel.,Threw the pillow.,Closed the laptop. 3834,7HSZJ_17_22,What happened after the person watched outside the window?,0,Sequence_T3_163,Sequence_T3,Put down the towel.,Put down the clothes.,Took the box.,Closed the book.,Put down the towel. 3835,E002I_4.1_14.1,What happened after the person put down the pillow?,2,Sequence_T3_184,Sequence_T3,Put down the pillow.,Took the sandwich.,Lied on the bed.,Threw the box.,Lied on the bed. 3836,WX8N8_6.2_10.8,What happened after the person took the towel?,2,Sequence_T3_191,Sequence_T3,Threw the book.,Put down the cup/glass/bottle.,Threw the clothes.,Took the food.,Threw the clothes. 3837,6CAZU_5.5_16.1,What happened after the person watched outside the window?,2,Sequence_T3_210,Sequence_T3,Threw the blanket.,Took the towel.,Took the sandwich.,Took the box.,Took the sandwich. 3838,6CAZU_9.8_16.1,What happened after the person held the food?,1,Sequence_T3_211,Sequence_T3,Closed the window.,Took the sandwich.,Took the dish.,Ate the sandwich.,Took the sandwich. 3839,QLAS7_8.5_15.6,What happened after the person put down the picture?,3,Sequence_T3_212,Sequence_T3,Opened the door.,Threw the blanket.,Washed the table.,Opened the closet/cabinet.,Opened the closet/cabinet. 3840,VIN5T_0_6,What happened after the person sat on the floor?,2,Sequence_T3_231,Sequence_T3,Put down the food.,Took the food.,Put down the pillow.,Washed the mirror.,Put down the pillow. 3841,MXATD_0.6_10.8,What happened after the person washed the dish?,3,Sequence_T3_239,Sequence_T3,Closed the door.,Ate the medicine.,Opened the box.,Opened the closet/cabinet.,Opened the closet/cabinet. 3842,YB67Z_11.9_22.3,What happened after the person tidied up the table?,1,Sequence_T3_243,Sequence_T3,Took the dish.,Put down the box.,Put down the dish.,Threw the pillow.,Put down the box. 3843,YB67Z_5.4_19.1,What happened after the person opened the box?,1,Sequence_T3_244,Sequence_T3,Put down the picture.,Tidied up the table.,Lied on the floor.,Took the clothes.,Tidied up the table. 3844,YB67Z_0_19.1,What happened after the person held the box?,2,Sequence_T3_245,Sequence_T3,Took the blanket.,Put down the shoe.,Tidied up the table.,Lied on the sofa/couch.,Tidied up the table. 3845,1O1JS_1.5_30.9,What happened after the person washed the dish?,1,Sequence_T3_250,Sequence_T3,Ate the sandwich.,Put down the towel.,Put down the book.,Took the towel.,Put down the towel. 3846,A2X7Q_10.7_18.7,What happened after the person took the food?,3,Sequence_T3_284,Sequence_T3,Put down the dish.,Threw the towel.,Took the sandwich.,Put down the sandwich.,Put down the sandwich. 3847,A2X7Q_3.8_10.7,What happened after the person opened the door?,1,Sequence_T3_285,Sequence_T3,Took the book.,Took the bag.,Took the cup/glass/bottle.,Took the broom.,Took the bag. 3848,3XL0K_0_4.5,What happened after the person held the phone/camera?,1,Sequence_T3_293,Sequence_T3,Took the picture.,Closed the door.,Put down the dish.,Took the cup/glass/bottle.,Closed the door. 3849,S572F_0_10.4,What happened after the person took the clothes?,2,Sequence_T3_303,Sequence_T3,Sat on the bed.,Closed the closet/cabinet.,Put down the towel.,Sat on the floor.,Put down the towel. 3850,DSZYT_0_7.1,What happened after the person held the dish?,0,Sequence_T3_308,Sequence_T3,Put down the cup/glass/bottle.,Sat on the floor.,Took the cup/glass/bottle.,Threw the towel.,Put down the cup/glass/bottle. 3851,ATV2F_7.8_19.4,What happened after the person threw the clothes?,2,Sequence_T3_309,Sequence_T3,Took the cup/glass/bottle.,Threw the broom.,Put down the laptop.,Tidied up the clothes.,Put down the laptop. 3852,ATV2F_0_13.9,What happened after the person took the clothes?,2,Sequence_T3_310,Sequence_T3,Closed the door.,Closed the closet/cabinet.,Put down the blanket.,Threw the bag.,Put down the blanket. 3853,ATV2F_9.8_19.4,What happened after the person sat on the bed?,3,Sequence_T3_311,Sequence_T3,Took the cup/glass/bottle.,Put down the cup/glass/bottle.,Took the shoe.,Put down the laptop.,Put down the laptop. 3854,ATV2F_7.3_14.5,What happened after the person put down the blanket?,3,Sequence_T3_312,Sequence_T3,Took the phone/camera.,Threw the broom.,Put down the clothes.,Threw the clothes.,Threw the clothes. 3855,IWTWJ_0_4.9,What happened after the person held the blanket?,1,Sequence_T3_319,Sequence_T3,Put down the phone/camera.,Took the clothes.,Took the food.,Put down the book.,Took the clothes. 3856,IWTWJ_4.4_20.8,What happened after the person threw the clothes?,1,Sequence_T3_320,Sequence_T3,Took the bag.,Sat on the sofa/couch.,Closed the closet/cabinet.,Put down the pillow.,Sat on the sofa/couch. 3857,NJANX_0_9.6,What happened after the person tidied up the table?,2,Sequence_T3_347,Sequence_T3,Closed the book.,Took the broom.,Took the box.,Put down the shoe.,Took the box. 3858,TRHT1_1.9_6.4,What happened after the person threw the clothes?,1,Sequence_T3_350,Sequence_T3,Put down the picture.,Put down the pillow.,Took the food.,Closed the box.,Put down the pillow. 3859,TRHT1_0_6.3,What happened after the person sat on the sofa/couch?,1,Sequence_T3_351,Sequence_T3,Ate the sandwich.,Threw the clothes.,Took the pillow.,Put down the phone/camera.,Threw the clothes. 3860,5NG6Q_13.8_25.6,What happened after the person put down the dish?,1,Sequence_T3_362,Sequence_T3,Ate the medicine.,Tidied up the table.,Opened the box.,Washed the cup/glass/bottle.,Tidied up the table. 3861,5NG6Q_17.6_25.4,What happened after the person tidied up the table?,1,Sequence_T3_363,Sequence_T3,Threw the shoe.,Washed the dish.,Took the dish.,Opened the refrigerator.,Washed the dish. 3862,C1DK7_4.2_21.6,What happened after the person closed the laptop?,3,Sequence_T3_376,Sequence_T3,Put down the sandwich.,Took the cup/glass/bottle.,Took the pillow.,Put down the phone/camera.,Put down the phone/camera. 3863,C1DK7_0_10.2,What happened after the person held the phone/camera?,1,Sequence_T3_377,Sequence_T3,Threw the clothes.,Closed the laptop.,Took the blanket.,Put down the box.,Closed the laptop. 3864,C1DK7_0_10.2,What happened after the person sat at the table?,3,Sequence_T3_378,Sequence_T3,Took the food.,Closed the door.,Opened the window.,Closed the laptop.,Closed the laptop. 3865,V0ZD9_0_28.5,What happened after the person held the dish?,1,Sequence_T3_398,Sequence_T3,Put down the food.,Took the clothes.,Lied on the bed.,Closed the closet/cabinet.,Took the clothes. 3866,V0ZD9_0.3_28.5,What happened after the person washed the dish?,0,Sequence_T3_399,Sequence_T3,Took the clothes.,Closed the refrigerator.,Opened the laptop.,Opened the door.,Took the clothes. 3867,V0ZD9_0.5_28.5,What happened after the person washed the cup/glass/bottle?,3,Sequence_T3_400,Sequence_T3,Washed the cup/glass/bottle.,Threw the blanket.,Threw the clothes.,Took the clothes.,Took the clothes. 3868,V0ZD9_4.6_28.5,What happened after the person put down the dish?,3,Sequence_T3_401,Sequence_T3,Ate the medicine.,Took the box.,Put down the cup/glass/bottle.,Took the clothes.,Took the clothes. 3869,YJ1KW_9.5_15.8,What happened after the person sat at the table?,3,Sequence_T3_416,Sequence_T3,Took the towel.,Washed the mirror.,Took the phone/camera.,Put down the food.,Put down the food. 3870,PH5VU_30.5_36,What happened after the person opened the book?,2,Sequence_T3_418,Sequence_T3,Took the phone/camera.,Opened the refrigerator.,Took the paper/notebook.,Put down the blanket.,Took the paper/notebook. 3871,VJG6E_2.6_9.4,What happened after the person put down the towel?,0,Sequence_T3_422,Sequence_T3,Threw the blanket.,Put down the towel.,Washed the mirror.,Took the cup/glass/bottle.,Threw the blanket. 3872,5C4EK_2.2_11.4,What happened after the person closed the book?,1,Sequence_T3_429,Sequence_T3,Opened the bag.,Took the paper/notebook.,Closed the closet/cabinet.,Put down the bag.,Took the paper/notebook. 3873,NW0KT_4.9_13.9,What happened after the person opened the book?,0,Sequence_T3_437,Sequence_T3,Took the paper/notebook.,Put down the food.,Threw the clothes.,Took the dish.,Took the paper/notebook. 3874,NW0KT_42.3_50,What happened after the person took the towel?,3,Sequence_T3_438,Sequence_T3,Threw the blanket.,Tidied up the table.,Threw the shoe.,Washed the mirror.,Washed the mirror. 3875,NYHD7_0_26.9,What happened after the person sat at the table?,3,Sequence_T3_448,Sequence_T3,Took the food.,Opened the door.,Lied on the sofa/couch.,Took the phone/camera.,Took the phone/camera. 3876,T7ST5_3.6_11.6,What happened after the person put down the food?,1,Sequence_T3_490,Sequence_T3,Closed the box.,Threw the towel.,Put down the laptop.,Opened the bag.,Threw the towel. 3877,SS3IL_1.7_9.3,What happened after the person held the food?,3,Sequence_T3_507,Sequence_T3,Ate the sandwich.,Closed the door.,Threw the towel.,Put down the dish.,Put down the dish. 3878,U9KYC_11.4_29.4,What happened after the person held the broom?,0,Sequence_T3_526,Sequence_T3,Took the shoe.,Lied on the floor.,Put down the pillow.,Put down the cup/glass/bottle.,Took the shoe. 3879,9MNZ5_0_13.8,What happened after the person sat at the table?,1,Sequence_T3_527,Sequence_T3,Threw the food.,Took the box.,Tidied up the blanket.,Took the broom.,Took the box. 3880,9MNZ5_16.1_27.2,What happened after the person put down the food?,1,Sequence_T3_530,Sequence_T3,Washed the dish.,Closed the box.,Ate the sandwich.,Threw the broom.,Closed the box. 3881,DR7K0_13.9_22.7,What happened after the person put down the broom?,3,Sequence_T3_546,Sequence_T3,Took the blanket.,Washed the mirror.,Took the book.,Took the clothes.,Took the clothes. 3882,ON2Z4_11.1_23.7,What happened after the person held the blanket?,1,Sequence_T3_572,Sequence_T3,Threw the clothes.,Closed the book.,Washed the table.,Put down the food.,Closed the book. 3883,ON2Z4_8.4_23.7,What happened after the person took the blanket?,3,Sequence_T3_573,Sequence_T3,Opened the book.,Opened the bag.,Threw the bag.,Closed the book.,Closed the book. 3884,U5T4M_7_14.1,What happened after the person took the food?,3,Sequence_T3_593,Sequence_T3,Opened the refrigerator.,Took the blanket.,Opened the closet/cabinet.,Closed the refrigerator.,Closed the refrigerator. 3885,U5T4M_7.5_14.1,What happened after the person held the food?,0,Sequence_T3_594,Sequence_T3,Closed the refrigerator.,Put down the dish.,Threw the food.,Tidied up the towel.,Closed the refrigerator. 3886,ZNQVC_8.9_32,What happened after the person closed the door?,1,Sequence_T3_598,Sequence_T3,Took the paper/notebook.,Took the shoe.,Took the book.,Closed the refrigerator.,Took the shoe. 3887,15PMU_0.9_21.2,What happened after the person watched outside the window?,2,Sequence_T3_615,Sequence_T3,Took the bag.,Tidied up the blanket.,Put down the clothes.,Opened the closet/cabinet.,Put down the clothes. 3888,6ZWSU_9.6_19.8,What happened after the person sat on the floor?,2,Sequence_T3_617,Sequence_T3,Washed the clothes.,Took the towel.,Put down the shoe.,Put down the book.,Put down the shoe. 3889,43CCM_0.1_25.5,What happened after the person opened the door?,0,Sequence_T3_621,Sequence_T3,Put down the clothes.,Opened the refrigerator.,Took the pillow.,Ate the sandwich.,Put down the clothes. 3890,YOCI8_0_8.8,What happened after the person held the clothes?,0,Sequence_T3_622,Sequence_T3,Tidied up the table.,Put down the pillow.,Opened the book.,Put down the sandwich.,Tidied up the table. 3891,YOCI8_0_8.8,What happened after the person held the blanket?,0,Sequence_T3_623,Sequence_T3,Tidied up the table.,Took the dish.,Opened the window.,Took the pillow.,Tidied up the table. 3892,G6ZOB_7_31.2,What happened after the person closed the door?,2,Sequence_T3_658,Sequence_T3,Put down the paper/notebook.,Lied on the bed.,Put down the book.,Took the cup/glass/bottle.,Put down the book. 3893,03PRW_10_33.2,What happened after the person ate the sandwich?,0,Sequence_T3_670,Sequence_T3,Sat on the sofa/couch.,Put down the paper/notebook.,Threw the box.,Put down the food.,Sat on the sofa/couch. 3894,03PRW_0_33.2,What happened after the person held the blanket?,0,Sequence_T3_671,Sequence_T3,Sat on the sofa/couch.,Opened the door.,Washed the table.,Threw the towel.,Sat on the sofa/couch. 3895,03PRW_0_33.2,What happened after the person held the food?,1,Sequence_T3_672,Sequence_T3,Took the dish.,Sat on the sofa/couch.,Took the bag.,Washed the table.,Sat on the sofa/couch. 3896,JTBXI_26.2_36.5,What happened after the person tidied up the blanket?,2,Sequence_T3_724,Sequence_T3,Took the blanket.,Threw the clothes.,Took the pillow.,Put down the clothes.,Took the pillow. 3897,WXBEO_15.7_23.7,What happened after the person took the cup/glass/bottle?,1,Sequence_T3_754,Sequence_T3,Put down the dish.,Closed the refrigerator.,Threw the bag.,Took the clothes.,Closed the refrigerator. 3898,OQ54Y_19.6_31.1,What happened after the person drank from the cup/glass/bottle?,2,Sequence_T3_801,Sequence_T3,Took the laptop.,Took the cup/glass/bottle.,Sat at the table.,Closed the door.,Sat at the table. 3899,OQ54Y_13.4_31.1,What happened after the person opened the refrigerator?,3,Sequence_T3_802,Sequence_T3,Took the box.,Closed the door.,Tidied up the closet/cabinet.,Sat at the table.,Sat at the table. 3900,136V6_13.5_19.4,What happened after the person opened the book?,1,Sequence_T3_808,Sequence_T3,Threw the food.,Lied on the sofa/couch.,Took the food.,Took the cup/glass/bottle.,Lied on the sofa/couch. 3901,136V6_13.7_19.4,What happened after the person watched at the book?,1,Sequence_T3_811,Sequence_T3,Closed the box.,Lied on the sofa/couch.,Tidied up the towel.,Put down the cup/glass/bottle.,Lied on the sofa/couch. 3902,136V6_1.1_10.5,What happened after the person closed the door?,2,Sequence_T3_812,Sequence_T3,Put down the broom.,Put down the laptop.,Threw the shoe.,Took the picture.,Threw the shoe. 3903,BEAAA_0_11.8,What happened after the person ate the sandwich?,3,Sequence_T3_850,Sequence_T3,Threw the box.,Took the box.,Took the broom.,Put down the clothes.,Put down the clothes. 3904,2BO2G_18.5_35.7,What happened after the person held the box?,0,Sequence_T3_904,Sequence_T3,Put down the picture.,Sat on the floor.,Put down the book.,Tidied up the blanket.,Put down the picture. 3905,2BO2G_0_12,What happened after the person tidied up the table?,3,Sequence_T3_905,Sequence_T3,Took the paper/notebook.,Opened the window.,Took the box.,Put down the box.,Put down the box. 3906,0PVKV_18.5_25.1,What happened after the person put down the cup/glass/bottle?,0,Sequence_T3_933,Sequence_T3,Took the sandwich.,Took the book.,Took the pillow.,Took the shoe.,Took the sandwich. 3907,3JCEI_0_13,What happened after the person sat on the bed?,1,Sequence_T3_947,Sequence_T3,Closed the box.,Closed the laptop.,Closed the closet/cabinet.,Put down the paper/notebook.,Closed the laptop. 3908,999BP_1.8_7.7,What happened after the person held the food?,0,Sequence_T3_957,Sequence_T3,Took the bag.,Took the paper/notebook.,Closed the refrigerator.,Took the blanket.,Took the bag. 3909,NTXXB_0_17.5,What happened after the person watched outside the window?,3,Sequence_T3_974,Sequence_T3,Sat on the sofa/couch.,Put down the paper/notebook.,Put down the box.,Took the phone/camera.,Took the phone/camera. 3910,93REJ_9.4_15.4,What happened after the person washed the clothes?,1,Sequence_T3_986,Sequence_T3,Put down the clothes.,Put down the towel.,Put down the shoe.,Took the towel.,Put down the towel. 3911,65UVU_0_9.3,What happened after the person opened the door?,2,Sequence_T3_1000,Sequence_T3,Took the shoe.,Washed the table.,Put down the box.,Took the cup/glass/bottle.,Put down the box. 3912,YX3V0_1.4_7.7,What happened after the person tidied up the table?,0,Sequence_T3_1001,Sequence_T3,Took the book.,Took the paper/notebook.,Put down the shoe.,Put down the towel.,Took the book. 3913,IOGR7_15.8_21.9,What happened after the person sat on the floor?,2,Sequence_T3_1009,Sequence_T3,Put down the book.,Tidied up the table.,Closed the door.,Threw the book.,Closed the door. 3914,LQC89_7.9_16.4,What happened after the person put down the cup/glass/bottle?,1,Sequence_T3_1011,Sequence_T3,Put down the food.,Took the sandwich.,Took the book.,Put down the dish.,Took the sandwich. 3915,BI6Y4_0_33.1,What happened after the person held the dish?,2,Sequence_T3_1015,Sequence_T3,Put down the laptop.,Put down the shoe.,Sat at the table.,Threw the clothes.,Sat at the table. 3916,BI6Y4_4.6_33.1,What happened after the person drank from the cup/glass/bottle?,3,Sequence_T3_1016,Sequence_T3,Closed the box.,Tidied up the table.,Put down the towel.,Sat at the table.,Sat at the table. 3917,CVDZM_14.6_21.3,What happened after the person put down the paper/notebook?,0,Sequence_T3_1024,Sequence_T3,Threw the book.,Took the food.,Threw the blanket.,Opened the bag.,Threw the book. 3918,4BEZX_15.8_23.5,What happened after the person closed the door?,2,Sequence_T3_1031,Sequence_T3,Took the paper/notebook.,Sat on the table.,Took the towel.,Took the broom.,Took the towel. 3919,8XXNK_0_9,What happened after the person sat on the sofa/couch?,0,Sequence_T3_1033,Sequence_T3,Opened the box.,Opened the door.,Sat on the floor.,Put down the clothes.,Opened the box. 3920,8XXNK_0_9,What happened after the person held the food?,3,Sequence_T3_1035,Sequence_T3,Threw the towel.,Sat at the table.,Took the shoe.,Opened the box.,Opened the box. 3921,8XXNK_0_9,What happened after the person sat on the bed?,2,Sequence_T3_1036,Sequence_T3,Sat on the sofa/couch.,Put down the dish.,Opened the box.,Took the blanket.,Opened the box. 3922,XKU2U_0_24.2,What happened after the person washed the mirror?,3,Sequence_T3_1040,Sequence_T3,Put down the towel.,Tidied up the clothes.,Lied on the sofa/couch.,Took the bag.,Took the bag. 3923,9YOI8_14.8_30.3,What happened after the person drank from the cup/glass/bottle?,1,Sequence_T3_1045,Sequence_T3,Threw the clothes.,Closed the window.,Put down the laptop.,Put down the picture.,Closed the window. 3924,9YOI8_0.2_11.9,What happened after the person held the dish?,2,Sequence_T3_1046,Sequence_T3,Threw the pillow.,Closed the door.,Opened the window.,Took the cup/glass/bottle.,Opened the window. 3925,9YOI8_0.5_11.9,What happened after the person held the food?,2,Sequence_T3_1047,Sequence_T3,Took the blanket.,Took the box.,Opened the window.,Sat on the sofa/couch.,Opened the window. 3926,HOYUT_7.1_13.7,What happened after the person held the clothes?,0,Sequence_T3_1051,Sequence_T3,Put down the towel.,Tidied up the table.,Put down the bag.,Put down the phone/camera.,Put down the towel. 3927,7TA23_8.7_21.4,What happened after the person took the phone/camera?,3,Sequence_T3_1069,Sequence_T3,Threw the bag.,Opened the bag.,Put down the food.,Put down the shoe.,Put down the shoe. 3928,7TA23_10_21.4,What happened after the person held the phone/camera?,1,Sequence_T3_1071,Sequence_T3,Took the food.,Put down the shoe.,Lied on the sofa/couch.,Put down the broom.,Put down the shoe. 3929,0HGNK_0_13.1,What happened after the person sat at the table?,1,Sequence_T3_1086,Sequence_T3,Put down the broom.,Put down the box.,Opened the door.,Closed the closet/cabinet.,Put down the box. 3930,M6ERH_11.6_33,What happened after the person put down the food?,1,Sequence_T3_1102,Sequence_T3,Took the phone/camera.,Sat at the table.,Closed the closet/cabinet.,Took the laptop.,Sat at the table. 3931,PRHR7_0_27.4,What happened after the person held the dish?,1,Sequence_T3_1113,Sequence_T3,Threw the blanket.,Took the towel.,Took the sandwich.,Took the food.,Took the towel. 3932,S444Y_7.2_16,What happened after the person held the clothes?,2,Sequence_T3_1120,Sequence_T3,Took the bag.,Closed the door.,Opened the bag.,Sat on the bed.,Opened the bag. 3933,727IZ_14.5_19.6,What happened after the person watched at the book?,0,Sequence_T3_1201,Sequence_T3,Sat at the table.,Tidied up the table.,Closed the closet/cabinet.,Threw the book.,Sat at the table. 3934,Q5YDL_0_17.8,What happened after the person sat on the sofa/couch?,2,Sequence_T3_1225,Sequence_T3,Lied on the bed.,Took the cup/glass/bottle.,Closed the laptop.,Took the laptop.,Closed the laptop. 3935,Q5YDL_0_17.8,What happened after the person watched at the book?,2,Sequence_T3_1226,Sequence_T3,Took the paper/notebook.,Threw the towel.,Closed the laptop.,Lied on the bed.,Closed the laptop. 3936,IIW0F_7_13.2,What happened after the person put down the blanket?,1,Sequence_T3_1248,Sequence_T3,Took the paper/notebook.,Took the towel.,Opened the closet/cabinet.,Closed the closet/cabinet.,Took the towel. 3937,W0XPU_2.7_24.3,What happened after the person sat on the bed?,3,Sequence_T3_1260,Sequence_T3,Put down the shoe.,Ate the sandwich.,Put down the phone/camera.,Took the sandwich.,Took the sandwich. 3938,W0XPU_0.3_24.3,What happened after the person put down the shoe?,2,Sequence_T3_1261,Sequence_T3,Lied on the bed.,Threw the towel.,Took the sandwich.,Closed the closet/cabinet.,Took the sandwich. 3939,72LJ3_0_18.9,What happened after the person sat on the bed?,1,Sequence_T3_1315,Sequence_T3,Put down the broom.,Closed the book.,Put down the pillow.,Put down the clothes.,Closed the book. 3940,13IS9_0_23.3,What happened after the person sat on the sofa/couch?,1,Sequence_T3_1323,Sequence_T3,Put down the phone/camera.,Took the laptop.,Put down the clothes.,Put down the box.,Took the laptop. 3941,YACA8_3.4_23.9,What happened after the person put down the clothes?,1,Sequence_T3_1333,Sequence_T3,Took the picture.,Took the shoe.,Took the food.,Tidied up the clothes.,Took the shoe. 3942,VS7VS_1.1_19.1,What happened after the person tidied up the closet/cabinet?,1,Sequence_T3_1335,Sequence_T3,Threw the towel.,Put down the book.,Closed the box.,Put down the clothes.,Put down the book. 3943,VS7VS_3.1_19.1,What happened after the person took the paper/notebook?,3,Sequence_T3_1336,Sequence_T3,Opened the book.,Sat at the table.,Threw the clothes.,Put down the book.,Put down the book. 3944,TIPFG_1_13.5,What happened after the person opened the box?,0,Sequence_T3_1340,Sequence_T3,Took the shoe.,Put down the sandwich.,Took the food.,Put down the dish.,Took the shoe. 3945,TIPFG_0_13.5,What happened after the person drank from the cup/glass/bottle?,0,Sequence_T3_1341,Sequence_T3,Took the shoe.,Washed the dish.,Took the bag.,Took the phone/camera.,Took the shoe. 3946,TIPFG_5.3_16.3,What happened after the person took the shoe?,2,Sequence_T3_1342,Sequence_T3,Took the sandwich.,Sat on the table.,Closed the box.,Put down the clothes.,Closed the box. 3947,TIPFG_0_13.5,What happened after the person sat on the sofa/couch?,2,Sequence_T3_1343,Sequence_T3,Ate the medicine.,Threw the blanket.,Took the shoe.,Washed the mirror.,Took the shoe. 3948,5INX3_0_35.1,What happened after the person sat at the table?,3,Sequence_T3_1347,Sequence_T3,Sat on the table.,Threw the bag.,Threw the blanket.,Put down the towel.,Put down the towel. 3949,BFH78_17.6_22.4,What happened after the person held the book?,0,Sequence_T3_1356,Sequence_T3,Took the paper/notebook.,Washed the cup/glass/bottle.,Threw the book.,Put down the paper/notebook.,Took the paper/notebook. 3950,BFH78_14.4_22.4,What happened after the person opened the book?,3,Sequence_T3_1359,Sequence_T3,Put down the paper/notebook.,Threw the bag.,Ate the medicine.,Took the paper/notebook.,Took the paper/notebook. 3951,3T785_0_8,What happened after the person held the phone/camera?,2,Sequence_T3_1363,Sequence_T3,Took the clothes.,Put down the paper/notebook.,Put down the towel.,Put down the clothes.,Put down the towel. 3952,3T785_2.1_7.2,What happened after the person put down the towel?,0,Sequence_T3_1364,Sequence_T3,Took the clothes.,Took the cup/glass/bottle.,Sat at the table.,Washed the table.,Took the clothes. 3953,3T785_6.1_20.3,What happened after the person put down the clothes?,1,Sequence_T3_1365,Sequence_T3,Put down the pillow.,Took the laptop.,Closed the door.,Closed the closet/cabinet.,Took the laptop. 3954,U33ZS_0.6_7.7,What happened after the person put down the laptop?,1,Sequence_T3_1366,Sequence_T3,Opened the box.,Took the paper/notebook.,Put down the broom.,Put down the pillow.,Took the paper/notebook. 3955,U33ZS_2.9_14.8,What happened after the person held the book?,2,Sequence_T3_1367,Sequence_T3,Put down the clothes.,Closed the door.,Opened the laptop.,Sat on the bed.,Opened the laptop. 3956,U33ZS_2.3_14.8,What happened after the person took the book?,2,Sequence_T3_1368,Sequence_T3,Put down the picture.,Opened the closet/cabinet.,Opened the laptop.,Tidied up the table.,Opened the laptop. 3957,U33ZS_1.5_14.8,What happened after the person took the paper/notebook?,1,Sequence_T3_1369,Sequence_T3,Put down the laptop.,Opened the laptop.,Put down the book.,Took the dish.,Opened the laptop. 3958,L29HE_0_16.4,What happened after the person sat on the floor?,3,Sequence_T3_1385,Sequence_T3,Took the laptop.,Threw the blanket.,Put down the pillow.,Took the broom.,Took the broom. 3959,V3SOF_4_13.8,What happened after the person closed the closet/cabinet?,0,Sequence_T3_1406,Sequence_T3,Took the dish.,Put down the dish.,Sat at the table.,Put down the towel.,Took the dish. 3960,ZVRBL_0_16.6,What happened after the person tidied up the table?,1,Sequence_T3_1426,Sequence_T3,Sat at the table.,Put down the dish.,Threw the towel.,Took the phone/camera.,Put down the dish. 3961,2KGV3_7.9_22.5,What happened after the person put down the food?,1,Sequence_T3_1441,Sequence_T3,Opened the closet/cabinet.,Closed the book.,Put down the cup/glass/bottle.,Put down the phone/camera.,Closed the book. 3962,HT9YB_0_53,What happened after the person held the laptop?,3,Sequence_T3_1461,Sequence_T3,Washed the cup/glass/bottle.,Ate the sandwich.,Took the book.,Took the phone/camera.,Took the phone/camera. 3963,LUQWY_3.5_33.1,What happened after the person sat on the bed?,0,Sequence_T3_1462,Sequence_T3,Closed the laptop.,Put down the book.,Tidied up the table.,Took the food.,Closed the laptop. 3964,LUQWY_5.3_33.1,What happened after the person sat on the sofa/couch?,0,Sequence_T3_1463,Sequence_T3,Closed the laptop.,Put down the clothes.,Opened the refrigerator.,Closed the book.,Closed the laptop. 3965,LD6TD_0_18.3,What happened after the person sat at the table?,3,Sequence_T3_1471,Sequence_T3,Opened the bag.,Put down the phone/camera.,Tidied up the closet/cabinet.,Closed the book.,Closed the book. 3966,RQRRD_5.2_11.1,What happened after the person took the clothes?,1,Sequence_T3_1501,Sequence_T3,Put down the blanket.,Opened the box.,Opened the bag.,Washed the cup/glass/bottle.,Opened the box. 3967,RQRRD_6.8_12.9,What happened after the person held the clothes?,0,Sequence_T3_1502,Sequence_T3,Closed the box.,Put down the food.,Closed the window.,Threw the towel.,Closed the box. 3968,RQRRD_7.5_22.3,What happened after the person closed the box?,3,Sequence_T3_1503,Sequence_T3,Tidied up the table.,Put down the cup/glass/bottle.,Sat on the floor.,Threw the clothes.,Threw the clothes. 3969,3CLVI_16.3_24.3,What happened after the person opened the door?,3,Sequence_T3_1506,Sequence_T3,Tidied up the blanket.,Threw the broom.,Took the pillow.,Tidied up the closet/cabinet.,Tidied up the closet/cabinet. 3970,3CLVI_16.8_24,What happened after the person tidied up the closet/cabinet?,0,Sequence_T3_1508,Sequence_T3,Took the clothes.,Put down the shoe.,Put down the clothes.,Took the food.,Took the clothes. 3971,M8OYC_12.7_27.1,What happened after the person held the food?,2,Sequence_T3_1524,Sequence_T3,Put down the pillow.,Threw the box.,Tidied up the closet/cabinet.,Took the pillow.,Tidied up the closet/cabinet. 3972,M8OYC_14.6_27.1,What happened after the person put down the food?,0,Sequence_T3_1525,Sequence_T3,Tidied up the closet/cabinet.,Opened the refrigerator.,Took the cup/glass/bottle.,Closed the box.,Tidied up the closet/cabinet. 3973,M8OYC_12.4_27.1,What happened after the person took the food?,1,Sequence_T3_1526,Sequence_T3,Closed the box.,Tidied up the closet/cabinet.,Sat on the sofa/couch.,Opened the book.,Tidied up the closet/cabinet. 3974,UY0SK_13_18,What happened after the person held the food?,3,Sequence_T3_1548,Sequence_T3,Put down the sandwich.,Took the laptop.,Threw the bag.,Took the dish.,Took the dish. 3975,UY0SK_10.9_18,What happened after the person put down the paper/notebook?,1,Sequence_T3_1549,Sequence_T3,Put down the food.,Took the dish.,Put down the blanket.,Took the food.,Took the dish. 3976,DPLMM_4.1_13.2,What happened after the person lied on the floor?,0,Sequence_T3_1550,Sequence_T3,Put down the pillow.,Threw the blanket.,Put down the dish.,Took the phone/camera.,Put down the pillow. 3977,UYZKX_3.9_26.9,What happened after the person opened the closet/cabinet?,3,Sequence_T3_1559,Sequence_T3,Threw the towel.,Closed the door.,Threw the pillow.,Threw the blanket.,Threw the blanket. 3978,W7CR5_0_11.2,What happened after the person held the blanket?,0,Sequence_T3_1567,Sequence_T3,Threw the towel.,Took the clothes.,Put down the pillow.,Put down the food.,Threw the towel. 3979,FQS7O_0_11.5,What happened after the person sat on the floor?,0,Sequence_T3_1568,Sequence_T3,Closed the book.,Lied on the sofa/couch.,Opened the book.,Closed the door.,Closed the book. 3980,FQS7O_0_11.5,What happened after the person sat at the table?,3,Sequence_T3_1569,Sequence_T3,Put down the cup/glass/bottle.,Opened the box.,Opened the window.,Closed the book.,Closed the book. 3981,FQS7O_9.1_20,What happened after the person tidied up the table?,1,Sequence_T3_1570,Sequence_T3,Washed the dish.,Put down the book.,Put down the blanket.,Took the paper/notebook.,Put down the book. 3982,K9UXS_0_11.7,What happened after the person sat on the floor?,2,Sequence_T3_1581,Sequence_T3,Threw the book.,Took the blanket.,Put down the clothes.,Put down the blanket.,Put down the clothes. 3983,D1NT7_3.2_14.3,What happened after the person put down the dish?,3,Sequence_T3_1632,Sequence_T3,Opened the door.,Took the box.,Opened the refrigerator.,Closed the box.,Closed the box. 3984,1FIGA_12.3_23.7,What happened after the person opened the door?,2,Sequence_T3_1676,Sequence_T3,Threw the towel.,Threw the blanket.,Put down the book.,Closed the book.,Put down the book. 3985,1FIGA_4.8_13.8,What happened after the person took the book?,0,Sequence_T3_1677,Sequence_T3,Opened the box.,Tidied up the clothes.,Took the blanket.,Washed the mirror.,Opened the box. 3986,W8XQ9_0_5.8,What happened after the person took the clothes?,1,Sequence_T3_1678,Sequence_T3,Tidied up the blanket.,Tidied up the table.,Opened the book.,Closed the book.,Tidied up the table. 3987,DWHPO_1.3_21.3,What happened after the person took the food?,1,Sequence_T3_1714,Sequence_T3,Washed the clothes.,Put down the phone/camera.,Tidied up the table.,Put down the cup/glass/bottle.,Put down the phone/camera. 3988,T1CQE_18.9_29.9,What happened after the person opened the bag?,2,Sequence_T3_1742,Sequence_T3,Sat at the table.,Tidied up the closet/cabinet.,Took the laptop.,Put down the cup/glass/bottle.,Took the laptop. 3989,2WGSN_8_23.3,What happened after the person washed the cup/glass/bottle?,0,Sequence_T3_1746,Sequence_T3,Took the towel.,Sat on the sofa/couch.,Opened the refrigerator.,Closed the window.,Took the towel. 3990,KV99H_8.8_23,What happened after the person held the shoe?,0,Sequence_T3_1747,Sequence_T3,Put down the book.,Opened the window.,Closed the refrigerator.,Threw the box.,Put down the book. 3991,EDVAM_0_16,What happened after the person sat on the sofa/couch?,2,Sequence_T3_1748,Sequence_T3,Took the laptop.,Washed the mirror.,Closed the window.,Closed the book.,Closed the window. 3992,TJBGM_0_20.8,What happened after the person held the broom?,0,Sequence_T3_1784,Sequence_T3,Took the book.,Put down the sandwich.,Took the clothes.,Put down the food.,Took the book. 3993,R0207_0_12.1,What happened after the person lied on the floor?,3,Sequence_T3_1800,Sequence_T3,Took the blanket.,Sat on the sofa/couch.,Opened the book.,Took the sandwich.,Took the sandwich. 3994,R0207_6.1_33.9,What happened after the person took the food?,2,Sequence_T3_1802,Sequence_T3,Closed the refrigerator.,Threw the book.,Put down the sandwich.,Took the sandwich.,Put down the sandwich. 3995,R0207_7.6_33.9,What happened after the person held the food?,3,Sequence_T3_1803,Sequence_T3,Took the towel.,Threw the blanket.,Ate the sandwich.,Put down the sandwich.,Put down the sandwich. 3996,YMGGV_0_17.9,What happened after the person sat on the sofa/couch?,3,Sequence_T3_1819,Sequence_T3,Took the towel.,Took the dish.,Put down the pillow.,Took the blanket.,Took the blanket. 3997,MD6P2_0_13.4,What happened after the person ate the medicine?,3,Sequence_T3_1820,Sequence_T3,Put down the blanket.,Sat on the sofa/couch.,Put down the sandwich.,Opened the box.,Opened the box. 3998,HOI88_10.7_21.6,What happened after the person held the book?,2,Sequence_T3_1822,Sequence_T3,Closed the closet/cabinet.,Took the paper/notebook.,Sat on the sofa/couch.,Closed the refrigerator.,Sat on the sofa/couch. 3999,HOI88_2.6_21.6,What happened after the person sat at the table?,3,Sequence_T3_1823,Sequence_T3,Opened the book.,Opened the refrigerator.,Took the clothes.,Sat on the sofa/couch.,Sat on the sofa/couch. 4000,AEZDA_0_13.6,What happened after the person held the food?,3,Sequence_T3_1824,Sequence_T3,Put down the paper/notebook.,Closed the door.,Took the dish.,Put down the bag.,Put down the bag. 4001,WOD0G_10.8_19.9,What happened after the person put down the towel?,0,Sequence_T3_1834,Sequence_T3,Threw the clothes.,Threw the blanket.,Took the sandwich.,Put down the sandwich.,Threw the clothes. 4002,NM65M_5.8_16.9,What happened after the person held the pillow?,0,Sequence_T3_1863,Sequence_T3,Threw the blanket.,Closed the laptop.,Took the blanket.,Opened the closet/cabinet.,Threw the blanket. 4003,NM65M_4.3_16.9,What happened after the person took the pillow?,3,Sequence_T3_1864,Sequence_T3,Threw the clothes.,Lied on the floor.,Sat on the floor.,Threw the blanket.,Threw the blanket. 4004,RXLKF_0_9.4,What happened after the person took the book?,3,Sequence_T3_1865,Sequence_T3,Threw the blanket.,Put down the pillow.,Took the towel.,Sat on the sofa/couch.,Sat on the sofa/couch. 4005,RXLKF_1.8_15.2,What happened after the person sat on the sofa/couch?,1,Sequence_T3_1866,Sequence_T3,Took the picture.,Opened the book.,Put down the phone/camera.,Put down the paper/notebook.,Opened the book. 4006,19PNV_0_21.3,What happened after the person watched outside the window?,1,Sequence_T3_1874,Sequence_T3,Took the box.,Took the blanket.,Threw the blanket.,Tidied up the table.,Took the blanket. 4007,19PNV_14.6_21.3,What happened after the person held the pillow?,1,Sequence_T3_1875,Sequence_T3,Took the pillow.,Took the blanket.,Threw the pillow.,Put down the box.,Took the blanket. 4008,24XHS_3.8_26.3,What happened after the person ate the medicine?,3,Sequence_T3_1877,Sequence_T3,Took the clothes.,Closed the book.,Threw the food.,Opened the refrigerator.,Opened the refrigerator. 4009,24XHS_0_26.3,What happened after the person held the medicine?,2,Sequence_T3_1878,Sequence_T3,Opened the box.,Opened the window.,Opened the refrigerator.,Threw the box.,Opened the refrigerator. 4010,NEM29_7.7_18.9,What happened after the person threw the clothes?,0,Sequence_T3_1886,Sequence_T3,Took the bag.,Threw the broom.,Put down the pillow.,Put down the bag.,Took the bag. 4011,K71S1_0.8_9.3,What happened after the person sat on the floor?,1,Sequence_T3_1893,Sequence_T3,Washed the cup/glass/bottle.,Put down the box.,Ate the medicine.,Sat at the table.,Put down the box. 4012,K71S1_11.8_20.9,What happened after the person put down the blanket?,3,Sequence_T3_1894,Sequence_T3,Threw the broom.,Tidied up the table.,Opened the bag.,Tidied up the clothes.,Tidied up the clothes. 4013,OA9W5_0_12,What happened after the person took the food?,1,Sequence_T3_1896,Sequence_T3,Sat on the floor.,Put down the sandwich.,Took the book.,Ate the sandwich.,Put down the sandwich. 4014,JOLLV_0_17.3,What happened after the person sat on the sofa/couch?,1,Sequence_T3_1919,Sequence_T3,Lied on the bed.,Opened the refrigerator.,Took the pillow.,Ate the medicine.,Opened the refrigerator. 4015,V3RAX_0_15.6,What happened after the person lied on the bed?,0,Sequence_T3_1922,Sequence_T3,Threw the blanket.,Took the towel.,Took the sandwich.,Took the cup/glass/bottle.,Threw the blanket. 4016,V3RAX_4.9_15.6,What happened after the person held the clothes?,0,Sequence_T3_1923,Sequence_T3,Threw the blanket.,Put down the blanket.,Opened the bag.,Closed the door.,Threw the blanket. 4017,FM5D5_11_17.5,What happened after the person tidied up the clothes?,2,Sequence_T3_1927,Sequence_T3,Ate the medicine.,Tidied up the blanket.,Put down the bag.,Opened the window.,Put down the bag. 4018,FM5D5_4.2_18.1,What happened after the person threw the bag?,1,Sequence_T3_1928,Sequence_T3,Tidied up the table.,Tidied up the clothes.,Put down the towel.,Took the box.,Tidied up the clothes. 4019,8LAK1_4.4_29,What happened after the person put down the food?,0,Sequence_T3_1933,Sequence_T3,Took the shoe.,Closed the closet/cabinet.,Threw the towel.,Closed the window.,Took the shoe. 4020,78R4Y_3.3_15.6,What happened after the person took the food?,1,Sequence_T3_1983,Sequence_T3,Tidied up the clothes.,Put down the bag.,Opened the door.,Put down the book.,Put down the bag. 4021,78R4Y_5.4_15.6,What happened after the person held the food?,3,Sequence_T3_1984,Sequence_T3,Opened the door.,Lied on the sofa/couch.,Closed the door.,Put down the bag.,Put down the bag. 4022,STAFD_0_12,What happened after the person lied on the bed?,1,Sequence_T3_1985,Sequence_T3,Threw the blanket.,Ate the sandwich.,Threw the shoe.,Opened the door.,Ate the sandwich. 4023,STAFD_0_12,What happened after the person held the food?,3,Sequence_T3_1986,Sequence_T3,Washed the clothes.,Put down the picture.,Closed the refrigerator.,Ate the sandwich.,Ate the sandwich. 4024,P2HZG_0_10.2,What happened after the person sat at the table?,0,Sequence_T3_2004,Sequence_T3,Closed the laptop.,Opened the door.,Took the sandwich.,Took the paper/notebook.,Closed the laptop. 4025,2Q3ZJ_18.2_25.8,What happened after the person held the phone/camera?,0,Sequence_T3_2033,Sequence_T3,Opened the closet/cabinet.,Closed the door.,Took the bag.,Closed the laptop.,Opened the closet/cabinet. 4026,2Q3ZJ_0_25.8,What happened after the person took the clothes?,0,Sequence_T3_2034,Sequence_T3,Opened the closet/cabinet.,Opened the door.,Took the blanket.,Put down the dish.,Opened the closet/cabinet. 4027,PDRVY_4_16.4,What happened after the person opened the closet/cabinet?,3,Sequence_T3_2036,Sequence_T3,Took the phone/camera.,Tidied up the closet/cabinet.,Put down the pillow.,Took the bag.,Took the bag. 4028,PDRVY_17.9_27.3,What happened after the person closed the closet/cabinet?,3,Sequence_T3_2037,Sequence_T3,Took the dish.,Opened the closet/cabinet.,Put down the paper/notebook.,Threw the bag.,Threw the bag. 4029,E6PSM_5.8_28.3,What happened after the person closed the door?,2,Sequence_T3_2042,Sequence_T3,Took the box.,Put down the food.,Threw the box.,Threw the pillow.,Threw the box. 4030,AZMVM_17.4_28,What happened after the person opened the closet/cabinet?,2,Sequence_T3_2049,Sequence_T3,Put down the cup/glass/bottle.,Took the box.,Put down the pillow.,Took the cup/glass/bottle.,Put down the pillow. 4031,BN4VH_1.8_18.9,What happened after the person held the blanket?,2,Sequence_T3_2055,Sequence_T3,Took the book.,Took the pillow.,Took the dish.,Put down the dish.,Took the dish. 4032,01ZWG_4.9_13.5,What happened after the person opened the laptop?,2,Sequence_T3_2057,Sequence_T3,Lied on the floor.,Opened the window.,Sat at the table.,Took the bag.,Sat at the table. 4033,IO712_1.9_11.6,What happened after the person took the book?,1,Sequence_T3_2074,Sequence_T3,Closed the closet/cabinet.,Sat on the floor.,Opened the book.,Opened the door.,Sat on the floor. 4034,KVYOZ_0_6,What happened after the person sat on the floor?,0,Sequence_T3_2112,Sequence_T3,Put down the picture.,Ate the medicine.,Opened the box.,Took the cup/glass/bottle.,Put down the picture. 4035,FM078_0.2_7.3,What happened after the person tidied up the table?,3,Sequence_T3_2145,Sequence_T3,Washed the dish.,Opened the book.,Put down the book.,Put down the dish.,Put down the dish. 4036,41EQS_3.6_13.8,What happened after the person put down the blanket?,3,Sequence_T3_2146,Sequence_T3,Took the food.,Threw the clothes.,Took the blanket.,Threw the bag.,Threw the bag. 4037,6PL9Z_3.5_13.4,What happened after the person held the blanket?,0,Sequence_T3_2157,Sequence_T3,Took the book.,Put down the paper/notebook.,Tidied up the closet/cabinet.,Threw the clothes.,Took the book. 4038,ICL1M_0_22.1,What happened after the person sat on the bed?,2,Sequence_T3_2175,Sequence_T3,Ate the medicine.,Washed the dish.,Closed the book.,Closed the refrigerator.,Closed the book. 4039,X5YL3_5.4_19,What happened after the person put down the food?,3,Sequence_T3_2189,Sequence_T3,Opened the refrigerator.,Put down the cup/glass/bottle.,Put down the dish.,Closed the refrigerator.,Closed the refrigerator. 4040,X5YL3_5.7_19,What happened after the person held the food?,0,Sequence_T3_2191,Sequence_T3,Closed the refrigerator.,Sat on the sofa/couch.,Put down the sandwich.,Sat on the bed.,Closed the refrigerator. 4041,J867Z_3.5_20,What happened after the person put down the cup/glass/bottle?,3,Sequence_T3_2197,Sequence_T3,Sat on the floor.,Threw the shoe.,Opened the book.,Threw the book.,Threw the book. 4042,DHPNN_0_15.5,What happened after the person sat at the table?,3,Sequence_T3_2199,Sequence_T3,Took the bag.,Sat on the bed.,Took the broom.,Threw the food.,Threw the food. 4043,RJIEO_4.4_9.9,What happened after the person sat on the bed?,1,Sequence_T3_2202,Sequence_T3,Took the pillow.,Put down the bag.,Lied on the bed.,Tidied up the closet/cabinet.,Put down the bag. 4044,432NL_13.6_32,What happened after the person closed the refrigerator?,2,Sequence_T3_2220,Sequence_T3,Took the cup/glass/bottle.,Put down the sandwich.,Ate the medicine.,Put down the paper/notebook.,Ate the medicine. 4045,LH6LE_3.5_12.2,What happened after the person opened the closet/cabinet?,1,Sequence_T3_2231,Sequence_T3,Took the sandwich.,Took the dish.,Took the phone/camera.,Closed the door.,Took the dish. 4046,KQYR0_0.9_20.9,What happened after the person tidied up the clothes?,2,Sequence_T3_2232,Sequence_T3,Took the towel.,Ate the sandwich.,Took the book.,Put down the shoe.,Took the book. 4047,1RNK6_0_14,What happened after the person watched outside the window?,3,Sequence_T3_2242,Sequence_T3,Put down the shoe.,Put down the cup/glass/bottle.,Closed the box.,Tidied up the closet/cabinet.,Tidied up the closet/cabinet. 4048,1RNK6_6.7_12.5,What happened after the person tidied up the closet/cabinet?,1,Sequence_T3_2243,Sequence_T3,Put down the book.,Took the box.,Closed the box.,Put down the food.,Took the box. 4049,OUAIS_0_20,What happened after the person lied on the floor?,0,Sequence_T3_2253,Sequence_T3,Took the clothes.,Threw the blanket.,Took the blanket.,Threw the clothes.,Took the clothes. 4050,OUAIS_11.7_29,What happened after the person took the clothes?,2,Sequence_T3_2255,Sequence_T3,Lied on the bed.,Put down the towel.,Threw the pillow.,Threw the book.,Threw the pillow. 4051,NVBBD_0_17.5,What happened after the person opened the door?,3,Sequence_T3_2258,Sequence_T3,Took the food.,Opened the window.,Threw the towel.,Put down the shoe.,Put down the shoe. 4052,2LCLG_2_16.4,What happened after the person opened the bag?,0,Sequence_T3_2263,Sequence_T3,Took the paper/notebook.,Took the book.,Threw the pillow.,Washed the cup/glass/bottle.,Took the paper/notebook. 4053,2LCLG_11_17.2,What happened after the person took the paper/notebook?,1,Sequence_T3_2264,Sequence_T3,Closed the window.,Threw the book.,Threw the clothes.,Sat on the sofa/couch.,Threw the book. 4054,TZL6H_6_32,What happened after the person drank from the cup/glass/bottle?,2,Sequence_T3_2266,Sequence_T3,Put down the dish.,Put down the cup/glass/bottle.,Washed the mirror.,Lied on the bed.,Washed the mirror. 4055,TZL6H_22.3_32,What happened after the person held the clothes?,3,Sequence_T3_2267,Sequence_T3,Closed the refrigerator.,Closed the closet/cabinet.,Washed the dish.,Washed the mirror.,Washed the mirror. 4056,TZL6H_0_32,What happened after the person ate the medicine?,0,Sequence_T3_2268,Sequence_T3,Washed the mirror.,Put down the blanket.,Lied on the floor.,Threw the food.,Washed the mirror. 4057,6UMSJ_3.4_13.7,What happened after the person put down the food?,3,Sequence_T3_2269,Sequence_T3,Tidied up the table.,Put down the laptop.,Took the towel.,Took the phone/camera.,Took the phone/camera. 4058,WAOE7_6.4_11,What happened after the person threw the food?,1,Sequence_T3_2277,Sequence_T3,Took the book.,Put down the sandwich.,Washed the clothes.,Sat at the table.,Put down the sandwich. 4059,D6D85_0_6.7,What happened after the person sat on the sofa/couch?,0,Sequence_T3_2280,Sequence_T3,Put down the sandwich.,Put down the cup/glass/bottle.,Closed the book.,Tidied up the closet/cabinet.,Put down the sandwich. 4060,D6D85_0_6.7,What happened after the person held the food?,2,Sequence_T3_2281,Sequence_T3,Opened the window.,Closed the laptop.,Put down the sandwich.,Ate the sandwich.,Put down the sandwich. 4061,H8UJ3_11.6_23.1,What happened after the person sat at the table?,2,Sequence_T3_2296,Sequence_T3,Threw the book.,Sat at the table.,Opened the book.,Took the cup/glass/bottle.,Opened the book. 4062,Z7QTA_9.7_18.1,What happened after the person held the box?,3,Sequence_T3_2306,Sequence_T3,Took the phone/camera.,Took the broom.,Put down the food.,Put down the bag.,Put down the bag. 4063,Z7QTA_8.7_18.1,What happened after the person took the box?,0,Sequence_T3_2307,Sequence_T3,Put down the bag.,Put down the book.,Closed the closet/cabinet.,Opened the door.,Put down the bag. 4064,Z7QTA_14.4_23.2,What happened after the person tidied up the closet/cabinet?,1,Sequence_T3_2308,Sequence_T3,Sat on the sofa/couch.,Put down the box.,Took the sandwich.,Put down the picture.,Put down the box. 4065,CH8XJ_13.5_25.4,What happened after the person opened the closet/cabinet?,1,Sequence_T3_2313,Sequence_T3,Put down the towel.,Threw the shoe.,Closed the door.,Lied on the bed.,Threw the shoe. 4066,2NV6L_5.7_18.1,What happened after the person held the shoe?,3,Sequence_T3_2330,Sequence_T3,Put down the paper/notebook.,Threw the food.,Closed the door.,Put down the bag.,Put down the bag. 4067,2NV6L_9.6_27.8,What happened after the person put down the bag?,3,Sequence_T3_2331,Sequence_T3,Threw the blanket.,Opened the box.,Closed the closet/cabinet.,Took the pillow.,Took the pillow. 4068,2XVR0_0_20,What happened after the person held the food?,3,Sequence_T3_2332,Sequence_T3,Put down the dish.,Opened the laptop.,Ate the sandwich.,Put down the sandwich.,Put down the sandwich. 4069,MUO4G_0_12.8,What happened after the person sat on the table?,1,Sequence_T3_2369,Sequence_T3,Took the cup/glass/bottle.,Opened the refrigerator.,Washed the clothes.,Threw the book.,Opened the refrigerator. 4070,RRZU3_2.7_11,What happened after the person lied on the sofa/couch?,1,Sequence_T3_2374,Sequence_T3,Threw the bag.,Opened the laptop.,Threw the clothes.,Opened the window.,Opened the laptop. 4071,RRZU3_3.3_22.2,What happened after the person opened the laptop?,1,Sequence_T3_2375,Sequence_T3,Tidied up the table.,Put down the dish.,Threw the broom.,Took the phone/camera.,Put down the dish. 4072,5MF9Y_1.3_12.1,What happened after the person held the broom?,3,Sequence_T3_2396,Sequence_T3,Took the pillow.,Washed the dish.,Took the bag.,Put down the paper/notebook.,Put down the paper/notebook. 4073,5MF9Y_13.6_20.3,What happened after the person put down the broom?,3,Sequence_T3_2397,Sequence_T3,Opened the laptop.,Opened the refrigerator.,Put down the clothes.,Threw the food.,Threw the food. 4074,HFW6H_29.6_41.7,What happened after the person put down the cup/glass/bottle?,2,Sequence_T3_2442,Sequence_T3,Put down the phone/camera.,Threw the blanket.,Threw the clothes.,Took the phone/camera.,Threw the clothes. 4075,UEC1F_12.7_19.4,What happened after the person held the blanket?,1,Sequence_T3_2444,Sequence_T3,Opened the closet/cabinet.,Took the clothes.,Tidied up the clothes.,Took the phone/camera.,Took the clothes. 4076,ANA5N_14.2_21.8,What happened after the person opened the closet/cabinet?,0,Sequence_T3_2481,Sequence_T3,Put down the towel.,Put down the clothes.,Put down the food.,Threw the shoe.,Put down the towel. 4077,JBJGX_0_19.9,What happened after the person sat on the sofa/couch?,3,Sequence_T3_2513,Sequence_T3,Threw the food.,Opened the book.,Tidied up the clothes.,Closed the laptop.,Closed the laptop. 4078,JBJGX_12.2_19.9,What happened after the person took the clothes?,3,Sequence_T3_2514,Sequence_T3,Tidied up the table.,Closed the closet/cabinet.,Threw the towel.,Closed the laptop.,Closed the laptop. 4079,JBJGX_23.4_31.5,What happened after the person put down the clothes?,1,Sequence_T3_2515,Sequence_T3,Put down the towel.,Opened the laptop.,Took the towel.,Closed the door.,Opened the laptop. 4080,43FG9_3.2_11.4,What happened after the person put down the clothes?,3,Sequence_T3_2517,Sequence_T3,Took the broom.,Took the blanket.,Opened the door.,Threw the towel.,Threw the towel. 4081,9335E_19.1_43,What happened after the person put down the dish?,2,Sequence_T3_2520,Sequence_T3,Closed the window.,Took the towel.,Opened the closet/cabinet.,Put down the blanket.,Opened the closet/cabinet. 4082,WLA52_15.8_25.6,What happened after the person put down the blanket?,0,Sequence_T3_2531,Sequence_T3,Took the broom.,Put down the pillow.,Lied on the floor.,Threw the pillow.,Took the broom. 4083,WLA52_0.6_23,What happened after the person took the clothes?,1,Sequence_T3_2532,Sequence_T3,Opened the bag.,Put down the blanket.,Opened the box.,Put down the picture.,Put down the blanket. 4084,WLA52_1.3_23,What happened after the person held the clothes?,2,Sequence_T3_2533,Sequence_T3,Took the shoe.,Opened the closet/cabinet.,Put down the blanket.,Took the paper/notebook.,Put down the blanket. 4085,N2GFQ_6.9_39,What happened after the person put down the bag?,0,Sequence_T3_2542,Sequence_T3,Lied on the sofa/couch.,Opened the door.,Put down the paper/notebook.,Closed the refrigerator.,Lied on the sofa/couch. 4086,N2GFQ_1.6_13.5,What happened after the person closed the door?,3,Sequence_T3_2543,Sequence_T3,Sat at the table.,Took the picture.,Took the food.,Put down the bag.,Put down the bag. 4087,WRW74_1.9_9.3,What happened after the person took the dish?,3,Sequence_T3_2552,Sequence_T3,Opened the door.,Threw the clothes.,Put down the blanket.,Opened the box.,Opened the box. 4088,AWITI_2.3_15.9,What happened after the person closed the door?,3,Sequence_T3_2581,Sequence_T3,Lied on the sofa/couch.,Took the cup/glass/bottle.,Put down the dish.,Took the pillow.,Took the pillow. 4089,9BCZU_25_34,What happened after the person put down the blanket?,3,Sequence_T3_2590,Sequence_T3,Took the pillow.,Washed the cup/glass/bottle.,Took the bag.,Washed the clothes.,Washed the clothes. 4090,9PXC0_16.2_31,What happened after the person held the phone/camera?,3,Sequence_T3_2596,Sequence_T3,Washed the clothes.,Tidied up the blanket.,Ate the medicine.,Opened the book.,Opened the book. 4091,9PXC0_0_15,What happened after the person lied on the bed?,2,Sequence_T3_2597,Sequence_T3,Took the towel.,Put down the box.,Took the box.,Took the blanket.,Took the box. 4092,9PXC0_1.3_15,What happened after the person sat on the bed?,2,Sequence_T3_2598,Sequence_T3,Put down the sandwich.,Took the blanket.,Took the box.,Tidied up the closet/cabinet.,Took the box. 4093,4S3UZ_0_31.7,What happened after the person sat on the floor?,3,Sequence_T3_2615,Sequence_T3,Put down the blanket.,Took the shoe.,Opened the bag.,Put down the broom.,Put down the broom. 4094,JZDL6_7.8_14,What happened after the person took the shoe?,0,Sequence_T3_2630,Sequence_T3,Sat on the bed.,Ate the medicine.,Threw the broom.,Opened the door.,Sat on the bed. 4095,FETME_7.4_15.7,What happened after the person took the paper/notebook?,2,Sequence_T3_2640,Sequence_T3,Put down the towel.,Closed the closet/cabinet.,Opened the book.,Opened the box.,Opened the book. 4096,M704T_9.8_19.6,What happened after the person closed the door?,2,Sequence_T3_2641,Sequence_T3,Closed the refrigerator.,Tidied up the blanket.,Took the towel.,Took the cup/glass/bottle.,Took the towel. 4097,I713Z_7.5_24.7,What happened after the person held the laptop?,3,Sequence_T3_2680,Sequence_T3,Lied on the sofa/couch.,Closed the closet/cabinet.,Ate the medicine.,Opened the refrigerator.,Opened the refrigerator. 4098,Q7RK6_2.2_13.4,What happened after the person threw the clothes?,2,Sequence_T3_2682,Sequence_T3,Took the sandwich.,Put down the food.,Put down the pillow.,Took the food.,Put down the pillow. 4099,ZAJAJ_12.2_29.1,What happened after the person took the picture?,1,Sequence_T3_2708,Sequence_T3,Threw the pillow.,Opened the laptop.,Closed the closet/cabinet.,Took the phone/camera.,Opened the laptop. 4100,ZAJAJ_2.4_17.6,What happened after the person put down the pillow?,0,Sequence_T3_2709,Sequence_T3,Took the picture.,Tidied up the table.,Sat on the floor.,Sat at the table.,Took the picture. 4101,ZAJAJ_13.8_29.1,What happened after the person held the picture?,3,Sequence_T3_2710,Sequence_T3,Sat at the table.,Took the laptop.,Put down the dish.,Opened the laptop.,Opened the laptop. 4102,VNVRA_0_5.8,What happened after the person opened the closet/cabinet?,1,Sequence_T3_2719,Sequence_T3,Put down the cup/glass/bottle.,Took the box.,Opened the book.,Washed the clothes.,Took the box. 4103,KLP7V_0_16.3,What happened after the person tidied up the closet/cabinet?,2,Sequence_T3_2728,Sequence_T3,Closed the book.,Put down the clothes.,Put down the box.,Threw the bag.,Put down the box. 4104,K87AC_0.7_16.4,What happened after the person closed the door?,2,Sequence_T3_2735,Sequence_T3,Took the cup/glass/bottle.,Sat on the sofa/couch.,Put down the clothes.,Closed the box.,Put down the clothes. 4105,ABHC6_2.5_10.2,What happened after the person put down the clothes?,2,Sequence_T3_2738,Sequence_T3,Closed the box.,Closed the door.,Opened the closet/cabinet.,Opened the box.,Opened the closet/cabinet. 4106,ABHC6_3_15.2,What happened after the person opened the closet/cabinet?,3,Sequence_T3_2739,Sequence_T3,Opened the laptop.,Put down the food.,Sat on the floor.,Took the clothes.,Took the clothes. 4107,WBS4I_5.7_15.5,What happened after the person took the paper/notebook?,3,Sequence_T3_2750,Sequence_T3,Opened the bag.,Opened the laptop.,Washed the dish.,Closed the closet/cabinet.,Closed the closet/cabinet. 4108,OO4FE_10.6_18.6,What happened after the person sat at the table?,3,Sequence_T3_2758,Sequence_T3,Put down the box.,Took the cup/glass/bottle.,Put down the towel.,Opened the book.,Opened the book. 4109,OO4FE_0_6.6,What happened after the person tidied up the table?,0,Sequence_T3_2760,Sequence_T3,Threw the bag.,Took the cup/glass/bottle.,Washed the dish.,Washed the clothes.,Threw the bag. 4110,52WDV_1.2_26.7,What happened after the person took the clothes?,3,Sequence_T3_2761,Sequence_T3,Put down the picture.,Lied on the bed.,Opened the bag.,Opened the book.,Opened the book. 4111,FX1T5_0.6_12,What happened after the person held the book?,2,Sequence_T3_2768,Sequence_T3,Tidied up the towel.,Sat on the bed.,Put down the picture.,Put down the book.,Put down the picture. 4112,FX1T5_3.8_14.3,What happened after the person watched at the picture?,2,Sequence_T3_2770,Sequence_T3,Opened the laptop.,Took the broom.,Opened the book.,Opened the closet/cabinet.,Opened the book. 4113,FX1T5_0.9_12,What happened after the person closed the book?,0,Sequence_T3_2771,Sequence_T3,Put down the picture.,Threw the bag.,Put down the blanket.,Took the shoe.,Put down the picture. 4114,6TV29_1.8_21.4,What happened after the person held the blanket?,0,Sequence_T3_2800,Sequence_T3,Put down the clothes.,Closed the closet/cabinet.,Closed the window.,Ate the medicine.,Put down the clothes. 4115,KU656_0_12.8,What happened after the person lied on the bed?,3,Sequence_T3_2825,Sequence_T3,Washed the dish.,Opened the laptop.,Put down the pillow.,Took the towel.,Took the towel. 4116,TK76G_0_16,What happened after the person took the food?,3,Sequence_T3_2852,Sequence_T3,Threw the bag.,Sat on the sofa/couch.,Closed the refrigerator.,Put down the towel.,Put down the towel. 4117,3IRHH_14.6_28.8,What happened after the person put down the dish?,3,Sequence_T3_2870,Sequence_T3,Ate the medicine.,Put down the blanket.,Put down the bag.,Opened the book.,Opened the book. 4118,3IRHH_0_7.3,What happened after the person held the dish?,3,Sequence_T3_2871,Sequence_T3,Ate the medicine.,Took the towel.,Took the phone/camera.,Took the paper/notebook.,Took the paper/notebook. 4119,7SXQS_1_17.5,What happened after the person closed the window?,2,Sequence_T3_2880,Sequence_T3,Took the shoe.,Took the book.,Took the blanket.,Threw the book.,Took the blanket. 4120,NCRCW_3.7_10.2,What happened after the person sat on the floor?,1,Sequence_T3_2906,Sequence_T3,Put down the book.,Took the pillow.,Ate the sandwich.,Took the paper/notebook.,Took the pillow. 4121,08F85_1_23.2,What happened after the person opened the closet/cabinet?,3,Sequence_T3_2909,Sequence_T3,Put down the pillow.,Took the cup/glass/bottle.,Put down the picture.,Ate the medicine.,Ate the medicine. 4122,08F85_11.1_23.2,What happened after the person opened the closet/cabinet?,0,Sequence_T3_2910,Sequence_T3,Ate the medicine.,Put down the dish.,Opened the refrigerator.,Put down the blanket.,Ate the medicine. 4123,4MFE0_0_27.2,What happened after the person held the food?,2,Sequence_T3_2923,Sequence_T3,Closed the window.,Put down the blanket.,Took the book.,Closed the refrigerator.,Took the book. 4124,LGS4C_0_24.5,What happened after the person held the phone/camera?,2,Sequence_T3_2936,Sequence_T3,Took the blanket.,Took the cup/glass/bottle.,Closed the door.,Put down the picture.,Closed the door. 4125,FVITB_6.2_25.3,What happened after the person took the food?,2,Sequence_T3_2966,Sequence_T3,Took the shoe.,Tidied up the clothes.,Opened the refrigerator.,Opened the bag.,Opened the refrigerator. 4126,FL6DF_10.3_19.7,What happened after the person threw the pillow?,1,Sequence_T3_2973,Sequence_T3,Tidied up the clothes.,Put down the laptop.,Tidied up the towel.,Washed the table.,Put down the laptop. 4127,FL6DF_0.9_8.1,What happened after the person sat on the sofa/couch?,1,Sequence_T3_2974,Sequence_T3,Washed the cup/glass/bottle.,Opened the laptop.,Took the book.,Put down the pillow.,Opened the laptop. 4128,FL6DF_8.9_15.9,What happened after the person put down the blanket?,0,Sequence_T3_2975,Sequence_T3,Threw the pillow.,Put down the broom.,Lied on the floor.,Put down the sandwich.,Threw the pillow. 4129,ZS9XR_1.5_17.1,What happened after the person took the food?,0,Sequence_T3_2985,Sequence_T3,Ate the medicine.,Tidied up the blanket.,Put down the cup/glass/bottle.,Took the box.,Ate the medicine. 4130,BAUQE_0_10.2,What happened after the person tidied up the clothes?,3,Sequence_T3_3022,Sequence_T3,Threw the blanket.,Opened the box.,Closed the window.,Took the broom.,Took the broom. 4131,APVAD_6.7_16.5,What happened after the person held the clothes?,1,Sequence_T3_3032,Sequence_T3,Took the broom.,Threw the pillow.,Sat on the sofa/couch.,Put down the pillow.,Threw the pillow. 4132,P4HXN_0.8_33.3,What happened after the person washed the clothes?,0,Sequence_T3_3035,Sequence_T3,Put down the laptop.,Washed the mirror.,Opened the book.,Threw the pillow.,Put down the laptop. 4133,UF91R_9.7_14.3,What happened after the person took the food?,0,Sequence_T3_3036,Sequence_T3,Opened the refrigerator.,Closed the refrigerator.,Ate the medicine.,Closed the book.,Opened the refrigerator. 4134,PQYWB_0_10.7,What happened after the person held the phone/camera?,1,Sequence_T3_3050,Sequence_T3,Closed the refrigerator.,Put down the towel.,Put down the laptop.,Opened the window.,Put down the towel. 4135,I1OLQ_8.4_32,What happened after the person closed the door?,0,Sequence_T3_3054,Sequence_T3,Opened the bag.,Put down the phone/camera.,Took the pillow.,Put down the picture.,Opened the bag. 4136,M1FNW_0_6.9,What happened after the person held the phone/camera?,3,Sequence_T3_3058,Sequence_T3,Put down the paper/notebook.,Tidied up the clothes.,Put down the food.,Took the laptop.,Took the laptop. 4137,NNG97_0.6_14,What happened after the person put down the book?,0,Sequence_T3_3073,Sequence_T3,Took the laptop.,Ate the sandwich.,Threw the towel.,Opened the refrigerator.,Took the laptop. 4138,NKCXF_0_15.3,What happened after the person sat on the sofa/couch?,0,Sequence_T3_3100,Sequence_T3,Put down the pillow.,Threw the clothes.,Took the pillow.,Put down the book.,Put down the pillow. 4139,JQLD3_0_10.6,What happened after the person sat at the table?,0,Sequence_T3_3103,Sequence_T3,Took the sandwich.,Put down the shoe.,Took the phone/camera.,Put down the phone/camera.,Took the sandwich. 4140,JQLD3_0_10.6,What happened after the person held the box?,2,Sequence_T3_3104,Sequence_T3,Threw the blanket.,Opened the door.,Took the sandwich.,Put down the food.,Took the sandwich. 4141,40309_22.4_32,What happened after the person opened the door?,3,Sequence_T3_3129,Sequence_T3,Took the bag.,Took the picture.,Threw the shoe.,Closed the closet/cabinet.,Closed the closet/cabinet. 4142,ZZ2SF_0_25.5,What happened after the person held the phone/camera?,3,Sequence_T3_3156,Sequence_T3,Closed the refrigerator.,Tidied up the clothes.,Took the cup/glass/bottle.,Ate the medicine.,Ate the medicine. 4143,8L9AJ_2.7_20.3,What happened after the person opened the box?,0,Sequence_T3_3157,Sequence_T3,Took the laptop.,Put down the broom.,Put down the cup/glass/bottle.,Put down the paper/notebook.,Took the laptop. 4144,9X208_0_26.8,What happened after the person lied on the bed?,0,Sequence_T3_3158,Sequence_T3,Took the towel.,Took the box.,Ate the medicine.,Threw the blanket.,Took the towel. 4145,RJCNV_11.5_17.9,What happened after the person sat at the table?,0,Sequence_T3_3161,Sequence_T3,Opened the book.,Threw the box.,Put down the phone/camera.,Took the cup/glass/bottle.,Opened the book. 4146,RJCNV_3.2_17.9,What happened after the person closed the door?,3,Sequence_T3_3162,Sequence_T3,Took the shoe.,Threw the shoe.,Took the cup/glass/bottle.,Opened the book.,Opened the book. 4147,LW51F_0_17,What happened after the person held the mirror?,1,Sequence_T3_3168,Sequence_T3,Put down the clothes.,Closed the book.,Put down the towel.,Put down the picture.,Closed the book. 4148,LW51F_0_17,What happened after the person washed the mirror?,1,Sequence_T3_3169,Sequence_T3,Washed the mirror.,Closed the book.,Put down the cup/glass/bottle.,Put down the towel.,Closed the book. 4149,6QSON_9.5_24.3,What happened after the person put down the cup/glass/bottle?,2,Sequence_T3_3181,Sequence_T3,Took the paper/notebook.,Put down the bag.,Opened the bag.,Threw the food.,Opened the bag. 4150,BE51K_0_19.8,What happened after the person watched outside the window?,3,Sequence_T3_3187,Sequence_T3,Closed the book.,Put down the pillow.,Threw the food.,Sat on the bed.,Sat on the bed. 4151,BE51K_0_19.8,What happened after the person put down the bag?,2,Sequence_T3_3188,Sequence_T3,Closed the window.,Closed the closet/cabinet.,Sat on the bed.,Closed the book.,Sat on the bed. 4152,2I871_0_16.6,What happened after the person held the phone/camera?,1,Sequence_T3_3191,Sequence_T3,Put down the book.,Took the bag.,Opened the door.,Closed the book.,Took the bag. 4153,2I871_0_16.6,What happened after the person lied on the floor?,2,Sequence_T3_3192,Sequence_T3,Threw the blanket.,Sat on the bed.,Took the bag.,Opened the refrigerator.,Took the bag. 4154,3FEYY_12_17.3,What happened after the person took the cup/glass/bottle?,1,Sequence_T3_3210,Sequence_T3,Opened the bag.,Put down the towel.,Put down the shoe.,Threw the broom.,Put down the towel. 4155,VPBIO_0.2_9.1,What happened after the person put down the food?,0,Sequence_T3_3211,Sequence_T3,Opened the bag.,Sat on the floor.,Closed the book.,Opened the closet/cabinet.,Opened the bag. 4156,EUJK0_17.1_26.6,What happened after the person put down the laptop?,2,Sequence_T3_3224,Sequence_T3,Sat at the table.,Took the broom.,Took the book.,Put down the phone/camera.,Took the book. 4157,8MLCU_4.4_14.4,What happened after the person put down the box?,2,Sequence_T3_3242,Sequence_T3,Ate the sandwich.,Opened the door.,Opened the refrigerator.,Put down the food.,Opened the refrigerator. 4158,34J80_2.9_26.6,What happened after the person drank from the cup/glass/bottle?,2,Sequence_T3_3247,Sequence_T3,Ate the sandwich.,Put down the picture.,Took the food.,Tidied up the clothes.,Took the food. 4159,GLGQJ_19.5_29.3,What happened after the person took the phone/camera?,2,Sequence_T3_3258,Sequence_T3,Took the book.,Put down the pillow.,Closed the window.,Took the food.,Closed the window. 4160,GLGQJ_0_29.3,What happened after the person washed the cup/glass/bottle?,3,Sequence_T3_3259,Sequence_T3,Put down the broom.,Took the towel.,Ate the sandwich.,Closed the window.,Closed the window. 4161,TOOYI_4.6_19.1,What happened after the person put down the towel?,1,Sequence_T3_3261,Sequence_T3,Opened the bag.,Closed the box.,Took the paper/notebook.,Closed the refrigerator.,Closed the box. 4162,TOOYI_1.6_19.1,What happened after the person put down the blanket?,2,Sequence_T3_3262,Sequence_T3,Put down the cup/glass/bottle.,Threw the clothes.,Closed the box.,Put down the paper/notebook.,Closed the box. 4163,T2J3M_13.1_27.2,What happened after the person put down the clothes?,1,Sequence_T3_3299,Sequence_T3,Took the towel.,Tidied up the closet/cabinet.,Closed the box.,Took the broom.,Tidied up the closet/cabinet. 4164,T2J3M_9.2_27.2,What happened after the person opened the door?,1,Sequence_T3_3300,Sequence_T3,Put down the pillow.,Tidied up the closet/cabinet.,Sat on the bed.,Closed the box.,Tidied up the closet/cabinet. 4165,M52K2_1.7_22.8,What happened after the person sat on the floor?,3,Sequence_T3_3303,Sequence_T3,Took the cup/glass/bottle.,Closed the box.,Threw the box.,Put down the food.,Put down the food. 4166,XLR4B_5.3_30.9,What happened after the person ate the sandwich?,3,Sequence_T3_3304,Sequence_T3,Took the pillow.,Opened the bag.,Put down the blanket.,Sat at the table.,Sat at the table. 4167,XLR4B_0.1_30.9,What happened after the person held the sandwich?,1,Sequence_T3_3305,Sequence_T3,Took the phone/camera.,Sat at the table.,Closed the book.,Took the pillow.,Sat at the table. 4168,XLR4B_0.4_30.9,What happened after the person held the food?,1,Sequence_T3_3306,Sequence_T3,Put down the food.,Sat at the table.,Took the laptop.,Put down the bag.,Sat at the table. 4169,JCNHL_19.1_26.8,What happened after the person opened the box?,2,Sequence_T3_3318,Sequence_T3,Washed the dish.,Threw the broom.,Put down the clothes.,Put down the dish.,Put down the clothes. 4170,JCNHL_12_27.6,What happened after the person threw the clothes?,1,Sequence_T3_3319,Sequence_T3,Washed the dish.,Opened the box.,Took the laptop.,Opened the closet/cabinet.,Opened the box. 4171,JCNHL_12.4_27.6,What happened after the person held the clothes?,0,Sequence_T3_3320,Sequence_T3,Opened the box.,Put down the paper/notebook.,Closed the closet/cabinet.,Took the paper/notebook.,Opened the box. 4172,QXT9W_10.7_24.2,What happened after the person sat at the table?,3,Sequence_T3_3329,Sequence_T3,Put down the food.,Took the picture.,Took the cup/glass/bottle.,Opened the book.,Opened the book. 4173,CLW8L_0_13.1,What happened after the person lied on the bed?,0,Sequence_T3_3347,Sequence_T3,Took the pillow.,Washed the dish.,Tidied up the blanket.,Threw the blanket.,Took the pillow. 4174,17RPG_24.1_33,What happened after the person threw the clothes?,0,Sequence_T3_3348,Sequence_T3,Ate the sandwich.,Put down the clothes.,Took the cup/glass/bottle.,Took the pillow.,Ate the sandwich. 4175,IBX56_0.9_19.1,What happened after the person ate the sandwich?,2,Sequence_T3_3358,Sequence_T3,Put down the dish.,Opened the door.,Tidied up the clothes.,Lied on the bed.,Tidied up the clothes. 4176,IBX56_0_19.1,What happened after the person held the food?,1,Sequence_T3_3359,Sequence_T3,Threw the towel.,Tidied up the clothes.,Took the cup/glass/bottle.,Ate the sandwich.,Tidied up the clothes. 4177,IBX56_0_19.1,What happened after the person held the sandwich?,3,Sequence_T3_3360,Sequence_T3,Took the food.,Put down the food.,Threw the towel.,Tidied up the clothes.,Tidied up the clothes. 4178,HONL7_0_5.8,What happened after the person lied on the floor?,3,Sequence_T3_3378,Sequence_T3,Took the phone/camera.,Took the pillow.,Threw the broom.,Took the book.,Took the book. 4179,HONL7_0.1_11,What happened after the person took the book?,3,Sequence_T3_3379,Sequence_T3,Put down the book.,Put down the bag.,Closed the refrigerator.,Put down the paper/notebook.,Put down the paper/notebook. 4180,X9WTR_22.5_33,What happened after the person sat on the sofa/couch?,1,Sequence_T3_3399,Sequence_T3,Washed the mirror.,Took the book.,Took the phone/camera.,Sat on the sofa/couch.,Took the book. 4181,QRWQ3_13_33.3,What happened after the person put down the dish?,2,Sequence_T3_3407,Sequence_T3,Opened the closet/cabinet.,Tidied up the towel.,Opened the box.,Sat on the bed.,Opened the box. 4182,AFTMI_13.5_37.8,What happened after the person held the shoe?,2,Sequence_T3_3486,Sequence_T3,Washed the table.,Tidied up the towel.,Took the pillow.,Took the bag.,Took the pillow. 4183,AFTMI_0_37.8,What happened after the person sat on the sofa/couch?,3,Sequence_T3_3487,Sequence_T3,Opened the bag.,Closed the door.,Took the food.,Took the pillow.,Took the pillow. 4184,969Z9_0_7.4,What happened after the person held the phone/camera?,1,Sequence_T3_3488,Sequence_T3,Opened the closet/cabinet.,Sat at the table.,Opened the bag.,Ate the medicine.,Sat at the table. 4185,IFQS1_6.1_13.3,What happened after the person washed the clothes?,0,Sequence_T3_3489,Sequence_T3,Put down the blanket.,Took the clothes.,Took the cup/glass/bottle.,Threw the pillow.,Put down the blanket. 4186,3EIRZ_0.2_11.3,What happened after the person ate the sandwich?,3,Sequence_T3_3519,Sequence_T3,Closed the laptop.,Threw the blanket.,Put down the phone/camera.,Tidied up the clothes.,Tidied up the clothes. 4187,5XKVP_3.1_9,What happened after the person tidied up the table?,2,Sequence_T3_3542,Sequence_T3,Tidied up the clothes.,Opened the door.,Threw the blanket.,Put down the book.,Threw the blanket. 4188,H51V5_10.8_18,What happened after the person held the food?,0,Sequence_T3_3544,Sequence_T3,Took the dish.,Sat on the sofa/couch.,Threw the box.,Put down the dish.,Took the dish. 4189,F0ZPW_22.6_31.3,What happened after the person drank from the cup/glass/bottle?,3,Sequence_T3_3548,Sequence_T3,Took the towel.,Put down the dish.,Opened the book.,Took the dish.,Took the dish. 4190,6JGXL_0_20.9,What happened after the person sat at the table?,1,Sequence_T3_3560,Sequence_T3,Closed the laptop.,Ate the medicine.,Took the paper/notebook.,Took the clothes.,Ate the medicine. 4191,GMMVC_10.6_17.4,What happened after the person closed the book?,1,Sequence_T3_3563,Sequence_T3,Closed the laptop.,Put down the paper/notebook.,Opened the door.,Ate the sandwich.,Put down the paper/notebook. 4192,GMMVC_0_16.4,What happened after the person put down the blanket?,1,Sequence_T3_3564,Sequence_T3,Threw the clothes.,Closed the book.,Put down the cup/glass/bottle.,Opened the refrigerator.,Closed the book. 4193,3Z1YC_14.8_22.9,What happened after the person held the broom?,2,Sequence_T3_3568,Sequence_T3,Took the paper/notebook.,Took the pillow.,Took the bag.,Closed the refrigerator.,Took the bag. 4194,E0ZBC_0_38.1,What happened after the person sat on the sofa/couch?,2,Sequence_T3_3569,Sequence_T3,Closed the refrigerator.,Opened the door.,Took the book.,Opened the laptop.,Took the book. 4195,E0ZBC_0_38.1,What happened after the person sat at the table?,2,Sequence_T3_3570,Sequence_T3,Put down the sandwich.,Took the dish.,Took the book.,Opened the closet/cabinet.,Took the book. 4196,81YUE_10.6_30.6,What happened after the person lied on the bed?,1,Sequence_T3_3585,Sequence_T3,Took the laptop.,Put down the clothes.,Put down the food.,Sat on the sofa/couch.,Put down the clothes. 4197,D87LI_0_19.6,What happened after the person sat at the table?,3,Sequence_T3_3587,Sequence_T3,Threw the shoe.,Took the food.,Took the cup/glass/bottle.,Closed the laptop.,Closed the laptop. 4198,D87LI_0_19.6,What happened after the person sat on the sofa/couch?,1,Sequence_T3_3588,Sequence_T3,Took the book.,Closed the laptop.,Tidied up the table.,Took the phone/camera.,Closed the laptop. 4199,AK9IB_24.3_31.4,What happened after the person opened the box?,1,Sequence_T3_3590,Sequence_T3,Put down the dish.,Put down the shoe.,Sat on the sofa/couch.,Put down the food.,Put down the shoe. 4200,AK9IB_24.5_35,What happened after the person put down the shoe?,3,Sequence_T3_3591,Sequence_T3,Took the paper/notebook.,Took the broom.,Opened the laptop.,Closed the box.,Closed the box. 4201,VWAEL_7.6_30.5,What happened after the person held the phone/camera?,2,Sequence_T3_3593,Sequence_T3,Put down the clothes.,Opened the closet/cabinet.,Took the box.,Took the shoe.,Took the box. 4202,2RTH2_0_17,What happened after the person tidied up the table?,2,Sequence_T3_3653,Sequence_T3,Sat on the bed.,Put down the clothes.,Put down the towel.,Took the dish.,Put down the towel. 4203,VT64S_4.9_16.6,What happened after the person held the food?,3,Sequence_T3_3673,Sequence_T3,Ate the sandwich.,Took the laptop.,Put down the blanket.,Opened the bag.,Opened the bag. 4204,R9NRA_19.4_32,What happened after the person put down the cup/glass/bottle?,3,Sequence_T3_3679,Sequence_T3,Took the clothes.,Took the book.,Opened the door.,Lied on the sofa/couch.,Lied on the sofa/couch. 4205,R9NRA_0_16,What happened after the person sat on the sofa/couch?,1,Sequence_T3_3680,Sequence_T3,Tidied up the clothes.,Took the dish.,Took the clothes.,Threw the shoe.,Took the dish. 4206,EGVGL_0_23,What happened after the person held the pillow?,0,Sequence_T3_3695,Sequence_T3,Opened the bag.,Threw the food.,Took the sandwich.,Tidied up the blanket.,Opened the bag. 4207,EGVGL_0_23,What happened after the person lied on the sofa/couch?,1,Sequence_T3_3696,Sequence_T3,Put down the paper/notebook.,Opened the bag.,Opened the book.,Tidied up the table.,Opened the bag. 4208,8IPWO_1.8_14.4,What happened after the person drank from the cup/glass/bottle?,3,Sequence_T3_3701,Sequence_T3,Put down the laptop.,Put down the cup/glass/bottle.,Put down the phone/camera.,Opened the book.,Opened the book. 4209,2ZXJ5_5.7_12.7,What happened after the person put down the cup/glass/bottle?,1,Sequence_T3_3703,Sequence_T3,Put down the sandwich.,Sat on the sofa/couch.,Lied on the floor.,Tidied up the blanket.,Sat on the sofa/couch. 4210,9LHP3_5_12.3,What happened after the person held the shoe?,2,Sequence_T3_3768,Sequence_T3,Opened the closet/cabinet.,Threw the broom.,Sat on the sofa/couch.,Washed the clothes.,Sat on the sofa/couch. 4211,DHR83_0_5.4,What happened after the person held the sandwich?,2,Sequence_T3_3782,Sequence_T3,Put down the cup/glass/bottle.,Put down the food.,Put down the paper/notebook.,Washed the clothes.,Put down the paper/notebook. 4212,DHR83_0_5.4,What happened after the person ate the sandwich?,0,Sequence_T3_3783,Sequence_T3,Put down the paper/notebook.,Opened the closet/cabinet.,Lied on the bed.,Opened the book.,Put down the paper/notebook. 4213,DHR83_0_5.4,What happened after the person held the food?,1,Sequence_T3_3784,Sequence_T3,Tidied up the clothes.,Put down the paper/notebook.,Closed the laptop.,Closed the refrigerator.,Put down the paper/notebook. 4214,XPDI1_0_10,What happened after the person drank from the cup/glass/bottle?,0,Sequence_T3_3827,Sequence_T3,Put down the dish.,Put down the paper/notebook.,Put down the bag.,Opened the book.,Put down the dish. 4215,RAQNI_0_16.2,What happened after the person held the clothes?,3,Sequence_T3_3840,Sequence_T3,Closed the door.,Sat on the bed.,Washed the table.,Tidied up the blanket.,Tidied up the blanket. 4216,9B93K_1.8_10.4,What happened after the person held the food?,0,Sequence_T3_3890,Sequence_T3,Took the sandwich.,Took the phone/camera.,Ate the medicine.,Sat on the sofa/couch.,Took the sandwich. 4217,VGAMG_4_15.6,What happened after the person took the cup/glass/bottle?,1,Sequence_T3_3915,Sequence_T3,Sat on the sofa/couch.,Put down the dish.,Sat at the table.,Put down the towel.,Put down the dish. 4218,4P13T_4.4_17,What happened after the person opened the bag?,0,Sequence_T3_3922,Sequence_T3,Put down the book.,Opened the book.,Took the book.,Put down the blanket.,Put down the book. 4219,4P13T_0_17,What happened after the person took the bag?,1,Sequence_T3_3923,Sequence_T3,Closed the door.,Put down the book.,Lied on the sofa/couch.,Took the bag.,Put down the book. 4220,U0X4P_0_30.8,What happened after the person watched outside the window?,2,Sequence_T3_3936,Sequence_T3,Opened the book.,Put down the food.,Threw the clothes.,Took the shoe.,Threw the clothes. 4221,G87XG_8.7_22.5,What happened after the person sat at the table?,2,Sequence_T3_3959,Sequence_T3,Washed the dish.,Threw the broom.,Put down the book.,Took the paper/notebook.,Put down the book. 4222,EBTD6_2.5_18.6,What happened after the person opened the door?,1,Sequence_T3_3974,Sequence_T3,Took the shoe.,Took the sandwich.,Took the paper/notebook.,Opened the closet/cabinet.,Took the sandwich. 4223,EBTD6_14.2_25.8,What happened after the person took the food?,3,Sequence_T3_3976,Sequence_T3,Closed the laptop.,Opened the bag.,Put down the book.,Put down the sandwich.,Put down the sandwich. 4224,AS7SG_18.8_31,What happened after the person ate the sandwich?,3,Sequence_T3_4003,Sequence_T3,Sat at the table.,Threw the blanket.,Put down the broom.,Opened the laptop.,Opened the laptop. 4225,AS7SG_3.6_23.9,What happened after the person ate the sandwich?,2,Sequence_T3_4004,Sequence_T3,Opened the window.,Took the cup/glass/bottle.,Put down the laptop.,Tidied up the clothes.,Put down the laptop. 4226,AS7SG_0_23.9,What happened after the person held the sandwich?,0,Sequence_T3_4005,Sequence_T3,Put down the laptop.,Put down the box.,Put down the book.,Put down the paper/notebook.,Put down the laptop. 4227,AS7SG_0_23.9,What happened after the person held the food?,2,Sequence_T3_4006,Sequence_T3,Lied on the bed.,Opened the window.,Put down the laptop.,Threw the bag.,Put down the laptop. 4228,4G00A_18.9_31.1,What happened after the person put down the cup/glass/bottle?,3,Sequence_T3_4022,Sequence_T3,Opened the door.,Washed the clothes.,Put down the broom.,Took the broom.,Took the broom. 4229,RCD08_6.7_30.2,What happened after the person took the blanket?,2,Sequence_T3_4043,Sequence_T3,Put down the box.,Closed the door.,Threw the towel.,Opened the window.,Threw the towel. 4230,RCD08_7.2_30.2,What happened after the person held the clothes?,3,Sequence_T3_4044,Sequence_T3,Took the towel.,Opened the bag.,Washed the dish.,Threw the towel.,Threw the towel. 4231,B57IW_4.2_17.1,What happened after the person opened the door?,0,Sequence_T3_4045,Sequence_T3,Took the phone/camera.,Closed the closet/cabinet.,Threw the broom.,Put down the picture.,Took the phone/camera. 4232,8W31Y_0_7.2,What happened after the person lied on the bed?,1,Sequence_T3_4056,Sequence_T3,Tidied up the clothes.,Took the food.,Opened the book.,Put down the laptop.,Took the food. 4233,MVPQF_0.1_10.7,What happened after the person opened the closet/cabinet?,3,Sequence_T3_4073,Sequence_T3,Put down the box.,Threw the bag.,Opened the refrigerator.,Put down the bag.,Put down the bag. 4234,G4NOT_0_28.3,What happened after the person held the phone/camera?,3,Sequence_T3_4104,Sequence_T3,Closed the closet/cabinet.,Closed the laptop.,Took the cup/glass/bottle.,Closed the door.,Closed the door. 4235,9K2TY_19.2_32,What happened after the person put down the blanket?,1,Sequence_T3_4138,Sequence_T3,Washed the mirror.,Threw the towel.,Sat on the floor.,Put down the bag.,Threw the towel. 4236,BDWIX_11.3_22.2,What happened after the person held the clothes?,0,Sequence_T3_4149,Sequence_T3,Put down the blanket.,Opened the closet/cabinet.,Put down the laptop.,Closed the refrigerator.,Put down the blanket. 4237,BDWIX_9.8_22.2,What happened after the person washed the clothes?,3,Sequence_T3_4150,Sequence_T3,Took the pillow.,Lied on the sofa/couch.,Threw the pillow.,Put down the blanket.,Put down the blanket. 4238,BDWIX_8.6_22.2,What happened after the person took the towel?,1,Sequence_T3_4151,Sequence_T3,Took the phone/camera.,Put down the blanket.,Put down the cup/glass/bottle.,Took the cup/glass/bottle.,Put down the blanket. 4239,BDWIX_15.8_23.8,What happened after the person put down the blanket?,3,Sequence_T3_4152,Sequence_T3,Washed the clothes.,Put down the cup/glass/bottle.,Closed the box.,Tidied up the clothes.,Tidied up the clothes. 4240,SPUPH_6.1_11.4,What happened after the person held the food?,3,Sequence_T3_4159,Sequence_T3,Opened the bag.,Took the dish.,Took the book.,Took the sandwich.,Took the sandwich. 4241,92UB5_0_32,What happened after the person sat at the table?,0,Sequence_T3_4199,Sequence_T3,Put down the pillow.,Threw the towel.,Opened the book.,Took the broom.,Put down the pillow. 4242,92UB5_0_32,What happened after the person watched at the book?,2,Sequence_T3_4200,Sequence_T3,Ate the medicine.,Closed the closet/cabinet.,Put down the pillow.,Tidied up the closet/cabinet.,Put down the pillow. 4243,K47J5_0_28.8,What happened after the person held the phone/camera?,1,Sequence_T3_4203,Sequence_T3,Put down the shoe.,Put down the dish.,Opened the door.,Opened the window.,Put down the dish. 4244,K47J5_14.2_28.8,What happened after the person ate the medicine?,0,Sequence_T3_4204,Sequence_T3,Put down the dish.,Washed the dish.,Took the cup/glass/bottle.,Threw the clothes.,Put down the dish. 4245,K47J5_13.1_28.8,What happened after the person held the medicine?,1,Sequence_T3_4205,Sequence_T3,Opened the refrigerator.,Put down the dish.,Threw the broom.,Opened the box.,Put down the dish. 4246,2RRSO_0_10.6,What happened after the person held the sandwich?,2,Sequence_T3_4221,Sequence_T3,Took the cup/glass/bottle.,Put down the clothes.,Washed the clothes.,Opened the bag.,Washed the clothes. 4247,KO80I_0_23.1,What happened after the person held the phone/camera?,2,Sequence_T3_4222,Sequence_T3,Sat on the sofa/couch.,Ate the sandwich.,Put down the pillow.,Took the food.,Put down the pillow. 4248,KO80I_0_23.1,What happened after the person sat on the floor?,1,Sequence_T3_4223,Sequence_T3,Opened the door.,Put down the pillow.,Put down the food.,Threw the clothes.,Put down the pillow. 4249,52MV9_7.9_21.4,What happened after the person held the sandwich?,0,Sequence_T3_4226,Sequence_T3,Put down the dish.,Put down the food.,Put down the towel.,Closed the refrigerator.,Put down the dish. 4250,52MV9_6.8_21.4,What happened after the person took the sandwich?,1,Sequence_T3_4228,Sequence_T3,Put down the food.,Put down the dish.,Opened the box.,Took the pillow.,Put down the dish. 4251,52MV9_5.1_21.4,What happened after the person opened the door?,2,Sequence_T3_4229,Sequence_T3,Took the book.,Put down the picture.,Put down the dish.,Put down the box.,Put down the dish. 4252,RZY2I_4_10,What happened after the person took the bag?,0,Sequence_T3_4231,Sequence_T3,Opened the window.,Opened the box.,Threw the shoe.,Put down the laptop.,Opened the window. 4253,NLWBW_0_8.5,What happened after the person closed the door?,0,Sequence_T3_4261,Sequence_T3,Put down the bag.,Opened the book.,Lied on the floor.,Put down the clothes.,Put down the bag. 4254,D7KU2_0_14.1,What happened after the person sat on the floor?,0,Sequence_T3_4262,Sequence_T3,Put down the broom.,Put down the phone/camera.,Put down the paper/notebook.,Washed the mirror.,Put down the broom. 4255,5FDHU_0_6.1,What happened after the person took the food?,1,Sequence_T3_4284,Sequence_T3,Washed the table.,Ate the sandwich.,Opened the book.,Closed the refrigerator.,Ate the sandwich. 4256,OA6XR_0_22.5,What happened after the person held the book?,1,Sequence_T3_4285,Sequence_T3,Threw the box.,Put down the blanket.,Put down the sandwich.,Put down the dish.,Put down the blanket. 4257,3064K_0_8.1,What happened after the person sat on the sofa/couch?,0,Sequence_T3_4287,Sequence_T3,Tidied up the blanket.,Put down the cup/glass/bottle.,Threw the clothes.,Took the pillow.,Tidied up the blanket. 4258,8J723_0_35.5,What happened after the person held the broom?,2,Sequence_T3_4295,Sequence_T3,Closed the refrigerator.,Closed the closet/cabinet.,Opened the window.,Took the paper/notebook.,Opened the window. 4259,3MLVF_15.5_21.2,What happened after the person took the cup/glass/bottle?,0,Sequence_T3_4298,Sequence_T3,Closed the refrigerator.,Took the broom.,Washed the cup/glass/bottle.,Put down the dish.,Closed the refrigerator. 4260,HOZ76_0_25,What happened after the person sat at the table?,1,Sequence_T3_4317,Sequence_T3,Took the broom.,Took the book.,Put down the broom.,Took the bag.,Took the book. 4261,EK19H_4.2_17.6,What happened after the person held the food?,2,Sequence_T3_4324,Sequence_T3,Opened the book.,Put down the towel.,Put down the sandwich.,Ate the sandwich.,Put down the sandwich. 4262,FRLW2_8.6_32,What happened after the person put down the bag?,3,Sequence_T3_4332,Sequence_T3,Washed the cup/glass/bottle.,Threw the towel.,Opened the window.,Threw the shoe.,Threw the shoe. 4263,86GSE_9.6_20,What happened after the person took the shoe?,1,Sequence_T3_4418,Sequence_T3,Closed the window.,Sat on the sofa/couch.,Closed the closet/cabinet.,Opened the closet/cabinet.,Sat on the sofa/couch. 4264,9J166_0_17.5,What happened after the person held the book?,0,Sequence_T3_4425,Sequence_T3,Opened the window.,Put down the paper/notebook.,Put down the pillow.,Threw the pillow.,Opened the window. 4265,9J166_0_17.5,What happened after the person watched at the book?,0,Sequence_T3_4426,Sequence_T3,Opened the window.,Put down the food.,Took the shoe.,Tidied up the closet/cabinet.,Opened the window. 4266,V9XR6_0_20,What happened after the person sat at the table?,0,Sequence_T3_4430,Sequence_T3,Lied on the bed.,Put down the dish.,Put down the paper/notebook.,Took the paper/notebook.,Lied on the bed. 4267,Y5ZU3_0_22.1,What happened after the person sat on the floor?,0,Sequence_T3_4456,Sequence_T3,Took the broom.,Closed the door.,Put down the box.,Threw the shoe.,Took the broom. 4268,Y5ZU3_0_22.1,What happened after the person put down the paper/notebook?,0,Sequence_T3_4457,Sequence_T3,Took the broom.,Threw the food.,Took the sandwich.,Sat on the sofa/couch.,Took the broom. 4269,EXPOA_12.3_27.3,What happened after the person sat at the table?,3,Sequence_T3_4465,Sequence_T3,Washed the dish.,Took the broom.,Put down the cup/glass/bottle.,Put down the clothes.,Put down the clothes. 4270,EXPOA_0.3_27.3,What happened after the person drank from the cup/glass/bottle?,1,Sequence_T3_4466,Sequence_T3,Put down the book.,Put down the clothes.,Took the clothes.,Opened the door.,Put down the clothes. 4271,0F453_0.3_20,What happened after the person opened the refrigerator?,2,Sequence_T3_4473,Sequence_T3,Closed the window.,Put down the cup/glass/bottle.,Took the paper/notebook.,Sat at the table.,Took the paper/notebook. 4272,TAGS2_0_21.2,What happened after the person held the phone/camera?,3,Sequence_T3_4474,Sequence_T3,Sat on the bed.,Took the cup/glass/bottle.,Took the broom.,Opened the door.,Opened the door. 4273,M506V_0_17.8,What happened after the person held the laptop?,0,Sequence_T3_4518,Sequence_T3,Threw the towel.,Opened the refrigerator.,Tidied up the closet/cabinet.,Ate the medicine.,Threw the towel. 4274,M506V_6.4_17.8,What happened after the person washed the table?,3,Sequence_T3_4519,Sequence_T3,Put down the food.,Washed the dish.,Took the towel.,Threw the towel.,Threw the towel. 4275,YLE12_0_9.6,What happened after the person tidied up the table?,3,Sequence_T3_4526,Sequence_T3,Put down the cup/glass/bottle.,Closed the closet/cabinet.,Put down the broom.,Took the paper/notebook.,Took the paper/notebook. 4276,I4N6K_14.9_24.3,What happened after the person tidied up the table?,1,Sequence_T3_4531,Sequence_T3,Took the shoe.,Took the book.,Threw the food.,Put down the dish.,Took the book. 4277,M2XIS_0_7.4,What happened after the person put down the laptop?,2,Sequence_T3_4532,Sequence_T3,Took the laptop.,Closed the door.,Sat on the sofa/couch.,Closed the refrigerator.,Sat on the sofa/couch. 4278,M2XIS_2.7_9.4,What happened after the person sat on the sofa/couch?,2,Sequence_T3_4533,Sequence_T3,Tidied up the closet/cabinet.,Took the cup/glass/bottle.,Opened the laptop.,Washed the table.,Opened the laptop. 4279,9A58F_2.9_10.9,What happened after the person threw the shoe?,2,Sequence_T3_4534,Sequence_T3,Sat on the bed.,Ate the sandwich.,Took the laptop.,Took the blanket.,Took the laptop. 4280,024PD_0_10.6,What happened after the person held the phone/camera?,2,Sequence_T3_4560,Sequence_T3,Washed the cup/glass/bottle.,Took the pillow.,Put down the book.,Opened the window.,Put down the book. 4281,VTIUW_0_15.8,What happened after the person sat at the table?,3,Sequence_T3_4578,Sequence_T3,Closed the book.,Threw the box.,Opened the laptop.,Took the phone/camera.,Took the phone/camera. 4282,P2UBC_10.8_21.8,What happened after the person opened the door?,1,Sequence_T3_4583,Sequence_T3,Tidied up the clothes.,Took the shoe.,Put down the bag.,Put down the box.,Took the shoe. 4283,P2UBC_6_21.8,What happened after the person sat on the sofa/couch?,1,Sequence_T3_4584,Sequence_T3,Opened the closet/cabinet.,Took the shoe.,Threw the blanket.,Closed the laptop.,Took the shoe. 4284,CII5H_2.1_14.7,What happened after the person opened the door?,0,Sequence_T3_4612,Sequence_T3,Tidied up the clothes.,Took the shoe.,Took the paper/notebook.,Ate the medicine.,Tidied up the clothes. 4285,75RPN_3.8_16.8,What happened after the person held the blanket?,2,Sequence_T3_4621,Sequence_T3,Closed the window.,Closed the closet/cabinet.,Took the pillow.,Sat on the sofa/couch.,Took the pillow. 4286,IXISD_0_15.6,What happened after the person sat on the sofa/couch?,0,Sequence_T3_4652,Sequence_T3,Put down the shoe.,Put down the blanket.,Closed the box.,Put down the broom.,Put down the shoe. 4287,OB1XO_0_7.2,What happened after the person sat on the bed?,0,Sequence_T3_4659,Sequence_T3,Took the clothes.,Threw the broom.,Threw the clothes.,Took the laptop.,Took the clothes. 4288,4U52R_1.4_15,What happened after the person tidied up the clothes?,1,Sequence_T3_4670,Sequence_T3,Washed the dish.,Put down the box.,Took the pillow.,Put down the picture.,Put down the box. 4289,M1GW9_3.8_23.5,What happened after the person opened the door?,3,Sequence_T3_4702,Sequence_T3,Put down the box.,Put down the dish.,Put down the picture.,Threw the pillow.,Threw the pillow. 4290,EO6OI_3.9_10.6,What happened after the person tidied up the towel?,2,Sequence_T3_4724,Sequence_T3,Threw the box.,Put down the clothes.,Put down the blanket.,Threw the book.,Put down the blanket. 4291,EO6OI_4.1_12.2,What happened after the person put down the blanket?,3,Sequence_T3_4725,Sequence_T3,Took the clothes.,Sat on the table.,Tidied up the blanket.,Threw the clothes.,Threw the clothes. 4292,EO6OI_13.6_27.6,What happened after the person took the towel?,0,Sequence_T3_4727,Sequence_T3,Washed the table.,Put down the bag.,Threw the clothes.,Tidied up the clothes.,Washed the table. 4293,EO6OI_18.6_28.7,What happened after the person washed the table?,3,Sequence_T3_4728,Sequence_T3,Threw the clothes.,Washed the cup/glass/bottle.,Took the phone/camera.,Put down the towel.,Put down the towel. 4294,EO6OI_23.8_38.9,What happened after the person put down the clothes?,0,Sequence_T3_4729,Sequence_T3,Took the broom.,Sat on the floor.,Took the towel.,Threw the blanket.,Took the broom. 4295,L7HA6_15_32.9,What happened after the person drank from the cup/glass/bottle?,1,Sequence_T3_4730,Sequence_T3,Put down the picture.,Put down the phone/camera.,Ate the medicine.,Took the box.,Put down the phone/camera. 4296,8G9A9_14.3_22.7,What happened after the person put down the cup/glass/bottle?,3,Sequence_T3_4756,Sequence_T3,Opened the window.,Threw the pillow.,Sat at the table.,Opened the laptop.,Opened the laptop. 4297,8G9A9_3.4_11.9,What happened after the person held the laptop?,0,Sequence_T3_4757,Sequence_T3,Put down the phone/camera.,Lied on the bed.,Sat on the floor.,Ate the medicine.,Put down the phone/camera. 4298,8G9A9_1.9_11.9,What happened after the person took the laptop?,1,Sequence_T3_4760,Sequence_T3,Put down the bag.,Put down the phone/camera.,Put down the food.,Put down the paper/notebook.,Put down the phone/camera. 4299,A0ZW3_0_26.2,What happened after the person lied on the floor?,3,Sequence_T3_4781,Sequence_T3,Tidied up the table.,Took the phone/camera.,Sat at the table.,Opened the laptop.,Opened the laptop. 4300,A0ZW3_17.3_26.2,What happened after the person sat on the floor?,3,Sequence_T3_4782,Sequence_T3,Put down the towel.,Took the broom.,Put down the shoe.,Opened the laptop.,Opened the laptop. 4301,L8Y8D_43.7_56,What happened after the person drank from the cup/glass/bottle?,3,Sequence_T3_4794,Sequence_T3,Put down the food.,Closed the laptop.,Washed the dish.,Closed the refrigerator.,Closed the refrigerator. 4302,6VF2L_14.3_30.9,What happened after the person drank from the cup/glass/bottle?,3,Sequence_T3_4798,Sequence_T3,Put down the book.,Took the food.,Took the clothes.,Took the blanket.,Took the blanket. 4303,F6A4W_2.4_15.8,What happened after the person drank from the cup/glass/bottle?,3,Sequence_T3_4842,Sequence_T3,Washed the table.,Ate the sandwich.,Put down the cup/glass/bottle.,Threw the shoe.,Threw the shoe. 4304,F6A4W_4.3_15.8,What happened after the person drank from the cup/glass/bottle?,0,Sequence_T3_4843,Sequence_T3,Threw the shoe.,Took the broom.,Put down the shoe.,Sat on the bed.,Threw the shoe. 4305,F6A4W_8_28,What happened after the person took the shoe?,0,Sequence_T3_4844,Sequence_T3,Put down the dish.,Opened the closet/cabinet.,Took the phone/camera.,Threw the shoe.,Put down the dish. 4306,F6A4W_0_15.8,What happened after the person held the dish?,1,Sequence_T3_4845,Sequence_T3,Put down the dish.,Threw the shoe.,Put down the laptop.,Put down the book.,Threw the shoe. 4307,WBATR_26.1_34,What happened after the person put down the food?,3,Sequence_T3_4855,Sequence_T3,Threw the broom.,Opened the door.,Closed the laptop.,Took the clothes.,Took the clothes. 4308,KFC28_0.7_35,What happened after the person took the shoe?,3,Sequence_T3_4864,Sequence_T3,Took the food.,Threw the box.,Opened the door.,Closed the closet/cabinet.,Closed the closet/cabinet. 4309,KFC28_0.4_35,What happened after the person sat at the table?,1,Sequence_T3_4865,Sequence_T3,Opened the book.,Closed the closet/cabinet.,Closed the window.,Put down the towel.,Closed the closet/cabinet. 4310,YVH4J_33_45.9,What happened after the person opened the bag?,2,Sequence_T3_4867,Sequence_T3,Put down the pillow.,Took the laptop.,Took the paper/notebook.,Took the phone/camera.,Took the paper/notebook. 4311,8DL54_17.1_27.8,What happened after the person put down the dish?,2,Sequence_T3_4872,Sequence_T3,Threw the broom.,Washed the cup/glass/bottle.,Closed the refrigerator.,Took the shoe.,Closed the refrigerator. 4312,PHH6B_14.8_25.3,What happened after the person took the cup/glass/bottle?,0,Sequence_T3_4875,Sequence_T3,Put down the sandwich.,Put down the paper/notebook.,Opened the refrigerator.,Opened the door.,Put down the sandwich. 4313,CSLEP_0_13.2,What happened after the person lied on the bed?,2,Sequence_T3_4881,Sequence_T3,Put down the paper/notebook.,Took the cup/glass/bottle.,Took the clothes.,Took the broom.,Took the clothes. 4314,8VWV2_6.9_58.3,What happened after the person took the food?,3,Sequence_T3_4897,Sequence_T3,Threw the food.,Closed the refrigerator.,Opened the refrigerator.,Put down the dish.,Put down the dish. 4315,BLIFO_1_10.8,What happened after the person opened the closet/cabinet?,0,Sequence_T3_4902,Sequence_T3,Tidied up the towel.,Closed the refrigerator.,Took the clothes.,Lied on the floor.,Tidied up the towel. 4316,J84TZ_0_21,What happened after the person lied on the sofa/couch?,2,Sequence_T3_4907,Sequence_T3,Opened the door.,Threw the blanket.,Took the blanket.,Tidied up the closet/cabinet.,Took the blanket. 4317,RKGG5_7_21,What happened after the person took the pillow?,3,Sequence_T3_4936,Sequence_T3,Opened the refrigerator.,Took the shoe.,Took the broom.,Lied on the sofa/couch.,Lied on the sofa/couch. 4318,RKGG5_0_10.7,What happened after the person sat on the sofa/couch?,2,Sequence_T3_4937,Sequence_T3,Took the phone/camera.,Tidied up the clothes.,Threw the broom.,Washed the clothes.,Threw the broom. 4319,AXS82_13.7_31,What happened after the person closed the book?,0,Sequence_T3_4989,Sequence_T3,Opened the refrigerator.,Threw the clothes.,Tidied up the closet/cabinet.,Threw the shoe.,Opened the refrigerator. 4320,AXS82_18.1_31,What happened after the person held the sandwich?,0,Sequence_T3_4990,Sequence_T3,Opened the refrigerator.,Put down the bag.,Put down the clothes.,Closed the window.,Opened the refrigerator. 4321,NE37I_0_22.2,What happened after the person put down the food?,3,Sequence_T3_4999,Sequence_T3,Took the box.,Closed the box.,Took the phone/camera.,Took the pillow.,Took the pillow. 4322,NE37I_0_22.2,What happened after the person held the dish?,0,Sequence_T3_5000,Sequence_T3,Took the pillow.,Took the blanket.,Ate the sandwich.,Sat on the table.,Took the pillow. 4323,IWK2Y_0.4_11,What happened after the person watched at the picture?,1,Sequence_T3_5011,Sequence_T3,Sat on the floor.,Took the pillow.,Took the clothes.,Opened the closet/cabinet.,Took the pillow. 4324,6KIA4_0_24,What happened after the person took the dish?,3,Sequence_T3_5018,Sequence_T3,Opened the door.,Sat on the bed.,Closed the closet/cabinet.,Washed the table.,Washed the table. 4325,J4RPL_16.5_26.8,What happened after the person put down the paper/notebook?,2,Sequence_T3_5021,Sequence_T3,Opened the bag.,Took the clothes.,Took the towel.,Lied on the bed.,Took the towel. 4326,JOYAJ_6.7_19.4,What happened after the person opened the door?,0,Sequence_T3_5062,Sequence_T3,Closed the refrigerator.,Opened the door.,Put down the pillow.,Took the broom.,Closed the refrigerator. 4327,JOYAJ_9.1_19.4,What happened after the person held the food?,0,Sequence_T3_5063,Sequence_T3,Closed the refrigerator.,Took the cup/glass/bottle.,Put down the blanket.,Ate the medicine.,Closed the refrigerator. 4328,55AH5_0_21.8,What happened after the person opened the door?,3,Sequence_T3_5072,Sequence_T3,Took the shoe.,Tidied up the towel.,Ate the sandwich.,Lied on the sofa/couch.,Lied on the sofa/couch. 4329,55AH5_5.5_21.8,What happened after the person held the food?,1,Sequence_T3_5073,Sequence_T3,Opened the refrigerator.,Lied on the sofa/couch.,Closed the closet/cabinet.,Threw the pillow.,Lied on the sofa/couch. 4330,M5UQR_0_19.7,What happened after the person held the mirror?,3,Sequence_T3_5074,Sequence_T3,Ate the medicine.,Put down the paper/notebook.,Took the cup/glass/bottle.,Put down the phone/camera.,Put down the phone/camera. 4331,937EW_13.9_33,What happened after the person watched at the picture?,1,Sequence_T3_5077,Sequence_T3,Put down the bag.,Tidied up the closet/cabinet.,Put down the phone/camera.,Took the food.,Tidied up the closet/cabinet. 4332,937EW_7.8_33,What happened after the person held the clothes?,2,Sequence_T3_5078,Sequence_T3,Threw the box.,Put down the dish.,Tidied up the closet/cabinet.,Took the box.,Tidied up the closet/cabinet. 4333,937EW_6.7_33,What happened after the person took the clothes?,1,Sequence_T3_5079,Sequence_T3,Took the book.,Tidied up the closet/cabinet.,Put down the box.,Threw the book.,Tidied up the closet/cabinet. 4334,I562C_13.8_19.9,What happened after the person sat at the table?,0,Sequence_T3_5084,Sequence_T3,Took the dish.,Sat on the bed.,Opened the book.,Tidied up the blanket.,Took the dish. 4335,I562C_8.6_19.9,What happened after the person closed the door?,2,Sequence_T3_5085,Sequence_T3,Closed the box.,Put down the book.,Took the dish.,Took the picture.,Took the dish. 4336,GPR89_0_56.9,What happened after the person tidied up the table?,0,Sequence_T3_5093,Sequence_T3,Put down the paper/notebook.,Took the shoe.,Opened the laptop.,Opened the bag.,Put down the paper/notebook. 4337,GPR89_42.6_56.9,What happened after the person took the book?,3,Sequence_T3_5094,Sequence_T3,Put down the blanket.,Took the broom.,Put down the bag.,Put down the paper/notebook.,Put down the paper/notebook. 4338,9OMY1_0_6.3,What happened after the person sat at the table?,0,Sequence_T3_5118,Sequence_T3,Opened the box.,Put down the box.,Threw the clothes.,Took the dish.,Opened the box. 4339,9OMY1_1.2_28,What happened after the person opened the box?,0,Sequence_T3_5119,Sequence_T3,Sat on the sofa/couch.,Took the clothes.,Put down the sandwich.,Took the picture.,Sat on the sofa/couch. 4340,JLGLU_0_22.9,What happened after the person opened the door?,1,Sequence_T3_5120,Sequence_T3,Took the cup/glass/bottle.,Took the towel.,Closed the book.,Opened the refrigerator.,Took the towel. 4341,F24GU_1.1_18.7,What happened after the person watched outside the window?,3,Sequence_T3_5122,Sequence_T3,Took the broom.,Took the book.,Threw the broom.,Lied on the floor.,Lied on the floor. 4342,IZ2XX_2.9_14.2,What happened after the person closed the door?,3,Sequence_T3_5124,Sequence_T3,Took the food.,Put down the phone/camera.,Threw the book.,Put down the book.,Put down the book. 4343,KONWE_10_22.5,What happened after the person sat on the bed?,3,Sequence_T3_5127,Sequence_T3,Put down the phone/camera.,Took the food.,Opened the refrigerator.,Threw the pillow.,Threw the pillow. 4344,1HGEX_0_21.1,What happened after the person sat at the table?,0,Sequence_T3_5144,Sequence_T3,Took the book.,Threw the towel.,Washed the clothes.,Took the phone/camera.,Took the book. 4345,2GQDN_3.3_9,What happened after the person took the food?,0,Sequence_T3_5163,Sequence_T3,Opened the box.,Closed the closet/cabinet.,Tidied up the table.,Put down the sandwich.,Opened the box. 4346,QPX3S_0_11.4,What happened after the person watched outside the window?,3,Sequence_T3_5178,Sequence_T3,Took the broom.,Tidied up the blanket.,Ate the sandwich.,Put down the food.,Put down the food. 4347,RBC8N_2.5_25.2,What happened after the person put down the food?,3,Sequence_T3_5181,Sequence_T3,Closed the refrigerator.,Took the broom.,Threw the broom.,Took the pillow.,Took the pillow. 4348,KFGXC_0_17.7,What happened after the person held the dish?,2,Sequence_T3_5193,Sequence_T3,Sat on the bed.,Ate the sandwich.,Put down the food.,Took the food.,Put down the food. 4349,M1TZR_1.4_30.2,What happened after the person held the dish?,2,Sequence_T3_5241,Sequence_T3,Opened the book.,Opened the laptop.,Put down the sandwich.,Took the sandwich.,Put down the sandwich. 4350,M1TZR_2.7_30.2,What happened after the person held the dish?,1,Sequence_T3_5242,Sequence_T3,Sat on the floor.,Put down the sandwich.,Lied on the bed.,Put down the food.,Put down the sandwich. 4351,UDAQU_0_20.4,What happened after the person sat on the floor?,1,Sequence_T3_5265,Sequence_T3,Lied on the floor.,Put down the sandwich.,Took the towel.,Put down the box.,Put down the sandwich. 4352,UDAQU_0_20.4,What happened after the person held the food?,3,Sequence_T3_5266,Sequence_T3,Tidied up the towel.,Ate the sandwich.,Closed the window.,Put down the sandwich.,Put down the sandwich. 4353,9M5UE_0_16.9,What happened after the person held the phone/camera?,3,Sequence_T3_5278,Sequence_T3,Sat on the bed.,Opened the closet/cabinet.,Washed the dish.,Took the dish.,Took the dish. 4354,9M5UE_11.1_16.9,What happened after the person drank from the cup/glass/bottle?,3,Sequence_T3_5279,Sequence_T3,Put down the dish.,Opened the door.,Took the picture.,Took the dish.,Took the dish. 4355,9M5UE_0_16.9,What happened after the person sat at the table?,1,Sequence_T3_5280,Sequence_T3,Put down the food.,Took the dish.,Took the bag.,Put down the blanket.,Took the dish. 4356,7ZCXJ_5.5_29,What happened after the person sat on the floor?,1,Sequence_T3_5315,Sequence_T3,Took the bag.,Threw the blanket.,Sat on the bed.,Ate the sandwich.,Threw the blanket. 4357,Y7WEK_0_29.2,What happened after the person sat on the sofa/couch?,1,Sequence_T3_5336,Sequence_T3,Put down the bag.,Closed the book.,Took the cup/glass/bottle.,Opened the laptop.,Closed the book. 4358,WH1S5_7.5_28.8,What happened after the person held the food?,2,Sequence_T3_5342,Sequence_T3,Ate the sandwich.,Put down the pillow.,Put down the sandwich.,Tidied up the towel.,Put down the sandwich. 4359,GC1Q1_0_11.5,What happened after the person opened the door?,3,Sequence_T3_5385,Sequence_T3,Threw the shoe.,Put down the picture.,Took the pillow.,Put down the clothes.,Put down the clothes. 4360,0OE6M_3.4_11.9,What happened after the person threw the clothes?,2,Sequence_T3_5393,Sequence_T3,Took the blanket.,Put down the pillow.,Took the towel.,Threw the food.,Took the towel. 4361,8BBX0_12.3_25.1,What happened after the person opened the door?,3,Sequence_T3_5432,Sequence_T3,Sat on the floor.,Took the dish.,Closed the refrigerator.,Took the bag.,Took the bag. 4362,ZA7ST_0_34.3,What happened after the person held the medicine?,0,Sequence_T3_5460,Sequence_T3,Opened the bag.,Took the dish.,Tidied up the closet/cabinet.,Sat on the sofa/couch.,Opened the bag. 4363,ZA7ST_28.2_35,What happened after the person took the bag?,1,Sequence_T3_5461,Sequence_T3,Put down the food.,Opened the box.,Washed the table.,Put down the towel.,Opened the box. 4364,DGMDT_14.2_26.8,What happened after the person held the sandwich?,0,Sequence_T3_5468,Sequence_T3,Put down the bag.,Opened the closet/cabinet.,Tidied up the table.,Took the box.,Put down the bag. 4365,DGMDT_7.6_26.8,What happened after the person held the food?,3,Sequence_T3_5470,Sequence_T3,Threw the towel.,Closed the door.,Opened the closet/cabinet.,Put down the bag.,Put down the bag. 4366,5O31N_2.1_42,What happened after the person closed the door?,0,Sequence_T3_5471,Sequence_T3,Put down the clothes.,Opened the bag.,Sat on the sofa/couch.,Tidied up the blanket.,Put down the clothes. 4367,X4DOF_3.5_17,What happened after the person watched outside the window?,3,Sequence_T3_5494,Sequence_T3,Sat on the sofa/couch.,Opened the door.,Put down the cup/glass/bottle.,Put down the pillow.,Put down the pillow. 4368,O7OD2_4.4_16.1,What happened after the person held the medicine?,1,Sequence_T3_5503,Sequence_T3,Opened the refrigerator.,Ate the sandwich.,Opened the box.,Sat on the sofa/couch.,Ate the sandwich. 4369,O7OD2_0.5_16.1,What happened after the person held the food?,1,Sequence_T3_5504,Sequence_T3,Tidied up the clothes.,Ate the sandwich.,Tidied up the table.,Threw the box.,Ate the sandwich. 4370,YH70K_0_26.8,What happened after the person tidied up the table?,3,Sequence_T3_5505,Sequence_T3,Opened the book.,Tidied up the clothes.,Put down the laptop.,Put down the dish.,Put down the dish. 4371,B69CF_0_20.6,What happened after the person lied on the floor?,0,Sequence_T3_5528,Sequence_T3,Closed the window.,Sat at the table.,Took the pillow.,Put down the broom.,Closed the window. 4372,5GPOJ_0_13.5,What happened after the person sat on the sofa/couch?,1,Sequence_T3_5540,Sequence_T3,Took the laptop.,Closed the book.,Put down the phone/camera.,Put down the towel.,Closed the book. 4373,5GPOJ_8.5_14.4,What happened after the person closed the book?,1,Sequence_T3_5541,Sequence_T3,Put down the book.,Put down the paper/notebook.,Took the phone/camera.,Threw the blanket.,Put down the paper/notebook. 4374,MY5CQ_0_17.4,What happened after the person sat at the table?,2,Sequence_T3_5555,Sequence_T3,Ate the sandwich.,Put down the clothes.,Closed the laptop.,Opened the book.,Closed the laptop. 4375,MY5CQ_11.5_19.6,What happened after the person closed the laptop?,0,Sequence_T3_5556,Sequence_T3,Opened the book.,Tidied up the blanket.,Sat on the sofa/couch.,Opened the window.,Opened the book. 4376,MYZLT_0.6_38.7,What happened after the person held the phone/camera?,2,Sequence_T3_5576,Sequence_T3,Washed the clothes.,Closed the door.,Took the towel.,Washed the cup/glass/bottle.,Took the towel. 4377,0SBT3_0.8_6,What happened after the person put down the sandwich?,1,Sequence_T3_5598,Sequence_T3,Sat at the table.,Took the book.,Washed the dish.,Took the box.,Took the book. 4378,6C4DV_0.2_7,What happened after the person put down the cup/glass/bottle?,3,Sequence_T3_5599,Sequence_T3,Took the phone/camera.,Opened the door.,Took the pillow.,Tidied up the closet/cabinet.,Tidied up the closet/cabinet. 4379,V70F7_0_18.9,What happened after the person held the phone/camera?,1,Sequence_T3_5635,Sequence_T3,Lied on the floor.,Opened the closet/cabinet.,Closed the door.,Threw the box.,Opened the closet/cabinet. 4380,0OSJY_0_14.7,What happened after the person sat on the bed?,3,Sequence_T3_5637,Sequence_T3,Took the phone/camera.,Opened the window.,Took the pillow.,Put down the broom.,Put down the broom. 4381,BJXRT_1.5_24.3,What happened after the person held the blanket?,1,Sequence_T3_5645,Sequence_T3,Closed the laptop.,Took the dish.,Closed the door.,Threw the pillow.,Took the dish. 4382,U3ANG_0.4_35.6,What happened after the person opened the closet/cabinet?,3,Sequence_T3_5651,Sequence_T3,Took the food.,Sat on the table.,Put down the shoe.,Put down the book.,Put down the book. 4383,U3ANG_7.8_35.6,What happened after the person tidied up the closet/cabinet?,0,Sequence_T3_5652,Sequence_T3,Put down the book.,Threw the shoe.,Sat on the bed.,Put down the clothes.,Put down the book. 4384,U3ANG_0_35.6,What happened after the person held the laptop?,3,Sequence_T3_5653,Sequence_T3,Put down the cup/glass/bottle.,Threw the clothes.,Sat on the table.,Put down the book.,Put down the book. 4385,ZX1R7_9.4_20,What happened after the person held the dish?,0,Sequence_T3_5659,Sequence_T3,Took the pillow.,Took the cup/glass/bottle.,Closed the box.,Put down the pillow.,Took the pillow. 4386,ZX1R7_0_20,What happened after the person held the phone/camera?,3,Sequence_T3_5660,Sequence_T3,Put down the box.,Opened the door.,Threw the clothes.,Took the pillow.,Took the pillow. 4387,ZX1R7_0_20,What happened after the person sat on the bed?,1,Sequence_T3_5661,Sequence_T3,Put down the pillow.,Took the pillow.,Closed the closet/cabinet.,Lied on the floor.,Took the pillow. 4388,S1J2Q_4.4_20.8,What happened after the person took the clothes?,2,Sequence_T3_5673,Sequence_T3,Closed the closet/cabinet.,Opened the door.,Opened the refrigerator.,Closed the box.,Opened the refrigerator. 4389,S1J2Q_5_20.8,What happened after the person held the clothes?,0,Sequence_T3_5674,Sequence_T3,Opened the refrigerator.,Washed the dish.,Put down the box.,Put down the blanket.,Opened the refrigerator. 4390,KZODG_0_22.9,What happened after the person sat on the sofa/couch?,0,Sequence_T3_5687,Sequence_T3,Closed the laptop.,Put down the phone/camera.,Ate the sandwich.,Opened the book.,Closed the laptop. 4391,3DO95_13.6_28.1,What happened after the person put down the pillow?,3,Sequence_T3_5689,Sequence_T3,Put down the laptop.,Tidied up the blanket.,Closed the door.,Took the book.,Took the book. 4392,3ND23_1.4_13.9,What happened after the person put down the book?,1,Sequence_T3_5690,Sequence_T3,Took the paper/notebook.,Sat on the sofa/couch.,Took the picture.,Put down the box.,Sat on the sofa/couch. 4393,3ND23_9_19.9,What happened after the person sat at the table?,2,Sequence_T3_5691,Sequence_T3,Sat at the table.,Opened the door.,Put down the blanket.,Tidied up the clothes.,Put down the blanket. 4394,3ND23_8.1_19.9,What happened after the person sat on the sofa/couch?,0,Sequence_T3_5692,Sequence_T3,Put down the blanket.,Lied on the bed.,Tidied up the towel.,Took the cup/glass/bottle.,Put down the blanket. 4395,27JQL_0_12.1,What happened after the person sat at the table?,0,Sequence_T3_5726,Sequence_T3,Took the towel.,Opened the laptop.,Closed the book.,Threw the broom.,Took the towel. 4396,FNNTW_0_20.2,What happened after the person held the phone/camera?,0,Sequence_T3_5730,Sequence_T3,Put down the cup/glass/bottle.,Took the cup/glass/bottle.,Took the sandwich.,Threw the blanket.,Put down the cup/glass/bottle. 4397,O2DXE_0_10.6,What happened after the person lied on the floor?,3,Sequence_T3_5737,Sequence_T3,Tidied up the clothes.,Took the food.,Sat on the bed.,Put down the blanket.,Put down the blanket. 4398,56XKK_0_14.3,What happened after the person closed the door?,2,Sequence_T3_5740,Sequence_T3,Tidied up the towel.,Tidied up the table.,Put down the bag.,Put down the blanket.,Put down the bag. 4399,9207X_1.1_16,What happened after the person held the phone/camera?,2,Sequence_T3_5753,Sequence_T3,Tidied up the clothes.,Sat on the floor.,Opened the closet/cabinet.,Opened the door.,Opened the closet/cabinet. 4400,MDG2T_6_14.1,What happened after the person put down the dish?,0,Sequence_T3_5754,Sequence_T3,Took the towel.,Opened the box.,Opened the refrigerator.,Closed the book.,Took the towel. 4401,84893_0.7_15.3,What happened after the person put down the clothes?,1,Sequence_T3_5771,Sequence_T3,Tidied up the closet/cabinet.,Tidied up the blanket.,Took the phone/camera.,Sat on the table.,Tidied up the blanket. 4402,84893_0_15.3,What happened after the person watched outside the window?,3,Sequence_T3_5772,Sequence_T3,Threw the shoe.,Put down the clothes.,Threw the towel.,Tidied up the blanket.,Tidied up the blanket. 4403,84893_13.6_20.5,What happened after the person held the clothes?,3,Sequence_T3_5773,Sequence_T3,Put down the blanket.,Took the clothes.,Put down the phone/camera.,Threw the shoe.,Threw the shoe. 4404,84893_7.8_15.6,What happened after the person tidied up the blanket?,3,Sequence_T3_5774,Sequence_T3,Threw the towel.,Opened the box.,Put down the broom.,Threw the clothes.,Threw the clothes. 4405,KXCSL_1.6_9.5,What happened after the person put down the food?,0,Sequence_T3_5790,Sequence_T3,Closed the refrigerator.,Took the food.,Opened the closet/cabinet.,Put down the book.,Closed the refrigerator. 4406,WV9FZ_3.4_30,What happened after the person held the food?,0,Sequence_T3_5804,Sequence_T3,Sat at the table.,Took the cup/glass/bottle.,Put down the dish.,Threw the pillow.,Sat at the table. 4407,WV9FZ_3_30,What happened after the person took the food?,1,Sequence_T3_5805,Sequence_T3,Closed the closet/cabinet.,Sat at the table.,Closed the book.,Washed the table.,Sat at the table. 4408,Z6HEA_0_11.4,What happened after the person put down the towel?,3,Sequence_T3_5855,Sequence_T3,Took the food.,Took the bag.,Took the shoe.,Washed the clothes.,Washed the clothes. 4409,Z6HEA_2.6_16.2,What happened after the person washed the clothes?,0,Sequence_T3_5856,Sequence_T3,Sat on the floor.,Took the laptop.,Put down the towel.,Put down the laptop.,Sat on the floor. 4410,HL5OP_28.5_37,What happened after the person took the dish?,3,Sequence_T3_5881,Sequence_T3,Threw the shoe.,Put down the food.,Threw the pillow.,Tidied up the table.,Tidied up the table. 4411,HL5OP_16.6_27.9,What happened after the person opened the bag?,2,Sequence_T3_5882,Sequence_T3,Threw the broom.,Took the towel.,Took the dish.,Put down the phone/camera.,Took the dish. 4412,BZD0Q_11.3_22.8,What happened after the person put down the cup/glass/bottle?,2,Sequence_T3_5893,Sequence_T3,Put down the phone/camera.,Closed the window.,Took the bag.,Opened the box.,Took the bag. 4413,Z70KK_8_26,What happened after the person washed the table?,1,Sequence_T3_5903,Sequence_T3,Took the bag.,Took the broom.,Threw the food.,Washed the clothes.,Took the broom. 4414,Z70KK_7.9_15,What happened after the person put down the bag?,1,Sequence_T3_5904,Sequence_T3,Opened the laptop.,Washed the table.,Threw the pillow.,Closed the refrigerator.,Washed the table. 4415,SUI1X_0_10.3,What happened after the person sat on the floor?,1,Sequence_T3_5934,Sequence_T3,Put down the book.,Opened the bag.,Washed the clothes.,Took the picture.,Opened the bag. 4416,9AFSH_0_7.2,What happened after the person sat on the sofa/couch?,1,Sequence_T3_5944,Sequence_T3,Took the clothes.,Put down the pillow.,Took the book.,Washed the clothes.,Put down the pillow. 4417,DBT6E_10.8_23.4,What happened after the person sat on the floor?,0,Sequence_T3_5947,Sequence_T3,Opened the bag.,Lied on the sofa/couch.,Put down the book.,Opened the box.,Opened the bag. 4418,CR5G1_0_18.6,What happened after the person held the phone/camera?,0,Sequence_T3_5969,Sequence_T3,Took the blanket.,Closed the box.,Took the dish.,Took the laptop.,Took the blanket. 4419,CR5G1_10.9_18.6,What happened after the person sat on the floor?,2,Sequence_T3_5970,Sequence_T3,Took the bag.,Took the phone/camera.,Took the blanket.,Took the box.,Took the blanket. 4420,CR5G1_11.8_18.6,What happened after the person lied on the floor?,0,Sequence_T3_5971,Sequence_T3,Took the blanket.,Lied on the sofa/couch.,Took the pillow.,Threw the blanket.,Took the blanket. 4421,VS5IY_3.6_10.2,What happened after the person tidied up the table?,2,Sequence_T3_5972,Sequence_T3,Took the box.,Put down the cup/glass/bottle.,Put down the paper/notebook.,Took the dish.,Put down the paper/notebook. 4422,VS5IY_13.7_29.7,What happened after the person held the clothes?,1,Sequence_T3_5973,Sequence_T3,Lied on the sofa/couch.,Took the bag.,Tidied up the blanket.,Closed the door.,Took the bag. 4423,VS5IY_9.4_18.1,What happened after the person put down the book?,1,Sequence_T3_5974,Sequence_T3,Opened the box.,Took the clothes.,Sat on the sofa/couch.,Took the cup/glass/bottle.,Took the clothes. 4424,74DPG_20.7_40,What happened after the person drank from the cup/glass/bottle?,2,Sequence_T3_5976,Sequence_T3,Lied on the floor.,Took the broom.,Put down the dish.,Opened the bag.,Put down the dish. 4425,9NV2G_0_23.1,What happened after the person lied on the bed?,0,Sequence_T3_5980,Sequence_T3,Put down the cup/glass/bottle.,Took the pillow.,Lied on the floor.,Took the clothes.,Put down the cup/glass/bottle. 4426,TVCQF_4.7_13.9,What happened after the person drank from the cup/glass/bottle?,2,Sequence_T3_5993,Sequence_T3,Lied on the sofa/couch.,Opened the door.,Sat at the table.,Opened the bag.,Sat at the table. 4427,TVCQF_6.5_17,What happened after the person sat at the table?,3,Sequence_T3_5994,Sequence_T3,Threw the bag.,Closed the closet/cabinet.,Ate the sandwich.,Opened the box.,Opened the box. 4428,NV4FC_20_26.1,What happened after the person held the book?,2,Sequence_T3_6014,Sequence_T3,Took the food.,Opened the laptop.,Took the paper/notebook.,Took the cup/glass/bottle.,Took the paper/notebook. 4429,NV4FC_5.5_21.3,What happened after the person put down the clothes?,1,Sequence_T3_6018,Sequence_T3,Tidied up the blanket.,Threw the shoe.,Opened the door.,Put down the paper/notebook.,Threw the shoe. 4430,XFRYR_6.8_16.2,What happened after the person took the food?,2,Sequence_T3_6020,Sequence_T3,Opened the bag.,Put down the clothes.,Closed the closet/cabinet.,Took the cup/glass/bottle.,Closed the closet/cabinet. 4431,AJTDO_0_18.5,What happened after the person held the clothes?,1,Sequence_T3_6025,Sequence_T3,Closed the box.,Put down the pillow.,Took the phone/camera.,Threw the clothes.,Put down the pillow. 4432,8VSV6_0_17,What happened after the person lied on the floor?,1,Sequence_T3_6030,Sequence_T3,Closed the door.,Sat at the table.,Took the pillow.,Took the book.,Sat at the table. 4433,XYGU1_4.7_20.5,What happened after the person sat at the table?,2,Sequence_T3_6053,Sequence_T3,Put down the dish.,Took the food.,Opened the book.,Took the paper/notebook.,Opened the book. 4434,9O0HH_1.5_30.4,What happened after the person closed the closet/cabinet?,1,Sequence_T3_6066,Sequence_T3,Took the towel.,Put down the food.,Took the blanket.,Took the cup/glass/bottle.,Put down the food. 4435,OKYYQ_0_10.3,What happened after the person watched at the book?,3,Sequence_T3_6085,Sequence_T3,Lied on the bed.,Put down the food.,Opened the door.,Put down the paper/notebook.,Put down the paper/notebook. 4436,OKYYQ_0_10.3,What happened after the person held the book?,2,Sequence_T3_6086,Sequence_T3,Put down the bag.,Closed the book.,Put down the paper/notebook.,Opened the door.,Put down the paper/notebook. 4437,OKYYQ_2.3_8.5,What happened after the person put down the paper/notebook?,2,Sequence_T3_6088,Sequence_T3,Put down the picture.,Put down the sandwich.,Closed the book.,Took the book.,Closed the book. 4438,N7130_0_13.5,What happened after the person opened the door?,1,Sequence_T3_6094,Sequence_T3,Threw the box.,Put down the phone/camera.,Took the pillow.,Tidied up the clothes.,Put down the phone/camera. 4439,306S9_1.3_9.4,What happened after the person sat on the floor?,2,Sequence_T3_6101,Sequence_T3,Opened the box.,Sat on the bed.,Put down the food.,Closed the window.,Put down the food. 4440,UDGRS_19.9_27.6,What happened after the person put down the phone/camera?,3,Sequence_T3_6109,Sequence_T3,Took the dish.,Sat on the table.,Opened the door.,Closed the book.,Closed the book. 4441,UDGRS_16.6_25.8,What happened after the person tidied up the table?,2,Sequence_T3_6110,Sequence_T3,Put down the book.,Opened the door.,Put down the phone/camera.,Took the cup/glass/bottle.,Put down the phone/camera. 4442,86X97_1.8_41,What happened after the person watched outside the window?,2,Sequence_T3_6122,Sequence_T3,Put down the dish.,Opened the door.,Put down the book.,Closed the book.,Put down the book. 4443,86X97_10_41,What happened after the person watched outside the window?,3,Sequence_T3_6123,Sequence_T3,Took the shoe.,Put down the food.,Took the clothes.,Put down the book.,Put down the book. 4444,M7BD4_0_19.6,What happened after the person held the laptop?,0,Sequence_T3_6136,Sequence_T3,Put down the paper/notebook.,Sat on the bed.,Threw the blanket.,Opened the bag.,Put down the paper/notebook. 4445,M7BD4_18_26.2,What happened after the person opened the closet/cabinet?,3,Sequence_T3_6137,Sequence_T3,Took the food.,Took the broom.,Closed the door.,Closed the laptop.,Closed the laptop. 4446,MQ4YR_0_24.9,What happened after the person lied on the bed?,0,Sequence_T3_6149,Sequence_T3,Took the bag.,Took the cup/glass/bottle.,Threw the pillow.,Put down the phone/camera.,Took the bag. 4447,V9W9C_29.2_37,What happened after the person drank from the cup/glass/bottle?,0,Sequence_T3_6164,Sequence_T3,Tidied up the table.,Took the bag.,Took the dish.,Threw the book.,Tidied up the table. 4448,V9W9C_27.7_37,What happened after the person took the cup/glass/bottle?,0,Sequence_T3_6165,Sequence_T3,Tidied up the table.,Put down the phone/camera.,Threw the broom.,Opened the book.,Tidied up the table. 4449,9632M_4.9_32,What happened after the person held the food?,2,Sequence_T3_6167,Sequence_T3,Ate the medicine.,Threw the broom.,Took the towel.,Took the box.,Took the towel. 4450,S3TZ1_4.9_13,What happened after the person put down the food?,2,Sequence_T3_6212,Sequence_T3,Opened the closet/cabinet.,Put down the paper/notebook.,Closed the refrigerator.,Took the towel.,Closed the refrigerator. 4451,S3TZ1_5.4_13,What happened after the person held the food?,3,Sequence_T3_6214,Sequence_T3,Put down the dish.,Took the book.,Threw the box.,Closed the refrigerator.,Closed the refrigerator. 4452,ZOL0R_3.7_14.8,What happened after the person opened the door?,0,Sequence_T3_6225,Sequence_T3,Threw the clothes.,Washed the cup/glass/bottle.,Took the paper/notebook.,Opened the laptop.,Threw the clothes. 4453,OK2AF_13.5_30,What happened after the person closed the door?,1,Sequence_T3_6232,Sequence_T3,Threw the broom.,Took the book.,Put down the phone/camera.,Put down the picture.,Took the book. 4454,UEP20_12.6_23.1,What happened after the person put down the paper/notebook?,0,Sequence_T3_6254,Sequence_T3,Lied on the bed.,Opened the closet/cabinet.,Tidied up the towel.,Took the shoe.,Lied on the bed. 4455,UEP20_14.6_22.7,What happened after the person lied on the bed?,2,Sequence_T3_6255,Sequence_T3,Tidied up the closet/cabinet.,Opened the closet/cabinet.,Took the sandwich.,Opened the bag.,Took the sandwich. 4456,5X5DT_10.6_19.5,What happened after the person closed the laptop?,3,Sequence_T3_6261,Sequence_T3,Opened the closet/cabinet.,Put down the phone/camera.,Opened the window.,Took the bag.,Took the bag. 4457,5X5DT_0_19.5,What happened after the person held the laptop?,2,Sequence_T3_6262,Sequence_T3,Put down the food.,Ate the sandwich.,Took the bag.,Took the blanket.,Took the bag. 4458,VKXLL_22.1_36.2,What happened after the person opened the box?,3,Sequence_T3_6273,Sequence_T3,Threw the clothes.,Put down the food.,Sat at the table.,Put down the paper/notebook.,Put down the paper/notebook. 4459,VKXLL_16.9_28.6,What happened after the person put down the dish?,0,Sequence_T3_6274,Sequence_T3,Opened the box.,Sat on the table.,Took the towel.,Sat on the sofa/couch.,Opened the box. 4460,UFVO8_3.2_11,What happened after the person opened the closet/cabinet?,1,Sequence_T3_6278,Sequence_T3,Took the dish.,Put down the broom.,Took the phone/camera.,Threw the blanket.,Put down the broom. 4461,V9RT3_0_21.5,What happened after the person sat at the table?,0,Sequence_T3_6281,Sequence_T3,Put down the phone/camera.,Tidied up the blanket.,Lied on the bed.,Took the cup/glass/bottle.,Put down the phone/camera. 4462,Q8UJ8_0.6_5.9,What happened after the person sat at the table?,1,Sequence_T3_6283,Sequence_T3,Put down the food.,Opened the bag.,Put down the shoe.,Took the towel.,Opened the bag. 4463,F9YMU_0_16.5,What happened after the person closed the door?,3,Sequence_T3_6289,Sequence_T3,Opened the bag.,Lied on the floor.,Opened the closet/cabinet.,Took the paper/notebook.,Took the paper/notebook. 4464,F9YMU_9.3_16.5,What happened after the person sat at the table?,2,Sequence_T3_6290,Sequence_T3,Threw the book.,Took the cup/glass/bottle.,Took the paper/notebook.,Closed the laptop.,Took the paper/notebook. 4465,XZ9C0_0_14.9,What happened after the person lied on the bed?,1,Sequence_T3_6291,Sequence_T3,Washed the table.,Took the bag.,Tidied up the clothes.,Took the clothes.,Took the bag. 4466,LY10X_14.5_31.6,What happened after the person opened the closet/cabinet?,2,Sequence_T3_6298,Sequence_T3,Put down the picture.,Took the towel.,Ate the medicine.,Tidied up the closet/cabinet.,Ate the medicine. 4467,3XKBC_18.8_24.7,What happened after the person opened the laptop?,3,Sequence_T3_6302,Sequence_T3,Threw the clothes.,Threw the bag.,Put down the pillow.,Sat at the table.,Sat at the table. 4468,3XKBC_11.9_28.1,What happened after the person put down the clothes?,0,Sequence_T3_6303,Sequence_T3,Opened the laptop.,Threw the broom.,Opened the door.,Closed the closet/cabinet.,Opened the laptop. 4469,EC695_0_18.6,What happened after the person lied on the sofa/couch?,1,Sequence_T3_6324,Sequence_T3,Took the broom.,Took the laptop.,Threw the towel.,Put down the bag.,Took the laptop. 4470,1333C_4.9_13.1,What happened after the person threw the towel?,2,Sequence_T3_6325,Sequence_T3,Took the book.,Tidied up the blanket.,Took the dish.,Opened the closet/cabinet.,Took the dish. 4471,0Y19Q_14_24,What happened after the person watched outside the window?,2,Sequence_T3_6326,Sequence_T3,Took the bag.,Opened the door.,Put down the cup/glass/bottle.,Took the pillow.,Put down the cup/glass/bottle. 4472,983K8_0_12.5,What happened after the person ate the sandwich?,3,Sequence_T3_6327,Sequence_T3,Sat at the table.,Took the phone/camera.,Took the towel.,Took the blanket.,Took the blanket. 4473,983K8_0_12.5,What happened after the person held the food?,0,Sequence_T3_6328,Sequence_T3,Took the blanket.,Tidied up the table.,Took the book.,Threw the broom.,Took the blanket. 4474,L9J5I_0_16.7,What happened after the person put down the food?,1,Sequence_T3_6357,Sequence_T3,Opened the bag.,Took the paper/notebook.,Threw the clothes.,Ate the sandwich.,Took the paper/notebook. 4475,FZJTT_0_24,What happened after the person lied on the sofa/couch?,2,Sequence_T3_6360,Sequence_T3,Threw the food.,Took the cup/glass/bottle.,Took the phone/camera.,Threw the shoe.,Took the phone/camera. 4476,PZD7Z_0_17.6,What happened after the person sat at the table?,3,Sequence_T3_6361,Sequence_T3,Put down the phone/camera.,Threw the clothes.,Closed the book.,Put down the broom.,Put down the broom. 4477,C61BE_0_10,What happened after the person ate the sandwich?,3,Sequence_T3_6372,Sequence_T3,Threw the food.,Took the shoe.,Took the broom.,Took the blanket.,Took the blanket. 4478,EAKL5_8.9_28.5,What happened after the person tidied up the table?,1,Sequence_T3_6373,Sequence_T3,Put down the dish.,Put down the phone/camera.,Put down the blanket.,Took the cup/glass/bottle.,Put down the phone/camera. 4479,34OT4_0_33.1,What happened after the person held the phone/camera?,3,Sequence_T3_6379,Sequence_T3,Closed the laptop.,Took the cup/glass/bottle.,Closed the box.,Put down the pillow.,Put down the pillow. 4480,34OT4_16.2_33.1,What happened after the person drank from the cup/glass/bottle?,2,Sequence_T3_6380,Sequence_T3,Threw the towel.,Opened the bag.,Put down the pillow.,Took the box.,Put down the pillow. 4481,34OT4_0_33.1,What happened after the person sat at the table?,0,Sequence_T3_6381,Sequence_T3,Put down the pillow.,Closed the closet/cabinet.,Took the shoe.,Opened the laptop.,Put down the pillow. 4482,MA15X_17.5_72,What happened after the person drank from the cup/glass/bottle?,0,Sequence_T3_6382,Sequence_T3,Threw the blanket.,Threw the book.,Took the bag.,Took the towel.,Threw the blanket. 4483,MA15X_21.8_72,What happened after the person put down the cup/glass/bottle?,1,Sequence_T3_6383,Sequence_T3,Closed the refrigerator.,Threw the blanket.,Took the shoe.,Put down the cup/glass/bottle.,Threw the blanket. 4484,MA15X_21_72,What happened after the person took the cup/glass/bottle?,1,Sequence_T3_6384,Sequence_T3,Put down the dish.,Threw the blanket.,Put down the food.,Put down the cup/glass/bottle.,Threw the blanket. 4485,MA15X_18.2_72,What happened after the person sat on the sofa/couch?,1,Sequence_T3_6385,Sequence_T3,Sat on the table.,Threw the blanket.,Put down the blanket.,Put down the dish.,Threw the blanket. 4486,V54TI_0_14.1,What happened after the person lied on the bed?,2,Sequence_T3_6392,Sequence_T3,Threw the pillow.,Took the book.,Put down the picture.,Closed the box.,Put down the picture. 4487,0BZAD_5.9_12.9,What happened after the person sat on the floor?,3,Sequence_T3_6399,Sequence_T3,Opened the laptop.,Put down the sandwich.,Took the dish.,Opened the book.,Opened the book. 4488,CJ58B_17.4_27.4,What happened after the person held the food?,1,Sequence_T3_6401,Sequence_T3,Opened the bag.,Put down the bag.,Put down the book.,Lied on the floor.,Put down the bag. 4489,B8PQL_0.8_6.9,What happened after the person put down the clothes?,2,Sequence_T3_6406,Sequence_T3,Opened the door.,Closed the closet/cabinet.,Threw the towel.,Washed the clothes.,Threw the towel. 4490,B8PQL_3.6_10.1,What happened after the person closed the door?,2,Sequence_T3_6407,Sequence_T3,Took the bag.,Put down the clothes.,Took the broom.,Opened the window.,Took the broom. 4491,Z6LYG_10.8_42,What happened after the person took the food?,2,Sequence_T3_6422,Sequence_T3,Opened the closet/cabinet.,Ate the sandwich.,Closed the refrigerator.,Opened the bag.,Closed the refrigerator. 4492,Z6LYG_30.5_42,What happened after the person put down the dish?,1,Sequence_T3_6423,Sequence_T3,Washed the dish.,Closed the refrigerator.,Tidied up the towel.,Closed the door.,Closed the refrigerator. 4493,1G90H_0_11.1,What happened after the person lied on the floor?,3,Sequence_T3_6432,Sequence_T3,Put down the clothes.,Tidied up the blanket.,Opened the book.,Took the cup/glass/bottle.,Took the cup/glass/bottle. 4494,8DSGI_9.6_20,What happened after the person put down the clothes?,0,Sequence_T3_6436,Sequence_T3,Opened the book.,Closed the book.,Tidied up the clothes.,Ate the sandwich.,Opened the book. 4495,0CG15_19.7_29.7,What happened after the person put down the clothes?,2,Sequence_T3_6457,Sequence_T3,Put down the box.,Washed the mirror.,Opened the closet/cabinet.,Took the pillow.,Opened the closet/cabinet. 4496,ACJBD_30.8_36.7,What happened after the person put down the pillow?,0,Sequence_T3_6482,Sequence_T3,Tidied up the clothes.,Took the laptop.,Closed the door.,Put down the laptop.,Tidied up the clothes. 4497,ACJBD_13.7_35.2,What happened after the person took the clothes?,1,Sequence_T3_6483,Sequence_T3,Put down the towel.,Put down the blanket.,Tidied up the blanket.,Opened the refrigerator.,Put down the blanket. 4498,G4AJK_9_40.7,What happened after the person ate the sandwich?,0,Sequence_T3_6484,Sequence_T3,Put down the food.,Lied on the bed.,Opened the closet/cabinet.,Sat on the floor.,Put down the food. 4499,G4AJK_3.7_40.7,What happened after the person held the dish?,3,Sequence_T3_6485,Sequence_T3,Opened the closet/cabinet.,Put down the shoe.,Took the food.,Put down the food.,Put down the food. 4500,1E7VU_2.1_18.5,What happened after the person held the phone/camera?,0,Sequence_T3_6486,Sequence_T3,Closed the closet/cabinet.,Opened the door.,Opened the laptop.,Closed the door.,Closed the closet/cabinet. 4501,1E7VU_3.5_18.5,What happened after the person held the dish?,3,Sequence_T3_6487,Sequence_T3,Took the book.,Took the cup/glass/bottle.,Took the blanket.,Closed the closet/cabinet.,Closed the closet/cabinet. 4502,EG1XK_13.9_32.9,What happened after the person drank from the cup/glass/bottle?,1,Sequence_T3_6491,Sequence_T3,Put down the dish.,Opened the door.,Put down the towel.,Opened the bag.,Opened the door. 4503,HPAYB_5.6_16.4,What happened after the person put down the bag?,0,Sequence_T3_6507,Sequence_T3,Took the clothes.,Closed the closet/cabinet.,Took the food.,Closed the laptop.,Took the clothes. 4504,USNP1_0_11.4,What happened after the person lied on the sofa/couch?,2,Sequence_T3_6514,Sequence_T3,Took the cup/glass/bottle.,Took the paper/notebook.,Took the phone/camera.,Put down the pillow.,Took the phone/camera. 4505,CCCUJ_11.6_32.2,What happened after the person closed the door?,0,Sequence_T3_6530,Sequence_T3,Put down the laptop.,Closed the window.,Washed the cup/glass/bottle.,Took the cup/glass/bottle.,Put down the laptop. 4506,BI31D_5.2_18,What happened after the person put down the phone/camera?,3,Sequence_T3_6550,Sequence_T3,Took the broom.,Ate the sandwich.,Threw the bag.,Sat on the bed.,Sat on the bed. 4507,194WK_0_10.2,What happened after the person sat at the table?,2,Sequence_T3_6559,Sequence_T3,Put down the dish.,Opened the book.,Closed the book.,Sat at the table.,Closed the book. 4508,DHFA6_0.2_22.6,What happened after the person held the pillow?,3,Sequence_T3_6572,Sequence_T3,Put down the clothes.,Took the phone/camera.,Took the cup/glass/bottle.,Put down the box.,Put down the box. 4509,3ZC4Y_17.2_23.8,What happened after the person closed the refrigerator?,0,Sequence_T3_6577,Sequence_T3,Threw the food.,Took the dish.,Put down the paper/notebook.,Opened the window.,Threw the food. 4510,3ZC4Y_0_21.7,What happened after the person held the dish?,1,Sequence_T3_6578,Sequence_T3,Took the dish.,Opened the refrigerator.,Put down the food.,Ate the medicine.,Opened the refrigerator. 4511,Z97SD_24.3_30.7,What happened after the person held the food?,1,Sequence_T3_6583,Sequence_T3,Closed the book.,Closed the refrigerator.,Put down the dish.,Put down the towel.,Closed the refrigerator. 4512,Z97SD_17.8_24.1,What happened after the person took the food?,2,Sequence_T3_6584,Sequence_T3,Put down the laptop.,Ate the sandwich.,Opened the refrigerator.,Took the broom.,Opened the refrigerator. 4513,21MI8_0_10.1,What happened after the person drank from the cup/glass/bottle?,3,Sequence_T3_6586,Sequence_T3,Took the bag.,Closed the door.,Took the towel.,Opened the laptop.,Opened the laptop. 4514,5657O_0_13.8,What happened after the person held the phone/camera?,3,Sequence_T3_6587,Sequence_T3,Opened the bag.,Took the clothes.,Took the laptop.,Put down the clothes.,Put down the clothes. 4515,OZSB3_0_27.8,What happened after the person sat at the table?,2,Sequence_T3_6600,Sequence_T3,Tidied up the closet/cabinet.,Put down the pillow.,Took the pillow.,Took the paper/notebook.,Took the pillow. 4516,MOQIU_0_20,What happened after the person sat on the sofa/couch?,1,Sequence_T3_6603,Sequence_T3,Washed the cup/glass/bottle.,Took the phone/camera.,Put down the cup/glass/bottle.,Took the cup/glass/bottle.,Took the phone/camera. 4517,MOQIU_0_20,What happened after the person sat at the table?,2,Sequence_T3_6604,Sequence_T3,Threw the bag.,Opened the laptop.,Took the phone/camera.,Put down the cup/glass/bottle.,Took the phone/camera. 4518,6H78U_15.6_24.6,What happened before the person put down the blanket?,2,Sequence_T4_9,Sequence_T4,Took the bag.,Took the towel.,Tidied up the clothes.,Opened the box.,Tidied up the clothes. 4519,6H78U_8.5_16,What happened before the person took the clothes?,1,Sequence_T4_10,Sequence_T4,Threw the blanket.,Put down the phone/camera.,Sat at the table.,Sat on the bed.,Put down the phone/camera. 4520,RNLTR_11.6_24,What happened before the person sat on the bed?,2,Sequence_T4_24,Sequence_T4,Tidied up the table.,Put down the picture.,Put down the shoe.,Closed the door.,Put down the shoe. 4521,RNLTR_11.6_24,What happened before the person sat on the sofa/couch?,3,Sequence_T4_25,Sequence_T4,Took the box.,Took the dish.,Threw the pillow.,Put down the shoe.,Put down the shoe. 4522,VNQTH_2.7_10.3,What happened before the person took the phone/camera?,2,Sequence_T4_31,Sequence_T4,Put down the blanket.,Tidied up the table.,Tidied up the closet/cabinet.,Closed the laptop.,Tidied up the closet/cabinet. 4523,N56QO_0.8_11,What happened before the person held the dish?,3,Sequence_T4_43,Sequence_T4,Sat on the sofa/couch.,Closed the window.,Threw the clothes.,Took the cup/glass/bottle.,Took the cup/glass/bottle. 4524,4GLAP_16.1_28.5,What happened before the person opened the door?,1,Sequence_T4_54,Sequence_T4,Put down the book.,Threw the shoe.,Took the book.,Took the clothes.,Threw the shoe. 4525,XO8NL_6.5_32,What happened before the person held the mirror?,2,Sequence_T4_58,Sequence_T4,Put down the food.,Opened the box.,Put down the pillow.,Threw the clothes.,Put down the pillow. 4526,OY3LS_2.5_23.6,What happened before the person held the clothes?,2,Sequence_T4_62,Sequence_T4,Took the laptop.,Put down the sandwich.,Opened the laptop.,Took the shoe.,Opened the laptop. 4527,OY3LS_28.6_41.8,What happened before the person took the blanket?,3,Sequence_T4_63,Sequence_T4,Opened the closet/cabinet.,Took the broom.,Lied on the floor.,Put down the phone/camera.,Put down the phone/camera. 4528,OY3LS_2.5_23.8,What happened before the person threw the clothes?,0,Sequence_T4_65,Sequence_T4,Opened the laptop.,Opened the bag.,Lied on the bed.,Took the cup/glass/bottle.,Opened the laptop. 4529,OY3LS_28.6_41.4,What happened before the person sat on the sofa/couch?,3,Sequence_T4_66,Sequence_T4,Took the clothes.,Put down the picture.,Closed the window.,Put down the phone/camera.,Put down the phone/camera. 4530,RG0KS_0_24.9,What happened before the person took the box?,2,Sequence_T4_76,Sequence_T4,Put down the sandwich.,Opened the book.,Tidied up the blanket.,Tidied up the closet/cabinet.,Tidied up the blanket. 4531,N5PLR_5.2_33.2,What happened before the person sat on the table?,0,Sequence_T4_78,Sequence_T4,Threw the clothes.,Took the bag.,Put down the towel.,Put down the blanket.,Threw the clothes. 4532,NUKJ0_11_26.6,What happened before the person closed the book?,1,Sequence_T4_98,Sequence_T4,Took the sandwich.,Took the paper/notebook.,Closed the window.,Put down the picture.,Took the paper/notebook. 4533,NUKJ0_11_24,What happened before the person watched at the book?,3,Sequence_T4_100,Sequence_T4,Ate the sandwich.,Closed the box.,Put down the dish.,Took the paper/notebook.,Took the paper/notebook. 4534,NUKJ0_11_25.6,What happened before the person held the book?,1,Sequence_T4_101,Sequence_T4,Opened the door.,Took the paper/notebook.,Put down the laptop.,Took the broom.,Took the paper/notebook. 4535,GKH0F_24_34,What happened before the person held the phone/camera?,3,Sequence_T4_105,Sequence_T4,Took the picture.,Put down the pillow.,Put down the picture.,Put down the bag.,Put down the bag. 4536,H0L5S_20.4_29.4,What happened before the person opened the door?,2,Sequence_T4_133,Sequence_T4,Put down the bag.,Took the cup/glass/bottle.,Took the towel.,Put down the laptop.,Took the towel. 4537,7MRKY_24.8_36.1,What happened before the person closed the laptop?,3,Sequence_T4_140,Sequence_T4,Took the bag.,Took the sandwich.,Took the food.,Put down the broom.,Put down the broom. 4538,TBRZ5_7_26.3,What happened before the person held the phone/camera?,3,Sequence_T4_157,Sequence_T4,Put down the broom.,Threw the towel.,Opened the bag.,Threw the pillow.,Threw the pillow. 4539,DGPAW_3.5_16.6,What happened before the person opened the door?,3,Sequence_T4_165,Sequence_T4,Put down the paper/notebook.,Ate the sandwich.,Threw the towel.,Put down the picture.,Put down the picture. 4540,E002I_4.1_14.1,What happened before the person lied on the bed?,0,Sequence_T4_166,Sequence_T4,Put down the pillow.,Threw the blanket.,Tidied up the closet/cabinet.,Lied on the bed.,Put down the pillow. 4541,E002I_4.7_19.7,What happened before the person closed the door?,0,Sequence_T4_167,Sequence_T4,Lied on the bed.,Took the cup/glass/bottle.,Put down the blanket.,Closed the closet/cabinet.,Lied on the bed. 4542,VIN5T_1.5_13.1,What happened before the person held the phone/camera?,3,Sequence_T4_196,Sequence_T4,Closed the box.,Put down the broom.,Threw the food.,Threw the pillow.,Threw the pillow. 4543,VIN5T_1.5_21,What happened before the person took the phone/camera?,2,Sequence_T4_197,Sequence_T4,Put down the cup/glass/bottle.,Tidied up the table.,Threw the pillow.,Put down the book.,Threw the pillow. 4544,YB67Z_11.9_22.3,What happened before the person put down the box?,3,Sequence_T4_201,Sequence_T4,Took the book.,Washed the table.,Closed the book.,Tidied up the table.,Tidied up the table. 4545,1O1JS_0_30.2,What happened before the person washed the dish?,2,Sequence_T4_205,Sequence_T4,Put down the picture.,Put down the pillow.,Took the towel.,Opened the window.,Took the towel. 4546,1L5D3_13.6_32,What happened before the person held the phone/camera?,3,Sequence_T4_230,Sequence_T4,Tidied up the blanket.,Took the cup/glass/bottle.,Tidied up the closet/cabinet.,Put down the pillow.,Put down the pillow. 4547,1L5D3_13.6_32,What happened before the person took the phone/camera?,2,Sequence_T4_231,Sequence_T4,Took the clothes.,Put down the cup/glass/bottle.,Put down the pillow.,Opened the window.,Put down the pillow. 4548,1L5D3_13.6_32,What happened before the person sat on the bed?,1,Sequence_T4_232,Sequence_T4,Tidied up the blanket.,Put down the pillow.,Threw the towel.,Put down the laptop.,Put down the pillow. 4549,S572F_0.6_21,What happened before the person took the blanket?,1,Sequence_T4_244,Sequence_T4,Opened the box.,Put down the towel.,Tidied up the table.,Put down the broom.,Put down the towel. 4550,S572F_0.6_16.6,What happened before the person washed the clothes?,2,Sequence_T4_245,Sequence_T4,Put down the phone/camera.,Put down the clothes.,Put down the towel.,Washed the window.,Put down the towel. 4551,S572F_0_10.4,What happened before the person put down the towel?,2,Sequence_T4_247,Sequence_T4,Opened the door.,Threw the pillow.,Took the clothes.,Threw the box.,Took the clothes. 4552,TRHT1_0_6.3,What happened before the person threw the clothes?,3,Sequence_T4_281,Sequence_T4,Took the box.,Put down the paper/notebook.,Closed the book.,Sat on the sofa/couch.,Sat on the sofa/couch. 4553,5NG6Q_13.8_25.6,What happened before the person tidied up the table?,0,Sequence_T4_291,Sequence_T4,Put down the dish.,Put down the cup/glass/bottle.,Threw the shoe.,Opened the laptop.,Put down the dish. 4554,C1DK7_17.1_25.9,What happened before the person opened the door?,2,Sequence_T4_301,Sequence_T4,Took the towel.,Took the picture.,Put down the phone/camera.,Closed the book.,Put down the phone/camera. 4555,C1DK7_4.2_21.6,What happened before the person put down the phone/camera?,2,Sequence_T4_302,Sequence_T4,Opened the window.,Tidied up the table.,Closed the laptop.,Tidied up the blanket.,Closed the laptop. 4556,YHXU9_14.7_21.8,What happened before the person took the book?,3,Sequence_T4_328,Sequence_T4,Threw the food.,Sat on the floor.,Opened the box.,Tidied up the clothes.,Tidied up the clothes. 4557,PH5VU_30.9_40.3,What happened before the person put down the picture?,3,Sequence_T4_333,Sequence_T4,Opened the book.,Put down the book.,Put down the clothes.,Took the paper/notebook.,Took the paper/notebook. 4558,5C4EK_2.2_11.4,What happened before the person took the paper/notebook?,2,Sequence_T4_344,Sequence_T4,Put down the phone/camera.,Put down the pillow.,Closed the book.,Lied on the bed.,Closed the book. 4559,NW0KT_4.9_13.9,What happened before the person took the paper/notebook?,1,Sequence_T4_352,Sequence_T4,Put down the dish.,Opened the book.,Took the box.,Put down the phone/camera.,Opened the book. 4560,NYHD7_0_26.9,What happened before the person took the phone/camera?,1,Sequence_T4_363,Sequence_T4,Put down the picture.,Sat at the table.,Opened the bag.,Closed the window.,Sat at the table. 4561,3Q6N1_0_8.6,What happened before the person ate the sandwich?,0,Sequence_T4_386,Sequence_T4,Opened the laptop.,Put down the paper/notebook.,Put down the phone/camera.,Took the laptop.,Opened the laptop. 4562,3Q6N1_0_9.5,What happened before the person put down the food?,2,Sequence_T4_387,Sequence_T4,Opened the box.,Threw the blanket.,Opened the laptop.,Threw the food.,Opened the laptop. 4563,3Q6N1_0_9.4,What happened before the person held the food?,1,Sequence_T4_388,Sequence_T4,Put down the clothes.,Opened the laptop.,Put down the food.,Took the dish.,Opened the laptop. 4564,T7ST5_7.1_23,What happened before the person watched outside the window?,3,Sequence_T4_395,Sequence_T4,Threw the pillow.,Washed the cup/glass/bottle.,Put down the paper/notebook.,Put down the towel.,Put down the towel. 4565,SS3IL_4.3_21.1,What happened before the person sat at the table?,2,Sequence_T4_404,Sequence_T4,Tidied up the blanket.,Put down the bag.,Put down the sandwich.,Opened the window.,Put down the sandwich. 4566,SS3IL_4.3_13.4,What happened before the person took the phone/camera?,3,Sequence_T4_405,Sequence_T4,Opened the door.,Put down the broom.,Took the box.,Put down the sandwich.,Put down the sandwich. 4567,9MNZ5_10.4_23.3,What happened before the person put down the food?,3,Sequence_T4_416,Sequence_T4,Put down the laptop.,Took the phone/camera.,Closed the door.,Opened the box.,Opened the box. 4568,DR7K0_13.9_22.7,What happened before the person took the clothes?,1,Sequence_T4_429,Sequence_T4,Opened the bag.,Put down the broom.,Put down the blanket.,Took the broom.,Put down the broom. 4569,ON2Z4_8.4_22.2,What happened before the person held the book?,1,Sequence_T4_453,Sequence_T4,Ate the medicine.,Took the blanket.,Closed the book.,Took the paper/notebook.,Took the blanket. 4570,ON2Z4_8.4_23.4,What happened before the person opened the book?,0,Sequence_T4_454,Sequence_T4,Took the blanket.,Sat on the sofa/couch.,Took the paper/notebook.,Opened the door.,Took the blanket. 4571,ON2Z4_8.4_23.7,What happened before the person closed the book?,0,Sequence_T4_456,Sequence_T4,Took the blanket.,Tidied up the table.,Opened the box.,Opened the window.,Took the blanket. 4572,6ZWSU_11.6_21.8,What happened before the person took the phone/camera?,1,Sequence_T4_489,Sequence_T4,Put down the cup/glass/bottle.,Put down the shoe.,Opened the window.,Took the clothes.,Put down the shoe. 4573,OVFR0_0_17.3,What happened before the person opened the door?,1,Sequence_T4_548,Sequence_T4,Washed the cup/glass/bottle.,Put down the book.,Put down the cup/glass/bottle.,Put down the food.,Put down the book. 4574,136V6_13.9_28.2,What happened before the person closed the book?,3,Sequence_T4_634,Sequence_T4,Tidied up the table.,Took the cup/glass/bottle.,Closed the closet/cabinet.,Lied on the sofa/couch.,Lied on the sofa/couch. 4575,136V6_13.5_19.4,What happened before the person lied on the sofa/couch?,3,Sequence_T4_635,Sequence_T4,Washed the clothes.,Took the dish.,Put down the dish.,Opened the book.,Opened the book. 4576,136V6_5_17.3,What happened before the person took the book?,3,Sequence_T4_638,Sequence_T4,Opened the door.,Closed the closet/cabinet.,Sat on the bed.,Threw the shoe.,Threw the shoe. 4577,BEAAA_0_11.8,What happened before the person put down the clothes?,1,Sequence_T4_667,Sequence_T4,Opened the bag.,Ate the sandwich.,Closed the book.,Lied on the sofa/couch.,Ate the sandwich. 4578,98W87_10.2_26.2,What happened before the person held the food?,1,Sequence_T4_688,Sequence_T4,Sat at the table.,Took the sandwich.,Put down the blanket.,Put down the laptop.,Took the sandwich. 4579,WM2J7_0_23.8,What happened before the person opened the door?,2,Sequence_T4_694,Sequence_T4,Put down the bag.,Put down the blanket.,Washed the window.,Took the box.,Washed the window. 4580,3R4DD_2.1_18.4,What happened before the person tidied up the clothes?,0,Sequence_T4_695,Sequence_T4,Took the towel.,Put down the food.,Took the shoe.,Threw the pillow.,Took the towel. 4581,3R4DD_2.1_32.3,What happened before the person tidied up the blanket?,1,Sequence_T4_696,Sequence_T4,Threw the towel.,Took the towel.,Opened the door.,Ate the sandwich.,Took the towel. 4582,R971Z_11.1_32.8,What happened before the person held the mirror?,2,Sequence_T4_703,Sequence_T4,Put down the pillow.,Took the blanket.,Put down the shoe.,Put down the food.,Put down the shoe. 4583,3JCEI_8.3_15.1,What happened before the person threw the food?,2,Sequence_T4_742,Sequence_T4,Took the dish.,Tidied up the closet/cabinet.,Closed the laptop.,Opened the bag.,Closed the laptop. 4584,3JCEI_10.4_21,What happened before the person held the laptop?,2,Sequence_T4_743,Sequence_T4,Put down the picture.,Took the bag.,Threw the food.,Put down the pillow.,Threw the food. 4585,HRASP_6.3_14.2,What happened before the person took the cup/glass/bottle?,2,Sequence_T4_756,Sequence_T4,Threw the pillow.,Threw the clothes.,Threw the shoe.,Tidied up the table.,Threw the shoe. 4586,93REJ_8.8_14.9,What happened before the person put down the clothes?,3,Sequence_T4_775,Sequence_T4,Opened the bag.,Put down the pillow.,Closed the book.,Took the towel.,Took the towel. 4587,93REJ_10.2_18.2,What happened before the person drank from the cup/glass/bottle?,1,Sequence_T4_776,Sequence_T4,Lied on the bed.,Put down the towel.,Closed the closet/cabinet.,Put down the food.,Put down the towel. 4588,93REJ_10.2_32,What happened before the person sat on the floor?,0,Sequence_T4_777,Sequence_T4,Put down the towel.,Took the cup/glass/bottle.,Closed the box.,Closed the laptop.,Put down the towel. 4589,FO24A_0_9,What happened before the person held the phone/camera?,1,Sequence_T4_778,Sequence_T4,Closed the closet/cabinet.,Sat at the table.,Threw the pillow.,Put down the bag.,Sat at the table. 4590,YX3V0_1.4_7.7,What happened before the person took the book?,1,Sequence_T4_784,Sequence_T4,Opened the bag.,Tidied up the table.,Threw the pillow.,Closed the door.,Tidied up the table. 4591,5GP8M_8.5_34,What happened before the person held the picture?,1,Sequence_T4_789,Sequence_T4,Lied on the bed.,Took the book.,Opened the box.,Took the phone/camera.,Took the book. 4592,5GP8M_8.5_31.5,What happened before the person watched at the picture?,3,Sequence_T4_790,Sequence_T4,Put down the blanket.,Closed the door.,Threw the pillow.,Took the book.,Took the book. 4593,8XXNK_3_14.4,What happened before the person put down the food?,3,Sequence_T4_807,Sequence_T4,Opened the refrigerator.,Took the dish.,Lied on the floor.,Opened the box.,Opened the box. 4594,9YOI8_4.8_22.7,What happened before the person drank from the cup/glass/bottle?,1,Sequence_T4_811,Sequence_T4,Took the picture.,Opened the window.,Took the phone/camera.,Sat at the table.,Opened the window. 4595,HOYUT_9.1_16,What happened before the person opened the door?,2,Sequence_T4_813,Sequence_T4,Closed the book.,Ate the medicine.,Threw the towel.,Sat on the floor.,Threw the towel. 4596,HOYUT_12.3_20.1,What happened before the person took the towel?,0,Sequence_T4_814,Sequence_T4,Closed the closet/cabinet.,Threw the clothes.,Lied on the bed.,Lied on the sofa/couch.,Closed the closet/cabinet. 4597,7TA23_8.7_21.4,What happened before the person put down the shoe?,0,Sequence_T4_824,Sequence_T4,Took the phone/camera.,Opened the box.,Took the blanket.,Took the paper/notebook.,Took the phone/camera. 4598,QCVZN_12.8_26,What happened before the person sat on the sofa/couch?,1,Sequence_T4_827,Sequence_T4,Put down the clothes.,Put down the book.,Closed the door.,Tidied up the blanket.,Put down the book. 4599,QCVZN_12.8_26,What happened before the person sat at the table?,2,Sequence_T4_828,Sequence_T4,Put down the dish.,Threw the blanket.,Put down the book.,Took the cup/glass/bottle.,Put down the book. 4600,ICQUJ_15.9_22,What happened before the person held the food?,1,Sequence_T4_838,Sequence_T4,Lied on the floor.,Put down the sandwich.,Put down the cup/glass/bottle.,Took the box.,Put down the sandwich. 4601,M6ERH_11.6_33,What happened before the person sat at the table?,3,Sequence_T4_842,Sequence_T4,Sat at the table.,Put down the dish.,Washed the cup/glass/bottle.,Put down the food.,Put down the food. 4602,S444Y_6.3_37,What happened before the person held the clothes?,2,Sequence_T4_855,Sequence_T4,Opened the bag.,Took the laptop.,Took the bag.,Took the book.,Took the bag. 4603,727IZ_5.3_14.7,What happened before the person closed the closet/cabinet?,3,Sequence_T4_909,Sequence_T4,Put down the dish.,Put down the food.,Took the bag.,Took the paper/notebook.,Took the paper/notebook. 4604,Q5YDL_13_20.1,What happened before the person took the food?,1,Sequence_T4_926,Sequence_T4,Sat at the table.,Closed the laptop.,Closed the box.,Opened the box.,Closed the laptop. 4605,EEGGA_0_8.9,What happened before the person took the food?,3,Sequence_T4_939,Sequence_T4,Took the bag.,Put down the towel.,Put down the phone/camera.,Put down the blanket.,Put down the blanket. 4606,X8JVY_4.4_30,What happened before the person put down the food?,3,Sequence_T4_941,Sequence_T4,Took the bag.,Put down the pillow.,Closed the door.,Took the book.,Took the book. 4607,W0XPU_0.3_24,What happened before the person sat on the bed?,2,Sequence_T4_956,Sequence_T4,Closed the door.,Lied on the bed.,Put down the shoe.,Lied on the floor.,Put down the shoe. 4608,W0XPU_17.3_32,What happened before the person held the food?,0,Sequence_T4_957,Sequence_T4,Took the sandwich.,Washed the clothes.,Put down the sandwich.,Put down the picture.,Took the sandwich. 4609,W0XPU_0.3_24.3,What happened before the person took the sandwich?,3,Sequence_T4_958,Sequence_T4,Tidied up the clothes.,Took the clothes.,Opened the refrigerator.,Put down the shoe.,Put down the shoe. 4610,TIPFG_5.3_16.3,What happened before the person closed the box?,2,Sequence_T4_1023,Sequence_T4,Put down the food.,Threw the towel.,Took the shoe.,Opened the closet/cabinet.,Took the shoe. 4611,RRQEV_12.3_19,What happened before the person held the picture?,0,Sequence_T4_1024,Sequence_T4,Took the book.,Took the clothes.,Sat on the sofa/couch.,Took the box.,Took the book. 4612,BFH78_7.7_19.9,What happened before the person opened the book?,2,Sequence_T4_1036,Sequence_T4,Lied on the floor.,Tidied up the clothes.,Took the phone/camera.,Took the bag.,Took the phone/camera. 4613,BFH78_17.9_23.2,What happened before the person put down the book?,1,Sequence_T4_1037,Sequence_T4,Closed the laptop.,Took the paper/notebook.,Took the book.,Put down the shoe.,Took the paper/notebook. 4614,BFH78_14.4_22.4,What happened before the person took the paper/notebook?,3,Sequence_T4_1038,Sequence_T4,Closed the closet/cabinet.,Put down the phone/camera.,Took the phone/camera.,Opened the book.,Opened the book. 4615,BFH78_19.3_25,What happened before the person took the towel?,2,Sequence_T4_1039,Sequence_T4,Tidied up the towel.,Lied on the bed.,Put down the paper/notebook.,Ate the sandwich.,Put down the paper/notebook. 4616,ZVRBL_0_12.3,What happened before the person held the dish?,2,Sequence_T4_1091,Sequence_T4,Took the cup/glass/bottle.,Sat on the floor.,Tidied up the table.,Opened the door.,Tidied up the table. 4617,ZVRBL_0_16.6,What happened before the person put down the dish?,3,Sequence_T4_1092,Sequence_T4,Took the towel.,Opened the door.,Closed the window.,Tidied up the table.,Tidied up the table. 4618,LUQWY_0.9_32.8,What happened before the person sat on the bed?,2,Sequence_T4_1114,Sequence_T4,Closed the door.,Closed the laptop.,Took the laptop.,Put down the broom.,Took the laptop. 4619,LUQWY_0.9_32.8,What happened before the person sat on the sofa/couch?,3,Sequence_T4_1115,Sequence_T4,Threw the food.,Took the cup/glass/bottle.,Took the broom.,Took the laptop.,Took the laptop. 4620,LD6TD_12.2_36,What happened before the person took the cup/glass/bottle?,2,Sequence_T4_1120,Sequence_T4,Threw the broom.,Ate the medicine.,Closed the book.,Washed the window.,Closed the book. 4621,TDGNE_6.1_27.8,What happened before the person opened the door?,3,Sequence_T4_1128,Sequence_T4,Closed the book.,Threw the food.,Threw the blanket.,Put down the food.,Put down the food. 4622,RQRRD_7.5_22.3,What happened before the person threw the clothes?,1,Sequence_T4_1149,Sequence_T4,Opened the bag.,Closed the box.,Took the blanket.,Threw the pillow.,Closed the box. 4623,RQRRD_5.9_14.6,What happened before the person held the clothes?,2,Sequence_T4_1150,Sequence_T4,Took the broom.,Put down the broom.,Opened the box.,Took the shoe.,Opened the box. 4624,3CLVI_18.9_29.3,What happened before the person threw the clothes?,0,Sequence_T4_1158,Sequence_T4,Closed the closet/cabinet.,Put down the towel.,Put down the paper/notebook.,Ate the sandwich.,Closed the closet/cabinet. 4625,J7BOV_8.4_29.4,What happened before the person drank from the cup/glass/bottle?,1,Sequence_T4_1164,Sequence_T4,Took the blanket.,Took the dish.,Threw the broom.,Tidied up the table.,Took the dish. 4626,J7BOV_8.4_32.9,What happened before the person put down the cup/glass/bottle?,1,Sequence_T4_1165,Sequence_T4,Threw the clothes.,Took the dish.,Closed the book.,Put down the broom.,Took the dish. 4627,J7BOV_4.6_12.4,What happened before the person took the cup/glass/bottle?,2,Sequence_T4_1166,Sequence_T4,Put down the dish.,Opened the book.,Put down the phone/camera.,Took the food.,Put down the phone/camera. 4628,UY0SK_10.9_18,What happened before the person took the dish?,0,Sequence_T4_1195,Sequence_T4,Put down the paper/notebook.,Opened the laptop.,Lied on the floor.,Opened the refrigerator.,Put down the paper/notebook. 4629,DPLMM_0_13.2,What happened before the person put down the pillow?,2,Sequence_T4_1196,Sequence_T4,Threw the clothes.,Closed the closet/cabinet.,Sat on the floor.,Put down the towel.,Sat on the floor. 4630,DPLMM_0_12.8,What happened before the person took the pillow?,0,Sequence_T4_1197,Sequence_T4,Sat on the floor.,Threw the blanket.,Threw the shoe.,Closed the door.,Sat on the floor. 4631,UYZKX_3.9_26.9,What happened before the person threw the blanket?,1,Sequence_T4_1202,Sequence_T4,Put down the bag.,Opened the closet/cabinet.,Took the towel.,Threw the broom.,Opened the closet/cabinet. 4632,FQS7O_6.9_23.6,What happened before the person tidied up the table?,3,Sequence_T4_1213,Sequence_T4,Took the towel.,Took the pillow.,Put down the cup/glass/bottle.,Closed the book.,Closed the book. 4633,35ZZP_3.5_12.4,What happened before the person put down the food?,3,Sequence_T4_1238,Sequence_T4,Opened the door.,Took the broom.,Took the cup/glass/bottle.,Closed the closet/cabinet.,Closed the closet/cabinet. 4634,D1NT7_3.2_14.3,What happened before the person closed the box?,0,Sequence_T4_1256,Sequence_T4,Put down the dish.,Opened the door.,Put down the bag.,Tidied up the blanket.,Put down the dish. 4635,D1NT7_15.5_33,What happened before the person tidied up the clothes?,2,Sequence_T4_1258,Sequence_T4,Opened the bag.,Took the sandwich.,Took the blanket.,Sat on the floor.,Took the blanket. 4636,1FIGA_15.5_24.9,What happened before the person closed the door?,1,Sequence_T4_1297,Sequence_T4,Threw the shoe.,Put down the book.,Put down the clothes.,Ate the sandwich.,Put down the book. 4637,1FIGA_9.6_19.5,What happened before the person opened the door?,1,Sequence_T4_1298,Sequence_T4,Lied on the bed.,Closed the box.,Put down the picture.,Washed the cup/glass/bottle.,Closed the box. 4638,W8XQ9_0.2_21.7,What happened before the person put down the clothes?,0,Sequence_T4_1300,Sequence_T4,Tidied up the table.,Opened the laptop.,Opened the window.,Took the pillow.,Tidied up the table. 4639,W8XQ9_0.2_20.9,What happened before the person held the clothes?,1,Sequence_T4_1301,Sequence_T4,Lied on the bed.,Tidied up the table.,Threw the book.,Opened the refrigerator.,Tidied up the table. 4640,S673O_0_31.4,What happened before the person ate the sandwich?,1,Sequence_T4_1321,Sequence_T4,Lied on the bed.,Lied on the sofa/couch.,Opened the laptop.,Put down the towel.,Lied on the sofa/couch. 4641,2PREF_0_15.1,What happened before the person opened the closet/cabinet?,0,Sequence_T4_1340,Sequence_T4,Put down the dish.,Closed the box.,Closed the book.,Threw the shoe.,Put down the dish. 4642,2PREF_0_14.4,What happened before the person took the food?,2,Sequence_T4_1342,Sequence_T4,Closed the book.,Took the dish.,Put down the dish.,Opened the refrigerator.,Put down the dish. 4643,2WGSN_14_27.1,What happened before the person washed the dish?,3,Sequence_T4_1347,Sequence_T4,Sat on the sofa/couch.,Opened the book.,Took the cup/glass/bottle.,Took the towel.,Took the towel. 4644,EDVAM_0_16,What happened before the person closed the window?,2,Sequence_T4_1348,Sequence_T4,Put down the food.,Washed the window.,Sat on the sofa/couch.,Opened the door.,Sat on the sofa/couch. 4645,YMGGV_0_17.9,What happened before the person took the blanket?,0,Sequence_T4_1397,Sequence_T4,Sat on the sofa/couch.,Threw the box.,Put down the broom.,Opened the closet/cabinet.,Sat on the sofa/couch. 4646,LW5O6_9.5_17,What happened before the person held the shoe?,1,Sequence_T4_1398,Sequence_T4,Lied on the bed.,Took the bag.,Tidied up the towel.,Put down the bag.,Took the bag. 4647,MD6P2_0_13.4,What happened before the person opened the box?,0,Sequence_T4_1401,Sequence_T4,Ate the medicine.,Put down the shoe.,Opened the box.,Put down the cup/glass/bottle.,Ate the medicine. 4648,MD6P2_5_22.3,What happened before the person held the medicine?,1,Sequence_T4_1402,Sequence_T4,Took the dish.,Opened the box.,Threw the box.,Washed the window.,Opened the box. 4649,MD6P2_5_29.3,What happened before the person tidied up the table?,2,Sequence_T4_1404,Sequence_T4,Took the towel.,Put down the box.,Opened the box.,Put down the book.,Opened the box. 4650,WXUZK_1.9_31,What happened before the person lied on the bed?,3,Sequence_T4_1417,Sequence_T4,Closed the laptop.,Put down the laptop.,Threw the blanket.,Threw the clothes.,Threw the clothes. 4651,NM65M_4.3_16.9,What happened before the person threw the blanket?,1,Sequence_T4_1438,Sequence_T4,Took the food.,Took the pillow.,Put down the pillow.,Took the phone/camera.,Took the pillow. 4652,RXLKF_0_9.4,What happened before the person sat on the sofa/couch?,2,Sequence_T4_1440,Sequence_T4,Threw the blanket.,Closed the door.,Took the book.,Lied on the sofa/couch.,Took the book. 4653,NVGDG_9.8_32.8,What happened before the person held the blanket?,2,Sequence_T4_1449,Sequence_T4,Tidied up the closet/cabinet.,Took the towel.,Sat on the sofa/couch.,Threw the food.,Sat on the sofa/couch. 4654,NVGDG_9.8_17.3,What happened before the person took the blanket?,1,Sequence_T4_1450,Sequence_T4,Took the book.,Sat on the sofa/couch.,Put down the clothes.,Closed the book.,Sat on the sofa/couch. 4655,K71S1_0_24.3,What happened before the person sat on the floor?,0,Sequence_T4_1463,Sequence_T4,Opened the box.,Sat on the floor.,Washed the cup/glass/bottle.,Took the box.,Opened the box. 4656,JOLLV_0_17.3,What happened before the person opened the refrigerator?,2,Sequence_T4_1486,Sequence_T4,Took the food.,Took the pillow.,Sat on the sofa/couch.,Put down the pillow.,Sat on the sofa/couch. 4657,V3RAX_7.1_21.2,What happened before the person took the clothes?,1,Sequence_T4_1496,Sequence_T4,Washed the clothes.,Threw the blanket.,Took the towel.,Opened the bag.,Threw the blanket. 4658,V3RAX_7.1_19.5,What happened before the person put down the clothes?,3,Sequence_T4_1497,Sequence_T4,Lied on the sofa/couch.,Put down the cup/glass/bottle.,Lied on the floor.,Threw the blanket.,Threw the blanket. 4659,FM5D5_4.2_18.1,What happened before the person tidied up the clothes?,0,Sequence_T4_1500,Sequence_T4,Threw the bag.,Closed the book.,Took the sandwich.,Closed the door.,Threw the bag. 4660,8LAK1_4.4_22.5,What happened before the person held the shoe?,0,Sequence_T4_1502,Sequence_T4,Put down the food.,Put down the shoe.,Closed the book.,Took the clothes.,Put down the food. 4661,8LAK1_4.4_29,What happened before the person took the shoe?,3,Sequence_T4_1503,Sequence_T4,Took the broom.,Put down the towel.,Threw the box.,Put down the food.,Put down the food. 4662,IWF0U_0.8_20.3,What happened before the person sat at the table?,3,Sequence_T4_1513,Sequence_T4,Opened the book.,Threw the bag.,Threw the shoe.,Tidied up the blanket.,Tidied up the blanket. 4663,STAFD_3.3_46.4,What happened before the person threw the clothes?,0,Sequence_T4_1543,Sequence_T4,Ate the sandwich.,Put down the book.,Opened the refrigerator.,Put down the cup/glass/bottle.,Ate the sandwich. 4664,YFI1M_14.2_26.1,What happened before the person took the phone/camera?,1,Sequence_T4_1553,Sequence_T4,Opened the window.,Put down the clothes.,Took the paper/notebook.,Put down the shoe.,Put down the clothes. 4665,P2HZG_4_18.4,What happened before the person opened the closet/cabinet?,0,Sequence_T4_1567,Sequence_T4,Closed the laptop.,Put down the cup/glass/bottle.,Put down the food.,Threw the bag.,Closed the laptop. 4666,PDRVY_9_24.6,What happened before the person closed the closet/cabinet?,1,Sequence_T4_1596,Sequence_T4,Put down the food.,Took the bag.,Threw the pillow.,Threw the clothes.,Took the bag. 4667,01ZWG_4.9_13.5,What happened before the person sat at the table?,3,Sequence_T4_1616,Sequence_T4,Took the cup/glass/bottle.,Closed the box.,Threw the bag.,Opened the laptop.,Opened the laptop. 4668,IO712_3.7_28.2,What happened before the person held the book?,3,Sequence_T4_1632,Sequence_T4,Threw the box.,Threw the pillow.,Took the blanket.,Sat on the floor.,Sat on the floor. 4669,IO712_3.7_14.3,What happened before the person opened the book?,3,Sequence_T4_1633,Sequence_T4,Ate the sandwich.,Tidied up the clothes.,Put down the cup/glass/bottle.,Sat on the floor.,Sat on the floor. 4670,IO712_0_8.6,What happened before the person took the book?,0,Sequence_T4_1634,Sequence_T4,Closed the window.,Opened the door.,Sat on the floor.,Threw the shoe.,Closed the window. 4671,IO712_3.7_31.5,What happened before the person watched at the book?,0,Sequence_T4_1636,Sequence_T4,Sat on the floor.,Took the phone/camera.,Tidied up the table.,Took the paper/notebook.,Sat on the floor. 4672,KVYOZ_1.2_8,What happened before the person took the cup/glass/bottle?,3,Sequence_T4_1665,Sequence_T4,Tidied up the blanket.,Put down the blanket.,Threw the clothes.,Put down the picture.,Put down the picture. 4673,KVYOZ_0_6,What happened before the person put down the picture?,1,Sequence_T4_1666,Sequence_T4,Put down the dish.,Sat on the floor.,Sat on the sofa/couch.,Opened the book.,Sat on the floor. 4674,V8JOH_0_22,What happened before the person closed the door?,1,Sequence_T4_1668,Sequence_T4,Opened the box.,Ate the medicine.,Took the pillow.,Took the laptop.,Ate the medicine. 4675,SHVVB_15.7_31,What happened before the person held the sandwich?,2,Sequence_T4_1689,Sequence_T4,Lied on the sofa/couch.,Closed the door.,Put down the paper/notebook.,Sat on the floor.,Put down the paper/notebook. 4676,FM078_27.7_36.2,What happened before the person opened the bag?,3,Sequence_T4_1692,Sequence_T4,Put down the food.,Took the food.,Put down the pillow.,Closed the closet/cabinet.,Closed the closet/cabinet. 4677,41EQS_6.8_33,What happened before the person sat at the table?,3,Sequence_T4_1694,Sequence_T4,Threw the broom.,Opened the laptop.,Tidied up the towel.,Threw the bag.,Threw the bag. 4678,41EQS_3.6_13.8,What happened before the person threw the bag?,1,Sequence_T4_1695,Sequence_T4,Took the blanket.,Put down the blanket.,Closed the book.,Took the clothes.,Put down the blanket. 4679,41EQS_6.8_33,What happened before the person drank from the cup/glass/bottle?,1,Sequence_T4_1696,Sequence_T4,Sat on the sofa/couch.,Threw the bag.,Ate the sandwich.,Opened the book.,Threw the bag. 4680,6PL9Z_0_9.5,What happened before the person took the blanket?,0,Sequence_T4_1705,Sequence_T4,Sat on the sofa/couch.,Put down the laptop.,Took the shoe.,Put down the clothes.,Sat on the sofa/couch. 4681,6PL9Z_3.4_11.3,What happened before the person held the book?,1,Sequence_T4_1706,Sequence_T4,Closed the window.,Took the blanket.,Washed the table.,Opened the door.,Took the blanket. 4682,DRGKV_12.4_30.6,What happened before the person held the phone/camera?,0,Sequence_T4_1717,Sequence_T4,Threw the clothes.,Took the laptop.,Threw the book.,Put down the towel.,Threw the clothes. 4683,ICL1M_16.1_26.2,What happened before the person drank from the cup/glass/bottle?,3,Sequence_T4_1726,Sequence_T4,Closed the laptop.,Sat on the floor.,Put down the dish.,Closed the book.,Closed the book. 4684,ICL1M_16.1_31,What happened before the person put down the cup/glass/bottle?,0,Sequence_T4_1727,Sequence_T4,Closed the book.,Lied on the bed.,Took the book.,Tidied up the blanket.,Closed the book. 4685,BWG9B_0_32,What happened before the person sat on the sofa/couch?,3,Sequence_T4_1750,Sequence_T4,Sat at the table.,Threw the food.,Closed the door.,Took the cup/glass/bottle.,Took the cup/glass/bottle. 4686,5OIQ7_0_27.1,What happened before the person drank from the cup/glass/bottle?,1,Sequence_T4_1751,Sequence_T4,Took the bag.,Lied on the bed.,Put down the broom.,Put down the dish.,Lied on the bed. 4687,5OIQ7_0_28.8,What happened before the person ate the medicine?,0,Sequence_T4_1752,Sequence_T4,Lied on the bed.,Took the phone/camera.,Took the bag.,Put down the sandwich.,Lied on the bed. 4688,LH6LE_15.2_26.9,What happened before the person closed the closet/cabinet?,0,Sequence_T4_1775,Sequence_T4,Put down the dish.,Put down the broom.,Opened the door.,Took the book.,Put down the dish. 4689,OUAIS_23.1_36.7,What happened before the person opened the door?,2,Sequence_T4_1789,Sequence_T4,Put down the towel.,Sat on the sofa/couch.,Threw the pillow.,Took the broom.,Threw the pillow. 4690,OUAIS_11.7_29,What happened before the person threw the pillow?,3,Sequence_T4_1790,Sequence_T4,Took the book.,Put down the picture.,Put down the book.,Took the clothes.,Took the clothes. 4691,2LCLG_18.2_32,What happened before the person held the book?,0,Sequence_T4_1796,Sequence_T4,Threw the bag.,Threw the clothes.,Took the laptop.,Sat on the sofa/couch.,Threw the bag. 4692,2LCLG_11_17.2,What happened before the person threw the book?,3,Sequence_T4_1797,Sequence_T4,Threw the clothes.,Put down the paper/notebook.,Put down the cup/glass/bottle.,Took the paper/notebook.,Took the paper/notebook. 4693,TZL6H_0_21.9,What happened before the person drank from the cup/glass/bottle?,3,Sequence_T4_1801,Sequence_T4,Took the broom.,Threw the pillow.,Put down the dish.,Ate the medicine.,Ate the medicine. 4694,TZL6H_0_32,What happened before the person washed the mirror?,2,Sequence_T4_1802,Sequence_T4,Took the towel.,Put down the phone/camera.,Ate the medicine.,Tidied up the closet/cabinet.,Ate the medicine. 4695,TZL6H_0_27.9,What happened before the person held the clothes?,3,Sequence_T4_1803,Sequence_T4,Washed the clothes.,Threw the broom.,Tidied up the closet/cabinet.,Ate the medicine.,Ate the medicine. 4696,U6L1X_19.8_27.2,What happened before the person closed the closet/cabinet?,1,Sequence_T4_1810,Sequence_T4,Opened the window.,Put down the broom.,Took the clothes.,Put down the clothes.,Put down the broom. 4697,ZNH10_12.3_30,What happened before the person held the blanket?,2,Sequence_T4_1814,Sequence_T4,Closed the refrigerator.,Took the clothes.,Took the towel.,Threw the blanket.,Took the towel. 4698,CH8XJ_13.5_25.4,What happened before the person threw the shoe?,3,Sequence_T4_1824,Sequence_T4,Put down the picture.,Tidied up the towel.,Opened the bag.,Opened the closet/cabinet.,Opened the closet/cabinet. 4699,2NV6L_9.6_27.8,What happened before the person took the pillow?,1,Sequence_T4_1833,Sequence_T4,Washed the table.,Put down the bag.,Took the dish.,Ate the sandwich.,Put down the bag. 4700,MUO4G_0_12.8,What happened before the person opened the refrigerator?,1,Sequence_T4_1862,Sequence_T4,Threw the clothes.,Sat on the table.,Threw the blanket.,Opened the box.,Sat on the table. 4701,RRZU3_3.3_21.6,What happened before the person drank from the cup/glass/bottle?,1,Sequence_T4_1869,Sequence_T4,Sat on the sofa/couch.,Opened the laptop.,Put down the picture.,Tidied up the clothes.,Opened the laptop. 4702,RRZU3_3.3_22.2,What happened before the person put down the dish?,2,Sequence_T4_1870,Sequence_T4,Threw the clothes.,Took the cup/glass/bottle.,Opened the laptop.,Threw the box.,Opened the laptop. 4703,5MF9Y_13.6_20.3,What happened before the person threw the food?,0,Sequence_T4_1886,Sequence_T4,Put down the broom.,Closed the book.,Closed the window.,Opened the refrigerator.,Put down the broom. 4704,UEC1F_12.6_18.7,What happened before the person held the clothes?,0,Sequence_T4_1918,Sequence_T4,Took the blanket.,Took the phone/camera.,Put down the book.,Took the laptop.,Took the blanket. 4705,2544C_10.6_78.7,What happened before the person took the broom?,2,Sequence_T4_1924,Sequence_T4,Took the blanket.,Opened the window.,Put down the towel.,Opened the closet/cabinet.,Put down the towel. 4706,2544C_10.6_45,What happened before the person tidied up the table?,3,Sequence_T4_1925,Sequence_T4,Closed the door.,Put down the box.,Closed the book.,Put down the towel.,Put down the towel. 4707,C6LW1_19.4_25.8,What happened before the person took the cup/glass/bottle?,1,Sequence_T4_1960,Sequence_T4,Opened the refrigerator.,Put down the phone/camera.,Took the broom.,Put down the broom.,Put down the phone/camera. 4708,JBJGX_12.3_28.4,What happened before the person put down the clothes?,3,Sequence_T4_1978,Sequence_T4,Closed the door.,Took the blanket.,Took the paper/notebook.,Closed the laptop.,Closed the laptop. 4709,43FG9_0.7_8.7,What happened before the person put down the clothes?,0,Sequence_T4_1979,Sequence_T4,Closed the closet/cabinet.,Took the phone/camera.,Took the bag.,Washed the window.,Closed the closet/cabinet. 4710,9335E_19.1_43,What happened before the person opened the closet/cabinet?,2,Sequence_T4_1982,Sequence_T4,Took the cup/glass/bottle.,Put down the food.,Put down the dish.,Put down the book.,Put down the dish. 4711,WLA52_0.6_23,What happened before the person put down the blanket?,3,Sequence_T4_1987,Sequence_T4,Put down the laptop.,Sat on the bed.,Opened the box.,Took the clothes.,Took the clothes. 4712,ZCH1J_0_23.2,What happened before the person held the food?,3,Sequence_T4_1990,Sequence_T4,Tidied up the table.,Put down the picture.,Took the sandwich.,Opened the bag.,Opened the bag. 4713,N2GFQ_6.9_39,What happened before the person lied on the sofa/couch?,3,Sequence_T4_1995,Sequence_T4,Threw the book.,Ate the medicine.,Took the blanket.,Put down the bag.,Put down the bag. 4714,WRW74_3.7_24.9,What happened before the person took the dish?,3,Sequence_T4_2003,Sequence_T4,Closed the laptop.,Washed the clothes.,Closed the refrigerator.,Opened the box.,Opened the box. 4715,WRW74_3.7_19.1,What happened before the person held the dish?,0,Sequence_T4_2004,Sequence_T4,Opened the box.,Threw the clothes.,Put down the box.,Opened the refrigerator.,Opened the box. 4716,BQKW5_2.7_16.2,What happened before the person took the towel?,2,Sequence_T4_2015,Sequence_T4,Closed the book.,Put down the bag.,Put down the box.,Put down the dish.,Put down the box. 4717,BQKW5_11.5_32.7,What happened before the person washed the clothes?,1,Sequence_T4_2016,Sequence_T4,Opened the door.,Put down the towel.,Put down the shoe.,Threw the bag.,Put down the towel. 4718,XXIT4_0_18.9,What happened before the person ate the sandwich?,1,Sequence_T4_2023,Sequence_T4,Put down the book.,Sat at the table.,Took the pillow.,Threw the clothes.,Sat at the table. 4719,9BCZU_21.3_32.1,What happened before the person put down the blanket?,1,Sequence_T4_2026,Sequence_T4,Put down the blanket.,Took the clothes.,Sat on the sofa/couch.,Took the sandwich.,Took the clothes. 4720,9BCZU_25_34,What happened before the person washed the clothes?,0,Sequence_T4_2027,Sequence_T4,Put down the blanket.,Opened the door.,Washed the clothes.,Lied on the sofa/couch.,Put down the blanket. 4721,HJM82_0_30.7,What happened before the person drank from the cup/glass/bottle?,0,Sequence_T4_2028,Sequence_T4,Took the phone/camera.,Closed the closet/cabinet.,Closed the window.,Took the dish.,Took the phone/camera. 4722,9PXC0_11.2_26.3,What happened before the person held the phone/camera?,2,Sequence_T4_2030,Sequence_T4,Sat at the table.,Put down the cup/glass/bottle.,Opened the box.,Put down the dish.,Opened the box. 4723,BCONW_5.5_30.1,What happened before the person put down the cup/glass/bottle?,3,Sequence_T4_2054,Sequence_T4,Opened the refrigerator.,Closed the closet/cabinet.,Washed the clothes.,Closed the refrigerator.,Closed the refrigerator. 4724,BCONW_5.5_29,What happened before the person drank from the cup/glass/bottle?,3,Sequence_T4_2056,Sequence_T4,Sat on the bed.,Opened the bag.,Put down the dish.,Closed the refrigerator.,Closed the refrigerator. 4725,JZDL6_9_28.7,What happened before the person held the shoe?,2,Sequence_T4_2068,Sequence_T4,Put down the towel.,Closed the window.,Sat on the bed.,Closed the door.,Sat on the bed. 4726,FETME_7.4_20.4,What happened before the person held the book?,1,Sequence_T4_2072,Sequence_T4,Sat on the bed.,Took the paper/notebook.,Took the picture.,Threw the book.,Took the paper/notebook. 4727,FETME_7.4_15.7,What happened before the person opened the book?,1,Sequence_T4_2073,Sequence_T4,Put down the towel.,Took the paper/notebook.,Took the bag.,Tidied up the table.,Took the paper/notebook. 4728,J6TVB_10.5_25.3,What happened before the person took the phone/camera?,3,Sequence_T4_2080,Sequence_T4,Took the picture.,Put down the clothes.,Threw the clothes.,Put down the dish.,Put down the dish. 4729,ZAJAJ_2.4_17.6,What happened before the person took the picture?,2,Sequence_T4_2126,Sequence_T4,Opened the door.,Tidied up the table.,Put down the pillow.,Washed the window.,Put down the pillow. 4730,ZAJAJ_12.2_29.1,What happened before the person opened the laptop?,1,Sequence_T4_2127,Sequence_T4,Put down the dish.,Took the picture.,Put down the bag.,Tidied up the towel.,Took the picture. 4731,I20N2_8.4_31.1,What happened before the person held the clothes?,2,Sequence_T4_2141,Sequence_T4,Opened the door.,Put down the box.,Took the towel.,Tidied up the clothes.,Took the towel. 4732,KLP7V_7.9_25,What happened before the person drank from the cup/glass/bottle?,2,Sequence_T4_2143,Sequence_T4,Took the sandwich.,Put down the clothes.,Put down the box.,Put down the shoe.,Put down the box. 4733,WBS4I_14.2_30.4,What happened before the person watched at the book?,2,Sequence_T4_2160,Sequence_T4,Put down the sandwich.,Washed the table.,Opened the closet/cabinet.,Put down the pillow.,Opened the closet/cabinet. 4734,P4DL9_0_32.2,What happened before the person took the phone/camera?,0,Sequence_T4_2163,Sequence_T4,Closed the refrigerator.,Threw the broom.,Opened the book.,Took the box.,Closed the refrigerator. 4735,OO4FE_10.4_31,What happened before the person sat at the table?,1,Sequence_T4_2165,Sequence_T4,Put down the dish.,Took the book.,Threw the book.,Threw the towel.,Took the book. 4736,OO4FE_0.1_18.3,What happened before the person took the book?,0,Sequence_T4_2166,Sequence_T4,Threw the bag.,Put down the book.,Put down the sandwich.,Sat on the floor.,Threw the bag. 4737,52WDV_1.2_26.7,What happened before the person opened the book?,0,Sequence_T4_2167,Sequence_T4,Took the clothes.,Tidied up the clothes.,Ate the sandwich.,Put down the book.,Took the clothes. 4738,LSVHK_18.1_27.3,What happened before the person opened the door?,1,Sequence_T4_2172,Sequence_T4,Put down the cup/glass/bottle.,Threw the towel.,Threw the book.,Took the food.,Threw the towel. 4739,FX1T5_2.6_14.3,What happened before the person opened the book?,0,Sequence_T4_2173,Sequence_T4,Put down the picture.,Took the towel.,Took the cup/glass/bottle.,Threw the shoe.,Put down the picture. 4740,OCVY4_0_8.1,What happened before the person took the food?,3,Sequence_T4_2197,Sequence_T4,Put down the broom.,Opened the book.,Closed the closet/cabinet.,Put down the bag.,Put down the bag. 4741,KU656_0_12.8,What happened before the person took the towel?,2,Sequence_T4_2212,Sequence_T4,Tidied up the closet/cabinet.,Put down the clothes.,Lied on the bed.,Took the cup/glass/bottle.,Lied on the bed. 4742,SM5WL_0_17.1,What happened before the person tidied up the blanket?,0,Sequence_T4_2247,Sequence_T4,Lied on the bed.,Threw the clothes.,Took the cup/glass/bottle.,Closed the door.,Lied on the bed. 4743,3IRHH_0.7_21.3,What happened before the person put down the dish?,1,Sequence_T4_2249,Sequence_T4,Put down the box.,Took the paper/notebook.,Opened the closet/cabinet.,Took the blanket.,Took the paper/notebook. 4744,7SXQS_11_32,What happened before the person sat at the table?,1,Sequence_T4_2254,Sequence_T4,Threw the clothes.,Took the blanket.,Put down the towel.,Threw the blanket.,Took the blanket. 4745,7SXQS_1_17.5,What happened before the person took the blanket?,2,Sequence_T4_2255,Sequence_T4,Closed the laptop.,Put down the clothes.,Closed the window.,Lied on the sofa/couch.,Closed the window. 4746,1UI6I_4.5_16.4,What happened before the person held the mirror?,2,Sequence_T4_2266,Sequence_T4,Took the cup/glass/bottle.,Sat on the table.,Closed the closet/cabinet.,Opened the window.,Closed the closet/cabinet. 4747,5I4UT_2.7_10.7,What happened before the person watched at the picture?,1,Sequence_T4_2270,Sequence_T4,Opened the book.,Lied on the floor.,Washed the clothes.,Took the food.,Lied on the floor. 4748,R1RDT_5_26.1,What happened before the person closed the door?,0,Sequence_T4_2327,Sequence_T4,Lied on the bed.,Sat on the table.,Opened the book.,Threw the towel.,Lied on the bed. 4749,R1RDT_5_26.3,What happened before the person held the phone/camera?,1,Sequence_T4_2328,Sequence_T4,Put down the towel.,Lied on the bed.,Washed the window.,Sat at the table.,Lied on the bed. 4750,FL6DF_3.2_13.6,What happened before the person tidied up the blanket?,3,Sequence_T4_2330,Sequence_T4,Took the book.,Took the dish.,Opened the box.,Opened the laptop.,Opened the laptop. 4751,FL6DF_3.2_13.5,What happened before the person held the blanket?,3,Sequence_T4_2331,Sequence_T4,Opened the bag.,Put down the picture.,Threw the towel.,Opened the laptop.,Opened the laptop. 4752,FL6DF_10.3_19.7,What happened before the person put down the laptop?,3,Sequence_T4_2332,Sequence_T4,Washed the window.,Put down the shoe.,Closed the door.,Threw the pillow.,Threw the pillow. 4753,ZS9XR_10.6_41.9,What happened before the person tidied up the table?,0,Sequence_T4_2343,Sequence_T4,Ate the medicine.,Put down the bag.,Put down the food.,Opened the laptop.,Ate the medicine. 4754,ZS9XR_23.3_43.2,What happened before the person washed the table?,1,Sequence_T4_2344,Sequence_T4,Closed the refrigerator.,Put down the paper/notebook.,Put down the dish.,Put down the sandwich.,Put down the paper/notebook. 4755,ZS9XR_10.6_33.3,What happened before the person put down the paper/notebook?,2,Sequence_T4_2346,Sequence_T4,Washed the clothes.,Closed the laptop.,Ate the medicine.,Closed the book.,Ate the medicine. 4756,MLS4T_2.3_12.3,What happened before the person took the cup/glass/bottle?,1,Sequence_T4_2364,Sequence_T4,Threw the blanket.,Threw the box.,Put down the shoe.,Took the clothes.,Threw the box. 4757,YGQ7E_8.9_22,What happened before the person opened the door?,3,Sequence_T4_2365,Sequence_T4,Put down the box.,Put down the clothes.,Took the phone/camera.,Tidied up the table.,Tidied up the table. 4758,BAUQE_0_10.2,What happened before the person took the broom?,2,Sequence_T4_2367,Sequence_T4,Put down the phone/camera.,Put down the box.,Tidied up the clothes.,Opened the closet/cabinet.,Tidied up the clothes. 4759,BGQIF_1.6_9.4,What happened before the person put down the pillow?,0,Sequence_T4_2372,Sequence_T4,Sat on the sofa/couch.,Threw the towel.,Threw the shoe.,Tidied up the blanket.,Sat on the sofa/couch. 4760,BGQIF_2.9_17.7,What happened before the person held the food?,3,Sequence_T4_2373,Sequence_T4,Threw the towel.,Threw the clothes.,Opened the closet/cabinet.,Put down the pillow.,Put down the pillow. 4761,BGQIF_2.9_37.4,What happened before the person held the food?,1,Sequence_T4_2374,Sequence_T4,Closed the box.,Put down the pillow.,Took the broom.,Took the towel.,Put down the pillow. 4762,APVAD_17.3_26.2,What happened before the person opened the door?,1,Sequence_T4_2375,Sequence_T4,Took the towel.,Took the book.,Opened the door.,Sat at the table.,Took the book. 4763,UF91R_7.3_14.3,What happened before the person opened the refrigerator?,2,Sequence_T4_2378,Sequence_T4,Put down the food.,Sat on the table.,Closed the laptop.,Put down the blanket.,Closed the laptop. 4764,PQYWB_6.1_36.1,What happened before the person opened the door?,0,Sequence_T4_2387,Sequence_T4,Put down the towel.,Put down the sandwich.,Threw the towel.,Opened the laptop.,Put down the towel. 4765,ZXSRR_0_37,What happened before the person ate the sandwich?,2,Sequence_T4_2391,Sequence_T4,Threw the book.,Closed the book.,Put down the laptop.,Put down the phone/camera.,Put down the laptop. 4766,ZXSRR_0_37,What happened before the person held the sandwich?,0,Sequence_T4_2392,Sequence_T4,Put down the laptop.,Took the food.,Sat on the table.,Closed the laptop.,Put down the laptop. 4767,ZXSRR_0_37,What happened before the person held the food?,3,Sequence_T4_2393,Sequence_T4,Put down the cup/glass/bottle.,Closed the window.,Closed the laptop.,Put down the laptop.,Put down the laptop. 4768,ZXSRR_0_37,What happened before the person took the food?,3,Sequence_T4_2394,Sequence_T4,Ate the sandwich.,Closed the laptop.,Threw the pillow.,Put down the laptop.,Put down the laptop. 4769,ZXSRR_0_37,What happened before the person took the sandwich?,1,Sequence_T4_2395,Sequence_T4,Put down the dish.,Put down the laptop.,Took the clothes.,Put down the broom.,Put down the laptop. 4770,ZXSRR_0_37,What happened before the person took the book?,3,Sequence_T4_2396,Sequence_T4,Put down the food.,Washed the clothes.,Closed the book.,Put down the laptop.,Put down the laptop. 4771,PRV4N_2.7_42.5,What happened before the person watched at the book?,2,Sequence_T4_2409,Sequence_T4,Closed the closet/cabinet.,Sat on the bed.,Took the cup/glass/bottle.,Opened the window.,Took the cup/glass/bottle. 4772,NNG97_0.6_14,What happened before the person took the laptop?,0,Sequence_T4_2411,Sequence_T4,Put down the book.,Opened the refrigerator.,Sat on the bed.,Put down the towel.,Put down the book. 4773,X8XQE_7.9_38.8,What happened before the person held the phone/camera?,3,Sequence_T4_2421,Sequence_T4,Opened the door.,Ate the sandwich.,Put down the broom.,Closed the closet/cabinet.,Closed the closet/cabinet. 4774,EFR6I_16.9_35.2,What happened before the person held the book?,3,Sequence_T4_2426,Sequence_T4,Opened the window.,Took the shoe.,Sat on the bed.,Took the paper/notebook.,Took the paper/notebook. 4775,EFR6I_16.9_28.2,What happened before the person watched at the book?,1,Sequence_T4_2427,Sequence_T4,Closed the window.,Took the paper/notebook.,Took the book.,Threw the shoe.,Took the paper/notebook. 4776,NKCXF_9.8_16.8,What happened before the person took the phone/camera?,3,Sequence_T4_2432,Sequence_T4,Took the cup/glass/bottle.,Closed the door.,Threw the box.,Put down the pillow.,Put down the pillow. 4777,ZZ2SF_16.2_32,What happened before the person drank from the cup/glass/bottle?,2,Sequence_T4_2472,Sequence_T4,Opened the closet/cabinet.,Opened the box.,Ate the medicine.,Took the laptop.,Ate the medicine. 4778,8L9AJ_13.7_31.2,What happened before the person closed the box?,3,Sequence_T4_2473,Sequence_T4,Ate the sandwich.,Closed the refrigerator.,Ate the medicine.,Took the laptop.,Took the laptop. 4779,9X208_22.2_30.4,What happened before the person opened the door?,0,Sequence_T4_2474,Sequence_T4,Took the towel.,Opened the box.,Took the blanket.,Washed the cup/glass/bottle.,Took the towel. 4780,Q3HZI_0_17.7,What happened before the person opened the door?,3,Sequence_T4_2488,Sequence_T4,Put down the clothes.,Took the blanket.,Put down the food.,Took the pillow.,Took the pillow. 4781,2YJUQ_4.3_31.6,What happened before the person watched outside the window?,2,Sequence_T4_2489,Sequence_T4,Washed the table.,Opened the door.,Sat at the table.,Opened the box.,Sat at the table. 4782,2YJUQ_4.3_22.8,What happened before the person drank from the cup/glass/bottle?,2,Sequence_T4_2490,Sequence_T4,Tidied up the towel.,Closed the box.,Sat at the table.,Closed the closet/cabinet.,Sat at the table. 4783,2YJUQ_4.3_34.7,What happened before the person put down the cup/glass/bottle?,0,Sequence_T4_2491,Sequence_T4,Sat at the table.,Put down the laptop.,Sat on the bed.,Closed the box.,Sat at the table. 4784,EUJK0_17.1_26.6,What happened before the person took the book?,0,Sequence_T4_2518,Sequence_T4,Put down the laptop.,Opened the book.,Put down the paper/notebook.,Threw the clothes.,Put down the laptop. 4785,8MLCU_4.4_14.4,What happened before the person opened the refrigerator?,1,Sequence_T4_2528,Sequence_T4,Took the pillow.,Put down the box.,Tidied up the blanket.,Opened the door.,Put down the box. 4786,FTG07_0.9_9.6,What happened before the person took the cup/glass/bottle?,1,Sequence_T4_2541,Sequence_T4,Put down the phone/camera.,Tidied up the table.,Opened the refrigerator.,Threw the book.,Tidied up the table. 4787,GLGQJ_21.1_39.1,What happened before the person held the phone/camera?,0,Sequence_T4_2542,Sequence_T4,Closed the window.,Put down the clothes.,Put down the broom.,Closed the book.,Closed the window. 4788,TOOYI_0_5.7,What happened before the person took the blanket?,0,Sequence_T4_2548,Sequence_T4,Opened the box.,Put down the bag.,Took the pillow.,Put down the box.,Opened the box. 4789,PV745_7.2_26.5,What happened before the person held the book?,3,Sequence_T4_2561,Sequence_T4,Took the clothes.,Ate the sandwich.,Opened the window.,Took the box.,Took the box. 4790,PV745_7.2_69.7,What happened before the person put down the shoe?,2,Sequence_T4_2562,Sequence_T4,Sat on the table.,Opened the box.,Took the box.,Put down the paper/notebook.,Took the box. 4791,PV745_7.2_74,What happened before the person put down the clothes?,0,Sequence_T4_2563,Sequence_T4,Took the box.,Threw the pillow.,Opened the bag.,Took the laptop.,Took the box. 4792,PV745_7.2_35,What happened before the person put down the food?,3,Sequence_T4_2564,Sequence_T4,Opened the bag.,Threw the shoe.,Sat at the table.,Took the box.,Took the box. 4793,QXT9W_37.2_62.7,What happened before the person watched outside the window?,1,Sequence_T4_2608,Sequence_T4,Put down the food.,Put down the book.,Sat on the bed.,Put down the towel.,Put down the book. 4794,QXT9W_3.2_43.1,What happened before the person sat at the table?,3,Sequence_T4_2609,Sequence_T4,Closed the box.,Put down the food.,Put down the picture.,Took the book.,Took the book. 4795,HONL7_0.1_11,What happened before the person put down the paper/notebook?,2,Sequence_T4_2640,Sequence_T4,Took the food.,Washed the table.,Took the book.,Lied on the floor.,Took the book. 4796,TETZ7_12.5_20.6,What happened before the person opened the door?,2,Sequence_T4_2646,Sequence_T4,Took the towel.,Put down the towel.,Took the phone/camera.,Put down the bag.,Took the phone/camera. 4797,X9WTR_23.8_62.7,What happened before the person sat at the table?,2,Sequence_T4_2651,Sequence_T4,Took the clothes.,Took the shoe.,Took the book.,Put down the food.,Took the book. 4798,QRWQ3_13_33.3,What happened before the person opened the box?,0,Sequence_T4_2656,Sequence_T4,Put down the dish.,Put down the laptop.,Tidied up the blanket.,Lied on the floor.,Put down the dish. 4799,QRWQ3_26.1_37,What happened before the person held the medicine?,1,Sequence_T4_2657,Sequence_T4,Opened the closet/cabinet.,Opened the box.,Threw the pillow.,Put down the box.,Opened the box. 4800,XQDQ4_7.4_27.1,What happened before the person opened the box?,2,Sequence_T4_2715,Sequence_T4,Tidied up the blanket.,Put down the dish.,Took the cup/glass/bottle.,Opened the closet/cabinet.,Took the cup/glass/bottle. 4801,6B93R_6.8_33.9,What happened before the person took the cup/glass/bottle?,2,Sequence_T4_2717,Sequence_T4,Threw the blanket.,Threw the broom.,Put down the food.,Opened the closet/cabinet.,Put down the food. 4802,F5TL0_8.8_21.9,What happened before the person took the cup/glass/bottle?,3,Sequence_T4_2724,Sequence_T4,Ate the medicine.,Opened the refrigerator.,Tidied up the closet/cabinet.,Closed the refrigerator.,Closed the refrigerator. 4803,106AY_15_25.5,What happened before the person took the cup/glass/bottle?,1,Sequence_T4_2743,Sequence_T4,Opened the door.,Put down the box.,Put down the dish.,Washed the table.,Put down the box. 4804,3EIRZ_0.2_11.3,What happened before the person tidied up the clothes?,0,Sequence_T4_2744,Sequence_T4,Ate the sandwich.,Put down the picture.,Took the broom.,Took the book.,Ate the sandwich. 4805,GMMVC_0_16.4,What happened before the person closed the book?,2,Sequence_T4_2775,Sequence_T4,Put down the phone/camera.,Ate the medicine.,Put down the blanket.,Tidied up the table.,Put down the blanket. 4806,GMMVC_10.6_17.4,What happened before the person put down the paper/notebook?,2,Sequence_T4_2776,Sequence_T4,Threw the box.,Threw the bag.,Closed the book.,Tidied up the clothes.,Closed the book. 4807,GTK8W_18.8_30.7,What happened before the person took the food?,0,Sequence_T4_2783,Sequence_T4,Closed the book.,Put down the paper/notebook.,Tidied up the blanket.,Took the broom.,Closed the book. 4808,GTK8W_30.8_38,What happened before the person put down the food?,2,Sequence_T4_2784,Sequence_T4,Sat on the sofa/couch.,Tidied up the blanket.,Took the bag.,Took the sandwich.,Took the bag. 4809,GTK8W_18.8_29.2,What happened before the person watched outside the window?,3,Sequence_T4_2786,Sequence_T4,Put down the shoe.,Closed the door.,Threw the bag.,Closed the book.,Closed the book. 4810,D87LI_14.9_20.7,What happened before the person took the phone/camera?,3,Sequence_T4_2788,Sequence_T4,Tidied up the towel.,Opened the door.,Put down the paper/notebook.,Closed the laptop.,Closed the laptop. 4811,AK9IB_24.3_31.4,What happened before the person put down the shoe?,0,Sequence_T4_2790,Sequence_T4,Opened the box.,Took the box.,Took the cup/glass/bottle.,Took the clothes.,Opened the box. 4812,AK9IB_24.5_35,What happened before the person closed the box?,3,Sequence_T4_2791,Sequence_T4,Took the dish.,Sat on the bed.,Put down the pillow.,Put down the shoe.,Put down the shoe. 4813,ALXUC_2.8_17,What happened before the person held the food?,1,Sequence_T4_2803,Sequence_T4,Threw the box.,Took the sandwich.,Threw the broom.,Tidied up the closet/cabinet.,Took the sandwich. 4814,2RTH2_11.6_17.6,What happened before the person took the cup/glass/bottle?,2,Sequence_T4_2834,Sequence_T4,Threw the blanket.,Closed the refrigerator.,Put down the towel.,Put down the shoe.,Put down the towel. 4815,VT64S_3.6_33,What happened before the person held the food?,0,Sequence_T4_2844,Sequence_T4,Took the bag.,Put down the shoe.,Put down the dish.,Took the laptop.,Took the bag. 4816,T0LOH_0_21.7,What happened before the person held the clothes?,2,Sequence_T4_2859,Sequence_T4,Washed the cup/glass/bottle.,Put down the picture.,Took the blanket.,Put down the food.,Took the blanket. 4817,2ZXJ5_7.5_16.8,What happened before the person held the pillow?,0,Sequence_T4_2866,Sequence_T4,Sat on the sofa/couch.,Took the sandwich.,Threw the clothes.,Washed the cup/glass/bottle.,Sat on the sofa/couch. 4818,9LHP3_6.4_32.2,What happened before the person held the phone/camera?,2,Sequence_T4_2922,Sequence_T4,Opened the book.,Threw the box.,Sat on the sofa/couch.,Took the clothes.,Sat on the sofa/couch. 4819,BZ1TH_0_7.9,What happened before the person took the cup/glass/bottle?,1,Sequence_T4_2924,Sequence_T4,Put down the sandwich.,Opened the book.,Threw the food.,Threw the towel.,Opened the book. 4820,QL92H_13.1_19.9,What happened before the person closed the closet/cabinet?,1,Sequence_T4_2945,Sequence_T4,Washed the cup/glass/bottle.,Took the book.,Put down the blanket.,Opened the refrigerator.,Took the book. 4821,QL92H_2.9_14.2,What happened before the person opened the closet/cabinet?,3,Sequence_T4_2946,Sequence_T4,Put down the food.,Opened the bag.,Threw the pillow.,Threw the bag.,Threw the bag. 4822,7T6MB_0_32,What happened before the person held the medicine?,1,Sequence_T4_2960,Sequence_T4,Closed the door.,Took the shoe.,Opened the bag.,Threw the book.,Took the shoe. 4823,7T6MB_0_32,What happened before the person lied on the bed?,3,Sequence_T4_2961,Sequence_T4,Took the picture.,Took the laptop.,Opened the door.,Took the shoe.,Took the shoe. 4824,RAQNI_8.1_18.6,What happened before the person put down the clothes?,1,Sequence_T4_2973,Sequence_T4,Took the blanket.,Tidied up the blanket.,Put down the clothes.,Washed the cup/glass/bottle.,Tidied up the blanket. 4825,RAQNI_14.9_33,What happened before the person watched outside the window?,1,Sequence_T4_2974,Sequence_T4,Sat on the floor.,Took the clothes.,Closed the door.,Threw the box.,Took the clothes. 4826,3B81O_0_22.2,What happened before the person washed the dish?,1,Sequence_T4_2980,Sequence_T4,Put down the blanket.,Opened the window.,Sat at the table.,Lied on the floor.,Opened the window. 4827,3B81O_0_21.6,What happened before the person put down the dish?,1,Sequence_T4_2982,Sequence_T4,Took the paper/notebook.,Opened the window.,Took the shoe.,Threw the blanket.,Opened the window. 4828,T1KK1_0_8.2,What happened before the person put down the cup/glass/bottle?,1,Sequence_T4_3007,Sequence_T4,Put down the picture.,Took the dish.,Put down the laptop.,Opened the refrigerator.,Took the dish. 4829,T5JY8_14.9_32,What happened before the person watched outside the window?,3,Sequence_T4_3011,Sequence_T4,Put down the cup/glass/bottle.,Sat at the table.,Washed the clothes.,Took the cup/glass/bottle.,Took the cup/glass/bottle. 4830,VO45S_9.1_32,What happened before the person washed the cup/glass/bottle?,2,Sequence_T4_3040,Sequence_T4,Took the dish.,Washed the cup/glass/bottle.,Put down the box.,Took the sandwich.,Put down the box. 4831,VO45S_9.1_27.7,What happened before the person washed the dish?,3,Sequence_T4_3041,Sequence_T4,Washed the table.,Took the cup/glass/bottle.,Tidied up the towel.,Put down the box.,Put down the box. 4832,VGAMG_4_15.6,What happened before the person put down the dish?,1,Sequence_T4_3045,Sequence_T4,Put down the blanket.,Took the cup/glass/bottle.,Opened the closet/cabinet.,Lied on the floor.,Took the cup/glass/bottle. 4833,4P13T_0_17,What happened before the person put down the book?,1,Sequence_T4_3050,Sequence_T4,Ate the medicine.,Took the bag.,Tidied up the blanket.,Opened the bag.,Took the bag. 4834,K34BE_1.1_18,What happened before the person held the broom?,0,Sequence_T4_3054,Sequence_T4,Took the bag.,Put down the towel.,Closed the window.,Tidied up the clothes.,Took the bag. 4835,M3S4D_1.2_17.5,What happened before the person drank from the cup/glass/bottle?,0,Sequence_T4_3055,Sequence_T4,Put down the box.,Took the phone/camera.,Threw the box.,Sat on the floor.,Put down the box. 4836,AS7SG_18_26.4,What happened before the person ate the sandwich?,0,Sequence_T4_3109,Sequence_T4,Put down the laptop.,Opened the refrigerator.,Threw the towel.,Put down the clothes.,Put down the laptop. 4837,RCD08_6.7_30.2,What happened before the person threw the towel?,1,Sequence_T4_3131,Sequence_T4,Took the clothes.,Took the blanket.,Took the shoe.,Put down the dish.,Took the blanket. 4838,RCD08_6.7_30.1,What happened before the person put down the clothes?,2,Sequence_T4_3132,Sequence_T4,Took the dish.,Opened the book.,Took the blanket.,Opened the closet/cabinet.,Took the blanket. 4839,JKZG5_0.5_8.7,What happened before the person drank from the cup/glass/bottle?,3,Sequence_T4_3141,Sequence_T4,Opened the door.,Put down the laptop.,Tidied up the towel.,Ate the medicine.,Ate the medicine. 4840,JJON5_6.7_29,What happened before the person put down the food?,0,Sequence_T4_3150,Sequence_T4,Opened the refrigerator.,Put down the broom.,Opened the closet/cabinet.,Took the cup/glass/bottle.,Opened the refrigerator. 4841,MVPQF_1.7_18.5,What happened before the person took the food?,1,Sequence_T4_3153,Sequence_T4,Put down the cup/glass/bottle.,Put down the bag.,Threw the pillow.,Closed the box.,Put down the bag. 4842,MVPQF_14.5_32.2,What happened before the person held the food?,0,Sequence_T4_3154,Sequence_T4,Took the sandwich.,Closed the door.,Sat at the table.,Took the blanket.,Took the sandwich. 4843,9K2TY_19.2_32,What happened before the person threw the towel?,1,Sequence_T4_3207,Sequence_T4,Opened the door.,Put down the blanket.,Put down the phone/camera.,Sat on the table.,Put down the blanket. 4844,2RRSO_4.4_31,What happened before the person held the medicine?,0,Sequence_T4_3257,Sequence_T4,Tidied up the clothes.,Threw the clothes.,Put down the bag.,Lied on the floor.,Tidied up the clothes. 4845,2RRSO_4.4_31,What happened before the person held the food?,2,Sequence_T4_3258,Sequence_T4,Took the cup/glass/bottle.,Opened the refrigerator.,Tidied up the clothes.,Put down the shoe.,Tidied up the clothes. 4846,52MV9_13.9_32.7,What happened before the person ate the sandwich?,3,Sequence_T4_3260,Sequence_T4,Threw the broom.,Put down the cup/glass/bottle.,Opened the book.,Put down the dish.,Put down the dish. 4847,52MV9_13.9_72,What happened before the person held the food?,3,Sequence_T4_3263,Sequence_T4,Put down the sandwich.,Opened the bag.,Tidied up the towel.,Put down the dish.,Put down the dish. 4848,WCERV_1.4_23,What happened before the person took the paper/notebook?,0,Sequence_T4_3265,Sequence_T4,Put down the blanket.,Put down the paper/notebook.,Put down the sandwich.,Lied on the floor.,Put down the blanket. 4849,RZY2I_4_10,What happened before the person opened the window?,0,Sequence_T4_3269,Sequence_T4,Took the bag.,Tidied up the table.,Sat at the table.,Put down the blanket.,Took the bag. 4850,DQEC3_0_17.2,What happened before the person opened the bag?,0,Sequence_T4_3292,Sequence_T4,Tidied up the closet/cabinet.,Put down the towel.,Sat on the sofa/couch.,Threw the pillow.,Tidied up the closet/cabinet. 4851,NLWBW_6.8_44,What happened before the person drank from the cup/glass/bottle?,2,Sequence_T4_3298,Sequence_T4,Closed the window.,Washed the cup/glass/bottle.,Put down the bag.,Ate the medicine.,Put down the bag. 4852,D7KU2_0_14.1,What happened before the person put down the broom?,1,Sequence_T4_3300,Sequence_T4,Opened the door.,Sat on the floor.,Took the laptop.,Ate the sandwich.,Sat on the floor. 4853,3V2HJ_4.8_23,What happened before the person drank from the cup/glass/bottle?,0,Sequence_T4_3325,Sequence_T4,Put down the bag.,Washed the table.,Opened the box.,Closed the refrigerator.,Put down the bag. 4854,3064K_3_18,What happened before the person put down the clothes?,3,Sequence_T4_3326,Sequence_T4,Opened the window.,Tidied up the closet/cabinet.,Took the food.,Tidied up the blanket.,Tidied up the blanket. 4855,JBY4E_2.8_10.4,What happened before the person took the dish?,3,Sequence_T4_3328,Sequence_T4,Put down the food.,Put down the box.,Took the paper/notebook.,Put down the blanket.,Put down the blanket. 4856,WN7T3_1.1_32,What happened before the person watched outside the window?,0,Sequence_T4_3331,Sequence_T4,Put down the box.,Closed the window.,Put down the laptop.,Sat at the table.,Put down the box. 4857,3MLVF_16.1_32,What happened before the person put down the cup/glass/bottle?,2,Sequence_T4_3334,Sequence_T4,Put down the cup/glass/bottle.,Tidied up the clothes.,Closed the refrigerator.,Closed the closet/cabinet.,Closed the refrigerator. 4858,EK19H_3.8_18.5,What happened before the person held the food?,2,Sequence_T4_3351,Sequence_T4,Put down the sandwich.,Washed the window.,Took the sandwich.,Threw the pillow.,Took the sandwich. 4859,FRLW2_8.6_32,What happened before the person threw the shoe?,0,Sequence_T4_3356,Sequence_T4,Put down the bag.,Opened the bag.,Ate the sandwich.,Put down the phone/camera.,Put down the bag. 4860,75KQ6_8.8_22,What happened before the person held the food?,3,Sequence_T4_3360,Sequence_T4,Threw the blanket.,Opened the bag.,Closed the box.,Put down the dish.,Put down the dish. 4861,57MEO_0_14.2,What happened before the person held the book?,3,Sequence_T4_3361,Sequence_T4,Lied on the sofa/couch.,Put down the cup/glass/bottle.,Took the clothes.,Opened the door.,Opened the door. 4862,3W6TL_8.4_19.9,What happened before the person closed the door?,2,Sequence_T4_3393,Sequence_T4,Opened the bag.,Put down the sandwich.,Put down the pillow.,Took the food.,Put down the pillow. 4863,YCGJS_8_32,What happened before the person held the food?,1,Sequence_T4_3394,Sequence_T4,Took the paper/notebook.,Sat at the table.,Closed the book.,Put down the towel.,Sat at the table. 4864,86GSE_9.6_20,What happened before the person sat on the sofa/couch?,2,Sequence_T4_3422,Sequence_T4,Closed the refrigerator.,Put down the towel.,Took the shoe.,Sat on the table.,Took the shoe. 4865,9J166_9.9_21.9,What happened before the person closed the book?,3,Sequence_T4_3429,Sequence_T4,Closed the door.,Sat at the table.,Took the phone/camera.,Opened the window.,Opened the window. 4866,V9XR6_13.7_37.7,What happened before the person opened the closet/cabinet?,1,Sequence_T4_3430,Sequence_T4,Sat on the floor.,Lied on the bed.,Put down the box.,Put down the phone/camera.,Lied on the bed. 4867,68YR6_15.8_32,What happened before the person washed the window?,0,Sequence_T4_3478,Sequence_T4,Closed the door.,Lied on the floor.,Took the picture.,Opened the box.,Closed the door. 4868,M506V_9.4_32,What happened before the person tidied up the table?,1,Sequence_T4_3495,Sequence_T4,Put down the pillow.,Threw the towel.,Opened the door.,Put down the food.,Threw the towel. 4869,1ZBUS_5.2_21.8,What happened before the person held the sandwich?,0,Sequence_T4_3501,Sequence_T4,Sat at the table.,Put down the shoe.,Opened the laptop.,Ate the medicine.,Sat at the table. 4870,I4N6K_14.6_26.1,What happened before the person tidied up the table?,1,Sequence_T4_3511,Sequence_T4,Lied on the sofa/couch.,Closed the book.,Put down the cup/glass/bottle.,Closed the door.,Closed the book. 4871,M2XIS_2.7_9.4,What happened before the person opened the laptop?,0,Sequence_T4_3512,Sequence_T4,Sat on the sofa/couch.,Put down the laptop.,Tidied up the table.,Ate the sandwich.,Sat on the sofa/couch. 4872,M2XIS_0_7.4,What happened before the person sat on the sofa/couch?,0,Sequence_T4_3513,Sequence_T4,Put down the laptop.,Took the paper/notebook.,Put down the pillow.,Ate the medicine.,Put down the laptop. 4873,9A58F_2.9_10.9,What happened before the person took the laptop?,1,Sequence_T4_3514,Sequence_T4,Closed the book.,Threw the shoe.,Tidied up the clothes.,Threw the box.,Threw the shoe. 4874,P2UBC_6_29.3,What happened before the person opened the door?,1,Sequence_T4_3551,Sequence_T4,Took the picture.,Sat on the sofa/couch.,Took the shoe.,Put down the book.,Sat on the sofa/couch. 4875,P2UBC_6_21.8,What happened before the person took the shoe?,2,Sequence_T4_3552,Sequence_T4,Opened the closet/cabinet.,Put down the shoe.,Sat on the sofa/couch.,Took the cup/glass/bottle.,Sat on the sofa/couch. 4876,CII5H_11.6_23.9,What happened before the person closed the door?,2,Sequence_T4_3572,Sequence_T4,Ate the medicine.,Put down the clothes.,Put down the blanket.,Took the clothes.,Put down the blanket. 4877,4U52R_8.5_30,What happened before the person held the broom?,0,Sequence_T4_3623,Sequence_T4,Put down the box.,Put down the clothes.,Sat on the floor.,Took the food.,Put down the box. 4878,4U52R_8.5_30,What happened before the person sat on the bed?,3,Sequence_T4_3624,Sequence_T4,Opened the laptop.,Put down the clothes.,Ate the sandwich.,Put down the box.,Put down the box. 4879,6N7G6_0.2_35,What happened before the person held the blanket?,2,Sequence_T4_3631,Sequence_T4,Took the towel.,Ate the medicine.,Sat at the table.,Put down the laptop.,Sat at the table. 4880,6N7G6_0.2_32.6,What happened before the person took the blanket?,2,Sequence_T4_3632,Sequence_T4,Washed the table.,Took the clothes.,Sat at the table.,Put down the broom.,Sat at the table. 4881,TWZA4_0.5_18.3,What happened before the person held the phone/camera?,3,Sequence_T4_3650,Sequence_T4,Took the shoe.,Threw the pillow.,Took the clothes.,Opened the book.,Opened the book. 4882,M1GW9_0.2_9.9,What happened before the person opened the door?,2,Sequence_T4_3651,Sequence_T4,Put down the bag.,Lied on the bed.,Took the pillow.,Took the phone/camera.,Took the pillow. 4883,M1GW9_13.5_27.5,What happened before the person closed the door?,2,Sequence_T4_3652,Sequence_T4,Washed the table.,Put down the broom.,Threw the pillow.,Put down the bag.,Threw the pillow. 4884,EO6OI_3.9_10.6,What happened before the person put down the blanket?,1,Sequence_T4_3666,Sequence_T4,Threw the pillow.,Tidied up the towel.,Tidied up the table.,Took the pillow.,Tidied up the towel. 4885,EO6OI_18.6_28.7,What happened before the person put down the towel?,2,Sequence_T4_3670,Sequence_T4,Tidied up the table.,Opened the bag.,Washed the table.,Took the book.,Washed the table. 4886,L7HA6_0_26.7,What happened before the person drank from the cup/glass/bottle?,3,Sequence_T4_3673,Sequence_T4,Put down the towel.,Closed the door.,Threw the food.,Took the phone/camera.,Took the phone/camera. 4887,8G9A9_6.1_21.1,What happened before the person drank from the cup/glass/bottle?,3,Sequence_T4_3694,Sequence_T4,Washed the table.,Opened the box.,Opened the closet/cabinet.,Put down the laptop.,Put down the laptop. 4888,8G9A9_1.9_14.7,What happened before the person held the phone/camera?,0,Sequence_T4_3695,Sequence_T4,Took the laptop.,Sat on the sofa/couch.,Put down the shoe.,Put down the cup/glass/bottle.,Took the laptop. 4889,8G9A9_6.1_16.9,What happened before the person took the cup/glass/bottle?,1,Sequence_T4_3696,Sequence_T4,Threw the box.,Put down the laptop.,Opened the book.,Washed the window.,Put down the laptop. 4890,8G9A9_1.9_11.9,What happened before the person put down the phone/camera?,3,Sequence_T4_3697,Sequence_T4,Opened the window.,Put down the dish.,Closed the door.,Took the laptop.,Took the laptop. 4891,R9382_13.4_29,What happened before the person ate the sandwich?,1,Sequence_T4_3719,Sequence_T4,Sat on the floor.,Closed the refrigerator.,Closed the closet/cabinet.,Took the box.,Closed the refrigerator. 4892,R9382_13.4_27.5,What happened before the person held the sandwich?,2,Sequence_T4_3720,Sequence_T4,Tidied up the blanket.,Closed the door.,Closed the refrigerator.,Threw the towel.,Closed the refrigerator. 4893,L8Y8D_29.5_36.5,What happened before the person opened the refrigerator?,1,Sequence_T4_3733,Sequence_T4,Tidied up the blanket.,Closed the closet/cabinet.,Washed the cup/glass/bottle.,Put down the dish.,Closed the closet/cabinet. 4894,F6A4W_8_28,What happened before the person put down the dish?,0,Sequence_T4_3767,Sequence_T4,Took the shoe.,Put down the paper/notebook.,Took the pillow.,Took the cup/glass/bottle.,Took the shoe. 4895,AEUVY_16.4_31,What happened before the person held the broom?,0,Sequence_T4_3780,Sequence_T4,Put down the phone/camera.,Put down the cup/glass/bottle.,Washed the table.,Tidied up the closet/cabinet.,Put down the phone/camera. 4896,8DL54_17.1_27.8,What happened before the person closed the refrigerator?,2,Sequence_T4_3787,Sequence_T4,Put down the box.,Put down the book.,Put down the dish.,Threw the clothes.,Put down the dish. 4897,PHH6B_2.1_8.7,What happened before the person held the food?,3,Sequence_T4_3790,Sequence_T4,Threw the book.,Tidied up the clothes.,Threw the box.,Took the sandwich.,Took the sandwich. 4898,CSLEP_0_21,What happened before the person put down the clothes?,0,Sequence_T4_3793,Sequence_T4,Lied on the bed.,Put down the clothes.,Opened the bag.,Put down the book.,Lied on the bed. 4899,CSLEP_0_13.2,What happened before the person took the clothes?,0,Sequence_T4_3794,Sequence_T4,Lied on the bed.,Lied on the sofa/couch.,Took the food.,Put down the towel.,Lied on the bed. 4900,HFTEO_6.1_32,What happened before the person sat on the floor?,2,Sequence_T4_3805,Sequence_T4,Put down the shoe.,Put down the towel.,Put down the clothes.,Put down the box.,Put down the clothes. 4901,8VWV2_1.6_10.9,What happened before the person held the dish?,2,Sequence_T4_3811,Sequence_T4,Sat on the bed.,Threw the book.,Sat at the table.,Opened the door.,Sat at the table. 4902,BLIFO_1_10.8,What happened before the person tidied up the towel?,0,Sequence_T4_3821,Sequence_T4,Opened the closet/cabinet.,Closed the door.,Threw the clothes.,Threw the box.,Opened the closet/cabinet. 4903,AWGMW_0_14.3,What happened before the person took the cup/glass/bottle?,2,Sequence_T4_3822,Sequence_T4,Ate the sandwich.,Opened the book.,Lied on the sofa/couch.,Sat on the table.,Lied on the sofa/couch. 4904,J84TZ_0_21,What happened before the person took the blanket?,0,Sequence_T4_3825,Sequence_T4,Lied on the sofa/couch.,Tidied up the closet/cabinet.,Sat on the sofa/couch.,Threw the box.,Lied on the sofa/couch. 4905,HCM5Y_0_18.4,What happened before the person opened the door?,2,Sequence_T4_3850,Sequence_T4,Put down the paper/notebook.,Tidied up the blanket.,Sat on the floor.,Took the shoe.,Sat on the floor. 4906,RKGG5_6_11.5,What happened before the person took the pillow?,1,Sequence_T4_3851,Sequence_T4,Put down the phone/camera.,Threw the broom.,Took the cup/glass/bottle.,Sat on the sofa/couch.,Threw the broom. 4907,RKGG5_7_21,What happened before the person lied on the sofa/couch?,0,Sequence_T4_3852,Sequence_T4,Took the pillow.,Opened the door.,Took the phone/camera.,Threw the box.,Took the pillow. 4908,C69Y1_11_42.5,What happened before the person drank from the cup/glass/bottle?,1,Sequence_T4_3866,Sequence_T4,Took the sandwich.,Closed the closet/cabinet.,Put down the sandwich.,Took the dish.,Closed the closet/cabinet. 4909,59KH0_7.7_35,What happened before the person sat at the table?,2,Sequence_T4_3897,Sequence_T4,Took the cup/glass/bottle.,Took the shoe.,Took the clothes.,Threw the towel.,Took the clothes. 4910,AXS82_13.7_28.8,What happened before the person held the sandwich?,0,Sequence_T4_3900,Sequence_T4,Closed the book.,Washed the cup/glass/bottle.,Put down the shoe.,Threw the broom.,Closed the book. 4911,AXS82_13.7_31,What happened before the person opened the refrigerator?,3,Sequence_T4_3901,Sequence_T4,Put down the bag.,Opened the closet/cabinet.,Put down the food.,Closed the book.,Closed the book. 4912,6KIA4_0_24,What happened before the person washed the table?,1,Sequence_T4_3919,Sequence_T4,Took the towel.,Took the dish.,Put down the clothes.,Threw the box.,Took the dish. 4913,J4RPL_16.5_26.8,What happened before the person took the towel?,0,Sequence_T4_3922,Sequence_T4,Put down the paper/notebook.,Threw the pillow.,Sat on the bed.,Took the picture.,Put down the paper/notebook. 4914,L58KN_8.5_31,What happened before the person opened the window?,2,Sequence_T4_3967,Sequence_T4,Put down the bag.,Threw the blanket.,Threw the towel.,Took the picture.,Threw the towel. 4915,L58KN_8.5_31,What happened before the person opened the closet/cabinet?,3,Sequence_T4_3968,Sequence_T4,Put down the cup/glass/bottle.,Lied on the bed.,Took the towel.,Threw the towel.,Threw the towel. 4916,937EW_6.7_33,What happened before the person tidied up the closet/cabinet?,3,Sequence_T4_3969,Sequence_T4,Washed the clothes.,Threw the pillow.,Closed the closet/cabinet.,Took the clothes.,Took the clothes. 4917,937EW_6.7_24.2,What happened before the person watched at the picture?,1,Sequence_T4_3970,Sequence_T4,Closed the door.,Took the clothes.,Put down the laptop.,Threw the bag.,Took the clothes. 4918,MNC10_7.6_17.5,What happened before the person took the food?,3,Sequence_T4_3971,Sequence_T4,Threw the book.,Closed the door.,Opened the refrigerator.,Threw the broom.,Threw the broom. 4919,9OMY1_1.2_28,What happened before the person sat on the sofa/couch?,2,Sequence_T4_3995,Sequence_T4,Took the clothes.,Put down the broom.,Opened the box.,Threw the pillow.,Opened the box. 4920,JLGLU_15.4_28.3,What happened before the person closed the door?,2,Sequence_T4_3997,Sequence_T4,Put down the box.,Took the paper/notebook.,Took the towel.,Sat at the table.,Took the towel. 4921,F24GU_10.8_32,What happened before the person watched at the picture?,3,Sequence_T4_3998,Sequence_T4,Washed the table.,Threw the shoe.,Put down the towel.,Lied on the floor.,Lied on the floor. 4922,F24GU_10.8_32,What happened before the person watched at the book?,1,Sequence_T4_3999,Sequence_T4,Sat at the table.,Lied on the floor.,Threw the box.,Tidied up the closet/cabinet.,Lied on the floor. 4923,UMT5R_0_21.2,What happened before the person held the food?,3,Sequence_T4_4008,Sequence_T4,Opened the laptop.,Put down the dish.,Tidied up the clothes.,Took the bag.,Took the bag. 4924,UMT5R_0_24.6,What happened before the person opened the closet/cabinet?,0,Sequence_T4_4009,Sequence_T4,Took the bag.,Sat on the table.,Took the shoe.,Put down the box.,Took the bag. 4925,OE751_18.4_34,What happened before the person held the clothes?,3,Sequence_T4_4016,Sequence_T4,Took the broom.,Took the towel.,Put down the clothes.,Took the blanket.,Took the blanket. 4926,OE751_18.4_34,What happened before the person closed the door?,3,Sequence_T4_4017,Sequence_T4,Put down the shoe.,Closed the laptop.,Closed the door.,Took the blanket.,Took the blanket. 4927,OE751_18.4_33.4,What happened before the person closed the closet/cabinet?,1,Sequence_T4_4018,Sequence_T4,Washed the table.,Took the blanket.,Took the book.,Lied on the bed.,Took the blanket. 4928,EDXBD_0_14,What happened before the person opened the door?,0,Sequence_T4_4024,Sequence_T4,Sat at the table.,Took the picture.,Put down the book.,Threw the shoe.,Sat at the table. 4929,RBC8N_2.5_25.2,What happened before the person took the pillow?,3,Sequence_T4_4050,Sequence_T4,Took the towel.,Ate the sandwich.,Threw the food.,Put down the food.,Put down the food. 4930,B7LO8_2.9_19,What happened before the person took the phone/camera?,1,Sequence_T4_4063,Sequence_T4,Put down the towel.,Put down the clothes.,Lied on the bed.,Put down the shoe.,Put down the clothes. 4931,IKZN3_8.1_33.4,What happened before the person sat at the table?,2,Sequence_T4_4064,Sequence_T4,Took the dish.,Opened the door.,Put down the cup/glass/bottle.,Closed the refrigerator.,Put down the cup/glass/bottle. 4932,IU5TH_6.6_17.6,What happened before the person took the food?,0,Sequence_T4_4072,Sequence_T4,Closed the laptop.,Sat on the sofa/couch.,Took the blanket.,Took the clothes.,Closed the laptop. 4933,DQ46N_22.4_31.7,What happened before the person held the dish?,3,Sequence_T4_4095,Sequence_T4,Closed the door.,Ate the medicine.,Opened the door.,Closed the closet/cabinet.,Closed the closet/cabinet. 4934,M1TZR_27.5_36.4,What happened before the person held the clothes?,1,Sequence_T4_4099,Sequence_T4,Opened the door.,Took the towel.,Threw the book.,Opened the bag.,Took the towel. 4935,9M5UE_11.5_19.4,What happened before the person put down the cup/glass/bottle?,0,Sequence_T4_4131,Sequence_T4,Took the dish.,Closed the refrigerator.,Put down the cup/glass/bottle.,Threw the book.,Took the dish. 4936,R74DE_17.2_23.3,What happened before the person threw the towel?,0,Sequence_T4_4132,Sequence_T4,Put down the blanket.,Tidied up the clothes.,Tidied up the table.,Put down the phone/camera.,Put down the blanket. 4937,7ZCXJ_5.5_29,What happened before the person threw the blanket?,1,Sequence_T4_4162,Sequence_T4,Put down the paper/notebook.,Sat on the floor.,Tidied up the closet/cabinet.,Put down the shoe.,Sat on the floor. 4938,WH1S5_6.8_27.3,What happened before the person held the food?,1,Sequence_T4_4180,Sequence_T4,Closed the box.,Took the sandwich.,Took the picture.,Took the towel.,Took the sandwich. 4939,SMVKB_0_22.8,What happened before the person opened the closet/cabinet?,2,Sequence_T4_4192,Sequence_T4,Washed the table.,Put down the laptop.,Took the pillow.,Took the laptop.,Took the pillow. 4940,RFMRB_11.9_21.7,What happened before the person took the cup/glass/bottle?,3,Sequence_T4_4196,Sequence_T4,Put down the food.,Put down the pillow.,Took the phone/camera.,Tidied up the blanket.,Tidied up the blanket. 4941,5ZDNU_4.1_21.4,What happened before the person took the book?,2,Sequence_T4_4213,Sequence_T4,Ate the medicine.,Put down the cup/glass/bottle.,Put down the clothes.,Put down the box.,Put down the clothes. 4942,0OE6M_3.4_11.9,What happened before the person took the towel?,2,Sequence_T4_4222,Sequence_T4,Opened the bag.,Put down the phone/camera.,Threw the clothes.,Opened the closet/cabinet.,Threw the clothes. 4943,BQAUC_2.1_14.3,What happened before the person held the mirror?,3,Sequence_T4_4230,Sequence_T4,Took the paper/notebook.,Tidied up the table.,Sat on the bed.,Put down the shoe.,Put down the shoe. 4944,1HAYV_0_8.2,What happened before the person drank from the cup/glass/bottle?,0,Sequence_T4_4231,Sequence_T4,Ate the sandwich.,Took the dish.,Washed the cup/glass/bottle.,Took the picture.,Ate the sandwich. 4945,1HAYV_0_26.4,What happened before the person drank from the cup/glass/bottle?,0,Sequence_T4_4232,Sequence_T4,Ate the sandwich.,Opened the door.,Washed the window.,Threw the pillow.,Ate the sandwich. 4946,8BBX0_8.1_19.3,What happened before the person opened the door?,0,Sequence_T4_4257,Sequence_T4,Put down the bag.,Closed the book.,Took the shoe.,Washed the table.,Put down the bag. 4947,8BBX0_18.5_25.5,What happened before the person closed the door?,1,Sequence_T4_4259,Sequence_T4,Threw the clothes.,Took the bag.,Closed the laptop.,Took the pillow.,Took the bag. 4948,ZA7ST_28.2_35,What happened before the person opened the box?,1,Sequence_T4_4280,Sequence_T4,Took the clothes.,Took the bag.,Put down the laptop.,Washed the cup/glass/bottle.,Took the bag. 4949,DGMDT_20.8_30,What happened before the person took the phone/camera?,1,Sequence_T4_4285,Sequence_T4,Sat at the table.,Put down the bag.,Opened the box.,Put down the broom.,Put down the bag. 4950,DGMDT_3.9_23.8,What happened before the person held the food?,3,Sequence_T4_4286,Sequence_T4,Closed the book.,Threw the shoe.,Opened the bag.,Took the bag.,Took the bag. 4951,X4DOF_0_13.6,What happened before the person watched outside the window?,3,Sequence_T4_4310,Sequence_T4,Threw the blanket.,Put down the bag.,Put down the dish.,Took the pillow.,Took the pillow. 4952,3AE3T_2.1_19.5,What happened before the person sat on the sofa/couch?,0,Sequence_T4_4314,Sequence_T4,Put down the laptop.,Opened the box.,Put down the towel.,Threw the broom.,Put down the laptop. 4953,5GPOJ_8.5_14.4,What happened before the person put down the paper/notebook?,1,Sequence_T4_4344,Sequence_T4,Took the book.,Closed the book.,Took the clothes.,Put down the blanket.,Closed the book. 4954,MY5CQ_11.5_19.6,What happened before the person opened the book?,2,Sequence_T4_4355,Sequence_T4,Tidied up the closet/cabinet.,Took the paper/notebook.,Closed the laptop.,Threw the pillow.,Closed the laptop. 4955,0SBT3_0.8_6,What happened before the person took the book?,3,Sequence_T4_4385,Sequence_T4,Lied on the sofa/couch.,Opened the box.,Opened the book.,Put down the sandwich.,Put down the sandwich. 4956,6C4DV_0.5_7.1,What happened before the person took the cup/glass/bottle?,3,Sequence_T4_4388,Sequence_T4,Put down the book.,Took the towel.,Lied on the bed.,Tidied up the closet/cabinet.,Tidied up the closet/cabinet. 4957,JXNEN_10.4_27,What happened before the person held the food?,2,Sequence_T4_4394,Sequence_T4,Put down the bag.,Took the pillow.,Ate the sandwich.,Tidied up the towel.,Ate the sandwich. 4958,JXNEN_10.4_27,What happened before the person sat on the sofa/couch?,1,Sequence_T4_4395,Sequence_T4,Took the clothes.,Ate the sandwich.,Sat on the bed.,Put down the phone/camera.,Ate the sandwich. 4959,EY6P4_0.5_11,What happened before the person watched at the book?,2,Sequence_T4_4398,Sequence_T4,Tidied up the table.,Took the phone/camera.,Opened the closet/cabinet.,Washed the table.,Opened the closet/cabinet. 4960,3EDV7_2.6_31,What happened before the person held the pillow?,3,Sequence_T4_4399,Sequence_T4,Put down the towel.,Took the broom.,Took the blanket.,Washed the clothes.,Washed the clothes. 4961,J6P6H_9.5_18.4,What happened before the person took the food?,0,Sequence_T4_4435,Sequence_T4,Ate the sandwich.,Put down the dish.,Threw the shoe.,Put down the food.,Ate the sandwich. 4962,S1J2Q_4.4_20.8,What happened before the person opened the refrigerator?,3,Sequence_T4_4451,Sequence_T4,Opened the bag.,Put down the dish.,Put down the food.,Took the clothes.,Took the clothes. 4963,UIERL_13.5_25.3,What happened before the person held the dish?,3,Sequence_T4_4459,Sequence_T4,Closed the door.,Put down the food.,Closed the refrigerator.,Took the food.,Took the food. 4964,KZODG_15.3_32,What happened before the person held the phone/camera?,1,Sequence_T4_4462,Sequence_T4,Sat on the bed.,Closed the laptop.,Took the bag.,Lied on the sofa/couch.,Closed the laptop. 4965,3DO95_13.6_28.1,What happened before the person took the book?,0,Sequence_T4_4463,Sequence_T4,Put down the pillow.,Put down the sandwich.,Tidied up the clothes.,Washed the table.,Put down the pillow. 4966,3ND23_1.4_13.9,What happened before the person sat on the sofa/couch?,3,Sequence_T4_4465,Sequence_T4,Put down the food.,Ate the medicine.,Threw the blanket.,Put down the book.,Put down the book. 4967,27JQL_6.8_24.1,What happened before the person ate the sandwich?,0,Sequence_T4_4489,Sequence_T4,Threw the towel.,Threw the pillow.,Put down the pillow.,Opened the door.,Threw the towel. 4968,27JQL_6.8_32,What happened before the person held the dish?,0,Sequence_T4_4490,Sequence_T4,Threw the towel.,Opened the laptop.,Took the pillow.,Took the cup/glass/bottle.,Threw the towel. 4969,27JQL_6.8_32,What happened before the person held the food?,3,Sequence_T4_4491,Sequence_T4,Closed the door.,Put down the clothes.,Took the cup/glass/bottle.,Threw the towel.,Threw the towel. 4970,56XKK_4.3_20.8,What happened before the person opened the door?,1,Sequence_T4_4502,Sequence_T4,Tidied up the clothes.,Put down the bag.,Put down the food.,Opened the book.,Put down the bag. 4971,MDG2T_6_14.1,What happened before the person took the towel?,0,Sequence_T4_4516,Sequence_T4,Put down the dish.,Put down the broom.,Threw the book.,Put down the clothes.,Put down the dish. 4972,MDG2T_0_10.7,What happened before the person put down the dish?,1,Sequence_T4_4517,Sequence_T4,Threw the pillow.,Took the cup/glass/bottle.,Ate the sandwich.,Tidied up the table.,Took the cup/glass/bottle. 4973,VEHER_1.8_9.9,What happened before the person held the clothes?,2,Sequence_T4_4534,Sequence_T4,Sat on the sofa/couch.,Threw the shoe.,Took the box.,Sat on the table.,Took the box. 4974,84893_7.8_15.6,What happened before the person threw the clothes?,3,Sequence_T4_4537,Sequence_T4,Opened the bag.,Took the shoe.,Threw the food.,Tidied up the blanket.,Tidied up the blanket. 4975,TAGEG_8.7_17.8,What happened before the person opened the closet/cabinet?,3,Sequence_T4_4551,Sequence_T4,Sat on the floor.,Took the towel.,Put down the shoe.,Took the dish.,Took the dish. 4976,KXCSL_1.6_9.5,What happened before the person closed the refrigerator?,0,Sequence_T4_4553,Sequence_T4,Put down the food.,Took the picture.,Took the food.,Put down the pillow.,Put down the food. 4977,ZZ89F_13.6_26.5,What happened before the person held the dish?,0,Sequence_T4_4570,Sequence_T4,Closed the refrigerator.,Took the book.,Threw the bag.,Closed the door.,Closed the refrigerator. 4978,JY6TC_0.8_16.4,What happened before the person took the cup/glass/bottle?,2,Sequence_T4_4577,Sequence_T4,Sat on the sofa/couch.,Put down the paper/notebook.,Sat on the bed.,Washed the table.,Sat on the bed. 4979,JY6TC_0.8_21,What happened before the person put down the paper/notebook?,3,Sequence_T4_4578,Sequence_T4,Tidied up the table.,Put down the book.,Tidied up the blanket.,Sat on the bed.,Sat on the bed. 4980,Z6HEA_9.1_21.8,What happened before the person took the food?,1,Sequence_T4_4589,Sequence_T4,Threw the towel.,Sat on the floor.,Sat on the table.,Ate the sandwich.,Sat on the floor. 4981,Z6HEA_2.6_16.2,What happened before the person sat on the floor?,2,Sequence_T4_4590,Sequence_T4,Put down the phone/camera.,Opened the box.,Washed the clothes.,Threw the broom.,Washed the clothes. 4982,ZFQNZ_8.9_18.3,What happened before the person held the food?,1,Sequence_T4_4597,Sequence_T4,Took the book.,Closed the refrigerator.,Opened the door.,Put down the sandwich.,Closed the refrigerator. 4983,ZFQNZ_8.9_15.3,What happened before the person took the food?,0,Sequence_T4_4598,Sequence_T4,Closed the refrigerator.,Opened the bag.,Took the blanket.,Closed the laptop.,Closed the refrigerator. 4984,HL5OP_28.5_37,What happened before the person tidied up the table?,2,Sequence_T4_4610,Sequence_T4,Sat on the sofa/couch.,Took the blanket.,Took the dish.,Closed the book.,Took the dish. 4985,HL5OP_14.4_22.3,What happened before the person opened the bag?,3,Sequence_T4_4611,Sequence_T4,Threw the shoe.,Lied on the sofa/couch.,Took the picture.,Threw the food.,Threw the food. 4986,Z70KK_8_26,What happened before the person took the broom?,2,Sequence_T4_4625,Sequence_T4,Put down the phone/camera.,Tidied up the towel.,Washed the table.,Took the dish.,Washed the table. 4987,DBT6E_8.6_33,What happened before the person sat on the floor?,2,Sequence_T4_4663,Sequence_T4,Opened the window.,Took the phone/camera.,Put down the bag.,Threw the shoe.,Put down the bag. 4988,VS5IY_9.4_18.1,What happened before the person took the clothes?,1,Sequence_T4_4677,Sequence_T4,Put down the shoe.,Put down the book.,Took the box.,Took the blanket.,Put down the book. 4989,LLOGB_8.7_31,What happened before the person lied on the bed?,1,Sequence_T4_4694,Sequence_T4,Threw the shoe.,Took the phone/camera.,Closed the book.,Threw the clothes.,Took the phone/camera. 4990,6ALEL_11.6_24.2,What happened before the person took the food?,1,Sequence_T4_4697,Sequence_T4,Opened the window.,Put down the towel.,Closed the closet/cabinet.,Sat on the table.,Put down the towel. 4991,NV4FC_15.7_25.8,What happened before the person took the book?,2,Sequence_T4_4701,Sequence_T4,Sat on the sofa/couch.,Took the towel.,Threw the shoe.,Tidied up the towel.,Threw the shoe. 4992,NV4FC_21.5_26.8,What happened before the person opened the book?,3,Sequence_T4_4702,Sequence_T4,Put down the cup/glass/bottle.,Put down the book.,Put down the box.,Took the paper/notebook.,Took the paper/notebook. 4993,NV4FC_0_10.4,What happened before the person put down the clothes?,3,Sequence_T4_4706,Sequence_T4,Tidied up the blanket.,Opened the book.,Sat on the floor.,Sat on the bed.,Sat on the bed. 4994,XFRYR_8.8_16.9,What happened before the person held the food?,1,Sequence_T4_4708,Sequence_T4,Opened the bag.,Closed the closet/cabinet.,Opened the laptop.,Ate the sandwich.,Closed the closet/cabinet. 4995,XYGU1_0_32,What happened before the person sat at the table?,0,Sequence_T4_4734,Sequence_T4,Put down the book.,Closed the refrigerator.,Opened the laptop.,Lied on the floor.,Put down the book. 4996,XYGU1_11.8_20.9,What happened before the person drank from the cup/glass/bottle?,3,Sequence_T4_4735,Sequence_T4,Took the shoe.,Put down the sandwich.,Sat at the table.,Opened the book.,Opened the book. 4997,WJ1E7_8.7_33,What happened before the person sat at the table?,2,Sequence_T4_4736,Sequence_T4,Closed the window.,Opened the book.,Put down the shoe.,Took the paper/notebook.,Put down the shoe. 4998,9O0HH_1.5_37,What happened before the person held the food?,0,Sequence_T4_4744,Sequence_T4,Closed the closet/cabinet.,Closed the box.,Took the bag.,Took the dish.,Closed the closet/cabinet. 4999,9O0HH_1.5_30.4,What happened before the person put down the food?,1,Sequence_T4_4745,Sequence_T4,Took the clothes.,Closed the closet/cabinet.,Took the bag.,Threw the box.,Closed the closet/cabinet. 5000,OKYYQ_2.5_15.6,What happened before the person opened the closet/cabinet?,3,Sequence_T4_4756,Sequence_T4,Washed the cup/glass/bottle.,Put down the phone/camera.,Put down the box.,Closed the book.,Closed the book. 5001,N7130_5.6_32,What happened before the person sat on the bed?,1,Sequence_T4_4761,Sequence_T4,Took the clothes.,Put down the phone/camera.,Threw the towel.,Took the broom.,Put down the phone/camera. 5002,N7130_5.6_32,What happened before the person lied on the bed?,3,Sequence_T4_4763,Sequence_T4,Tidied up the clothes.,Threw the bag.,Took the food.,Put down the phone/camera.,Put down the phone/camera. 5003,XPWYQ_16_26,What happened before the person held the phone/camera?,1,Sequence_T4_4774,Sequence_T4,Took the paper/notebook.,Put down the book.,Tidied up the blanket.,Closed the closet/cabinet.,Put down the book. 5004,UDGRS_19.9_27.6,What happened before the person closed the book?,0,Sequence_T4_4776,Sequence_T4,Put down the phone/camera.,Sat at the table.,Put down the cup/glass/bottle.,Put down the broom.,Put down the phone/camera. 5005,UDGRS_16.5_29.8,What happened before the person tidied up the table?,0,Sequence_T4_4777,Sequence_T4,Took the phone/camera.,Took the dish.,Took the food.,Sat at the table.,Took the phone/camera. 5006,86X97_1.4_11.2,What happened before the person watched outside the window?,2,Sequence_T4_4784,Sequence_T4,Took the box.,Put down the food.,Took the book.,Threw the clothes.,Took the book. 5007,86X97_1.4_18.6,What happened before the person watched outside the window?,3,Sequence_T4_4785,Sequence_T4,Opened the laptop.,Put down the clothes.,Threw the pillow.,Took the book.,Took the book. 5008,0JB3D_5.4_25.4,What happened before the person put down the cup/glass/bottle?,0,Sequence_T4_4837,Sequence_T4,Closed the refrigerator.,Closed the box.,Threw the broom.,Closed the closet/cabinet.,Closed the refrigerator. 5009,0JB3D_5.4_15.8,What happened before the person drank from the cup/glass/bottle?,2,Sequence_T4_4838,Sequence_T4,Put down the broom.,Put down the food.,Closed the refrigerator.,Put down the dish.,Closed the refrigerator. 5010,F3O37_6_14.6,What happened before the person held the pillow?,1,Sequence_T4_4841,Sequence_T4,Lied on the floor.,Put down the clothes.,Threw the clothes.,Put down the phone/camera.,Put down the clothes. 5011,S3TZ1_5.9_17,What happened before the person opened the closet/cabinet?,0,Sequence_T4_4854,Sequence_T4,Closed the refrigerator.,Took the bag.,Sat on the bed.,Sat on the floor.,Closed the refrigerator. 5012,UEP20_12.6_22.7,What happened before the person took the sandwich?,2,Sequence_T4_4886,Sequence_T4,Opened the refrigerator.,Threw the box.,Put down the paper/notebook.,Closed the closet/cabinet.,Put down the paper/notebook. 5013,UEP20_12.6_23.1,What happened before the person lied on the bed?,0,Sequence_T4_4888,Sequence_T4,Put down the paper/notebook.,Threw the blanket.,Closed the laptop.,Put down the laptop.,Put down the paper/notebook. 5014,UEP20_17.9_25,What happened before the person closed the closet/cabinet?,2,Sequence_T4_4889,Sequence_T4,Took the towel.,Put down the phone/camera.,Took the sandwich.,Took the dish.,Took the sandwich. 5015,VKXLL_1.5_10,What happened before the person put down the pillow?,0,Sequence_T4_4902,Sequence_T4,Took the box.,Took the sandwich.,Closed the door.,Put down the pillow.,Took the box. 5016,UFVO8_5.4_13.2,What happened before the person closed the door?,1,Sequence_T4_4903,Sequence_T4,Sat at the table.,Put down the broom.,Put down the towel.,Tidied up the closet/cabinet.,Put down the broom. 5017,Q8UJ8_0.9_19.3,What happened before the person drank from the cup/glass/bottle?,3,Sequence_T4_4909,Sequence_T4,Put down the sandwich.,Took the dish.,Put down the food.,Opened the bag.,Opened the bag. 5018,XZ9C0_0_14.9,What happened before the person took the bag?,0,Sequence_T4_4914,Sequence_T4,Lied on the bed.,Put down the bag.,Opened the refrigerator.,Opened the door.,Lied on the bed. 5019,OEE36_21.1_36.5,What happened before the person closed the box?,1,Sequence_T4_4925,Sequence_T4,Put down the cup/glass/bottle.,Put down the towel.,Threw the box.,Sat on the sofa/couch.,Put down the towel. 5020,OEE36_21.1_38,What happened before the person held the box?,2,Sequence_T4_4926,Sequence_T4,Opened the window.,Sat on the sofa/couch.,Put down the towel.,Took the cup/glass/bottle.,Put down the towel. 5021,L9J5I_0_16.7,What happened before the person took the paper/notebook?,3,Sequence_T4_4956,Sequence_T4,Took the towel.,Opened the closet/cabinet.,Opened the bag.,Put down the food.,Put down the food. 5022,PZD7Z_0_17.6,What happened before the person put down the broom?,1,Sequence_T4_4959,Sequence_T4,Opened the door.,Sat at the table.,Opened the window.,Threw the box.,Sat at the table. 5023,C61BE_0_10,What happened before the person took the blanket?,2,Sequence_T4_4968,Sequence_T4,Opened the box.,Opened the door.,Ate the sandwich.,Threw the towel.,Ate the sandwich. 5024,6TNP4_0_46,What happened before the person put down the shoe?,0,Sequence_T4_4975,Sequence_T4,Opened the refrigerator.,Took the shoe.,Took the phone/camera.,Opened the bag.,Opened the refrigerator. 5025,V54TI_10_28.7,What happened before the person opened the door?,0,Sequence_T4_4989,Sequence_T4,Took the pillow.,Took the phone/camera.,Took the clothes.,Washed the table.,Took the pillow. 5026,V54TI_7.9_18.2,What happened before the person took the pillow?,0,Sequence_T4_4990,Sequence_T4,Put down the picture.,Tidied up the clothes.,Lied on the sofa/couch.,Closed the book.,Put down the picture. 5027,0BZAD_7.5_31,What happened before the person took the food?,3,Sequence_T4_4992,Sequence_T4,Threw the box.,Threw the blanket.,Took the broom.,Opened the book.,Opened the book. 5028,0BZAD_7.5_32,What happened before the person held the food?,2,Sequence_T4_4993,Sequence_T4,Took the sandwich.,Opened the door.,Opened the book.,Put down the bag.,Opened the book. 5029,CJ58B_15.6_32,What happened before the person held the food?,1,Sequence_T4_4995,Sequence_T4,Took the food.,Opened the bag.,Took the sandwich.,Tidied up the table.,Opened the bag. 5030,B8PQL_2.1_8.3,What happened before the person closed the door?,3,Sequence_T4_4999,Sequence_T4,Opened the closet/cabinet.,Ate the sandwich.,Opened the window.,Threw the towel.,Threw the towel. 5031,B8PQL_5.5_16.3,What happened before the person washed the window?,2,Sequence_T4_5002,Sequence_T4,Took the towel.,Took the blanket.,Took the broom.,Put down the pillow.,Took the broom. 5032,8DSGI_13.4_32,What happened before the person sat on the floor?,0,Sequence_T4_5032,Sequence_T4,Opened the book.,Threw the pillow.,Took the food.,Took the book.,Opened the book. 5033,0QES3_0.1_20.2,What happened before the person closed the door?,1,Sequence_T4_5037,Sequence_T4,Took the laptop.,Put down the book.,Put down the shoe.,Ate the medicine.,Put down the book. 5034,0QES3_0.1_20.1,What happened before the person opened the door?,0,Sequence_T4_5038,Sequence_T4,Put down the book.,Closed the book.,Put down the towel.,Took the broom.,Put down the book. 5035,0CG15_19.7_29.7,What happened before the person opened the closet/cabinet?,0,Sequence_T4_5051,Sequence_T4,Put down the clothes.,Took the towel.,Put down the laptop.,Opened the window.,Put down the clothes. 5036,ACJBD_13.7_35.2,What happened before the person put down the blanket?,0,Sequence_T4_5068,Sequence_T4,Took the clothes.,Opened the door.,Tidied up the blanket.,Took the cup/glass/bottle.,Took the clothes. 5037,ACJBD_30.8_36.7,What happened before the person tidied up the clothes?,1,Sequence_T4_5069,Sequence_T4,Took the sandwich.,Put down the pillow.,Threw the pillow.,Closed the book.,Put down the pillow. 5038,HPAYB_5.6_16.4,What happened before the person took the clothes?,1,Sequence_T4_5077,Sequence_T4,Threw the book.,Put down the bag.,Opened the window.,Put down the cup/glass/bottle.,Put down the bag. 5039,HPAYB_5.2_13.3,What happened before the person put down the bag?,2,Sequence_T4_5078,Sequence_T4,Sat on the sofa/couch.,Threw the clothes.,Took the clothes.,Opened the closet/cabinet.,Took the clothes. 5040,RTEWJ_0_8.4,What happened before the person took the blanket?,3,Sequence_T4_5080,Sequence_T4,Put down the paper/notebook.,Put down the book.,Put down the clothes.,Put down the sandwich.,Put down the sandwich. 5041,6KI0S_0_22.9,What happened before the person held the blanket?,0,Sequence_T4_5093,Sequence_T4,Lied on the bed.,Put down the clothes.,Put down the cup/glass/bottle.,Tidied up the table.,Lied on the bed. 5042,6KI0S_0_27,What happened before the person held the pillow?,3,Sequence_T4_5094,Sequence_T4,Tidied up the clothes.,Took the clothes.,Put down the clothes.,Lied on the bed.,Lied on the bed. 5043,5V5EL_3.7_19,What happened before the person took the bag?,1,Sequence_T4_5101,Sequence_T4,Took the paper/notebook.,Put down the phone/camera.,Put down the clothes.,Tidied up the closet/cabinet.,Put down the phone/camera. 5044,CCCUJ_24.6_35,What happened before the person took the blanket?,3,Sequence_T4_5103,Sequence_T4,Took the book.,Put down the dish.,Opened the closet/cabinet.,Put down the laptop.,Put down the laptop. 5045,ZOTR8_6.7_18.7,What happened before the person took the cup/glass/bottle?,1,Sequence_T4_5116,Sequence_T4,Opened the closet/cabinet.,Put down the shoe.,Took the sandwich.,Put down the sandwich.,Put down the shoe. 5046,L9ANI_7.3_33,What happened before the person washed the table?,0,Sequence_T4_5117,Sequence_T4,Took the towel.,Sat on the bed.,Put down the dish.,Opened the bag.,Took the towel. 5047,BI31D_5.2_18,What happened before the person sat on the bed?,3,Sequence_T4_5121,Sequence_T4,Put down the food.,Put down the picture.,Put down the shoe.,Put down the phone/camera.,Put down the phone/camera. 5048,194WK_6.6_21.1,What happened before the person held the mirror?,3,Sequence_T4_5127,Sequence_T4,Sat on the bed.,Took the book.,Washed the window.,Put down the book.,Put down the book. 5049,DHFA6_15_39.2,What happened before the person sat on the sofa/couch?,1,Sequence_T4_5141,Sequence_T4,Took the broom.,Put down the box.,Closed the door.,Washed the window.,Put down the box. 5050,21MI8_3.9_13.4,What happened before the person put down the cup/glass/bottle?,2,Sequence_T4_5155,Sequence_T4,Took the food.,Sat on the bed.,Opened the laptop.,Took the book.,Opened the laptop. 5051,VNQTH_1.4_9.2,What did the person do to the closet/cabinet after putting down the clothes?,1,Sequence_T5_26,Sequence_T5,Put down.,Tidied up.,Closed.,Opened.,Tidied up. 5052,Y79PC_0.3_22.6,What did the person do to the clothes after watching outside the window?,2,Sequence_T5_29,Sequence_T5,Opened.,Washed.,Threw.,Took.,Threw. 5053,4GLAP_15.7_20.7,What did the person do to the shoe after putting down the paper/notebook?,1,Sequence_T5_49,Sequence_T5,Put down.,Threw.,Took.,Sat on.,Threw. 5054,OY3LS_7_23.8,What did the person do to the clothes after closing the laptop?,0,Sequence_T5_53,Sequence_T5,Threw.,Washed.,Put down.,Tidied up.,Threw. 5055,OY3LS_2.5_23.8,What did the person do to the clothes after opening the laptop?,1,Sequence_T5_54,Sequence_T5,Closed.,Threw.,Took.,Put down.,Threw. 5056,OY3LS_34.7_41.4,What did the person do to the sofa/couch after taking the blanket?,0,Sequence_T5_57,Sequence_T5,Sat on.,Lied on.,Ate.,Tidied up.,Sat on. 5057,NUKJ0_0_17.8,What did the person do to the book after washing the clothes?,0,Sequence_T5_104,Sequence_T5,Opened.,Lied on.,Took.,Closed.,Opened. 5058,NUKJ0_11_26.6,What did the person do to the book after taking the paper/notebook?,3,Sequence_T5_105,Sequence_T5,Threw.,Put down.,Washed.,Closed.,Closed. 5059,KA09C_9.8_18.5,What did the person do to the shoe after tidying up the clothes?,3,Sequence_T5_150,Sequence_T5,Took.,Threw.,Opened.,Put down.,Put down. 5060,7MRKY_24.8_36.1,What did the person do to the laptop after putting down the broom?,0,Sequence_T5_163,Sequence_T5,Closed.,Opened.,Sat at.,Took.,Closed. 5061,7HSZJ_17_22,What did the person do to the towel after watching outside the window?,1,Sequence_T5_172,Sequence_T5,Tidied up.,Put down.,Threw.,Took.,Put down. 5062,E002I_4.1_14.1,What did the person do to the bed after putting down the pillow?,1,Sequence_T5_194,Sequence_T5,Ate.,Lied on.,Closed.,Sat on.,Lied on. 5063,WX8N8_6.2_10.8,What did the person do to the clothes after taking the towel?,3,Sequence_T5_201,Sequence_T5,Opened.,Tidied up.,Put down.,Threw.,Threw. 5064,6CAZU_5.5_16.1,What did the person do to the sandwich after watching outside the window?,3,Sequence_T5_221,Sequence_T5,Ate.,Put down.,Closed.,Took.,Took. 5065,6CAZU_9.8_16.1,What did the person do to the sandwich after holding the food?,0,Sequence_T5_222,Sequence_T5,Took.,Closed.,Ate.,Put down.,Took. 5066,QLAS7_8.5_15.6,What did the person do to the closet/cabinet after putting down the picture?,1,Sequence_T5_223,Sequence_T5,Lied on.,Opened.,Closed.,Tidied up.,Opened. 5067,MXATD_0.6_10.8,What did the person do to the closet/cabinet after washing the dish?,3,Sequence_T5_249,Sequence_T5,Closed.,Tidied up.,Ate.,Opened.,Opened. 5068,YB67Z_5.4_19.1,What did the person do to the table after opening the box?,1,Sequence_T5_253,Sequence_T5,Washed.,Tidied up.,Sat on.,Took.,Tidied up. 5069,YB67Z_0_19.1,What did the person do to the table after holding the box?,1,Sequence_T5_254,Sequence_T5,Ate.,Tidied up.,Sat on.,Washed.,Tidied up. 5070,A2X7Q_10.7_18.7,What did the person do to the sandwich after taking the food?,0,Sequence_T5_291,Sequence_T5,Put down.,Washed.,Ate.,Sat on.,Put down. 5071,A2X7Q_3.8_10.7,What did the person do to the bag after opening the door?,3,Sequence_T5_292,Sequence_T5,Threw.,Closed.,Put down.,Took.,Took. 5072,3XL0K_0_4.5,What did the person do to the door after holding the phone/camera?,0,Sequence_T5_300,Sequence_T5,Closed.,Sat on.,Put down.,Opened.,Closed. 5073,3N1I2_0_13.2,What did the person do to the refrigerator after holding the food?,2,Sequence_T5_309,Sequence_T5,Put down.,Took.,Opened.,Closed.,Opened. 5074,3N1I2_7_16.5,What did the person do to the towel after opening the door?,2,Sequence_T5_310,Sequence_T5,Took.,Threw.,Put down.,Tidied up.,Put down. 5075,ATV2F_7.3_14.5,What did the person do to the clothes after putting down the blanket?,1,Sequence_T5_320,Sequence_T5,Ate.,Threw.,Sat at.,Tidied up.,Threw. 5076,IWTWJ_4.4_20.8,What did the person do to the sofa/couch after throwing the clothes?,3,Sequence_T5_328,Sequence_T5,Closed.,Lied on.,Opened.,Sat on.,Sat on. 5077,TRHT1_0_6.3,What did the person do to the clothes after sitting on the sofa/couch?,1,Sequence_T5_362,Sequence_T5,Washed.,Threw.,Tidied up.,Lied on.,Threw. 5078,5NG6Q_13.8_25.6,What did the person do to the table after putting down the dish?,2,Sequence_T5_374,Sequence_T5,Sat on.,Washed.,Tidied up.,Threw.,Tidied up. 5079,5NG6Q_17.6_25.4,What did the person do to the dish after tidying up the table?,2,Sequence_T5_375,Sequence_T5,Put down.,Took.,Washed.,Sat on.,Washed. 5080,C1DK7_0_10.2,What did the person do to the laptop after holding the phone/camera?,2,Sequence_T5_391,Sequence_T5,Put down.,Took.,Closed.,Opened.,Closed. 5081,C1DK7_0_10.2,What did the person do to the laptop after sitting at the table?,3,Sequence_T5_392,Sequence_T5,Took.,Tidied up.,Opened.,Closed.,Closed. 5082,W292V_6.6_15.5,What did the person do to the dish after drinking from the cup/glass/bottle?,2,Sequence_T5_418,Sequence_T5,Took.,Opened.,Put down.,Washed.,Put down. 5083,W292V_6.4_15.5,What did the person do to the dish after taking the cup/glass/bottle?,2,Sequence_T5_420,Sequence_T5,Ate.,Sat at.,Put down.,Washed.,Put down. 5084,YHXU9_14.7_23.7,What did the person do to the paper/notebook after tidying up the clothes?,2,Sequence_T5_432,Sequence_T5,Closed.,Put down.,Took.,Lied on.,Took. 5085,YHXU9_19.3_25.8,What did the person do to the paper/notebook after throwing the book?,1,Sequence_T5_433,Sequence_T5,Closed.,Put down.,Took.,Tidied up.,Put down. 5086,YJ1KW_9.5_15.8,What did the person do to the food after sitting at the table?,1,Sequence_T5_434,Sequence_T5,Closed.,Put down.,Opened.,Lied on.,Put down. 5087,VJG6E_2.6_9.4,What did the person do to the blanket after putting down the towel?,1,Sequence_T5_441,Sequence_T5,Sat on.,Threw.,Tidied up.,Took.,Threw. 5088,5C4EK_2.2_11.4,What did the person do to the paper/notebook after closing the book?,2,Sequence_T5_452,Sequence_T5,Lied on.,Put down.,Took.,Sat on.,Took. 5089,NW0KT_42.3_50,What did the person do to the mirror after taking the towel?,1,Sequence_T5_461,Sequence_T5,Tidied up.,Washed.,Took.,Sat on.,Washed. 5090,NW0KT_8.6_18.6,What did the person do to the book after taking the paper/notebook?,3,Sequence_T5_462,Sequence_T5,Put down.,Tidied up.,Threw.,Closed.,Closed. 5091,T7ST5_3.6_11.6,What did the person do to the towel after putting down the food?,0,Sequence_T5_517,Sequence_T5,Threw.,Lied on.,Tidied up.,Took.,Threw. 5092,U9KYC_11.4_29.4,What did the person do to the shoe after holding the broom?,2,Sequence_T5_554,Sequence_T5,Threw.,Put down.,Took.,Opened.,Took. 5093,9MNZ5_23_50.1,What did the person do to the book after putting down the box?,1,Sequence_T5_556,Sequence_T5,Took.,Opened.,Closed.,Sat on.,Opened. 5094,9MNZ5_16.1_27.2,What did the person do to the box after putting down the food?,2,Sequence_T5_558,Sequence_T5,Threw.,Sat at.,Closed.,Took.,Closed. 5095,DR7K0_13.9_22.7,What did the person do to the clothes after putting down the broom?,1,Sequence_T5_576,Sequence_T5,Washed.,Took.,Threw.,Sat at.,Took. 5096,U5T4M_8_14.1,What did the person do to the refrigerator after holding the sandwich?,3,Sequence_T5_624,Sequence_T5,Ate.,Washed.,Opened.,Closed.,Closed. 5097,U5T4M_7_14.1,What did the person do to the refrigerator after taking the food?,2,Sequence_T5_625,Sequence_T5,Opened.,Lied on.,Closed.,Ate.,Closed. 5098,U5T4M_7.5_14.1,What did the person do to the refrigerator after holding the food?,1,Sequence_T5_626,Sequence_T5,Threw.,Closed.,Tidied up.,Opened.,Closed. 5099,ZNQVC_8.9_32,What did the person do to the shoe after closing the door?,3,Sequence_T5_630,Sequence_T5,Threw.,Ate.,Sat at.,Took.,Took. 5100,15PMU_0.9_21.2,What did the person do to the clothes after watching outside the window?,2,Sequence_T5_649,Sequence_T5,Washed.,Took.,Put down.,Threw.,Put down. 5101,43CCM_0.1_25.5,What did the person do to the clothes after opening the door?,0,Sequence_T5_655,Sequence_T5,Put down.,Threw.,Washed.,Tidied up.,Put down. 5102,YOCI8_0_8.8,What did the person do to the table after holding the clothes?,1,Sequence_T5_656,Sequence_T5,Washed.,Tidied up.,Sat on.,Put down.,Tidied up. 5103,YOCI8_0_8.8,What did the person do to the table after holding the blanket?,1,Sequence_T5_657,Sequence_T5,Washed.,Tidied up.,Closed.,Sat on.,Tidied up. 5104,G6ZOB_7_31.2,What did the person do to the book after closing the door?,2,Sequence_T5_694,Sequence_T5,Threw.,Opened.,Put down.,Took.,Put down. 5105,03PRW_10_33.2,What did the person do to the sofa/couch after eating the sandwich?,0,Sequence_T5_706,Sequence_T5,Sat on.,Opened.,Lied on.,Tidied up.,Sat on. 5106,03PRW_0_33.2,What did the person do to the sofa/couch after holding the blanket?,0,Sequence_T5_707,Sequence_T5,Sat on.,Opened.,Lied on.,Put down.,Sat on. 5107,03PRW_0_33.2,What did the person do to the sofa/couch after holding the food?,3,Sequence_T5_708,Sequence_T5,Opened.,Lied on.,Took.,Sat on.,Sat on. 5108,JTBXI_26.2_36.5,What did the person do to the pillow after tidying up the blanket?,2,Sequence_T5_760,Sequence_T5,Lied on.,Closed.,Took.,Threw.,Took. 5109,WXBEO_15.7_23.7,What did the person do to the refrigerator after taking the cup/glass/bottle?,3,Sequence_T5_790,Sequence_T5,Opened.,Lied on.,Ate.,Closed.,Closed. 5110,OQ54Y_19.6_31.1,What did the person do to the table after drinking from the cup/glass/bottle?,1,Sequence_T5_838,Sequence_T5,Opened.,Sat at.,Washed.,Tidied up.,Sat at. 5111,OQ54Y_13.4_31.1,What did the person do to the table after opening the refrigerator?,2,Sequence_T5_839,Sequence_T5,Took.,Washed.,Sat at.,Tidied up.,Sat at. 5112,136V6_13.5_19.4,What did the person do to the sofa/couch after opening the book?,1,Sequence_T5_846,Sequence_T5,Sat on.,Lied on.,Threw.,Tidied up.,Lied on. 5113,136V6_13.9_28.2,What did the person do to the book after lying on the sofa/couch?,2,Sequence_T5_847,Sequence_T5,Put down.,Opened.,Closed.,Sat at.,Closed. 5114,136V6_13.7_19.4,What did the person do to the sofa/couch after watching at the book?,0,Sequence_T5_849,Sequence_T5,Lied on.,Threw.,Ate.,Sat on.,Lied on. 5115,136V6_1.1_10.5,What did the person do to the shoe after closing the door?,3,Sequence_T5_850,Sequence_T5,Put down.,Took.,Ate.,Threw.,Threw. 5116,R971Z_1.6_14.9,What did the person do to the clothes after tidying up the closet/cabinet?,1,Sequence_T5_944,Sequence_T5,Put down.,Took.,Washed.,Sat on.,Took. 5117,2BO2G_18.5_35.7,What did the person do to the picture after holding the box?,3,Sequence_T5_945,Sequence_T5,Took.,Lied on.,Washed.,Put down.,Put down. 5118,2BO2G_0_12,What did the person do to the box after tidying up the table?,2,Sequence_T5_946,Sequence_T5,Sat on.,Took.,Put down.,Closed.,Put down. 5119,0PVKV_18.5_25.1,What did the person do to the sandwich after putting down the cup/glass/bottle?,3,Sequence_T5_973,Sequence_T5,Tidied up.,Opened.,Ate.,Took.,Took. 5120,3JCEI_0_13,What did the person do to the laptop after sitting on the bed?,2,Sequence_T5_988,Sequence_T5,Took.,Ate.,Closed.,Opened.,Closed. 5121,3JCEI_8.3_17.8,What did the person do to the clothes after closing the laptop?,2,Sequence_T5_989,Sequence_T5,Washed.,Tidied up.,Threw.,Put down.,Threw. 5122,3JCEI_0_13,What did the person do to the laptop after sitting on the sofa/couch?,3,Sequence_T5_990,Sequence_T5,Took.,Put down.,Opened.,Closed.,Closed. 5123,3JCEI_0_13,What did the person do to the laptop after sitting at the table?,2,Sequence_T5_991,Sequence_T5,Put down.,Sat on.,Closed.,Lied on.,Closed. 5124,999BP_1.8_7.7,What did the person do to the bag after holding the food?,3,Sequence_T5_999,Sequence_T5,Threw.,Opened.,Put down.,Took.,Took. 5125,HRASP_0_11.8,What did the person do to the clothes after opening the door?,1,Sequence_T5_1011,Sequence_T5,Took.,Threw.,Washed.,Sat on.,Threw. 5126,NTXXB_0_17.5,What did the person do to the phone/camera after watching outside the window?,0,Sequence_T5_1020,Sequence_T5,Took.,Threw.,Closed.,Sat on.,Took. 5127,65UVU_0_9.3,What did the person do to the box after opening the door?,0,Sequence_T5_1048,Sequence_T5,Put down.,Opened.,Took.,Threw.,Put down. 5128,LZ2Y4_0_15.5,What did the person do to the cup/glass/bottle after holding the dish?,1,Sequence_T5_1063,Sequence_T5,Washed.,Put down.,Threw.,Took.,Put down. 5129,LZ2Y4_0_15.5,What did the person do to the cup/glass/bottle after sitting on the sofa/couch?,3,Sequence_T5_1064,Sequence_T5,Took.,Ate.,Washed.,Put down.,Put down. 5130,IOGR7_15.8_21.9,What did the person do to the door after sitting on the floor?,2,Sequence_T5_1065,Sequence_T5,Put down.,Opened.,Closed.,Tidied up.,Closed. 5131,LQC89_7.9_16.4,What did the person do to the sandwich after putting down the cup/glass/bottle?,1,Sequence_T5_1067,Sequence_T5,Sat at.,Took.,Closed.,Ate.,Took. 5132,BI6Y4_0_33.1,What did the person do to the table after holding the dish?,1,Sequence_T5_1071,Sequence_T5,Tidied up.,Sat at.,Washed.,Ate.,Sat at. 5133,BI6Y4_4.6_33.1,What did the person do to the table after drinking from the cup/glass/bottle?,3,Sequence_T5_1072,Sequence_T5,Washed.,Tidied up.,Lied on.,Sat at.,Sat at. 5134,CVDZM_14.6_21.3,What did the person do to the book after putting down the paper/notebook?,0,Sequence_T5_1082,Sequence_T5,Threw.,Sat on.,Closed.,Took.,Threw. 5135,4BEZX_15.8_23.5,What did the person do to the towel after closing the door?,3,Sequence_T5_1092,Sequence_T5,Tidied up.,Put down.,Threw.,Took.,Took. 5136,8XXNK_0_9,What did the person do to the box after sitting on the sofa/couch?,3,Sequence_T5_1094,Sequence_T5,Put down.,Lied on.,Closed.,Opened.,Opened. 5137,8XXNK_0_9,What did the person do to the box after holding the food?,3,Sequence_T5_1096,Sequence_T5,Put down.,Took.,Threw.,Opened.,Opened. 5138,8XXNK_0_9,What did the person do to the box after sitting on the bed?,1,Sequence_T5_1097,Sequence_T5,Tidied up.,Opened.,Sat on.,Put down.,Opened. 5139,XKU2U_0_24.2,What did the person do to the bag after washing the mirror?,0,Sequence_T5_1101,Sequence_T5,Took.,Threw.,Put down.,Opened.,Took. 5140,9YOI8_14.8_30.3,What did the person do to the window after drinking from the cup/glass/bottle?,0,Sequence_T5_1106,Sequence_T5,Closed.,Tidied up.,Opened.,Washed.,Closed. 5141,9YOI8_0.2_11.9,What did the person do to the window after holding the dish?,3,Sequence_T5_1107,Sequence_T5,Took.,Closed.,Washed.,Opened.,Opened. 5142,9YOI8_0.5_11.9,What did the person do to the window after holding the food?,2,Sequence_T5_1108,Sequence_T5,Threw.,Closed.,Opened.,Washed.,Opened. 5143,0HGNK_0_13.1,What did the person do to the box after sitting at the table?,1,Sequence_T5_1147,Sequence_T5,Closed.,Put down.,Threw.,Took.,Put down. 5144,M6ERH_11.6_33,What did the person do to the table after putting down the food?,1,Sequence_T5_1164,Sequence_T5,Tidied up.,Sat at.,Opened.,Washed.,Sat at. 5145,PRHR7_0_27.4,What did the person do to the towel after holding the dish?,3,Sequence_T5_1175,Sequence_T5,Tidied up.,Threw.,Put down.,Took.,Took. 5146,S444Y_7.2_16,What did the person do to the bag after holding the clothes?,0,Sequence_T5_1182,Sequence_T5,Opened.,Took.,Put down.,Threw.,Opened. 5147,727IZ_11.2_19.6,What did the person do to the table after closing the door?,3,Sequence_T5_1257,Sequence_T5,Washed.,Tidied up.,Ate.,Sat at.,Sat at. 5148,727IZ_14.5_19.6,What did the person do to the table after watching at the book?,2,Sequence_T5_1258,Sequence_T5,Tidied up.,Took.,Sat at.,Washed.,Sat at. 5149,Q5YDL_0_17.8,What did the person do to the laptop after sitting on the sofa/couch?,2,Sequence_T5_1283,Sequence_T5,Took.,Opened.,Closed.,Put down.,Closed. 5150,Q5YDL_0_17.8,What did the person do to the laptop after watching at the book?,1,Sequence_T5_1284,Sequence_T5,Opened.,Closed.,Lied on.,Put down.,Closed. 5151,IIW0F_7_13.2,What did the person do to the towel after putting down the blanket?,1,Sequence_T5_1307,Sequence_T5,Closed.,Took.,Threw.,Tidied up.,Took. 5152,72LJ3_0_18.9,What did the person do to the book after sitting on the bed?,1,Sequence_T5_1376,Sequence_T5,Put down.,Closed.,Took.,Opened.,Closed. 5153,13IS9_0_23.3,What did the person do to the laptop after sitting on the sofa/couch?,1,Sequence_T5_1384,Sequence_T5,Threw.,Took.,Ate.,Opened.,Took. 5154,YACA8_3.4_23.9,What did the person do to the shoe after putting down the clothes?,2,Sequence_T5_1394,Sequence_T5,Threw.,Ate.,Took.,Sat at.,Took. 5155,VS7VS_1.1_19.1,What did the person do to the book after tidying up the closet/cabinet?,0,Sequence_T5_1396,Sequence_T5,Put down.,Took.,Threw.,Opened.,Put down. 5156,VS7VS_3.1_19.1,What did the person do to the book after taking the paper/notebook?,0,Sequence_T5_1397,Sequence_T5,Put down.,Threw.,Opened.,Took.,Put down. 5157,TIPFG_5.3_16.3,What did the person do to the box after taking the shoe?,3,Sequence_T5_1403,Sequence_T5,Threw.,Put down.,Opened.,Closed.,Closed. 5158,U33ZS_2.9_14.8,What did the person do to the laptop after holding the book?,3,Sequence_T5_1428,Sequence_T5,Closed.,Put down.,Took.,Opened.,Opened. 5159,U33ZS_2.3_14.8,What did the person do to the laptop after taking the book?,1,Sequence_T5_1429,Sequence_T5,Closed.,Opened.,Put down.,Took.,Opened. 5160,U33ZS_1.5_14.8,What did the person do to the laptop after taking the paper/notebook?,3,Sequence_T5_1430,Sequence_T5,Took.,Ate.,Closed.,Opened.,Opened. 5161,L29HE_0_16.4,What did the person do to the broom after sitting on the floor?,1,Sequence_T5_1450,Sequence_T5,Put down.,Took.,Ate.,Lied on.,Took. 5162,V3SOF_20.5_38.9,What did the person do to the refrigerator after opening the door?,3,Sequence_T5_1472,Sequence_T5,Sat on.,Tidied up.,Lied on.,Closed.,Closed. 5163,2KGV3_7.9_22.5,What did the person do to the book after putting down the food?,1,Sequence_T5_1507,Sequence_T5,Put down.,Closed.,Threw.,Took.,Closed. 5164,HT9YB_0_53,What did the person do to the phone/camera after holding the laptop?,0,Sequence_T5_1527,Sequence_T5,Took.,Threw.,Opened.,Put down.,Took. 5165,LUQWY_3.5_33.1,What did the person do to the laptop after sitting on the bed?,0,Sequence_T5_1528,Sequence_T5,Closed.,Opened.,Took.,Put down.,Closed. 5166,LUQWY_5.3_33.1,What did the person do to the laptop after sitting on the sofa/couch?,2,Sequence_T5_1529,Sequence_T5,Tidied up.,Ate.,Closed.,Put down.,Closed. 5167,LD6TD_0_18.3,What did the person do to the book after sitting at the table?,0,Sequence_T5_1537,Sequence_T5,Closed.,Put down.,Threw.,Took.,Closed. 5168,RQRRD_5.2_11.1,What did the person do to the box after taking the clothes?,0,Sequence_T5_1568,Sequence_T5,Opened.,Took.,Threw.,Closed.,Opened. 5169,RQRRD_6.8_12.9,What did the person do to the box after holding the clothes?,3,Sequence_T5_1569,Sequence_T5,Took.,Put down.,Opened.,Closed.,Closed. 5170,RQRRD_7.5_22.3,What did the person do to the clothes after closing the box?,1,Sequence_T5_1570,Sequence_T5,Ate.,Threw.,Tidied up.,Put down.,Threw. 5171,3CLVI_16.3_24.3,What did the person do to the closet/cabinet after opening the door?,2,Sequence_T5_1573,Sequence_T5,Closed.,Lied on.,Tidied up.,Sat on.,Tidied up. 5172,M8OYC_12.7_27.1,What did the person do to the closet/cabinet after holding the food?,2,Sequence_T5_1592,Sequence_T5,Opened.,Took.,Tidied up.,Closed.,Tidied up. 5173,M8OYC_14.6_27.1,What did the person do to the closet/cabinet after putting down the food?,3,Sequence_T5_1593,Sequence_T5,Ate.,Closed.,Opened.,Tidied up.,Tidied up. 5174,M8OYC_12.4_27.1,What did the person do to the closet/cabinet after taking the food?,3,Sequence_T5_1594,Sequence_T5,Washed.,Opened.,Closed.,Tidied up.,Tidied up. 5175,UYZKX_3.9_26.9,What did the person do to the blanket after opening the closet/cabinet?,3,Sequence_T5_1632,Sequence_T5,Tidied up.,Took.,Put down.,Threw.,Threw. 5176,W7CR5_0_11.2,What did the person do to the towel after holding the blanket?,2,Sequence_T5_1644,Sequence_T5,Tidied up.,Put down.,Threw.,Took.,Threw. 5177,FQS7O_0_11.5,What did the person do to the book after sitting on the floor?,1,Sequence_T5_1645,Sequence_T5,Took.,Closed.,Threw.,Opened.,Closed. 5178,FQS7O_0_11.5,What did the person do to the book after sitting at the table?,0,Sequence_T5_1646,Sequence_T5,Closed.,Put down.,Took.,Sat on.,Closed. 5179,K9UXS_0_11.7,What did the person do to the clothes after sitting on the floor?,3,Sequence_T5_1661,Sequence_T5,Sat at.,Washed.,Took.,Put down.,Put down. 5180,D1NT7_3.2_14.3,What did the person do to the box after putting down the dish?,0,Sequence_T5_1712,Sequence_T5,Closed.,Opened.,Threw.,Took.,Closed. 5181,1FIGA_4.8_13.8,What did the person do to the box after taking the book?,0,Sequence_T5_1760,Sequence_T5,Opened.,Threw.,Put down.,Closed.,Opened. 5182,W8XQ9_0_5.8,What did the person do to the table after taking the clothes?,1,Sequence_T5_1762,Sequence_T5,Opened.,Tidied up.,Sat on.,Washed.,Tidied up. 5183,LSKA2_5.5_19.7,What did the person do to the sandwich after holding the food?,3,Sequence_T5_1782,Sequence_T5,Tidied up.,Ate.,Put down.,Took.,Took. 5184,DWHPO_1.3_21.3,What did the person do to the phone/camera after taking the food?,3,Sequence_T5_1799,Sequence_T5,Sat at.,Tidied up.,Took.,Put down.,Put down. 5185,T1CQE_18.9_29.9,What did the person do to the laptop after opening the bag?,1,Sequence_T5_1826,Sequence_T5,Put down.,Took.,Sat on.,Closed.,Took. 5186,2WGSN_8_23.3,What did the person do to the towel after washing the cup/glass/bottle?,1,Sequence_T5_1830,Sequence_T5,Put down.,Took.,Threw.,Tidied up.,Took. 5187,KV99H_8.8_23,What did the person do to the book after holding the shoe?,2,Sequence_T5_1831,Sequence_T5,Took.,Threw.,Put down.,Opened.,Put down. 5188,EDVAM_0_16,What did the person do to the window after sitting on the sofa/couch?,3,Sequence_T5_1832,Sequence_T5,Washed.,Threw.,Opened.,Closed.,Closed. 5189,TJBGM_0_20.8,What did the person do to the book after holding the broom?,1,Sequence_T5_1869,Sequence_T5,Put down.,Took.,Closed.,Opened.,Took. 5190,MD6P2_0_13.4,What did the person do to the box after eating the medicine?,0,Sequence_T5_1905,Sequence_T5,Opened.,Put down.,Took.,Threw.,Opened. 5191,HOI88_10.7_21.6,What did the person do to the sofa/couch after holding the book?,0,Sequence_T5_1911,Sequence_T5,Sat on.,Lied on.,Threw.,Washed.,Sat on. 5192,HOI88_2.6_21.6,What did the person do to the sofa/couch after sitting at the table?,2,Sequence_T5_1912,Sequence_T5,Took.,Lied on.,Sat on.,Washed.,Sat on. 5193,WOD0G_10.8_19.9,What did the person do to the clothes after putting down the towel?,0,Sequence_T5_1922,Sequence_T5,Threw.,Tidied up.,Washed.,Took.,Threw. 5194,NM65M_5.8_16.9,What did the person do to the blanket after holding the pillow?,3,Sequence_T5_1952,Sequence_T5,Tidied up.,Took.,Put down.,Threw.,Threw. 5195,NM65M_4.3_16.9,What did the person do to the blanket after taking the pillow?,1,Sequence_T5_1953,Sequence_T5,Tidied up.,Threw.,Took.,Put down.,Threw. 5196,RXLKF_0_9.4,What did the person do to the sofa/couch after taking the book?,1,Sequence_T5_1954,Sequence_T5,Lied on.,Sat on.,Closed.,Tidied up.,Sat on. 5197,RXLKF_1.8_15.2,What did the person do to the book after sitting on the sofa/couch?,2,Sequence_T5_1955,Sequence_T5,Closed.,Threw.,Opened.,Put down.,Opened. 5198,19PNV_0_21.3,What did the person do to the blanket after watching outside the window?,1,Sequence_T5_1963,Sequence_T5,Put down.,Took.,Threw.,Tidied up.,Took. 5199,19PNV_14.6_21.3,What did the person do to the blanket after holding the pillow?,3,Sequence_T5_1964,Sequence_T5,Tidied up.,Threw.,Put down.,Took.,Took. 5200,24XHS_3.8_26.3,What did the person do to the refrigerator after eating the medicine?,3,Sequence_T5_1966,Sequence_T5,Tidied up.,Closed.,Took.,Opened.,Opened. 5201,24XHS_0_26.3,What did the person do to the refrigerator after holding the medicine?,0,Sequence_T5_1967,Sequence_T5,Opened.,Took.,Closed.,Ate.,Opened. 5202,NEM29_7.7_18.9,What did the person do to the bag after throwing the clothes?,2,Sequence_T5_1974,Sequence_T5,Opened.,Put down.,Took.,Lied on.,Took. 5203,K71S1_11.8_20.9,What did the person do to the clothes after putting down the blanket?,2,Sequence_T5_1982,Sequence_T5,Threw.,Took.,Tidied up.,Washed.,Tidied up. 5204,OA9W5_0_12,What did the person do to the sandwich after taking the food?,3,Sequence_T5_1984,Sequence_T5,Sat at.,Threw.,Ate.,Put down.,Put down. 5205,JOLLV_0_17.3,What did the person do to the refrigerator after sitting on the sofa/couch?,0,Sequence_T5_2005,Sequence_T5,Opened.,Washed.,Sat at.,Closed.,Opened. 5206,V3RAX_0_15.6,What did the person do to the blanket after lying on the bed?,1,Sequence_T5_2009,Sequence_T5,Took.,Threw.,Put down.,Opened.,Threw. 5207,V3RAX_4.9_15.6,What did the person do to the blanket after holding the clothes?,3,Sequence_T5_2010,Sequence_T5,Tidied up.,Put down.,Took.,Threw.,Threw. 5208,FM5D5_4.2_18.1,What did the person do to the clothes after throwing the bag?,2,Sequence_T5_2015,Sequence_T5,Took.,Put down.,Tidied up.,Sat at.,Tidied up. 5209,STAFD_0_12,What did the person do to the sandwich after lying on the bed?,1,Sequence_T5_2072,Sequence_T5,Put down.,Ate.,Took.,Closed.,Ate. 5210,STAFD_0_12,What did the person do to the sandwich after holding the food?,1,Sequence_T5_2073,Sequence_T5,Threw.,Ate.,Put down.,Took.,Ate. 5211,P2HZG_0_10.2,What did the person do to the laptop after sitting at the table?,1,Sequence_T5_2093,Sequence_T5,Opened.,Closed.,Put down.,Took.,Closed. 5212,2Q3ZJ_18.2_25.8,What did the person do to the closet/cabinet after holding the phone/camera?,2,Sequence_T5_2122,Sequence_T5,Closed.,Put down.,Opened.,Tidied up.,Opened. 5213,2Q3ZJ_0_25.8,What did the person do to the closet/cabinet after taking the clothes?,0,Sequence_T5_2123,Sequence_T5,Opened.,Closed.,Put down.,Tidied up.,Opened. 5214,PDRVY_17.9_27.3,What did the person do to the bag after closing the closet/cabinet?,1,Sequence_T5_2127,Sequence_T5,Took.,Threw.,Put down.,Opened.,Threw. 5215,E6PSM_5.8_28.3,What did the person do to the box after closing the door?,3,Sequence_T5_2132,Sequence_T5,Put down.,Lied on.,Took.,Threw.,Threw. 5216,AZMVM_17.4_28,What did the person do to the pillow after opening the closet/cabinet?,1,Sequence_T5_2139,Sequence_T5,Tidied up.,Put down.,Threw.,Took.,Put down. 5217,BN4VH_1.8_18.9,What did the person do to the dish after holding the blanket?,3,Sequence_T5_2146,Sequence_T5,Opened.,Washed.,Put down.,Took.,Took. 5218,01ZWG_4.9_13.5,What did the person do to the table after opening the laptop?,2,Sequence_T5_2148,Sequence_T5,Washed.,Tidied up.,Sat at.,Put down.,Sat at. 5219,IO712_1.9_11.6,What did the person do to the floor after taking the book?,1,Sequence_T5_2165,Sequence_T5,Threw.,Sat on.,Lied on.,Ate.,Sat on. 5220,FM078_0.2_7.3,What did the person do to the dish after tidying up the table?,1,Sequence_T5_2235,Sequence_T5,Washed.,Put down.,Took.,Lied on.,Put down. 5221,41EQS_3.6_13.8,What did the person do to the bag after putting down the blanket?,0,Sequence_T5_2236,Sequence_T5,Threw.,Opened.,Took.,Closed.,Threw. 5222,ICL1M_0_22.1,What did the person do to the book after sitting on the bed?,1,Sequence_T5_2264,Sequence_T5,Threw.,Closed.,Opened.,Took.,Closed. 5223,X5YL3_5.4_19,What did the person do to the refrigerator after putting down the food?,3,Sequence_T5_2278,Sequence_T5,Washed.,Threw.,Opened.,Closed.,Closed. 5224,X5YL3_5.7_19,What did the person do to the refrigerator after holding the food?,0,Sequence_T5_2280,Sequence_T5,Closed.,Took.,Opened.,Sat on.,Closed. 5225,J867Z_3.5_20,What did the person do to the book after putting down the cup/glass/bottle?,0,Sequence_T5_2286,Sequence_T5,Threw.,Lied on.,Closed.,Took.,Threw. 5226,DHPNN_0_15.5,What did the person do to the food after sitting at the table?,1,Sequence_T5_2288,Sequence_T5,Washed.,Threw.,Closed.,Took.,Threw. 5227,RJIEO_4.4_9.9,What did the person do to the bag after sitting on the bed?,0,Sequence_T5_2291,Sequence_T5,Put down.,Took.,Opened.,Threw.,Put down. 5228,432NL_13.6_32,What did the person do to the medicine after closing the refrigerator?,1,Sequence_T5_2308,Sequence_T5,Opened.,Ate.,Closed.,Sat at.,Ate. 5229,432NL_4.5_20.3,What did the person do to the refrigerator after taking the food?,3,Sequence_T5_2309,Sequence_T5,Sat on.,Tidied up.,Opened.,Closed.,Closed. 5230,KQYR0_0.9_20.9,What did the person do to the book after tidying up the clothes?,2,Sequence_T5_2320,Sequence_T5,Closed.,Opened.,Took.,Put down.,Took. 5231,1RNK6_0_14,What did the person do to the closet/cabinet after watching outside the window?,2,Sequence_T5_2329,Sequence_T5,Opened.,Ate.,Tidied up.,Closed.,Tidied up. 5232,1RNK6_6.7_12.5,What did the person do to the box after tidying up the closet/cabinet?,3,Sequence_T5_2330,Sequence_T5,Tidied up.,Put down.,Closed.,Took.,Took. 5233,OUAIS_11.7_29,What did the person do to the pillow after taking the clothes?,0,Sequence_T5_2341,Sequence_T5,Threw.,Lied on.,Sat at.,Put down.,Threw. 5234,NVBBD_0_17.5,What did the person do to the shoe after opening the door?,1,Sequence_T5_2344,Sequence_T5,Threw.,Put down.,Ate.,Took.,Put down. 5235,2LCLG_11_17.2,What did the person do to the book after taking the paper/notebook?,0,Sequence_T5_2350,Sequence_T5,Threw.,Closed.,Put down.,Took.,Threw. 5236,TZL6H_6_32,What did the person do to the mirror after drinking from the cup/glass/bottle?,0,Sequence_T5_2352,Sequence_T5,Washed.,Sat on.,Threw.,Tidied up.,Washed. 5237,TZL6H_22.3_32,What did the person do to the mirror after holding the clothes?,2,Sequence_T5_2353,Sequence_T5,Ate.,Sat on.,Washed.,Threw.,Washed. 5238,TZL6H_0_32,What did the person do to the mirror after eating the medicine?,3,Sequence_T5_2354,Sequence_T5,Ate.,Tidied up.,Sat on.,Washed.,Washed. 5239,6UMSJ_3.4_13.7,What did the person do to the phone/camera after putting down the food?,2,Sequence_T5_2355,Sequence_T5,Sat on.,Sat at.,Took.,Put down.,Took. 5240,WAOE7_6.4_11,What did the person do to the sandwich after throwing the food?,3,Sequence_T5_2365,Sequence_T5,Lied on.,Took.,Opened.,Put down.,Put down. 5241,D6D85_0_6.7,What did the person do to the sandwich after sitting on the sofa/couch?,1,Sequence_T5_2369,Sequence_T5,Took.,Put down.,Washed.,Ate.,Put down. 5242,D6D85_0_6.7,What did the person do to the sandwich after holding the food?,0,Sequence_T5_2370,Sequence_T5,Put down.,Took.,Tidied up.,Ate.,Put down. 5243,ZNH10_0_20,What did the person do to the blanket after lying on the bed?,3,Sequence_T5_2383,Sequence_T5,Threw.,Lied on.,Put down.,Took.,Took. 5244,H8UJ3_11.6_23.1,What did the person do to the book after sitting at the table?,0,Sequence_T5_2386,Sequence_T5,Opened.,Threw.,Took.,Put down.,Opened. 5245,2XVR0_0_20,What did the person do to the sandwich after holding the food?,3,Sequence_T5_2421,Sequence_T5,Ate.,Lied on.,Took.,Put down.,Put down. 5246,MUO4G_0_12.8,What did the person do to the refrigerator after sitting on the table?,3,Sequence_T5_2457,Sequence_T5,Lied on.,Closed.,Washed.,Opened.,Opened. 5247,RRZU3_2.7_11,What did the person do to the laptop after lying on the sofa/couch?,3,Sequence_T5_2462,Sequence_T5,Lied on.,Threw.,Tidied up.,Opened.,Opened. 5248,5MF9Y_13.6_20.3,What did the person do to the food after putting down the broom?,2,Sequence_T5_2485,Sequence_T5,Put down.,Washed.,Threw.,Tidied up.,Threw. 5249,HFW6H_29.6_41.7,What did the person do to the clothes after putting down the cup/glass/bottle?,2,Sequence_T5_2530,Sequence_T5,Opened.,Took.,Threw.,Tidied up.,Threw. 5250,ANA5N_14.2_21.8,What did the person do to the towel after opening the closet/cabinet?,2,Sequence_T5_2568,Sequence_T5,Tidied up.,Took.,Put down.,Threw.,Put down. 5251,JBJGX_0_19.9,What did the person do to the laptop after sitting on the sofa/couch?,0,Sequence_T5_2601,Sequence_T5,Closed.,Sat at.,Put down.,Opened.,Closed. 5252,JBJGX_12.2_19.9,What did the person do to the laptop after taking the clothes?,2,Sequence_T5_2602,Sequence_T5,Opened.,Threw.,Closed.,Tidied up.,Closed. 5253,JBJGX_23.4_31.5,What did the person do to the laptop after putting down the clothes?,0,Sequence_T5_2603,Sequence_T5,Opened.,Closed.,Took.,Tidied up.,Opened. 5254,43FG9_3.2_11.4,What did the person do to the towel after putting down the clothes?,0,Sequence_T5_2605,Sequence_T5,Threw.,Took.,Ate.,Tidied up.,Threw. 5255,9335E_19.1_43,What did the person do to the closet/cabinet after putting down the dish?,1,Sequence_T5_2608,Sequence_T5,Closed.,Opened.,Tidied up.,Sat on.,Opened. 5256,N2GFQ_6.9_39,What did the person do to the sofa/couch after putting down the bag?,0,Sequence_T5_2630,Sequence_T5,Lied on.,Sat on.,Took.,Ate.,Lied on. 5257,WRW74_1.9_9.3,What did the person do to the box after taking the dish?,2,Sequence_T5_2640,Sequence_T5,Threw.,Put down.,Opened.,Closed.,Opened. 5258,AWITI_2.3_15.9,What did the person do to the pillow after closing the door?,0,Sequence_T5_2668,Sequence_T5,Took.,Threw.,Sat on.,Ate.,Took. 5259,9BCZU_25_34,What did the person do to the clothes after putting down the blanket?,1,Sequence_T5_2678,Sequence_T5,Took.,Washed.,Threw.,Tidied up.,Washed. 5260,9PXC0_16.2_31,What did the person do to the book after holding the phone/camera?,1,Sequence_T5_2684,Sequence_T5,Put down.,Opened.,Took.,Threw.,Opened. 5261,4S3UZ_0_31.7,What did the person do to the broom after sitting on the floor?,3,Sequence_T5_2703,Sequence_T5,Took.,Tidied up.,Threw.,Put down.,Put down. 5262,BCONW_4.5_13.3,What did the person do to the refrigerator after taking the cup/glass/bottle?,3,Sequence_T5_2706,Sequence_T5,Sat on.,Put down.,Opened.,Closed.,Closed. 5263,JZDL6_7.8_14,What did the person do to the bed after taking the shoe?,1,Sequence_T5_2719,Sequence_T5,Closed.,Sat on.,Washed.,Lied on.,Sat on. 5264,FETME_7.4_15.7,What did the person do to the book after taking the paper/notebook?,1,Sequence_T5_2730,Sequence_T5,Threw.,Opened.,Put down.,Closed.,Opened. 5265,M704T_9.8_19.6,What did the person do to the towel after closing the door?,3,Sequence_T5_2731,Sequence_T5,Tidied up.,Put down.,Threw.,Took.,Took. 5266,I713Z_7.5_24.7,What did the person do to the refrigerator after holding the laptop?,0,Sequence_T5_2771,Sequence_T5,Opened.,Lied on.,Closed.,Took.,Opened. 5267,Q7RK6_2.2_13.4,What did the person do to the pillow after throwing the clothes?,3,Sequence_T5_2773,Sequence_T5,Ate.,Lied on.,Threw.,Put down.,Put down. 5268,ZAJAJ_12.2_29.1,What did the person do to the laptop after taking the picture?,2,Sequence_T5_2799,Sequence_T5,Took.,Threw.,Opened.,Closed.,Opened. 5269,ZAJAJ_13.8_29.1,What did the person do to the laptop after holding the picture?,2,Sequence_T5_2801,Sequence_T5,Took.,Put down.,Opened.,Closed.,Opened. 5270,VNVRA_0_5.8,What did the person do to the box after opening the closet/cabinet?,0,Sequence_T5_2809,Sequence_T5,Took.,Put down.,Sat on.,Closed.,Took. 5271,KLP7V_0_16.3,What did the person do to the box after tidying up the closet/cabinet?,0,Sequence_T5_2819,Sequence_T5,Put down.,Opened.,Took.,Tidied up.,Put down. 5272,K87AC_0.7_16.4,What did the person do to the clothes after closing the door?,1,Sequence_T5_2826,Sequence_T5,Sat at.,Put down.,Threw.,Tidied up.,Put down. 5273,ABHC6_2.5_10.2,What did the person do to the closet/cabinet after putting down the clothes?,0,Sequence_T5_2829,Sequence_T5,Opened.,Closed.,Tidied up.,Lied on.,Opened. 5274,ABHC6_3_15.2,What did the person do to the clothes after opening the closet/cabinet?,3,Sequence_T5_2830,Sequence_T5,Put down.,Sat at.,Threw.,Took.,Took. 5275,WBS4I_5.7_15.5,What did the person do to the closet/cabinet after taking the paper/notebook?,3,Sequence_T5_2841,Sequence_T5,Opened.,Sat on.,Tidied up.,Closed.,Closed. 5276,P4DL9_0_32.2,What did the person do to the phone/camera after closing the refrigerator?,3,Sequence_T5_2845,Sequence_T5,Tidied up.,Put down.,Sat on.,Took.,Took. 5277,OO4FE_10.6_18.6,What did the person do to the book after sitting at the table?,3,Sequence_T5_2849,Sequence_T5,Threw.,Put down.,Closed.,Opened.,Opened. 5278,OO4FE_0_6.6,What did the person do to the bag after tidying up the table?,0,Sequence_T5_2851,Sequence_T5,Threw.,Put down.,Opened.,Took.,Threw. 5279,52WDV_1.2_26.7,What did the person do to the book after taking the clothes?,3,Sequence_T5_2852,Sequence_T5,Put down.,Tidied up.,Threw.,Opened.,Opened. 5280,FX1T5_2.6_14.3,What did the person do to the book after putting down the picture?,2,Sequence_T5_2860,Sequence_T5,Took.,Sat on.,Opened.,Closed.,Opened. 5281,FX1T5_3.8_14.3,What did the person do to the book after watching at the picture?,0,Sequence_T5_2861,Sequence_T5,Opened.,Tidied up.,Put down.,Sat on.,Opened. 5282,6TV29_1.8_21.4,What did the person do to the clothes after holding the blanket?,2,Sequence_T5_2891,Sequence_T5,Took.,Threw.,Put down.,Tidied up.,Put down. 5283,TK76G_0_16,What did the person do to the towel after taking the food?,3,Sequence_T5_2942,Sequence_T5,Tidied up.,Threw.,Closed.,Put down.,Put down. 5284,3IRHH_14.6_28.8,What did the person do to the book after putting down the dish?,1,Sequence_T5_2960,Sequence_T5,Threw.,Opened.,Closed.,Tidied up.,Opened. 5285,NCRCW_3.7_10.2,What did the person do to the pillow after sitting on the floor?,3,Sequence_T5_2996,Sequence_T5,Put down.,Tidied up.,Threw.,Took.,Took. 5286,08F85_1_23.2,What did the person do to the medicine after opening the closet/cabinet?,2,Sequence_T5_2999,Sequence_T5,Opened.,Washed.,Ate.,Closed.,Ate. 5287,08F85_11.1_23.2,What did the person do to the medicine after opening the closet/cabinet?,3,Sequence_T5_3000,Sequence_T5,Put down.,Threw.,Closed.,Ate.,Ate. 5288,4MFE0_0_27.2,What did the person do to the book after holding the food?,1,Sequence_T5_3013,Sequence_T5,Threw.,Took.,Opened.,Closed.,Took. 5289,LGS4C_0_24.5,What did the person do to the door after holding the phone/camera?,1,Sequence_T5_3026,Sequence_T5,Lied on.,Closed.,Opened.,Sat on.,Closed. 5290,4YL07_7_14.2,What did the person do to the cup/glass/bottle after watching at the picture?,2,Sequence_T5_3052,Sequence_T5,Tidied up.,Washed.,Took.,Put down.,Took. 5291,FVITB_6.2_25.3,What did the person do to the refrigerator after taking the food?,3,Sequence_T5_3056,Sequence_T5,Closed.,Threw.,Put down.,Opened.,Opened. 5292,FL6DF_0.9_8.1,What did the person do to the laptop after sitting on the sofa/couch?,2,Sequence_T5_3064,Sequence_T5,Closed.,Put down.,Opened.,Took.,Opened. 5293,FL6DF_8.9_15.9,What did the person do to the pillow after putting down the blanket?,1,Sequence_T5_3065,Sequence_T5,Ate.,Threw.,Took.,Put down.,Threw. 5294,ZS9XR_1.5_17.1,What did the person do to the medicine after taking the food?,3,Sequence_T5_3075,Sequence_T5,Sat at.,Opened.,Tidied up.,Ate.,Ate. 5295,BAUQE_0_10.2,What did the person do to the broom after tidying up the clothes?,0,Sequence_T5_3112,Sequence_T5,Took.,Sat on.,Ate.,Washed.,Took. 5296,APVAD_6.7_16.5,What did the person do to the pillow after holding the clothes?,3,Sequence_T5_3122,Sequence_T5,Washed.,Put down.,Took.,Threw.,Threw. 5297,P4HXN_0.8_33.3,What did the person do to the laptop after washing the clothes?,2,Sequence_T5_3125,Sequence_T5,Closed.,Opened.,Put down.,Took.,Put down. 5298,UF91R_9.7_14.3,What did the person do to the refrigerator after taking the food?,1,Sequence_T5_3126,Sequence_T5,Sat on.,Opened.,Closed.,Put down.,Opened. 5299,UF91R_11.3_17.4,What did the person do to the refrigerator after holding the food?,2,Sequence_T5_3127,Sequence_T5,Washed.,Sat on.,Closed.,Opened.,Closed. 5300,PQYWB_0_10.7,What did the person do to the towel after holding the phone/camera?,2,Sequence_T5_3140,Sequence_T5,Threw.,Tidied up.,Put down.,Took.,Put down. 5301,I1OLQ_8.4_32,What did the person do to the bag after closing the door?,1,Sequence_T5_3144,Sequence_T5,Took.,Opened.,Put down.,Threw.,Opened. 5302,M1FNW_0_6.9,What did the person do to the laptop after holding the phone/camera?,3,Sequence_T5_3148,Sequence_T5,Put down.,Closed.,Opened.,Took.,Took. 5303,NKCXF_0_15.3,What did the person do to the pillow after sitting on the sofa/couch?,0,Sequence_T5_3189,Sequence_T5,Put down.,Took.,Sat on.,Threw.,Put down. 5304,40309_22.4_32,What did the person do to the closet/cabinet after opening the door?,0,Sequence_T5_3217,Sequence_T5,Closed.,Tidied up.,Sat on.,Lied on.,Closed. 5305,ZZ2SF_0_25.5,What did the person do to the medicine after holding the phone/camera?,2,Sequence_T5_3244,Sequence_T5,Put down.,Washed.,Ate.,Took.,Ate. 5306,8L9AJ_2.7_20.3,What did the person do to the laptop after opening the box?,1,Sequence_T5_3245,Sequence_T5,Closed.,Took.,Ate.,Washed.,Took. 5307,9X208_0_26.8,What did the person do to the towel after lying on the bed?,2,Sequence_T5_3246,Sequence_T5,Put down.,Tidied up.,Took.,Threw.,Took. 5308,QQUU5_0_10.1,What did the person do to the door after drinking from the cup/glass/bottle?,3,Sequence_T5_3248,Sequence_T5,Opened.,Tidied up.,Lied on.,Closed.,Closed. 5309,RJCNV_11.5_17.9,What did the person do to the book after sitting at the table?,2,Sequence_T5_3249,Sequence_T5,Put down.,Threw.,Opened.,Closed.,Opened. 5310,RJCNV_3.2_17.9,What did the person do to the book after closing the door?,3,Sequence_T5_3250,Sequence_T5,Ate.,Put down.,Took.,Opened.,Opened. 5311,LW51F_0_17,What did the person do to the book after holding the mirror?,3,Sequence_T5_3256,Sequence_T5,Opened.,Took.,Put down.,Closed.,Closed. 5312,LW51F_0_17,What did the person do to the book after washing the mirror?,0,Sequence_T5_3257,Sequence_T5,Closed.,Threw.,Put down.,Opened.,Closed. 5313,6QSON_9.5_24.3,What did the person do to the bag after putting down the cup/glass/bottle?,2,Sequence_T5_3270,Sequence_T5,Sat on.,Threw.,Opened.,Took.,Opened. 5314,BE51K_0_19.8,What did the person do to the bed after watching outside the window?,2,Sequence_T5_3276,Sequence_T5,Lied on.,Put down.,Sat on.,Closed.,Sat on. 5315,BE51K_0_19.8,What did the person do to the bed after putting down the bag?,2,Sequence_T5_3277,Sequence_T5,Ate.,Threw.,Sat on.,Lied on.,Sat on. 5316,2I871_0_16.6,What did the person do to the bag after holding the phone/camera?,2,Sequence_T5_3280,Sequence_T5,Threw.,Opened.,Took.,Put down.,Took. 5317,2I871_0_16.6,What did the person do to the bag after lying on the floor?,2,Sequence_T5_3281,Sequence_T5,Put down.,Threw.,Took.,Opened.,Took. 5318,3FEYY_12_17.3,What did the person do to the towel after taking the cup/glass/bottle?,1,Sequence_T5_3299,Sequence_T5,Tidied up.,Put down.,Sat on.,Threw.,Put down. 5319,VPBIO_0.2_9.1,What did the person do to the bag after putting down the food?,1,Sequence_T5_3300,Sequence_T5,Took.,Opened.,Ate.,Threw.,Opened. 5320,8MLCU_4.4_14.4,What did the person do to the refrigerator after putting down the box?,0,Sequence_T5_3331,Sequence_T5,Opened.,Tidied up.,Closed.,Ate.,Opened. 5321,34J80_2.9_26.6,What did the person do to the food after drinking from the cup/glass/bottle?,2,Sequence_T5_3336,Sequence_T5,Threw.,Put down.,Took.,Ate.,Took. 5322,GLGQJ_19.5_29.3,What did the person do to the window after taking the phone/camera?,0,Sequence_T5_3347,Sequence_T5,Closed.,Ate.,Opened.,Washed.,Closed. 5323,GLGQJ_0_29.3,What did the person do to the window after washing the cup/glass/bottle?,0,Sequence_T5_3348,Sequence_T5,Closed.,Put down.,Opened.,Ate.,Closed. 5324,TOOYI_4.6_19.1,What did the person do to the box after putting down the towel?,0,Sequence_T5_3350,Sequence_T5,Closed.,Took.,Sat at.,Threw.,Closed. 5325,TOOYI_1.6_19.1,What did the person do to the box after putting down the blanket?,2,Sequence_T5_3351,Sequence_T5,Opened.,Threw.,Closed.,Took.,Closed. 5326,T2J3M_13.1_27.2,What did the person do to the closet/cabinet after putting down the clothes?,0,Sequence_T5_3387,Sequence_T5,Tidied up.,Took.,Closed.,Opened.,Tidied up. 5327,T2J3M_9.2_27.2,What did the person do to the closet/cabinet after opening the door?,3,Sequence_T5_3388,Sequence_T5,Closed.,Washed.,Sat at.,Tidied up.,Tidied up. 5328,M52K2_1.7_22.8,What did the person do to the food after sitting on the floor?,0,Sequence_T5_3392,Sequence_T5,Put down.,Took.,Closed.,Opened.,Put down. 5329,XLR4B_5.3_30.9,What did the person do to the table after eating the sandwich?,2,Sequence_T5_3393,Sequence_T5,Put down.,Washed.,Sat at.,Tidied up.,Sat at. 5330,XLR4B_0.1_30.9,What did the person do to the table after holding the sandwich?,1,Sequence_T5_3394,Sequence_T5,Tidied up.,Sat at.,Washed.,Ate.,Sat at. 5331,XLR4B_0.4_30.9,What did the person do to the table after holding the food?,0,Sequence_T5_3395,Sequence_T5,Sat at.,Tidied up.,Lied on.,Washed.,Sat at. 5332,JCNHL_12_27.6,What did the person do to the box after throwing the clothes?,3,Sequence_T5_3408,Sequence_T5,Took.,Put down.,Washed.,Opened.,Opened. 5333,JCNHL_12.4_27.6,What did the person do to the box after holding the clothes?,3,Sequence_T5_3409,Sequence_T5,Threw.,Put down.,Took.,Opened.,Opened. 5334,QXT9W_10.7_24.2,What did the person do to the book after sitting at the table?,1,Sequence_T5_3418,Sequence_T5,Closed.,Opened.,Threw.,Took.,Opened. 5335,CLW8L_0_13.1,What did the person do to the pillow after lying on the bed?,0,Sequence_T5_3436,Sequence_T5,Took.,Threw.,Put down.,Ate.,Took. 5336,17RPG_24.1_33,What did the person do to the sandwich after throwing the clothes?,1,Sequence_T5_3437,Sequence_T5,Took.,Ate.,Lied on.,Put down.,Ate. 5337,IBX56_0.9_19.1,What did the person do to the clothes after eating the sandwich?,1,Sequence_T5_3447,Sequence_T5,Threw.,Tidied up.,Took.,Washed.,Tidied up. 5338,IBX56_0_19.1,What did the person do to the clothes after holding the food?,3,Sequence_T5_3448,Sequence_T5,Threw.,Washed.,Took.,Tidied up.,Tidied up. 5339,IBX56_0_19.1,What did the person do to the clothes after holding the sandwich?,0,Sequence_T5_3449,Sequence_T5,Tidied up.,Washed.,Threw.,Put down.,Tidied up. 5340,QRWQ3_13_33.3,What did the person do to the box after putting down the dish?,0,Sequence_T5_3501,Sequence_T5,Opened.,Took.,Threw.,Closed.,Opened. 5341,AFTMI_13.5_37.8,What did the person do to the pillow after holding the shoe?,2,Sequence_T5_3581,Sequence_T5,Threw.,Put down.,Took.,Sat on.,Took. 5342,AFTMI_0_37.8,What did the person do to the pillow after sitting on the sofa/couch?,0,Sequence_T5_3582,Sequence_T5,Took.,Threw.,Put down.,Sat at.,Took. 5343,969Z9_0_7.4,What did the person do to the table after holding the phone/camera?,2,Sequence_T5_3583,Sequence_T5,Washed.,Tidied up.,Sat at.,Lied on.,Sat at. 5344,IFQS1_6.1_13.3,What did the person do to the blanket after washing the clothes?,0,Sequence_T5_3584,Sequence_T5,Put down.,Tidied up.,Threw.,Took.,Put down. 5345,MHTRY_0_9,What did the person do to the towel after opening the door?,0,Sequence_T5_3617,Sequence_T5,Took.,Tidied up.,Put down.,Threw.,Took. 5346,5XKVP_3.1_9,What did the person do to the blanket after tidying up the table?,3,Sequence_T5_3645,Sequence_T5,Put down.,Ate.,Took.,Threw.,Threw. 5347,H51V5_10.8_18,What did the person do to the dish after holding the food?,2,Sequence_T5_3647,Sequence_T5,Put down.,Sat on.,Took.,Washed.,Took. 5348,6JGXL_0_20.9,What did the person do to the medicine after sitting at the table?,3,Sequence_T5_3663,Sequence_T5,Threw.,Tidied up.,Opened.,Ate.,Ate. 5349,GMMVC_0_16.4,What did the person do to the book after putting down the blanket?,1,Sequence_T5_3667,Sequence_T5,Took.,Closed.,Opened.,Threw.,Closed. 5350,3Z1YC_14.8_22.9,What did the person do to the bag after holding the broom?,0,Sequence_T5_3671,Sequence_T5,Took.,Put down.,Opened.,Threw.,Took. 5351,E0ZBC_0_38.1,What did the person do to the book after sitting at the table?,3,Sequence_T5_3673,Sequence_T5,Sat at.,Threw.,Opened.,Took.,Took. 5352,GTK8W_30.9_36.4,What did the person do to the book after putting down the food?,0,Sequence_T5_3684,Sequence_T5,Opened.,Closed.,Threw.,Took.,Opened. 5353,81YUE_10.6_30.6,What did the person do to the clothes after lying on the bed?,2,Sequence_T5_3688,Sequence_T5,Took.,Tidied up.,Put down.,Sat at.,Put down. 5354,D87LI_0_19.6,What did the person do to the laptop after sitting at the table?,2,Sequence_T5_3690,Sequence_T5,Opened.,Took.,Closed.,Tidied up.,Closed. 5355,D87LI_0_19.6,What did the person do to the laptop after sitting on the sofa/couch?,2,Sequence_T5_3691,Sequence_T5,Took.,Tidied up.,Closed.,Opened.,Closed. 5356,AK9IB_24.5_35,What did the person do to the box after putting down the shoe?,3,Sequence_T5_3694,Sequence_T5,Threw.,Took.,Opened.,Closed.,Closed. 5357,VWAEL_7.6_30.5,What did the person do to the box after holding the phone/camera?,1,Sequence_T5_3696,Sequence_T5,Opened.,Took.,Threw.,Put down.,Took. 5358,2RTH2_0_17,What did the person do to the towel after tidying up the table?,0,Sequence_T5_3758,Sequence_T5,Put down.,Took.,Closed.,Threw.,Put down. 5359,VT64S_4.9_16.6,What did the person do to the bag after holding the food?,3,Sequence_T5_3779,Sequence_T5,Took.,Put down.,Threw.,Opened.,Opened. 5360,R9NRA_19.4_32,What did the person do to the sofa/couch after putting down the cup/glass/bottle?,0,Sequence_T5_3785,Sequence_T5,Lied on.,Sat on.,Opened.,Took.,Lied on. 5361,EGVGL_0_23,What did the person do to the bag after holding the pillow?,1,Sequence_T5_3801,Sequence_T5,Took.,Opened.,Put down.,Threw.,Opened. 5362,EGVGL_0_23,What did the person do to the bag after lying on the sofa/couch?,2,Sequence_T5_3802,Sequence_T5,Threw.,Took.,Opened.,Put down.,Opened. 5363,8IPWO_1.8_14.4,What did the person do to the book after drinking from the cup/glass/bottle?,3,Sequence_T5_3807,Sequence_T5,Took.,Closed.,Threw.,Opened.,Opened. 5364,2ZXJ5_5.7_12.7,What did the person do to the sofa/couch after putting down the cup/glass/bottle?,2,Sequence_T5_3809,Sequence_T5,Lied on.,Took.,Sat on.,Opened.,Sat on. 5365,9LHP3_5_12.3,What did the person do to the sofa/couch after holding the shoe?,1,Sequence_T5_3872,Sequence_T5,Put down.,Sat on.,Lied on.,Washed.,Sat on. 5366,XPDI1_0_10,What did the person do to the dish after drinking from the cup/glass/bottle?,2,Sequence_T5_3931,Sequence_T5,Threw.,Took.,Put down.,Washed.,Put down. 5367,RAQNI_0_16.2,What did the person do to the blanket after holding the clothes?,3,Sequence_T5_3945,Sequence_T5,Took.,Put down.,Threw.,Tidied up.,Tidied up. 5368,9B93K_1.8_10.4,What did the person do to the sandwich after holding the food?,0,Sequence_T5_3996,Sequence_T5,Took.,Put down.,Sat on.,Ate.,Took. 5369,VGAMG_4_15.6,What did the person do to the dish after taking the cup/glass/bottle?,0,Sequence_T5_4020,Sequence_T5,Put down.,Sat at.,Washed.,Ate.,Put down. 5370,U0X4P_0_30.8,What did the person do to the clothes after watching outside the window?,0,Sequence_T5_4042,Sequence_T5,Threw.,Put down.,Took.,Washed.,Threw. 5371,G87XG_8.7_22.5,What did the person do to the book after sitting at the table?,2,Sequence_T5_4064,Sequence_T5,Opened.,Took.,Put down.,Washed.,Put down. 5372,AS7SG_18.8_31,What did the person do to the laptop after eating the sandwich?,0,Sequence_T5_4107,Sequence_T5,Opened.,Closed.,Sat on.,Took.,Opened. 5373,4G00A_18.9_31.1,What did the person do to the broom after putting down the cup/glass/bottle?,3,Sequence_T5_4125,Sequence_T5,Tidied up.,Lied on.,Threw.,Took.,Took. 5374,RCD08_6.7_30.2,What did the person do to the towel after taking the blanket?,2,Sequence_T5_4146,Sequence_T5,Tidied up.,Opened.,Threw.,Put down.,Threw. 5375,RCD08_7.2_30.2,What did the person do to the towel after holding the clothes?,1,Sequence_T5_4147,Sequence_T5,Took.,Threw.,Put down.,Tidied up.,Threw. 5376,B57IW_4.2_17.1,What did the person do to the phone/camera after opening the door?,1,Sequence_T5_4148,Sequence_T5,Washed.,Took.,Lied on.,Threw.,Took. 5377,8W31Y_0_7.2,What did the person do to the food after lying on the bed?,3,Sequence_T5_4159,Sequence_T5,Threw.,Put down.,Lied on.,Took.,Took. 5378,G4NOT_0_28.3,What did the person do to the door after holding the phone/camera?,0,Sequence_T5_4208,Sequence_T5,Closed.,Tidied up.,Ate.,Opened.,Closed. 5379,9K2TY_19.2_32,What did the person do to the towel after putting down the blanket?,3,Sequence_T5_4243,Sequence_T5,Took.,Sat on.,Tidied up.,Threw.,Threw. 5380,BDWIX_15.8_23.8,What did the person do to the clothes after putting down the blanket?,1,Sequence_T5_4259,Sequence_T5,Closed.,Tidied up.,Washed.,Threw.,Tidied up. 5381,SPUPH_6.1_11.4,What did the person do to the sandwich after holding the food?,2,Sequence_T5_4266,Sequence_T5,Put down.,Threw.,Took.,Ate.,Took. 5382,92UB5_0_32,What did the person do to the pillow after sitting at the table?,2,Sequence_T5_4306,Sequence_T5,Tidied up.,Ate.,Put down.,Took.,Put down. 5383,92UB5_0_32,What did the person do to the pillow after watching at the book?,2,Sequence_T5_4307,Sequence_T5,Took.,Sat on.,Put down.,Threw.,Put down. 5384,KO80I_0_23.1,What did the person do to the pillow after holding the phone/camera?,2,Sequence_T5_4329,Sequence_T5,Threw.,Lied on.,Put down.,Took.,Put down. 5385,KO80I_0_23.1,What did the person do to the pillow after sitting on the floor?,3,Sequence_T5_4330,Sequence_T5,Took.,Tidied up.,Threw.,Put down.,Put down. 5386,RZY2I_4_10,What did the person do to the window after taking the bag?,2,Sequence_T5_4338,Sequence_T5,Closed.,Washed.,Opened.,Sat on.,Opened. 5387,MOREL_0.7_26.8,What did the person do to the cup/glass/bottle after taking the dish?,3,Sequence_T5_4361,Sequence_T5,Ate.,Lied on.,Washed.,Put down.,Put down. 5388,MOREL_6.5_26.8,What did the person do to the cup/glass/bottle after tidying up the closet/cabinet?,0,Sequence_T5_4362,Sequence_T5,Put down.,Washed.,Ate.,Took.,Put down. 5389,NLWBW_0_8.5,What did the person do to the bag after closing the door?,3,Sequence_T5_4370,Sequence_T5,Took.,Opened.,Threw.,Put down.,Put down. 5390,5FDHU_0_6.1,What did the person do to the sandwich after taking the food?,3,Sequence_T5_4393,Sequence_T5,Lied on.,Put down.,Threw.,Ate.,Ate. 5391,OA6XR_0_22.5,What did the person do to the blanket after holding the book?,2,Sequence_T5_4394,Sequence_T5,Threw.,Took.,Put down.,Tidied up.,Put down. 5392,3064K_0_8.1,What did the person do to the blanket after sitting on the sofa/couch?,3,Sequence_T5_4396,Sequence_T5,Took.,Threw.,Put down.,Tidied up.,Tidied up. 5393,8J723_0_35.5,What did the person do to the window after holding the broom?,1,Sequence_T5_4404,Sequence_T5,Closed.,Opened.,Washed.,Lied on.,Opened. 5394,3MLVF_15.5_21.2,What did the person do to the refrigerator after taking the cup/glass/bottle?,2,Sequence_T5_4407,Sequence_T5,Opened.,Tidied up.,Closed.,Washed.,Closed. 5395,HOZ76_0_25,What did the person do to the book after sitting at the table?,0,Sequence_T5_4426,Sequence_T5,Took.,Closed.,Opened.,Threw.,Took. 5396,EK19H_4.2_17.6,What did the person do to the sandwich after holding the food?,2,Sequence_T5_4433,Sequence_T5,Took.,Closed.,Put down.,Ate.,Put down. 5397,FRLW2_8.6_32,What did the person do to the shoe after putting down the bag?,2,Sequence_T5_4441,Sequence_T5,Sat on.,Took.,Threw.,Closed.,Threw. 5398,86GSE_9.6_20,What did the person do to the sofa/couch after taking the shoe?,3,Sequence_T5_4524,Sequence_T5,Opened.,Put down.,Lied on.,Sat on.,Sat on. 5399,9J166_9.9_21.9,What did the person do to the book after opening the window?,1,Sequence_T5_4531,Sequence_T5,Took.,Closed.,Put down.,Threw.,Closed. 5400,9J166_0_17.5,What did the person do to the window after holding the book?,2,Sequence_T5_4532,Sequence_T5,Washed.,Closed.,Opened.,Threw.,Opened. 5401,9J166_0_17.5,What did the person do to the window after watching at the book?,2,Sequence_T5_4533,Sequence_T5,Washed.,Closed.,Opened.,Put down.,Opened. 5402,9J166_10.5_21.9,What did the person do to the book after watching outside the window?,2,Sequence_T5_4534,Sequence_T5,Took.,Put down.,Closed.,Opened.,Closed. 5403,V9XR6_0_20,What did the person do to the bed after sitting at the table?,3,Sequence_T5_4537,Sequence_T5,Opened.,Tidied up.,Closed.,Lied on.,Lied on. 5404,EXPOA_12.3_27.3,What did the person do to the clothes after sitting at the table?,2,Sequence_T5_4571,Sequence_T5,Washed.,Threw.,Put down.,Tidied up.,Put down. 5405,EXPOA_0.3_27.3,What did the person do to the clothes after drinking from the cup/glass/bottle?,2,Sequence_T5_4572,Sequence_T5,Sat at.,Threw.,Put down.,Washed.,Put down. 5406,0F453_0.3_20,What did the person do to the paper/notebook after opening the refrigerator?,0,Sequence_T5_4579,Sequence_T5,Took.,Sat at.,Lied on.,Put down.,Took. 5407,TAGS2_0_21.2,What did the person do to the door after holding the phone/camera?,2,Sequence_T5_4580,Sequence_T5,Closed.,Took.,Opened.,Put down.,Opened. 5408,1C6P3_0_8.6,What did the person do to the sandwich after holding the medicine?,2,Sequence_T5_4621,Sequence_T5,Closed.,Took.,Ate.,Put down.,Ate. 5409,1C6P3_0_8.6,What did the person do to the sandwich after sitting at the table?,1,Sequence_T5_4622,Sequence_T5,Took.,Ate.,Closed.,Sat on.,Ate. 5410,1C6P3_0_8.6,What did the person do to the sandwich after holding the food?,3,Sequence_T5_4623,Sequence_T5,Washed.,Put down.,Took.,Ate.,Ate. 5411,M506V_0_17.8,What did the person do to the towel after holding the laptop?,2,Sequence_T5_4625,Sequence_T5,Tidied up.,Put down.,Threw.,Took.,Threw. 5412,M506V_6.4_17.8,What did the person do to the towel after washing the table?,2,Sequence_T5_4626,Sequence_T5,Put down.,Tidied up.,Threw.,Took.,Threw. 5413,YLE12_0_9.6,What did the person do to the paper/notebook after tidying up the table?,2,Sequence_T5_4633,Sequence_T5,Opened.,Washed.,Took.,Put down.,Took. 5414,M2XIS_0_7.4,What did the person do to the sofa/couch after putting down the laptop?,3,Sequence_T5_4641,Sequence_T5,Lied on.,Washed.,Closed.,Sat on.,Sat on. 5415,M2XIS_2.7_9.4,What did the person do to the laptop after sitting on the sofa/couch?,3,Sequence_T5_4642,Sequence_T5,Closed.,Lied on.,Took.,Opened.,Opened. 5416,9A58F_2.9_10.9,What did the person do to the laptop after throwing the shoe?,0,Sequence_T5_4643,Sequence_T5,Took.,Closed.,Opened.,Threw.,Took. 5417,024PD_0_10.6,What did the person do to the book after holding the phone/camera?,1,Sequence_T5_4670,Sequence_T5,Took.,Put down.,Closed.,Threw.,Put down. 5418,VTIUW_0_15.8,What did the person do to the phone/camera after sitting at the table?,0,Sequence_T5_4688,Sequence_T5,Took.,Sat on.,Opened.,Put down.,Took. 5419,CII5H_2.1_14.7,What did the person do to the clothes after opening the door?,2,Sequence_T5_4724,Sequence_T5,Washed.,Sat at.,Tidied up.,Took.,Tidied up. 5420,75RPN_3.8_16.8,What did the person do to the pillow after holding the blanket?,0,Sequence_T5_4734,Sequence_T5,Took.,Put down.,Threw.,Opened.,Took. 5421,IXISD_0_15.6,What did the person do to the shoe after sitting on the sofa/couch?,1,Sequence_T5_4765,Sequence_T5,Washed.,Put down.,Threw.,Took.,Put down. 5422,OB1XO_0_7.2,What did the person do to the clothes after sitting on the bed?,0,Sequence_T5_4772,Sequence_T5,Took.,Opened.,Threw.,Tidied up.,Took. 5423,M1GW9_3.8_23.5,What did the person do to the pillow after opening the door?,0,Sequence_T5_4813,Sequence_T5,Threw.,Took.,Put down.,Sat at.,Threw. 5424,EO6OI_4.1_12.2,What did the person do to the clothes after putting down the blanket?,0,Sequence_T5_4837,Sequence_T5,Threw.,Washed.,Took.,Tidied up.,Threw. 5425,EO6OI_13.6_27.6,What did the person do to the table after taking the towel?,1,Sequence_T5_4839,Sequence_T5,Put down.,Washed.,Tidied up.,Sat on.,Washed. 5426,L7HA6_15_32.9,What did the person do to the phone/camera after drinking from the cup/glass/bottle?,3,Sequence_T5_4842,Sequence_T5,Tidied up.,Took.,Sat at.,Put down.,Put down. 5427,8G9A9_14.3_22.7,What did the person do to the laptop after putting down the cup/glass/bottle?,2,Sequence_T5_4870,Sequence_T5,Took.,Closed.,Opened.,Sat at.,Opened. 5428,A0ZW3_0_26.2,What did the person do to the laptop after lying on the floor?,1,Sequence_T5_4899,Sequence_T5,Threw.,Opened.,Closed.,Put down.,Opened. 5429,A0ZW3_17.3_26.2,What did the person do to the laptop after sitting on the floor?,2,Sequence_T5_4900,Sequence_T5,Took.,Sat at.,Opened.,Ate.,Opened. 5430,L8Y8D_43.7_56,What did the person do to the refrigerator after drinking from the cup/glass/bottle?,0,Sequence_T5_4911,Sequence_T5,Closed.,Tidied up.,Put down.,Opened.,Closed. 5431,6VF2L_14.3_30.9,What did the person do to the blanket after drinking from the cup/glass/bottle?,0,Sequence_T5_4916,Sequence_T5,Took.,Sat at.,Put down.,Tidied up.,Took. 5432,6VF2L_23.1_32.5,What did the person do to the clothes after taking the blanket?,1,Sequence_T5_4917,Sequence_T5,Washed.,Put down.,Tidied up.,Threw.,Put down. 5433,WBATR_26.1_34,What did the person do to the clothes after putting down the food?,1,Sequence_T5_4969,Sequence_T5,Threw.,Took.,Washed.,Tidied up.,Took. 5434,KFC28_0.7_35,What did the person do to the closet/cabinet after taking the shoe?,0,Sequence_T5_4978,Sequence_T5,Closed.,Tidied up.,Opened.,Sat on.,Closed. 5435,KFC28_0.4_35,What did the person do to the closet/cabinet after sitting at the table?,3,Sequence_T5_4979,Sequence_T5,Ate.,Tidied up.,Opened.,Closed.,Closed. 5436,YVH4J_33_45.9,What did the person do to the paper/notebook after opening the bag?,3,Sequence_T5_4981,Sequence_T5,Put down.,Ate.,Lied on.,Took.,Took. 5437,8DL54_17.1_27.8,What did the person do to the refrigerator after putting down the dish?,1,Sequence_T5_4987,Sequence_T5,Tidied up.,Closed.,Opened.,Lied on.,Closed. 5438,BLIFO_1_10.8,What did the person do to the towel after opening the closet/cabinet?,1,Sequence_T5_5016,Sequence_T5,Threw.,Tidied up.,Took.,Put down.,Tidied up. 5439,MC50M_0.1_9.2,What did the person do to the clothes after taking the towel?,3,Sequence_T5_5042,Sequence_T5,Tidied up.,Lied on.,Ate.,Put down.,Put down. 5440,MC50M_0_9.2,What did the person do to the clothes after tidying up the blanket?,1,Sequence_T5_5043,Sequence_T5,Threw.,Put down.,Took.,Sat on.,Put down. 5441,A5XR5_0_19.4,What did the person do to the food after sitting at the table?,2,Sequence_T5_5045,Sequence_T5,Threw.,Ate.,Took.,Put down.,Took. 5442,RKGG5_7_21,What did the person do to the sofa/couch after taking the pillow?,3,Sequence_T5_5053,Sequence_T5,Sat on.,Tidied up.,Opened.,Lied on.,Lied on. 5443,RKGG5_0_10.7,What did the person do to the broom after sitting on the sofa/couch?,2,Sequence_T5_5054,Sequence_T5,Tidied up.,Put down.,Threw.,Took.,Threw. 5444,AXS82_13.7_31,What did the person do to the refrigerator after closing the book?,2,Sequence_T5_5107,Sequence_T5,Took.,Tidied up.,Opened.,Lied on.,Opened. 5445,AXS82_18.1_31,What did the person do to the refrigerator after holding the sandwich?,3,Sequence_T5_5108,Sequence_T5,Threw.,Tidied up.,Closed.,Opened.,Opened. 5446,IWK2Y_0.4_11,What did the person do to the pillow after watching at the picture?,3,Sequence_T5_5127,Sequence_T5,Put down.,Threw.,Tidied up.,Took.,Took. 5447,6KIA4_0_24,What did the person do to the table after taking the dish?,1,Sequence_T5_5134,Sequence_T5,Tidied up.,Washed.,Closed.,Sat on.,Washed. 5448,JOYAJ_6.7_19.4,What did the person do to the refrigerator after opening the door?,2,Sequence_T5_5180,Sequence_T5,Tidied up.,Took.,Closed.,Ate.,Closed. 5449,JOYAJ_9.1_19.4,What did the person do to the refrigerator after holding the food?,3,Sequence_T5_5181,Sequence_T5,Took.,Ate.,Opened.,Closed.,Closed. 5450,55AH5_0_21.8,What did the person do to the sofa/couch after opening the door?,3,Sequence_T5_5190,Sequence_T5,Sat on.,Threw.,Closed.,Lied on.,Lied on. 5451,55AH5_5.5_21.8,What did the person do to the sofa/couch after holding the food?,1,Sequence_T5_5191,Sequence_T5,Took.,Lied on.,Ate.,Sat on.,Lied on. 5452,M5UQR_0_19.7,What did the person do to the phone/camera after holding the mirror?,1,Sequence_T5_5192,Sequence_T5,Ate.,Put down.,Tidied up.,Took.,Put down. 5453,937EW_13.9_33,What did the person do to the closet/cabinet after watching at the picture?,0,Sequence_T5_5195,Sequence_T5,Tidied up.,Opened.,Threw.,Closed.,Tidied up. 5454,937EW_7.8_33,What did the person do to the closet/cabinet after holding the clothes?,1,Sequence_T5_5196,Sequence_T5,Closed.,Tidied up.,Opened.,Washed.,Tidied up. 5455,937EW_6.7_33,What did the person do to the closet/cabinet after taking the clothes?,0,Sequence_T5_5197,Sequence_T5,Tidied up.,Opened.,Closed.,Sat on.,Tidied up. 5456,GPR89_0_56.9,What did the person do to the paper/notebook after tidying up the table?,0,Sequence_T5_5211,Sequence_T5,Put down.,Sat on.,Took.,Lied on.,Put down. 5457,GPR89_42.6_56.9,What did the person do to the paper/notebook after taking the book?,3,Sequence_T5_5212,Sequence_T5,Closed.,Threw.,Lied on.,Put down.,Put down. 5458,9OMY1_0_6.3,What did the person do to the box after sitting at the table?,1,Sequence_T5_5237,Sequence_T5,Closed.,Opened.,Threw.,Put down.,Opened. 5459,F24GU_1.1_18.7,What did the person do to the floor after watching outside the window?,2,Sequence_T5_5241,Sequence_T5,Sat on.,Closed.,Lied on.,Took.,Lied on. 5460,IZ2XX_2.9_14.2,What did the person do to the book after closing the door?,1,Sequence_T5_5243,Sequence_T5,Threw.,Put down.,Took.,Opened.,Put down. 5461,KONWE_10_22.5,What did the person do to the pillow after sitting on the bed?,2,Sequence_T5_5246,Sequence_T5,Put down.,Tidied up.,Threw.,Took.,Threw. 5462,1HGEX_0_21.1,What did the person do to the book after sitting at the table?,1,Sequence_T5_5263,Sequence_T5,Closed.,Took.,Put down.,Threw.,Took. 5463,2GQDN_3.3_9,What did the person do to the box after taking the food?,1,Sequence_T5_5282,Sequence_T5,Threw.,Opened.,Put down.,Closed.,Opened. 5464,NR9L2_16.4_27.8,What did the person do to the food after opening the closet/cabinet?,3,Sequence_T5_5284,Sequence_T5,Sat at.,Took.,Threw.,Put down.,Put down. 5465,QPX3S_0_11.4,What did the person do to the food after watching outside the window?,1,Sequence_T5_5294,Sequence_T5,Lied on.,Put down.,Took.,Threw.,Put down. 5466,KFGXC_0_17.7,What did the person do to the food after holding the dish?,2,Sequence_T5_5309,Sequence_T5,Took.,Washed.,Put down.,Threw.,Put down. 5467,UDAQU_0_20.4,What did the person do to the sandwich after sitting on the floor?,0,Sequence_T5_5381,Sequence_T5,Put down.,Ate.,Took.,Sat at.,Put down. 5468,UDAQU_0_20.4,What did the person do to the sandwich after holding the food?,3,Sequence_T5_5382,Sequence_T5,Took.,Sat on.,Ate.,Put down.,Put down. 5469,7ZCXJ_5.5_29,What did the person do to the blanket after sitting on the floor?,2,Sequence_T5_5429,Sequence_T5,Ate.,Opened.,Threw.,Sat at.,Threw. 5470,Y7WEK_0_29.2,What did the person do to the book after sitting on the sofa/couch?,1,Sequence_T5_5452,Sequence_T5,Threw.,Closed.,Opened.,Took.,Closed. 5471,WH1S5_7.5_28.8,What did the person do to the sandwich after holding the food?,1,Sequence_T5_5461,Sequence_T5,Took.,Put down.,Threw.,Ate.,Put down. 5472,5ZDNU_4.1_24,What did the person do to the box after putting down the clothes?,0,Sequence_T5_5498,Sequence_T5,Took.,Closed.,Ate.,Opened.,Took. 5473,GC1Q1_0_11.5,What did the person do to the clothes after opening the door?,3,Sequence_T5_5506,Sequence_T5,Washed.,Threw.,Tidied up.,Put down.,Put down. 5474,0OE6M_3.4_11.9,What did the person do to the towel after throwing the clothes?,1,Sequence_T5_5514,Sequence_T5,Put down.,Took.,Sat on.,Tidied up.,Took. 5475,ZA7ST_28.2_35,What did the person do to the box after taking the bag?,2,Sequence_T5_5583,Sequence_T5,Closed.,Threw.,Opened.,Put down.,Opened. 5476,X4DOF_3.5_17,What did the person do to the pillow after watching outside the window?,3,Sequence_T5_5612,Sequence_T5,Closed.,Sat on.,Ate.,Put down.,Put down. 5477,O7OD2_4.4_16.1,What did the person do to the sandwich after holding the medicine?,3,Sequence_T5_5623,Sequence_T5,Sat on.,Put down.,Took.,Ate.,Ate. 5478,O7OD2_0.5_16.1,What did the person do to the sandwich after holding the food?,3,Sequence_T5_5624,Sequence_T5,Put down.,Washed.,Took.,Ate.,Ate. 5479,YH70K_0_26.8,What did the person do to the dish after tidying up the table?,1,Sequence_T5_5625,Sequence_T5,Sat on.,Put down.,Took.,Washed.,Put down. 5480,B69CF_0_20.6,What did the person do to the window after lying on the floor?,1,Sequence_T5_5649,Sequence_T5,Took.,Closed.,Washed.,Opened.,Closed. 5481,5GPOJ_0_13.5,What did the person do to the book after sitting on the sofa/couch?,1,Sequence_T5_5661,Sequence_T5,Tidied up.,Closed.,Threw.,Opened.,Closed. 5482,MY5CQ_0_17.4,What did the person do to the laptop after sitting at the table?,3,Sequence_T5_5676,Sequence_T5,Put down.,Threw.,Took.,Closed.,Closed. 5483,MY5CQ_11.5_19.6,What did the person do to the book after closing the laptop?,2,Sequence_T5_5677,Sequence_T5,Took.,Put down.,Opened.,Threw.,Opened. 5484,E18UD_0_21.4,What did the person do to the food after sitting at the table?,1,Sequence_T5_5685,Sequence_T5,Closed.,Took.,Threw.,Put down.,Took. 5485,MYZLT_0.6_38.7,What did the person do to the towel after holding the phone/camera?,1,Sequence_T5_5696,Sequence_T5,Put down.,Took.,Tidied up.,Threw.,Took. 5486,6C4DV_0.2_7,What did the person do to the closet/cabinet after putting down the cup/glass/bottle?,0,Sequence_T5_5718,Sequence_T5,Tidied up.,Closed.,Opened.,Threw.,Tidied up. 5487,0OSJY_0_14.7,What did the person do to the broom after sitting on the bed?,0,Sequence_T5_5758,Sequence_T5,Put down.,Tidied up.,Sat on.,Took.,Put down. 5488,BJXRT_1.5_24.3,What did the person do to the dish after holding the blanket?,3,Sequence_T5_5768,Sequence_T5,Washed.,Put down.,Lied on.,Took.,Took. 5489,S1J2Q_4.4_20.8,What did the person do to the refrigerator after taking the clothes?,0,Sequence_T5_5796,Sequence_T5,Opened.,Sat on.,Ate.,Closed.,Opened. 5490,S1J2Q_5_20.8,What did the person do to the refrigerator after holding the clothes?,2,Sequence_T5_5797,Sequence_T5,Tidied up.,Closed.,Opened.,Threw.,Opened. 5491,KZODG_0_22.9,What did the person do to the laptop after sitting on the sofa/couch?,0,Sequence_T5_5810,Sequence_T5,Closed.,Tidied up.,Took.,Put down.,Closed. 5492,3ND23_1.4_13.9,What did the person do to the sofa/couch after putting down the book?,2,Sequence_T5_5813,Sequence_T5,Closed.,Lied on.,Sat on.,Ate.,Sat on. 5493,EM0B6_14.9_23.2,What did the person do to the sandwich after putting down the cup/glass/bottle?,1,Sequence_T5_5850,Sequence_T5,Put down.,Took.,Lied on.,Ate.,Took. 5494,O2DXE_0_10.6,What did the person do to the blanket after lying on the floor?,3,Sequence_T5_5861,Sequence_T5,Threw.,Tidied up.,Took.,Put down.,Put down. 5495,9207X_1.1_16,What did the person do to the closet/cabinet after holding the phone/camera?,3,Sequence_T5_5874,Sequence_T5,Tidied up.,Sat on.,Closed.,Opened.,Opened. 5496,84893_0.7_15.3,What did the person do to the blanket after putting down the clothes?,2,Sequence_T5_5893,Sequence_T5,Closed.,Took.,Tidied up.,Sat at.,Tidied up. 5497,84893_0_15.3,What did the person do to the blanket after watching outside the window?,0,Sequence_T5_5894,Sequence_T5,Tidied up.,Sat at.,Washed.,Put down.,Tidied up. 5498,84893_13.6_20.5,What did the person do to the shoe after holding the clothes?,2,Sequence_T5_5895,Sequence_T5,Took.,Put down.,Threw.,Opened.,Threw. 5499,84893_7.8_15.6,What did the person do to the clothes after tidying up the blanket?,2,Sequence_T5_5896,Sequence_T5,Tidied up.,Opened.,Threw.,Washed.,Threw. 5500,KXCSL_1.6_9.5,What did the person do to the refrigerator after putting down the food?,1,Sequence_T5_5911,Sequence_T5,Lied on.,Closed.,Tidied up.,Opened.,Closed. 5501,WV9FZ_3.4_30,What did the person do to the table after holding the food?,1,Sequence_T5_5925,Sequence_T5,Opened.,Sat at.,Washed.,Tidied up.,Sat at. 5502,WV9FZ_3_30,What did the person do to the table after taking the food?,2,Sequence_T5_5926,Sequence_T5,Tidied up.,Opened.,Sat at.,Washed.,Sat at. 5503,Z6HEA_0_11.4,What did the person do to the clothes after putting down the towel?,2,Sequence_T5_5976,Sequence_T5,Took.,Tidied up.,Washed.,Closed.,Washed. 5504,Z6HEA_2.6_16.2,What did the person do to the floor after washing the clothes?,0,Sequence_T5_5977,Sequence_T5,Sat on.,Lied on.,Took.,Opened.,Sat on. 5505,2WX2Z_2.8_11.7,What did the person do to the closet/cabinet after taking the shoe?,2,Sequence_T5_5993,Sequence_T5,Opened.,Sat at.,Closed.,Tidied up.,Closed. 5506,2WX2Z_2.3_11.7,What did the person do to the closet/cabinet after opening the door?,3,Sequence_T5_5995,Sequence_T5,Tidied up.,Put down.,Sat on.,Closed.,Closed. 5507,HL5OP_28.5_37,What did the person do to the table after taking the dish?,0,Sequence_T5_6006,Sequence_T5,Tidied up.,Sat on.,Washed.,Put down.,Tidied up. 5508,BZD0Q_11.3_22.8,What did the person do to the bag after putting down the cup/glass/bottle?,0,Sequence_T5_6017,Sequence_T5,Took.,Opened.,Threw.,Washed.,Took. 5509,Z70KK_7.9_15,What did the person do to the table after putting down the bag?,0,Sequence_T5_6031,Sequence_T5,Washed.,Tidied up.,Closed.,Sat on.,Washed. 5510,SUI1X_0_10.3,What did the person do to the bag after sitting on the floor?,3,Sequence_T5_6062,Sequence_T5,Threw.,Took.,Put down.,Opened.,Opened. 5511,9AFSH_0_7.2,What did the person do to the pillow after sitting on the sofa/couch?,0,Sequence_T5_6072,Sequence_T5,Put down.,Threw.,Sat on.,Took.,Put down. 5512,DBT6E_10.8_23.4,What did the person do to the bag after sitting on the floor?,2,Sequence_T5_6075,Sequence_T5,Put down.,Threw.,Opened.,Took.,Opened. 5513,74DPG_20.7_40,What did the person do to the dish after drinking from the cup/glass/bottle?,0,Sequence_T5_6104,Sequence_T5,Put down.,Washed.,Tidied up.,Ate.,Put down. 5514,9NV2G_0_23.1,What did the person do to the cup/glass/bottle after lying on the bed?,0,Sequence_T5_6108,Sequence_T5,Put down.,Washed.,Took.,Threw.,Put down. 5515,TVCQF_4.7_13.9,What did the person do to the table after drinking from the cup/glass/bottle?,2,Sequence_T5_6122,Sequence_T5,Tidied up.,Washed.,Sat at.,Put down.,Sat at. 5516,TVCQF_6.5_17,What did the person do to the box after sitting at the table?,3,Sequence_T5_6123,Sequence_T5,Put down.,Threw.,Closed.,Opened.,Opened. 5517,NV4FC_5.5_21.3,What did the person do to the shoe after putting down the clothes?,1,Sequence_T5_6146,Sequence_T5,Closed.,Threw.,Ate.,Took.,Threw. 5518,XFRYR_6.8_16.2,What did the person do to the closet/cabinet after taking the food?,0,Sequence_T5_6148,Sequence_T5,Closed.,Tidied up.,Lied on.,Opened.,Closed. 5519,AJTDO_0_18.5,What did the person do to the pillow after holding the clothes?,3,Sequence_T5_6153,Sequence_T5,Opened.,Took.,Threw.,Put down.,Put down. 5520,8VSV6_0_17,What did the person do to the table after lying on the floor?,3,Sequence_T5_6158,Sequence_T5,Opened.,Tidied up.,Washed.,Sat at.,Sat at. 5521,XYGU1_4.7_20.5,What did the person do to the book after sitting at the table?,2,Sequence_T5_6181,Sequence_T5,Sat at.,Took.,Opened.,Threw.,Opened. 5522,GLIC0_0_26.7,What did the person do to the clothes after opening the bag?,1,Sequence_T5_6205,Sequence_T5,Took.,Put down.,Opened.,Washed.,Put down. 5523,OKYYQ_2.3_8.5,What did the person do to the book after putting down the paper/notebook?,2,Sequence_T5_6216,Sequence_T5,Threw.,Sat on.,Closed.,Put down.,Closed. 5524,306S9_1.3_9.4,What did the person do to the food after sitting on the floor?,2,Sequence_T5_6229,Sequence_T5,Threw.,Took.,Put down.,Sat at.,Put down. 5525,UDGRS_19.9_27.6,What did the person do to the book after putting down the phone/camera?,0,Sequence_T5_6237,Sequence_T5,Closed.,Opened.,Threw.,Took.,Closed. 5526,M7BD4_18_26.2,What did the person do to the laptop after opening the closet/cabinet?,1,Sequence_T5_6265,Sequence_T5,Took.,Closed.,Lied on.,Put down.,Closed. 5527,MQ4YR_0_24.9,What did the person do to the bag after lying on the bed?,2,Sequence_T5_6277,Sequence_T5,Opened.,Threw.,Took.,Put down.,Took. 5528,V9W9C_29.2_37,What did the person do to the table after drinking from the cup/glass/bottle?,2,Sequence_T5_6294,Sequence_T5,Washed.,Took.,Tidied up.,Sat on.,Tidied up. 5529,V9W9C_27.7_37,What did the person do to the table after taking the cup/glass/bottle?,1,Sequence_T5_6295,Sequence_T5,Washed.,Tidied up.,Sat on.,Took.,Tidied up. 5530,9632M_4.9_32,What did the person do to the towel after holding the food?,2,Sequence_T5_6297,Sequence_T5,Threw.,Put down.,Took.,Tidied up.,Took. 5531,0JB3D_3.1_11.7,What did the person do to the refrigerator after taking the cup/glass/bottle?,1,Sequence_T5_6324,Sequence_T5,Put down.,Closed.,Opened.,Washed.,Closed. 5532,VWN13_0_8.3,What did the person do to the door after holding the phone/camera?,0,Sequence_T5_6342,Sequence_T5,Opened.,Lied on.,Closed.,Washed.,Opened. 5533,S3TZ1_4.9_13,What did the person do to the refrigerator after putting down the food?,0,Sequence_T5_6347,Sequence_T5,Closed.,Opened.,Threw.,Washed.,Closed. 5534,S3TZ1_5.4_13,What did the person do to the refrigerator after holding the food?,1,Sequence_T5_6349,Sequence_T5,Sat on.,Closed.,Opened.,Threw.,Closed. 5535,ZOL0R_3.7_14.8,What did the person do to the clothes after opening the door?,2,Sequence_T5_6360,Sequence_T5,Ate.,Washed.,Threw.,Put down.,Threw. 5536,OK2AF_13.5_30,What did the person do to the book after closing the door?,2,Sequence_T5_6367,Sequence_T5,Put down.,Opened.,Took.,Lied on.,Took. 5537,WE2PF_0_12.2,What did the person do to the bag after sitting on the sofa/couch?,3,Sequence_T5_6378,Sequence_T5,Threw.,Put down.,Took.,Opened.,Opened. 5538,WE2PF_2_12.2,What did the person do to the bag after holding the food?,3,Sequence_T5_6379,Sequence_T5,Put down.,Threw.,Took.,Opened.,Opened. 5539,UEP20_12.6_23.1,What did the person do to the bed after putting down the paper/notebook?,1,Sequence_T5_6390,Sequence_T5,Sat on.,Lied on.,Opened.,Washed.,Lied on. 5540,5X5DT_10.6_19.5,What did the person do to the bag after closing the laptop?,3,Sequence_T5_6397,Sequence_T5,Put down.,Opened.,Threw.,Took.,Took. 5541,5X5DT_0_19.5,What did the person do to the bag after holding the laptop?,1,Sequence_T5_6398,Sequence_T5,Put down.,Took.,Threw.,Opened.,Took. 5542,VKXLL_16.9_28.6,What did the person do to the box after putting down the dish?,0,Sequence_T5_6410,Sequence_T5,Opened.,Threw.,Lied on.,Took.,Opened. 5543,UFVO8_3.2_11,What did the person do to the broom after opening the closet/cabinet?,3,Sequence_T5_6414,Sequence_T5,Washed.,Tidied up.,Took.,Put down.,Put down. 5544,V9RT3_0_21.5,What did the person do to the phone/camera after sitting at the table?,2,Sequence_T5_6417,Sequence_T5,Closed.,Ate.,Put down.,Took.,Put down. 5545,Q8UJ8_0.6_5.9,What did the person do to the bag after sitting at the table?,3,Sequence_T5_6419,Sequence_T5,Threw.,Took.,Put down.,Opened.,Opened. 5546,LY10X_14.5_31.6,What did the person do to the medicine after opening the closet/cabinet?,3,Sequence_T5_6434,Sequence_T5,Closed.,Put down.,Threw.,Ate.,Ate. 5547,3XKBC_18.8_24.7,What did the person do to the table after opening the laptop?,1,Sequence_T5_6438,Sequence_T5,Washed.,Sat at.,Tidied up.,Lied on.,Sat at. 5548,3XKBC_11.9_28.1,What did the person do to the laptop after putting down the clothes?,1,Sequence_T5_6439,Sequence_T5,Took.,Opened.,Closed.,Ate.,Opened. 5549,EC695_0_18.6,What did the person do to the laptop after lying on the sofa/couch?,1,Sequence_T5_6456,Sequence_T5,Threw.,Took.,Closed.,Tidied up.,Took. 5550,1333C_4.9_13.1,What did the person do to the dish after throwing the towel?,2,Sequence_T5_6457,Sequence_T5,Sat on.,Lied on.,Took.,Put down.,Took. 5551,0Y19Q_14_24,What did the person do to the cup/glass/bottle after watching outside the window?,0,Sequence_T5_6458,Sequence_T5,Put down.,Washed.,Tidied up.,Took.,Put down. 5552,983K8_0_12.5,What did the person do to the blanket after eating the sandwich?,1,Sequence_T5_6459,Sequence_T5,Tidied up.,Took.,Washed.,Put down.,Took. 5553,983K8_0_12.5,What did the person do to the blanket after holding the food?,0,Sequence_T5_6460,Sequence_T5,Took.,Put down.,Tidied up.,Threw.,Took. 5554,FZJTT_0_24,What did the person do to the phone/camera after lying on the sofa/couch?,3,Sequence_T5_6492,Sequence_T5,Sat at.,Closed.,Put down.,Took.,Took. 5555,PZD7Z_0_17.6,What did the person do to the broom after sitting at the table?,3,Sequence_T5_6493,Sequence_T5,Closed.,Threw.,Took.,Put down.,Put down. 5556,EAKL5_8.9_28.5,What did the person do to the phone/camera after tidying up the table?,0,Sequence_T5_6505,Sequence_T5,Put down.,Lied on.,Washed.,Took.,Put down. 5557,MA15X_17.5_72,What did the person do to the blanket after drinking from the cup/glass/bottle?,2,Sequence_T5_6514,Sequence_T5,Put down.,Took.,Threw.,Tidied up.,Threw. 5558,MA15X_21.8_72,What did the person do to the blanket after putting down the cup/glass/bottle?,1,Sequence_T5_6515,Sequence_T5,Ate.,Threw.,Tidied up.,Opened.,Threw. 5559,MA15X_21_72,What did the person do to the blanket after taking the cup/glass/bottle?,3,Sequence_T5_6516,Sequence_T5,Ate.,Put down.,Tidied up.,Threw.,Threw. 5560,MA15X_18.2_72,What did the person do to the blanket after sitting on the sofa/couch?,2,Sequence_T5_6517,Sequence_T5,Put down.,Took.,Threw.,Tidied up.,Threw. 5561,0BZAD_5.9_12.9,What did the person do to the book after sitting on the floor?,2,Sequence_T5_6531,Sequence_T5,Closed.,Threw.,Opened.,Took.,Opened. 5562,B8PQL_0.8_6.9,What did the person do to the towel after putting down the clothes?,3,Sequence_T5_6537,Sequence_T5,Tidied up.,Took.,Sat on.,Threw.,Threw. 5563,B8PQL_5.5_16.3,What did the person do to the window after taking the broom?,2,Sequence_T5_6540,Sequence_T5,Opened.,Closed.,Washed.,Threw.,Washed. 5564,Z6LYG_10.8_42,What did the person do to the refrigerator after taking the food?,2,Sequence_T5_6552,Sequence_T5,Washed.,Opened.,Closed.,Tidied up.,Closed. 5565,Z6LYG_30.5_42,What did the person do to the refrigerator after putting down the dish?,0,Sequence_T5_6553,Sequence_T5,Closed.,Sat on.,Threw.,Opened.,Closed. 5566,1G90H_0_11.1,What did the person do to the cup/glass/bottle after lying on the floor?,0,Sequence_T5_6562,Sequence_T5,Took.,Threw.,Put down.,Washed.,Took. 5567,8DSGI_9.6_20,What did the person do to the book after putting down the clothes?,0,Sequence_T5_6567,Sequence_T5,Opened.,Took.,Lied on.,Threw.,Opened. 5568,0CG15_19.7_29.7,What did the person do to the closet/cabinet after putting down the clothes?,3,Sequence_T5_6587,Sequence_T5,Tidied up.,Closed.,Sat on.,Opened.,Opened. 5569,ACJBD_30.8_36.7,What did the person do to the clothes after putting down the pillow?,1,Sequence_T5_6610,Sequence_T5,Opened.,Tidied up.,Threw.,Took.,Tidied up. 5570,G4AJK_9_40.7,What did the person do to the food after eating the sandwich?,1,Sequence_T5_6612,Sequence_T5,Took.,Put down.,Washed.,Threw.,Put down. 5571,G4AJK_3.7_40.7,What did the person do to the food after holding the dish?,0,Sequence_T5_6613,Sequence_T5,Put down.,Threw.,Took.,Sat on.,Put down. 5572,EG1XK_13.9_32.9,What did the person do to the door after drinking from the cup/glass/bottle?,2,Sequence_T5_6619,Sequence_T5,Put down.,Ate.,Opened.,Closed.,Opened. 5573,RTEWJ_0_9.8,What did the person do to the towel after putting down the sandwich?,2,Sequence_T5_6637,Sequence_T5,Tidied up.,Threw.,Took.,Opened.,Took. 5574,USNP1_0_11.4,What did the person do to the phone/camera after lying on the sofa/couch?,2,Sequence_T5_6643,Sequence_T5,Lied on.,Put down.,Took.,Sat at.,Took. 5575,BI31D_5.2_18,What did the person do to the bed after putting down the phone/camera?,1,Sequence_T5_6681,Sequence_T5,Tidied up.,Sat on.,Lied on.,Ate.,Sat on. 5576,194WK_0_10.2,What did the person do to the book after sitting at the table?,3,Sequence_T5_6690,Sequence_T5,Took.,Tidied up.,Threw.,Closed.,Closed. 5577,DHFA6_0.2_22.6,What did the person do to the box after holding the pillow?,2,Sequence_T5_6702,Sequence_T5,Threw.,Closed.,Put down.,Took.,Put down. 5578,3ZC4Y_17.2_23.8,What did the person do to the food after closing the refrigerator?,3,Sequence_T5_6707,Sequence_T5,Put down.,Sat on.,Took.,Threw.,Threw. 5579,3ZC4Y_0_21.7,What did the person do to the refrigerator after holding the dish?,1,Sequence_T5_6708,Sequence_T5,Put down.,Opened.,Closed.,Sat on.,Opened. 5580,Z97SD_24.3_30.7,What did the person do to the refrigerator after holding the food?,2,Sequence_T5_6713,Sequence_T5,Sat on.,Opened.,Closed.,Ate.,Closed. 5581,Z97SD_17.8_24.1,What did the person do to the refrigerator after taking the food?,1,Sequence_T5_6714,Sequence_T5,Closed.,Opened.,Lied on.,Ate.,Opened. 5582,21MI8_0_10.1,What did the person do to the laptop after drinking from the cup/glass/bottle?,2,Sequence_T5_6716,Sequence_T5,Tidied up.,Put down.,Opened.,Sat on.,Opened. 5583,5657O_0_13.8,What did the person do to the clothes after holding the phone/camera?,2,Sequence_T5_6717,Sequence_T5,Washed.,Threw.,Put down.,Tidied up.,Put down. 5584,OZSB3_18.6_25.5,What did the person do to the bag after holding the pillow?,1,Sequence_T5_6728,Sequence_T5,Put down.,Opened.,Threw.,Took.,Opened. 5585,OZSB3_18.6_25.5,What did the person do to the bag after taking the pillow?,3,Sequence_T5_6729,Sequence_T5,Put down.,Threw.,Lied on.,Opened.,Opened. 5586,OZSB3_0_27.8,What did the person do to the pillow after sitting at the table?,3,Sequence_T5_6730,Sequence_T5,Threw.,Put down.,Opened.,Took.,Took. 5587,6H78U_15.6_24.6,What did the person do to the clothes before putting down the blanket?,1,Sequence_T6_10,Sequence_T6,Washed.,Tidied up.,Closed.,Ate.,Tidied up. 5588,VNQTH_2.7_10.3,What did the person do to the closet/cabinet before taking the phone/camera?,2,Sequence_T6_31,Sequence_T6,Opened.,Washed.,Tidied up.,Closed.,Tidied up. 5589,N56QO_0.8_11,What did the person do to the cup/glass/bottle before holding the dish?,2,Sequence_T6_42,Sequence_T6,Washed.,Closed.,Took.,Put down.,Took. 5590,4GLAP_16.1_28.5,What did the person do to the shoe before opening the door?,1,Sequence_T6_54,Sequence_T6,Put down.,Threw.,Took.,Sat at.,Threw. 5591,OY3LS_2.5_23.6,What did the person do to the laptop before holding the clothes?,0,Sequence_T6_65,Sequence_T6,Opened.,Closed.,Took.,Put down.,Opened. 5592,OY3LS_2.5_23.8,What did the person do to the laptop before throwing the clothes?,0,Sequence_T6_68,Sequence_T6,Opened.,Closed.,Took.,Put down.,Opened. 5593,RG0KS_0_24.9,What did the person do to the blanket before taking the box?,0,Sequence_T6_78,Sequence_T6,Tidied up.,Threw.,Sat on.,Put down.,Tidied up. 5594,N5PLR_5.2_33.2,What did the person do to the clothes before sitting on the table?,2,Sequence_T6_80,Sequence_T6,Sat on.,Opened.,Threw.,Tidied up.,Threw. 5595,NUKJ0_19.4_27.4,What did the person do to the book before taking the cup/glass/bottle?,1,Sequence_T6_101,Sequence_T6,Opened.,Closed.,Threw.,Put down.,Closed. 5596,H0L5S_20.4_29.4,What did the person do to the towel before opening the door?,3,Sequence_T6_140,Sequence_T6,Put down.,Threw.,Tidied up.,Took.,Took. 5597,7MRKY_24.8_36.1,What did the person do to the broom before closing the laptop?,2,Sequence_T6_147,Sequence_T6,Took.,Threw.,Put down.,Tidied up.,Put down. 5598,TBRZ5_7_26.3,What did the person do to the pillow before holding the phone/camera?,0,Sequence_T6_162,Sequence_T6,Threw.,Took.,Put down.,Closed.,Threw. 5599,DGPAW_3.5_16.6,What did the person do to the picture before opening the door?,2,Sequence_T6_170,Sequence_T6,Took.,Opened.,Put down.,Washed.,Put down. 5600,E002I_4.7_19.7,What did the person do to the bed before closing the door?,1,Sequence_T6_172,Sequence_T6,Sat at.,Lied on.,Sat on.,Threw.,Lied on. 5601,VIN5T_1.5_13.1,What did the person do to the pillow before holding the phone/camera?,2,Sequence_T6_197,Sequence_T6,Put down.,Closed.,Threw.,Took.,Threw. 5602,VIN5T_1.5_21,What did the person do to the pillow before taking the phone/camera?,1,Sequence_T6_198,Sequence_T6,Opened.,Threw.,Put down.,Washed.,Threw. 5603,MXATD_0.6_10.8,What did the person do to the dish before opening the closet/cabinet?,3,Sequence_T6_199,Sequence_T6,Closed.,Put down.,Ate.,Washed.,Washed. 5604,YB67Z_11.9_22.3,What did the person do to the table before putting down the box?,2,Sequence_T6_202,Sequence_T6,Washed.,Sat on.,Tidied up.,Threw.,Tidied up. 5605,1O1JS_0_30.2,What did the person do to the towel before washing the dish?,1,Sequence_T6_206,Sequence_T6,Put down.,Took.,Threw.,Tidied up.,Took. 5606,TRHT1_0_6.3,What did the person do to the sofa/couch before throwing the clothes?,3,Sequence_T6_284,Sequence_T6,Put down.,Tidied up.,Lied on.,Sat on.,Sat on. 5607,C1DK7_4.2_21.6,What did the person do to the laptop before putting down the phone/camera?,3,Sequence_T6_306,Sequence_T6,Took.,Threw.,Opened.,Closed.,Closed. 5608,YHXU9_14.7_21.8,What did the person do to the clothes before taking the book?,3,Sequence_T6_331,Sequence_T6,Put down.,Threw.,Washed.,Tidied up.,Tidied up. 5609,PH5VU_30.9_40.3,What did the person do to the paper/notebook before putting down the picture?,2,Sequence_T6_336,Sequence_T6,Tidied up.,Threw.,Took.,Ate.,Took. 5610,5C4EK_2.2_11.4,What did the person do to the book before taking the paper/notebook?,2,Sequence_T6_347,Sequence_T6,Put down.,Threw.,Closed.,Opened.,Closed. 5611,NW0KT_13.6_48.3,What did the person do to the book before taking the towel?,2,Sequence_T6_354,Sequence_T6,Put down.,Threw.,Closed.,Opened.,Closed. 5612,NW0KT_4.9_13.9,What did the person do to the book before taking the paper/notebook?,1,Sequence_T6_355,Sequence_T6,Lied on.,Opened.,Threw.,Closed.,Opened. 5613,NYHD7_0_26.9,What did the person do to the table before taking the phone/camera?,1,Sequence_T6_366,Sequence_T6,Washed.,Sat at.,Tidied up.,Closed.,Sat at. 5614,3Q6N1_0_8.6,What did the person do to the laptop before eating the sandwich?,2,Sequence_T6_389,Sequence_T6,Closed.,Took.,Opened.,Put down.,Opened. 5615,3Q6N1_0_9.5,What did the person do to the laptop before putting down the food?,2,Sequence_T6_390,Sequence_T6,Put down.,Closed.,Opened.,Took.,Opened. 5616,3Q6N1_0_9.4,What did the person do to the laptop before holding the food?,2,Sequence_T6_391,Sequence_T6,Closed.,Took.,Opened.,Put down.,Opened. 5617,9MNZ5_10.4_23.3,What did the person do to the box before putting down the food?,0,Sequence_T6_421,Sequence_T6,Opened.,Took.,Closed.,Threw.,Opened. 5618,DR7K0_13.9_22.7,What did the person do to the broom before taking the clothes?,1,Sequence_T6_433,Sequence_T6,Washed.,Put down.,Tidied up.,Threw.,Put down. 5619,M98YV_5.1_31,What did the person do to the sandwich before holding the phone/camera?,2,Sequence_T6_445,Sequence_T6,Put down.,Took.,Ate.,Tidied up.,Ate. 5620,15PMU_17.9_32,What did the person do to the cup/glass/bottle before holding the dish?,3,Sequence_T6_494,Sequence_T6,Sat on.,Washed.,Put down.,Took.,Took. 5621,OVFR0_0_17.3,What did the person do to the book before opening the door?,0,Sequence_T6_555,Sequence_T6,Put down.,Lied on.,Threw.,Took.,Put down. 5622,OQ54Y_5.4_15.4,What did the person do to the refrigerator before holding the dish?,3,Sequence_T6_630,Sequence_T6,Sat on.,Opened.,Threw.,Closed.,Closed. 5623,136V6_13.9_28.2,What did the person do to the sofa/couch before closing the book?,3,Sequence_T6_639,Sequence_T6,Took.,Sat on.,Threw.,Lied on.,Lied on. 5624,136V6_13.5_19.4,What did the person do to the book before lying on the sofa/couch?,2,Sequence_T6_640,Sequence_T6,Closed.,Took.,Opened.,Threw.,Opened. 5625,136V6_5_17.3,What did the person do to the shoe before taking the book?,1,Sequence_T6_642,Sequence_T6,Put down.,Threw.,Tidied up.,Took.,Threw. 5626,BEAAA_0_11.8,What did the person do to the sandwich before putting down the clothes?,1,Sequence_T6_672,Sequence_T6,Lied on.,Ate.,Took.,Washed.,Ate. 5627,98W87_10.2_26.2,What did the person do to the sandwich before holding the food?,0,Sequence_T6_695,Sequence_T6,Took.,Put down.,Opened.,Ate.,Took. 5628,WM2J7_0_23.8,What did the person do to the window before opening the door?,2,Sequence_T6_703,Sequence_T6,Closed.,Ate.,Washed.,Lied on.,Washed. 5629,3R4DD_2.1_18.4,What did the person do to the towel before tidying up the clothes?,2,Sequence_T6_704,Sequence_T6,Put down.,Threw.,Took.,Closed.,Took. 5630,3R4DD_2.1_32.3,What did the person do to the towel before tidying up the blanket?,0,Sequence_T6_705,Sequence_T6,Took.,Opened.,Threw.,Put down.,Took. 5631,R971Z_11.1_32.8,What did the person do to the shoe before holding the mirror?,0,Sequence_T6_712,Sequence_T6,Put down.,Lied on.,Threw.,Took.,Put down. 5632,3JCEI_8.3_15.1,What did the person do to the laptop before throwing the food?,3,Sequence_T6_750,Sequence_T6,Put down.,Took.,Sat on.,Closed.,Closed. 5633,3JCEI_10.4_21,What did the person do to the food before holding the laptop?,1,Sequence_T6_751,Sequence_T6,Opened.,Threw.,Put down.,Took.,Threw. 5634,HRASP_6.3_14.2,What did the person do to the shoe before taking the cup/glass/bottle?,1,Sequence_T6_764,Sequence_T6,Lied on.,Threw.,Took.,Put down.,Threw. 5635,FO24A_0_9,What did the person do to the table before holding the phone/camera?,0,Sequence_T6_786,Sequence_T6,Sat at.,Washed.,Took.,Tidied up.,Sat at. 5636,YX3V0_1.4_7.7,What did the person do to the table before taking the book?,1,Sequence_T6_792,Sequence_T6,Sat at.,Tidied up.,Washed.,Sat on.,Tidied up. 5637,5GP8M_8.5_34,What did the person do to the book before holding the picture?,1,Sequence_T6_797,Sequence_T6,Opened.,Took.,Threw.,Put down.,Took. 5638,5GP8M_8.5_31.5,What did the person do to the book before watching at the picture?,3,Sequence_T6_798,Sequence_T6,Closed.,Tidied up.,Put down.,Took.,Took. 5639,8XXNK_3_14.4,What did the person do to the box before putting down the food?,1,Sequence_T6_817,Sequence_T6,Took.,Opened.,Closed.,Threw.,Opened. 5640,9YOI8_4.8_22.7,What did the person do to the window before drinking from the cup/glass/bottle?,2,Sequence_T6_821,Sequence_T6,Closed.,Washed.,Opened.,Ate.,Opened. 5641,HOYUT_9.1_16,What did the person do to the towel before opening the door?,3,Sequence_T6_823,Sequence_T6,Tidied up.,Put down.,Took.,Threw.,Threw. 5642,HOYUT_12.3_20.1,What did the person do to the closet/cabinet before taking the towel?,0,Sequence_T6_824,Sequence_T6,Closed.,Opened.,Threw.,Tidied up.,Closed. 5643,7TA23_8.7_21.4,What did the person do to the phone/camera before putting down the shoe?,3,Sequence_T6_834,Sequence_T6,Tidied up.,Washed.,Closed.,Took.,Took. 5644,ICQUJ_15.9_22,What did the person do to the sandwich before holding the food?,3,Sequence_T6_851,Sequence_T6,Tidied up.,Took.,Ate.,Put down.,Put down. 5645,M6ERH_11.6_33,What did the person do to the food before sitting at the table?,2,Sequence_T6_855,Sequence_T6,Took.,Threw.,Put down.,Tidied up.,Put down. 5646,727IZ_14.9_21.5,What did the person do to the table before putting down the paper/notebook?,1,Sequence_T6_917,Sequence_T6,Washed.,Sat at.,Tidied up.,Ate.,Sat at. 5647,Q5YDL_13_20.1,What did the person do to the laptop before taking the food?,3,Sequence_T6_934,Sequence_T6,Put down.,Lied on.,Ate.,Closed.,Closed. 5648,EEGGA_0_8.9,What did the person do to the blanket before taking the food?,1,Sequence_T6_947,Sequence_T6,Threw.,Put down.,Sat at.,Closed.,Put down. 5649,X8JVY_4.4_30,What did the person do to the book before putting down the food?,1,Sequence_T6_949,Sequence_T6,Closed.,Took.,Threw.,Opened.,Took. 5650,RRQEV_12.3_19,What did the person do to the book before holding the picture?,2,Sequence_T6_1031,Sequence_T6,Threw.,Closed.,Took.,Put down.,Took. 5651,RRQEV_4.7_15,What did the person do to the blanket before opening the bag?,0,Sequence_T6_1033,Sequence_T6,Put down.,Took.,Sat at.,Closed.,Put down. 5652,5INX3_27.8_46,What did the person do to the towel before holding the clothes?,1,Sequence_T6_1034,Sequence_T6,Put down.,Took.,Threw.,Tidied up.,Took. 5653,BFH78_14.4_22.4,What did the person do to the book before taking the paper/notebook?,2,Sequence_T6_1046,Sequence_T6,Closed.,Put down.,Opened.,Threw.,Opened. 5654,V3SOF_4_13.8,What did the person do to the closet/cabinet before taking the dish?,0,Sequence_T6_1082,Sequence_T6,Closed.,Lied on.,Opened.,Tidied up.,Closed. 5655,V3SOF_4_13.1,What did the person do to the closet/cabinet before holding the dish?,2,Sequence_T6_1083,Sequence_T6,Opened.,Tidied up.,Closed.,Lied on.,Closed. 5656,ZVRBL_0_12.3,What did the person do to the table before holding the dish?,0,Sequence_T6_1100,Sequence_T6,Tidied up.,Took.,Sat on.,Washed.,Tidied up. 5657,ZVRBL_0_16.6,What did the person do to the table before putting down the dish?,0,Sequence_T6_1101,Sequence_T6,Tidied up.,Lied on.,Washed.,Sat on.,Tidied up. 5658,LD6TD_12.2_36,What did the person do to the book before taking the cup/glass/bottle?,1,Sequence_T6_1129,Sequence_T6,Sat at.,Closed.,Tidied up.,Threw.,Closed. 5659,TDGNE_6.1_27.8,What did the person do to the food before opening the door?,3,Sequence_T6_1137,Sequence_T6,Ate.,Took.,Sat on.,Put down.,Put down. 5660,RQRRD_7.5_22.3,What did the person do to the box before throwing the clothes?,0,Sequence_T6_1157,Sequence_T6,Closed.,Opened.,Tidied up.,Put down.,Closed. 5661,3CLVI_18.9_29.3,What did the person do to the closet/cabinet before throwing the clothes?,2,Sequence_T6_1166,Sequence_T6,Tidied up.,Opened.,Closed.,Sat on.,Closed. 5662,DPLMM_0_13.2,What did the person do to the floor before putting down the pillow?,3,Sequence_T6_1203,Sequence_T6,Closed.,Washed.,Lied on.,Sat on.,Sat on. 5663,DPLMM_0_12.8,What did the person do to the floor before taking the pillow?,2,Sequence_T6_1204,Sequence_T6,Lied on.,Ate.,Sat on.,Closed.,Sat on. 5664,UYZKX_3.9_26.9,What did the person do to the closet/cabinet before throwing the blanket?,1,Sequence_T6_1210,Sequence_T6,Tidied up.,Opened.,Ate.,Closed.,Opened. 5665,K9UXS_5.9_24.8,What did the person do to the clothes before taking the blanket?,1,Sequence_T6_1236,Sequence_T6,Tidied up.,Put down.,Washed.,Threw.,Put down. 5666,35ZZP_3.5_12.4,What did the person do to the closet/cabinet before putting down the food?,0,Sequence_T6_1249,Sequence_T6,Closed.,Tidied up.,Opened.,Washed.,Closed. 5667,1FIGA_9.6_19.5,What did the person do to the box before opening the door?,0,Sequence_T6_1312,Sequence_T6,Closed.,Washed.,Put down.,Threw.,Closed. 5668,W8XQ9_0.2_21.7,What did the person do to the table before putting down the clothes?,0,Sequence_T6_1314,Sequence_T6,Tidied up.,Washed.,Opened.,Sat on.,Tidied up. 5669,W8XQ9_0.2_20.9,What did the person do to the table before holding the clothes?,1,Sequence_T6_1315,Sequence_T6,Sat on.,Tidied up.,Closed.,Washed.,Tidied up. 5670,S673O_0_31.4,What did the person do to the sofa/couch before eating the sandwich?,1,Sequence_T6_1334,Sequence_T6,Sat on.,Lied on.,Put down.,Closed.,Lied on. 5671,2PREF_0_15.1,What did the person do to the dish before opening the closet/cabinet?,1,Sequence_T6_1353,Sequence_T6,Washed.,Put down.,Threw.,Took.,Put down. 5672,2PREF_0_14.4,What did the person do to the dish before taking the food?,2,Sequence_T6_1355,Sequence_T6,Took.,Lied on.,Put down.,Washed.,Put down. 5673,2WGSN_14_27.1,What did the person do to the towel before washing the dish?,0,Sequence_T6_1360,Sequence_T6,Took.,Put down.,Tidied up.,Threw.,Took. 5674,YMGGV_0_17.9,What did the person do to the sofa/couch before taking the blanket?,2,Sequence_T6_1408,Sequence_T6,Threw.,Opened.,Sat on.,Lied on.,Sat on. 5675,LW5O6_9.5_17,What did the person do to the bag before holding the shoe?,0,Sequence_T6_1409,Sequence_T6,Took.,Opened.,Put down.,Threw.,Took. 5676,MD6P2_0_13.4,What did the person do to the medicine before opening the box?,1,Sequence_T6_1412,Sequence_T6,Opened.,Ate.,Threw.,Sat on.,Ate. 5677,MD6P2_5_22.3,What did the person do to the box before holding the medicine?,3,Sequence_T6_1413,Sequence_T6,Put down.,Took.,Threw.,Opened.,Opened. 5678,MD6P2_5_28.8,What did the person do to the box before eating the medicine?,3,Sequence_T6_1414,Sequence_T6,Closed.,Took.,Threw.,Opened.,Opened. 5679,MD6P2_5_29.3,What did the person do to the box before tidying up the table?,2,Sequence_T6_1415,Sequence_T6,Took.,Threw.,Opened.,Put down.,Opened. 5680,WXUZK_1.9_31,What did the person do to the clothes before lying on the bed?,3,Sequence_T6_1428,Sequence_T6,Sat at.,Washed.,Put down.,Threw.,Threw. 5681,RXLKF_1.8_15.2,What did the person do to the sofa/couch before opening the book?,2,Sequence_T6_1449,Sequence_T6,Lied on.,Closed.,Sat on.,Ate.,Sat on. 5682,NVGDG_9.8_32.8,What did the person do to the sofa/couch before holding the blanket?,3,Sequence_T6_1459,Sequence_T6,Lied on.,Washed.,Opened.,Sat on.,Sat on. 5683,NVGDG_9.8_17.3,What did the person do to the sofa/couch before taking the blanket?,3,Sequence_T6_1460,Sequence_T6,Tidied up.,Washed.,Lied on.,Sat on.,Sat on. 5684,JOLLV_0_17.3,What did the person do to the sofa/couch before opening the refrigerator?,1,Sequence_T6_1496,Sequence_T6,Lied on.,Sat on.,Closed.,Tidied up.,Sat on. 5685,V3RAX_7.1_21.2,What did the person do to the blanket before taking the clothes?,3,Sequence_T6_1506,Sequence_T6,Put down.,Washed.,Closed.,Threw.,Threw. 5686,V3RAX_7.1_19.5,What did the person do to the blanket before putting down the clothes?,1,Sequence_T6_1507,Sequence_T6,Opened.,Threw.,Closed.,Took.,Threw. 5687,IWF0U_0.8_20.3,What did the person do to the blanket before sitting at the table?,1,Sequence_T6_1522,Sequence_T6,Put down.,Tidied up.,Took.,Sat on.,Tidied up. 5688,STAFD_3.3_46.4,What did the person do to the sandwich before throwing the clothes?,0,Sequence_T6_1551,Sequence_T6,Ate.,Tidied up.,Put down.,Took.,Ate. 5689,YFI1M_14.2_26.1,What did the person do to the clothes before taking the phone/camera?,3,Sequence_T6_1561,Sequence_T6,Ate.,Tidied up.,Washed.,Put down.,Put down. 5690,P2HZG_0_10.2,What did the person do to the table before closing the laptop?,2,Sequence_T6_1573,Sequence_T6,Washed.,Opened.,Sat at.,Tidied up.,Sat at. 5691,P2HZG_4_18.4,What did the person do to the laptop before opening the closet/cabinet?,2,Sequence_T6_1574,Sequence_T6,Lied on.,Took.,Closed.,Put down.,Closed. 5692,PDRVY_17.9_27.3,What did the person do to the closet/cabinet before throwing the bag?,3,Sequence_T6_1601,Sequence_T6,Ate.,Tidied up.,Opened.,Closed.,Closed. 5693,01ZWG_4.9_13.5,What did the person do to the laptop before sitting at the table?,0,Sequence_T6_1619,Sequence_T6,Opened.,Took.,Put down.,Closed.,Opened. 5694,IO712_3.7_28.2,What did the person do to the floor before holding the book?,0,Sequence_T6_1634,Sequence_T6,Sat on.,Opened.,Lied on.,Washed.,Sat on. 5695,IO712_3.7_14.3,What did the person do to the floor before opening the book?,3,Sequence_T6_1635,Sequence_T6,Lied on.,Took.,Washed.,Sat on.,Sat on. 5696,IO712_0_8.6,What did the person do to the window before taking the book?,0,Sequence_T6_1636,Sequence_T6,Closed.,Opened.,Sat on.,Washed.,Closed. 5697,IO712_3.7_31.5,What did the person do to the floor before watching at the book?,2,Sequence_T6_1638,Sequence_T6,Put down.,Lied on.,Sat on.,Ate.,Sat on. 5698,KVYOZ_0_6,What did the person do to the floor before putting down the picture?,3,Sequence_T6_1665,Sequence_T6,Washed.,Opened.,Lied on.,Sat on.,Sat on. 5699,V8JOH_0_22,What did the person do to the medicine before closing the door?,1,Sequence_T6_1667,Sequence_T6,Tidied up.,Ate.,Sat at.,Lied on.,Ate. 5700,SHVVB_15.7_31,What did the person do to the paper/notebook before holding the sandwich?,2,Sequence_T6_1688,Sequence_T6,Ate.,Took.,Put down.,Sat on.,Put down. 5701,FM078_27.7_36.2,What did the person do to the closet/cabinet before opening the bag?,0,Sequence_T6_1691,Sequence_T6,Closed.,Tidied up.,Took.,Washed.,Closed. 5702,41EQS_6.8_33,What did the person do to the bag before sitting at the table?,2,Sequence_T6_1693,Sequence_T6,Put down.,Opened.,Threw.,Took.,Threw. 5703,41EQS_6.8_33,What did the person do to the bag before drinking from the cup/glass/bottle?,1,Sequence_T6_1695,Sequence_T6,Put down.,Threw.,Took.,Opened.,Threw. 5704,6PL9Z_0_9.5,What did the person do to the sofa/couch before taking the blanket?,1,Sequence_T6_1706,Sequence_T6,Tidied up.,Sat on.,Lied on.,Washed.,Sat on. 5705,6PL9Z_3.4_11.3,What did the person do to the blanket before holding the book?,2,Sequence_T6_1707,Sequence_T6,Tidied up.,Put down.,Took.,Threw.,Took. 5706,DRGKV_12.4_30.6,What did the person do to the clothes before holding the phone/camera?,0,Sequence_T6_1718,Sequence_T6,Threw.,Took.,Washed.,Put down.,Threw. 5707,ICL1M_16.1_26.2,What did the person do to the book before drinking from the cup/glass/bottle?,0,Sequence_T6_1725,Sequence_T6,Closed.,Threw.,Put down.,Sat at.,Closed. 5708,ICL1M_16.1_31,What did the person do to the book before putting down the cup/glass/bottle?,3,Sequence_T6_1726,Sequence_T6,Opened.,Took.,Put down.,Closed.,Closed. 5709,5OIQ7_0_27.1,What did the person do to the bed before drinking from the cup/glass/bottle?,3,Sequence_T6_1749,Sequence_T6,Took.,Sat on.,Ate.,Lied on.,Lied on. 5710,5OIQ7_0_28.8,What did the person do to the bed before eating the medicine?,3,Sequence_T6_1750,Sequence_T6,Ate.,Sat on.,Tidied up.,Lied on.,Lied on. 5711,432NL_13.6_30.2,What did the person do to the refrigerator before holding the medicine?,0,Sequence_T6_1759,Sequence_T6,Closed.,Opened.,Washed.,Took.,Closed. 5712,432NL_13.6_32,What did the person do to the refrigerator before eating the medicine?,0,Sequence_T6_1760,Sequence_T6,Closed.,Opened.,Put down.,Washed.,Closed. 5713,LH6LE_15.2_26.9,What did the person do to the dish before closing the closet/cabinet?,0,Sequence_T6_1772,Sequence_T6,Put down.,Took.,Sat on.,Lied on.,Put down. 5714,OUAIS_23.1_36.7,What did the person do to the pillow before opening the door?,0,Sequence_T6_1786,Sequence_T6,Threw.,Took.,Sat at.,Put down.,Threw. 5715,2LCLG_18.2_32,What did the person do to the bag before holding the book?,0,Sequence_T6_1793,Sequence_T6,Threw.,Put down.,Took.,Opened.,Threw. 5716,TZL6H_0_21.9,What did the person do to the medicine before drinking from the cup/glass/bottle?,2,Sequence_T6_1798,Sequence_T6,Opened.,Put down.,Ate.,Took.,Ate. 5717,TZL6H_0_32,What did the person do to the medicine before washing the mirror?,3,Sequence_T6_1799,Sequence_T6,Washed.,Tidied up.,Put down.,Ate.,Ate. 5718,TZL6H_0_27.9,What did the person do to the medicine before holding the clothes?,3,Sequence_T6_1800,Sequence_T6,Washed.,Tidied up.,Threw.,Ate.,Ate. 5719,U6L1X_19.8_27.2,What did the person do to the broom before closing the closet/cabinet?,1,Sequence_T6_1808,Sequence_T6,Sat on.,Put down.,Tidied up.,Took.,Put down. 5720,ZNH10_12.3_30,What did the person do to the towel before holding the blanket?,0,Sequence_T6_1812,Sequence_T6,Took.,Put down.,Threw.,Tidied up.,Took. 5721,MUO4G_0_12.8,What did the person do to the table before opening the refrigerator?,2,Sequence_T6_1860,Sequence_T6,Closed.,Washed.,Sat on.,Tidied up.,Sat on. 5722,RRZU3_3.3_21.6,What did the person do to the laptop before drinking from the cup/glass/bottle?,3,Sequence_T6_1867,Sequence_T6,Washed.,Closed.,Took.,Opened.,Opened. 5723,RRZU3_3.3_22.2,What did the person do to the laptop before putting down the dish?,3,Sequence_T6_1868,Sequence_T6,Closed.,Lied on.,Took.,Opened.,Opened. 5724,UEC1F_12.6_18.7,What did the person do to the blanket before holding the clothes?,1,Sequence_T6_1916,Sequence_T6,Threw.,Took.,Put down.,Tidied up.,Took. 5725,C6LW1_19.4_25.8,What did the person do to the phone/camera before taking the cup/glass/bottle?,3,Sequence_T6_1959,Sequence_T6,Ate.,Took.,Sat at.,Put down.,Put down. 5726,JBJGX_12.3_28.4,What did the person do to the laptop before putting down the clothes?,0,Sequence_T6_1976,Sequence_T6,Closed.,Ate.,Took.,Opened.,Closed. 5727,43FG9_0.7_8.7,What did the person do to the closet/cabinet before putting down the clothes?,1,Sequence_T6_1977,Sequence_T6,Tidied up.,Closed.,Opened.,Threw.,Closed. 5728,9335E_19.1_43,What did the person do to the dish before opening the closet/cabinet?,3,Sequence_T6_1980,Sequence_T6,Took.,Washed.,Sat at.,Put down.,Put down. 5729,ZCH1J_0_23.2,What did the person do to the bag before holding the food?,2,Sequence_T6_1989,Sequence_T6,Threw.,Took.,Opened.,Put down.,Opened. 5730,WRW74_3.7_24.9,What did the person do to the box before taking the dish?,1,Sequence_T6_2002,Sequence_T6,Threw.,Opened.,Put down.,Closed.,Opened. 5731,WRW74_3.7_19.1,What did the person do to the box before holding the dish?,3,Sequence_T6_2003,Sequence_T6,Took.,Threw.,Put down.,Opened.,Opened. 5732,BQKW5_2.7_16.2,What did the person do to the box before taking the towel?,3,Sequence_T6_2014,Sequence_T6,Sat at.,Closed.,Sat on.,Put down.,Put down. 5733,BQKW5_11.5_32.7,What did the person do to the towel before washing the clothes?,2,Sequence_T6_2015,Sequence_T6,Threw.,Took.,Put down.,Tidied up.,Put down. 5734,XXIT4_0_18.9,What did the person do to the table before eating the sandwich?,2,Sequence_T6_2022,Sequence_T6,Washed.,Opened.,Sat at.,Tidied up.,Sat at. 5735,HJM82_0_30.7,What did the person do to the phone/camera before drinking from the cup/glass/bottle?,0,Sequence_T6_2028,Sequence_T6,Took.,Put down.,Opened.,Lied on.,Took. 5736,9PXC0_11.2_26.3,What did the person do to the box before holding the phone/camera?,2,Sequence_T6_2030,Sequence_T6,Threw.,Took.,Opened.,Put down.,Opened. 5737,9PXC0_0_15,What did the person do to the bed before taking the box?,2,Sequence_T6_2031,Sequence_T6,Sat on.,Opened.,Lied on.,Closed.,Lied on. 5738,BCONW_5.5_30.1,What did the person do to the refrigerator before putting down the cup/glass/bottle?,3,Sequence_T6_2052,Sequence_T6,Lied on.,Tidied up.,Opened.,Closed.,Closed. 5739,BCONW_5.5_29,What did the person do to the refrigerator before drinking from the cup/glass/bottle?,3,Sequence_T6_2054,Sequence_T6,Opened.,Threw.,Tidied up.,Closed.,Closed. 5740,JZDL6_9_28.7,What did the person do to the bed before holding the shoe?,2,Sequence_T6_2066,Sequence_T6,Put down.,Ate.,Sat on.,Lied on.,Sat on. 5741,VNVRA_5.3_18.6,What did the person do to the box before closing the door?,3,Sequence_T6_2135,Sequence_T6,Took.,Opened.,Threw.,Put down.,Put down. 5742,I20N2_8.4_31.1,What did the person do to the towel before holding the clothes?,2,Sequence_T6_2141,Sequence_T6,Put down.,Threw.,Took.,Tidied up.,Took. 5743,KLP7V_7.9_25,What did the person do to the box before drinking from the cup/glass/bottle?,2,Sequence_T6_2143,Sequence_T6,Threw.,Took.,Put down.,Closed.,Put down. 5744,WBS4I_14.2_30.4,What did the person do to the closet/cabinet before watching at the book?,2,Sequence_T6_2160,Sequence_T6,Sat on.,Closed.,Opened.,Tidied up.,Opened. 5745,P4DL9_0_32.2,What did the person do to the refrigerator before taking the phone/camera?,2,Sequence_T6_2164,Sequence_T6,Opened.,Ate.,Closed.,Washed.,Closed. 5746,OO4FE_0.1_18.3,What did the person do to the bag before taking the book?,0,Sequence_T6_2166,Sequence_T6,Threw.,Sat at.,Opened.,Put down.,Threw. 5747,52WDV_1.2_26.7,What did the person do to the clothes before opening the book?,0,Sequence_T6_2167,Sequence_T6,Took.,Opened.,Tidied up.,Put down.,Took. 5748,LSVHK_18.1_27.3,What did the person do to the towel before opening the door?,1,Sequence_T6_2172,Sequence_T6,Tidied up.,Threw.,Put down.,Took.,Threw. 5749,KU656_0_12.8,What did the person do to the bed before taking the towel?,1,Sequence_T6_2208,Sequence_T6,Sat on.,Lied on.,Took.,Washed.,Lied on. 5750,SM5WL_0_17.1,What did the person do to the bed before tidying up the blanket?,1,Sequence_T6_2241,Sequence_T6,Sat on.,Lied on.,Opened.,Ate.,Lied on. 5751,7SXQS_11_32,What did the person do to the blanket before sitting at the table?,3,Sequence_T6_2248,Sequence_T6,Put down.,Opened.,Threw.,Took.,Took. 5752,7SXQS_1_17.5,What did the person do to the window before taking the blanket?,1,Sequence_T6_2249,Sequence_T6,Threw.,Closed.,Washed.,Opened.,Closed. 5753,1UI6I_4.5_16.4,What did the person do to the closet/cabinet before holding the mirror?,0,Sequence_T6_2259,Sequence_T6,Closed.,Put down.,Tidied up.,Opened.,Closed. 5754,5I4UT_2.7_10.7,What did the person do to the floor before watching at the picture?,0,Sequence_T6_2263,Sequence_T6,Lied on.,Tidied up.,Washed.,Sat on.,Lied on. 5755,R1RDT_5_26.1,What did the person do to the bed before closing the door?,3,Sequence_T6_2317,Sequence_T6,Ate.,Put down.,Sat on.,Lied on.,Lied on. 5756,R1RDT_5_26.3,What did the person do to the bed before holding the phone/camera?,0,Sequence_T6_2318,Sequence_T6,Lied on.,Sat on.,Tidied up.,Put down.,Lied on. 5757,FL6DF_3.2_13.6,What did the person do to the laptop before tidying up the blanket?,2,Sequence_T6_2320,Sequence_T6,Sat on.,Put down.,Opened.,Sat at.,Opened. 5758,FL6DF_3.2_13.5,What did the person do to the laptop before holding the blanket?,3,Sequence_T6_2321,Sequence_T6,Took.,Put down.,Closed.,Opened.,Opened. 5759,FL6DF_10.3_19.7,What did the person do to the pillow before putting down the laptop?,1,Sequence_T6_2322,Sequence_T6,Took.,Threw.,Opened.,Sat on.,Threw. 5760,ZS9XR_10.6_41.9,What did the person do to the medicine before tidying up the table?,3,Sequence_T6_2333,Sequence_T6,Lied on.,Threw.,Sat on.,Ate.,Ate. 5761,ZS9XR_10.6_33.3,What did the person do to the medicine before putting down the paper/notebook?,1,Sequence_T6_2336,Sequence_T6,Tidied up.,Ate.,Washed.,Closed.,Ate. 5762,MLS4T_2.3_12.3,What did the person do to the box before taking the cup/glass/bottle?,2,Sequence_T6_2353,Sequence_T6,Opened.,Put down.,Threw.,Washed.,Threw. 5763,YGQ7E_8.9_22,What did the person do to the table before opening the door?,3,Sequence_T6_2354,Sequence_T6,Washed.,Sat on.,Lied on.,Tidied up.,Tidied up. 5764,BAUQE_0_10.2,What did the person do to the clothes before taking the broom?,0,Sequence_T6_2356,Sequence_T6,Tidied up.,Washed.,Took.,Put down.,Tidied up. 5765,BGQIF_1.6_9.4,What did the person do to the sofa/couch before putting down the pillow?,2,Sequence_T6_2361,Sequence_T6,Lied on.,Washed.,Sat on.,Threw.,Sat on. 5766,APVAD_17.3_26.2,What did the person do to the book before opening the door?,1,Sequence_T6_2364,Sequence_T6,Closed.,Took.,Threw.,Put down.,Took. 5767,UF91R_7.3_14.3,What did the person do to the laptop before opening the refrigerator?,2,Sequence_T6_2367,Sequence_T6,Took.,Put down.,Closed.,Threw.,Closed. 5768,UF91R_7.3_17.5,What did the person do to the laptop before taking the food?,0,Sequence_T6_2368,Sequence_T6,Closed.,Opened.,Lied on.,Put down.,Closed. 5769,NNG97_0.6_14,What did the person do to the book before taking the laptop?,3,Sequence_T6_2402,Sequence_T6,Opened.,Closed.,Threw.,Put down.,Put down. 5770,X8XQE_7.9_38.8,What did the person do to the closet/cabinet before holding the phone/camera?,0,Sequence_T6_2412,Sequence_T6,Closed.,Opened.,Lied on.,Tidied up.,Closed. 5771,EFR6I_16.9_35.2,What did the person do to the paper/notebook before holding the book?,0,Sequence_T6_2417,Sequence_T6,Took.,Put down.,Opened.,Threw.,Took. 5772,EFR6I_16.9_28.2,What did the person do to the paper/notebook before watching at the book?,3,Sequence_T6_2418,Sequence_T6,Tidied up.,Threw.,Put down.,Took.,Took. 5773,NKCXF_9.8_16.8,What did the person do to the pillow before taking the phone/camera?,1,Sequence_T6_2423,Sequence_T6,Took.,Put down.,Threw.,Washed.,Put down. 5774,ZZ2SF_16.2_32,What did the person do to the medicine before drinking from the cup/glass/bottle?,2,Sequence_T6_2463,Sequence_T6,Put down.,Closed.,Ate.,Washed.,Ate. 5775,8L9AJ_13.7_31.2,What did the person do to the laptop before closing the box?,2,Sequence_T6_2464,Sequence_T6,Opened.,Closed.,Took.,Put down.,Took. 5776,9X208_22.2_30.4,What did the person do to the towel before opening the door?,3,Sequence_T6_2465,Sequence_T6,Put down.,Threw.,Tidied up.,Took.,Took. 5777,Q3HZI_0_17.7,What did the person do to the pillow before opening the door?,0,Sequence_T6_2479,Sequence_T6,Took.,Threw.,Washed.,Put down.,Took. 5778,2YJUQ_4.3_31.6,What did the person do to the table before watching outside the window?,0,Sequence_T6_2481,Sequence_T6,Sat at.,Washed.,Tidied up.,Threw.,Sat at. 5779,2YJUQ_4.3_22.8,What did the person do to the table before drinking from the cup/glass/bottle?,0,Sequence_T6_2482,Sequence_T6,Sat at.,Tidied up.,Lied on.,Washed.,Sat at. 5780,2YJUQ_4.3_34.7,What did the person do to the table before putting down the cup/glass/bottle?,0,Sequence_T6_2483,Sequence_T6,Sat at.,Took.,Tidied up.,Washed.,Sat at. 5781,EUJK0_17.1_26.6,What did the person do to the laptop before taking the book?,1,Sequence_T6_2509,Sequence_T6,Closed.,Put down.,Opened.,Sat at.,Put down. 5782,8MLCU_4.4_14.4,What did the person do to the box before opening the refrigerator?,0,Sequence_T6_2518,Sequence_T6,Put down.,Sat at.,Threw.,Took.,Put down. 5783,FTG07_0.9_9.6,What did the person do to the table before taking the cup/glass/bottle?,0,Sequence_T6_2531,Sequence_T6,Tidied up.,Washed.,Sat on.,Closed.,Tidied up. 5784,GLGQJ_21.1_39.1,What did the person do to the window before holding the phone/camera?,1,Sequence_T6_2532,Sequence_T6,Opened.,Closed.,Washed.,Threw.,Closed. 5785,TOOYI_0_5.7,What did the person do to the box before taking the blanket?,0,Sequence_T6_2538,Sequence_T6,Opened.,Closed.,Threw.,Put down.,Opened. 5786,17RPG_24.1_33,What did the person do to the clothes before eating the sandwich?,0,Sequence_T6_2611,Sequence_T6,Threw.,Sat on.,Tidied up.,Put down.,Threw. 5787,HONL7_0.1_11,What did the person do to the book before putting down the paper/notebook?,0,Sequence_T6_2628,Sequence_T6,Took.,Closed.,Threw.,Sat on.,Took. 5788,TETZ7_12.5_20.6,What did the person do to the phone/camera before opening the door?,0,Sequence_T6_2634,Sequence_T6,Took.,Sat on.,Sat at.,Put down.,Took. 5789,QRWQ3_26.1_37,What did the person do to the box before holding the medicine?,3,Sequence_T6_2643,Sequence_T6,Threw.,Put down.,Took.,Opened.,Opened. 5790,XQDQ4_7.4_27.1,What did the person do to the cup/glass/bottle before opening the box?,3,Sequence_T6_2698,Sequence_T6,Opened.,Washed.,Put down.,Took.,Took. 5791,6B93R_6.8_33.9,What did the person do to the food before taking the cup/glass/bottle?,1,Sequence_T6_2699,Sequence_T6,Threw.,Put down.,Sat on.,Washed.,Put down. 5792,IFQS1_0.8_18,What did the person do to the towel before washing the clothes?,3,Sequence_T6_2700,Sequence_T6,Threw.,Took.,Tidied up.,Put down.,Put down. 5793,F5TL0_8.8_21.9,What did the person do to the refrigerator before taking the cup/glass/bottle?,0,Sequence_T6_2707,Sequence_T6,Closed.,Threw.,Opened.,Put down.,Closed. 5794,106AY_15_25.5,What did the person do to the box before taking the cup/glass/bottle?,2,Sequence_T6_2728,Sequence_T6,Threw.,Opened.,Put down.,Closed.,Put down. 5795,3EIRZ_0.2_11.3,What did the person do to the sandwich before tidying up the clothes?,0,Sequence_T6_2729,Sequence_T6,Ate.,Opened.,Put down.,Lied on.,Ate. 5796,5XKVP_4_12,What did the person do to the blanket before taking the shoe?,0,Sequence_T6_2751,Sequence_T6,Threw.,Tidied up.,Sat at.,Put down.,Threw. 5797,GMMVC_10.6_17.4,What did the person do to the book before putting down the paper/notebook?,0,Sequence_T6_2766,Sequence_T6,Closed.,Took.,Threw.,Opened.,Closed. 5798,GTK8W_18.8_30.7,What did the person do to the book before taking the food?,3,Sequence_T6_2773,Sequence_T6,Opened.,Sat on.,Put down.,Closed.,Closed. 5799,GTK8W_18.8_29.2,What did the person do to the book before watching outside the window?,2,Sequence_T6_2776,Sequence_T6,Opened.,Took.,Closed.,Put down.,Closed. 5800,D87LI_14.9_20.7,What did the person do to the laptop before taking the phone/camera?,1,Sequence_T6_2778,Sequence_T6,Opened.,Closed.,Put down.,Ate.,Closed. 5801,AK9IB_24.3_31.4,What did the person do to the box before putting down the shoe?,2,Sequence_T6_2780,Sequence_T6,Took.,Threw.,Opened.,Closed.,Opened. 5802,ALXUC_2.8_17,What did the person do to the sandwich before holding the food?,2,Sequence_T6_2793,Sequence_T6,Put down.,Washed.,Took.,Ate.,Took. 5803,2RTH2_11.6_17.6,What did the person do to the towel before taking the cup/glass/bottle?,1,Sequence_T6_2824,Sequence_T6,Threw.,Put down.,Closed.,Tidied up.,Put down. 5804,T0LOH_0_21.7,What did the person do to the blanket before holding the clothes?,3,Sequence_T6_2848,Sequence_T6,Tidied up.,Put down.,Threw.,Took.,Took. 5805,2ZXJ5_7.5_16.8,What did the person do to the sofa/couch before holding the pillow?,3,Sequence_T6_2855,Sequence_T6,Lied on.,Ate.,Washed.,Sat on.,Sat on. 5806,2ZXJ5_7.5_18,What did the person do to the sofa/couch before putting down the pillow?,3,Sequence_T6_2856,Sequence_T6,Tidied up.,Took.,Lied on.,Sat on.,Sat on. 5807,9LHP3_6.4_32.2,What did the person do to the sofa/couch before holding the phone/camera?,1,Sequence_T6_2914,Sequence_T6,Lied on.,Sat on.,Ate.,Took.,Sat on. 5808,BZ1TH_0_7.9,What did the person do to the book before taking the cup/glass/bottle?,2,Sequence_T6_2916,Sequence_T6,Closed.,Threw.,Opened.,Put down.,Opened. 5809,QL92H_13.1_19.9,What did the person do to the book before closing the closet/cabinet?,2,Sequence_T6_2936,Sequence_T6,Threw.,Opened.,Took.,Put down.,Took. 5810,QL92H_2.9_14.2,What did the person do to the bag before opening the closet/cabinet?,1,Sequence_T6_2937,Sequence_T6,Put down.,Threw.,Took.,Ate.,Threw. 5811,7T6MB_0_32,What did the person do to the shoe before holding the medicine?,1,Sequence_T6_2949,Sequence_T6,Threw.,Took.,Put down.,Closed.,Took. 5812,7T6MB_0_32,What did the person do to the shoe before lying on the bed?,1,Sequence_T6_2950,Sequence_T6,Threw.,Took.,Put down.,Opened.,Took. 5813,RAQNI_8.1_18.6,What did the person do to the blanket before putting down the clothes?,1,Sequence_T6_2962,Sequence_T6,Threw.,Tidied up.,Opened.,Ate.,Tidied up. 5814,3B81O_0_22.2,What did the person do to the window before washing the dish?,3,Sequence_T6_2969,Sequence_T6,Sat on.,Ate.,Closed.,Opened.,Opened. 5815,3B81O_0_21.6,What did the person do to the window before putting down the dish?,0,Sequence_T6_2971,Sequence_T6,Opened.,Ate.,Closed.,Washed.,Opened. 5816,T1KK1_0_8.2,What did the person do to the dish before putting down the cup/glass/bottle?,3,Sequence_T6_2996,Sequence_T6,Lied on.,Washed.,Threw.,Took.,Took. 5817,T5JY8_14.9_32,What did the person do to the cup/glass/bottle before watching outside the window?,3,Sequence_T6_3000,Sequence_T6,Washed.,Put down.,Sat on.,Took.,Took. 5818,VGAMG_4_15.6,What did the person do to the cup/glass/bottle before putting down the dish?,1,Sequence_T6_3033,Sequence_T6,Threw.,Took.,Washed.,Opened.,Took. 5819,4P13T_0_17,What did the person do to the bag before putting down the book?,0,Sequence_T6_3038,Sequence_T6,Took.,Threw.,Lied on.,Opened.,Took. 5820,K34BE_1.1_18,What did the person do to the bag before holding the broom?,3,Sequence_T6_3042,Sequence_T6,Put down.,Opened.,Threw.,Took.,Took. 5821,M3S4D_1.2_17.5,What did the person do to the box before drinking from the cup/glass/bottle?,3,Sequence_T6_3043,Sequence_T6,Took.,Threw.,Closed.,Put down.,Put down. 5822,EBTD6_11.4_24.9,What did the person do to the sandwich before holding the dish?,0,Sequence_T6_3088,Sequence_T6,Took.,Ate.,Lied on.,Put down.,Took. 5823,JKZG5_0.5_8.7,What did the person do to the medicine before drinking from the cup/glass/bottle?,2,Sequence_T6_3130,Sequence_T6,Closed.,Sat on.,Ate.,Lied on.,Ate. 5824,JJON5_6.7_29,What did the person do to the refrigerator before putting down the food?,2,Sequence_T6_3139,Sequence_T6,Closed.,Tidied up.,Opened.,Lied on.,Opened. 5825,DH66I_3.5_18.7,What did the person do to the box before taking the food?,3,Sequence_T6_3149,Sequence_T6,Closed.,Threw.,Ate.,Put down.,Put down. 5826,2RRSO_4.4_31,What did the person do to the clothes before holding the medicine?,1,Sequence_T6_3240,Sequence_T6,Washed.,Tidied up.,Put down.,Took.,Tidied up. 5827,2RRSO_4.4_31,What did the person do to the clothes before holding the food?,2,Sequence_T6_3241,Sequence_T6,Put down.,Took.,Tidied up.,Threw.,Tidied up. 5828,WCERV_1.4_23,What did the person do to the blanket before taking the paper/notebook?,3,Sequence_T6_3248,Sequence_T6,Closed.,Washed.,Tidied up.,Put down.,Put down. 5829,RZY2I_4_10,What did the person do to the bag before opening the window?,3,Sequence_T6_3252,Sequence_T6,Lied on.,Threw.,Put down.,Took.,Took. 5830,DQEC3_0_17.2,What did the person do to the closet/cabinet before opening the bag?,2,Sequence_T6_3275,Sequence_T6,Sat on.,Washed.,Tidied up.,Closed.,Tidied up. 5831,NLWBW_6.8_44,What did the person do to the bag before drinking from the cup/glass/bottle?,2,Sequence_T6_3281,Sequence_T6,Took.,Threw.,Put down.,Opened.,Put down. 5832,D7KU2_0_14.1,What did the person do to the floor before putting down the broom?,3,Sequence_T6_3283,Sequence_T6,Closed.,Ate.,Lied on.,Sat on.,Sat on. 5833,3V2HJ_4.8_23,What did the person do to the bag before drinking from the cup/glass/bottle?,3,Sequence_T6_3303,Sequence_T6,Opened.,Threw.,Took.,Put down.,Put down. 5834,3064K_3_18,What did the person do to the blanket before putting down the clothes?,3,Sequence_T6_3304,Sequence_T6,Threw.,Lied on.,Took.,Tidied up.,Tidied up. 5835,JBY4E_2.8_10.4,What did the person do to the blanket before taking the dish?,1,Sequence_T6_3306,Sequence_T6,Threw.,Put down.,Sat at.,Washed.,Put down. 5836,WN7T3_1.1_32,What did the person do to the box before watching outside the window?,3,Sequence_T6_3309,Sequence_T6,Took.,Threw.,Closed.,Put down.,Put down. 5837,3MLVF_16.1_32,What did the person do to the refrigerator before putting down the cup/glass/bottle?,1,Sequence_T6_3312,Sequence_T6,Opened.,Closed.,Washed.,Tidied up.,Closed. 5838,FRLW2_8.6_32,What did the person do to the bag before throwing the shoe?,2,Sequence_T6_3334,Sequence_T6,Closed.,Opened.,Put down.,Took.,Put down. 5839,75KQ6_8.8_22,What did the person do to the dish before holding the food?,0,Sequence_T6_3338,Sequence_T6,Put down.,Took.,Sat on.,Washed.,Put down. 5840,57MEO_0_14.2,What did the person do to the door before holding the book?,0,Sequence_T6_3339,Sequence_T6,Opened.,Lied on.,Closed.,Ate.,Opened. 5841,3W6TL_8.4_19.9,What did the person do to the pillow before closing the door?,0,Sequence_T6_3372,Sequence_T6,Put down.,Sat on.,Threw.,Took.,Put down. 5842,YCGJS_8_32,What did the person do to the table before holding the food?,1,Sequence_T6_3373,Sequence_T6,Threw.,Sat at.,Washed.,Tidied up.,Sat at. 5843,86GSE_9.6_20,What did the person do to the shoe before sitting on the sofa/couch?,1,Sequence_T6_3401,Sequence_T6,Sat at.,Took.,Lied on.,Put down.,Took. 5844,9J166_9.9_21.9,What did the person do to the window before closing the book?,3,Sequence_T6_3408,Sequence_T6,Washed.,Took.,Sat on.,Opened.,Opened. 5845,V9XR6_13.7_37.7,What did the person do to the bed before opening the closet/cabinet?,3,Sequence_T6_3409,Sequence_T6,Sat on.,Tidied up.,Closed.,Lied on.,Lied on. 5846,0F453_0.3_20,What did the person do to the refrigerator before taking the paper/notebook?,0,Sequence_T6_3450,Sequence_T6,Opened.,Put down.,Sat on.,Closed.,Opened. 5847,68YR6_15.8_32,What did the person do to the door before washing the window?,3,Sequence_T6_3461,Sequence_T6,Threw.,Ate.,Opened.,Closed.,Closed. 5848,M506V_9.4_32,What did the person do to the towel before tidying up the table?,0,Sequence_T6_3478,Sequence_T6,Threw.,Put down.,Sat on.,Took.,Threw. 5849,1ZBUS_5.2_21.8,What did the person do to the table before holding the sandwich?,1,Sequence_T6_3483,Sequence_T6,Washed.,Sat at.,Tidied up.,Took.,Sat at. 5850,M2XIS_2.7_9.4,What did the person do to the sofa/couch before opening the laptop?,0,Sequence_T6_3493,Sequence_T6,Sat on.,Lied on.,Tidied up.,Closed.,Sat on. 5851,9A58F_2.9_10.9,What did the person do to the shoe before taking the laptop?,1,Sequence_T6_3495,Sequence_T6,Closed.,Threw.,Opened.,Ate.,Threw. 5852,P2UBC_6_29.3,What did the person do to the sofa/couch before opening the door?,3,Sequence_T6_3534,Sequence_T6,Lied on.,Washed.,Opened.,Sat on.,Sat on. 5853,P2UBC_6_21.8,What did the person do to the sofa/couch before taking the shoe?,0,Sequence_T6_3535,Sequence_T6,Sat on.,Put down.,Lied on.,Opened.,Sat on. 5854,CII5H_11.6_23.9,What did the person do to the blanket before closing the door?,0,Sequence_T6_3554,Sequence_T6,Put down.,Took.,Lied on.,Threw.,Put down. 5855,6N7G6_0.2_35,What did the person do to the table before holding the blanket?,1,Sequence_T6_3608,Sequence_T6,Tidied up.,Sat at.,Took.,Washed.,Sat at. 5856,6N7G6_0.2_32.6,What did the person do to the table before taking the blanket?,2,Sequence_T6_3609,Sequence_T6,Tidied up.,Closed.,Sat at.,Washed.,Sat at. 5857,TWZA4_0.5_18.3,What did the person do to the book before holding the phone/camera?,0,Sequence_T6_3627,Sequence_T6,Opened.,Took.,Closed.,Threw.,Opened. 5858,M1GW9_13.5_27.5,What did the person do to the pillow before closing the door?,0,Sequence_T6_3629,Sequence_T6,Threw.,Washed.,Sat on.,Put down.,Threw. 5859,EO6OI_3.9_10.6,What did the person do to the towel before putting down the blanket?,0,Sequence_T6_3643,Sequence_T6,Tidied up.,Took.,Threw.,Lied on.,Tidied up. 5860,EO6OI_18.6_28.7,What did the person do to the table before putting down the towel?,2,Sequence_T6_3647,Sequence_T6,Sat on.,Ate.,Washed.,Tidied up.,Washed. 5861,L7HA6_0_26.7,What did the person do to the phone/camera before drinking from the cup/glass/bottle?,3,Sequence_T6_3650,Sequence_T6,Washed.,Opened.,Put down.,Took.,Took. 5862,R9382_13.4_29,What did the person do to the refrigerator before eating the sandwich?,3,Sequence_T6_3693,Sequence_T6,Opened.,Put down.,Took.,Closed.,Closed. 5863,R9382_13.4_27.5,What did the person do to the refrigerator before holding the sandwich?,3,Sequence_T6_3694,Sequence_T6,Put down.,Opened.,Lied on.,Closed.,Closed. 5864,L8Y8D_29.5_36.5,What did the person do to the closet/cabinet before opening the refrigerator?,0,Sequence_T6_3707,Sequence_T6,Closed.,Lied on.,Tidied up.,Ate.,Closed. 5865,AEUVY_16.4_31,What did the person do to the phone/camera before holding the broom?,2,Sequence_T6_3755,Sequence_T6,Closed.,Took.,Put down.,Opened.,Put down. 5866,8DL54_17.1_27.8,What did the person do to the dish before closing the refrigerator?,3,Sequence_T6_3762,Sequence_T6,Took.,Opened.,Washed.,Put down.,Put down. 5867,PHH6B_2.1_8.7,What did the person do to the sandwich before holding the food?,3,Sequence_T6_3765,Sequence_T6,Ate.,Threw.,Put down.,Took.,Took. 5868,PHH6B_14.8_25.3,What did the person do to the cup/glass/bottle before putting down the sandwich?,0,Sequence_T6_3766,Sequence_T6,Took.,Put down.,Ate.,Washed.,Took. 5869,CSLEP_0_21,What did the person do to the bed before putting down the clothes?,2,Sequence_T6_3768,Sequence_T6,Tidied up.,Sat on.,Lied on.,Took.,Lied on. 5870,CSLEP_0_13.2,What did the person do to the bed before taking the clothes?,2,Sequence_T6_3769,Sequence_T6,Washed.,Sat on.,Lied on.,Tidied up.,Lied on. 5871,HFTEO_6.1_32,What did the person do to the clothes before sitting on the floor?,0,Sequence_T6_3780,Sequence_T6,Put down.,Washed.,Ate.,Threw.,Put down. 5872,8VWV2_1.6_10.9,What did the person do to the table before holding the dish?,0,Sequence_T6_3785,Sequence_T6,Sat at.,Washed.,Tidied up.,Threw.,Sat at. 5873,VVTJJ_3.4_31,What did the person do to the cup/glass/bottle before sitting at the table?,3,Sequence_T6_3788,Sequence_T6,Took.,Lied on.,Washed.,Put down.,Put down. 5874,BLIFO_1_10.8,What did the person do to the closet/cabinet before tidying up the towel?,2,Sequence_T6_3795,Sequence_T6,Lied on.,Took.,Opened.,Closed.,Opened. 5875,AWGMW_0_14.3,What did the person do to the sofa/couch before taking the cup/glass/bottle?,2,Sequence_T6_3796,Sequence_T6,Opened.,Sat on.,Lied on.,Threw.,Lied on. 5876,J84TZ_0_21,What did the person do to the sofa/couch before taking the blanket?,2,Sequence_T6_3799,Sequence_T6,Opened.,Washed.,Lied on.,Sat on.,Lied on. 5877,HCM5Y_0_18.4,What did the person do to the floor before opening the door?,3,Sequence_T6_3824,Sequence_T6,Lied on.,Took.,Put down.,Sat on.,Sat on. 5878,RKGG5_6_11.5,What did the person do to the broom before taking the pillow?,0,Sequence_T6_3825,Sequence_T6,Threw.,Tidied up.,Put down.,Sat on.,Threw. 5879,C69Y1_7_16.7,What did the person do to the cup/glass/bottle before closing the closet/cabinet?,2,Sequence_T6_3839,Sequence_T6,Washed.,Tidied up.,Took.,Put down.,Took. 5880,C69Y1_11_42.5,What did the person do to the closet/cabinet before drinking from the cup/glass/bottle?,3,Sequence_T6_3840,Sequence_T6,Opened.,Washed.,Tidied up.,Closed.,Closed. 5881,59KH0_7.7_35,What did the person do to the clothes before sitting at the table?,1,Sequence_T6_3872,Sequence_T6,Threw.,Took.,Ate.,Put down.,Took. 5882,AXS82_13.7_28.8,What did the person do to the book before holding the sandwich?,2,Sequence_T6_3875,Sequence_T6,Opened.,Threw.,Closed.,Took.,Closed. 5883,AXS82_13.7_31,What did the person do to the book before opening the refrigerator?,0,Sequence_T6_3876,Sequence_T6,Closed.,Threw.,Sat on.,Took.,Closed. 5884,6KIA4_0_24,What did the person do to the dish before washing the table?,2,Sequence_T6_3895,Sequence_T6,Tidied up.,Put down.,Took.,Sat on.,Took. 5885,L58KN_8.5_31,What did the person do to the towel before opening the window?,0,Sequence_T6_3944,Sequence_T6,Threw.,Put down.,Took.,Tidied up.,Threw. 5886,L58KN_8.5_31,What did the person do to the towel before opening the closet/cabinet?,3,Sequence_T6_3945,Sequence_T6,Put down.,Took.,Tidied up.,Threw.,Threw. 5887,MNC10_7.6_17.5,What did the person do to the broom before taking the food?,2,Sequence_T6_3948,Sequence_T6,Sat on.,Put down.,Threw.,Tidied up.,Threw. 5888,I562C_14.5_36,What did the person do to the dish before holding the food?,2,Sequence_T6_3951,Sequence_T6,Washed.,Sat on.,Took.,Put down.,Took. 5889,KRLT7_4.7_22.8,What did the person do to the clothes before holding the phone/camera?,2,Sequence_T6_3959,Sequence_T6,Washed.,Put down.,Threw.,Took.,Threw. 5890,9OMY1_1.2_28,What did the person do to the box before sitting on the sofa/couch?,1,Sequence_T6_3974,Sequence_T6,Closed.,Opened.,Ate.,Washed.,Opened. 5891,JLGLU_15.4_28.3,What did the person do to the towel before closing the door?,3,Sequence_T6_3976,Sequence_T6,Tidied up.,Threw.,Put down.,Took.,Took. 5892,F24GU_10.8_32,What did the person do to the floor before watching at the picture?,3,Sequence_T6_3977,Sequence_T6,Took.,Sat on.,Threw.,Lied on.,Lied on. 5893,F24GU_10.8_32,What did the person do to the floor before watching at the book?,1,Sequence_T6_3978,Sequence_T6,Sat on.,Lied on.,Threw.,Washed.,Lied on. 5894,UMT5R_0_21.2,What did the person do to the bag before holding the food?,1,Sequence_T6_3987,Sequence_T6,Put down.,Took.,Threw.,Opened.,Took. 5895,UMT5R_0_24.6,What did the person do to the bag before opening the closet/cabinet?,2,Sequence_T6_3988,Sequence_T6,Closed.,Threw.,Took.,Put down.,Took. 5896,EDXBD_0_14,What did the person do to the table before opening the door?,3,Sequence_T6_4003,Sequence_T6,Washed.,Tidied up.,Lied on.,Sat at.,Sat at. 5897,B7LO8_2.9_19,What did the person do to the clothes before taking the phone/camera?,0,Sequence_T6_4042,Sequence_T6,Put down.,Threw.,Tidied up.,Washed.,Put down. 5898,IKZN3_8.1_33.4,What did the person do to the cup/glass/bottle before sitting at the table?,2,Sequence_T6_4043,Sequence_T6,Ate.,Took.,Put down.,Washed.,Put down. 5899,IU5TH_6.6_17.6,What did the person do to the laptop before taking the food?,2,Sequence_T6_4051,Sequence_T6,Put down.,Opened.,Closed.,Ate.,Closed. 5900,DQ46N_22.4_31.7,What did the person do to the closet/cabinet before holding the dish?,3,Sequence_T6_4075,Sequence_T6,Tidied up.,Opened.,Washed.,Closed.,Closed. 5901,R74DE_17.2_23.3,What did the person do to the blanket before throwing the towel?,0,Sequence_T6_4113,Sequence_T6,Put down.,Sat on.,Took.,Tidied up.,Put down. 5902,7ZCXJ_5.5_29,What did the person do to the floor before throwing the blanket?,0,Sequence_T6_4143,Sequence_T6,Sat on.,Took.,Tidied up.,Lied on.,Sat on. 5903,WH1S5_6.8_27.3,What did the person do to the sandwich before holding the food?,2,Sequence_T6_4161,Sequence_T6,Ate.,Put down.,Took.,Lied on.,Took. 5904,SMVKB_0_22.8,What did the person do to the pillow before opening the closet/cabinet?,3,Sequence_T6_4174,Sequence_T6,Sat at.,Threw.,Put down.,Took.,Took. 5905,RFMRB_11.9_21.7,What did the person do to the blanket before taking the cup/glass/bottle?,0,Sequence_T6_4178,Sequence_T6,Tidied up.,Put down.,Washed.,Opened.,Tidied up. 5906,5ZDNU_4.1_21.4,What did the person do to the clothes before taking the book?,2,Sequence_T6_4194,Sequence_T6,Washed.,Threw.,Put down.,Tidied up.,Put down. 5907,0OE6M_3.4_11.9,What did the person do to the clothes before taking the towel?,0,Sequence_T6_4204,Sequence_T6,Threw.,Tidied up.,Washed.,Put down.,Threw. 5908,BQAUC_2.1_14.3,What did the person do to the shoe before holding the mirror?,2,Sequence_T6_4211,Sequence_T6,Threw.,Took.,Put down.,Sat on.,Put down. 5909,1HAYV_0_8.2,What did the person do to the sandwich before drinking from the cup/glass/bottle?,0,Sequence_T6_4212,Sequence_T6,Ate.,Put down.,Took.,Sat at.,Ate. 5910,1HAYV_0_26.4,What did the person do to the sandwich before drinking from the cup/glass/bottle?,2,Sequence_T6_4213,Sequence_T6,Took.,Closed.,Ate.,Lied on.,Ate. 5911,PYIA3_1.4_10.3,What did the person do to the refrigerator before taking the food?,1,Sequence_T6_4259,Sequence_T6,Tidied up.,Opened.,Closed.,Ate.,Opened. 5912,ZA7ST_28.2_35,What did the person do to the bag before opening the box?,3,Sequence_T6_4264,Sequence_T6,Washed.,Put down.,Threw.,Took.,Took. 5913,X4DOF_0_13.6,What did the person do to the pillow before watching outside the window?,2,Sequence_T6_4295,Sequence_T6,Threw.,Put down.,Took.,Sat on.,Took. 5914,3AE3T_2.1_19.5,What did the person do to the laptop before sitting on the sofa/couch?,0,Sequence_T6_4299,Sequence_T6,Put down.,Took.,Opened.,Closed.,Put down. 5915,5GPOJ_8.5_14.4,What did the person do to the book before putting down the paper/notebook?,3,Sequence_T6_4330,Sequence_T6,Opened.,Took.,Threw.,Closed.,Closed. 5916,MY5CQ_11.5_19.6,What did the person do to the laptop before opening the book?,1,Sequence_T6_4341,Sequence_T6,Sat at.,Closed.,Took.,Put down.,Closed. 5917,6C4DV_1.2_18.8,What did the person do to the cup/glass/bottle before holding the phone/camera?,3,Sequence_T6_4374,Sequence_T6,Put down.,Tidied up.,Washed.,Took.,Took. 5918,6C4DV_0.5_7.1,What did the person do to the closet/cabinet before taking the cup/glass/bottle?,1,Sequence_T6_4375,Sequence_T6,Opened.,Tidied up.,Closed.,Lied on.,Tidied up. 5919,JXNEN_10.4_27,What did the person do to the sandwich before holding the food?,2,Sequence_T6_4381,Sequence_T6,Put down.,Took.,Ate.,Opened.,Ate. 5920,JXNEN_10.4_27,What did the person do to the sandwich before sitting on the sofa/couch?,3,Sequence_T6_4382,Sequence_T6,Took.,Put down.,Closed.,Ate.,Ate. 5921,EY6P4_0.5_11,What did the person do to the closet/cabinet before watching at the book?,3,Sequence_T6_4385,Sequence_T6,Tidied up.,Closed.,Put down.,Opened.,Opened. 5922,3EDV7_2.6_31,What did the person do to the clothes before holding the pillow?,2,Sequence_T6_4386,Sequence_T6,Took.,Threw.,Washed.,Put down.,Washed. 5923,J6P6H_9.5_18.4,What did the person do to the sandwich before taking the food?,1,Sequence_T6_4420,Sequence_T6,Sat at.,Ate.,Put down.,Lied on.,Ate. 5924,UIERL_13.5_25.3,What did the person do to the food before holding the dish?,0,Sequence_T6_4444,Sequence_T6,Took.,Put down.,Lied on.,Threw.,Took. 5925,KZODG_15.3_32,What did the person do to the laptop before holding the phone/camera?,2,Sequence_T6_4447,Sequence_T6,Put down.,Opened.,Closed.,Took.,Closed. 5926,27JQL_6.8_24.1,What did the person do to the towel before eating the sandwich?,3,Sequence_T6_4474,Sequence_T6,Tidied up.,Put down.,Took.,Threw.,Threw. 5927,27JQL_6.8_32,What did the person do to the towel before holding the dish?,3,Sequence_T6_4475,Sequence_T6,Put down.,Tidied up.,Took.,Threw.,Threw. 5928,27JQL_6.8_32,What did the person do to the towel before holding the food?,0,Sequence_T6_4476,Sequence_T6,Threw.,Tidied up.,Took.,Put down.,Threw. 5929,VEHER_1.8_9.9,What did the person do to the box before holding the clothes?,3,Sequence_T6_4519,Sequence_T6,Put down.,Threw.,Closed.,Took.,Took. 5930,84893_7.8_15.6,What did the person do to the blanket before throwing the clothes?,3,Sequence_T6_4522,Sequence_T6,Lied on.,Put down.,Took.,Tidied up.,Tidied up. 5931,TAGEG_8.7_17.8,What did the person do to the dish before opening the closet/cabinet?,1,Sequence_T6_4536,Sequence_T6,Sat at.,Took.,Closed.,Put down.,Took. 5932,KXCSL_3.1_31,What did the person do to the refrigerator before sitting on the floor?,3,Sequence_T6_4537,Sequence_T6,Ate.,Opened.,Washed.,Closed.,Closed. 5933,ZZ89F_13.6_26.5,What did the person do to the refrigerator before holding the dish?,0,Sequence_T6_4555,Sequence_T6,Closed.,Ate.,Opened.,Threw.,Closed. 5934,JY6TC_0.8_16.4,What did the person do to the bed before taking the cup/glass/bottle?,2,Sequence_T6_4562,Sequence_T6,Lied on.,Opened.,Sat on.,Threw.,Sat on. 5935,JY6TC_0.8_21,What did the person do to the bed before putting down the paper/notebook?,3,Sequence_T6_4563,Sequence_T6,Closed.,Lied on.,Washed.,Sat on.,Sat on. 5936,Z6HEA_9.1_21.8,What did the person do to the floor before taking the food?,3,Sequence_T6_4574,Sequence_T6,Lied on.,Tidied up.,Washed.,Sat on.,Sat on. 5937,Z6HEA_2.6_16.2,What did the person do to the clothes before sitting on the floor?,2,Sequence_T6_4575,Sequence_T6,Threw.,Took.,Washed.,Put down.,Washed. 5938,ZFQNZ_8.9_18.3,What did the person do to the refrigerator before holding the food?,0,Sequence_T6_4582,Sequence_T6,Closed.,Opened.,Put down.,Ate.,Closed. 5939,ZFQNZ_8.9_15.3,What did the person do to the refrigerator before taking the food?,1,Sequence_T6_4583,Sequence_T6,Washed.,Closed.,Ate.,Opened.,Closed. 5940,HL5OP_14.4_22.3,What did the person do to the food before opening the bag?,3,Sequence_T6_4595,Sequence_T6,Took.,Ate.,Washed.,Threw.,Threw. 5941,Z70KK_8_26,What did the person do to the table before taking the broom?,3,Sequence_T6_4611,Sequence_T6,Sat at.,Tidied up.,Sat on.,Washed.,Washed. 5942,SUI1X_1.7_19.3,What did the person do to the bag before putting down the book?,2,Sequence_T6_4638,Sequence_T6,Took.,Threw.,Opened.,Washed.,Opened. 5943,TVCQF_6.5_17,What did the person do to the table before opening the box?,1,Sequence_T6_4672,Sequence_T6,Took.,Sat at.,Washed.,Tidied up.,Sat at. 5944,LLOGB_8.7_31,What did the person do to the phone/camera before lying on the bed?,1,Sequence_T6_4680,Sequence_T6,Threw.,Took.,Put down.,Lied on.,Took. 5945,6ALEL_11.6_24.2,What did the person do to the towel before taking the food?,0,Sequence_T6_4683,Sequence_T6,Put down.,Threw.,Tidied up.,Sat on.,Put down. 5946,NV4FC_15.7_25.8,What did the person do to the shoe before taking the book?,0,Sequence_T6_4687,Sequence_T6,Threw.,Tidied up.,Opened.,Put down.,Threw. 5947,NV4FC_22.4_30.3,What did the person do to the book before opening the door?,2,Sequence_T6_4691,Sequence_T6,Threw.,Sat on.,Closed.,Put down.,Closed. 5948,NV4FC_0_10.4,What did the person do to the bed before putting down the clothes?,3,Sequence_T6_4692,Sequence_T6,Lied on.,Opened.,Took.,Sat on.,Sat on. 5949,XFRYR_8.8_16.9,What did the person do to the closet/cabinet before holding the food?,1,Sequence_T6_4694,Sequence_T6,Tidied up.,Closed.,Took.,Opened.,Closed. 5950,XYGU1_11.8_20.9,What did the person do to the book before drinking from the cup/glass/bottle?,0,Sequence_T6_4720,Sequence_T6,Opened.,Put down.,Threw.,Took.,Opened. 5951,WJ1E7_8.7_33,What did the person do to the shoe before sitting at the table?,1,Sequence_T6_4721,Sequence_T6,Took.,Put down.,Threw.,Washed.,Put down. 5952,9O0HH_1.5_37,What did the person do to the closet/cabinet before holding the food?,0,Sequence_T6_4729,Sequence_T6,Closed.,Opened.,Tidied up.,Took.,Closed. 5953,9O0HH_1.5_30.4,What did the person do to the closet/cabinet before putting down the food?,1,Sequence_T6_4730,Sequence_T6,Opened.,Closed.,Threw.,Tidied up.,Closed. 5954,OKYYQ_2.5_15.6,What did the person do to the book before opening the closet/cabinet?,2,Sequence_T6_4742,Sequence_T6,Put down.,Took.,Closed.,Threw.,Closed. 5955,XPWYQ_16_26,What did the person do to the book before holding the phone/camera?,0,Sequence_T6_4759,Sequence_T6,Put down.,Threw.,Opened.,Took.,Put down. 5956,0JB3D_5.4_25.4,What did the person do to the refrigerator before putting down the cup/glass/bottle?,3,Sequence_T6_4820,Sequence_T6,Opened.,Ate.,Washed.,Closed.,Closed. 5957,0JB3D_5.4_15.8,What did the person do to the refrigerator before drinking from the cup/glass/bottle?,0,Sequence_T6_4821,Sequence_T6,Closed.,Opened.,Took.,Lied on.,Closed. 5958,F3O37_6_14.6,What did the person do to the clothes before holding the pillow?,2,Sequence_T6_4824,Sequence_T6,Threw.,Tidied up.,Put down.,Washed.,Put down. 5959,S3TZ1_5.9_17,What did the person do to the refrigerator before opening the closet/cabinet?,3,Sequence_T6_4836,Sequence_T6,Washed.,Sat on.,Tidied up.,Closed.,Closed. 5960,UEP20_10.3_18.6,What did the person do to the book before opening the closet/cabinet?,1,Sequence_T6_4871,Sequence_T6,Lied on.,Closed.,Threw.,Took.,Closed. 5961,VKXLL_22.1_36.2,What did the person do to the box before putting down the paper/notebook?,0,Sequence_T6_4885,Sequence_T6,Opened.,Threw.,Closed.,Took.,Opened. 5962,Q8UJ8_0.9_19.3,What did the person do to the bag before drinking from the cup/glass/bottle?,2,Sequence_T6_4893,Sequence_T6,Took.,Threw.,Opened.,Put down.,Opened. 5963,XZ9C0_0_14.9,What did the person do to the bed before taking the bag?,1,Sequence_T6_4898,Sequence_T6,Sat on.,Lied on.,Washed.,Opened.,Lied on. 5964,PZD7Z_0_17.6,What did the person do to the table before putting down the broom?,1,Sequence_T6_4943,Sequence_T6,Washed.,Sat at.,Lied on.,Tidied up.,Sat at. 5965,C61BE_0_10,What did the person do to the sandwich before taking the blanket?,1,Sequence_T6_4952,Sequence_T6,Washed.,Ate.,Put down.,Closed.,Ate. 5966,6TNP4_0_46,What did the person do to the refrigerator before putting down the shoe?,1,Sequence_T6_4959,Sequence_T6,Threw.,Opened.,Closed.,Took.,Opened. 5967,6TNP4_0_46,What did the person do to the refrigerator before taking the shoe?,1,Sequence_T6_4960,Sequence_T6,Closed.,Opened.,Threw.,Sat on.,Opened. 5968,0BZAD_7.5_31,What did the person do to the book before taking the food?,1,Sequence_T6_4974,Sequence_T6,Threw.,Opened.,Put down.,Closed.,Opened. 5969,0BZAD_7.5_32,What did the person do to the book before holding the food?,0,Sequence_T6_4975,Sequence_T6,Opened.,Put down.,Closed.,Threw.,Opened. 5970,B8PQL_2.1_8.3,What did the person do to the towel before closing the door?,0,Sequence_T6_4980,Sequence_T6,Threw.,Took.,Put down.,Tidied up.,Threw. 5971,8DSGI_13.4_32,What did the person do to the book before sitting on the floor?,1,Sequence_T6_5010,Sequence_T6,Sat on.,Opened.,Took.,Put down.,Opened. 5972,0QES3_0.1_20.2,What did the person do to the book before closing the door?,0,Sequence_T6_5015,Sequence_T6,Put down.,Threw.,Took.,Opened.,Put down. 5973,0QES3_0.1_20.1,What did the person do to the book before opening the door?,1,Sequence_T6_5016,Sequence_T6,Threw.,Put down.,Took.,Lied on.,Put down. 5974,0CG15_19.7_29.7,What did the person do to the clothes before opening the closet/cabinet?,3,Sequence_T6_5028,Sequence_T6,Washed.,Took.,Threw.,Put down.,Put down. 5975,RTEWJ_0_8.4,What did the person do to the sandwich before taking the blanket?,2,Sequence_T6_5058,Sequence_T6,Washed.,Sat on.,Put down.,Ate.,Put down. 5976,6KI0S_0_22.9,What did the person do to the bed before holding the blanket?,3,Sequence_T6_5071,Sequence_T6,Sat on.,Threw.,Tidied up.,Lied on.,Lied on. 5977,6KI0S_0_27,What did the person do to the bed before holding the pillow?,3,Sequence_T6_5072,Sequence_T6,Took.,Sat on.,Put down.,Lied on.,Lied on. 5978,5V5EL_3.7_19,What did the person do to the phone/camera before taking the bag?,3,Sequence_T6_5080,Sequence_T6,Sat at.,Lied on.,Sat on.,Put down.,Put down. 5979,ZOTR8_6.7_18.7,What did the person do to the shoe before taking the cup/glass/bottle?,2,Sequence_T6_5095,Sequence_T6,Sat at.,Threw.,Put down.,Closed.,Put down. 5980,L9ANI_7.3_33,What did the person do to the towel before washing the table?,1,Sequence_T6_5096,Sequence_T6,Put down.,Took.,Tidied up.,Threw.,Took. 5981,BI31D_5.2_18,What did the person do to the phone/camera before sitting on the bed?,2,Sequence_T6_5100,Sequence_T6,Took.,Washed.,Put down.,Threw.,Put down. 5982,194WK_6.6_21.1,What did the person do to the book before holding the mirror?,2,Sequence_T6_5107,Sequence_T6,Opened.,Threw.,Put down.,Closed.,Put down. 5983,DHFA6_15_39.2,What did the person do to the box before sitting on the sofa/couch?,3,Sequence_T6_5121,Sequence_T6,Washed.,Opened.,Closed.,Put down.,Put down. 5984,21MI8_3.9_13.4,What did the person do to the laptop before putting down the cup/glass/bottle?,1,Sequence_T6_5134,Sequence_T6,Ate.,Opened.,Lied on.,Took.,Opened. 5985,6H78U_15.6_25.225,What will the person do next?,2,Prediction_T1_9,Prediction_T1,Open the box.,Put down the broom.,Put down the towel.,Take the clothes.,Put down the towel. 5986,Y79PC_0.3_18.325,What will the person do next?,2,Prediction_T1_24,Prediction_T1,Take the phone/camera.,Put down the bag.,Throw the clothes.,Open the closet/cabinet.,Throw the clothes. 5987,OY3LS_22.1_38.425000000000004,What will the person do next?,0,Prediction_T1_38,Prediction_T1,Put down the laptop.,Take the phone/camera.,Take the clothes.,Open the laptop.,Put down the laptop. 5988,5T0NX_0_4.4,What will the person do next?,0,Prediction_T1_45,Prediction_T1,Take the dish.,Eat the medicine.,Put down the clothes.,Take the paper/notebook.,Take the dish. 5989,RG0KS_0_18.325,What will the person do next?,3,Prediction_T1_48,Prediction_T1,Put down the blanket.,Sit on the floor.,Lie on the sofa/couch.,Take the shoe.,Take the shoe. 5990,DGPAW_0_12.025,What will the person do next?,3,Prediction_T1_88,Prediction_T1,Put down the cup/glass/bottle.,Wash the mirror.,Open the box.,Open the door.,Open the door. 5991,6CAZU_0_11.975,What will the person do next?,3,Prediction_T1_102,Prediction_T1,Wash the mirror.,Close the box.,Throw the clothes.,Take the sandwich.,Take the sandwich. 5992,D1WYU_7.2_21.525,What will the person do next?,3,Prediction_T1_110,Prediction_T1,Open the closet/cabinet.,Eat the medicine.,Tidy up the table.,Put down the shoe.,Put down the shoe. 5993,D1WYU_0_9,What will the person do next?,3,Prediction_T1_111,Prediction_T1,Open the laptop.,Take the broom.,Wash the cup/glass/bottle.,Throw the bag.,Throw the bag. 5994,1O1JS_0_27.375,What will the person do next?,1,Prediction_T1_119,Prediction_T1,Close the box.,Put down the towel.,Take the laptop.,Close the closet/cabinet.,Put down the towel. 5995,A2X7Q_3_13,What will the person do next?,2,Prediction_T1_133,Prediction_T1,Lie on the floor.,Open the closet/cabinet.,Put down the sandwich.,Eat the medicine.,Put down the sandwich. 5996,3N1I2_6.7_15.725,What will the person do next?,0,Prediction_T1_143,Prediction_T1,Take the pillow.,Take the book.,Open the book.,Open the closet/cabinet.,Take the pillow. 5997,3N1I2_2.9_12.825000000000001,What will the person do next?,2,Prediction_T1_144,Prediction_T1,Tidy up the closet/cabinet.,Take the food.,Close the refrigerator.,Close the laptop.,Close the refrigerator. 5998,ATV2F_0_8.95,What will the person do next?,0,Prediction_T1_148,Prediction_T1,Put down the blanket.,Hold the box.,Take the dish.,Throw the pillow.,Put down the blanket. 5999,IWTWJ_0_15.1,What will the person do next?,3,Prediction_T1_152,Prediction_T1,Open the box.,Take the dish.,Put down the sandwich.,Sit on the sofa/couch.,Sit on the sofa/couch. 6000,NJANX_3_18.775,What will the person do next?,0,Prediction_T1_167,Prediction_T1,Wash the table.,Lie on the floor.,Put down the towel.,Take the box.,Wash the table. 6001,C1DK7_4.2_18.225,What will the person do next?,2,Prediction_T1_183,Prediction_T1,Open the bag.,Take the shoe.,Put down the phone/camera.,Throw the towel.,Put down the phone/camera. 6002,V0ZD9_0.5_24.75,What will the person do next?,1,Prediction_T1_198,Prediction_T1,Put down the book.,Take the clothes.,Eat the medicine.,Close the closet/cabinet.,Take the clothes. 6003,YHXU9_13.6_20.725,What will the person do next?,2,Prediction_T1_205,Prediction_T1,Wash the window.,Sit at the table.,Throw the book.,Throw the pillow.,Throw the book. 6004,VJG6E_0_11.25,What will the person do next?,2,Prediction_T1_210,Prediction_T1,Throw the bag.,Wash the mirror.,Open the laptop.,Put down the bag.,Open the laptop. 6005,NW0KT_4.7_14.85,What will the person do next?,2,Prediction_T1_225,Prediction_T1,Eat the medicine.,Put down the food.,Close the book.,Put down the book.,Close the book. 6006,U5T4M_0.5_15.3,What will the person do next?,2,Prediction_T1_301,Prediction_T1,Throw the blanket.,Take the pillow.,Sit at the table.,Close the box.,Sit at the table. 6007,ZNQVC_8.9_26.299999999999997,What will the person do next?,2,Prediction_T1_302,Prediction_T1,Hold the laptop.,Sit on the sofa/couch.,Take the shoe.,Take the phone/camera.,Take the shoe. 6008,6ZWSU_0_13.65,What will the person do next?,0,Prediction_T1_308,Prediction_T1,Put down the shoe.,Throw the clothes.,Open the book.,Throw the bag.,Put down the shoe. 6009,G6ZOB_7_27.075,What will the person do next?,0,Prediction_T1_325,Prediction_T1,Put down the book.,Put down the cup/glass/bottle.,Open the door.,Close the door.,Put down the book. 6010,ZPRJH_0_7.175,What will the person do next?,0,Prediction_T1_399,Prediction_T1,Take the paper/notebook.,Wash the mirror.,Take the bag.,Open the closet/cabinet.,Take the paper/notebook. 6011,R971Z_0_9.35,What will the person do next?,1,Prediction_T1_429,Prediction_T1,Put down the dish.,Take the clothes.,Lie on the sofa/couch.,Put down the pillow.,Take the clothes. 6012,2BO2G_18.5_30.3,What will the person do next?,2,Prediction_T1_430,Prediction_T1,Put down the laptop.,Put down the paper/notebook.,Put down the picture.,Hold the blanket.,Put down the picture. 6013,Z7KC1_0_24.700000000000003,What will the person do next?,2,Prediction_T1_468,Prediction_T1,Put down the dish.,Tidy up the clothes.,Take the broom.,Close the box.,Take the broom. 6014,65UVU_0_6.15,What will the person do next?,2,Prediction_T1_469,Prediction_T1,Sit on the sofa/couch.,Take the phone/camera.,Put down the box.,Tidy up the clothes.,Put down the box. 6015,BI6Y4_4.6_27.25,What will the person do next?,1,Prediction_T1_476,Prediction_T1,Throw the bag.,Sit at the table.,Sit on the sofa/couch.,Take the clothes.,Sit at the table. 6016,4BEZX_15.8_36.474999999999994,What will the person do next?,3,Prediction_T1_483,Prediction_T1,Put down the cup/glass/bottle.,Open the door.,Put down the picture.,Throw the towel.,Throw the towel. 6017,9YOI8_14.8_26.025000000000002,What will the person do next?,1,Prediction_T1_491,Prediction_T1,Take the food.,Close the window.,Open the box.,Open the window.,Close the window. 6018,7TA23_6.6_16.3,What will the person do next?,1,Prediction_T1_499,Prediction_T1,Put down the bag.,Put down the shoe.,Wash the dish.,Sit on the sofa/couch.,Put down the shoe. 6019,337O2_0_16.275,What will the person do next?,0,Prediction_T1_503,Prediction_T1,Throw the clothes.,Close the window.,Put down the food.,Wash the clothes.,Throw the clothes. 6020,M6ERH_11.6_30.75,What will the person do next?,1,Prediction_T1_512,Prediction_T1,Open the door.,Sit at the table.,Take the food.,Take the dish.,Sit at the table. 6021,727IZ_0_6.6,What will the person do next?,2,Prediction_T1_541,Prediction_T1,Take the shoe.,Sit on the table.,Take the paper/notebook.,Throw the clothes.,Take the paper/notebook. 6022,727IZ_11.2_18.200000000000003,What will the person do next?,2,Prediction_T1_542,Prediction_T1,Put down the cup/glass/bottle.,Open the closet/cabinet.,Put down the paper/notebook.,Put down the phone/camera.,Put down the paper/notebook. 6023,X8JVY_0_5.825,What will the person do next?,1,Prediction_T1_556,Prediction_T1,Put down the cup/glass/bottle.,Take the book.,Eat the sandwich.,Put down the dish.,Take the book. 6024,W0XPU_0.3_19.05,What will the person do next?,0,Prediction_T1_564,Prediction_T1,Take the sandwich.,Open the refrigerator.,Put down the phone/camera.,Wash the window.,Take the sandwich. 6025,YACA8_0_17.9,What will the person do next?,0,Prediction_T1_609,Prediction_T1,Take the shoe.,Take the book.,Sit on the table.,Take the box.,Take the shoe. 6026,VS7VS_3.1_19.575000000000003,What will the person do next?,3,Prediction_T1_610,Prediction_T1,Wash the cup/glass/bottle.,Put down the sandwich.,Put down the shoe.,Throw the book.,Throw the book. 6027,5INX3_0_34.6,What will the person do next?,0,Prediction_T1_616,Prediction_T1,Take the clothes.,Put down the bag.,Sit on the table.,Take the book.,Take the clothes. 6028,BFH78_7.7_15.775,What will the person do next?,0,Prediction_T1_622,Prediction_T1,Open the book.,Open the closet/cabinet.,Take the sandwich.,Take the food.,Open the book. 6029,3T785_2.1_15.65,What will the person do next?,2,Prediction_T1_625,Prediction_T1,Tidy up the clothes.,Take the pillow.,Take the laptop.,Take the box.,Take the laptop. 6030,3CLVI_16.3_25.65,What will the person do next?,3,Prediction_T1_687,Prediction_T1,Wash the dish.,Open the closet/cabinet.,Take the food.,Throw the towel.,Throw the towel. 6031,HXUI5_9_35.25,What will the person do next?,1,Prediction_T1_711,Prediction_T1,Take the broom.,Take the phone/camera.,Hold the pillow.,Put down the food.,Take the phone/camera. 6032,UYZKX_2.9_22.625,What will the person do next?,2,Prediction_T1_716,Prediction_T1,Tidy up the table.,Take the sandwich.,Throw the blanket.,Open the bag.,Throw the blanket. 6033,FQS7O_14.8_21.875,What will the person do next?,1,Prediction_T1_721,Prediction_T1,Open the door.,Take the towel.,Put down the phone/camera.,Close the book.,Take the towel. 6034,K9UXS_0_24.25,What will the person do next?,0,Prediction_T1_729,Prediction_T1,Tidy up the blanket.,Put down the bag.,Take the clothes.,Close the window.,Tidy up the blanket. 6035,35ZZP_0_7.75,What will the person do next?,0,Prediction_T1_738,Prediction_T1,Put down the food.,Throw the blanket.,Open the door.,Tidy up the closet/cabinet.,Put down the food. 6036,D1NT7_3.2_12.25,What will the person do next?,0,Prediction_T1_757,Prediction_T1,Take the box.,Throw the food.,Tidy up the towel.,Sit on the sofa/couch.,Take the box. 6037,D1NT7_9.4_16.95,What will the person do next?,0,Prediction_T1_758,Prediction_T1,Take the blanket.,Take the paper/notebook.,Put down the picture.,Put down the cup/glass/bottle.,Take the blanket. 6038,1FIGA_9.6_17.55,What will the person do next?,3,Prediction_T1_781,Prediction_T1,Tidy up the clothes.,Wash the dish.,Throw the blanket.,Put down the book.,Put down the book. 6039,S673O_0_26.15,What will the person do next?,1,Prediction_T1_796,Prediction_T1,Put down the book.,Eat the sandwich.,Lie on the bed.,Take the box.,Eat the sandwich. 6040,DWHPO_1.3_17.1,What will the person do next?,0,Prediction_T1_800,Prediction_T1,Put down the phone/camera.,Take the broom.,Take the book.,Throw the clothes.,Put down the phone/camera. 6041,2PREF_0_9.924999999999999,What will the person do next?,3,Prediction_T1_807,Prediction_T1,Put down the cup/glass/bottle.,Eat the sandwich.,Lie on the floor.,Open the closet/cabinet.,Open the closet/cabinet. 6042,T1CQE_17.3_32.425,What will the person do next?,3,Prediction_T1_810,Prediction_T1,Take the book.,Take the bag.,Put down the paper/notebook.,Open the laptop.,Open the laptop. 6043,2WGSN_0_16.325,What will the person do next?,2,Prediction_T1_813,Prediction_T1,Take the phone/camera.,Close the book.,Take the towel.,Throw the food.,Take the towel. 6044,KV99H_2.1_17.75,What will the person do next?,0,Prediction_T1_814,Prediction_T1,Put down the book.,Take the sandwich.,Open the closet/cabinet.,Hold the food.,Put down the book. 6045,KV99H_1_10.25,What will the person do next?,3,Prediction_T1_815,Prediction_T1,Wash the cup/glass/bottle.,Put down the laptop.,Put down the cup/glass/bottle.,Put down the shoe.,Put down the shoe. 6046,EDVAM_0_11.649999999999999,What will the person do next?,3,Prediction_T1_816,Prediction_T1,Put down the paper/notebook.,Hold the phone/camera.,Throw the blanket.,Close the window.,Close the window. 6047,R0207_6.1_29.775,What will the person do next?,3,Prediction_T1_841,Prediction_T1,Put down the blanket.,Take the blanket.,Wash the clothes.,Put down the sandwich.,Put down the sandwich. 6048,C5BMA_13.9_30.1,What will the person do next?,1,Prediction_T1_856,Prediction_T1,Tidy up the clothes.,Throw the food.,Put down the cup/glass/bottle.,Put down the blanket.,Throw the food. 6049,WOD0G_0_15.85,What will the person do next?,1,Prediction_T1_864,Prediction_T1,Throw the book.,Throw the clothes.,Wash the table.,Open the door.,Throw the clothes. 6050,NM65M_4.3_13.299999999999999,What will the person do next?,0,Prediction_T1_876,Prediction_T1,Throw the blanket.,Eat the medicine.,Lie on the sofa/couch.,Put down the box.,Throw the blanket. 6051,24XHS_3.8_21.8,What will the person do next?,3,Prediction_T1_882,Prediction_T1,Throw the bag.,Take the book.,Put down the phone/camera.,Open the refrigerator.,Open the refrigerator. 6052,NEM29_4_20.725,What will the person do next?,1,Prediction_T1_886,Prediction_T1,Take the sandwich.,Open the bag.,Take the towel.,Take the food.,Open the bag. 6053,K71S1_0_11.3,What will the person do next?,1,Prediction_T1_887,Prediction_T1,Put down the food.,Take the blanket.,Eat the medicine.,Open the refrigerator.,Take the blanket. 6054,OA9W5_0_7.949999999999999,What will the person do next?,0,Prediction_T1_889,Prediction_T1,Put down the sandwich.,Put down the book.,Lie on the floor.,Take the dish.,Put down the sandwich. 6055,V3RAX_0_17.2,What will the person do next?,0,Prediction_T1_904,Prediction_T1,Tidy up the clothes.,Take the blanket.,Open the door.,Sit on the bed.,Tidy up the clothes. 6056,V3RAX_10.6_22.85,What will the person do next?,3,Prediction_T1_905,Prediction_T1,Sit at the table.,Close the window.,Take the cup/glass/bottle.,Eat the sandwich.,Eat the sandwich. 6057,8LAK1_4.4_27.049999999999997,What will the person do next?,1,Prediction_T1_911,Prediction_T1,Eat the medicine.,Take the shoe.,Take the clothes.,Throw the food.,Take the shoe. 6058,9XXJ7_0.6_11.65,What will the person do next?,2,Prediction_T1_912,Prediction_T1,Put down the pillow.,Open the door.,Take the cup/glass/bottle.,Open the book.,Take the cup/glass/bottle. 6059,78R4Y_1.6_11.25,What will the person do next?,0,Prediction_T1_933,Prediction_T1,Put down the bag.,Take the food.,Take the phone/camera.,Put down the shoe.,Put down the bag. 6060,E6PSM_3.9_24.475,What will the person do next?,1,Prediction_T1_962,Prediction_T1,Throw the food.,Throw the box.,Close the closet/cabinet.,Put down the dish.,Throw the box. 6061,AZMVM_13.9_20.875,What will the person do next?,1,Prediction_T1_965,Prediction_T1,Close the book.,Put down the pillow.,Open the bag.,Tidy up the clothes.,Put down the pillow. 6062,X5YL3_2.7_14.5,What will the person do next?,0,Prediction_T1_1020,Prediction_T1,Close the refrigerator.,Open the door.,Tidy up the clothes.,Take the book.,Close the refrigerator. 6063,57A1A_3_12.25,What will the person do next?,3,Prediction_T1_1022,Prediction_T1,Put down the pillow.,Open the laptop.,Wash the clothes.,Throw the broom.,Throw the broom. 6064,432NL_13.6_26.825000000000003,What will the person do next?,0,Prediction_T1_1030,Prediction_T1,Eat the medicine.,Put down the towel.,Put down the paper/notebook.,Open the refrigerator.,Eat the medicine. 6065,KQYR0_0.9_17.525,What will the person do next?,1,Prediction_T1_1037,Prediction_T1,Put down the dish.,Take the book.,Eat the sandwich.,Throw the box.,Take the book. 6066,OUAIS_0_24.575000000000003,What will the person do next?,2,Prediction_T1_1046,Prediction_T1,Throw the book.,Wash the table.,Throw the pillow.,Take the food.,Throw the pillow. 6067,NVBBD_0_12.25,What will the person do next?,1,Prediction_T1_1049,Prediction_T1,Lie on the floor.,Put down the shoe.,Take the paper/notebook.,Take the book.,Put down the shoe. 6068,2LCLG_11_19.4,What will the person do next?,0,Prediction_T1_1051,Prediction_T1,Throw the bag.,Put down the towel.,Eat the sandwich.,Sit at the table.,Throw the bag. 6069,TZL6H_6_26,What will the person do next?,2,Prediction_T1_1052,Prediction_T1,Open the window.,Open the book.,Wash the mirror.,Close the door.,Wash the mirror. 6070,6UMSJ_0_10.175,What will the person do next?,2,Prediction_T1_1053,Prediction_T1,Put down the clothes.,Tidy up the closet/cabinet.,Take the phone/camera.,Tidy up the clothes.,Take the phone/camera. 6071,U6L1X_0_21,What will the person do next?,1,Prediction_T1_1063,Prediction_T1,Put down the sandwich.,Put down the broom.,Put down the laptop.,Hold the food.,Put down the broom. 6072,2544C_0_11.9,What will the person do next?,3,Prediction_T1_1134,Prediction_T1,Take the bag.,Throw the shoe.,Put down the cup/glass/bottle.,Put down the towel.,Put down the towel. 6073,0Z36L_17.2_29.525,What will the person do next?,1,Prediction_T1_1146,Prediction_T1,Take the cup/glass/bottle.,Put down the bag.,Put down the cup/glass/bottle.,Take the clothes.,Put down the bag. 6074,C6LW1_0_20.625,What will the person do next?,1,Prediction_T1_1149,Prediction_T1,Put down the bag.,Put down the phone/camera.,Put down the food.,Close the book.,Put down the phone/camera. 6075,JBJGX_12.2_26.325000000000003,What will the person do next?,3,Prediction_T1_1161,Prediction_T1,Open the window.,Put down the phone/camera.,Hold the broom.,Open the laptop.,Open the laptop. 6076,43FG9_0_5.550000000000001,What will the person do next?,0,Prediction_T1_1163,Prediction_T1,Throw the towel.,Eat the sandwich.,Put down the broom.,Open the book.,Throw the towel. 6077,WLA52_0.6_17.6,What will the person do next?,2,Prediction_T1_1169,Prediction_T1,Put down the cup/glass/bottle.,Close the box.,Put down the blanket.,Take the pillow.,Put down the blanket. 6078,WLA52_1.3_20.5,What will the person do next?,0,Prediction_T1_1170,Prediction_T1,Take the broom.,Put down the laptop.,Throw the bag.,Open the door.,Take the broom. 6079,N2GFQ_14_34.8,What will the person do next?,2,Prediction_T1_1174,Prediction_T1,Close the door.,Take the picture.,Lie on the sofa/couch.,Open the door.,Lie on the sofa/couch. 6080,N2GFQ_0_8.55,What will the person do next?,3,Prediction_T1_1175,Prediction_T1,Take the cup/glass/bottle.,Lie on the bed.,Put down the clothes.,Put down the bag.,Put down the bag. 6081,BQKW5_0_12.95,What will the person do next?,0,Prediction_T1_1182,Prediction_T1,Put down the towel.,Open the door.,Put down the dish.,Throw the broom.,Put down the towel. 6082,AWITI_0_11.4,What will the person do next?,3,Prediction_T1_1188,Prediction_T1,Tidy up the closet/cabinet.,Put down the food.,Close the book.,Take the pillow.,Take the pillow. 6083,9BCZU_0_22.725,What will the person do next?,1,Prediction_T1_1198,Prediction_T1,Take the phone/camera.,Take the clothes.,Sit on the sofa/couch.,Take the box.,Take the clothes. 6084,9PXC0_0_13.175,What will the person do next?,0,Prediction_T1_1201,Prediction_T1,Open the box.,Sit at the table.,Take the sandwich.,Lie on the sofa/couch.,Open the box. 6085,2U0QT_10_21.575,What will the person do next?,2,Prediction_T1_1229,Prediction_T1,Open the closet/cabinet.,Open the door.,Close the closet/cabinet.,Tidy up the clothes.,Close the closet/cabinet. 6086,I713Z_3.4_20.724999999999998,What will the person do next?,1,Prediction_T1_1235,Prediction_T1,Tidy up the blanket.,Open the refrigerator.,Open the closet/cabinet.,Throw the box.,Open the refrigerator. 6087,ZAJAJ_0.5_13.55,What will the person do next?,0,Prediction_T1_1247,Prediction_T1,Take the picture.,Eat the medicine.,Tidy up the table.,Close the closet/cabinet.,Take the picture. 6088,VNVRA_0_6.475,What will the person do next?,3,Prediction_T1_1251,Prediction_T1,Take the book.,Sit on the table.,Take the food.,Put down the box.,Put down the box. 6089,P4DL9_0_26.8,What will the person do next?,0,Prediction_T1_1269,Prediction_T1,Take the phone/camera.,Close the door.,Close the refrigerator.,Throw the bag.,Take the phone/camera. 6090,OO4FE_0.1_12.375,What will the person do next?,3,Prediction_T1_1271,Prediction_T1,Wash the clothes.,Put down the cup/glass/bottle.,Take the food.,Take the book.,Take the book. 6091,52WDV_0.9_21.3,What will the person do next?,2,Prediction_T1_1272,Prediction_T1,Open the door.,Put down the pillow.,Open the book.,Put down the paper/notebook.,Open the book. 6092,AZFKK_0_11.375,What will the person do next?,1,Prediction_T1_1273,Prediction_T1,Put down the food.,Take the paper/notebook.,Lie on the bed.,Sit on the sofa/couch.,Take the paper/notebook. 6093,TK76G_0_12.100000000000001,What will the person do next?,3,Prediction_T1_1320,Prediction_T1,Take the clothes.,Lie on the floor.,Sit on the table.,Put down the towel.,Put down the towel. 6094,7SXQS_1_12.625,What will the person do next?,2,Prediction_T1_1331,Prediction_T1,Eat the sandwich.,Take the phone/camera.,Take the blanket.,Eat the medicine.,Take the blanket. 6095,FVITB_6.2_21.175,What will the person do next?,1,Prediction_T1_1366,Prediction_T1,Open the door.,Open the refrigerator.,Tidy up the towel.,Lie on the bed.,Open the refrigerator. 6096,FL6DF_6_15.875,What will the person do next?,1,Prediction_T1_1370,Prediction_T1,Throw the shoe.,Put down the laptop.,Put down the dish.,Open the bag.,Put down the laptop. 6097,FL6DF_3.2_10.15,What will the person do next?,2,Prediction_T1_1371,Prediction_T1,Take the picture.,Take the book.,Put down the blanket.,Sit on the floor.,Put down the blanket. 6098,ZS9XR_1.5_12.225,What will the person do next?,2,Prediction_T1_1377,Prediction_T1,Lie on the sofa/couch.,Sit on the sofa/couch.,Eat the medicine.,Open the book.,Eat the medicine. 6099,ZS9XR_1.3_25.8,What will the person do next?,0,Prediction_T1_1378,Prediction_T1,Put down the paper/notebook.,Put down the bag.,Sit on the bed.,Eat the sandwich.,Put down the paper/notebook. 6100,P4HXN_0.8_28.425,What will the person do next?,0,Prediction_T1_1400,Prediction_T1,Put down the laptop.,Put down the dish.,Sit on the floor.,Take the box.,Put down the laptop. 6101,I1OLQ_8.4_27.5,What will the person do next?,2,Prediction_T1_1408,Prediction_T1,Take the cup/glass/bottle.,Put down the broom.,Open the bag.,Lie on the sofa/couch.,Open the bag. 6102,NNG97_0.6_10.25,What will the person do next?,1,Prediction_T1_1419,Prediction_T1,Open the door.,Take the laptop.,Take the cup/glass/bottle.,Throw the food.,Take the laptop. 6103,9ZQ0R_8_19.55,What will the person do next?,1,Prediction_T1_1426,Prediction_T1,Open the closet/cabinet.,Put down the phone/camera.,Open the book.,Open the bag.,Put down the phone/camera. 6104,NKCXF_0_26.6,What will the person do next?,3,Prediction_T1_1427,Prediction_T1,Put down the clothes.,Wash the mirror.,Take the bag.,Put down the phone/camera.,Put down the phone/camera. 6105,RJCNV_3.2_13.625,What will the person do next?,3,Prediction_T1_1445,Prediction_T1,Sit on the floor.,Put down the cup/glass/bottle.,Take the book.,Open the book.,Open the book. 6106,Q3HZI_0_16.95,What will the person do next?,2,Prediction_T1_1452,Prediction_T1,Eat the sandwich.,Close the refrigerator.,Take the bag.,Sit on the sofa/couch.,Take the bag. 6107,BE51K_0_13.425,What will the person do next?,3,Prediction_T1_1456,Prediction_T1,Take the towel.,Open the laptop.,Wash the clothes.,Sit on the bed.,Sit on the bed. 6108,TPSUY_6.7_13.275,What will the person do next?,1,Prediction_T1_1465,Prediction_T1,Put down the box.,Tidy up the clothes.,Take the phone/camera.,Open the bag.,Tidy up the clothes. 6109,GLGQJ_0_23.150000000000002,What will the person do next?,2,Prediction_T1_1486,Prediction_T1,Take the pillow.,Lie on the bed.,Close the window.,Wash the cup/glass/bottle.,Close the window. 6110,TOOYI_0.5_13.925,What will the person do next?,0,Prediction_T1_1487,Prediction_T1,Close the box.,Take the phone/camera.,Put down the book.,Throw the clothes.,Close the box. 6111,T2J3M_9.2_23.599999999999998,What will the person do next?,2,Prediction_T1_1504,Prediction_T1,Tidy up the table.,Open the box.,Tidy up the closet/cabinet.,Hold the dish.,Tidy up the closet/cabinet. 6112,M52K2_1.7_40.725,What will the person do next?,3,Prediction_T1_1506,Prediction_T1,Close the closet/cabinet.,Tidy up the broom.,Throw the pillow.,Take the bag.,Take the bag. 6113,XLR4B_0.4_24.075,What will the person do next?,1,Prediction_T1_1507,Prediction_T1,Open the door.,Sit at the table.,Lie on the sofa/couch.,Throw the food.,Sit at the table. 6114,JCNHL_12.4_21.225,What will the person do next?,0,Prediction_T1_1511,Prediction_T1,Open the box.,Sit on the table.,Close the refrigerator.,Wash the cup/glass/bottle.,Open the box. 6115,QRWQ3_6_27.9,What will the person do next?,3,Prediction_T1_1545,Prediction_T1,Put down the shoe.,Open the book.,Take the shoe.,Open the box.,Open the box. 6116,AFTMI_13.5_33.675,What will the person do next?,1,Prediction_T1_1583,Prediction_T1,Tidy up the clothes.,Take the pillow.,Sit on the sofa/couch.,Throw the box.,Take the pillow. 6117,106AY_9.9_25.974999999999998,What will the person do next?,3,Prediction_T1_1600,Prediction_T1,Take the picture.,Sit on the sofa/couch.,Throw the clothes.,Put down the cup/glass/bottle.,Put down the cup/glass/bottle. 6118,5XKVP_0_9.125,What will the person do next?,2,Prediction_T1_1611,Prediction_T1,Open the closet/cabinet.,Wash the clothes.,Take the book.,Open the book.,Take the book. 6119,GTK8W_0_32.25,What will the person do next?,1,Prediction_T1_1621,Prediction_T1,Open the box.,Take the bag.,Wash the table.,Put down the dish.,Take the bag. 6120,VWAEL_6.2_26.15,What will the person do next?,1,Prediction_T1_1624,Prediction_T1,Eat the medicine.,Take the box.,Take the book.,Take the dish.,Take the box. 6121,8IPWO_1.8_30.125,What will the person do next?,2,Prediction_T1_1670,Prediction_T1,Take the clothes.,Take the food.,Close the book.,Throw the box.,Close the book. 6122,2ZXJ5_0_13.8,What will the person do next?,3,Prediction_T1_1672,Prediction_T1,Put down the bag.,Throw the bag.,Open the door.,Put down the pillow.,Put down the pillow. 6123,QJXNG_0_13.675,What will the person do next?,0,Prediction_T1_1690,Prediction_T1,Put down the bag.,Close the laptop.,Take the shoe.,Take the book.,Put down the bag. 6124,XPDI1_0_18.25,What will the person do next?,2,Prediction_T1_1723,Prediction_T1,Hold the box.,Take the book.,Take the dish.,Sit on the bed.,Take the dish. 6125,3B81O_19.7_29.950000000000003,What will the person do next?,2,Prediction_T1_1735,Prediction_T1,Take the food.,Close the door.,Close the window.,Open the window.,Close the window. 6126,4P13T_4.4_19.95,What will the person do next?,3,Prediction_T1_1766,Prediction_T1,Throw the pillow.,Wash the cup/glass/bottle.,Close the closet/cabinet.,Take the book.,Take the book. 6127,U0X4P_0_27.35,What will the person do next?,2,Prediction_T1_1773,Prediction_T1,Lie on the bed.,Put down the dish.,Throw the clothes.,Sit on the table.,Throw the clothes. 6128,G87XG_7.3_19.125,What will the person do next?,0,Prediction_T1_1784,Prediction_T1,Put down the book.,Wash the window.,Take the bag.,Take the phone/camera.,Put down the book. 6129,EBTD6_14.2_21.150000000000002,What will the person do next?,3,Prediction_T1_1790,Prediction_T1,Open the door.,Close the door.,Sit on the table.,Put down the sandwich.,Put down the sandwich. 6130,RCD08_6.7_25.7,What will the person do next?,0,Prediction_T1_1805,Prediction_T1,Throw the towel.,Take the paper/notebook.,Throw the box.,Wash the window.,Throw the towel. 6131,DH66I_3.5_30.825000000000003,What will the person do next?,1,Prediction_T1_1825,Prediction_T1,Take the box.,Open the bag.,Close the door.,Throw the towel.,Open the bag. 6132,BDWIX_8.6_17.4,What will the person do next?,2,Prediction_T1_1853,Prediction_T1,Take the phone/camera.,Open the bag.,Put down the blanket.,Throw the food.,Put down the blanket. 6133,SPUPH_0_9.325,What will the person do next?,2,Prediction_T1_1855,Prediction_T1,Tidy up the towel.,Hold the blanket.,Eat the sandwich.,Take the dish.,Eat the sandwich. 6134,92UB5_0_26.15,What will the person do next?,2,Prediction_T1_1870,Prediction_T1,Take the dish.,Put down the food.,Put down the pillow.,Sit on the floor.,Put down the pillow. 6135,DQEC3_0_13.075,What will the person do next?,3,Prediction_T1_1891,Prediction_T1,Close the box.,Put down the food.,Take the paper/notebook.,Open the bag.,Open the bag. 6136,NLWBW_0_7.3500000000000005,What will the person do next?,1,Prediction_T1_1896,Prediction_T1,Wash the cup/glass/bottle.,Take the bag.,Throw the pillow.,Take the food.,Take the bag. 6137,3064K_0_16.825,What will the person do next?,0,Prediction_T1_1901,Prediction_T1,Put down the sandwich.,Take the dish.,Wash the dish.,Close the laptop.,Put down the sandwich. 6138,8J723_0_28.299999999999997,What will the person do next?,0,Prediction_T1_1908,Prediction_T1,Open the window.,Put down the laptop.,Open the closet/cabinet.,Put down the book.,Open the window. 6139,HOZ76_15_24.25,What will the person do next?,0,Prediction_T1_1918,Prediction_T1,Open the book.,Close the closet/cabinet.,Put down the bag.,Put down the paper/notebook.,Open the book. 6140,EK19H_3.2_14.225,What will the person do next?,3,Prediction_T1_1920,Prediction_T1,Put down the phone/camera.,Take the pillow.,Hold the mirror.,Put down the sandwich.,Put down the sandwich. 6141,YCGJS_1.4_9.6,What will the person do next?,3,Prediction_T1_1939,Prediction_T1,Put down the box.,Open the window.,Open the refrigerator.,Sit at the table.,Sit at the table. 6142,I4N6K_14.6_21.525000000000002,What will the person do next?,3,Prediction_T1_1991,Prediction_T1,Take the broom.,Open the bag.,Take the cup/glass/bottle.,Put down the paper/notebook.,Put down the paper/notebook. 6143,9A58F_2.9_17.225,What will the person do next?,0,Prediction_T1_1992,Prediction_T1,Close the laptop.,Open the book.,Sit on the bed.,Put down the paper/notebook.,Close the laptop. 6144,P2UBC_0_17.525000000000002,What will the person do next?,2,Prediction_T1_2012,Prediction_T1,Lie on the sofa/couch.,Put down the bag.,Take the shoe.,Take the towel.,Take the shoe. 6145,75RPN_0.7_11.85,What will the person do next?,2,Prediction_T1_2030,Prediction_T1,Put down the cup/glass/bottle.,Tidy up the blanket.,Take the pillow.,Put down the dish.,Take the pillow. 6146,3CAPI_0_30.325000000000003,What will the person do next?,3,Prediction_T1_2046,Prediction_T1,Tidy up the broom.,Put down the clothes.,Put down the food.,Throw the blanket.,Throw the blanket. 6147,D8OSC_0_6.775,What will the person do next?,2,Prediction_T1_2049,Prediction_T1,Throw the food.,Take the box.,Put down the broom.,Close the closet/cabinet.,Put down the broom. 6148,M1GW9_3.8_16,What will the person do next?,2,Prediction_T1_2066,Prediction_T1,Put down the dish.,Take the food.,Throw the pillow.,Eat the medicine.,Throw the pillow. 6149,EO6OI_14.3_34.925,What will the person do next?,1,Prediction_T1_2074,Prediction_T1,Throw the clothes.,Take the broom.,Tidy up the clothes.,Sit at the table.,Take the broom. 6150,EO6OI_25.2_41.875,What will the person do next?,2,Prediction_T1_2075,Prediction_T1,Take the clothes.,Put down the clothes.,Put down the broom.,Put down the picture.,Put down the broom. 6151,8G9A9_8.6_23.475,What will the person do next?,2,Prediction_T1_2086,Prediction_T1,Take the box.,Take the laptop.,Close the laptop.,Open the closet/cabinet.,Close the laptop. 6152,A0ZW3_0_22.224999999999998,What will the person do next?,3,Prediction_T1_2098,Prediction_T1,Take the cup/glass/bottle.,Close the box.,Put down the cup/glass/bottle.,Open the laptop.,Open the laptop. 6153,L8Y8D_27.8_49.849999999999994,What will the person do next?,1,Prediction_T1_2102,Prediction_T1,Lie on the floor.,Close the refrigerator.,Open the box.,Take the book.,Close the refrigerator. 6154,6VF2L_14.3_26.35,What will the person do next?,2,Prediction_T1_2106,Prediction_T1,Open the window.,Take the food.,Put down the clothes.,Open the book.,Put down the clothes. 6155,JF36Q_0_26.799999999999997,What will the person do next?,0,Prediction_T1_2107,Prediction_T1,Close the laptop.,Put down the book.,Throw the clothes.,Lie on the sofa/couch.,Close the laptop. 6156,YVH4J_1.5_34.3,What will the person do next?,3,Prediction_T1_2135,Prediction_T1,Take the clothes.,Put down the picture.,Tidy up the blanket.,Open the bag.,Open the bag. 6157,O2OUX_7.8_14.6,What will the person do next?,2,Prediction_T1_2161,Prediction_T1,Put down the box.,Tidy up the blanket.,Close the laptop.,Put down the paper/notebook.,Close the laptop. 6158,RKGG5_0_14.7,What will the person do next?,0,Prediction_T1_2170,Prediction_T1,Lie on the sofa/couch.,Close the box.,Lie on the floor.,Hold the book.,Lie on the sofa/couch. 6159,55AH5_0_16.775,What will the person do next?,3,Prediction_T1_2217,Prediction_T1,Take the clothes.,Tidy up the clothes.,Take the bag.,Lie on the sofa/couch.,Lie on the sofa/couch. 6160,937EW_0_27,What will the person do next?,2,Prediction_T1_2218,Prediction_T1,Put down the cup/glass/bottle.,Open the bag.,Tidy up the closet/cabinet.,Put down the bag.,Tidy up the closet/cabinet. 6161,GPR89_0_52.55,What will the person do next?,1,Prediction_T1_2225,Prediction_T1,Close the closet/cabinet.,Put down the paper/notebook.,Take the dish.,Take the food.,Put down the paper/notebook. 6162,9OMY1_0_23.5,What will the person do next?,2,Prediction_T1_2233,Prediction_T1,Close the window.,Close the refrigerator.,Sit on the sofa/couch.,Open the closet/cabinet.,Sit on the sofa/couch. 6163,OE751_0_19.75,What will the person do next?,2,Prediction_T1_2244,Prediction_T1,Take the cup/glass/bottle.,Open the box.,Take the blanket.,Eat the sandwich.,Take the blanket. 6164,MC6J7_0_10.3,What will the person do next?,0,Prediction_T1_2246,Prediction_T1,Take the clothes.,Close the door.,Tidy up the table.,Wash the clothes.,Take the clothes. 6165,2GQDN_7.1_23.65,What will the person do next?,2,Prediction_T1_2255,Prediction_T1,Put down the cup/glass/bottle.,Take the cup/glass/bottle.,Eat the sandwich.,Open the closet/cabinet.,Eat the sandwich. 6166,RBC8N_2.5_18.599999999999998,What will the person do next?,1,Prediction_T1_2262,Prediction_T1,Close the book.,Take the pillow.,Put down the picture.,Close the box.,Take the pillow. 6167,B7LO8_2.9_15.625,What will the person do next?,3,Prediction_T1_2269,Prediction_T1,Hold the laptop.,Take the box.,Close the door.,Take the phone/camera.,Take the phone/camera. 6168,Q6WH2_0_31.125,What will the person do next?,0,Prediction_T1_2307,Prediction_T1,Open the book.,Wash the clothes.,Close the refrigerator.,Throw the food.,Open the book. 6169,7ZCXJ_0_23.15,What will the person do next?,2,Prediction_T1_2319,Prediction_T1,Take the bag.,Hold the box.,Throw the blanket.,Sit on the sofa/couch.,Throw the blanket. 6170,5ZDNU_4.1_17.925,What will the person do next?,2,Prediction_T1_2353,Prediction_T1,Put down the pillow.,Tidy up the clothes.,Take the box.,Put down the dish.,Take the box. 6171,B69CF_0_15.65,What will the person do next?,0,Prediction_T1_2417,Prediction_T1,Close the window.,Take the towel.,Take the shoe.,Take the food.,Close the window. 6172,MY5CQ_0_15.4,What will the person do next?,3,Prediction_T1_2426,Prediction_T1,Tidy up the blanket.,Throw the shoe.,Take the dish.,Open the book.,Open the book. 6173,BJXRT_4.1_18.525000000000002,What will the person do next?,3,Prediction_T1_2458,Prediction_T1,Close the door.,Close the closet/cabinet.,Tidy up the table.,Take the dish.,Take the dish. 6174,U3ANG_0.4_28.175,What will the person do next?,3,Prediction_T1_2462,Prediction_T1,Throw the book.,Take the towel.,Close the door.,Put down the book.,Put down the book. 6175,3DO95_0_21.875,What will the person do next?,0,Prediction_T1_2474,Prediction_T1,Take the book.,Eat the sandwich.,Open the door.,Throw the blanket.,Take the book. 6176,3ND23_1.4_12.4,What will the person do next?,2,Prediction_T1_2475,Prediction_T1,Eat the sandwich.,Take the box.,Put down the blanket.,Put down the bag.,Put down the blanket. 6177,27JQL_6.4_19.3,What will the person do next?,3,Prediction_T1_2487,Prediction_T1,Open the door.,Take the shoe.,Take the book.,Eat the sandwich.,Eat the sandwich. 6178,MDG2T_0_17.3,What will the person do next?,2,Prediction_T1_2498,Prediction_T1,Wash the mirror.,Close the box.,Put down the towel.,Open the door.,Put down the towel. 6179,MDG2T_0_17.225,What will the person do next?,0,Prediction_T1_2499,Prediction_T1,Throw the towel.,Put down the phone/camera.,Take the shoe.,Wash the dish.,Throw the towel. 6180,IHSRC_0_20.45,What will the person do next?,0,Prediction_T1_2502,Prediction_T1,Take the picture.,Put down the phone/camera.,Hold the box.,Take the blanket.,Take the picture. 6181,84893_0_9.675,What will the person do next?,3,Prediction_T1_2503,Prediction_T1,Take the shoe.,Lie on the floor.,Close the box.,Tidy up the blanket.,Tidy up the blanket. 6182,TCN06_0_13.925,What will the person do next?,1,Prediction_T1_2507,Prediction_T1,Wash the table.,Tidy up the blanket.,Put down the pillow.,Open the laptop.,Tidy up the blanket. 6183,WV9FZ_3.4_24.75,What will the person do next?,3,Prediction_T1_2519,Prediction_T1,Close the laptop.,Eat the sandwich.,Put down the bag.,Sit at the table.,Sit at the table. 6184,J8JOQ_0_29.825000000000003,What will the person do next?,3,Prediction_T1_2524,Prediction_T1,Hold the phone/camera.,Throw the box.,Open the door.,Put down the phone/camera.,Put down the phone/camera. 6185,ZZ89F_0_15.35,What will the person do next?,2,Prediction_T1_2530,Prediction_T1,Put down the broom.,Put down the blanket.,Close the refrigerator.,Put down the bag.,Close the refrigerator. 6186,Z6HEA_0_10.875,What will the person do next?,0,Prediction_T1_2539,Prediction_T1,Sit on the floor.,Open the bag.,Lie on the bed.,Tidy up the table.,Sit on the floor. 6187,HA02S_0_33.05,What will the person do next?,2,Prediction_T1_2568,Prediction_T1,Hold the broom.,Throw the blanket.,Put down the broom.,Open the bag.,Put down the broom. 6188,DBT6E_8.6_24.3,What will the person do next?,3,Prediction_T1_2580,Prediction_T1,Put down the phone/camera.,Throw the bag.,Put down the food.,Open the laptop.,Open the laptop. 6189,VS5IY_4.3_13.825000000000001,What will the person do next?,2,Prediction_T1_2592,Prediction_T1,Lie on the sofa/couch.,Throw the clothes.,Take the clothes.,Close the closet/cabinet.,Take the clothes. 6190,74DPG_5.7_35.95,What will the person do next?,3,Prediction_T1_2593,Prediction_T1,Put down the food.,Close the closet/cabinet.,Eat the medicine.,Put down the dish.,Put down the dish. 6191,TVCQF_4.7_13.25,What will the person do next?,2,Prediction_T1_2598,Prediction_T1,Wash the window.,Throw the clothes.,Open the box.,Put down the book.,Open the box. 6192,LLOGB_0_10.049999999999999,What will the person do next?,1,Prediction_T1_2604,Prediction_T1,Throw the blanket.,Take the phone/camera.,Close the door.,Open the closet/cabinet.,Take the phone/camera. 6193,NV4FC_15.7_22.65,What will the person do next?,3,Prediction_T1_2610,Prediction_T1,Sit on the bed.,Sit on the sofa/couch.,Throw the blanket.,Take the paper/notebook.,Take the paper/notebook. 6194,NV4FC_5.5_17.1,What will the person do next?,0,Prediction_T1_2611,Prediction_T1,Throw the shoe.,Sit on the bed.,Lie on the sofa/couch.,Put down the dish.,Throw the shoe. 6195,AJTDO_0_21.925,What will the person do next?,3,Prediction_T1_2615,Prediction_T1,Tidy up the clothes.,Eat the sandwich.,Put down the phone/camera.,Throw the pillow.,Throw the pillow. 6196,AJTDO_0_11.375,What will the person do next?,0,Prediction_T1_2616,Prediction_T1,Put down the pillow.,Open the door.,Take the book.,Open the closet/cabinet.,Put down the pillow. 6197,M7BD4_13.9_21.7,What will the person do next?,1,Prediction_T1_2653,Prediction_T1,Put down the towel.,Close the laptop.,Close the door.,Hold the book.,Close the laptop. 6198,ZOL0R_0.1_10.825,What will the person do next?,2,Prediction_T1_2697,Prediction_T1,Close the laptop.,Sit on the table.,Throw the clothes.,Take the dish.,Throw the clothes. 6199,UEP20_0_19.099999999999998,What will the person do next?,0,Prediction_T1_2712,Prediction_T1,Take the sandwich.,Put down the blanket.,Take the cup/glass/bottle.,Eat the sandwich.,Take the sandwich. 6200,UEP20_4.1_16.725,What will the person do next?,2,Prediction_T1_2715,Prediction_T1,Throw the box.,Take the bag.,Lie on the bed.,Sit on the floor.,Lie on the bed. 6201,5X5DT_0_15.524999999999999,What will the person do next?,3,Prediction_T1_2718,Prediction_T1,Take the clothes.,Take the dish.,Hold the picture.,Take the bag.,Take the bag. 6202,F9YMU_0_13.05,What will the person do next?,0,Prediction_T1_2729,Prediction_T1,Take the paper/notebook.,Take the cup/glass/bottle.,Eat the sandwich.,Open the window.,Take the paper/notebook. 6203,XZ9C0_0_16.075,What will the person do next?,1,Prediction_T1_2730,Prediction_T1,Wash the window.,Take the laptop.,Close the box.,Eat the medicine.,Take the laptop. 6204,LY10X_0_25.975,What will the person do next?,2,Prediction_T1_2735,Prediction_T1,Open the door.,Close the refrigerator.,Eat the medicine.,Close the closet/cabinet.,Eat the medicine. 6205,3XKBC_6.8_21.125,What will the person do next?,0,Prediction_T1_2737,Prediction_T1,Open the laptop.,Lie on the sofa/couch.,Close the box.,Take the phone/camera.,Open the laptop. 6206,OEE36_25.9_38.900000000000006,What will the person do next?,3,Prediction_T1_2739,Prediction_T1,Wash the table.,Eat the medicine.,Throw the shoe.,Take the blanket.,Take the blanket. 6207,L9J5I_0_11.075,What will the person do next?,3,Prediction_T1_2761,Prediction_T1,Put down the blanket.,Lie on the sofa/couch.,Take the clothes.,Take the paper/notebook.,Take the paper/notebook. 6208,PZD7Z_0_11.525,What will the person do next?,2,Prediction_T1_2763,Prediction_T1,Put down the pillow.,Lie on the floor.,Put down the broom.,Take the phone/camera.,Put down the broom. 6209,MA15X_21.8_67.275,What will the person do next?,3,Prediction_T1_2773,Prediction_T1,Open the book.,Take the blanket.,Wash the mirror.,Throw the blanket.,Throw the blanket. 6210,V54TI_0_12.05,What will the person do next?,2,Prediction_T1_2775,Prediction_T1,Lie on the bed.,Close the window.,Take the pillow.,Open the door.,Take the pillow. 6211,0BZAD_7.5_25.825000000000003,What will the person do next?,1,Prediction_T1_2778,Prediction_T1,Put down the shoe.,Take the food.,Close the door.,Put down the cup/glass/bottle.,Take the food. 6212,CJ58B_0_21.025,What will the person do next?,3,Prediction_T1_2781,Prediction_T1,Open the box.,Take the book.,Tidy up the broom.,Put down the bag.,Put down the bag. 6213,B8PQL_0.8_9.25,What will the person do next?,1,Prediction_T1_2785,Prediction_T1,Take the bag.,Wash the window.,Tidy up the blanket.,Sit on the sofa/couch.,Wash the window. 6214,Z6LYG_10.8_37.724999999999994,What will the person do next?,0,Prediction_T1_2790,Prediction_T1,Close the refrigerator.,Open the refrigerator.,Throw the clothes.,Close the closet/cabinet.,Close the refrigerator. 6215,0QES3_0_14.95,What will the person do next?,2,Prediction_T1_2799,Prediction_T1,Put down the cup/glass/bottle.,Sit at the table.,Close the door.,Eat the medicine.,Close the door. 6216,ACJBD_13.7_30.325,What will the person do next?,0,Prediction_T1_2812,Prediction_T1,Put down the blanket.,Take the phone/camera.,Throw the towel.,Lie on the sofa/couch.,Put down the blanket. 6217,CCCUJ_8.6_26.5,What will the person do next?,3,Prediction_T1_2827,Prediction_T1,Take the dish.,Wash the window.,Wash the cup/glass/bottle.,Put down the laptop.,Put down the laptop. 6218,BI31D_1.2_10.725000000000001,What will the person do next?,2,Prediction_T1_2834,Prediction_T1,Lie on the sofa/couch.,Open the door.,Sit on the bed.,Close the laptop.,Sit on the bed. 6219,3ZC4Y_0_19.125,What will the person do next?,0,Prediction_T1_2844,Prediction_T1,Close the refrigerator.,Take the book.,Open the bag.,Tidy up the blanket.,Close the refrigerator. 6220,8UCK1_1.7_10,What will the person do next with the closet/cabinet?,0,Prediction_T2_19,Prediction_T2,Close.,Put down.,Open.,Tidy up.,Close. 6221,NUKJ0_11_21.2,What will the person do next with the book?,2,Prediction_T2_22,Prediction_T2,Put down.,Take.,Close.,Open.,Close. 6222,6CAZU_0_11.975,What will the person do next with the sandwich?,3,Prediction_T2_43,Prediction_T2,Put down.,Eat.,Lie on.,Take.,Take. 6223,ATV2F_0_8.95,What will the person do next with the blanket?,2,Prediction_T2_59,Prediction_T2,Tidy up.,Sit on.,Put down.,Take.,Put down. 6224,V0ZD9_0.5_24.75,What will the person do next with the clothes?,3,Prediction_T2_75,Prediction_T2,Put down.,Throw.,Tidy up.,Take.,Take. 6225,9MNZ5_21.1_42.6,What will the person do next with the book?,0,Prediction_T2_95,Prediction_T2,Open.,Take.,Throw.,Put down.,Open. 6226,15PMU_0.9_16.925,What will the person do next with the clothes?,0,Prediction_T2_104,Prediction_T2,Put down.,Take.,Throw.,Wash.,Put down. 6227,6ZWSU_0_13.65,What will the person do next with the shoe?,3,Prediction_T2_105,Prediction_T2,Throw.,Wash.,Take.,Put down.,Put down. 6228,OQ54Y_13.4_27.725,What will the person do next with the table?,2,Prediction_T2_129,Prediction_T2,Wash.,Tidy up.,Sit at.,Take.,Sit at. 6229,136V6_13.9_24.075,What will the person do next with the book?,1,Prediction_T2_131,Prediction_T2,Put down.,Close.,Take.,Throw.,Close. 6230,NTXXB_0_12.625,What will the person do next with the phone/camera?,0,Prediction_T2_162,Prediction_T2,Take.,Hold.,Put down.,Eat.,Take. 6231,9YOI8_14.8_26.025000000000002,What will the person do next with the window?,1,Prediction_T2_179,Prediction_T2,Sit on.,Close.,Wash.,Open.,Close. 6232,NG1Q8_0_27.675,What will the person do next with the closet/cabinet?,0,Prediction_T2_180,Prediction_T2,Close.,Throw.,Tidy up.,Open.,Close. 6233,337O2_0_16.275,What will the person do next with the clothes?,3,Prediction_T2_185,Prediction_T2,Take.,Lie on.,Wash.,Throw.,Throw. 6234,M6ERH_11.6_30.75,What will the person do next with the table?,1,Prediction_T2_187,Prediction_T2,Wash.,Sit at.,Tidy up.,Throw.,Sit at. 6235,31LW5_0_5.574999999999999,What will the person do next with the bed?,2,Prediction_T2_191,Prediction_T2,Eat.,Take.,Lie on.,Sit on.,Lie on. 6236,727IZ_10_16.075,What will the person do next with the table?,1,Prediction_T2_206,Prediction_T2,Close.,Sit at.,Tidy up.,Wash.,Sit at. 6237,W0XPU_0.3_19.05,What will the person do next with the sandwich?,2,Prediction_T2_213,Prediction_T2,Eat.,Put down.,Take.,Wash.,Take. 6238,5INX3_0_34.6,What will the person do next with the clothes?,3,Prediction_T2_230,Prediction_T2,Wash.,Tidy up.,Throw.,Take.,Take. 6239,V3SOF_20.5_34.1,What will the person do next with the refrigerator?,2,Prediction_T2_240,Prediction_T2,Put down.,Open.,Close.,Throw.,Close. 6240,S673O_0_26.15,What will the person do next with the sandwich?,3,Prediction_T2_281,Prediction_T2,Hold.,Put down.,Take.,Eat.,Eat. 6241,EDVAM_0_11.649999999999999,What will the person do next with the window?,2,Prediction_T2_289,Prediction_T2,Open.,Wash.,Close.,Lie on.,Close. 6242,WOD0G_0_15.85,What will the person do next with the clothes?,2,Prediction_T2_310,Prediction_T2,Tidy up.,Take.,Throw.,Put down.,Throw. 6243,JOLLV_0_12.425,What will the person do next with the refrigerator?,1,Prediction_T2_320,Prediction_T2,Wash.,Open.,Eat.,Close.,Open. 6244,432NL_13.6_26.825000000000003,What will the person do next with the medicine?,3,Prediction_T2_370,Prediction_T2,Lie on.,Tidy up.,Hold.,Eat.,Eat. 6245,OUAIS_0_24.575000000000003,What will the person do next with the pillow?,3,Prediction_T2_376,Prediction_T2,Put down.,Take.,Close.,Throw.,Throw. 6246,NVBBD_0_12.25,What will the person do next with the shoe?,3,Prediction_T2_379,Prediction_T2,Sit on.,Take.,Throw.,Put down.,Put down. 6247,2LCLG_11_19.4,What will the person do next with the bag?,1,Prediction_T2_381,Prediction_T2,Put down.,Throw.,Open.,Take.,Throw. 6248,KX8VW_0_14.5,What will the person do next with the cup/glass/bottle?,1,Prediction_T2_394,Prediction_T2,Take.,Put down.,Wash.,Lie on.,Put down. 6249,43FG9_0_5.550000000000001,What will the person do next with the towel?,1,Prediction_T2_429,Prediction_T2,Take.,Throw.,Put down.,Tidy up.,Throw. 6250,N2GFQ_14_34.8,What will the person do next with the sofa/couch?,3,Prediction_T2_439,Prediction_T2,Take.,Sit on.,Tidy up.,Lie on.,Lie on. 6251,AWITI_0_11.4,What will the person do next with the pillow?,2,Prediction_T2_445,Prediction_T2,Put down.,Hold.,Take.,Throw.,Take. 6252,9BCZU_0_22.725,What will the person do next with the clothes?,1,Prediction_T2_450,Prediction_T2,Put down.,Take.,Throw.,Sit at.,Take. 6253,J6TVB_0_13,What will the person do next with the dish?,1,Prediction_T2_466,Prediction_T2,Wash.,Put down.,Hold.,Take.,Put down. 6254,ZAJAJ_12.2_25.35,What will the person do next with the laptop?,1,Prediction_T2_476,Prediction_T2,Hold.,Open.,Take.,Put down.,Open. 6255,52WDV_0.9_21.3,What will the person do next with the book?,1,Prediction_T2_489,Prediction_T2,Put down.,Open.,Throw.,Take.,Open. 6256,IUOC0_11.1_23.9,What will the person do next with the sandwich?,2,Prediction_T2_509,Prediction_T2,Close.,Put down.,Eat.,Take.,Eat. 6257,3IRHH_14.6_23.25,What will the person do next with the book?,0,Prediction_T2_516,Prediction_T2,Open.,Take.,Hold.,Put down.,Open. 6258,7SXQS_1_12.625,What will the person do next with the blanket?,3,Prediction_T2_520,Prediction_T2,Tidy up.,Hold.,Put down.,Take.,Take. 6259,ZS9XR_1.5_12.225,What will the person do next with the medicine?,2,Prediction_T2_541,Prediction_T2,Put down.,Hold.,Eat.,Lie on.,Eat. 6260,BGQIF_1.6_33.6,What will the person do next with the food?,1,Prediction_T2_548,Prediction_T2,Open.,Put down.,Throw.,Take.,Put down. 6261,NNG97_0.6_10.25,What will the person do next with the laptop?,0,Prediction_T2_559,Prediction_T2,Take.,Put down.,Open.,Lie on.,Take. 6262,BE51K_0_13.425,What will the person do next with the bed?,2,Prediction_T2_587,Prediction_T2,Lie on.,Wash.,Sit on.,Open.,Sit on. 6263,GLGQJ_0_23.150000000000002,What will the person do next with the window?,0,Prediction_T2_594,Prediction_T2,Close.,Open.,Wash.,Eat.,Close. 6264,TOOYI_0.5_13.925,What will the person do next with the box?,0,Prediction_T2_595,Prediction_T2,Close.,Put down.,Take.,Sit on.,Close. 6265,XLR4B_0.4_24.075,What will the person do next with the table?,2,Prediction_T2_605,Prediction_T2,Take.,Tidy up.,Sit at.,Wash.,Sit at. 6266,03M0K_0_9.1,What will the person do next with the laptop?,2,Prediction_T2_631,Prediction_T2,Take.,Put down.,Open.,Hold.,Open. 6267,AFTMI_13.5_33.675,What will the person do next with the pillow?,3,Prediction_T2_638,Prediction_T2,Throw.,Put down.,Wash.,Take.,Take. 6268,IFQS1_0.4_9.85,What will the person do next with the blanket?,3,Prediction_T2_639,Prediction_T2,Throw.,Hold.,Tidy up.,Put down.,Put down. 6269,GMMVC_0_12.049999999999999,What will the person do next with the book?,0,Prediction_T2_653,Prediction_T2,Close.,Put down.,Throw.,Take.,Close. 6270,ATNBT_0_29.049999999999997,What will the person do next with the floor?,2,Prediction_T2_762,Prediction_T2,Put down.,Lie on.,Sit on.,Eat.,Sit on. 6271,92UB5_0_26.15,What will the person do next with the pillow?,2,Prediction_T2_766,Prediction_T2,Tidy up.,Throw.,Put down.,Take.,Put down. 6272,DQEC3_0_13.075,What will the person do next with the bag?,3,Prediction_T2_775,Prediction_T2,Take.,Throw.,Put down.,Open.,Open. 6273,D7KU2_0_9.3,What will the person do next with the broom?,0,Prediction_T2_779,Prediction_T2,Put down.,Throw.,Hold.,Take.,Put down. 6274,8J723_0_28.299999999999997,What will the person do next with the window?,0,Prediction_T2_786,Prediction_T2,Open.,Close.,Throw.,Wash.,Open. 6275,3MLVF_16.1_29.525,What will the person do next with the cup/glass/bottle?,2,Prediction_T2_787,Prediction_T2,Take.,Eat.,Put down.,Wash.,Put down. 6276,0F453_0.3_13.55,What will the person do next with the paper/notebook?,3,Prediction_T2_816,Prediction_T2,Tidy up.,Put down.,Eat.,Take.,Take. 6277,R9382_13.4_22.549999999999997,What will the person do next with the sandwich?,1,Prediction_T2_875,Prediction_T2,Hold.,Eat.,Put down.,Take.,Eat. 6278,A0ZW3_0_22.224999999999998,What will the person do next with the laptop?,2,Prediction_T2_877,Prediction_T2,Take.,Close.,Open.,Put down.,Open. 6279,JF36Q_0_26.799999999999997,What will the person do next with the laptop?,3,Prediction_T2_881,Prediction_T2,Take.,Hold.,Open.,Close.,Close. 6280,KFC28_0_30.65,What will the person do next with the closet/cabinet?,0,Prediction_T2_894,Prediction_T2,Close.,Tidy up.,Throw.,Open.,Close. 6281,YVH4J_1.5_34.3,What will the person do next with the bag?,1,Prediction_T2_895,Prediction_T2,Take.,Open.,Throw.,Put down.,Open. 6282,8DL54_0_16.825,What will the person do next with the refrigerator?,3,Prediction_T2_896,Prediction_T2,Sit on.,Close.,Lie on.,Open.,Open. 6283,AXS82_13.7_26.575000000000003,What will the person do next with the refrigerator?,0,Prediction_T2_921,Prediction_T2,Open.,Wash.,Put down.,Close.,Open. 6284,6KIA4_0_19.125,What will the person do next with the table?,1,Prediction_T2_924,Prediction_T2,Tidy up.,Wash.,Lie on.,Sit on.,Wash. 6285,55AH5_0_16.775,What will the person do next with the sofa/couch?,3,Prediction_T2_934,Prediction_T2,Sit on.,Take.,Eat.,Lie on.,Lie on. 6286,9OMY1_0_23.5,What will the person do next with the sofa/couch?,3,Prediction_T2_939,Prediction_T2,Put down.,Lie on.,Throw.,Sit on.,Sit on. 6287,QPX3S_0_7.65,What will the person do next with the food?,3,Prediction_T2_953,Prediction_T2,Hold.,Throw.,Take.,Put down.,Put down. 6288,B69CF_0_15.65,What will the person do next with the window?,1,Prediction_T2_1034,Prediction_T2,Eat.,Close.,Wash.,Open.,Close. 6289,MY5CQ_0_15.4,What will the person do next with the book?,2,Prediction_T2_1039,Prediction_T2,Put down.,Take.,Open.,Close.,Open. 6290,3DO95_0_21.875,What will the person do next with the book?,2,Prediction_T2_1058,Prediction_T2,Throw.,Put down.,Take.,Open.,Take. 6291,3ND23_1.4_12.4,What will the person do next with the blanket?,3,Prediction_T2_1059,Prediction_T2,Sit at.,Throw.,Tidy up.,Put down.,Put down. 6292,9207X_1.1_11.125,What will the person do next with the closet/cabinet?,3,Prediction_T2_1069,Prediction_T2,Wash.,Close.,Tidy up.,Open.,Open. 6293,IHSRC_0_20.45,What will the person do next with the picture?,1,Prediction_T2_1071,Prediction_T2,Eat.,Take.,Put down.,Close.,Take. 6294,84893_0_9.675,What will the person do next with the blanket?,3,Prediction_T2_1072,Prediction_T2,Put down.,Throw.,Lie on.,Tidy up.,Tidy up. 6295,TCN06_0_13.925,What will the person do next with the blanket?,1,Prediction_T2_1074,Prediction_T2,Put down.,Tidy up.,Hold.,Take.,Tidy up. 6296,JY6TC_0_12.049999999999999,What will the person do next with the cup/glass/bottle?,1,Prediction_T2_1087,Prediction_T2,Wash.,Take.,Put down.,Lie on.,Take. 6297,Z6HEA_0_10.875,What will the person do next with the floor?,1,Prediction_T2_1089,Prediction_T2,Take.,Sit on.,Lie on.,Close.,Sit on. 6298,KFI7N_0_6.625,What will the person do next with the broom?,0,Prediction_T2_1100,Prediction_T2,Throw.,Put down.,Tidy up.,Take.,Throw. 6299,6ALEL_10.6_20.075,What will the person do next with the food?,3,Prediction_T2_1112,Prediction_T2,Put down.,Eat.,Throw.,Take.,Take. 6300,9O0HH_1.5_24.925,What will the person do next with the food?,0,Prediction_T2_1127,Prediction_T2,Put down.,Hold.,Take.,Throw.,Put down. 6301,E7Q3R_0_7,What will the person do next with the cup/glass/bottle?,0,Prediction_T2_1132,Prediction_T2,Put down.,Wash.,Close.,Take.,Put down. 6302,9632M_2.3_27.950000000000003,What will the person do next with the towel?,1,Prediction_T2_1146,Prediction_T2,Tidy up.,Take.,Throw.,Put down.,Take. 6303,UDGP2_0_16.65,What will the person do next with the food?,1,Prediction_T2_1147,Prediction_T2,Hold.,Put down.,Take.,Throw.,Put down. 6304,UEP20_0_11.625,What will the person do next with the book?,0,Prediction_T2_1168,Prediction_T2,Close.,Put down.,Throw.,Hold.,Close. 6305,5X5DT_0_15.524999999999999,What will the person do next with the bag?,0,Prediction_T2_1170,Prediction_T2,Take.,Throw.,Open.,Put down.,Take. 6306,VKXLL_16.9_23.725,What will the person do next with the box?,2,Prediction_T2_1174,Prediction_T2,Close.,Throw.,Open.,Take.,Open. 6307,LY10X_0_25.975,What will the person do next with the medicine?,2,Prediction_T2_1179,Prediction_T2,Lie on.,Hold.,Eat.,Open.,Eat. 6308,MA15X_21.8_67.275,What will the person do next with the blanket?,3,Prediction_T2_1194,Prediction_T2,Tidy up.,Take.,Put down.,Throw.,Throw. 6309,Z6LYG_10.8_37.724999999999994,What will the person do next with the refrigerator?,0,Prediction_T2_1200,Prediction_T2,Close.,Eat.,Open.,Sit on.,Close. 6310,ACJBD_13.7_30.325,What will the person do next with the blanket?,0,Prediction_T2_1208,Prediction_T2,Put down.,Take.,Hold.,Throw.,Put down. 6311,EG1XK_13.9_26,What will the person do next with the door?,1,Prediction_T2_1210,Prediction_T2,Close.,Open.,Throw.,Take.,Open. 6312,BI31D_1.2_10.725000000000001,What will the person do next with the bed?,2,Prediction_T2_1222,Prediction_T2,Put down.,Throw.,Sit on.,Lie on.,Sit on. 6313,Z97SD_0_19.6,What will the person do next with the refrigerator?,3,Prediction_T2_1227,Prediction_T2,Take.,Lie on.,Close.,Open.,Open. 6314,2MJ72_0.6_12.5,What will the person do next with the door?,0,Prediction_T2_1230,Prediction_T2,Close.,Lie on.,Open.,Wash.,Close. 6315,D1WYU_0_5.4,Which object would the person throw next?,1,Prediction_T3_36,Prediction_T3,The clothes.,The bag.,The blanket.,The pillow.,The bag. 6316,NJANX_3_16.625,Which object would the person wash next?,0,Prediction_T3_55,Prediction_T3,The table.,The clothes.,The dish.,The mirror.,The table. 6317,NYHD7_0_15.775,Which object would the person take next?,1,Prediction_T3_70,Prediction_T3,The picture.,The phone/camera.,The laptop.,The food.,The phone/camera. 6318,9MNZ5_21.1_37.6,Which object would the person open next?,0,Prediction_T3_82,Prediction_T3,The book.,The box.,The closet/cabinet.,The refrigerator.,The book. 6319,ZNQVC_8.9_22.5,Which object would the person take next?,1,Prediction_T3_94,Prediction_T3,The food.,The shoe.,The cup/glass/bottle.,The bag.,The shoe. 6320,OQ54Y_13.4_25.475,Which object would the person sit at next?,1,Prediction_T3_123,Prediction_T3,The sofa/couch.,The table.,The refrigerator.,The bed.,The table. 6321,OQ54Y_3.1_12.200000000000001,Which object would the person open next?,2,Prediction_T3_124,Prediction_T3,The door.,The bag.,The refrigerator.,The box.,The refrigerator. 6322,2BO2G_18.5_26.7,Which object would the person put down next?,2,Prediction_T3_147,Prediction_T3,The laptop.,The box.,The picture.,The towel.,The picture. 6323,Z7KC1_0_20.5,Which object would the person take next?,0,Prediction_T3_162,Prediction_T3,The broom.,The towel.,The food.,The sandwich.,The broom. 6324,65UVU_0_4.049999999999999,Which object would the person put down next?,0,Prediction_T3_163,Prediction_T3,The box.,The sandwich.,The dish.,The clothes.,The box. 6325,4BEZX_15.8_34.125,Which object would the person throw next?,0,Prediction_T3_169,Prediction_T3,The towel.,The clothes.,The door.,The box.,The towel. 6326,9YOI8_14.8_23.175,Which object would the person close next?,2,Prediction_T3_173,Prediction_T3,The door.,The closet/cabinet.,The window.,The refrigerator.,The window. 6327,HOYUT_7.1_14.475,Which object would the person take next?,1,Prediction_T3_174,Prediction_T3,The cup/glass/bottle.,The towel.,The broom.,The clothes.,The towel. 6328,7TA23_6.6_12.9,Which object would the person put down next?,0,Prediction_T3_178,Prediction_T3,The shoe.,The sandwich.,The box.,The towel.,The shoe. 6329,M6ERH_11.6_29.25,Which object would the person sit at next?,2,Prediction_T3_183,Prediction_T3,The sofa/couch.,The floor.,The table.,The food.,The table. 6330,727IZ_11.2_16,Which object would the person put down next?,1,Prediction_T3_192,Prediction_T3,The clothes.,The paper/notebook.,The closet/cabinet.,The food.,The paper/notebook. 6331,727IZ_10_13.725,Which object would the person sit at next?,1,Prediction_T3_193,Prediction_T3,The closet/cabinet.,The table.,The sofa/couch.,The floor.,The table. 6332,VS7VS_3.1_15.625000000000002,Which object would the person throw next?,2,Prediction_T3_219,Prediction_T3,The clothes.,The box.,The book.,The blanket.,The book. 6333,V3SOF_20.5_30.9,Which object would the person close next?,3,Prediction_T3_230,Prediction_T3,The cup/glass/bottle.,The door.,The closet/cabinet.,The refrigerator.,The refrigerator. 6334,UYZKX_2.9_19.775,Which object would the person throw next?,1,Prediction_T3_262,Prediction_T3,The pillow.,The blanket.,The clothes.,The box.,The blanket. 6335,K9UXS_0_19.75,Which object would the person tidy up next?,3,Prediction_T3_269,Prediction_T3,The table.,The clothes.,The towel.,The blanket.,The blanket. 6336,1FIGA_9.6_13.45,Which object would the person put down next?,1,Prediction_T3_286,Prediction_T3,The dish.,The book.,The cup/glass/bottle.,The sandwich.,The book. 6337,R0207_6.1_27.025,Which object would the person put down next?,2,Prediction_T3_309,Prediction_T3,The clothes.,The towel.,The sandwich.,The bag.,The sandwich. 6338,C5BMA_13.9_27.5,Which object would the person throw next?,1,Prediction_T3_317,Prediction_T3,The clothes.,The food.,The pillow.,The bag.,The food. 6339,NM65M_4.3_10.9,Which object would the person throw next?,2,Prediction_T3_326,Prediction_T3,The shoe.,The clothes.,The blanket.,The broom.,The blanket. 6340,NVGDG_0_11.925,Which object would the person take next?,2,Prediction_T3_330,Prediction_T3,The towel.,The book.,The blanket.,The cup/glass/bottle.,The blanket. 6341,NEM29_4_16.875,Which object would the person open next?,2,Prediction_T3_332,Prediction_T3,The book.,The closet/cabinet.,The bag.,The laptop.,The bag. 6342,8LAK1_4.4_25.75,Which object would the person take next?,3,Prediction_T3_340,Prediction_T3,The bag.,The laptop.,The broom.,The shoe.,The shoe. 6343,E6PSM_3.9_21.924999999999997,Which object would the person throw next?,1,Prediction_T3_362,Prediction_T3,The shoe.,The box.,The blanket.,The broom.,The box. 6344,IO712_0_5.175,Which object would the person open next?,0,Prediction_T3_369,Prediction_T3,The book.,The refrigerator.,The closet/cabinet.,The box.,The book. 6345,432NL_13.6_23.375,Which object would the person eat next?,3,Prediction_T3_396,Prediction_T3,The sandwich.,The refrigerator.,The pillow.,The medicine.,The medicine. 6346,D6D85_0_16.9,Which object would the person eat next?,1,Prediction_T3_406,Prediction_T3,The phone/camera.,The sandwich.,The medicine.,The door.,The sandwich. 6347,U6L1X_0_18.6,Which object would the person put down next?,3,Prediction_T3_407,Prediction_T3,The paper/notebook.,The book.,The blanket.,The broom.,The broom. 6348,HFW6H_29.6_35.074999999999996,Which object would the person throw next?,0,Prediction_T3_435,Prediction_T3,The clothes.,The shoe.,The box.,The bag.,The clothes. 6349,0Z36L_17.2_27.875,Which object would the person put down next?,1,Prediction_T3_441,Prediction_T3,The picture.,The bag.,The dish.,The clothes.,The bag. 6350,C6LW1_0_18.174999999999997,Which object would the person put down next?,2,Prediction_T3_443,Prediction_T3,The picture.,The dish.,The phone/camera.,The cup/glass/bottle.,The phone/camera. 6351,JBJGX_12.2_22.875,Which object would the person open next?,1,Prediction_T3_451,Prediction_T3,The closet/cabinet.,The laptop.,The box.,The window.,The laptop. 6352,WLA52_0.6_14,Which object would the person put down next?,0,Prediction_T3_456,Prediction_T3,The blanket.,The cup/glass/bottle.,The bag.,The clothes.,The blanket. 6353,9BCZU_0_19.875,Which object would the person take next?,1,Prediction_T3_461,Prediction_T3,The bag.,The clothes.,The sandwich.,The blanket.,The clothes. 6354,9PXC0_0_9.224999999999998,Which object would the person open next?,3,Prediction_T3_463,Prediction_T3,The bag.,The closet/cabinet.,The book.,The box.,The box. 6355,FETME_7.4_12.400000000000002,Which object would the person close next?,2,Prediction_T3_473,Prediction_T3,The refrigerator.,The door.,The book.,The closet/cabinet.,The book. 6356,M704T_5.1_16.575,Which object would the person throw next?,3,Prediction_T3_474,Prediction_T3,The clothes.,The bag.,The broom.,The towel.,The towel. 6357,M704T_4.9_9.6,Which object would the person take next?,0,Prediction_T3_475,Prediction_T3,The towel.,The phone/camera.,The food.,The clothes.,The towel. 6358,ZAJAJ_12.2_22.85,Which object would the person open next?,1,Prediction_T3_488,Prediction_T3,The closet/cabinet.,The laptop.,The refrigerator.,The book.,The laptop. 6359,VNVRA_0_4.125,Which object would the person put down next?,1,Prediction_T3_490,Prediction_T3,The clothes.,The box.,The sandwich.,The dish.,The box. 6360,K87AC_0.7_11.224999999999998,Which object would the person take next?,3,Prediction_T3_494,Prediction_T3,The sandwich.,The towel.,The cup/glass/bottle.,The clothes.,The clothes. 6361,ABHC6_0_9.200000000000001,Which object would the person take next?,0,Prediction_T3_495,Prediction_T3,The clothes.,The bag.,The phone/camera.,The towel.,The clothes. 6362,6TV29_1.8_36.125,Which object would the person close next?,2,Prediction_T3_505,Prediction_T3,The box.,The window.,The door.,The laptop.,The door. 6363,IUOC0_11.1_20.5,Which object would the person eat next?,1,Prediction_T3_514,Prediction_T3,The window.,The sandwich.,The medicine.,The bed.,The sandwich. 6364,ZS9XR_1.3_20.8,Which object would the person put down next?,0,Prediction_T3_540,Prediction_T3,The paper/notebook.,The towel.,The dish.,The bag.,The paper/notebook. 6365,P4HXN_0.8_25.175,Which object would the person put down next?,0,Prediction_T3_543,Prediction_T3,The laptop.,The food.,The phone/camera.,The clothes.,The laptop. 6366,I1OLQ_8.4_24.5,Which object would the person open next?,1,Prediction_T3_548,Prediction_T3,The refrigerator.,The bag.,The closet/cabinet.,The door.,The bag. 6367,GBMNT_0_8.25,Which object would the person take next?,3,Prediction_T3_580,Prediction_T3,The dish.,The towel.,The food.,The bag.,The bag. 6368,GLGQJ_0_19.05,Which object would the person close next?,1,Prediction_T3_586,Prediction_T3,The door.,The window.,The book.,The closet/cabinet.,The window. 6369,TOOYI_0.5_10.474999999999998,Which object would the person close next?,2,Prediction_T3_587,Prediction_T3,The laptop.,The closet/cabinet.,The box.,The refrigerator.,The box. 6370,T2J3M_9.2_21.2,Which object would the person tidy up next?,3,Prediction_T3_597,Prediction_T3,The blanket.,The broom.,The table.,The closet/cabinet.,The closet/cabinet. 6371,M52K2_1.7_37.475,Which object would the person take next?,1,Prediction_T3_599,Prediction_T3,The cup/glass/bottle.,The bag.,The clothes.,The blanket.,The bag. 6372,XLR4B_0.4_19.525000000000002,Which object would the person sit at next?,3,Prediction_T3_600,Prediction_T3,The floor.,The bed.,The sofa/couch.,The table.,The table. 6373,03M0K_0_5.9,Which object would the person open next?,2,Prediction_T3_620,Prediction_T3,The window.,The closet/cabinet.,The laptop.,The door.,The laptop. 6374,6B93R_6.8_27.775,Which object would the person take next?,2,Prediction_T3_628,Prediction_T3,The phone/camera.,The bag.,The cup/glass/bottle.,The pillow.,The cup/glass/bottle. 6375,XPDI1_0_15.75,Which object would the person take next?,1,Prediction_T3_683,Prediction_T3,The book.,The dish.,The phone/camera.,The laptop.,The dish. 6376,G87XG_7.3_16.875,Which object would the person put down next?,0,Prediction_T3_706,Prediction_T3,The book.,The phone/camera.,The towel.,The cup/glass/bottle.,The book. 6377,EBTD6_14.2_18.05,Which object would the person put down next?,0,Prediction_T3_710,Prediction_T3,The sandwich.,The towel.,The door.,The book.,The sandwich. 6378,RCD08_6.7_22.7,Which object would the person throw next?,0,Prediction_T3_719,Prediction_T3,The towel.,The clothes.,The bag.,The food.,The towel. 6379,DH66I_3.5_29.375,Which object would the person open next?,2,Prediction_T3_727,Prediction_T3,The laptop.,The refrigerator.,The bag.,The book.,The bag. 6380,9K2TY_0_26.25,Which object would the person throw next?,2,Prediction_T3_737,Prediction_T3,The blanket.,The shoe.,The towel.,The clothes.,The towel. 6381,DQEC3_0_10.325,Which object would the person open next?,2,Prediction_T3_762,Prediction_T3,The door.,The closet/cabinet.,The bag.,The box.,The bag. 6382,EK19H_3.2_11.975,Which object would the person put down next?,2,Prediction_T3_782,Prediction_T3,The clothes.,The pillow.,The sandwich.,The dish.,The sandwich. 6383,FRLW2_8.6_24.125,Which object would the person throw next?,1,Prediction_T3_783,Prediction_T3,The clothes.,The shoe.,The blanket.,The bag.,The shoe. 6384,EXPOA_12.3_22.075000000000003,Which object would the person take next?,2,Prediction_T3_794,Prediction_T3,The towel.,The sandwich.,The clothes.,The paper/notebook.,The clothes. 6385,9A58F_2.9_14.575000000000001,Which object would the person close next?,3,Prediction_T3_810,Prediction_T3,The door.,The closet/cabinet.,The refrigerator.,The laptop.,The laptop. 6386,P2UBC_0_14.675,Which object would the person take next?,2,Prediction_T3_819,Prediction_T3,The bag.,The clothes.,The shoe.,The blanket.,The shoe. 6387,75RPN_0.7_8.549999999999999,Which object would the person take next?,2,Prediction_T3_829,Prediction_T3,The food.,The paper/notebook.,The pillow.,The cup/glass/bottle.,The pillow. 6388,D8OSC_0_4.025,Which object would the person put down next?,3,Prediction_T3_842,Prediction_T3,The clothes.,The cup/glass/bottle.,The towel.,The broom.,The broom. 6389,M1GW9_3.8_11,Which object would the person throw next?,2,Prediction_T3_848,Prediction_T3,The bag.,The clothes.,The pillow.,The blanket.,The pillow. 6390,EO6OI_25.2_39.325,Which object would the person put down next?,3,Prediction_T3_853,Prediction_T3,The clothes.,The picture.,The cup/glass/bottle.,The broom.,The broom. 6391,R9382_13.4_18.25,Which object would the person eat next?,2,Prediction_T3_866,Prediction_T3,The book.,The medicine.,The sandwich.,The refrigerator.,The sandwich. 6392,A0ZW3_0_19.575,Which object would the person open next?,3,Prediction_T3_867,Prediction_T3,The window.,The book.,The box.,The laptop.,The laptop. 6393,CSLEP_0_4.949999999999999,Which object would the person take next?,3,Prediction_T3_881,Prediction_T3,The box.,The laptop.,The food.,The clothes.,The clothes. 6394,J84TZ_0_9.5,Which object would the person take next?,1,Prediction_T3_887,Prediction_T3,The cup/glass/bottle.,The blanket.,The food.,The laptop.,The blanket. 6395,O2OUX_7.8_12.4,Which object would the person close next?,0,Prediction_T3_889,Prediction_T3,The laptop.,The window.,The door.,The refrigerator.,The laptop. 6396,RKGG5_0_10.5,Which object would the person lie on next?,1,Prediction_T3_895,Prediction_T3,The bed.,The sofa/couch.,The floor.,The clothes.,The sofa/couch. 6397,6KIA4_0_15.875,Which object would the person wash next?,0,Prediction_T3_902,Prediction_T3,The table.,The picture.,The cup/glass/bottle.,The clothes.,The table. 6398,J4RPL_16.5_22.375,Which object would the person throw next?,0,Prediction_T3_904,Prediction_T3,The towel.,The food.,The clothes.,The paper/notebook.,The towel. 6399,55AH5_0_13.424999999999999,Which object would the person lie on next?,1,Prediction_T3_917,Prediction_T3,The floor.,The sofa/couch.,The bed.,The book.,The sofa/couch. 6400,GPR89_0_49.650000000000006,Which object would the person put down next?,3,Prediction_T3_920,Prediction_T3,The laptop.,The cup/glass/bottle.,The dish.,The paper/notebook.,The paper/notebook. 6401,M1TZR_2.7_20.325000000000003,Which object would the person put down next?,3,Prediction_T3_945,Prediction_T3,The laptop.,The clothes.,The dish.,The sandwich.,The sandwich. 6402,5O31N_2.1_29.625,Which object would the person put down next?,2,Prediction_T3_988,Prediction_T3,The cup/glass/bottle.,The bag.,The clothes.,The laptop.,The clothes. 6403,S1J2Q_4.4_20.775000000000002,Which object would the person close next?,3,Prediction_T3_1022,Prediction_T3,The book.,The closet/cabinet.,The box.,The refrigerator.,The refrigerator. 6404,ZOMM2_18.4_24.625,Which object would the person eat next?,0,Prediction_T3_1030,Prediction_T3,The sandwich.,The towel.,The blanket.,The medicine.,The sandwich. 6405,TAGEG_0_12.049999999999999,Which object would the person open next?,1,Prediction_T3_1037,Prediction_T3,The bag.,The closet/cabinet.,The window.,The box.,The closet/cabinet. 6406,WV9FZ_3.4_21.25,Which object would the person sit at next?,3,Prediction_T3_1040,Prediction_T3,The bed.,The sofa/couch.,The floor.,The table.,The table. 6407,J8JOQ_0_28.375,Which object would the person put down next?,3,Prediction_T3_1042,Prediction_T3,The pillow.,The bag.,The clothes.,The phone/camera.,The phone/camera. 6408,BZD0Q_3.7_9.8,Which object would the person put down next?,3,Prediction_T3_1050,Prediction_T3,The pillow.,The blanket.,The food.,The cup/glass/bottle.,The cup/glass/bottle. 6409,HA02S_0_29.75,Which object would the person put down next?,2,Prediction_T3_1053,Prediction_T3,The blanket.,The laptop.,The broom.,The pillow.,The broom. 6410,TVCQF_4.7_10.75,Which object would the person open next?,0,Prediction_T3_1066,Prediction_T3,The box.,The bag.,The book.,The door.,The box. 6411,NV4FC_5.5_14.299999999999999,Which object would the person throw next?,1,Prediction_T3_1071,Prediction_T3,The blanket.,The shoe.,The bed.,The clothes.,The shoe. 6412,AJTDO_0_19.675,Which object would the person throw next?,3,Prediction_T3_1072,Prediction_T3,The shoe.,The broom.,The towel.,The pillow.,The pillow. 6413,AJTDO_0_6.625,Which object would the person put down next?,0,Prediction_T3_1073,Prediction_T3,The pillow.,The towel.,The cup/glass/bottle.,The food.,The pillow. 6414,9O0HH_1.5_21.275000000000002,Which object would the person put down next?,0,Prediction_T3_1078,Prediction_T3,The food.,The clothes.,The cup/glass/bottle.,The towel.,The food. 6415,UDGRS_0_18.424999999999997,Which object would the person put down next?,3,Prediction_T3_1084,Prediction_T3,The food.,The box.,The clothes.,The phone/camera.,The phone/camera. 6416,M7BD4_13.9_18.7,Which object would the person close next?,1,Prediction_T3_1089,Prediction_T3,The closet/cabinet.,The laptop.,The refrigerator.,The book.,The laptop. 6417,OK2AF_0_21.25,Which object would the person take next?,0,Prediction_T3_1118,Prediction_T3,The book.,The food.,The bag.,The cup/glass/bottle.,The book. 6418,VKXLL_16.9_20.475,Which object would the person open next?,0,Prediction_T3_1127,Prediction_T3,The box.,The pillow.,The bag.,The door.,The box. 6419,LY10X_0_22.225,Which object would the person eat next?,1,Prediction_T3_1129,Prediction_T3,The book.,The medicine.,The sandwich.,The phone/camera.,The medicine. 6420,1333C_4.9_18.075000000000003,Which object would the person put down next?,3,Prediction_T3_1135,Prediction_T3,The broom.,The pillow.,The cup/glass/bottle.,The dish.,The dish. 6421,L9J5I_0_7.324999999999999,Which object would the person take next?,2,Prediction_T3_1138,Prediction_T3,The phone/camera.,The towel.,The paper/notebook.,The food.,The paper/notebook. 6422,MA15X_21.8_64.125,Which object would the person throw next?,2,Prediction_T3_1145,Prediction_T3,The bag.,The clothes.,The blanket.,The shoe.,The blanket. 6423,V54TI_0_7.95,Which object would the person take next?,1,Prediction_T3_1146,Prediction_T3,The blanket.,The pillow.,The phone/camera.,The paper/notebook.,The pillow. 6424,0BZAD_7.5_22.375,Which object would the person take next?,0,Prediction_T3_1148,Prediction_T3,The food.,The cup/glass/bottle.,The laptop.,The sandwich.,The food. 6425,8DSGI_2.4_11.75,Which object would the person open next?,3,Prediction_T3_1155,Prediction_T3,The box.,The bag.,The laptop.,The book.,The book. 6426,1E7VU_3.5_10.375,Which object would the person close next?,0,Prediction_T3_1163,Prediction_T3,The closet/cabinet.,The refrigerator.,The window.,The door.,The closet/cabinet. 6427,L9ANI_0_5.8999999999999995,Which object would the person take next?,2,Prediction_T3_1171,Prediction_T3,The sandwich.,The dish.,The towel.,The bag.,The towel. 6428,3ZC4Y_0_15.274999999999999,Which object would the person close next?,2,Prediction_T3_1179,Prediction_T3,The closet/cabinet.,The door.,The refrigerator.,The box.,The refrigerator. 6429,Z97SD_15.2_23.700000000000003,Which object would the person close next?,2,Prediction_T3_1181,Prediction_T3,The window.,The closet/cabinet.,The refrigerator.,The box.,The refrigerator. 6430,6H78U_11.8_21.7,Which object would the person take next after they hold the clothes?,2,Prediction_T4_1,Prediction_T4,The phone/camera.,The shoe.,The towel.,The paper/notebook.,The towel. 6431,6H78U_14.7_21.7,Which object would the person take next after they put down the clothes?,3,Prediction_T4_2,Prediction_T4,The book.,The bag.,The phone/camera.,The towel.,The towel. 6432,6H78U_11.5_21.7,Which object would the person take next after they put down the blanket?,2,Prediction_T4_3,Prediction_T4,The cup/glass/bottle.,The dish.,The towel.,The clothes.,The towel. 6433,Y79PC_0.3_18.325,Which object would the person throw next after they watch outside the window?,1,Prediction_T4_10,Prediction_T4,The food.,The clothes.,The pillow.,The blanket.,The clothes. 6434,OY3LS_18.5_30.85,Which object would the person put down next after they throw the clothes?,0,Prediction_T4_19,Prediction_T4,The phone/camera.,The pillow.,The laptop.,The bag.,The phone/camera. 6435,D1WYU_0_9,Which object would the person throw next after they walk through the doorway?,2,Prediction_T4_62,Prediction_T4,The shoe.,The blanket.,The bag.,The clothes.,The bag. 6436,A2X7Q_3_13,Which object would the person put down next after they open the closet/cabinet?,0,Prediction_T4_78,Prediction_T4,The sandwich.,The broom.,The phone/camera.,The shoe.,The sandwich. 6437,A2X7Q_5.5_13,Which object would the person put down next after they take the bag?,1,Prediction_T4_79,Prediction_T4,The paper/notebook.,The sandwich.,The laptop.,The blanket.,The sandwich. 6438,NJANX_3_18.775,Which object would the person wash next after they put down the box?,2,Prediction_T4_93,Prediction_T4,The door.,The clothes.,The table.,The blanket.,The table. 6439,NJANX_2.4_18.775,Which object would the person wash next after they take the box?,1,Prediction_T4_94,Prediction_T4,The cup/glass/bottle.,The table.,The dish.,The medicine.,The table. 6440,C1DK7_4.2_18.225,Which object would the person put down next after they close the laptop?,0,Prediction_T4_103,Prediction_T4,The phone/camera.,The clothes.,The box.,The book.,The phone/camera. 6441,YHXU9_14.7_20.725,Which object would the person throw next after they tidy up the clothes?,2,Prediction_T4_115,Prediction_T4,The bag.,The blanket.,The book.,The pillow.,The book. 6442,NYHD7_0_20.225,Which object would the person take next after they sit at the table?,1,Prediction_T4_123,Prediction_T4,The pillow.,The phone/camera.,The food.,The cup/glass/bottle.,The phone/camera. 6443,9MNZ5_21.1_42.6,Which object would the person open next after they close the box?,2,Prediction_T4_147,Prediction_T4,The door.,The bag.,The book.,The refrigerator.,The book. 6444,U5T4M_8.9_16.05,Which object would the person eat next after they close the refrigerator?,0,Prediction_T4_168,Prediction_T4,The sandwich.,The paper/notebook.,The bag.,The medicine.,The sandwich. 6445,U5T4M_7_15.3,Which object would the person sit at next after they take the food?,0,Prediction_T4_169,Prediction_T4,The table.,The floor.,The bed.,The sofa/couch.,The table. 6446,15PMU_0.9_16.925,Which object would the person put down next after they watch outside the window?,0,Prediction_T4_178,Prediction_T4,The clothes.,The paper/notebook.,The broom.,The dish.,The clothes. 6447,OQ54Y_3.1_14.6,Which object would the person open next after they close the door?,3,Prediction_T4_226,Prediction_T4,The table.,The box.,The laptop.,The refrigerator.,The refrigerator. 6448,OQ54Y_1.2_14.6,Which object would the person open next after they take the food?,3,Prediction_T4_227,Prediction_T4,The book.,The bag.,The laptop.,The refrigerator.,The refrigerator. 6449,2BO2G_18.5_30.3,Which object would the person put down next after they hold the box?,0,Prediction_T4_255,Prediction_T4,The picture.,The clothes.,The blanket.,The phone/camera.,The picture. 6450,2BO2G_19.2_30.3,Which object would the person put down next after they put the groceries?,3,Prediction_T4_256,Prediction_T4,The towel.,The clothes.,The dish.,The picture.,The picture. 6451,0PVKV_3_19.85,Which object would the person put down next after they eat the sandwich?,2,Prediction_T4_264,Prediction_T4,The towel.,The food.,The cup/glass/bottle.,The dish.,The cup/glass/bottle. 6452,Z7KC1_0_24.700000000000003,Which object would the person take next after they sit at the table?,1,Prediction_T4_283,Prediction_T4,The towel.,The broom.,The dish.,The book.,The broom. 6453,Z7KC1_0_24.700000000000003,Which object would the person take next after they sit on the chair?,3,Prediction_T4_284,Prediction_T4,The clothes.,The phone/camera.,The pillow.,The broom.,The broom. 6454,65UVU_0_6.15,Which object would the person put down next after they open the door?,1,Prediction_T4_285,Prediction_T4,The pillow.,The box.,The dish.,The clothes.,The box. 6455,XKU2U_0_19.625,Which object would the person take next after they wash the mirror?,3,Prediction_T4_298,Prediction_T4,The sandwich.,The clothes.,The food.,The bag.,The bag. 6456,9YOI8_14.8_26.025000000000002,Which object would the person close next after they drink from the cup/glass/bottle?,2,Prediction_T4_303,Prediction_T4,The door.,The box.,The window.,The laptop.,The window. 6457,9YOI8_0_26.025000000000002,Which object would the person close next after they walk through the doorway?,0,Prediction_T4_304,Prediction_T4,The window.,The book.,The closet/cabinet.,The door.,The window. 6458,HOYUT_7.1_16.725,Which object would the person take next after they hold the clothes?,2,Prediction_T4_305,Prediction_T4,The picture.,The cup/glass/bottle.,The towel.,The food.,The towel. 6459,7TA23_6.6_16.3,Which object would the person put down next after they throw the clothes?,2,Prediction_T4_310,Prediction_T4,The book.,The phone/camera.,The shoe.,The cup/glass/bottle.,The shoe. 6460,M6ERH_11.6_30.75,Which object would the person sit at next after they put down the food?,1,Prediction_T4_320,Prediction_T4,The sofa/couch.,The table.,The floor.,The bed.,The table. 6461,727IZ_11.2_18.200000000000003,Which object would the person put down next after they close the door?,3,Prediction_T4_346,Prediction_T4,The phone/camera.,The picture.,The box.,The paper/notebook.,The paper/notebook. 6462,727IZ_10_16.075,Which object would the person sit at next after they close the closet/cabinet?,2,Prediction_T4_347,Prediction_T4,The sofa/couch.,The bed.,The table.,The floor.,The table. 6463,YACA8_3.4_17.9,Which object would the person take next after they put down the clothes?,3,Prediction_T4_401,Prediction_T4,The food.,The sandwich.,The towel.,The shoe.,The shoe. 6464,VS7VS_3.1_19.575000000000003,Which object would the person throw next after they take the paper/notebook?,1,Prediction_T4_402,Prediction_T4,The bag.,The book.,The pillow.,The box.,The book. 6465,V3SOF_20.5_34.1,Which object would the person close next after they open the door?,1,Prediction_T4_417,Prediction_T4,The book.,The refrigerator.,The closet/cabinet.,The laptop.,The refrigerator. 6466,RQRRD_5.9_18.25,Which object would the person throw next after they open the box?,1,Prediction_T4_453,Prediction_T4,The food.,The clothes.,The bag.,The shoe.,The clothes. 6467,RQRRD_0_6.8500000000000005,Which object would the person take next after they walk through the doorway?,0,Prediction_T4_454,Prediction_T4,The clothes.,The laptop.,The food.,The pillow.,The clothes. 6468,UYZKX_2.9_22.625,Which object would the person throw next after they grasp onto the doorknob?,1,Prediction_T4_476,Prediction_T4,The book.,The blanket.,The clothes.,The box.,The blanket. 6469,UYZKX_3.9_22.625,Which object would the person throw next after they open the closet/cabinet?,1,Prediction_T4_478,Prediction_T4,The box.,The blanket.,The pillow.,The clothes.,The blanket. 6470,K9UXS_0_24.25,Which object would the person tidy up next after they hold the clothes?,1,Prediction_T4_491,Prediction_T4,The broom.,The blanket.,The table.,The closet/cabinet.,The blanket. 6471,K9UXS_0_24.25,Which object would the person tidy up next after they take the clothes?,3,Prediction_T4_492,Prediction_T4,The table.,The closet/cabinet.,The broom.,The blanket.,The blanket. 6472,1FIGA_9.6_17.55,Which object would the person put down next after they close the box?,0,Prediction_T4_516,Prediction_T4,The book.,The pillow.,The broom.,The cup/glass/bottle.,The book. 6473,1FIGA_8.4_17.55,Which object would the person put down next after they open the box?,0,Prediction_T4_517,Prediction_T4,The book.,The phone/camera.,The cup/glass/bottle.,The clothes.,The book. 6474,DWHPO_1.3_17.1,Which object would the person put down next after they take the food?,1,Prediction_T4_529,Prediction_T4,The dish.,The phone/camera.,The box.,The bag.,The phone/camera. 6475,R0207_6.1_29.775,Which object would the person put down next after they take the food?,3,Prediction_T4_549,Prediction_T4,The blanket.,The clothes.,The bag.,The sandwich.,The sandwich. 6476,C5BMA_13.9_30.1,Which object would the person throw next after they eat the sandwich?,1,Prediction_T4_560,Prediction_T4,The book.,The food.,The pillow.,The towel.,The food. 6477,NM65M_4.3_13.299999999999999,Which object would the person throw next after they take the pillow?,2,Prediction_T4_570,Prediction_T4,The bag.,The clothes.,The blanket.,The broom.,The blanket. 6478,NVGDG_0_14.075,Which object would the person take next after they lie on the sofa/couch?,1,Prediction_T4_574,Prediction_T4,The bag.,The blanket.,The phone/camera.,The clothes.,The blanket. 6479,OA9W5_0_7.949999999999999,Which object would the person put down next after they take the food?,3,Prediction_T4_580,Prediction_T4,The paper/notebook.,The shoe.,The phone/camera.,The sandwich.,The sandwich. 6480,E6PSM_3.9_24.475,Which object would the person throw next after they walk through the doorway?,3,Prediction_T4_619,Prediction_T4,The towel.,The bag.,The blanket.,The box.,The box. 6481,E6PSM_5.8_24.475,Which object would the person throw next after they close the door?,2,Prediction_T4_620,Prediction_T4,The book.,The shoe.,The box.,The clothes.,The box. 6482,E6PSM_0.9_24.475,Which object would the person throw next after they open the door?,0,Prediction_T4_621,Prediction_T4,The box.,The clothes.,The shoe.,The pillow.,The box. 6483,AZMVM_13.9_20.875,Which object would the person put down next after they throw the clothes?,1,Prediction_T4_626,Prediction_T4,The box.,The pillow.,The food.,The shoe.,The pillow. 6484,IO712_0_8.825,Which object would the person open next after they close the window?,3,Prediction_T4_634,Prediction_T4,The bag.,The door.,The closet/cabinet.,The book.,The book. 6485,KVYOZ_0_4.25,Which object would the person take next after they sit on the floor?,1,Prediction_T4_645,Prediction_T4,The shoe.,The cup/glass/bottle.,The dish.,The paper/notebook.,The cup/glass/bottle. 6486,432NL_13.6_26.825000000000003,Which object would the person eat next after they close the refrigerator?,0,Prediction_T4_674,Prediction_T4,The medicine.,The food.,The floor.,The sandwich.,The medicine. 6487,432NL_4.5_26.825000000000003,Which object would the person eat next after they take the food?,2,Prediction_T4_675,Prediction_T4,The door.,The sofa/couch.,The medicine.,The sandwich.,The medicine. 6488,D6D85_0_21.1,Which object would the person eat next after they hold the food?,1,Prediction_T4_686,Prediction_T4,The medicine.,The sandwich.,The cup/glass/bottle.,The picture.,The sandwich. 6489,U6L1X_0_21,Which object would the person put down next after they turn on the light?,3,Prediction_T4_687,Prediction_T4,The sandwich.,The laptop.,The food.,The broom.,The broom. 6490,5MF9Y_1.3_20.85,Which object would the person take next after they hold the broom?,0,Prediction_T4_719,Prediction_T4,The food.,The sandwich.,The cup/glass/bottle.,The picture.,The food. 6491,HFW6H_29.6_37.725,Which object would the person throw next after they put down the cup/glass/bottle?,3,Prediction_T4_732,Prediction_T4,The pillow.,The blanket.,The shoe.,The clothes.,The clothes. 6492,ANA5N_4.6_16.05,Which object would the person open next after they close the door?,2,Prediction_T4_739,Prediction_T4,The book.,The bag.,The closet/cabinet.,The clothes.,The closet/cabinet. 6493,0Z36L_17.2_29.525,Which object would the person put down next after they grasp onto the doorknob?,0,Prediction_T4_740,Prediction_T4,The bag.,The towel.,The cup/glass/bottle.,The phone/camera.,The bag. 6494,C6LW1_0_20.625,Which object would the person put down next after they watch outside the window?,2,Prediction_T4_743,Prediction_T4,The cup/glass/bottle.,The towel.,The phone/camera.,The food.,The phone/camera. 6495,JBJGX_12.2_26.325000000000003,Which object would the person open next after they take the clothes?,1,Prediction_T4_754,Prediction_T4,The bag.,The laptop.,The door.,The box.,The laptop. 6496,WLA52_0.6_17.6,Which object would the person put down next after they take the clothes?,1,Prediction_T4_761,Prediction_T4,The laptop.,The blanket.,The sandwich.,The picture.,The blanket. 6497,WLA52_1.3_20.5,Which object would the person take next after they hold the clothes?,2,Prediction_T4_762,Prediction_T4,The blanket.,The phone/camera.,The broom.,The book.,The broom. 6498,FETME_7.4_15.2,Which object would the person close next after they take the paper/notebook?,1,Prediction_T4_783,Prediction_T4,The laptop.,The book.,The refrigerator.,The bed.,The book. 6499,VNVRA_0_6.475,Which object would the person put down next after they open the closet/cabinet?,3,Prediction_T4_810,Prediction_T4,The cup/glass/bottle.,The food.,The towel.,The box.,The box. 6500,K87AC_0.7_14.175,Which object would the person take next after they close the door?,3,Prediction_T4_815,Prediction_T4,The towel.,The shoe.,The laptop.,The clothes.,The clothes. 6501,ABHC6_0_11.6,Which object would the person take next after they walk through the doorway?,3,Prediction_T4_816,Prediction_T4,The food.,The sandwich.,The laptop.,The clothes.,The clothes. 6502,ABHC6_3_11.6,Which object would the person take next after they open the closet/cabinet?,1,Prediction_T4_817,Prediction_T4,The box.,The clothes.,The cup/glass/bottle.,The bag.,The clothes. 6503,IUOC0_11.1_23.9,Which object would the person eat next after they close the door?,1,Prediction_T4_838,Prediction_T4,The pillow.,The sandwich.,The table.,The medicine.,The sandwich. 6504,TK76G_0_12.100000000000001,Which object would the person put down next after they take the food?,1,Prediction_T4_845,Prediction_T4,The clothes.,The towel.,The book.,The bag.,The towel. 6505,ZS9XR_1.3_25.8,Which object would the person put down next after they sit on the sofa/couch?,2,Prediction_T4_877,Prediction_T4,The food.,The cup/glass/bottle.,The paper/notebook.,The box.,The paper/notebook. 6506,P4HXN_0.8_28.425,Which object would the person put down next after they wash the clothes?,3,Prediction_T4_881,Prediction_T4,The cup/glass/bottle.,The shoe.,The dish.,The laptop.,The laptop. 6507,I1OLQ_8.4_27.5,Which object would the person open next after they close the door?,0,Prediction_T4_888,Prediction_T4,The bag.,The laptop.,The refrigerator.,The closet/cabinet.,The bag. 6508,I1OLQ_6.4_27.5,Which object would the person open next after they walk through the doorway?,0,Prediction_T4_889,Prediction_T4,The bag.,The refrigerator.,The closet/cabinet.,The book.,The bag. 6509,TPSUY_6.7_13.275,Which object would the person tidy up next after they throw the broom?,0,Prediction_T4_925,Prediction_T4,The clothes.,The closet/cabinet.,The towel.,The table.,The clothes. 6510,TPSUY_0_13.275,Which object would the person tidy up next after they hold the broom?,1,Prediction_T4_926,Prediction_T4,The table.,The clothes.,The towel.,The blanket.,The clothes. 6511,GBMNT_0_11.95,Which object would the person take next after they walk through the doorway?,3,Prediction_T4_934,Prediction_T4,The paper/notebook.,The shoe.,The food.,The bag.,The bag. 6512,GLGQJ_0_23.150000000000002,Which object would the person close next after they wash the cup/glass/bottle?,1,Prediction_T4_950,Prediction_T4,The refrigerator.,The window.,The door.,The laptop.,The window. 6513,TOOYI_0.5_13.925,Which object would the person close next after they take the blanket?,1,Prediction_T4_951,Prediction_T4,The paper/notebook.,The box.,The book.,The door.,The box. 6514,TOOYI_1.6_13.925,Which object would the person close next after they put down the blanket?,0,Prediction_T4_952,Prediction_T4,The box.,The refrigerator.,The laptop.,The closet/cabinet.,The box. 6515,TOOYI_0.7_13.925,Which object would the person close next after they hold the blanket?,3,Prediction_T4_953,Prediction_T4,The closet/cabinet.,The sofa/couch.,The door.,The box.,The box. 6516,T2J3M_9.2_23.599999999999998,Which object would the person tidy up next after they open the door?,0,Prediction_T4_968,Prediction_T4,The closet/cabinet.,The blanket.,The table.,The clothes.,The closet/cabinet. 6517,T2J3M_12_23.599999999999998,Which object would the person tidy up next after they walk through the doorway?,0,Prediction_T4_969,Prediction_T4,The closet/cabinet.,The table.,The broom.,The blanket.,The closet/cabinet. 6518,T2J3M_7.9_23.599999999999998,Which object would the person tidy up next after they grasp onto the doorknob?,2,Prediction_T4_970,Prediction_T4,The table.,The clothes.,The closet/cabinet.,The towel.,The closet/cabinet. 6519,T2J3M_5.9_23.599999999999998,Which object would the person tidy up next after they hold the clothes?,2,Prediction_T4_971,Prediction_T4,The broom.,The blanket.,The closet/cabinet.,The towel.,The closet/cabinet. 6520,XLR4B_0.4_24.075,Which object would the person sit at next after they hold the food?,3,Prediction_T4_973,Prediction_T4,The sofa/couch.,The floor.,The bed.,The table.,The table. 6521,03M0K_0_9.1,Which object would the person open next after they sit on the chair?,0,Prediction_T4_1007,Prediction_T4,The laptop.,The closet/cabinet.,The bag.,The book.,The laptop. 6522,6B93R_6.8_30.225,Which object would the person take next after they put down the food?,2,Prediction_T4_1017,Prediction_T4,The clothes.,The shoe.,The cup/glass/bottle.,The broom.,The cup/glass/bottle. 6523,F5TL0_8.8_18.3,Which object would the person take next after they close the refrigerator?,0,Prediction_T4_1018,Prediction_T4,The cup/glass/bottle.,The paper/notebook.,The clothes.,The box.,The cup/glass/bottle. 6524,GTK8W_23.5_32.25,Which object would the person take next after they watch outside the window?,0,Prediction_T4_1033,Prediction_T4,The bag.,The blanket.,The paper/notebook.,The shoe.,The bag. 6525,XPDI1_0_18.25,Which object would the person take next after they drink from the cup/glass/bottle?,2,Prediction_T4_1104,Prediction_T4,The bag.,The shoe.,The dish.,The pillow.,The dish. 6526,XPDI1_0_18.25,Which object would the person take next after they put down the cup/glass/bottle?,3,Prediction_T4_1105,Prediction_T4,The clothes.,The shoe.,The picture.,The dish.,The dish. 6527,U0X4P_0_27.35,Which object would the person throw next after they watch outside the window?,0,Prediction_T4_1132,Prediction_T4,The clothes.,The bag.,The box.,The shoe.,The clothes. 6528,G87XG_7.3_19.125,Which object would the person put down next after they sit on the chair?,2,Prediction_T4_1139,Prediction_T4,The blanket.,The clothes.,The book.,The cup/glass/bottle.,The book. 6529,EBTD6_14.2_21.150000000000002,Which object would the person put down next after they take the food?,1,Prediction_T4_1144,Prediction_T4,The clothes.,The sandwich.,The blanket.,The towel.,The sandwich. 6530,DH66I_9.7_30.825000000000003,Which object would the person open next after they take the food?,0,Prediction_T4_1168,Prediction_T4,The bag.,The box.,The door.,The book.,The bag. 6531,6UDGS_5.5_17.925,Which object would the person close next after they hold the shoe?,2,Prediction_T4_1185,Prediction_T4,The closet/cabinet.,The box.,The door.,The laptop.,The door. 6532,DQEC3_0_13.075,Which object would the person open next after they tidy up the closet/cabinet?,0,Prediction_T4_1219,Prediction_T4,The bag.,The refrigerator.,The box.,The door.,The bag. 6533,NLWBW_0_7.3500000000000005,Which object would the person take next after they close the door?,2,Prediction_T4_1222,Prediction_T4,The cup/glass/bottle.,The broom.,The bag.,The phone/camera.,The bag. 6534,D7KU2_0_9.3,Which object would the person put down next after they sit on the floor?,2,Prediction_T4_1223,Prediction_T4,The sandwich.,The book.,The broom.,The phone/camera.,The broom. 6535,HOZ76_15_24.25,Which object would the person open next after they walk through the doorway?,1,Prediction_T4_1248,Prediction_T4,The door.,The book.,The closet/cabinet.,The bag.,The book. 6536,EK19H_3.2_14.225,Which object would the person put down next after they take the dish?,3,Prediction_T4_1251,Prediction_T4,The pillow.,The towel.,The box.,The sandwich.,The sandwich. 6537,FRLW2_8.6_27.275,Which object would the person throw next after they put down the bag?,2,Prediction_T4_1252,Prediction_T4,The box.,The book.,The shoe.,The pillow.,The shoe. 6538,FRLW2_3.4_27.275,Which object would the person throw next after they take the bag?,2,Prediction_T4_1253,Prediction_T4,The pillow.,The towel.,The shoe.,The broom.,The shoe. 6539,EXPOA_12.3_24.525,Which object would the person take next after they sit at the table?,0,Prediction_T4_1270,Prediction_T4,The clothes.,The pillow.,The towel.,The food.,The clothes. 6540,9A58F_2.9_17.225,Which object would the person close next after they throw the shoe?,1,Prediction_T4_1301,Prediction_T4,The closet/cabinet.,The laptop.,The door.,The refrigerator.,The laptop. 6541,P2UBC_0_17.525000000000002,Which object would the person take next after they lie on the sofa/couch?,3,Prediction_T4_1317,Prediction_T4,The food.,The cup/glass/bottle.,The phone/camera.,The shoe.,The shoe. 6542,75RPN_0.7_11.85,Which object would the person take next after they walk through the doorway?,1,Prediction_T4_1335,Prediction_T4,The sandwich.,The pillow.,The dish.,The paper/notebook.,The pillow. 6543,D8OSC_0_6.775,Which object would the person put down next after they walk through the doorway?,2,Prediction_T4_1350,Prediction_T4,The sandwich.,The food.,The broom.,The book.,The broom. 6544,D8OSC_0_6.775,Which object would the person put down next after they grasp onto the doorknob?,2,Prediction_T4_1351,Prediction_T4,The picture.,The sandwich.,The broom.,The food.,The broom. 6545,M1GW9_3.8_16,Which object would the person throw next after they open the door?,3,Prediction_T4_1359,Prediction_T4,The food.,The clothes.,The towel.,The pillow.,The pillow. 6546,M1GW9_4.7_16,Which object would the person throw next after they walk through the doorway?,0,Prediction_T4_1360,Prediction_T4,The pillow.,The blanket.,The book.,The food.,The pillow. 6547,EO6OI_4.1_14.9,Which object would the person take next after they put down the blanket?,2,Prediction_T4_1367,Prediction_T4,The bag.,The phone/camera.,The towel.,The food.,The towel. 6548,EO6OI_5.7_14.9,Which object would the person take next after they throw the clothes?,2,Prediction_T4_1368,Prediction_T4,The broom.,The picture.,The towel.,The blanket.,The towel. 6549,L7HA6_15_28.475,Which object would the person put down next after they drink from the cup/glass/bottle?,1,Prediction_T4_1369,Prediction_T4,The bag.,The phone/camera.,The clothes.,The book.,The phone/camera. 6550,8G9A9_8.6_23.475,Which object would the person close next after they drink from the cup/glass/bottle?,2,Prediction_T4_1379,Prediction_T4,The book.,The closet/cabinet.,The laptop.,The box.,The laptop. 6551,8G9A9_14.3_23.475,Which object would the person close next after they put down the cup/glass/bottle?,0,Prediction_T4_1380,Prediction_T4,The laptop.,The phone/camera.,The closet/cabinet.,The box.,The laptop. 6552,8G9A9_3.6_19.025,Which object would the person open next after they hold the phone/camera?,3,Prediction_T4_1381,Prediction_T4,The bag.,The box.,The closet/cabinet.,The laptop.,The laptop. 6553,8G9A9_10.2_19.025,Which object would the person open next after they take the cup/glass/bottle?,3,Prediction_T4_1382,Prediction_T4,The book.,The door.,The bag.,The laptop.,The laptop. 6554,R9382_13.4_22.549999999999997,Which object would the person eat next after they close the refrigerator?,1,Prediction_T4_1387,Prediction_T4,The box.,The sandwich.,The medicine.,The door.,The sandwich. 6555,R9382_8.8_22.549999999999997,Which object would the person eat next after they open the refrigerator?,2,Prediction_T4_1388,Prediction_T4,The food.,The medicine.,The sandwich.,The book.,The sandwich. 6556,80E3X_8.8_18.175,Which object would the person take next after they turn on the light?,0,Prediction_T4_1396,Prediction_T4,The food.,The paper/notebook.,The cup/glass/bottle.,The book.,The food. 6557,WBATR_1.2_26.875,Which object would the person take next after they open the box?,0,Prediction_T4_1410,Prediction_T4,The food.,The clothes.,The cup/glass/bottle.,The shoe.,The food. 6558,WBATR_0_26.875,Which object would the person take next after they drink from the cup/glass/bottle?,2,Prediction_T4_1411,Prediction_T4,The picture.,The book.,The food.,The blanket.,The food. 6559,WBATR_0.5_26.875,Which object would the person take next after they put down the cup/glass/bottle?,1,Prediction_T4_1412,Prediction_T4,The broom.,The food.,The pillow.,The shoe.,The food. 6560,CSLEP_0_8.25,Which object would the person take next after they lie on the bed?,3,Prediction_T4_1414,Prediction_T4,The sandwich.,The laptop.,The food.,The clothes.,The clothes. 6561,J84TZ_0_14.100000000000001,Which object would the person take next after they lie on the sofa/couch?,1,Prediction_T4_1425,Prediction_T4,The clothes.,The blanket.,The laptop.,The towel.,The blanket. 6562,O2OUX_7.8_14.6,Which object would the person close next after they hold the broom?,3,Prediction_T4_1427,Prediction_T4,The box.,The refrigerator.,The door.,The laptop.,The laptop. 6563,RKGG5_0_14.7,Which object would the person lie on next after they hold the broom?,3,Prediction_T4_1436,Prediction_T4,The bed.,The floor.,The paper/notebook.,The sofa/couch.,The sofa/couch. 6564,RKGG5_6_14.7,Which object would the person lie on next after they throw the broom?,2,Prediction_T4_1437,Prediction_T4,The bed.,The cup/glass/bottle.,The sofa/couch.,The floor.,The sofa/couch. 6565,RKGG5_7_14.7,Which object would the person lie on next after they take the pillow?,1,Prediction_T4_1438,Prediction_T4,The laptop.,The sofa/couch.,The bed.,The floor.,The sofa/couch. 6566,6KIA4_0_19.125,Which object would the person wash next after they take the dish?,1,Prediction_T4_1450,Prediction_T4,The sofa/couch.,The table.,The cup/glass/bottle.,The bed.,The table. 6567,J4RPL_16.5_26.225,Which object would the person throw next after they put down the paper/notebook?,2,Prediction_T4_1452,Prediction_T4,The food.,The blanket.,The towel.,The shoe.,The towel. 6568,55AH5_5.5_16.775,Which object would the person lie on next after they hold the food?,2,Prediction_T4_1469,Prediction_T4,The pillow.,The bed.,The sofa/couch.,The floor.,The sofa/couch. 6569,GPR89_0_52.55,Which object would the person put down next after they tidy up the table?,3,Prediction_T4_1472,Prediction_T4,The sandwich.,The towel.,The picture.,The paper/notebook.,The paper/notebook. 6570,M1TZR_2.7_24.275,Which object would the person put down next after they hold the dish?,0,Prediction_T4_1518,Prediction_T4,The sandwich.,The cup/glass/bottle.,The pillow.,The towel.,The sandwich. 6571,S1J2Q_22.3_29.375,Which object would the person take next after they close the refrigerator?,2,Prediction_T4_1622,Prediction_T4,The cup/glass/bottle.,The picture.,The food.,The box.,The food. 6572,ZOMM2_18.4_27.575000000000003,Which object would the person eat next after they walk through the doorway?,3,Prediction_T4_1632,Prediction_T4,The medicine.,The dish.,The floor.,The sandwich.,The sandwich. 6573,EM0B6_16.1_27.975,Which object would the person put down next after they take the sandwich?,0,Prediction_T4_1634,Prediction_T4,The food.,The dish.,The cup/glass/bottle.,The broom.,The food. 6574,WV9FZ_3.4_24.75,Which object would the person sit at next after they hold the food?,1,Prediction_T4_1643,Prediction_T4,The floor.,The table.,The sofa/couch.,The bed.,The table. 6575,WV9FZ_3_24.75,Which object would the person sit at next after they take the food?,2,Prediction_T4_1644,Prediction_T4,The bed.,The sofa/couch.,The table.,The floor.,The table. 6576,J8JOQ_0_29.825000000000003,Which object would the person put down next after they walk through the doorway?,0,Prediction_T4_1646,Prediction_T4,The phone/camera.,The pillow.,The shoe.,The book.,The phone/camera. 6577,KFI7N_0_6.625,Which object would the person throw next after they walk through the doorway?,1,Prediction_T4_1660,Prediction_T4,The towel.,The broom.,The blanket.,The food.,The broom. 6578,HA02S_0_33.05,Which object would the person put down next after they open the door?,3,Prediction_T4_1661,Prediction_T4,The bag.,The book.,The towel.,The broom.,The broom. 6579,HA02S_0.9_33.05,Which object would the person put down next after they walk through the doorway?,0,Prediction_T4_1662,Prediction_T4,The broom.,The dish.,The phone/camera.,The cup/glass/bottle.,The broom. 6580,TVCQF_4.7_13.25,Which object would the person open next after they drink from the cup/glass/bottle?,0,Prediction_T4_1680,Prediction_T4,The box.,The laptop.,The book.,The closet/cabinet.,The box. 6581,NV4FC_5.5_17.1,Which object would the person throw next after they put down the clothes?,0,Prediction_T4_1687,Prediction_T4,The shoe.,The blanket.,The pillow.,The towel.,The shoe. 6582,AJTDO_0_21.925,Which object would the person throw next after they put down the towel?,2,Prediction_T4_1688,Prediction_T4,The shoe.,The book.,The pillow.,The bag.,The pillow. 6583,AJTDO_0_11.375,Which object would the person put down next after they hold the clothes?,2,Prediction_T4_1689,Prediction_T4,The towel.,The cup/glass/bottle.,The pillow.,The shoe.,The pillow. 6584,UDGRS_0_21.375,Which object would the person put down next after they hold the vacuum?,1,Prediction_T4_1703,Prediction_T4,The clothes.,The phone/camera.,The food.,The cup/glass/bottle.,The phone/camera. 6585,M7BD4_13.9_21.7,Which object would the person close next after they put down the paper/notebook?,3,Prediction_T4_1709,Prediction_T4,The refrigerator.,The book.,The towel.,The laptop.,The laptop. 6586,MQ4YR_0_19.65,Which object would the person take next after they lie on the bed?,3,Prediction_T4_1711,Prediction_T4,The phone/camera.,The food.,The broom.,The bag.,The bag. 6587,OK2AF_0_24.75,Which object would the person take next after they watch the television?,0,Prediction_T4_1746,Prediction_T4,The book.,The paper/notebook.,The cup/glass/bottle.,The bag.,The book. 6588,5X5DT_0_15.524999999999999,Which object would the person take next after they hold the laptop?,3,Prediction_T4_1754,Prediction_T4,The cup/glass/bottle.,The clothes.,The picture.,The bag.,The bag. 6589,VKXLL_16.9_23.725,Which object would the person open next after they put down the dish?,1,Prediction_T4_1756,Prediction_T4,The pillow.,The box.,The bag.,The book.,The box. 6590,LY10X_14.5_25.975,Which object would the person eat next after they open the closet/cabinet?,1,Prediction_T4_1758,Prediction_T4,The bag.,The medicine.,The sandwich.,The sofa/couch.,The medicine. 6591,1333C_4.9_21.525,Which object would the person put down next after they throw the towel?,1,Prediction_T4_1768,Prediction_T4,The cup/glass/bottle.,The dish.,The bag.,The clothes.,The dish. 6592,L9J5I_0_11.075,Which object would the person take next after they put down the food?,0,Prediction_T4_1772,Prediction_T4,The paper/notebook.,The towel.,The box.,The shoe.,The paper/notebook. 6593,PZD7Z_0_11.525,Which object would the person put down next after they sit at the table?,2,Prediction_T4_1773,Prediction_T4,The paper/notebook.,The cup/glass/bottle.,The broom.,The phone/camera.,The broom. 6594,MA15X_21.8_67.275,Which object would the person throw next after they put down the cup/glass/bottle?,3,Prediction_T4_1782,Prediction_T4,The pillow.,The food.,The clothes.,The blanket.,The blanket. 6595,MA15X_21_67.275,Which object would the person throw next after they take the cup/glass/bottle?,3,Prediction_T4_1783,Prediction_T4,The food.,The broom.,The clothes.,The blanket.,The blanket. 6596,V54TI_0_12.05,Which object would the person take next after they hold the picture?,0,Prediction_T4_1784,Prediction_T4,The pillow.,The box.,The shoe.,The dish.,The pillow. 6597,CJ58B_0_21.025,Which object would the person put down next after they watch the television?,0,Prediction_T4_1786,Prediction_T4,The bag.,The clothes.,The blanket.,The dish.,The bag. 6598,B8PQL_2.1_8.5,Which object would the person tidy up next after they throw the towel?,3,Prediction_T4_1788,Prediction_T4,The closet/cabinet.,The blanket.,The table.,The broom.,The broom. 6599,8DSGI_2.4_15.05,Which object would the person open next after they walk through the doorway?,0,Prediction_T4_1793,Prediction_T4,The book.,The laptop.,The door.,The bag.,The book. 6600,8DSGI_1.3_15.05,Which object would the person open next after they hold the clothes?,1,Prediction_T4_1794,Prediction_T4,The door.,The book.,The bag.,The box.,The book. 6601,8DSGI_5.8_15.05,Which object would the person open next after they throw the clothes?,1,Prediction_T4_1795,Prediction_T4,The laptop.,The book.,The closet/cabinet.,The bag.,The book. 6602,1E7VU_3.5_13.625,Which object would the person close next after they hold the dish?,0,Prediction_T4_1805,Prediction_T4,The closet/cabinet.,The door.,The laptop.,The box.,The closet/cabinet. 6603,CCCUJ_8.6_26.5,Which object would the person put down next after they turn on the light?,1,Prediction_T4_1816,Prediction_T4,The clothes.,The laptop.,The paper/notebook.,The shoe.,The laptop. 6604,CCCUJ_11.6_26.5,Which object would the person put down next after they close the door?,0,Prediction_T4_1817,Prediction_T4,The laptop.,The food.,The box.,The sandwich.,The laptop. 6605,CCCUJ_9.8_26.5,Which object would the person put down next after they turn on the light?,0,Prediction_T4_1818,Prediction_T4,The laptop.,The bag.,The pillow.,The dish.,The laptop. 6606,L9ANI_0_8.7,Which object would the person take next after they walk through the doorway?,2,Prediction_T4_1821,Prediction_T4,The cup/glass/bottle.,The book.,The towel.,The laptop.,The towel. 6607,3ZC4Y_0_19.125,Which object would the person close next after they hold the dish?,3,Prediction_T4_1828,Prediction_T4,The box.,The closet/cabinet.,The door.,The refrigerator.,The refrigerator. 6608,Z97SD_15.2_26.5,Which object would the person close next after they walk through the doorway?,2,Prediction_T4_1831,Prediction_T4,The floor.,The box.,The refrigerator.,The shoe.,The refrigerator. 6609,K7VCU_0_9.1,What else is the person able to do with the dish?,1,Feasibility_T2_10,Feasibility_T2,Put down the dish.,Take the dish.,Eat the dish.,Hold the dish.,Take the dish. 6610,8UCK1_1.6_7,What else is the person able to do with the closet/cabinet?,2,Feasibility_T2_13,Feasibility_T2,Open the closet/cabinet.,Hold the closet/cabinet.,Close the closet/cabinet.,Tidy up the closet/cabinet.,Close the closet/cabinet. 6611,GKH0F_7_13,What else is the person able to do with the bag?,2,Feasibility_T2_22,Feasibility_T2,Hold the bag.,Throw the bag.,Put down the bag.,Take the bag.,Put down the bag. 6612,6CAZU_10.6_16.1,What else is the person able to do with the sandwich?,1,Feasibility_T2_46,Feasibility_T2,Put down the sandwich.,Eat the sandwich.,Open the sandwich.,Take the sandwich.,Eat the sandwich. 6613,YJ1KW_0_4.2,What else is the person able to do with the food?,2,Feasibility_T2_107,Feasibility_T2,Close the food.,Put down the food.,Take the food.,Hold the food.,Take the food. 6614,YJ1KW_10.7_15.8,What else is the person able to do with the food?,0,Feasibility_T2_108,Feasibility_T2,Take the food.,Hold the food.,Put down the food.,Lie on the food.,Take the food. 6615,9MNZ5_9_13.8,What else is the person able to do with the box?,0,Feasibility_T2_126,Feasibility_T2,Close the box.,Take the box.,Wash the box.,Put down the box.,Close the box. 6616,9MNZ5_10.4_17.8,What else is the person able to do with the box?,2,Feasibility_T2_127,Feasibility_T2,Lie on the box.,Put down the box.,Close the box.,Open the box.,Close the box. 6617,JTBXI_32.3_36.7,What else is the person able to do with the pillow?,3,Feasibility_T2_157,Feasibility_T2,Close the pillow.,Hold the pillow.,Throw the pillow.,Put down the pillow.,Put down the pillow. 6618,JTBXI_31.3_36.5,What else is the person able to do with the pillow?,1,Feasibility_T2_158,Feasibility_T2,Lie on the pillow.,Put down the pillow.,Throw the pillow.,Take the pillow.,Put down the pillow. 6619,WXBEO_0.2_10.1,What else is the person able to do with the food?,0,Feasibility_T2_169,Feasibility_T2,Take the food.,Put down the food.,Hold the food.,Close the food.,Take the food. 6620,OQ54Y_5.4_10.3,What else is the person able to do with the refrigerator?,3,Feasibility_T2_176,Feasibility_T2,Eat the refrigerator.,Hold the refrigerator.,Close the refrigerator.,Open the refrigerator.,Open the refrigerator. 6621,2BO2G_5.4_12,What else is the person able to do with the box?,3,Feasibility_T2_203,Feasibility_T2,Close the box.,Lie on the box.,Put down the box.,Hold the box.,Hold the box. 6622,0PVKV_3_15,What else is the person able to do with the sandwich?,1,Feasibility_T2_218,Feasibility_T2,Open the sandwich.,Take the sandwich.,Put down the sandwich.,Eat the sandwich.,Take the sandwich. 6623,3JCEI_8.3_13,What else is the person able to do with the laptop?,1,Feasibility_T2_223,Feasibility_T2,Throw the laptop.,Hold the laptop.,Close the laptop.,Put down the laptop.,Hold the laptop. 6624,999BP_2.1_7.7,What else is the person able to do with the bag?,3,Feasibility_T2_224,Feasibility_T2,Lie on the bag.,Put down the bag.,Take the bag.,Open the bag.,Open the bag. 6625,999BP_0_6.4,What else is the person able to do with the bag?,3,Feasibility_T2_226,Feasibility_T2,Put down the bag.,Hold the bag.,Throw the bag.,Open the bag.,Open the bag. 6626,999BP_1.8_6.2,What else is the person able to do with the food?,3,Feasibility_T2_227,Feasibility_T2,Hold the food.,Put down the food.,Eat the food.,Take the food.,Take the food. 6627,9YOI8_4.8_11.9,What else is the person able to do with the window?,1,Feasibility_T2_238,Feasibility_T2,Open the window.,Close the window.,Lie on the window.,Eat the window.,Close the window. 6628,HOYUT_9.1_13.9,What else is the person able to do with the towel?,2,Feasibility_T2_240,Feasibility_T2,Put down the towel.,Throw the towel.,Take the towel.,Open the towel.,Take the towel. 6629,LUQWY_8.3_20.5,What else is the person able to do with the laptop?,2,Feasibility_T2_332,Feasibility_T2,Open the laptop.,Put down the laptop.,Close the laptop.,Wash the laptop.,Close the laptop. 6630,LUQWY_0.9_6.6,What else is the person able to do with the laptop?,3,Feasibility_T2_333,Feasibility_T2,Put down the laptop.,Take the laptop.,Eat the laptop.,Open the laptop.,Open the laptop. 6631,LUQWY_0.9_6.6,What else is the person able to do with the laptop?,1,Feasibility_T2_334,Feasibility_T2,Take the laptop.,Close the laptop.,Eat the laptop.,Hold the laptop.,Close the laptop. 6632,RQRRD_2.2_14.1,What else is the person able to do with the clothes?,0,Feasibility_T2_341,Feasibility_T2,Hold the clothes.,Tidy up the clothes.,Put down the clothes.,Sit on the clothes.,Hold the clothes. 6633,RQRRD_2.2_14.1,What else is the person able to do with the clothes?,2,Feasibility_T2_342,Feasibility_T2,Put down the clothes.,Tidy up the clothes.,Throw the clothes.,Close the clothes.,Throw the clothes. 6634,RQRRD_5.2_11.8,What else is the person able to do with the clothes?,1,Feasibility_T2_343,Feasibility_T2,Put down the clothes.,Hold the clothes.,Take the clothes.,Sit on the clothes.,Hold the clothes. 6635,RQRRD_5.2_11.8,What else is the person able to do with the clothes?,2,Feasibility_T2_344,Feasibility_T2,Tidy up the clothes.,Close the clothes.,Throw the clothes.,Take the clothes.,Throw the clothes. 6636,RQRRD_6.8_14.6,What else is the person able to do with the clothes?,3,Feasibility_T2_345,Feasibility_T2,Put down the clothes.,Hold the clothes.,Close the clothes.,Throw the clothes.,Throw the clothes. 6637,3CLVI_3.2_11.1,What else is the person able to do with the closet/cabinet?,3,Feasibility_T2_346,Feasibility_T2,Close the closet/cabinet.,Wash the closet/cabinet.,Open the closet/cabinet.,Tidy up the closet/cabinet.,Tidy up the closet/cabinet. 6638,UY0SK_3.8_8.6,What else is the person able to do with the paper/notebook?,1,Feasibility_T2_363,Feasibility_T2,Throw the paper/notebook.,Put down the paper/notebook.,Tidy up the paper/notebook.,Take the paper/notebook.,Put down the paper/notebook. 6639,FQGW4_5.4_10.2,What else is the person able to do with the cup/glass/bottle?,2,Feasibility_T2_374,Feasibility_T2,Put down the cup/glass/bottle.,Wash the cup/glass/bottle.,Take the cup/glass/bottle.,Close the cup/glass/bottle.,Take the cup/glass/bottle. 6640,DWHPO_15.7_21.3,What else is the person able to do with the phone/camera?,3,Feasibility_T2_400,Feasibility_T2,Throw the phone/camera.,Put down the phone/camera.,Hold the phone/camera.,Take the phone/camera.,Take the phone/camera. 6641,DWHPO_3.9_8.8,What else is the person able to do with the phone/camera?,1,Feasibility_T2_402,Feasibility_T2,Tidy up the phone/camera.,Put down the phone/camera.,Take the phone/camera.,Hold the phone/camera.,Put down the phone/camera. 6642,T1CQE_21.4_29.9,What else is the person able to do with the laptop?,3,Feasibility_T2_405,Feasibility_T2,Eat the laptop.,Put down the laptop.,Take the laptop.,Open the laptop.,Open the laptop. 6643,R0207_5.5_12.1,What else is the person able to do with the sandwich?,3,Feasibility_T2_416,Feasibility_T2,Take the sandwich.,Throw the sandwich.,Put down the sandwich.,Hold the sandwich.,Hold the sandwich. 6644,MD6P2_5_13.4,What else is the person able to do with the box?,0,Feasibility_T2_421,Feasibility_T2,Close the box.,Put down the box.,Open the box.,Sit on the box.,Close the box. 6645,K71S1_4.6_9.8,What else is the person able to do with the clothes?,3,Feasibility_T2_438,Feasibility_T2,Open the clothes.,Tidy up the clothes.,Take the clothes.,Hold the clothes.,Hold the clothes. 6646,78R4Y_1_6,What else is the person able to do with the bag?,1,Feasibility_T2_457,Feasibility_T2,Open the bag.,Throw the bag.,Lie on the bag.,Put down the bag.,Throw the bag. 6647,PDRVY_9_16.4,What else is the person able to do with the bag?,3,Feasibility_T2_472,Feasibility_T2,Eat the bag.,Take the bag.,Put down the bag.,Throw the bag.,Throw the bag. 6648,7NBPG_0_4.8,What else is the person able to do with the book?,1,Feasibility_T2_499,Feasibility_T2,Put down the book.,Close the book.,Open the book.,Sit on the book.,Close the book. 6649,432NL_2.1_7.5,What else is the person able to do with the refrigerator?,2,Feasibility_T2_509,Feasibility_T2,Tidy up the refrigerator.,Open the refrigerator.,Close the refrigerator.,Wash the refrigerator.,Close the refrigerator. 6650,2LCLG_12.1_17.2,What else is the person able to do with the book?,0,Feasibility_T2_515,Feasibility_T2,Hold the book.,Tidy up the book.,Open the book.,Throw the book.,Hold the book. 6651,D6D85_1.9_6.7,What else is the person able to do with the sandwich?,0,Feasibility_T2_521,Feasibility_T2,Take the sandwich.,Put down the sandwich.,Lie on the sandwich.,Eat the sandwich.,Take the sandwich. 6652,U6L1X_5.8_18.9,What else is the person able to do with the broom?,1,Feasibility_T2_524,Feasibility_T2,Close the broom.,Put down the broom.,Tidy up the broom.,Take the broom.,Put down the broom. 6653,MX9XB_0_4.1,What else is the person able to do with the bag?,2,Feasibility_T2_534,Feasibility_T2,Put down the bag.,Sit on the bag.,Throw the bag.,Open the bag.,Throw the bag. 6654,ANA5N_4.3_10.3,What else is the person able to do with the closet/cabinet?,1,Feasibility_T2_556,Feasibility_T2,Tidy up the closet/cabinet.,Open the closet/cabinet.,Close the closet/cabinet.,Wash the closet/cabinet.,Open the closet/cabinet. 6655,C6LW1_7.6_12.4,What else is the person able to do with the phone/camera?,2,Feasibility_T2_558,Feasibility_T2,Hold the phone/camera.,Sit on the phone/camera.,Put down the phone/camera.,Take the phone/camera.,Put down the phone/camera. 6656,WLA52_0.6_6.1,What else is the person able to do with the clothes?,0,Feasibility_T2_564,Feasibility_T2,Put down the clothes.,Take the clothes.,Tidy up the clothes.,Sit on the clothes.,Put down the clothes. 6657,U3T5A_0.9_8.2,What else is the person able to do with the dish?,1,Feasibility_T2_599,Feasibility_T2,Put down the dish.,Hold the dish.,Close the dish.,Take the dish.,Hold the dish. 6658,4MFE0_6.5_19.4,What else is the person able to do with the book?,3,Feasibility_T2_619,Feasibility_T2,Open the book.,Lie on the book.,Put down the book.,Take the book.,Take the book. 6659,NNG97_0.6_6.4,What else is the person able to do with the book?,1,Feasibility_T2_641,Feasibility_T2,Put down the book.,Hold the book.,Open the book.,Wash the book.,Hold the book. 6660,TOOYI_0_4.7,What else is the person able to do with the box?,1,Feasibility_T2_659,Feasibility_T2,Open the box.,Close the box.,Put down the box.,Tidy up the box.,Close the box. 6661,PV745_2.4_18.5,What else is the person able to do with the box?,1,Feasibility_T2_662,Feasibility_T2,Open the box.,Put down the box.,Close the box.,Tidy up the box.,Put down the box. 6662,PV745_7.2_14.8,What else is the person able to do with the box?,1,Feasibility_T2_663,Feasibility_T2,Tidy up the box.,Hold the box.,Take the box.,Throw the box.,Hold the box. 6663,PV745_7.2_14.8,What else is the person able to do with the box?,1,Feasibility_T2_664,Feasibility_T2,Eat the box.,Put down the box.,Close the box.,Take the box.,Put down the box. 6664,T2J3M_7.1_15.5,What else is the person able to do with the closet/cabinet?,0,Feasibility_T2_671,Feasibility_T2,Tidy up the closet/cabinet.,Close the closet/cabinet.,Open the closet/cabinet.,Eat the closet/cabinet.,Tidy up the closet/cabinet. 6665,X9WTR_23.8_33,What else is the person able to do with the book?,0,Feasibility_T2_682,Feasibility_T2,Open the book.,Tidy up the book.,Close the book.,Take the book.,Open the book. 6666,MF09L_1.3_30,What else is the person able to do with the dish?,1,Feasibility_T2_686,Feasibility_T2,Put down the dish.,Hold the dish.,Eat the dish.,Take the dish.,Hold the dish. 6667,H51V5_1.5_8.5,What else is the person able to do with the food?,2,Feasibility_T2_701,Feasibility_T2,Take the food.,Tidy up the food.,Hold the food.,Put down the food.,Hold the food. 6668,F0ZPW_0_12.2,What else is the person able to do with the food?,2,Feasibility_T2_703,Feasibility_T2,Take the food.,Tidy up the food.,Put down the food.,Hold the food.,Put down the food. 6669,GTK8W_0_26,What else is the person able to do with the book?,0,Feasibility_T2_707,Feasibility_T2,Open the book.,Put down the book.,Hold the book.,Eat the book.,Open the book. 6670,GTK8W_18.8_25.1,What else is the person able to do with the book?,3,Feasibility_T2_708,Feasibility_T2,Put down the book.,Close the book.,Eat the book.,Open the book.,Open the book. 6671,XPDI1_5_10,What else is the person able to do with the dish?,1,Feasibility_T2_761,Feasibility_T2,Throw the dish.,Take the dish.,Hold the dish.,Put down the dish.,Take the dish. 6672,RAQNI_4.1_14.3,What else is the person able to do with the blanket?,1,Feasibility_T2_764,Feasibility_T2,Hold the blanket.,Take the blanket.,Wash the blanket.,Throw the blanket.,Take the blanket. 6673,3B81O_0_7.9,What else is the person able to do with the window?,3,Feasibility_T2_767,Feasibility_T2,Sit on the window.,Open the window.,Hold the window.,Close the window.,Close the window. 6674,9B93K_2_10.4,What else is the person able to do with the sandwich?,2,Feasibility_T2_774,Feasibility_T2,Take the sandwich.,Open the sandwich.,Put down the sandwich.,Eat the sandwich.,Put down the sandwich. 6675,4P13T_11_17,What else is the person able to do with the book?,2,Feasibility_T2_782,Feasibility_T2,Put down the book.,Tidy up the book.,Take the book.,Open the book.,Take the book. 6676,52MV9_7.9_14,What else is the person able to do with the sandwich?,1,Feasibility_T2_838,Feasibility_T2,Open the sandwich.,Eat the sandwich.,Take the sandwich.,Hold the sandwich.,Eat the sandwich. 6677,5FDHU_0.2_6.1,What else is the person able to do with the sandwich?,3,Feasibility_T2_842,Feasibility_T2,Eat the sandwich.,Take the sandwich.,Close the sandwich.,Hold the sandwich.,Hold the sandwich. 6678,75KQ6_2.6_7.6,What else is the person able to do with the dish?,2,Feasibility_T2_848,Feasibility_T2,Take the dish.,Close the dish.,Put down the dish.,Wash the dish.,Put down the dish. 6679,9J166_9.9_17.5,What else is the person able to do with the window?,2,Feasibility_T2_860,Feasibility_T2,Lie on the window.,Hold the window.,Close the window.,Open the window.,Close the window. 6680,YLE12_3_9.6,What else is the person able to do with the paper/notebook?,2,Feasibility_T2_877,Feasibility_T2,Take the paper/notebook.,Wash the paper/notebook.,Put down the paper/notebook.,Close the paper/notebook.,Put down the paper/notebook. 6681,EO6OI_33.6_38.9,What else is the person able to do with the broom?,3,Feasibility_T2_909,Feasibility_T2,Take the broom.,Wash the broom.,Tidy up the broom.,Put down the broom.,Put down the broom. 6682,8G9A9_3.4_14.5,What else is the person able to do with the laptop?,3,Feasibility_T2_916,Feasibility_T2,Close the laptop.,Eat the laptop.,Hold the laptop.,Open the laptop.,Open the laptop. 6683,8VWV2_5.7_12.4,What else is the person able to do with the dish?,1,Feasibility_T2_950,Feasibility_T2,Take the dish.,Wash the dish.,Put down the dish.,Close the dish.,Wash the dish. 6684,BLIFO_1_9.1,What else is the person able to do with the closet/cabinet?,2,Feasibility_T2_954,Feasibility_T2,Close the closet/cabinet.,Open the closet/cabinet.,Tidy up the closet/cabinet.,Lie on the closet/cabinet.,Tidy up the closet/cabinet. 6685,J4RPL_0_4.8,What else is the person able to do with the paper/notebook?,3,Feasibility_T2_973,Feasibility_T2,Close the paper/notebook.,Hold the paper/notebook.,Take the paper/notebook.,Put down the paper/notebook.,Put down the paper/notebook. 6686,GPR89_19_44.8,What else is the person able to do with the paper/notebook?,0,Feasibility_T2_985,Feasibility_T2,Put down the paper/notebook.,Take the paper/notebook.,Hold the paper/notebook.,Wash the paper/notebook.,Put down the paper/notebook. 6687,WQQ4Q_0_11.8,What else is the person able to do with the dish?,1,Feasibility_T2_986,Feasibility_T2,Wash the dish.,Hold the dish.,Throw the dish.,Put down the dish.,Hold the dish. 6688,WQQ4Q_0_11.8,What else is the person able to do with the dish?,1,Feasibility_T2_987,Feasibility_T2,Put down the dish.,Take the dish.,Wash the dish.,Lie on the dish.,Take the dish. 6689,2GQDN_4.1_9,What else is the person able to do with the box?,3,Feasibility_T2_993,Feasibility_T2,Open the box.,Lie on the box.,Close the box.,Put down the box.,Put down the box. 6690,KTKWL_4.1_15.2,What else is the person able to do with the box?,0,Feasibility_T2_994,Feasibility_T2,Open the box.,Sit on the box.,Take the box.,Throw the box.,Open the box. 6691,RBC8N_16.4_25.2,What else is the person able to do with the pillow?,1,Feasibility_T2_995,Feasibility_T2,Hold the pillow.,Put down the pillow.,Lie on the pillow.,Take the pillow.,Put down the pillow. 6692,SMVKB_16.5_23.6,What else is the person able to do with the door?,0,Feasibility_T2_1027,Feasibility_T2,Close the door.,Wash the door.,Open the door.,Take the door.,Close the door. 6693,G4E4S_4.7_9.6,What else is the person able to do with the clothes?,1,Feasibility_T2_1034,Feasibility_T2,Sit on the clothes.,Wash the clothes.,Hold the clothes.,Tidy up the clothes.,Wash the clothes. 6694,MQGVS_3_9.7,What else is the person able to do with the blanket?,2,Feasibility_T2_1046,Feasibility_T2,Close the blanket.,Take the blanket.,Put down the blanket.,Throw the blanket.,Put down the blanket. 6695,MQGVS_5.9_13,What else is the person able to do with the blanket?,0,Feasibility_T2_1048,Feasibility_T2,Put down the blanket.,Wash the blanket.,Hold the blanket.,Tidy up the blanket.,Put down the blanket. 6696,56XKK_0_8.3,What else is the person able to do with the door?,3,Feasibility_T2_1094,Feasibility_T2,Throw the door.,Close the door.,Lie on the door.,Open the door.,Open the door. 6697,MDG2T_8.3_14.1,What else is the person able to do with the towel?,3,Feasibility_T2_1098,Feasibility_T2,Put down the towel.,Take the towel.,Wash the towel.,Throw the towel.,Throw the towel. 6698,HL5OP_20.1_27,What else is the person able to do with the dish?,2,Feasibility_T2_1120,Feasibility_T2,Hold the dish.,Put down the dish.,Take the dish.,Open the dish.,Take the dish. 6699,AJTDO_9_18.5,What else is the person able to do with the pillow?,3,Feasibility_T2_1137,Feasibility_T2,Hold the pillow.,Wash the pillow.,Put down the pillow.,Throw the pillow.,Throw the pillow. 6700,0JB3D_3.1_10.5,What else is the person able to do with the cup/glass/bottle?,0,Feasibility_T2_1152,Feasibility_T2,Put down the cup/glass/bottle.,Take the cup/glass/bottle.,Sit on the cup/glass/bottle.,Wash the cup/glass/bottle.,Put down the cup/glass/bottle. 6701,VKXLL_28.4_36.2,What else is the person able to do with the paper/notebook?,2,Feasibility_T2_1166,Feasibility_T2,Wash the paper/notebook.,Put down the paper/notebook.,Take the paper/notebook.,Throw the paper/notebook.,Take the paper/notebook. 6702,983K8_2.7_12.5,What else is the person able to do with the blanket?,0,Feasibility_T2_1173,Feasibility_T2,Put down the blanket.,Tidy up the blanket.,Wash the blanket.,Take the blanket.,Put down the blanket. 6703,CJ58B_14.5_19.9,What else is the person able to do with the bag?,0,Feasibility_T2_1186,Feasibility_T2,Throw the bag.,Put down the bag.,Wash the bag.,Take the bag.,Throw the bag. 6704,ACJBD_13.7_19.1,What else is the person able to do with the clothes?,2,Feasibility_T2_1196,Feasibility_T2,Put down the clothes.,Take the clothes.,Tidy up the clothes.,Sit on the clothes.,Tidy up the clothes. 6705,HPAYB_5.2_12.7,What else is the person able to do with the clothes?,0,Feasibility_T2_1197,Feasibility_T2,Put down the clothes.,Take the clothes.,Close the clothes.,Tidy up the clothes.,Put down the clothes. 6706,HPAYB_8.7_16.4,What else is the person able to do with the clothes?,1,Feasibility_T2_1198,Feasibility_T2,Tidy up the clothes.,Put down the clothes.,Take the clothes.,Open the clothes.,Put down the clothes. 6707,YJ1KW_8.8_14.3,Which object is possible to be taken when the person is behind the table?,2,Feasibility_T3_7,Feasibility_T3,The bag.,The dish.,The food.,The clothes.,The food. 6708,M8OYC_17.6_22.5,Which object is possible to be closed when the person is on the side of the shelf?,0,Feasibility_T3_39,Feasibility_T3,The closet/cabinet.,The blanket.,The sofa/couch.,The cup/glass/bottle.,The closet/cabinet. 6709,LOBSL_1.1_6.7,Which object is possible to be held when the person is in front of the table?,3,Feasibility_T3_43,Feasibility_T3,The phone/camera.,The book.,The closet/cabinet.,The laptop.,The laptop. 6710,I1OLQ_6.4_11.8,Which object is possible to be opened when the person is in front of the door?,3,Feasibility_T3_48,Feasibility_T3,The laptop.,The food.,The closet/cabinet.,The bag.,The bag. 6711,I1OLQ_0_14.9,Which object is possible to be opened when the person is on the side of the door?,1,Feasibility_T3_49,Feasibility_T3,The sandwich.,The bag.,The phone/camera.,The closet/cabinet.,The bag. 6712,FTG07_9.6_14.8,Which object is possible to be closed when the person is near the table?,1,Feasibility_T3_54,Feasibility_T3,The closet/cabinet.,The door.,The shoe.,The blanket.,The door. 6713,FTG07_9.6_14.8,Which object is possible to be put down when the person is near the table?,0,Feasibility_T3_55,Feasibility_T3,The dish.,The sofa/couch.,The clothes.,The shoe.,The dish. 6714,IZ2XX_0_5.3,Which object is possible to be put down when the person is in front of the door?,0,Feasibility_T3_74,Feasibility_T3,The book.,The sofa/couch.,The phone/camera.,The cup/glass/bottle.,The book. 6715,2GQDN_0_7.9,Which object is possible to be put down when the person is on the side of the door?,3,Feasibility_T3_75,Feasibility_T3,The clothes.,The closet/cabinet.,The book.,The box.,The box. 6716,6C4DV_0_3.9,Which object is possible to be held when the person is behind the shelf?,0,Feasibility_T3_78,Feasibility_T3,The phone/camera.,The table.,The laptop.,The cup/glass/bottle.,The phone/camera. 6717,ZZ89F_0_9.6,Which object is possible to be closed when the person is on the side of the door?,1,Feasibility_T3_81,Feasibility_T3,The closet/cabinet.,The refrigerator.,The bag.,The pillow.,The refrigerator. 6718,TVCQF_4.7_10.7,Which object is possible to be opened when the person is behind the table?,0,Feasibility_T3_84,Feasibility_T3,The box.,The sandwich.,The book.,The closet/cabinet.,The box. 6719,OK2AF_0_14.1,Which object is possible to be taken when the person is on the side of the door?,3,Feasibility_T3_86,Feasibility_T3,The laptop.,The cup/glass/bottle.,The sandwich.,The book.,The book. 6720,YJ1KW_8.8_14.3,What is the person able to do when they are behind the table?,2,Feasibility_T4_7,Feasibility_T4,Take the shoe.,Put down the dish.,Take the food.,Put down the cup/glass/bottle.,Take the food. 6721,M8OYC_17.6_22.5,What is the person able to do when they are on the side of the shelf?,0,Feasibility_T4_39,Feasibility_T4,Close the closet/cabinet.,Take the shoe.,Hold the laptop.,Put down the cup/glass/bottle.,Close the closet/cabinet. 6722,LOBSL_1.1_6.7,What is the person able to do when they are in front of the table?,3,Feasibility_T4_43,Feasibility_T4,Open the laptop.,Take the paper/notebook.,Hold the phone/camera.,Hold the laptop.,Hold the laptop. 6723,I1OLQ_0_14.9,What is the person able to do when they are on the side of the door?,1,Feasibility_T4_49,Feasibility_T4,Hold the phone/camera.,Open the bag.,Put down the paper/notebook.,Put down the cup/glass/bottle.,Open the bag. 6724,FTG07_9.6_14.8,What is the person able to do when they are near the table?,1,Feasibility_T4_54,Feasibility_T4,Hold the phone/camera.,Close the door.,Hold the shoe.,Hold the laptop.,Close the door. 6725,FTG07_9.6_14.8,What is the person able to do when they are near the table?,0,Feasibility_T4_55,Feasibility_T4,Put down the dish.,Put down the book.,Put down the clothes.,Throw the shoe.,Put down the dish. 6726,6VF2L_14.3_23.6,What is the person able to do when they are on the side of the table?,0,Feasibility_T4_68,Feasibility_T4,Put down the blanket.,Take the phone/camera.,Take the clothes.,Tidy up the closet/cabinet.,Put down the blanket. 6727,IZ2XX_0_5.3,What is the person able to do when they are in front of the door?,0,Feasibility_T4_74,Feasibility_T4,Put down the book.,Eat the sandwich.,Take the phone/camera.,Close the closet/cabinet.,Put down the book. 6728,2GQDN_0_7.9,What is the person able to do when they are on the side of the door?,3,Feasibility_T4_75,Feasibility_T4,Take the cup/glass/bottle.,Open the closet/cabinet.,Take the shoe.,Put down the box.,Put down the box. 6729,6C4DV_0_3.9,What is the person able to do when they are behind the shelf?,0,Feasibility_T4_78,Feasibility_T4,Hold the phone/camera.,Eat the sandwich.,Open the bag.,Wash the cup/glass/bottle.,Hold the phone/camera. 6730,ZZ89F_0_9.6,What is the person able to do when they are on the side of the door?,1,Feasibility_T4_81,Feasibility_T4,Put down the dish.,Close the refrigerator.,Take the bag.,Hold the dish.,Close the refrigerator. 6731,TVCQF_4.7_10.7,What is the person able to do when they are behind the table?,0,Feasibility_T4_84,Feasibility_T4,Open the box.,Put down the pillow.,Tidy up the shelf.,Put down the shoe.,Open the box. 6732,OK2AF_0_14.1,What is the person able to do when they are on the side of the door?,3,Feasibility_T4_86,Feasibility_T4,Hold the box.,Throw the food.,Open the laptop.,Take the book.,Take the book. 6733,OY3LS_18.5_23.6,Which object is the person able to put down after holding the clothes?,1,Feasibility_T5_34,Feasibility_T5,The blanket.,The phone/camera.,The book.,The dish.,The phone/camera. 6734,OY3LS_18.5_23.8,Which object is the person able to put down after throwing the clothes?,2,Feasibility_T5_35,Feasibility_T5,The cup/glass/bottle.,The box.,The phone/camera.,The bag.,The phone/camera. 6735,D1WYU_0_4.6,Which object is the person able to put down after walking through the doorway?,0,Feasibility_T5_84,Feasibility_T5,The bag.,The book.,The food.,The clothes.,The bag. 6736,ATV2F_0_4,Which object is the person able to throw after walking through the doorway?,3,Feasibility_T5_102,Feasibility_T5,The bag.,The book.,The blanket.,The clothes.,The clothes. 6737,C1DK7_4.2_10.2,Which object is the person able to put down after closing the laptop?,2,Feasibility_T5_153,Feasibility_T5,The picture.,The bag.,The phone/camera.,The box.,The phone/camera. 6738,YJ1KW_8.8_14.3,Which object is the person able to take after sitting on the chair?,3,Feasibility_T5_199,Feasibility_T5,The pillow.,The clothes.,The cup/glass/bottle.,The food.,The food. 6739,YJ1KW_0_5.8,Which object is the person able to take after walking through the doorway?,1,Feasibility_T5_200,Feasibility_T5,The book.,The food.,The shoe.,The cup/glass/bottle.,The food. 6740,NYHD7_0_4.7,Which object is the person able to take after sitting at the table?,3,Feasibility_T5_226,Feasibility_T5,The shoe.,The broom.,The bag.,The phone/camera.,The phone/camera. 6741,NYHD7_0_4.7,Which object is the person able to put down after sitting at the table?,3,Feasibility_T5_227,Feasibility_T5,The shoe.,The book.,The dish.,The phone/camera.,The phone/camera. 6742,9MNZ5_21.1_27.2,Which object is the person able to take after closing the box?,1,Feasibility_T5_262,Feasibility_T5,The laptop.,The book.,The shoe.,The towel.,The book. 6743,9MNZ5_23_28.3,Which object is the person able to take after putting down the box?,1,Feasibility_T5_265,Feasibility_T5,The dish.,The book.,The clothes.,The cup/glass/bottle.,The book. 6744,9MNZ5_23_28.3,Which object is the person able to hold after putting down the box?,2,Feasibility_T5_266,Feasibility_T5,The phone/camera.,The blanket.,The book.,The pillow.,The book. 6745,U5T4M_0_3.1,Which object is the person able to take after opening the refrigerator?,3,Feasibility_T5_295,Feasibility_T5,The laptop.,The broom.,The clothes.,The food.,The food. 6746,ZNQVC_8.9_15.9,Which object is the person able to take after closing the door?,2,Feasibility_T5_301,Feasibility_T5,The box.,The food.,The shoe.,The pillow.,The shoe. 6747,ZNQVC_8.9_15.9,Which object is the person able to put down after closing the door?,2,Feasibility_T5_302,Feasibility_T5,The sandwich.,The picture.,The shoe.,The bag.,The shoe. 6748,ZNQVC_8.8_15.3,Which object is the person able to take after closing the closet/cabinet?,2,Feasibility_T5_303,Feasibility_T5,The cup/glass/bottle.,The bag.,The shoe.,The sandwich.,The shoe. 6749,ZNQVC_8.8_15.3,Which object is the person able to put down after closing the closet/cabinet?,0,Feasibility_T5_304,Feasibility_T5,The shoe.,The bag.,The clothes.,The blanket.,The shoe. 6750,ZNQVC_8.9_15.8,Which object is the person able to take after grasping onto the doorknob?,2,Feasibility_T5_305,Feasibility_T5,The book.,The bag.,The shoe.,The phone/camera.,The shoe. 6751,ZNQVC_8.9_15.8,Which object is the person able to put down after grasping onto the doorknob?,3,Feasibility_T5_306,Feasibility_T5,The box.,The food.,The picture.,The shoe.,The shoe. 6752,OQ54Y_3.1_10.3,Which object is the person able to open after closing the door?,2,Feasibility_T5_393,Feasibility_T5,The bag.,The laptop.,The refrigerator.,The book.,The refrigerator. 6753,OQ54Y_1.2_7.6,Which object is the person able to open after taking the food?,3,Feasibility_T5_396,Feasibility_T5,The book.,The bag.,The closet/cabinet.,The refrigerator.,The refrigerator. 6754,ZPRJH_5.7_11.6,Which object is the person able to throw after taking the paper/notebook?,0,Feasibility_T5_421,Feasibility_T5,The book.,The clothes.,The bag.,The shoe.,The book. 6755,BEAAA_0_4.1,Which object is the person able to put down after eating the sandwich?,3,Feasibility_T5_438,Feasibility_T5,The blanket.,The cup/glass/bottle.,The pillow.,The clothes.,The clothes. 6756,0PVKV_9.5_15.2,Which object is the person able to hold after drinking from the cup/glass/bottle?,3,Feasibility_T5_462,Feasibility_T5,The shoe.,The pillow.,The sandwich.,The medicine.,The medicine. 6757,0PVKV_9.5_15.2,Which object is the person able to take after drinking from the cup/glass/bottle?,3,Feasibility_T5_463,Feasibility_T5,The paper/notebook.,The book.,The dish.,The sandwich.,The sandwich. 6758,0PVKV_0_4.6,Which object is the person able to hold after taking the cup/glass/bottle?,1,Feasibility_T5_466,Feasibility_T5,The dish.,The medicine.,The pillow.,The food.,The medicine. 6759,M18XP_0_6.7,Which object is the person able to tidy up after walking through the doorway?,2,Feasibility_T5_468,Feasibility_T5,The closet/cabinet.,The broom.,The table.,The towel.,The table. 6760,M18XP_0_6.7,Which object is the person able to hold after walking through the doorway?,2,Feasibility_T5_469,Feasibility_T5,The clothes.,The pillow.,The book.,The mirror.,The book. 6761,3JCEI_0_11.3,Which object is the person able to hold after sitting on the bed?,1,Feasibility_T5_476,Feasibility_T5,The food.,The laptop.,The clothes.,The dish.,The laptop. 6762,3JCEI_0_11.3,Which object is the person able to hold after sitting on the sofa/couch?,2,Feasibility_T5_477,Feasibility_T5,The picture.,The shoe.,The laptop.,The phone/camera.,The laptop. 6763,3JCEI_0_11.1,Which object is the person able to hold after sitting on the chair?,1,Feasibility_T5_478,Feasibility_T5,The medicine.,The laptop.,The dish.,The clothes.,The laptop. 6764,3JCEI_0_11.5,Which object is the person able to hold after sitting at the table?,3,Feasibility_T5_479,Feasibility_T5,The dish.,The book.,The food.,The laptop.,The laptop. 6765,Z7KC1_0_18.7,Which object is the person able to take after sitting at the table?,0,Feasibility_T5_516,Feasibility_T5,The broom.,The bag.,The towel.,The sandwich.,The broom. 6766,Z7KC1_0_19.3,Which object is the person able to take after sitting on the chair?,0,Feasibility_T5_517,Feasibility_T5,The broom.,The shoe.,The bag.,The pillow.,The broom. 6767,65UVU_0_3.2,Which object is the person able to put down after opening the door?,1,Feasibility_T5_518,Feasibility_T5,The food.,The box.,The laptop.,The cup/glass/bottle.,The box. 6768,65UVU_0_3.2,Which object is the person able to take after opening the door?,3,Feasibility_T5_519,Feasibility_T5,The paper/notebook.,The clothes.,The food.,The box.,The box. 6769,65UVU_0_3.9,Which object is the person able to put down after walking through the doorway?,3,Feasibility_T5_520,Feasibility_T5,The cup/glass/bottle.,The bag.,The blanket.,The box.,The box. 6770,65UVU_0_3.9,Which object is the person able to take after walking through the doorway?,0,Feasibility_T5_521,Feasibility_T5,The box.,The paper/notebook.,The dish.,The cup/glass/bottle.,The box. 6771,LZ2Y4_0_5.1,Which object is the person able to put down after drinking from the cup/glass/bottle?,1,Feasibility_T5_529,Feasibility_T5,The food.,The dish.,The book.,The clothes.,The dish. 6772,9YOI8_14.8_22.7,Which object is the person able to close after drinking from the cup/glass/bottle?,2,Feasibility_T5_552,Feasibility_T5,The closet/cabinet.,The laptop.,The window.,The door.,The window. 6773,7TA23_6.6_12.2,Which object is the person able to put down after throwing the clothes?,0,Feasibility_T5_553,Feasibility_T5,The shoe.,The laptop.,The blanket.,The bag.,The shoe. 6774,2ZICJ_4.1_10.1,Which object is the person able to close after opening the closet/cabinet?,1,Feasibility_T5_562,Feasibility_T5,The box.,The refrigerator.,The book.,The laptop.,The refrigerator. 6775,2ZICJ_1_6.7,Which object is the person able to close after putting down the cup/glass/bottle?,1,Feasibility_T5_563,Feasibility_T5,The box.,The refrigerator.,The window.,The book.,The refrigerator. 6776,2ZICJ_0_4.8,Which object is the person able to close after drinking from the cup/glass/bottle?,0,Feasibility_T5_564,Feasibility_T5,The refrigerator.,The book.,The closet/cabinet.,The window.,The refrigerator. 6777,727IZ_11.2_15.4,Which object is the person able to put down after closing the door?,1,Feasibility_T5_613,Feasibility_T5,The box.,The paper/notebook.,The dish.,The clothes.,The paper/notebook. 6778,727IZ_10_14.7,Which object is the person able to put down after closing the closet/cabinet?,0,Feasibility_T5_616,Feasibility_T5,The paper/notebook.,The bag.,The sandwich.,The blanket.,The paper/notebook. 6779,IULK6_0_7.1,Which object is the person able to close after taking the paper/notebook?,2,Feasibility_T5_625,Feasibility_T5,The box.,The closet/cabinet.,The book.,The door.,The book. 6780,RQRRD_0_4.8,Which object is the person able to take after walking through the doorway?,1,Feasibility_T5_764,Feasibility_T5,The phone/camera.,The clothes.,The food.,The cup/glass/bottle.,The clothes. 6781,3CLVI_2.4_9.6,Which object is the person able to tidy up after grasping onto the doorknob?,3,Feasibility_T5_767,Feasibility_T5,The towel.,The clothes.,The table.,The closet/cabinet.,The closet/cabinet. 6782,3CLVI_3.3_7.8,Which object is the person able to tidy up after turning on the light?,3,Feasibility_T5_769,Feasibility_T5,The table.,The towel.,The broom.,The closet/cabinet.,The closet/cabinet. 6783,M8OYC_1.9_12.2,Which object is the person able to tidy up after putting down the bag?,2,Feasibility_T5_774,Feasibility_T5,The clothes.,The broom.,The closet/cabinet.,The table.,The closet/cabinet. 6784,UYZKX_2.6_7.3,Which object is the person able to throw after turning on the light?,0,Feasibility_T5_786,Feasibility_T5,The blanket.,The broom.,The food.,The clothes.,The blanket. 6785,N915C_0_4.5,Which object is the person able to put down after walking through the doorway?,0,Feasibility_T5_849,Feasibility_T5,The clothes.,The cup/glass/bottle.,The shoe.,The box.,The clothes. 6786,DWHPO_3.2_14,Which object is the person able to take after putting down the food?,3,Feasibility_T5_850,Feasibility_T5,The picture.,The cup/glass/bottle.,The sandwich.,The phone/camera.,The phone/camera. 6787,R0207_6.1_12.5,Which object is the person able to put down after taking the food?,2,Feasibility_T5_877,Feasibility_T5,The bag.,The box.,The sandwich.,The broom.,The sandwich. 6788,R0207_6.1_12.5,Which object is the person able to hold after taking the food?,2,Feasibility_T5_878,Feasibility_T5,The pillow.,The phone/camera.,The sandwich.,The clothes.,The sandwich. 6789,C5BMA_13.9_25.3,Which object is the person able to throw after eating the sandwich?,1,Feasibility_T5_887,Feasibility_T5,The pillow.,The food.,The box.,The bag.,The food. 6790,NVGDG_0_12.8,Which object is the person able to put down after lying on the sofa/couch?,0,Feasibility_T5_902,Feasibility_T5,The blanket.,The food.,The broom.,The phone/camera.,The blanket. 6791,NVGDG_0_12.8,Which object is the person able to tidy up after lying on the sofa/couch?,3,Feasibility_T5_903,Feasibility_T5,The clothes.,The closet/cabinet.,The towel.,The blanket.,The blanket. 6792,NVGDG_0_12.8,Which object is the person able to take after lying on the sofa/couch?,0,Feasibility_T5_904,Feasibility_T5,The blanket.,The book.,The cup/glass/bottle.,The clothes.,The blanket. 6793,NEM29_4_17.8,Which object is the person able to open after watching the television?,1,Feasibility_T5_906,Feasibility_T5,The window.,The bag.,The book.,The refrigerator.,The bag. 6794,NEM29_7.7_14.5,Which object is the person able to open after throwing the clothes?,3,Feasibility_T5_907,Feasibility_T5,The laptop.,The refrigerator.,The book.,The bag.,The bag. 6795,K71S1_0_5.6,Which object is the person able to tidy up after opening the box?,3,Feasibility_T5_909,Feasibility_T5,The blanket.,The towel.,The closet/cabinet.,The clothes.,The clothes. 6796,K71S1_1.3_9.3,Which object is the person able to tidy up after putting down the box?,1,Feasibility_T5_911,Feasibility_T5,The blanket.,The clothes.,The table.,The broom.,The clothes. 6797,V3RAX_0_14.2,Which object is the person able to tidy up after lying on the bed?,1,Feasibility_T5_926,Feasibility_T5,The towel.,The clothes.,The closet/cabinet.,The table.,The clothes. 6798,V3RAX_0_14.3,Which object is the person able to tidy up after holding the blanket?,3,Feasibility_T5_928,Feasibility_T5,The table.,The closet/cabinet.,The towel.,The clothes.,The clothes. 6799,9XXJ7_0.6_6.8,Which object is the person able to hold after grasping onto the doorknob?,1,Feasibility_T5_930,Feasibility_T5,The laptop.,The phone/camera.,The box.,The shoe.,The phone/camera. 6800,9XXJ7_0.6_6.8,Which object is the person able to hold after closing the door?,1,Feasibility_T5_931,Feasibility_T5,The picture.,The phone/camera.,The shoe.,The box.,The phone/camera. 6801,IWF0U_4.6_21,Which object is the person able to hold after sitting on the chair?,1,Feasibility_T5_938,Feasibility_T5,The pillow.,The blanket.,The shoe.,The book.,The blanket. 6802,IWF0U_2.1_20.3,Which object is the person able to hold after sitting at the table?,3,Feasibility_T5_939,Feasibility_T5,The shoe.,The medicine.,The food.,The blanket.,The blanket. 6803,P2HZG_4_10.2,Which object is the person able to open after closing the laptop?,1,Feasibility_T5_947,Feasibility_T5,The refrigerator.,The closet/cabinet.,The door.,The book.,The closet/cabinet. 6804,P2HZG_7.4_14.2,Which object is the person able to close after holding the laptop?,2,Feasibility_T5_948,Feasibility_T5,The refrigerator.,The box.,The closet/cabinet.,The door.,The closet/cabinet. 6805,P2HZG_0_9.3,Which object is the person able to open after sitting at the table?,1,Feasibility_T5_949,Feasibility_T5,The bag.,The closet/cabinet.,The book.,The door.,The closet/cabinet. 6806,E6PSM_3.9_9.8,Which object is the person able to open after walking through the doorway?,2,Feasibility_T5_970,Feasibility_T5,The closet/cabinet.,The laptop.,The box.,The window.,The box. 6807,E6PSM_3.9_9.8,Which object is the person able to throw after walking through the doorway?,2,Feasibility_T5_971,Feasibility_T5,The towel.,The food.,The box.,The clothes.,The box. 6808,E6PSM_5.8_12.5,Which object is the person able to throw after closing the door?,0,Feasibility_T5_972,Feasibility_T5,The box.,The clothes.,The food.,The pillow.,The box. 6809,E6PSM_0.9_9.6,Which object is the person able to throw after opening the door?,3,Feasibility_T5_973,Feasibility_T5,The towel.,The blanket.,The book.,The box.,The box. 6810,AZMVM_13.9_18.2,Which object is the person able to put down after throwing the clothes?,0,Feasibility_T5_977,Feasibility_T5,The pillow.,The food.,The shoe.,The box.,The pillow. 6811,IO712_0_5.9,Which object is the person able to hold after closing the window?,0,Feasibility_T5_981,Feasibility_T5,The book.,The food.,The mirror.,The clothes.,The book. 6812,IO712_0_5.9,Which object is the person able to open after closing the window?,0,Feasibility_T5_982,Feasibility_T5,The book.,The door.,The laptop.,The bag.,The book. 6813,D6D85_0_3.1,Which object is the person able to take after holding the food?,2,Feasibility_T5_1039,Feasibility_T5,The paper/notebook.,The box.,The sandwich.,The shoe.,The sandwich. 6814,LOBSL_0.4_6.7,Which object is the person able to hold after opening the door?,0,Feasibility_T5_1078,Feasibility_T5,The laptop.,The book.,The food.,The blanket.,The laptop. 6815,LOBSL_1.1_6.7,Which object is the person able to hold after walking through the doorway?,1,Feasibility_T5_1079,Feasibility_T5,The dish.,The laptop.,The blanket.,The picture.,The laptop. 6816,JBJGX_12.2_23.4,Which object is the person able to open after taking the clothes?,3,Feasibility_T5_1111,Feasibility_T5,The window.,The door.,The box.,The laptop.,The laptop. 6817,9335E_0_23.3,Which object is the person able to open after sitting on the chair?,3,Feasibility_T5_1112,Feasibility_T5,The bag.,The door.,The book.,The closet/cabinet.,The closet/cabinet. 6818,9335E_19.1_27.3,Which object is the person able to open after putting down the dish?,1,Feasibility_T5_1113,Feasibility_T5,The door.,The closet/cabinet.,The book.,The bag.,The closet/cabinet. 6819,9335E_0_27.3,Which object is the person able to open after holding the dish?,2,Feasibility_T5_1114,Feasibility_T5,The door.,The box.,The closet/cabinet.,The window.,The closet/cabinet. 6820,WLA52_1.3_18.4,Which object is the person able to take after holding the clothes?,3,Feasibility_T5_1119,Feasibility_T5,The food.,The bag.,The cup/glass/bottle.,The broom.,The broom. 6821,JZDL6_9_14,Which object is the person able to hold after sitting on the bed?,3,Feasibility_T5_1134,Feasibility_T5,The book.,The box.,The dish.,The shoe.,The shoe. 6822,ZAJAJ_2.4_12.2,Which object is the person able to hold after putting down the pillow?,0,Feasibility_T5_1168,Feasibility_T5,The picture.,The box.,The laptop.,The dish.,The picture. 6823,ABHC6_0_4.9,Which object is the person able to take after walking through the doorway?,0,Feasibility_T5_1176,Feasibility_T5,The clothes.,The cup/glass/bottle.,The pillow.,The dish.,The clothes. 6824,ABHC6_3_10.2,Which object is the person able to take after opening the closet/cabinet?,1,Feasibility_T5_1178,Feasibility_T5,The cup/glass/bottle.,The clothes.,The phone/camera.,The dish.,The clothes. 6825,2GF6R_2.8_8.7,Which object is the person able to hold after watching the television?,1,Feasibility_T5_1206,Feasibility_T5,The blanket.,The sandwich.,The mirror.,The box.,The sandwich. 6826,FL6DF_3.2_8.1,Which object is the person able to throw after opening the laptop?,2,Feasibility_T5_1240,Feasibility_T5,The bag.,The food.,The pillow.,The broom.,The pillow. 6827,FL6DF_3.2_8.1,Which object is the person able to put down after opening the laptop?,0,Feasibility_T5_1241,Feasibility_T5,The blanket.,The food.,The sandwich.,The picture.,The blanket. 6828,ZS9XR_1.5_9.1,Which object is the person able to tidy up after taking the food?,0,Feasibility_T5_1243,Feasibility_T5,The table.,The clothes.,The closet/cabinet.,The blanket.,The table. 6829,ZS9XR_1.5_9.1,Which object is the person able to wash after taking the food?,3,Feasibility_T5_1244,Feasibility_T5,The dish.,The cup/glass/bottle.,The mirror.,The table.,The table. 6830,ZS9XR_1.3_18.8,Which object is the person able to wash after sitting on the sofa/couch?,0,Feasibility_T5_1245,Feasibility_T5,The table.,The dish.,The cup/glass/bottle.,The window.,The table. 6831,ZS9XR_1.3_18.8,Which object is the person able to put down after sitting on the sofa/couch?,0,Feasibility_T5_1246,Feasibility_T5,The paper/notebook.,The broom.,The phone/camera.,The bag.,The paper/notebook. 6832,ZS9XR_8.9_14.4,Which object is the person able to tidy up after holding the medicine?,0,Feasibility_T5_1247,Feasibility_T5,The table.,The blanket.,The clothes.,The closet/cabinet.,The table. 6833,ZS9XR_8.9_14.4,Which object is the person able to wash after holding the medicine?,1,Feasibility_T5_1248,Feasibility_T5,The clothes.,The table.,The cup/glass/bottle.,The dish.,The table. 6834,ZS9XR_10.6_17.1,Which object is the person able to wash after eating the medicine?,0,Feasibility_T5_1249,Feasibility_T5,The table.,The clothes.,The cup/glass/bottle.,The dish.,The table. 6835,BGQIF_2.9_9.4,Which object is the person able to hold after putting down the pillow?,2,Feasibility_T5_1252,Feasibility_T5,The broom.,The dish.,The food.,The clothes.,The food. 6836,I1OLQ_6.4_11.8,Which object is the person able to open after walking through the doorway?,2,Feasibility_T5_1268,Feasibility_T5,The refrigerator.,The laptop.,The bag.,The book.,The bag. 6837,GBMNT_0_5.6,Which object is the person able to put down after walking through the doorway?,3,Feasibility_T5_1329,Feasibility_T5,The dish.,The book.,The towel.,The bag.,The bag. 6838,GBMNT_0_5.6,Which object is the person able to take after walking through the doorway?,0,Feasibility_T5_1330,Feasibility_T5,The bag.,The picture.,The box.,The paper/notebook.,The bag. 6839,GBMNT_0_5.6,Which object is the person able to open after walking through the doorway?,2,Feasibility_T5_1331,Feasibility_T5,The refrigerator.,The book.,The bag.,The laptop.,The bag. 6840,T5E2T_18.7_31.7,Which object is the person able to hold after taking the food?,3,Feasibility_T5_1372,Feasibility_T5,The book.,The phone/camera.,The clothes.,The dish.,The dish. 6841,106AY_9.9_21.2,Which object is the person able to open after holding the shoe?,2,Feasibility_T5_1439,Feasibility_T5,The book.,The box.,The bag.,The window.,The bag. 6842,106AY_10.9_20.6,Which object is the person able to open after putting down the shoe?,2,Feasibility_T5_1440,Feasibility_T5,The book.,The window.,The bag.,The closet/cabinet.,The bag. 6843,106AY_15_20.2,Which object is the person able to open after putting down the box?,1,Feasibility_T5_1441,Feasibility_T5,The book.,The bag.,The closet/cabinet.,The laptop.,The bag. 6844,R9NRA_11.4_17.6,Which object is the person able to lie on after taking the cup/glass/bottle?,3,Feasibility_T5_1471,Feasibility_T5,The paper/notebook.,The floor.,The bed.,The sofa/couch.,The sofa/couch. 6845,R9NRA_9.7_16,Which object is the person able to lie on after taking the dish?,2,Feasibility_T5_1473,Feasibility_T5,The floor.,The towel.,The sofa/couch.,The bed.,The sofa/couch. 6846,XPDI1_0_5.8,Which object is the person able to take after drinking from the cup/glass/bottle?,3,Feasibility_T5_1534,Feasibility_T5,The clothes.,The food.,The broom.,The dish.,The dish. 6847,XPDI1_0_10.6,Which object is the person able to take after putting down the cup/glass/bottle?,1,Feasibility_T5_1535,Feasibility_T5,The paper/notebook.,The dish.,The box.,The towel.,The dish. 6848,RAQNI_4.1_14.3,Which object is the person able to take after holding the blanket?,3,Feasibility_T5_1538,Feasibility_T5,The towel.,The cup/glass/bottle.,The book.,The clothes.,The clothes. 6849,G87XG_7.3_12.5,Which object is the person able to put down after sitting on the chair?,3,Feasibility_T5_1566,Feasibility_T5,The pillow.,The sandwich.,The bag.,The book.,The book. 6850,6UDGS_5.5_14.7,Which object is the person able to close after holding the shoe?,3,Feasibility_T5_1635,Feasibility_T5,The laptop.,The book.,The closet/cabinet.,The door.,The door. 6851,52MV9_4.4_11.5,Which object is the person able to tidy up after walking through the doorway?,0,Feasibility_T5_1652,Feasibility_T5,The table.,The closet/cabinet.,The clothes.,The broom.,The table. 6852,52MV9_0_5.5,Which object is the person able to tidy up after holding the dish?,2,Feasibility_T5_1653,Feasibility_T5,The clothes.,The broom.,The table.,The towel.,The table. 6853,52MV9_6.8_24.6,Which object is the person able to tidy up after taking the sandwich?,0,Feasibility_T5_1654,Feasibility_T5,The table.,The closet/cabinet.,The clothes.,The broom.,The table. 6854,52MV9_1.2_8.4,Which object is the person able to tidy up after closing the door?,3,Feasibility_T5_1657,Feasibility_T5,The blanket.,The clothes.,The towel.,The table.,The table. 6855,52MV9_5.1_11.5,Which object is the person able to tidy up after opening the door?,1,Feasibility_T5_1660,Feasibility_T5,The towel.,The table.,The clothes.,The closet/cabinet.,The table. 6856,MOREL_0_4.4,Which object is the person able to hold after opening the closet/cabinet?,1,Feasibility_T5_1667,Feasibility_T5,The blanket.,The dish.,The clothes.,The box.,The dish. 6857,MOREL_0_4.4,Which object is the person able to hold after opening the door?,2,Feasibility_T5_1670,Feasibility_T5,The clothes.,The shoe.,The dish.,The pillow.,The dish. 6858,MOREL_0_4.4,Which object is the person able to tidy up after opening the door?,2,Feasibility_T5_1671,Feasibility_T5,The table.,The clothes.,The closet/cabinet.,The towel.,The closet/cabinet. 6859,3064K_8.2_18,Which object is the person able to take after putting down the clothes?,3,Feasibility_T5_1692,Feasibility_T5,The book.,The food.,The phone/camera.,The dish.,The dish. 6860,3064K_0.4_18.6,Which object is the person able to take after tidying up the clothes?,2,Feasibility_T5_1693,Feasibility_T5,The box.,The pillow.,The dish.,The blanket.,The dish. 6861,CF9QP_0_15.6,Which object is the person able to hold after drinking from the cup/glass/bottle?,1,Feasibility_T5_1706,Feasibility_T5,The phone/camera.,The food.,The broom.,The clothes.,The food. 6862,YCGJS_5.2_10.3,Which object is the person able to hold after putting down the dish?,0,Feasibility_T5_1717,Feasibility_T5,The food.,The phone/camera.,The blanket.,The clothes.,The food. 6863,YCGJS_1.4_6.3,Which object is the person able to hold after walking through the doorway?,0,Feasibility_T5_1719,Feasibility_T5,The food.,The picture.,The clothes.,The shoe.,The food. 6864,EXPOA_12.3_23.2,Which object is the person able to take after sitting at the table?,1,Feasibility_T5_1734,Feasibility_T5,The blanket.,The clothes.,The shoe.,The cup/glass/bottle.,The clothes. 6865,P2UBC_0_9.3,Which object is the person able to hold after lying on the sofa/couch?,3,Feasibility_T5_1783,Feasibility_T5,The sandwich.,The blanket.,The clothes.,The shoe.,The shoe. 6866,P2UBC_6_15.7,Which object is the person able to hold after sitting on the sofa/couch?,0,Feasibility_T5_1784,Feasibility_T5,The shoe.,The mirror.,The pillow.,The laptop.,The shoe. 6867,YPIKO_0_28.1,Which object is the person able to hold after watching the television?,3,Feasibility_T5_1803,Feasibility_T5,The phone/camera.,The book.,The clothes.,The food.,The food. 6868,D8OSC_0_4.2,Which object is the person able to throw after walking through the doorway?,0,Feasibility_T5_1804,Feasibility_T5,The broom.,The box.,The food.,The shoe.,The broom. 6869,D8OSC_0_4.2,Which object is the person able to put down after walking through the doorway?,0,Feasibility_T5_1805,Feasibility_T5,The broom.,The clothes.,The paper/notebook.,The bag.,The broom. 6870,D8OSC_0_4.8,Which object is the person able to throw after grasping onto the doorknob?,3,Feasibility_T5_1806,Feasibility_T5,The book.,The food.,The towel.,The broom.,The broom. 6871,D8OSC_0_4.8,Which object is the person able to put down after grasping onto the doorknob?,1,Feasibility_T5_1807,Feasibility_T5,The food.,The broom.,The phone/camera.,The sandwich.,The broom. 6872,M1GW9_3.8_9.9,Which object is the person able to throw after opening the door?,3,Feasibility_T5_1824,Feasibility_T5,The shoe.,The box.,The clothes.,The pillow.,The pillow. 6873,M1GW9_4.7_9.9,Which object is the person able to throw after walking through the doorway?,1,Feasibility_T5_1826,Feasibility_T5,The broom.,The pillow.,The bag.,The book.,The pillow. 6874,8G9A9_3.6_14.7,Which object is the person able to open after holding the phone/camera?,0,Feasibility_T5_1848,Feasibility_T5,The laptop.,The window.,The book.,The refrigerator.,The laptop. 6875,8G9A9_3.6_14.7,Which object is the person able to close after holding the phone/camera?,0,Feasibility_T5_1849,Feasibility_T5,The laptop.,The window.,The door.,The closet/cabinet.,The laptop. 6876,8G9A9_10.2_16.9,Which object is the person able to open after taking the cup/glass/bottle?,1,Feasibility_T5_1850,Feasibility_T5,The refrigerator.,The laptop.,The box.,The closet/cabinet.,The laptop. 6877,8G9A9_10.2_16.9,Which object is the person able to close after taking the cup/glass/bottle?,2,Feasibility_T5_1851,Feasibility_T5,The door.,The book.,The laptop.,The closet/cabinet.,The laptop. 6878,8G9A9_5.2_11.9,Which object is the person able to open after putting down the phone/camera?,3,Feasibility_T5_1852,Feasibility_T5,The book.,The door.,The bag.,The laptop.,The laptop. 6879,8G9A9_5.2_11.9,Which object is the person able to close after putting down the phone/camera?,2,Feasibility_T5_1853,Feasibility_T5,The book.,The door.,The laptop.,The window.,The laptop. 6880,6VF2L_14.3_23.6,Which object is the person able to put down after drinking from the cup/glass/bottle?,2,Feasibility_T5_1861,Feasibility_T5,The dish.,The clothes.,The blanket.,The box.,The blanket. 6881,80E3X_8.8_14.1,Which object is the person able to take after turning on the light?,0,Feasibility_T5_1863,Feasibility_T5,The food.,The book.,The clothes.,The bag.,The food. 6882,CSLEP_0_6.1,Which object is the person able to hold after lying on the bed?,1,Feasibility_T5_1874,Feasibility_T5,The picture.,The clothes.,The box.,The phone/camera.,The clothes. 6883,CSLEP_0_6.1,Which object is the person able to take after lying on the bed?,1,Feasibility_T5_1875,Feasibility_T5,The towel.,The clothes.,The laptop.,The cup/glass/bottle.,The clothes. 6884,HFTEO_1.9_11.8,Which object is the person able to sit on after tidying up the clothes?,3,Feasibility_T5_1884,Feasibility_T5,The table.,The sofa/couch.,The bed.,The floor.,The floor. 6885,HFTEO_6.1_12.7,Which object is the person able to sit on after putting down the clothes?,3,Feasibility_T5_1885,Feasibility_T5,The sofa/couch.,The table.,The bed.,The floor.,The floor. 6886,HFTEO_0_7.7,Which object is the person able to sit on after taking the clothes?,0,Feasibility_T5_1886,Feasibility_T5,The floor.,The table.,The bed.,The sofa/couch.,The floor. 6887,HFTEO_0_12.4,Which object is the person able to sit on after holding the clothes?,0,Feasibility_T5_1887,Feasibility_T5,The floor.,The sofa/couch.,The bed.,The table.,The floor. 6888,HFTEO_0_11.5,Which object is the person able to sit on after throwing the clothes?,1,Feasibility_T5_1888,Feasibility_T5,The table.,The floor.,The bed.,The sofa/couch.,The floor. 6889,8VWV2_1.6_7.3,Which object is the person able to wash after sitting at the table?,1,Feasibility_T5_1893,Feasibility_T5,The cup/glass/bottle.,The dish.,The mirror.,The window.,The dish. 6890,8VWV2_6.9_12.4,Which object is the person able to wash after taking the food?,0,Feasibility_T5_1895,Feasibility_T5,The dish.,The table.,The mirror.,The cup/glass/bottle.,The dish. 6891,8VWV2_0_7.3,Which object is the person able to wash after sitting on the floor?,3,Feasibility_T5_1897,Feasibility_T5,The mirror.,The table.,The cup/glass/bottle.,The dish.,The dish. 6892,J84TZ_0_4.5,Which object is the person able to hold after lying on the sofa/couch?,1,Feasibility_T5_1904,Feasibility_T5,The clothes.,The blanket.,The box.,The dish.,The blanket. 6893,J84TZ_0_4.5,Which object is the person able to take after lying on the sofa/couch?,0,Feasibility_T5_1905,Feasibility_T5,The blanket.,The paper/notebook.,The food.,The pillow.,The blanket. 6894,O2OUX_7.8_12.7,Which object is the person able to close after holding the broom?,0,Feasibility_T5_1908,Feasibility_T5,The laptop.,The refrigerator.,The door.,The closet/cabinet.,The laptop. 6895,RKGG5_0_10.6,Which object is the person able to lie on after holding the broom?,3,Feasibility_T5_1910,Feasibility_T5,The food.,The floor.,The bed.,The sofa/couch.,The sofa/couch. 6896,RKGG5_6_10.7,Which object is the person able to lie on after throwing the broom?,0,Feasibility_T5_1911,Feasibility_T5,The sofa/couch.,The floor.,The bed.,The door.,The sofa/couch. 6897,RKGG5_7_11.5,Which object is the person able to lie on after taking the pillow?,2,Feasibility_T5_1912,Feasibility_T5,The bed.,The floor.,The sofa/couch.,The mirror.,The sofa/couch. 6898,J4RPL_16.5_22.5,Which object is the person able to throw after putting down the paper/notebook?,2,Feasibility_T5_1935,Feasibility_T5,The broom.,The clothes.,The towel.,The blanket.,The towel. 6899,55AH5_5.5_14.8,Which object is the person able to lie on after holding the food?,2,Feasibility_T5_1941,Feasibility_T5,The floor.,The broom.,The sofa/couch.,The bed.,The sofa/couch. 6900,2GQDN_7.1_15.4,Which object is the person able to put down after opening the door?,2,Feasibility_T5_1965,Feasibility_T5,The pillow.,The towel.,The box.,The broom.,The box. 6901,2GQDN_0_7.9,Which object is the person able to put down after walking through the doorway?,3,Feasibility_T5_1966,Feasibility_T5,The blanket.,The pillow.,The bag.,The box.,The box. 6902,2GQDN_0_6.7,Which object is the person able to put down after opening the closet/cabinet?,0,Feasibility_T5_1967,Feasibility_T5,The box.,The cup/glass/bottle.,The dish.,The towel.,The box. 6903,DQ46N_0_6.7,Which object is the person able to hold after sitting on the chair?,3,Feasibility_T5_1978,Feasibility_T5,The box.,The shoe.,The clothes.,The dish.,The dish. 6904,DQ46N_4.4_9.6,Which object is the person able to hold after opening the closet/cabinet?,3,Feasibility_T5_1980,Feasibility_T5,The pillow.,The food.,The picture.,The dish.,The dish. 6905,DQ46N_6.2_11.5,Which object is the person able to hold after taking the cup/glass/bottle?,1,Feasibility_T5_1983,Feasibility_T5,The broom.,The dish.,The clothes.,The box.,The dish. 6906,M1TZR_2.7_8.5,Which object is the person able to put down after holding the dish?,2,Feasibility_T5_1989,Feasibility_T5,The broom.,The paper/notebook.,The sandwich.,The cup/glass/bottle.,The sandwich. 6907,GC1Q1_0_5.1,Which object is the person able to put down after opening the door?,1,Feasibility_T5_2018,Feasibility_T5,The food.,The clothes.,The box.,The cup/glass/bottle.,The clothes. 6908,6C4DV_0_3.9,Which object is the person able to hold after walking through the doorway?,0,Feasibility_T5_2089,Feasibility_T5,The phone/camera.,The laptop.,The clothes.,The sandwich.,The phone/camera. 6909,S1J2Q_22.3_28.4,Which object is the person able to take after closing the refrigerator?,2,Feasibility_T5_2116,Feasibility_T5,The shoe.,The picture.,The food.,The cup/glass/bottle.,The food. 6910,3DO95_13.6_23,Which object is the person able to hold after putting down the pillow?,0,Feasibility_T5_2120,Feasibility_T5,The book.,The food.,The laptop.,The blanket.,The book. 6911,3ND23_0_8.1,Which object is the person able to sit at after taking the book?,3,Feasibility_T5_2121,Feasibility_T5,The floor.,The medicine.,The bed.,The table.,The table. 6912,ZOMM2_18.4_23.5,Which object is the person able to eat after walking through the doorway?,2,Feasibility_T5_2126,Feasibility_T5,The book.,The medicine.,The sandwich.,The cup/glass/bottle.,The sandwich. 6913,84893_0_3.5,Which object is the person able to throw after watching outside the window?,2,Feasibility_T5_2143,Feasibility_T5,The blanket.,The bag.,The clothes.,The food.,The clothes. 6914,ZZ89F_0_9.6,Which object is the person able to close after walking through the doorway?,3,Feasibility_T5_2153,Feasibility_T5,The laptop.,The closet/cabinet.,The box.,The refrigerator.,The refrigerator. 6915,ZZ89F_7.4_13.5,Which object is the person able to close after opening the door?,3,Feasibility_T5_2154,Feasibility_T5,The window.,The closet/cabinet.,The book.,The refrigerator.,The refrigerator. 6916,BZD0Q_3.7_10.2,Which object is the person able to put down after walking through the doorway?,1,Feasibility_T5_2165,Feasibility_T5,The clothes.,The cup/glass/bottle.,The blanket.,The food.,The cup/glass/bottle. 6917,KFI7N_0_5.3,Which object is the person able to throw after walking through the doorway?,0,Feasibility_T5_2170,Feasibility_T5,The broom.,The bag.,The clothes.,The blanket.,The broom. 6918,HA02S_0_5.3,Which object is the person able to put down after opening the door?,1,Feasibility_T5_2172,Feasibility_T5,The shoe.,The broom.,The towel.,The picture.,The broom. 6919,HA02S_0.9_7,Which object is the person able to put down after walking through the doorway?,0,Feasibility_T5_2173,Feasibility_T5,The broom.,The pillow.,The clothes.,The sandwich.,The broom. 6920,TVCQF_4.7_10.7,Which object is the person able to open after drinking from the cup/glass/bottle?,1,Feasibility_T5_2186,Feasibility_T5,The book.,The box.,The window.,The door.,The box. 6921,TVCQF_4.7_10.7,Which object is the person able to close after drinking from the cup/glass/bottle?,3,Feasibility_T5_2187,Feasibility_T5,The refrigerator.,The laptop.,The closet/cabinet.,The box.,The box. 6922,NV4FC_0_3.1,Which object is the person able to hold after sitting on the bed?,3,Feasibility_T5_2199,Feasibility_T5,The food.,The pillow.,The broom.,The shoe.,The shoe. 6923,NV4FC_0_3.1,Which object is the person able to throw after sitting on the bed?,1,Feasibility_T5_2200,Feasibility_T5,The pillow.,The shoe.,The clothes.,The towel.,The shoe. 6924,NV4FC_15.7_21.3,Which object is the person able to open after throwing the shoe?,1,Feasibility_T5_2202,Feasibility_T5,The door.,The book.,The box.,The refrigerator.,The book. 6925,NV4FC_5.5_10.4,Which object is the person able to hold after putting down the clothes?,3,Feasibility_T5_2203,Feasibility_T5,The phone/camera.,The medicine.,The book.,The shoe.,The shoe. 6926,NV4FC_5.5_10.4,Which object is the person able to throw after putting down the clothes?,0,Feasibility_T5_2204,Feasibility_T5,The shoe.,The blanket.,The book.,The bag.,The shoe. 6927,MQ4YR_0_15.1,Which object is the person able to take after lying on the bed?,2,Feasibility_T5_2232,Feasibility_T5,The cup/glass/bottle.,The clothes.,The bag.,The broom.,The bag. 6928,UDGP2_0_6.8,Which object is the person able to put down after opening the refrigerator?,3,Feasibility_T5_2242,Feasibility_T5,The phone/camera.,The cup/glass/bottle.,The picture.,The food.,The food. 6929,OK2AF_0_14.1,Which object is the person able to take after watching the television?,3,Feasibility_T5_2267,Feasibility_T5,The sandwich.,The shoe.,The phone/camera.,The book.,The book. 6930,UEP20_11.8_18.6,Which object is the person able to hold after opening the closet/cabinet?,3,Feasibility_T5_2273,Feasibility_T5,The food.,The dish.,The picture.,The sandwich.,The sandwich. 6931,5X5DT_0_11.8,Which object is the person able to take after holding the laptop?,2,Feasibility_T5_2274,Feasibility_T5,The pillow.,The picture.,The bag.,The box.,The bag. 6932,5X5DT_0_11.8,Which object is the person able to put down after holding the laptop?,3,Feasibility_T5_2275,Feasibility_T5,The picture.,The clothes.,The dish.,The bag.,The bag. 6933,VKXLL_16.9_21.9,Which object is the person able to open after putting down the dish?,3,Feasibility_T5_2278,Feasibility_T5,The window.,The book.,The laptop.,The box.,The box. 6934,VKXLL_3.2_10,Which object is the person able to open after putting down the pillow?,3,Feasibility_T5_2279,Feasibility_T5,The door.,The laptop.,The book.,The box.,The box. 6935,L9J5I_0_3.5,Which object is the person able to take after putting down the food?,0,Feasibility_T5_2311,Feasibility_T5,The paper/notebook.,The laptop.,The cup/glass/bottle.,The sandwich.,The paper/notebook. 6936,PZD7Z_0_4.9,Which object is the person able to put down after sitting on the chair?,3,Feasibility_T5_2312,Feasibility_T5,The pillow.,The picture.,The food.,The broom.,The broom. 6937,PZD7Z_0_7.1,Which object is the person able to put down after sitting at the table?,1,Feasibility_T5_2313,Feasibility_T5,The clothes.,The broom.,The bag.,The laptop.,The broom. 6938,MA15X_21.8_60.1,Which object is the person able to throw after putting down the cup/glass/bottle?,1,Feasibility_T5_2325,Feasibility_T5,The bag.,The blanket.,The clothes.,The book.,The blanket. 6939,MA15X_21_47.4,Which object is the person able to throw after taking the cup/glass/bottle?,3,Feasibility_T5_2326,Feasibility_T5,The bag.,The clothes.,The box.,The blanket.,The blanket. 6940,V54TI_0_9.6,Which object is the person able to take after holding the picture?,0,Feasibility_T5_2327,Feasibility_T5,The pillow.,The cup/glass/bottle.,The food.,The shoe.,The pillow. 6941,8DSGI_2.4_10,Which object is the person able to hold after walking through the doorway?,0,Feasibility_T5_2343,Feasibility_T5,The book.,The clothes.,The blanket.,The food.,The book. 6942,8DSGI_2.4_10,Which object is the person able to open after walking through the doorway?,1,Feasibility_T5_2344,Feasibility_T5,The bag.,The book.,The closet/cabinet.,The laptop.,The book. 6943,8DSGI_1.3_11.1,Which object is the person able to open after holding the clothes?,2,Feasibility_T5_2346,Feasibility_T5,The window.,The refrigerator.,The book.,The box.,The book. 6944,8DSGI_5.8_10.9,Which object is the person able to open after throwing the clothes?,2,Feasibility_T5_2348,Feasibility_T5,The bag.,The window.,The book.,The laptop.,The book. 6945,BVHA7_7.6_17,Which object is the person able to take after walking through the doorway?,1,Feasibility_T5_2375,Feasibility_T5,The food.,The cup/glass/bottle.,The pillow.,The box.,The cup/glass/bottle. 6946,BPH56_17.7_23.3,Which object is the person able to wash after walking through the doorway?,1,Feasibility_T5_2377,Feasibility_T5,The table.,The dish.,The mirror.,The window.,The dish. 6947,RTEWJ_0_5.5,Which object is the person able to hold after putting down the sandwich?,0,Feasibility_T5_2388,Feasibility_T5,The blanket.,The food.,The pillow.,The book.,The blanket. 6948,RTEWJ_0_3.2,Which object is the person able to hold after walking through the doorway?,3,Feasibility_T5_2389,Feasibility_T5,The phone/camera.,The box.,The mirror.,The blanket.,The blanket. 6949,6KI0S_0_12,Which object is the person able to hold after putting down the clothes?,1,Feasibility_T5_2395,Feasibility_T5,The book.,The blanket.,The phone/camera.,The dish.,The blanket. 6950,6KI0S_0_13.6,Which object is the person able to hold after sitting on the bed?,3,Feasibility_T5_2396,Feasibility_T5,The phone/camera.,The book.,The clothes.,The blanket.,The blanket. 6951,CCCUJ_11.6_18.9,Which object is the person able to put down after closing the door?,1,Feasibility_T5_2398,Feasibility_T5,The paper/notebook.,The laptop.,The dish.,The cup/glass/bottle.,The laptop. 6952,CCCUJ_0.7_7.7,Which object is the person able to put down after walking through the doorway?,0,Feasibility_T5_2399,Feasibility_T5,The laptop.,The blanket.,The sandwich.,The bag.,The laptop. 6953,L9ANI_7.3_12.9,Which object is the person able to wash after taking the towel?,1,Feasibility_T5_2403,Feasibility_T5,The clothes.,The table.,The dish.,The window.,The table. 6954,L9ANI_0_4.1,Which object is the person able to take after walking through the doorway?,3,Feasibility_T5_2404,Feasibility_T5,The box.,The cup/glass/bottle.,The bag.,The towel.,The towel. 6955,L9ANI_0_4.1,Which object is the person able to tidy up after walking through the doorway?,3,Feasibility_T5_2405,Feasibility_T5,The closet/cabinet.,The blanket.,The clothes.,The towel.,The towel. 6956,L9ANI_0_4.1,Which object is the person able to wash after walking through the doorway?,1,Feasibility_T5_2406,Feasibility_T5,The mirror.,The table.,The clothes.,The dish.,The table. 6957,L9ANI_0_10.8,Which object is the person able to wash after putting the groceries?,2,Feasibility_T5_2407,Feasibility_T5,The cup/glass/bottle.,The mirror.,The table.,The window.,The table. 6958,Z97SD_18.1_24.1,Which object is the person able to hold after opening the refrigerator?,0,Feasibility_T5_2422,Feasibility_T5,The food.,The clothes.,The picture.,The laptop.,The food. 6959,OY3LS_18.5_23.8,What is the person able to do after throwing the clothes?,0,Feasibility_T6_16,Feasibility_T6,Put down the phone/camera.,Hold the sandwich.,Lie on the sofa/couch.,Hold the clothes.,Put down the phone/camera. 6960,ATV2F_0_4,What is the person able to do after walking through the doorway?,1,Feasibility_T6_54,Feasibility_T6,Close the closet/cabinet.,Throw the clothes.,Put down the bag.,Put down the pillow.,Throw the clothes. 6961,C1DK7_4.2_10.2,What is the person able to do after closing the laptop?,3,Feasibility_T6_86,Feasibility_T6,Take the laptop.,Put down the dish.,Throw the pillow.,Put down the phone/camera.,Put down the phone/camera. 6962,YJ1KW_8.8_14.3,What is the person able to do after sitting on the chair?,3,Feasibility_T6_102,Feasibility_T6,Wash the table.,Hold the sandwich.,Put down the broom.,Take the food.,Take the food. 6963,NYHD7_0_4.7,What is the person able to do after sitting at the table?,2,Feasibility_T6_115,Feasibility_T6,Close the book.,Wash the table.,Take the phone/camera.,Put down the cup/glass/bottle.,Take the phone/camera. 6964,9MNZ5_21.1_27.2,What is the person able to do after closing the box?,2,Feasibility_T6_133,Feasibility_T6,Take the laptop.,Sit at the table.,Take the book.,Throw the blanket.,Take the book. 6965,9MNZ5_23_28.3,What is the person able to do after putting down the box?,1,Feasibility_T6_134,Feasibility_T6,Throw the food.,Take the book.,Sit at the table.,Put down the box.,Take the book. 6966,U5T4M_0_3.1,What is the person able to do after opening the refrigerator?,0,Feasibility_T6_148,Feasibility_T6,Take the food.,Throw the food.,Hold the phone/camera.,Lie on the bed.,Take the food. 6967,ZNQVC_8.9_15.9,What is the person able to do after closing the door?,0,Feasibility_T6_154,Feasibility_T6,Take the shoe.,Put down the clothes.,Open the closet/cabinet.,Close the closet/cabinet.,Take the shoe. 6968,ZNQVC_8.9_15.8,What is the person able to do after grasping onto the doorknob?,3,Feasibility_T6_155,Feasibility_T6,Close the closet/cabinet.,Hold the blanket.,Put down the phone/camera.,Take the shoe.,Take the shoe. 6969,OQ54Y_1.2_7.6,What is the person able to do after taking the food?,3,Feasibility_T6_201,Feasibility_T6,Close the laptop.,Hold the laptop.,Tidy up the closet/cabinet.,Open the refrigerator.,Open the refrigerator. 6970,BEAAA_0_4.1,What is the person able to do after eating the sandwich?,1,Feasibility_T6_229,Feasibility_T6,Sit on the bed.,Put down the clothes.,Hold the phone/camera.,Hold the food.,Put down the clothes. 6971,0PVKV_9.5_15.2,What is the person able to do after drinking from the cup/glass/bottle?,3,Feasibility_T6_241,Feasibility_T6,Put down the pillow.,Close the door.,Eat the medicine.,Hold the medicine.,Hold the medicine. 6972,M18XP_0_6.7,What is the person able to do after walking through the doorway?,1,Feasibility_T6_244,Feasibility_T6,Open the bag.,Tidy up the table.,Throw the box.,Take the cup/glass/bottle.,Tidy up the table. 6973,M18XP_0_6.7,What is the person able to do after walking through the doorway?,2,Feasibility_T6_245,Feasibility_T6,Put down the blanket.,Throw the blanket.,Hold the book.,Throw the bag.,Hold the book. 6974,3JCEI_0_11.5,What is the person able to do after sitting at the table?,0,Feasibility_T6_251,Feasibility_T6,Hold the laptop.,Take the box.,Hold the shoe.,Throw the bag.,Hold the laptop. 6975,65UVU_0_3.2,What is the person able to do after opening the door?,0,Feasibility_T6_274,Feasibility_T6,Put down the box.,Open the door.,Throw the broom.,Put down the clothes.,Put down the box. 6976,65UVU_0_3.9,What is the person able to do after walking through the doorway?,1,Feasibility_T6_275,Feasibility_T6,Throw the bag.,Put down the box.,Tidy up the blanket.,Open the door.,Put down the box. 6977,LZ2Y4_0_5.1,What is the person able to do after drinking from the cup/glass/bottle?,1,Feasibility_T6_280,Feasibility_T6,Sit at the table.,Put down the dish.,Take the blanket.,Open the laptop.,Put down the dish. 6978,7TA23_6.6_12.2,What is the person able to do after throwing the clothes?,0,Feasibility_T6_294,Feasibility_T6,Put down the shoe.,Put down the phone/camera.,Hold the picture.,Close the closet/cabinet.,Put down the shoe. 6979,2ZICJ_1_6.7,What is the person able to do after putting down the cup/glass/bottle?,3,Feasibility_T6_298,Feasibility_T6,Throw the box.,Take the paper/notebook.,Hold the mirror.,Close the refrigerator.,Close the refrigerator. 6980,2ZICJ_0_4.8,What is the person able to do after drinking from the cup/glass/bottle?,0,Feasibility_T6_299,Feasibility_T6,Close the refrigerator.,Hold the pillow.,Take the book.,Take the paper/notebook.,Close the refrigerator. 6981,727IZ_11.2_15.4,What is the person able to do after closing the door?,3,Feasibility_T6_323,Feasibility_T6,Tidy up the closet/cabinet.,Hold the food.,Throw the bag.,Put down the paper/notebook.,Put down the paper/notebook. 6982,3CLVI_16.3_22.3,What is the person able to do after opening the door?,2,Feasibility_T6_403,Feasibility_T6,Wash the clothes.,Tidy up the towel.,Throw the clothes.,Put down the dish.,Throw the clothes. 6983,3CLVI_2.4_9.6,What is the person able to do after grasping onto the doorknob?,2,Feasibility_T6_404,Feasibility_T6,Take the bag.,Take the shoe.,Tidy up the closet/cabinet.,Take the laptop.,Tidy up the closet/cabinet. 6984,3CLVI_16.8_24.3,What is the person able to do after tidying up the closet/cabinet?,3,Feasibility_T6_405,Feasibility_T6,Eat the medicine.,Throw the towel.,Put down the bag.,Throw the clothes.,Throw the clothes. 6985,3CLVI_3.3_7.8,What is the person able to do after turning on the light?,1,Feasibility_T6_406,Feasibility_T6,Throw the shoe.,Tidy up the closet/cabinet.,Take the paper/notebook.,Close the refrigerator.,Tidy up the closet/cabinet. 6986,M8OYC_1.9_12.2,What is the person able to do after putting down the bag?,3,Feasibility_T6_411,Feasibility_T6,Hold the mirror.,Close the laptop.,Put down the box.,Tidy up the closet/cabinet.,Tidy up the closet/cabinet. 6987,N915C_0_4.5,What is the person able to do after walking through the doorway?,3,Feasibility_T6_448,Feasibility_T6,Sit at the table.,Put down the cup/glass/bottle.,Lie on the bed.,Put down the clothes.,Put down the clothes. 6988,R0207_6.1_12.5,What is the person able to do after taking the food?,1,Feasibility_T6_466,Feasibility_T6,Take the dish.,Put down the sandwich.,Take the phone/camera.,Tidy up the table.,Put down the sandwich. 6989,C5BMA_13.9_25.3,What is the person able to do after eating the sandwich?,2,Feasibility_T6_473,Feasibility_T6,Hold the food.,Take the paper/notebook.,Throw the food.,Throw the clothes.,Throw the food. 6990,NVGDG_0_12.8,What is the person able to do after lying on the sofa/couch?,3,Feasibility_T6_480,Feasibility_T6,Tidy up the closet/cabinet.,Hold the laptop.,Put down the clothes.,Put down the blanket.,Put down the blanket. 6991,NEM29_4_17.8,What is the person able to do after watching the television?,3,Feasibility_T6_482,Feasibility_T6,Close the door.,Take the pillow.,Put down the towel.,Open the bag.,Open the bag. 6992,NEM29_7.7_14.5,What is the person able to do after throwing the clothes?,3,Feasibility_T6_483,Feasibility_T6,Hold the pillow.,Take the pillow.,Open the book.,Open the bag.,Open the bag. 6993,V3RAX_0_14.2,What is the person able to do after lying on the bed?,1,Feasibility_T6_493,Feasibility_T6,Put down the pillow.,Tidy up the clothes.,Take the sandwich.,Take the cup/glass/bottle.,Tidy up the clothes. 6994,9XXJ7_0.6_6.8,What is the person able to do after grasping onto the doorknob?,3,Feasibility_T6_494,Feasibility_T6,Put down the laptop.,Put down the book.,Put down the clothes.,Hold the phone/camera.,Hold the phone/camera. 6995,9XXJ7_0.6_6.8,What is the person able to do after closing the door?,0,Feasibility_T6_495,Feasibility_T6,Hold the phone/camera.,Put down the bag.,Take the book.,Put down the paper/notebook.,Hold the phone/camera. 6996,P2HZG_4_10.2,What is the person able to do after closing the laptop?,2,Feasibility_T6_508,Feasibility_T6,Throw the towel.,Open the door.,Open the closet/cabinet.,Tidy up the closet/cabinet.,Open the closet/cabinet. 6997,P2HZG_7.4_14.2,What is the person able to do after holding the laptop?,2,Feasibility_T6_509,Feasibility_T6,Put down the book.,Take the shoe.,Close the closet/cabinet.,Open the door.,Close the closet/cabinet. 6998,E6PSM_3.9_9.8,What is the person able to do after walking through the doorway?,3,Feasibility_T6_520,Feasibility_T6,Sit at the table.,Hold the laptop.,Take the blanket.,Open the box.,Open the box. 6999,E6PSM_5.8_12.5,What is the person able to do after closing the door?,0,Feasibility_T6_521,Feasibility_T6,Throw the box.,Open the door.,Hold the phone/camera.,Take the paper/notebook.,Throw the box. 7000,AZMVM_13.9_18.2,What is the person able to do after throwing the clothes?,1,Feasibility_T6_525,Feasibility_T6,Put down the clothes.,Put down the pillow.,Open the bag.,Take the shoe.,Put down the pillow. 7001,IO712_0_5.9,What is the person able to do after closing the window?,1,Feasibility_T6_527,Feasibility_T6,Hold the blanket.,Hold the book.,Put down the paper/notebook.,Take the bag.,Hold the book. 7002,LOBSL_0.4_6.7,What is the person able to do after opening the door?,1,Feasibility_T6_586,Feasibility_T6,Take the clothes.,Hold the laptop.,Hold the food.,Put down the paper/notebook.,Hold the laptop. 7003,LOBSL_1.1_6.7,What is the person able to do after walking through the doorway?,2,Feasibility_T6_587,Feasibility_T6,Close the laptop.,Hold the clothes.,Hold the laptop.,Put down the food.,Hold the laptop. 7004,JBJGX_12.2_23.4,What is the person able to do after taking the clothes?,1,Feasibility_T6_607,Feasibility_T6,Hold the book.,Open the laptop.,Take the bag.,Open the door.,Open the laptop. 7005,9335E_0_23.3,What is the person able to do after sitting on the chair?,1,Feasibility_T6_608,Feasibility_T6,Close the box.,Open the closet/cabinet.,Put down the laptop.,Put down the bag.,Open the closet/cabinet. 7006,9335E_19.1_27.3,What is the person able to do after putting down the dish?,0,Feasibility_T6_609,Feasibility_T6,Open the closet/cabinet.,Hold the sandwich.,Put down the dish.,Eat the sandwich.,Open the closet/cabinet. 7007,9335E_0_27.3,What is the person able to do after holding the dish?,3,Feasibility_T6_610,Feasibility_T6,Put down the sandwich.,Put down the cup/glass/bottle.,Wash the clothes.,Open the closet/cabinet.,Open the closet/cabinet. 7008,JZDL6_9_14,What is the person able to do after sitting on the bed?,0,Feasibility_T6_621,Feasibility_T6,Hold the shoe.,Sit on the bed.,Take the cup/glass/bottle.,Close the refrigerator.,Hold the shoe. 7009,ZAJAJ_2.4_12.2,What is the person able to do after putting down the pillow?,1,Feasibility_T6_645,Feasibility_T6,Sit at the table.,Hold the picture.,Throw the blanket.,Put down the picture.,Hold the picture. 7010,ABHC6_0_4.9,What is the person able to do after walking through the doorway?,3,Feasibility_T6_650,Feasibility_T6,Hold the clothes.,Tidy up the closet/cabinet.,Put down the blanket.,Take the clothes.,Take the clothes. 7011,ABHC6_3_10.2,What is the person able to do after opening the closet/cabinet?,1,Feasibility_T6_651,Feasibility_T6,Put down the bag.,Take the clothes.,Sit at the table.,Take the sandwich.,Take the clothes. 7012,IUOC0_11.1_16.7,What is the person able to do after closing the door?,1,Feasibility_T6_672,Feasibility_T6,Take the cup/glass/bottle.,Eat the sandwich.,Close the door.,Take the box.,Eat the sandwich. 7013,2GF6R_2.8_8.7,What is the person able to do after watching the television?,0,Feasibility_T6_673,Feasibility_T6,Hold the sandwich.,Sit at the table.,Hold the food.,Put down the cup/glass/bottle.,Hold the sandwich. 7014,FL6DF_3.2_8.1,What is the person able to do after opening the laptop?,0,Feasibility_T6_699,Feasibility_T6,Throw the pillow.,Open the door.,Close the refrigerator.,Hold the mirror.,Throw the pillow. 7015,FL6DF_3.2_8.1,What is the person able to do after opening the laptop?,0,Feasibility_T6_700,Feasibility_T6,Put down the blanket.,Lie on the sofa/couch.,Throw the pillow.,Open the book.,Put down the blanket. 7016,ZS9XR_1.3_18.8,What is the person able to do after sitting on the sofa/couch?,2,Feasibility_T6_704,Feasibility_T6,Open the bag.,Hold the pillow.,Put down the paper/notebook.,Put down the food.,Put down the paper/notebook. 7017,ZS9XR_10.6_17.1,What is the person able to do after eating the medicine?,0,Feasibility_T6_706,Feasibility_T6,Wash the table.,Take the laptop.,Hold the food.,Put down the towel.,Wash the table. 7018,BGQIF_2.9_9.4,What is the person able to do after putting down the pillow?,0,Feasibility_T6_709,Feasibility_T6,Hold the food.,Sit at the table.,Throw the box.,Hold the picture.,Hold the food. 7019,I1OLQ_8.4_14.6,What is the person able to do after closing the door?,2,Feasibility_T6_720,Feasibility_T6,Close the door.,Hold the clothes.,Open the bag.,Take the towel.,Open the bag. 7020,I1OLQ_6.4_11.8,What is the person able to do after walking through the doorway?,1,Feasibility_T6_721,Feasibility_T6,Take the cup/glass/bottle.,Open the bag.,Take the paper/notebook.,Tidy up the table.,Open the bag. 7021,GBMNT_0_5.6,What is the person able to do after walking through the doorway?,1,Feasibility_T6_754,Feasibility_T6,Put down the cup/glass/bottle.,Put down the bag.,Put down the box.,Hold the shoe.,Put down the bag. 7022,T2J3M_9.2_15.8,What is the person able to do after opening the door?,2,Feasibility_T6_773,Feasibility_T6,Put down the cup/glass/bottle.,Sit on the sofa/couch.,Tidy up the closet/cabinet.,Close the door.,Tidy up the closet/cabinet. 7023,R9NRA_11.4_17.6,What is the person able to do after taking the cup/glass/bottle?,2,Feasibility_T6_848,Feasibility_T6,Wash the table.,Open the laptop.,Lie on the sofa/couch.,Eat the medicine.,Lie on the sofa/couch. 7024,XPDI1_0_5.8,What is the person able to do after drinking from the cup/glass/bottle?,3,Feasibility_T6_882,Feasibility_T6,Hold the pillow.,Sit on the bed.,Eat the sandwich.,Take the dish.,Take the dish. 7025,RAQNI_4.1_14.3,What is the person able to do after holding the blanket?,2,Feasibility_T6_885,Feasibility_T6,Take the paper/notebook.,Throw the clothes.,Take the clothes.,Lie on the sofa/couch.,Take the clothes. 7026,G87XG_7.3_12.5,What is the person able to do after sitting on the chair?,2,Feasibility_T6_899,Feasibility_T6,Take the bag.,Open the book.,Put down the book.,Take the pillow.,Put down the book. 7027,9K2TY_19.2_23.9,What is the person able to do after putting down the blanket?,3,Feasibility_T6_937,Feasibility_T6,Tidy up the blanket.,Sit on the sofa/couch.,Hold the mirror.,Throw the towel.,Throw the towel. 7028,6UDGS_5.5_14.7,What is the person able to do after holding the shoe?,1,Feasibility_T6_938,Feasibility_T6,Put down the bag.,Close the door.,Throw the bag.,Tidy up the towel.,Close the door. 7029,3064K_3_8.1,What is the person able to do after tidying up the blanket?,3,Feasibility_T6_978,Feasibility_T6,Open the laptop.,Sit on the bed.,Close the closet/cabinet.,Put down the clothes.,Put down the clothes. 7030,CF9QP_0_15.6,What is the person able to do after drinking from the cup/glass/bottle?,1,Feasibility_T6_986,Feasibility_T6,Throw the bag.,Hold the food.,Open the refrigerator.,Put down the phone/camera.,Hold the food. 7031,EXPOA_12.3_23.2,What is the person able to do after sitting at the table?,3,Feasibility_T6_1008,Feasibility_T6,Throw the food.,Close the laptop.,Tidy up the table.,Take the clothes.,Take the clothes. 7032,YPIKO_0_28.1,What is the person able to do after watching the television?,0,Feasibility_T6_1048,Feasibility_T6,Hold the food.,Put down the sandwich.,Sit at the table.,Put down the cup/glass/bottle.,Hold the food. 7033,D8OSC_0_4.2,What is the person able to do after walking through the doorway?,1,Feasibility_T6_1049,Feasibility_T6,Sit on the floor.,Throw the broom.,Take the food.,Hold the phone/camera.,Throw the broom. 7034,D8OSC_0_4.8,What is the person able to do after grasping onto the doorknob?,3,Feasibility_T6_1050,Feasibility_T6,Take the clothes.,Put down the pillow.,Open the bag.,Throw the broom.,Throw the broom. 7035,M1GW9_3.8_9.9,What is the person able to do after opening the door?,1,Feasibility_T6_1063,Feasibility_T6,Hold the clothes.,Throw the pillow.,Put down the cup/glass/bottle.,Take the laptop.,Throw the pillow. 7036,M1GW9_4.7_9.9,What is the person able to do after walking through the doorway?,2,Feasibility_T6_1065,Feasibility_T6,Hold the shoe.,Take the cup/glass/bottle.,Throw the pillow.,Close the door.,Throw the pillow. 7037,8G9A9_8.6_21.1,What is the person able to do after drinking from the cup/glass/bottle?,3,Feasibility_T6_1081,Feasibility_T6,Throw the clothes.,Open the book.,Tidy up the table.,Close the laptop.,Close the laptop. 7038,8G9A9_14.3_22,What is the person able to do after putting down the cup/glass/bottle?,0,Feasibility_T6_1082,Feasibility_T6,Close the laptop.,Throw the pillow.,Sit at the table.,Put down the food.,Close the laptop. 7039,8G9A9_3.6_14.7,What is the person able to do after holding the phone/camera?,2,Feasibility_T6_1083,Feasibility_T6,Put down the bag.,Throw the food.,Open the laptop.,Open the refrigerator.,Open the laptop. 7040,8G9A9_10.2_16.9,What is the person able to do after taking the cup/glass/bottle?,3,Feasibility_T6_1084,Feasibility_T6,Eat the medicine.,Throw the broom.,Tidy up the table.,Open the laptop.,Open the laptop. 7041,6VF2L_14.3_23.6,What is the person able to do after drinking from the cup/glass/bottle?,1,Feasibility_T6_1090,Feasibility_T6,Throw the bag.,Put down the blanket.,Put down the picture.,Put down the bag.,Put down the blanket. 7042,80E3X_8.8_14.1,What is the person able to do after turning on the light?,2,Feasibility_T6_1091,Feasibility_T6,Open the book.,Put down the broom.,Take the food.,Lie on the bed.,Take the food. 7043,HFTEO_1.9_11.8,What is the person able to do after tidying up the clothes?,2,Feasibility_T6_1104,Feasibility_T6,Put down the sandwich.,Open the door.,Sit on the floor.,Tidy up the table.,Sit on the floor. 7044,HFTEO_0_12.4,What is the person able to do after holding the clothes?,3,Feasibility_T6_1107,Feasibility_T6,Put down the shoe.,Tidy up the closet/cabinet.,Close the door.,Sit on the floor.,Sit on the floor. 7045,HFTEO_0_11.5,What is the person able to do after throwing the clothes?,2,Feasibility_T6_1108,Feasibility_T6,Throw the food.,Throw the shoe.,Sit on the floor.,Take the cup/glass/bottle.,Sit on the floor. 7046,8VWV2_1.6_7.3,What is the person able to do after sitting at the table?,1,Feasibility_T6_1113,Feasibility_T6,Throw the clothes.,Wash the dish.,Lie on the floor.,Put down the food.,Wash the dish. 7047,8VWV2_6.9_12.4,What is the person able to do after taking the food?,2,Feasibility_T6_1114,Feasibility_T6,Close the laptop.,Put down the shoe.,Wash the dish.,Tidy up the table.,Wash the dish. 7048,8VWV2_0_7.3,What is the person able to do after sitting on the floor?,3,Feasibility_T6_1115,Feasibility_T6,Take the book.,Take the box.,Lie on the sofa/couch.,Wash the dish.,Wash the dish. 7049,J84TZ_0_4.5,What is the person able to do after lying on the sofa/couch?,2,Feasibility_T6_1120,Feasibility_T6,Lie on the sofa/couch.,Put down the clothes.,Hold the blanket.,Tidy up the towel.,Hold the blanket. 7050,O2OUX_7.8_12.7,What is the person able to do after holding the broom?,3,Feasibility_T6_1123,Feasibility_T6,Throw the broom.,Tidy up the table.,Lie on the bed.,Close the laptop.,Close the laptop. 7051,RKGG5_6_10.7,What is the person able to do after throwing the broom?,0,Feasibility_T6_1125,Feasibility_T6,Lie on the sofa/couch.,Sit on the sofa/couch.,Open the book.,Take the cup/glass/bottle.,Lie on the sofa/couch. 7052,RKGG5_7_11.5,What is the person able to do after taking the pillow?,3,Feasibility_T6_1126,Feasibility_T6,Take the cup/glass/bottle.,Close the refrigerator.,Close the closet/cabinet.,Lie on the sofa/couch.,Lie on the sofa/couch. 7053,J4RPL_16.5_22.5,What is the person able to do after putting down the paper/notebook?,3,Feasibility_T6_1141,Feasibility_T6,Wash the window.,Wash the table.,Open the book.,Throw the towel.,Throw the towel. 7054,55AH5_5.5_14.8,What is the person able to do after holding the food?,2,Feasibility_T6_1145,Feasibility_T6,Take the box.,Take the book.,Lie on the sofa/couch.,Take the laptop.,Lie on the sofa/couch. 7055,IZ2XX_0_5.3,What is the person able to do after walking through the doorway?,0,Feasibility_T6_1153,Feasibility_T6,Put down the book.,Wash the window.,Take the phone/camera.,Tidy up the table.,Put down the book. 7056,2GQDN_7.1_15.4,What is the person able to do after opening the door?,0,Feasibility_T6_1158,Feasibility_T6,Put down the box.,Tidy up the clothes.,Open the bag.,Sit at the table.,Put down the box. 7057,2GQDN_0_7.9,What is the person able to do after walking through the doorway?,0,Feasibility_T6_1159,Feasibility_T6,Put down the box.,Throw the food.,Take the cup/glass/bottle.,Wash the mirror.,Put down the box. 7058,DQ46N_0_6.7,What is the person able to do after sitting on the chair?,0,Feasibility_T6_1168,Feasibility_T6,Hold the dish.,Put down the bag.,Wash the dish.,Put down the cup/glass/bottle.,Hold the dish. 7059,DQ46N_4.4_9.6,What is the person able to do after opening the closet/cabinet?,2,Feasibility_T6_1169,Feasibility_T6,Put down the cup/glass/bottle.,Open the closet/cabinet.,Hold the dish.,Put down the sandwich.,Hold the dish. 7060,DQ46N_6.2_11.5,What is the person able to do after taking the cup/glass/bottle?,2,Feasibility_T6_1171,Feasibility_T6,Hold the pillow.,Wash the table.,Hold the dish.,Eat the medicine.,Hold the dish. 7061,GC1Q1_0_5.1,What is the person able to do after opening the door?,0,Feasibility_T6_1197,Feasibility_T6,Put down the clothes.,Throw the bag.,Take the food.,Sit at the table.,Put down the clothes. 7062,6C4DV_0_3.9,What is the person able to do after walking through the doorway?,2,Feasibility_T6_1239,Feasibility_T6,Take the shoe.,Take the box.,Hold the phone/camera.,Throw the food.,Hold the phone/camera. 7063,S1J2Q_22.3_28.4,What is the person able to do after closing the refrigerator?,2,Feasibility_T6_1263,Feasibility_T6,Take the paper/notebook.,Throw the blanket.,Take the food.,Open the book.,Take the food. 7064,3DO95_13.6_23,What is the person able to do after putting down the pillow?,0,Feasibility_T6_1267,Feasibility_T6,Hold the book.,Put down the paper/notebook.,Sit on the bed.,Wash the mirror.,Hold the book. 7065,MDG2T_0_14.9,What is the person able to do after sitting on the chair?,3,Feasibility_T6_1275,Feasibility_T6,Sit on the floor.,Wash the dish.,Hold the sandwich.,Throw the towel.,Throw the towel. 7066,MDG2T_6_10.7,What is the person able to do after putting down the dish?,0,Feasibility_T6_1276,Feasibility_T6,Throw the towel.,Take the food.,Hold the sandwich.,Put down the cup/glass/bottle.,Throw the towel. 7067,84893_0_3.5,What is the person able to do after watching outside the window?,2,Feasibility_T6_1279,Feasibility_T6,Throw the box.,Put down the cup/glass/bottle.,Hold the clothes.,Hold the phone/camera.,Hold the clothes. 7068,ZZ89F_0_9.6,What is the person able to do after walking through the doorway?,2,Feasibility_T6_1288,Feasibility_T6,Close the door.,Put down the cup/glass/bottle.,Close the refrigerator.,Take the bag.,Close the refrigerator. 7069,BZD0Q_3.7_10.2,What is the person able to do after walking through the doorway?,1,Feasibility_T6_1298,Feasibility_T6,Close the box.,Put down the cup/glass/bottle.,Sit at the table.,Wash the mirror.,Put down the cup/glass/bottle. 7070,KFI7N_0_5.3,What is the person able to do after walking through the doorway?,0,Feasibility_T6_1302,Feasibility_T6,Throw the broom.,Tidy up the closet/cabinet.,Open the bag.,Lie on the floor.,Throw the broom. 7071,HA02S_0_5.3,What is the person able to do after opening the door?,0,Feasibility_T6_1303,Feasibility_T6,Put down the broom.,Put down the paper/notebook.,Put down the clothes.,Take the paper/notebook.,Put down the broom. 7072,HA02S_0.9_7,What is the person able to do after walking through the doorway?,2,Feasibility_T6_1304,Feasibility_T6,Open the closet/cabinet.,Put down the clothes.,Put down the broom.,Hold the shoe.,Put down the broom. 7073,TVCQF_4.7_10.7,What is the person able to do after drinking from the cup/glass/bottle?,1,Feasibility_T6_1315,Feasibility_T6,Throw the bag.,Open the box.,Put down the phone/camera.,Put down the dish.,Open the box. 7074,NV4FC_0_3.1,What is the person able to do after sitting on the bed?,1,Feasibility_T6_1325,Feasibility_T6,Throw the clothes.,Hold the shoe.,Take the pillow.,Eat the sandwich.,Hold the shoe. 7075,NV4FC_15.7_21.3,What is the person able to do after throwing the shoe?,3,Feasibility_T6_1326,Feasibility_T6,Sit on the sofa/couch.,Put down the bag.,Put down the shoe.,Close the book.,Close the book. 7076,NV4FC_5.5_10.4,What is the person able to do after putting down the clothes?,3,Feasibility_T6_1327,Feasibility_T6,Take the cup/glass/bottle.,Close the book.,Hold the sandwich.,Hold the shoe.,Hold the shoe. 7077,MQ4YR_0_15.1,What is the person able to do after lying on the bed?,2,Feasibility_T6_1344,Feasibility_T6,Take the book.,Lie on the floor.,Take the bag.,Sit on the bed.,Take the bag. 7078,UDGP2_0_6.8,What is the person able to do after opening the refrigerator?,0,Feasibility_T6_1349,Feasibility_T6,Put down the food.,Open the refrigerator.,Sit on the sofa/couch.,Put down the sandwich.,Put down the food. 7079,OK2AF_0_14.1,What is the person able to do after watching the television?,0,Feasibility_T6_1364,Feasibility_T6,Take the book.,Hold the mirror.,Take the cup/glass/bottle.,Lie on the sofa/couch.,Take the book. 7080,5X5DT_0_11.8,What is the person able to do after holding the laptop?,2,Feasibility_T6_1368,Feasibility_T6,Close the laptop.,Open the door.,Take the bag.,Put down the towel.,Take the bag. 7081,VKXLL_16.9_21.9,What is the person able to do after putting down the dish?,1,Feasibility_T6_1370,Feasibility_T6,Tidy up the blanket.,Open the box.,Take the food.,Take the dish.,Open the box. 7082,F9YMU_0_9.1,What is the person able to do after closing the door?,2,Feasibility_T6_1375,Feasibility_T6,Put down the clothes.,Take the laptop.,Sit at the table.,Take the towel.,Sit at the table. 7083,PZD7Z_0_4.9,What is the person able to do after sitting on the chair?,0,Feasibility_T6_1391,Feasibility_T6,Put down the broom.,Open the laptop.,Hold the food.,Take the paper/notebook.,Put down the broom. 7084,PZD7Z_0_7.1,What is the person able to do after sitting at the table?,3,Feasibility_T6_1392,Feasibility_T6,Open the laptop.,Tidy up the closet/cabinet.,Put down the dish.,Put down the broom.,Put down the broom. 7085,MA15X_21.8_60.1,What is the person able to do after putting down the cup/glass/bottle?,3,Feasibility_T6_1403,Feasibility_T6,Sit on the sofa/couch.,Take the dish.,Take the shoe.,Throw the blanket.,Throw the blanket. 7086,V54TI_0_9.6,What is the person able to do after holding the picture?,2,Feasibility_T6_1405,Feasibility_T6,Hold the picture.,Wash the mirror.,Take the pillow.,Take the food.,Take the pillow. 7087,8DSGI_2.4_10,What is the person able to do after walking through the doorway?,1,Feasibility_T6_1412,Feasibility_T6,Put down the box.,Hold the book.,Put down the cup/glass/bottle.,Sit at the table.,Hold the book. 7088,8DSGI_1.3_11.1,What is the person able to do after holding the clothes?,3,Feasibility_T6_1413,Feasibility_T6,Wash the table.,Open the box.,Wash the mirror.,Open the book.,Open the book. 7089,8DSGI_5.8_10.9,What is the person able to do after throwing the clothes?,3,Feasibility_T6_1414,Feasibility_T6,Throw the bag.,Close the laptop.,Put down the blanket.,Open the book.,Open the book. 7090,BVHA7_7.6_17,What is the person able to do after walking through the doorway?,3,Feasibility_T6_1428,Feasibility_T6,Close the refrigerator.,Throw the bag.,Throw the clothes.,Take the cup/glass/bottle.,Take the cup/glass/bottle. 7091,BPH56_17.7_23.3,What is the person able to do after walking through the doorway?,3,Feasibility_T6_1430,Feasibility_T6,Tidy up the closet/cabinet.,Take the pillow.,Put down the broom.,Wash the dish.,Wash the dish. 7092,CCCUJ_11.6_18.9,What is the person able to do after closing the door?,0,Feasibility_T6_1448,Feasibility_T6,Put down the laptop.,Tidy up the closet/cabinet.,Hold the shoe.,Put down the cup/glass/bottle.,Put down the laptop. 7093,CCCUJ_0.7_7.7,What is the person able to do after walking through the doorway?,2,Feasibility_T6_1449,Feasibility_T6,Throw the towel.,Close the refrigerator.,Put down the laptop.,Close the box.,Put down the laptop. 7094,L9ANI_7.3_12.9,What is the person able to do after taking the towel?,0,Feasibility_T6_1453,Feasibility_T6,Wash the table.,Take the box.,Put down the phone/camera.,Open the bag.,Wash the table. 7095,L9ANI_0_4.1,What is the person able to do after walking through the doorway?,0,Feasibility_T6_1454,Feasibility_T6,Take the towel.,Throw the bag.,Hold the clothes.,Hold the box.,Take the towel. 7096,L9ANI_0_4.1,What is the person able to do after walking through the doorway?,1,Feasibility_T6_1455,Feasibility_T6,Throw the bag.,Wash the table.,Close the box.,Take the shoe.,Wash the table. 7097,L9ANI_0_10.8,What is the person able to do after putting the groceries?,3,Feasibility_T6_1456,Feasibility_T6,Hold the food.,Open the closet/cabinet.,Eat the medicine.,Wash the table.,Wash the table. 7098,Z97SD_18.1_24.1,What is the person able to do after opening the refrigerator?,1,Feasibility_T6_1468,Feasibility_T6,Wash the window.,Hold the food.,Eat the sandwich.,Put down the towel.,Hold the food. ================================================ FILE: data/multiple_choice_qa/TVQA.csv ================================================ ,a0,a1,a2,a3,a4,answer_idx,question,question_id,show_name,ts,video_name,answer 0,Because Sheldon is being rude.,Because he doesn't like Sheldon.,Because they are having an argument.,Because Howard wanted to have a private meal with Raj.,Because Sheldon won't loan him money for food.,2,Why is Howard frustrated when he is talking to Sheldon?,122039,The Big Bang Theory,20.16-25.12,s03e02_seg02_clip_10,Because they are having an argument. 1,seltzer,soda,Snapple,Iced tea,beer,4,"What drink bottle is at the table when Robin, Lily, Marshall, and Ted are talking to each other?",122040,How I Met You Mother,37.38-50.81,met_s03e16_seg01_clip_03,beer 2,Valerie was calderons dentist,Valerie was calderons physician,Valerie was calderons vet,Valerie was calderons accoutant,Valerie was calderons teacher,1,Who was valerie to calderon before she was killed and before they were intimate? ,122041,Castle,30.7-34.37,castle_s03e05_seg02_clip_22,Valerie was calderons physician 3,He went straight ahead.,He went back into the hotel.,He went to his left.,He went to his right.,He stood on the map.,4,Where did Joey go when he put down the map?,122042,Friends,32.8-38.08,friends_s04e23-24_seg02_clip_02,He stood on the map. 4,The guard shot his animal,His animal attacked him,A big dog took his animal,A patient tripped the animal,The guard was scared,2,Why is Wilson and Masters interrupted before talking to a guard?,122043,House M.D.,15.58-31.16,house_s07e19_seg02_clip_21,A big dog took his animal 5,deran,jasper,lucy,no one,cameron,2,Who claims that their tummy hurts when foreman is talking to deran in the kids room?,122044,House M.D.,73-76.56,house_s03e19_seg02_clip_19,lucy 6,The floor in an office.,A desk in an office.,A couch in a licing room.,A park bench.,The foot of the bed.,3,What was House sitton on when Eve asked if the guy felt bad?,122045,House M.D.,68.94-78.85,house_s03e12_seg02_clip_23,A park bench. 7,Keith drank beer,Keith played drum,Keith played guitar,Keith sing to the microphone,Keith got of the stage and walked out,4,What did Keith do when he was on the stage?,122046,Castle,0.46-9.22,castle_s05e07_seg02_clip_14,Keith got of the stage and walked out 8,Taub,Cameron,Chase,Foreman,Thirteen,0,Which other doctor is with Amber when they are preforming an MRI to a patient?,122047,House M.D.,56.78-66.46,house_s04e04_seg02_clip_02,Taub 9,Joey,Rachel,Monica,Chandler,Phoebe,2,Who enters the coffee shop after Ross shows everyone the paper?,122048,Friends,38.61-46.51,friends_s08e21_seg01_clip_00,Monica 10,In her buildings attic.,In her buildings basement.,In her car.,In her husbands office.,In her office.,1,Where did Beckett say they found the husband's breifcase after she said Cynthia got rid of the gun? ,122049,Castle,12.42-19.79,castle_s04e03_seg02_clip_25,In her buildings basement. 11,A men's restroom sign.,A women's restroom sign.,A no smoking sign.,A conference room sign.,A break room sign.,0,What sign did Beckett and Castle walk by when Beckett was talking about the passageway?,122050,Castle,2.96-9.62,castle_s04e06_seg02_clip_26,A men's restroom sign. 12,Chelsea,Murray Hill.,Hartford Hill.,Manchester Hill.,Morgan Hill.,1,Where was Esposito when he said he was at the epicenter? ,122051,Castle,0-5.55,castle_s06e12_seg02_clip_19,Murray Hill. 13,There was a lot of traffic.,They went out to dinner.,They had to swing by the lab.,They got lost.,Bernie took forever getting ready.,2,Why does Howard say they're late after walking in?,122052,The Big Bang Theory,0-8.85,s07e07_seg02_clip_09,They had to swing by the lab. 14,Kara's brain activity is slowing down.,Kara has no activity in the left temporal lobe.,Kara has increased levels of activity in the right frontal lobe.,Kara has no brain activity registering on the scan.,Kara is having an absence type seizure.,0,How is Kara's brain activity unusual after Foreman and Cameron look at her scan results/,122053,House M.D.,81.46-89.02,house_s02e22_seg02_clip_14,Kara's brain activity is slowing down. 15,He will imprison him,He would scar him,He would kill him if he left jail now,He will torture him,He will destroy his life.,2,What did Johnny say worried him when speaking to Beckett.,122054,Castle,38.2-60.02,castle_s02e13_seg02_clip_17,He would kill him if he left jail now 16,a tumor,a penis,a cancer,a ruptured tissue,material,1,What did Burke find when he held the object in his hands?,122055,Grey's Anatomy,22.27-43.18,grey_s01e02_seg02_clip_03,a penis 17,She opens the door and walks into the room.,She runs down the hallway.,She paints a photo.,She creates a sketch of a falcon.,She texts someone.,0,What does Hayley do when they are discussing falcon?,122056,Castle,57.86-67.04,castle_s08e05_seg02_clip_05,She opens the door and walks into the room. 18,Chandler waslooking at stars.,Chandler was eating a cheeseburger.,Chandler wasmaking a cake.,Chandler wasdoing jumping jacks.,Chandler was smoking a cigarette.,4,What was Chandler doing when Phoebe turned around on her stool?,122057,Friends,19.18-59.03,friends_s03e17_seg02_clip_01,Chandler was smoking a cigarette. 19,House thought there was going to be a surprise party for him.,House was told that he was being terminated,House was told that patients were sueing him,Foreman did not tell house happy holiday,House saw candycanes and thought that the interns were mocking him,4,Why was house upset with the staff when he walked in the room ,122058,House M.D.,0-24.04,house_s01e05_seg02_clip_01,House saw candycanes and thought that the interns were mocking him 20,Chandler wants to leave because he has to make a phone call.,Chandler wants to leave because he has a date.,Chandler wants to leave because they are all mad at him.,Chandler wants to leave because he is hungry.,Chandler wants to leave because he is tired (wiped).,4,Why does Chandler want to leave after hanging out with the group.,122059,Friends,5.9-59.03,friends_s02e04_seg02_clip_14,Chandler wants to leave because he is tired (wiped). 21,Couch,Pet,Coffee,Television,Pen,4,What was Chandler playing with before Ross left?,122060,Friends,4.2-15.01,friends_s03e12_seg02_clip_18,Pen 22,A tape recorder,A gun,Plastic bags,Handcuffs,Nothing,2,What is Beckett holding when she walks into Vong's prison cell?,122061,Castle,28.65-34.56,castle_s02e13_seg02_clip_17,Plastic bags 23,The group of friends needs to help Wendy carry the large bottle. ,The group of friends can't drink the whole bottle in one sitting. ,The group of friends have to be nice to one another. ,"The group of friends has to yell ""Cheers!"" really loudly when they toast with the new bottle?",The group of friends have to give Wendy a large tip. ,0,What is the one stipulation that Wendy says when she agrees that the group of friends can have the bottle of champagne?,122062,How I Met You Mother,46.95-51.46,met_s03e07_seg02_clip_03,The group of friends needs to help Wendy carry the large bottle. 24,They hadn't said love to each other yet.,He told her he didn't love her.,He was disliked her.,They weren't even dating.,She is his stalker.,0,"Why did Ross think it was a weird Idea to say ""Love Ross and Mona"" on their card after she asked? ",122063,Friends,20.04-29.04,friends_s08e11_seg02_clip_04,They hadn't said love to each other yet. 25,Raj says he broke it on purpose. ,Raj didn't break anything. ,Raj says he fixed the wheel. ,Raj says he fixed the handle. ,Raj broke the wheel and the handle. ,4,What part of the suitcase does Raj say he broke after he handed it to Howard?,122064,The Big Bang Theory,16.31-17.25,s06e15_seg02_clip_00,Raj broke the wheel and the handle. 26,A cell phone,A mug,A pen,A brush,A laptop,2,What is Beckett holding after Tommy said he didn't want anyone to get hurt?,122065,Castle,23.49-33.43,castle_s03e21_seg02_clip_19,A pen 27,Because Leonard kissed a girl.,Because Leonard is not lying.,Because Leonard went to the movie alone.,Because Leonard want to quit Penny.,Because Leonard drunk her coffee.,0,Why Leonard felt embarrassed when talking to Penny?,122066,The Big Bang Theory,15.23-62.15,s08e24_seg02_clip_14,Because Leonard kissed a girl. 28, the voice on the answering machine says she is calling for Monica, the voice on the answering machine says she is calling for Phoebe, the voice on the answering machine says she is calling for Joey,the voice on the answering machine says she is calling for Ross , the voice on the answering machine says she is calling for Steve,0,Who does the voice on the answering machine says she is calling for when Chandler's voice comes on?,122067,Friends,0-13.96,friends_s06e22_seg02_clip_10, the voice on the answering machine says she is calling for Monica 29,"No, House doesn't want to cut his leg off","Yes, House does want to cut his leg off",House is still thinking about it,House isn't given the option about his leg,House leaves the decision to Stacy,0,Does House want the doctors to cut off his leg when Stacy asks him to do so?,122068,House M.D.,20.69-26.41,house_s01e21_seg02_clip_22,"No, House doesn't want to cut his leg off" 30,stay married,fooling around,having affairs,having parties,telling lies,0,What does Monica feel that she and Ross cannot keep doing when talking?,122069,Friends,18.86-22.44,friends_s06e01_seg02_clip_14,stay married 31,CSF,CCF,CVC,MRI,CFC,0,What sample does house want from george when talking to cameron and foreman outside of georges room?,122070,House M.D.,0-4.75,house_s03e06_seg02_clip_17,CSF 32,Sheldon's computer,Sheldon's grandmother,Sheldon's brain,Sheldon's job,Sheldon's best friend,1,What big gun did Howard use when he was arguing with Sheldon?,122071,The Big Bang Theory,9.98-25.09,s03e17_seg02_clip_13,Sheldon's grandmother 33,coffee,cup ,cooking pan ,plate,knife,2,What was Kate holding when she told Castle she worn Doc Martins? ,122072,Castle,2.81-10.76,castle_s07e09_seg02_clip_00,cooking pan 34,It floated,It disintegrated,It changed colors,It fell to the group,It disappeared,4,What happens to the garment after Castle holds it up?,122073,Castle,37.52-46.13,castle_s07e03_seg02_clip_26,It disappeared 35,She cracks her knuckles.,She cries a single tear.,She pulls on her ear.,Closes her lips and swallows.,She puts her head to the side.,3,What small physical action does Beckett do after Montgomery tells her she is torn up?,122074,Castle,70.52-78.98,castle_s03e22_seg02_clip_02,Closes her lips and swallows. 36,Bickram Scientific is listed as the distributor.,Bickram America is listed as the distributor.,Brickson Stall Scientific is listed as the distributor.,Princeton Scientific is listed as the distributor.,Vanguard Scientific is listed as the distributor.,0,Who is printed as the distributor of the Prednisone when Cuddy is hanging the IV bag for her mother?,122075,House M.D.,12.6-16.2,house_s07e11_seg02_clip_17,Bickram Scientific is listed as the distributor. 37,stopped playing the drums,Answered the phone,Sang louder,Squealed and stopped singing,ran out of the room,3,What did he do when Penny walked in? ,122076,The Big Bang Theory,26.55-34.68,s02e15_seg01_clip_00,Squealed and stopped singing 38,Because Leonard did not open the door,Because Penny does not support Sheldon,Because Penny was making fun of Sheldon,Because Penny said it was a little idea ,Actually Sheldon was happy with Penny,3,Why Sheldon was angry after talk with Penny?,122077,The Big Bang Theory,0-4.2,s01e09_seg02_clip_08,Because Penny said it was a little idea 39,Samantha left Alice's room,Maxie left Alice's room,Christina left Alice's room,Brenda left Alice's room,Destiny left Alice's room,2,Who left Alice's room before House came in,122078,House M.D.,58.58-75.91,house_s07e03_seg02_clip_25,Christina left Alice's room 40,Bailey.,Alex.,Meredith.,Cristina.,denny.,4,Who collapsed when Izzie was asking if someone page her?,122079,Grey's Anatomy,18.71-21.45,grey_s02e24_seg02_clip_07,denny. 41,Beckett says she really needs to go grocery shopping soon.,Beckett mentions her favorite movie.,Beckett mentions her favorite song.,Beckett says she's thinking about getting a dog.,Beckett mentions going to watch a baseball game.,4,What does Beckett mention on the phone that seems out of place when they have their conversation about meeting up?,122080,Castle,43.28-56.81,castle_s05e08_seg02_clip_24,Beckett mentions going to watch a baseball game. 42,upset,happy,bored,tired,angry,0,How did Amy feel when she spoke to Sheldon?,122081,The Big Bang Theory,0-13.81,s06e05_seg02_clip_03,upset 43,A gun.,A book.,A severed foot.,A helmet.,An arrow.,1,what did House pull out of the vent after he put his hand inside?,122082,Castle,73.43-80.06,castle_s08e21_seg02_clip_03,A book. 44,A pair of rubber gloves,A magnifying glass,An ink pen,A gun,A knife,1,What does Beckett hand to Lanie before Lanie uncovers a dead body?,122083,Castle,0-5.85,castle_s06e19_seg02_clip_05,A magnifying glass 45,House's car was repossessed due to non-payment ,House won Wilson's car in a bet they had going for over a year,"House was dropped off by the police that morning, and needed to borrow a car ",Borrowing Wilson's car because he can't ride his motorcycle in his condition,There was a blizzard outside and House refused to walk in the snow with his cane,3,Why does House ask for Dr. Wilson's keys before he walks into his office?,122084,House M.D.,3.54-31.4,house_s03e16_seg02_clip_17,Borrowing Wilson's car because he can't ride his motorcycle in his condition 46,Penny.,Amy.,Bernadette.,Raj.,Howard.,1,Who got up to answer the door after Sheldon knocked?,122085,The Big Bang Theory,18.6-24.27,s07e05_seg02_clip_02,Amy. 47,House puts the money in his desk drawer.,House puts the money in his pocket.,House puts the money next to his computer monitor.,House puts the money in his wallet.,House puts the money in his shoe.,1,What does House do with the money the elderly gentleman gives him before Cuddy comes into the office?,122086,House M.D.,27.1-33.32,house_s07e02_seg02_clip_14,House puts the money in his pocket. 48,more than four times,more than five times,less than 2 times,more than 8 times,more than six times,0,how long did house say you have to let the phone ring for when calling a cripple?,122087,House M.D.,14.5-20.88,house_s05e12_seg02_clip_05,more than four times 49,House's office,In the parking lot,Outside his apartment ,Outside the patient's room,In the hospital atrium by the entrance ,0,Where does Cameron wait for House before she notifies him that she intends to quit her position?,122088,House M.D.,0-17.67,house_s03e24_seg02_clip_24,House's office 50,"Frank has yelled , Go Redskins and fell collapsed.",Frank has is now the father of an baby girl.,Frank has now seen the labour people clock out and leave work.,Frank is now the father of an baby boy.,Frank is looking to see if anyone knows what happened.,3,What news does Frank give the breakroom after he runs throught the hallway?,122089,Friends,42.79-45.45,friends_s05e03_seg02_clip_13,Frank is now the father of an baby boy. 51,with a tissue,with his hand,with a dry eraser,with his shirt,with leonards shirt,2,"how did sheldon erase ""dark matter"" on his dry erase board after leonard gave his opinion on the subject?",122090,The Big Bang Theory,54.02-61.04,s07e21_seg01_clip_00,with a dry eraser 52,the remote control,the curtains,the fruit from the bowl on the table,the pillows,kitchen utensils,4,What is the monkey playing with when he is at Monica's apartment?,122091,Friends,4.06-8.41,friends_s01e10_seg02_clip_06,kitchen utensils 53,He says she should go see her pastor.,He says that he loves her.,He says that it is not true.,He says she should go have a spa day.,He says she needs to go to therapy.,2,What is Chandler's response after Rachel says that she makes very bad decisions?,122092,Friends,17.29-31.8,friends_s05e02_seg02_clip_03,He says that it is not true. 54,In her kitchen,In her bedroom,In the bathroom,On the living room floor ,Locked outside the fire escape,2,Where is Penny when she calls for Sheldon's help?,122093,The Big Bang Theory,0.6-7.22,s03e08_seg02_clip_01,In the bathroom 55,On the table.,In his room.,In the waiting room.,In the car.,In the hallway.,0,where did Burke ask if they should leave the patient after he said no heroic measures?,122094,Grey's Anatomy,6.3-13.05,grey_s02e02_seg02_clip_08,On the table. 56,passed out,sat down, dropped the phone,hung up,cried,1,What did Mike do when he asked Monica if David is really going to propose to Phoebe?,122095,Friends,25.77-32.49,friends_s09e23-24_seg02_clip_15,sat down 57,the locker room,the cafeteria,the elevator,houses office,wilsons office,2,where are park and chase when they are together talking to each other alone?,122096,House M.D.,0-7.82,house_s08e16_seg02_clip_26,the elevator 58,A bar,A video game,A bookshelf,A dart board,A pool table,0,What was behind Ted and Marshall when they were talking with Barney about making Star Wars references around girls?,122097,How I Met You Mother,30.29-40.28,met_s03e05_seg02_clip_14,A bar 59,Because Ryan Thinks the person in the photo is in a cave in Africa and the software can detect subtle changes to determine location.,Because Ryan believes the person in the photo to be dead already and he needs to verify it.,Because Ryan thinks the person in the photo looks like his brother but can't be sure.,Because Ryan is discussing a suspect with no scars or tattoos and Ryan wants to identify the person. ,Because Ryan know FBI hates all his many requests for help and Ryan takes pleasure in annoying them. ,3,Why does Ryan say when reveiwing a photo that it needs to be sent to facial recognition software at the FBI?,122098,Castle,0-8.8,castle_s05e15_seg02_clip_05,Because Ryan is discussing a suspect with no scars or tattoos and Ryan wants to identify the person. 60,Chase,Taub,House,Park,Adams,1,Who claims to have proposed hepatic encephalopathy as the diagnosis for the patient at the center of the inquiry when questioned by Cofield?,122099,House M.D.,17.34-29.66,house_s08e11_seg02_clip_03,Taub 61,Laundry,A pizza,A sandwich,Nothing,A basketball and a notebook,4,What is Joey holding when he gets out of the recliner?,122100,Friends,0.31-4.37,friends_s08e20_seg02_clip_00,A basketball and a notebook 62,To bribe valerie,To show a token of calderons affection,To pay valerie back,To be a player,No reason,1,Why did Calderon give valerie the bracelette when he was questioned by beckett and castle?,122101,Castle,63.7-67.37,castle_s03e05_seg02_clip_22,To show a token of calderons affection 63,Ross,Joey,Chandler,Rachel,Gunther,1,Who calls Phoebe when they are pretending to be the fire inspector?,122102,Friends,7.5-18.61,friends_s06e18_seg02_clip_10,Joey 64,Standing by the door ,Lying on the table ,At the receptionist's desk ,Sitting by the door ,Sitting on the floor,1,Where is Howard when Raj tries to talk him out of getting a tattoo?,122103,The Big Bang Theory,44.43-55.54,s03e03_seg02_clip_11,Lying on the table 65,She fell asleep with her head on his shoulder,He smelled it on purpose out of curiosity,He was sitting behind her on the bus,Rachel's hair got in his face and she has a lot of it,He borrowed her shampoo to use on his own hair,3,What excuse does Ross use about smelling Rachel's hair when he's speaking to Phoebe in the coffee shop?,122104,Friends,0-13.73,friends_s06e03_seg02_clip_01,Rachel's hair got in his face and she has a lot of it 66,Bernadette is sitting on the floor.,Bernadette is sitting on Raj's lap.,Bernadette is standing next to Penny.,Bernadette is sitting on the sofa next to Amy.,Bernadette is lying on her bed.,3,Where is Bernadette when she tells Howard to see what she is making?,122105,The Big Bang Theory,16.75-26.36,s07e07_seg02_clip_04,Bernadette is sitting on the sofa next to Amy. 67,Because his DNA matches the DNA found at a the crime scene. ,Because he has blood on his hands. ,Because there are prints that match his. ,Because she was killed not long after he arrived at the center. ,Because he confessed. ,3,Why do Esposito and Ryan think that Ted murdered Marie when they are questioning him?,122106,Castle,43.66-47.71,castle_s03e09_seg02_clip_04,Because she was killed not long after he arrived at the center. 68,"Although the patient tested negative for steroids, possible past usage within the last five years can cause the current kidney damage.","Cameron first spotted the shrunken testicles as a sign for a lack of testosterone in the beginning, but everyone thought it was Addison's disease.",The patient is an athlete. Steroids for athletes is a common stereotype as expected. ,The irony is that Cameron was on the right trail all along.,Her guess is ironic because she is usually always right.,0,Why does House consider Cameron's guess for steroids as ironic after Chase identified the kidney?,122107,House M.D.,57.6-62.14,house_s01e12_seg02_clip_07,"Although the patient tested negative for steroids, possible past usage within the last five years can cause the current kidney damage." 69,In the locker room,In the records room in the hospital.,In the cafeteria,In the emergency room,In the x-ray room,1,Where was Foreman when he told Dr. Taub that he was stoned?,122108,House M.D.,27.7-33.95,house_s06e16_seg02_clip_12,In the records room in the hospital. 70,Castle is in trouble with the chief ,Castle thinks assassins are coming for him,Castle is in trouble with beckett,Castle isn't on edge,Castle knows something about espo,1,Why is castle on edge when he is trying to pour cream into his coffee?,122109,Castle,33.59-39.57,castle_s08e19_seg02_clip_19,Castle thinks assassins are coming for him 71,sixth,tenth,third,first,forth,4,How many times does Arthur say was the charm after Sheldon asks if he wants him to sing it again?,122110,The Big Bang Theory,17.61-27.24,s06e22_seg02_clip_17,forth 72,Black. ,Brunette. ,Red. ,Blond. ,Pink. ,3,What color hair does the woman have when she is in bed with Chandler?,122111,Friends,43.63-45.41,friends_s04e20_seg02_clip_20,Blond. 73,On the table to his left.,Over his right Shoulder on the wall.,On the table to his right.,Over his left Shoulder on the wall.,Behind him on the wall.,3,Where was the TV when Castle said he saved Beckett's life twice?,122112,Castle,17.25-24.52,castle_s02e21_seg02_clip_04,Over his left Shoulder on the wall. 74,rachel is overwhelmed,Rachel is cold,Rachel is making conversation ,Rachel needs a fan,Rachel is sad,0,Why does rachel ask if its hot in the restaurant after joeys reveals something to her? ,122113,Friends,34.82-40.33,friends_s08e16_seg02_clip_16,rachel is overwhelmed 75,The perfect amount,Enough for a good time,Enough to put down a horse,Not enough,Enough to open a bank,2,What amount of ketamine was Doug given before he died?,122114,Castle,58.27-62.79,castle_s02e14_seg02_clip_03,Enough to put down a horse 76,She walked away.,She took a picture with him.,She went to meet someone else.,She shook his hand.,She gave him a high five.,3,What did Phoebe do after the man told her he was her biggest fan?,122115,Friends,2.7-7.5,friends_s06e14_seg02_clip_05,She shook his hand. 77,a remote control,a marker,a sticker,a tv guide,a dog,1,What does Ross have in his hand when he tells the group who the TV guide comes to?,122116,Friends,0-5.19,friends_s04e12_seg02_clip_08,a marker 78,He gets a beer from the fridge. ,He runs his fingers through his hair. ,He runs his fingers through Rachel's hair. ,He leaves the apartment. ,He crosses his arms. ,4,What does Ross do after he puts his hands up?,122117,Friends,20.66-28.04,friends_s07e01_seg02_clip_17,He crosses his arms. 79,The logo on Sheldon't shirt is for Quaker Oats,The logo on Sheldon't shirt is for Capt Crunch,The logo on Sheldon't shirt is for Frosted Flakes,The logo on Sheldon't shirt is for Batman,The logo on Sheldon't shirt is for The Flash,4,Whose logo is on Sheldon's shirt when he is speaking to Mr. D'Onofio,122118,The Big Bang Theory,0-9.75,s05e18_seg02_clip_05,The logo on Sheldon't shirt is for The Flash 80,The child was crying loudly.,The child was quiet and well-behaved.,The child was unconscious.,The child began to have a seizure.,The child began to hyperventilate.,0,How was the child acting when his father held him in his arms for House to examine him?,122119,House M.D.,29.65-32.38,house_s01e15_seg02_clip_18,The child was crying loudly. 81,Her office.,The coffee shop.,Monica's apartment,Joey's apartment,Her massage parlor. ,0,"Where is Phoebe when she says, ""Surprise, look's who's back""?",122120,Friends,16.39-20.48,friends_s06e15-16_seg02_clip_36,Her office. 82,Massage parlour,Rachel's apartment,Monica's apartment,Coffee shop,Her apartment,4,Where did Phoebe say the guy could pick up after he comes over,122121,Friends,0-33.85,friends_s07e15_seg02_clip_08,Her apartment 83,He'll knock you out and drag you.,He'll shoot you.,He'll drive you home in handcuffs,We'll put you in jail.,He'll give you a sedative and carry you.,2,"How does Beckett respond when Castle says, if I refuse?",122122,Castle,33.89-49.73,castle_s07e20_seg02_clip_16,He'll drive you home in handcuffs 84,She needed help getting up,She was sick,She was hungry,She was in pain,She was bored,4,What did Katie say was wrong with her when Meredith was checking her chart?,122123,Grey's Anatomy,0-6.98,grey_s01e01_seg02_clip_09,She was bored 85,Listening to music,Nothing,parting at Raj's place,Talking quietly,Installing a new alarm system,4,What are the guys doing after the second scene starts?,122124,The Big Bang Theory,0-36.91,s03e13_seg02_clip_07,Installing a new alarm system 86,Jessica,Chandler,Monica,Adrian,Racheal,3,Who does Joey's character say goodbye to before being brought up to the ship to leave?,122125,Friends,22.97-33.05,friends_s08e19_seg02_clip_02,Adrian 87,He found a computer virus.,His computer crashed.,His floppy failed.,Amy was annoying him.,Leonard was annoying him.,2,Why is Sheldon upset when using his laptop?,122126,The Big Bang Theory,0-12.16,s05e05_seg02_clip_07,His floppy failed. 88,Lemonade,Soft drink,Water,Milk,Beer,4,What was Raj drinking when he was sitting at the table with Leonard and Howard?,122127,The Big Bang Theory,10.46-19.99,s04e14_seg02_clip_00,Beer 89,She says he doesn't need to tell her who else he is seeing. ,She gets up and walks out. ,She throws her drink in his face. ,She tells him that she doesn't feel good. ,She runs to the bathroom and climbs out the window. ,0,How does Emily react when Raj tells her about Lucy?,122128,The Big Bang Theory,16.81-40.51,s07e19_seg02_clip_15,She says he doesn't need to tell her who else he is seeing. 90,leg strengthening,voice,muscle toning,fat burning,acting,1,What kind of exercises did Alexis say she was doing when Castle had walked in?,122129,Castle,23.21-35.04,castle_s03e07_seg02_clip_00,voice 91,Earrings.,A bracelet.,A necklace.,A blue flower.,A blue brooch.,0,What did Martha give Beckett before she said it was something blue? ,122130,Castle,32.66-40.83,castle_s06e23_seg02_clip_26,Earrings. 92,They are standing near the door of the room where House is making his presentation.,They are seated at a conference table near the curtain.,They are standing near some hospital equipment by the curtain.,They are seated on a couch in front of the curtain.,They are seated in rows of chairs in front of the curtain.,3,"Where in the office are Taub, Chase, Park and Thirteen situated when House offers them martinis in advance of his unveiling?",122131,House M.D.,103.06-120.77,house_s08e05_seg02_clip_25,They are seated on a couch in front of the curtain. 93,8:00 at night.,8:00 in the morning,1:08 in the morning.,midnight,noon,0,What time is it when House is talking with Cole and Thirteen about what the patient had in his trunk and glove box?,122132,House M.D.,12.18-28.42,house_s04e05_seg02_clip_20,8:00 at night. 94,They are moving the patient into the bed,They are bathing the patient,They are feeding the patient,They are performing physical therapy with the patient,They are drawing blood from the patient,0,what are they doing with the patient when the interns come into the room,122133,Grey's Anatomy,76.13-86.02,grey_s03e19_seg02_clip_04,They are moving the patient into the bed 95,Castle picks up a clown figurine.,Castle picks up the kind chess piece.,Castle picks up the game timer.,Castle picks up a pair of marbles.,Castle picks up a tea cup.,2,What does Castle pick up from the chess table when examining the crime scene at the house with Beckett?,122134,Castle,23.01-24.85,castle_s04e15_seg02_clip_15,Castle picks up the game timer. 96,Joey has bought a boat.,Joey has bought a house.,Joey has bought a dog.,Joey has bought a new car.,Joey has bought a motorcycle.,0,What does Mr. Thompson announce Joey has bought after Joey is proclaimed the winner?,122135,Friends,11.61-30.17,friends_s06e24-25_seg02_clip_06,Joey has bought a boat. 97,playing cards,playing darts,dancing,eating,talking,1,What were Derek and Burke doing when they were at the bar?,122136,Grey's Anatomy,0-24.46,grey_s02e25_seg02_clip_00,playing darts 98,He said she fail on the fork.,He said he did it because he found out she was cheating on him.,He said he did it to prove to her that he loved her.,He said he did it on accident. ,He describes how it was an instinctual reaction to the pain that she inflicted on him. ,4,How does Kyle account for the Fork sticking out of Sylvia's neck after Sylvia said her jaw just shut?,122137,Grey's Anatomy,7.04-19.37,grey_s02e20_seg02_clip_03,He describes how it was an instinctual reaction to the pain that she inflicted on him. 99,Rachel ruins Julie's story by throwing herself on Ross.,Rachel ruins Julie's story by changing the subject.,Rachel ruins Julie's story by pretending to faint in the kitchen.,Rachel ruins Julie's story by obnoxiously crying in the bathroom.,Rachel ruins Julie's story by revealing the ending.,4,How does Rachel ruin Julie's story when she's talking to Ross' friends?,122138,Friends,0-31.94,friends_s02e01_seg02_clip_03,Rachel ruins Julie's story by revealing the ending. 100,The bathroom,A painting,A record player,Stairs,The mans body,3,What was in front of Taub when he was the lady in glasses if she smelled that?,122139,House M.D.,4.56-13.69,house_s08e18_seg02_clip_03,Stairs 101,Because Sheldon gives her a kiss.,Because Sheldon trusts her enough to share the contents of his locker with her.,Because Sheldon holds her hand.,Because Sheldon tells her she's beautiful.,Because Sheldon compliments her outfit.,1,Why does Amy thank Sheldon when they are sitting in his storage locker?,122140,The Big Bang Theory,0-28.99,s09e19_seg02_clip_16,Because Sheldon trusts her enough to share the contents of his locker with her. 102,a plate,keys,money,waffles,The Syrup,4,What did Leonard pick up off the table after the mother said I guess we are?,122141,The Big Bang Theory,19.54-22.64,s05e06_seg02_clip_10,The Syrup 103,13,7,10,2,5,1,What number lights up on the elevator panel before Castle starts explaining how he met the bride to Beckett?,122142,Castle,58.67-68.02,castle_s02e12_seg02_clip_12,7 104,A letter opener,A knife,A laptop,A phone,A gun,4,What pops up after Castle hits his desk?,122143,Castle,77.38-85.79,castle_s08e06_seg02_clip_05,A gun 105,He was looking for a pen.,He was looking through some papers.,He was writing something down.,He was reading text messages.,He was on his laptop.,3,What was Castle doing before Emma walked up to him?,122144,Castle,8.21-14.59,castle_s06e04_seg02_clip_10,He was reading text messages. 106,flower centerpieces,wedding cake,picture frames,champagne fountain,chocolate fountain,1,What is on the table beside Beckett when she alerts Castle to her presence?,122145,Castle,26.78-31.88,castle_s02e12_seg02_clip_12,wedding cake 107,Because Sheldon discovers that Colonel Williams is a only a mechanic.,Because Sheldon discovers that Colonel Williams is a Swedish physicist.,Because Sheldon discovers that Colonel Williams is an astronomer.,Because Sheldon discovers that Colonel Williams is not a fan of Richard Hawking.,Because Sheldon discovers that Colonel Williams is an engineer.,4,Why does Sheldon become annoyed when listening to Colonel Williams?,122146,The Big Bang Theory,47.54-66.03,s10e02_seg02_clip_07,Because Sheldon discovers that Colonel Williams is an engineer. 108,"So, that's it? You're just gonna give up?","Yeah, that works.",What did we miss?,Thank you.,You okay boy?,2,What did house say when he walked in the patients room?,122147,House M.D.,16.79-20.42,house_s04e03_seg02_clip_24,What did we miss? 109,Lily and Marshall were baking cookies.,Lily and Marshall were kissing.,Lily and Marshall were washing the dishes.,Lily and Marshall were cooking.,Lily and Marshall were cooki,3,What were doing Lily and Marshall when stand in the kitchen?,122148,How I Met You Mother,3.48-58.02,met_s03e11_seg02_clip_01,Lily and Marshall were cooking. 110,For coming to the wedding.,For being so great about everything.,For being a great mother in law.,For putting the wedding together.,For doing a great job with her son.,3,Why did Beckett thank Martha after Lanie left the room? ,122149,Castle,14.06-28.13,castle_s06e23_seg02_clip_26,For putting the wedding together. 111,A file,A book,A newspaper,A clipboard,Some napkins,2,What does Ross hit Chandler with after he says he doesn't feel anything special for him?,122150,Friends,7.82-15.33,friends_s01e18_seg02_clip_00,A newspaper 112,He won a championship of hopscotch ,He got stuck on a rollercoster,A donkey ate his pants,He kissed a buffalo,He slept through a stage performance of CATS,2,What did Lily say happen to Marshall in Trenton when they are sitting down,122151,How I Met You Mother,12.99-24.2,met_s02e09_seg02_clip_01,A donkey ate his pants 113,Cinder block,Wallpaper with flowers,Mirrored,Brick,Red painted walls,3,"What type of walls were in the stairwell when Penny, Leonard and Sheldon were climbing up to the apartment?",122152,The Big Bang Theory,32.88-38.77,s07e06_seg02_clip_00,Brick 114,playing video games,kissing bernadet,eating chinese food,decorating cookies,decorating a christmas tree,4,what is howard doing right when amy gets a call on her tablet?,122153,The Big Bang Theory,59.26-63.04,s07e11_seg02_clip_09,decorating a christmas tree 115,A turtleneck sweater,A tank top,A red dress,A suit and tie,A t-shirt and jeans,0,What was Beckett wearing when she and Castle were alone?,122154,Castle,33.89-43.13,castle_s06e12_seg02_clip_26,A turtleneck sweater 116,He is highly medicated ,Thirteen is in his face,His daughter is alive ,Cameron is kissing him,He beat House's bet ,1,Why is Mr. Harmon smiling when he wakes up from surgery? ,122155,House M.D.,57.06-68.56,house_s05e06_seg02_clip_22,Thirteen is in his face 117,She was fired,nothing,stupid ,idiot,bad girl,0,what did this clown from research say with Phoebe when Phoebe explained with Jack ,122156,Friends,36.24-63.03,friends_s06e15-16_seg02_clip_36,She was fired 118,Go out to eat. ,Sleep over.,Have a drink. ,See a movie. ,Have a homemade dinner. ,2,What does Monica ask Chandler if he wants to do later after he says he has to leave?,122157,Friends,22.55-27.68,friends_s03e06_seg02_clip_18,Have a drink. 119,Batman,Superman,Spiderman,The Flash,Aquaman,0,What character was Howard when he walked in?,122158,The Big Bang Theory,19.23-31.64,s04e11_seg02_clip_07,Batman 120,38 ,45,51,23,58,0,What number was found on the item after it was found in a pair of pants?,122159,Castle,10.12-17.6,castle_s07e01_seg02_clip_18,38 121,Her father is ill,She is getting a check up,She had a heart attack,Her mother is ill,She is volunteering. ,2,"Why is Phoebe in the hospital when she is talking to Ross, Chandler, and Monica?",122160,Friends,6.6-11.56,friends_s06e15-16_seg02_clip_22,She had a heart attack 122,Cuddy,Hamilton,Vogler,Wilson,John,1,Who offered foreman a job when they were at lunch together?,122161,House M.D.,82.05-87.15,house_s01e09_seg02_clip_17,Hamilton 123,A hummingbird dive bombed his mom. ,A hummingbird dive bombed his stroller to get to his sippy cup. ,A hummingbird dive bombed his stroller to get to the apple he was eating. ,A hummingbird dive bombed his dad to get to his grapes. ,A hummingbird dive bombed his bedroom to get to his cracker. ,1,What does Sheldon say is his first memory when he was young?,122162,The Big Bang Theory,10.71-13.39,s05e09_seg02_clip_05,A hummingbird dive bombed his stroller to get to his sippy cup. 124,Disappointed.,Fearful.,Angry.,Disgusted.,Happy.,4,How does Rachel appear when she tells Ross about her relationship with Joshua?,122163,Friends,15.05-37.78,friends_s04e20_seg02_clip_04,Happy. 125,dog,Towl,necklace,rope,nothing,1,"What is around Simon's nech when he say's ""It's over.""?",122164,How I Met You Mother,0-10.01,met_s03e16_seg02_clip_10,Towl 126,blood,wax,bluetooth,cigar,lipstick,0,what was on the bottom of the patients ear after he came out of the mri,122165,House M.D.,13.5-21.61,house_s03e01_seg02_clip_18,blood 127,To meet hawking,Please don't hurt my friend Bernadette,To keep his secreat,To go to the lab with him,To go on a double date with him and amy,0,What was Sheldon begging Howard to do when he seen Him?,122166,The Big Bang Theory,4.58-10.68,s05e21_seg02_clip_00,To meet hawking 128,Joey was hugging Chandler.,Joey was filming Chandler.,Joey was carrying Chandler.,Joey was ignoring Chandler.,Joey was copying Chandler.,1,What was Joey doing to Chandler when they both walked out the building?,122167,Friends,0-5.28,friends_s04e23-24_seg02_clip_02,Joey was filming Chandler. 129,on houses shoulders,a foot stool,the table,stilts,a ladder,4,what was fernando on when he was in houses kitchen going over the fire damage?,122168,House M.D.,49.97-59.75,house_s05e12_seg02_clip_20,a ladder 130,He accused her of cheating.,He said she has gotten too old.,He didn't want to hold her back.,He was having an affair.,He was in love with her best friend.,1,"What reason does Rebeca say her husband gave for giving her the divorce, after she says he held a gun to her mouth?",122169,Castle,69.01-91.41,castle_s04e08_seg02_clip_25,He said she has gotten too old. 131,The Mall,A Movie Theatre,A Park,A Bus Stop,The Store,3,Where is sheldon sitting at when he is accompanied by a man?,122170,The Big Bang Theory,20.82-58.64,s05e06_seg02_clip_14,A Bus Stop 132,On her husbands laptop.,On her husbands glasses.,On her husbands tie.,On her husbands cell phone.,On her husbands briefcase.,4,Where did Beckett say they found traces of Cynthia's husband's blood before Cynthia sat back? ,122171,Castle,15.64-22.55,castle_s04e03_seg02_clip_25,On her husbands briefcase. 133,Sheldon asked Penny to drive him to the store for milk. ,Sheldon asked Penny to drive him to the comic book store. ,"Sheldon asked Penny to drive him to Lake Geneva, Wisconsin to Gary Con.",Sheldon asked Penny to drive him to take him to Amy's house. ,"Sheldon asked Penny to drive him to Gary Con when they were sitting on Penny's sofa, not in the hallway. ",2,Where does Sheldon ask Penny to drive him when they are in the hall way of their apartment building?,122172,The Big Bang Theory,13.13-18.13,s08e16_seg02_clip_00,"Sheldon asked Penny to drive him to Lake Geneva, Wisconsin to Gary Con." 134,Walking down the sidewalk.,Standing in the living room.,Standing in Central Perk.,Sitting on the sofa.,Sitting in a restaurant.,2,Where were Rachel and Phoebe when they were discussing the phone?,122173,Friends,0-6.61,friends_s07e15_seg02_clip_01,Standing in Central Perk. 135,A cup.,A menu.,His cell phone,His laptop,A comic book. ,2,"What is in Sheldon's hand when he says ""I'll have a Rosewater Ricky""?",122174,The Big Bang Theory,14.11-17.41,s04e07_seg02_clip_14,His cell phone 136,A roach crawling,A scratch on her shoe,A bullet on the bullet,A slug in the wall,A hole in the ground ,3,What did Beckett view on her camera after kneeling down? ,122175,Castle,25.94-32.21,castle_s07e10_seg02_clip_17,A slug in the wall 137,"He said too bad, he was going to tell her.",He said he didn't like it either.,He said he could get her in for a full body scan later in the week.,He said she should just go home.,He said she was making things up. ,2,What did House tell Jodi when she told him she didn't like to be told what to do?,122176,House M.D.,71.47-84.3,house_s01e03_seg02_clip_03,He said he could get her in for a full body scan later in the week. 138,Toasting a bagel,Making coffee,Ignoring House,Relaxing,Making tea,1,What is Chase doing when the team is discussing the case?,122177,House M.D.,63.38-88.02,house_s08e17_seg02_clip_17,Making coffee 139,Smeared lipstick,Massive lipstick deposits,Cracked lips,"""Little"" Barney",His reflection in the lip gloss,3,What did Ted see on Stacy's lip when he began to kiss her?,122178,How I Met You Mother,9.99-16.34,met_s03e04_seg02_clip_12,"""Little"" Barney" 140,Two days before Bobby died,The same day he recorded them,The night before Bobby died,The morning before Bobby died.,Three days befoer Bobby died.,3,When did Zach deliver the CD after he bugged the office?,122179,Castle,62.12-72.47,castle_s02e20_seg02_clip_21,The morning before Bobby died. 141,Rachel bumped her head,Rachel is having a baby,Rachel skinned her knee,Rachel broke her hand,Rachel has gas,1,Why does rachel need a room when she and ross arrive at the hospital?,122180,Friends,63.9-67.91,friends_s08e23-24_seg01_clip_01,Rachel is having a baby 142,He stood up.,He said no.,He sat down.,He entered a room.,He made a phone call.,3,What did Montgomery do after he said something about this murder?,122181,Castle,38.55-48.42,castle_s03e22_seg02_clip_02,He entered a room. 143,Penny felt the female sender was trying to rekindle a romantic relationship with Raj. ,Penny said whoever sent it must be a lunatic. ,Penny explained that such a gift was a sign of intense hatred. ,Penny believed the gift to be a sign of respect from one scientist to another. ,Penny said the woman who sent it had no taste. ,0,How did Penny interpret the gift after Raj explained what it was? ,122182,The Big Bang Theory,32.11-49.52,s09e18_seg02_clip_01,Penny felt the female sender was trying to rekindle a romantic relationship with Raj. 144,She didn't mock him at all. ,She doesn't feel she is mocking him. ,She has the same issue as Sheldon,She finds him to be going over board with control issues. ,She agrees to help Sheldon. ,3,Why does Amy mock Sheldon after he asks for help. ,122183,The Big Bang Theory,36.91-60.02,s05e02_seg02_clip_09,She finds him to be going over board with control issues. 145,Receipts for an account.,The surveillance footage.,Information on Mandalay.,Reports on Mandalay.,The audio recordings of Mandalay.,1,What is Esposito going to look at on his computer after mentioning the bank?,122184,Castle,84.19-93.03,castle_s03e07_seg02_clip_19,The surveillance footage. 146,Call Ross a cab,Get dinner,Sabatoge it,Sell Ross Third Eye Blind Tickets,Read a book,2,What are Joey and Phoebe going to do before Ross' date?,122185,Friends,35.98-53.66,friends_s09e14_seg02_clip_04,Sabatoge it 147,Beckett said she has a meeting,Beckett said she has a party,Beckett said she has a new outfit,Beckett said she has a doctors appointment,Beckett said she has a dentist appointment,0,What did Beckett say she has when she is with Castle?,122186,Castle,44.75-54.05,castle_s08e01_seg02_clip_01,Beckett said she has a meeting 148,Amy would frame the jury for murder.,Amy would threaten the jury with violence.,The jury would not convict Amy and Sheldon because people love monkeys.,Amy would bribe the jury with money.,Amy would buy and give the jury gifts.,2,Why did Amy think a jury would not convict her and Sheldon after she taught Ricky how to shoot a poison dart?,122187,The Big Bang Theory,5.23-8,s04e21_seg02_clip_13,The jury would not convict Amy and Sheldon because people love monkeys. 149,To check in with the nurses.,To check on a new patient,To clock out for the night,To get a fresh cup of coffee,To check on her friend.,4,Where does Dr. Franzblau say he is going when he walks away from Rachel?,122188,Friends,29.62-45.7,friends_s01e23_seg02_clip_11,To check on her friend. 150,A puppy.,A cheese burger.,A new life.,A new lab coat.,A blood sample.,4,What did Cameron say she needed when She approached Chase?,122189,House M.D.,16.98-29.11,house_s06e03_seg02_clip_20,A blood sample. 151,House watched The Brady Bunch,House watched Matlock,House watched Scooby Doo,House watched Good Times,House did not watch anything,1,"What did House watch last night, when he is talking to Wilson?",122190,House M.D.,11.38-22.3,house_s01e09_seg02_clip_11,House watched Matlock 152,Beckett offers to pay off Sal's debts,Beckett offers to put a good word in with the DA,Beckett offers to have Sal transferred to a different prison,Beckett offers to put Sal in the witness protection program,Beckett offers Sal immunity,1,How does Beckett offer to help Sal when she asks Sal for help finding Cavallo?,122191,Castle,8.1-20.26,castle_s03e20_seg02_clip_24,Beckett offers to put a good word in with the DA 153,Sheldon put a hat on,Sheldon ran into the restroom,Sheldon played a video game,Meditation,Sheldon drank some coffee,3,What did Sheldon when he was seated in the living room,122192,The Big Bang Theory,33-40.82,s03e18_seg02_clip_08,Meditation 154,Rachel sat on the floor.,Rachel sat on a couch.,Rachel sat near the oven.,Rachel sat close to the door.,Rachel sat near the counter.,1,Where sat Rachel when holding a cup?,122193,Friends,55.52-57.03,friends_s01e20_seg02_clip_19,Rachel sat on a couch. 155,lunesta,klonopin,zoloft,metdormin,asprin,1,What kind of pills does Ryan tell Dr. Taub he has been selling after he confronts him? ,122194,House M.D.,9.66-19.33,house_s07e15_seg02_clip_06,klonopin 156,rahel cries over joey,rachels gets mad and then storms out,rachel reacts surprised and then continues making out with joey,rachel laughs hysterically,rachel shrugs and ignores joey,2,how does rachel react after finding out ross kissed charlie?,122195,Friends,18.78-26.42,friends_s10e01_seg02_clip_00,rachel reacts surprised and then continues making out with joey 157,Cameron,Foreman,Cuddy,Wilson,Chase,3,Who is House talking to when Thirteen enters the room?,122196,House M.D.,15.02-20.48,house_s05e01_seg02_clip_04,Wilson 158,A beer bottle. , A wine glass.,A plate.,A bowl.,A water cup.,1,What did the lady in the black velvet dress sit on the bar before she said hi to Raj?,122197,The Big Bang Theory,10.38-15.87,s02e21_seg02_clip_07, A wine glass. 159,singing,making out,eating dinner,cooking dinner,getting ready for bed,1,What were Penny and Leonard doing when they were drinking wine?,122198,The Big Bang Theory,6.71-17.7,s03e02_seg02_clip_06,making out 160,a air mask,a syringe,defibrillator paddles ,a light,an IV bag,2,what does the nurse hand chase after chase checked the patients pulse?,122199,House M.D.,84.17-90.02,house_s02e14_seg02_clip_07,defibrillator paddles 161,Phoebe as a pigeon,Charlie,Joey's grandma,Richard,Janice,0,Who leaves the first message when the gang is out?,122200,Friends,25.67-34.73,friends_s09e18_seg02_clip_11,Phoebe as a pigeon 162,They read their books,His students are all asleep.,His students walk out., They throw paper at him.,His students all start clapping.,4,What does Joey's classroom do after Joey apologizes?,122201,Friends,1.76-9.68,friends_s03e07_seg02_clip_20,His students all start clapping. 163,Phoebe tells Frank Ursula lives in Long Island.,Phoebe tells Frank Ursula lives in Greenwich Village.,Phoebe tells Frank Ursula lives in San Francisco.,Phoebe tells Frank Ursula lives in Soho.,Phoebe tells Frank Ursula lives in London.,3,Where does Phoebe say Ursula lives when she is answering Frank Sr.?,122202,Friends,16.75-21.4,friends_s05e13_seg02_clip_17,Phoebe tells Frank Ursula lives in Soho. 164,A haunted man,A hunted man ,A happy man,A hot man,A hedonistic man ,1,How does Colette describe Michael when she is talking about him to Castle and Beckett? ,122203,Castle,21.45-32.86,castle_s04e11_seg02_clip_10,A hunted man 165,She says she can walk away or accept Taub as he is,She says she can walk away and lose her way of life or be humiliated while living comfortably financially,She says she can throw the years she put into the marriage down the drain or try to win him back,She says she can save face or lose face,She says she can laugh all the way to the bank or let others laugh at her,0,What does Rachel say are her options when she and Taub are discussing their marriage?,122204,House M.D.,26.78-35.71,house_s06e18_seg02_clip_17,She says she can walk away or accept Taub as he is 166,adams,chase,foreman,taub,park,3,who does house slap on the back of the head when he is in the conference room with the team?,122205,House M.D.,71.61-77.58,house_s08e18_seg02_clip_12,taub 167,Gary approves whole-heartedly.,Gary thinks it is too soon.,Gary tells Chandler to break up with Monica.,Gary tells Chandler to move in with Gary instead.,Gary calls Monica.,1,How does Gary respond when Chandler says he will move in with Monica?,122206,Friends,40.14-47.22,friends_s05e21_seg02_clip_04,Gary thinks it is too soon. 168,Salary is about title,Salary is about tenure,Salary is about your leverage in negotiation,Salary is about education and experience,Salary is about who you are,2,What does Cuddy tell Foreman salary is about when he comes to her office?,122207,House M.D.,42.65-50.82,house_s06e10_seg02_clip_05,Salary is about your leverage in negotiation 169,bone,ball,money,frisbee,envelope,4,What does Ryan toss when talking about the money?,122208,Castle,28.11-36.88,castle_s07e18_seg02_clip_23,envelope 170,daisies,roses,tulips,dinner,Penny blossoms,4,"What did Howard, Raj, Leonard and Penny create when they helped Penny?",122209,The Big Bang Theory,0-17.65,s02e18_seg02_clip_12,Penny blossoms 171,yellow,green,white,blue,red,3,What color bed sheet are on the bed when Rachel is sitting talking with Ross?,122210,Friends,14.31-20.63,friends_s08e22_seg02_clip_07,blue 172,She was talking to an ex-boyfriend.,Phoebe was on stage singing.,She was at the bar drinking.,She was talking to Monica and Rachel.,She was sitting down and reading a book.,4,What was Phoebe doing when her boyfriend Tim surprised her at the coffee shop?,122211,Friends,25.51-29.71,friends_s08e05_seg02_clip_10,She was sitting down and reading a book. 173,That's not matter.,That is great.,The game is fun.,It really matters?,You are insane.,3,"What said Rachel before her friends said, yes at teh same time?",122212,Friends,6.96-10.44,friends_s03e09_seg02_clip_10,It really matters? 174,Because Mark picked up Rachel's phone. ,Rachel broke up with him. ,Rachel hung up on him.,Because Rachel needed Mark to help her.,Because Rachel put him on hold for an hour. ,3,Why did Ross bang his phone down when he was at his desk?,122213,Friends,19.48-25.97,friends_s03e12_seg02_clip_02,Because Rachel needed Mark to help her. 175,Jimmy made fun of Leonard.,Jimmy made Leonard run laps,Jimmy made Leonard take trash out.,Jimmy Mullins punched Leonard in face,Jimmy trashed Leonard's clothes.,3,"What did Leonard mention happened to him, when Leonard was getting the oven to use?",122214,The Big Bang Theory,1.32-11.55,s02e12_seg01_clip_01,Jimmy Mullins punched Leonard in face 176,black pickup,red van,black caravan,green motorcycle,blue sedan,4,What kind of car dropped often the victim according to Esposito after Beckett asks?,122215,Castle,8.13-10.84,castle_s05e20_seg02_clip_01,blue sedan 177,Castle is sitting on the couch when he is talking to his daughter,Castle is sitting in a chair when he is talking to his daughter,Castle is sitting at the kitchen table when he is talking to his daughter,Castle is sitting on the floor when he is talking to his daughter,Castle is sitting on the kitchen counter when he is talking to his daughter,3,Where is Castle sitting when he is talking to his daughter,122216,Castle,88.07-97.7,castle_s04e06_seg02_clip_26,Castle is sitting on the floor when he is talking to his daughter 178,Esposito,Beckett,A criminal,Ike,Kyra's mom,1,Who interrupts Castle and Kyra when they're talking about their potential wedding?,122217,Castle,17-34.01,castle_s02e12_seg02_clip_12,Beckett 179,Thirteen said she confirmed her appointment last week.,Thirteen said she confirmed her appointment last night.,Thirteen said she confirmed her appointment last month.,Thirteen said she confirmed her appointment 2 weeks ago.,Thirteen said she confirmed her appointment 3 weeks ago.,1,When does Thirteen say she confirmed her appointment when she is talking on the phone in the cab?,122218,House M.D.,10.8-20.26,house_s06e04_seg02_clip_07,Thirteen said she confirmed her appointment last night. 180,Cristina has the patient's chart in her hands,Cristina has a stethoscope in her hands,Cristina has a syringe in her hands,Cristina has a breathing tube in her hands,Cristina has the heart paddles in her hands,4,What does Cristina have in her hands before giving it to Sloan,122219,Grey's Anatomy,68.64-78.51,grey_s02e18_seg02_clip_18,Cristina has the heart paddles in her hands 181,Search for apartments,Find his soulmate,Do his taxes,Take off a ring that is stuck,Find a restaurant to eat at.,3,What is Esposito trying to do when the scene begins?,122220,Castle,0-13.02,castle_s04e18_seg02_clip_26,Take off a ring that is stuck 182,Martha said that it was a long speech.,Martha described it as lovely speech.,Martha told Castle that she thought his speech was quaint.,"Martha told Castle that for a writer, his speech was monotonous.",Martha announced that the speech Castle gave was heartbreaking.,1,How did Martha describe Castle's speech after he was at the table?,122221,Castle,18.26-22.27,castle_s07e23_seg02_clip_27,Martha described it as lovely speech. 183,was it pearls,how much did it cost,is it real,was it diamonds,put it on Amy,4,What did Amy ask Penny to do when she saw the tiara?,122222,The Big Bang Theory,17.77-28.92,s05e12_seg02_clip_15,put it on Amy 184,Went to the bar,Went to the resturant with Lily and Marshal,Watched Star Wars on the couch.,Went on a Date with Lily,Show ended,2,Where was Ted and Marshall after the bar scene?,122223,How I Met You Mother,20.4-33.8,met_s04e01_seg02_clip_09,Watched Star Wars on the couch. 185,The director has some tissue in his hand,The director has a watch in his hand,The director has a pencil in his hand,The director has a paddle in his hand,The director has a sponge in his hand,2,What is the director holding in his hand when he is yelling at the crowd,122224,Friends,31.8-41.02,friends_s06e10_seg02_clip_15,The director has a pencil in his hand 186,Blue,Green,Yellow,Orange,Purple,0,What color shirt does House have on when Wilson talks with him about having a mattress delivered?,122225,House M.D.,13.66-20.49,house_s06e05_seg02_clip_01,Blue 187,The son is stressed by the parents fighting,The son needs to know to feel better,The son will die and needs to know,It will show new evidence in the problem,The son will die if he does not,4,Why does House say that the parent has to tell the truth after the mother gets scared?,122226,House M.D.,36.54-53.65,house_s01e13_seg02_clip_21,The son will die if he does not 188,3 days a week,4 days a week,6 days a week,Just 1 day a week,2 weeks out of the month,1,How long does Monica say Chandler is going to be gone for when she's talking to him in the living room?,122227,Friends,0-4.88,friends_s09e03_seg02_clip_02,4 days a week 189,One of his employees didn't show up.,Raj ripped one of his prize comics.,He wasn't invited to join the scavenger hunt.,The store is empty today.,He got robbed.,2,Why is Stuart upset before Howard and Amy rush in?,122228,The Big Bang Theory,25.72-35.47,s07e03_seg02_clip_07,He wasn't invited to join the scavenger hunt. 190,Chang,Ying,Yang,Chong,Chung,0,Who told Taub that it is time to scan the patient for infections when he was standing in the lab?,122229,House M.D.,0-8.16,house_s07e05_seg02_clip_22,Chang 191,Chase,Foreman,House,Erick,Curtis,1,Who was sitting on the coach in the doctors lounge when Cameron came in and sat on the coach after putting her bag on the table?,122230,House M.D.,66.15-79.21,house_s04e06_seg02_clip_22,Foreman 192,A phone,A puppy,A briefcase,A huge tub of papers,A hug,3,What does Martha give to Castle after telling him she promised he would read a book,122231,Castle,63.26-70.7,castle_s04e18_seg02_clip_26,A huge tub of papers 193,Breaks the window,Uses a door key,It was unlocked,Went in the back,The open window ,1,How does House get into the home faster than Foreman after saying he is a disgrace? ,122232,House M.D.,17.55-28.81,house_s05e05_seg02_clip_05,Uses a door key 194,Sheldon says he will demonstrate how his last experiment turned him into a zombie. ,Sheldon says he will demonstrate how he was dropped when he was a baby. ,Sheldon says he will demonstrate how he slipped and hit his head last month. ,Sheldon says he will demonstrate how he was improperly instructed on driving. ,Sheldon says he will demonstrate how he dislikes pepsi cola. ,3,What does Sheldon say he will demonstrate when he is giving a speech?,122233,The Big Bang Theory,0.3-3.3,s03e16_seg02_clip_09,Sheldon says he will demonstrate how he was improperly instructed on driving. 195,No one would care.,She'd never get the job.,She would have to take ivermectin.,She would hang on longer than her normal life expectancy.,She's a cross between dog and human.,1,What did House say would happen to Amber when he dies?,122234,House M.D.,0-6.81,house_s04e03_seg02_clip_24,She'd never get the job. 196,last week at a coffee shop,high school,old job,when they were kids,med school,4,Where did norris say house and him met when he called him a bastard,122235,House M.D.,4.58-13.29,house_s06e11_seg02_clip_24,med school 197,Penny hit Priya.,Penny sat on Sheldon.,Penny screamed at Bernadette.,Penny called Howard to the apartment.,Penny danced in a circle.,2,What did Penny do after Bernadette wanted to quit?,122236,The Big Bang Theory,48.06-50.17,s04e22_seg02_clip_12,Penny screamed at Bernadette. 198,Barney arches his eyebrows and looks towards Jerry with a puzzled look.,Barney lays on the table.,Barney kisses Robin.,Barney dances with Ted.,Barney runs to the door.,0,What does Barney do when he says milk?,122237,How I Met You Mother,15.11-17.11,met_s06e19_seg02_clip_06,Barney arches his eyebrows and looks towards Jerry with a puzzled look. 199,A pool ball. ,The sign. ,A pool stick. ,The lamp. ,Chalk. ,3,What does Ross hit his head on when he is getting on a pool table?,122238,Friends,27.31-30.46,friends_s03e06_seg02_clip_19,The lamp. 200,Because there are no answers.,Because that's no way to live.,Because that won't make anything better.,Because it's not very nice to do that to yourself.,Because they should just try to be happy.,0,Why does Wilson tell his patients not to torture themselves after they've been diagnosed?,122239,House M.D.,78.75-91.04,house_s08e19_seg02_clip_20,Because there are no answers. 201,Covered him in blankets,Gave him more medications,Listened to his heart with a stethoscope,Shine a light into his eye,Looked into his mouth,3,What did the doctors do after they got a pulse back on the patient?,122240,House M.D.,89.77-93.03,house_s02e15_seg02_clip_15,Shine a light into his eye 202,Anya's boyfriend.,Anya's ex-husband.,Anya's former best friend.,Anya's boss.,Anya's brother-in-law.,0,"Who did Joyce say was staying with the victim, Anya at the bed and breakfast where she died when Joyce talking to Ryan?",122241,Castle,76.14-88.02,castle_s08e11_seg02_clip_09,Anya's boyfriend. 203,Animals,Love,People,Power,Someone's voice.,3,What does Anya say is the only that matters in Russia when she is talking with Beckett?,122242,Castle,62.12-87.88,castle_s08e11_seg02_clip_24,Power 204,Texts under the table,Lies in his bed,Sits with his feet on the desk,Dances out the part,Plays with his hands under the table,3,What does Ryan do when he tells Elodie his ideas for the play?,122243,Castle,54.7-63.22,castle_s08e20_seg02_clip_10,Dances out the part 205,Four,Two,Six,Five,,1,How many carafes are on the burner behind Joey when he was sitting in the coffee shop?,122244,Friends,0-2.5,friends_s09e12_seg02_clip_06,Two 206,Restrict his ability to talk to the news anchors ,Keeping him in the media spotlight,Stop his recklessness from happening,Remind him that he can not date patients,Show him he is not a immortal man,2,Which job does House say no one is doing before saying he can not be stopped from being premature? ,122245,House M.D.,19.12-29.13,house_s05e13_seg02_clip_04,Stop his recklessness from happening 207,A coffee shop,A bakery,A thrift shop,A bike shop,A jewelry store,3,What type of store was Ross parked beside when he tried to take Phoebe on a ride in his car?,122246,Friends,10.92-14.35,friends_s07e14_seg02_clip_02,A bike shop 208,House based his guess on cheese.,House's guesses had been wrong in the past.,House had low self confidence.,House based his guess on someone else's opinion.,House did not have enough time to gather data.,0,Why was House not sure his guess was right when he was playing Foosball?,122247,House M.D.,63.02-66.62,house_s02e14_seg02_clip_07,House based his guess on cheese. 209,They were wearing pants.,They were wearing bathrobes.,They were wearing socks.,They were wearing nothing.,They were wearing a coat.,1,What was Joey and Chandler wearing when the show came on?,122248,Friends,4.95-66.04,friends_s02e16_seg01_clip_00,They were wearing bathrobes. 210,A pencil,A book,A pen,A stapler,His cane,4,What does House pick up after setting down the file?,122249,House M.D.,0-67.81,house_s03e05_seg02_clip_20,His cane 211,A shopping bag,A cup of coffee,Her purse back,A book,A sheet of paper,4,What does Ryan give Beckett before she leaves?,122250,Castle,59.87-68.42,castle_s01e05_seg02_clip_08,A sheet of paper 212,On the street,By the window.,In a bar,On a plane,On top of a train.,1,Where is Gabe sitting when he is talking to House about his own death?,122251,House M.D.,17.75-59.87,house_s03e07_seg02_clip_22,By the window. 213,Phoebe was playing the guitar,Phoebe was playing the piano,Phoebe was playing the drums,Phoebe was playing the harmonica,Phoebe was not playing anything,0,What instrument did Phoebe play when she was singing?,122252,Friends,52.79-61.03,friends_s01e10_seg02_clip_01,Phoebe was playing the guitar 214,in the hospital room ,in the hallway ,in his office ,in the food court,in the elevator,0,Where is House when he has a conversation with the parents?,122253,House M.D.,1.39-9.71,house_s01e13_seg02_clip_21,in the hospital room 215,pizza,hockey stick,newspaper,shoe,spatula,1,What did Chandler pick up when he was talking on the phone?,122254,Friends,18.91-29.98,friends_s01e15_seg02_clip_13,hockey stick 216,Martha Stuart,Emeril,Wolf Gang Puck,Guy Fierri,Julia Childs,1,Who was on the television before Chandler rushed to turn it off,122255,Friends,14.5-30.25,friends_s05e04_seg02_clip_11,Emeril 217,Rachel said that she loved the guy that was one of the two candidates for the job.,Rachel said she was going to let her boss decide who to hire.,Rachel said she wanted to hire both candidates for the job.,Rachel said she was exhausted because the interviews had wore her out.,Rachel said she was going to flip a coin to decide who to hire.,0,What comment did Rachel make before she sunk down into the kitchen chair?,122256,Friends,3.14-15.4,friends_s07e04_seg02_clip_05,Rachel said that she loved the guy that was one of the two candidates for the job. 218,Izzie,Ben's mother,Ben,Jo,Molly,2,Who talks about their boyfriend after Cristina talks about hers?,122257,Grey's Anatomy,84.67-92.03,grey_s03e02_seg02_clip_16,Ben 219,Krusty the Klown,Mr. Van Der Meer,The patient,Chase,Magical Girl Madoka,3,Who was mentioned as being worried of getting fired when Cameron was talking to House?,122258,House M.D.,28.72-33.57,house_s01e14_seg02_clip_21,Chase 220,nurse,dancer,wrestler,musician,runner,2,What did Alex say he did when he was in school?,122259,Grey's Anatomy,0-20.75,grey_s02e14_seg02_clip_04,wrestler 221,Patrick throws the piano on the floor. ,Patrick plays the same song that House played back to him. ,Patrick faints. ,Patrick tries to play the song and then throws up. ,Patrick starts yelling that he can't see. ,1,How does Patrick react after House plays the song on the piano and then turns it to face him?,122260,House M.D.,14.4-67.07,house_s03e15_seg02_clip_17,Patrick plays the same song that House played back to him. 222,green,grey,blue,purple,black,4,"What color is the shirt Marvin is wearing when he say's ""I could'nt see...""?",122261,How I Met You Mother,53.26-63.03,met_s06e16_seg02_clip_14,black 223,"Hamilton said, ""You have the natural gift of horrible timing, Greg.""","Hamilton immediately exclaimed, ""Well, here's our missing resident narcissist!""","Hamilton said, ""Congratulations, Greg.""","Hamilton told House, ""Your services are no longer needed here.""",Hamilton asked House if he wanted to go grab lunch and discuss some things regarding his performance.,2,How did Hamilton greet House immediately after House and Foreman walked into John's room?,122262,House M.D.,70.05-72.23,house_s01e09_seg02_clip_20,"Hamilton said, ""Congratulations, Greg.""" 224,Because House was sure he was right as always.,Because House didn't want to hear anything from Thirteen.,"Because if House was wrong, the patient was dead.",Because House didn't want negativity anywhere in the room.,Because House was crossing his fingers that he was right.,2,Why did House tell Thirteen to shut up when she thought a liquid-filled bump was a fat deposit?,122263,House M.D.,92.24-98.44,house_s04e10_seg02_clip_24,"Because if House was wrong, the patient was dead." 225,His glass of alcohol.,His cell phone.,A laptop.,A piece of paper. ,A magazine ,2,What does Barney take from Ted when he says that they changed their email addresses?,122264,How I Met You Mother,37.51-40.76,met_s05e04_seg02_clip_02,A laptop. 226,He is standing up,He is laying down,He is being sick,He is eating,He is reading,1,What is Arthur doing when he said something to Sheldon about a children's party?,122265,The Big Bang Theory,37.7-42.93,s06e22_seg02_clip_17,He is laying down 227,A file,a gown,a cup of coffee,a clipboard,nothing,0,What is Taub holding when he comes out of the room?,122266,House M.D.,35.11-42.52,house_s05e17_seg02_clip_13,A file 228,Beckett.,Parker.,Mary.,Castle.,Ryan.,1,Who gets a phone call after sitting down?,122267,Castle,11.46-22.92,castle_s06e02_seg02_clip_23,Parker. 229,Shakes Danny's hand.,Whispers something to Beckett.,Claps.his hands.,Puts his arm around Beckett.,Sits down.,2,What does Castle do after Danny Valentine says let's put on a show?,122268,Castle,6.37-15.93,castle_s07e22_seg02_clip_03,Claps.his hands. 230,On the kitchen table,ON the coffee table.,In the fridge.,In the sink.,On the counter in the kitchen.,0,Where was the food when Phoebe said it was a spread?,122269,Friends,0-3.69,friends_s10e16_seg02_clip_04,On the kitchen table 231,A guitar,A tray of chicken wings,A tray of shots of alcohol ,Wine bottles,A tray of caps,4,What did Monica bring in for Joey when she walked in his apartment?,122270,Friends,41.42-60.03,friends_s07e19_seg02_clip_13,A tray of caps 232,Judge Winter has his hands placed under the heat,Judge Winter has his hands placed under a lamp,Judge Winter has his hands placed under a blanket,Judge Winter has his hands placed under a book,Judge Winter has his hands placed under his shirt,1,Where does Judge Winter has his hand place under when he is sitting down?,122271,House M.D.,0-7.28,house_s01e09_seg02_clip_11,Judge Winter has his hands placed under a lamp 233,They are having dinner at a restaurant. ,They are having breakfast at a diner after clubbing. ,They are having breakfast at a restaurant. ,They are having lunch at a bar. ,They are having dinner in Italy. ,0,"Where are Penny, Sheldon, and Amy when they are having this conversation?",122272,The Big Bang Theory,44.42-45.32,s04e01_seg02_clip_14,They are having dinner at a restaurant. 234,Disguisted,Angry,Excited,Sad,Shocked,2,How does Monica act after Joey comes out of his bedroom?,122273,Friends,50.73-61.09,friends_s07e19_seg02_clip_14,Excited 235,Beckett is outside,Beckett is sitting down,Beckett is on the ground,Beckett is at the bat,Beckett is in the bathroom,1,Where is Beckett when Castle mentions cryonic preservation?,122274,Castle,1.8-9.89,castle_s04e03_seg02_clip_24,Beckett is sitting down 236,She asked if they could get back together. ,She asked Ross to take care of writing Ross's mom a birthday card. ,She asked Ross to forgive her because she finally accepted that they were indeed on a break. ,She asked Ross to go to hell for being so rude. ,She asked Ross to give her a ride to the airport. ,1,What did Rachel ask Ross to do right before she was going to leave?,122275,Friends,57.95-64.03,friends_s10e16_seg02_clip_13,She asked Ross to take care of writing Ross's mom a birthday card. 237,Joyful,Happy,Thoughtful,Hungry,Unconcerned,2,How does House feel when he sees the stain on the carpet? ,122276,House M.D.,66.72-75.92,house_s03e01_seg02_clip_02,Thoughtful 238,Phone,A car,Building blocks,Notebook,A stuffed frog,4,What is House looking at before Scott asks Wilson about guarantee?,122277,House M.D.,34.39-39.61,house_s03e21_seg02_clip_02,A stuffed frog 239,Lanie,Castle,Beckett,Seeger,the judge,2,Who was Esposito talking to when he was talking about Lennon?,122278,Castle,3.45-12.93,castle_s03e21_seg02_clip_14,Beckett 240,Because Sheldon is taking credit for something they discovered together.,Because Sheldon keeps telling embarrassing things about him.,Because no one complimented him on his new job promotion.,Because his mom is completely absorbed in stories about Sheldon and ignoring him.,Because Sheldon keeps lying about his accomplishments at work.,3,Why is Leonard unhappy when Sheldon and Mrs Copper are talking?,122279,The Big Bang Theory,22.56-44.81,s08e23_seg02_clip_05,Because his mom is completely absorbed in stories about Sheldon and ignoring him. 241,He rips up a paper.,He runs to the bathroom.,He eats a pickle.,He opens the door and walks into the room.,He takes off his shirt.,3,What does Ross do after Joey talks about Buckingham Palace?,122280,Friends,16.25-23.61,friends_s04e23-24_seg02_clip_16,He opens the door and walks into the room. 242,Robin is holding a match,Robin is holding a duck,Robin is holding a dragon,Robin is holding a penguin,Robin is holding a clipboard,3,What is Robin holding when she walks away from Barney?,122281,How I Met You Mother,0-6.17,met_s06e08_seg02_clip_05,Robin is holding a penguin 243,Hispanic,White,Black,Native American,Asian,3,"According to Kevin, what ethnicity is the victim, Anne Cardinal, when he is talking to Beckett and Castle?",122282,Castle,63.68-68.2,castle_s05e20_seg02_clip_01,Native American 244,Because he remembered that he didn't have any money.,Because Penny said no before he could ask.,Because Sheldon cut him off to ask a question.,Because he forgot that he had to finish an assignment.,Because a guy came up the stairs.,4,"Why did Leonard not ask Penny to do something later with him, after she kissed him?",122283,The Big Bang Theory,18-28.92,s01e14_seg02_clip_15,Because a guy came up the stairs. 245,Because Monica got fired,Because Monica has been falling asleep on the job,Because Monica doesn't work at the Szechuan Dragon,Because Monica got in a fight with her boss,Because Monica broke the computer at work,2,What explanation did Monica give when she said why she got sent home from work?,122284,Friends,16.53-22.41,friends_s03e01_seg02_clip_08,Because Monica doesn't work at the Szechuan Dragon 246,Marshall and Lily are standing in the living room.,Marshall and Lily are sitting in the living room.,Marshall and Lily are sitting at the dining table.,Marshall and Lily are standing in the doorway.,Marshall and Lily are standing in the kitchen.,1,Where are Marshall and Lily when their guests decide to leave?,122285,How I Met You Mother,27.46-32.54,met_s05e04_seg01_clip_01,Marshall and Lily are sitting in the living room. 247,Ross,Rachel,Phoeb,Joey,Mindy,1,Who told Chandler Monica's secret about what she did when she was at the Hershey Factory?,122286,Friends,18.7-34.69,friends_s09e21_seg02_clip_03,Rachel 248,He needs him to help moving a couch.,He cant reach a book,He needs help figuring out an equation,He needs to borrow a pen,He needs a new area of focus,4,What does Stephen ask Leonard for help for when talking?,122287,The Big Bang Theory,36.92-61.02,s07e21_seg01_clip_00,He needs a new area of focus 249,House is certain the bear destroyed his car on purpose.,House is certain the bear ate his beef jerkey.,House is certain the bear chewed on his camping gear.,House is certain the bear followed him home.,House is certain the bear untied his knots.,4,What is House certain the bear did when discussing the bear's behavior with Wilson?,122288,House M.D.,0-3.8,house_s08e21_seg02_clip_16,House is certain the bear untied his knots. 250,She is throwing up in a bucket,She has a broken arm,She has a broken leg,She has a black eye,She's pregnant,4,What condition is Lydia in when she sits down in the waiting room with Joey?,122289,Friends,45.75-49.58,friends_s01e23_seg02_clip_01,She's pregnant 251,nonchalant,happy,upset,tired,hungry,2,How did Leonard feel when Stephanie offered to call Howard back?,122290,The Big Bang Theory,51.35-59.02,s02e08_seg02_clip_09,upset 252,Dr.Yang,Dr.Karev,Dr.Philmore,Dr.Grey,Dr.Courtney,1,Which Dr. was the last to put on his gloves after all the Dr.s were paged to OR One?,122291,Grey's Anatomy,8.75-72.63,grey_s02e10_seg02_clip_20,Dr.Karev 253,Joey opens a drawer.,Joey opens the closet.,Joey opens a safe.,Joey opens the fridge.,Joey opens a bottle.,3,What does Joey open up after walking into the apartment?,122292,Friends,55.52-57.69,friends_s08e02_seg02_clip_03,Joey opens the fridge. 254,magnets placed in a Buddha statue ,a concussion,sound waves pulsing through,the pins didn't move,an MRI,0,How did the pins in the patients brain move when she was in China?,122293,House M.D.,42.67-50.92,house_s05e04_seg02_clip_24,magnets placed in a Buddha statue 255,Marshall is at the end of the table.,James is at the end of the table.,Sam is at the end of the table.,Stuart is at the end of the table.,Robin is at the end of the table.,0,Who is sitting at the end of the table when everyone is at the bar?,122294,How I Met You Mother,0-10.23,met_s06e20_seg02_clip_06,Marshall is at the end of the table. 256,Carrots and celery,Cheese and crackers,Sandwiches,Apples,Meatballs,2,"What is on the yellow tray on the table next to the plate with a blue napkin when Lily, Robin, Ted and Barney are at Marshall's dad's wake?",122295,How I Met You Mother,12.75-15.55,met_s06e14_seg02_clip_00,Sandwiches 257,boxes of gloves,a bouquet of flowers,a fridge,a box of tissues,a painting ,4,What was behind Chase when he told Cameron that the kid is in pain?,122296,House M.D.,33.28-40.73,house_s01e02_seg02_clip_17,a painting 258,She says they must have the wrong person. ,She says she is ashamed of what she's done. ,She says she feels she is being wrongly accused. ,She says it is something she had to do. ,She says that they wouldn't understand. ,0,How does Jane respond after Castle welcomes Leann back from the dead?,122297,Castle,20.94-26.4,castle_s05e10_seg02_clip_24,She says they must have the wrong person. 259,Jill lied about it and said no to Rachel.,"Jill said yes, that she had been shopping all morning.",Jill said that she had only been shopping online.,Jill asked Rachel why did she want to know.,Jill told Rachel that it was none of her business.,0,How did Jill answer when Rachel asked her if she had shopped?,122298,Friends,42.48-50.75,friends_s06e13_seg02_clip_05,Jill lied about it and said no to Rachel. 260,Ross felt hungry.,Ross felt sad.,Ross felt suprised.,Ross felt loved.,Ross felt smart.,2,How did Ross feel when Rachel came in the apartment ?,122299,Friends,5.04-6.82,friends_s08e04_seg02_clip_10,Ross felt suprised. 261,just pants,nothing,PJ's,just a shirt,dress,2,"What is chandler wearing when Monica says ""stop trying to add more time to your massage.""?",122300,Friends,40.27-50.02,friends_s05e13_seg01_clip_00,PJ's 262,Kate used her phone,Kate started to dance,Kate did sit ups,Kate sat down,Kate drank coffee,3,What did Kate do after she turned around?,122301,Friends,8.4-17.41,friends_s03e20_seg02_clip_16,Kate sat down 263,Taub hands him a pill.,Taub hands him cash.,Taub hands him a cup of water.,Taub hands him a thermometer.,Taub hands him a needle.,1,What does Taub hand to the patient after pulling out his wallet?,122302,House M.D.,45.09-46.93,house_s07e15_seg02_clip_06,Taub hands him cash. 264,Beckett hugs Esposito after pushing Ryan on the floor.,Beckett screams and runs out the door crying.,"Beckett kisses Castle, sits down and watches TV.",Beckett walks to the break room to make a cup of coffee.,Beckett delegates Ryan and Esposito to find Agnes.,4,What does Beckett do after Ryan presents Scott and Linda for questioning?,122303,Castle,80.98-92.03,castle_s08e09_seg02_clip_09,Beckett delegates Ryan and Esposito to find Agnes. 265,But you guys were the perfect couple!,But you two were so close!,But you said you'd always be friends!,But what about that pact you made?,But Bffs are forever.!,4,What does Lily say when Robin says that she is no longer friends with Jessica?,122304,How I Met You Mother,1.77-4.43,met_s06e09_seg02_clip_04,But Bffs are forever.! 266,Alexis is outside being attacked,Beckett get yelled at,Castle comes in angry,The power cuts out,Ryan gets a phone call,4,Why is the team of police interrupted when listening to the recording?,122305,Castle,0-30.37,castle_s08e17_seg02_clip_22,Ryan gets a phone call 267,If house found out he had a kid.,If house found out that he was slow.,If House found out Foreman wanted him back.,If House found out Marcus was no fun.,If house found out Marcus was the janitor.,2,Why did Marcus say House wouldn't want Him back when he was talking to Foreman?,122306,House M.D.,10.53-19.79,house_s06e12_seg02_clip_23,If House found out Foreman wanted him back. 268,Marie's Grandfather was a chinese scientist,She spoke Mandarin,They found chinese ciggarettes at the crime scene,Marie's boyfriend said she was always making long distance calls from his phone,There were a ton of Chinese takeout boxes at the crime scene,2,Why does Kate think that Marie was working with the Chinese when she is talking in Montgomery's office?,122307,Castle,20.94-35.04,castle_s03e09_seg02_clip_20,They found chinese ciggarettes at the crime scene 269,some of his lunch,a bag,A small stack of papers,a cup of coffee,nothing,2,What does Taub give to House when they're in the office?,122308,House M.D.,60.86-69.83,house_s05e17_seg02_clip_13,A small stack of papers 270,A newspaper,A letter,A jacket,A flower,A purse,4,What was on Lily's chair when she was talking with Robin and Ted in the diner?,122309,How I Met You Mother,53.66-55.52,met_s02e02_seg02_clip_12,A purse 271,Castle,Ryan,Beckett,Montgomery,Lanie,1,Who shows Esposito footage of Victor after calling him over to the desk? ,122310,Castle,25.38-34.41,castle_s08e06_seg02_clip_09,Ryan 272,Beckett realizes Acosta escaped using the stairs.,Castle runs up behind Beckett to assist with catching Acosta.,Castle drops down on one knee and proposes to Beckett.,Esposito and Ryan scream for Beckett to enter the staircase.,Beckett dropped the flashlight Beckett was using to navigate after Acosta.,0,Why does Beckett backtrack and enter the staircase when in pursuit of Acosta?,122311,Castle,15.05-27.47,castle_s08e08_seg02_clip_12,Beckett realizes Acosta escaped using the stairs. 273,He told him to not say a word and be cool and ,He told him to act mad,He told him to act sad,He told him to act like he hated her,He told him to act like they had just gotten into a fight,0,How did Ross tell Chandler to act when Kathy was coming?,122312,Friends,19.73-26.98,friends_s04e13_seg02_clip_06,He told him to not say a word and be cool and 274,Vance left the dosed bottle on the counter so it was chemically traced. ,Vance forgot to swap the dosed bottle out with an empty one.,Vance is shown on footage spiking Emma's drink.,The chemicals in the spiked drink are found on Vance's hands.,Vance threw out the dosed bottle out at his house.,4,How does Ryan and Esposito know that Vance spiked Emma's drink after talking about the gift?,122313,Castle,56.74-66.72,castle_s06e04_seg02_clip_24,Vance threw out the dosed bottle out at his house. 275,A tablet,A laptop,An iPhone,A Samsung Galaxy,A desktop computer,1,What device was Howard's face shown on when speaking to Bernadette?,122314,The Big Bang Theory,0-6.17,s06e03_seg02_clip_10,A laptop 276,Esposito,Ryan,Castle,Alexis,Vikram,1,Who yells out for everybody to get down after AJ steals the guns from the policemen and starts shooting?,122315,Castle,80.67-96.03,castle_s08e01_seg02_clip_25,Ryan 277,Confused.,Embarrassed. ,Grateful.,Amused.,Angry.,4,How was Raj feeling toward Leonard and Penny after he greeted Cinnamon in the Vet's office?,122316,The Big Bang Theory,25.38-40.73,s07e15_seg02_clip_07,Angry. 278,They say that building a house is scary. ,They say that Sheldon is scary. ,They say that Amy is scary. ,They say that marriage is scary. ,They say that having kids is scary. ,3,What does Leonard and Penny say is scary when they are having dinner?,122317,The Big Bang Theory,3.08-21.57,s08e03_seg02_clip_13,They say that marriage is scary. 279,Barney lowers his glass and arches his eyebrows at Ted.,Barney kisses Robin,Barney dances with Ted.,Barney lays on the floor.,Barney hugs Marshall.,0,What does Barney do after Ted says Zoey wants him to bake cookies?,122318,How I Met You Mother,40.62-43.75,met_s06e16_seg01_clip_00,Barney lowers his glass and arches his eyebrows at Ted. 280,Esposito has his cellphone in his hand,Esposito has a cup of coffee in his hand,Esposito has a hot dog in his hand,Esposito has a case file in his hand,Esposito has his wallet in his hand,3,What does Esposito have in his hand before he sees Ryan in the hallway,122319,Castle,56.55-66.35,castle_s08e14_seg02_clip_18,Esposito has a case file in his hand 281,Taking the day off,Going to the doctor,Go to a therapist,Going to the bar,Headed to the mall,0,Where did ryan say he was going when questioned by esposito?,122320,Castle,88.3-97.03,castle_s04e04_seg02_clip_19,Taking the day off 282,Rajesh discovered a new elementary particle. ,Rajesh won a special grant.,Rajesh is spending time with Penny.,Rajesh is meeting a special mentor.,Rajesh received a promotion at work. ,2,Why does Rajesh appear to be so happy when he heads downstairs,122321,The Big Bang Theory,0-58.14,s02e04_seg02_clip_09,Rajesh is spending time with Penny. 283,In the trash can.,In Chase's hands.,In Sarah's hands.,In Alan's hands.,In House's hands.,4,Where was the bag of urine after Alan asked if Ian only had a virus?,122322,House M.D.,67.47-88.85,house_s02e17_seg02_clip_06,In House's hands. 284,cafeteria ,mens room ,his office ,cuddys office ,parking lot ,1,where does taub go after talking with chase,122323,House M.D.,13.2-20.25,house_s08e15_seg02_clip_12,mens room 285,"Rachel, Phoebe and Monica were in the living room.","Rachel, Phoebe and Monica were in the apartment hallways.","Rachel, Phoebe and Monica on the apartment balcony.","Rachel, Phoebe and Monica were in Rachel's bedroom.","Rachel, Phoebe and Monica were in the kitchen playing cards.",2,"Where were Rachel, Phoebe and Monica when they were discussing George?",122324,Friends,11.41-16.81,friends_s01e04_seg02_clip_16,"Rachel, Phoebe and Monica on the apartment balcony." 286,Phoebe and Monica were sitting on a couch in front of Rachel.,Phoebe and Monica spoke to Rachel over the speaker phone at home.,Phoebe and Monica were standing in front of Rachel.,Phoebe and Monica were sitting next to Rachel.,Phoebe and Monica were sitting behind Rachel.,0,Where were Phoebe and Monica when they spoke to Rachel?,122325,Friends,0-28.79,friends_s01e18_seg02_clip_00,Phoebe and Monica were sitting on a couch in front of Rachel. 287,Arnold,Jim ,Mike,Ander,Jack,4,"Who was Foreman talking to when he said ""Good news. We can take you off the IVIG.""",122326,House M.D.,83.74-89.73,house_s03e08_seg02_clip_06,Jack 288,Hotel.,Home.,Restaurant.,Work.,Park.,3,Where did Howard go to meet with Leonard when visiting him?,122327,The Big Bang Theory,28.33-31.91,s07e04_seg02_clip_09,Work. 289,Esposito stares humorously at Castle.,Espositio walks out the door.,Esposito hugs Castle.,Esposito asks Meredith on a date.,Esposito dances with Beckett.,0,How does Esposito react after Meredith calls out to Castle?,122328,Castle,27.92-37.38,castle_s01e06_seg02_clip_10,Esposito stares humorously at Castle. 290,A store.,A bar.,A casino.,A bus stop.,A police station.,1,Where was Ryan when he asked Beckett why a drug dealer had his gun? ,122329,Castle,34.51-57.06,castle_s04e04_seg02_clip_07,A bar. 291,He wants to see if Marshall would get mad,He wants to hang it on his wall,He wants to give it to someone as a gift,He has reached the peak of his physical beauty,He wants a reminder of his beauty when he grows old,3,What reason does Barney give after Rachel asks why he wants a nude portrait painted of himself?,122330,How I Met You Mother,21.65-33.52,met_s02e13_seg02_clip_13,He has reached the peak of his physical beauty 292,Because he told them a joke.,Because he did a funny little dance.,Because he tripped.,Because he always is doing something stupid.,Because his hair is messed up.,1,Why are Rachel and Monica laughing at Joey before he sits down at the table?,122331,Friends,0-8.99,friends_s04e04_seg02_clip_13,Because he did a funny little dance. 293,"He says ""Bingo"" and wins the game",He throws the card on the table and says I quit,He decides it's time to go home,He screams like a girl,He says he is going to back him up with his Strangling vines card.,4,What does Howard do after Raj plays his card?,122332,The Big Bang Theory,6.11-9.65,s03e05_seg01_clip_00,He says he is going to back him up with his Strangling vines card. 294,Chandler doesn't know who John Elway is.,Chandler doesn't know who Tony Gwynn is.,Chandler doesn't know who Jose Conseco is.,Chandler doesn't know who Paul O'Neill is.,Chandler doesn't know who Dan Marino is.,3,Who doesn't Chandler know when Rachel mentions his name?,122333,Friends,50.12-54.62,friends_s07e20_seg02_clip_02,Chandler doesn't know who Paul O'Neill is. 295,He says you are a loser Howard,He says you are weird Howard,He says you don't even have a PHD,He says I win this time,I am a winner,2,What does Sheldin say after Howard first speaks?,122334,The Big Bang Theory,11.2-35.57,s01e13_seg02_clip_03,He says you don't even have a PHD 296,Amy tells Penny to show some skin. ,Amy tells Penny to go away. ,Amy tells Penny to cover up. ,Amy tells Penny to try on a wedding dress. ,Amy tells Penny to take a picture of her. ,0,What does Amy say to Penny when she comes out of the dressing room?,122335,The Big Bang Theory,50.61-53.83,s05e08_seg02_clip_16,Amy tells Penny to show some skin. 297,He was killed.,He passed away peacefully.,"He worked, but was fired.",He broke a wrist,He lost an eye,0,What happened to Inigo Montoya's father when Howard tells his story?,122336,The Big Bang Theory,13.5-20.11,s09e05_seg02_clip_07,He was killed. 298,He runs into Raj. ,He runs into Sheldon. ,He runs into Amy. ,He runs into Howard. ,He runs into Penny. ,4,Who does Leonard run into when he is in the hallway?,122337,The Big Bang Theory,0-2.75,s06e12_seg02_clip_07,He runs into Penny. 299,On her hip,On Castle's shoulder,Over her mouth,In her hair,On Castle's head,1,Where does McCord place her hand after Castle says Beckett will be okay?,122338,Castle,4.02-13.42,castle_s06e02_seg02_clip_16,On Castle's shoulder 300,Green,Black,Orange ,Red,Blue,3,What color is the button by the door when the walk through?,122339,Castle,65.92-80.72,castle_s07e16_seg02_clip_20,Red 301,Cameron,Chase,Thirteen,Donald,Carly,2,Who did Cuddy say that House still hasn't replaced after they discussed the sausage fest?,122340,House M.D.,15.96-27.81,house_s07e06_seg02_clip_00,Thirteen 302,Joey,Garry,Ross,Barry,Chadler ,3,what name of Rachel's boyfriend when Rachel said ?,122341,Friends,2.21-63.03,friends_s06e15-16_seg02_clip_36,Barry 303,Because Dick Coonan's in the wind and Rathborne's is about to walk,Because Rathborne's in the wind and Dick Coonan is about to walk,Because Dick Coonan is innocent,Because Rathborne is innocent,Because Castle is upset,1,Why does Beckett feel she let down the investigation after speaking with Castle,122342,Castle,0-24.61,castle_s02e13_seg02_clip_24,Because Rathborne's in the wind and Dick Coonan is about to walk 304,happy,irritated,generous,gloomy,creepy,1,How did Sheldon feel when Stuart tried to offer help?,122343,The Big Bang Theory,33.8-48.38,s03e05_seg02_clip_04,irritated 305,a remote control,a pizza,a dog,a cat,a coat,0,What does Meredith pick up from the table after sitting on the couch?,122344,Grey's Anatomy,17.7-21.08,grey_s01e03_seg02_clip_25,a remote control 306,Esposito says the victim's name is Harold William and he is a 38-year-old doctor.,Esposito says the victim's name is Wyatt Henry and he is a 38-year-old attorney.,Esposito says the victim's name is Henry Wyatt and he is a 40-year-old attorney.,Esposito says the victim's name is Harold William and he is a 38-year-old attorney.,Esposito says the victim's name is Henry Wyatt and he is a 38-year-old attorney.,4,"Who does Esposito say the victim is before he, Castle, and Beckett reach the crime scene?",122345,Castle,0-6.3,castle_s04e09_seg02_clip_03,Esposito says the victim's name is Henry Wyatt and he is a 38-year-old attorney. 307,The roof caves in,Esposito and Sully bring a present to the group,There is a loud noise,The air conditioner breaks,The floor starts rumbling,1,What happens after Gates says they are dead in the water?,122346,Castle,18.67-32,castle_s06e04_seg02_clip_21,Esposito and Sully bring a present to the group 308,Sister,Wife,Cousin,Sister in law,Second cousin,1,What did Jeremy say his relation was to Tracy was when he was talking to Foreman? ,122347,House M.D.,38.57-55.1,house_s03e05_seg02_clip_05,Wife 309,Her boss.,From Hilary Clinton.,"Michelle obama, and Obama himself.",Her job.,Her mom.,2,Where did Honey say she gets emails from before Barney said her name to himself?,122348,How I Met You Mother,0-12.61,met_s06e15_seg02_clip_02,"Michelle obama, and Obama himself." 310,Chandler says 3,Chandler says 2,Chandler says 5,Chandler says 4,Chandler says 6,1,How many people does Chandler say he dated in college when he talks to Monica?,122349,Friends,9.57-17.12,friends_s07e06_seg02_clip_04,Chandler says 2 311,Begin to dance.,Arrest Fedi.,Take out his handcuffs.,Leave the apartment.,Have some tea.,0,What does Roy do after turning on music?,122350,Friends,56.53-78.34,friends_s10e11_seg02_clip_11,Begin to dance. 312,Howard said Gryllus assimilis stood for love.,"Howard said Gryllus assimilis stood for ""suck, you lose.""",Howard said Gryllus assimilis stood for anger.,Howard said Gryllus assimilis stood for celebration.,Howard said Gryllus assimilis stood for danger.,1,What did Howard say Gryllus assimilis stood for in Latin when he was showing Sheldon a book?,122351,The Big Bang Theory,3.41-5.89,s03e02_seg02_clip_10,"Howard said Gryllus assimilis stood for ""suck, you lose.""" 313,Smile,Cover his mouth,Play with his food,Drink his wine,Counts on his fingers,1,What does Ross do when he's talking about himself?,122352,Friends,45.85-49.75,friends_s06e08_seg02_clip_12,Cover his mouth 314,House and WIlson,Cuddy and House,Wilson and Foreman,Foreman and House,Cuddy and Foreman,3,Who is in the observationroom when they are overlooking a surgery?,122353,House M.D.,0-4.23,house_s04e09_seg02_clip_18,Foreman and House 315,"He leaves the room, he can't stand to see Izzie cry.",He gives her a tissue.,He takes his hand and wipes her tears.,He sits down next to her.,He starts crying too.,3,What does Alex do when Izzie starts crying.,122354,Grey's Anatomy,39.16-49.6,grey_s02e12_seg02_clip_24,He sits down next to her. 316,left the room,rolled over,grabbed a tissue,put his hands through his hair,took a drink,1,What did Derek do when Meredith told him that she was there when he wasn't?,122355,Grey's Anatomy,45.38-55.07,grey_s03e09_seg02_clip_30,rolled over 317,Sheldon says he gargled with tequila. ,Sheldon says he gargled with vodka. ,Sheldon says he gargled with rum. ,Sheldon says he gargled with sprite. ,Sheldon says he gargled with root beer. ,0,What did Sheldon say he gargled with when he sat down at the table?,122356,The Big Bang Theory,0-2.57,s04e23_seg02_clip_01,Sheldon says he gargled with tequila. 318,in a hammock,On Wilson's lap,On the floor,On the couch,under the desk,3,Where is couch when the team of doctors in white coats enter the room?,122357,House M.D.,16.02-25.37,house_s08e21_seg02_clip_02,On the couch 319,Drug dealing.,Campaigning Finance.,Influencing his government's economic policy.,The Chinese mafia.,Russian espionage.,2,What did Sophia say Mia's father was involved in after Beckett ask her why Mia was a target?,122358,Castle,77.62-85.29,castle_s04e16_seg02_clip_21,Influencing his government's economic policy. 320,a quarter,a dime,a penny,a tooth,a marble,0,What object did Wilson pull from Rachel's mouth after Wilson removed his hand?,122359,House M.D.,0-6.65,house_s07e05_seg02_clip_06,a quarter 321,Stands up and walks away from his seat.,Slams the burger down and makes a pouty face.,Throws his napkin over his plate and pushes plate away from himself.,Takes out his phone and starts googling other burger joints.,"Lifts the bun off his burger, adds more ketchup and takes another bite.",0,What does Regis Philbin do after he announces it isn't the right burger?,122360,How I Met You Mother,49.26-53.86,met_s04e02_seg02_clip_17,Stands up and walks away from his seat. 322,Amy feels loved. ,Amy feels proud. ,Amy feels happy. ,Amy feels sad. ,Amy feels hurt. ,4,How does Amy feel after Sheldon's speech about being happy by himself?,122361,The Big Bang Theory,44.54-46.92,s05e24_seg02_clip_14,Amy feels hurt. 323,Keys to the car with scratches on the carpet.,The chaneler had fallen and was put up with strange tinker bells.,The clothing in the bedroom dresser.,The wardrobe braket was hiding something or covering some strange position.,The alarm clock was deprogrmmed.,3,What did Castle notice when he looked over at the chandeler?,122362,Castle,64.68-68.67,castle_s01e04_seg02_clip_01,The wardrobe braket was hiding something or covering some strange position. 324,Ana wants to leave.,Ana begins to cry.,Ana thinks Beckett is trying to trap her.,Ana mentions her family's connections.,Ana is silent.,4,How does Ana react after Beckett asks Ana what she told Vega the first time?,122363,Castle,78.87-86,castle_s02e15_seg02_clip_17,Ana is silent. 325,Raj immediately called the woman who sent it and asked her to marry him. ,Raj said he had too much self-esteem to get back with the sender. ,Raj gave the gift to Penny. ,"Raj cried and hid his tears from Penny, Bernadette and Amy. ",Raj threw the gift away. ,1,What was Raj's response to the gift after he realized why it had been sent? ,122364,The Big Bang Theory,48.32-54.92,s09e18_seg02_clip_01,Raj said he had too much self-esteem to get back with the sender. 326,the cleaner who witnessed a crime,a physician,a nurse,a police officer guarding a patient,an injured man,4,Who does the man in the red shirt visit when he goes to the hospital?,122365,House M.D.,31.06-51.76,house_s02e01_seg02_clip_21,an injured man 327,water filling up the room,a shark,a tiger,snakes,spiders,2,what are beckett and castle looking at below them when they are trapped?,122366,Castle,18.88-25.18,castle_s04e10_seg02_clip_25,a tiger 328,Stop!,Thank you so much.,What are you doing?,Leave me alone.,You're not helping me.,3,What does Wilson say when House tries to help him?,122367,House M.D.,55.99-55.99,house_s08e19_seg02_clip_20,Leave me alone. 329,Chandler said he had been at a the library,Chandler said he had been at a speed dating event,Chandler said he had been at a woman's rally,Chandler said he had been at a car show,Chandler said he had been at the doctor,4,Where did Chandler say he had been after he came into the girls' apartment,122368,Friends,19.39-29.37,friends_s03e14_seg02_clip_20,Chandler said he had been at the doctor 330,Earl,The only connection she had was the club (bar),Kitty,A taxi,An ex-girlfriend ,1,What was the only connection Beckett had after Earl asked her what happened?,122369,Castle,0-6.26,castle_s03e01_seg02_clip_19,The only connection she had was the club (bar) 331,A sculpture,A Picture frame,A balloon,A flower,A chandelier,4,What can be seen behind House's head when Wilson is talking to him?,122370,House M.D.,4.37-9.22,house_s06e03_seg02_clip_20,A chandelier 332,His liver,His lungs.,His heart.,His spleen,His kidneys.,2,What organ is Brandon having the the tube run through before he becomes unconscious.,122371,House M.D.,1.41-4.7,house_s01e03_seg02_clip_21,His heart. 333,Tell her I am crazy,Give her some money,Tell her I walk in my sleep,Tell her I snore really loud,Tell her I am going to cry,1,What does Rachel tell Ross after she tells the woman behind the counter to give them a second?,122372,Friends,9.86-18.62,friends_s08e23-24_seg01_clip_01,Give her some money 334,George screams and runs away.,George tilts his head to the side and closes his eyes.,George passes out.,George dances with Meredith.,George wrestles Derek.,1,What does George do when he says there's a girl?,122373,Grey's Anatomy,47.79-50.97,grey_s02e02_seg02_clip_20,George tilts his head to the side and closes his eyes. 335,A phone,A bottle,A cup,A key,A glass,4,What is Barney holding when he is talking to Robin and Ted?,122374,How I Met You Mother,41.45-51.09,met_s02e01_seg02_clip_03,A glass 336,A huge bottle of champagne ,A huge bottle of beer,A huge bottle of soda,A huge bottle of wine,A huge carton of cigarettes,0,What is Marshall holding when he's talking to Lily at the bar?,122375,How I Met You Mother,0-6.66,met_s03e07_seg02_clip_14,A huge bottle of champagne 337,Penny was holding a raincoat and umbrella.,Penny was holding a laundry basket with detergent and clothes in it.,Penny was holding a flashlight and a screwdriver.,Penny was holding a bag with Chinese takeout in it.,Penny was holding a backpack and a jacket.,1,What was Penny holding when she told Zack she was still mad at him?,122376,The Big Bang Theory,47.61-50.96,s04e11_seg02_clip_05,Penny was holding a laundry basket with detergent and clothes in it. 338,2 years ago.,4 months ago.,1 year ago.,3 months ago.,6 months ago.,4,When was the last time the patient had radiation according Chase when Foreman was talking about it?,122377,House M.D.,31.06-42.31,house_s02e19_seg02_clip_15,6 months ago. 339,at the dining table,in front of the coffee table,behind Amy,at the window,at her kitchen island,4,Where is Penny standing when she pours a glass of wine?,122378,The Big Bang Theory,3.1-6.2,s06e01_seg02_clip_01,at her kitchen island 340,"Lily, Marshal and Ted","Lily, Marshal, Ted and Robin",Marshal Ted and Robin,Lily and Robin,Marshal and Ted,1,Who was sitting with Barney when he told his story?,122379,How I Met You Mother,40.92-59.57,met_s03e15_seg02_clip_03,"Lily, Marshal, Ted and Robin" 341,Pliers,Coffee cup,Ladder,Food,Books,1,What is House holding when he and Fernando are talking?,122380,House M.D.,46.88-53.06,house_s05e12_seg02_clip_20,Coffee cup 342,He thought it was funny.,He was confused.,He was mad.,He was jealous.,He ignored him. ,1,How did Howard react when Raj said he was very comfortable with his masculinity?,122381,The Big Bang Theory,28.68-41.8,s07e07_seg02_clip_00,He was confused. 343,Lee gave Beckett Tyson's new alias.,Lee told Beckett where to find Tyson.,Lee told Beckett where to find Tyson's footprints.,Lee told Beckett who killed his brother.,Lee told Beckett where to find some blood samples.,0,Why did Lee make suggestions for his prison sentence and parole when negotiating with Beckett?,122382,Castle,14.79-16.64,castle_s04e04_seg02_clip_25,Lee gave Beckett Tyson's new alias. 344,House put a doll on the desk,House put a mannequin on the desk.,House put a pillow on the desk,House put a sausage on the desk.,House put a book bag on the desk.,4,What did House put on a desk when Wilson checked his watch?,122383,House M.D.,34.7-39.33,house_s02e05_seg02_clip_00,House put a book bag on the desk. 345,House was with Chase,House was with Foreman,House was with Cuddy,House was with Thirteen in the car.,House was with Masters,3,Who was House with in the car when he was driving?,122384,House M.D.,117.06-159.3,house_s07e18_seg02_clip_25,House was with Thirteen in the car. 346,Rachel is at the store.,Rachel is at the mall.,Rachel is at the airport.,Rachel is at the train station.,Rachel is at the bus station.,2,Where is Rachel when she is trying to get a message to Ross?,122385,Friends,4.47-9.54,friends_s01e24_seg02_clip_12,Rachel is at the airport. 347,A laptop ,A glass of wine,A box of chocolate,A beer,A present,4,What was Penny holding when she was sitting on the couch with Bernadette? ,122386,The Big Bang Theory,0-5.7,s09e18_seg02_clip_01,A present 348,A tree.,A window.,A chalkboard.,A flower bouquet.,A woman.,2,What can you see behind Eric when he said Dave's lies finally caught up with him?,122387,Castle,14.37-18.29,castle_s08e04_seg02_clip_12,A chalkboard. 349,The hotel employee says that Great stayed for three days.,The hotel employee says that Great stayed for a month.,The hotel employee says that Great stayed for two months.,The hotel employee says that Great stayed for two weeks.,The hotel employee says that Great stayed for one night.,3,How long does the hotel employee say Greta stayed at the hotel when he is questioned?,122388,Castle,50.41-62.57,castle_s03e11_seg02_clip_17,The hotel employee says that Great stayed for two weeks. 350,Sandy saw Monica at the store,Sandy saw Joey at the store,Sandy saw Ross at the store,Sandy saw Chandler at the store,Sandy saw her mom at the store,1,Who did Sandy see at the store last week when she is talking?,122389,Friends,10.2-21.91,friends_s01e10_seg02_clip_16,Sandy saw Joey at the store 351,Cameron said she accepted his apology but they were not okay.,Cameron said yes she accepted his apology.,Cameron said no she was not okay with what Foreman did.,Cameron said it really wasn't important any more.,Cameron said she knew about it the whole time.,2,How did Cameron reply when Foreman apologized to her and said he needed to know they were okay?,122390,House M.D.,29.97-51.32,house_s02e21_seg02_clip_17,Cameron said no she was not okay with what Foreman did. 352,Neil had lied to Taub because he's competitive.,Neil was lying to Taub to make him feel better.,Neil said he was lying because he was ashamed.,Neil was lying to Taub because he hates his job.,Neil lied to Taub because he knew Taub would tell others.,1,Why was Neil lying to Taub after Taub asked him if he liked his job?,122391,House M.D.,33.31-38.26,house_s05e18_seg02_clip_12,Neil was lying to Taub to make him feel better. 353,Sorenson said he had been back for 5 days.,Sorenson said he had been back for two weeks.,Sorenson said he had been back for a couple of months.,Sorenson said he had been back for a couples of days.,Sorenson said he had been back for 8 months.,2,How long did Sorenson say he had been back after Beckett asked?,122392,Castle,70.03-72.7,castle_s01e09_seg02_clip_01,Sorenson said he had been back for a couple of months. 354,That Amy is a decorator ,That Amy is a child care provider ,That Amy is an author,That Amy is a Magazine Editor ,That Amy is a model,0,"What does Amy say is her career when Rachel says ""what career""?",122393,Friends,39.67-46.99,friends_s09e08_seg02_clip_16,That Amy is a decorator 355,started to leave,sat down,laid down,hit House,hugged House,0,What did the boy do after he started talking?,122394,House M.D.,35.21-40.93,house_s01e03_seg02_clip_22,started to leave 356,The Bells and Bows agency.,The Holly and Ivy agency.,The Jingle and Bells agency.,The Holly and Jolly agency.,The Bells and Holly agency.,4,Who did Dunne say Edmund's agent probably was when Beckett asked if he knew if Edmund had a job last night?,122395,Castle,72.86-80.01,castle_s05e09_seg02_clip_06,The Bells and Holly agency. 357,They were both in the kitchen.,"Monica was on the couch, Phoebe was in the kitchen.",They were both on the couch.,They were not home.,They were sitting at the kitchen table.,0,Where was Phoebe and Monica when Ross got startled?,122396,Friends,18.99-24.28,friends_s08e20_seg02_clip_14,They were both in the kitchen. 358,beer,glass of wine,a soda,glass of water,a smoothie ,2,What kind of drink does Raj have on his tray when he is talking with Sheldon?,122397,The Big Bang Theory,16.78-18.92,s03e21_seg01_clip_01,a soda 359,Herself.,Baby embryos.,The doctor.,Her friend.,A ghost.,1,Who is Phoebe talking to when she is in the exam room?,122398,Friends,24.41-43.02,friends_s04e12_seg02_clip_08,Baby embryos. 360,Everyone laughs at him,Everyone sits down,Everyone boos at him,Everyone claps for him,Everyone cheers him on,3,What does everyone do after the instructor finishes the lesson?,122399,Friends,3.31-9.64,friends_s06e17_seg02_clip_16,Everyone claps for him 361,Leonard was in the kitchen.,Leonard was in the bathroom.,Leonard was seated beside Penny on the couch.,Leonard was in the bedroom.,Leonard was at work.,2,Where was Leonard when Amy and Sheldon stormed into the room?,122400,The Big Bang Theory,0-3.89,s10e05_seg01_clip_01,Leonard was seated beside Penny on the couch. 362,scomapopaline,dopamine,melatonin,scopolamine,cyanide,3,What substance did Ryan research before listing side effects of it to Beckett and Castle?,122401,Castle,10.43-21.76,castle_s04e22_seg02_clip_19,scopolamine 363,cup,box of cereal,plate,book,baseball cap,1,What did Ross hold in his hand when he congratulates Monica?,122402,Friends,11.03-19.22,friends_s04e09_seg02_clip_00,box of cereal 364,On the whiteboard below the zombie photo.,In front of Castle on the whiteboard to the right of the zombie photo.,In front of Beckett on the whiteboard to the right of the zombie photo.,On the whiteboard in the center.,On the whiteboard to the far left.,1,Where was the photo of the street and cars after Castle walked up to the whiteboard?,122403,Castle,47.64-52.68,castle_s04e22_seg02_clip_11,In front of Castle on the whiteboard to the right of the zombie photo. 365,Stella is standing in the bathroom.,Stella is standing outside.,Stella is standing behind Ted.,Stella is standing in the basement.,Stella is standing on a chair.,3,Where is Stella standing before she walks up the stairs?,122404,How I Met You Mother,63.02-68.42,met_s04e03_seg02_clip_14,Stella is standing in the basement. 366,The table flowers are red,The table flowers are purple,The table flowers are yellow,The table flowers are blue,The table flowers are orange,2,What color are the table flowers when Chandler and Monica are at the restaurant,122405,Friends,0-9.76,friends_s06e24-25_seg02_clip_07,The table flowers are yellow 367,Chase handed House a radio.,Chase handed House a bar of soap.,Chase handed House a briefcase.,Chase handed House a walking cane and a book bag.,Chase handed House a cordless phone.,3,What did Chase hand House when he got up from the medical bed and was about to leave?,122406,House M.D.,38.46-45.25,house_s06e19_seg02_clip_02,Chase handed House a walking cane and a book bag. 368,Because House thought there needed to be more fun in the gloomy hospital,Because Foreman wanted to replace Wilson and House always pranks Wilson,Because House is mad at Foreman for trying to take away House's job,Because House thinks Foreman needs to learn how to have fun,Because Foreman is trying to turn the hospital into a prison,1,Why does House say he may have been the one to pull the prank when discussing the overflowed toilets?,122407,House M.D.,65.01-78.6,house_s08e21_seg02_clip_09,Because Foreman wanted to replace Wilson and House always pranks Wilson 369,mary,Brady,Steven,castle,Carlos,4,Who is the first person they want to talk to before they leave the apartment? ,122408,Castle,11.7-90.02,castle_s07e05_seg02_clip_02,Carlos 370,Irene is telling Connie to stay out of it,House is ignoring Connie,Connie has left the room,Connie is a figment of Irene's imagination,House told Connie to move behind him,3,Why does Connie disappear when we see things from House's perspective?,122409,House M.D.,62.72-95.03,house_s04e04_seg02_clip_14,Connie is a figment of Irene's imagination 371,Leonard pulls a handful of cash from his pocket.,Leonard takes his cell phone from his pocket.,Leonard takes a box of mints from his pocket.,Leonard takes box of condoms from his pocket.,Leonard takes his keys from his pocket.,0,What does Leonard pull from his pocket after going over to the computer desk in the living room?,122410,The Big Bang Theory,5.58-15.51,s03e12_seg01_clip_00,Leonard pulls a handful of cash from his pocket. 372,A candy bar,His cane,A newspaper ,A file,A hundred dollar bill ,3,What does House throw onto the table when telling the team to find what's missing,122411,House M.D.,16.17-25.87,house_s02e05_seg02_clip_01,A file 373,Sheldon is in the cafeteria.,Sheldon is in his office.,Sheldon talks with Dr. Cooper.,Sheldon is in the conference room.,Sheldon is in Amy's lab.,0,Where is Sheldon when talking to his friends?,122412,The Big Bang Theory,0-51.23,s08e05_seg01_clip_01,Sheldon is in the cafeteria. 374,because he wants to be a superhero and can't figure out how,because Amy has a better career path they he does and it isn't fair,because he didn't get the tenure even though he is the smartest,because he failed his drivers written exam,because he was up all night working on an experiment with no breakthroughs,4,Why is Sheldon upset after Leonard comes into the room,122413,The Big Bang Theory,11.97-24.25,s08e13_seg02_clip_00,because he was up all night working on an experiment with no breakthroughs 375,Foreman interrupts Wilson and House,Cuddy interrupts Wilson and House,Taub interrupts Wilson and House,13 interrupts Wilson and House,Chase interrupts Wilson and House,1,Which doctor interrupts Wilson and House when they are talking and getting lunch?,122414,House M.D.,69.25-80,house_s06e12_seg02_clip_10,Cuddy interrupts Wilson and House 376,Return of the Martian Invaders,Avatar,Mars Attacks,Batman,Planet of the Apes,2,What movie did Sheldon say they could watch when talking to Amy?,122415,The Big Bang Theory,13.68-60.81,s08e17_seg02_clip_15,Mars Attacks 377,That he had no way to get communications to them where he was stationed. ,That he never really wanted to have anything to do with them until now. ,That his job means that he can't have any communications or relationships to anyone. ,He had tried to get in touch with them but Castle's mother had told him to stay away. ,He traveled too much to worry about a woman he barely knew and a kid that he had never met. ,2,Why does Hunt say that he was never around after Castle asks him why he never let them know that he was out there?,122416,Castle,57.17-90.02,castle_s05e16_seg02_clip_21,That his job means that he can't have any communications or relationships to anyone. 378,That answer is not correct,"I don't need your help, Penny.",that answer is correct ,How did you know that?,"No, this can't be right ",1,What did Sheldon say after penny told him to put C down for the first question?,122417,The Big Bang Theory,0-45.77,s02e05_seg02_clip_09,"I don't need your help, Penny." 379,Kate is standing next to a brown table.,Kate is standing in front of potted plants.,Kate is standing next to a chair.,Kate is standing next to Joey.,Kate is standing next to a red chair.,0,Where is Kate standing when she asks Joey what they are going to do about the scene?,122418,Friends,0-8.49,friends_s03e20_seg02_clip_10,Kate is standing next to a brown table. 380,Operation Valkyrie,Operation Retrieve,Operation Enema,Operation Obstruction,Operation Chaser,0,What did House say was now in effect after Wilson said there had been three poops in half an hour?,122419,House M.D.,6.72-18.73,house_s07e05_seg02_clip_22,Operation Valkyrie 381,He has a gun,He has a partner,He has a knife,He has a camera,He has a warrant,1,What does Ryan discover after looking at the video of Victor?,122420,Castle,30.97-38.28,castle_s08e06_seg02_clip_09,He has a partner 382,Mr. Walters is in a truck stop.,Mr. Walters is on the train.,Mr. Walters is in a hospital.,Mr. Walters is at a mall.,Mr. Walters is in the park.,2,Where is Mr. Walters when Beckett and Castle conduct an interview about Mr. Walters' sighting in the woods?,122421,Castle,6.3-12.15,castle_s07e23_seg02_clip_02,Mr. Walters is in a hospital. 383,Potato chip,phone,wallet,ice cream,documents,0,What is Wilson holding in his hand after Cuddy says there is a nurses strike?,122422,House M.D.,4.15-7.06,house_s04e13_seg02_clip_06,Potato chip 384,3,1,2,4,5,0,How many of the patient's organs blew up according to Foreman when he was walking in the hallway with House? ,122423,House M.D.,7.05-11.28,house_s05e02_seg02_clip_01,3 385,She gets out a parking ticket.,She gets her phone.,She gets out money.,She gets out a dog.,She gets out a piece of paper. ,1,What does Kelly get out of her purse when talking to Castle and Beckett?,122424,Castle,11.25-18.45,castle_s04e13_seg02_clip_03,She gets her phone. 386,the car is empty,there is 13 people in the car,there is 30 people in the car,there is 1 people in the car,there is 3 people in the car,4,How many people were in the car when the Phoebe is driving?,122425,Friends,11.21-20.66,friends_s02e09_seg02_clip_17,there is 3 people in the car 387,"With toys, comic books, costumes and the Time Machine",With movie trivia,With all of their superhero shirts,Looking through telescopes at the sky,With fake science,0,What does Penny say the guys are wasting their lives with before leaving their apartment,122426,The Big Bang Theory,42.62-60.02,s01e14_seg02_clip_06,"With toys, comic books, costumes and the Time Machine" 388,He is reading a book.,He is coloring. ,He is sleeping. ,He is jumping rope. ,He is sitting on his dad's lap. ,2,What does the little boy do on the sofa when Phoebe is talking? ,122427,Friends,19.18-25.38,friends_s10e02_seg02_clip_12,He is sleeping. 389,Bottles of water.,Beer poured from a pitcher.,Cans of Coca-Cola.,Soft drinks in to-go cups..,Bottled beer.,3,What is the group drinking when they are eating their burgers?,122428,How I Met You Mother,3.68-7.37,met_s04e02_seg02_clip_17,Soft drinks in to-go cups.. 390,Vulcan was Beckett's mother's co-worker,Vulcan was Beckett's stepfather,Beckett thinks Vulcan killed her mother,Vulcan was Beckett's mother's neighbor,Vulcan was Beckett's mother's friend,2,What relationship does Beckett say that Vulcan Simmons has to her mother when discussing his run for office with Castle?,122429,Castle,17.1-37.81,castle_s06e22_seg02_clip_04,Beckett thinks Vulcan killed her mother 391,Castle is confused because he had a different line of thinking.,Castle is confused by the terminology.,Castle agrees with Lanie.,Castle asks for a second opinion.,Castle wants Beckett to see if Lanie's theory works.,1,How does Castle react after learning about the cause of death from Lanie?,122430,Castle,0-12.97,castle_s03e02_seg02_clip_18,Castle is confused by the terminology. 392,Penny,Bernadette,His boss,Raj ,Sheldon,0,Who does Howard ask if Leonard's talked to when he sits down at the table?,122431,The Big Bang Theory,36.81-40.65,s03e05_seg02_clip_00,Penny 393,laughs,leaves,cries,sits down,hugs him,0,What does the girl do after Wilson starts talking?,122432,House M.D.,3.92-9.15,house_s01e08_seg02_clip_08,laughs 394,Raj says Howard's comment is ruining girl's night.,Raj says Priya's comment is ruining girl's night.,Raj says Penny's comment is ruining girl's night.,Raj says Amy's comment is ruining girl's night.,Raj says Leonard's comment is ruining girl's night.,3,What does Raj say is ruining girl's night when he is out?,122433,The Big Bang Theory,0-7.89,s06e11_seg02_clip_05,Raj says Amy's comment is ruining girl's night. 395,Howard felt sad.,How felt left out. ,Howard felt excited.,Howard felt annoyed. ,Howard felft angry. ,2,How did Howard fell when Bethany thought it was cool that Raj is a scientist?,122434,The Big Bang Theory,45.37-59.7,s03e03_seg02_clip_08,Howard felt excited. 396,Chase can't think of anything Nadia would be allergic to,Chase can't see any hives,Nadia has been tested for allergies,Pulmonary oedema is more common,Nadia has been given steroids,4,Why does Chase think Nadia is not having an allergic reaction when he's making the case for pulmonary oedema? ,122435,House M.D.,18.01-32.42,house_s07e12_seg02_clip_13,Nadia has been given steroids 397,On tuesday,In an hour.,Next week.,Today.,Tomorrow.,4,When said Derek will do the MRI when he is making a surgery?,122436,Grey's Anatomy,30.04-39.14,grey_s01e04_seg02_clip_08,Tomorrow. 398,Meredith and Derek hug.,Meredith and Derek kiss.,Meredith and Derek give each other a high five.,Meredith and Derek make love.,Meredith and Derek go to sleep.,1,What do Meredith and Derek do after they talk?,122437,Grey's Anatomy,50.22-86.53,grey_s03e09_seg02_clip_30,Meredith and Derek kiss. 399,Mail.,Books.,Scarves.,A bag.,A taco.,0,What was Leonard holding in his hand when Penny walked into the lobby?,122438,The Big Bang Theory,9.19-17.48,s02e14_seg02_clip_04,Mail. 400,House turned around to snarkily tell Cuddy that her new hairstyle doesn't fit her age.,House turned back around to snatch the prescription paper from Cuddy's hand.,"House turned back around to let Cuddy know that ""this isn't finished by a long shot.""",House had turned back around to get his cane that was leaning on Cuddy's desk.,House had turned around to blow a kiss at Cuddy and tell her that she'd change her mind.,1,Why did House turn back around to Cuddy's desk before leaving her office after discussing his shoulder?,122439,House M.D.,39.53-43.08,house_s03e08_seg02_clip_18,House turned back around to snatch the prescription paper from Cuddy's hand. 401,She's trying to get him to work for her.,She's trying to get him to assist a wedding party.,She's trying to make fun of him.,She's trying to burn him.,She's trying to convince him to give up on life.,4,What is the blonde trying to do when talking to the man with the beard?,122440,House M.D.,23.71-55.32,house_s08e22_seg02_clip_17,She's trying to convince him to give up on life. 402,Get out ,Honey I'm home,What for dinner,who are you ,nothing ,1,What did House say after he closed the door when he got home?,122441,House M.D.,107.12-119.02,house_s08e13_seg02_clip_26,Honey I'm home 403,He thought he was smart enough,He knew Cameron and Chase would get involved,He didn't work well with others,He didn't care about the cases,He was getting paid well to resolve the case,1,Why did House proceed with the case when he didn't have a team?,122442,House M.D.,0-39.04,house_s06e07_seg02_clip_07,He knew Cameron and Chase would get involved 404,Leona's mother died in Hurricane Irma,Leona's mother died in Hurricane Katrina,Leona's mother died in a Haiti earthquake,Leona's mother died in a car accident in N.Y.,Leona's mother died in Hurricane Katherine,1,Where did Leona's mother die according to Crandell before he discusses not knowing he was her father?,122443,House M.D.,24.79-59.05,house_s02e23_seg02_clip_02,Leona's mother died in Hurricane Katrina 405,He was going to talk to the parents.,He wanted to talk to her., He was going to talk to Burke.,He was going to talk to Bailey.,He was going to talk to the Chief.,1,Why did Derek follow Meredith after she ran?,122444,Grey's Anatomy,27.61-46.01,grey_s01e01_seg02_clip_05,He wanted to talk to her. 406,Chandler jumps over the couch to sit next to Ross,Joey jumps over the couch to sit next to Ross,Monica jumps over the couch to sit next to Ross,Phoebe jumps over the couch to sit next to Ross,Rachel jumps over the couch to sit next to Ross,1,Who jumps over the couch to sit next to Ross when they see Ross?,122445,Friends,10.72-13.55,friends_s01e04_seg02_clip_01,Joey jumps over the couch to sit next to Ross 407,School ,Dentist ,Chiropractor ,Gym,Church,2,Where was House going when he got a flat tire? ,122446,House M.D.,0-15.31,house_s08e07_seg02_clip_19,Chiropractor 408,Black,White,Blue,Red,Yellow,0,What is the color of Beckett's jacket when she is talking to Gates?,122447,Castle,9.2-17.93,castle_s04e08_seg02_clip_10,Black 409,A towel.,A bow tie.,An oversized tie.,A necklace.,A scarf.,3,What was around Phoebe's neck when she said Monica would have a last kiss?,122448,Friends,2.29-6.3,friends_s07e18_seg02_clip_06,A necklace. 410,A cupcake,A knife,A marker,A balloon,A present,2,What was Rachel holding when she was talking about having a kid by the time she's 35?,122449,Friends,2.24-11.48,friends_s07e14_seg02_clip_11,A marker 411,It was all in tact with one thing missing.,There were chunks of information missing.,It was all in disarray.,All the pertinent information was gone.,It was all locked up and he couldn't get to it.,0,How did Kyle say he found everything that belong to Alice when he told Castle and Esposito he had gone through everything?,122450,Castle,81.92-90.11,castle_s06e08_seg02_clip_06,It was all in tact with one thing missing. 412,A robe. ,A prom dress. ,A wedding dress. ,A towel. ,A costume. ,2,What is Rachel wearing when she answers the door?,122451,Friends,7.14-9.18,friends_s04e20_seg02_clip_20,A wedding dress. 413,The hospital,The paramedics,The EMS,The Trauma Unit,The doctor,3,"Who tried to save the victim before Javier says ""she didn't make it""?",122452,Castle,0-3.61,castle_s05e20_seg02_clip_01,The Trauma Unit 414,To site see,To get a different doctor's opinion,Because she thinks Seattle has the best doctors in the States,Because she fears she will lose her husband,Because she wants a new doctor,0,What reason does Sylvia give for being in Seattle when Derek inquires about her brain aneurysm?,122453,Grey's Anatomy,54.13-67.34,grey_s02e20_seg02_clip_03,To site see 415,out the door,up the stairs,to sleep,down the stairs,home,1,Where did Izzy go after she spoke with Christina?,122454,Grey's Anatomy,5.52-7.82,grey_s01e03_seg02_clip_09,up the stairs 416,Lizzie was seated between Cristina and Meredith,Lizzie was sitting to the left of Cristina,Lizzie was sitting to the right of Meredith,Lizzie was seating at another table to Cristina,Lizzie was sitting directly opposite Meredith,0,Where is Lizzie when she was seated at the table?,122455,Grey's Anatomy,0-2.28,grey_s02e20_seg02_clip_13,Lizzie was seated between Cristina and Meredith 417,In the back room of the restaurant.,On the rooftop where there was a swimming pool at their atheletic club.,On the rooftop where they had their first date.,"At work, where they got back to the projects they worked on.",At a different bar that had neon drinks,2,Where did the couple find themselves after Jen mentioned that the 'past' Ted wasn't so bad?,122456,How I Met You Mother,9.9-19.15,met_s05e02_seg02_clip_13,On the rooftop where they had their first date. 418,bravery,love and sacrifice,loved ones,bravery and commitment,committment,3,What was the first part of Ryan's toast when he began it?,122457,Castle,7.83-17.02,castle_s04e04_seg02_clip_27,bravery and commitment 419,The dress Robin has on is blue,The dress Robin has on is red,The dress Robin has on is orange,The dress Robin has on is green,The dress Robin has on is black,0,What color dress does Robin have on before she goes into the bathroom,122458,How I Met You Mother,9.79-18.35,met_s03e03_seg02_clip_10,The dress Robin has on is blue 420,a sophomore.,A third year medical student.,A third year liberal arts student.,A freshman.,A third year law student.,4,Who does Barney want Marshall to pretend to be when they go to the college bar that night?,122459,How I Met You Mother,51.7-65.03,met_s02e02_seg02_clip_05,A third year law student. 421,Looking at Foreman.,Looking at the ceiling.,Holding her head down.,Looking at the heart monitor.,Looking at a painting.,2,What was Adams doing when Chase said it wasn't naive?,122460,House M.D.,0-2.73,house_s08e09_seg02_clip_13,Holding her head down. 422,Sheldon was angry that Leonard had misled Penny.,Sheldon was impressed and a little troubled by Leonard's sudden ability to lie flawlessly.,Sheldon was upset that Leonard had involved him in the lie. ,Sheldon was relieved that Leonard had gotten them out of going to the production.,Sheldon didn't understand why Leonard had lied.,1,How did Sheldon feel when Leonard lied to Penny?,122461,The Big Bang Theory,30.41-76.97,s01e10_seg01_clip_02,Sheldon was impressed and a little troubled by Leonard's sudden ability to lie flawlessly. 423,He sits on the bed,He drinks a glass of water,He goes down on one knee,He leans on the wall,He goes by the window,2,What does House do before popping another pill into his mouth?,122462,House M.D.,62.43-68.27,house_s03e10_seg02_clip_21,He goes down on one knee 424,Because Rachel is trying to set Chandler up with someone ,Because Chandler is the only one of her friends who is free,Because Rachel thinks Chandler likes her,Because Rachel thinks Chandler has the best taste in men,Because Rachel is hurt and Chandler is closest,3,Why does Rachel choose to go talk to Chandler when she is having guy trouble?,122463,Friends,12.81-34.26,friends_s04e10_seg02_clip_09,Because Rachel thinks Chandler has the best taste in men 425,Sitting next to Foreman.,Sitting in front of the sink.,Standing behind Wilson.,Standing in front of the sink.,Standing next to Foreman.,3,Where was House after Foreman and Wilson were arguing about Rachel's religion? ,122464,House M.D.,35.48-38.62,house_s01e01_seg02_clip_18,Standing in front of the sink. 426,Esposito,Castle,Beckett,Martha,Lanie,0,Who films Ryan after watching him do a flower dance?,122465,Castle,54.7-65.01,castle_s08e20_seg02_clip_10,Esposito 427,Ross feels amused.,Ross feels angry and embarrassed.,Ross feels depressed.,Ross feels happy.,Ross feels numb.,1,How does Ross feel after Rachel reveals that he has been married more than once?,122466,Friends,40.82-60.03,friends_s06e21_seg02_clip_15,Ross feels angry and embarrassed. 428,He was afraid the health inspector would shut the place down,The rat was dead,The rat had left droppings on his cookies,He didn't want another mouth to feed,Rats are unsanitary,4,Why did Mike want to get rid of the rat after he found it?,122467,Friends,50.74-55.78,friends_s09e12_seg02_clip_00,Rats are unsanitary 429,a singing Santa,the Easter bunny at the mall,professional Santa,he does Santa-grams,he is a flower delivery man,2,What did the neighbor say that Edmund does as a job when she was talking to Castle and Beckett about the last time she saw him?,122468,Castle,37.36-51.31,castle_s05e09_seg02_clip_04,professional Santa 430,Bone marrow biopsy.,An upper airway biopsy. ,Liver biopsy.,Kidney biopsy.,Skin biopsy.,1,What medical procedure does House recommend to confirm whether the diagnosis is Wegener's after Foreman mentions that steroids were used as a treatment?,122469,House M.D.,73.21-76.87,house_s02e18_seg02_clip_06,An upper airway biopsy. 431,Joey starts dancing,Joey tells a story about when he was a kid,Joey talks about reading,Joey falls asleep,Joey gives an odd clue,4,What happens before the game show contestant answers Joey's question?,122470,Friends,8.41-15.67,friends_s10e11_seg02_clip_04,Joey gives an odd clue 432,House pulls out a pill bottle.,House pulls out his wallet.,House pulls out a thermometer.,House pulls out a pen.,House pulls out a piece of paper.,0,What does House pull out of his pocket when walking with Wilson?,122471,House M.D.,56.81-58.94,house_s01e01_seg02_clip_00,House pulls out a pill bottle. 433,She covered her mouth.,She sat on the couch.,She sat on the counter.,She kneeled on the floor,She left the room.,0,What did Rachel do after she said something about being at Barneys?,122472,Friends,31.81-35.12,friends_s10e13_seg02_clip_01,She covered her mouth. 434,Gin,Hearts,Go Fish,Poker,Texas Hold'em,0,What card game was Meredith and George playing when they were having lunch in the patient room?,122473,Grey's Anatomy,66.45-77.83,grey_s03e06_seg02_clip_13,Gin 435,He was watching television.,He was inside a bathtub.,He was playing with his phone.,He was eating.,He was sleeping.,1,Where was House when Wilson entered the room?,122474,House M.D.,25.67-34.84,house_s06e12_seg02_clip_00,He was inside a bathtub. 436,Mrs. Knight walks into Phoebe's apartment. ,Monica walks into Phoebe's apartment. ,Rachel walks into Pheobe's apartment. ,Joey walks into Phoebe's apartment. ,Ross walks into Phoebe's apartment. ,0,Who walks into Phoebe's apartment after Phoebe to help Frank feel better?,122475,Friends,32.17-45.45,friends_s03e18_seg02_clip_18,Mrs. Knight walks into Phoebe's apartment. 437,a chest compressor ,her ear, a monitor,an ivy ,a sthascope,4,What does Grey put on Katie's chest when she is checking her?,122476,Grey's Anatomy,7.91-13.02,grey_s01e01_seg02_clip_09,a sthascope 438,An orange.,A pancake.,A steak tip.,An egg.,A bun.,1,What was on Phoebe's plate after Joey told her to stick out her plate and tossed something on it?,122477,Friends,15.95-19.63,friends_s04e13_seg02_clip_04,A pancake. 439,Heart and valves.,Liver and brain.,Eyes and sinus'.,Spleen and liver.,Skin and lungs.,4,Where in Garbriel's body did Foreman say the sarcoidosis went after when he was explaining to his parents what was wrong with him and his treatment?,122478,House M.D.,11.51-16.58,house_s01e13_seg02_clip_10,Skin and lungs. 440,Aly Sheedy,Dudley Moore,Clayton Moore,Demi Moore,Rachel,3,Who does Monica say she wants her hair to be like when Phoebe is giving her a haircut?,122479,Friends,31.43-58.59,friends_s02e01_seg02_clip_13,Demi Moore 441,Sheldon is typing on the desk.,Sheldon is typing on the desk.,Sheldon is typing on the toy.,Sheldon is typing on the laptop.,Sheldon is typing on the bed.,3,What is Sheldon doing when he is at the apartment?,122480,The Big Bang Theory,14.71-21.91,s05e20_seg02_clip_14,Sheldon is typing on the laptop. 442,Surgical tape,Gauze,A syringe,Alcohol wipes,Swabs,2,What does House get out of a drawer of hospital supplies before he goes to see a patient?,122481,House M.D.,44.81-47.19,house_s08e21_seg02_clip_19,A syringe 443,Potter says a swim instructor,Potter says a doctor,Potter says a teacher.,Potter says a cop,Potter says a lawyer,4,What does Potter say his job is after he discusses how he had to lie as still as possible and hold his breath?,122482,Castle,8.93-43.44,castle_s06e17_seg02_clip_17,Potter says a lawyer 444,He saw the current president,He saw a ghost,He saw an alien,He saw a dead president,He saw someone who was dead over 200 years ,4,Why did the detectives ask West Side if he is taking medication after he told them what he saw?,122483,Castle,0-17.02,castle_s04e19_seg02_clip_06,He saw someone who was dead over 200 years 445,Taking notes on a patient chart,Brushing his hair,Tap dancing,Cooking an omelette,Reading a novel,0,What was the doctor doing when he was talking to Rachel in the examining room?,122484,Friends,0-8.05,friends_s08e11_seg02_clip_07,Taking notes on a patient chart 446,8000 euros,4000 euros,5000 euros,10000 euros,6000 euros,2,How much were the Ukrainains paying Hugo after he made the passports?,122485,Castle,37.14-43.25,castle_s02e24_seg02_clip_16,5000 euros 447,Waldo.,Penny.,Rudolph the Red-nosed Reindeer.,Santa Claus.,Queen Elizabeth.,0,Who is Leonard and Amy trying to find without their glasses before Sheldon starts to yell at Leonard?,122486,The Big Bang Theory,9.14-26.78,s06e04_seg02_clip_12,Waldo. 448,Gestures her fist at him,Looks happy,Laughs,Stands up angrily,Looks off in disbelief,4,What does Penny do after Sheldon insults her?,122487,The Big Bang Theory,6.6-9.91,s03e16_seg02_clip_09,Looks off in disbelief 449,Bottle of wine,Plate with cheese,A chocolate covered strawberry,A necklace ,A glass of water,0,What did Leonard hand Stephanie before he got up to help Sheldon? ,122488,The Big Bang Theory,0-5.89,s02e09_seg02_clip_12,Bottle of wine 450,Three,Two,Four,One,Seven,1,How many hostages were freed before Jason and the other hostages came out of the room?,122489,House M.D.,10.32-49.03,house_s05e09_seg02_clip_16,Two 451,House realized the plane was in a holding pattern.,Peng owed House money from a poker game.,House saw Cuddy eat from the same bowl as Peng.,House realized Peng may be contagious.,Cuddy began to shake and convulse next to House.,3,Why did House get worried after looking at Peng shaking on the floor?,122490,House M.D.,28.73-35.91,house_s03e18_seg02_clip_19,House realized Peng may be contagious. 452,Pushed the button to the elevator.,Hit the doctor.,Fell on the floor.,Banged on the walls.,Sent a text message.,0,What does Gretchen do after she said was going home?,122491,Grey's Anatomy,40.78-47.88,grey_s03e06_seg02_clip_23,Pushed the button to the elevator. 453,Penny is retching. ,Penny decided to leave without telling him. ,Penny wanted Leonard to feel alone. ,Penny wanted Leonard to care about her. ,Penny had to get up to get tissues. ,0,Why is Leonard alone when he wakes up?,122492,The Big Bang Theory,23.51-28.28,s03e15_seg02_clip_14,Penny is retching. 454,Her head. ,Her side. ,Her arm. ,Her leg. ,Her hand. ,4,What is Monica holding when she has her mouth open?,122493,Friends,9.36-13.01,friends_s09e23-24_seg02_clip_47,Her hand. 455,Alexis and Martha are on vacation with Castle's mother,Alexis and Martha went to the mall,Alexis and Martha went out to eat,Alexis and Martha went to the grocery store,Castle sent them out of town,4,Where does Castle say Alexis and Martha are after Beckett asks him where they are,122494,Castle,55.09-59.61,castle_s03e16_seg02_clip_23,Castle sent them out of town 456,300,10,1,60,12,3,What number did House write on the board after Taub suggested a MRA?,122495,House M.D.,72.76-82.07,house_s04e09_seg02_clip_16,60 457,Bernadette looks to the side.,Bernadette slaps Howard.,Bernadette call Penny on the phone.,Bernadette sits on the floor.,Bernadette walks out the door.,0,What does Bernadette do after Howard says they should call the police?,122496,The Big Bang Theory,0-2.1,s10e05_seg02_clip_05,Bernadette looks to the side. 458,Penny threw a book at Leonard.,Penny gave Leonard a hug.,Penny took her had away from Leonard.,Leonard started to jump out of bed.,Penny started to sing a song,2,What happened after Leonard told Penny that he made a pact about her?,122497,The Big Bang Theory,6.9-15.01,s03e05_seg02_clip_03,Penny took her had away from Leonard. 459,Derek gestures with his hand at Meredith.,Derek hugs Meredith.,Derek kisses Meredith.,Derek dances with Meredith.,Derek walks to the door.,0,"What does Derek do when he says ""come here""?",122498,Grey's Anatomy,26.54-28.28,grey_s03e09_seg02_clip_08,Derek gestures with his hand at Meredith. 460,He passes out. ,He stands up and walks out.,He starts crying.,He starts squirming in his seat.,He picks up his mug and takes a drink.,4,What does Joey do after he tells Phoebe he met her at the library? ,122499,Friends,19.85-26.05,friends_s09e14_seg02_clip_04,He picks up his mug and takes a drink. 461,Hyde said Vince Singh forged his records,Hyde said Vicki Singh forged his records,Hyde said Vanessa Singh forged his records,Hyde said Victor Singh forged his records,Hyde said Vikram Singh forged his records,4,Who did Hyde say forged their records to get a job with them when talking to Castle?,122500,Castle,12.48-17.29,castle_s08e02_seg02_clip_13,Hyde said Vikram Singh forged his records 462,her stapler,paper clips,her pencils,a stack of papers,her computer,1,what is house messing with on cuddys desk when he goes into her office?,122501,House M.D.,48.39-58.43,house_s04e03_seg02_clip_04,paper clips 463,hungry,angry,irritated,sad,nervous,4,How did Raj feel when Penny confronted him over dinner?,122502,The Big Bang Theory,13.23-37.81,s02e14_seg02_clip_06,nervous 464,Ted.,Lily.,Robin.,Marshall.,Abby.,4,Who is talking with Barney when traveling in a car?,122503,How I Met You Mother,2.4-60.05,met_s03e19_seg02_clip_02,Abby. 465,Melanie asked how she could broach the subject.,Melanie told her she must be crazy to even suggest that.,"Melanie said no, that doesn't seem simpler to her.",Melanie was outraged and yelled at Thirteen.,Melanie looked at her husband and asked how they could request a different doctor.,2,How did Melanie respond when Thirteen told her it might be simpler if she told her son he's not a boy?,122504,House M.D.,0-14.42,house_s05e16_seg02_clip_06,"Melanie said no, that doesn't seem simpler to her." 466,A Cup,A Plate,A Laptop,A Bag,A Phone,2,What did Arlene had in front of her before House came into the room,122505,House M.D.,0-4.34,house_s07e11_seg02_clip_05,A Laptop 467,A bag,A book,A board game,A laptop,A video game consol,3,What was Penny holding when she walked in the door?,122506,The Big Bang Theory,1.58-9.14,s05e11_seg01_clip_00,A laptop 468,Because Castle had got his keys out the vent.,Because Castle was volunteering. ,Because Castle knew someone who could do the job.,Because Castle had remembered something from earlier.,Because Castle had figured out a puzzle ball.,4,Why did Castle say got after the Principal asked where they would find someone to complete the task? ,122507,Castle,28.67-33.68,castle_s07e04_seg02_clip_04,Because Castle had figured out a puzzle ball. 469,Adams has a file folder in her hand,Adams has a cup of coffee in her hand,Adams has a stethoscope in her hand,Adams has a pencil in her hand,Adams has an x-ray in her hand,3,What does Adams have in her hand when they are at the table have a discussion,122508,House M.D.,58.17-67.49,house_s08e17_seg02_clip_17,Adams has a pencil in her hand 470,Penny is in a closet,Penny is in a bed,Penny is brushing her teeth at the sink,Penny is in the tub,Penny is in a cabinet,3,Where is Penny after Sheldon walks in the bathroom?,122509,The Big Bang Theory,15.65-21.37,s03e08_seg02_clip_01,Penny is in the tub 471,dances,sings,reads a poem,draws a picture,acts a scene,3,what does rachel do when she gets up in front of the group in the living room?,122510,Friends,23.61-29.82,friends_s01e18_seg02_clip_22,draws a picture 472,Hannah.,Jane,Sean,Julie,Westbrook,4,Who was sitting beside Martin when Cuddy discussed with him about his insurance?,122511,House M.D.,48.73-71,house_s06e13_seg02_clip_19,Westbrook 473,Castle is upset because Mr. Walters ruined Beckett's surprise gift.,Castle is upset because Mr. Walters verified something scary from Castle's past.,Castle is upset because Mr. Walters described Martha's fiance.,Castle is upset because of a headache.,Castle is upset Esposito stepped on Castle's foot.,1,Why is Castle upset after Mr. Walters confirms the mask looked porcelain?,122512,Castle,17.55-25.21,castle_s07e23_seg02_clip_02,Castle is upset because Mr. Walters verified something scary from Castle's past. 474,Raj has picked Amy. ,Raj has picked Penny. ,Raj has picked Bernadette. ,Raj has picked Priya. ,Raj has picked Leonard. ,0,Who has Raj decided gets to meet Lucy first when they have dinner?,122513,The Big Bang Theory,50.53-51.99,s06e24_seg02_clip_05,Raj has picked Amy. 475,removed her jacket,drank water,looked at her cell phone,put lip gloss on,looked in the mirror,2,What did Josie do after they told her to take 15?,122514,Castle,52.89-57.7,castle_s05e11_seg02_clip_03,looked at her cell phone 476,Dr. Chase. ,Dr. Cameron. ,Wilson,Dr. Foreman. ,House.,2,Who was Cuddy talking to when she was sitting at her desk? ,122515,House M.D.,0-9.03,house_s03e04_seg02_clip_25,Wilson 477,Bernadette puts her hands up and her face down.,Bernadette screams out loud.,Bernadette runs from the room.,Bernadette hugs Howard.,Bernadette lays on the floor.,0,What does Bernadette do after Raj throws something?,122516,The Big Bang Theory,3.3-6.3,s07e03_seg02_clip_01,Bernadette puts her hands up and her face down. 478,Sheldon closes his eyes.,Sheldon grabs Leonard and hugs him.,Sheldon stomps on the floor.,Sheldon runs to the door.,Sheldon quotes poetry.,0,What does Sheldon say after Leonard mentions a bumblebee?,122517,The Big Bang Theory,19.68-22.92,s06e18_seg02_clip_13,Sheldon closes his eyes. 479,He says she needs to go and get sex.,"He says "" hmmm testify"" and then smiles.",Hes says nothing else but continues to eat.,He says that he hates women and does not want them to have sex.,He says that all women are slutty.,1,What does Leslie say after Leonard told him he is way off base?,122518,The Big Bang Theory,38.46-61.04,s02e03_seg02_clip_12,"He says "" hmmm testify"" and then smiles." 480,I don't care for Sherry.,I don't drink.,"It's a little early, isn't it?",Do you have anything else?,No. Thank you.,2,What did Raj say after he was offered a Sherry?,122519,The Big Bang Theory,30.57-34.66,s03e04_seg02_clip_04,"It's a little early, isn't it?" 481,A DVD of the security footage.,A picture.,Social media,The victim's phone.,The killer's car.,0,What evidence do Castle and Beckett believe will tell them who the killer's minion is when they discover who saved the victim?,122520,Castle,47.4-64.56,castle_s07e03_seg02_clip_09,A DVD of the security footage. 482,He was looking for stains from the clothes.,He was sniffing the clothes.,He was observing the clothes.,He was looking for a certain piece of cloth.,He did not do anything.,1,What was House doing to help his memory flash on the bus after he took a patient's box of clothes?,122521,House M.D.,44.42-64.76,house_s04e15_seg02_clip_07,He was sniffing the clothes. 483,A pregnant woman.,A clown.,Someone getting arrested.,A coffee pot / coffee machine.,A bookcase.,3,What is in the background when Beckett is talking about barking dogs?,122522,Castle,0-1.79,castle_s03e15_seg02_clip_05,A coffee pot / coffee machine. 484,Lanie called Meredith a cake.,Lanie called Meredith a deep fried Twinkie.,Lanie called Meredith a lollipop.,Lanie called Meredith a steak.,Lanie called Meredith a nut.,1,What type of food did Lanie call Meredith when she was talking about Meredith visiting her town?,122523,Castle,78.16-79.06,castle_s05e10_seg02_clip_03,Lanie called Meredith a deep fried Twinkie. 485,may 10 2010,"April 27th, 2008",june 6th 2018,july 1st 2000,may 3rd 2006,1,what is the date it shows on the tape after is being worked on?,122524,Castle,40.32-89.59,castle_s06e21_seg02_clip_21,"April 27th, 2008" 486,Marshall is reconsidering becoming a personal injury lawyer.,Marshall is reconsidering becoming an estate lawyer.,Marshall is reconsidering becoming a trial lawyer.,Marshall is reconsidering becoming an environmental lawyer.,Marshall is reconsidering becoming a consumer rights lawyer.,3,What kind of lawyer is Marshall reconsidering becoming when talking to Lily?,122525,How I Met You Mother,44.38-62.07,met_s06e08_seg02_clip_03,Marshall is reconsidering becoming an environmental lawyer. 487,An envelope of money,A cup of coffee,A gift,A stack of paperwork,A sandwhich,3,What did Cuddy move on House's desk when they were talking about House needing a team?,122526,House M.D.,118.14-128.64,house_s04e01_seg02_clip_25,A stack of paperwork 488,She opened the oven.,She walked towards the door.,She put cookies on a plate.,She walked to the fridge.,She picked up her purse.,1,What did Monica do after she pointed at Chandler?,122527,Friends,16.53-19.61,friends_s07e08_seg02_clip_01,She walked towards the door. 489,Texas,Tulsa,Tucson,Toronto,Timberland,1,Where did Monica say she is looking for a job when she was talking to Nancy on the phone?,122528,Friends,29.41-43.22,friends_s09e03_seg02_clip_10,Tulsa 490,A backpack,Tuxedo,Hat,Gloves,Sweater Vest,0,What is Ross wearing when he's talking to Rachel?,122529,Friends,30.01-43.22,friends_s02e20_seg02_clip_12,A backpack 491,Dr. Cooper.,Amy.,Penny.,Bernadette.,Sheldon.,4,Who sat on front Leonard when Sheldon holds a fork.,122530,The Big Bang Theory,67.88-85.38,s08e05_seg01_clip_01,Sheldon. 492,A race car bed was delivered instead,The wrong bedframe was delivered,The wrong mattress was delivered,A different rug was delivered instead,Nothing was delivered instead,0,What was delivered instead of the what Monica had ordered when Phoebe signed for it?,122531,Friends,26.16-40.34,friends_s03e07_seg02_clip_14,A race car bed was delivered instead 493,House cried,House hit Taub in the groin,House kissed Taub,House threw his cane,House drank coffee,4,What did House do after Taub sat down?,122532,House M.D.,52.91-62.86,house_s08e18_seg02_clip_12,House drank coffee 494,the window,the ladder,the white dog statue,the railing ,A grill ,2,what is Rachel leaning on when she is talking to Tag on the fire escape?,122533,Friends,38.19-47.05,friends_s07e08_seg02_clip_11,the white dog statue 495,Ex husband of his wife ,Ex con ,Ex military General,Ex pro wrestler,Ex British Mercenary,4,What did Esposito label Liam Hollister as after showing Ryan a photo of him? ,122534,Castle,28.72-34.66,castle_s08e05_seg02_clip_12,Ex British Mercenary 496,"Burke tells Grey that if she doesn't follow through, she is a liar. ",Burke tells Grey that it doesn't matter what the Derek wants. ,Burke tells Grey that it isn't her job.,Burke tells Grey that she shouldn't make promises. ,Burke tells Grey that she should be more careful. ,0,What does Burke tell Grey after he tells her that he knows that Derek asked her to do something for him?,122535,Grey's Anatomy,15.04-94.03,grey_s02e18_seg02_clip_18,"Burke tells Grey that if she doesn't follow through, she is a liar. " 497,He is shining his shoes,He is looking out the window,He is reading the paper,He is working on his laptop,He is eating pizza,3,What is Sheldin doing after the scene starts?,122536,The Big Bang Theory,1.4-56.02,s01e13_seg02_clip_03,He is working on his laptop 498,Rachel is holding her purse,Rachel is holding a case of beer,Rachel is not holding anything,Rachel is holding a plate of food,Rachel is holding a glass of wine,4,What is Rachel holding in her hand when she is in the kitchen?,122537,Friends,57.93-60.03,friends_s01e10_seg02_clip_16,Rachel is holding a glass of wine 499,Better luck next time,so close but so far away,never gonna catch me,almost but not close enough,close only counts in horseshoes,0,What did the note say that was laying on the table that Beckett saw after Castle called her over?,122538,Castle,96.34-105.64,castle_s06e09_seg02_clip_25,Better luck next time 500,A bottle of lotion.,A cellphone.,A snack.,A Beyonce cd.,A car air freshner.,3,What did Raj hand Penny after she told them that she was going to show the how to finish a quest?,122539,The Big Bang Theory,52.41-62.02,s04e19_seg02_clip_15,A Beyonce cd. 501,She picks up another palette.,She picks up a black leader mask.,She picks up a costume.,She picks up a long stick.,She picks up a whip.,1,What does Kate Becket pick when Castle teases her with the palette?,122540,Castle,7.48-16.72,castle_s02e16_seg02_clip_04,She picks up a black leader mask. 502,Mints,wreaths,Police shields,Christmas balls,snowflakes,0,What decorations are hanging on the window behind Beckett when she is talking to Esposito?,122541,Castle,20.84-37.6,castle_s07e10_seg02_clip_21,Mints 503,the busboy,the driver,the manager,the bartender,her driver,0,What man did Beverley mention she liked when she drank with Penny?,122542,The Big Bang Theory,39.97-61.02,s03e11_seg02_clip_12,the busboy 504,When she got back from Las Vegas.,After work again tomorrow.,In the morning.,After church on Sunday.,As soon as her car was repaired.,2,When did Derek say she would come back to see Pete before she kissed him?,122543,Grey's Anatomy,53.57-70.57,grey_s03e10_seg02_clip_24,In the morning. 505,Penny is holding a newspaper.,Penny is holding a baby.,Penny is holding a wine glass with red wine.,Penny is holding a a clock.,Penny is holding grocery bags.,2,What is Penny holding in her hand when talking to Raj in the kitchen?,122544,The Big Bang Theory,0.6-6.62,s07e06_seg02_clip_05,Penny is holding a wine glass with red wine. 506,A kettle of steaming water.,A bottle of juice.,A spoon.,A mug.,A paper.,3,What did Chandler hand to Ross before they shook their packets? ,122545,Friends,52.82-60.03,friends_s02e21_seg02_clip_11,A mug. 507,upset,happy,bored,tired,gloomy,0,How did Leonard feel when Penny wanted his makeup?,122546,The Big Bang Theory,29.29-52.81,s06e13_seg01_clip_00,upset 508,Joey would kill him.,He just got out of a relationship.,Her mother would kill him.,He was in a relationship.,He didn't like her.,1,Why did Chandler say was the reason he didn't want to be in a relationship when Joey's sister was hitting on him?,122547,Friends,46.34-59.03,friends_s03e11_seg02_clip_15,He just got out of a relationship. 509,A pizza delivery person.,Chandler wearing a pink rabbit costume.,Their next door neighbor.,Ross wearing a potato costume.,Trick or treaters for UNICEF.,3,"Who comes through the door right after Phoebe says to Rachel, ""No wonder you're pregnant.""",122548,Friends,8.56-14.17,friends_s08e06_seg02_clip_04,Ross wearing a potato costume. 510,Sock,A tee shirt,Pants,Underwear,Shorts,1,What is Sheldon folding when Penny walks into the laundry room?,122549,The Big Bang Theory,15.1-19.38,s04e03_seg02_clip_09,A tee shirt 511,"He taught him ""Pull my finger.""",He taught him a bad word.,He dropped him.,Carol was mad at Monica.,Chandler wanted him to play sports.,0,Why was Carol upset according to Monica after she brought it up to Chandler?,122550,Friends,13.64-19.15,friends_s08e12_seg02_clip_10,"He taught him ""Pull my finger.""" 512,Because Ted lies about his tastes all the time.,Because Ted secretly hates potatoes. ,Because the potato skin wasn't cooked properly.,Because Ted wanted her to think he didn't actually like potato skins.,BecauseTed wanted to lower her expectations for their night's plans.,4,Why did Stella think Ted didn't like the potato skin after trying one?,122551,How I Met You Mother,30.69-38.66,met_s03e18_seg02_clip_04,BecauseTed wanted to lower her expectations for their night's plans. 513,Healthy enough to donate organs,Healthy as a young race horse,Stabilized but still being treated ,Holding in there after that surgery ,Not going to be healthy in time ,0,How does Thirteen reply after reply to Mr. Harmon's question about his daughter?,122552,House M.D.,83.28-92.03,house_s05e06_seg02_clip_22,Healthy enough to donate organs 514,Sweeping.,Cleaning a couch cushion.,Mopping.,Dusting.,Dancing.,1,What is Leonard doing when Penny is standing behind him?,122553,The Big Bang Theory,43.38-54.89,s02e16_seg02_clip_05,Cleaning a couch cushion. 515,standing by the whiteboard,standing in the hospital hallway,Sitting down at a table,working at their computers,In the cafeteria,2,Where are Thirteen and Foreman when Taub is talking about what is wrong with the patient?,122554,House M.D.,0-5.01,house_s06e18_seg02_clip_22,Sitting down at a table 516,His hat.,His jacket.,His shoes.,His shirt.,A scarf.,1,What did Joey take off after he and Rachel came into the apartment?,122555,Friends,30.17-34.82,friends_s08e12_seg02_clip_10,His jacket. 517,Phoebe was afraid she would get hurt.,Phoebe said impersonating a cop was a Class E felony and she would serve a prison sentence.,Phoebe wanted to see how fast she was.,Phoebe wanted to try out her new running shoes.,Phoebe just felt like running.,1,Why did Phoebe say she ran when she was talking to Chandler and Monica about impersonating a cop?,122556,Friends,4.77-11.03,friends_s05e16_seg02_clip_17,Phoebe said impersonating a cop was a Class E felony and she would serve a prison sentence. 518,You're all out of options,You're just have to tough through it,You'll overdose if we give you more,"Sorry, there's nothing that can be done",You're dying,4,"What did House say to the patient (Matty) after saying ""it's not going to help""?",122557,House M.D.,0-5.98,house_s03e21_seg02_clip_21,You're dying 519,Derek was asking after Addison.,Derek was asking after Meredith.,Derek was asking after Callie.,Derek was asking after George.,Derek was asking after Mark.,0,Who was Derek asking about when he came into the room?,122558,Grey's Anatomy,45.54-49.21,grey_s03e02_seg02_clip_07,Derek was asking after Addison. 520,Because Ted forgot the day of the date.,Because Ted did not remember Abby's birthday.,"Because Ted did not remember Abby's name, he called Ashley.",Because Ted wants a kiss.,Because Ted wants to the movie instead to the bar.,2,Why Abby is upset with Barney when correcting him?,122559,How I Met You Mother,12.31-60.03,met_s03e19_seg02_clip_02,"Because Ted did not remember Abby's name, he called Ashley." 521,Hospital,Office,Station,Coffee shop,Crime scene,0,Where was Beckett when she was talking to Castle about the shooting?,122560,Castle,2.82-8.93,castle_s04e01_seg02_clip_06,Hospital 522,Because he wasn't sure if he wanted to get on the elevator.,Because the elevator doors opened before he pushed the button.,Because the elevator was full.,Because he was thinking about taking the stairs.,Because he thought he forgot something.,1,Why did Castle look confused before Beckett got on the elevator?,122561,Castle,51.81-59.21,castle_s04e06_seg02_clip_26,Because the elevator doors opened before he pushed the button. 523,a stuffed bear,a stuffed dinosaur,a stuffed clown,a blanket,a diaper bag,2,what is carol holding when she is talking to ross at monicas apartment?,122562,Friends,54.62-61.03,friends_s02e02_seg02_clip_04,a stuffed clown 524,George,Meredith,Cristina,Bailey,Derek,0,Who is Alex talking to in the elevator when he is talking about what's wrong with Izzie?,122563,Grey's Anatomy,37.38-45.97,grey_s02e05_seg02_clip_04,George 525,blue,grey,black,yellow,green,4,"What color is the sweater Potter is wearing when he say's ""with ketchup...""?",122564,Castle,0-9.52,castle_s06e17_seg02_clip_17,green 526,6,2,3,5,4,4,How many pictures were on the wall behind Foreman when he said depression and seizures weren't correlated? ,122565,House M.D.,15.93-21.85,house_s02e12_seg02_clip_21,4 527,Happy,Uncomfortable,Sad,Mad,Content,1,How does the waiter feel when he goes up to joey and rachels table and sense some tension? ,122566,Friends,6.96-10.73,friends_s08e16_seg02_clip_16,Uncomfortable 528,walking on the sidewalk,Driving them to go get married,Laying in bed,Driving to the movies,Driving to the hospital,1,What is leonard doing when he confesses to penny about kissing another girl in the past?,122567,The Big Bang Theory,45.99-55.93,s08e24_seg02_clip_14,Driving them to go get married 529,brain scanners,a head band,a metal device,a blue hair cap,a bow,3,what is Penelope wearing on her head when chase is standing next to her in the operating room?,122568,House M.D.,29.93-37.41,house_s05e23_seg02_clip_21,a blue hair cap 530,Radio and TV,Computer and TV,Refrigerator and TV,Lamp and computer,Lamp and TV,1,What did Beckett and Castle notice was missing from Laura's apartment after Harvey left?,122569,Castle,18.45-24.76,castle_s04e12_seg02_clip_05,Computer and TV 531,Park talked to the patient and found that he ate an extremely healthy diet.,Park didn't find any abdominal distension when she examined the patient.,Park found that the patient was a stimulant laxative abuser when she examined him.,Park didn't find masses or bowel sounds when she examined the patient.,Park found a mass when she examined the patient but it was just a benign tumor.,3,Why didn't Park think that the patient had an obstruction when Adams suggested he had one?,122570,House M.D.,0-14.08,house_s08e20_seg02_clip_05,Park didn't find masses or bowel sounds when she examined the patient. 532,Bottle,Penguin,Baby,Cat,Purse,1,What is Robin holding when she's hanging out with Barney?,122571,How I Met You Mother,0-3.23,met_s06e08_seg02_clip_05,Penguin 533,happy,reluctant,peaceful,angry,bored,1,How did Penny feel when Leonard asked her to do this favor ?,122572,The Big Bang Theory,42.92-57.02,s03e05_seg02_clip_03,reluctant 534,Why don't you just break up with me already?,Who would survive being at sea?,Why do you need to go?,Why are you alive?,Who would win a fight you or a shark?,4,What does Sheldon ask Leonard when they are in the car?,122573,The Big Bang Theory,14.03-22.83,s06e24_seg01_clip_02,Who would win a fight you or a shark? 535,She misses Ted.,Her and her friend are arguing.,She runs out of money.,The beer is nasty.,She realizes she misses Canada.,4,Why is Robin sad when drinking?,122574,How I Met You Mother,11.71-23.71,met_s05e05_seg02_clip_08,She realizes she misses Canada. 536,She says it would make her away to go away. ,She said it would make her miserable to live like that. ,She said it would make her happy if they broke up. ,She said it would make her happy to be with Leonard. ,She said that it would make her happy if he said things like that. ,4,What does Amy say to Sheldon after Leonard says something sweet to Penny?,122575,The Big Bang Theory,27.17-31.37,s08e03_seg02_clip_13,She said that it would make her happy if he said things like that. 537,A hat ,A coat,Sunglasses,A hooded sweatshirt,A tank top and shorts,1,What is Chandler wearing when he is holding the bowl?,122576,Friends,2.79-6.2,friends_s08e14_seg02_clip_02,A coat 538,Ted tried to talk about what happened at his work earlier that day. ,Ted laughed at the way Robin left in a hurry. ,Ted asked Lily and Marshall how their day went. ,Ted asked Lily and Marshall whether they'd like another beer. ,Nothing; Ted quietly sipped his beer. ,0,What did Ted say to Lily and Marshall after Robin left?,122577,How I Met You Mother,29.19-35.44,met_s03e16_seg02_clip_09,Ted tried to talk about what happened at his work earlier that day. 539,In a patient's room checking a chart,Behind a chair in the waiting room,In the supply closet getting supplies,Behind a window with blinds watching other doctors treat a patient,In the bathroom looking in the mirror,3,Where was Christina standing when Izzie told her they should be studying?,122578,Grey's Anatomy,30.44-43.88,grey_s03e24_seg02_clip_04,Behind a window with blinds watching other doctors treat a patient 540,A spoon and mashed potatoes,A spoon and ice cream,A spoon and cup of red jello,A fork and spaghetti,Chopsticks and noodles,2,What is Monica holding when Phoebe is asking her to come on her date?,122579,Friends,1.83-7.02,friends_s03e15_seg02_clip_04,A spoon and cup of red jello 541,"Erika Albrook, an honors student at Harvard.","Stormy Denver, a porn star","Tayna Taylor, a writer","ChiChi Chavez, a stripper","Valeria Gugino, an actress",0,Who did Ryan say the victim was after they got a fingerprint match?,122580,Castle,37.81-42.76,castle_s05e24_seg02_clip_04,"Erika Albrook, an honors student at Harvard." 542,House said 25% of Christians had a lot of acid in their stomach.,House said 99.9% of Christians had a lot of acid in their stomach.,House said 10 million Christians had a lot of acid in their stomach.,House said 50% of Christians had a lot of acid in their stomach.,House 50 million Christians had a lot of acid in their stomach.,1,How many Christians did House say had a lot of acid in their stomach after Henry said no one else in his church was sick?,122581,House M.D.,27.01-29.71,house_s02e14_seg02_clip_07,House said 99.9% of Christians had a lot of acid in their stomach. 543,A club chair,A swivel chair,A wing chair,A patient examination chair,A recliner,3,What type of chair was in the back of the room when Beckett and Castle sat down to talk to Dr. Nieman?,122582,Castle,48.61-52.66,castle_s06e09_seg02_clip_07,A patient examination chair 544,A chessboard set up for a game comes out.,A hamburger comes out.,A hot cup of coffee comes out.,A computer screen that only serves as a secure direct connection to the White House comes out.,A gun comes out.,4,What comes out of a secret compartment on Castle's desk when he touches a secret button?,122583,Castle,32.8-39.45,castle_s08e01_seg02_clip_03,A gun comes out. 545,Leonard gives Penny a newspaper.,Leonard gives Penny a calendar.,Leonard gives Penny a tablet.,Leonard gives Penny some of his makeup.,Leonard gives Penny a picture of himself.,0,What does Leonard give to Penny before he takes a picture of her?,122584,The Big Bang Theory,81.14-88.82,s06e13_seg01_clip_00,Leonard gives Penny a newspaper. 546,22 minutes,30 minutes,15 minutes,18 minutes,20 minutes,4,How long does House say the attack will last when the nurses begin to work on the patient?,122585,House M.D.,24.12-35.95,house_s03e20_seg02_clip_12,20 minutes 547,Sing her Happy Birthday,Dance with her,Open her presents,Get her a drink,Take her out on a date,0,What does Joey ask if he can do for Rachel after Monica walks away?,122586,Friends,0.3-9.44,friends_s09e12_seg02_clip_13,Sing her Happy Birthday 548,Chandler,the mailman,the babysitter,Ross,Phoebe,0,Who came through the door when Monica was pacing?,122587,Friends,31.06-33.62,friends_s06e02_seg02_clip_04,Chandler 549,Cristina said her husband was waiting for her.,Cristina said a bed was waiting for her.,Cristina said her dinner was waiting for her.,Cristina said her cat was waiting for her.,Cristina said a hot bath was waiting for her.,1,What did Cristina say was waiting for her when she returned home?,122588,Grey's Anatomy,87.8-90.05,grey_s01e04_seg02_clip_11,Cristina said a bed was waiting for her. 550,Ross stays,Joey stays,Rachel stays,Chandler stays,Phoebe stays,4,Who stays at the apartment after everyone leaves?,122589,Friends,18.43-28.61,friends_s07e01_seg02_clip_01,Phoebe stays 551,Leonard used a candy bar that Raj set on fire with a match.,Leonard used a piece of paper that Raj set on fire with a match.,Leonard used a stick that Raj set on fire with a match.,Leonard used a tortilla chip that Raj set on fire with a match.,Leonard used a comic book that Raj set on fire with a match.,3,What did Leonard use as a fuel source when he was trying to get the lug nut to expand?,122590,The Big Bang Theory,0-10.13,s09e03_seg02_clip_15,Leonard used a tortilla chip that Raj set on fire with a match. 552,made Howard dessert,made Howard dinner,made Howard lunch,check on Howard,washed Howard's clothes,3,What did Howard's mother do when Howard was bathing?,122591,The Big Bang Theory,13.5-28.51,s03e09_seg02_clip_08,check on Howard 553,Izzie and Cristina are performing the needle aspiration,George and Alex are performing the needle aspiration,George and Izzie are performing the needle aspiration,Cristina and Meredith are performing the needle aspiration,Meredith and Izzie are performing the needle aspiration,3,Who is preforming the needle aspiration before they start talking about relationships,122592,Grey's Anatomy,57.16-72.14,grey_s02e10_seg02_clip_08,Cristina and Meredith are performing the needle aspiration 554,Castle called Beckett to tell her they weren't letting him out of the car.,Castle stayed in the back seat of the car pouting.,Castle got out of the car to get a better cell phone signal.,Castle snuck into the building behind Esposito and Ryan.,Castle went to sleep in the back seat of the car.,3,What did Castle do after Esposito and Ryan entered the building?,122593,Castle,44.19-54.07,castle_s07e06_seg02_clip_13,Castle snuck into the building behind Esposito and Ryan. 555,3 weeks from now.,31 days from now.,Four weeks from now.,5 weeks from now.,Two months from now.,2,When does Ross want to know his friends' availability for before giving them news?,122594,Friends,0-6.56,friends_s04e20_seg02_clip_09,Four weeks from now. 556,He said unfortunately yeah,He said no im just horny,He did not respond,He asked her why ,He laughed at her,0,How did Chase respond after Leisha asked if she was boring him?,122595,House M.D.,50.06-62.66,house_s08e12_seg02_clip_11,He said unfortunately yeah 557,Rodger has on a face mask.,Rodger has on glasses.,Rodger has on a hat.,Rodger has on blue make up.,Rodger has chocolate on his face.,1,What does Rodger have on his face when he answers questions?,122596,Castle,60.92-68.99,castle_s01e05_seg02_clip_04,Rodger has on glasses. 558,Sheldon and Leonard run in,just Sheldon runs in,just Leonard runs in,enemies ambush the shelter,nothing,0,What interrupts Raj and Howard when they are talking?,122597,The Big Bang Theory,12.84-19.87,s02e16_seg01_clip_00,Sheldon and Leonard run in 559,she slapped the man in the dark coat,she is kissing the man in the dark coat,she kicked the man in the dark coat,she didn't do anything to the man in a dark coat,she hugged the man in the dark coat,1,What is Pheobe doing when she is in front of a cab with a man in a dark coat?,122598,Friends,48.62-57.33,friends_s07e11_seg02_clip_17,she is kissing the man in the dark coat 560,Yellow. ,Orange. ,Black. ,White. ,Red. ,4,What color is Chandler's shirt when he is sitting down with the blonde man at his desk?,122599,Friends,0.3-2.66,friends_s05e21_seg02_clip_04,Red. 561,In front of castle and the debriefing board,In front of Hector,In the interview room,In the bathroom,In the hallway,0,Where is Beckett standing before Castle talks to Hector?,122600,Castle,0-24.5,castle_s08e20_seg02_clip_22,In front of castle and the debriefing board 562,A police officer.,Teaching.,Farming.,A lawyer.,A judge.,2,What profession does Izzie reference when crying?,122601,Grey's Anatomy,61.79-73.54,grey_s02e12_seg02_clip_24,Farming. 563,It means he thinks House only has him,It means he thinks Cameron would say no,It means he thinks Chase would be busy,It means he thinks Foreman hates him,It means he thinks Cuddy would laugh in his face,0,"What does Wilson's ""huh"" mean when House mentions asking another friend?",122602,House M.D.,50.81-63.06,house_s01e12_seg02_clip_11,It means he thinks House only has him 564,Because she knows he hated Wilson.,Because Wilson was an assassin that deserved to die.,Because Wilson gave up on life and died like a true champion.,"Because Wilson lived long enough, but suffered a lot.","Because she knows he had accepted Wilson's choice to end his pain, thinking it was better than the pain itself.",4,Why does the blonde mentions Wilson when trying to convince the man to give up on life?,122603,House M.D.,49.78-70.33,house_s08e22_seg02_clip_17,"Because she knows he had accepted Wilson's choice to end his pain, thinking it was better than the pain itself." 565,Sheldon goes to bed,Penny screams ,Sheldon runs over to the second door,Sheldon grabs a basket,Leonard walks in behind Sheldon,2,What happens after Sheldon opens the first door?,122604,The Big Bang Theory,11.74-18.06,s03e08_seg02_clip_01,Sheldon runs over to the second door 566,Evolution,Gravity,Relativity,The string theory,The Big Bang,3,What theory did Sheldon talk about after Penny asked him what was wrong?,122605,The Big Bang Theory,26.67-34.11,s07e20_seg02_clip_00,The string theory 567,a good meal,$1000,get out of jail free card,a life of freedom,a beer,4,What does House off er Brent in exchange for his baby when they are in the NICU?,122606,House M.D.,0-8.29,house_s02e22_seg02_clip_19,a beer 568,She wanted to get rid of the puppy.,Because the couple seemed really happy and that made her really glad.,She wanted the puppy to be happy,She was just glad,She didnt like the dog. ,1,What was Phoebes reason for giving the puppy away when they were at the caffeteria?,122607,Friends,24.01-29.45,friends_s04e11_seg02_clip_19,Because the couple seemed really happy and that made her really glad. 569,black,green,red,Purple,yellow,3,"What color is the shirt Castle is wearing when he say's ""Ashley, I'm sorry...""?",122608,Castle,40.96-50.97,castle_s03e23_seg02_clip_16,Purple 570,Howard,Penny,Amy,Emily,Priya,0,Who was in the bedroom when Bernadette was in the bathroom?,122609,The Big Bang Theory,0-19.22,s10e05_seg02_clip_02,Howard 571,Park says the patient mistook her for Taub.,Park says the patient mistook her for Wilson.,Park says the patient mistook her for Cuddy.,Park says the patient mistook her for his wife.,Park says the patient mistook her for Adams.,4,Who does Park say the patient mistook her for after the MRI drowned?,122610,House M.D.,33.67-38.44,house_s08e21_seg02_clip_19,Park says the patient mistook her for Adams. 572,Courtney felt it was an exciting movie,Courtney felt it was her favorite movie ever made.,Courtney felt it was a cool movie,Courtney felt it was the worst movie ever made.,Courtney felt it was an intriguing movie,3,How did Courtney feel about Castle's movie according to Castle after he talks to Courtney about her career?,122611,Castle,0-17.29,castle_s08e14_seg02_clip_07,Courtney felt it was the worst movie ever made. 573,brought Barney to the hospital,called 911,helped Barney for free,decided to bill Barney,asked for Barney's insurance,2,What did the Canadian doctors do when Barney was hurt?,122612,How I Met You Mother,7.68-24.81,met_s05e05_seg02_clip_16,helped Barney for free 574,He took a vow of secrecy.,He was too drunk to remember. ,He was blind folded and didn't know what he was eating.,He was too embarrassed.,It was mixed with other food so he probably didn't notice.,0,Why did Miles say William didn't tell anyone what he had eaten when William went to the hospital?,122613,House M.D.,53.54-58.44,house_s06e17_seg02_clip_04,He took a vow of secrecy. 575,That he would be a bad father.,That he had a sophisticated palate. ,That he was terrible in bed.,That he was a bad cook.,That he was worth her virginity.,4,What was Ted worried about Stella after their night?,122614,How I Met You Mother,43.99-54.03,met_s03e18_seg02_clip_04,That he was worth her virginity. 576,Monica,Jack,Chandler,Phoebe,Judy,1,Who did Rachael kiss on the cheek when some characters walked into the room?,122615,Friends,11.12-16.54,friends_s09e01_seg01_clip_01,Jack 577,The patient is suicidal ,The patient is fragile,The patient would want revenge,the patient wouldn't care,the patient is already irate ,1,Why did bob not want kutner to tell his daughter what her biological parents did when she awoke after surger?,122616,House M.D.,72.95-81.2,house_s05e04_seg02_clip_24,The patient is fragile 578,It had been 3 years.,It had been 3 weeks.,It had been 2 days.,It had been six months.,It had been 6 years.,3,How long had it been since Michael moved away from Iowa before he begun to work in construction?,122617,Castle,46.81-48.6,castle_s07e14_seg02_clip_13,It had been six months. 579,Dinner,Cough Syrup,Pain killers,Advice,A seditive,4,What did Foreman give the patient after talking to the team?,122618,House M.D.,62.12-73.62,house_s03e23_seg02_clip_14,A seditive 580,Updating the murder board meant the case was solved.,Updating the murder board meant Holmby's alibi checked out.,Updating the murder board meant there was major progress being made in the case.,Updating the murder board meant the detectives could use Castle's help.,Updating the murder board meant Castle would be assigned back to it. ,1,Why was Castle happy when he saw Ryan updating the murder board?,122619,Castle,24.23-29.61,castle_s08e21_seg02_clip_07,Updating the murder board meant Holmby's alibi checked out. 581,Foreman stormed out after saying he didn't want to be a part of House killing someone.,Foreman started searching the medical handbook to find out what the diagnosis was.,Foreman got mad and said House needed to get himself out of the mess he was in.,Foreman was visibly shaken at the severity of the symptoms that House had described.,Foreman asked House whether Jason was listening to their conversation.,0,What did Foreman do after House described Jason's symptoms over the phone?,122620,House M.D.,32.44-44.19,house_s05e09_seg02_clip_21,Foreman stormed out after saying he didn't want to be a part of House killing someone. 582,Dolan says they should meet at the WWII Monument.,Dolan says they should meet under the Golden Gate Bridge.,Dolan says they should meet at Starbucks.,Dolan says they should meet at the Washington Memorial.,Dolan says they should meet under the Costello Bridge.,4,Where does Dolan say they should all meet when talking with Beckett on the phone?,122621,Castle,52.75-62.67,castle_s05e08_seg02_clip_24,Dolan says they should meet under the Costello Bridge. 583,Monica says to take the salads to table 4.,Monica said to take the salad home. ,Monica said to take the salad to the refrigerator.,Monica said to put the salads in the garbage.,Monica said to put the salads on the counter.,0,Where does Monica say to take the salads when she is giving orders?,122622,Friends,4.93-11.31,friends_s04e10_seg02_clip_18,Monica says to take the salads to table 4. 584,Start playing in his extreme basketball league again,Get the medication he needed to deal with the pain,Go fulfill his dream of sky diving,Get all the free operations he wants,Stop sneaking pain pills from his grandmother,3,What did Joey say he could do after his insurance kicks in,122623,Friends,28.84-37.42,friends_s06e04_seg02_clip_09,Get all the free operations he wants 585,Next to the support rod.,Under the support rod.,Behind the support rod.,On the floor.,On the top of the structure.,2,Where did Howard want to put the piece of pvc when he went to the machine?,122624,The Big Bang Theory,46.45-55.16,s02e22_seg02_clip_08,Behind the support rod. 586,Raj.,Howard.,Leonard.,Sheldon.,Penny.,3,Who rushes out of the bathroom after a man opens the door?,122625,The Big Bang Theory,0-2.24,s04e23_seg02_clip_13,Sheldon. 587,get Stuart's autograph,sign an autograph,get a comic book,get a glass of water,sign Sheldon to his team,4,What was Raj trying to do when he and Sheldon were at the comic store?,122626,The Big Bang Theory,0-21.66,s03e05_seg02_clip_06,sign Sheldon to his team 588,Priya.,Penny.,His mother.,Raj.,Stuart.,0,How called Leonard when he was sitting in the chair?,122627,The Big Bang Theory,42.72-51.26,s04e19_seg02_clip_09,Priya. 589,the hall,the sofa,the bathroom,the kitchen,the bedroom,4,Where did Leonard suggest they go when he was with Stephanie?,122628,The Big Bang Theory,13.87-26.56,s02e08_seg02_clip_09,the bedroom 590,his leg,his arm,his stomach,his face,his ear,3,What part of Mike's body did Joey say he punched when they played games in high school?,122629,Friends,32.99-44.19,friends_s09e03_seg02_clip_12,his face 591,Castle saw a makeshift bed on the floor of the kitchen.,Castle saw a large bloodstain on the floor of the kitchen.,Castle saw spent cartridges on the floor of the kitchen.,Castle saw deceased male on the floor of the kitchen.,Castle saw a sleeping infant on the floor of the kitchen.,0,What did Castle see on the floor after he entered the kitchen?,122630,Castle,64.41-69.11,castle_s07e06_seg02_clip_13,Castle saw a makeshift bed on the floor of the kitchen. 592,Mia,Eva ,James,Cuddy,Mary,3,Who was beside House when he was checking the laptop,122631,House M.D.,12.09-33.02,house_s06e14_seg02_clip_20,Cuddy 593,Did you bring the ice?,I thought you had to work late.,"""All right! Ross came as doodie.""",Where is your date?,Is this a costume party?,2,What does Joey say after he sees Ross's costume?,122632,Friends,49.58-59.03,friends_s08e06_seg02_clip_04,"""All right! Ross came as doodie.""" 594,Joey accidentally hit Ross in a pretend fight.,A close relative of Joey's recently died. ,Joey got Ross fired at work. ,"An incident occurred involving Rachel, Ross, and Joey that could impact Joey and Ross's friendship. ",Ross stole money from Joey earlier in the episode,3,Why is there tension between Ross and Joey when Ross enters the apartment?,122633,Friends,23.44-48.2,friends_s08e16_seg02_clip_06,"An incident occurred involving Rachel, Ross, and Joey that could impact Joey and Ross's friendship. " 595,Because the mini bar was stocked.,Because there was room service.,Because there was a hot tub in the room.,Because she could see the ocean from the room.,Because the bell hop was cute.,4,Why did Alexis change her mind about staying in the hotel after the luggage arrived?,122634,Castle,51.62-58.99,castle_s08e14_seg02_clip_00,Because the bell hop was cute. 596,A towel.,A pair of pants.,A shirt.,A pair of pants and a shirt.,A jacket.,3,What is on the bathroom door when Ross and Charlie toast their glasses.,122635,Friends,40.97-47.39,friends_s09e23-24_seg02_clip_20,A pair of pants and a shirt. 597,Leslie and Leonard were standing on the staircase in Leonard's apartment.,Leslie and Leonard were standing by the door outside Leonard's office. ,Leslie and Leonard were by a display of comic books in the comic book store.,Leslie and Leonard were sitting at a table together in the cafeteria.,Leslie and Leonard were standing next to a table in the cafeteria. ,3,Where were Leslie and Leonard when Leslie asked Leonard out on a date?,122636,The Big Bang Theory,0-34.66,s02e02_seg02_clip_04,Leslie and Leonard were sitting at a table together in the cafeteria. 598,Leonard calls himself a romantic. ,Leonard calls himself an idiot. ,Leonard calls himself a jerk. ,Leonard calls himself a loser. ,Leonard calls himself a cheater. ,1,What does Leonard call himself after he gets kicked out of the woman's apartment?,122637,The Big Bang Theory,23.36-28.68,s05e07_seg02_clip_14,Leonard calls himself an idiot. 599,Beckett is sitting next to Castle,Castle is sitting next to Cynthia,Beckett is sitting next to Cynthia,Beckett and Casle are not sitting but standing,Castle and Beckett are sitting across form each other,0,Where are Beckett and Castle sitting when they are in the interrogation room with Cynthia?,122638,Castle,22.55-31.75,castle_s04e03_seg02_clip_25,Beckett is sitting next to Castle 600,"Bring me a large, no cream.",She has coffee.,I hate coffee.,Coffee makes me sleep.,Go away.,1,What did Penny say when Leonard offered to buy her coffee?,122639,The Big Bang Theory,5.52-12.77,s02e22_seg02_clip_08,She has coffee. 601,29 years old,26 years old,25 years old,27 years old,28 years old,3,"According to Kevin, what age is the victim, Anne Cardinal, when he is talking to Beckett and Castle?",122640,Castle,63.68-70.46,castle_s05e20_seg02_clip_01,27 years old 602,1 block,2 blocks,3 blocks,32 blocks,5 blocks,2,How far is the address from the ATM when the team finds the latest clue?,122641,Castle,11.83-21.85,castle_s03e20_seg02_clip_18,3 blocks 603,a baby,a baby seat,a box of diapers,a baby bottle,a baby blanket,1,What is sitting on the table in front of Ross when he is talking with Rachel?,122642,Friends,0-1.53,friends_s09e11_seg02_clip_11,a baby seat 604,House asks the patient to read the second line.,House asks the patient to read the first line.,House asks the patient to read the fifth line.,House asks the patient to read the fourth line.,House asks the patient to read the eighth line.,2,What line does House ask the patient to read when he tests her vision?,122643,House M.D.,0-9.56,house_s05e02_seg02_clip_03,House asks the patient to read the fifth line. 605,Rachel.,Monica.,Joey.,Phoebe.,Janet.,0,Who was outside the door when Chandler opened it?,122644,Friends,15.93-23.28,friends_s03e17_seg02_clip_02,Rachel. 606,At a wedding.,At a club. ,Outside the hospital. ,In her apartment. ,At a nice restaurant. ,0,Where were House and Cuddy when they were dancing?,122645,House M.D.,11.5-17.48,house_s07e08_seg02_clip_17,At a wedding. 607,distended bladder,kidney stones,influenza,heartburn,bladder infection ,0,What ailment does House state he is suffering from when he is conducting a differential with his team and Wilson? ,122646,House M.D.,0-20.79,house_s03e16_seg02_clip_17,distended bladder 608,Rebecca was happy.,Rebecca has angry in her eyes.,Rebecca was sadden.,Rebecca has tears in her eyes.,Rebecca began to scream.,3,How emotional did Rebecca get when she was telling Alex to give her a reason to stay there for him?,122647,Grey's Anatomy,28.04-44.07,grey_s03e25_seg02_clip_23,Rebecca has tears in her eyes. 609,on the computer,in the bathroom ,on the phone ,he not in the room ,in the kitchen ,0,Where is Sheldon when the others play cards?,122648,The Big Bang Theory,0-56.95,s03e05_seg01_clip_00,on the computer 610,Leonard was kissing Penny.,Leonard was making tea.,Leonard sat in a chair next to Penny.,Leonard was carrying trash outside.,Leonard was sending a text.,2,Where was Leonard when Raj was talking?,122649,The Big Bang Theory,27.74-94.02,s07e17_seg01_clip_00,Leonard sat in a chair next to Penny. 611,The news.,A comedy show.,An action movie.,A play.,A marching band,4,What was Chandler watching on TV when he was laughing?,122650,Friends,38.88-46.42,friends_s10e08_seg02_clip_01,A marching band 612,a two cubs and an angry mama,"a papa bear, a mama bear, and a baby bear",seven dwarfs,goldielocks and the three bears,a mama bear and two joes,4,Who did Castle say he has needing a ride when he was talking on the cb radio?,122651,Castle,4.82-16.59,castle_s05e08_seg02_clip_18,a mama bear and two joes 613,Joey,Adam,James,John,Mary,0,"Who did the attendant point to, when he asked the police to take him too?",122652,Friends,1.7-6.12,friends_s05e23-24_seg02_clip_41,Joey 614,2 hours,3 hours,an hour,4 hours,5 hours,1,How long has it been since house has seen a change in the patients condition when talking to foreman and chase?,122653,House M.D.,64.23-68.24,house_s01e16_seg02_clip_22,3 hours 615,he wants him to leave 100% well ,he has a quality of life issue ,he has a bet that he can make him better ,he thinks the surgery is easy to do ,he feels the patient will die without it,1,Why does House tell Chase he cares about his patient having surgery when he asks?,122654,House M.D.,51.88-67.36,house_s05e17_seg02_clip_17,he has a quality of life issue 616,"""Hey, hey, hey, you're touching me""","""Hey, hey, hey, you're touching the game board""","""Hey, hey, hey, stop touching the board""","""Hey, hey, hey, stop touching me""","""Hey, hey, hey, you're touching what you shouldn't be touching""",1,What does Ross say to Monica when she walks over to him?,122655,Friends,26.62-35.69,friends_s04e12_seg02_clip_05,"""Hey, hey, hey, you're touching the game board""" 617,Penny,Beverley,Raj,Leonard,Howard,1,Who is walking with Sheldon when he is walking towards his apartment?,122656,The Big Bang Theory,0-6.63,s02e15_seg02_clip_12,Beverley 618,A colored pencil.,A cigarette.,A crayon.,A marker.,A cigar.,3,What is in Ross's right hand when reading off the question to everyone?,122657,Friends,0-7.02,friends_s04e12_seg02_clip_08,A marker. 619,roach,cricket,lady bug,katy did,caterpiller,1,What kind of bug was it they were looking for when they searched?,122658,The Big Bang Theory,7.02-22.58,s03e02_seg02_clip_06,cricket 620,She smells bad.,She's too nice.,She's a total nightmare.,She has huge feet.,She has a ugly face. ,2,Why does everyone have a problem with Cathy before Marshall sits down at his computer?,122659,How I Met You Mother,3.1-12.41,met_s03e08_seg02_clip_00,She's a total nightmare. 621,Raj shames Howard for wasting his time to locate the house of top model.,Raj congratulates Howard for finding the location.,Raj suggests they all should visit the location.,Raj asks Sheldon regarding the accuracy of the location.,Raj says possibly Durham North Carolina.,4,What does Raj reply after Howard says the location of Top Model house?,122660,The Big Bang Theory,49.28-59.02,s02e07_seg02_clip_04,Raj says possibly Durham North Carolina. 622,Eating a TV dinner.,Working on a laptop.,Reading a comic book.,Staring blankly into space.,Drinking some wine.,2,What is Staurt doing when Raj and Leonard play video games?,122661,The Big Bang Theory,46.62-60.15,s08e23_seg02_clip_05,Reading a comic book. 623,Leonard was carrying a video camera.,Leonard was carrying his notebook computer.,Leonard was carrying popcorn and a drink.,Leonard was carrying his jacket.,Leonard was carrying a backpack.,2,What was Leonard carrying when he and Howard sat down in the movie theater?,122662,The Big Bang Theory,12.93-16.24,s09e19_seg02_clip_08,Leonard was carrying popcorn and a drink. 624,3 months,9 years,3 years,10 years,1 year,1,How many years did sonia claim to have eaten prison food when talking to esposito?,122663,Castle,46.88-50.97,castle_s08e16_seg02_clip_13,9 years 625,Sleeping,House was writing on a white board.,Snoring.,Coughing.,Nothing.,1,What was House doing when he was laying in the hospital bed?,122664,House M.D.,46.75-58.32,house_s07e23_seg02_clip_11,House was writing on a white board. 626,She gives him a high five.,She laughs and says that's okay.,She lays on the floor.,She throws a tantrum like a child.,She races him around the living room?,1,How does Monica respond after Chandler asks if that's okay?,122665,Friends,0-3.2,friends_s05e01_seg02_clip_15,She laughs and says that's okay. 627,A maid's costume.,A negligee.,School girl uniform.,A nurses costume.,A dominatrix costume.,2,What was Penny wearing under her coat after she took it off?,122666,The Big Bang Theory,60.45-65.84,s07e21_seg02_clip_15,School girl uniform. 628,Castle brings in Alexis' friends from the hallway.,Castle retrieves a mini horse from the hallway.,Castle retrieves a bag of board games from the hallway.,Castle brings in Beckett from the hallway.,Castle retrieves a second scooter from the hallway.,4,What does Castle retrieve from the hallway after talking with Alexis?,122667,Castle,89.31-96.03,castle_s07e04_seg02_clip_26,Castle retrieves a second scooter from the hallway. 629,Kate is uncomfortable because she isn't attracted to Joey.,Kate is uncomfortable because she doesn't want anyone to know about her and Joey.,Kate is uncomfortable because Joey wants to tell Lauren about the two of them.,Kate is uncomfortable because Joey wants to meet her parents.,Kate is uncomfortable because Joey wants to introduce Kate to her friends.,1,Why is Kate uncomfortable when Joey approaches her?,122668,Friends,0-9.3,friends_s03e20_seg02_clip_16,Kate is uncomfortable because she doesn't want anyone to know about her and Joey. 630,Castle ended up in the back seat of the car with Jessup,Castle ended up out of the car with Jessup,Castle was dropped off to walk with Jessup,Castle was in a cab with Jessup,Castle didn't side with Jessup ,0,Where did Castle end up after he sided with Jessup?,122669,Castle,88.39-94.03,castle_s02e09_seg02_clip_06,Castle ended up in the back seat of the car with Jessup 631,you can go my son ,I would feel the same way ,She do nag,This your mother,Don't talk back to your mother. This trip is much too dangerous.,4,"What did Dr. Koothrappali say to Raj after he said if you were standing behind me nagging, I might?",122670,The Big Bang Theory,0-43.65,s02e23_seg02_clip_11,Don't talk back to your mother. This trip is much too dangerous. 632,House was not expecting to hear Wilson say death is not final.,House was not expecting to hear Wilson say death is just the beginning of another adventure.,House was not expecting to hear Wilson say the angels were waiting for him.,House was not expecting to hear Wilson say he was waiting to see loved ones on the other side.,House was not expecting to hear Wilson say he hoped he didn't go to hell.,2,What didn't House expect to hear from Wilson when they were talking about dying?,122671,House M.D.,15.26-18.86,house_s08e21_seg02_clip_04,House was not expecting to hear Wilson say the angels were waiting for him. 633,Her horoscope,A date,Movies,Heatwave,Her son,3,What does Castle ask the woman when Beckett was interrogating Brad?,122672,Castle,68.27-91.03,castle_s03e11_seg02_clip_06,Heatwave 634,Rachel,Monica,Joey,Mikey,Maude,1,Who is Chandler with when he calls Phoebe?,122673,Friends,26.41-30.01,friends_s05e14_seg02_clip_12,Monica 635,irritated,happy,peaceful,bored,angry,0,How did Izzy feel when she had to teach the girl about her period?,122674,Grey's Anatomy,36.14-55.09,grey_s03e14_seg02_clip_15,irritated 636,That Rachel wants to marry Chandler,That Rachel is in love with Chandler,That Rachel wants to marry Patrick,That Rachel only wanted a fling with Patrick,That Chandler and Rachel are dating,3,What did Chandler tell Patrick before Rachel entered the restaurant?,122675,Friends,12.49-52.19,friends_s04e10_seg02_clip_09,That Rachel only wanted a fling with Patrick 637,because she missed Esposito,because she needed some caffine,because she needed some gourmet coffee,because she hated the vending machine coffee,because she thought it was Castle,4,Why did Beckett get excited when Esposito showed up with a cup of coffee ,122676,Castle,54.57-66.95,castle_s07e01_seg02_clip_07,because she thought it was Castle 638,Franni and a male nurse,no one ,his parents,his best friend,his co workers ,0,Who is in the room when Thirteen talks to Doug?,122677,House M.D.,0-28.57,house_s05e21_seg02_clip_10,Franni and a male nurse 639,They are in the lab,They are at the library,They are in Howard's apartemtn,They are on the roof,They are in a restaurant,4,Where are the guys when they are talking about Shelton moping,122678,The Big Bang Theory,0-11.99,s04e14_seg02_clip_00,They are in a restaurant 640,falling on some ice,blowing the dismount on a keg stand ,drunk diving off a balcony,tipping over during a keg stand,being too drunk to do a keg stand,1,How did House say that the patient on crutches hurt had his achilles when walking down the hallway with the patient?,122679,House M.D.,0-11.86,house_s07e06_seg02_clip_00,blowing the dismount on a keg stand 641,they are at a discount mall ,they are at a wedding dress shop,they are at a designer show room,they are at a yard sale,they are at a flea market,1,Where are Monica and Pheobe when they are looking at dresses?,122680,Friends,21.13-27.4,friends_s04e20_seg02_clip_05,they are at a wedding dress shop 642,ride their bikes ,get in a cab,get more drinks at the bar ,cut Sheldon's hair ,dance on top the bar,1,What does Sheldon and the girls do after talking about dancing? ,122681,The Big Bang Theory,30.89-34.99,s04e21_seg02_clip_09,get in a cab 643,To protect Hayley.,To protect Alexis.,To protect Martha.,To protect Kate.,To protect himself.,3,Why did Castle say he was erasing his memory when the video was playing?,122682,Castle,48.36-59.21,castle_s08e15_seg02_clip_03,To protect Kate. 644,A hermit crab,A chick,A Duck,A hamster,A fish,4,What pet does Chandler suggest he and Eddie get after Tilly leaves?,122683,Friends,32.78-55.12,friends_s02e18_seg02_clip_04,A fish 645,A clown.,A dog.,A date.,Penny.,The mailman.,2,Who is Howard standing with when Leonard and Raj are talking about a date.,122684,The Big Bang Theory,56.66-61.46,s01e04_seg01_clip_01,A date. 646,aww did you really?,you better,I know you did,we wasn't gone that long,I missed you too. ,4,What did Leonard say after Penny told him she missed him?,122685,The Big Bang Theory,0-26.69,s03e01_seg02_clip_02,I missed you too. 647,She went to Chandler to tell him what a great friend he had been. ,She didn't go to anyone because she was ready to leave. ,She went straight to Ross and put her arm around him. ,She went to Monica to tell her how good dinner was. ,She went to Phoebe and asked is she would play a song for them all to mark the occasion. ,2,Who did Rachel go to and put her arm around after she came back inside?,122686,Friends,31.7-35.86,friends_s10e16_seg02_clip_13,She went straight to Ross and put her arm around him. 648,Castle arrests Charisse's for Robin's murder.,Castle is puzzled and interested in learning about NBP.,Castle hugs Charisse and puts Caste's jacket on Charisse.,Castle tackles Ryan to the ground for a football.,Castle makes Charisse a cup of coffee to drink.,1,How does Castle react after Charisse mentions NBP?,122687,Castle,0-6.44,castle_s08e09_seg02_clip_09,Castle is puzzled and interested in learning about NBP. 649,A funeral parlor.,The cleaners.,The grocery store.,The library.,The mattress store,4,Where were Chandler and Monica when they were talking to the sales guy?,122688,Friends,13.64-23.77,friends_s03e07_seg02_clip_20,The mattress store 650,Monica's dad slid some cards under the door,Monica's dad slid a magazine under the door ,Monica's dad slid a letter under the door,Monica's dad slid some money under the door,Monica's dad slid pamphlets about how to get pregnant under the door,4,What was Monica's dad sliding under the door when he was standing in the hallway?,122689,Friends,41.3-65.03,friends_s09e01_seg02_clip_21,Monica's dad slid pamphlets about how to get pregnant under the door 651,Foreman,Chase,Cameron,Cuddy,Wilson,2,Who was House talking to when he is testing out a new surgical tool?,122690,House M.D.,0-3.56,house_s02e24_seg02_clip_22,Cameron 652,Monica asks for the name of a personal investigator.,Monica asks for the name of a good lawyer.,Monica asks for the name of a carpet guy.,Monica asks for the name of a therapist.,Monica asks for the name of a window cleaning service.,2,Whose name does Monica ask the worker to give her before Monica leaves?,122691,Friends,25.8-38.13,friends_s04e14_seg02_clip_12,Monica asks for the name of a carpet guy. 653,green,grey,black,blue,brown,3,"What color is the shirt Chandler is wearing when he say's ""Hey man...""?",122692,Friends,47.04-57.02,friends_s02e14_seg02_clip_09,blue 654,She could go yell at Joey.,She could light a candle to cover it.,She could bake a pie to cover it.,She was not going to do anything.,She could get Joey kicked out of his apartment. ,2,[How/...] did Monica offer to cover up the smell from Joey's apartment [when/] she is talking to Phoebe?,122693,Friends,45.66-56.02,friends_s06e18_seg02_clip_09,She could bake a pie to cover it. 655,He got punched in the face,Lorenzo was pointing a gun at him,He paid for the take out,He punched the delivery man,He welcomed Lorenzo in ,1,What happened after Castle opened the door? ,122694,Castle,17.2-25.8,castle_s08e05_seg02_clip_20,Lorenzo was pointing a gun at him 656,"Amy says that Berscheid, Snyder and Omoto developed the pure cooper inventory.","Amy says that Berscheid, Snyder and Omoto developed the French fry closeness inventory.","Amy says that Berscheid, Snyder and Omoto developed the quantifiable closness inventory.","Amy says that Berscheid, Snyder and Omoto developed the french fry goodness inventory.","Amy says that Berscheid, Snyder and Omoto developed the Relationship Closeness Inventory. ",4,"What does Amy tell Penny that Berscheid, Snyder and Omoto developed after Penny asks Sheldon what they have come up with?",122695,The Big Bang Theory,31.62-59.93,s08e03_seg02_clip_08,"Amy says that Berscheid, Snyder and Omoto developed the Relationship Closeness Inventory. " 657,blood pressure,red blood cell count,white blood cell count,vitals,Weight,3,What did the doctor say the patient had up when she was checking the moniter?,122696,House M.D.,54.99-65.99,house_s06e11_seg02_clip_24,vitals 658,Phoebe assumes Rachel is throwing away some of her old clothes.,Phoebe assumes Rachel is preparing for a yard sale.,Phoebe assumes Rachel is packing to move out.,Phoebe assumes Rachel is throwing out Paolo's belongings.,Phoebe assumes Rachel is packing up Monica's belongings. ,2,What does Phoebe assume Rachel is doing when she enters the apartment?,122697,Friends,36.78-42.77,friends_s01e12_seg02_clip_11,Phoebe assumes Rachel is packing to move out. 659,Your parents are old.,You get on my nerves.,Why are you here?,You need to grow up.,Do you want some apple pie and ice-cream?,0,What did the lady say to Sheldon after she was frustrated?,122698,The Big Bang Theory,0-49.7,s10e01_seg01_clip_01,Your parents are old. 660,He wants the attack to take place within the hour,He wants the attack to take place immediately,He wants the attack to take place after Valkyrie is out,He wants the attack to be aborted,He wants the attack to take place when he gives the word,2,When does Bronson indicate he wants the attack to take place when he and Reed are talking?,122699,Castle,46.06-67.98,castle_s06e02_seg02_clip_16,He wants the attack to take place after Valkyrie is out 661,They asked him why he had taken so long.,They told him he should go home.,They seemed angry to see him.,They seemed surprised to see him but ultimately included him in their discussion.,They were stunned into silence.,3,How did the team react when Chase walked into the room while they were discussing the case? ,122700,House M.D.,120.12-153.02,house_s08e12_seg02_clip_25,They seemed surprised to see him but ultimately included him in their discussion. 662,Sheldon.,Raj.,Bernadette.,Amy.,Leonard's mother.,1,"Who entered the Vet's office after Penny asked Leonard, ""Do you know how much gas is?""",122701,The Big Bang Theory,18-25.08,s07e15_seg02_clip_07,Raj. 663,Sheldon said he was going off to buy a pussycat.,Sheldon said he was returning to his apartment.,Sheldon said he was going to a fancy restaurant.,Sheldon said he was going off to a retail store.,Sheldon said he was going to visit his mother.,0,Where did Sheldon say he was going after he finished placing his belongings in his hamper?,122702,The Big Bang Theory,12.3-14.46,s04e03_seg02_clip_10,Sheldon said he was going off to buy a pussycat. 664,His head.,His back.,His heart.,His lung.,His kidney.,0,Where did Stephanie threaten to shoot Winters after she took his gun? ,122703,Castle,61.53-71.65,castle_s05e06_seg02_clip_23,His head. 665,Callie invited him to a table in the bar,Callie invited him to her hotel room ,Callie invited him to a restaurant,Callie invited him to a midnight picnic,Callie invited him to her car,1,Where did Callie invite McDreamy to have another drink after he asked,122704,Grey's Anatomy,65.38-86.02,grey_s03e04_seg02_clip_25,Callie invited him to her hotel room 666,Moved to the corner of the room. ,Stood to Alan's right. ,Walked out of the room. ,Stood right next to Esposito. ,Stood to Alan's left. ,4,Where did Castle move after Esposito walked to the foot of the bed?,122705,Castle,15.2-20.12,castle_s08e19_seg02_clip_07,Stood to Alan's left. 667,Marshall hangs up his umbrella.,Marshall hangs up his hat.,Marshall hangs up his coat.,Marshall hangs up his backpack.,Marshall hangs up his keys.,4,What does Marshall hang up after walking into the apartment?,122706,How I Met You Mother,0-2.84,met_s02e07_seg02_clip_14,Marshall hangs up his keys. 668,Chloe.,Tonya. ,Stacey.,Greta.,Lauri.,0,Who appears in the infidelity photographs with Bill when Castle shows Beckett the photo?,122707,Castle,32.14-38.84,castle_s03e11_seg02_clip_15,Chloe. 669,Grenn,Blue,Black,Grey,Red,2,"What color is the Shirt that Beckett is wearing when she say's ""Play the audio...""?",122708,Castle,0-9.84,castle_s02e18_seg02_clip_20,Black 670,Because of his cane.,Because he is a doctor.,Because he's smart.,Because he's funny.,Because everyone else is too sick to care.,0,Why did Tritter say House gets away with treating everyone rudely when he was in the exam room with House?,122709,House M.D.,60.92-67.01,house_s03e05_seg02_clip_02,Because of his cane. 671,Dance. ,Drink some more. ,Hit on the waitress. ,He goes home. ,He goes to the bathroom. ,0,What does Jerry go to do after ordering more drinks? ,122710,How I Met You Mother,37.94-61.19,met_s06e21_seg02_clip_04,Dance. 672,Cristina,Derek,Meredith,Alex,Dr. Bailey,3,Who tries to ease Jane Doe's mind when she is concerned about her upcoming operation?,122711,Grey's Anatomy,0-14.91,grey_s03e23_seg02_clip_02,Alex 673,Slaughter calls Castle the name Sherlock,Slaughter calls Castle the name Watson,Slaughter calls Castle the name Charlie Chan,Slaughter calls Castle the name Hardy Boy,Slaughter calls Castle the name Pink Panther,0,What name does Slaughter call Castle after he talks to Ryan about the murder weapon,122712,Castle,41.57-48.2,castle_s08e06_seg02_clip_05,Slaughter calls Castle the name Sherlock 674,If they had spare change. ,If they wanted to play video games.,If they were interested in him.,If they could give him a ride home.,If they knew where his friends were. ,2,What was Sheldon asking the women when he was at the table?,122713,The Big Bang Theory,7.13-24.5,s09e05_seg02_clip_13,If they were interested in him. 675,House was also a prostitute,House was also a drug addict,House was his best friend,Wilson had always supported House,They were life long friends,1,Why did Wilson expect House to be more supportive when he told her?,122714,House M.D.,24.12-91.03,house_s05e05_seg02_clip_13,House was also a drug addict 676,Judy,Chandler,Jack,Phoebe,Monica,4,"Who was the first to walk in the room when Ross, Joey and Chandler were talking?",122715,Friends,12.55-16.82,friends_s09e01_seg01_clip_01,Monica 677,She goes to the cemetery.,She gets drunk and ends up at the hospital.,"A rush of adrenaline, rising pressure and chest pains and she ends up in the hospital.",She goes and see their favorite movie.,She goes to church and lights a candle.,2,What does Izzie say happens every year to Verna when it's the anniversary of Teds death every year?,122716,Grey's Anatomy,17.28-30.79,grey_s02e05_seg02_clip_18,"A rush of adrenaline, rising pressure and chest pains and she ends up in the hospital." 678,Westfield is stuck and reluctantly admits he needs the help of the nypd,Castle threatens to go to the fbi,Westield thinks Kate might be able to pose as Marie to help close the case,Castle threatens to use his celebrity media access to expose him,Westfield is an avid reader of Castle's books.,3,Why does Westfield share information with Kate and Castle when they sit down in Montgomery's office?,122717,Castle,26.4-52.79,castle_s03e09_seg02_clip_20,Castle threatens to use his celebrity media access to expose him 679,Four,Three,Two,Five,One,2,How many monitors were in the room when Foreman told Taub he'd been invited to the wedding?,122718,House M.D.,1.37-4.12,house_s07e17_seg02_clip_09,Two 680,They are in the kitchen. ,They are at the store. ,They are in the bedroom. ,They are in the bathroom. ,They are in Sheldon's apartment. ,0,Where are Bernadette and Howard when they are talking?,122719,The Big Bang Theory,0-14.41,s09e07_seg02_clip_02,They are in the kitchen. 681,Carolyn Decker's phone.,Carolyn Decker's iPad.,Carolyn Decker's hard drive.,Carolyn Deckers' Android tablet.,Carolyn Decker's smart watch.,0,Where did Castle say that he and Beckett found texts after Beckett told Ryan that maybe they didn't have to worry about trying to run a partial print in the CSU database?,122720,Castle,43.08-45.64,castle_s07e18_seg02_clip_23,Carolyn Decker's phone. 682,Leonard wore the wrong clothes.,Leonard sees someone he knows.,Leonard recently proposed to Penny.,Leonard is late to the meeting.,Leonard forgot his paperwork.,2,Why is Leonard Awkward when at the marriage license office?,122721,The Big Bang Theory,6.5-49.16,s05e24_seg02_clip_04,Leonard recently proposed to Penny. 683,On the stove. ,On the sink. ,On the counter. ,On the foosball table. ,On the floor. ,0,Where are Chandler's hands when he is standing next to Eddie?,122722,Friends,37.43-38.59,friends_s02e18_seg02_clip_04,On the stove. 684,antibiotics,mild course of chemo,blood transfusion,severe chemo,surgery,1,how did house say he wanted to get rid of the bad cells in abigails body when talking about treatments with abigail and maddy?,122723,House M.D.,46.71-51.65,house_s03e10_seg02_clip_21,mild course of chemo 685,The agent said their grabbed Castle on 5th Avenue,The agent said their grabbed Castle on Long Island,The agent said their grabbed Castle in the Bronx,The agent said their grabbed Castle in Harlem,The agent said their grabbed Castle in the subway,1,Where did the Agent say they grabbed Castle when he was talking to Beckett,122724,Castle,0-6.42,castle_s07e01_seg02_clip_07,The agent said their grabbed Castle on Long Island 686,Two ,Four ,Three,Six ,Five,1,How many napkins does Sheldon say his system consists of when Leonard asks for a napkin?,122725,The Big Bang Theory,9.28-28.49,s03e05_seg02_clip_00,Four 687,yellow,blue,orange,white,green ,3,what color is houses shirt after they tell him his liver is failing,122726,House M.D.,80.56-88.04,house_s08e15_seg02_clip_12,white 688,Cookies,Potato Chips,Popcorn,Pretzels,French Fries,2,What is Bernadette pouring into a bowl when she is talking to the girls?,122727,The Big Bang Theory,26.66-36.09,s05e10_seg02_clip_02,Popcorn 689,hello,Nothing,All better. Back to work,Good morning,Welcome ,2,what did Phoebe say when Phoebe said with Jack ?,122728,Friends,34.67-63.03,friends_s06e15-16_seg02_clip_36,All better. Back to work 690,Sheldon went to the roof,Sheldon walked into the hallway,Sheldon opened up a window,Sheldon stood in front of the building,Sheldon sat on the balcony,1,What does Sheldon do to get some fresh air after Leonard left for work,122729,The Big Bang Theory,31-46.04,s08e13_seg02_clip_00,Sheldon walked into the hallway 691,knock on the door,grab a chair,take an apple,wave hello,push a desk ,0,what does derek do when he is entering chiefs office?,122730,Grey's Anatomy,46.27-55.08,grey_s03e02_seg02_clip_07,knock on the door 692,House poked Ted with a booby pin.,House poked Ted with a knife.,House poked Ted with a sharpened pencil.,House poked Ted with a wire,House poked Ted with a syringe.,4,What did House poke Ted with when Ted was laying on his side?,122731,House M.D.,8.14-14.03,house_s06e19_seg02_clip_02,House poked Ted with a syringe. 693,Chandler was telling a telemarketer he wasn't interested.,Chandler was claiming the topic person was a pimp.,Chandler was talking to Monica.,Chandler was telling Rachel where he and Joey were.,Chandler was telling Ross to hurry the heck up.,1,What was Chandler talking about when he was on the phone?,122732,Friends,0-17.37,friends_s05e07_seg02_clip_16,Chandler was claiming the topic person was a pimp. 694,Rachel says she brought reinforcements,Rachel says she brought cake.,Rachel says she brought ice cream.,Rachel says she brought pizza.,Rachel says she brought cookies.,0,What does Rachel say she brought when she talks to Ross?,122733,Friends,6.67-12.77,friends_s05e16_seg02_clip_14,Rachel says she brought reinforcements 695,Pizza,Meow Mix,Fruit salad,Kibbles 'n Bits,Sushi,3,What does Alexis suggest after Castle mentions that he is hungry?,122734,Castle,9.79-15.31,castle_s04e13_seg02_clip_27,Kibbles 'n Bits 696,The unpasteurized sheep cheese was made in Iowa.,The unpasteurized sheep cheese was made in Missouri.,The unpasteurized sheep cheese was made in the Alps.,The unpasteurized sheep cheese was made in Nebraska.,The unpasteurized sheep cheese was made in Kansas.,2,Where did House say unpasteurized sheep cheese was made when he was talking about bacteria?,122735,House M.D.,10.35-13.95,house_s02e14_seg02_clip_07,The unpasteurized sheep cheese was made in the Alps. 697,"Sheldon said it 25 minutes after Penny said die, mummy",Sheldon never said that,"Sheldon said it 20 minutes after Penny said die, mummy","Sheldon said it 30 minutes after Penny said die, mummy","Sheldon told Penny to drink healing potion right after Penny said die, mummy",4,When Penny's frenzy stance is not working when did Sheldon say to drink a healing potion,122736,The Big Bang Theory,27.91-36.91,s02e03_seg02_clip_14,"Sheldon told Penny to drink healing potion right after Penny said die, mummy" 698,A gun,Verbal threats,Anger,A tax audit,The police,0,What is the patient threatening the hostages with when he takes them to the MRI?,122737,House M.D.,16.21-43.68,house_s05e09_seg02_clip_17,A gun 699,He was playing video games.,He was sitting down.,He was throwing away the trash.,He was making a phone call.,He was folding his cloths.,4,What was Sheldon doing when Penny said something about grad school?,122738,The Big Bang Theory,4.72-13.87,s02e01_seg02_clip_02,He was folding his cloths. 700,"Chandler, Monica and Joey.",Ross and Joey.,Phoebe and Monica.,Joey and Monica.,"Her date Kash, Ross and Joey.",4,What three people were in the Kitchen when Rachel stepped out of the bedroom?,122739,Friends,8.4-11.1,friends_s08e05_seg02_clip_10,"Her date Kash, Ross and Joey." 701,Leonard says he has no allergy medicine. ,"Five types which are-Prescription, nonprescription, foreign, domestic, experimental. ",Leonard only has over the counter allergy medicine. ,Leonard does not have a prescription for allergy medicine. ,Leonard asks if Penny wants him to get her prescription allergy medicine. ,1,How many types of allergy pills does Leonard say he has when Penny tells him that she's sneezing because of allergies?,122740,The Big Bang Theory,1.79-9.52,s03e15_seg02_clip_14,"Five types which are-Prescription, nonprescription, foreign, domestic, experimental. " 702,She asks a question.,She writes on the board.,She picks up some papers.,She opens a candy wrapper.,She picks up the phone.,4,What does the girl do after saying something about a functional laser weapon?,122741,Castle,59.64-69.65,castle_s05e06_seg02_clip_06,She picks up the phone. 703,Wonderful,Witty,Wild,Wacky,Worthless,1,"What did Sheldon say ""W"" was for when he was reading the poem?",122742,The Big Bang Theory,19.79-30.13,s04e07_seg02_clip_10,Witty 704,Being a hooker.,Theft.,A drug addict.,Being a stripper.,Petty crimes.,0,What did Beckett say Pam had a history of when her and Castle were in her apartment investigating her murder?,122743,Castle,20.36-24.44,castle_s06e09_seg02_clip_03,Being a hooker. 705,His career,Her son's life,Her mother's life,Her life.,This hospital lifespan,3,What does House tell the patient is on the table right now when he is talking to her?,122744,House M.D.,46.29-61.87,house_s01e14_seg02_clip_17,Her life. 706,Harp.,Guitar.,Harmonica.,Trumpet.,Trombone.,1,What instrument was played when Marshall and Lily got married the first time?,122745,How I Met You Mother,29.13-47.33,met_s02e21_seg02_clip_18,Guitar. 707,her heard improper grammmer ,he sneezed ,Raj sweet talking his phone ,to share his lunch ,someone comes in ,2,What makes Sheldon turn around when he is writing on the board? ,122746,The Big Bang Theory,8.66-12.84,s05e14_seg02_clip_08,Raj sweet talking his phone 708,FBI agents,police ,firefighters,military,security guard,3,what type of uniformed men are standing outside of the patients room when taub and chase are in there?,122747,House M.D.,0-3.08,house_s08e15_seg02_clip_12,military 709,good idea.,I want to hear the rest of the story,you right,No not yet,Yeah.,4,What did Penny say after Leonard said let's give them some privacy?,122748,The Big Bang Theory,0-47.6,s01e10_seg02_clip_14,Yeah. 710,hungry,happy,humiliated,joyful,bored,2,How did Sheldon feel when he was laying in bed?,122749,The Big Bang Theory,40.21-60.02,s03e09_seg02_clip_08,humiliated 711,They were in love,They were scheduled to leave on their honeymoon the next day,Lily was terminal and didn't know if she would live long enough,They didn't think marriages should have waiting periods,Lily was in labor and wanted the baby to be born legitimately,0,Why did Marshall and Lily think they should have their marriage waiting period waived after they were told to go to the courthouse?,122750,How I Met You Mother,21.82-42.73,met_s02e08_seg02_clip_07,They were in love 712,Jen.,Stuart.,Sam.,Marshall.,Barney.,4,Who is sitting across from Ted when he is at the bar?,122751,How I Met You Mother,9.57-13.35,met_s06e07_seg02_clip_11,Barney. 713,Raj,Penny,Howard,Sheldon,Stuart ,3,Who was with Leonard when he was coming up the stairs?,122752,The Big Bang Theory,0-7.26,s10e13_seg02_clip_00,Sheldon 714,irritated,happy,shocked,bored,nonchalant,2,How did Meredith react when Burke pulled out the penis?,122753,Grey's Anatomy,15-40.91,grey_s01e02_seg02_clip_03,shocked 715,She goes to see her mother,She walks toward him,She grabs some coffee,She goes to see her boyfriend,She continues to walk,4,What does Meredith do when George continuously calls her name?,122754,Grey's Anatomy,0-7.3,grey_s03e24_seg02_clip_12,She continues to walk 716,Tree cricket,Snowy cricket,Snowy tree cricket,I'll suck nothing,Snowy tree,3,What translation does Sheldon give after saying the Latin phrase Oecanthus fultoni?,122755,The Big Bang Theory,10.23-15.82,s03e02_seg02_clip_10,I'll suck nothing 717,On the metal door in the lock mechanism.,On the back door in the lock mechanism.,On the side door in the lock mechanism.,On the garage door in the lock mechanism.,On the front door in the lock mechanism.,4,Where did Montgomery say the brass shavings are found after he gives the forensic report to Esposito?,122756,Castle,14.03-20.17,castle_s01e07_seg02_clip_05,On the front door in the lock mechanism. 718,pinto has a secret stash of gormet coffee beans ,looking for files on patients ,house wants his chair and ottoman back,he wants the doctors phone because house broke his,hosue left his jacket in there,2,why does house wait for the doctor to leave his office before house goes in,122757,House M.D.,60.08-70.09,house_s08e02_seg02_clip_15,house wants his chair and ottoman back 719,Drank a cup of coffee,Ordered lunch,Called everyone for a meeting,"Wrote ""2 am Mike's Key Card"" on a white board","Yelled ""Eureka"" because she had an epiphany ",3,What did Beckett do after talking to the two guys looking at the book?,122758,Castle,5.17-18.34,castle_s02e12_seg02_clip_14,"Wrote ""2 am Mike's Key Card"" on a white board" 720,That the man is his patient,That he has cancer,That his patient died,That he accepted a teaching postion,That he has gotten married.,0,What does House disclose after the man stops talking?,122759,House M.D.,6.4-17.36,house_s01e22_seg02_clip_15,That the man is his patient 721,He tells her to stop.,He leaves the room.,He hugs her.,He sits down in the chair next to her.,He lays in bed next to her.,3,What does Richard do after Ellis tells him she would have fought harder for him?,122760,Grey's Anatomy,35.83-45.49,grey_s03e14_seg02_clip_25,He sits down in the chair next to her. 722,Because Sheldon is working,Because Penny was going,Because Leonard actually did not invite Sheldon,Because Sheldon doesn't like conferences,Because Sheldon is mad at Leonard because he says lucky hunch,4,Why Sheldon is not going to the conference after Leonard invite him?,122761,The Big Bang Theory,46.22-60.02,s01e09_seg02_clip_08,Because Sheldon is mad at Leonard because he says lucky hunch 723,I think he will be successful somewhere else.,He is wonderful but I can't keep him.,I think he will find a new job.,I think he is a brown nosing suck up.,I will talk to his boss.,3,What does Chandler say before Joey tells Chandler that he can not fire Joseph because he is not in his department.,122762,Friends,21.97-30.51,friends_s02e23_seg02_clip_13,I think he is a brown nosing suck up. 724,Cuddy yells at House,Cuddy hits House,Cuddy hugs House,Cuddy kisses House,Cuddy pushes House,3,What does Cuddy do to House after she says it's true?,122763,House M.D.,36.67-46.54,house_s07e02_seg02_clip_03,Cuddy kisses House 725,book,phone,keys,wallet,drink,4,What did Foreman set on the table before the waitress set their food down?,122764,House M.D.,20.86-25.96,house_s01e09_seg02_clip_17,drink 726,His keys.,A milkshake.,A puppy.,A baby.,A monkey.,3,What was Chandler holding when he asked Monica to trade?,122765,Friends,0-6.36,friends_s10e17-18_seg02_clip_15,A baby. 727,Chase said that Keferoxamine was a chelating agent,Chase said that Beferoxamine was a chelating agent,Chase said that Referoxamine was a chelating agent,Chase said that Teferoxamine was a chelating agent,Chase said that Deferoxamine was a chelating agent,4,What did Chase say was a chelating agent when he is in the patients room?,122766,House M.D.,23.51-29.5,house_s02e23_seg02_clip_20,Chase said that Deferoxamine was a chelating agent 728,A room of strippers,A stage of dancers,A photo shoot of models,A volleyball locker room ,A hospital break room,1,Where does Castle enter before seeing a bunch of women?,122767,Castle,0-15.64,castle_s08e08_seg02_clip_06,A stage of dancers 729,Janice is carrying a pizza.,Janice is carrying her purse.,Janice is carrying a bottle of maple syrup.,Janice is carrying a bottle of water.,Janice is carrying a book.,2,What is Janice carrying when she walks into the apartment?,122768,Friends,9.05-11.88,friends_s03e01_seg02_clip_01,Janice is carrying a bottle of maple syrup. 730,He's hiding something.,He is protecting his assistant.,He found new evidence.,He needed his assistant to help him on something.,He knew the assistant was lying.,0,Why did Castle say the DA wanted to stop the interview after he left Montgomeries office?,122769,Castle,81.2-85.33,castle_s03e19_seg02_clip_17,He's hiding something. 731,In the resting room.,At home.,On bed.,In the chapel.,In the surgery room.,2,Where is Denny after he collapsed?,122770,Grey's Anatomy,42.9-44.73,grey_s02e24_seg02_clip_07,On bed. 732,Wilson,Lewis,Foreman,House,Dan,4,Who does Melinda not want to see when she is in the hospital bed?,122771,House M.D.,39.85-64.82,house_s02e16_seg02_clip_16,Dan 733,elated,happy,peaceful,uncomfortable,worried,3,How did Sheldon feel when Priya took off her shoes?,122772,The Big Bang Theory,31.44-48.59,s04e17_seg02_clip_02,uncomfortable 734,"Alex says she's had the sweats for ""not very long"".","Alex says she's had the sweats for ""about a week"".","Alex says she's had the sweats ""since yesterday.""","Alex says she's had the sweats for ""a couple of days"".","Alex says she's had the sweats for ""about a month or so"".",3,How long does Alex tell House she's had the sweats when House is diagnosing her?,122773,House M.D.,20.58-25.5,house_s02e13_seg02_clip_02,"Alex says she's had the sweats for ""a couple of days""." 735,paper,pen,glove,folder,nothing,2,What was Pearlmutter had on his hands when he was talking to Beckett and Castle ?,122774,Castle,22.58-28.45,castle_s05e20_seg02_clip_01,glove 736,He is drinking a whiskey. ,He is drinking soda. ,He is drinking milk. ,He is drinking a wine cooler. ,He is drinking beer. ,4,What is Raj drinking when he is hanging out with the guys?,122775,The Big Bang Theory,2.32-5.11,s05e19_seg02_clip_16,He is drinking beer. 737,In the sink.,On the floor.,In the toilet. ,In the diaper genie. ,Outside.,3,Where does Rachel ask to throw up when talking to her mother? ,122776,Friends,12.15-16.1,friends_s08e20_seg02_clip_13,In the diaper genie. 738,She sing,She frown,She wave,She did nothing,She smile,4,What did Carolina do when she walk past the camera?,122777,Castle,39.4-49,castle_s07e18_seg02_clip_02,She smile 739,A hat.,A gun.,A box.,A badge.,A phone.,3,What was Beckett holding up before she said this is Castle?,122778,Castle,18.68-25.96,castle_s07e14_seg02_clip_20,A badge. 740,Amy said that Penny was a driving very well.,Amy said that Penny was putting on a brave face.,Amy said that Penny was being a great friend.,Amy said that Penny was doing a great job at work.,Amy said that Penny was driving at the perfect speed.,1,What did Amy say that Penny was doing when they were riding in the car?,122779,The Big Bang Theory,12.21-18.31,s06e03_seg02_clip_10,Amy said that Penny was putting on a brave face. 741,He has a laptop.,He has a cast on his arm.,He has a arm full of paperwork.,He has a box full of his belongings.,He has crutches.,4,What does Chase have when all the doctors walk away?,122780,House M.D.,50.86-60.77,house_s08e12_seg02_clip_20,He has crutches. 742,House picks up book.,House picks up his cane.,House picks up a backpack.,House picks up a liquor bottle.,House picks up a box.,3,What does House pick up from the floor right when Lucas walks into the room?,122781,House M.D.,26.33-29.62,house_s06e08_seg02_clip_11,House picks up a liquor bottle. 743,He temperamental,He's happy,He Angry,He's sad,He's worried,4,What mood was House in after Wilson questioned him about breakfast,122782,House M.D.,0-29.39,house_s06e05_seg02_clip_18,He's worried 744,Star Wars Figures. ,A comic book.,A video game controller.,Fruit Snacks.,A bottle of Liquor.,4,What is in Howard's hand when Bernadette tells him he is being childish?,122783,The Big Bang Theory,43.23-47.87,s08e21_seg02_clip_03,A bottle of Liquor. 745,The table.,The kitchen.,The fridge,The stove.,The microwave.,2,Where did Joshua say he wanted to put the food after Rachel kissed him? ,122784,Friends,10.78-18.49,friends_s04e18_seg02_clip_12,The fridge 746,watching videos,Sitting in an invention,typing information,taking notes,going through unused parts,1,What was Leonard doing when he told Sheldon good for you?,122785,The Big Bang Theory,0-7.46,s01e14_seg02_clip_09,Sitting in an invention 747,One,Two,Three,Four,Zero,0,How many pills does House find when he opens the box?,122786,House M.D.,59.87-66.17,house_s08e01_seg02_clip_10,One 748,happy,loved it,nonchalant,angry,tired,0,How did Ted feel about the building when Zoey asked him about it?,122787,How I Met You Mother,14.17-25.38,met_s06e05_seg02_clip_17,happy 749,Sheldon sat down and talked with Leonard.,Sheldon went to his dry-erase board to work on a formula.,Sheldon walked back to the kitchen,Sheldon went to bed.,Sheldon patted Leonard on the back.,4,What did Sheldon do after handing Leonard the tea he made?,122788,The Big Bang Theory,46.39-50.66,s01e06_seg02_clip_13,Sheldon patted Leonard on the back. 750,Cringed,Gagged,Threw up,Threw away his food,Lost his appetite,0,What did Sheldon do when Seibert put his arm around him before leaving?,122789,The Big Bang Theory,33.83-40.49,s04e15_seg01_clip_02,Cringed 751,it makes you move like a zombie,it almost makes a real life zombie,it makes you feel like a zombie,it makes you look like a real zombie,it enhances the zombie experience,4,Why did Paul say others use the zombie drug before Beckett asked where he got it?,122790,Castle,55.31-66.19,castle_s04e22_seg02_clip_19,it enhances the zombie experience 752,Modesto motors,NYPD,Reners law firm,Micro motors,No one,0,"Who did ryan say elise was poached by when talking to espo, beckett and castle?",122791,Castle,25.96-32.79,castle_s07e19_seg02_clip_23,Modesto motors 753,Penny tells Sheldon that it's only lemonade,"Penny tells Sheldon that it's a ""magic potion.""","Penny tells Sheldon that it's a ""special elixir.""",Penny tells Sheldon that it's a D&D performance enhancing drink,Penny tells Sheldon that it's empty,1,What does Penny tell Sheldon is in her pitcher after he tells her they cannot consume alcohol during Dungeons & Dragons?,122792,The Big Bang Theory,32.71-46.82,s06e23_seg02_clip_06,"Penny tells Sheldon that it's a ""magic potion.""" 754,Joey said he'd bring a friend for her friend,Joey pretended like he had a lot of money,Joey pretended like he knew someone famous,Joey told his date that he was a war veteran,Joey said he can help his date get into a movie,0,What does Joey say is the only reason his prospective date agreed to go out with him when talking to Chandler on the couch about their plans?,122793,Friends,34.79-47.8,friends_s01e14_seg02_clip_00,Joey said he'd bring a friend for her friend 755,Ross. ,Chandler. ,Her wrist. ,Her cuff. ,A finger. ,2,What is the woman looking at when she walks across the room and in front of Chandler?,122794,Friends,0-1.74,friends_s04e13_seg02_clip_06,Her wrist. 756,The Mom and Dad scream for security.,The Mom and Dad flip the table House is seated at.,The Mom and Dad hug and walk away deflated.,The Mom and Dad demand Cuppy replace House on the case.,The Mom and Dad sit on the ground.,2,What do the Mom and Dad do after House encourages they return to their son?,122795,House M.D.,54.41-71.07,house_s01e02_seg02_clip_19,The Mom and Dad hug and walk away deflated. 757,get chocolate,get hot sauce,get pop corn,get coke,get dipping sauce,4,Why did Ted go into the shop with a viewer on when he was at the theater?,122796,How I Met You Mother,41.95-65.03,met_s02e14_seg02_clip_14,get dipping sauce 758,Miso,Miyago,Mexico,Jade,Malay,1,What is the name of the establishment they are in when the men are relaxing?,122797,Castle,0-11.73,castle_s06e18_seg02_clip_11,Miyago 759,Being plump,Being bald,Being old,Being senile,Being awkward,2,What does Taub tell Foreman he's sick of being teased about when in the lab?,122798,House M.D.,0-8.64,house_s07e06_seg02_clip_10,Being old 760,"Phoebe said ""Yep, lipstick and a daughter. Big day for you!""","Phoebe said ""I knew I shouldn't have said anything.""","Phoebe said ""I'm sorry. I really have to go.""","Phoebe said ""I knew something like this was going to happen!""","Phoebe said ""My friends will be here soon so you should go.""",0,How did Phoebe respond when there was an awkward silence between her and Frank Sr.?,122799,Friends,35.05-40.32,friends_s05e13_seg02_clip_17,"Phoebe said ""Yep, lipstick and a daughter. Big day for you!""" 761,Beckett tells Valentine they need to talk,Beckett tells Valentine he is under arest,Beckett tells Valentine he needs to give a statment,Beckett tells Valentine he is a witness,Beckett tells Valentine he is a suspect to murder,0,What does Beckett tell Valentine when he walks up to her and Castle?,122800,Castle,50.49-57.64,castle_s07e22_seg02_clip_08,Beckett tells Valentine they need to talk 762,ryan,castle,esposito,no one,hayley,0,Who did beckett tell to go interview kirbys wife after allowing esposito to take sonia back to prison?,122801,Castle,13.65-18.66,castle_s08e16_seg02_clip_13,ryan 763,Penny.,Leonard.,Howard.,Sheldon.,Leslie.,3,Who did Raj ask to give his kite back when they were in the car?,122802,The Big Bang Theory,11.66-23.63,s03e06_seg02_clip_02,Sheldon. 764,In a taxi.,At the ballpark.,In the mall.,At his friend's house.,In a bar/restaurant.,4,Where was Marshall when he said he wanted to call his dad?,122803,How I Met You Mother,1.13-113.34,met_s06e13_seg02_clip_18,In a bar/restaurant. 765,An umbrella.,A cup of coffee.,A gun.,Marcel.,A flashlight.,4,What does Monica hold before Luisa comes down the stairs?,122804,Friends,0.31-6.82,friends_s01e19_seg02_clip_15,A flashlight. 766,Phoebe is standing outside the window,Phoebe is in the apartment.,Phoebe is sitting on the couch in the coffee shop,Phoebe is behind the counter.,Phoebe is singing by the window.,2,Where is Phoebe when Monica and Rachel start hugging?,122805,Friends,12.01-25.81,friends_s02e02_seg02_clip_14,Phoebe is sitting on the couch in the coffee shop 767,just 2 weeks ,2 yrs,since month ,since the winter ,a one time ting ,4,How long has Ryan being selling pills when Dr. Taub asks?,122806,House M.D.,19.79-24.85,house_s07e15_seg02_clip_06,a one time ting 768,A cat,A book,Her house keys,A bottle of wine,A candle,4,What is Rachel holding when she walks in the door with Paulo?,122807,Friends,0-9.74,friends_s01e07_seg02_clip_16,A candle 769,Gates took off her clothes,Gates hit Castle,Gates punched Esposito,Gates kissed Beckett,Gates looked at a note,4,What did Gates do after walking in?,122808,Castle,13.73-19.22,castle_s05e14_seg02_clip_10,Gates looked at a note 770,Go get a manicure and pedicure,Go shopping with Monica and Phoebe,Go to the OBGYN with Carol and Susan,Pick up another shift at the coffee house,Take his parents to the airport for him.,2,What did Ross tell Rachel she could do after he offered to go give back the ring to Barry?,122809,Friends,36.85-51.93,friends_s01e02_seg02_clip_12,Go to the OBGYN with Carol and Susan 771,He introduced Castle as a Police officer.,He introduced Castle as the producer.,Tony introduced Castle as Ochoa's creator.,He called Castle his brother in-law.,He told Ochoa that Castle is his younger brother.,2,What did Tony refer to Castle when he introduced him to Ochoa the actor.,122810,Castle,23.21-26.85,castle_s03e22_seg02_clip_08,Tony introduced Castle as Ochoa's creator. 772,A snowflake.,A bow.,An arrow.,A book.,A cigarette.,4,What does Barney's dad have in his hand when he is on the porch?,122811,How I Met You Mother,5.08-10.75,met_s06e21_seg01_clip_01,A cigarette. 773,He is not okay because they have lost a lot. ,He is cleaning the floor. ,He is looking for something. ,He is in denial. ,He is trying to exercise. ,0,"Why is Sheldon on the floor when he, Leonard, Amy, and Penny are playing games?",122812,The Big Bang Theory,0-2.82,s06e04_seg02_clip_13,He is not okay because they have lost a lot. 774,Bobby and Zach were cousins,Bobby and Zach played basketball together,Booby and Zach went clubbing together,Bobby and Zach were childhood friends,Bobby had hired Zach,4,Why did Zach say he never threatened Bobby after Castle talked about blackmail?,122813,Castle,5.85-12.15,castle_s02e20_seg02_clip_21,Bobby had hired Zach 775,Because it was put on ice,Because aspirin was taken,Because the patient was resuscitated,Because they arrived quickly,Because it maintained blood supply,1,Why was trauma prevented to the heart when in transit,122814,House M.D.,57.74-72.17,house_s03e07_seg02_clip_24,Because aspirin was taken 776,Nothing.,Red wine.,Water.,Mugs of beer.,Mimosas.,4,What does the group have to drink when they are sitting at the restaurant table?,122815,How I Met You Mother,45.55-48.45,met_s02e03_seg02_clip_03,Mimosas. 777,black,yellow,red,blue,purple,2,What color is the blanket on the patient's bed when Wilson walks in the room?,122816,House M.D.,9.89-15.02,house_s04e16_seg02_clip_12,red 778,Alexis is hungry.,Alexis is embarrassed and mortified her mother addresses Beckett.,Alexis is angry at Meredith.,Alexis runs out the door.,Alexis dances over to Castle.,1,What does Alexis do after Meredith addresses Beckett?,122817,Castle,9.46-17.56,castle_s01e06_seg02_clip_10,Alexis is embarrassed and mortified her mother addresses Beckett. 779,In the apartment,In front of the elevator,Outside a building,In a bathroom,In Chandler's office,1,Where are Ross and Chandler standing when they start talking about Chandler getting called Toby?,122818,Friends,0-9.79,friends_s08e05_seg02_clip_01,In front of the elevator 780,He was standing next to the patient next to the MRI machine.,He was standing next to the coffee machine in the break room.,He was standing next to the nurse's station.,He was standing next to the patient in an exam room.,He was standing next to a computer in the lab. ,0,Where was Chase standing when called for Foreman?,122819,House M.D.,0-11.32,house_s03e01_seg02_clip_18,He was standing next to the patient next to the MRI machine. 781,that they kill people,that they are helping,that they try and discredit believers before they can reveal the truth.,that they protect believers,that they are under an alien spell. ,2,how does Stryker see the government when it comes to aliens?,122820,Castle,22.3-34.35,castle_s03e09_seg02_clip_10,that they try and discredit believers before they can reveal the truth. 782,Nothing,The screen went on fine,The screen kept buffering,The screen went black,The screen froze,4,What happened to the call after Leonard took off his clothes?,122821,The Big Bang Theory,8.89-17.77,s05e02_seg02_clip_07,The screen froze 783,Sheldon calls Penny,Sheldon leaves,Sheldon starts crying,Sheldon runs away,Sheldon sits next to Raj,4,What does Sheldon do after he starts talking to Raj?,122822,The Big Bang Theory,5.06-11.01,s05e09_seg02_clip_05,Sheldon sits next to Raj 784,In Canada,In a mansion for their honeymoon,In Mexico,In a hotel for their honeymoon,On a cruise for their honeymoon,3,Where are Monica and Chandler at before confronting the couple?,122823,Friends,43.64-46.99,friends_s08e03_seg02_clip_12,In a hotel for their honeymoon 785,Marshall was afraid of Lily.,Marshall was awful.,Marshall was afraid.,Marshall was happy to get into bed.,Marshall was great.,4,What did Lily say when she described Marshall in bed?,122824,How I Met You Mother,35.71-48.99,met_s06e05_seg02_clip_17,Marshall was great. 786,Izzie references Uncle Remus.,Izzie references Popeye the Sailor Man.,Izzie references Tintin the Reporter.,Izzie references Homer Simpson.,Izzie references Curious George.,4,Which fictional character does Izzie reference when she's mentioning her curiosity to George?,122825,Grey's Anatomy,76.1-81.62,grey_s02e23_seg02_clip_06,Izzie references Curious George. 787,Rape,Heist,Theft,Kidnapping,Murder,4,What is the cop threatening to arrest Julian as an accessory for after telling him he lost his job?,122826,Castle,73.73-86.93,castle_s06e04_seg02_clip_19,Murder 788,Bob,Jones,Smith,A,15,1,What pseudonym does House use after Kutner asks for one for himself?,122827,House M.D.,76.56-89.02,house_s05e06_seg02_clip_01,Jones 789,Do you want to make out?,Do you want food,Do you want to go out,Do you want to play a game,Do you want dessert,0,What does Penny ask Leonard when she puts her wine glass down?,122828,The Big Bang Theory,5.38-15.26,s05e15_seg02_clip_12,Do you want to make out? 790,The kitchen.,The bathroom.,The bedroom.,Outside.,The laundry.,1,Where did Joey's sister tell Chandler to go when she told him to excuse himself?,122829,Friends,0-59.03,friends_s03e11_seg02_clip_15,The bathroom. 791,His head,His leg,His arm,His foot ,His back,2,What part of the body is bothering Frankie when House walks up?,122830,House M.D.,22.06-25.66,house_s08e01_seg02_clip_10,His arm 792,There was a high percentage chance that Barney's plan would fail.,Ted would get in trouble with the authorities.,Ted would have to pay a fine if he went through with Barney's plan.,Ted could get seriously injured if Barney's plan failed.,Ted would have to tear down The Arcadian which he would not do because it was a architectural landmark.,4,Why was Ted not willing to go through with Barney's plan when Barney suggested it?,122831,How I Met You Mother,20.54-25.01,met_s06e05_seg02_clip_01,Ted would have to tear down The Arcadian which he would not do because it was a architectural landmark. 793,She was sitting down.,She was opening the closet,She was crying.,She was eating.,She was adjusting the IV bags.,4,What was Cuddy doing before she why is that?,122832,House M.D.,21.16-31.06,house_s07e11_seg02_clip_17,She was adjusting the IV bags. 794,They saw Lopez's texts,The saw Carolyn's texts,They saw Carolyn's emails,They hear Carolyn's voicemail,They saw her GPS history,1,Why does the team believe Megan to be involved before she casts it as a mistake?,122833,Castle,74.56-77.68,castle_s07e18_seg02_clip_25,The saw Carolyn's texts 795,Little Red Hen,Yasmine,Pamela,Carmen,Hoff,1,What name does Chandler give the chick when he is talking to Joey?,122834,Friends,24.36-46.28,friends_s03e21_seg02_clip_16,Yasmine 796,Getting pregnant,The kiss,Their one night stand,Lending friends money,The states penal code,3,What does Joey say is always a mistake when he's talking to Monica?,122835,Friends,0-9.05,friends_s09e16_seg02_clip_04,Lending friends money 797,Video tapping her ,Dancing,Grabbing at her breasts,Slapping her butt,Calling Robin,0,What was Barney doing when the stripper was leaving? ,122836,How I Met You Mother,12.26-21.95,met_s02e19_seg01_clip_01,Video tapping her 798,he did not have on pants,he was wearing the color purple,he was wearing the color green,he was wearing the color black,he was wearing the color blue,4,what color pants was joey wearing when he was reaching the register?,122837,Friends,0-10.48,friends_s06e22_seg02_clip_03,he was wearing the color blue 799,Because Tom was like a big brother to Kyle,Because Kyle looked up to Tom.,Because Kyle was going to fight for Greta.,Because he wanted to get dinner with him,He wasn't following him,2,Why did Kyle follow Tom when he left to the zombie walk?,122838,Castle,58.97-62.12,castle_s04e22_seg02_clip_20,Because Kyle was going to fight for Greta. 800,Money,Pen,Cloth,Book ,Phone,0,What did House brought out for Wilson after he said he needed and epiphany?,122839,House M.D.,30.51-45.52,house_s05e02_seg02_clip_18,Money 801,He bought it on sale,He only had it because Chandler's roommate was Jewish,It was because Chandler was Jewish,It was because his mother was Jewish,He found it in the hallway,1,What did Joey say when Ross made fun of him for having a Menorah?,122840,Friends,54.28-62.03,friends_s01e07_seg02_clip_01,He only had it because Chandler's roommate was Jewish 802,A grate.,A handbag., A pillow case.,A closet door.,A desk drawer?,0,What did House open after he got on the floor on his hands and knees?,122841,Castle,63.7-73.87,castle_s08e21_seg02_clip_03,A grate. 803,A headset,A scarf,A hat,A pair of glasses,A wig,0,What did Lloyd have on his head when he was talking with Ryan and Esposito,122842,Castle,0-7.98,castle_s03e07_seg02_clip_08,A headset 804,She was hoping to find a patient from the psych ward,She was hoping to find a sociopath,She was hoping to find someone who needed her for something important,She was hoping to find a deranged killer,She was hoping to find a sniper,4,What did Cuddy say she was hoping she would find when she walked out of her office from talking to donors?,122843,House M.D.,76.84-83.74,house_s03e09_seg02_clip_00,She was hoping to find a sniper 805,Leonard asks Howard to make Raj disappear next. ,Leonard says that wasn't nice. ,Leonard kicks Howard out of the apartment. ,Leonard tells Howard to make it right. ,Leonard says that he should've led with that. ,4,What does Leonard say after Howard does the magic trick of making Leonard disappear?,122844,The Big Bang Theory,75.46-81.14,s05e12_seg01_clip_01,Leonard says that he should've led with that. 806,Ross naked,Monica naked,Ross and Racheal,A dog,A cat,1,What picture does Joey have after everyone looks at the picture Ross is holding?,122845,Friends,7.67-14.17,friends_s07e21_seg02_clip_18,Monica naked 807,sheldon shows his socks.,sheldon shows his arm pit,sheldon shows his tummy,sheldon shows himself flossing ,sheldon shows his laundry,3,how does sheldon display his cleanliness after explaining he's smart?,122846,The Big Bang Theory,32.33-38.85,s08e17_seg02_clip_09,sheldon shows himself flossing 808,Olivia told Tommy that was the last straw she wanted a divorce.,Olivia asked Tommy what else he was keeping from her.,Olivia asked Tommy why he thought he needed so many guns.,Olivia asked Tommy how he could endanger their children's lives.,Olivia asked Tommy if his mother knew about his little secret.,2,What did Olivia say to her husband after he told her he didn't want her and the kids to worry?,122847,House M.D.,39.51-46.86,house_s08e08_seg02_clip_05,Olivia asked Tommy why he thought he needed so many guns. 809,Leonard pointed a bottle.,Leonard took some bottles.,Leonardo run away.,Leonardo drunk coffee.,Leonardo trow a bottle to the floor.,0,What did Leonard after putting the bottles on the table?,122848,The Big Bang Theory,21.71-62.02,s01e05_seg01_clip_00,Leonard pointed a bottle. 810,the bathroom,Rome,stuck in traffic,in Joey's apartment,at his apartment,1,Where was Palo when the the party was taking place?,122849,Friends,26.8-32.46,friends_s01e10_seg02_clip_14,Rome 811,Amy says oh my god because Ross came in the room.,Amy says oh my god because she lost a finger nail.,"Amy notices the baby and enjoys the sight of the baby, before she bends down.",Amy says oh my god because she sees a spider.,Amy says oh my god because Rachel has to much make up on.,2,Why did Amy say oh my god before bending down to look at the baby.,122850,Friends,0-26.57,friends_s09e08_seg02_clip_01,"Amy notices the baby and enjoys the sight of the baby, before she bends down." 812,Addison is looking for Dr. Karev.,Addison is looking for Christina.,Addison is looking for Richard.,Addison is looking for Derek.,Addison is looking for Dr. Bailey.,0,Who is Addison looking for when she approaches Meredith in the conference room?,122851,Grey's Anatomy,30.21-66.73,grey_s02e25_seg02_clip_11,Addison is looking for Dr. Karev. 813,Tyler,Tyrone,Terrence,Tommy,Tyson,4,Who did Beckett say the NYPD doesn't want to know if he's alive when she walked away from Castle?,122852,Castle,5.07-18.59,castle_s06e09_seg02_clip_25,Tyson 814,Pictures of helicopters.,Pictures of medical procedures.,Pictures of police officers.,Pictures of victims.,Pictures of a town on fire.,4,What was on the screen when the presentation was happening?,122853,Castle,0-10.35,castle_s06e05_seg02_clip_16,Pictures of a town on fire. 815,Which one of you know the answer,You have 3 seconds,You need to have the answer,"Going once, going twice...",Do some more research,3,What did House say to his physicians when they couldn't decide the diagnosis of the patient.,122854,House M.D.,12.99-16.13,house_s07e18_seg02_clip_01,"Going once, going twice..." 816,To work,Outside,Her bedroom,The bathroom,The kitchen,4,Where does Amy go after failing to comfort Sheldon?,122855,The Big Bang Theory,0-41.61,s10e09_seg02_clip_07,The kitchen 817,Because Leonard wants to eat dinner in Penny's house.,Because Leonard wants to invite Penny to dinner.,Because Penny is sick.,Because Leonard wants to borrow money from Penny.,Because he misses Penny.,1,Why Leonard visited Penny in her house before dinner?,122856,The Big Bang Theory,0-29.88,s01e03_seg02_clip_10,Because Leonard wants to invite Penny to dinner. 818,A cab,A bus,A car,A movie,A date,1,What did Mr. Treeger say he had to catch when he was talking to Joey?,122857,Friends,13.87-16.19,friends_s04e04_seg02_clip_18,A bus 819,a doll costume,a French maid dress,Superman costume,Spiderman costume,a suit,1,What did Howard give Sheldon when he handed the box to Sheldon?,122858,The Big Bang Theory,0-15.87,s05e21_seg02_clip_07,a French maid dress 820,In the kitchen,In his bedroom,In the outside hallway,Across the hall at Monica's apartment,At work.,2,Where is Eddie when Chandler is asking Tilly about him?,122859,Friends,8.41-31.33,friends_s02e18_seg02_clip_04,In the outside hallway 821,Argumentative,Big ego,Insecure,Authoratative,Intelligent,2,How did reply when Foreman asked him to describe him?,122860,House M.D.,33.07-36.24,house_s02e01_seg02_clip_18,Insecure 822,Wilson picks up a plate of old food,Wilson picks up a piece of pizza,Wilson picks up a hand full of mail,Wilson picks up a half smoked cigar,Wilson picks up a magazine,4,What does Wilson pick up off the tray after he walked pass House on the couch,122861,House M.D.,16.38-25.94,house_s02e16_seg02_clip_10,Wilson picks up a magazine 823,Sweetie,Doll,Sugar,Darling,Dearest,1,What pet name did Chandler call Rachel when he asked her to unlock the handcuffs?,122862,Friends,0-7.12,friends_s04e03_seg02_clip_10,Doll 824,In Cameron's car during lunch,In the supply closet in the hospital,In a patient's bedroom in the hospital,In House's office,In the conference room,2,Where did Chase and Cameron have sex before they are discussing it in the observation area,122863,House M.D.,77.58-89.69,house_s03e18_seg02_clip_20,In a patient's bedroom in the hospital 825,awful,rested,like he's getting better,tired,annoyed,0,How does Sheldon tell Arthur he looks after Arthur says hes not up to the children's party?,122864,The Big Bang Theory,39.89-50.07,s06e22_seg02_clip_17,awful 826,Rachel puts down a tissue box.,Rachel puts down a wine glass.,Rachel puts down a magazine.,Rachel puts down a bowl.,Rachel puts down a purse.,2,What does Rachel put down on the table when Molly walks into the room?,122865,Friends,0-1.26,friends_s09e13_seg02_clip_10,Rachel puts down a magazine. 827,In the bank.,In a laboratory.,In the kitchen.,In the elevator.,At the airport.,1,Where were Cameron and Chase when they mentioned Foreman?,122866,House M.D.,0-8.7,house_s03e23_seg02_clip_16,In a laboratory. 828,Sarah gets a cup of water to drink to help steady her nerves. ,Sarah runs to the bathroom for tissue.,Sarah runs out the room because she can't take the emotions of talking about the murder of her co-worker.,Sarah gets angry and tells detective Beckett to leave her alone because she doesn't know anything.,Sarah backs up and sit down on a couch. ,4,What does Sarah do after she starts to cry when being questioned by Detective Beckett and Castle?,122867,Castle,86.63-91.19,castle_s04e12_seg02_clip_08,Sarah backs up and sit down on a couch. 829,Bells and Stocking,Bells and Wreathe ,Wreathe and Santa,Stocking and Santa ,Candy Cane and MistleToe ,3,What two things were hanging on the column by Wilson when House got off the elevator? ,122868,House M.D.,36.94-44.51,house_s03e10_seg02_clip_14,Stocking and Santa 830,Simon was not carrying anything.,Simon was carrying a guitar.,Simon wascarrying his phone.,Simon was carrying a towel.,Simon was carrying a drink.,4,What was Simon carrying on his hand when Robin went to him?,122869,How I Met You Mother,48.84-53.01,met_s03e16_seg02_clip_09,Simon was carrying a drink. 831,Like a milf ,Like a fish,Like a male stripper,Like a transsexual ,Like an Afghani prostitute ,4,How did House say the top made Cuddy look before she asked him to sign this?,122870,House M.D.,28.64-37.36,house_s04e13_seg02_clip_06,Like an Afghani prostitute 832,I don't have any,Which one?,I don't know what that is,the bigger one or the small one ,this game is stupid ,1,What did Penny say after Leonard told her to play a potion card?,122871,The Big Bang Theory,0-53.74,s03e05_seg01_clip_00,Which one? 833,Sheldon believes his mother is abandoning him.,Sheldon's mother slapped him.,Amy ended their relationship.,Sheldon was fired from his job.,Leonard pawned Sheldon's computer.,0,Why was Sheldon upset before his mother explained her reason for going to Hollywood?,122872,The Big Bang Theory,0-18.61,s05e06_seg02_clip_10,Sheldon believes his mother is abandoning him. 834,White,Red,Yellow,Magenta,Pink,0,What color shirt is Lyle wearing when Kim knocks at his door?,122873,Castle,0-4.21,castle_s06e07_seg02_clip_12,White 835,Desert.,A plate with fruit on it.,A cup of coffee.,Tape.,Markers.,1,What is on the table in front of Phoebe when Rachel enters the room with a box?,122874,Friends,1.83-7.63,friends_s06e06_seg02_clip_12,A plate with fruit on it. 836,Amy and Sheldon are having a conflict.,Amy and Sheldon are fighting with Leonard.,Amy and Sheldon need a brake.,Amy and Sheldon are tired.,Sheldon wants Amy to cook.,0,Why Amy and Sheldon are upset when stand in middle of the living room?,122875,The Big Bang Theory,0-48.76,s10e05_seg02_clip_00,Amy and Sheldon are having a conflict. 837,Waling through the door.,Sitting next to Sheldon waiting to play.,Standing in the kitchen.,Sitting in a chair.,Fixing the TV. ,3,Where was Penny when Sheldon was putting the 3D chess board together on the table?,122876,The Big Bang Theory,13.73-26.54,s07e01_seg02_clip_02,Sitting in a chair. 838,She said a smart blackmailer would give her time to get the cash.,She said a smart blackmailer would kill her.,She said a smart blackmailer would get a new victim.,She said a smart blackmailer would help her get the money.,She said a smart blackmailer would force her to hurry up.,0,What did Beckett say a smart blackmailer would do after Esposito said that Amber didn't have money?,122877,Castle,23.86-27.91,castle_s03e23_seg02_clip_13,She said a smart blackmailer would give her time to get the cash. 839,A shopping bag.,A cup.,A plate.,A cat.,A blue piece of paper.,4,What is Phoebe holding after she said wow?,122878,Friends,15.44-19.07,friends_s07e02_seg02_clip_14,A blue piece of paper. 840,Cindy,Cadence,Claire,Cheryl,Camilla,2,Who did Mandy say died because of her after saying she is the one who is supposed to be dead?,122879,Castle,19.57-29.13,castle_s06e13_seg02_clip_16,Claire 841,Foreman,Wilson,House,Amber,13 ,0,"Who did Masters, Chase and Taub meet when they went into the hallway?",122880,House M.D.,50.78-57.36,house_s07e10_seg02_clip_03,Foreman 842,Hands Ray a piece of paper.,Gives Ray a high five.,Gives Ray a hug.,Shakes Ray's hand. ,Walks past Ray.,3,What does Joey do after Ray introduces himself?,122881,Friends,31.43-37.04,friends_s08e20_seg02_clip_14,Shakes Ray's hand. 843,She's not interested in him anymore.,Marshall's low sperm count.,Her fertility is low.,She's tired of fighting with his father.,His father has no boundaries.,4,What does Lily explain is preventing her from procreating when Marshall defends his father?,122882,How I Met You Mother,46.77-55.02,met_s06e01_seg02_clip_08,His father has no boundaries. 844,her desk ,her chair,the window sill,on the bookcase ,on the floor,0,Where in Cutty's office is House sitting when she enters? ,122883,House M.D.,11.73-20.4,house_s05e12_seg02_clip_13,her desk 845,Howard knock out the power,Howard turn on the lamp with he touch of the laptop.,Howard did nothing,Howard turn on the water,Howard open the door,1,What did Howard do when he press the laptop the first time?,122884,The Big Bang Theory,31.85-35.32,s01e09_seg01_clip_00,Howard turn on the lamp with he touch of the laptop. 846,How to help Sheldon get a new job.,How to help Sheldon talk to girls.,How to help Sheldon with his stage fright.,How to help Sheldon interact better with people.,How to help Sheldon with his fear of flying.,2,What is the group discussing before Sheldon sits on the couch?,122885,The Big Bang Theory,0.89-8.57,s03e18_seg02_clip_04,How to help Sheldon with his stage fright. 847,Leonard tells SHeldon to be quiet,Leonard stops the car and looks at Sheldon,Leonard looks at a picture of Penny,Leonard has a drink of water,Leonard takes out his phone to call Penny,1,What does Leonard do after Sheldon reminded him how things are going with him and Penny?,122886,The Big Bang Theory,42.92-51.17,s06e24_seg01_clip_02,Leonard stops the car and looks at Sheldon 848,The gift card. ,The pen. ,The book. ,The movie. ,The music. ,2,What does Kathy figure out is actually from Chandler and not from Joey when it's her birthday?,122887,Friends,8.7-15.96,friends_s04e06_seg02_clip_19,The book. 849,Her briefcase,A coffe cup,A sack of groceries,A bottle of wine,A french horn,1,What was Robin holding when Ted handed her the facial tissue?,122888,How I Met You Mother,50.17-56.59,met_s03e08_seg02_clip_11,A coffe cup 850,Esposito give Beckett a cup of coffee,Esposito give Beckett a file,Esposito did nothing,Esposito give Beckett a pen,Esposito walk away,1,What did Esposito do when talking to Beckett ?,122889,Castle,52.37-61.18,castle_s03e19_seg02_clip_15,Esposito give Beckett a file 851,A week,A year,A month,5 days,10 days ,0,What was the time limit the detective said the body had been dead when he was on the phone?,122890,Castle,0.46-2.74,castle_s04e07_seg02_clip_13,A week 852,House saved them a table.,They will eat somewhere else.,There is an emergency and they need to go.,He needed to show him xray results.,Scully asked for them,0,Why did House ask Wilson to go with him when he saw him standing in the cafeteria?,122891,House M.D.,0-6.24,house_s08e21_seg02_clip_07,House saved them a table. 853,"She was sad that the game they started when she was five was now over, she was leaving for college, everything was changing.",She was sad that she lost the game.,She was sad that her laser gun had broken.,She didn't like that Castle cheated to win the game.,She didn't understand the rules of the game.,0,Why was Alexis disappointed when she sat down in the chair?,122892,Castle,65.27-87.02,castle_s04e22_seg02_clip_26,"She was sad that the game they started when she was five was now over, she was leaving for college, everything was changing." 854,Britney Spears.,Elton John.,Mariah Carey.,Neil Diamond.,ABBA,3,What artist do Amy and Howard listen to when riding around?,122893,The Big Bang Theory,0-11.82,s07e03_seg02_clip_07,Neil Diamond. 855,Because the patient said he needed to vomit,Because the patient said he couldn't feel his legs,Because the patient said he needed water,Because the patient said he needed to used the bathroom,Because the patient said he was dizzy,1,"Why does Derek, after looking at the patient, say he could have a spinal injury?",122894,Grey's Anatomy,78.35-86.41,grey_s03e24_seg02_clip_04,Because the patient said he couldn't feel his legs 856,A professor.,A sister of his.,His mother.,His brother.,His father.,0,Who is boring Ross when he is out to dinner.,122895,Friends,20.41-26.41,friends_s09e20_seg02_clip_04,A professor. 857,Conference room B.,Her car.,Her room.,At home.,In her office.,0,Where does Phoebe say she left her business card after she talks the first time?,122896,Friends,2.07-9.15,friends_s05e23-24_seg02_clip_40,Conference room B. 858,Alexis,Martha,Beckett,Ryan,Lanie,1,Who asks who would put a ring in a wedding cake when they are talking to castle?,122897,Castle,83.9-86.99,castle_s02e22_seg02_clip_20,Martha 859,Jeremy's apartment,Jeremys moms house,Jeremys job,jeremys school,Jeremys church,0,Where did castle and beckett go when they found out information on Jeremy?,122898,Castle,79.19-85.11,castle_s03e23_seg02_clip_16,Jeremy's apartment 860,Sheldon.,Amy.,Penny.,Bernadette.,Leonard.,0,"Who knocked the door when Bernadette, Amy and Penny where chatting?",122899,The Big Bang Theory,34.03-63.02,s07e05_seg02_clip_02,Sheldon. 861,he got hurt.,he wasn't expecting to see a woman with a chicken head.,he was angry.,he was fighting with the neighbor.,he was acting out a role. ,1,why did joey scream after he rounded the corner?,122900,Friends,13.07-17.09,friends_s07e21_seg02_clip_05,he wasn't expecting to see a woman with a chicken head. 862,Put his cell phone down,Sat down in a chair,Grabbed his cain,Made a phone call,Got up from his chair,4,"What did house do after he said ""Oh,hey .Come on.",122901,House M.D.,87.91-92.56,house_s01e18_seg02_clip_00,Got up from his chair 863,Raj picks up ice cream,Raj picks up a hotdog,Raj picks up a hamburger,Raj picks up a cheescake,Raj picks up a panini,4,What did Raj pick up when he places it on his plate?,122902,The Big Bang Theory,21.45-30.28,s05e02_seg02_clip_00,Raj picks up a panini 864,Give Nick Matty's plasma.,Transfuse Nick with Matty's blood.,Put them in isolation together.,Let them eat after one another.,Give Nick Matty's bone marrow.,4,How did Wilson say they would infect Nick when talking with Nick and Matty's parents?,122903,House M.D.,75.45-82.59,house_s03e21_seg02_clip_18,Give Nick Matty's bone marrow. 865,A briefcase,A gun,A knife,A cell phone,A scrap of paper with notes,0,What does Harley Romero have in his hand when he approaches the pizza place?,122904,Castle,37.36-55.81,castle_s03e20_seg02_clip_24,A briefcase 866,Barney's hand.,A hot cup of coffee.,A chicken wing.,Her cell phone.,A beer bottle.,4,What is Robin holding when she is talking with Ted about Booty calls?,122905,How I Met You Mother,53.75-57.19,met_s06e16_seg01_clip_00,A beer bottle. 867,"He claims he saw a ghost appear, then disappear.",He claims he never knew how obese he had become.,He claims he realizes now how old he really is.,He claims he had seen the murder suspect on the video.,He claims he is marked for death.,4,Why is Castle fearful after Ryan and Esposito interrupt him observing himself in the video monitor?,122906,Castle,20.7-30.83,castle_s08e21_seg02_clip_15,He claims he is marked for death. 868,dress,book,phone,clipboard,gloves,2,What is Matilda holding when she is talking to Beckett?,122907,Castle,0-9.66,castle_s06e14_seg02_clip_17,phone 869,House is sitting up on the patient bed,House is sitting down on a chair,House is on the phone,House is laying down on the patient bed,House isn't in the same room as Stacy,3,What is House doing when Stacy is in the patient room with him?,122908,House M.D.,17.6-25.97,house_s01e21_seg02_clip_22,House is laying down on the patient bed 870,Dinner with her sister,A concert plans,Her date,Her spa appointment,She doesn't have plans,2,What is Beckett considering cancelling when she decides to check the travel agents clients?,122909,Castle,40.72-52.61,castle_s02e14_seg02_clip_18,Her date 871,At the court,At the park,At the jail,On the street,At his house,3,Where does Leopold say they can all meet one day when he's talking about his appeal?,122910,Castle,36.82-40.96,castle_s05e17_seg02_clip_17,On the street 872,Food,A snack,A transplant.,A surgery,Medication,2,"What the patient want, even without consent, when she is in the bed?",122911,House M.D.,0-15.05,house_s05e08_seg02_clip_21,A transplant. 873,Light Purple.,Red.,Black.,Dark purple.,Blue.,0,What was color shirt was Monica wearing when Joey asked if they needed anything?,122912,Friends,47.22-57.26,friends_s06e12_seg02_clip_07,Light Purple. 874,A horse,A motorcycle,A newspaper stand,A car,A forest,3,What is in the video and pictures with the woman that Ryan shows Kate and Sergei after calling them into an office?,122913,Castle,9.54-19.54,castle_s08e11_seg02_clip_23,A car 875,Burke turns to look at Derek and frowns.,Burke cries.,Burke kisses Cristina.,Burke hugs Meredith.,Burke hugs Cristina.,0,What does Burke do after Derek asks him what is going on with Cristina?,122914,Grey's Anatomy,62.22-64.4,grey_s03e09_seg02_clip_08,Burke turns to look at Derek and frowns. 876,House feared the patient would have another stroke.,House wanted to make sure the patient did not die.,The patient was House's cousin.,House did not want to make the patient's parents sad.,House felt obligated as a doctor to help any patient in any way possible.,0,Why did House want to find the tumor in a certain patient when he was going over the patient's condition?,122915,House M.D.,75.34-80.69,house_s02e11_seg02_clip_13,House feared the patient would have another stroke. 877,He was sad to lose his friend,He was happy for Wilson,He was mad,He was skeptical about them,He disapproved,3,What was House's initial reaction when Wilson told him about Debbie?,122916,House M.D.,0.91-57.8,house_s05e05_seg02_clip_13,He was skeptical about them 878,She had a curfew,Because she was too drunk,It was past her bedtime,She was tired,Because kids were cooking meth,4,Why did Kim need to leave when she went to the party?,122917,Castle,49.99-57.4,castle_s06e07_seg02_clip_15,Because kids were cooking meth 879,A clipboard.,A cup of coffee.,The tablet.,A book.,A pen.,2,What does Alexis hand to Castle after he says there's no sense putting ourselves in the cross-hairs?,122918,Castle,63.04-70.86,castle_s08e02_seg02_clip_12,The tablet. 880,Phoebe,Monica,David,Rachel,Chandler,1,Who was calling when Mike answered the phone?,122919,Friends,0-5.6,friends_s09e23-24_seg02_clip_15,Monica 881,What would've happened is she would be president and the world would be a happy place where you could live happily ever after.,What would've happened is there would be no possible way she would've made any errors in that moment.,What would've happened is she going on living that lie until someone challenged her and she figured it out.,What would've happened is she become queen of everything because she would be living in a dreamland for make believe.,What would've happened if she was always right then she could have his job and she could be making the big bucks.,1,What does House say would've happened if Amber was always right after Amber scoffs at Thirteen about her possible malaria diagnosis?,122920,House M.D.,22.06-28.36,house_s04e09_seg02_clip_07,What would've happened is there would be no possible way she would've made any errors in that moment. 882,cold ,HIV,AIDS,the flu ,syphilis,4,What did Taub tell Ben his illness was when asked by Ben?,122921,House M.D.,67.44-73.49,house_s08e06_seg02_clip_24,syphilis 883,Castle discovers Alexis put her schedule on his phone.,Castle discovers Alexis put a lock on his phone.,Castle discovers Alexis put pictures of Beckett on his phone.,Castle discovers Alexis put the numbers of different women in his phone.,Castle discovers Alexis put a tracker app on his phone.,4,What did Castle discover Alexis put on his phone when talking to Beckett about Alexis' behavior?,122922,Castle,0-3.84,castle_s07e04_seg02_clip_26,Castle discovers Alexis put a tracker app on his phone. 884,A women's clothing ad. ,An ad for toilet paper.,A makeup commerical.,A TV show about aliens.,The city free clinic posters.,4,What did Joey model for when he was wearing makeup?,122923,Friends,6.72-12.61,friends_s01e09_seg02_clip_01,The city free clinic posters. 885,Ross was standing in front of the window,Ross was sitting at the coffee table,Ross was sitting on the sofa,Ross was sitting on the floor,Ross was standing in the middle of the room,1,Where was Ross when Joey came into the room?,122924,Friends,20.87-34.29,friends_s03e10_seg02_clip_13,Ross was sitting at the coffee table 886,Getting food in the mall,walking up stairs,Driving,Taking a drink of a smoothie,Eating an ice cream cone,2,What was Leonard doing when he told Howard that he couldn't believe he bought a red cowboy hat?,122925,The Big Bang Theory,51.06-59.57,s03e01_seg02_clip_14,Driving 887,Fulton's DNA is found on the bodies of the victims.,Fulton can be placed at a crime scene and has circumstantial evidence for covering Logan's death.,Fulton's fingerprints are on the murder weapons and can be placed at a crime scene.,Fulton was recorded admitting to the murders.,Fulton was seen at both the crime scenes when the murders were committed. ,1,What evidence does Beckett say she has when Zaretsky says the tape proves nothing about the deaths?,122926,Castle,50.41-59.42,castle_s06e21_seg02_clip_22,Fulton can be placed at a crime scene and has circumstantial evidence for covering Logan's death. 888,It was too expensive.,They got the wrong color.,They got a plastic crib.,They bought it online.,They bought it without her.,4,Why was Bernadette upset they bought a crib when she was talking to Howard.,122927,The Big Bang Theory,30.69-36.11,s10e06_seg02_clip_04,They bought it without her. 889,Joey made a joke about Rachel,Ross made a joke about Rachel,Monica made a joke about Rachel,Phoebe made a joke about Rachel,Gunther made a joke about Rachel,2,Who made a joke about Rachel in high school after Chandler talked about his doctor's visit,122928,Friends,36.21-47.9,friends_s03e14_seg02_clip_20,Monica made a joke about Rachel 890,To a classroom. ,To the parking lot. ,To the cafeteria. ,To the gym. ,To the library.,0,Where is Mrs. Ruiz leading Castle and Beckett after they leave the Principals office?,122929,Castle,77.37-87.84,castle_s07e04_seg02_clip_04,To a classroom. 891,89,31,Unclear; Significantly older,99,15,2,"What age was Anita when she made sweet, sweet love to Ross?",122930,Friends,7.56-21.23,friends_s08e09_seg02_clip_15,Unclear; Significantly older 892,A piece of cheese,A cheeto,An M&M,A milk dud,A potato chip,1,What food item was stuck on Joey's face before he picked it off and ate it?,122931,Friends,21.31-30.61,friends_s02e15_seg02_clip_08,A cheeto 893,Phoebe's grandmother paid her to stay away.,Lily isn't dead,She knows where Frank is,She's been in touch with Ursula for years,She is her birth mother,4,What surprising news does Phoebe Sr. tell Phoebe when they are in her kitchen?,122932,Friends,1.86-27.6,friends_s03e25_seg02_clip_19,She is her birth mother 894,"""Crocodile Rock"" was the song Raj referenced. ","Raj referenced ""Candle in the Wind."" ","""Sweet Home Alabama"" was what Raj mentioned. ","The song Raj mentioned was ""Stairway to Heaven."" ","It was ""Blowin' in the Wind"" that Raj referenced. ",1,Which song did Raj reference after requesting he could tell people about their tryst? ,122933,The Big Bang Theory,24.58-30.88,s05e01_seg02_clip_11,"Raj referenced ""Candle in the Wind."" " 895,Ryan,Beth,Mary,Sam ,Will,0,Who is Castle calling when he is driving?,122934,Castle,2.31-6.48,castle_s06e07_seg02_clip_15,Ryan 896,Castle asked for 30 seconds.,Castle asked for 20 seconds.,Castle asked for 2 minutes.,Castle asked for 4 hours.,Castle asked for 60 seconds.,4,How much time did Castle ask for when he wanted to talk to Anatoly to question him?,122935,Castle,8.9-10.68,castle_s08e11_seg02_clip_17,Castle asked for 60 seconds. 897,A mugshot of a man.,A photo of a man on a phone.,A photo of a woman on a phone.,A mugshot of a woman.,A picture of Burman.,2,What photo does Beckett show Burman when he asks her if she has any leads?,122936,Castle,85.07-90.02,castle_s06e19_seg02_clip_03,A photo of a woman on a phone. 898,Raj.,Amy.,Sheldon.,Penny.,Bernadette.,2,Who went out after paramedics transported Arthur.,122937,The Big Bang Theory,25.63-61.02,s06e22_seg02_clip_15,Sheldon. 899,Paint.,Cold coffee.,Soup.,Hot coffee.,Flour.,3,What gets spilled all over Tommy when Ross slams into him?,122938,Friends,18.31-35.42,friends_s03e22_seg02_clip_13,Hot coffee. 900,He knew that it was deeper,His metaphors were perfect,His brain had a gut feeling,He wanted to investigate it,The patient was a lying kid,1,How is House said to be right after being wrong about the medical problems?,122939,House M.D.,68.42-76.02,house_s08e02_seg02_clip_23,His metaphors were perfect 901,Alex smiles and leans back on the doorway.,Alex hugs Meredith.,Alex kisses Izzie.,Alex proposes to Izzie.,Alex walks out the door.,0,What does Alex do after Meredith asks why he did not kiss Izzie?,122940,Grey's Anatomy,40.19-42.02,grey_s02e06_seg02_clip_11,Alex smiles and leans back on the doorway. 902,"""I'll hold your hand through the whole thing.""","""I'll teach you to read and write.""","""I'll chain you to the desk and won't let you leave until it's done.""","""I'll pay you per word.""","""I'll make up a schedule and make sure your stick to it.""",4,How does Ross say he will help Joey after Joey says he doesn't have the discipline to be a writer? ,122941,Friends,35.42-50.76,friends_s05e10_seg02_clip_04,"""I'll make up a schedule and make sure your stick to it.""" 903,showing Derek a picture,covering her mouth,texting on her phone,holding her head,holding Derek's hand,3,What was Meredith doing when Derek told her that's not how it works?,122942,Grey's Anatomy,10.89-20.57,grey_s03e09_seg02_clip_30,holding her head 904,28th and Lex.,68th and Lex.,53rd and Lex.,78th and Lex.,58th and Lex.,3,"Where did Esposito say the cabbie pick up Hannah before Gates came up to talk to Beckett, Ryan, Castle and Esposito?",122943,Castle,1.83-7.78,castle_s05e14_seg02_clip_10,78th and Lex. 905,Sheldon,Raj,Leonard,Howard,Stewart,1,Who sat down at the table after he got a bottle of ketchup?,122944,The Big Bang Theory,2.72-7.86,s03e17_seg02_clip_02,Raj 906,banished from Cheesecake Factory,welcome,happy,tired,peaceful,0,What did Penny say Sheldon was when Sheldon was at lunch?,122945,The Big Bang Theory,0-5.37,s02e07_seg02_clip_06,banished from Cheesecake Factory 907,On the coffee table. ,On the couch. ,At a table inside. ,At a table outside. ,At the counter. ,4,Where is Phoebe sitting when Chandler is standing next to her at the coffee house?,122946,Friends,0-2.16,friends_s05e21_seg02_clip_07,At the counter. 908,The Moon,New York City,Westhampton Beach,Jersey City,Hoboken,4,Where does Stan Kopek state Doug had a place when being interrogated by Castle and Beckett?,122947,Castle,88.54-90.34,castle_s02e14_seg02_clip_03,Hoboken 909,On the counter,In her jacket,Under the couch,Behind a pillow,In a gift basket,4,Where was the porn tape when Monica grabbed it to show to Chandler?,122948,Friends,1.78-6.23,friends_s08e15_seg02_clip_06,In a gift basket 910,Her coat pocket,Her purse,A couch cushion,The kitchen drawer,A box off the shelf,1,What was Lily digging through when she said something about having change?,122949,How I Met You Mother,39.56-44.36,met_s02e01_seg02_clip_14,Her purse 911,Family Medicine,Oncology,Radiology,Pediatrics,Orthopedics,2,Where does House want the nurses to send the patient after they give her more blood thinners?,122950,House M.D.,26.4-36.87,house_s03e20_seg02_clip_12,Radiology 912,Amy is preparing hot coco,Amy is preparing tea,Amy is preparing an alcoholic mixed beverage. ,Amy is preparing lemonade,Amy is preparing apple cider,1,"What type of beverage is Amy preparing when Leonard, Raj, and Howard enter the apartment?",122951,The Big Bang Theory,0-5.7,s05e19_seg01_clip_01,Amy is preparing tea 913,He says what is my password?,He says nothing,He laughs,He says how do I get in the apartment,What if the cut the power?,4,What does Sheldin say after Howard explains the system?,122952,The Big Bang Theory,0-47.12,s03e13_seg02_clip_07,What if the cut the power? 914,Wilson looks at his wallet.,Wilson looks at his watch.,Wilson looks at his ID card.,Wilson looks at a piece of paper.,Wilson looks at House.,1,What does Wilson look at after opening the door to find a police officer and a child?,122953,House M.D.,91.11-92.03,house_s07e15_seg02_clip_06,Wilson looks at his watch. 915,A potted plant.,A jacket.,A vase.,A flower.,A napkin.,4,What was Ted holding when he said it's a big deal?,122954,How I Met You Mother,42.02-47.38,met_s03e18_seg02_clip_04,A napkin. 916,In her apartment,At the coffee shop,On stage,Outside the coffee shop window,A home,1,Where is Phoebe when she is trying to teach Stephanie how to play Smelly Cat?,122955,Friends,45.85-73.89,friends_s02e06_seg02_clip_21,At the coffee shop 917,The sink.,An over bed table.,The trash can.,The clock.,The guard rail.,1,What is House touching when Connie told Irene it was more than once in a while?,122956,House M.D.,70.8-80.3,house_s04e04_seg02_clip_14,An over bed table. 918,She hit Sheldon.,She yelled at Sheldon.,She touched her nose and pointed at Sheldon.,She ignored Sheldon.,She ran out of the room.,2,What did Penny do after Sheldon pointed out that she was being sarcastic?,122957,The Big Bang Theory,33.56-43.94,s04e08_seg01_clip_01,She touched her nose and pointed at Sheldon. 919,The power went out,The equipment was faulty,The heart stopped,Cuddy stopped them,House wanted to try a different test too soon,2,Why did the team stop looking inside her heart when they couldn't see anything?,122958,House M.D.,9.84-19.69,house_s03e24_seg02_clip_20,The heart stopped 920,Rachel's hair was down.,Rachel's hair was up in a loose bun.,Rachel's hair was in a ponytail.,Rachel's hair was in pigtails.,Rachel's hair was up in a beret hat.,0,How was Rachel's hair done when she was asked about her trophy?,122959,Friends,0-12.82,friends_s10e08_seg02_clip_08,Rachel's hair was down. 921,She claims that House sent her to check on the patient.,She rolls her eyes and does not answer Wilson.,She explains that they are restarting the patient's heart.,She explains that she was asking the patient some questions.,She says that she is visiting the patient who happens to be her sister.,2,How does Lisa respond after Wilson enters the hospital room?,122960,House M.D.,10.46-15.02,house_s04e16_seg02_clip_12,She explains that they are restarting the patient's heart. 922,Where did you get that shirt?,Do you want a drink,Would you like a cheeseburger,When are you due,How was your night,4,What did Phoebe ask Erica after she sat down?,122961,Friends,0-11.9,friends_s10e16_seg02_clip_18,How was your night 923,A car,A computer,A refrigerator,A person,A dog,1,What is behind Leonard when he is talking to Penny about Sheldon?,122962,The Big Bang Theory,36.64-46.43,s02e07_seg02_clip_06,A computer 924,Sheldon explains to Penny that Gary Con is museum about the Dungeon's and Dragons game. ,Sheldon explains to Penny that Gary Con is as convention about Game of Thrones. ,Sheldon explains to Penny that Gary Con is a science fiction convention where you can dress up as your favorite character. ,Sheldon explains to Penny that Gary Con is a science convention he has been invited to speak at. ,Sheldon explains to Penny that Gary Con is the only convention celebrating the life and work of Gary Gygan the co-creator of Dungeons and Dragons. ,4,How does Sheldon explain Gary Con to Penny when he is asking her to drive him there? ,122963,The Big Bang Theory,18.13-25,s08e16_seg02_clip_00,Sheldon explains to Penny that Gary Con is the only convention celebrating the life and work of Gary Gygan the co-creator of Dungeons and Dragons. 925,lube,dildo,nothing,Wine,condems,3,What is on Penny's table when amy says okay that's enough.,122964,The Big Bang Theory,33.37-43.23,s08e14_seg02_clip_14,Wine 926,Writing in his notebook,Drinking coffee,Reading a book,Talking on his cellphone,Checking his tablet,3,What was Javier doing before Beckett and Castle arrived downtown?,122965,Castle,43.62-49.85,castle_s05e08_seg02_clip_01,Talking on his cellphone 927,"Ted introduces himself as ""Supersonic President McAwesomeville.""","Ted introduces himself as ""Galactic President Superstar McAwesomedaddy.""","Ted introduces himself as ""Mr. McAwesomeville of the galaxy.""","Ted introduces himself as ""Mosby. Ted Mosby.""","Ted introduces himself as ""Galactic President Superstar McAwesomeville.""",4,Who does Ted introduce himself as when talking to George?,122966,How I Met You Mother,0-13.34,met_s06e08_seg02_clip_03,"Ted introduces himself as ""Galactic President Superstar McAwesomeville.""" 928,Rachel's hair was up in a loose bun.,Rachel's hair was down.,Rachel's hair was in a simple ponytail.,Rachel's hair was in an intricate ponytail.,Rachel's hair was in a half up do.,1,How was Rachel's hair done when she was talking to Caitlin?,122967,Friends,0-23.88,friends_s05e19_seg02_clip_17,Rachel's hair was down. 929,The television.,A laptop.,A cellphone.,A recording device.,A translator.,3,What does Beckett use after Brent tells her it was a mutual thing?,122968,Castle,3.15-13.51,castle_s01e02_seg02_clip_09,A recording device. 930,A purse,A necklace,A ring,A bracelett,A wallet,3,What did the killer take from valerie after killing her?,122969,Castle,5.96-11,castle_s03e05_seg02_clip_22,A bracelett 931,"Adams, Chase, Park, and Taub felt at a loss as to what was wrong with the patient.","Adams, Chase, Park, and Taub felt angry that House wasn't bothering to come to work.","Adams, Chase, Park, and Taub felt worried about House and Wilson's wellbeing.","Adams, Chase, Park, and Taub were bored and wanted House to come entertain them.","Adams, Chase, Park, and Taub wanted to boast about their diagnostic skills to House.",0,"How did Adams, Chase, Park, and Taub feel before Taub told Adams to try calling House again?",122970,House M.D.,13.2-44.01,house_s08e20_seg02_clip_05,"Adams, Chase, Park, and Taub felt at a loss as to what was wrong with the patient." 932,The monkey jumped back on his shoulder.,Rachel came to the door.,Monica picked up the monkey.,Monica gave Ross a drink.,Ross sat in a chair.,1,What happened after Ross told the monkey he'd catch up with him later?,122971,Friends,11.91-19.06,friends_s01e10_seg02_clip_14,Rachel came to the door. 933,She picked up a basket.,She opened the closet,She started crying.,She made a phone call.,She sat down.,0,What did Penny do before Sheldon said I'm sorry?,122972,The Big Bang Theory,41.62-51.06,s02e01_seg02_clip_02,She picked up a basket. 934,Cameron is wearing a Haz-Mat suit,Cameron is wearing doctor's scrubs,Cameron is wearing a formal dress,Cameron is wearing a sequin jogging suit,Cameron is wearing a Minnie Mouse costume,0,What is Cameron wearing when she is talking with Foreman,122973,House M.D.,15.44-24.98,house_s02e21_seg02_clip_17,Cameron is wearing a Haz-Mat suit 935,she get a drink,she left,she play card,she drink coffee,she get medication,1,What did Adams do when he finish talking to house?,122974,House M.D.,18.78-23.25,house_s08e17_seg02_clip_03,she left 936,"And you and his dad got in that big fight,",shoot him,hit him,wrecked your car,hit him on his head,0,"What does George say after he states ""And you took my side""",122975,Grey's Anatomy,26.08-35.96,grey_s03e12_seg02_clip_16,"And you and his dad got in that big fight," 937,because he was making a hip hop beat on her door,because she answers too slow,because he was worried about her,because he wanted made her frustrated,because he is the flash,4,Why is Sheldon knocking on Penny's apartment door over and over before she opened it,122976,The Big Bang Theory,9.61-24.81,s04e11_seg02_clip_09,because he is the flash 938,Taking off her jewelry.,Putting lotion on her hands.,Brushing her hair.,taking off her glasses.,Looking at her cell phone.,1,What is Bernadette doing when Howard gets into bed? ,122977,The Big Bang Theory,24.13-37.87,s10e04_seg02_clip_10,Putting lotion on her hands. 939,black pants,white pants,a green skirt,yellow socks,pink shoes,1,What is behind Monica when she talks about celebrating the relationship and solidifying the commitment?,122978,Friends,12.4-17.54,friends_s06e24-25_seg02_clip_20,white pants 940,sitting,looking at his computer,looking at his phone,drinking coffee,eating breakfast,0,What is Wilson doing when he's talking to House?,122979,House M.D.,0-10.47,house_s05e05_seg02_clip_13,sitting 941,Make sure he does not raid the medicine ,Keep him from breaking the state laws,To protect him from any wild dogs there,He is the best lock picker on the whole team,Make sure he does not steal underwear ,4,Why does Foreman say he is going with House after House asks who can pick a lock?,122980,House M.D.,0-17.55,house_s05e05_seg02_clip_05,Make sure he does not steal underwear 942,She looked curiously to the side at Chase,She rolled her eyes,She looked wide eyed at Brian,She looked quickly at Chase,She looked up,0,What did Masters do when Brian said he got hit in the nose?,122981,House M.D.,80.18-81.97,house_s07e18_seg02_clip_01,She looked curiously to the side at Chase 943,Outside in the rain,Behind the couch they were sitting on,On the balcony,He was sitting too,He wasn't there,1,Where was Gunther standing when Ross and Joey were talking?,122982,Friends,1.51-10.29,friends_s04e22_seg02_clip_03,Behind the couch they were sitting on 944,Rachel has on a black skirt.,Rachel has on a green skirt.,Rachel has on a blue skirt.,Rachel has on a pink skirt.,Rachel has on a white skirt. ,0,What color skirt does Rachel have on when kneeling on the couch?,122983,Friends,2.19-7.52,friends_s03e03_seg02_clip_04,Rachel has on a black skirt. 945,Penny tells Amy to go get the comic books,Penny laughs at Bernadette.,Penny says it's a great idea and will prove she is right.,Penny gets up and says she is going home.,Penny tells Bernadette it won't help solve the problem.,2,What does Penny do when Bernadette suggests looking at Leonard and Sheldon's comic books?,122984,The Big Bang Theory,50.72-57.37,s06e13_seg02_clip_13,Penny says it's a great idea and will prove she is right. 946,Because the patient had joint pain and swollen lymph nodes. ,Because the patient had already been treated for the suggested diagnoses and nothing changed.,"Because Taub thought that Thirteen, Kutner, and Foreman were misinterpreting the test results.",Because the patient's hair was falling out and her joints didn't hurt.,Because the patients joints didn't hurt and her lymph nodes weren't palpable.,4,"Why did Taub say that Thirteen, Kutner, and Foreman were wrong when they suggested diagnoses?",122985,House M.D.,66.02-88.02,house_s05e01_seg02_clip_19,Because the patients joints didn't hurt and her lymph nodes weren't palpable. 947,He walked away,He danced,He sat down,He slept,He started writing,2,What did Esposito do after handing a cup to Beckett? ,122986,Castle,57.78-63.29,castle_s07e01_seg02_clip_07,He sat down 948,Monica's leg brushed against Phoebe's right leg.,A spider brushed against Phoebe's right leg.,A black cat brushed against Phoebe's right leg.,A mouse brushed against Phoebe's right leg.,Phoebe's left leg brushed against her right leg.,4,What brushed up against Phoebe's right leg when she was searching the basement?,122987,Friends,52.75-55.88,friends_s01e19_seg02_clip_14,Phoebe's left leg brushed against her right leg. 949,Sheldon is asexual. ,"Sheldon really doesn't think that Amy is his girlfriend, when she clearly is. ",Sheldon doesn't want a girlfriend. ,Sheldon thinks it's nobody's business. ,Sheldon thinks they should leave him alone. ,1,Why does Sheldon deny it when Leonard says Amy is Sheldon's girlfriend?,122988,The Big Bang Theory,60.25-61.18,s04e01_seg02_clip_00,"Sheldon really doesn't think that Amy is his girlfriend, when she clearly is. " 950,Grey,Blue,WHite,Yellow,Red,2,"What color is the jacket that Kutner is wearing when he say's ""I will take...""?",122989,House M.D.,63.21-73,house_s05e06_seg02_clip_01,WHite 951,She leaves. ,She goes up to him to talk to him. ,She talks to Denny. ,She runs away. ,She runs into Alex. ,1,What does Izzy do after Burke is done talking with Denny?,122990,Grey's Anatomy,85.81-91.29,grey_s02e24_seg02_clip_07,She goes up to him to talk to him. 952,love and sacrifice,love,sacrifice,wealth,friendship,0,What was the part after bravery and commitment when Ryan gave his toast?,122991,Castle,10.98-17.02,castle_s04e04_seg02_clip_27,love and sacrifice 953,Go to goodwill.,Drink some liquor.,Eat burgers.,Make arts and crafts.,Dance around the rooms.,1,What did Castle and ryan do after they figured it out?,122992,Castle,15.75-28.81,castle_s08e07_seg02_clip_21,Drink some liquor. 954,He isn't surprised.,He's surprised the board members are capable of laughter.,He assumes Addison is lying.,He didn't expect Mark to do well at the board meeting.,He's surprised that Addison is spying on the board meeting.,3,Why is Derek surprised when Addison points out the hospital board are laughing inside the conference room?,122993,Grey's Anatomy,0-7.02,grey_s03e19_seg02_clip_23,He didn't expect Mark to do well at the board meeting. 955,Chandler,Rachel,Monica,Joey,Ross,4,Who is with Phoebe when she's driving the taxi?,122994,Friends,60.51-63.03,friends_s10e17-18_seg02_clip_23,Ross 956,A break,More saline,To put her in a coma,An operating room,To drain the blood with a straw,3,What does House need after Foreman and Chase say their patient is bleeding into their temporal lobe?,122995,House M.D.,56.52-74.53,house_s01e19_seg02_clip_17,An operating room 957,A pomologist,A botonist,A veternarian,A doctor,A chemist,1,"What does Chandler say the occupation of his cousin, Albert, is when sitting on the couch?",122996,Friends,26.36-38.77,friends_s03e12_seg01_clip_00,A botonist 958,Harvey Does Annette's taxes and cleans her house,Billy Does Annette's taxes and cleans her house,Larry Does Annette's taxes and cleans her house,Steve Does Annette's taxes and cleans her house,Connor Does Annette's taxes and cleans her house,0,Who does Annette's taxes and cleans her house in exchange of being smothered and strangled when Annette is talking,122997,House M.D.,35.58-45.04,house_s01e20_seg02_clip_07,Harvey Does Annette's taxes and cleans her house 959,a hazemat suit,a rain coat,a pair of scrubs,a tux,an oxygen mask,0,what is taub wearing when examining the patient?,122998,House M.D.,37.4-47.2,house_s07e07_seg02_clip_04,a hazemat suit 960,Chandler ate the rest of Joey's candy bar. ,Phoebe started washing dishes. ,Phoebe pulled Joey's half eaten candy bar from her pocket and ate it. ,Chandler started washing dishes. ,Phoebe starting cleaning. ,2,What did Phoebe do after Joey left her apartment?,122999,Friends,17.06-26.14,friends_s07e01_seg02_clip_01,Phoebe pulled Joey's half eaten candy bar from her pocket and ate it. 961,Two weeks,Two days,A week,One day,Three days,4,How long of a trip did the blonde doctor delay when she decided to stay and help House?,123000,House M.D.,13.1-15.04,house_s05e21_seg02_clip_06,Three days 962,Foreman gets up,Foreman looks up at her,Thirteen walks out,Thirteen grabs a glass,Foreman takes a sip of his beer.,1,What happens after thirteen walks into the restaurant?,123001,House M.D.,3.54-7.58,house_s05e15_seg02_clip_17,Foreman looks up at her 963,A book,Flowers,A cellphone,A fake arm,Papers,3,What is Ross holding when he hugs Rachel?,123002,Friends,0-8.24,friends_s01e02_seg02_clip_01,A fake arm 964,The guy hold a margarita.,The guy hold a pitcher.,The guy hold a bottle of beer.,The guy hold a tray.,The guy hold a glass of beer.,4,What did hold the guy when Barney asked a question?,123003,How I Met You Mother,22.51-60.03,met_s02e10_seg02_clip_14,The guy hold a glass of beer. 965,a telephone,a bottle of beer ,a sub sandwhich,A glass of water,a paper sack,3,What is sitting in front of Joey when he asks Rachel if it really matters? ,123004,Friends,29.88-35.11,friends_s08e16_seg02_clip_16,A glass of water 966,"The guy is the devil, the satan in a smack.",The guy is good.,The guy is hamble.,The guy is nice,The guy is honest.,0,What said Rachel to Mandy when talking about the guy?,123005,Friends,14.11-18.61,friends_s01e20_seg02_clip_19,"The guy is the devil, the satan in a smack." 967,The toy plane stood on the air.,The toy plane went outside.,The toy plane hit Bernadette.,The toy plane fly to the kitchen and hit things.,The toy plane smashed a window.,3,Where goes the toy plane after lift off?,123006,The Big Bang Theory,18.86-52.38,s08e22_seg02_clip_16,The toy plane fly to the kitchen and hit things. 968,Raj was eating Chinese food.,Raj was drinking.,Raj was sleeping.,Raj was cleaning.,Raj was fixing a laptop.,0,What did Raj do when Bernadette fixed the tag?,123007,The Big Bang Theory,6.58-94.02,s07e17_seg01_clip_00,Raj was eating Chinese food. 969,Sheldon went to the movies.,Sheldon went to work.,Sheldon went to Amy's apartment.,Sheldon went to the comic book store.,Sheldon went to Penny's apartment. ,2,Where did Sheldon go after he left his apartment?,123008,The Big Bang Theory,43.58-66.03,s09e08_seg01_clip_00,Sheldon went to Amy's apartment. 970,chickens,hens,ducks,ladies,beauties,1,What did hSeldon call Amy and Penny when they spoke on the phone?,123009,The Big Bang Theory,27.91-41.55,s04e17_seg02_clip_03,hens 971,Joey brought a traveling brochure.,Joey brought food.,Joey brought drinks.,Joey didn't bring anything.,Joey brought his luggage.,4,What did Joey bring when he met up with Monica and Chandler?,123010,Friends,9.76-23.8,friends_s03e25_seg02_clip_01,Joey brought his luggage. 972,watching two men install a tv,reading,sleeping,talking on the phone,crying,0,What is house doing when Cameron walks in?,123011,House M.D.,38.71-45.46,house_s04e14_seg02_clip_14,watching two men install a tv 973,She slapped him.,She ran out of the room.,"She yelled ""you don't love me?","Rachel replied ""no she doesn't.",Ross's girlfriend did not react.,1,"How did Ross's girlfriend react, when he told her she has a line down her face?",123012,Friends,0-6.3,friends_s07e16_seg02_clip_21,She ran out of the room. 974,A vase,A pencil,A book,A doll,A glass of water,1,What object is Beckett holding when she muses that Colette had a busy day yesterday?,123013,Castle,8.21-16.43,castle_s04e11_seg02_clip_10,A pencil 975,notepads,microphones,videorecorders,phones,guns,0,What are the reporters holding in their hands when Mia is talking?,123014,Castle,64.63-73.02,castle_s07e18_seg02_clip_23,notepads 976,Alexis told Castle that he needs to be more careful.,Alexis told Castle that he is pretty clueless.,Alexis told Castle that she wishes that he would stop writing books.,"Alexis told Castle that he needs to grow up. He is a writer not a cop, he should stop pretending.",Alexis told Castle that he needs to get a new job.,3,What did Alexis tell Castle after he told her that he has to make sure that they stay away?,123015,Castle,34.21-45.91,castle_s04e01_seg02_clip_21,"Alexis told Castle that he needs to grow up. He is a writer not a cop, he should stop pretending." 977,She is knitting.,She is putting out fruit.,She is cleaning the kitchen.,She is making a souffle.,She is watching tv.,1,What is Monica doing when Chandler and Zack walk in?,123016,Friends,51.64-61.59,friends_s09e22_seg02_clip_07,She is putting out fruit. 978,Rachel holded a book,Rachel slept.,Rachel was snoring,Rachel read a magazine,Rachel worked on a laptop.,0,What was doing Rachel when sat on the couch?,123017,Friends,35.33-37.64,friends_s02e10_seg02_clip_17,Rachel holded a book 979,Kidnapping prostitutes,arresting minorities,Killing little children,Kidnapping children,Kidnapping mobsters for ransom,4,What were cops doing 19 years ago according to Beckett when she discusses old cases with Montgomery?,123018,Castle,11.87-21.46,castle_s03e13_seg02_clip_19,Kidnapping mobsters for ransom 980,Cuddy told Cameron to get the person out,Cuddy told Foreman to get the person out,Cuddy told Chase to get the person out,Cuddy told House to get the person out,Cuddy told Wilson to get the person out,3,Who did Cuddy tell that she wanted the person with the striped tie out of here before she left?,123019,House M.D.,13.83-19.36,house_s02e23_seg02_clip_20,Cuddy told House to get the person out 981,in the trashcan,on the floor by Amy,in the sink,in the hallway,on a counter at the back of the room,4,Where is a red cooler when Sheldon is looking for the locus coeruleus?,123020,The Big Bang Theory,34.11-46.52,s05e16_seg02_clip_12,on a counter at the back of the room 982,Cupboards inthe kitchen,Carpet on the floor,Wallpaper in the bedroom,Curtains at the windows,Sconces on the wall,4,What does Phoebe point to when she and Rachel are in her grandmother's old partment?,123021,Friends,51.1-55.72,friends_s07e10_seg02_clip_16,Sconces on the wall 983,Check the cameras of expensives stores nearby that sell the bag for its purchase. ,Check the purchases of this type of bag in the most expensive stores nearby.,Contact the seller of the bag because it is sold by only one person. ,Look inside the bag for any names written inside.,Check the registry for the bag because this type of expensive bag is signed and numbered.,4,How does Natalie suggest the detectives found the owner's bag when Beckett says you can't find prints?,123022,Castle,78.55-89.77,castle_s03e11_seg02_clip_11,Check the registry for the bag because this type of expensive bag is signed and numbered. 984,The house phone.,The counter.,The food court.,The rooms up the elevator.,Outside the casino,0,Where did Phoebe go after she kissed the coin and played the slot machine?,123023,Friends,31.55-44.01,friends_s05e23-24_seg02_clip_28,The house phone. 985,Toni nearly puked up her cereal.,Toni nearly puked up her steak and eggs.,Toni nearly puked up her pancakes.,Toni nearly puked up her oatmeal.,Toni nearly puked up her toast.,3,What did Toni nearly puke up when she saw the paper yesterday?,123024,Castle,62-71.12,castle_s03e02_seg02_clip_16,Toni nearly puked up her oatmeal. 986,He served on the jury.,He was the victims son.,He was the victims father.,He never committed a crime.,He wasn't the killer.,0,Why were the detectives surprised when they found out Joe committed the murders?,123025,Castle,19.37-29.93,castle_s03e19_seg02_clip_15,He served on the jury. 987,Monica,Rachel,Phoebe,Chandler,Joey,1,Who does Ross talk to after he stands up?,123026,Friends,26.57-31.38,friends_s08e09_seg02_clip_14,Rachel 988,a syring ,a stetoscope ,a termometer ,a book ,a cellphone ,0,what was camron holding when jack was lying on bed ,123027,House M.D.,16.65-25.21,house_s03e08_seg02_clip_04,a syring 989,Raj was scared because he couldn't go to lunch with Sheldon.,Raj was scared because he didn't know how to talk to the girl at school.,Raj was scared because he had a big decision to make.,Raj was scared because he didn't want to go home.,Raj was scared because couldn't walk the long distance.,2,Why did Raj say that he was scared when he was talking to Sheldon?,123028,The Big Bang Theory,0-30.46,s04e22_seg02_clip_09,Raj was scared because he had a big decision to make. 990,Your not my father,I need some space,I just want to go home,"Its for the kids , to keep kids off of drugs",We are out of supplies,3,What was Joey's response after he told Patron the coffeehouse would be closed ?,123029,Friends,22.28-23.5,friends_s06e12_seg02_clip_12,"Its for the kids , to keep kids off of drugs" 991,A party hat that is pink.,A crown.,A hat with the british flag on it.,Nothing.,A baby cap.,2,What is Joey wearing on his head when he is with the redhead woman?,123030,Friends,0-5.21,friends_s04e23-24_seg02_clip_16,A hat with the british flag on it. 992,Green,Grey,Blue,Red,Purple,2,"What color is the shirt that House is wearing when he say's ""But not taking care of him....""?",123031,House M.D.,75.02-84.68,house_s03e01_seg02_clip_11,Blue 993,Nina was in jail for 5 months ,Nina was in jail for 4 months ,Nina was in jail for 8 months ,Nina was in jail for 7 months ,Nina was in jail for 9 months ,0,How long was Nina in jail before charges were dropped,123032,Castle,15.84-25.93,castle_s08e10_seg02_clip_26,Nina was in jail for 5 months 994,Just hang up already.,Just pick up the phone.,"Okay, don't hold thy breath.",Are you going to call her back?,What does she want?,2,"What did Phoebe say after Amanda said ""...ring me back on my mobile""",123033,Friends,37.12-40.56,friends_s10e03_seg02_clip_07,"Okay, don't hold thy breath." 995,Cuddy didn't set aside anything,Cuddy set aside $30000 a year in legal expenses,Cuddy set aside a signed document ,Cuddy set aside $45000 a yea in legl expenses,Cuddy set aside $50000 a year in legal expenses,4,What did Cuddy set aside when she hired House?,123034,House M.D.,43.29-49.88,house_s01e09_seg02_clip_08,Cuddy set aside $50000 a year in legal expenses 996,She asks the man about his mother,She asks where the man was last night,She ask the man about his girlfriend,She asks why the man was yelling at him,She asks the man about his friend,3,What does Beckett do after the man think they are killing another man?,123035,Castle,0-7.22,castle_s07e03_seg02_clip_09,She asks why the man was yelling at him 997,"Castle yells ""coke!""","Castle yells ""fries!""","Castle yells ""nuggets!""","Castle yells ""cheeseburgers!""","Castle yells ""ketchup!""",3,What does Castle yell when he wakes up?,123036,Castle,3.66-14.19,castle_s06e04_seg02_clip_18,"Castle yells ""cheeseburgers!""" 998,Rachel applauds Chandler for buying the cheesecake.,Rachel says Chandler is good at baking.,Rachel tells Chandler to call Mrs. Braverman.,Rachel throws the cheesecake away.,Rachel calls Chandler a thief.,4,How does Rachel respond when she learns how he got the cheesecake?,123037,Friends,19.26-32.56,friends_s07e11_seg01_clip_00,Rachel calls Chandler a thief. 999,Beckett says Castle is her husband.,Beckett says Castle is her brother.,Beckett says Castle is her best friend.,Beckett says Castle is her nephew.,Beckett says Castle is her step-brother.,0,What relation does Beckett say she has with Castle when she discusses her partner with Collins?,123038,Castle,NaN-NaN,castle_s07e23_seg02_clip_14,Beckett says Castle is her husband. 1000,In the back yard.,In his bedroom at home.,At Leonard's apartment.,At the store.,In the bathroom. ,1,Where was Howard when his mother yelled to tell him Bernadette was there?,123039,The Big Bang Theory,32.53-38.92,s05e05_seg02_clip_12,In his bedroom at home. 1001,Because the photo is on fire,Because the photo is Tyler's girlfriend,Because the photo is cold,Because the photo is of him dying,Because the photo is sharp and hurts him,1,Why is Tyler crying after he sees the photo?,123040,Castle,0-5.86,castle_s02e16_seg02_clip_05,Because the photo is Tyler's girlfriend 1002,Why isnt dinner made?,Why dont you get a Corkboard?,Whats wrong with the cold water?,Why didnt you talk to me?,Can you help me with something?,1,What does Martha ask Castle when after she walks in the room?,123041,Castle,47.45-60.94,castle_s01e06_seg02_clip_11,Why dont you get a Corkboard? 1003,Lanie goes to find the body.,Lanie goes to make coffee.,Lanie gets up and leaves the room.,Lanie goes to search up more facts about selenium.,Lanie goes to find Casillas's factory.,2,Where does Lanie go after explaining what selenium does?,123042,Castle,17.44-35.77,castle_s03e02_seg02_clip_18,Lanie gets up and leaves the room. 1004,House contacts the manufacturer of the dialysis machine,House orders blood work and the results show she is allergic,House rubs dialysis equipment on Nadia's arm and she gets hives,House compares when Nadia got dialysis to when she showed symptoms,House consults with an allergy expert,2,How does House figure out Nadia is allergic to dialysis after Chase says she has been given steroids?,123043,House M.D.,13.96-64.39,house_s07e12_seg02_clip_13,House rubs dialysis equipment on Nadia's arm and she gets hives 1005,sat down,started talking,cried,ate,drank,1,What did Ross do after he walked through the door?,123044,Friends,18.91-23.32,friends_s06e19_seg02_clip_06,started talking 1006,hat,Glasses,feather,mask,wig,1,"What is on Bernadette head when she say's ""Say...""?",123045,The Big Bang Theory,54.1-64.02,s06e02_seg02_clip_13,Glasses 1007,Raj handle a book to Lucy.,Raj slap Lucy.,Raj walked away.,Raj kissed Lucy.,Raj gave a gift to Lucy.,3,What did Raj do after saying Lucy that she is wonderful?,123046,The Big Bang Theory,4.78-59.7,s06e23_seg02_clip_11,Raj kissed Lucy. 1008,A stuffed bear ,His cane,Flowers,His jacket,Lights,1,What was hanging on the bed when House's hand started twitching? ,123047,House M.D.,4.6-13.35,house_s02e24_seg02_clip_00,His cane 1009,anger,happy,bored,tired,joyful,0,What was Sheldon's reaction when Penny banished him?,123048,The Big Bang Theory,0-22.11,s02e07_seg02_clip_06,anger 1010,Esposito handed Castle a file.,Esposito hugged Castle.,Espositio shook Caste's hand.,The red-headed woman wearing a black shirt hugged Castle.,Castle ran his hand through his hair. ,3,What happened after Castle said something about nowhere?,123049,Castle,64.34-71.06,castle_s08e01_seg02_clip_25,The red-headed woman wearing a black shirt hugged Castle. 1011,Doctor Burke washed his hands.,Doctor Burke went to the bathroom toilet.,Doctor Burke washed cloth in the patient re-entry area.,Doctor Burke wiped out his cell phone to reach the patient in the ER room.,Doctor Burke yelled at the stopped up latrene.,0,Where was Doctor Burke statnding before the two hospital nurses caught him in the mens door bathroom?,123050,Grey's Anatomy,44.18-56.15,grey_s01e03_seg02_clip_09,Doctor Burke washed his hands. 1012,1987,2001,1130,1992,Second Season,0,What year was it when Monica and Ross had last seen Rachel?,123051,Friends,30.57-35.61,friends_s06e15-16_seg02_clip_04,1987 1013,walked back toward Castle,held on to the jail bars,looked out the window,sat on the chair,turned his back to Castle?,0,What did Marcus do before asking Castle what kind of revenge he could have?,123052,Castle,69.85-75.29,castle_s07e15_seg02_clip_14,walked back toward Castle 1014,a year,Six Months,5 years,they just met,they were not engaged,1,How long did Elise know Fletcher before they got engaged,123053,Castle,18.41-39.11,castle_s02e04_seg02_clip_08,Six Months 1015,Chandler wearing a pink rabbit costume.,Phoebe and Rachel,Joey and Chandler,Joey's girlfriend.,Neighborhood trick or treaters.,0,Who is standing with Monica when Ross is trying to explain his costume?,123054,Friends,15.94-23.32,friends_s08e06_seg02_clip_04,Chandler wearing a pink rabbit costume. 1016,Marijuana,Heroine,Flaca,Scopolamine,Cocaine,3,What is TOm the go-to guy for when he is part of the zombie culture?,123055,Castle,18-26.11,castle_s04e22_seg02_clip_20,Scopolamine 1017,In the bathroom,On the couch,In the other room,At the hotel,In her bed,4,Where was Emily when she was talking to Ross?,123056,Friends,0-6.88,friends_s05e04_seg02_clip_09,In her bed 1018,yesterday at 7,two days ago around 9,this morning around 9,last night around 5:00,this morning at 5,3,When did the neighbor say the last time she saw Edmund was after unlocking the door for Castle and Beckett?,123057,Castle,33.31-42.31,castle_s05e09_seg02_clip_04,last night around 5:00 1019,The newspaper,His fortune,A fortune cookie,A legal document,A bunny ,0,What is Chandler reading when on the couch with Rachel,123058,Friends,2.1-8.19,friends_s03e10_seg01_clip_00,The newspaper 1020,Amy and Penny,Penny is playing by herself. ,Penny and Bernadette. ,Penny and Leonard.,Penny and Howard,0,Who is playing a drinking game when they are in Penny's apartment?,123059,The Big Bang Theory,0-6.63,s05e19_seg02_clip_11,Amy and Penny 1021,Nintendo,Playstation,Vanilla Ice look-alike contest,A hopscotch contest,Taco Bell,2,What did Chandler win when he was in college?,123060,Friends,22.73-28.17,friends_s07e04_seg02_clip_13,Vanilla Ice look-alike contest 1022,White,Black,Blue,Yellow,Blue,3,What color is the tassle on the lamp when Castle puts it on it?,123061,Castle,4.19-9.77,castle_s04e23_seg02_clip_25,Yellow 1023,A phone.,A couple of men suits.,A gift box.,A briefcase.,A folder.,1,What was Mr. Waltham holding when he told Rachael that she has a customer?,123062,Friends,42.95-47.86,friends_s04e13_seg02_clip_04,A couple of men suits. 1024,They asked her if she was waiting for somebody.,They asked her if she wanted a drink.,They asked her why her mascara was running.,They asked her to leave the premises.,"They asked,""Mrs. Geller!Why are you crying?""",4,What does Rachel say people started asking her after she starting crying?,123063,Friends,8.64-17.29,friends_s05e02_seg02_clip_03,"They asked,""Mrs. Geller!Why are you crying?""" 1025,Stephanie pointed a rifle at Winters.,Stephanie pointed a shotgun at Winters.,Stephanie pointed an Uzi at Winters.,Stephanie pointed a desert eagle at Winters.,Stephanie pointed a purple gun at Winters.,4,What type of gun did Stephanie point at Winters's head after she almost got captured?,123064,Castle,61.93-70.03,castle_s05e06_seg02_clip_23,Stephanie pointed a purple gun at Winters. 1026,Thriteen and Kutner,Amber and Taus,Taus and Kutner,Thirteen and Taus,No one,0,Who does House end up telling to go home after Foreman told him to make a choice?,123065,House M.D.,40.43-45.13,house_s04e09_seg02_clip_18,Thriteen and Kutner 1027,They're sitting on the arms of the couch,Upside down on the couch,They're laying on the couch,Backwards on the couch,They're sitting on the back of the couch,3,How is Ross and Rachel sitting when they're talking to Chandler?,123066,Friends,7.2-15.91,friends_s03e03_seg02_clip_05,Backwards on the couch 1028,Location,Severity ,Area,Diagnosis ,Nothing,0,What does the patient not sitting down tell him after observing him?,123067,House M.D.,44.45-63.82,house_s01e03_seg02_clip_22,Location 1029,Robin and Curt were reporting about sports,Robin and Curt were reporting about entertainment,Robin and Curt were reporting about politics,Robin and Curt were reporting about weather forecast,Robin and Curt were reporting about documentary,0,What were Robin and Curt reporting about before Robin asked Curt if he want to do something later,123068,How I Met You Mother,9.15-21.05,met_s03e11_seg02_clip_04,Robin and Curt were reporting about sports 1030,Ross and Monica were at the bowling alley between lanes 5 and 6.,Ross and Monica were at Gold's Gym in the weight room.,Ross and Monica were on the floor at Ross's apartment.,Ross and Monica were at the ski lodge in the lobby.,Ross and Monica were on the elevated platform of the dance floor.,4,Where were Ross and Monica when Ross was helping Monica stretch her legs?,123069,Friends,7.13-12.19,friends_s06e10_seg02_clip_15,Ross and Monica were on the elevated platform of the dance floor. 1031,Because he couldn't think of anything else.,Because he wanted to see Monica naked.,"Because of margaritas 3, 4, and 9.",Because it's the only game he knows how to play.,Because it's the game no one else wants to play.,2,Why did Chandler say he picked strip poker after Monica asked him?,123070,Friends,40.33-46.13,friends_s03e25_seg02_clip_07,"Because of margaritas 3, 4, and 9." 1032,In her hand,On the chair,On the wall,On her shoulder,Over her neck,3,Where did the lady in blue cardigan put her bag when she was leaving for the bathroom,123071,House M.D.,6.66-11.93,house_s05e22_seg02_clip_16,On her shoulder 1033,To the coffee house for some coffee,To go see a movie,To a Ranger game,To the park to play some basketball,To the laundromat to hit on lonely women,2,Where did Joey and Chandler say they were going after Monica asked them?,123072,Friends,0-10.37,friends_s02e20_seg02_clip_07,To a Ranger game 1034,He looked at his hands.,To the left.,Up towards the ceiling.,He turned to Penny.,To the right.,4,What direction did Sheldon turn to when Penny insulted their time machine?,123073,The Big Bang Theory,6.79-8.85,s01e14_seg02_clip_07,To the right. 1035,hotel,ski resort,beach,cabin,igloo,3,What kind of place is Ross staying at when he is away with his girlfriend?,123074,Friends,49.29-56.66,friends_s06e22_seg02_clip_03,cabin 1036,book,flag,hat,pink shirt,papers,3,"What does Sheldon hold up against his chest when he is talking to Amy, Bernadette and Penny?",123075,The Big Bang Theory,29.72-35.42,s06e12_seg02_clip_02,pink shirt 1037,He forgot to turn the lights off.,He forgot to turn the camera off.,He forgot to turn the camera on.,He forgot to turn the lights on.,He forgot to turn over.,1,Why is Ross worried when he is talking to Phoebe about the camera?,123076,Friends,19.88-23.74,friends_s08e04_seg02_clip_10,He forgot to turn the camera off. 1038,wigs,dark makeup,tattoo sleeves,cologne,perfume,2,What did Raj and Howard wear when they went out to pick up women?,123077,The Big Bang Theory,0-15.31,s03e03_seg02_clip_02,tattoo sleeves 1039,He laughs hysterically. ,He hugs her. ,He frowns and strokes his chin. ,He throws it at her. ,He removes the contents and eats it. ,2,What does Chandler do after Phoebe gives them the zip lock bag? ,123078,Friends,53.09-59.5,friends_s07e03_seg02_clip_03,He frowns and strokes his chin. 1040,House lifts an amp stack,House picks up Emily,House moves Emily's couch,House flexes his muscles,House lifts weights,0,How does House prove his strength after Emily doubts his experimental medicine?,123079,House M.D.,43.8-91.24,house_s07e22_seg02_clip_00,House lifts an amp stack 1041,Brushing her hair constantly.,Drinking lots of water.,Eating only soft foods.,Talking obsessively.,Constantly staring at him.,1,What House refers to as woman with brown hair's obsession when discussing her health?,123080,House M.D.,0-21.39,house_s03e16_seg02_clip_11,Drinking lots of water. 1042,That Kathy is cheating on him,That Kathy's voice is too squeaky ,Kathy is too tall for him,He doesn't know because they aren't telling him,That Kathy is a convict,3,What does Ted tell his friend they were right about when he sits in the booth?,123081,How I Met You Mother,15.01-24.01,met_s03e08_seg02_clip_04,He doesn't know because they aren't telling him 1043,Phoebe her apartment first,Phoebe left the room,Phoebe closed her eyes,Phoebe said good-bye in 4 different languages,Phoebe sang Good-bye Charlotte on her guitar,2,How did Phoebe try to make it less awkward for Mike to leave when they were discussing relationship,123082,Friends,19.83-28.68,friends_s09e04_seg02_clip_18,Phoebe closed her eyes 1044,Acting lessons,A script,A wig,A change of outfit,A sense of humor,1,What does Winters say Ms Frye needs after Castle asks her to do an improvisation,123083,Castle,78.68-84.11,castle_s05e06_seg02_clip_21,A script 1045,A water bottle,A Superman figurine,A book,A blue mug,A can of Coke-Cola,3,What is Sheldon holding in his hand after he is speaking with Leonard and Penny,123084,The Big Bang Theory,0-14.89,s02e18_seg02_clip_11,A blue mug 1046,Tensilon only lasts for five or six minutes,He was too overjoyed about moving,His legs were weak from being idle,He injured his legs in his sleep,There was not enough medicine,0,Why did Jeff collapse after initially feeling okay?,123085,House M.D.,37.51-100.03,house_s02e06_seg02_clip_22,Tensilon only lasts for five or six minutes 1047,A Vulcan,An Elf,A Hobbit,A Gnome,He said he wasn't wearing a costume.,2,What did Leonard say he was when Kurt asked about his costume?,123086,The Big Bang Theory,32.65-45.77,s01e06_seg02_clip_10,A Hobbit 1048,A black coat and blue-collared shirt,Scrubs,A white lab coat and blue-collared shirt,A suit and tie,A tuxedo,0,What is Derek wearing when he is talking to George?,123087,Grey's Anatomy,12.88-92.03,grey_s03e01_seg02_clip_17,A black coat and blue-collared shirt 1049,Monica is in a bath tub,Monica is laying down outside,Monica is standing up outside,Monica is sitting down in her apartment,Monica is in a crib,3,Where is Monica after Chandler proposes to her?,123088,Friends,47.63-60.74,friends_s06e24-25_seg02_clip_41,Monica is sitting down in her apartment 1050,The arm,the head,The stomach,The leg,The back,2,Where is Taub examining the patient when he is treating them?,123089,House M.D.,0-9.51,house_s04e05_seg02_clip_08,The stomach 1051,He doesn't like Castle's books,He came to class drunk,He wanted to look cool,He wanted to impress Alexis,He doesn't want to be there,0,Why is Scott behaving so rudely when Castle is lecturing a class?,123090,Castle,0-14.14,castle_s08e03_seg02_clip_09,He doesn't like Castle's books 1052,Foreman said he did not find stroke symptoms.,Foreman said he did not find blood clots.,Foreman said he did not find ruptured lungs.,Foreman said he did not find cancer.,Foreman said he did not find an std.,3,What did Foreman say he did not find on a patient when he was reporting to House?,123091,House M.D.,65.98-67.76,house_s02e11_seg02_clip_13,Foreman said he did not find cancer. 1053,He walked out the door.,He stood up.,He threw water on Ross.,He hugged Rachel.,He kissed Janice.,1,What did Chandler do after he said something about great?,123092,Friends,14.35-16.93,friends_s03e14_seg02_clip_13,He stood up. 1054,"Brandon said yeah, a little.",Brandon said he had no idea if he could walk.,Brandon said he could walk with help.,Brandon said he couldn't walk at all.,Brandon said he was too weak to walk.,0,How did Brandon respond when Chase asked him if he could walk?,123093,House M.D.,25.66-29.26,house_s01e03_seg02_clip_13,"Brandon said yeah, a little." 1055,There is muscle cell death that is causing the man so much pain.,There is bone deterioration causing the man so much pain.,There is plaque buildup causing the man so much pain.,There is muscle overgrowth that is causing the man so much pain.,There is nerve damage that is causing the man so much pain.,0,Why is the man in so much pain after he underwent the surgery as explained by Cuddy?,123094,House M.D.,53.53-59.31,house_s01e21_seg02_clip_19,There is muscle cell death that is causing the man so much pain. 1056,Esposito,Castle,Beckett,Martha,Alexis,4,Who followed Mandy into the elevator when she was leaving to go find Sam?,123095,Castle,44.15-56.44,castle_s06e13_seg02_clip_16,Alexis 1057,A stillborn birth.,A c-section.,A vaginal birth.,A preterm birth.,A virgin birth.,4,What kind of birth did House say the patient would have after revealing her test results?,123096,House M.D.,74.27-77.42,house_s05e11_seg02_clip_17,A virgin birth. 1058,Ted was in his mom's house.,Ted was in a doctor's office.,Ted was in the pharmacy.,Ted was in a Cheesecake Factory.,Ted was in a disco.,4,Where were Ted when talking with Marshall?,123097,How I Met You Mother,0-55.52,met_s02e10_seg02_clip_14,Ted was in a disco. 1059,Monica thinks she just won a new car,Monica thinks that there are good reviews in all of the newspapers there,Monica just got a promotion,Monica just broke up with her boyfriend,Monica met a really great guy,1,Why is Monica excited after she enters the coffee shop?,123098,Friends,39.54-53.49,friends_s08e21_seg01_clip_00,Monica thinks that there are good reviews in all of the newspapers there 1060,A chalkboard. ,A screen of an X-Ray.,A large floral arrangement.,A large painting.,A large window. ,2,What is Wilson standing next to when he speaks on the phone? ,123099,House M.D.,2.3-11.51,house_s04e06_seg02_clip_15,A large floral arrangement. 1061,They are visiting a foster parent ,They are visiting Kutner's parents,They are visiting a group home coordinator,They are visiting a pet rescue coordinator,They are visiting Cameron's family,1,Who is being visited when Foreman mentions being handed off to a new family,123100,House M.D.,0-11.61,house_s05e20_seg02_clip_07,They are visiting Kutner's parents 1062,Because he is confident in Howard,Because Howard went to MIT,Because he is going to help Howard fix the problem,Because Howard is a talented individual,Because Howard designed a zero-gravity toilet,1,Why does Sheldon say Howard can say any problem after Raj becomes frantic?,123101,The Big Bang Theory,0-50.42,s08e22_seg02_clip_06,Because Howard went to MIT 1063,Greeting Card,Fire extinguishers,Two pieces of paper,A phone,A finger,2,What does House hold up when he is with the couple?,123102,House M.D.,52.21-60.32,house_s05e11_seg02_clip_17,Two pieces of paper 1064,Penny tells Leonard she loves him. ,Penny laughs hysterically. ,Penny vomits again. ,Penny tells Leonard she is pregnant. ,Penny tells Leonard she loves having the flu. ,2,What does Penny do after she tells Leonard she might have the flu?,123103,The Big Bang Theory,48.22-52.09,s03e15_seg02_clip_14,Penny vomits again. 1065,Her makeup.,Her car.,Her card key to her office.,Her cat.,Her sense of shame.,2,What did Penelope tell Bekett she could not find when they were talking?,123104,Castle,63.92-90.02,castle_s08e07_seg02_clip_21,Her card key to her office. 1066,A table.,A dumpster.,A wall.,A car.,Nothing.,3,What are Slaughter and Castle leaning on when they are talking outside?,123105,Castle,46.51-60.93,castle_s08e06_seg02_clip_07,A car. 1067,In the closet,Behind the sofa,Under the table,Under the bed,Behind the curtains,4,Where is Gavin hiding when he is spotted by Molly?,123106,Friends,8.19-11.98,friends_s09e13_seg02_clip_10,Behind the curtains 1068,Going into a liquor store,Getting into a car,Holding a payphone receiver,Shooting a gun,Running,2,What was the woman in the photo doing when Gates showed it to Beckett and Castle?,123107,Castle,46.36-52.66,castle_s06e19_seg02_clip_05,Holding a payphone receiver 1069,A walkie talkie.,A purple fake star trek gun.,Nothing.,A belt.,A fanny pack.,1,What is on Gabriel's hip when he walks in?,123108,Castle,15.64-23.47,castle_s05e06_seg02_clip_02,A purple fake star trek gun. 1070,Sheldon,The waiter,Howard's mother,Penny,His dentist,2,Who did Raj bond with before Howard tried to get him to bond with Bernadette?,123109,The Big Bang Theory,13.15-22.2,s04e09_seg02_clip_06,Howard's mother 1071,"Ross let the monkey go quietly, knowing it was better for her that way.",Ross tried to get his monkey back from just lightly appealing to Luisa.,Ross threatened legal action.,Ross started to cry.,Ross tried forcefully to get his monkey back.,1,What did Ross do after the monkey went into the Animal Control cage.,123110,Friends,9.83-28.53,friends_s01e19_seg02_clip_18,Ross tried to get his monkey back from just lightly appealing to Luisa. 1072,nothing,a cup of coffee,his coat,his lunch,A small stack of papers,4,What is Foreman holding when he's in the patient's room?,123111,House M.D.,11.25-19.81,house_s01e03_seg02_clip_13,A small stack of papers 1073,Ross,Monica,Chandler,Phoebe,Joey,0,Who was Rachel sitting beside of when they were at the reception?,123112,Friends,0-7.93,friends_s02e24_seg02_clip_14,Ross 1074,A cup of coffee,His laptop,His bag,An action figure,A lightsaber,2,What does Sheldon put on the chair when he is talking to Leonard and Leslie?,123113,The Big Bang Theory,4.01-12.03,s02e02_seg02_clip_15,His bag 1075,Castle mentions Eleven from Stranger Things.,Castle mentions a character from Game of Thrones.,Castle mentions Khan from Star Trek.,Castle mentions a character from Broadchurch.,Castle mentions Sam from Supernatural.,2,Who does Castle mention after he says they have been thinking two-dimensionally?,123114,Castle,77.51-91.19,castle_s06e12_seg02_clip_22,Castle mentions Khan from Star Trek. 1076,Finding cats.,Chasing squirrels.,Chasing a woman in a park.,Parking in a park.,Walking through the park.,2,What did Raj say Howard was doing when they were in the car?,123115,The Big Bang Theory,0-4.6,s03e06_seg02_clip_02,Chasing a woman in a park. 1077,Mandy,Penny,Leonard,Raj,Amy,4,Who did Sheldon see standing outside staring at the sky when he went down the stairs to his apartment?,123116,The Big Bang Theory,14.18-24.23,s04e05_seg02_clip_13,Amy 1078,"The FBI pushed both Ryan, and Esposito","The FBI pushed both Ryan, and Crystal","The FBI pushed both Ryan, and Liam","The FBI pushed both Ryan, and Megan","The FBI pushed both Ryan, and Marc",0,Who did Beckett say are investigating a homicide when talking Aida?,123117,Castle,40.57-52.42,castle_s08e13_seg02_clip_16,"The FBI pushed both Ryan, and Esposito" 1079,A man in light blue shirt and tie.,A policeman with a video camera.,Foreman,Cuddy,Cameron,0,Who is revealed in an office when House electronically lifts the sliding door to his assembled diagnostic team?,123118,House M.D.,142.51-161.03,house_s08e05_seg02_clip_25,A man in light blue shirt and tie. 1080,The art,Chandeliers ,The design,The trim,The space,1,What is Richard told to look at before they begin to talk to the the other?,123119,Castle,24.85-36.81,castle_s06e14_seg02_clip_17,Chandeliers 1081,Paper,hug,nothing,a kiss,food,0,What did Leonard give Penny when they are sitting on the couch?,123120,The Big Bang Theory,40.84-46.55,s07e12_seg02_clip_10,Paper 1082,The group of orderlies searched for a week.,The group of orderlies searched all day.,The group of orderlies searched for 4 days.,The group of orderlies searched for 48 hours.,The group of orderlies searched for 10 hours.,1,How long did a group of orderlies look for Gabriel before they came up empty handed?,123121,Castle,14.15-17.25,castle_s08e21_seg02_clip_03,The group of orderlies searched all day. 1083,Alexis.,Castle.,Esposito.,Beckett.,Gloria.,4,Who plaid guilty after the dead of Sarah?,123122,Castle,32.78-37.28,castle_s03e18_seg02_clip_16,Gloria. 1084,she says nope that wasn't me,she says no she never spells it out,she says thats impossible,she says couldnt be ,i dont believe you,1,what does emma say when castle points out she spelled out the phrase,123123,Castle,14.13-15.05,castle_s06e04_seg02_clip_10,she says no she never spells it out 1085,Chandler wants Joey to wake up from his dream.,Chandler thinks it will be funny for others to see.,Chandler is angry that Joey didn't wake him up.,Chandler wants Joey to slap him back.,Chandler thinks Joey needed a slap to the face.,0,Why does Chandler slap Joey after Joey tells Chandler he saw Chandler asleep?,123124,Friends,15.96-21.18,friends_s08e22_seg02_clip_10,Chandler wants Joey to wake up from his dream. 1086,Nancy,Kim,The guy smoking to he right,Monica,Nancy and Monica,2,Who does Rachel say HEY to after she come down stairs ,123125,Friends,12.99-21.25,friends_s05e18_seg02_clip_18,The guy smoking to he right 1087,Sheldon. ,Leonard's mother. ,Leonard's sister. ,Leonard's brother,Leonard's father,4,Who is walking up the stairs with Leonard when he is going home?,123126,The Big Bang Theory,0-15.37,s09e24_seg02_clip_06,Leonard's father 1088,He owes him.,He wants to make sure Joey's okay.,He said Monica told him to.,He won it at the casino.,He found it in Joey's pocket.,1,Why did Chandler say he was trying to give Joey money when Joey said he was trying to give him charity?,123127,Friends,57.67-63.72,friends_s06e06_seg02_clip_17,He wants to make sure Joey's okay. 1089,Not to try to change the subject.,Not be be mean to her friend.,Not to call him that because his name is Spackle-Back Harry.,To try to be nice about his Spackle-Back.,To forget about Spackle-Back Larry.,2,What does Phoebe tell Monica after she calls Phoebe's friend Spackle-Back Larry?,123128,Friends,14.34-20.75,friends_s03e15_seg02_clip_04,Not to call him that because his name is Spackle-Back Harry. 1090,They're all listening,They're all watching,They're dancing and drinking,They all leave the room,They all start to laugh,2,What are the people in the background doing when Marshall and Lily are fighting?,123129,How I Met You Mother,14.5-23.96,met_s06e21_seg02_clip_03,They're dancing and drinking 1091,House was holding a sandwich,House was holding a cat,House was holding a book,House was holding a beer,House was holding some pill bottles,2,What was House holding in his hand after he turned his chair around to face the lady in the blue jacket,123130,House M.D.,51.53-61.2,house_s04e12_seg02_clip_03,House was holding a book 1092,told Sheldon she had to work,called Howard for help,called Leonard for help,pretended to care and ask how he was,asked Sheldon to leave her alone,3,What did Penny do when Sheldon wanted to talk to her?,123131,The Big Bang Theory,13.15-27.16,s04e17_seg02_clip_02,pretended to care and ask how he was 1093,Five,Four,Two,One,Three,4,How many things must Marshall when trying to sire a son?,123132,How I Met You Mother,17.11-23.11,met_s06e06_seg02_clip_10,Three 1094,rufus,spot,brownie,little ladybug,cookie,3,What does Barney say the dogs name is when he is at pet store?,123133,How I Met You Mother,14.25-19.6,met_s03e14_seg01_clip_02,little ladybug 1095,Sheldon's office,Comic book store,Cafeteria,Kripke's office,Science lab,2,Where were Sheldon and Kripke when Sheldon told him his thank you was not sincere? ,123134,The Big Bang Theory,5.8-12.77,s03e09_seg02_clip_01,Cafeteria 1096,New York.,New Jersey.,Philadelphia.,Rhode Island.,Virginia.,1,Which state was in the magazines title that Wilson picked up after House mentioned cuddling?,123135,House M.D.,17.75-23.67,house_s02e16_seg02_clip_10,New Jersey. 1097,nothing,Chip,cup,alarm,gun,1,"What is Beckett's hand touching when she say's ""What if it wasn't the encryption system that ....""?",123136,Castle,76.3-86.22,castle_s06e01_seg02_clip_24,Chip 1098,Leonard was sitting in a chair.,Leonard was leaning against the kitchen table.,Leonard was sitting on the living room floor.,Leonard was standing at the front door.,Leonard was squatting underneath the kitchen table.,0,Where was Leonard when Sheldon took the syrup away from him?,123137,The Big Bang Theory,29.15-40.31,s05e06_seg02_clip_10,Leonard was sitting in a chair. 1099,hayley,esposito and ryan,alexis,no one,ryan,1,Who looks at the books with castle before beckett walks up?,123138,Castle,24.96-28.77,castle_s08e17_seg02_clip_07,esposito and ryan 1100,a gift,a glass,a new figurine,a statue,a new comic book,4,What was Sheldon looking for when he was going through the comic store?,123139,The Big Bang Theory,30.08-54.58,s03e05_seg02_clip_04,a new comic book 1101,We should add more formula,"Yes, it is ",you doing this all wrong. ,I want to help. ,"This is for a full scale rocket, not a model",4,What did Sheldon say after past Leonard says there's no mistake?,123140,The Big Bang Theory,0-51.08,s03e22_seg02_clip_14,"This is for a full scale rocket, not a model" 1102,How are you doing?,What did you have for breakfast?,Did you eat my spaghetti?,I just wanted to make sure you were alright.,My car wont start I need some help.,3,What did Castles mother say to him when he answered her phone call?,123141,Castle,0-9.91,castle_s01e03_seg02_clip_03,I just wanted to make sure you were alright. 1103,Ross needed Rachel to go look for his car keys.,Ross needed Rachel to help fix his toilet.,Ross was trying to move a couch that was on the stairs.,Ross needed Rachel to drive him to the DMV.,Ross needed Rachel to call the police.,2,Why did Ross ask for Rachel's help when she was on the ground?,123142,Friends,22.66-27.73,friends_s05e16_seg02_clip_17,Ross was trying to move a couch that was on the stairs. 1104,Castle wants to know why he was there a year ago.,Castle dreamed about the Hungry Orchid.,Castle wants to get lunch with Hayley.,Castle thinks the Hungry Orchid has some clues about the case.,Castle wanted to show Hayley what the Hungry Orchid is.,0,Why is Castle interested in the Hungry Orchid after he says he wants to impress the detective society?,123143,Castle,70.7-80.47,castle_s08e14_seg02_clip_02,Castle wants to know why he was there a year ago. 1105,Lily's cousin,Ted,Marshall's mom,Lily's dad,Robin and Barney,4,Who worried Marshall and Lily were getting divorced when the friends were talking?,123144,How I Met You Mother,17.86-29.06,met_s03e07_seg02_clip_14,Robin and Barney 1106,Munchy ,Chewmuch,Muchner,Chewbacca,Chewstoomuch,3,What does Ted say he calls Lily when talking to Marshall about her loud chewing?,123145,How I Met You Mother,29.49-34.52,met_s03e08_seg02_clip_09,Chewbacca 1107,Rachel and Chandler were looking at the picture on the wall,Rachel and Chandler were looking at the apartment mailboxes,Rachel and Chandler were looking at fire alarm,Rachel and Chandler were looking at papers on the desk,Rachel and Chandler were looking at box on the floor,4,What were Rachel and Chandler looking at when they were in the hallway,123146,Friends,43.94-53.09,friends_s07e11_seg02_clip_06,Rachel and Chandler were looking at box on the floor 1108,His hospital room,His house,His place of employment,HIs car,The police station,0,Where does Castle go after saying they need to talk to the driver?,123147,Castle,0-7.65,castle_s07e23_seg02_clip_02,His hospital room 1109,Deseperate,Angry,Happy,Sad,Romantic,0,What tone did Roy used in speaking when talking to Cuddy about his Son,123148,House M.D.,8.74-53.38,house_s06e04_seg02_clip_00,Deseperate 1110,She ignored his explaination,She didn't cook for him,He is sick and she isn't helping him,She said science is boring,She said she likes Lesley as a friend,2,Why is Sheldon upset with Penny after they get home,123149,The Big Bang Theory,46.21-62.02,s01e11_seg02_clip_09,He is sick and she isn't helping him 1111,On the floor,In a chair,On a bed.,On a stool,On a table.,2,Where did Sheldon sit after Penny told him the situation is none of his business?,123150,The Big Bang Theory,50.1-63.02,s06e02_seg02_clip_10,On a bed. 1112,An open window,A nude calander,A floral painting,A staircase,A bird sitting on a tree branch ,2,What's on the wall behind Ross when he says that he doesn't remember Tom Gordon? ,123151,Friends,1.89-8.19,friends_s09e17_seg02_clip_19,A floral painting 1113,Carol tells Ross she's come to see him because she wants to invite him to her wedding.,Carol tells Ross she's come to see him because she misses him.,Carol tells Ross she's come to see him because she wants a second chance.,Carol tells Ross she's come to see him because she wants to apologize for leaving him.,Carol tells Ross she's come to see him because she's pregnant.,4,Why does Carol tell Ross she's come to see him when Ross is at the museum?,123152,Friends,45.47-53.09,friends_s01e02_seg02_clip_01,Carol tells Ross she's come to see him because she's pregnant. 1114,A bunny ,A candy bar,A figurune,A doll,A mini hockey stick,4,What is Joey playing with when talking to Chandler?,123153,Friends,4.55-13.01,friends_s06e06_seg01_clip_00,A mini hockey stick 1115,Between 6:00 and 8:00 PM.,Between 7:00 and 9:00 PM,Between 9:00 and 11:00 PM,Between 10:00 and 12:00 AM.,Between 11:30 and 12:30 AM.,2,What time of death does Lanie give when she is basing it on lividity?,123154,Castle,12.77-19.43,castle_s08e12_seg02_clip_01,Between 9:00 and 11:00 PM 1116,A purse. ,A megaphone. ,A backpack.,Nothing. ,A fanny pack. ,1,What is hanging over Zoey's coat when she hugs Barney? ,123155,How I Met You Mother,0.95-14.5,met_s06e15_seg02_clip_08,A megaphone. 1117,House told Chase that he does not care,House told Foreman that he does not care,House told Cameron that he does not care,House told Lilian that he does not care,House told Tamera that he does not care,1,Who did House say does not care about the boy when he is talking?,123156,House M.D.,43.18-50.53,house_s01e08_seg02_clip_00,House told Foreman that he does not care 1118,Leonard proposed to Penny.,Sheldon began singing.,Howard told her she should come see the movie on the big screen on Friday.,Raj and Howard danced together,Bernadette walked in the door.,2,What happened before Penny pointed to the TV?,123157,The Big Bang Theory,12.46-17.65,s04e08_seg01_clip_01,Howard told her she should come see the movie on the big screen on Friday. 1119,She seems overwhelmed ,She has got a lot to learn,She is fitting in well,She is still a little rusty,She has a lot of potential,4,How does McCord feel about Beckett when she and Castle are talking?,123158,Castle,0-4.47,castle_s06e02_seg02_clip_16,She has a lot of potential 1120,She leaves. ,She nods her head. ,She punches him. ,She kicks him. ,She kisses him. ,1,What does Monica do after Joey points at her?,123159,Friends,55.48-59.03,friends_s05e16_seg02_clip_08,She nods her head. 1121,Are you sure you want to live here?,Will we like living together?,Where are we going for dinner?,What the hell is that dog doing here?,Why is the wall yellow?,3,What question does Monica ask Chandler when they are hugging?,123160,Friends,47.12-52.06,friends_s10e10_seg02_clip_16,What the hell is that dog doing here? 1122,fudgescile,popsicle,ice,ice cream,frozen veggies,0,What does Ross get out of the freezer when Rachel is talking about locker room stuff?,123161,Friends,31.81-41.72,friends_s03e01_seg02_clip_11,fudgescile 1123,He thinks the hospital is going to fail,He doesn't want to be in this profession anymore,He can't stand his co workers,He doesn't like the career opportunities,He doesn't want to end up a jerk like House,4,Why does Foreman want to leave after speaking with Cameron?,123162,House M.D.,14.19-25.38,house_s03e22_seg02_clip_11,He doesn't want to end up a jerk like House 1124,a briefcase,a bottle of wine,his index finger,a flash light,A bank statement,4,What does Ryan hold up after he claims that the victim might be hiding something herself?,123163,Castle,4.93-13.9,castle_s07e11_seg02_clip_08,A bank statement 1125,He starts yelling.,He walks silently out of the room.,He scoffs loudly.,He rolls his eyes.,He slams his cane down.,3,What does House do after he is told the patient only had one sip of champagne?,123164,House M.D.,9.84-14.31,house_s02e13_seg02_clip_02,He rolls his eyes. 1126,Tapping his cane.,Drinking a cup of coffee.,Eating a bag of chips.,Writing on a notepad. ,Looking at his computer.,2,What was House doing when he said he was excited about the wheelchair race?,123165,House M.D.,52.97-59.51,house_s08e13_seg02_clip_26,Eating a bag of chips. 1127,an orange,The keys,a book,shoes,napkin,1,What item was thrown on the table when they came in the door?,123166,The Big Bang Theory,39.39-48.7,s05e06_seg02_clip_10,The keys 1128,They couldn't tell if it was gallstones,"No, House was wrong","Yes, House was right",They could not test the patient,There was no gallstones,2,Was House right about the gallstones when an ultrasound was performed on the patient?,123167,House M.D.,70.32-72.57,house_s03e09_seg02_clip_02,"Yes, House was right" 1129,He was holding pictures of evidence.,He had a document on the computer.,He had solved for the suspect of a crime.,He had a gun.,He was writing a document.,0,What was Ryan doing when confronted with Castle and Beckett exiting their office?,123168,Castle,7.22-16.7,castle_s02e24_seg02_clip_09,He was holding pictures of evidence. 1130,He is sleeping.,He is happy and healthy.,He is angry and mean. ,He is in grave pain and discomfort. ,He is laughing. ,3,What is the demeanor of the patient lying in the bed when Dr. House walks into the room? ,123169,House M.D.,78.26-88.35,house_s03e21_seg02_clip_20,He is in grave pain and discomfort. 1131,in the kitchen,by the door,in the living room,in the hallway,in the bedroom,1,Where is Ross standing when talking with Rachel and Monica?,123170,Friends,0-4.87,friends_s04e21_seg02_clip_18,by the door 1132,Wreathe ,Headshots,Life size picture of herself,Awards,Clock,1,What was on the wall in Estelle's office when Joey came in? ,123171,Friends,31.83-37.19,friends_s06e04_seg02_clip_05,Headshots 1133,Her only copy of a photo,A picture of her and her boyfriend,A picture of them when they first met,Her boyfriends card,Her Valentines photo ,0,What does Cuddy say House cut after he walks through the door?,123172,House M.D.,16.33-24.97,house_s06e11_seg02_clip_09,Her only copy of a photo 1134,By giving her a sedative,By sticking her foot in the elevator door,By calling security,By wrestling her to the floor,By holding the elevator button,4,How did Addison prevent Gretchen from leaving after she ran back onto the elevator?,123173,Grey's Anatomy,49.21-55.86,grey_s03e06_seg02_clip_23,By holding the elevator button 1135,Chandler hands him broccoli.,Chandler hands him a newspaper.,Chandler hands him a bottle of water.,Chandler hands him an orange.,Chandler hands him a coffee mug.,4,What does Chandler hand to Ross when he's sitting at the kitchen counter?,123174,Friends,55.52-58.23,friends_s02e21_seg02_clip_11,Chandler hands him a coffee mug. 1136,Dropped the item he was reading,Went back down the stairs,Went into the apartment,Continued up the stairs,Hit the elevator button,3,What did Sheldon do after Penny and Leonard stopped to open the apartment door?,123175,The Big Bang Theory,58.63-62.04,s07e06_seg02_clip_00,Continued up the stairs 1137,she coughed,she rolled her eyes,she laughed,she fainted,she started running,1,what did the lady agent do after the lady she was investigating said that she was at the hotel,123176,Castle,6.68-16.47,castle_s07e18_seg02_clip_25,she rolled her eyes 1138,Her earrings,Her purse,Her necklace,Her hair,A barrette in her hair.,2,What is Mrs. Helen Rubenstien figiting with when she is talking to Dr. Burke?,123177,Grey's Anatomy,50.23-74.42,grey_s02e04_seg02_clip_00,Her necklace 1139,Jack,Wilson,James,John,Jimmy,1,Who was sitting beside house when Costello walked into the office. ,123178,House M.D.,21.61-26.11,house_s05e04_seg02_clip_12,Wilson 1140,Howard said he was afraid Bernadette was going to leave him. ,Howard confessed he was nervous about Bernadette's pregnancy. ,Howard confessed he was really in love with Amy. ,Howard made a confession about stealing from Sheldon. ,The confession Howard made concerned an incident with Raj. ,1,What did Howard confess to Bernadette when talking to her? ,123179,The Big Bang Theory,25.38-37.16,s09e16_seg02_clip_12,Howard confessed he was nervous about Bernadette's pregnancy. 1141,a glass,a mug,her purse,a book,a newspaper,2,What does Monica pick up when she comes over to Chandler and Phoebe?,123180,Friends,5.89-11.17,friends_s08e16_seg02_clip_05,her purse 1142,blond,purple,black,brown,blue,3,"What color is Beckett's hair when she says ""uniforms are bringing it in now""?",123181,Castle,56.36-66.11,castle_s02e03_seg02_clip_20,brown 1143,A pill,A water bottle,A cup of coffee,A pen,A notebook,0,What was House holding after giving his prognosis?,123182,House M.D.,15.33-22.54,house_s03e09_seg02_clip_02,A pill 1144,3 nights ago.,Last night.,2 nights ago.,4 nights ago.,5 nights ago.,2,When did Esposito say Anton and Scott got into a recent brawl when he and Ryan were giving Beckett an update on the case?,123183,Castle,42.33-45.55,castle_s08e07_seg02_clip_02,2 nights ago. 1145,The girls are talking to policemen,The girls are talking to firemen,The girls are talking to chefs,They girls are talking to construction workers,The girls are talking to nurses,1,Who are are the girls talking to when they are wearing their hats,123184,Friends,36.87-46.01,friends_s01e14_seg02_clip_21,The girls are talking to firemen 1146,Rachel was in front of the window,Rachel was standing in the doorway,Rachel was standing next to Phoebe,Rachel was sitting on the sofa,Rachel was standing next to Ross,2,Where was Rachel when Joey was speaking to Chandler?,123185,Friends,12.03-31.76,friends_s03e24_seg02_clip_03,Rachel was standing next to Phoebe 1147,Back in the drawer,On the counter,In the sink,On the microwave,On the coffee table,0,Where does Joey put the spoon after he's done eating?,123186,Friends,13.21-17.83,friends_s02e16_seg01_clip_00,Back in the drawer 1148,purse,food,baby,phone,books,2,What is Castle carrying when he comes through the door?,123187,Castle,43.68-53.59,castle_s06e10_seg02_clip_04,baby 1149,sleeping,eating,exercising,Reading a magazine,painting,3,"What is Penny doing when Sheldon asks her ""did you ever wonder how Starfleet captains...""?",123188,The Big Bang Theory,14.34-23.19,s07e01_seg02_clip_02,Reading a magazine 1150,Castle is wearing a robe.,Castle is wearing a suit and tie,Castle is wearing a hat.,Castle is wearing a bathing suit.,Castle is wearing a scarf,0,What is Castle wearing when Beckett is talking to him about speaking to a security company?,123189,Castle,7.74-13.65,castle_s03e22_seg02_clip_16,Castle is wearing a robe. 1151,Her neighbor,Her therapist,Her boss,Suzanne Steiner,Odette,3,Who did Barbra contact to meet for coffee just before she died?,123190,Castle,83.57-88.44,castle_s04e18_seg02_clip_18,Suzanne Steiner 1152,Robin,Ted,Barney,Marshell,the bartender ,1,Who was Lilly mad at when she was in the bar,123191,How I Met You Mother,10.09-25.69,met_s03e08_seg02_clip_11,Ted 1153,volakis,kutner,thirteen,wilson,taub,2,Who jabbed a big needle in irenes arm when irene was dreaming in her room?,123192,House M.D.,42.52-49.76,house_s04e04_seg02_clip_16,thirteen 1154,He says he is at Hayley's,He says he is at home,He says he is at the office,He says he is in his car,He says he is at a friend's house,2,Where does Castle say he is when he gets a call from Esposito?,123193,Castle,36.81-44.17,castle_s08e02_seg02_clip_12,He says he is at the office 1155,Beckett,The FBI director,The Attorney Genereal,The governor of the state,A schoolteacher,0,Who is the suspect talking to when he takes Castle's phone?,123194,Castle,11.38-22.3,castle_s04e07_seg02_clip_02,Beckett 1156,rubbing Robin's sholders,drinking a beer,eating nachos,kissing Robin's hand,starring at a waitress,0,What was Ted doing when Robin was talking about reasserting her commitment?,123195,How I Met You Mother,0-8.61,met_s03e02_seg02_clip_02,rubbing Robin's sholders 1157,House thinks Chase is better dressed.,House thinks Chase has a prettier mouth.,House thinks Chase is more professional.,House thinks Chase is better for the job.,House thinks Chase is more qualified.,1,Why does House pick Chase after Foreman volunteers?,123196,House M.D.,0-14.57,house_s02e01_seg02_clip_10,House thinks Chase has a prettier mouth. 1158,He was suspended,He got kicked off his case,He was fired,He was arrested,He wants to quit his job,1,Why did Chase get angry before Foreman left the room?,123197,House M.D.,8.01-24.93,house_s08e12_seg02_clip_19,He got kicked off his case 1159,forty five minutes,five minutes,ten minutes,twenty minutes,half an hour,4,How long did Rachel say she had known it was Phoebe when she was getting massaged?,123198,Friends,21.47-30.71,friends_s09e21_seg02_clip_16,half an hour 1160,Yellow,Red,Black,Lime,Teal,2,"What color is the jacket that Castle is wearing when he say's ""I mean...""?",123199,Castle,79.63-89.47,castle_s02e18_seg02_clip_20,Black 1161,none,2 ,5,1,3,1,How many times did Sheldon scream when on the motorcycle?,123200,The Big Bang Theory,0-46.67,s02e05_seg02_clip_04,2 1162,Beckett,Montgomery,Esposito,Ryan,Weldon,4,Who is castle talking to about when he asks what they are going to do with their future now?,123201,Castle,64.62-77.4,castle_s04e12_seg02_clip_26,Weldon 1163,Chandler said he is tired of being a slum,Chandler said he is tired of being a victim of Dick Clark holiday,Chandler did not say anything,Chandler said he is tired of being a victim of theft,Chandler said he is tired of being a victim of peer pressure ,1,What did Chandler say he is sick of being a victim of when he is talking,123202,Friends,16.48-28.68,friends_s01e10_seg02_clip_01,Chandler said he is tired of being a victim of Dick Clark holiday 1164,creepy,happy,ugly,ruthless,angry,0,How did Penny feel about Howard when Leonard asked a favor of her for him?,123203,The Big Bang Theory,0-19.23,s03e05_seg02_clip_04,creepy 1165,stack of plates,Bowl,Wine Bottle,Knife,Bag of chips,0,What did Izzy sit on the counter after George walked in?,123204,Grey's Anatomy,76.52-90.02,grey_s03e18_seg02_clip_21,stack of plates 1166,Joey.,Chandler.,Monica.,Ross.,Rachel.,1,Who orders the cajun catfish after Phoebe orders cucumber soup?,123205,Friends,35-47.54,friends_s02e05_seg02_clip_07,Chandler. 1167,Causes a damage to the muscles ,Ruins the teeth and gums,Eats away at the stomach lining ,Becomes an safe addiction ,Attacks the liver and throat,0,How does the bad habit of a patient lead to problems after doing it repeatedly? ,123206,House M.D.,38.65-50.15,house_s01e14_seg02_clip_16,Causes a damage to the muscles 1168,A man with pigtails.,Someone who looks like Lily.,Her dad.,An ex lover.,Her ex bestfriend.,0,Who is behind Robin when she sings drunkenly?,123207,How I Met You Mother,0-14.71,met_s05e05_seg02_clip_08,A man with pigtails. 1169,A medal,A trophy,A plaque,A ribbon,A boom box,1,What did Esposito have in his hand when everybody at the precinct started clapping?,123208,Castle,18.57-28.08,castle_s07e19_seg02_clip_26,A trophy 1170,Slaughter.,Eddie.,Bardot.,Robert.,Ryan.,2,Who did Ortiz say had the tendency of letting emotion get the best of him when talking to Beckett?,123209,Castle,12.65-22.6,castle_s08e15_seg02_clip_03,Bardot. 1171,Sheldon is upset because Leonard won't live with him.,Sheldon is upset because Leonard won't get him a puppy.,Sheldon is upset because Leonard won't go to school with him.,Sheldon is upset because Leonard was being mean.,Sheldon is upset because Leonard says one thing and does another.,4,Why is Sheldon upset when he is leaving the complex with Leonard?,123210,The Big Bang Theory,8.96-19.05,s07e02_seg02_clip_14,Sheldon is upset because Leonard says one thing and does another. 1172,Crandall has a brown jacket on,Crandall has a blue jacket on,Crandall has an orange jacket on,Crandall has a white jacket on,Crandall has a green jacket on,0,What color jacket does Crandall have on when he talks to House about his leg?,123211,House M.D.,9.47-15.33,house_s02e23_seg02_clip_02,Crandall has a brown jacket on 1173,Kramer was killed when his truck went off the road.,Kramer was impaled by a pipe that fell at a construction site.,Kramer was killed by a hit and run accident at night.,Kramer was killed when his gas stove blew up.,Kramer was killed in a robbery at a convenience store.,1,How did Kramer die when he was killed in an accident?,123212,Castle,86.59-89.73,castle_s08e21_seg02_clip_07,Kramer was impaled by a pipe that fell at a construction site. 1174,A vase,Chandler's clothes,A bowl,Monica's recipe book,Joey's sandwoch,2,What is Monica and Chandler trying to decide when Chandler is in the living room?,123213,Friends,1.24-19.54,friends_s08e14_seg02_clip_02,A bowl 1175,Smith,Terell,Bracken,Beckham,Tood,2,What is the man discussed when the scene begins?,123214,Castle,0-5.4,castle_s06e22_seg02_clip_04,Bracken 1176,Phoebe drinks some coffee. ,Phoebe brushes her hair.,Phoebe checks her makeup.,Phoebe puts on her shoes.,Phoebe takes off her jacket.,4,What does Phoebe do before getting married when Chandler comes to get her in the coffee house?,123215,Friends,0-22.21,friends_s10e12_seg02_clip_25,Phoebe takes off her jacket. 1177,His work is useless if he can not help him,He is too drunk to be able to chase him,There is nothing he can do for the patient ,He thinks that Cuddy was actually right,Too busy working on his resignation letter ,3,Why does House say that he is not going after the patient when Wilson asks about it?,123216,House M.D.,66.32-80.12,house_s03e01_seg02_clip_23,He thinks that Cuddy was actually right 1178,Ms. Graber was putting on her makeup.,Ms. Graber was trying to get some sleep.,Ms. Graber was talking on her cellphone.,Ms. Graber was working on her laptop.,Ms. Graber was reading a book.,3,"What was Ms. Graber doing in her hospital bed when the Derek, Izzie, and George walked into her room?",123217,Grey's Anatomy,0-5.95,grey_s02e23_seg02_clip_06,Ms. Graber was working on her laptop. 1179,Penny sat on the floor.,Penny ordered pizza. ,Penny went to the store.,Penny rushed over to sit next to Amy on the couch.,Penny called Leonard.,3,What did Penny do after Bernadette said Leonard is going to meet Priya's parents?,123218,The Big Bang Theory,9.37-17.23,s04e22_seg02_clip_12,Penny rushed over to sit next to Amy on the couch. 1180,Sheldon's feet,penny's head,the kitchen counter,On the table,In the washer,0,What does Amy place towels on before making tea,123219,The Big Bang Theory,0-6.72,s10e09_seg02_clip_07,Sheldon's feet 1181,She apologizes to him,She slaps him,She kisses him,She forgives him,She holds his hand,2,What does Rachel do to Ross when she walks over to him?,123220,Friends,11.76-18.64,friends_s04e21_seg02_clip_18,She kisses him 1182,The hilton,The marriot,The Essex house hotel,Mr. Weisbergs house,Mr. Weisbergs apartment,2,Where did Mr. Weisberg say he was between 1:30pm and 4:30am the night of the murder when questioned by beckett?,123221,Castle,7.99-14.57,castle_s02e20_seg02_clip_23,The Essex house hotel 1183,He took out a knife and cut her.,"He said he would pay her $500,000",He took out a knife and cut himself.,He took out a gun and put it in her mouth.,He threatened to kill himself.,3,What did Rebecca's Husband do convince her to sign divorce papers after begging her?,123222,Castle,60.79-83.18,castle_s04e08_seg02_clip_25,He took out a gun and put it in her mouth. 1184,turkey pox,chicken pox,large pox,small pox,ebola pox,3,What diagnosis did the doctors give to the father and daughter before Masters asked if they should just give up and go home?,123223,House M.D.,50.97-64.8,house_s07e07_seg02_clip_12,small pox 1185,Because Lina El-Masri believes her daughter to be kidnapped and she is wondering who did it.,Because Lina El-Masri doesn't want Detective Beckett to find out she was involved in her daughter disappearance.,Because Lina El-Masri is dying of cancer and thinks she will never see her daughter again.,Because Lina El-Masri knows her daughter Mandy cannot survive a week without medicine. ,Because Lina El-Masri believes her husband is involved with her daugthers disapperance. ,0,Why is Lina El-Masri upset when discussing her daugther with Detective Beckett?,123224,Castle,77.39-92.68,castle_s05e15_seg02_clip_05,Because Lina El-Masri believes her daughter to be kidnapped and she is wondering who did it. 1186,Derek kisses Meredith.,Derek looks at Meredith and then back at the scans.,Derek dances with Meredith.,Derek hugs Meredith.,Derek walks out the door.,1,What does Derek do when Meredith asks if he has seen Dr. Torres?,123225,Grey's Anatomy,15.23-17.4,grey_s03e09_seg02_clip_08,Derek looks at Meredith and then back at the scans. 1187,Priya.,Mrs. Wolowitz.,Penny.,Amy.,Bernadette.,0,Who was taking off her top when Leonard's computer screen froze?,123226,The Big Bang Theory,10.96-22.81,s05e02_seg02_clip_07,Priya. 1188,House feels indifferent.,House feels annoyed.,House feels angry.,House feels relieved.,House feels shocked.,4,How does House feel after Thirteen tells him that she killed someone?,123227,House M.D.,58.71-72.36,house_s07e18_seg02_clip_07,House feels shocked. 1189,Penny's laundry basket.,A potted plant.,Sheldon's laptop.,Raj's coffee mug.,Howard's NASA suit.,1,What Leonard and Sheldon pass after climbing the stairs?,123228,The Big Bang Theory,9-18.61,s02e01_seg02_clip_04,A potted plant. 1190,Phoebe and Cliff are eating pudding.,Phoebe and Cliff are joking about Joey.,Phoebe is tickling Cliff.,Phoebe is helping Cliff with his broken foot.,Phoebe is trying to help Cliff into his wheelchair.,0,What are Phoebe and Cliff doing before the patient sees Joey on television?,123229,Friends,0-12.51,friends_s08e23-24_seg02_clip_28,Phoebe and Cliff are eating pudding. 1191,One,Two,,Three,Four,0,How many bracelets is Rachel wearing after Ross gets excited about a Play-doh-Barbershop?,123230,Friends,0-5.91,friends_s08e20_seg02_clip_14,One 1192,He went to the beach,He wanted to go to a movie,He went to the store,He went to a concert,Henry wanted out on 53rd and 1st,4,Which reason does Hicks tell Becket for why Henry didnt go home after Hicks had given Henry the drugs?,123231,Castle,18.34-32.21,castle_s07e17_seg02_clip_19,Henry wanted out on 53rd and 1st 1193,Mayo Clinic,General Hospital,Mercy Hospital,University Hospital,Johns Hopkins,3,What is Joey's character's answer after the patient asks where she is?,123232,Friends,18.71-22.45,friends_s02e12-13_seg02_clip_16,University Hospital 1194,A notebook,A paper,Money,A pen,His phone,1,What did Sheldon grab when he was offering page a laudatory statement?,123233,The Big Bang Theory,11.52-18.31,s04e07_seg02_clip_10,A paper 1195,Cowboy boots,Work books,Shoes with lights on them,Slippers,Flip Flops,2,What kind of shoes did Esposito have on when he was celebrating his and Ryan's win at the precinct?,123234,Castle,25.81-32.15,castle_s07e19_seg02_clip_26,Shoes with lights on them 1196,Will the human race survive?,Will we colonize Mars?,Will we move to the moon?,Will we set off into space?,Will animals survive?,0,What does Hastings ask after he says how compromised our planet is?,123235,Castle,4.05-11.7,castle_s06e05_seg02_clip_16,Will the human race survive? 1197,Rachel is standing by the table ,Rachel is in the kitchen,Rachel is sittting in the living room,Rachel is in the bedroom,Rachel is sitting at the table,0,"Where is Rachel when Ross, Monica, Phoebe, and Chandler are sitting at the table?",123236,Friends,2.4-12.31,friends_s01e18_seg02_clip_11,Rachel is standing by the table 1198,A bottle of champagne,A cup of coffee,A laptop,A suitcase,A yogurt,4,What is Elizabeth holding when she is thanking Leonard and Sheldon for opening up their home to her?,123237,The Big Bang Theory,34.91-43.71,s03e21_seg02_clip_03,A yogurt 1199,The killer dressed as Lone Vengeance. ,Captain America is who the killer dressed as. ,The killer was dressed as the Joker. ,Ace Ventura his who the killer dressed as. ,The outfit the killer had on was that of a cowboy. ,0,What character was the killer dressed as when he killed Tyler? ,123238,Castle,73.63-88.27,castle_s04e02_seg02_clip_23,The killer dressed as Lone Vengeance. 1200,Her head keeps twitching,Her eyes keep spinning,She keeps blinking,Her fingers keep clutching,Her lip keeps quivering,2,Why did Taub say the patient was having neurological problem after Foreman asked if it was a surgical complication?,123239,House M.D.,20.26-25.66,house_s05e01_seg02_clip_11,She keeps blinking 1201,To her house to test carbone monoxide levels and to investigate for smoke. ,To pick up lunch because House was starving. ,House sent them both home for arguing. ,House did not send them anywhere.,To the lab for further blood testing. ,0,[Where/...] did House send Cameron and Chase [/after] they discussed the potential cause of the young girl's stroke?,123240,House M.D.,43.95-59.61,house_s03e19_seg02_clip_05,To her house to test carbone monoxide levels and to investigate for smoke. 1202,Because it had been going on for over 15 years.,Because there were no symptoms pointing to viral encephalitis.,Because they've already ruled out viral encephalitis.,Because House didn't think it's viral encephalitis.,Because it had been going on for 10 years.,4,Why didn't Park think Taub was correct when he suggested viral encephalitis?,123241,House M.D.,83.51-86.65,house_s08e21_seg02_clip_04,Because it had been going on for 10 years. 1203,Sheldon says that's not a lot.,Sheldon says you know i'm right.,Sheldon says ok it should be 130.,Sheldon says I'm sorry is that not correct?,"Sheldon says I'm sorry, did I insult you?",4,What does Sheldon say after he adds 120 for Penny?,123242,The Big Bang Theory,1.2-6.31,s01e04_seg02_clip_03,"Sheldon says I'm sorry, did I insult you?" 1204,They got pregnant and no longer need to adopt.,The agency received a recommendation letter from Joey which would ruin their chances to adopt a child.,"The agency has only a set of twins to adopt, and they only want one child.",She is worried that they are not good enough parents.,She thinks Chandler was immature at the interview. ,1,Why does Monica think they are screwed after Chandler hangs up the phone with the adoption agency?,123243,Friends,23.86-32.77,friends_s10e05_seg02_clip_15,The agency received a recommendation letter from Joey which would ruin their chances to adopt a child. 1205,House figured the passenger was having a brain bleed,House figured the passenger was having an allergic reaction,House figured the passenger was having a stroke,House figured the passenger was a cocaine mule,House figured the passenger was epileptic ,3,How did House figured what was the cause of the sickness when he and Cuddy made a determination,123244,House M.D.,36.32-47.09,house_s03e18_seg02_clip_20,House figured the passenger was a cocaine mule 1206,He told him 'no' and walked away,He put his hands on his head.,He gave him a high five,He closed his eyes and leaned back in the chair.,He put his fingers to his mouth and raised his eyebrows.,4,What did Joey do when his student asked for advice?,123245,Friends,0-7.11,friends_s03e07_seg02_clip_16,He put his fingers to his mouth and raised his eyebrows. 1207,Cyborg.,Batman.,Green Lantern.,Doctor Strange,Ant-man. ,2,Who does Leonard say he wants to dress up as when the gang are walking up the stairs?,123246,The Big Bang Theory,22.88-28.99,s04e11_seg02_clip_05,Green Lantern. 1208,Cuddy wanted Wilson to talk to a counselor.,Cuddy wanted Wilson to take Amber off of the bypass.,Cuddy wanted Wilson to let them wake Amber up.,Cuddy wanted Wilson to pray with her.,Cuddy wanted Wilson to understand Amber's prognosis.,2,What did Cuddy encourage Wilson to do after they after she says Amber is still alive?,123247,House M.D.,44.86-60.46,house_s04e16_seg02_clip_19,Cuddy wanted Wilson to let them wake Amber up. 1209,Ted was at a neighbor's house.,"Ted was at school, teaching a class.",Ted was at a doctor appointment.,Ted was at home talking to Robin.,Ted was at the cafe.,1,Where was Ted when he mispronounced chameleon?,123248,How I Met You Mother,34.85-38.2,met_s06e19_seg02_clip_00,"Ted was at school, teaching a class." 1210,Chandler tells Rachel it was a girl,Chandler says he is gay,Chandler says he was super drunk,Chandler says Joey is lying,Chandler says he was a very pretty guy,4,How does Chandler defend himself when Joey tells Rachel Chandler kissed a guy?,123249,Friends,28.51-38.12,friends_s07e04_seg02_clip_11,Chandler says he was a very pretty guy 1211,She taps Monica.,She walks away.,She wipes her eye.,She lifts her leg.,She drops the couch.,2,What does Rachel do before they put the couch down?,123250,Friends,26.9-31.95,friends_s09e16_seg02_clip_22,She wipes her eye. 1212,Jeffrey Cole is sitting on a desk.,Amber is sitting on a desk.,Lawrence Kutner is sitting on a desk.,Travis Brennan is sitting on a desk.,Henry Dobson is sitting on a desk.,0,Who is sitting on a desk when they are on speaker phone with House ?,123251,House M.D.,55.02-62.06,house_s04e04_seg02_clip_04,Jeffrey Cole is sitting on a desk. 1213,Avenue V,Avenue G,Avenue U,Avenue B,Avenue P,2,Where did Esposito say the repair shop is located when he was talking to Beckett?,123252,Castle,14.66-28.88,castle_s03e21_seg02_clip_14,Avenue U 1214,Marshall proposed to whip Robin,Marshall proposed to whip Lily.,Marshall proposed to go to the alley and whip stuff,Marshall proposed to whip the bartender,Marshall proposed to whip him.,2,What proposed Marshall to do after finish their drinks?,123253,How I Met You Mother,28.46-79.05,met_s05e01_seg01_clip_02,Marshall proposed to go to the alley and whip stuff 1215,Christmas,Thanksgiving,Fourth of July,New Years,Halloween,1,What holiday are the friends celebrating when they are eating dinner together?,123254,Friends,53.8-58.17,friends_s10e10_seg02_clip_16,Thanksgiving 1216,talking on the phone,drinking coffee,watching tv,playing the guitar,listening to Gunther,1,What is Phoebe doing when Monica walks in? ,123255,Friends,64.19-69.02,friends_s04e09_seg02_clip_15,drinking coffee 1217,Sheldon had Mork and Mindy on his shirt,Sheldon had Tony the Tiger on his shirt,Sheldon had robots on his shirt,Sheldon had the transformers on his shirt,Sheldon had a melting rubic cube on his shirt,4,What is on Sheldon's shirt after Penny came in the door,123256,The Big Bang Theory,11.97-28.04,s05e11_seg01_clip_00,Sheldon had a melting rubic cube on his shirt 1218,Jason was favoring his left ear which meant that Jason had hearing loss in his right ear.,House saw Jason's nose bleed for the first time and noticed it was especially bad.,House watched Jason when he walked and determined he needed a knee replacement.,House saw Jason's blood pressure had gotten unusually high and needed medicine to treat it.,House noticed the jaundice in the whites of Jason's eyes and wanted images of his liver and gall bladder.,0,Why did House say Jason had a new symptom after talking about Jason's other symptoms?,123257,House M.D.,63.47-74.75,house_s05e09_seg02_clip_21,Jason was favoring his left ear which meant that Jason had hearing loss in his right ear. 1219,the salt,the pepper,an article on howards phone,a picture of howards girlfriend,a piece of sandwich,2,what does howard hand raj when they are in the cafeteria eating lunch?,123258,The Big Bang Theory,0-9.94,s05e15_seg02_clip_00,an article on howards phone 1220,Sheldon started eating food.,Sheldon got up and left the room.,Sheldon took a phone call.,Sheldon went to sleep.,Sheldon buttoned his cardigan.,4,What did Sheldon do after Raj told him he was in Sheldon Square?,123259,The Big Bang Theory,17.69-22.79,s03e18_seg02_clip_08,Sheldon buttoned his cardigan. 1221,He will eat too much,He will be too annoying,He will make too much noise,His will be nothing but a liability,He will get in the way,3,Why would the kidnappers kill Paul after the police make a connection to the lottery?,123260,Castle,79.19-91.03,castle_s06e10_seg02_clip_23,His will be nothing but a liability 1222,George and Meredith go dance in the locker room,George and Meredith go view the babies,George and Meredith run through the fountain,George and Meredith eat a pound of chocolate,George and Meredith play ball with a blown up plastic glove,1,What do George and Meredith do to feel better after he pulls her chair,123261,Grey's Anatomy,40-54.89,grey_s01e02_seg02_clip_07,George and Meredith go view the babies 1223,She had order a third-party to run checks,She knew everyone,She vetted everyone,She checked the cameras,She doesn't recall the incident,2,Why does Megan state it was impossible after Castle and Beckett question Lopez?,123262,Castle,43.3-48.22,castle_s07e18_seg02_clip_25,She vetted everyone 1224,The hospital.,The bus.,The MRI machine.,Wilson's office.,Amber's office.,0,Where was House actually at when he was having his hallucination? ,123263,House M.D.,52.37-58.98,house_s04e15_seg02_clip_08,The hospital. 1225,To see if Ted could by tickets.,To tell him if the flight was late.,To see if he could make the flight.,To see if Ted could go to First class.,To see if Ted could cancel his ticket.,2,Why did the lady say the captain would have to call back when talking to Ted?,123264,How I Met You Mother,5.34-20.41,met_s02e15_seg02_clip_00,To see if he could make the flight. 1226,They were standing by the window. ,They were standing by the door.,They were sitting on the couch.,There were at the mall.,They were in a library. ,2,Where was Sheldon and Mike when they were talking?,123265,The Big Bang Theory,36.32-39.98,s07e09_seg02_clip_13,They were sitting on the couch. 1227,Rachel wanted to cry because she knew when she hired somebody that she wouldn't get a raise.,Rachel wanted to cry because Phoebe was being so mean to her.,Rachel wanted to cry because she was sad over having to hire someone.,Rachel wanted to cry because she had to turn so many applicants away.,Rachel wanted to cry because the guy was so pretty,4,Why did Rachel say she wanted to cry when she was talking about who to hire?,123266,Friends,13.97-19.39,friends_s07e04_seg02_clip_05,Rachel wanted to cry because the guy was so pretty 1228,putting lotion on ,texting someone ,playing a game,holding her hand,dialing a phone number ,3,what is chase doing with his hand when him and his girlfriend are talking,123267,House M.D.,6.75-20.26,house_s08e12_seg02_clip_21,holding her hand 1229,The secret language of love,A prehistoric language,French,Rachel's language ,Italian ,0,What language does Phoebe joke about Ross speaking when they are discussing Ross and Rachel,123268,Friends,34.18-40.58,friends_s06e03_seg02_clip_01,The secret language of love 1230,elf,dracula,robin hood,paulblaurt,santa,0,"What is Joey dressed as when he says ""Nice shoes,huh?""?",123269,Friends,49.63-58.05,friends_s01e10_seg02_clip_05,elf 1231,Behind Castle.,Behind Luca.,In the hallway.,Behind a shelf of buckets.,Behind Beckett.,1,Where was Jane after Castle called her name?,123270,Castle,17.87-23.37,castle_s07e10_seg02_clip_22,Behind Luca. 1232,Duke was hired to take photos of Bill's infidelity.,Duke was hired to attack Bill.,Duke was hired to convince Bill to hire a prostitute.,Duke was hired to pretend to be Bill's friend to convince Bill to leave Tonya,Duke was hired to alter the pre-nup. ,0,"How did Stacey use Duke to break up Tonya's pre-nup, according to Beckett after seeing the photos?",123271,Castle,38.84-49.11,castle_s03e11_seg02_clip_15,Duke was hired to take photos of Bill's infidelity. 1233,Stan,Esposito,Smith,Bracken,Castle,2,Who does Beckett say had a copy of the file when Bracken starts to walk away from her? ,123272,Castle,20.92-27.6,castle_s05e01_seg02_clip_25,Smith 1234,fulfilled people,bored people,happy people,pathetic people,tired people,3,"What did Raj consider Sheldon, Howard and himself when they were all in the kitchen searching?",123273,The Big Bang Theory,0-9.15,s03e02_seg02_clip_06,pathetic people 1235,She pulled her oxygen hose off.,She fell out of her bed.,She dumped her water over.,She hit the doctor.,She spit her pills out.,0,What did Jessica do when she said she didn't want to do it anymore?,123274,House M.D.,0-9.14,house_s01e16_seg02_clip_06,She pulled her oxygen hose off. 1236,Door closes,Door opens,Room rattles,Doors lock,Computer turns on,1,What occurs when Beckett pushes the bar down?,123275,Castle,44.17-51.99,castle_s08e12_seg02_clip_23,Door opens 1237,Because Ted recently misplaced his vet supply bag.,Because Ted does have vet supplies and can easily retrieve them but simply didn't wish to do so. ,Because Ted wanted to keep it a secret that he had vet supplies.,Because Ted's friends don't know he moonlights as a vet. ,Because Ted is not a vet and therefore finds it absurd he would have such items available and said so in jest.,4,"Why does Ted say ""Why would I say that?"" after offering to get his bag of vet supplies.",123276,How I Met You Mother,4.65-62.03,met_s06e05_seg02_clip_10,Because Ted is not a vet and therefore finds it absurd he would have such items available and said so in jest. 1238,The word on Leonard's sweater is Speedy,The word on Leonard's sweater is Lover,The word on Leonard's sweater is Nerd,The word on Leonard's sweater is Xtra,The word on Leonard's sweater is Lenny,4,What word is on Leonard's sweater when Sheldon is talking to him,123277,The Big Bang Theory,0-7.25,s07e08_seg02_clip_02,The word on Leonard's sweater is Lenny 1239,His leg.,His back.,His stomach.,His head.,His cheek.,2,Where was Foreman pressing when the boy said he had a chicken sandwich?,123278,House M.D.,56.44-61.9,house_s02e19_seg02_clip_00,His stomach. 1240,Beckett and Castle go to the zoo,Beckett and Castle walk into the conference room,Beckett and Castle leave the parking garage,Beckett and Castle go get some lunch,Beckett and Castle get on the elevator,4,Where do Beckett and Castle go after they finish their conversation,123279,Castle,52.55-62.17,castle_s04e06_seg02_clip_26,Beckett and Castle get on the elevator 1241,on a Stool,on a chair,on a table,on a bed,on the Floor,3,Where was Penny sitting when Sheldon was talking to her?,123280,The Big Bang Theory,12.6-18.59,s06e02_seg02_clip_10,on a bed 1242,Throwing darts,Putting on his suit,Taking a drink,Stacking cans,Brushing his teeth,2,What was Barney doing when Honey was saying he's not ashamed of you?,123281,How I Met You Mother,35.19-38.98,met_s06e15_seg02_clip_14,Taking a drink 1243,The patients conditions.,Needing time for vaction.,Going to the dinner.,Needing time alone to work.,Being nice.,3,What did WIlson say House lied about before House said lying is fun?,123282,House M.D.,28.67-36.41,house_s02e16_seg02_clip_10,Needing time alone to work. 1244,His rash is back.,Stop Arguing.,I like what you did with your hair.,I quit my job.,Does this coat make my eyes look puffy?,0,What did Kutner say when he interrupted House and Foreman's squabble?,123283,House M.D.,24.85-30.37,house_s04e05_seg02_clip_16,His rash is back. 1245,Derek asked the nurse a question.,Derek closed the curtains.,Derek got up to leave.,Derek leaned back in her chair.,Derek looked at her watch.,2,What did Derek do after Pete told her it had been a long day?,123284,Grey's Anatomy,31.94-60.78,grey_s03e10_seg02_clip_24,Derek got up to leave. 1246,Ross and Rachel,Monica and Chandler,Joey and Phoebe,Chandler and Rachel,Chandler and Phoebe,1,Who does Mr. Geller see after he slides pamphlets under the door?,123285,Friends,45.52-51.38,friends_s09e01_seg02_clip_21,Monica and Chandler 1247,Jets are dropping bombs on them.,There was an earthquake.,AJ stole a gun and is shooting at them.,He wants to have a dance party.,Ryan isnt there.,2,Why does Ryan yell for everyone to get down after Esposito and Castle talk about a phone call with Allison Hyde?,123286,Castle,74.42-96.03,castle_s08e01_seg02_clip_25,AJ stole a gun and is shooting at them. 1248,Leave the cafe,Look at his watch,Take his daughter's hand,Sit down on the couch,Drink from his mug,1,What does Mr Stevens do when he says a minute fifty seconds?,123287,Friends,52.48-58.59,friends_s06e21_seg02_clip_03,Look at his watch 1249,on the window sill,at her desk,on the couth,sitting on her desk,sitting on the floor,2,where is cuddy sitting when discussing the patient with house?,123288,House M.D.,0-7.57,house_s07e07_seg02_clip_04,on the couth 1250,On her chest.,On her arms.,On her legs.,On her face.,On her hands.,0,Where was Afsoun's rash when she told House she was waiting on eczema medication?,123289,House M.D.,2.08-5.4,house_s07e23_seg02_clip_17,On her chest. 1251,Dorothy malcoms grandmother,Dorthy malcoms mom,Dorothy malcoms sister,Dorothy malcoms aunt,Dorothy malcoms step cousin,3,Who does alexis go and see after hayley told her not to go digging into malcoms life?,123290,Castle,77.93-89.06,castle_s08e14_seg02_clip_18,Dorothy malcoms aunt 1252,Dancing,Eavesdropping,Sleeping,Stealing money,Hiding his phone,1,"What were Chandler, Monica and Phoebe doing when Ross caught them? ",123291,Friends,25.21-33.41,friends_s10e01_seg02_clip_02,Eavesdropping 1253,Phoebe is crying,Rachel is crying,Monica is crying,Joey is crying,A stranger is crying,2,Who is crying after Chandler's proposal?,123292,Friends,51.08-69.02,friends_s06e24-25_seg02_clip_41,Monica is crying 1254,Getting in the mood,Reliving the time she almost died,Dressing herself,Feeling up her breasts,Reliving the time she went to buy bread,1,What is Beckett doing when she's looking at herself in the mirror?,123293,Castle,38.27-59.88,castle_s04e09_seg02_clip_02,Reliving the time she almost died 1255,Reminder that a car is being remembered.,Reminder that a car is being totalled.,Reminder that a car is being towed.,Reminder that a car is being parked.,Reminder that a car is being valet parked.,2,What does Ross say when he is on stage?,123294,Friends,25.89-27.79,friends_s08e02_seg02_clip_12,Reminder that a car is being towed. 1256,at a church ,At home,cynthias car,A holding cell,on the street,3,Where was cynthia when she took the cyanide pill?,123295,Castle,79.92-85.17,castle_s04e03_seg02_clip_26,A holding cell 1257,red,Grey,blue,white,black,1,"What color is the shirt Castle is wearing when he say's ""Do you know...""?",123296,Castle,0-9.9,castle_s07e22_seg02_clip_15,Grey 1258,USA,Mexico,France,Vatican City,Brazil,0,Where was Eddie helping others to immigrate to before being killed?,123297,Castle,0-3.72,castle_s08e13_seg02_clip_13,USA 1259,Outside,by the door,Next to a file cabinet,By the interrogation glass,At becketts desk,3,Where is beckett standing when castle is describing a past encounter with tyson?,123298,Castle,51.78-61.04,castle_s07e14_seg02_clip_22,By the interrogation glass 1260,She dance for Rachel.,She turned on the stereo.,She gave Rachel a hug.,She took a nap.,She sit in her chair and doe nothing.,1,What did Monica do when she hung up the phone?,123299,Friends,49.36-56.5,friends_s02e08_seg02_clip_18,She turned on the stereo. 1261,Ross,Joey,Chandler,Phoebe,Simon ,0,Who is standing behind Rachel when she angrily knocks on Monica's door?,123300,Friends,5.04-11.2,friends_s07e01_seg02_clip_16,Ross 1262,Foreman,Chase ,Wilson,Cuddy,Cameron,1,Whose boss does House need help from after speaking to his patient?,123301,House M.D.,20.94-25.49,house_s05e17_seg02_clip_17,Chase 1263,Satellite t.v.,Speaker phone.,Through their minds,Through text.,Through letters.,1,How was house communicated with his team when he was not actually present?,123302,House M.D.,10.12-22.89,house_s04e04_seg02_clip_04,Speaker phone. 1264,Ice cream,Cake,Pie,Cookies,Pudding,3,What did the waiter bring House when he was at a restaurant with Wilson?,123303,House M.D.,73.94-78.34,house_s08e21_seg02_clip_15,Cookies 1265,Shiny.,Special.,Unique.,Free.,Crazy.,0,How did Beckett say she liked to feel when Marvin asked her what party she wanted to get in?,123304,Castle,42.94-49.02,castle_s03e14_seg02_clip_18,Shiny. 1266,paint,band-aid,wedding ring,stickets,tattoo ,2,What was on Beckett finger after she answered the phone?,123305,Castle,31.81-34.62,castle_s07e09_seg02_clip_00,wedding ring 1267,snapback,blanket,dog,pony,baby,4,What does Ryan give castel after sayin i thought i was ready,123306,Castle,10.14-19.83,castle_s06e10_seg02_clip_05,baby 1268,Walking in the park.,Riding in the back seat of a car.,Sitting on a couch.,At a table in a restaurant.,At a baseball game.,2,Where are Chandler and Ross when Monica calls them both idiots?,123307,Friends,52.09-57.64,friends_s06e12_seg02_clip_14,Sitting on a couch. 1269,Starts crying,begins to laugh,talks about her nails,leaves the room,kisses him,0,What does Rachel do after the man in the suit tells her it makes him uncomfortable?,123308,Friends,3.3-12.31,friends_s09e11_seg02_clip_18,Starts crying 1270,Because Rachel has to work that day.,Because Rachel is Monica's maid of honor.,Because Rachel can't bring Richard.,Because Rachel will be out of town.,Because Rachel doesn't like weddings.,1,Why did Rachel decline after Chandler invited her to attend the wedding as his guest?,123309,Friends,8.7-12.61,friends_s07e20_seg02_clip_02,Because Rachel is Monica's maid of honor. 1271,storage locket,water cooler,whiteboard full of photos,filing cabinte,door ,2,What was on the left side of Ryan when he was describing his finding to Beckett? ,123310,Castle,59.13-73.57,castle_s07e12_seg02_clip_13,whiteboard full of photos 1272,to eat.,to figure out a puzzle,to go out and have fun,To find her mother's killer,to go on a date.,3,What does Becklett say she wants when talking to Castle.,123311,Castle,16.82-36.83,castle_s02e13_seg02_clip_17,To find her mother's killer 1273,Behind Taub.,To the right of Foreman.,To the right of Taub.,To the left of Foreman.,in front of Taub.,3,Where were the x-rays when Taub told Foreman that he had feelings?,123312,House M.D.,8.24-12.83,house_s07e17_seg02_clip_09,To the left of Foreman. 1274,He jumped up.,He turned around.,He put his hands on his head.,He started dancing.,He started singing.,1,What did Ted do after Marshall snapped his fingers?,123313,How I Met You Mother,0.31-2.79,met_s02e09_seg02_clip_09,He turned around. 1275,Howard says nothing is wrong. ,Howard is being mean to the astronauts. ,Howard says nothing is wrong he's just tired. ,"Howard says nothing is wrong, he's just depressed. ",He says the other astronauts are being mean to him. ,4,What does Howard say is wrong when he is talking with Bernadette?,123314,The Big Bang Theory,13.76-17.93,s06e02_seg02_clip_13,He says the other astronauts are being mean to him. 1276,They are on the couch. ,They are sitting on a recliner together. ,They are on the floor. ,They are sitting on the counter. ,They are sitting at the table. ,1,Where are Rachel and Chandler when Chandler is comforting her?,123315,Friends,0-7.35,friends_s04e10_seg02_clip_15,They are sitting on a recliner together. 1277,Lance said he would get Mandy fired from the show.,Lance said he would be insulted if Mandy actually knew anything about acting.,Lance said Mandy wouldn't know a good character.,Lance said Mandy was jealous of his lines.,Lance said Mandy was angry because he wouldn't date her.,1,How did Lance react after Mandy insulted his character?,123316,Castle,69.78-73.23,castle_s03e18_seg02_clip_02,Lance said he would be insulted if Mandy actually knew anything about acting. 1278,Nadia's shin,Nadia's face,Nadia's arm,Nadia's belly,Nadia's foot,2,Where does House rub the filling after he opens the tube?,123317,House M.D.,31.52-54.03,house_s07e12_seg02_clip_13,Nadia's arm 1279,Chandler was hiding the tape in the back of a toilet.,Chandler was hiding the tape under a car.,Chandler was hiding the tape under a seat cushion.,Chandler was hiding the tape under his pillow.,Chandler was hiding the tape in the fridge.,2,Where do we discover Chandler was hiding the tape when he retrieves it for Monica?,123318,Friends,0-22.01,friends_s08e15_seg02_clip_17,Chandler was hiding the tape under a seat cushion. 1280,Aquaman,Spiderman,The Flash,Thor,Superman,2,What is Sheldon dressed as when he's knocking on Penny's door?,123319,The Big Bang Theory,10.55-16.75,s04e11_seg02_clip_09,The Flash 1281,To have his third nipple removed,To have a mole checked,To have fertility tests,To get antibiotics for a cold,To see if he needs glasses.,2,Why does Monica want Chandler to go to a doctor when they are in the kitchen?,123320,Friends,0.3-27.45,friends_s09e21_seg02_clip_03,To have fertility tests 1282,A shirt.,He jacket.,Her wrist.,A cup.,A book.,2,What did Rachel hold up for Mindy to smell after Mindy confessed she had an affair with Barry when Rachel was engaged to him?,123321,Friends,37.31-41.6,friends_s01e20_seg02_clip_14,Her wrist. 1283,Joey visited Phoebe's sister.,Joey visited Chandler.,Joey visited Ross.,Joey visited Estelle.,Joey visited his father.,3,Who did Joey visit some time after he was hanging out with his friends?,123322,Friends,26.4-58.03,friends_s02e19_seg02_clip_02,Joey visited Estelle. 1284,Raj,Penny,Sheldon,Amy,Chris,0,Who is singing when Leonard and Howard arrive home?,123323,The Big Bang Theory,0-46.22,s01e16_seg02_clip_14,Raj 1285,It is a peer counseling meeting ,It is a AA meeting,It is a drug rehab meeting,IT is a Pathological Liars Anonymous meeting,It was not a meeting ,3,"What type of meeting is it when Castle, Esposito, and Ryan are investigating about Dave?",123324,Castle,21.78-27.44,castle_s08e04_seg02_clip_12,IT is a Pathological Liars Anonymous meeting 1286,Killing his mother. ,Killing himself. ,Killing Lyla and his brother. ,Killing his father. ,Killing his sister. ,2,What does Eddie deny when he is being questioned?,123325,Castle,6.37-13.2,castle_s03e19_seg02_clip_23,Killing Lyla and his brother. 1287,Going to dinner with her boyfriend.,Going to the bar.,Hanging at the strip club.,Going on speed dates.,Going to movie night.,4,What does Stella say she enjoys when she has a sitter?,123326,How I Met You Mother,22.21-34.82,met_s03e13_seg02_clip_13,Going to movie night. 1288,A comic book,A video game controller,Sheldon's laptop,His dinner,His sunglasses,3,What did Raj set down after Howard said he was a horney engineer?,123327,The Big Bang Theory,34.05-43.89,s02e20_seg01_clip_02,His dinner 1289,Goes to the store,Types on a computer,Takes an aspirin pill,Falls asleep,Plays with a puppy,1,What does Chandler start doing when the scene ends?,123328,Friends,0-8.72,friends_s09e17_seg02_clip_05,Types on a computer 1290,Monica won the lottery.,Monica found five dollars on the ground outside.,Monica was hired as the new head lunch chef.,Monica had a really good sandwich for lunch.,Monica met Brad Pitt.,2,Why was Monica so excited when she came home from work?,123329,Friends,23.71-33.62,friends_s02e05_seg02_clip_03,Monica was hired as the new head lunch chef. 1291,They say hi to Phoebe.,They tell him that they do care about him.,They come over and give him a hug.,They say the universe doesn't care about him.,They ignore him.,4,How do the guys react when Earl says he doesn't need them to like him?,123330,Friends,26.36-40.94,friends_s07e13_seg02_clip_22,They ignore him. 1292,She pulls a gun out and shoots House,She says he's right,She says he's wrong,"She slaps him, breaks down and cries",She takes care of her husband,4,What does Arlene do after House suggests she'd be miserable if she doesn't take care of her husband?,123331,House M.D.,75-92.03,house_s03e01_seg02_clip_11,She takes care of her husband 1293,The leprocy had just developed in Gabrielle after seeing his friends.,Gabrielle's friends were already given antibiotics.,Leprocy is very hard to catch.,Leprocy isn't contagious. ,Leprocy only affects people with certain DNA.,2,Why does Chase say Gabrielle won't need to tell his friends about leprocy when he asks if they caught it?,123332,House M.D.,88.61-93.77,house_s01e13_seg02_clip_24,Leprocy is very hard to catch. 1294,Because Lily enter in the Army.,Because Lily is going to have a new date.,Because Lily lost everything.,Because Lily needs to pay bills.,Because Lily can't buy an iPhone.,2,What Lily is sad and worry when talk to Robin and Ted?,123333,How I Met You Mother,0-53.65,met_s02e02_seg02_clip_12,Because Lily lost everything. 1295,How many times castle made a wish,How many girlfriends castle has,How many times castle escaped death,How many times castle has saved becketts life,The number of times castle has gotten drunk,3,What does castle confess he is keeping score of when he is talking to beckett?,123334,Castle,59.09-63.34,castle_s04e07_seg02_clip_27,How many times castle has saved becketts life 1296,Two,Three,One,Four,,0,How many packs of crackers were on the counter when House called Foreman an idoit.,123335,House M.D.,35.93-38.62,house_s01e01_seg02_clip_18,Two 1297,Howard throw the bottle.,Howard drank from the bottle.,Howard broke the bottle.,Howard empty the bottle?,Howard cleaned the bottle.,3,What did Howard after open the bottle?,123336,The Big Bang Theory,12.35-58.79,s01e15_seg02_clip_13,Howard empty the bottle? 1298,Elise's home.,Elise's gym.,Elise's workplace.,Elise childhood home.,The well where Elise gets her water supply.,2,Where does House tell the medical team they to check out before he decides to give the job to Foreman?,123337,House M.D.,65.17-67.66,house_s01e07_seg02_clip_06,Elise's workplace. 1299,Robin's dress is brown.,Robin's dress is red.,Robin's dress is green.teal.,Robin's dress is white.,Robin's dress is blue.,4,What color is Robin's dress when she is talking to her date?,123338,How I Met You Mother,0-5.51,met_s03e03_seg02_clip_10,Robin's dress is blue. 1300,Robert accidentally flashes them when he lifts his leg,They don't think Robert is good for Phoebe,They hate the 23 point rule,Robert's feet smell really bad,Chandler knows the phone just got sneezed on.,0,Why do Chandler and Ross get so upset when Robert needs to use the phone?,123339,Friends,47.9-63.03,friends_s03e13_seg02_clip_08,Robert accidentally flashes them when he lifts his leg 1301,Joshua,Rachel,Ross,Monica,Sleep clinic worker,4,Who asks Joey if he stayed up all night for the sleep study after Gunther calls Joshua an idiot?,123340,Friends,37.52-45.92,friends_s04e20_seg02_clip_12,Sleep clinic worker 1302,The wine glasses are red,The wine glasses are blue,The wine glasses are black,The wine glasses are orange,The wine glasses are clear,1,What color wine glasses are on the table after the foreign man is looking out the windown,123341,Friends,51.06-59.03,friends_s01e07_seg02_clip_18,The wine glasses are blue 1303,Cofield tells House they have been friends a long time and he doesn't want to have to do or report anything which might hurt House's career.,Cofield thinks House should not so readily admit guilt because it may set him up for possible legal prosecution.,"Cofield finds it hard to believe House passed on the hepatic encephalopathy diagnosis, which even Cofield can see was correct.","Cofield finds it hard to believe House admits to using the phrase ""unsquint your eyes"" in talking to a person of Asian heritage.",Cofield tells House his allegations of misconduct against Park are very serious and he should take pause before making them.,3,Why does Cofield give House an opportunity to reconsider his answers after House gives his version of how he reacted to Park's diagnostic hypothesis?,123342,House M.D.,58.41-79.4,house_s08e11_seg02_clip_03,"Cofield finds it hard to believe House admits to using the phrase ""unsquint your eyes"" in talking to a person of Asian heritage." 1304,tired,angey,upset,happy,peaceful,2,How did Amy feel when Penny and Bernadette were laughing at the story?,123343,The Big Bang Theory,33.07-58.02,s08e14_seg02_clip_14,upset 1305,Sheldon heard moans and grunts,Sheldon heard the elevator moving,Sheldon heard dancing upstairs,Sheldon heard the fire alarm,Sheldon heard police sirens,0,What did Sheldon hear before he almost closed his door,123344,The Big Bang Theory,52.8-61.39,s08e13_seg02_clip_00,Sheldon heard moans and grunts 1306,A wad of cash,A gun,A lollipop ,A gym bag,Underwear ,4,What is Kevin Ryan holding when told he could go to the bathroom if he was shy?,123345,Castle,0-5.46,castle_s03e07_seg02_clip_08,Underwear 1307,A book,A toy,A child,A rubber band,His food,3,What is House playing with at his desk before Cuddy enters?,123346,House M.D.,83.24-89.02,house_s06e18_seg02_clip_13,A rubber band 1308,Mickey Mouse.,House walked in the room while they were talking.,Minnie Mouse.,Pluto.,Fred Flintstone.,1,Who walked in the room when Chase and Foreman were talking?,123347,House M.D.,3.2-56.17,house_s06e04_seg02_clip_02,House walked in the room while they were talking. 1309,Chase is holding an X-ray.,Chase is holding a pill bottle.,Chase is holding a thermometer.,Chase is holding a folder.,Chase is holding a cane.,0,What is Chase holding when sitting at the table and speaking?,123348,House M.D.,87.77-88.69,house_s06e15_seg02_clip_00,Chase is holding an X-ray. 1310,He turns around and walks out the room.,He gives her a hug.,He shakes her hand.,He throws her a kiss.,He gives her an eye wink.,2,What does Joey do after he tells Rachel it's not a big deal and he will see her later?,123349,Friends,8.68-17.06,friends_s09e23-24_seg02_clip_41,He shakes her hand. 1311,Firefighters,Rubble,Dust,Gasoline,Flames,3,What does House believe is throwing off the dogs' sense of smell when they does not smell anyone?,123350,House M.D.,26.05-40,house_s06e21_seg02_clip_04,Gasoline 1312,Ryan's witness to the case,Ryan's parents,Ryan's brother,Ryan's wife ,Ryan's infomant to the case,3,Who came to see Ryan when he was at the precinct talking about the Zane case?,123351,Castle,38.97-49.4,castle_s08e20_seg02_clip_20,Ryan's wife 1313,In the hallway.,In Joey's beige kitchen.,in the blue kitchen at Monica's,At the coffee shop.,In Phoebe's living room.,1,Where was Rachel when she said Happy wedding day after Phoebe arrive? ,123352,Friends,14.67-19.47,friends_s10e12_seg02_clip_10,In Joey's beige kitchen. 1314,He is standing up in the break room getting coffee with Beckett.,He is sitting down at Becketts desk.,He is sitting down in the interrogation room with Beckett.,He is standing up in front of the white bulletin board.,He is standing behind Beckett and looking into her laptop.,3,Where is officer Caste when he tells Becket it doesn't make sense Vega can get a loan from any bank?,123353,Castle,75.91-83.5,castle_s02e15_seg02_clip_06,He is standing up in front of the white bulletin board. 1315,You were so insistent ,I needed a job badly,It sounded like fun,I'm fond of you,You couldn't live without me,3,How did Hayley respond when Castle mentioned that it doesn't explain why she agreed to come work with him?,123354,Castle,10.68-18.25,castle_s08e14_seg02_clip_22,I'm fond of you 1316,The Jolly Green Giant,The Tall Man from Cornwall,The Muensters,Jack and the Beanstalk,The Little Train that Could,1,What children's book does Sheldon say he will not live out when he talks to Penny?,123355,The Big Bang Theory,0-48.64,s02e21_seg02_clip_14,The Tall Man from Cornwall 1317,apartment,dance club,coffe shop,pet store,dance studio,4,Where is monica when she starts dancing?,123356,Friends,18.09-27.61,friends_s01e21_seg02_clip_07,dance studio 1318,The bed,The shelf,A cabinet,The window,His seat,4,Where did Costello head to when he walked into the office.,123357,House M.D.,22.06-32.41,house_s05e04_seg02_clip_12,His seat 1319,On the table.,On her tray.,In the sink.,On the counter.,On a couch.,1,Where did Rachel put the towel when she said she had plans? ,123358,Friends,11.35-23.5,friends_s02e10_seg02_clip_05,On her tray. 1320,Chandler,Ross,Rachel,Joey,Carol,1,Who does Monica talk to after talking to Phoebe,123359,Friends,8.85-19.83,friends_s02e11_seg02_clip_15,Ross 1321,Ross jokingly punches Chandler in the gut.,Ross cups Chandler's cheeks in his hands.,Ross pats Chandler on the head.,Ross pats Chandler on the arm.,Ross squeezes Chandler's shoulders.,3,What does Ross do after telling Chandler he didn't have chance when standing by the elvator?,123360,Friends,42.2-47.09,friends_s08e05_seg02_clip_01,Ross pats Chandler on the arm. 1322,Castle hands Beckett and Serena each a copy of his latest book.,Castle hands Beckett and Serena each a scone.,Castle hands Beckett and Serena each a cup ,Castle hands Beckett and Serena each a file folder.,Castle hands Beckett and Serena each a cup of coffee.,4,What does Castle hand Serena and Beckett after interrupting their conversation?,123361,Castle,30.09-34.79,castle_s04e05_seg02_clip_26,Castle hands Beckett and Serena each a cup of coffee. 1323,A piece of paper,A coin,Files,A cup,A speaker,0,What does Rita give Beckett after she arrives?,123362,Castle,80.19-89.79,castle_s08e02_seg02_clip_13,A piece of paper 1324,Barbra played the guitar and wanted to be in a band.,Barbra designed clothes for dolls and wanted to be a fashion designer,Barbra drew constantly and wanted to be an artist.,Barbra danced and wanted to be a star on Broadway,Barbra wrote songs and wanted to be a singer.,3,What did Jason say Barbra did and dreamed about when she was a child?,123363,Castle,48.64-56.16,castle_s04e18_seg02_clip_18,Barbra danced and wanted to be a star on Broadway 1325,Books.,A Backstage magazine.,A Broadway Casting magazine.,A Theaterweek magazine.,A Playbill magazine.,2,What does Castle pick up from the table when explaining to Beckett how a video of him buying earrings occurred?,123364,Castle,8.55-10.35,castle_s05e05_seg02_clip_22,A Broadway Casting magazine. 1326,Submarine,Military ship,Coast Guard boat,Spaceship,Yacht,3,"What is the object the man refers to when using the word ""ship?""",123365,Castle,56.19-61.93,castle_s07e02_seg02_clip_08,Spaceship 1327,Michelle Olger,Kerry Washington,Odette Morton,Taylor Swift ,Her boss,2,Who does Castle say paid for Barbara's surgery when discussing it with Beckett?,123366,Castle,46.58-57.43,castle_s04e18_seg02_clip_16,Odette Morton 1328,Barney is sitting on the floor when he is talking to Honey,Barney is sitting on the bed when he is talking to Honey,Barney is in the back of a taxi when he is talking to Honey,Barney is at the doctor's when he is talking to Honey,Barney is in the magic store when he is talking to Honey,1,Where is Barney when he is talking to Honey about his father,123367,How I Met You Mother,10.76-23.56,met_s06e15_seg02_clip_14,Barney is sitting on the bed when he is talking to Honey 1329,Chandler hit his hand on the table. ,Chandler fell. ,Chandler's wedding ring fell off of his hand. ,Chandler sneezed. ,Chandler coughed. ,2,What happened when Chandler pointed to the spot Monica and Joey got married at?,123368,Friends,8.2-82.02,friends_s08e01_seg01_clip_00,Chandler's wedding ring fell off of his hand. 1330,"House says they did the biopsy, but Cameron lost the results. ",House says they don't have the equipment. ,House says there wasn't enough time for the biopsy. ,House says that he didn't find a bone marrow biopsy interesting. ,"House says that he wanted to do the biopsy, but was outvoted. ",2,"Why does House say that they didn't use bone marrow biopsy results, after being asked by Wilson?",123369,House M.D.,7.6-10.45,house_s02e17_seg02_clip_16,House says there wasn't enough time for the biopsy. 1331,Her shoes,Her wig.,Her jacket,Her donut,Her cup of water.,4,What did Joey take from Cecilla after the short man left?,123370,Friends,1.6-6.08,friends_s07e15_seg02_clip_10,Her cup of water. 1332,Secondary infection.,Allergic reaction.,Tertiary infection.,Auto immune response.,Flesh eating bacteria.,1,Why did Chase think Gabriel had a spot of necrosis on his wrist when he and Foreman discovered it while they were adding meds to his IV?,123371,House M.D.,69.08-73.69,house_s01e13_seg02_clip_10,Allergic reaction. 1333,kicks ryan out,screams,sits down,locks derek down,leaves,2,What does Ryan do when he tells Derek pitbull is dead?,123372,Castle,0-9.56,castle_s07e19_seg02_clip_07,sits down 1334,Ryan wants Mandy's roommate to tell him what Mandy ate for dinner before she left the house.,Ryan knows that Mandy and her roommate did not get along so Ryan believes he can determine if the roommate set Mandy up for being sold as a sex slave.,Ryan believes that Mandy's roommate is involved with Mandy's murder and he will determine if she's guilty. ,Ryan is trying to solve a kidnapping of Mandy and he believes Mandy's roommate could enlighten him on the relationship between Mandy and Hasim.,Ryan thinks that Mandy's roommate could tell him is Mandy had recently had an adortion. ,3,What does Ryan believe that after talking with Mandy's roommate can help him do?,123373,Castle,21.32-25.02,castle_s05e15_seg02_clip_05,Ryan is trying to solve a kidnapping of Mandy and he believes Mandy's roommate could enlighten him on the relationship between Mandy and Hasim. 1335,a sheet of paper,a rock,a bolder,a search warrant ,a cellphone swap documentation proof,0,what was joey holding in his hands before he reached the register?,123374,Friends,0-11.61,friends_s06e22_seg02_clip_03,a sheet of paper 1336,His new schedule,Lunch,Job Interview ,Next step for patient,His family,2,What does house ask Foreman about when they are discussing diagnosis?,123375,House M.D.,25.77-40.03,house_s03e23_seg02_clip_14,Job Interview 1337,Cuddy wanted House to come over to her place.,Cuddy wanted House to come over to a five star restaurant.,Cuddy wanted House to come over to a pizzeria.,Cuddy wanted House to come over to a seafood restaurant.,Cuddy wanted House to come over to a Chinese restaurant.,0,Where did Cuddy want House to go when she had dinner?,123376,House M.D.,47.34-49.68,house_s07e13_seg02_clip_26,Cuddy wanted House to come over to her place. 1338,Amanda slept with Ross.,Amanda slept with Billy Joel.,Amanda slept with Joey.,Amanda slept with Sam.,Amanda slept with the Beatles.,1,Who does Phoebe say Amanda slept with after she talks about Amanda calling her on her mobile?,123377,Friends,3.42-25.47,friends_s10e03_seg02_clip_02,Amanda slept with Billy Joel. 1339,Cindy told him he's ugly.,She dumped him.,Cindy told him she slept with Barney.,Cindy kissed Robin.,She kissed another girl.,4,Why is Ted shocked after approaching Cindy?,123378,How I Met You Mother,0-33.66,met_s06e01_seg02_clip_16,She kissed another girl. 1340,NAMASTE,BONJOUR,CIAO ,SALAAM,SALAAM ,0,What Hindi greeting did Penny use when leaving Raj's parents?,123379,The Big Bang Theory,39.07-42.97,s02e04_seg02_clip_15,NAMASTE 1341,B,B-,A,C,B+,1,What letter grade did Penny say she received when discussing her school paper?,123380,The Big Bang Theory,4.13-44.26,s06e06_seg02_clip_16,B- 1342,Tells her she should probably get a cab and go home,Tells her to leave,Tells her to clean the house,Tells her to do the laundry,Tells her to get some rest,4,What does Ross tell Rachel to do after he tells her she is an amazing daughter?,123381,Friends,0-6.43,friends_s10e13_seg02_clip_09,Tells her to get some rest 1343,Valentine's Day,Halloween,Christmas,Hannukah,Memorial Day,0,When was Barney celebrating when he was with Robin?,123382,How I Met You Mother,16.39-25.21,met_s06e16_seg02_clip_14,Valentine's Day 1344,She walks away.,She smacks him.,She kisses him.,She laughs.,She cries.,2,What does Dr. Cuddy do after she grabs House's face?,123383,House M.D.,43.25-48.42,house_s07e02_seg02_clip_03,She kisses him. 1345,puts food in her mouth,high fives a chef,takes a drink from a wine glass,laughs obnoxiously,rubs her hair,0,What does Phoebe do after saying she has only had six drinks?,123384,Friends,27.6-32.88,friends_s07e18_seg02_clip_05,puts food in her mouth 1346,Leonard places his lightsaber on the sofa.,Leonard places his lightsaber on the bed.,Leonard places his lightsaber on the kitchen counter.,Leonard places his lightsaber on the coffee table.,Leonard places his lightsaber on the computer desk.,0,Where does Leonard put his lightsaber when he realizes Sheldon has left the apartment?,123385,The Big Bang Theory,32.99-57.82,s01e02_seg02_clip_04,Leonard places his lightsaber on the sofa. 1347,The receptionist tells Leonard the office is closed.,The receptionist holds up a hand to Leonard.,The receptionist asks Leonard for his help with her puzzle.,The receptionist tells Leonard and Sheldon she is really the doctor.,The receptionist tells Leonard and Sheldon they cannot donate sperm.,1,What does the receptionist do when Leonard attempts to speak to her at the desk in the medical office?,123386,The Big Bang Theory,25.63-30.21,s01e01_seg01_clip_00,The receptionist holds up a hand to Leonard. 1348,Things to help sire a son,Things to help sire a daughter,Things to make sure he can preform longer,Things to help sire twins,Things to make sure Lily can get pregnant,0,What is in the box that Marshall finds when he goes into the bathroom?,123387,How I Met You Mother,13.21-20.11,met_s06e06_seg02_clip_10,Things to help sire a son 1349,The FBI invoked the Patriot Act and did a sneak and peak of her suspect's house without telling her.,The FBI put her suspect on the Top Ten Most Wanted list.,The FBI performed a faulty analysis of the bullets used in her case.,The FBI got tied up all week at an Indian reservation investigation.,The FBI put her suspect in Witness Protection.,4,What did Beckett say the FBI did before she asked Rita to look for information on her murder suspect?,123388,Castle,49.78-61.09,castle_s08e11_seg02_clip_14,The FBI put her suspect in Witness Protection. 1350,Hugged the doctor,Hugged Frank,Held Phoebe's hand,Hugged Phoebe,Hold Frank's hand,4,What did Alice physically do when she said that Phoebe was woman and not a gumball machine?,123389,Friends,23.5-31.33,friends_s04e12_seg02_clip_04,Hold Frank's hand 1351,His brother's.,His mother.,Melanie's.,His father,His sister's,0,What remains does Beckett tell Pete Bendon she found when she is speaking with him?,123390,Castle,2.27-15.41,castle_s04e06_seg02_clip_22,His brother's. 1352,Raj left the room,He was standing behind sheldon,He was in the library,He was in the kitchen,He was in a taxi cab,0,Where was Raj when Sheldon stopped meditating,123391,The Big Bang Theory,52.04-61.23,s03e18_seg02_clip_08,Raj left the room 1353,be irritated,remember her,be angry,feel used,sue her,1,What did Mrs. Latham say Leonard would do when he spent the night with her?,123392,The Big Bang Theory,47.04-58.08,s04e15_seg02_clip_13,remember her 1354,26,24,25,27,28,2,How old did Tag say he was freaked out about when he was talking to Rachel?,123393,Friends,0-4.13,friends_s07e14_seg02_clip_03,25 1355,Multiple amputations,Fractures,Crushed skull,Broken tibia,Displaced shoulder,0,What surgery did Sloan say he needs Kallie to assist him on when he goes into surgery?,123394,Grey's Anatomy,21.54-33.23,grey_s03e24_seg02_clip_12,Multiple amputations 1356,"Amy tells him he is not being hazed, she just needs the beakers washed. ",Amy tells him he is being hazed and congratulates him for picking up on it. ,Amy tells him he is totally right and she didn't realize that's what she was doing. ,Amy tells him he is totally unbelievable. ,Amy tells him he is totally lovable. ,0,How does Amy react after Sheldon accuses her of hazing him?,123395,The Big Bang Theory,23.33-28.64,s05e16_seg02_clip_07,"Amy tells him he is not being hazed, she just needs the beakers washed. " 1357,Sky was upset because Hayley missed picking her up from work.,Sky was upset because Hayley told her she would always be there for her.,"Sky was upset because Hayley told her she had to get clean, but seemed unable to get clean herself.",Sky was upset because Hayley didn't share the drugs she'd scored from Tony.,Sky was upset because Hayley wouldn't answer her calls.,2,Why was Sky upset when talking with Castle and Beckett about Hayley?,123396,Castle,14.56-35.5,castle_s02e07_seg02_clip_10,"Sky was upset because Hayley told her she had to get clean, but seemed unable to get clean herself." 1358,Four stacks of boxes.,Four buckets of paint.,Four stacks of buckets.,Three stacks of buckets.,Three buckets of paint.,2,What was behind Castle and Beckett when Luca was talking about living the good life?,123397,Castle,33.44-35.74,castle_s07e10_seg02_clip_22,Four stacks of buckets. 1359,To talk to Cuddy in her hospital office,To meet with Wilson in the break room,Outside to have a smoke with foreman,Into surgery with Chase and Cameron ,The patient's room with Cameron ,0,Where does House go before making a joke about prison tats?,123398,House M.D.,0-15.2,house_s03e11_seg02_clip_02,To talk to Cuddy in her hospital office 1360,He pointed at his glands.,He pointed at Joey.,He pointed at Phoebe.,He pointed at Chandler.,He pointed at Monica.,4,What did Ross do when he said about his swollen glands?,123399,Friends,53.67-56.57,friends_s03e09_seg02_clip_10,He pointed at Monica. 1361,Four weeks ago.,Three weeks ago.,Two weeks ago.,Six weeks ago.,Five weeks ago.,2,How long ago did the Super tell Esposito that Ted Rollins rented the apartment when he was walking to the computer equipment? ,123400,Castle,10.64-18.04,castle_s06e12_seg02_clip_19,Two weeks ago. 1362,Joey is going to the movies.,Joey is going to have dinner with Rachel.,Joey wants to save his charm for tomorrow.,Joey is mad at Monica and Chandler.,Joey has to go to an audition for a Broadway play.,2,Why is Joey leaving the apartment after Monica gives him some advice?,123401,Friends,5.19-25.02,friends_s06e21_seg02_clip_12,Joey wants to save his charm for tomorrow. 1363,He asks O'Malley to reschedule her surgery to tomorrow.,He asks O'Malley to order a new prescription for Ms. Seabury.,He asks O'Malley to reschedule Ms. Seabury's surgery to next week.,He asks O'Malley to check on another patient.,He asks O'Malley to help him with a surgery.,0,What does Chief ask O'Malley to do before asking him to get Ms. Seabury a psych consult?,123402,Grey's Anatomy,78.28-82.38,grey_s03e02_seg02_clip_02,He asks O'Malley to reschedule her surgery to tomorrow. 1364,She just tells her to shut up. ,She will be fired if she keeps complaining. ,She has zero control over anything so she should just stop stressing., She tells her that no one really cares how she feels. ,The decision has been made and she expects Beckett to comply with it. ,4,How does Gates stop Becket from complaining after Gates tells her that City Hall made the call to allow the camera crew?,123403,Castle,0-21.8,castle_s05e07_seg02_clip_04,The decision has been made and she expects Beckett to comply with it. 1365,The bathroom.,The floor.,The couch.,A spa.,Their bed.,4,Where are Monica and Chandler when they are exchanging massages?,123404,Friends,13.76-27.26,friends_s05e13_seg01_clip_00,Their bed. 1366,He steps out on the balcony. ,He got back inside. ,He leaves the apartment. ,He goes to the bathroom. ,He goes home. ,1,Where does Joey go after he embarrasses Rachel?,123405,Friends,0-11.3,friends_s07e08_seg02_clip_11,He got back inside. 1367,Of course I have!,Yea why would I? it's my home.,I'm pretty sure Rachel lost it.,"Oh, I know Mom has one.",Monica now is not the time.,1,What is Ross's response when Monica says he's never given them a key to his place?,123406,Friends,19.85-26.98,friends_s08e11_seg02_clip_15,Yea why would I? it's my home. 1368,Sat on the couch,Grabbed her purse,Kissed Tag,Slapped Ross in the face,Turned on the TV,3,What did Rachel do before Chandler and Joey came through the door?,123407,Friends,16.83-26.69,friends_s04e01_seg02_clip_18,Slapped Ross in the face 1369,Aquaman,Batman,Spiderman,Superman,The Flash,4,What superhero is on Sheldon's shirt when he is talking with the guys,123408,The Big Bang Theory,12.59-29.18,s03e19_seg02_clip_00,The Flash 1370,It was really uncomfortable and itchy.,He was acting mad. ,He thought it was funny.,He really didn't think he had lice.,He was acting like a crazy person. ,0,How was Marshall acting after he realized that he had lice?,123409,How I Met You Mother,0-10.57,met_s03e20_seg02_clip_07,It was really uncomfortable and itchy. 1371,Joey's bedroom,Her bedroom.,The kitchen.,The living room.,The bathroom.,4,Where did Rachel say they would have hair and makeup after she said this is bridesmaid central? ,123410,Friends,20.27-26.68,friends_s10e12_seg02_clip_10,The bathroom. 1372,A clock,A giant portrait of a boxer,A window into a room with an indoor pool,A poster depicting an attacker,A set of black curtains,0,What is on the wall behind Ross's right shoulder when he's talking to the instructor?,123411,Friends,20.94-28.66,friends_s06e17_seg02_clip_16,A clock 1373,They are discussing Revenge of the Nerds. ,They are discussing It. ,They are discussing The Flash. ,They are discussing Iron Man. ,They are discussing Indiana Jones. ,4,What movie are Amy and Sheldon discussing when they are in the kitchen?,123412,The Big Bang Theory,0.26-29.85,s07e04_seg01_clip_01,They are discussing Indiana Jones. 1374,A swing band.,A 80's pop band.,A country western band.,A 50's doo wop band.,A string quartet.,0,What kind of band did Monica say she was not going to be able to have when they talk about not having enough money for the wedding?,123413,Friends,24.71-29.59,friends_s07e02_seg02_clip_12,A swing band. 1375,That he did nothing.,That he crashed it.,That he asked for help.,That he read the manual.,A front end alignment from 62 million miles away.,4,What did Howard say he did after the Mars Rover started pulling to the left?,123414,The Big Bang Theory,0-9.4,s01e14_seg02_clip_01,A front end alignment from 62 million miles away. 1376,To go get really drunk,To get a bite ,To go play pool,To the movie theaters,To the gym to work out,0,Where did Ryan suggest they went before Esposito responded Damn straight?,123415,Castle,44.18-54.26,castle_s08e16_seg02_clip_26,To go get really drunk 1377,At the desk,The middle of the room,In front of the window,In the kitchen,On the Couch,1,Where does Raj stand when he plays the message on his phone?,123416,The Big Bang Theory,44.82-50.58,s01e08_seg02_clip_00,The middle of the room 1378,on the 3rd floor,on the 4th floor,on the 2-1/2 floor,on the 2nd floor,on the 5th floor,0,What floor does the fire escape end when Penny is explaining her frustration,123417,The Big Bang Theory,0-18.31,s01e14_seg02_clip_06,on the 3rd floor 1379,Bernadette dances to music.,Bernadette plays chess.,Bernadette lifts her head up.,Bernadette runs out the door.,Bernadette hugs Howard.,2,What does Bernadette do before Howard asks is that the Hot Tub?,123418,The Big Bang Theory,19.21-22.21,s10e05_seg02_clip_05,Bernadette lifts her head up. 1380,Handed him a file,Gave him a hug,Hit him on the arm,Kissed him on the cheek,Shook his hand,2,What did Courtney do to Castle right before she walked away from him and Hayley?,123419,Castle,3.55-11.08,castle_s08e14_seg02_clip_07,Hit him on the arm 1381,he rolled his eyes,He starting cry ,he turns the other way ,Hee-hee-hee!,he gave him the fist.,3,What did Raj do when Sheldon is walking passed?,123420,The Big Bang Theory,0-40.31,s01e13_seg02_clip_06,Hee-hee-hee! 1382,Chandler realized he was chewing someone else's gum,Ross realized he was chewing someone else's gum,Joey realized he was chewing someone else's gum,Monica realized he was chewing someone else's gum,Rachel realized he was chewing someone else's gum,0,Who realized they were chewing someone else's gum before the lady help them,123421,Friends,0-9.44,friends_s01e07_seg02_clip_18,Chandler realized he was chewing someone else's gum 1383,Ripped it up,Crumpled it up,Put it on the bureau,Held it close to her heart,Looked at it intensely,0,What did the woman do with the piece of paper before she shut the door?,123422,House M.D.,10.7-19.54,house_s07e20_seg02_clip_17,Ripped it up 1384,Ross told her it wasn't the time for it.,Ross accepted it graciously.,Ross refused it.,Ross told her Monica would probably do better with the gift.,Ross told her he might accept it right before he and Rachel got married.,2,What was Ross' initial response when his mother offered him the gift?,123423,Friends,0.89-38.37,friends_s08e23-24_seg02_clip_05,Ross refused it. 1385,He just laughs.,"He says ""she hates it.""",He shrugs.,"He says I don't know, she didn't say.","He says ""she loves it.""",4,what does howard respond after bernadette asks about his mom?,123424,The Big Bang Theory,12.27-14.11,s08e15_seg02_clip_00,"He says ""she loves it.""" 1386,The New Year,Christmas,Easter,Halloween,Memorial Day,1,What season was the staff celebrating when they were downstairs in the lobby?,123425,House M.D.,80.75-88.25,house_s04e10_seg02_clip_22,Christmas 1387,At a mall,Inside,In an elevator,In a store,Outside,4,Where is Beckett when she asks about Tyson's mom?,123426,Castle,0-6.83,castle_s07e14_seg02_clip_20,Outside 1388,They are playing a drinking game. ,They are playing a board game. ,They are playing a card game. ,They are playing hide and seek. ,They are playing tag. ,0,What kind of game are Amy and Penny playing when they are in Penny's apartment?,123427,The Big Bang Theory,0.53-9.54,s05e19_seg02_clip_11,They are playing a drinking game. 1389,A book,A pen,A jacket,A cup,A gun,4,What did Becket have in her hand after Acosta threw something at her?,123428,Castle,4.52-10.54,castle_s08e08_seg02_clip_12,A gun 1390,The color dress Penny has on is green,The color dress Penny has on is blue,The color dress Penny has on is red,The color dress Penny has on is pink,The color dress Penny has on is purple,2,What color dress does Penny have on after she comes out the dressing room,123429,The Big Bang Theory,44.64-53.38,s05e08_seg02_clip_16,The color dress Penny has on is red 1391,His finger prints registered.,He had blood on his hand.,His hand was glowing.,The machine started beeping.,The machine started flashing.,2,Why did Mr. Winters say he could explain after he put his hand on the device? ,123430,Castle,6.07-29.55,castle_s05e06_seg02_clip_23,His hand was glowing. 1392,Drinking beers.,Dancing. ,Hugging and kissing. ,Doing yoga. ,Doing hand stands. ,2,What are Penny and Leonard doing when they are standing near the door?,123431,The Big Bang Theory,2.4-8.7,s03e01_seg02_clip_03,Hugging and kissing. 1393,He heard breaking glass.,He heard the gunshots.,He heard the murderer's car pull up.,He heard screams coming from the Master Bedroom.,He heard the shower running.,4,What did Easley say he heard when he told Beckett and Castle that he had a change of heart?,123432,Castle,39.66-53.77,castle_s03e14_seg02_clip_21,He heard the shower running. 1394,Her life in general,Her lunch,Her breakfast,Her date,Her sister,3,What does Ross ask Phoebe about after he puts down the corn dogs?,123433,Friends,8.24-14.66,friends_s09e04_seg02_clip_03,Her date 1395,Kissed, Touched their glasses together,Hugged,Sat down,Busted out laughing,1,What did Castle and Beckett do before they took a drink from their glasses?,123434,Castle,71.54-80.66,castle_s08e10_seg02_clip_26, Touched their glasses together 1396,House crawls into the rubble,House sit down to wait,House starts praying,House starts crying,House starts moving rubble ,0,What does House do after all the first responders leave the rubble,123435,House M.D.,73.96-83.72,house_s06e21_seg02_clip_04,House crawls into the rubble 1397,nods yes,shakes her head no,blows her nose,runs out of the room,grabs Alfred's hand,0,What does the dark haired woman in the blue sweater do when Sorenson says they imagine their daughter safe and sound?,123436,Castle,4.08-12.7,castle_s01e09_seg02_clip_05,nods yes 1398,Because Monica is there.,Because Chandler is there.,Because Larry is there.,Because Joey is there.,Because Phoebe is there.,3,Why is Ross excited when he opens the door of his hotel room?,123437,Friends,31.87-38.07,friends_s05e23-24_seg02_clip_35,Because Joey is there. 1399,barber,accountant,farmer,banker,insurance salesman,1,what job did joey think chandler had after he said he was going to change the price?,123438,Friends,34.52-41.42,friends_s04e02_seg02_clip_03,accountant 1400,Fourteen,Five,Seven,Three,Eleven,4,How many scans of the brain are shown on Chase's screen after Foreman asks him how would he describe him to someone else?,123439,House M.D.,38.05-47.57,house_s02e01_seg02_clip_18,Eleven 1401,Waits for her at the door.,Turns on the TV,Changes his clothes.,Brushes his teeth.,Turns on music and Light Sabers,4,What does Howard turn on after Bernadette leaves to brush her teeth?,123440,The Big Bang Theory,59.16-68.88,s05e05_seg02_clip_07,Turns on music and Light Sabers 1402,Sheldon watches television shows about travel.,Sheldon goes for a walk.,Sheldon uses his imagination.,Sheldon goes to the gym.,Sheldon visits a friend.,2,What does Sheldon do when he feels stifled and wants a change of scenery?,123441,The Big Bang Theory,41.13-47.34,s03e12_seg02_clip_01,Sheldon uses his imagination. 1403,Becket stands on the road.,Becket stands close to a police car.,Becket stands next a truck.,Becket stands next to a car.,Becket stands to a bike.,2,Where is Becket when talking to the cops?,123442,Castle,60.77-64.82,castle_s01e05_seg02_clip_08,Becket stands next a truck. 1404,Joey liked taking care of Rachel's baby.,Joey liked having Rachel do his house chores.,Joey admitted he loved living with her.,"Joey liked having their friend hangouts at his place, where Rachel wouldn't have to commute with her baby.",Joey admitted he loved Rachel.,2,Why did Joey want Rachel to stay when she said she was leaving?,123443,Friends,7.82-36.98,friends_s08e07_seg02_clip_12,Joey admitted he loved living with her. 1405,Izzy is speaking to the man that is in the chair writing in a notebook,Cristina is speaking to the man that is in the chair writing in a notebook,George is speaking to the man that is in the chair writing in a notebook,Alex is speaking to the man that is in the chair writing in a notebook,Meredith is speaking to the man that is in the chair writing in a notebook,0,Who is speaking to the man when he is balled up in the chair writing in a notebook,123444,Grey's Anatomy,6.84-16.73,grey_s01e09_seg02_clip_13,Izzy is speaking to the man that is in the chair writing in a notebook 1406,Penny cheered and raised her cup to Amy.,Penny ran out of the room.,Penny did her toes.,Penny booked a vacation.,Penny lay down.,0,What did Penny do when Amy told her she got her upgraded?,123445,The Big Bang Theory,6.38-12.47,s04e13_seg02_clip_01,Penny cheered and raised her cup to Amy. 1407,he wanted to play an old cassette tape,he wanted to get warm,he was lost,he wanted to see them,he wanted to sleep,0,why is Castle suggesting the guy broke into the law offices after he was discovered?,123446,Castle,2.24-89.59,castle_s06e21_seg02_clip_21,he wanted to play an old cassette tape 1408,Robin told Simon that he shouldn't be this excited. ,Robin told Simon that he should perform more music. ,Robin told Simon that he needs to perform music full-time. ,Robin exclaimed that she loves seeing Simon be so happy. ,Nothing; she hugged him. ,3,"What did Robin tell Simon after he commented that he ""...can't always feel this alive?""",123447,How I Met You Mother,51.22-59.56,met_s03e16_seg02_clip_09,Robin exclaimed that she loves seeing Simon be so happy. 1409,Christmas,Masters' first year of medical school,Last month,Masters' birthday,Masters' freshman year of college,4,When does Masters say the last time she was on a boat was when talking to Kendall?,123448,House M.D.,8.06-15.22,house_s07e19_seg02_clip_02,Masters' freshman year of college 1410,10:45 PM,12:00 AM,10:00 PM,09:00 PM,11:00 PM,4,What is the timestamp on the video before Richie was killed?,123449,Castle,11.36-15.45,castle_s07e19_seg02_clip_06,11:00 PM 1411,The Cort-stim test will tell how the liver is working.,The Cort-stim test will tell how the kidneys are working.,The Cort-stim test will tell how the lungs are working.,The Cort-stim test will tell how the heart is working,The Cort-stim test will tell how the adrenal and pituitary glands are working properly.,4,What does Chase say the Cort-stim test will tell before Mindy complains about the doctors not knowing what is wrong?,123450,House M.D.,23.19-48.69,house_s01e03_seg02_clip_01,The Cort-stim test will tell how the adrenal and pituitary glands are working properly. 1412,Jesse said he met Mandy when her friend came in for a tattoo.,Jesse said Mandy came in for ink and wanted a whole lot more than a tattoo. ,Jesse said he met Mandy when she was crying at the bar over some other guy.,Jesse said he met Mandy when she picked him up while walking down the street.,Jesse said he met Mandy through their mutual drug dealer.,1,How did Jesse say he and Mandy hook up when asked by Beckett how he met the superstar?,123451,Castle,8.46-13.35,castle_s06e13_seg02_clip_04,Jesse said Mandy came in for ink and wanted a whole lot more than a tattoo. 1413,Sad,Unconcerned,Hungry,Joyful,Thoughtful,4,How does House react when Fernando tells House that the fire skipped House's pipes?,123452,House M.D.,75.72-88.09,house_s05e12_seg02_clip_20,Thoughtful 1414,Top Right,A few inches from center,Bottom Left,He missed the dartboard,Center,1,Where did the dart hit both times when Burke threw it? ,123453,Grey's Anatomy,3.76-12.23,grey_s02e25_seg02_clip_00,A few inches from center 1415,Red,Blue,Brown,Blue,White,2,What color is Beckett's coat when she talks to Castle at his house about finding her mother's killer?,123454,Castle,15.01-22.74,castle_s02e13_seg02_clip_17,Brown 1416,Put them in boxes,Put them in Joey's pants,Give them to Monica,Throw them out,Put them on the bed,1,What does Ross want to do with styrofoam peanuts after he finds them,123455,Friends,19.07-37.85,friends_s10e16_seg02_clip_02,Put them in Joey's pants 1417,She wanted Dr. Green,She did not want to see him,She did not want to run it by Dr. Burke herself,She did not want Dr. Burke to give her any additional responsibilities before leaving,She wanted Cristina to stay,2,Why is Izzie upset after Dr. Burke approaches her?,123456,Grey's Anatomy,5.4-14.85,grey_s02e04_seg02_clip_12,She did not want to run it by Dr. Burke herself 1418,Phoebe is filming at the party before walking away,Chandler is filming at the party before walking away,Joey is filming at the party before walking away,Monica is filming at the party before walking away,Ross is filming at the party before walking away,4,Who is filming at the party before they stop and walk away,123457,Friends,46.92-56.53,friends_s10e04_seg02_clip_07,Ross is filming at the party before walking away 1419,Six years. ,Two years. ,Six months. ,Twelve years. ,Eleven years. ,4,How long did House say the patient's wife had known him when Foreman asked how long the patient has been suffering? ,123458,House M.D.,66.33-71.97,house_s04e13_seg02_clip_01,Eleven years. 1420,Took a nap,Made a sandwich,Got in his car,Gave a high five,Drank a beer,3,What did Marshall do after the Neighbor said they're kissing?,123459,How I Met You Mother,66.03-71.7,met_s06e15_seg02_clip_18,Gave a high five 1421,That she would rather spend her life close to the birds than waste it wishing she had wings. ,That hunting turkeys was the most fun she ever had. ,She says that she ate pigeon one in Africa and it was delicious. ,She tells 13 that she is worried about her parrot being alone while she is in the hospital. ,She says that she is terrified of birds. ,0,What does Lou say about birds when she and 13 are talking? ,123460,House M.D.,0-27.15,house_s05e01_seg02_clip_18,That she would rather spend her life close to the birds than waste it wishing she had wings. 1422,Grabbed the paper back,left,yelled,laughed,cried,0,What did Sheldon do after he stopped talking?,123461,The Big Bang Theory,59.34-62.8,s03e16_seg02_clip_04,Grabbed the paper back 1423,The bald man is upset because they only treat rich patients.,The bald man is upset about the costs and the number of patients they treat.,The bald man is upset because the department rejects patients.,The bald man is upset because the department wouldn't help him.,The bald man is upset because the department killed his wife.,1,Why is the bald man upset about the Department of Diagnostic Medicine when he enters the room?,123462,House M.D.,8.6-61.94,house_s01e14_seg02_clip_15,The bald man is upset about the costs and the number of patients they treat. 1424,He hasn't seen Penny in a long time.,A session of self-criticism and repentance.,He is having a serious discussion with Penny.,He is having dinner with Penny.,He doesn't want to be around Sheldon.,1,What is Leonard's given reasoning when Leonard asks Sheldon to leave him alone with Penny?,123463,The Big Bang Theory,36.01-41.42,s03e01_seg02_clip_03,A session of self-criticism and repentance. 1425,because she told him she slept with George,because she thinks she is pregnant,because she wants to quit medicine,because she wants him to leave the hospital,because she wants to move out of town,0,Why is nervous when she talking to Derek in the scrub room,123464,Grey's Anatomy,7.23-18.29,grey_s02e20_seg02_clip_23,because she told him she slept with George 1426,Monica.,Joey.,Phoebe.,Ross.,Gandalf.,3,Who does Chandler call out after opening the door?,123465,Friends,37.5-50.74,friends_s04e09_seg02_clip_00,Ross. 1427,Weber ignores House,Weber leaves the room,Weber sends securtiy to take House out,Weber walks up to House ,Weber punches House,3,What does Weber do after House starts to accuse him about his studies while in the audience?,123466,House M.D.,30.89-37.86,house_s02e12_seg02_clip_09,Weber walks up to House 1428,grab some lunch,File his taxes,Prepare to die.,Work on his form,Fix his TV after practice,2,"What does ""Inigo Montoya"" tell Raj to do when they're fencing?",123467,The Big Bang Theory,15.61-25.81,s09e05_seg02_clip_07,Prepare to die. 1429,blue,white,Red,grey,black,2,"What color is the shirt Chandler is wearing when he say's ""What do you...""?",123468,Friends,0-10,friends_s04e05_seg02_clip_17,Red 1430,braces,a computer,an x-ray machine,her hands,ice packs,3,What is on Dr. Grey's knees when she tells Ellis she does not want the surgery?,123469,Grey's Anatomy,79.75-89.43,grey_s03e14_seg02_clip_14,her hands 1431,A patient getting gifts,A kid opening presents,A game of hide and seek,A pinata being broken,A small birthday party,4,What is House watching from a distance when he has a new insight?,123470,House M.D.,0-17.87,house_s08e02_seg02_clip_23,A small birthday party 1432,He asked how Marshall managed to get lice. ,"He said it was okay, because his kids gave him lice once.",He questioned whether Marshall washed his hair enough.,He said to get out of his office and said everyone needed to leave the building. ,He thought it was a joke. ,3,How did the man react after Marshall yelled that he had lice?,123471,How I Met You Mother,39.57-57.69,met_s03e20_seg02_clip_07,He said to get out of his office and said everyone needed to leave the building. 1433,Who are you?,What's wrong with me?,What's your name?,Do you have a boyfriend?,Where's the nurse?,3,What does Ben keep repeating after Cristina starts examining him?,123472,Grey's Anatomy,50.16-58.9,grey_s03e02_seg02_clip_16,Do you have a boyfriend? 1434,Chandler sat on a bean bag.,Chandler sat on a box.,Chandler sat on a stool,Chandler sat on a chair.,Chandler sat on a pillow,3,What did Chandler sit on before asking Rachel and Ross if they just know this stuff?,123473,Friends,45.41-52.3,friends_s03e03_seg02_clip_04,Chandler sat on a chair. 1435,Joey liked the new appliances in the kitchen,Joey liked the balcony,Joey liked the bathroom mirrors,Joey liked the sound system,Joey liked the big screen TV,2,What did Joey liked about the apartment when he was talking to Chandler,123474,Friends,54.02-60.03,friends_s02e16_seg02_clip_03,Joey liked the bathroom mirrors 1436,5 Spring Street,15 Morton Street,5 Moron Street,5 Morton Street,15 Bourbon Street,3,Where did Phoebe said she lives after picking up the phone,123475,Friends,0-29.16,friends_s07e15_seg02_clip_08,5 Morton Street 1437,Castle,Coonan,Beckett,Rathborne,Her mother,3,What turns out to be the cover for Coonan after Beckett confronts him,123476,Castle,0-58.24,castle_s02e13_seg02_clip_24,Rathborne 1438,He is with a patient ,He is in his room,He is on the elevator,He is at the bar,He is in a hot tub,3,Where is Alex when Izzie sits down and joins him?,123477,Grey's Anatomy,30.1-38.95,grey_s03e08_seg02_clip_25,He is at the bar 1439,Pink,White,Blue,Black,Brown,0,What color scrubs was foreman wearing when he was walking in the hallway?,123478,House M.D.,2.35-7.05,house_s05e02_seg02_clip_01,Pink 1440,Yelled at her,Looked angry,Looked confused,Gave her a kiss on the cheek,Looked happy,2,What was Barney's reaction when Abby told him she did not want to steal his attention away from America?,123479,How I Met You Mother,12.88-80.5,met_s03e19_seg02_clip_18,Looked confused 1441,Monica,Phoebe,Rachel,Ross,no one,1,Who is sitting between Chandler and Joey when they are on the couch?,123480,Friends,8.38-14.05,friends_s02e11_seg02_clip_05,Phoebe 1442,salt water,rain,humidity,the wind,she forgot her shampoo,2,Why was Monica's hair so curly and out of control when she was in Barbados?,123481,Friends,43.14-56.02,friends_s09e23-24_seg02_clip_15,humidity 1443,Middle-aged woman with greying short hair and very tall.,"A teenager, dressed in jeans and carrying a skateboard.",An older man with glasses and a ball cap.,"A soldier in uniform, average height and weight.","Well-dressed, early 40s, blonde hair",4,How did the building superintendent describe the friend when Castle asked what the person looked like?,123482,Castle,11.25-14.85,castle_s02e05_seg02_clip_20,"Well-dressed, early 40s, blonde hair" 1444,"Nadir tripped Beckett, Ryan and Esposito.","Nadir shot Beckett, Ryan and Esposito in the leg.","Nadir closed the gate behind him which stopped Beckett, Ryan and Esposito.","Nadir took a hostage which forced Beckett, Ryan and Esposito to stop.",Nadir tossed a smoke bomb and managed to elude capture.,2,"How did Nadir manage to lose Beckett, Ryan and Esposito when they were chasing him?",123483,Castle,26.9-33.07,castle_s01e07_seg02_clip_25,"Nadir closed the gate behind him which stopped Beckett, Ryan and Esposito." 1445,Barney,Ted,Robin,Kevin,Miley,1,Who leaves a voicemail for Lily when she's sitting on the couch listening to her answering machine?,123484,How I Met You Mother,1.8-33.01,met_s06e24_seg02_clip_07,Ted 1446,At a luncheon.,On the escalator.,By a Christmas tree.,In line for a movie.,In the elevator.,4,Where are House and Foreman when they are standing next to each other?,123485,House M.D.,3.36-10.56,house_s06e11_seg02_clip_09,In the elevator. 1447,Nick,Kevin,Shane,Anderson,Foreman,3,Who is Dugan talking to when discussing a political ad in his hospital bed?,123486,House M.D.,40.81-60.02,house_s07e06_seg02_clip_10,Anderson 1448,Penny,Howard,Leonard,Sheldon,Bernadette ,1,Who raised their hand after Raj asked if anyone had any questions? ,123487,The Big Bang Theory,32.72-39.02,s07e03_seg02_clip_01,Howard 1449,Scream,Cry,Run away,Ask for forgiveness,Pay him the money she owed him,1,What does Morris say Mrs Westlake did after she apologized?,123488,Castle,54.66-69.95,castle_s03e15_seg02_clip_04,Cry 1450,Monica removes the marshmallow and sticks it up Rachel's nose.,Monica exhales through her nose and blows the marshmallow onto the table.,Monica exhales and blows the marshmallow into Rachel's face.,Monica rolls her eyes and leaves the marshmallow there.,Rachel responds by stuffing 2 marshmallows into Rachel's nose.,1,What does Monica do after Rachel places the marshmallow in her nose?,123489,Friends,23.99-31.17,friends_s03e09_seg01_clip_00,Monica exhales through her nose and blows the marshmallow onto the table. 1451,friends,Police,Lollipop Guild,parents,strangers,2,What did Raj call Leonard and himself when they checked on Sheldon?,123490,The Big Bang Theory,44.12-57.62,s03e09_seg02_clip_08,Lollipop Guild 1452,To get another round of drinks.,To the bathroom.,To get a taxi.,To buy nachos.,To his home.,0,Where was Carl going when he told the gang they had to tell their favorite Mark stories when he returned.,123491,How I Met You Mother,32.83-42.45,met_s02e14_seg02_clip_02,To get another round of drinks. 1453,She opened the closet doors.,She brushed her hair.,She used the phone.,She picked up a pencil.,She ate an apple.,0,What did Alexis do after she walked away from Castle?,123492,Castle,7.33-9.16,castle_s03e08_seg02_clip_10,She opened the closet doors. 1454,Four.,Two.,One.,Five.,Three.,4,How many tallies did God have behind Chase when the white board was shown.,123493,House M.D.,11.7-20.26,house_s02e19_seg02_clip_15,Three. 1455,House says it wouldn't have been as much fun asking politely. ,House says that the girl being operated on would have died if he hadn't blackmailed Ayersman.,"House says Ayersman did it to him, so it was payback. ","House thinks Ayersman's wife is a good hearted person, and is jealous. ",House thought it would be anecdotal at mixers and things. ,1,What is House's defense when Stacy asks why he was blackmailing Ayersman?,123494,House M.D.,27.6-36.94,house_s02e08_seg02_clip_15,House says that the girl being operated on would have died if he hadn't blackmailed Ayersman. 1456,A guitar,A gun,An hammer,A bucket,A jacket,0,What was the lady with Ross holding when Ross was sitting next to her?,123495,Friends,3.66-6.71,friends_s02e14_seg02_clip_07,A guitar 1457,Equations,A drawing of a cat,An inspirational Quote,His name,Bus Schedule,0,What is on the white board when Sheldon is sitting at his desk?,123496,The Big Bang Theory,42.9-44.38,s06e14_seg02_clip_10,Equations 1458,hotel room,a copy machine,stranger's bed,conference table,dinner table,1,Where did Monica say Chandler was having sex when he was in Tulsa?,123497,Friends,17.51-27.47,friends_s09e10_seg02_clip_18,a copy machine 1459,House thanked Sam for dropping in.,House said don't let the screen door hit you.,House told Sam to hurry back.,House told Sam to drive safely.,House told Sam to have a nice day.,4,What did House say to Sam when she was walking out the door?,123498,House M.D.,50.3-53.13,house_s06e18_seg02_clip_00,House told Sam to have a nice day. 1460,they are wearing metal hats,they are wearing helmets,they are wearing astronaut's uniforms,they aren't wearing anything,they are wearing goggles,2,What are Castle and Beckett wearing when they are together in the simulator?,123499,Castle,2.73-11.85,castle_s07e16_seg02_clip_24,they are wearing astronaut's uniforms 1461,Tom Hanks,Castle,Tim Allen,bob vila,Tom Cruise ,1,Who was on the cover of the magazine that Castle was reading when Ryan and Esposito walked up? ,123500,Castle,71.78-91.44,castle_s02e03_seg02_clip_08,Castle 1462,Easley stated that Hixton had bought 25 Dickens' First Editions early on.,Easley stated that Hixton had bought a $5 million dollar yacht with his winnings.,Easley stated that Hixton had bought a Maserati and wrecked it the next day.,Easley stated that Hixton had bought $20 million in gold boullion and had a vault for it built.,Easley stated that Hixton had bought $40 million worth of Bitcoins.,0,How did Easley respond after Beckett voiced her theory on how Hixton was murdered?,123501,Castle,10.58-31.29,castle_s03e14_seg02_clip_21,Easley stated that Hixton had bought 25 Dickens' First Editions early on. 1463,Cried,Spoke a foreign language,Laughed,Cursed,Spoke backwards,1,What did Ava do when Derek was operating on her brain?,123502,Grey's Anatomy,74.53-83.85,grey_s03e23_seg02_clip_06,Spoke a foreign language 1464,He thinks dinosaurs are incredibly important.,He thinks her work is inferior.,She doesn't respect his discoveries.,She insulted Professor Pitain.,He trusted her with a secret.,2,Why is Ross insulted by Rachel's mocking after his surprise?,123503,Friends,25.12-30.39,friends_s03e14_seg02_clip_15,She doesn't respect his discoveries. 1465,A monkey,A person,An alligator,A leopard,A child,0,What is Amy referring to when she is in the lab discussing a test subject,123504,The Big Bang Theory,11.2-19.89,s07e05_seg02_clip_08,A monkey 1466,He is waiting to hear if he got the job,He is waiting for his test results from the doctor,he is waiting to hear if the offer he placed on the house was accepted,He's afraid it could be Janice,He's afraid it could be his father ,0,Why is Chandler so anxious before they play the messages?,123505,Friends,15.4-57.98,friends_s09e18_seg02_clip_11,He is waiting to hear if he got the job 1467,Leonard is walking.,Leonard is drinking.,Leonard is eating.,Leonard is pouring milk in a glass.,Leonard exist the restaurant.,2,What is doing Leonard when Sheldon is talking?,123506,The Big Bang Theory,14.03-63.77,s01e12_seg01_clip_00,Leonard is eating. 1468,because she had never been in a long term relationship,because she didn't want to seem desperate ,because she loved that name ,because she wanted to name her son Jr,because she like foreign names,0,Why did Phoebe said Ross made up her boyfriend when she is talking to Mike,123507,Friends,0-9.46,friends_s09e04_seg02_clip_18,because she had never been in a long term relationship 1469,Back,Leg,Arm,Neck,Ankle,2,Where was the tattoo located before Roman gives a specific description of it?,123508,Castle,2.7-4.05,castle_s06e10_seg02_clip_04,Arm 1470,He gave Foreman a hug.,He told him he wasnt gonna tell.,He punched Foreman,He pulled out a knife.,He told Foreman to leave.,0,What was Marcus response when fore man asked him if he had been mandated to stay there?,123509,House M.D.,34.53-54.74,house_s06e12_seg02_clip_23,He gave Foreman a hug. 1471,He stepped back to watch.,He kept operating.,He took off his mask.,He left the operating table.,"He started to leave, then came back.",3,What did Derek do after he said to page him if they needed him?,123510,Grey's Anatomy,23.47-28.99,grey_s02e06_seg02_clip_04,He left the operating table. 1472,perfume,trash,food,new comic books,nothing,3,What did Sheldon smell when he was at the comic book store?,123511,The Big Bang Theory,0-22.64,s02e22_seg01_clip_00,new comic books 1473,For giving him the day off.,For the ride to work,For understanding about Lily. ,For not being a jerk about him being late.,For the tip on the stock market,2,What did Ted thank Mr. Druthers for after he approached him?,123512,How I Met You Mother,36.99-42.32,met_s02e06_seg02_clip_15,For understanding about Lily. 1474,Because Eileen is Lilly's middle name.,"Because Marshall uses Eileen as a play on the words ""I lean"" because the apartment is slanted.",Because Eileen is Marshall's mother's name.,Because Eileen is Marshall's favorite name.,Because Lilly had always wanted a daughter named Eileen.,1,Why does Marshall say they'll have to call their daughter Eileen when he is talking to Lilly?,123513,How I Met You Mother,11.52-20.97,met_s03e12_seg02_clip_11,"Because Marshall uses Eileen as a play on the words ""I lean"" because the apartment is slanted." 1475,Checked his phone,Read a book,Ran to the vending machine,Stretched his arms,Grabbed a napkin,0,What did Leonard do after sitting down?,123514,The Big Bang Theory,41.81-51.88,s07e07_seg02_clip_00,Checked his phone 1476,she cries,Nothing,"She says ""Who are you?""",she stands up,she folds her hands,2,What does Penney say after Howard says Hello fair Penney?,123515,The Big Bang Theory,0-65.59,s02e03_seg02_clip_16,"She says ""Who are you?""" 1477,eating,Sitting,Pointing,Sewing,Cleaning,2,What did Rachel do before Chandler said something wasn't true?,123516,Friends,26.24-32.11,friends_s05e02_seg02_clip_03,Pointing 1478,Green Lantern,Batman,Superman,Spiderman,Aquaman,1,Who did Sheldon tell Leonard that he could be when walking up the stairs?,123517,The Big Bang Theory,4.96-15.2,s02e01_seg02_clip_04,Batman 1479,He washed his hands.,He checked his watch.,He put his hand over his heart.,He looked at the monitor.,He took a pen from his pocket.,3,What did House do before Cuddy asked him why he's here?,123518,House M.D.,79.22-88.02,house_s04e01_seg02_clip_15,He looked at the monitor. 1480,"Yes, he had a son.",Not that I recall.,"Yes, he had a daughter.",Definitely not.,He talked about his nephew.,1,What does Hastings say when Castle asks him if Ward ever said anything about a child?,123519,Castle,58.97-65.27,castle_s06e05_seg02_clip_16,Not that I recall. 1481,Cristina is hiding.,Stuart is hiding.,Izzie is hiding.,Bailey is hiding.,Meredith is hiding.,4,Who is hiding behind the door when she is in the hospital?,123520,Grey's Anatomy,53.14-64.65,grey_s02e22_seg02_clip_20,Meredith is hiding. 1482,In the pool.,At home.,At the library.,On the operating table.,In a MRI machine.,4,Where was Addie when she said her head hurt?,123521,House M.D.,58.93-68.82,house_s03e22_seg02_clip_11,In a MRI machine. 1483,phone,paper,folder,bucket,picture,0,What did Ryan show Beckett after she was done talking?,123522,Castle,12.67-17.64,castle_s07e05_seg02_clip_02,phone 1484,On the tray to the left of the bed.,In a Bio-bag.,In his lab coat pocket.,On the tray to the right of the bed.,On the tray at the foot of the bed.,4,Where did Foreman put the jar after he showed Danny the bone fragments?,123523,House M.D.,20.61-24.73,house_s07e17_seg02_clip_09,On the tray at the foot of the bed. 1485,His friend,Ted,Lily,His mother,His priest,2,Who told Marshall that his father died when he was outside?,123524,How I Met You Mother,39.67-65.74,met_s06e13_seg02_clip_18,Lily 1486,House went to have lunch,House went to the lab,House went to go see Cuddy,House went to the meeting room,House went to go see his patient,4,Where did House go after Chase and Taub updated him about the patient and their heart rate?,123525,House M.D.,72.96-90.07,house_s06e12_seg02_clip_08,House went to go see his patient 1487,clothes,a cat,a dog,a huge box,shoes,3,What was Leonard carrying when he helped Alicia move in?,123526,The Big Bang Theory,39.25-51.64,s02e19_seg02_clip_03,a huge box 1488,Scrubbing the couch.,Fixing Sheldon's computer.,Moving the television.,Moving the couch.,Cleaning Sheldon's room.,0,What is Leonard doing before Penny asks Leonard if he thinks he will notice it?,123527,The Big Bang Theory,42.8-50.47,s02e16_seg02_clip_05,Scrubbing the couch. 1489,Do you have all the paperwork?,You're next ,The application in your hand. Give it to her.,Why this line is not moving?,We been in here for a long time,2,what did howard say before sheldon gave the dmv lady the application?,123528,The Big Bang Theory,0-2.75,s02e05_seg02_clip_09,The application in your hand. Give it to her. 1490,Lisa and Eric,House and Lisa.,House and Eric.,Family of the patient.,Nobody is in the room except for the patient.,0,Who are with the patient after Wilson enters the hospital room?,123529,House M.D.,8.18-11.03,house_s04e16_seg02_clip_12,Lisa and Eric 1491,He puts the note to start the test/game on Foreman's forehead with tape.,He hides the note to start the test/game somewhere within 100 feet of them.,He puts the information for the test on his desk in front of them.,He puts the note to start the test/game on the white board in the room.,He put the note to start the test/game in Chase's pocket.,3,Where does House put the information for the patient test when he explains the rules of what happens to the doctors?,123530,House M.D.,0-13.65,house_s03e08_seg02_clip_01,He puts the note to start the test/game on the white board in the room. 1492,Chandler was streaking in the middle of the cafe,Chandler was kneeling during the national anthem,Chandler decide to tap a girl on the butt,"Chandler was screaming ""do you love me!""?",Chandler was smoking inside of a cafe,4,"Why did Chandler say ""come on man"" to Gunther when he said ""No,no. There's none of that in here""?",123531,Friends,22.38-40.02,friends_s03e18_seg01_clip_00,Chandler was smoking inside of a cafe 1493,He is a drug addict,He is in the country illegally,He doesn't have kidney probles,He has already received a kidney transplant,He is refusing treatment.,2,Why doesn't House's boss want to put Hank Wiggen on the kidney transplant list when House asks?,123532,House M.D.,73.66-88.12,house_s01e12_seg02_clip_08,He doesn't have kidney probles 1494,A display of sandwiches,A bunch of different pies,Bagels,A soda logo,Two other workers,2,What was behind the worker when she was giving Robin her change?,123533,How I Met You Mother,0-6.63,met_s05e05_seg02_clip_12,Bagels 1495,chips,cholocate,beets,peach,apple,0,What was House eating when he was watching his team in the Lab?,123534,House M.D.,51.18-63.08,house_s08e13_seg02_clip_26,chips 1496,A paiting,A board,A mirrow,A book,A laptop,4,What did Esposito turned away from Joey when he was done watching it? ,123535,Castle,35.11-41.86,castle_s05e11_seg02_clip_20,A laptop 1497,She feel agitated about everything and life is not fair and she is lost.,She says someone sexually assaulted her. What is his defense for his actions?,She is very happy with her life and satisfied. She just met someone she loves.,She tells him she grew up with a hard life and she doesn't expect him to understand.,She tells she is anxious and scared all the time because someone shot her.,1,What does the woman at the park outside tell House after he asks her how she feels?,123536,House M.D.,0-17.57,house_s03e12_seg02_clip_23,She says someone sexually assaulted her. What is his defense for his actions? 1498,Go sky diving,Go to lunch,Go see a musical,Go on a date,Go to Disney World,2,What did Rachel suggest doing when talking to Chandler?,123537,Friends,0.56-5.04,friends_s04e06_seg02_clip_07,Go see a musical 1499,Your hair. ,Your DNA. ,Your fingerprints. ,Your clothes. ,Your taste in coffee. ,2,What is the one thing Beckett says that you can't change when she is holding up a coffee cup in a bag?,123538,Castle,9.1-15.47,castle_s05e10_seg02_clip_24,Your fingerprints. 1500,She folded her arms.,She left the room.,She sat down on the couch.,She pushed Ross out of the way.,She hugged Ross.,4,What did Rachel do after she told Ross that she didn't need him to come?,123539,Friends,50.72-54.02,friends_s10e13_seg02_clip_01,She hugged Ross. 1501,Exibits of clothing evidence.,A suspect handcuffed to the table. ,Nothing. ,Human bones. ,A cadaver under a sheet. ,4,What lays on the table when Beckett walks into the room? ,123540,Castle,48.41-57.66,castle_s07e20_seg02_clip_16,A cadaver under a sheet. 1502,A rare painting,An illegal weapons cache,The majority stake in a multinational corporation,A contested piece of real estate,A replacement lottery ticket,4,What was sold in the city hours after Cameron's body was found?,123541,Castle,64.17-74.64,castle_s06e10_seg02_clip_23,A replacement lottery ticket 1503,Reggie,Alexis,Castle,Beckett,Himself,0,W/ho does Esposito see in the video when he and Ryan are watching it?,123542,Castle,0-28.5,castle_s05e02_seg02_clip_26,Reggie 1504,At the store.,In someone else's office.,At the bar.,At the apartment.,At the barber shop. ,1,Where was Marshall after he realized he had lice?,123543,How I Met You Mother,0-17.22,met_s03e20_seg02_clip_07,In someone else's office. 1505,Ross was dressed in his at-home gear and sported a black t-shirt.,Ross was dressed as usual in his wool pea coat.,Ross was dressed in a black dress shirt as he had just come from work.,Ross was dressed casually in a tan windbreaker.,Ross was dressed in warm holiday clothing with a scarf.,3,How was Ross dressed when he was talking to his mother in the hallway?,123544,Friends,0-31.87,friends_s08e23-24_seg02_clip_05,Ross was dressed casually in a tan windbreaker. 1506,Stuart tells Raj and Emily he has a dentist appointment,Stuart tells Raj and Emily he is catching a cold,Stuart tells Raj and Emily he has a doctors appointment,Stuart tells Raj and Emily he is closing a little early,Stuart tells Raj and Emily he doesn't like them,3,What did Stuart tell Raj and Emily when he says he doesn't want to rush them?,123545,The Big Bang Theory,6.17-12.97,s08e24_seg02_clip_00,Stuart tells Raj and Emily he is closing a little early 1507,9 at Saturday,8 at Saturday,9 at Friday,8 at Friday,9 at Monday,0,When does Foreman say House is scheduled to speak when he tells him the The American Association of Rheumatology wants him to speak at their show? ,123546,House M.D.,29.38-43.62,house_s08e06_seg02_clip_08,9 at Saturday 1508,Castle feels guilty,Castle feels happy.,Castle feels ecstatic,Castle feels proud,Castle feels insulted.,4,How does Castle feels after talking to Courtney about his movie?,123547,Castle,0-20.84,castle_s08e14_seg02_clip_07,Castle feels insulted. 1509,He was jealous about not being able to wear Marshall's wig.,He was jealous that he was not getting married.,Someone spilled food over his clothes,He was jealous of Marshall's good looks ,He was being sarcastic,4,What was Barney jealous about when he was at the wedding reception?,123548,How I Met You Mother,54.3-60.15,met_s02e21_seg02_clip_11,He was being sarcastic 1510,Bailey picked up a blood pressure cup,Bailey picked up an x-ray,Bailey picked up a portable thermometer,Bailey picked up a patient's chart,Bailey picked up a message pad,3,What did Bailey pick up off the nurses station when she was doing rounds,123549,Grey's Anatomy,37.85-47.74,grey_s03e19_seg02_clip_04,Bailey picked up a patient's chart 1511,5 - The Lab,4 - The Psych Floor,5 - The Cafeteria,4- The nursery,5 - The Psych Floor,4,"What floor are Izzie, Gretchen and Addison on after the elevator doors open?",123550,Grey's Anatomy,27.48-42.56,grey_s03e06_seg02_clip_23,5 - The Psych Floor 1512,A bag,A phone,A pen,A file,A book,1,What did house had in his left hand when he came into the room,123551,House M.D.,1.09-10.13,house_s07e11_seg02_clip_05,A phone 1513,tell his kids something ,fill his account,get him out of jail,get him a book,phone call,2,What does the prisoner want Castle to do for him before he gives him the information,123552,Castle,14.85-20.26,castle_s07e15_seg02_clip_14,get him out of jail 1514,Sebastian says that those forming the press conference think he's special. ,Sebastian says the Africans treat him special. ,Sebastian says Cameron treats him special. ,Sebastian says his parents treat him special. ,Sebastian says those he works with treat him special. ,0,"Who does Sebastian say treat him special, after House says he's not special?",123553,House M.D.,75.28-86.94,house_s02e04_seg02_clip_15,Sebastian says that those forming the press conference think he's special. 1515,He asks her to go on a boy's trip.,He asks her to scratch his back.,He asks her for ointment.,He asks her to cook dinner.,He asks her to pull his finger.,4,What does Chandler ask Monica to do after he answers her question.,123554,Friends,29.37-37.92,friends_s07e18_seg02_clip_08,He asks her to pull his finger. 1516,How everyone should cut their food,How to cook a turkey,How to fold a napkin,How to spoon green beans,How to eat,0,What does Monica demonstrate after Amy scratches the plate with her knife?,123555,Friends,6.07-21.67,friends_s09e08_seg02_clip_11,How everyone should cut their food 1517,A file,A pen,A book,A cup,A bag,0,What did Wilson had in her hand when he walked to Tucker's bed,123556,House M.D.,0-22,house_s06e09_seg02_clip_00,A file 1518,A cake,A sandwich,A turkey,An orange,An apple,1,What was Howard cutting when he was standing in the kitchen?,123557,The Big Bang Theory,0-3.9,s09e07_seg02_clip_02,A sandwich 1519,Chandler,Joey,Ross,Monica,Gunther,2,Who has just told the gang that he has tenure when he burst into the group cafe? ,123558,Friends,36.6-40.14,friends_s10e14_seg02_clip_07,Ross 1520,That treatment will kill the patient,That this is the patient's last day,There is only time for one try,Patient will sue if he is wrong again,Reminds House of their large bet,0,What does Foreman say to House before House says he hopes he is right? ,123559,House M.D.,13.34-23.93,house_s05e06_seg02_clip_22,That treatment will kill the patient 1521,"Jenny said that she would totally throw up, she hates stuff like that.",Jenny said that she would so read that.,Jenny told Castle that she would stop reading his books at that point.,Jenny said to the group that she would start dying a little more inside if Castle did write a political thriller.,Jenny half-jokingly said that she would buy a copy just so she could burn it.,1,What did Jenny say she would do after Castle said he may write a political thriller next?,123560,Castle,33.23-35.42,castle_s07e23_seg02_clip_27,Jenny said that she would so read that. 1522,The kitchen sink,An empty bottle of soda,A flower vase,Between her couch cushions ,An empty can of Pringles chips,4,What does Cheryl look in after she Ross asks who Mitzi is?,123561,Friends,4.8-12.61,friends_s04e06_seg02_clip_05,An empty can of Pringles chips 1523,purple,brown,grey,blue,yellow,4,"What color is the jacket Nora is wearing when she say's ""It'slate...""?",123562,How I Met You Mother,0-9.77,met_s06e16_seg02_clip_14,yellow 1524,sit down,walk out the door,put on his coat,pick up his cane,drop his cane,1,What does House do after Kutner says an MRI is a waste of time?,123563,House M.D.,2.73-12.3,house_s05e16_seg02_clip_02,walk out the door 1525,Six callers,Five callers,Two callers,No one heard anything,Nine callers ,1,According to Beckett how many 911 callers heard shots when the shooting took place?,123564,Castle,0-5.37,castle_s07e10_seg02_clip_17,Five callers 1526,Pizza sauce.,Chicken.,Onions and mushrooms.,Nuts and leeks and stuff.,Cheese and peppers.,3,What does Joey ask to leave off his Tai chicken pizza to try and make his meal cheaper when the waiter is taking his order?,123565,Friends,3.96-12.88,friends_s02e05_seg02_clip_07,Nuts and leeks and stuff. 1527,water,a bottle of wine,a bottle of champange,their dinner,the dessert ,2,what does the waiter bring over when he arrives at monica and chandlers table?,123566,Friends,50.48-58.03,friends_s06e24-25_seg02_clip_06,a bottle of champange 1528,Racheal,Joey,Chandler,Monica,Phoebe,0,Who leaves the apartment before leaving Ross and Mona to talk?,123567,Friends,9.3-13.81,friends_s08e08_seg02_clip_16,Racheal 1529,She lost her job,She had a rough day,She may call off the wedding,Her car is broken,Her roommate moved out,2,Why is Carol sad after she walks into the apartment.,123568,Friends,42.41-61.03,friends_s02e11_seg02_clip_15,She may call off the wedding 1530,Because Lily doesn't want to marry Marshall.,Because Marshall wants to have a baby.,Because Lily and Marshall are talking who seduced first.,Because Lily wants to leave.,Because Marshall flirt with a girl.,2,Why Lily and Marshall are discussing after sat on the table?,123569,How I Met You Mother,26.4-58.02,met_s02e03_seg02_clip_03,Because Lily and Marshall are talking who seduced first. 1531,For fun,Graham hated his brother,to teach justin a lesson,to prove a point to other people,Graham needed the money,4,why did graham say he killed his brother when being confronted by esposito and ryan?,123570,Castle,90.74-94.03,castle_s08e05_seg02_clip_23,Graham needed the money 1532,A bar,A liquor store,A sports game,A strip club,A party supply store,3,Where did Ted say he and Barney had gone after Barney revealed there was a bachelor party in progress?,123571,How I Met You Mother,8.49-21.52,met_s02e08_seg02_clip_07,A strip club 1533,The drinks were on the house. ,Ted bought the last round of drinks. ,Marshall bought the last round of drinks. ,They were not drinking. ,Lily bought the last round of drinks. ,4,Who bought the last round of drinks before Robin left?,123572,How I Met You Mother,11.61-20.25,met_s03e16_seg02_clip_09,Lily bought the last round of drinks. 1534,A tablet.,An umbrella.,A pillow.,A blanket.,A set of headphones.,0,What was Alexis holding when beckett said Marilyn was an executive?,123573,Castle,47.63-52.52,castle_s07e21_seg02_clip_19,A tablet. 1535,dinner,breakfast. ,tea,coffee,Hot chocolate with a stick of butter. ,4,What did Sheldon make after coming back into the apartment?,123574,The Big Bang Theory,0-10.23,s02e23_seg02_clip_11,Hot chocolate with a stick of butter. 1536,He didn't want Joey to see the ending of the show ,Pornography was playing on tv,The cable had gone out and the television had really loud static,The ducks were watching a cooking show,He was tape recording the sitcom and didn't want to see what happened,3,Why did Chandler rush to turn off the tv after he walked into his apartment,123575,Friends,14.5-30.88,friends_s05e04_seg02_clip_11,The ducks were watching a cooking show 1537,She falls asleep. ,She lifts her head and looks at Phoebe. ,She kicks Phoebe. ,She slaps Phoebe. ,She gives Phoebe money. ,1,What does Rachel do when Phoebe is giving her a massage?,123576,Friends,24.19-29.62,friends_s09e21_seg02_clip_16,She lifts her head and looks at Phoebe. 1538,Addison tells the patient of the other possibilities ,Burke tells the patient of the other possibilities ,Bailey tells the patient of the other possibilities ,Mark tells the patient of the other possibilities ,Derek tells the patient of the other possibilities ,2,Who tell the patient the other possibilities if he doesn't allow the procedure before he agrees,123577,Grey's Anatomy,9.98-27.67,grey_s02e10_seg02_clip_08,Bailey tells the patient of the other possibilities 1539,Richard,Gates,Javi,Jones,Harden,2,Who confirmed that Becky Beckett's phone could not be traced after the phone call?,123578,Castle,74.18-84.96,castle_s06e17_seg02_clip_10,Javi 1540,he had a book in his hand,he had a drink in his hand,he had a plate of food in his hand,he had his wallet in his hand,he didnt have anything in his hand,0,what did ross have in his hands when he was talking to joey in the diner,123579,Friends,0-8.06,friends_s08e07_seg02_clip_09,he had a book in his hand 1541,A hat,A tray of fajitas,A bowl,An apple,An orange,1,What is Ross holding when he enters the room?,123580,Friends,0-11.81,friends_s10e02_seg02_clip_12,A tray of fajitas 1542,Sheldon is looking out a window.,Sheldon is sitting on a chair at a desk.,Sheldon is taking a bath.,Sheldon is laying on the floor.,Sheldon is in the closet.,1,Where is Sheldon when Raj comes in the room ?,123581,The Big Bang Theory,25.3-28.11,s05e07_seg02_clip_05,Sheldon is sitting on a chair at a desk. 1543,She filed rape charges against the pilot of the plane.,She filed assault charges against the air marshall.,She filed a wrongful termination suit.,She filed a lawsuit against Castle.,She is out to get Castle.,2,What does Beckett say about the former oceanic executive when she is talking with Castle?,123582,Castle,47.18-65.88,castle_s07e21_seg02_clip_19,She filed a wrongful termination suit. 1544,"Joey doesn't say ""the point is"".",You need to stop doing what you're doing.,Joey cant think of anything to stay because of how stunned he is.,There are a lot of women out their who you haven't even had sex with yet.,You should really consider your options. ,3,"What does Joey say after he says ""The point is""?",123583,Friends,28.17-34.26,friends_s03e18_seg02_clip_09,There are a lot of women out their who you haven't even had sex with yet. 1545,A restaurant,A parking garage,Their house,The police office,In a park,1,Where are Castle and Beckett when they meet Smith?,123584,Castle,0-8.65,castle_s06e22_seg02_clip_15,A parking garage 1546,He loves the smell of bacon.,He's not going to be able to make it to the surgery.,He is a good nurse. ,He can't handle the pressure. ,He is quitting his job. ,1,What does Alex tell his patient after he walks in her room?,123585,Grey's Anatomy,23.29-33.48,grey_s03e15_seg02_clip_24,He's not going to be able to make it to the surgery. 1547,Rachel is next to Chandler.,Phoebe is next to Chandler.,Breanna is next to Chandler.,Monica is next to Chandler.,Joey is next to Chandler.,3,Who is sitting next to Chandler when he is on the couch at the coffee shop?,123586,Friends,0-6.05,friends_s06e24-25_seg02_clip_20,Monica is next to Chandler. 1548,a bar near Columbia,a bar near NYU,a bar near Cornell,a bar near Princeton,a bar near Harvard,1,Where does Barney plan on taking Marshall after Marshall loses Amy?,123587,How I Met You Mother,46.82-65.03,met_s02e02_seg02_clip_05,a bar near NYU 1549,She is holding train tickets.,She is holding a phone.,She is holding a suitcase.,She is holding a cup of coffee.,She is holding a purse.,1,What is Phoebe holding when she is addressing the room?,123588,Friends,0-6.05,friends_s03e08_seg02_clip_11,She is holding a phone. 1550,Izzie is in a hospital room.,Izzie is in a bathroom.,Izzie is in a operating room.,Izzie is in a yoga class.,Izzie is in a hallway.,0,Where is Izzie when she is talking about tampons ?,123589,Grey's Anatomy,24.68-28.65,grey_s03e14_seg02_clip_15,Izzie is in a hospital room. 1551,Showed off his thong.,Revealed his arm sleeve tattoos.,Revealed a Superman cape.,Showed off his mankini,Showed off his chest tattoos.,1,What did Howard do after Leonard asked what he did?,123590,The Big Bang Theory,4.08-13.95,s03e03_seg02_clip_02,Revealed his arm sleeve tattoos. 1552,He wanted Joey to suffer.,He wanted to be the one to take care of her.,He wanted her to fall in love with him.,He wanted Susan out of the picture.,He wanted to be special to her.,4,Why did Carol's statement hurt Ross after his injury?,123591,Friends,0-9.61,friends_s09e02_seg02_clip_16,He wanted to be special to her. 1553,He said you are pretty.,"He said, what happened?",Why was Marshall calling?,He ask her was she crazy.,"He said, I am mad with you.",2,What did Ted say when the show came on?,123592,How I Met You Mother,0-103.17,met_s06e15_seg02_clip_18,Why was Marshall calling? 1554,white,tan,yellow,light blue,off white,1,"What color is the envelope that Vogler opens, when he is speaking to Chase?",123593,House M.D.,1.34-10.26,house_s01e16_seg02_clip_22,tan 1555,Lilly suggests they hire an actress to play his live in insane mother,Lilly suggests they get a puppy,lilly suggests they rent some child actors to play their kids,lilly suggests they get more coffee and think about things,"Lilly suggests they make the apartment more homey, like a woman lives there.",4,What does Lilly suggest they do in order to sell the roose before people arrive?,123594,How I Met You Mother,0-15.61,met_s02e05_seg02_clip_12,"Lilly suggests they make the apartment more homey, like a woman lives there." 1556,They walked toward a board with the pictures of a man and woman on it.,Bathroom,Kitchen,Ledge,Bridge,0,Where did Castle and Beckett go when they came into the office?,123595,Castle,43.66-64.53,castle_s05e03_seg02_clip_19,They walked toward a board with the pictures of a man and woman on it. 1557,Foreman put a bandages on Driscoll's chest.,Foreman put an ice bag on Driscoll's chest.,Foreman put cold water on Driscoll's chest.,Foreman put a stethoscope on Driscoll's chest.,Foreman put a thermometer on Driscoll's chest.,3,What did Foreman put on Driscoll's chest when Driscoll was in bed?,123596,House M.D.,49.11-53.09,house_s07e10_seg02_clip_07,Foreman put a stethoscope on Driscoll's chest. 1558,She kissed Derek.,She walked out the door.,She choked George.,She sat on the couch.,She danced with Cristina.,3,What did Meredith do after she said what are we watching?,123597,Grey's Anatomy,14.59-19.59,grey_s01e03_seg02_clip_25,She sat on the couch. 1559,Ross is on his way to get his picture taken at the studio of a professional photographer.,Ross is on his way to a funeral.,Ross is on his way to a wedding.,Ross is on his way to work.,Ross is on his way to a job interview.,3,Why is Ross wearing a suit and tie when he is talking to Rachel?,123598,Friends,18.59-42.79,friends_s04e20_seg02_clip_04,Ross is on his way to work. 1560,He gets seasick.,He gets really drunk.,He falls off the boat.,He is angry because he doesn't like scotch.,He is happy.,2,What happens to Ted after the Captain brings him scotch?,123599,How I Met You Mother,0-37.52,met_s06e11_seg02_clip_13,He falls off the boat. 1561,He's tired. ,He's happy. ,He's embarrassed. ,He's excited. ,He's drunk. ,4,What state is Chandler in when he comes home?,123600,Friends,34.18-37.23,friends_s04e13_seg02_clip_10,He's drunk. 1562,Driscoll started gagging and throwing up.,Driscoll closed his eyes and started to have a seizure.,Driscoll made a rattling noise and fell unconscious.,Driscoll took a shaky breath and said his heart was racing.,Driscoll's monitors started sounding their alarms.,3,What happened to Driscoll after he apologized to Masters?,123601,House M.D.,36.72-47.78,house_s07e10_seg02_clip_07,Driscoll took a shaky breath and said his heart was racing. 1563,In the booth. ,On the couch. ,At the table. ,On the floor. ,On the curb. ,3,"Where are Lily, Marshall, and Robin sitting when they are in the apartment?",123602,How I Met You Mother,0-2.66,met_s03e12_seg02_clip_11,On the floor. 1564,At the entrance,On the dance floor,At the table,At the bar,At the bed,2,Where was Raj when he was having a drink with the lady in green?,123603,The Big Bang Theory,0-3.66,s01e08_seg02_clip_08,At the table 1565,Sophie was watching television.,Sophie was singing a song.,Sophie was adjusting her pillow.,Sophie was eating her lunch.,Sophie was reading a magazine.,1,What was Sophie doing when George entered the medical room?,123604,Grey's Anatomy,60.05-63.96,grey_s02e14_seg02_clip_02,Sophie was singing a song. 1566,Marshall,Robin.,Estella.,Barney.,James.,2,Who said that people are nice in Ney Jersey when talking to Ted?,123605,How I Met You Mother,14.51-58.02,met_s04e03_seg02_clip_12,Estella. 1567,He tries to take Marshal;s girlfriend on as a student.,He tries to take Marshal on a s a student.,He tries to take Ted on as a student.,He tries to take the bartender on as a student.,He tries to take the girl at the bar on as a student.,1,Who does Barney try to take on a s a student when talking about Start Wars.,123606,How I Met You Mother,0-44.65,met_s03e05_seg02_clip_14,He tries to take Marshal on a s a student. 1568,Because Beckett has a suit.,Because Beckett has a picture of a man.,Because Beckett has a tie.,Because Beckett has man's shoes.,Because Beckett is wearing a man's clock.,4,Why Castle asked for Beckett's dad when he sat next to her?,123607,Castle,26.56-33.76,castle_s01e05_seg02_clip_08,Because Beckett is wearing a man's clock. 1569,Chandler,Ross,Joey,Rachel,Phoebe,2,Who answered the phone when the phone rang?,123608,Friends,11.35-18.64,friends_s01e15_seg02_clip_13,Joey 1570,Joey is dressed as Batman.,Joey is dressed as Luke Skywalker.,Joey is dressed as Phoebe.,Joey is dressed as Elmer Fudd.,Joey is dressed as Superman.,4,Who is Joey dressed as when he comes into the apartment.,123609,Friends,26.17-29.86,friends_s07e10_seg02_clip_16,Joey is dressed as Superman. 1571,1 Billion,He did not say,"100,000",1 Million,100 Million Dollars,4,What was Elise's net worth after Esposito said the family own's half of Park Avenue South,123610,Castle,0-18.87,castle_s02e04_seg02_clip_08,100 Million Dollars 1572,lawrence doesn't like how marshall looks,lawrence would like to be freinds with marshall,lawrence thinks marshall smells nice ,lawrence likes how marshall looks ,lawrence likes how marshall dresses,3,what does lawrence mean when he says mashall has a nice frame ,123611,How I Met You Mother,10.84-23.44,met_s03e19_seg02_clip_14,lawrence likes how marshall looks 1573,Clancy believes aliens have been abducting and experimenting on him.,Clancy believes that a demons have been possessing him .,Clancy has been seeing apparitions and ghosts at home.,Clancy has been seeing fairies and other mythical creatures.,Clancy believes that he is the reincarnation of someone else.,0,Why does Clancy say that his parents think he's crazy when he is talking to Chase?,123612,House M.D.,55.07-81.47,house_s03e02_seg02_clip_08,Clancy believes aliens have been abducting and experimenting on him. 1574,A pillow,A laptop,A jacket,A coffee cup,A muffin,3,What was Penny holding when Stephanie said I haven't heard a thing about you?,123613,The Big Bang Theory,56.12-59.09,s02e10_seg02_clip_00,A coffee cup 1575,on the phone,drinking coffee,ordering pizza,eating a doughnut ,sneezing ,0,what is house doing when him and park are walking ,123614,House M.D.,0-5.92,house_s08e02_seg02_clip_15,on the phone 1576,Jesse Jones said it was for the best.,Jesse Jones killed Mandy.,Jesse Jones hit Mandy.,Jesse Jones threatened to kill Mandy.,Jesse Jones stole Mandy's money.,3,What did Jesse Jones do when Mandy tried to break up with him?,123615,Castle,71.57-90.02,castle_s06e13_seg02_clip_03,Jesse Jones threatened to kill Mandy. 1577,couch,floor,chair,sofa,desk,1,Where was Howard sitting when he was talking to Penny?,123616,The Big Bang Theory,13.04-18.01,s04e01_seg02_clip_00,floor 1578,Where his phone is.,Who's paying for their coffee.,What's for dinner.,Who's picking up Rachel.,What the name of the girl is.,4,What does Chandler ask before leaving?,123617,Friends,29.59-40.91,friends_s07e17_seg02_clip_08,What the name of the girl is. 1579,Keep doing what they've been doing,Physical therapy,Steroid cream,Meds and a tub,Move the patient to ICU,3,How does Kutner want to proceed with the patient's treatment after 13 said the rash is coming back?,123618,House M.D.,12.46-23.15,house_s04e05_seg02_clip_22,Meds and a tub 1580,howie falls on the floor,"Bernadette and Howie answer in unison ""yes""","Bernadette and howie answer in unison ""never!""","Bernadette laughs, and howie scoffs",Bernadette and Howie give conflicting answers.,4,How do Bernadette and Howie react after Raj asks if they had doubts about each other?,123619,The Big Bang Theory,37.78-40.05,s09e14_seg02_clip_10,Bernadette and Howie give conflicting answers. 1581,She danced.,She got up from the chair.,She threw papers in the air.,She talked on the phone.,She run away.,1,What did Beckett do when Kaufman said to her she can go?,123620,Castle,0-8.2,castle_s07e23_seg02_clip_14,She got up from the chair. 1582,Beckett's dad told her a story about Cano Vega once,Beckett use to date Cano Vega,Beckett almost caught one of his homers once and is a baseball fan,Beckett does not know who Cano Vega is,"Beckett arrested Cano Vega once, years ago",2,How did Beckett say she had a connection to Cano Vega when talking to Castle and Esposito as they arrived on the crime scene?,123621,Castle,28.55-41.93,castle_s02e15_seg02_clip_01,Beckett almost caught one of his homers once and is a baseball fan 1583,Joshua kiss Chandler on the cheek,Joshua kicked Chandler,Joshua gave Chandler money,Joshua put his hand on Chandler shoulder and gently rub him.,Joshua shake Chandler hand,3,What did Joshua do when he was standing next to Chandler?,123622,Friends,38.05-41.41,friends_s04e14_seg02_clip_19,Joshua put his hand on Chandler shoulder and gently rub him. 1584,House already has the information he needs without the MRA.,An MRA is extremely difficult to acquire from a heroin patient.,House hates doing an MRA scan.,Taub is hinting to the fact that House's picture sucked.,Taub had called House an idiot earlier.,3,Why does House award Taub negative points after he suggest an MRA?,123623,House M.D.,74.03-84.61,house_s04e09_seg02_clip_16,Taub is hinting to the fact that House's picture sucked. 1585,It's in Stage 4,It's in Stage 3,The patient will die within 48 house,It's taking college courses,It's writing the unified theory ,3,How did House reply when Cuddy asked how advanced the pneumonia was?,123624,House M.D.,9.9-13.5,house_s04e03_seg02_clip_17,It's taking college courses 1586,An umbrella,A coffee,His cell phone,His mail,A dog,3,What is Ross holding when the man tells him to check out the picture and tell the other tenants?,123625,Friends,47.06-53.47,friends_s05e17_seg02_clip_11,His mail 1587,foreman ,cuddy,wilson,house,chase ,3,who was knocking on camerons door when she was home,123626,House M.D.,8.65-12.29,house_s01e19_seg02_clip_00,house 1588,Because his mom put sour cream on everything. ,Because he was Ukranian,Because she liked his mom,Because he was nice.,Because they were friends. ,0,What did Monica say after Ross asked the reason why she hung out with the Ukranian kid at school?,123627,Friends,21.06-33.39,friends_s04e17_seg02_clip_02,Because his mom put sour cream on everything. 1589,He laughed hard.,He cried.,He jumped on a chair.,He apologized.,He smacked the patient in the wheel chair.,3,What did Chandler do when he spoke?,123628,Friends,0-4.5,friends_s01e04_seg02_clip_16,He apologized. 1590,Richards,Cristina,Izzie,Meredith,Helen,1,Who is scribbling in her own chart when they are in a hospital bed?,123629,Grey's Anatomy,0.47-21.86,grey_s02e04_seg02_clip_00,Cristina 1591,To yell at the interns,To find Meredith,To go home,To check on a patient,To find Addison ,3,Why does Derek excuse himself when speaking to Weiss? ,123630,Grey's Anatomy,0-8.8,grey_s02e08_seg02_clip_10,To check on a patient 1592,Cuddy thought House was a liar.,Cuddy thought House was a secret agent.,Cuddy thought House was a astronaut or a bull fighter.,Cuddy thought House was a cheater.,Cuddy thought House was a magician.,2,What did Cuddy think House was when she questioned him?,123631,House M.D.,10.4-15.09,house_s07e13_seg02_clip_26,Cuddy thought House was a astronaut or a bull fighter. 1593,Joey,Gary,Rachel,Monica,Bill,1,Who are Phoebe and Chandler talking about when the video starts?,123632,Friends,0-5.95,friends_s05e21_seg02_clip_07,Gary 1594,Inside jello,Inside of the cake,Inside a creme brule,In a heart mold on a cake,Castle and beckett didn't find it ,3,Where was the diamond ring hidden when beckett and castle finally find it?,123633,Castle,53.87-60.49,castle_s02e22_seg02_clip_20,In a heart mold on a cake 1595,The personal ads,The funnies,The obituaries,The news,The help wanted,2,What is grandmother looking at when she is looking at the newspaper?,123634,Friends,0-4.72,friends_s02e09_seg02_clip_03,The obituaries 1596,She dies. ,She collapses. ,She starts to seize. ,She starts speaking another language. ,She starts yelling. ,2,What happens after the patient hallucinates?,123635,House M.D.,69.58-79.92,house_s01e05_seg02_clip_05,She starts to seize. 1597,Rug Rats,Army Ants,Texas Team,Techie Team,Engineer Elite,1,What did Leonard name the team when he was arguing with Sheldon?,123636,The Big Bang Theory,0-16.42,s01e13_seg02_clip_01,Army Ants 1598,Ross has always been jealous of Rachel's style. ,Ross is purposely trying to disagree with Rachel.,Ross has always been jealous of Rachel's hair. ,"Ross wants to appear as the ""more fun"" parent.",Ross is trying to spend more time with Emma. ,2,What does Rachel claim Ross's persistence is about when they are arguing about the swing?,123637,Friends,35.46-43.45,friends_s10e07_seg02_clip_12,Ross has always been jealous of Rachel's hair. 1599,Leonard,Raj,Howard,Penny,Amy,0,Who does Sheldon want to sign a roomate agreement when he tells them to sign it?,123638,The Big Bang Theory,6.3-12.91,s05e15_seg02_clip_13,Leonard 1600,Laughing. ,Acting a scene out.,Fighting.,Sleeping.,Drinking ,3,"What is Barney and Robin doing when Marshall's song says, ""then we played charades""?",123639,How I Met You Mother,8.57-13.59,met_s05e04_seg02_clip_02,Sleeping. 1601,At the mall,In a hotel room,In a car,In the subway,At the post office,2,Where does Beckett say that Vulcan may have killed Marks after Gates tries to take her off the case?,123640,Castle,75.62-90.02,castle_s06e22_seg02_clip_04,In a car 1602,Ted.,Robin.,Lily.,James,Barney.,0,Who was watching himself in the mirror when talking to his friends?,123641,How I Met You Mother,0-48.45,met_s03e11_seg02_clip_01,Ted. 1603,Rachel jumps on Joey's back,She pull Joey away from Dina and Bobby by the arm,Rachel hits Joey on the back of the head,Rachel hits Joey on his arm,Rachel kicks Joey's leg,1,What does Rachel do after Rachel tells Joey that that is enough?,123642,Friends,30.1-39.55,friends_s08e10_seg02_clip_13,She pull Joey away from Dina and Bobby by the arm 1604,washed her hands,started taking notes,covered up the body ,She removed her gloves,grabbed a medical tool,3,What did Lanie do after Beckett came in?,123643,Castle,0-7.14,castle_s06e07_seg02_clip_16,She removed her gloves 1605,He stands up and walks towards the fridge.,He gestures to Pennie.,He raises his hand.,He sits down.,He leaves the room.,0,What does Howard do after Bernadette tells him what was in the envelope?,123644,The Big Bang Theory,51.49-61.42,s06e19_seg02_clip_14,He stands up and walks towards the fridge. 1606,Dungeons and Dragons,Cry,Watch Golden Girls,Call smut phone numbers,Write erotic Star Wars fan fiction,2,What did Ross do every Saturday night when he was in high school?,123645,Friends,57.63-64.03,friends_s07e04_seg02_clip_13,Watch Golden Girls 1607,he is standing next to Beckett,he is standin next to the projector,he is standing next to the white board,he is standing next to the coffee maker,he is standing next to the tv,2,Where is Castle standing when he is in the investigation room with the other detectives?,123646,Castle,17.98-25.81,castle_s03e14_seg02_clip_23,he is standing next to the white board 1608,House has a straw.,House has a gobstopper.,House has gum.,House has a thermometer.,House has a bone.,0,What does House have in his mouth before he discusses a ceremonial lyching with Wilson?,123647,House M.D.,34.35-48.49,house_s05e15_seg02_clip_17,House has a straw. 1609,She decides it's time for bed,She asks if she can go home,She says I'm hungry and makes a sandwitch,She asks what he thinks they should do to the room.,She starts to watch television,3,What happens after Bernadette says she doesn't want to play anymore?,123648,The Big Bang Theory,1.5-5.1,s09e12_seg02_clip_09,She asks what he thinks they should do to the room. 1610,Wilson went to the cafeteria when he was looking for House,Wilson went to the morgue when he was looking for House,Wilson went to the conference room when he was looking for House,Wilson went to the parking garage when he was looking for House,Wilson went to Cuddy's office when he was looking for House,2,Where did Wilson go when he was looking for House,123649,House M.D.,83.62-93.52,house_s06e09_seg02_clip_00,Wilson went to the conference room when he was looking for House 1611,Cuddy was standing Beside the shelf,Cuddy was standing At the entrance,Cuddy was siting At the work desk,Cuddy was standing at the corner of the room,Cuddy was standing beside the window,2,Where was Cuddy before House checked the laptop,123650,House M.D.,3.72-19.07,house_s06e14_seg02_clip_20,Cuddy was siting At the work desk 1612,Castle is talking to Anderson,Castle is talking to Goldman,Castle is talking to Foxton,Castle is talking to Cooper,Castle is talking to Slaughter ,4,Who is Castle talking to about finding a fence after he got off the phone,123651,Castle,14.15-22.99,castle_s08e06_seg02_clip_05,Castle is talking to Slaughter 1613,He opened the door.,He picked up a small container bottle.,He sat down.,He drank wine.,He made a phone call,1,What did Raj do before he said something one tiny bottle?,123652,The Big Bang Theory,0.9-10.81,s02e21_seg02_clip_04,He picked up a small container bottle. 1614,Across the room,To the right of Beckett,Next to Evan,Outside of the interrogation room,At his personal desk,1,Where was Castle sitting when Evan was being questioned?,123653,Castle,66.65-75.15,castle_s03e01_seg02_clip_19,To the right of Beckett 1615,Red,Blue,Yellow,Black,White,2,What is the color of Foreman's tie when he is with House?,123654,House M.D.,1.82-11.38,house_s03e08_seg02_clip_01,Yellow 1616,a card. ,flowers,a box of candy,a fruit basket,a balloon and a teddy bear,4,What did Sheldon have in his hand when he went to the hospital?,123655,The Big Bang Theory,0-39.41,s08e09_seg02_clip_07,a balloon and a teddy bear 1617,He is sitting at the table. ,He is sitting on the couch. ,He is in the bathroom. ,He is in the bedroom. ,He is directly in front of the television. ,4,Where is Frank when he is in Phoebe apartment?,123656,Friends,14.46-24.5,friends_s03e18_seg02_clip_18,He is directly in front of the television. 1618,Lily is wearing a scuba suit.,Lily is wearing a fur coat.,Lily is naked.,Lily is wearing pajamas.,Lily is wearing a life vest.,3,What is Lily wearing when listening to the message?,123657,How I Met You Mother,0-3.9,met_s06e24_seg02_clip_07,Lily is wearing pajamas. 1619,two hours,an hour,half an hour,a day,a week,2,How long does the lady have to make a decision after being asked what was wrong?,123658,Castle,0-9.66,castle_s06e14_seg02_clip_17,half an hour 1620,Adams is an expert on treating patients with malaria.,Adams knows that there are no known cases of malaria in the past 10 years.,Adams has already tested Brant for malaria.,Adams knows the army gives soldiers anti-malaria medication.,Adams doesn't believe House because he often lies.,3,Why does Adams initially believe that Brant doesn't have malaria when talking to House?,123659,House M.D.,0-12.25,house_s08e15_seg02_clip_20,Adams knows the army gives soldiers anti-malaria medication. 1621,Outside his apartment,At his work,At a restaurant ,At a park,At a bar they always met at ,0,Where does Colette say she waited for Michael the day before she was questioned by Castle and Beckett?,123660,Castle,7.3-13.69,castle_s04e11_seg02_clip_10,Outside his apartment 1622,A hickey. ,A ladybug. ,A pale blue turtleneck collar. ,A peace sign on a leather string. ,A purple bruise. ,2,"What item is on Howard's neck when he says,""Oh, right, it's your birthday?"" ",123661,The Big Bang Theory,11.41-15.31,s01e16_seg02_clip_14,A pale blue turtleneck collar. 1623,She put her jacket on.,She took out her phone.,She answered the phone.,She pulled out her badge.,She put some papers on the desk.,0,What did Sophia do after she put her gun in the holster?,123662,Castle,61.13-65.01,castle_s04e16_seg02_clip_22,She put her jacket on. 1624,She thinks doctors use judgements/stereotypes to diagnose patients all the time without looking further.,She thinks doctors give patient's the wrong drugs on purpose which lead to their death ,She thinks doctors poorly diagnose just to get an answer because they are lazy and don't care.,She thinks doctors give patient the known treatment for what they think symptoms look like.,She thinks doctors don't look for the real answers they only listen to others and what sounds good.,0,How does thirteen say she thinks doctors kill patient's when she accuses Amber of doing the same thing?,123663,House M.D.,3.15-13.5,house_s04e09_seg02_clip_07,She thinks doctors use judgements/stereotypes to diagnose patients all the time without looking further. 1625,Ross feels shocked.,Ross feels unsurprised.,Ross feels apathetic.,Ross feels depressed.,Ross feels happy for the man.,0,How does Ross feel when the woman hands her boyfriend the shirt?,123664,Friends,0-13.73,friends_s08e17_seg02_clip_09,Ross feels shocked. 1626,Calls Sheldon's mother.,Try to give him a hug.,Awkwardly leave the room.,Call Leonard for advice.,Pretends to be his mother.,0,What does Penny do after Sheldon gets upset?,123665,The Big Bang Theory,19.22-32.14,s04e14_seg02_clip_15,Calls Sheldon's mother. 1627,Food.,New board games.,A replacement light bulb.,An apricot .,Shaved ice.,0,What did Raj bring after he saved Thanksgiving.,123666,The Big Bang Theory,52.8-58.02,s07e09_seg02_clip_03,Food. 1628,Cuddy is with house on the airplane,Stacy is with house on the airplane,Vogler is with house on the airplane,Robin is with house on the airplane,Wells is with house on the airplane,0,Who is with House on the airplane when they are discussing syphilis,123667,House M.D.,0-11.66,house_s03e18_seg02_clip_20,Cuddy is with house on the airplane 1629,On the wall above Beckett's head.,On the wall above Castle's left shoulder.,On the wall above Beckett's right shoulder.,On the wall above Beckett's left shoulder.,On the wall above Castle's right shoulder.,4,"Where was the fire hose after Beckett, Gage, and Castle ran out of the apartment?",123668,Castle,28.53-33.13,castle_s04e16_seg02_clip_13,On the wall above Castle's right shoulder. 1630,Joey put on all of Joey's clothes ,Joey lied to him,Joey kissed Chandlers girlfriend ,Joey kicked Chandler out of his apartment ,Joey insulted Chandler ,0,Why was Chandler angry with Joey when he came into the apartment? ,123669,Friends,15.37-25.2,friends_s03e02_seg02_clip_16,Joey put on all of Joey's clothes 1631,Because he didn't want to hear Ross talk about Fossils,Because he forgot his keys,Because the chair was wet,Because he preferred to sit next to Phoebe,Because he spilled his coffee on his shoes,0,Why did Joey turn around and walk away after he was about to sit next to Ross?,123670,Friends,19.38-26.14,friends_s08e10_seg02_clip_01,Because he didn't want to hear Ross talk about Fossils 1632,Sheldon stands up and points at Raj.,Sheldon stands up and leaves the room.,Sheldon sits up and begins to talk to Raj.,Sheldon lies down across the sofa.,Sheldon picks up a book to read from a nearby table.,2,What does Sheldon do after Raj points to himself?,123671,The Big Bang Theory,23.06-26.52,s08e21_seg02_clip_10,Sheldon sits up and begins to talk to Raj. 1633,Ted said the facial hair made him look younger,Ted said the facial hair made him feel like a pirate,Ted said the 2004 ted thought facial hiar made him look like Johnny Depp,Ted said the facial hair made him look more interesting,"Ted said he grew the facial hair on a dare, and he felt stupid.",2,How does Ted ste the 2004 version of him feels about facial hair after going outside to talk to Jen?,123672,How I Met You Mother,30.31-44.72,met_s05e02_seg02_clip_16,Ted said the 2004 ted thought facial hiar made him look like Johnny Depp 1634,Standing by the window.,In the bathroom.,About to leave cafe.,Sitting on the couch.,Sitting in the chair.,3,Where is Ross when Joey comes into the coffee shop?,123673,Friends,32.81-38.89,friends_s09e21_seg02_clip_06,Sitting on the couch. 1635,Because Sheldon lost the memory card. ,Because Sheldon caught chicken pox. ,Because Sheldon's mother became convinced video games were evil. ,Because Sheldon got stuck on a really hard part of the game. ,Because Sheldon had pernicious anemia in 1999. ,4,Why did Sheldon say he had to stop playing Mario when he found the memory card his mother sent?,123674,The Big Bang Theory,38.76-63.02,s02e02_seg02_clip_04,Because Sheldon had pernicious anemia in 1999. 1636,in the patient's room,at the hospital,at home,in the car,walking down the street,2,Where is House when he is talking on the phone ?,123675,House M.D.,24.95-34.81,house_s05e12_seg02_clip_05,at home 1637,Behind her back.,Interlocked in front of her.,In her jacket pockets.,In her pants pockets.,Folded across her chest.,0,Where were Rita's hands when she was in the break room with Castle?,123676,Castle,1.37-5.92,castle_s08e11_seg02_clip_22,Behind her back. 1638,Behind a Taco Bell,Behind a Pizza Hut,Disney World,Behind a porno store,The library,0,Where did Ross tell Monica that Chandler masturbated when he was in a parked car?,123677,Friends,0.3-21.72,friends_s09e21_seg02_clip_03,Behind a Taco Bell 1639,Wilson increased to 12 volts,Wilson increased to 6 volts,Wilson increased to 4 volts,Wilson increased to 9 volts,Wilson increased to 5 volts,4,How many volts did Wilson increase the voltage to after House reported he was seeing things in black and white?,123678,House M.D.,11.38-23.67,house_s04e16_seg02_clip_15,Wilson increased to 5 volts 1640,Beckett asked Jessup where he was between 5 and 6 last night,Beckett asked Jessup where he was between 7 and 8 last night,Beckett asked Jessup where he was between 9 and 10 last night,Beckett asked Jessup where he was the week before,Beckett didn't ask Jessup anything ,2,What did Beckett ask Jessup when she was talking to him about his wereabouts?,123679,Castle,13.16-17.87,castle_s02e09_seg02_clip_06,Beckett asked Jessup where he was between 9 and 10 last night 1641,Green,Red,Blue,Black,White,0,What color is the tie Arthur notices Randy is wearing after walking into the room?,123680,How I Met You Mother,30.73-40.56,met_s06e07_seg02_clip_13,Green 1642,Rug.,Chair.,Stool.,Couch.,Table.,3,Where sat Howard when talking to Raj?,123681,The Big Bang Theory,11.6-57.98,s08e12_seg02_clip_02,Couch. 1643,A vest,A Christmas sweater,A blue sun dress,A green t-shirt,A Santa Claus outfit,0,What is Phoebe wearing when she is playing her guitar in the coffee shop?,123682,Friends,6.69-9.02,friends_s01e10_seg02_clip_02,A vest 1644,Amy said Sheldon's lack of compassion may have caused his dilemma.,Amy said Sheldon's ego may have caused his dilemma.,Amy said Sheldon's bad timing may have caused his dilemma.,Amy said Sheldon's ineptitude may have caused his dilemma.,Amy said Sheldon's bad behavior may have caused his dilemma.,4,What did Amy tell Sheldon may have caused his dilemma when she gave Ricky a cigarette?,123683,The Big Bang Theory,23.39-27.7,s04e21_seg02_clip_13,Amy said Sheldon's bad behavior may have caused his dilemma. 1645,He needs more food,He has had trouble dropping 5 Pounds,He is in a bad financial position,He Needs a ride home,He got into a fight with a good friend,1,What does Raj whisper into Howards ear when Mrs Cooper asks questions?,123684,The Big Bang Theory,0-12.32,s05e06_seg02_clip_14,He has had trouble dropping 5 Pounds 1646,Sitting on the couch at the coffee shop.,Sitting on the couch together in Rachel's apartment..,At a romantic restaurant table.,At a sport's bar.,Riding in the car.,1,"Where are Rachel and Joey when he asks her, ""When was the last time...someone told you just how beautiful you are?""",123685,Friends,49.83-57.28,friends_s06e15-16_seg02_clip_27,Sitting on the couch together in Rachel's apartment.. 1647,Where they're going to eat.,The stupid things she's done.,The TV show that's on.,What movie they're going to.,Cleaning the house.,1,What is Ross arguing with Rachel about when she's sitting down?,123686,Friends,0-10.62,friends_s06e05_seg02_clip_17,The stupid things she's done. 1648,Rachel and Ross were on the hospital bed,Rachel and Ross were in the hospital cafeteria,Rachel and Ross were at the jewelry store,Rachel and Ross were in their bedroom,Rachel and Ross were in Ross's bedroom,0,Where were Rachel and Ross when he asked her about the ring?,123687,Friends,0-35.77,friends_s09e01_seg02_clip_21,Rachel and Ross were on the hospital bed 1649,Dry seaweed,Organic compost,No fertilizer ,Cow manure ,Plant food,0,What does chi's dad say he uses for fertilizer when cameron asks about pesticides being used?,123688,House M.D.,64.44-69.04,house_s01e08_seg02_clip_11,Dry seaweed 1650,Because Adam Murphy killed before.,Because Adam Murphy had the murder weapon.,Because Adam Murphy is the only one with motive.,Because Adam Murphy confessed.,Because Adam Murphy hid the body.,3,Why does Castle think Adam Murphy killed Goldstein after Beckett said he didn't do it?,123689,Castle,15.72-18.34,castle_s03e04_seg02_clip_23,Because Adam Murphy confessed. 1651,A comic book,A yellow cup,A pan,A brown cup,A wallet,1,What does Sheldon put on the table when he is talking to Raj?,123690,The Big Bang Theory,6.46-12,s04e22_seg02_clip_09,A yellow cup 1652,nothing,a bottle,a flask,a plate,a gun,4,What was Alan holding when he entered the herb store with Castle?,123691,Castle,86.04-92.03,castle_s08e19_seg02_clip_19,a gun 1653,Esposito ,Montgomery,Beckett,Ryan,Lanie,4,Who needs to confirm that the gun found at D'andres matches the bullet wound on the victim before putting d'andre in jail?,123692,Castle,58.41-63.72,castle_s03e04_seg02_clip_04,Lanie 1654,Their House,A Basketball game,The Olympics,The Park,An Ice Cream Parlor,4,Where are Penny and Sheldon at when they are talking together?,123693,The Big Bang Theory,0-58.13,s10e05_seg02_clip_13,An Ice Cream Parlor 1655,a blood sample,a pen,a bottle of pills,a napkin,his cellphone,4,"what does house pull out from his pocket when he is in the lab with chase, foreman, and cameron?",123694,House M.D.,20.47-28.38,house_s03e03_seg02_clip_09,his cellphone 1656,Chase said thousands of women are on fertility treatment.,Chase said 50 women are on fertility treatment.,Chase said 1 billion women are on fertility treatment.,Chase said 100 women are on fertility treatment.,Chase said millions of women are on fertility treatment.,4,"How many women did Chase say are on fertility treatments and did not get cancer when he was walking with Foreman, House and Cameron?",123695,House M.D.,70.44-73.11,house_s02e11_seg02_clip_13,Chase said millions of women are on fertility treatment. 1657,Playing a video game.,Looking out the window. ,Looking at his computer.,Looking at Amy.,Looking at a moth. ,3,"What is Sheldon doing before he says, ""Don't worry, little moth. The flame will come to you""?",123696,The Big Bang Theory,47.58-53.67,s07e05_seg02_clip_06,Looking at Amy. 1658,A Cheeto,Coffee,A tear,His sweatshirt,Astonishment,0,What did Joey have on his face when watching T.V.?,123697,Friends,12.31-22.51,friends_s02e15_seg02_clip_08,A Cheeto 1659,20 milligrams.,10 milligrams.,15 milligrams.,5 milligrams.,25 milligrams.,3,How much diazepam did Cameron order when Roy's son started seizing?,123698,House M.D.,11.42-15.98,house_s06e04_seg02_clip_12,5 milligrams. 1660,Howard refers to All in the Family,Howard refers to I Love Lucy,Howard refers to Magnum P.I.,Howard refers to Alf,Howard refers to the Simpons,4,What TV show does Howard mention when talking to Leonard.,123699,The Big Bang Theory,47.38-56.68,s02e04_seg02_clip_09,Howard refers to the Simpons 1661,Angry,Happy,Sad,Shocked,Excited,3,How does Phoebe react after she hangs up?,123700,Friends,28.51-33.62,friends_s05e14_seg02_clip_12,Shocked 1662,Music,Knock at door,Gun fire,Caslte,Strangers voice,2,What does Beckett hear in her mindwhen she is touching her side and chest?,123701,Castle,40.52-50.42,castle_s04e09_seg02_clip_02,Gun fire 1663,Six times,Once ,Twice ,Four times ,Three times,4,How many times does Sheldon knock before opening Penny's door?,123702,The Big Bang Theory,0-6.32,s03e08_seg02_clip_01,Three times 1664,Julia,Ryan,Castle,Beckett,Esposito,0,Who leaves the room after introducing Parker to Mary?,123703,Castle,0-10.67,castle_s06e02_seg02_clip_23,Julia 1665,He walked up the stairs.,He went to the pharmacy.,He answered his cellphone.,He knocked on her door. ,He kicked her door open. ,3,What did Sheldon do after he hears Penny grunting?,123704,The Big Bang Theory,52.18-58.02,s08e13_seg02_clip_00,He knocked on her door. 1666,Sheldon brings up all the things that Leslie does. ,Sheldon brings up all the things that Leonard does that annoy him. ,Sheldon brings up all the things that Raj does. ,Sheldon brings up all the things he found annoying about Penny. ,Sheldon brings up all the things that Bernadette does. ,3,What does Sheldon bring up after Leonard tells him that he doesn't like Amy?,123705,The Big Bang Theory,44.95-58.81,s04e03_seg02_clip_03,Sheldon brings up all the things he found annoying about Penny. 1667,White,Orange,Purple,Black,White,1,What color T-shirt was Leonard wearing when he was with Sheldon?,123706,The Big Bang Theory,0-4.2,s07e02_seg02_clip_14,Orange 1668,One,Three,Two ,Four,,2,How many lights were shinning on the whiteboard when Beckett said Tom's alibi checked out? ,123707,Castle,27.49-30.69,castle_s04e22_seg02_clip_11,Two 1669,Bailey's back went out.,Bailey had kidney failure.,Bailey was having contractions.,Bailey had a fever.,Bailey had hives.,2,Why did Bailey have to see a doctor when she was at work?,123708,Grey's Anatomy,45.2-67.79,grey_s02e14_seg02_clip_04,Bailey was having contractions. 1670,House eats a muffin.,House eats a tomato.,House eats an egg.,House eats a sandwich.,House eats a strawberry.,4,What does House eat after Carnell says to ring him if they need anything?,123709,House M.D.,24.01-25.36,house_s07e16_seg02_clip_01,House eats a strawberry. 1671,Alexis pulled on To Kill a Mockingbird.,Alexis pulled on the Bible.,Alexis pulled on The biography of Keith Richards.,Alexis pulled on the Complete Works of Edgar Allen Poe.,Alexis pulled on The Grapes of Wrath.,3,Which book did Alexis pull on when she made the bookcase slide open?,123710,Castle,11.97-17.73,castle_s08e01_seg02_clip_03,Alexis pulled on the Complete Works of Edgar Allen Poe. 1672,text messages,phone,smoke signals,telepathy,webcam,4,How is Raj communicating with his parents when he and Penny are in his apartment?,123711,The Big Bang Theory,3.91-6.95,s02e04_seg02_clip_15,webcam 1673,From under the couch,A treasure chest,An old box,In a broom closet,A storage unit,2,Where does Grandmother pull out the pictures of Phoebes dad when Phoebe asks to see them?,123712,Friends,28.33-33.35,friends_s02e09_seg02_clip_03,An old box 1674,Rachel was wearing a black and white shirt.,Rachel was wearing a black and white dress.,Rachel was wearing a green coat.,Rachel was wearing a green t-shirt.,Rachel was wearing a navy shirt.,0,What was Rachel wearing when she met up with her friends?,123713,Friends,35.67-62.03,friends_s05e19_seg02_clip_17,Rachel was wearing a black and white shirt. 1675,63.,65.,64.,62.,72.,1,How old is the patient according to Cameron when she is trying to help with the diagnosis?,123714,House M.D.,25.67-35.68,house_s02e14_seg02_clip_06,65. 1676,Red.,Blue.,Black.,Green.,White.,2,What color vest Chase wears when House makes a snarky comment?,123715,House M.D.,37.81-52.66,house_s08e12_seg02_clip_20,Black. 1677,A taser.,A folder.,A wine glass.,Her badge.,A baton.,1,What is Beckett holding when Karpowski said something about renting an apartment?,123716,Castle,17.13-23.89,castle_s02e05_seg02_clip_19,A folder. 1678,Howard. ,"Zack, Penny's boyfriend, is dressed as superman. ",Sheldon. ,Leonard. ,Raj. ,1,Who is dressed as superman when it's Halloween?,123717,The Big Bang Theory,4.28-6.85,s04e11_seg02_clip_08,"Zack, Penny's boyfriend, is dressed as superman. " 1679,A book,A cup,A file,A pen,A rod,3,What did Thirteen had in her hand when discussing with the other doctors about the patient?,123718,House M.D.,49.88-58.43,house_s05e23_seg02_clip_21,A pen 1680, The radiation detector was maxed out.,Somebody steal the radiation detector.,The radiation detector was broken.,Somebody steal the radiation detector.,The radiation detector was sold.,0,What happened to the radiation detector of Beckett before Castle asked for it?,123719,Castle,56.85-65.46,castle_s03e16_seg02_clip_11, The radiation detector was maxed out. 1681,Castle handles frequent kidnapping cases and wants to learn Sorenson's technique.,"Castle was looking out for Beckett, who was still attracted to Sorenson.",Castle does not like Sorenson's way of handling things.,Sorenson appears to have knowledge about the kidnapping that he is not sharing.,Sorenson is a threat to Castle's job security.,1,Why did Castle question Sorenson when they were alone in the kitchen?,123720,Castle,33.56-46.71,castle_s01e09_seg02_clip_05,"Castle was looking out for Beckett, who was still attracted to Sorenson." 1682,his dad dead,his mother died,his dad is sick ,his mother is sick,nothing,3,What did Wilson say to House about his mother when they were walking down the hallway? ,123721,House M.D.,12.76-21.57,house_s08e14_seg02_clip_05,his mother is sick 1683,Drinks water,Hides under a blanket,Gets up and walks down the hall,Eats food,Covers his mouth,2,What does Sheldon do after he listens to a scream?,123722,The Big Bang Theory,18.91-23.71,s03e13_seg02_clip_07,Gets up and walks down the hall 1684,peaceful,happy,irritated,angry,gloomy,2,"How did Howard feel when Leonard, Sheldon and Raj made fun of his accomplishment?",123723,The Big Bang Theory,35.66-48.07,s02e22_seg01_clip_00,irritated 1685,Rachel hates Joey.,Rachel thinks his costume is stupid.,Rachel is sick of him making jokes and innuendos.,Rachel is jealous of Joey.,Rachel is busy.,2,Why does Rachel get mad at Joey when he dresses as a vicar and calls her Zelda?,123724,Friends,13.51-29.41,friends_s07e02_seg02_clip_18,Rachel is sick of him making jokes and innuendos. 1686,Chandler was talking about his ex,Chandler was talking about he dating life,Chandler was talking about Joey,Chandler was reading the newspaper and talking about Snoopy,Chandle was talking about no one ,3,What was Chandler talking about when he was sitting on the couch next to Rachel?,123725,Friends,3.36-9.67,friends_s03e10_seg01_clip_00,Chandler was reading the newspaper and talking about Snoopy 1687,Dr. Burke was doing a cardiopulmonary bypass on Meredith.,Dr. Burke was having his lunch break.,Dr. Burke was asleep in the quarters.,Dr. Burke was watching a game.,Dr. Burke was watching a concert.,0,Why couldn't Dr. Burke come when he was asked for by Derek?,123726,Grey's Anatomy,38.61-46.99,grey_s03e17_seg02_clip_10,Dr. Burke was doing a cardiopulmonary bypass on Meredith. 1688,The patient is waiting outside of the hospital.,The patient is sitting on a chair in an exam room.,The patient is sitting in the waiting room of the ER.,The patient is in a hospital bed.,The patient is sitting across from House in his office.,3,Where is the patient when House performs an eye exam?,123727,House M.D.,0-13.2,house_s05e02_seg02_clip_03,The patient is in a hospital bed. 1689,Leonard is taking advantage of Penny in her emotional state.,Leonard can't read the room.,He has the hots for Penny.,"Penny was totally leading him on, man.",Sheldon dared him.,2,Why did Leonard suggest Penny go out with him when she finishes her nice guy speech?,123728,The Big Bang Theory,0-50.65,s01e17_seg02_clip_07,He has the hots for Penny. 1690,Because the doctor has had the same type of experiences as the patient when it comes to deceit.,Because the doctor is sensitive about people saying he spent too much time in the sun.,Because the doctor is from California and owns a tanning bed.,Because the patient might like skin darkening treatment.,Because the doctor is not very good at trying to relate to people.,0,Why does the doctor want to know if the patient thinks he has a tan after the patient has complained about white folks?,123729,House M.D.,42.78-50.97,house_s02e03_seg02_clip_03,Because the doctor has had the same type of experiences as the patient when it comes to deceit. 1691,Grill simulator,Field Cricket,Common Field Cricket,Assimilated grills,"Suck it, you lose.",4,What translation does Howard give after saying the Latin phrase Gryllus assimilis?,123730,The Big Bang Theory,1.86-6.51,s03e02_seg02_clip_10,"Suck it, you lose." 1692,Alex,John,Blake,Bryan,Richard,2,What is the victims name given by Ferguson after the detectives question Ferguson's whereabouts?,123731,Castle,24.92-44.76,castle_s06e11_seg02_clip_07,Blake 1693,In front of the debriefing board,In the hallway,In the interrogation room,In the bathroom,In the zoo,0,Where is Agent Napier standing before they start interrogating Alonzo?,123732,Castle,18.13-38.08,castle_s08e13_seg02_clip_23,In front of the debriefing board 1694,Red,Green,Blue,Yellow,Black,1,"What color is the laser when Howard, Leonard, and Raj played Secret Agent Laser Obstacle Chess?",123733,The Big Bang Theory,18.21-21.13,s02e18_seg01_clip_00,Green 1695,A picture of Garrett Ward,Nothing,His coffee,A briefcase,His phone,0,What is Hastings holding when he is talking about knowing Garrett Ward?,123734,Castle,10.35-20.26,castle_s06e05_seg02_clip_16,A picture of Garrett Ward 1696,Joey is on the train.,Joey is in the coffee shop.,Joey is on the floor.,Joey is at the mall.,Joey is sitting in his apartment.,4,Where is Joey when Monica walks in on him?,123735,Friends,55.78-58.73,friends_s07e09_seg02_clip_02,Joey is sitting in his apartment. 1697,Sheldon would not give up the show for the world.,Sheldon would not give up the show for his mother.,Sheldon would not give up the show for Amy. ,Sheldon would not give up the show for a million dollars.,Sheldon would not give up the show for a paid trip to DisneyWorld.,0,What did Sheldon say he would not give up the show for when filming?,123736,The Big Bang Theory,22.58-61.02,s08e10_seg02_clip_11,Sheldon would not give up the show for the world. 1698,5 minutes away,10 minutes away,3 minutes away,2 minutes away,500 feet ahead,0,How far away did Corrigan say the Delegation was when Sophia asked him?,123737,Castle,0-12.56,castle_s04e16_seg02_clip_23,5 minutes away 1699,Howard's belly hurt from jelly beans.,Howard got fired.,Howard got a promotion.,Howard's parents passed.,Howard's work place did a lay off.,0,Why did Howard come home early before his normal time?,123738,The Big Bang Theory,14.17-59.02,s07e10_seg02_clip_05,Howard's belly hurt from jelly beans. 1700,House tells Chase to ask Foreman and Cameron. ,"House politely says yes, scan his neck. ",House tells them to get out. ,House sarcastically tells Chase that he can also just repeat everything he says. ,"House says he doesn't know, but to just try it. ",3,"How does House confirm to Chase that he should scan his neck, after Chase inquires?",123739,House M.D.,29.71-34.66,house_s02e06_seg02_clip_20,House sarcastically tells Chase that he can also just repeat everything he says. 1701,He scratched his head.,He put his hands together.,He picked his teeth with a tooth pick.,He turned on the computer.,He showed her his badge.,1,What does Jack do after Beckett said something about Bardot?,123740,Castle,0-5.92,castle_s08e15_seg02_clip_17,He put his hands together. 1702,They were in a car.,They were outside on the balcony.,They were on a exercise ball.,They were in a bathroom.,They were at a bar.,1,Where were the girls when they were talking.,123741,Friends,12.01-20.71,friends_s01e04_seg02_clip_16,They were outside on the balcony. 1703,He turned on a faucet,He poured water from one glass into another,He made trickling noises,He talked about waterfalls,He made fun of him,1,What did Barney do when Blauman was trying to pee?,123742,How I Met You Mother,32.19-60.17,met_s03e15_seg02_clip_03,He poured water from one glass into another 1704,Because he doesn't trust Howard. ,For some reason Raj doesn't believe him. ,Because he needs to do things himself. ,Because he wants to make Howard mad. ,Because Howard lies a lot. ,1,Why does Raj double check that the door is locked when he and Howard are sneaking around together?,123743,The Big Bang Theory,22.77-31.88,s06e08_seg02_clip_07,For some reason Raj doesn't believe him. 1705,He was left in an alley behind his apartment,He was left at Tony's place,He was left in an abandoned warehouse,He was left at Coney Island,He was left near Castle's home,3,Where was Ted's body left before he was moved?,123744,Castle,46.21-55.45,castle_s06e12_seg02_clip_26,He was left at Coney Island 1706,3,6,2,9,1,2,How many people were sitting on the bench before the picture was taken?,123745,Friends,13.11-14.85,friends_s08e01_seg02_clip_03,2 1707,Tired.,Enticed.,Bored.,Afraid.,Disgusted and horrified.,4,How did Marhsall and Ted feel when they watched the stripper dance? ,123746,How I Met You Mother,13.12-31.65,met_s02e19_seg01_clip_01,Disgusted and horrified. 1708,A needle,A bag,A pen,A file,A wallet,1,What did House collected from the doctor when he was about to leave,123747,House M.D.,40.27-46.15,house_s06e19_seg02_clip_02,A bag 1709,Giving a check,Cleaning up the table,Taking a order,Pouring red wine,Handing them food,3,What is the waitress doing when Barney and Robin are on a date?,123748,How I Met You Mother,21.22-26.98,met_s04e01_seg02_clip_13,Pouring red wine 1710,She sets her chop sticks down.,She sets her phone on the table.,She sets her water bottle down.,She sets her plate down.,She sets a box of tissues on the table.,2,What does Penny set down just before she she says they don't need to rush into anything?,123749,The Big Bang Theory,49.98-54.66,s09e04_seg02_clip_14,She sets her water bottle down. 1711,Wendy,Josh,May,Mary,Autumn,0,What is the last name shown on the board behind Ray and Erin when Joey starts his audition?,123750,Friends,47.31-51.98,friends_s08e20_seg02_clip_14,Wendy 1712,Robin hurriedly came back towards Simon and listened to wait he had to say.,Robin walked out of the room.,Robin shouted at Simon.,Simon did not ask Robin to wait.,Robin ran and hugged Simon,0,What did Robin do after Simon called her and told her to wait?,123751,How I Met You Mother,23.07-27.74,met_s03e16_seg01_clip_03,Robin hurriedly came back towards Simon and listened to wait he had to say. 1713,A nurse,Chase,House,Foreman,Cameron,4,Who says they should stop the procedure after the patient complains of feeling unwell?,123752,House M.D.,27.29-50.55,house_s01e01_seg02_clip_05,Cameron 1714,Medicine,Folders,Flowers,Microscope,Phone,3,What is on the desk when House is talking to Wilson?,123753,House M.D.,79.12-86.28,house_s02e13_seg02_clip_18,Microscope 1715,Gold,Black,Yellow,Red,White,3,What color dress was Meredith wearing when asked if the purse was SJP's? ,123754,Castle,40.08-46.39,castle_s01e06_seg02_clip_10,Red 1716,A hoodie. ,A leather jacket.,A fur.,A bubble coat.,A trench coat.,1,What kind of Jacket was Ross wearing when he asked Joey If he wanted a piece of him?,123755,Friends,0-1.5,friends_s09e12_seg02_clip_06,A leather jacket. 1717,House was walking with no assistance,House was walking with a cane,House was using the assistance of crutches,House was walking with a pole,House was in a wheel chair,1,When house was Walking what was he being assisted with when in the hospital,123756,House M.D.,0-8.46,house_s01e05_seg02_clip_01,House was walking with a cane 1718,Volakis,Taub,Thirteen,Chase,Cole,4,Who did cameron tell that they should yell at house when giving them advice about getting a job with house?,123757,House M.D.,0-9.05,house_s04e04_seg02_clip_16,Cole 1719,"Ross, Phoebe, and Monica are sitting on the couch with Chandler",Ross and Phoebe are sitting on the couch with Chandler,Monica and Phoebe are sitting on the couch with Chandler,Rachel and Monica are sitting on the couch with Chandler,No one is sitting on the couch with Chandler,0,Who is sitting on the couch when Chandler is asking Joey if his grandmother understands him?,123758,Friends,5.89-14.89,friends_s05e19_seg02_clip_04,"Ross, Phoebe, and Monica are sitting on the couch with Chandler" 1720,Monica takes off a beanie,Monica takes off a headset,Monica takes off a hat,Monica takes off glasses,Monica takes off a fake mustache. ,1,What does Monica take off her head before she walks with the man next to her?,123759,Friends,0-8.14,friends_s10e12_seg02_clip_25,Monica takes off a headset 1721,Stuart is talking to a patient.,James is talking to a patient.,Bailey is talking to a patient.,Sam is talking to a patient.,Izzie is talking to a patient.,2,Who is Bailey talking to when she is in the hospital room?,123760,Grey's Anatomy,0-7.97,grey_s02e22_seg02_clip_20,Bailey is talking to a patient. 1722,their mothers ,soup,food,water,their fathers,3,What did Sheldon start talking about when he was fighting for the ring?,123761,The Big Bang Theory,39.06-57.02,s03e17_seg02_clip_13,water 1723,The bathroom.,The store.,The zoo.,The mall.,She told Ross to go to the airport.,4,Where did Monica tell Ross to go after he admitted he loved Emily?,123762,Friends,0-51.44,friends_s04e17_seg02_clip_02,She told Ross to go to the airport. 1724,eat,sit down,stand up,drink,pace around the room,2,"What did Penny do after she said ""Ok"" to Raj?",123763,The Big Bang Theory,55.16-63.04,s05e01_seg02_clip_11,stand up 1725,He said she should use her wings to fly away from bullies,He said to punch the bully in the face,He said to always remember she was the prettiest fairy,He said her magic wand would always protect her,He said to let her strength out so the bully could see,4,What was the advice Castle gave when he was speaking to Emily?,123764,Castle,0-21.83,castle_s07e04_seg02_clip_14,He said to let her strength out so the bully could see 1726,Beckett has dish gloves on her hand.,Beckett has a diamond ring on her hand.,Beckett has snow gloves on her hand.,Beckett has frosting on her hand.,Beckett has soap on her hand.,1,What is on Beckett's hand when she is looking at Castle in a restaurant ?,123765,Castle,7.3-9.13,castle_s07e23_seg02_clip_27,Beckett has a diamond ring on her hand. 1727,Wake Joey up.,Take the camera away from Joey's hands.,Talk to him about a really cool building near them.,Talk to the group behind him.,Fall out of his chair.,1,What was Chandler trying to do after Joey took a selfie of themselves?,123766,Friends,93.65-107.02,friends_s04e23-24_seg02_clip_04,Take the camera away from Joey's hands. 1728,a sandwich,wheat crackers,a taco,a cup of soup,a hot dog.,1,What did Sydney offer the little boy to eat when he was with his mother in the waiting room?,123767,Grey's Anatomy,25.97-28.61,grey_s03e15_seg02_clip_23,wheat crackers 1729,Joey.,Phoebe.,Ross.,Monica.,Chandler.,0,Who got to the newspaper stand first after Rachel told Joey to slow down?,123768,Friends,6.12-11.92,friends_s02e10_seg01_clip_00,Joey. 1730,Orange,Green,Black,White,Red,4,What color jacket is the man on the bike wearing before he gets hit by the car?,123769,Castle,21.98-35.08,castle_s02e08_seg02_clip_00,Red 1731,In a wheelchair near the nurse's station.,In a patient bed.,In the hospital cafeteria.,In the waiting room.,In an operating room. ,0,Where was Bob when he was confessing his transgressions to all of the people?,123770,House M.D.,0-60.2,house_s08e05_seg02_clip_14,In a wheelchair near the nurse's station. 1732,They saw VanZant trying to shoving Valentine out the window.,They saw 2 guys fighting by a window.,Two dudes wrestling by the window.,One guy trying to shove another guy out a window.,One guy being shoved out a window by another guy.,0,What did Beckett and Castle see when they bust the door down?,123771,Castle,63.92-83.27,castle_s07e22_seg02_clip_15,They saw VanZant trying to shoving Valentine out the window. 1733,Her pen,His chart,Her neck,Her name badge,The needle,2,What does the patient grab when Dr. Masters tries to take his blood?,123772,House M.D.,73.81-78.04,house_s07e10_seg02_clip_03,Her neck 1734,House says the discharge papers.,House says blood tests.,House says Lymph node tests,House says cerebrospinal fluid tests.,House says ph tests.,0,What does House say Cameron should draw up after Cameron says that no condition accounts for the symptoms?,123773,House M.D.,1.39-11.13,house_s01e03_seg02_clip_01,House says the discharge papers. 1735,Ross tell Phoebe not to tell Chandler because he will tell Monica,Ross tells Phoebe not to tell Monica,Ross tells Phoebe not to tell anyone,He tells Phoebe not to tell Rachel anything,Ross tells Phoebe not to tell his parents,3,Who does Ross tell Phoebe not to tell anything when they are discussing the annulment?,123774,Friends,45.38-49.84,friends_s06e02_seg01_clip_01,He tells Phoebe not to tell Rachel anything 1736,A fifteen year plan. ,A five year plan.,A ten year plan. ,A right now plan.,A one year plan.,3,What kind of plan did Mark pitch when he was in the board meeting?,123775,Grey's Anatomy,22.63-39.01,grey_s03e19_seg02_clip_23,A right now plan. 1737,Raj choked on his food. ,Raj drops his bite back into his Chinese food container. ,Leonard chokes on his Chinese food. ,Sheldon gives Raj the Heimlich Maneuver as he chokes on his Chinese food. ,Ra drops his food on the floor. ,1,What did Raj do with his food after Penny told Raj to talk to her?,123776,The Big Bang Theory,3.54-13.58,s03e09_seg02_clip_03,Raj drops his bite back into his Chinese food container. 1738,Rick holds onto his IV pole.,Rick holds onto his cane.,Rick holds onto his walker.,Rick holds onto his scooter.,Rick holds onto his wheelchair.,0,What does Rick hold onto after trying to use the vending machine?,123777,Grey's Anatomy,16.04-20.49,grey_s02e14_seg02_clip_13,Rick holds onto his IV pole. 1739,Tampa Bay Rays.,Red Sox.,The Mets.,Los Angeles Angels.,The Yankees.,4,Who does House accuse of killing the patient when Foreman walks in?,123778,House M.D.,0.91-6.35,house_s01e12_seg02_clip_07,The Yankees. 1740,Dr. Kelly Nieman.,Gregs-Baker.,Tyson.,Dr. Ian Fuller.,Calvin Hodges.,1,Who did Beckett say was paying for Pam Hodges monthly living expenses when her and Castle were talking about her case?,123779,Castle,83.71-90.5,castle_s06e09_seg02_clip_03,Gregs-Baker. 1741,Ryan thought the money may have came from a woman because of the various trace perfume elements on the bills.,"Ryan felt the money likely came from an old bunker storehouse, as the dates were very old.","Ryan said the money probably came from a tropical place, because of the high salt residue found on the bills.","Ryan supposed the money must have come from a leaky vault, because of the mildew.",Ryan said the money probably came from a bank withdrawal,4,Where did Ryan say that the money sent to Frank probably came from after Beckett asked if they could trace it?,123780,Castle,31.77-33.59,castle_s07e18_seg02_clip_23,Ryan said the money probably came from a bank withdrawal 1742,Her skin,Her genes,Her sweeping,Her shirt,Her jeans,4,What does Monica compliment when Brenda is sweeping?,123781,Friends,41.56-49.31,friends_s08e07_seg02_clip_09,Her jeans 1743,The street.,The alley.,The bar.,The docks.,The internet.,3,Which place does Rachel tell Monica to go after she talks about finding sperm?,123782,Friends,12.83-17.96,friends_s03e03_seg02_clip_10,The docks. 1744,Rachel would do anything for Monica.,Julie needs a friend,Julie is willing to share her Bloomingdales discount.,Rachel wants Ross to be happy no matter who he's with.,Monica offers to pay Rachel fifty dollars to be nice to Julie.,0,Why does Rachel agree to give Julie a chance when Monica asks her?,123783,Friends,35.12-60.03,friends_s02e02_seg02_clip_14,Rachel would do anything for Monica. 1745,7,5,3,8,1,1,"How many crossword puzzle answers did Leonard give the receptionist after she told him to ""hold on""?",123784,The Big Bang Theory,29.29-48.51,s01e01_seg01_clip_00,5 1746,He passes out.,He is making a call.,He looks towards the wall.,He is walking towards the door.,He starts to talk to the child patient.,3,What is house doing when Foreman starts to speak?,123785,House M.D.,9.66-13.8,house_s05e06_seg02_clip_22,He is walking towards the door. 1747,Gives her pen to him,Gives him a high-five,Shakes his hand,Puts her head in her hands,Stands up to walk with him,0,What does Cameron do when House walks by her?,123786,House M.D.,27.85-32.2,house_s02e14_seg02_clip_06,Gives her pen to him 1748,He's afraid she didn't wash her hands before handing it to him,He thought her toast was funny,His drink was actually samples from the lab,Howard said he wanted to marry Bernadette,He didn't like the taste,0,Why does Raj spit out his drink after Bernadette's toast?,123787,The Big Bang Theory,40.02-52.29,s04e09_seg02_clip_06,He's afraid she didn't wash her hands before handing it to him 1749,A glass of water,A magazine,A coffee mug,A pencil,A turkey,1,What does Leonard put down when Sheldon mentions that everyone in Leonard's position is forgettable?,123788,The Big Bang Theory,12.01-18.01,s08e18_seg02_clip_03,A magazine 1750,He tells her he was married to Sonia years ago,He tells her he and Hammerhead are cousins,He tells her he and Sonia used to be engaged,He tells her he and Sonia are related ,He tells her he is going to have to recuse himself from this case,2,What news does Esposito have for Beckett when she is giving them their orders?,123789,Castle,15.39-90.5,castle_s08e16_seg02_clip_04,He tells her he and Sonia used to be engaged 1751,Ross shakes his head in acknowledgement and looks down.,Ross kicks Susan.,Ross hugs Rachel.,Ross kisses Rachel.,Ross hugs Monica.,0,"What does Ross do when he says ""I see""?",123790,Friends,4.2-5.6,friends_s01e16-17_seg02_clip_08,Ross shakes his head in acknowledgement and looks down. 1752,A coffee cup,A whisky bottle,A glass of orange juice,A glass of milk,A bottle of beer,0,What is Barney holding when he is talking to Honey while he is in distress?,123791,How I Met You Mother,0-4.88,met_s06e15_seg02_clip_15,A coffee cup 1753,A glass of wine.,A laundry basket.,Her cell phone.,A bottle of water.,A slice of pizza.,2,What was Penny holding when she said about doing laundry?,123792,The Big Bang Theory,59.88-62.44,s02e12_seg01_clip_01,Her cell phone. 1754,Castle is looking for Esposito.,Castle is hungry.,Castle wants Beckett to propose.,Castle sees balloons in Beckett's hand.,Castle is embarrassed Gates received Beckett's valentine's gift.,4,Why does Castle look at Beckett when Gates read a valentine card?,123793,Castle,7.6-25.48,castle_s05e14_seg02_clip_26,Castle is embarrassed Gates received Beckett's valentine's gift. 1755,Castle is walking around a bench with Esposito and Ryan.,Castle is walking upstairs with Esposito and Ryan.,Castle is walking down a hall with Esposito and Ryan.,Castle is walking outside with Esposito and Ryan.,Castle is walking in a restaurant with Esposito and Ryan.,3,Where is Castle at when he is walking with Esposito and Ryan?,123794,Castle,37.87-47.12,castle_s08e21_seg02_clip_15,Castle is walking outside with Esposito and Ryan. 1756,Standing next to Dr. Nieman.,Sitting to the right of Beckett.,Sitting to the left of Beckett.,Sitting to the left of Dr. Nieman.,Standing behind Beckett.,2,Where was Castle after he asked Dr. Nieman about his face?,123795,Castle,66.17-72.02,castle_s06e09_seg02_clip_07,Sitting to the left of Beckett. 1757,Binoculars,Crutches,A cane,An apple,A tank,0,What did Ryan pick up after he and Esposito came into Castle's apartment?,123796,Castle,75.55-84.2,castle_s05e19_seg02_clip_00,Binoculars 1758,The pay phone did not have a coin slot,The pay phone was knocked over,The pay phone wire was cut,The pay phone was missing numbers,The pay phone was working perfectly,2,What was wrong with the pay phone after Castle tried to use it?,123797,Castle,33.34-37.85,castle_s05e08_seg02_clip_07,The pay phone wire was cut 1759,A box full of condoms ,Some stolen money,The patient's drugs,A stolen cell phone,Book of men's numbers,2,What does House expect to find in a purse before telling Foreman to check it?,123798,House M.D.,55.81-72.47,house_s05e05_seg02_clip_05,The patient's drugs 1760,Lily made tacos.,Lily made meatloaf.,Lily made a quilt.,Lily made creme brulee.,Lily made a shirt.,3,What did Lily do in the video after they played charades?,123799,How I Met You Mother,9.45-15.06,met_s05e04_seg02_clip_02,Lily made creme brulee. 1761,Bemused,Irony,Travesty,Enormity,Obsolete,1,What word does Castle thank Beckett for using correctly after Beckett explains an issue?,123800,Castle,54.46-58.07,castle_s02e05_seg02_clip_20,Irony 1762,Basketball,Baseball,Golf,Tennis,Football,0,What is Joey watching when is in the waiting hospital waiting room?,123801,Friends,29.22-33.35,friends_s01e23_seg02_clip_01,Basketball 1763,At dinner. ,At a party. ,At brunch. ,At a club. ,At a movie. ,1,"According to TMZ, where was Tyrese when he was with Josie Lang?",123802,Castle,33.66-35.84,castle_s05e11_seg02_clip_03,At a party. 1764,Into the bathroom.,Out of the room.,Over to a window.,Out to the parking lot.,To a nearby table.,4,Where did Professor Crawley go after he finished yelling about his ex wife?,123803,The Big Bang Theory,28.51-32.5,s03e02_seg02_clip_14,To a nearby table. 1765,Yellow,Red,Blue,Green,Pink,2,What is the color of Benadette's dress when she is talking to Howard?,123804,The Big Bang Theory,4.55-14.17,s06e18_seg02_clip_16,Blue 1766,a head rub,a kiss,a pat on the chest ,A hug ,a slap on the butt ,3,How does Ryan's wife console him after firing him? ,123805,Castle,86.56-90.64,castle_s08e20_seg02_clip_20,A hug 1767,Because the plane is making tricks.,Because Sheldon wants to catch the plane.,Because Sheldon the plane is passing high.,Because Sheldon doesn't want to touch the plane.,Because the toy plane can hit his head.,4,Why Sheldon has to lower his head when the plane pass?,123806,The Big Bang Theory,0-36.41,s08e22_seg02_clip_16,Because the toy plane can hit his head. 1768,Cuddy thinks that she is not normal,Cuddy thinks that she was not meant to have a child,CUddy thinks that she needs more time,Cuddy thinks that she needs help ,"Cuddy thinks that it will pass, what she is feeling",0,What does Cuddy think about herself when she confesses to Wilson that she doesn't feel anything?,123807,House M.D.,13.01-28.2,house_s05e13_seg02_clip_03,Cuddy thinks that she is not normal 1769,Phone,Map,Umbrella,Snack,Drink,1,What did Joey pull out after he handed Chandler the video camera?,123808,Friends,8.36-16.73,friends_s04e23-24_seg02_clip_02,Map 1770,Foreman is drinking morphine.,Foreman is drinking a bottle of champagne.,Foreman is drinking a water bottle.,Foreman is drinking a juice box.,Foreman is drinking coffee.,4,What is Foreman drinking when he's talking to Chase?,123809,House M.D.,40.67-42.27,house_s01e14_seg02_clip_20,Foreman is drinking coffee. 1771,Howard,Bernadette,Raj,Sheldon,Peg Leg Antoine,3,Who spoke after Penny did?,123810,The Big Bang Theory,0.62-19.23,s06e19_seg02_clip_14,Sheldon 1772,Rachel suggested Chandler watch less Lifetime.,Rachel suggested Chandler watch less Oxygen.,Rachel suggested Chandler watch less Food Channel.,Rachel suggested Chandler watch less E!,Rachel suggested Chandler watch less WE.,3,Who did Rachel suggest Chandler watch less of after she told him to watch more ESPN?,123811,Friends,36.92-40.22,friends_s07e20_seg02_clip_02,Rachel suggested Chandler watch less E! 1773,Phoebe is eating sunflower seeds.,Phoebe is eating cookies.,Phoebe is eating crackers.,Phoebe is eating dry cereal.,Phoebe is eating potato chips.,3,What is Phoebe eating while sitting on the couch when waiting on hold?,123812,Friends,22.01-27.24,friends_s03e22_seg02_clip_10,Phoebe is eating dry cereal. 1774,Raj was holding a glass of drink.,Raj was drinking beer.,Raj was drinking water.,Raj was eating pizza and drinking soda.,Raj was asking for a drink.,0,What was doing Raj when Mikayla approached him?,123813,The Big Bang Theory,10.07-61.02,s02e21_seg02_clip_07,Raj was holding a glass of drink. 1775,a jerk,a lawyer,a doctor,a dummy,a genius,4,What did Penny think Leonard was when she spoke to him?,123814,The Big Bang Theory,25.03-45.59,s03e06_seg02_clip_03,a genius 1776,She smells her own bad breath.,I has old cheese in it.,The sister has a smelling disorder.,She is being poisoned.,Someone ralphed in the scanner this morning.,4,Why does the Sister say it smells funny when being tested in the scanner?,123815,House M.D.,4.23-15.98,house_s01e05_seg02_clip_05,Someone ralphed in the scanner this morning. 1777,Take him shopping and get him a nice suit.,Coach him on his vocal skills.,Teach him to be more polite.,Practice his lines with him.,Teach him poise and grace.,0,"What does Penny say she can do after Sheldon asks what her ""powers"" are.",123816,The Big Bang Theory,45.23-53.8,s03e18_seg02_clip_04,Take him shopping and get him a nice suit. 1778,To confess. ,To stop talking. ,To leave. ,To keep his secret. ,To roll the dice. ,4,What is Beckett's advice for Eddie when he is being questioned?,123817,Castle,16.38-19.57,castle_s03e19_seg02_clip_23,To roll the dice. 1779,Joan,James,Sean,Jimmy,Westbrook,4,Who interrupted after Martin said he was not trying to be greedy?,123818,House M.D.,48.31-55.88,house_s06e13_seg02_clip_19,Westbrook 1780,Because Wendy wants to drink it for herself. ,Because it's never been refrigerated and may have had fish in it at some point. ,Because Wendy doesn't believe that Marshall is actually 21. ,Because Wendy accidentally already promised the bottle of champagne to another table. ,Because Wendy is clumsy and is scared she'll smash the bottle. ,1,Why is Wendy hesitant to bring Marshall the bottle of champagne when Marshall orders it?,123819,How I Met You Mother,27.99-46.05,met_s03e07_seg02_clip_03,Because it's never been refrigerated and may have had fish in it at some point. 1781,Robin was with Marshall,Robin was with Ted,Robin was with Barney,Robin was with Curt,Robin was with Lily,3,Who was with Robin when she was reporting about sports,123820,How I Met You Mother,9.15-20.75,met_s03e11_seg02_clip_04,Robin was with Curt 1782,Chase ,Taub,Cameron,Cuddy ,Cole,4,Who punches House after a disagreement about a patient's diagnosis? ,123821,House M.D.,26.15-33.49,house_s04e04_seg02_clip_22,Cole 1783,She seriously agreed with Castle,She sarcastically disagreed with Castle,She sarcastically agreed with Castle,She seriously disagreed with Castle,She said she didn't know,2,What did Beckett say after Castle asked if she suspected Mr. Peterson,123822,Castle,59.21-64.26,castle_s01e02_seg02_clip_12,She sarcastically agreed with Castle 1784,Progesterone.,Estrogen.,Testosterone.,Calcium. ,Calcitriol.,3,What biological substance did House say could have a spontaneous spike and cause an egg to prep itself without sperm when he explained to the patient how her pregnancy occurred?,123823,House M.D.,38.26-44.56,house_s05e11_seg02_clip_17,Calcium. 1785,She drops it,She puts the mug on her desk,She says no thank you,She takes a sip from the mug,She gives it to the person sitting next to her,3,What does Beckett do after Castle hands her a mug?,123824,Castle,34.23-39.26,castle_s04e17_seg02_clip_03,She takes a sip from the mug 1786,Harold,Simon,Fred,John,Seth,1,Who says that her folk's put in a pool when talking to Robin?,123825,How I Met You Mother,1.46-6.13,met_s03e16_seg01_clip_03,Simon 1787,a knife ,a bottle of water ,balloons ,a cupcake ,a glass of liquor ,4,What is the lady behind Lily holding up when she's talking to Barney? ,123826,How I Met You Mother,15.42-18.69,met_s02e13_seg02_clip_13,a glass of liquor 1788,On Monica's bed,On the couch ,On the floor ,On the fire escape,At the table,4,Where was Phoebe sitting when Ross came in to Monica's apartment,123827,Friends,0.31-8.06,friends_s08e04_seg02_clip_04,At the table 1789,Castle and Hunt are in a bedroom.,Castle and Hunt are in a gym.,Castle and Hunt are in a cab.,Castle and Hunt are at a park.,Castle and Hunt are at a police station.,0,Where is Castle and Hunt when he is talking to Hunt about his mom ? ,123828,Castle,31.51-36.91,castle_s05e16_seg02_clip_21,Castle and Hunt are in a bedroom. 1790,He holds a jacket,Her hands,He hugs her,He talks to her,Key chain,4,What is Ross holding when he is talking to Rachel?,123829,Friends,0-6.11,friends_s05e20_seg02_clip_16,Key chain 1791,His body language.,His interviewing skills.,His voice projection.,His lectures.,His overall demeanor.,3,What does Sheldon want to improve after he asks Penny to help him learn acting techniques?,123830,The Big Bang Theory,6.2-19.54,s04e14_seg02_clip_03,His lectures. 1792,worried,happy,surprised,sad,hurt,2,How did Penny feel when Amy was telling Sheldon about her love life?,123831,The Big Bang Theory,0-10.44,s04e01_seg02_clip_15,surprised 1793,Lars time in turkey,Lars time in england,Lars time in egypt ,New york,Mexico ,0,Where does esposito want to look into when talking about lars last trip?,123832,Castle,66-74.89,castle_s08e17_seg02_clip_07,Lars time in turkey 1794,Raj says this because he's sick of calling Howard by his real name. ,Raj says this because he needs a cool nickname because he will be an astronaut. ,Raj says this because he's the one that wants the nickname. ,Raj says this because he is jealous. ,Raj says this because he doesn't care. ,1,Why does Raj say Howard needs a nickname after he finds out he will be going into space?,123833,The Big Bang Theory,27.64-32.3,s05e15_seg02_clip_00,Raj says this because he needs a cool nickname because he will be an astronaut. 1795,The front seat with Bernadette. ,The front seat with Howard. ,Alone in the back seat. ,The back seat with Bernadette. ,The back seat with Howard. ,2,Where was Raj sitting when he was in the car? ,123834,The Big Bang Theory,45.36-48.71,s04e13_seg02_clip_02,Alone in the back seat. 1796,They laughed,They looked at each other,They both said No,They stepped back,They waled away,1,What did Castle and Beckett do after the old man asked if she was looking someone to have sex with?,123835,Castle,23.77-30.37,castle_s01e02_seg02_clip_17,They looked at each other 1797,Overjoyed,Happy,Humiliated,Afraid,Lonely,2,How does Phoebe feel after meeting the date Joey picked for her?,123836,Friends,27.56-33.65,friends_s09e03_seg02_clip_13,Humiliated 1798,House tells Wilson he's canoeing. ,House tells Wilson he's marinating.,House tells Wilson he's stewing over the apartment.,House tells Wilson he's relieving tension in his legs.,House tells Wilson he's pretending to go deep sea diving.,0,What does House tell Wilson he is doing after Wilson finds him in his bathtub?,123837,House M.D.,22.46-28.42,house_s06e12_seg02_clip_00,House tells Wilson he's canoeing. 1799,lipstick ,a bottle of water ,a cookie ,a salt shaker ,a coffee cup,4,What does Ross pull away from Phoebe when talking in the coffee shop? ,123838,Friends,24.41-31.73,friends_s06e03_seg02_clip_01,a coffee cup 1800,A slide of a lung xray.,Babies in their basinettes.,Someone's brain scan.,Her notes for a lecture she's about to give.,Her half eaten sandwich.,1,What is Meredith looking at after George gets called away for a code?,123839,Grey's Anatomy,54.89-64.19,grey_s01e02_seg02_clip_07,Babies in their basinettes. 1801,Rachel.,Monica.,Ross.,Chandler.,Phoebe.,1,Who walks into the coffee shop when Joey is sitting inside?,123840,Friends,0.34-5.44,friends_s09e04_seg02_clip_00,Monica. 1802,Kidneys,Brain,Liver,Esophagus,Stomach,2,Where did House say Naomi's cancer metastasized to after he told him it was Stage IV?,123841,House M.D.,56.28-63.72,house_s01e18_seg02_clip_00,Liver 1803,A bucket.,A chair.,His cane.,A wood board.,A metal pipe. ,2,What did House use to block the zombie when he was on the ground? ,123842,House M.D.,27.55-36.19,house_s07e15_seg02_clip_11,His cane. 1804,Maria,Hannah,Mia,Thirteen ,Jane,3,"Who was Seth talking to when he said ""Do i sound like her?""",123843,House M.D.,10.52-19.99,house_s05e22_seg02_clip_16,Thirteen 1805,Foreman volunteered the group when the patient came into the ER,House has worked with this type of illness with great success,Wilson asked House to do him a favor,The patient is a friend of House,Dr. Cuddy assigned the case to House and his students,2,Why are Chase and Cameron working on the female patient's case when they do the ultrasound?,123844,House M.D.,0-4.4,house_s01e10_seg02_clip_11,Wilson asked House to do him a favor 1806,He gives House a hug,He punches him in the arm shoftly,He takes house's coffee from him,He hands house a folder,He points his finger at house,4,What does Wilson do to House when he says you're gonna wind up alone?,123845,House M.D.,52.52-62.52,house_s01e19_seg02_clip_17,He points his finger at house 1807,Juice from a box.,Soda from a can.,Coffee from a mug.,Milk from a glass.,Water from a bottle.,4,What did Leonard drink after he said really really bad?,123846,The Big Bang Theory,9.23-13.85,s02e03_seg02_clip_16,Water from a bottle. 1808,Howard and Leonard are in the movie theater.,Howard and Leonard are in the hospital.,Howard and Leonard are at the school.,Howard and Leonard are in Sheldon's bed together.,Howard and Leonard are standing on a balcony above the Plaza Mayor.,0,Where are Howard and Leonard when they have their conversation?,123847,The Big Bang Theory,12.33-19.54,s09e19_seg02_clip_08,Howard and Leonard are in the movie theater. 1809,On the table,On his waist,On the backrest,Across his chest. ,behind his back,1,Where did Taub placed his hands when he talked about his ideas?,123848,House M.D.,0-12.74,house_s06e18_seg02_clip_22,On his waist 1810,Feeling sorry for him,Apologizing for him,Covering for him,Making excuses for hom,Making allowances,3,What does Cuddy tell House she is tired of after she tells him screw you?,123849,House M.D.,4.57-10.97,house_s06e21_seg02_clip_18,Making excuses for hom 1811,He needs a new labcoat.,She's fired.,He lost his car keys.,It's lunch time.,A donor heart became available.,4,What does Burke announce after calling Bailey's name?,123850,Grey's Anatomy,4.8-20.65,grey_s02e12_seg02_clip_03,A donor heart became available. 1812,The insurance company demanded a second opinion,Sebastian wanted a second opinion,Sebastian's backers wanted a second opinion,Sebastian's family wanted him to get a second opinion,He really just needed the facility for testing and treatment,2,Why is Sebastian seeking House's opinion in the first place when he is so sure what is wrong?,123851,House M.D.,64.82-69.32,house_s02e04_seg02_clip_01,Sebastian's backers wanted a second opinion 1813,Leonard tells Sheldon to dump Amy. ,Leonard tells Sheldon to get over Amy. ,Leonard tells Sheldon to have his relationship somewhere else. ,Leonard tells Sheldon to ditch Amy. ,Leonard tells Sheldon to go away. ,2,What does Leonard say about Amy when they reach their apartment floor?,123852,The Big Bang Theory,26.79-30.17,s04e03_seg02_clip_03,Leonard tells Sheldon to have his relationship somewhere else. 1814,His car is in the shop being worked on and his money is being held until his divorce proceedings are over.,He got into a bad accident so he cannot use his car and House stole all his money so it's not there.,He parked in a no parking zone and his car was towed and He lost all his money gambling.,The government has frozen everything because he is involved in a drug investigation related to pain meds.,He is unable to use his car because he let someone borrow it and all of his things are involved in a murder case.,3,Why is Wilson unable to use his money or his car when he needs to get places or buy things?,123853,House M.D.,19.12-31.86,house_s03e08_seg02_clip_01,The government has frozen everything because he is involved in a drug investigation related to pain meds. 1815,She does nothing.,She kisses him.,She bites him.,She hugs him.,She hits him.,4,What does Rachel do to Chandler after she finds out that Ross and Emily are in Vermont?,123854,Friends,26.86-37.19,friends_s04e14_seg02_clip_08,She hits him. 1816,Her friend from high school,Her half brother,Her husband,Her dad.,The other Phoebe's exboyfriend.,3,Who does Phoebe say Frank is when she's talking to the other Phoebe?,123855,Friends,0.32-15.4,friends_s03e25_seg02_clip_04,Her dad. 1817,Leo said he was a cop,Leo said he owns his own bakery,Leo said he rents cars to people,Leo said he was a paper sales man,Leo said he was a store owner,3,What did Leo say he did after freaking out?,123856,Castle,54.97-57.67,castle_s05e08_seg02_clip_07,Leo said he was a paper sales man 1818,Because the knock interrupted the show Leonard and Penny were watching.,Because Penny and Leonard just started making out.,Because the knock made a hole in the door.,Because the knock woke up Penny.,Because the knock woke up Leonard.,1,How come Penny gets upset after she hears a knock on the door?,123857,The Big Bang Theory,15.14-32.45,s03e04_seg02_clip_10,Because Penny and Leonard just started making out. 1819,She moved the dresser.,She dusted the furniture.,She watered the plants.,She jumped on the bed.,She opened the window.,3,What did Rachel do after she said okay to Monica?,123858,Friends,14.65-21.36,friends_s06e18_seg02_clip_07,She jumped on the bed. 1820,Ricky and his friends,Crooks and liars,Friends and killers,Crooks and women,Crooks and killers,4,What does Cannell mention is down there when asking Ricky if he's nuts?,123859,Castle,0-4.28,castle_s02e01_seg02_clip_16,Crooks and killers 1821,"They watch ""Meet the Parents""","""Meet the Parents""",They dont watch a movie its a t.v. show,"They watch ""The Ring""","They watch ""Star Wars""",4,What movie does Ted and Marshall watch after leaving the bar?,123860,How I Met You Mother,11.36-23.6,met_s04e01_seg02_clip_09,"They watch ""Star Wars""" 1822,Blue,Black,Orange,Red,Yellow,1,"What color is Beckett's shirt when she say's ""What is it?""?",123861,Castle,116.86-127.03,castle_s08e13_seg02_clip_26,Black 1823,A tabloid collection and photos of the victim,A dead body and a map of the crimes,A scheduled plan of the crime and a severed hand,Photos of the crime and a map,A severed finger in a jar and a tabloid cover of the crime,4,What are 2 implied clues the detectives find before the suspect came home?,123862,Castle,10.58-20.73,castle_s01e07_seg02_clip_25,A severed finger in a jar and a tabloid cover of the crime 1824,Fred Smith,Steven Lambert,Fletcher Finnegan,Richard Castle,Doug Lamborn,1,What was Fletcher's assumed name after Beckett and Castle find out about his identity,123863,Castle,0-16.56,castle_s02e04_seg02_clip_08,Steven Lambert 1825,sperm,nothing ,scarf,beads,Necklace,4,What is arround Berndette's neck when Howard says Sometimes just by asking them out?,123864,The Big Bang Theory,68.95-77.04,s07e12_seg02_clip_12,Necklace 1826,He's good looking,He found what he's looking for,He has an attitude problem,He's too good looking for the apartment,The apartment looks worse with him in it,2,What does Sheldon think of the man in the chair when he asks his chemistry question?,123865,The Big Bang Theory,30.94-43.56,s09e04_seg02_clip_06,He has an attitude problem 1827,Bernadette pulled Howard home in a wagon.,Bernadette called a cab for Howard.,Bernadette drove Howard home in her car.,Bernadette took Howard home on her motorcycle.,Bernadette drove Howard home in a golf cart.,0,How did Bernadette take Howard home when he twisted his ankle?,123866,The Big Bang Theory,27.6-31.63,s08e23_seg02_clip_11,Bernadette pulled Howard home in a wagon. 1828,An expensive ring.,Wedding Cake.,Babies,A big dress.,A wedding.,2,What did Chandler say that Monica wanted after they mentioned marriage?,123867,Friends,29.77-35.36,friends_s05e15_seg02_clip_07,Babies 1829,Thomas says he's going back to Ireland.,Thomas says he's going to the bathroom.,Thomas says he's going to get some fresh air.,Thomas says he's going back to his hotel.,Thomas says he's going to wait in the car.,2,Where does Thomas say he's going before walking away from the table?,123868,House M.D.,38.55-46.36,house_s08e14_seg02_clip_21,Thomas says he's going to get some fresh air. 1830,She says that sex is not interesting to women at all.,She says that Tinkerbell is a lesbian.,She says that all women have low self esteem.,"She said ""My point is that Tinkerbell just needs to get her some.""",She says that all ladies hate men.,3,What did the girl say to Leslie after he spoke to her?,123869,The Big Bang Theory,0-38.76,s02e03_seg02_clip_12,"She said ""My point is that Tinkerbell just needs to get her some.""" 1831,Leonard looks out the window.,Leonard proposes to Penny.,Leonard sits on the floor.,Leonard hugs Penny.,Leonard kicks his leg in the air like Michel Jackson.,4,What does Howard do after he spins around?,123870,The Big Bang Theory,0-1.98,s10e04_seg02_clip_14,Leonard kicks his leg in the air like Michel Jackson. 1832,The table.,Her forehead.,Her chair arm.,The window.,Her shoulder.,1,What did Cameron wipe after House said a guy was pounded one time too many?,123871,House M.D.,83.32-90.07,house_s01e20_seg02_clip_07,Her forehead. 1833,They are eating Italian food. ,They are eating chinese food. ,They are eating Mexican food. ,They are eating food from Greece. ,They are eating food from Hawaii. ,1,What is everyone eating when they are eating dinner?,123872,The Big Bang Theory,6.21-7.45,s04e01_seg02_clip_00,They are eating chinese food. 1834,"Foreman, Chase, and Cameron",Cuddy,Wilson and Cuddy,Wilson,Cameron,3,Who did House go to see after he told the nurses what to do with Lupe?,123873,House M.D.,41.42-50.52,house_s03e20_seg02_clip_12,Wilson 1835,Chase,Foreman,The woman Doctor,The Patient,House,1,Who walks away first after the story of the Boy Who Cried Wolf statement?,123874,House M.D.,24.04-40.51,house_s02e09_seg02_clip_14,Foreman 1836,he had a large growth,he had developed pustules,his heart was unstable,his breathing was erratic,he was having too many seizures,1,Why did the man in the safety suit say that the male patient was too dangerous to transport when House confronted them in the hallway?,123875,House M.D.,32.79-41.09,house_s07e07_seg02_clip_12,he had developed pustules 1837,Sheldon is left with his mouth open in disbelief. ,Sheldon is furious. ,Sheldon cries. ,Sheldon breaks out his white board and marker. ,Sheldon looks up her theory online. ,0,How does Sheldon respond when Amy says Indiana Jones doesn't need Indiana Jones?,123876,The Big Bang Theory,24.24-44.4,s07e04_seg01_clip_01,Sheldon is left with his mouth open in disbelief. 1838,Cameron is laying on the floor.,Cameron is laying on a hospital bed.,Cameron is laying on a bench.,Cameron is laying on a couch.,Cameron is laying in a bath tub.,1,Where is Cameron laying when House is talking to her about a puppy?,123877,House M.D.,2.23-6.23,house_s02e24_seg02_clip_22,Cameron is laying on a hospital bed. 1839,stroke,heart attack,breakfast,alcohol ,pills,1,What did house say he had this morning when talking to kutner and taub?,123878,House M.D.,6.51-11.16,house_s04e16_seg02_clip_01,heart attack 1840,"When Rachel asks ross why he never said anything to her, she points her finger at him.","When Rachel asks ross why he never said anything to her, she shakes her fist at him.","When Rachel asks ross why he never said anything to her, she slaps her hand across his face.","When Rachel asks ross why he never said anything to her, she claps her hand to her chest.","When Rachel asks ross why he never said anything to her, she picks up a cup with her hand and throws it.",0,What does Rachel do with her hand when she asks Ross why he never said anything to her?,123879,Friends,29.37-33.54,friends_s02e07_seg02_clip_18,"When Rachel asks ross why he never said anything to her, she points her finger at him." 1841,a misdemeanor, felony,a night in jail,a day in court,losing his job,1,What did Chase say working for House is not worth after closing the closet door?,123880,House M.D.,14.22-18.57,house_s02e19_seg02_clip_17, felony 1842,A cup of coffee,A black file,A tan file,House did not take anything from huse,A blue file,4,What did house take from Cameron when he was on the bed?,123881,House M.D.,10.35-17.55,house_s02e24_seg02_clip_04,A blue file 1843,Purple,Blue,Greeen,Red,White,4,"What color is the shirt that Cuddy is wearing when she say's ""Wilson's back.""?",123882,House M.D.,9.68-19.36,house_s05e01_seg02_clip_00,White 1844,Alexis is gone to school.,Alexis is still in bed.,Alexis is using the bathroom.,Alexis is window shopping before her violin lesson.,Alexis is at the gym for an early morning workout.,3,Where is Alexis when Castle is talking to his mother after waking up.,123883,Castle,70.97-76.54,castle_s03e15_seg02_clip_15,Alexis is window shopping before her violin lesson. 1845,That Ross is a cat,That she is the most beautiful woman in the world,That there is a woman inside the cat,That she is a cat,That the cat is not real,2,What does Rachel say she believes after Ross asks a question?,123884,Friends,33.87-40.89,friends_s04e02_seg02_clip_08,That there is a woman inside the cat 1846,Foreman gives House money from his wallet,Foreman says a silent prayer,Foreman bends down and ties House's shoe,Foreman changes from a neck tie to a bowtie,Foreman puts on a costume mask,0,What does Foreman do before walking in the door after House,123885,House M.D.,82.65-91.83,house_s03e05_seg02_clip_05,Foreman gives House money from his wallet 1847,House wanted to be Margo's friend.,House could tell when Margo was lying.,House was not trying to hurt Margo.,House was not married to Margo.,House hate people who lied to him.,3,Why did House feel Margo did not have to lie to him when he came to visit her?,123886,House M.D.,34.51-37.27,house_s02e11_seg02_clip_19,House was not married to Margo. 1848,The couch.,A recliner. ,A lawn chair.,The bathroom door.,The apartment door. ,2,What is next to Chandler when he is telling Kathy goodnight?,123887,Friends,0-2.03,friends_s04e06_seg02_clip_19,A lawn chair. 1849,a dog ate the phone,cell phone was detroyed,cell phone was shot by a gun,there was caller id,call was made from a burner cell,4,How do they know they cant trace the call before they even send it to tech anyalist?,123888,Castle,2.7-90.02,castle_s07e05_seg02_clip_02,call was made from a burner cell 1850,Xiang and Zhang Ganghong.,Liu and Zhang Ganghong.,Zhou and Biyu Ganghong.,Xiang and Biyu Ganghong.,Zhou and Zhang Ganghong.,3,Who did the CIA computer tech say Mia's parents were when Castle and Beckett were with Sophie at the CIA?,123889,Castle,65.44-70.85,castle_s04e16_seg02_clip_21,Xiang and Biyu Ganghong. 1851,secret of narnia ,the answers to a puzzle ,the suspect has a cabin along the hudson river,cordinates to a nyc home,were he buried the victims ,2,What information did the prisioner give castle after he agrees to castles idea,123890,Castle,78.34-86.44,castle_s07e15_seg02_clip_14,the suspect has a cabin along the hudson river 1852,He started using humor as a defense mechanism.,He stayed with his mom.,He stayed with his dad.,He started to feel more emotional.,His parents didn't get divorced.,0,What did Chandler do after his parents got a divorce.,123891,Friends,7.66-14.4,friends_s03e17_seg02_clip_02,He started using humor as a defense mechanism. 1853,applaude,run to the elevator,congratulate him,hide somewhere,look away,4,What does George suggest everyone do when the new chief comes through the door?,123892,Grey's Anatomy,77.48-85.63,grey_s03e18_seg02_clip_03,look away 1854,260,350,360,180,900,2,What was the charging amount used to resuscitate the patient when there was an emergency?,123893,House M.D.,76.75-80.93,house_s02e15_seg02_clip_15,360 1855,A Spock costume,A maid costume,A red ball cap,A basketball jersey,An eye patch,1,What is Sheldon wearing when he enters the lunchroom? ,123894,The Big Bang Theory,6.22-15.56,s05e21_seg02_clip_07,A maid costume 1856,On the phone.,Clipping his toe nails.,Shaving.,Taking a shower.,Making the bed.,0,What was Joey doing after Monica said something about not being on TV?,123895,Friends,0-5.99,friends_s05e04_seg02_clip_11,On the phone. 1857,"No reaction, just started dancing with her.",Very happy to dance with her.,Not too happy.,Told her his feet hurt.,Excused himself and went to the bathroom.,2,What was Ross's reaction when the little girl wanted to dance with him?,123896,Friends,5.58-9.92,friends_s08e01_seg02_clip_18,Not too happy. 1858,"Vomiting, heart attack and itchy feet","headache, indigestion, burping","blindness, stomach cramps, drooling","Loss of hearing, vomiting, pacing","indigestion, itchy feet, fainting",0,What were the three symptoms Foreman listen when talking to house?,123897,House M.D.,0-12.15,house_s03e08_seg02_clip_04,"Vomiting, heart attack and itchy feet" 1859,"""Rachel please help me calm them down.""","""Wow, you look funny Joey""","""What are you two really arguing about. This is ridiculous.""","""Can't we resolve this somehow?""","""Ok, enough. Enough with the lunging. Neither of you can come to the party!""",4,What does Ross say to Joey and Chandler after their argument? ,123898,Friends,46.41-55.33,friends_s03e02_seg02_clip_16,"""Ok, enough. Enough with the lunging. Neither of you can come to the party!""" 1860,Chest,Shoulder,Knees,Back,Head,2,Where did the killer start shooting before eventually killing Simmons?,123899,Castle,63.21-67.21,castle_s06e22_seg02_clip_07,Knees 1861,He didn't believe her.,He called her a rookie.,He said she wasn't doing her job.,He removed her off the case.,He wasn't helping.,3,Why was Beckett upset after her talk with Montgomery about Simmons?,123900,Castle,42.96-53.59,castle_s03e13_seg02_clip_08,He removed her off the case. 1862,Xang said he killed the pig in self-defense.,Superstition. He wanted to curse his grandson.,Xang said he didn't remember doing such a thing.,Xang was preparing for a barbecue he was planning.,Superstition. He believed it would save his grandson.,4,Why did Xang say he dismemberd a pig in his grandson's bedroom when his daughter asked him why he had done such a thing? ,123901,House M.D.,65.74-85.36,house_s08e18_seg02_clip_03,Superstition. He believed it would save his grandson. 1863,She walks up to the counter. ,She passes out. ,She drops something. ,She holds up her hands. ,She smiles. ,0,What does Phoebe do after she stands up from the couch?,123902,Friends,23.64-29.31,friends_s09e12_seg02_clip_00,She walks up to the counter. 1864,To the store,to the hospital ,to dinner,to the movies,to Sheldon apartment,1,Where ws Sheldon and Amy going when they was in the car?,123903,The Big Bang Theory,0-54.44,s08e09_seg02_clip_07,to the hospital 1865,Large cows,Milking dogs,Cuddy's breasts,Cameron's breasts,The patient's breasts,2,What is House talking about when he says those puppies are going into the dairy business?,123904,House M.D.,0-15.51,house_s03e02_seg02_clip_12,Cuddy's breasts 1866,It was when Neil told him he bought one of the buildings it overlooks.,It was when Neil told Taub that he was breaking out the really good stuff.,"It was after Neil had told him that economy, not medicine, is what matters.",After Neil told Taub that he had put a sedative in his drink and to relax.,Taub went to the window after realizing that Neil was dating Taub's ex.,1,"When Taub was in Neil's office, when was it that Taub went over to the large window and looked out?",123905,House M.D.,66.62-72.02,house_s05e18_seg02_clip_12,It was when Neil told Taub that he was breaking out the really good stuff. 1867,Castle's face had taken on an eerie glow much like that of the victim.,A slash of light appeared across Castle's neck just like in the crime scene photos.,"Castle had not noticed before, but his shoes were invisible on camera.",Castle had seen a scissors on a desk rotate toward him without aid of a human hand.,Castle had seen a circular ball of light rolling across the floor.,1,What visual effect does Castle reveal was frightening about the video of himself after Esposito tells him he needs to stop watching horror movies? ,123906,Castle,38.75-46.68,castle_s08e21_seg02_clip_15,A slash of light appeared across Castle's neck just like in the crime scene photos. 1868,changing clothes,talking on the phone,surfing the net,looking out the window,writing at his desk,1,What is Sheldin doing after the start of the scene?,123907,The Big Bang Theory,7.68-64.02,s01e08_seg02_clip_00,talking on the phone 1869,russien,dirty southerner,redneck french,alabama irish,pennsylvania dutch,4,what language was monica speaking after the woman started to speak a foreign language to her?,123908,Friends,9.52-17.14,friends_s01e21_seg02_clip_07,pennsylvania dutch 1870,A 50th Birthday gift.,A 10th anniversary gift.,A 20th anniversary gift., An engagement gift.,A 40th Birthday gift.,3,"Why did Cynthia say she gave her husband the breifcase before she shook her head ""NO""?",123909,Castle,39.11-48.31,castle_s04e03_seg02_clip_25, An engagement gift. 1871,Dead,Home sick ,Babysitting,Busy working,Under quarantine,4,Where does Howard say Bernadette is when Penny asks?,123910,The Big Bang Theory,8.1-19.81,s04e11_seg02_clip_06,Under quarantine 1872,A cat,A dog.,A peace symbol,A bug,A rabbit,2,What does Phoebe have on her necklace when she is talking about Amanda calling her on her mobile?,123911,Friends,4.04-10.56,friends_s10e03_seg02_clip_02,A peace symbol 1873,Meredith kicks Alex.,Meredith stares angrily at Alex.,Meredith hugs Derek.,Meredith dances with Derek.,Meredith walks out the door.,1,What does Meredith do after Alex says Addison did not exactly yell?,123912,Grey's Anatomy,18.73-20.1,grey_s02e06_seg02_clip_11,Meredith stares angrily at Alex. 1874,Lecturing him,Showing him cat pics,Asking for directions,Selling insurance,Pitching a new tv show pilot,1,What is the woman doing when Chandler is sitting down?,123913,Friends,0-10.08,friends_s09e09_seg01_clip_00,Showing him cat pics 1875,Ross is vegan.,Dr. Greene is really hungry.,Rachel doesn't like lobster.,Ross is allergic to lobster.,Dr. Greene doesn't like lobster.,3,Why did Dr. Greene ask for 2 lobsters and a menu when the waiter took his order?,123914,Friends,28.36-44.75,friends_s03e07_seg02_clip_08,Ross is allergic to lobster. 1876,Because Richard is ill. ,Because Ellis doesn't care anymore. ,Because Meredith is ill. ,Because Ellis is ill. ,Because Adele is ill. ,3,Why does Ellis ask Richard to look out for Meredith when he visits her?,123915,Grey's Anatomy,18.11-25.36,grey_s03e14_seg02_clip_25,Because Ellis is ill. 1877,No board games,Four board games,Two board games,One board games,Three board games,4,How many board games are on the shelf when Mr. Geller was talking to Ross?,123916,Friends,0-2.14,friends_s07e13_seg02_clip_13,Three board games 1878,Raj dances with Penny.,Raj walks out the door.,Raj smacks Howard.,Raj looks at his phone and then his dog.,Raj dances with Bernadette.,3,What does Raj do after Howard hangs up on him?,123917,The Big Bang Theory,16.84-19.48,s10e04_seg02_clip_14,Raj looks at his phone and then his dog. 1879,Joey's commerical,A free sports package,Free porn,Joey's soap,A commercial for a discount at their favorite restaurant,2,What are Joey and Chandler happy to find after they check their television?,123918,Friends,9.51-19.62,friends_s08e19_seg02_clip_05,Free porn 1880,Her violin.,Her moneybag.,Her necklace.,Her watch.,Her belt.,3,What did Stella check on her arm after they watched the movie?,123919,How I Met You Mother,28.53-33.5,met_s03e13_seg02_clip_16,Her watch. 1881,monana,malery,mandy,miza,mama,0,what did Monica say her name was after introducing herself to the woman?,123920,Friends,2.22-6.35,friends_s01e21_seg02_clip_07,monana 1882,Ryan is sleeping,Ryan is jogging,Ryan is dancing,Ryan is smoking,Ryan is standing in front of a whiteboard ,4,What is Ryan doing when Esposito joins the group?,123921,Castle,38.26-45.46,castle_s05e11_seg02_clip_07,Ryan is standing in front of a whiteboard 1883,They're big fans of the author ,They are in awe of Castle's intellect,They've noticed the burgeoning sexual tension between the two,They're in detective mode 100% of the time,"They don't like Castle, so they just want to make fun of him a bit",2,Why do Ryan and Esposito question Castle when he notices Beckett seemed eager to cancel her date?,123922,Castle,59.02-76.86,castle_s02e14_seg02_clip_18,They've noticed the burgeoning sexual tension between the two 1884,Castle said the killer didn't know the victim.,Castle said the killer was perhaps an insider.,Castle said the killer was high on drugs.,Castle said the killer was probably a woman.,Castle said the killer was probably a family member.,1,How did Castle describe the killer after he heard the body was shoved in a closet.,123923,Castle,12.49-17.66,castle_s03e18_seg02_clip_02,Castle said the killer was perhaps an insider. 1885,sat by his mother,walked into Ed's kitchen,took one of the costumes out,played with Ed's hat,hugged his mom,0,What did Ted do when Castle says that it looks as if Ed took his job seriously?,123924,Castle,53.11-56.72,castle_s05e09_seg02_clip_04,sat by his mother 1886,"Marshall's father wanted him to rent ""Godfather.""","Marshall's father wanted him to rent ""Star Wars A New Hope.""","Marshall's father wanted him to rent ""Taxi Driver.""","Marshall's father wanted him to rent ""Pulp Fiction.""","Marshall's father wanted him to rent ""Crocodile Dundee 3.""",4,What movie did Marshall's father tell him to rent right before his death?,123925,How I Met You Mother,34.53-37.19,met_s06e14_seg02_clip_14,"Marshall's father wanted him to rent ""Crocodile Dundee 3.""" 1887,"Amy's explanation is that they don't have a lot in common, and that Penny warned her about Howard.",Amy's explanation is that they are always working or busy.,Amy's explanation is that they are never in the same country at the same time.,Amy's explanation is that Howard's breath stinks.,Amy's explanation is that Howard makes her feel uncomfortable all the time.,0,What is Amy's explanation when Howard wonders why they've never spent time alone together?,123926,The Big Bang Theory,0-20.78,s07e03_seg02_clip_06,"Amy's explanation is that they don't have a lot in common, and that Penny warned her about Howard." 1888,To hide under the bed.,The opened the door.,To the bathroom.,To lay in bed.,To look out the window.,4,Where did Howard go after he said he thought he heard the hot tub?,123927,The Big Bang Theory,20.71-26.11,s10e05_seg02_clip_05,To look out the window. 1889,Her mother found the name in the newspaper,She's named after a character in a book,She's named after her grandmother,She's named after a movie star,She's named after her mother's friend from high school,4,How does Phoebe say she got her name before she starts eating cookies?,123928,Friends,0-41.71,friends_s03e25_seg02_clip_04,She's named after her mother's friend from high school 1890,Because he loses everything.,Because there was such a mess on his desk.,Because he has been off for a week.,Because he let someone else handle the contracts.,Because he never files anything.,1,Why did Rachel say he'd couldn't possibly know if the contracts were on his desk when they she started looking for them?,123929,Friends,35.66-47.54,friends_s07e12_seg02_clip_10,Because there was such a mess on his desk. 1891,He moves his thumbs back and forth.,He folds his hand.,He moves his water closer to him.,He folds a green napkin and puts it in his lap.,He folds a white napkin and puts it in his lap.,3,What does Ross do with his hands when he says there never was a library?,123930,Friends,1.26-6.3,friends_s03e07_seg02_clip_08,He folds a green napkin and puts it in his lap. 1892,She was sitting in the chair at the coffee shop.,She was onstage playing guitar.,She was standing at the bar waiting for her coffee.,She was coming out of the bathroom.,She was using the payphone in the coffee shop.,0,Where was Phoebe when Gunther asked her about reading the obituaries?,123931,Friends,3.82-13.36,friends_s10e15_seg02_clip_00,She was sitting in the chair at the coffee shop. 1893,Two,One,Three,Five,Four,0,How many people were in front of the door when Beckett entered the clinic?,123932,Castle,29.26-33.76,castle_s06e09_seg02_clip_07,Two 1894,Bernadette begs Howard to change his mind.,Bernadette Cries and throws a tantrum,Bernadette is frustrated and annoyed,Bernadette punches and kicks Howard,Bernadette is fine with postponing the wedding for Howard's weekend Plans,4,How does Bernadette Respond to Howard's weekend plans when they are talking?,123933,The Big Bang Theory,29.97-50.48,s05e24_seg01_clip_00,Bernadette is fine with postponing the wedding for Howard's weekend Plans 1895,Lucas,Tim,Bob,Cuddy,Wilson,0,Who was in the background next to the sink when House's team was discussing their case? ,123934,House M.D.,10.92-23.21,house_s05e02_seg02_clip_05,Lucas 1896,foreman,cameron,house,chase,cuddy,1,Who tells george that they want to drill a hole in his head when it comes to finding out whats wrong with him?,123935,House M.D.,12.83-24.71,house_s03e06_seg02_clip_17,cameron 1897,taps his arm,took a chart from his hands,took meds from his hand,pulled the phone away from his hand,hung the line up,4,What did House do after the pharmacist picked the phone up?,123936,House M.D.,50.99-55.05,house_s04e14_seg02_clip_22,hung the line up 1898,He started crying.,He left the room.,He gave Rachel a hug.,He put his hands on his hips.,He began to laugh.,3,What did Ross do with his hands after Rachel asked him a question?,123937,Friends,15.41-25.04,friends_s08e22_seg02_clip_07,He put his hands on his hips. 1899,Wilson saw Stacy.,Wilson saw Cuddy.,Wilson saw Foreman.,Wilson saw Cameron.,Wilson saw House.,4,Who did Wilson see after Wilson opened the door?,123938,House M.D.,0-5.52,house_s02e22_seg02_clip_21,Wilson saw House. 1900,"House said without competition, we'd still be single cell organisms.",House said competition is healthy for the winners.,House said competition is the only way to get these guys to work.,House said competition weeds out all the deadbeats.,House said competition is good because he always wins.,0,How did House describe the need for competition when Cuddy told him he couldn't make a competition out of patient care?,123939,House M.D.,64.36-68.47,house_s04e03_seg02_clip_04,"House said without competition, we'd still be single cell organisms." 1901,because she wants to use it to hill flys,because he excited her,because she wants to use it in miniature tennis,because he looked so athletic,because she wanted to take picture of him with his paddle,1,Why does Phoebe want to take the Ping Pong paddle home after Mike made a comment,123940,Friends,29.65-40.06,friends_s09e23-24_seg02_clip_47,because he excited her 1902,Tyson walks outside of the apartment. ,Tyson let's them into his apartment. ,Tyson tries to close the door. ,Tyson calls the police. ,Tyson closes and locks his door. ,2,What does Tyson do after Castle and Ryan question him at his door? ,123941,Castle,78.06-85.07,castle_s07e15_seg02_clip_00,Tyson tries to close the door. 1903,House,Foreman,Cuddy,Cameron,No one,0,Who is with Wilson when he is driving his car?,123942,House M.D.,0-2.6,house_s05e04_seg02_clip_10,House 1904,May 19th.,July 4th.,April 28th.,January 1st.,December 25th.,2,What was the date on the time machine after Sheldon looked down at it?,123943,The Big Bang Theory,52.82-59.02,s01e14_seg02_clip_15,April 28th. 1905,A scar and stitches.,A large white bandage.,"Two red dots, one above each eye.",Lipstick from a kiss.,A thermometer to read her temperature.,2,What is on Sophias forehead when she is talking to Thirteen in her bed.,123944,House M.D.,0.86-5.62,house_s05e08_seg02_clip_21,"Two red dots, one above each eye." 1906,A locker room., A break room.,A patients room.,A hallway.,An elevator.,0,Where was Chase when House handed him a folder? ,123945,House M.D.,11.38-16.38,house_s05e17_seg02_clip_17,A locker room. 1907,Let him say bye,Give her medication,Give him a chance,Do no treat her,Risk his own life,4,How does Wilson want House to save Amber's life when trying to convince him to try something else?,123946,House M.D.,35.61-48.96,house_s04e16_seg02_clip_14,Risk his own life 1908,He accepts an award for being a great doctor.,He goes back home.,He takes off his tie and relaxes.,He confronts his childhood sweetheart.,He goes to show the boardmembers the new clinic.,4,What does Sloane do after he leaves the room?,123947,Grey's Anatomy,11.7-15.99,grey_s03e19_seg02_clip_23,He goes to show the boardmembers the new clinic. 1909,A teddy bear,A dinosaur fossil.,A newspaper.,A poodle,A tennis racket,2,What is Ross holding when he said something about this morning?,123948,Friends,6.26-10.72,friends_s08e07_seg02_clip_02,A newspaper. 1910,Phoebe throws a coin.,Phoebe throws her drink.,Phoebe throws a sandwich.,Phoebe throws monica.,Phoebe throws a fish.,0,What does Phoebe throw at the lurker after telling them to leave?,123949,Friends,0-5.57,friends_s05e23-24_seg02_clip_28,Phoebe throws a coin. 1911,Hangs up,Conferences in Ross,Stops playing Ross' song,Asks Ross to go find Rachel,She doesn't say anything,2,What does the radio personality do after Rachel calls?,123950,Friends,37.74-49.21,friends_s02e08_seg02_clip_19,Stops playing Ross' song 1912,Rachel will get on the swing if Ross holds a spider.,Rachel wants to be paid.,Rachel wants Ross to babysit Emma. ,Rachel will get on the swing if Ross holds it in place. ,Rachel will get on the swing if Ross does so too. ,0,How does Rachel bargain with Ross when Rachel agrees to go on the swing?,123951,Friends,47.45-53.32,friends_s10e07_seg02_clip_12,Rachel will get on the swing if Ross holds a spider. 1913,Chandler asks Phoebe if she feels sick,Chandler asks Phoebe if she feels dizzy,Chandler asks Phoebe if she is going to be cold,Chandler asks Phoebe if she is gonna be hot,Chandler asks Phoebe if she is pregnant,2,What does Chandler ask Phoebe after she takes the coat off?,123952,Friends,16.29-23.69,friends_s10e12_seg02_clip_25,Chandler asks Phoebe if she is going to be cold 1914,Drink coffe,Take notes,Check phone,Button up shirt,Open door,0,What did House do when Wilson was speaking?,123953,House M.D.,45.97-55.53,house_s03e20_seg02_clip_12,Drink coffe 1915,Embolism.,Poison.,Vaccine.,Medicine.,Chemical.,0,How the doctor died after a needle was injected?,123954,Castle,55.9-68.66,castle_s03e05_seg02_clip_03,Embolism. 1916,Leaning against a chair.,Laying on a bucket.,Leaning against a ladder.,Laying on the floor.,Leaning against the wall.,1,Where was House's cane before he used it to fight off the zombie?,123955,House M.D.,25.93-31.33,house_s07e15_seg02_clip_11,Laying on a bucket. 1917,Buddy Ebsen was in The Room.,Buddy Ebsen was in Inception.,Buddy Ebsen was in The Wizard of Oz.,Buddy Ebsen was in Miracle on 34th Street.,Buddy Ebsen was in Home Alone: Lost in New York.,2,What movie was Buddy Ebsen in when he experienced an allergic reaction that almost killed him?,123956,House M.D.,20.25-47.85,house_s04e02_seg02_clip_00,Buddy Ebsen was in The Wizard of Oz. 1918,On chair,On a table,On the floor,On the bed,On the window,0,Where was Kutner when he was sitting a room with others?,123957,House M.D.,1.37-6.37,house_s05e02_seg02_clip_05,On chair 1919,A girl screaming fire,A bunch of dogs,A rival gang,The property owners and security guards,The NYPD,4,Who interrupts the gathering when Castle and Alexis start asking questions?,123958,Castle,57.62-65.73,castle_s08e09_seg02_clip_08,The NYPD 1920,Unemployment office ,Hell,Court,Cuddy's office,Jail,4,Where does Foreman say they will go when they are discussing House's plan for a patient? ,123959,House M.D.,69.63-79.65,house_s07e11_seg02_clip_13,Jail 1921,Castle is hiding behind a car.,Castle is hiding behind a poster.,Castle is hiding behind a bush.,Castle is hiding behind a bed.,Castle is hiding behind a couch.,1,What is Castle hiding behind before talking to Beckett and Alexis?,123960,Castle,1.37-4.12,castle_s07e23_seg02_clip_00,Castle is hiding behind a poster. 1922,The baby that Mr. Niles is holding feels wonderful.,The baby that Mr. Niles is holding feels happy.,The baby that Mr. Niles is holding feels joyful.,The baby that Mr. Niles is holding feels surprised.,The baby that Mr. Niles is holding feels sad.,4,How does the baby feel that Mr. Niles is holding when Mark talks to Diana about breast implants?,123961,Grey's Anatomy,0-12.06,grey_s03e05_seg02_clip_12,The baby that Mr. Niles is holding feels sad. 1923,Penny's,Sheldon's,Amy's,Stuart's,Raj's,3,"Who's middle name did Howard mention to Bernadette after she said ""Yeah...""?",123962,The Big Bang Theory,34.22-40.82,s08e24_seg02_clip_11,Stuart's 1924,21,20,18,25,16,2,How old was Izzie when she left?,123963,Grey's Anatomy,0-8.55,grey_s01e09_seg02_clip_21,18 1925,House falls through the front door,House walks away,House is caught by someone,House slips on water,Nothing happena to House,3,What happens to House after he tries to leave the envelope at the door?,123964,House M.D.,70.21-78.02,house_s06e03_seg02_clip_13,House slips on water 1926,Chandler and Joey walk into their apartment,Monica and Rachel walk into their apartment,Rachel and Phoebe walk into their apartment,Ross and Monica walk into their apartment,No one walk into their apartment,0,Who walks into their apartment when they were talking about something?,123965,Friends,42.55-45.7,friends_s02e16_seg02_clip_08,Chandler and Joey walk into their apartment 1927,To cover the phone bill,A new job,To cover the rent,To get new furniture,To buy him a new house,2,What did Chandler offer Joey after they talked?,123966,Friends,36.1-39.67,friends_s06e06_seg01_clip_00,To cover the rent 1928,Monica needed to speak to Chandler,Monica's needed to borrow milk,Monica needed some help ,Monica had to borrow some sugar,Monica had to borrow cereal,1,Why had Monica initially come into the room when she saw Chandler?,123967,Friends,0-9.76,friends_s03e14_seg02_clip_13,Monica's needed to borrow milk 1929,On the couch.,On top of the counter. ,On the floor.,In the chair in front of her.,On the end table.,3,Where did Martha put her purse after she sat her coat down?,123968,Castle,0-3.4,castle_s07e16_seg02_clip_26,In the chair in front of her. 1930,Vivien went to 1st and Riverside.,Vivien went to 118th and Riverside.,Vivien went to 112th and Riverside.,Vivien went to 4th and West St.,Vivien went to 8th and North St.,2,Where did Vivien go when she got into the cab?,123969,Castle,0-9.12,castle_s03e02_seg02_clip_16,Vivien went to 112th and Riverside. 1931,lol,haha,Haaaa- Haaaaaa,Hee-hee-hee!,ho ho ho ho ,3,What did Raj say after Leonard asked how exactly would that laugh go?,123970,The Big Bang Theory,0-16.44,s01e13_seg02_clip_06,Hee-hee-hee! 1932,He shows them a video.,He shows them a drawing.,He shows them a warrant.,He shows them a notebook.,He shows them a photo.,4,What does Esposito show to Castle and Beckett after walking into the office?,123971,Castle,74.26-75.54,castle_s07e06_seg02_clip_14,He shows them a photo. 1933,Depressed.,Happy.,Scared,Indifferent.,Sad.,2,How did Chandler and Joey feel when they stated they left a baby on the bus?,123972,Friends,31.06-43.86,friends_s02e06_seg02_clip_12,Scared 1934,Throw their drinks on them ,Throw up ,Get up and run away,Eat their food,Toast their glasses,4,"What does the group do after Barney says, ""Lawsuit up!""",123973,How I Met You Mother,0-8.24,met_s03e08_seg02_clip_18,Toast their glasses 1935,He could sing,He could stand,He could move his finger,He could walk,He could remember things,2,What was Mr Walker able to show Meridth after the exam?,123974,Grey's Anatomy,49.96-60.32,grey_s01e09_seg02_clip_21,He could move his finger 1936,paper,nothing,sheet,clothes,wipes,2,What is covering the body before Stan Kopek talks,123975,Castle,75.89-85.82,castle_s02e14_seg02_clip_03,sheet 1937,"Ted, Barney, Marshall, and Lily are watching the game on the television at a restuarant.","Ted, Barney, Marshall, and Lily are watching the game on the television at a sports bar.","Ted, Barney, Marshall, and Lily are watching the game on the desktop computer.","Ted, Barney, Marshall, and Lily are watching the game on the television at home.","Ted, Barney, Marshall, and Lily are watching the game in the stadium.",3,"How are Ted, Barney, Marshall, and Lily watching the game after Ted told everyone to drink?",123976,How I Met You Mother,6.96-10.89,met_s02e14_seg02_clip_03,"Ted, Barney, Marshall, and Lily are watching the game on the television at home." 1938,"Dr. Barker says Royal was her patient ""just a few months"".","Dr. Barker says Royal was her patient ""for months"".","Dr. Barker says Royal was her patient ""for 2 years"".","Dr. Barker says Royal was her patient ""for a little over a year"".","Dr. Barker says Royal was her patient ""for years"".",4,How many years does Dr. Barker tell Beckett and Castle Royal has been her patient when talking about her work?,123977,Castle,0-3.12,castle_s04e13_seg02_clip_07,"Dr. Barker says Royal was her patient ""for years""." 1939,8:00 in the morning,4:00 in the morning,6:00 in the morning,5:00 in the morning,5:30 in the morning,3,When did Foreman say that he had been paged for the dystonia case before saying he was going back to bed?,123978,House M.D.,15.53-22.85,house_s03e15_seg02_clip_00,5:00 in the morning 1940,Sarah visited the police station.,The man was ID'd as Sam Parker.,Sarah called the police station.,Sarah visited the morgue.,Sarah saw the body in person when the police were there.,1,What reason does Beckett give after Sarah Reed tells her she now knows why the police were there?,123979,Castle,0-10.9,castle_s02e10_seg02_clip_05,The man was ID'd as Sam Parker. 1941,Leaving,Lying,Cheating,Dying,Sleeping,4,What does the woman ask Castle if he is doing before he makes a joke?,123980,Castle,0-8.65,castle_s06e04_seg02_clip_00,Sleeping 1942,His private areas.,His face.,His eyebrows.,His chest.,His ears.,4,Where did Ross's dad say he had to shave before the party?,123981,Friends,33.36-39.46,friends_s08e18_seg02_clip_04,His ears. 1943,Beckett is holding a pistol.,Beckett is holding her badge.,Beckett is holding a flashlight.,Beckett is holding handcuffs.,Beckett is holding a grenade.,0,What is Beckett holding when Luca is pointing a gun at her?,123982,Castle,7.33-10.08,castle_s07e10_seg02_clip_22,Beckett is holding a pistol. 1944,A phone,A TV remote control,A game controller,A calculator,A book,2,What does Howard have in his hands when Bernadette comes home?,123983,The Big Bang Theory,7.54-12.25,s09e07_seg02_clip_00,A game controller 1945,No one visited Penny in her house.,Howard visited Penny in her house.,Raj visited Penny in her house.,Sheldon visited Penny in her house.,Leonard visited Penny in her house.,4,Who visited Penny in her house before dinner?,123984,The Big Bang Theory,0.58-19.15,s01e03_seg02_clip_10,Leonard visited Penny in her house. 1946,Leaned at the door post. ,Sat at the entrance,Stood at the corner,Squat beside the shelf,Sat in front of the shelf,4,Where in the room was Foreman when he told house what he said makes no sense.,123985,House M.D.,4.5-15.51,house_s05e02_seg02_clip_18,Sat in front of the shelf 1947,A light snowfall and an American flag.,A glow around the moon and an American flag.,A bright sun and the American flag.,Pouring rain and an American flag.,Wind whipping an American flag.,2,What is shown outside the large wall of windows before Derek walks over to Meredith.,123986,Grey's Anatomy,70.22-73.37,grey_s02e11_seg02_clip_21,A bright sun and the American flag. 1948,the patient is bleeding ,the patient has a tumor,the patient as brain cancer,the patient had pins in their brain,the patient is okay,3,what did the xray scan of the patients brain reveal after running the patient through the xray machine?,123987,House M.D.,19.73-29.82,house_s05e04_seg02_clip_24,the patient had pins in their brain 1949,Yang scolds Kalperna.,Yang gives her Kalperna heimlich to make her throw it back up.,Yang slaps the pill out of Kalperna's hand.,Yang takes a pill as well.,Yang gives the pill to another patient.,0,How does Yang react after catching Kalperna take a pill?,123988,Grey's Anatomy,57.29-72.79,grey_s02e04_seg02_clip_04,Yang scolds Kalperna. 1950,She is jealous about Bernadette's looks. ,"She thinks Bernadette should be recognized for her work, not her looks. ",She is jealous about her achievements. ,She is jealous she is married to Howard. ,She is jealous that she is so smart. ,1,Why is Amy so upset when Bernadette says she was asked to be in a sexy scientist magazine?,123989,The Big Bang Theory,32.77-61.26,s08e07_seg01_clip_00,"She thinks Bernadette should be recognized for her work, not her looks. " 1951,He gave the names of the actual assassins.,He confessed that he had commited the murder.,He kept on saying that he new nothing.,He told them that there was a mexican gang involved in the murder.,He gave the name and address of the people he thought had comitted the murder.,3,What information did the man in the green sweater give the investigators after fearing being killed?,123990,Castle,54.03-88.7,castle_s04e21_seg02_clip_13,He told them that there was a mexican gang involved in the murder. 1952,She thought he was going to rat her out to Howard.,He had already told Howard something she wanted to keep secret.,She was angry he was telling her dad something.,Raj told Penny Bernadette hated her.,Raj told Amy Bernadette hated her.,0,Why did Bernadette call Raj a snitch after pulling over?,123991,The Big Bang Theory,27.41-43.12,s10e03_seg02_clip_15,She thought he was going to rat her out to Howard. 1953,Monica shows Chandler her new haircut.,Monica shows Chandler her new dress.,Monica shows Chandler her new boots.,Monica shows Chandler her new necklace.,Monica shows Chandler her new book.,2,What does Monica show Chandler after he gets home?,123992,Friends,0-36.39,friends_s08e10_seg01_clip_00,Monica shows Chandler her new boots. 1954,playing with tape ,checking charts,on the phone,listening to patients heart,performing a surgery ,0,What was Christina doing when talking to Meredith ?,123993,Grey's Anatomy,0-9.66,grey_s03e02_seg02_clip_16,playing with tape 1955,Ross got up to go to the kitchen,Ross got up to answer the door because it was the pizza,Ross got up to go to the bathroom,Ross didn't get up ,Ross got up to follow Rachel,1,Why did Ross get up from the couch when the doorbell rang?,123994,Friends,31.94-38.77,friends_s05e19_seg02_clip_04,Ross got up to answer the door because it was the pizza 1956,Leonard is with Penny.,Leonard is with Amy.,Leonard is with Bernadette.,Leonard is with Priya.,Leonard is with Raj.,0,Who is Leonard with when he comes home?,123995,The Big Bang Theory,44.12-51.02,s05e20_seg02_clip_14,Leonard is with Penny. 1957,All his life,All night,20 Years,20 Hours,20 Days,2,How long did Low say Stuckey had been waiting for the money when he was being questioned?,123996,Castle,73.69-77.4,castle_s03e03_seg02_clip_16,20 Years 1958,he was at the baby shower,he was at the dry cleaners,he was at his cousins house,he was at the zoo,he was at the beach,1,where was joey located when he was trying to pick up his clothes?,123997,Friends,23.51-56.66,friends_s06e22_seg02_clip_03,he was at the dry cleaners 1959,Ryan and Esposito were looking at a computer screen.,Ryan and Esposito were looking at a magazine.,Ryan and Esposito were looking at a beautiful woman.,Ryan and Esposito were looking at a fancy car.,Ryan and Esposito were looking at a criminal files.,0,What were Ryan and Esposito looking at before they turned to look at Castle?,123998,Castle,46.33-48,castle_s02e02_seg02_clip_03,Ryan and Esposito were looking at a computer screen. 1960,At the refreshment table,By the bathroom,at the desk on stage,by the smoking area,Next to the writers,0,Where is Kash standing when rachel suggests that joey introduce her and kash?,123999,Friends,43.84-50.79,friends_s08e05_seg02_clip_02,At the refreshment table 1961,Sheldon called Penny ugly,Sheldon called Penny the milk theif,Sheldon called Penny a burgular,Sheldon called Penny a dumby,Sheldon didn't call Penny anything,1,What did Sheldon call Penny when she said she ran out of milk?,124000,The Big Bang Theory,2.32-9.28,s02e21_seg02_clip_06,Sheldon called Penny the milk theif 1962,The patient had no eye inflammation.,The patient had no mouth sores.,The patient had no skin lesions.,The patient had no genital sores.,The patient had no outward signs.,2,Why did Wilson rule it out when House thought the patient may have Behcet's?,124001,House M.D.,6.01-8.31,house_s02e05_seg02_clip_01,The patient had no skin lesions. 1963,House,Chase,Wilson,Cameron,Foreman,2,Who did Cuddy think was responsible after Foreman's interview was sabotaged,124002,House M.D.,3.48-15.23,house_s03e23_seg02_clip_16,Wilson 1964,Stay in the room,Bribe the nurse,Listen through the door ,Tell the patient ,Bug the room,4,How does House think they will get information about the patient when discussing switching her medication?,124003,House M.D.,59.62-67.81,house_s07e11_seg02_clip_13,Bug the room 1965,On front a microwave.,Behind an orange chair.,Next to Bernadette.,Close to the TV.,Far from the sofa.,1,Where stands Raj when holding a bottle.,124004,The Big Bang Theory,0-56.24,s08e12_seg02_clip_02,Behind an orange chair. 1966,Esposito found a bloody sock.,Esposito found a photo of Amy Barrett.,Esposito found a dead rat.,Esposito found a wet blanket.,Esposito found a sleeping child.,1,What did Esposito find under a bed when he was investigating a crime scene?,124005,Castle,63.76-68.22,castle_s07e14_seg02_clip_13,Esposito found a photo of Amy Barrett. 1967,Thirteen confesses that she stole a car.,Thirteen confesses that she killed a woman.,Thirteen confesses that she broke into someone's house and stole some nice stuff.,Thirteen confesses that she killed a man.,Thirteen confesses that she won the UFC championship.,3,What does Thirteen confess to House after she finds out that he and Cuddy had been dating?,124006,House M.D.,18.21-65.08,house_s07e18_seg02_clip_07,Thirteen confesses that she killed a man. 1968,the woman was reading,the woman had done it before,the woman was eating,the woman was sleeping,the woman was in the house,1,why didn't the woman husband call the cop after the woman left the house,124007,Castle,19.71-89.59,castle_s01e05_seg02_clip_04,the woman had done it before 1969,The nurse,House,Foreman,April,The medical assistant,3,Who was Chase looking for when he was in the clean room entrance with Brandon?,124008,House M.D.,33.31-36.46,house_s01e03_seg02_clip_13,April 1970,Monica was not in this clip,Monica did not have anything in her hands,Monica set down the news paper,Monica set down her purse,Monica set down a napkin and a cup,4,What did Monica set down on the end table before joining Rachael and her mother for a hug?,124009,Friends,25.22-30.08,friends_s08e20_seg02_clip_13,Monica set down a napkin and a cup 1971,Christina is in the bedroom.,Christina is in the kitchen.,Christina is at the table.,Christina is at the front door.,Christina is in the bathroom.,3,Where is Christina when she walks into the apartment.,124010,Grey's Anatomy,87.74-117.39,grey_s03e09_seg02_clip_30,Christina is at the front door. 1972,Danny Ventaline,Daniel Valens,Danile Veltro,No one known actor,Danny Valentine ,4,Which actor is playing Castle when they are preforming the skit>,124011,Castle,21-28.15,castle_s07e22_seg02_clip_08,Danny Valentine 1973,Walk her dog.,The dishes.,Set the table.,Go to the store.,Call her mother.,1,What did Rachel have to do after her conversation with Ross?,124012,Friends,28.33-43.09,friends_s04e20_seg02_clip_04,The dishes. 1974,House trips on Tritter's foot.,House trips on his cane.,House trips on his shoelace.,House trips on a box.,House trips on a dog.,0,What does House trip on when walking towards the door?,124013,House M.D.,82.24-83.54,house_s03e05_seg02_clip_02,House trips on Tritter's foot. 1975,Wilson threw House a soda can,Wilson threw House a pair of keys,Wilson threw House a pair of pants,Wilson threw a coat to House,Wilson threw a pen at House,1,What did Wilson throw to House before House left the room,124014,House M.D.,6.63-15.92,house_s03e16_seg02_clip_17,Wilson threw House a pair of keys 1976,Foreman is very happy,Foreman thinks it's uneccessary,Foreman is sad,Foreman think it's too long of a letter,Foreman thinks that Taub will never get hired anywhere else,1,How does Foreman respond when Taub reveals that he wrote a letter of recommendation?,124015,House M.D.,17.95-30.56,house_s08e21_seg02_clip_09,Foreman thinks it's uneccessary 1977,He says you've broken up with me so many times and we have alot of first dates,He tells her she doesnt deserve anything nice,He says he doesnt wanna over do it with her.,He says because I dont have any money to do anything nice,He says because you always cheat on me.,0,How did Leonard answer when Penny asked why he hasn't done anything nice on her first date?,124016,The Big Bang Theory,0-20.47,s07e06_seg02_clip_00,He says you've broken up with me so many times and we have alot of first dates 1978,Ross was looking out the window,Monica was looking out the window,Phoebe was looking out the window,Rachel was looking out the window,Joey was looking out the window,3,Which friend is looking out the window when the man was speaking a foreign language,124017,Friends,32.17-41.32,friends_s01e07_seg02_clip_18,Rachel was looking out the window 1979,A phone,A fire extinguisher,A poster,A spider,A drawing,0,What is on the wall when House enters the room?,124018,House M.D.,0-8.1,house_s05e11_seg02_clip_17,A phone 1980,photo,clipboard,x-ray,envelope,box,3,What does Cameron hand to House when he comes into her office?,124019,House M.D.,6.27-12.54,house_s03e24_seg02_clip_24,envelope 1981,Gunther,Chandler,Joey,Mr. Heckles,Ross,4,Who does Rachel call a jerk when talking to Monica and Phoebe?,124020,Friends,44.97-51.17,friends_s01e18_seg02_clip_07,Ross 1982,He wants to have his cake and eat it too,He wants variety,He wants freedom,He wants a divorce,He wants that thrill,4,How does Rachel characterize what Taub really wants when they discuss their marriage?,124021,House M.D.,13.18-17.86,house_s06e18_seg02_clip_17,He wants that thrill 1983,start working,Leave,sit down,Call Ryan,watch television,3,What did Beckett do after talking to the guy on crutches?,124022,Castle,1.81-4.53,castle_s07e19_seg02_clip_10,Call Ryan 1984,Penny punched Sheldon.,Penny turned to look at Leonard.,Penny dance with Leonard.,Penny lay back on the couch .,Penny laughed out loud.,1,What did Penny do after Leonard said her hands were bigger than his?,124023,The Big Bang Theory,23.21-27.85,s04e13_seg02_clip_01,Penny turned to look at Leonard. 1985,He hugged Monica,He opened the refrigerator,He sat on the couch,He sipped coffee,He picked up the box of plates,4,What did Chandler do before Joey came in?,124024,Friends,56.72-59.96,friends_s09e08_seg02_clip_22,He picked up the box of plates 1986,Ryan;s witness was a hot mess.,Esposito got Lanie to go out with him again.,Esposito won the lottery.,Castle stumbled when he was walking.,Esposito is proud and cocky he found a good witness.,4,Why is Esposito smug when Kelly produces evidence to Beckett?,124025,Castle,11.7-18.91,castle_s04e13_seg02_clip_03,Esposito is proud and cocky he found a good witness. 1987,Cuddy will fire Gail.,Cuddy will report the theft to the DEA.,Cuddy will help Gail join a weight loss support group.,Cuddy will help Gail steal pills.,Cuddy will talk to Gail's husband for her. ,0,What does Cuddy say she'll do after the conversation with Gail?,124026,House M.D.,80.06-87.42,house_s06e13_seg02_clip_10,Cuddy will fire Gail. 1988,A box.,Her coat.,A lunch bag.,A red sweater.,Her purse.,4,"What does Izzie put in her locker right after she says, ""He's in George's room?""",124027,Grey's Anatomy,6.31-10.36,grey_s03e18_seg02_clip_01,Her purse. 1989,Chandler and Monica are sitting on an orange couch.,Chandler and Monica are sitting on bar stools.,Chandler and Monica are sitting on the floor.,Chandler and Monica are sitting at the kitchen table.,Chandler and Monica are sitting on a bed.,0,Where are Chandler and Monica sitting when Phoebe talks about Amanda calling her on her mobile?,124028,Friends,4.66-17.7,friends_s10e03_seg02_clip_02,Chandler and Monica are sitting on an orange couch. 1990,She said it's not a new symptom.,She said she feels sorry for him.,She said she doesn't know what is wrong with him.,She said he needs to get over his issues.,She did not respond.,0,How does Park respond when Taub says in found Bobby crying in fetal position?,124029,House M.D.,63.95-63.95,house_s08e16_seg02_clip_08,She said it's not a new symptom. 1991,Beckett said both Theresa and Alfred were cleared. ,Beckett said a doorman and two plumbers were cleared. ,Beckett said a couple teenagers and a cleaning lady were cleared. ,"Castle was cleared, Beckett said. ","Montgomery was cleared, Beckett said. ",2,Who did Beckett say were cleared after the kidnapping? ,124030,Castle,73.11-86.32,castle_s01e09_seg02_clip_23,Beckett said a couple teenagers and a cleaning lady were cleared. 1992,Sheldon hands his phone to Leonard.,Sheldon hands his phone to the waitress.,Sheldon hands his phone to Penny.,Sheldon hands his phone to Amy.,Sheldon hands his phone to his mother.,0,Who does Sheldon hand his phone to after he pulls it from his pocket?,124031,The Big Bang Theory,35.54-57.83,s08e03_seg02_clip_08,Sheldon hands his phone to Leonard. 1993,Everyone else believes in him,There is a guarantee of success ,There is no risk of the injection,She is high on pain killers ,She is being biased and unreasonable ,2,Why does House say that Cuddy's decision make no sense when trying to get permission? ,124032,House M.D.,0-16.02,house_s03e01_seg02_clip_23,There is no risk of the injection 1994,a book,a coffee mug,a glass of water,a pen and paper,a glass of wine,3,What does Rachel put down on the coffee table when talking with Monica?,124033,Friends,36.42-40.72,friends_s04e21_seg02_clip_18,a pen and paper 1995,Phoebe tells Joey to sit up,Phoebe tells Chandler to sit up,Phoebe tells Ross to sit up,Phoebe tells Monica to sit up,Phoebe tells Carol to sit up,1,Who did Phoebe tell to sit up when they are sitting around ,124034,Friends,3.24-20.27,friends_s02e11_seg02_clip_05,Phoebe tells Chandler to sit up 1996,Sleeping. ,Looking at a magazine. ,Sitting next to Rachel. ,Drinking coffee. ,Eating a muffin. ,1,What is Ross doing when he is sitting on the couch at Monica's place?,124035,Friends,25.02-28.38,friends_s02e11_seg02_clip_15,Looking at a magazine. 1997,Sheldon was upset about Amy.,Sheldon was mad about getting the wrong calculations. ,Sheldon was happy Amy said she would marry him.,Sheldon was excited about his new date.,Sheldon was bored without Amy. ,0,What was Sheldon dwelling on when he was talking to Leonard and Penny?,124036,The Big Bang Theory,11.88-34.66,s09e08_seg01_clip_00,Sheldon was upset about Amy. 1998,At Monica's head,At an angry cat,Into Chandlers mouth,Into the next room,He wasn't tossing anything,2,Where was Joey trying to toss the popcorn when he was sitting down?,124037,Friends,18.11-23.73,friends_s04e17_seg02_clip_08,Into Chandlers mouth 1999,Dr. Clovis does not want Sheldon to speak.,Howard does not want Sheldon to speak.,Bert does not want Sheldon to speak.,Leonard does not want Sheldon to speak.,The university dean does not want Sheldon to speak.,3,Who doesn't want Leonard to speak after the Colonel arrives?,124038,The Big Bang Theory,0-21.46,s10e02_seg02_clip_07,Leonard does not want Sheldon to speak. 2000,House is holding his cane.,House is holding a pill bottle.,House is holding a meat cleaver.,House is holding a folder.,House is holding his wallet.,2,What is House holding when he's talking to Foreman and the patient?,124039,House M.D.,40.96-43.24,house_s05e02_seg02_clip_03,House is holding a meat cleaver. 2001,Chandler,animal control,maintenance ,Marcel,Joey,3,Who did Monica and Phoebe find when they were in the basement?,124040,Friends,0-8.37,friends_s01e19_seg02_clip_15,Marcel 2002,White,Blue,Red ,Grey,Brown,1,"What color is the shirt that Foreman is wearing when he say's ""...and abdominal pain...""?",124041,House M.D.,82.5-92.18,house_s05e01_seg02_clip_00,Blue 2003,TV,Stereo ,Computer,Record Player,Cassette Player,0,What did Frank turn off when when Mrs. Knight came in to the apartment? ,124042,Friends,28.63-37.19,friends_s03e18_seg02_clip_18,TV 2004,He talks about Amelia Earhart. ,He talks about Madame Curie. ,He talks about Dolly Parton. ,He talks about Madonna. ,He talks about Whitney Houston. ,1,She is Sheldon talking about when he is giving a speech?,124043,The Big Bang Theory,6.34-10.87,s06e18_seg02_clip_09,He talks about Madame Curie. 2005,Chandler,Joey,Phoebe,Rachel,Monica,4,Who did Ross start talking to when he goes in the coffee shop?,124044,Friends,9.28-23.69,friends_s02e02_seg02_clip_01,Monica 2006,The Flash,A Signal,A Pigeon,Amy and Bernadette,Penny and Raj,1,What does Howard say is racing to San Francisco when he monologues?,124045,The Big Bang Theory,10.4-63.02,s01e09_seg01_clip_00,A Signal 2007,James.,Barney.,Marshall.,Ted.,Sam.,3,Who is sitting next to Lily when she is at the bar?,124046,How I Met You Mother,0-5.22,met_s06e07_seg02_clip_11,Ted. 2008,stethoscope ,a blood bag,syringes,IV bag,a baby,4,what is doctor bailey holding when the ambulance arrives with a patient?,124047,Grey's Anatomy,78.78-88.02,grey_s02e20_seg02_clip_03,a baby 2009,WIlson,Cuddy,Cameron,Chase,Foreman,1,Who walks into the patient's room after House is in there playing a video game?,124048,House M.D.,11.06-16.59,house_s05e01_seg02_clip_00,Cuddy 2010,LokSat,Vikram,Acosta,Longarzo,Ecudaorean cartel.,0,Who does Beckett say would kill her when she's explaining herself to Castle?,124049,Castle,74.08-87.15,castle_s08e08_seg02_clip_22,LokSat 2011,That Janice was lucky to have a guy like him,That there is actually a third secret option,That he should bring flowers to the airport,That he better make sure that he takes Janice to dinner when she gets back in town,That he should take a class on how to treat women,1,What did Ross tell Chandler after Chandler said which option he chose,124050,Friends,0-21.01,friends_s03e03_seg02_clip_05,That there is actually a third secret option 2012,Rocky prepared to light the cigarette.,Ricky threw the cigarette on the ground.,Ricky started to scream and shout.,Ricky laid on a table and went to sleep.,Ricky jumped up and down in celebration.,0,What did Ricky the monkey do after Amy gave him a cigarette?,124051,The Big Bang Theory,30.47-32.01,s04e21_seg02_clip_13,Rocky prepared to light the cigarette. 2013,Amy and Howard are in bed together.,Amy and Howard are in a car.,Amy and Howard are on a Ferris wheel.,Amy and Howard are on a park bench.,Amy and Howard are at a restaurant. ,1,Where are Amy and Howard when they have their conversation?,124052,The Big Bang Theory,0-7.75,s07e03_seg02_clip_06,Amy and Howard are in a car. 2014,Amy said no.,Amy was agree.,Amy was happy.,Amy says yes.,Amy says maybe.,0,What said Amy when Dave ask to get out?,124053,The Big Bang Theory,0-28.7,s09e08_seg02_clip_15,Amy said no. 2015,A circle,A square,Triangular,A star,Long and thin,0,What shape is 13's pendant when she walks towards House?,124054,House M.D.,20.38-23.74,house_s04e08_seg02_clip_26,A circle 2016,Loretta says that she didn't want to have anyone at the house. ,Loretta says that no one likes Barney.,Loretta says that Barney isn't popular at school.,Loretta says that all the other kids were busy.,Loretta says that there was a mix up with the mail and his invitations weren't sent out.,4,What does Loretta say when Barney asks why no one came to his party?,124055,How I Met You Mother,28.49-48.02,met_s06e02_seg02_clip_17,Loretta says that there was a mix up with the mail and his invitations weren't sent out. 2017,"he throws the cards down and says ""we win!""","He says ""choke on that sucker""",he does a happy dance,he takes a sip of his water,Raj says thank you to Howard,1,What happens after Howard says he will back Raj up with his card?,124056,The Big Bang Theory,11.26-15.44,s03e05_seg01_clip_00,"He says ""choke on that sucker""" 2018,Taub assumes House is back because he's come to harass Adams.,Taub assumes House is back because something is going on with Wilson.,Taub assumes House is back because he's looking for Cuddy.,Taub assumes House is back because he's heard Wilson is injured.,Taub assumes House is back because one of the nurses pages him.,1,Why does Taub assume House is back when House returns to the emergency department?,124057,House M.D.,17.76-21.47,house_s08e21_seg02_clip_19,Taub assumes House is back because something is going on with Wilson. 2019,movie,book ,photo,cd,flash drive ,2,What did Kate and Ryan show Dereck when they were questioning him? ,124058,Castle,8.65-16.84,castle_s07e19_seg02_clip_07,photo 2020,Sheldon wants to as Amy to go out for coffee with him.,Sheldon wants Amy to get back together with him.,Sheldon wants Amy to return his stuff.,Sheldon wants to ask Amy to watch him be interviewed for a documentary they're making on Mr. Spock.,Sheldon wants to tell Amy he has a new girlfriend.,3,What is the purpose Sheldon gives Amy for leaving her a message after they've broken up?,124059,The Big Bang Theory,5.36-16.7,s09e07_seg02_clip_01,Sheldon wants to ask Amy to watch him be interviewed for a documentary they're making on Mr. Spock. 2021,Put on glovers,Call and attendee to assist ,Get out a shot ,Moved the try closer to Ross,Showed Ross a picture ,0,What did Dr. Rhodes do after he asked Ross to take his shirt off? ,124060,Friends,40.73-48.4,friends_s03e23_seg02_clip_03,Put on glovers 2022,He threw a baseball at Esposito.,He lay on the floor.,He nodded his head.,He danced with Ryan.,He picked up a chair.,2,What did Hugo do after Castle said something about Euros?,124061,Castle,40.43-42.31,castle_s02e24_seg02_clip_16,He nodded his head. 2023,Not enough water.,Too much caffeine.,Nicotine gum.,Not properly hydrating when working out.,His blood pressure meds.,2,Why did House say Tritter could be dehydrated when he was examining him?,124062,House M.D.,27.41-32.63,house_s03e05_seg02_clip_02,Nicotine gum. 2024,She worked as a teacher,She worked as a doctor at the hospital,She worked as a children's librarian,She worked as an attorney at a law firm,She worked as an actress for a children's theater group,3,Where did Amy work before she was killed?,124063,Castle,57.19-62.55,castle_s04e17_seg02_clip_02,She worked as an attorney at a law firm 2025,Two weeks prior,Last Week,yesterday,last weekend,he hadnt seen him,1,When was the last time that Hicks had seen Henry after the feds had tried to get Henry to roll on Hicks?,124064,Castle,0-6.71,castle_s07e17_seg02_clip_19,Last Week 2026,chase,lues dad,taub,house,lues grandpa,4,who did lue want lida to get him away from when he woke up from his dream?,124065,House M.D.,26.66-32.23,house_s08e18_seg02_clip_12,lues grandpa 2027,Ross kissed Chandler.,Ross kissed Rachel.,Ross kissed an unnamed women.,Ross kissed Joey.,Ross kissed Phoebe.,4,Who did Ross kiss when he was at the bar?,124066,Friends,10.85-16.11,friends_s03e06_seg02_clip_19,Ross kissed Phoebe. 2028,With her personal files. ,At Monica's house.,In her wallet.,In a fireproof box a hundred feet away from the original.,No where.,3,Where did Monica say Phoebe should have kept a copy of the recipe after Phoebe let her know the original burned in the fire?,124067,Friends,10.37-14.95,friends_s07e03_seg02_clip_03,In a fireproof box a hundred feet away from the original. 2029,A tux. ,A scarf. ,Antlers,A jacket. ,A sweater. ,2,What was Wilson wearing when he came up to House?,124068,House M.D.,81.19-85.16,house_s04e10_seg02_clip_22,Antlers 2030,The wall.,The door.,The counter.,A light post.,A sign,0,What is Rachel leaning against when Ross talks to her?,124069,Friends,0-15.35,friends_s02e04_seg02_clip_18,The wall. 2031,As a cupcake and icing.,As a bat and a ball.,As a moth and a flame.,As Romeo and Juliet.,As fire and ice.,2,How does Sheldon refer to Amy and himself before he walks over to where she is sitting?,124070,The Big Bang Theory,50.19-58.02,s07e05_seg02_clip_06,As a moth and a flame. 2032,balloons,posters,pictures,cartoons,nothing ,0,What was attached to the nurse station when Wilson was talking to House?,124071,House M.D.,46.65-52.81,house_s08e14_seg02_clip_05,balloons 2033,She says it's not his business,She says his ALT level is beginning to normalize.,She says she doesn't know,She starts to cry,She says she thinks he will live.,1,How does Masters respond when Taub mentions her patient?,124072,House M.D.,34.21-39.16,house_s07e06_seg02_clip_25,She says his ALT level is beginning to normalize. 2034,Raj wants to go swimming.,Raj wants to go to the store.,Raj wants to go to a park.,Raj wants to go to a mixer party.,Raj wants to go to work.,3,Where does Raj want to go when he reads about it on his computer?,124073,The Big Bang Theory,0-17.46,s03e12_seg02_clip_01,Raj wants to go to a mixer party. 2035,Irene was bleeding from her mouth,Irene was jaundice,Irene peed the bed,Irene was bleeding from her arm,irene was bleeding from her ears,3,what did thirteen notice about irene after irene awoke from her bad dream?,124074,House M.D.,61.97-68.31,house_s04e04_seg02_clip_16,Irene was bleeding from her arm 2036,A cup of coffee,A jacket,A box,His shoes,A set of keys,2,What does Leonard pick up when he said that it is his turn on the time machine to Sheldon?,124075,The Big Bang Theory,31.58-35.71,s01e14_seg02_clip_15,A box 2037,Ross' suit was purple,Ross' suit was white,Ross' suit was orange,Ross' suit was pink,Ross' suit was red,1,What color was Ross' suit after he came into the girls apartment,124076,Friends,8.54-15.56,friends_s03e21_seg02_clip_03,Ross' suit was white 2038,Priya was good at predicting what Raj would say.,Priya heard about Raj's sex life from a friend.,Raj told Priya about his sex life a few hours ago.,"Raj and Priya shared a room together growing up, so she heard it before.",Priya eavesdropped on a conversation Raj had about his sex life before.,3,Why was Priya not surprised when Raj talked about his sex life?,124077,The Big Bang Theory,19.18-22.22,s04e22_seg02_clip_03,"Raj and Priya shared a room together growing up, so she heard it before." 2039,Sheldon sits in a chair.,Sheldon hugs Penny.,Sheldon throws a dart.,Sheldon walks to the window.,Sheldon screams and runs away.,0,What does Sheldon do after he puts down the teapot?,124078,The Big Bang Theory,15.31-21.61,s06e12_seg02_clip_02,Sheldon sits in a chair. 2040,Smelly Cat,Grizabella,Memories ,Razzle Dazzle,I Can't Do it Alone,2,What song does Fake Monica suggest the sing when they audition for Cats?,124079,Friends,6.3-18.01,friends_s01e21_seg02_clip_11,Memories 2041,Flowers,Towel,Phone,Drink,Burger,3,What was the naked man holding when Ross opened the door? ,124080,Friends,23.11-27.01,friends_s05e14_seg02_clip_13,Drink 2042,Howard's back.,Howard's face.,Her shoulders.,Her face.,On her knees.,3,Where did penny put her hands after she pointed at Howards?,124081,The Big Bang Theory,54.01-57.85,s05e22_seg02_clip_15,Her face. 2043,Monica uses Chandler's sock.,Monica uses Phoebe's sock.,Monica uses her own sock.,Monica uses Rachel's sock.,Monica uses Ross' sock.,3,Whose sock does Monica use when fighting with Rachel in the living room?,124082,Friends,18.11-26.22,friends_s06e20_seg02_clip_14,Monica uses Rachel's sock. 2044,Eating lunch,Drinking a cup of coffee,Getting dressed,Making notes,Driving,2,What was Taub do when he was talking with Rachel?,124083,House M.D.,77.37-87.38,house_s07e09_seg02_clip_12,Getting dressed 2045,left elbow,right hand,left foot,right foot,left hand,4,Where did Cameron say that the 35 year old had dystonia after Foreman walked in asking about the emergency?,124084,House M.D.,10.51-19.65,house_s03e15_seg02_clip_00,left hand 2046,Through the winter,Through the fall,Through the summer,Through the spring,Through the year,2,When did Beckett say she started investigating the murder when speaking to Castle,124085,Castle,41.65-77.87,castle_s03e13_seg02_clip_11,Through the summer 2047,"All right, We'll call you in a few minutes.",I need to hear it from him.,Joey wake up.,Joey come with me.,Let's go Joey.,0,What does the Sleep Clinic Worker say after Chandler says yes he did?,124086,Friends,46.52-60.03,friends_s04e20_seg02_clip_12,"All right, We'll call you in a few minutes." 2048,Derek,Burke,Alex,Meredith,Cristina,2,Who came in and made fun of Izzy when she left a patient?,124087,Grey's Anatomy,37.17-60.22,grey_s02e25_seg02_clip_00,Alex 2049,Slaughter calls them Elvez and Lucky Charms,Slaughter calls them Juan and Coco puff,Slaughter calls them Captain crunch and Tony the Tiger,Slaughter calls them Grape nuts and Cherrios,Slaughter calls them Snap and Crackle,0,What names does Slaughter call Esposito and Ryan after he takes Castle's phone,124088,Castle,68.98-76.94,castle_s08e06_seg02_clip_05,Slaughter calls them Elvez and Lucky Charms 2050,The Chinese food buffet.,The sandwich buffet.,The seafood buffet.,The Indian food buffet.,The hamburger buffet.,2,What is the professor talking about when he is with Ross?,124089,Friends,21.31-25.81,friends_s09e20_seg02_clip_04,The seafood buffet. 2051,He gave her a rose ,He asked her if she could skip work that night,He blew her a kiss,He told her not to forget her keys,He asked her what time she got off that night,2,What did Ross do before Rachel walked out the door,124090,Friends,47.72-60.03,friends_s03e03_seg02_clip_05,He blew her a kiss 2052,Because Sheldon was saying that Penny was cheap.,Because Penny thought Sheldon was estimating her body mass too high.,Because Sheldon was saying the Penny owed him money.,Because Penny had an overdue bill for 120.,Because Sheldon said Penny owed Leonard 120.,1,Why was Penny upset after Sheldon said 120 for her?,124091,The Big Bang Theory,1.5-10.83,s01e04_seg02_clip_03,Because Penny thought Sheldon was estimating her body mass too high. 2053,Malaga.,Madrid.,Barcelona.,Seville.,Ibiza.,4,Where did Beckett say she came from when she was in the club with Marvin?,124092,Castle,4.86-10.94,castle_s03e14_seg02_clip_18,Ibiza. 2054,A black leather jacket,He is naked,A raincoat,A white coat,An arm cast,4,What is on Joey when he is telling Chandler to be the most committed?,124093,Friends,26.55-32.65,friends_s03e04_seg02_clip_06,An arm cast 2055,an air mattress,an inner tube,a cloud,a lily pad,a magic carpet,3,What did Castle say he was floating on when he was dreaming?,124094,Castle,10.92-22.3,castle_s03e07_seg02_clip_00,a lily pad 2056,kill someone,Stealing a phone,grand theft auto,kidnapping,rob a bank,1,What crime did the boy say the man sent him to do this time after admitting to the theft?,124095,Castle,69.32-90.02,castle_s05e11_seg02_clip_20,Stealing a phone 2057,Martha puts on her vest,Martha puts on her coat,Martha puts a ski suit on,Martha puts a cape on,Martha puts a hat on,1,What does Martha put on before she leaves the apartment?,124096,Castle,72.29-81.02,castle_s07e16_seg02_clip_26,Martha puts on her coat 2058,to a park,to Ross's apartment,to the cafe,to a bar,to Joey's apartment,4,Where does Chandler go after he storms off from Moncia's apartment?,124097,Friends,18.61-23.57,friends_s06e03_seg02_clip_03,to Joey's apartment 2059,Jumped up from the chair,started crying,started confessing,fell back in his chair,lunged across the table at her,0,What did Bob do when Beckett screamed not to lie to her?,124098,Castle,7.36-17.95,castle_s05e14_seg02_clip_16,Jumped up from the chair 2060,Leonard.,Raj.,Penny.,Mrs. Wolowitz,The delivery guy.,3,Who yells after Howard shows Bernadette the vests?,124099,The Big Bang Theory,17.92-28.97,s05e12_seg02_clip_03,Mrs. Wolowitz 2061,Castle's father was in the hospital.,Martha's car had a flat tire.,No one in the bookstore was buying Castle book.,Martha was getting evicted.,Castle lost his job.,2,What was Castle's mother (Martha) worried about when she talked to him over the phone?,124100,Castle,5.17-19.39,castle_s01e03_seg02_clip_03,No one in the bookstore was buying Castle book. 2062,To question the suspect at a restaurant ,To the arresting detective's office,To the court house,To the hotel room of Mike's,To the supply closet ,3,Where did Beckett and Castle go after reaching the realization about the key card?,124101,Castle,31.97-42.31,castle_s02e12_seg02_clip_14,To the hotel room of Mike's 2063,Raj is sitting across from Penny.,Stuart is sitting across from Penny.,Priya is sitting across from Penny.,Sheldon is sitting across from Penny.,Barry is sitting across from Penny.,3,Who is sitting across from Penny when she is eating in Leonard's kitchen?,124102,The Big Bang Theory,33.54-42.07,s09e10_seg02_clip_11,Sheldon is sitting across from Penny. 2064,Ryan gave Castle a file,Ryan hold the light for the doctor,Ryan gave Beckett a file,Ryan did nothing,Ryan put a picture on a wall ?,4,What did Kevin Ryan did when he was in the office ?,124103,Castle,60.07-66.84,castle_s05e20_seg02_clip_01,Ryan put a picture on a wall ? 2065,Amy and Sheldon,Leslie and Leonard,Penny and Leonard,Howard and Bernadette,Amy and Stuart,3,Who is getting married when the gang is at a wedding?,124104,The Big Bang Theory,6.1-6.63,s05e24_seg02_clip_14,Howard and Bernadette 2066,Three hundred thousand ,Two hundred thousand,Two hundred and fifty thousand ,Three hundred and fifty thousand ,Four hundred and fifty thousand ,0,How much money does Izzie spend when Heather needs surgery? ,124105,Grey's Anatomy,37.56-48.05,grey_s03e12_seg02_clip_03,Three hundred thousand 2067,it was Jet,it was Bruce,it was Jackie,it was Emily,no one because Ross was sitting alone listening to Drake and drinking wine,3,Who decided to stand up when Ross was sitting at the table?,124106,Friends,0-13.66,friends_s04e21_seg02_clip_01,it was Emily 2068,Talk to you later.,Goodbye.,I love you.,Call the cops.,I gotta go.,2,What did Castle say to his mother before the phone hung up when he was being held captive by Jerry?,124107,Castle,78.1-87.06,castle_s03e06_seg02_clip_25,I love you. 2069,Daniel Radcliffe,a cab driver,A punkrocker,Michael Jordan,A member of the band 'Pretenders',4,Who is Phoebe talking to when she is holding a guitar,124108,Friends,7.13-59.4,friends_s02e06_seg02_clip_11,A member of the band 'Pretenders' 2070,On a grassy hill,In the grocery store,In the office,On the street,In a bowling alley,3,Where is Amy standing when she calls Beckett,124109,Castle,74.51-84.2,castle_s07e14_seg02_clip_22,On the street 2071,Yellow with daisies,White,Grey,Green,White with polka dots,3,What color is the coffee mug Ross is drinking out of when he as at Central Perk?,124110,Friends,39.92-44.68,friends_s08e07_seg02_clip_02,Green 2072,20 million,60 million ,10 million,5 million,15 million ,1,How much did Ryan said that the diamond sitting between them cost when they were driving in the car? ,124111,Castle,0-11.42,castle_s06e08_seg02_clip_13,60 million 2073,She might name him William,She might name him Jacob,She might name him Josh,She said she might just name him The Hulk,She might name him Kody,3,What did Pheobe say she might name her baby when talking to Joey and Chandler?,124112,Friends,2.1-4.8,friends_s04e18_seg02_clip_03,She said she might just name him The Hulk 2074,Joey is tired of getting the wrong drinks when she waits on them,Chandler hates the coffee shop,It would give her the motivation to go after a job she'd really want?,Chandler bet Joey ten bucks he couldn't convince Rachel to quit her job,Rachel is always complaining about male customers hitting on her.,2,Why do Chandler and Joey think that Rachel needs to quit her job when they are at the coffee shop?,124113,Friends,0-16.95,friends_s03e10_seg02_clip_09,It would give her the motivation to go after a job she'd really want? 2075,Sits down,Starts picking up the broken pieces,Goes to the kitchen to get a snack,Reaches for the diaper bag herself,Grabs a broom,3,What does Rachel do after Chandler knocks over the plates?,124114,Friends,21.07-30.79,friends_s09e08_seg02_clip_22,Reaches for the diaper bag herself 2076,"Raj, Leonard, Sheldon.","Sheldon, Raj, Leonard.","Leonard, Raj, then Sheldon.","Sheldon, Leonard, Raj.","Penny, Raj, Sheldon.",2,In what order do they guys take turns at looking at the guy when they are eating?,124115,The Big Bang Theory,29.81-38.66,s02e11_seg01_clip_01,"Leonard, Raj, then Sheldon." 2077,The patient vomited,The patient seized,The patient passed out,The patient had a heart attack,The patient needed to be restrained,0,What does Taub say the patient did when they started up the MRI scan?,124116,House M.D.,53.56-63.82,house_s05e04_seg02_clip_23,The patient vomited 2078,Wilaon told House he was to busy to help,Wilson told House that he should test the patient more,Wilson told House to look for someone else,Wilson told House that it was good he came to him,Wilson didn't say anything to House,3,What does WIlson tell House after he tells him about the patient with the lesion on his liver?,124117,House M.D.,66.15-71.59,house_s04e05_seg02_clip_08,Wilson told House that it was good he came to him 2079,She stands up. ,She gets off of the phone. ,She stops writing. ,She sits down. ,She points to the door. ,2,What does Cuddy do when a man comes into her office?,124118,House M.D.,3.44-11.61,house_s01e14_seg02_clip_15,She stops writing. 2080,"He said, why","He said, you a nut.","He said, you hurt me.",You're a show-off,"He said, oh no.",3,What did Ted say before the telephone rang?,124119,How I Met You Mother,17.02-103.17,met_s06e15_seg02_clip_18,You're a show-off 2081,Ross can,Roxanne,Suzanne,Who can,Raw scan,0,What is Phoebe singing before Ross leaves the coffee house?,124120,Friends,2.28-9.98,friends_s08e10_seg02_clip_04,Ross can 2082,marzipan,pieces of mango,chocolate,nothing,spaghetti,4,What did Gael try to feed Robin when they were in Brooklyn?,124121,How I Met You Mother,32.9-40.75,met_s03e02_seg02_clip_06,spaghetti 2083,Because the youth is gay.,Because the youth is so good.,Because the youth is insane.,Because the youth is straight.,Because the youth is bad.,1,Why Joey offered the super gay role when talked to a black youth?,124122,Friends,35.12-37.78,friends_s03e07_seg02_clip_16,Because the youth is so good. 2084,Mars,Jupiter,Saturn,Venus,Uranus,0,What planet did Sheldon say they could be the first to plant a flag on when talking to Amy?,124123,The Big Bang Theory,10.03-60.81,s08e17_seg02_clip_15,Mars 2085,pink and teal,Green and black,yellow and red,orange and brown,purple and white,4,"What two main colors are on Marshalls tie when he, Lily, Robin and Max are eating dinner?",124124,How I Met You Mother,18.3-26.36,met_s06e05_seg02_clip_10,purple and white 2086,Amy ,Penny,Raj,Bernadette,Leonard ,2,Who opened the present after they knelt down?,124125,The Big Bang Theory,18.91-28.82,s09e18_seg02_clip_01,Raj 2087,because he's dead,because he's gay,because he's married,because he's demented,be cause he's to old. ,2,whay can't James Brolin be the father after pheobe says that is who it is? ,124126,Friends,40.06-52.94,friends_s08e01_seg02_clip_01,because he's married 2088,Ben's friend Doug was waiting for him.,Ben wanted to go see his father.,Ben wanted to go see his mother.,Ben needed to go to detention.,Ben had to go pay off his bully.,0,Who did Ben have to meet up with after seeing his Aunt Phoebe?,124127,Friends,40.32-58.85,friends_s08e10_seg02_clip_09,Ben's friend Doug was waiting for him. 2089,A car sound,A cat sound,A rat sound,A lion sound,A dog sound,4,What sound did Phoebe make after Ross finished talking with Monica?,124128,Friends,21.45-30.73,friends_s02e02_seg02_clip_01,A dog sound 2090,He brushed his hair.,He looked at some papers.,He checked his phone.,He drank coffee.,He watched TV. ,1,What did Leonard do when Penny was talking about her brawny hands?,124129,The Big Bang Theory,22.05-26.11,s04e13_seg02_clip_01,He looked at some papers. 2091,An injection of penicillin.,A small dose of heroin for the withdrawal patient.,A plate of cafeteria food.,A sedative to calm the patient.,A flu shot.,3,What does House say will kill the patient after Kutner suggests it?,124130,House M.D.,45.27-56.69,house_s04e09_seg02_clip_16,A sedative to calm the patient. 2092,A butterfly,A grasshopper ,A fly,A spider,A ladybug,4,What stuffed insect did Ross give Rachel when she was at work?,124131,Friends,38.46-42.8,friends_s03e12_seg02_clip_08,A ladybug 2093,Playing.,Snoring.,Folding clothes.,Working on his computer.,Eating.,4,What did Sheldon do when Raj shouted?,124132,The Big Bang Theory,1.66-55.2,s09e08_seg02_clip_15,Eating. 2094,They weren't looking for anything,They were looking for their pet,They were looking for a spider,They were looking for a lizard,They were looking for a cricket,4,"What were Sheldon, Howard, and Raj looking for when they were in the closet?",124133,The Big Bang Theory,25.02-32.04,s03e02_seg02_clip_06,They were looking for a cricket 2095,Leprosy,AIDS,Cancer,Tuberculosis,Hepatitis,0,What condition is the boy afraid to pass on to his friends when speaking to Chase?,124134,House M.D.,78.3-87.21,house_s01e13_seg02_clip_24,Leprosy 2096,Pamela,Patsy,Rhonda,Beth,Maria,1,What was the name Mrs Wolowitz used when Penny came over to talk to her son?,124135,The Big Bang Theory,43.21-51.26,s02e12_seg02_clip_08,Patsy 2097,She said she didnt like it.,"She said ""You are so precious, I could take you home""",She said she just loved it,She said mean things to the puppy,She stayed silent. ,1,What did Alice said to the puppy when her husband has wolding it?,124136,Friends,0-10.57,friends_s04e11_seg02_clip_19,"She said ""You are so precious, I could take you home""" 2098,Because he was tired,Because he wanted to go home,Because he felt Kripke would beat them,Because he was bored,Because he had somewhere else to be,2,Why did Leonard tell Sheldon they had to call it off after observing Kripke's robot,124137,The Big Bang Theory,17.75-50.72,s02e12_seg02_clip_14,Because he felt Kripke would beat them 2099,Doorways.,New York City.,Standard beds.,Lily.,Picnic Tables.,1,What does Marshall say he is too big for when he is in the basement?,124138,How I Met You Mother,0-8.28,met_s04e03_seg02_clip_14,New York City. 2100,When there are multiple suspects.,Knowing the truth when the accused guilty are actually innocent. ,Having access to so much secret confidential information.,Knowing when to stop doing this job.,When you can't solve a case.,3,What does McCord say is the hardest thing about being a detective when meeting with Beckett?,124139,Castle,34.06-38.8,castle_s06e01_seg02_clip_24,Knowing when to stop doing this job. 2101,Wolf's backpack and extra cash,Drugs,Hardcore porn,Blackmail letters,Ruined magazines,0,What did Esposito and Ryan find in the apartment when they searched it?,124140,Castle,15.13-24.04,castle_s02e22_seg02_clip_25,Wolf's backpack and extra cash 2102,Ross hugs Susan.,Ross walks out the door.,Ross gets down on the floor in position.,Ross kisses Rachel.,Ross hugs Rachel.,2,"What does Ross do after Susan calls him ""Mom""?",124141,Friends,11.77-17.09,friends_s01e16-17_seg02_clip_08,Ross gets down on the floor in position. 2103,Foreman has a mask in his hand,Foreman has an x-ray in his hand,Foreman has a file folder in his hand,Foreman has his stethoscope in his hand,Foreman has medical book in his hand,2,What is Foreman holding in his hand when he is walking through the hallway,124142,House M.D.,68.27-77.83,house_s02e16_seg02_clip_10,Foreman has a file folder in his hand 2104,Derek said she needs blood,Derek said she is dying,Derek said she is shaking,Derek said she is gone,Derek said she is mine,0,what did Derek say when the patient was loosing blood?,124143,Grey's Anatomy,45.56-99.03,grey_s01e06_seg02_clip_20,Derek said she needs blood 2105,Rachel leaves a message for Stuart.,Rachel leaves a message for Jonathan.,Rachel leaves a message for Monica.,Rachel leaves a message for Phoebe.,Rachel leaves a message for Ross.,2,Who does Rachel leave a message for when she is on the work phone?,124144,Friends,22.09-26.38,friends_s04e13_seg02_clip_04,Rachel leaves a message for Monica. 2106,Crack,Cocaine,Bath salts,Marijuana,Meth,4,What drug does Becca mention when she's asking about the baby's lungs?,124145,House M.D.,0-15.81,house_s05e06_seg02_clip_12,Meth 2107,a fit,a new note or two,another paper,an inhaler,a signature,3,What did Sheldon say he would include when he published the paper?,124146,The Big Bang Theory,33.36-39.45,s02e06_seg02_clip_16,an inhaler 2108,Ross wants to make the marriage with Rachel work,Ross doesn't want to be divorced three times,Ross doesn't want to spend the money the lawyer is charging for the annulment,Ross doesn't believe in annulments.,Monica is upset with him about it.,1,Why is Ross having such a hard time when he tries to see about getting his marriage annulled?,124147,Friends,5.27-14.99,friends_s06e02_seg01_clip_01,Ross doesn't want to be divorced three times 2109,A wig. ,Money.,A business card.,Fake boobs. ,A pen. ,3,What did Monica pull out of her shirt when you first see her? ,124148,Friends,35.71-41.61,friends_s03e12_seg02_clip_02,Fake boobs. 2110,Stuart.,Barney.,Marshall.,Robin.,James.,1,Who is sitting across from Lily when she is at the bar?,124149,How I Met You Mother,17.41-22.05,met_s06e07_seg02_clip_11,Barney. 2111,A heart transplant,A liver transplant,A cornea transplant,A lung transplant,A kidney transplant,4,What kind of transplant are Masters and Chase talking about when they are walking in the hallway?,124150,House M.D.,78.8-90.06,house_s07e12_seg02_clip_13,A kidney transplant 2112,A sofa. ,Lawn chairs. ,A recliner. ,The floor. ,Stools. ,1,What kind of chairs are available to sit in when Kathy visits Joey and Chandler's place?,124151,Friends,0-1.45,friends_s04e06_seg02_clip_19,Lawn chairs. 2113,Shaw,Esposito,Ryan,No one,Montgomery,4,Who tells beckett and castle to go to the cafe after the contact is killed?,124152,Castle,10.94-15.96,castle_s02e24_seg02_clip_05,Montgomery 2114,Castle asks to interrogate Mr. Caraway after Beckett is finished.,Castle is mad Beckett gets to interrogate the prisoner.,Castle is ready for a show.,Castle leaves the interrogation room.,Castle gives Beckett several questions to ask.,2,How does Castle react when Beckett goes to interrogate Mr. Caraway?,124153,Castle,49.51-65.72,castle_s02e16_seg02_clip_16,Castle is ready for a show. 2115,Dr. Shepherd is already sitting at the bar,Dr. Bailey is already sitting at the bar,Dr. Webber is already sitting at the bar,Dr. Burke is already sitting at the bar,Dr. Torres is already sitting at the bar,4,Which doctors was already sitting at the bar when Sloan sits down,124154,Grey's Anatomy,20.22-38.71,grey_s03e04_seg02_clip_25,Dr. Torres is already sitting at the bar 2116,Cuddy hugged Wilson to make House jealous.,Cuddy hugged Wilson because she missed him,Cuddy hugged Wilson because she was crying.,Cuddy hugged Wilson because it is his birthday.,Cuddy hugged Wilson because he was crying.,4,Why did Cuddy hug Wilson when she was standing behind him ? ,124155,House M.D.,68.92-75.42,house_s04e16_seg02_clip_19,Cuddy hugged Wilson because he was crying. 2117,Cynthias bra,Cynthias necklace,Cynthias compartment ring,Cynthias shoe,Cynthias hair,2,where did cynthia get the cyanide pill from when she decided to kill herself?,124156,Castle,74.68-86.48,castle_s04e03_seg02_clip_26,Cynthias compartment ring 2118,Dr. Foreman and Dr. Cameron were in Computer's room.,Dr. Foreman and Dr. Cameron were in Surgery room.,Dr. Foreman and Dr. Cameron were in Emergency room.,Dr. Foreman and Dr. Cameron were in Cafeteria.,Dr. Foreman and Dr. Cameron were at Parking lot.,0,Where were Dr. Foreman and Dr. Cameron when they were having a conversation?,124157,House M.D.,0-3.12,house_s02e19_seg02_clip_08,Dr. Foreman and Dr. Cameron were in Computer's room. 2119,castle,Ryan ,esposito,hayley,gates,2,Who wanted to take sonia back to the prison before beckett claimed it was a bad idea?,124158,Castle,2.28-6.83,castle_s08e16_seg02_clip_13,esposito 2120,Because she is tired of Christmas.,Because she likes artificial trees.,Because Christmas is not PC. ,Because she celebrates Hanukkah.,Because the trees are cut down in the prime of their lives.,4,Why is Phoebe against Christmas trees after she tells Joey to have fun?,124159,Friends,30.08-36.29,friends_s03e10_seg02_clip_01,Because the trees are cut down in the prime of their lives. 2121,Sad,angry,Scared,Happy,Excited,2,How does castle act when D'andre gets up from his seat during interrogation?,124160,Castle,48.68-54.87,castle_s03e04_seg02_clip_04,Scared 2122,She is aggravated because House is an unfeeling apathetic person and she shouldn't waste her time.,"She is aggravated because he is not telling her an answer, he is just asking more questions for her to answer.",She is mad because he doesn't feel sorry for her in response to her question like she wants him too.,She is mad and appalled that he would respond the way he did. She was expecting empathy.,She was expecting him to comfort her and feel empathy for her. She was expecting him to be pissed at the man.,1,Why is the woman aggravated at House's response to her question when she receives one from him?,124161,House M.D.,83.36-90.12,house_s03e12_seg02_clip_23,"She is aggravated because he is not telling her an answer, he is just asking more questions for her to answer." 2123,A perler bead. ,A Mexican peso. ,A penny. ,A nickel. ,A dime. ,1,What does Sheldon say is still in his nose after Howard pulls a quarter from Sheldon's ear?,124162,The Big Bang Theory,55.58-65.32,s05e12_seg01_clip_01,A Mexican peso. 2124,She is happy.,She is frustrated.,She is thrilled.,She is hysterical.,She is excited.,1,How is Monica acting when she is talking to the others in the kitchen?,124163,Friends,0-22.92,friends_s04e10_seg02_clip_11,She is frustrated. 2125,Blue,Black,White,Grey,Yello,0,What color was Monica's shirt when she was sitting at the table and talking to Rachel?,124164,Friends,10.03-15.05,friends_s07e14_seg02_clip_03,Blue 2126,She wanted a change for personal reasons ,She can't work with House anymore,She had a falling out with Foreman,She was offered a better position elsewhere,She got all she can out of the job ,4,Why does Cameron say she is leaving after she provides House with her resignation?,124165,House M.D.,6.84-27.37,house_s03e24_seg02_clip_24,She got all she can out of the job 2127,clothing,Poster of Hard Kill 2,a rug,a poster of cats,a poster of dogs ,1,What was hanging behind the body of the dead guy when Castle and Beckett was examining it? ,124166,Castle,61.75-67.36,castle_s07e09_seg02_clip_00,Poster of Hard Kill 2 2128,He thinks it's disappointing. ,He thinks it's serious. ,He thinks it's embarrassing. ,He thinks it's ridiculous. ,He thinks it's sad. ,3,How does Joey react when Rachel wants him to tell Tag that dating women is exhausting?,124167,Friends,4.41-11.35,friends_s07e05_seg02_clip_13,He thinks it's ridiculous. 2129,Sheldon takes a shower,Sheldon walks away,Sheldon sits next to Leonard,Sheldon falls asleep,Sheldon does not want to stop sword fighting,2,What does Sheldon do after he plays with the sword?,124168,The Big Bang Theory,36.92-41.72,s09e05_seg02_clip_07,Sheldon sits next to Leonard 2130,Green,Blue,Black,Red,Yellow,0,What color is 2030 Ted's son's shirt when he is sitting on the couch with his sister?,124169,How I Met You Mother,4.35-6.22,met_s06e14_seg02_clip_00,Green 2131,Tearing up pages.,Clinching his teeth.,Stomping his feet.,moving his lips.,Paying at a register.,3,What did Sheldon say the gentleman was doing when he was looking at a comics?,124170,The Big Bang Theory,35.56-40.26,s04e11_seg02_clip_04,moving his lips. 2132,laptop,a purse,a lamp,a dish,his toothbrush,0,What does Sheldon have on his lap when he is asking Penny questions?,124171,The Big Bang Theory,32.42-37.52,s02e03_seg02_clip_14,laptop 2133,They are standing in the kitchen.,They are sitting on a bed.,They are sitting on a couch in a living room.,They are sitting in chairs in an office.,They are sitting on chairs in a waiting room.,2,Where are Monica and the man in black when they are talking?,124172,Friends,49.33-53.03,friends_s02e15_seg02_clip_16,They are sitting on a couch in a living room. 2134,Castle's arms are behind his head,Castle's ankles are crossed,Castle's feet are on top of his desk,Castle's hands are folded,Castle is lying down,3,How is Castle sitting when Colette is referring to what happened four weeks ago?,124173,Castle,31.94-39.25,castle_s04e11_seg02_clip_10,Castle's hands are folded 2135,laughing,standing,walking,crying,sitting,4,What was the girl doing before she started talking?,124174,Grey's Anatomy,0-9.6,grey_s02e08_seg02_clip_14,sitting 2136,I love you,I hate you,"Okay, I'll see you later.",bye honey,I can't wait to come back home to you,2,"What did Ross, say to his friend in the white top before he left the room?",124175,Friends,0-14.18,friends_s10e01_seg02_clip_02,"Okay, I'll see you later." 2137,Pride. ,Sloth.,Lust.,Envy.,Silence.,4,What sin did Jesse say Lavine commit when Lavine wanted to pack up?,124176,Castle,0-10.06,castle_s04e19_seg02_clip_02,Silence. 2138,10 bucks,20 bucks,50 bucks,100 bucks,5 bucks,0,How much did the patient tell Izzy and Alex his co-pay is after they told him he is at a free clinic?,124177,Grey's Anatomy,0-11.01,grey_s03e14_seg02_clip_06,10 bucks 2139,what did you say ,why would you do this? ,omg!,You tampered with my experiment? ,oh no.,3,"What did Sheldon say after Raj said he just went colon, capital O?",124178,The Big Bang Theory,0-6.67,s03e01_seg02_clip_02,You tampered with my experiment? 2140,Robin did not call Ted,club,Restaurant,home,Work,3,Where was Robin when she called Ted ?,124179,How I Met You Mother,50.6-53.55,met_s06e20_seg01_clip_01,home 2141,doing Sheldon's laundry,doing Howard's laundry,doing Penny's laundry,doing Stuart's laundry,doing Raj's laundry,1,What was Sheldon doing when he was down at the laundry room?,124180,The Big Bang Theory,35.48-54.15,s05e21_seg02_clip_07,doing Howard's laundry 2142,They were drinking beer.,They were looking through a magazine.,They were riding in a car.,They were listening to the radio.,They were hitting each other.,2,What were the guys doing when they were talking.,124181,How I Met You Mother,0-5.91,met_s05e05_seg02_clip_16,They were riding in a car. 2143,A timer,A marker,A drink,A book,A cup,1,What does Monica hand to Rachel before she takes her turn to draw?,124182,Friends,20.41-22.01,friends_s01e18_seg02_clip_22,A marker 2144,Homemade lasagna.,A snickers bar.,A bag of potato chips.,A sandwich.,An apple.,3,What was Mandy eating when she was talking to Leonard?,124183,The Big Bang Theory,43.5-51.09,s09e02_seg02_clip_11,A sandwich. 2145,Raj thinks it's Sheldon. ,Raj thinks it's Eddie Crispo. ,Raj thinks it's Leonard. ,Raj thinks it's Penny.,Raj thinks it's Leslie. ,1,Who does Raj think the guys is that Howard knows when Howard says he knows a guy?,124184,The Big Bang Theory,18.43-23.27,s03e17_seg02_clip_02,Raj thinks it's Eddie Crispo. 2146,Chase punches Foreman in the face for misdiagnosing the baby.,Chase cries and falls on the floor by Cameron's feet.,Chase is stunned by House's deduction.,Chase walks out the room to get more coffee and donuts for Cameron.,"Chase hugs, kisses and then proposes to Cameron on bent knee.",2,How does Chase react when House deduces the baby has celiac like the baby's mother?,124185,House M.D.,29.43-38.26,house_s02e22_seg02_clip_21,Chase is stunned by House's deduction. 2147,It feels like all of this is one big sigh.,My dress is ruined.,My wedding is ruined.,The wedding is soon.,My dress is beautiful.,0,What does Beckett say to Castle before sitting down?,124186,Castle,58.92-70.8,castle_s06e23_seg02_clip_15,It feels like all of this is one big sigh. 2148,A laptop,A glass,A cup,A phone,A mug,4,What is Foreman holding when he is with House?,124187,House M.D.,5.46-14.56,house_s03e08_seg02_clip_01,A mug 2149,a bowl of red and yellow peppers,a bar of chocolate,two bottles of beer,a bottle of wine,two heads of lettuce,0,What is on the table behind Phoebe when Chandler says something about inviting cats?,124188,Friends,31.22-39.99,friends_s07e02_seg02_clip_12,a bowl of red and yellow peppers 2150,Joey is standing in front of the table ,Joey is standing by the window,Joey is standing near the door,Joey is standing near the coffee machine,Joey is standing near the file cabinet,0,Where is Joey standing when he starts taking off his clothes,124189,Friends,38.45-47.9,friends_s07e19_seg02_clip_18,Joey is standing in front of the table 2151,A dna double helix,A Green Lantern emblem,A Superman emblem,A train.,An AT AT,3,What picture is on Sheldon's shirt when he is in the apartment with Leonard?,124190,The Big Bang Theory,0.3-18.31,s08e18_seg02_clip_03,A train. 2152,The ethics of euthanasia in patients with advanced terminal cancer.,The prevalence of domestic violence in poor families.,The statistics on medical professional's substance abuse.,The difficulty of making important medical decisions for others.,The frequency of C-diff infections in hospitals and other health care facilities.,3,What was Foreman talking about before Cameron said that it was from her article?,124191,House M.D.,16.35-30.88,house_s02e21_seg02_clip_17,The difficulty of making important medical decisions for others. 2153,James is sitting next to Barney.,Robin is sitting next to Barney.,Sam is sitting next to Barney.,Stan is sitting next to Barney.,Lily is sitting next to Barney.,1,Who is sitting next to Barney when he is at the bar?,124192,How I Met You Mother,0-5.58,met_s06e20_seg02_clip_06,Robin is sitting next to Barney. 2154,key,gray glove,pink glove,glass of wine,black glove,4,What was Martha holding when she was talking to Castle ?,124193,Castle,57.46-66.6,castle_s01e06_seg02_clip_11,black glove 2155,he threw away the rest of his lunch,He threw away the building plans,he threw away his coke can,he threw away a box,he threw away his shoes,1,What did Ted throw in the trash can after talking to the girl?,124194,How I Met You Mother,12.4-16.82,met_s06e05_seg02_clip_17,He threw away the building plans 2156,had lunch,made his heart race,made him dinner,did his laundry,met his mother,1,What did Leslie do to Howard when they were visiting with each other?,124195,The Big Bang Theory,0-9.44,s02e16_seg02_clip_04,made his heart race 2157,Jumping off a building.,Gunshot,Stabbing,Hanging,Drowning,3,According to House what is the method of Gabe killing himself that has less chance of damaging the heart when House is talking to Gabe about options for him to die?,124196,House M.D.,4.87-69.61,house_s03e07_seg02_clip_22,Hanging 2158,Darrien told Thirteen to mind her own business.,Darrien told Thirteen to leave her alone.,Darrien told Thirteen that she came to her because she is a doctor and not a shrink.,Darrien told Thirteen that she did not want to talk.,Darrien told Thirteen to leave her room.,2,What did Darrien tell Thirteen that surprised her before she left her in bed?,124197,House M.D.,14.62-51.61,house_s07e22_seg02_clip_08,Darrien told Thirteen that she came to her because she is a doctor and not a shrink. 2159,Travis admitted to stealing a car.,Travis admitted to selling drugs.,Travis admitted to stabbing his wife.,Travis admitted to breaking into someone's house.,Travis admitted to lying to the police.,2,What did Travis admit to doing when he looked like he was about to cry?,124198,Castle,72.26-74.19,castle_s02e03_seg02_clip_23,Travis admitted to stabbing his wife. 2160,Hospitals are expensive and Darrlen can't afford it,The cops will be waiting for Darrlen at the hospital,Darrlen is worried her boyfriend will find her at the hospital,Darrlen has a phobia of hospitals,It would take too long to get to the hospital and Darrlen needs help now,1,Why does Darrlen not want to go to the hospital when she asks Thirteen to stitch her up?,124199,House M.D.,0-10.49,house_s07e22_seg02_clip_00,The cops will be waiting for Darrlen at the hospital 2161,A laptop camera,A paper cut,A flesh wound,A cheap hospital expense,A bloody forehead,2,What does the narrator figuratively say you will end up with before stating that a bandaid will cover it.,124200,Grey's Anatomy,12.2-25.01,grey_s02e20_seg02_clip_25,A flesh wound 2162,Joey,Ross,Jack,Rachael,Monica,4,Who did Phoebe point at when she was talking about what the other characters were talking about?,124201,Friends,50.75-57.02,friends_s09e01_seg01_clip_01,Monica 2163,She had a purple glove on.,She had dirt on her hand.,She had paint on her hand.,She had blood on her hand.,She had jewelry on her hand.,0,What did Lanie have on her hand when she talked.,124202,Castle,0-6.46,castle_s03e18_seg02_clip_02,She had a purple glove on. 2164,The cameras were order from Techno-Pro Systems,The cameras were order from Pro Systems,The cameras were order from Techno,The cameras were order from Systems,There was no cameras order,0,Where were the cameras order by when the detectives found out?,124203,Castle,87.32-90.02,castle_s03e16_seg02_clip_06,The cameras were order from Techno-Pro Systems 2165,he ducked,he cried,he pointed,he ran,he looked up,2,"What did Chandler do after he said ""look!"" to Rachel and Monica?",124204,Friends,0-9.14,friends_s08e15_seg02_clip_18,he pointed 2166,A lamp,A cup of coffee,A photo,A purse,A book,0,What was next to Angela and Beckett when Angela was talking to them about Rocco doing the crime?,124205,Castle,5.22-15.23,castle_s02e11_seg02_clip_03,A lamp 2167,Doctor.,Izzie.,Alex.,Nurse.,Cristina.,4,Who was behind Liz when her friends were saying hi to her?,124206,Grey's Anatomy,1.37-7.28,grey_s01e04_seg02_clip_08,Cristina. 2168,Raj felt obligated to feel sorry for himself.,Raj would feel better feeling sorry for himself.,Raj is the only one who cares enough to feel sorry for him.,Raj's mother told him to do it.,Raj was ordered by Leonard to feel sorry for himself.,2,Why did Raj say he had to feel sorry for himself when he was talking to Priya?,124207,The Big Bang Theory,9.74-12.79,s04e22_seg02_clip_03,Raj is the only one who cares enough to feel sorry for him. 2169,Rachel sits at the kitchen table.,Rachel sits on the couch next to Monica.,Rachel sits on the toilet.,Rachel sits on the floor in front of the TV.,Rachel sits on the balcony.,3,Where does Rachel sit after Phoebe starts to make her nervous?,124208,Friends,15.2-62.03,friends_s08e02_seg02_clip_03,Rachel sits on the floor in front of the TV. 2170,Foreman did not say anything,Foreman said he was pretty sure it was not lung cancer,Foreman said he was pretty sure it was Kidney cancer,Foreman said he was pretty sure it was not heart cancer,Foreman said he was pretty sure it was not cancer,4,What did Foreman say he was pretty sure when talking to the patient?,124209,House M.D.,74.34-80.57,house_s01e19_seg02_clip_12,Foreman said he was pretty sure it was not cancer 2171,Hank meant Cameron should get a medical exam to ensure her health.,Hank was insinuating that Cameron was hypocritical for criticizing his lifestyle.,Hank was trying to ask Cameron for tips on how to protect himself.,Hank was insinuating that Cameron was a bad doctor.,Hank was insinuating that Cameron had a dangerous secret life.,1,Why did Hank say that Cameron's job was riskier than his when she said his lifestyle had risks?,124210,House M.D.,0.45-19.31,house_s06e07_seg02_clip_15,Hank was insinuating that Cameron was hypocritical for criticizing his lifestyle. 2172,She use CGI.,She used a harness.,She used a stunt double.,She jumped off the bed and then had it manipulated.,She used a green screen.,1,How did Madison do her falling stunt when she had Lucas help her with a video?,124211,Castle,33.81-38.51,castle_s06e15_seg02_clip_23,She used a harness. 2173,Castle.,Esposito.,Martha.,Alexis.,Katherine.,1,Who does Beckett see after she leaves the elevator?,124212,Castle,64.99-70.74,castle_s05e24_seg02_clip_21,Esposito. 2174,House told the man he can start tomorrow,House told the man he is so fired,House told the man he is so hired,House told the man he can start at the end of the month,House told the man he can leave,2,What did House tell the man when he is sitting at his desk?,124213,House M.D.,0-4.01,house_s01e19_seg02_clip_12,House told the man he is so hired 2175,White.,Black.,Grey.,Orange.,Purple.,2,What color shirt was Penny wearinf when Leonard was talking about Penny's friends?,124214,The Big Bang Theory,1.79-5.07,s03e06_seg02_clip_03,Grey. 2176,A suit,A bathing suit,Pajamas,A robe,Jeans and a T shirt,3,What is Marshall wearing when he's talking to Lily?,124215,How I Met You Mother,0-5.66,met_s06e05_seg02_clip_01,A robe 2177,The girls were hard to miss because they giggled and stared.,The girls had on colorful dresses.,The girls had their hair dyed red.,The girls were very loud.,The girls ate a lot of food.,0,Why did the 16 year girls make an impression on Keener when they were at a restaurant?,124216,House M.D.,6.68-9.36,house_s06e06_seg02_clip_09,The girls were hard to miss because they giggled and stared. 2178,Sheldon and Leonard. ,Penny and Leonard. ,Amy and Sheldon. ,Bernadette and Howard. ,Sheldon and his mom. ,1,Who is walking up the stairs together after dinner?,124217,The Big Bang Theory,4.43-5.38,s05e14_seg02_clip_00,Penny and Leonard. 2179,Hugging Joey,Standing up,Grabbing her purse,Holding her chest,Drinking some wine,3,What was Phobe doing when she said something about never seeing that in the business world?,124218,Friends,21.54-24.79,friends_s05e23-24_seg02_clip_40,Holding her chest 2180,On the floor,On a single chair,On a couch,In a pillow fort,On the bed.,2,Where are the friends sitting when they look through photos?,124219,Friends,0-5.61,friends_s07e21_seg02_clip_18,On a couch 2181,She walked into the room holding Emily's hand,She charged into the room in front of Emily,Standing outside the door,She left the area and went to the cafeteria,She was talking to Wilson behind the Nurse's station,2,What was Melissa doing when Emily went into visit her dad?,124220,House M.D.,41.63-51.14,house_s06e09_seg02_clip_05,Standing outside the door 2182,A glass. ,A beer bottle. ,A condom. ,A water bottle. ,A ball. ,4,What are Ross and Joey passing back and forth when they are in the apartment?,124221,Friends,53.71-59.03,friends_s05e21_seg02_clip_04,A ball. 2183,He groans at them,He steps on it,He joins them!,He takes a picture,He steps over them and goes to bed,2,What does Joey do when he spots the cake Rachel and Chandler are eating?,124222,Friends,20.59-32.77,friends_s07e11_seg02_clip_20,He joins them! 2184,yellow,green,white,black,red,0,What color shirts are the people in the background wearing when Lattimer is being interviewed?,124223,Castle,70.55-79.15,castle_s03e23_seg02_clip_14,yellow 2185,Because he told them that they had a case of confirmed meningitis on the plane,Because he told them they had to turn the plane around because the pilot was experiencing heart pains,Because he told them that the airplane had been hijacked,Because he told them that the movie they were promised was not going to be played after all,Because he told them that the plane was not going to have enough fuel to make it to their destination,0,Why did the people on the plane get upset after House made an announcement on the overhead speaker,124224,House M.D.,26.71-44.42,house_s03e18_seg02_clip_17,Because he told them that they had a case of confirmed meningitis on the plane 2186,Water,Soda. ,Milk,Juice,Beer. ,1,What is Leonard drinking when he is having lunch with Sheldon?,124225,The Big Bang Theory,48.78-53.25,s01e12_seg01_clip_00,Soda. 2187,They were tired.,They were waiting for her to hear something.,They were not allowed to fly.,They were in her way.,There were others to help.,1,Why did the lady tell Ted and Robin to have a seat after she answered the phone?,124226,How I Met You Mother,5.97-44.27,met_s02e15_seg02_clip_00,They were waiting for her to hear something. 2188,A robot.,A rocket ship.,A video game controller,His Laptop.,A comic book ,1,What is in Howard's hand when Bernadette asks him if they can talk?,124227,The Big Bang Theory,45-49.25,s05e05_seg02_clip_12,A rocket ship. 2189,He just wanted to get laid,True love,Money,It seemed like the right thing to do,His parents arranged it,3,Why has Castle gotten married twice before Kyra according to him?,124228,Castle,6.38-17.43,castle_s02e12_seg02_clip_12,It seemed like the right thing to do 2190,they fell down,they found a bug,they got their pants dirty,they all three friends got stuck in the closet,they started fighting,3,"What happened when Howard, Raj and Sheldon were searching?",124229,The Big Bang Theory,20.14-36,s03e02_seg02_clip_06,they all three friends got stuck in the closet 2191,because he looked fat in white,because it was out of season,because it was out of style,because Rachel didn't like it,because he lost weight,3,Why did Ross say he didn't wear the suit for a year when he was talking to the girls,124230,Friends,16.17-26.85,friends_s03e21_seg02_clip_03,because Rachel didn't like it 2192,Joey enters the room.,Mr. and Mrs. Burgin enter the room.,The butler enters the room.,Monica enters the room.,Joshua's sister enters the room.,1,Who enters the room after Rachel leaves to freshen up?,124231,Friends,29.65-35.43,friends_s04e18_seg02_clip_12,Mr. and Mrs. Burgin enter the room. 2193,Wilson says the bear wasn't that smart because it got caught in his tripwire.,Wilson says the bear wasn't that smart because it left the oreos behind.,Wilson says the bear wasn't that smart because it ate the travel-sized bath soaps.,Wilson says the bear wasn't that smart because it couldn't escape the locked garage.,Wilson says the bear wasn't that smart because it didn't find House's cooler.,1,Why does Wilson say the bear wasn't that smart when talking with House over dinner?,124232,House M.D.,2.85-7.13,house_s08e21_seg02_clip_16,Wilson says the bear wasn't that smart because it left the oreos behind. 2194,Phoebe,Joey,Rachel,Carol,Chandler,0,Who is Monica talking to before she talks to Ross,124233,Friends,3.66-18.31,friends_s02e11_seg02_clip_15,Phoebe 2195,She says she was playing a joke on him,She jumps on the table,She gets a broom,She thinks Mike is lying,She says his name is Bob,4,How did Phoebe react when Mike tells her there is a rat?,124234,Friends,28.05-33.72,friends_s09e12_seg02_clip_00,She says his name is Bob 2196,Penny,Leonard,Howard,Sheldon ,Raj ,3,Who was in the car with Amy when she was driving?,124235,The Big Bang Theory,0-21.27,s08e09_seg02_clip_07,Sheldon 2197,He is with Amy. ,He is with Lucy. ,He is with Penny. ,He is with Bernadette. ,He is with Emily. ,4,Who is Raj with when he is on a date?,124236,The Big Bang Theory,0-8.09,s07e21_seg02_clip_15,He is with Emily. 2198,He put goggles on.,He took his jacket off.,He raised his glass.,He stood up.,He sat down.,0,What did Leonard do when Sheldon said about needing words to mark the event?,124237,The Big Bang Theory,23.05-27.53,s02e12_seg01_clip_01,He put goggles on. 2199,Chase.,Foreman.,House.,Cameron.,Wilson.,0,Who did Foreman say won the bet when he betted on who was going to be fired?,124238,House M.D.,61.08-65.65,house_s04e05_seg02_clip_26,Chase. 2200,Put the pills back in the container.,Threw them at Cameron.,Crushed them.,Dropped them next to the bed.,Spit them ouit.,0,What did Sebastian do after he said he won't take any more pills?,124239,House M.D.,16.95-25.19,house_s02e04_seg02_clip_13,Put the pills back in the container. 2201,Keith doesn't remember.,Keith gives Beckett the name.,Keith gives Beckett a phone number.,Keith laughs at Beckett for asking.,Keith asks why Beckett insists on getting a name.,0,How does Keith respond after Beckett asks for the girl's name?,124240,Castle,0-6.6,castle_s05e07_seg02_clip_15,Keith doesn't remember. 2202,Castle references The Emoji Movie.,Castle references Air Bud 2.,Castle references Shrek.,Castle references Shawshank Redemption.,Castle references Kill Bill.,3,What movie does Castle reference when reviewing the letters with Beckett?,124241,Castle,40.51-55.53,castle_s03e05_seg02_clip_18,Castle references Shawshank Redemption. 2203,"Ross was misinformed, Phoebe didn't hit a bike messenger.",Phoebe forgot she had hit the bike messenger.,Phoebe had actually hit him the week before.,"Phoebe didn't really hit him that hard, and she even gave him some tasty food after as an apology.",Phoebe wasn't talking about his karma.,4,Why did Phoebe not consider the unfortunate bike messenger she had hit recently when she said karma had been good that week?,124242,Friends,28.99-61.03,friends_s03e25_seg02_clip_01,Phoebe wasn't talking about his karma. 2204,Lily corrects Marshall by saying it will be the first car their only child will remember.,Lily corrects Marshall by saying it will be the first car their 3 kids remember.,Lily corrects Marshall by saying it will be the first car their 4 kids remember.,Lily corrects Marshall by saying it will be the first car their 2 kids remember.,Lily doesn't correct Marshall at all. She just smiles at him.,3,How many kids does Lily correct Marshall on when talking about the memories for their new car?,124243,How I Met You Mother,9.58-25.35,met_s02e17_seg02_clip_18,Lily corrects Marshall by saying it will be the first car their 2 kids remember. 2205,Ross discuss about the game.,Ross discuss about the ball.,Ross discuss about the book.,Ross discuss about the sound.,Ross discuss about his son.,3,What discuss Ross when talking to his friends?,124244,Friends,0.58-4.06,friends_s03e09_seg02_clip_10,Ross discuss about the sound. 2206,Behind House to his left.,Against the window to the left of Chase.,Against the window to the right of Cameron,Against the window between Chase and Cameron.,Behind House to his right.,3,Where was the TV when House sat his cane down?,124245,House M.D.,20.67-26.18,house_s03e05_seg02_clip_12,Against the window between Chase and Cameron. 2207,Slapped him in his face.,Cried and walked in her apartment.,Gave him a kiss on the cheek.,Gave him a high five.,Told him the she loved him.,2,What did Penny do after Leonard said that he needed to move on with his life?,124246,The Big Bang Theory,2.66-17.41,s01e14_seg02_clip_15,Gave him a kiss on the cheek. 2208,He owns the place,To have time to rehearse ,He is a cop investigating ,Paid extra to see the show,Wants to find a date tonight ,1,Why does Castle tell Sarah he boarded early after being told to come back later?,124247,Castle,15.18-30.37,castle_s08e08_seg02_clip_06,To have time to rehearse 2209,The feet.,The mouth.,The ears.,The eyes.,The butt.,4,Where did Foreman and Cameron originally think the bleeding came from in the body when they were brainstorming potential causes?,124248,House M.D.,0-5.49,house_s02e18_seg02_clip_06,The butt. 2210,musk,lavendar oil,vanilla oil,jasmine,flower,2,What scent did Penny mention when she asked if Raj would be okay in the Physics Bowl?,124249,The Big Bang Theory,35.58-60.83,s01e13_seg02_clip_01,vanilla oil 2211,Ryan sets down a book.,Ryan sets down a glass of water.,Ryan sets down a photo.,Ryan sets down his badge.,Ryan sets down a folder.,1,What does Ryan set down when sitting down at the table?,124250,Castle,11.75-13.63,castle_s08e05_seg02_clip_23,Ryan sets down a glass of water. 2212,i,On the street ,At a school ,In a cafe,In the precint,4,Where are Castle and Bennett when interviewing the suspect,124251,Castle,79.59-88.43,castle_s03e13_seg02_clip_06,In the precint 2213,No one (he's playing solo.),Stuart ,Amy.,Sheldon.,Leonard.,4,Who is playing video games with him when Raj is on the couch?,124252,The Big Bang Theory,46.92-60.15,s08e23_seg02_clip_05,Leonard. 2214,He goes to Boston for a new experimental treatment to buy him some time,He goes to Boston for treatment and everything will be fine,He goes to Boston for surgery and they will decide where to go from there,He goes to New York for treatment and expects to live at least 18 months,He goes to New York for life-saving treatment but probably won't be able to continue in his profession,1,How does House describe his prognosis to Wilson when they are discussing his disease?,124253,House M.D.,84.92-89.86,house_s03e15_seg02_clip_08,He goes to Boston for treatment and everything will be fine 2215,Sheldon said that the rock it had nothing.,Sheldon said that the rock had secret powers.,Sheldon said that the rock had all his secrets.,Sheldon said that the rock had money inside it.,Sheldon said that the rock had all his negative emotions.,4,What did Sheldon say the rock had when he was talking to it? ,124254,The Big Bang Theory,0-8.56,s10e09_seg02_clip_06,Sheldon said that the rock had all his negative emotions. 2216,House realized pill bottles were the cause of a passenger's illness,House realized condoms were the cause of a passenger's illness,House realized magazines were the cause of a passenger's illness,House realized peanuts were the cause of a passenger's illness,House realized a can of soda were the cause of a passenger's illness,1,What item did House realize caused a passenger to be ill when he and Cuddy were discussing the issues,124255,House M.D.,25.56-35.43,house_s03e18_seg02_clip_20,House realized condoms were the cause of a passenger's illness 2217,No one.,Thirteen.,House.,Kutner.,Taub.,3,Who remained behind with Foreman in the room when the other physicians followed House?,124256,House M.D.,5.81-15.77,house_s04e15_seg02_clip_07,Kutner. 2218,Rachel is beginning an exercise regime,Rachel just got engaged,It's Rachel's birthday,Rachel is reinventing herself,It's the first day of Rachel's new job,4,Why is today an important day for Rachel when she enters the living room?,124257,Friends,5.58-22.95,friends_s03e12_seg01_clip_00,It's the first day of Rachel's new job 2219,She left,she sit down,she pick up a food,She answer her phone,She cry,0,What did Penny do after talking to Raj ?,124258,The Big Bang Theory,29.87-34.05,s08e04_seg02_clip_07,She left 2220,relieved,poorly,sick,angry,tired,0,How did Howard feel when the trick worked?,124259,The Big Bang Theory,24.28-37.03,s04e01_seg02_clip_16,relieved 2221,Jill paid with Ross's credit card that he had allowed her to use.,Jill paid cash that she had received as a Christmas present from her parents.,Jill paid by using the credit card numbers she had memorized before her father took the credit card away.,Jill returned the fur coat she got for Christmas and used the refund money.,Jill used the gift card that she got from her grandmother.,2,How did Jill pay when she was shopping?,124260,Friends,4.85-11.69,friends_s06e13_seg02_clip_05,Jill paid by using the credit card numbers she had memorized before her father took the credit card away. 2222,Give it to a charity.,Have to sell it. ,Pawn it for cups money.,Leave it behind because he has to move.,Give it to his sister.,2,"What did Joey say he might do if he didn't give the big, white dog to Chandler before Chandler moved out?",124261,Friends,4.46-11.79,friends_s06e06_seg02_clip_17,Pawn it for cups money. 2223,In his office,In the operating room,In a restaurant,In his bedroom,In an airplane,1,Where is House when Emma is having surgery?,124262,House M.D.,12.6-20.26,house_s03e17_seg02_clip_23,In the operating room 2224,The department,the city,the mayor,Beckett,Ryan,0,Who did Lee's attorney say they were going to sue for harrassment when barging into the interrogation room? ,124263,Castle,7.28-11.16,castle_s04e04_seg02_clip_19,The department 2225,Ted is in the driver's seat.,Robin is in the driver's seat.,Marshall is in the driver's seat.,Barney is in the driver's seat.,Lily is in the driver's seat.,0,Who is in the driver's seat when Marshall is in the passenger seat?,124264,How I Met You Mother,20.71-25.81,met_s03e15_seg02_clip_13,Ted is in the driver's seat. 2226,Rachel did not want to run with Phoebe because she was embarrassed.,Rachel did not want to run with Phoebe because she was to tired to for a run.,Rachel did not want to run with Phoebe because she had already gone running.,Rachel did not want to run with Phoebe because she was not in good shape.,Rachel did not want to run with Phoebe because she could not keep up with her.,0,Why did Rachel not want to continue running with Phoebe after they had already run together?,124265,Friends,25.21-41.72,friends_s06e07_seg02_clip_12,Rachel did not want to run with Phoebe because she was embarrassed. 2227,Robin,Lilly,ted,Marshall,Barney,0,Who says they will talk to ted if ted's mother does not before dinner is over?,124266,How I Met You Mother,0-10.24,met_s02e03_seg02_clip_14,Robin 2228,Work.,A college campus.,The moon.,Mcclaren's,The frozen food aisle at the grocery store.,2,Where does Barney tell Ted he is going when he's giving Ted a peptalk about picking up girls?,124267,How I Met You Mother,1.51-9.94,met_s03e03_seg02_clip_13,The moon. 2229,Because he was screaming at the person on the other end. ,Because he never talks on the phone,Because they thought Leonard wasn't home,Because they were mad he made them stop singing,Because he sounded like something was going wrong,4,Why did they all stop to listen when Leonard was on the phone?,124268,The Big Bang Theory,43.42-62.48,s02e15_seg01_clip_00,Because he sounded like something was going wrong 2230,He is 3 inches taller. ,He is an inch taller. ,He is 2 inches taller. ,He is an inch and a half taller. ,He is half an inch taller. ,3,How much taller does Howard say he is when he is talking with Raj?,124269,The Big Bang Theory,46.32-46.6,s06e04_seg02_clip_13,He is an inch and a half taller. 2231,He reached out for Jake's hand.,He kicked Jake.,He walked away.,He handed Jake a letter.,He reached out to touch Jake's face.,0,What did Pete do after Jake asked him if he couldn't stay away?,124270,Grey's Anatomy,79.33-88.6,grey_s03e10_seg02_clip_24,He reached out for Jake's hand. 2232,all of the gang is there,he wants gunther to join,his girlfriend is joing,he wants two glases,He thought joey was there,4,Why did Ross ask for six glass when putting in his order?,124271,Friends,44.27-50.17,friends_s10e14_seg02_clip_07,He thought joey was there 2233,chair,couch,recliner,floor,Motorcycle,4,What is Ali sitting on when talking to Monk?,124272,House M.D.,0-5.12,house_s03e04_seg02_clip_16,Motorcycle 2234,A cup of coffee,A notebook and pen,A bottle of water,A huge box,A vase of flowers,1,What is Beckett holding in her hand when she walks into the office?,124273,Castle,3.15-7.2,castle_s04e19_seg02_clip_23,A notebook and pen 2235,Looking at a computer.,Drinking.,Eating.,Riding down the road.,Playing on their phones.,0,What were Raj and Stuart doing when the video started?,124274,The Big Bang Theory,0-5.62,s07e04_seg02_clip_17,Looking at a computer. 2236,She's leaving for an excavation in China.,The place her parents married in is being torn down.,He's joining the military.,She's pregnant.,He doesn't want her to be a lesbian.,1,Why will Ross' wedding be so soon after meeting?,124275,Friends,26.92-35.89,friends_s04e20_seg02_clip_09,The place her parents married in is being torn down. 2237,Green,Blue,Grey,Red,Purple,3,"What color is the sheets that Howard is laying on when he say's ""You know...""?",124276,The Big Bang Theory,41.09-51.04,s02e16_seg02_clip_04,Red 2238,knife,gold,silver,medallion ,gun ,3,What did Castle pick up after he was doing with the Wiki article? ,124277,Castle,78.04-84.16,castle_s07e06_seg02_clip_13,medallion 2239,Stopped for a second,ran away,jumped,jumped on him,sat down,0,What did the monkey do after Ross yelled at him?,124278,Friends,7.75-11.48,friends_s01e18_seg02_clip_07,Stopped for a second 2240,Monica liked his suit less on George Washington,Monica liked his suit less on Colonel Sanders,Monica liked his suit less on President Lincoln,Monica liked his suit less on Louis XiV,Monica liked his suit less on a viking ,1,Who did Monica say she like Ross's suit on less than him after Rachel commented on it,124279,Friends,32.65-41.8,friends_s03e21_seg02_clip_03,Monica liked his suit less on Colonel Sanders 2241,80%,70%,50%,95%,5%,0,"What percentage effaced did Dr.Long say Rachel was, after Rachel's quick check from Dr.Long?",124280,Friends,16.78-23.5,friends_s08e22_seg02_clip_08,80% 2242,A picture. ,A memo. ,A cup of coffee. ,A case file. ,A can of soda. ,2,What does Castle give to Beckett when he gets to her desk?,124281,Castle,35.15-39.26,castle_s04e17_seg02_clip_03,A cup of coffee. 2243,A book,A phone,A key,A card,A gun,4,What is Esposito holding when he enters the house?,124282,Castle,40.67-50.3,castle_s02e21_seg02_clip_17,A gun 2244,Over medication,Cyst in glabladder,Food poisoning ,Cyst in pancreas,Genetic history,3,Why is the patient suffering from stomach pain when examining x-rays? ,124283,House M.D.,0-3.16,house_s03e19_seg02_clip_20,Cyst in pancreas 2245,Sheldon said he found a new hobby that would take up all his time.,Sheldon said he did not like Leonard anymore.,Sheldon said he was bored with Leonard now.,Sheldon said he gained new friends to hang out with.,Sheldon said change was a part of life.,4,Why was Sheldon so willing to stop being friends with Leonard when Leonard was preparing to leave their apartment?,124284,The Big Bang Theory,40.87-60.55,s04e17_seg02_clip_05,Sheldon said change was a part of life. 2246,grabs the medical chart,takes the medicine from his hands,stands between House and the patient,paces around the room,stands at the foot of the bed,0,What did Cuddy do after walking in to the patients room?,124285,House M.D.,64.98-70.4,house_s04e14_seg02_clip_22,grabs the medical chart 2247,Waving,Hands on his hips,Drinking Water,Typing on the computer,Tying his shoe,1,What is Raj doing with his hands when he is posing for his action figure?,124286,The Big Bang Theory,7.99-17.16,s06e14_seg02_clip_10,Hands on his hips 2248,A plate of food.,A bottled water.,A glass of wine.,A mug.,Leonard's hand.,3,What is Penny holding when Sheldon starts to complain about the quality of conversation in the apartment?,124287,The Big Bang Theory,0-20.1,s05e08_seg01_clip_01,A mug. 2249,Joe,Raj,Howard,Penny,Leonard,4,Who do the friends say didn't have a birthday party as a child when they are talking in the living room?,124288,The Big Bang Theory,NaN-NaN,s01e16_seg02_clip_01,Leonard 2250,Leonard video chats with Priya to tell her he wants to be friends. ,Leonard video chats with Priya to break up with her. ,Leonard video chats with Priya to make up with her. ,Leonard video chats with Priya to be honest and tell her he kissed another woman. ,Leonard video chats with Priya to ask her to visit. ,3,What does Leonard do right after he gets home?,124289,The Big Bang Theory,34.3-47.9,s05e07_seg02_clip_14,Leonard video chats with Priya to be honest and tell her he kissed another woman. 2251,Because she doesn't like him.,Because he ate her food.,Because he was rude to Bernadette.,Because he was going to propose to her to keep up with Howard and Bernadette.,Because she drank too much wine.,3,Why was Penny irritated with Leonard after he kneels beside her?,124290,The Big Bang Theory,0-7.38,s06e16_seg02_clip_08,Because he was going to propose to her to keep up with Howard and Bernadette. 2252,Esposito and Ryan,Ryan ,Esposito,Esposito and his wife,Ryan and his wife,0,Who walked into the office after Castle suggested the victim had even another woman?,124291,Castle,63.38-67.9,castle_s02e10_seg02_clip_20,Esposito and Ryan 2253,Maria wanted Bob cleared to have sex in the hospital.,Maria wanted Bob to be released in order to marry Bob.,Maria wanted to reduce the pain Bob was experiencing.,Maria wanted House to replace Chase in Bob's treatment.,Maria knew Bob had not told Chase the entire truth of Bob's symptoms.,2,How did Maria plan to help Bob when Maria questioned Chase's treatment for lead poisoning to Bob?,124292,House M.D.,35.51-48.26,house_s02e15_seg02_clip_09,Maria wanted to reduce the pain Bob was experiencing. 2254,Ross goes to see Cassie,Ross goes to see Joey,Ross goes to see Phoebe,Ross goes to see Paul,Ross goes to see Rachel,4,Where does Ross go after he talks to Monica?,124293,Friends,11.96-19.94,friends_s10e12_seg02_clip_12,Ross goes to see Rachel 2255,They're already leaving,They don't care where they stay,They have to cancel their trip,They want to be nice people,They already have another room,1,Why do the couple offer the suite to Monica after being yelled by her?,124294,Friends,47.6-53.09,friends_s08e03_seg02_clip_12,They don't care where they stay 2256,The African American pointed a young lady.,The African American guy pointed to a group of men.,The African American guy pointed a gay.,The African American guy pointed to a group of women.,The African American guy is pointing the roof.,3,Who are pointing the African American guy when turned Barney?,124295,How I Met You Mother,29.41-60.03,met_s02e10_seg02_clip_14,The African American guy pointed to a group of women. 2257,She gives her a meal ,She gives her a hug,She gives her a kiss,She gives her a soda with a straw,She gives her a puppy ,3,What does Christina give Alice before leaving the room?,124296,House M.D.,63.53-70.14,house_s07e03_seg02_clip_25,She gives her a soda with a straw 2258,She smacks him.,She kisses him back.,She puts her hand up.,She looks down.,She walks away from him.,2,What does Dr. Cuddy do when House tries to kiss her?,124297,House M.D.,24.92-31.97,house_s07e02_seg02_clip_03,She puts her hand up. 2259,Wilson,Chase,13,Taub,House,1,Who walked into the lab when Masters was working with Taub?,124298,House M.D.,3.76-10.81,house_s07e10_seg02_clip_03,Chase 2260,Winner gets $3000.,Winner gets $100.,Winner gets $10000.,Winner gets $2000.,Winner gets $1000.,4,Why did Rachel say she was interested in the competition after she said she didn't like the idea of judging babies on who's cuter? ,124299,Friends,6.38-19.73,friends_s10e08_seg02_clip_01,Winner gets $1000. 2261,Ryan,Beckett,Castle,Sniper,Breacher,3,Who took out a moving target when they where in Esposito's unit? ,124300,Castle,0-10.8,castle_s04e09_seg02_clip_02,Sniper 2262,Are you serious?,What?,Why?,I want to go home!,I hate you!,2,What does Joey yell when they are sitting at the birthday table?,124301,Friends,0-3.2,friends_s07e14_seg02_clip_20,Why? 2263,The apartment,The grocery store,The ice skating rink,The park,The beach,0,What place are they going to when they investigate?,124302,Castle,2.28-6.37,castle_s03e08_seg02_clip_02,The apartment 2264,Her sunglasses,Her purse,Her jacket,A case file,Her cell phone,3,What is Beckett carrying after she and Castle leave the interrogation?,124303,Castle,44.01-51.93,castle_s02e10_seg02_clip_24,A case file 2265,playing with toys,sleeping,eating food,playing video games ,outside,0,what is the little boy doing when beckett and castle go to question melissa?,124304,Castle,52.12-61.39,castle_s02e05_seg02_clip_07,playing with toys 2266,Those songs were on random cards they pulled,They had prepared those songs,Those songs were voted on,"The category was ""Blast from the Past""",Castle requested those songs,3,"Why did the singers pick ""Hooked on a Feeling"" and ""Tainted Love"" when they started performing?",124305,Castle,0-33.76,castle_s08e09_seg02_clip_08,"The category was ""Blast from the Past""" 2267,Phoebe walks into the room.,Joey walks into the room.,Jim walks into the room.,Chandler walks into the room.,Sam walks into the room.,3,Who comes into the room after Rachel walks in with Ross?,124306,Friends,8.12-18.86,friends_s05e16_seg02_clip_14,Chandler walks into the room. 2268,Bernadette,Leonard,Emily,Penny,Raj,0,Who was with Howard when he was in the bedroom?,124307,The Big Bang Theory,0-59.8,s10e05_seg02_clip_02,Bernadette 2269,That he should follow his dreams,That he should say his goodbyes,That he should get a pet,That he should not expect her sympathy,That he should go home,3,What is House's response when the patient starts to realize the woman is not there for him?,124308,House M.D.,22.48-37.99,house_s06e16_seg02_clip_22,That he should not expect her sympathy 2270,Beckett ignores the screen,Beckett sees a cat,Beckett sees nothing,Beckett sees a dog,Beckett sees a large number,4,What does Beckett see when she looks at the screen?,124309,Castle,0-7.66,castle_s05e20_seg02_clip_07,Beckett sees a large number 2271,Castle knows it from the movie Heat.,It is Castle's father's name.,It is his favorite writer's name.,It was his best friend growing up.,He just met him yesterday.,0,How does Castle already know the name Neil McCauley from before the search is done?,124310,Castle,24.92-31.5,castle_s03e22_seg02_clip_02,Castle knows it from the movie Heat. 2272,On a chair. ,On Monica. ,On Rachel. ,On the couch. ,On the coffee table. ,3,Where does Phoebe sit when she enters the coffee house?,124311,Friends,31.81-35.72,friends_s04e22_seg02_clip_09,On the couch. 2273,A pillow,Shorts,Jogging pants,Jeans.,A sheet.,4,What did Joey put on himself when Rachel came in the room? ,124312,Friends,55.29-64.68,friends_s08e14_seg02_clip_00,A sheet. 2274,Beckett has to make sure Gates doesn't lawyer up,Beckett has to get Gates to confess,Beckett has to get Gates to write a statment,Beckett has to get Gates to tell her the details of the crime,Beckett has to catch Gates in a lie,4,What does Beckett have to do in ordet to keep Gates detained after she has little evidence?,124313,Castle,37.85-43.01,castle_s03e06_seg02_clip_14,Beckett has to catch Gates in a lie 2275,A bowl of salad.,A pot roast.,A plate of steaks.,Several bottles.,A computer.,3,What was on the counter in front of Leonard when he was saying he had some friends who were not genius?,124314,The Big Bang Theory,43.5-50.35,s03e06_seg02_clip_03,Several bottles. 2276,The Kutner's said they gave Kutner a chemistry set on his 10th birthday,The Kutner's said they gave Kutner a chemistry set on his 9th birthday,The Kutner's said they gave Kutner a chemistry set on his 8th birthday,The Kutner's said they gave Kutner a chemistry set on his 1th birthday,The Kutner's said they gave Kutner a chemistry set on his 13th birthday,1,How old did Kutner's parents say he was when they gave him a chemistry set,124315,House M.D.,8.04-20.09,house_s05e20_seg02_clip_07,The Kutner's said they gave Kutner a chemistry set on his 9th birthday 2277,It was a conscious uncoupling,Brad dumped Stacey,Stacey dumped Brad,They are still together,Chad and Brad,2,Who dumped who when Brad and Stacey were together?,124316,Castle,28.22-48.24,castle_s03e11_seg02_clip_06,Stacey dumped Brad 2278,A bandaid,A tissue,A cottonball,A syringe,A capsule,3,What is in House's hand before he puts it in the container on the wall?,124317,House M.D.,0-7,house_s02e06_seg02_clip_22,A syringe 2279,Because Ross didn't know what routine Monica was talking about.,Because Ross lied and said no when the truth was he had been practicing the routine.,Because Ross didn't want to do the routine and he'd made that clear from the beginning of the contest.,Because Ross had a piece of candy in his mouth and it got stuck in his throat.,Because Ross just realized that his pants zipper wasn't closed.,1,Why did Ross give Monica a funny look after she asked him if he'd been practicing the routine?,124318,Friends,11.59-20.51,friends_s06e10_seg02_clip_15,Because Ross lied and said no when the truth was he had been practicing the routine. 2280,Fried oreos.,Wings,A sandwich,Onion rings.,Pizza,4,What snack do Ted and Jen see another couple eating when they are on the roof?,124319,How I Met You Mother,36.32-49.19,met_s05e02_seg02_clip_13,Pizza 2281,Joey suggest Adrianne wrap her legs around a chair.,Joey suggest Adrianne wrap her legs around Victor's neck.,Joey suggest Adrianne wrap her legs around Victor's legs.,Joey suggest Adrianne wrap her legs around Victor's arms.,Joey suggest Adrianne wrap her legs around Victor's waist.,4,Where does Joey suggest Adrianne wrap her legs around after Kate suggest Victor lift her up?,124320,Friends,33.69-47.45,friends_s03e20_seg02_clip_10,Joey suggest Adrianne wrap her legs around Victor's waist. 2282,She walks out silently.,She jumps for joy.,She doesn't walk out of the door.,She begins to sing.,She starts to whistle.,3,What does Penny do when she walks out of the door?,124321,The Big Bang Theory,47.04-50.84,s01e10_seg01_clip_02,She begins to sing. 2283,Laying in a bath,Sitting on a couch,Sitting at a table,Laying on a bed ,Laying on the floor,4,Where is Phoebe when she is drinking from a straw,124322,Friends,0-9.86,friends_s01e04_seg02_clip_13,Laying on the floor 2284,Erika,Rachel,Monica,Ross,Phoebe,3,Who gets a paper published before coming to the coffee shop?,124323,Friends,27.73-39.5,friends_s03e01_seg02_clip_08,Ross 2285,he is Superman,he is The Flash,he is Batman,he is The Hulk,he is Ant-man,0,What superhero is Zack when he is at Penny's door,124324,The Big Bang Theory,0-5.27,s04e11_seg02_clip_09,he is Superman 2286,Stayed too long,Was very rude,Didn't stay long enough,Gave him a lap dance,Gave him too much money,3,What does Monica say Chandler did to her dad when they were in the steam room?,124325,Friends,59.23-64.03,friends_s07e03_seg02_clip_07,Gave him a lap dance 2287,Raj cried.,Raj left.,Raj got excited.,Raj asked her to stop.,Raj ordered more drinks.,3,What did Raj do after Amy suggested the group get him laid?,124326,The Big Bang Theory,4.38-11.39,s06e11_seg02_clip_05,Raj asked her to stop. 2288,At a message on his cellphone.,At a magazine beside him.,At a naked man running down the hall.,At the scan of a brain on the screen.,At a picture of a cat.,3,What does Taub point to after telling Foreman to look?,124327,House M.D.,70.58-74.42,house_s07e05_seg02_clip_22,At the scan of a brain on the screen. 2289,Ross,Joey,Chandler,Ben,Monica,0,Who drinks from the baby bottle when it is on the table in the kitchen?,124328,Friends,39.93-49.31,friends_s02e02_seg02_clip_19,Ross 2290,Raj lost the last point because a bird pooped on the table,Raj lost the last point because he made a terrible serve,Raj lost the last point because sweat got in his eyes,Raj lost the last point because a girl walked by,Raj lost the last point because he go carpel tunnel,1,Why did Raj lose the last point when they were playing ping pong,124329,The Big Bang Theory,47.96-57.43,s08e19_seg02_clip_11,Raj lost the last point because he made a terrible serve 2291,A bowl of cheese puffs is between Leonard and Penny.,A bowl of skittles is between Leonard and Penny.,A bowl of chex mix is between Leonard and Penny.,A bowl of popcorn is between Leonard and Penny.,A bowl of nachos is between Leonard and Penny.,3,What is in the bowl between Leonard and Penny when they're sitting on the couch?,124330,The Big Bang Theory,7.26-8.55,s10e05_seg01_clip_01,A bowl of popcorn is between Leonard and Penny. 2292,On the apartment door handle.,In her pockets.,On Ted's shoulders.,On her face to hide her embarrassment.,Over Ted's mouth.,2,Where does Zoey place her hands after she kisses Ted in the hallway?,124331,How I Met You Mother,4.69-7.19,met_s06e16_seg01_clip_00,On Ted's shoulders. 2293,Castle's jacket says CIA,Castle's jacket says police,Castle's jacket says psychic,Castle's jacket says FBI,Castle's jacket says Writer,4,What does Castle's jacket say when he is at the apartment looking for the suspect?,124332,Castle,83.48-96.86,castle_s05e13_seg02_clip_15,Castle's jacket says Writer 2294,"House had told Chase, ""We're covered by the hospital's liability insurance.""","House told Chase, ""He's old anyway, lived a full life...what, it's true!""",House informed Chase he would buy him a steak dinner if it didn't work out.,House mentioned that the patient made peace with the possibility.,"House said to Chase, ""That's why we're going to do it in a hospital.""",4,"When Chase shared his concerns with House over his plan to get the patient's heart or lungs to give out, after that how did House snarkily ease Chase's mind?",124333,House M.D.,9.77-11.63,house_s03e03_seg02_clip_01,"House said to Chase, ""That's why we're going to do it in a hospital.""" 2295,A yellow jacket,A blue bag,A tennis racket,A parrot,A scarf,1,What does Ross have on his shoulder when talking to Chandler?,124334,Friends,0-9.26,friends_s09e08_seg02_clip_16,A blue bag 2296,A ketchup bottle.,A book.,A phone.,A water bottle.,A laptop.,3,What was next to Leonard's plate to his right after Sheldon said that the women are a distraction?,124335,The Big Bang Theory,15.37-20.49,s08e05_seg01_clip_01,A water bottle. 2297,They would kill her,They would kill him,They would kill her mother,They would kill her children,They would torture her,1,Why did Colette say she did not report Michael being take when talking to Castle and Beckett in the office?,124336,Castle,76.67-83.51,castle_s04e11_seg02_clip_10,They would kill him 2298,She laughs,She starts to eat ,She goes starts to play video games,She reads a comic book,She gets up to leave,4,What does Penny do after giving Leonard a bug report?,124337,The Big Bang Theory,7.97-17.12,s05e14_seg02_clip_05,She gets up to leave 2299,touches Trece's face,stays asleep,pulls her hand away,puts her hand over Trece's,ignores her,3,What did the patient do after Trece puts her hand over hers?,124338,House M.D.,73.46-77.54,house_s05e05_seg02_clip_20,puts her hand over Trece's 2300,She is supposed to go to a lecture with him. ,She is supposed to go to a funeral with him. ,She is supposed to go to a book signing with him. ,She is supposed to go to a college with him. ,She is supposed to go to a birthday party. ,1,Why is Sheldon over at Amy's when she is sick?,124339,The Big Bang Theory,7.35-14.71,s06e10_seg02_clip_00,She is supposed to go to a funeral with him. 2301,Sheldon is holding a bunch of balloons,Sheldon is holding a bouquet of flowers,Sheldon is holding a potted plant,Sheldon is holding a stuffed bear,Sheldon is holding an edible arrangement,3,What is Sheldon holding in his hands before he starts speaking to Mr. D'Onofio,124340,The Big Bang Theory,0.98-8.78,s05e18_seg02_clip_05,Sheldon is holding a stuffed bear 2302,her ex boy friend,Ross,Gunther,Her boss,her old fiance ,3,Who was at the same restaurant when Rachel was having a interview? ,124341,Friends,0-3.84,friends_s10e14_seg02_clip_07,Her boss 2303,Boxes,A chair,a sofa,A table,A tv,0,What is Lily handing Ted when they are outside?,124342,How I Met You Mother,0-7.66,met_s02e18_seg02_clip_00,Boxes 2304,Placed his mug into the microwave.,Handed Leonard a mug.,Took off his robe.,Opened a bag of cookies.,Opened a drawer. ,0,What did Sheldon do after telling Leonard he should have a cat scan?,124343,The Big Bang Theory,14.18-24.14,s01e10_seg02_clip_01,Placed his mug into the microwave. 2305,He leaves the room.,He answers it in front of Castle.,He ignores it. ,He gives it to Castle.,He gives the phone to Esposito. ,0,What does Ryan do after his cell phone rings?,124344,Castle,77.16-83.97,castle_s06e03_seg02_clip_07,He leaves the room. 2306,House tells her that letting Thirteen coerce her into changing her mind is against hospital policy and medical ethics.,House tells her it is very difficult and trying for hospital personnel to have to change the course of her treatment.,House tells her that he thought the original decision she made was faultlessly determined and she's making a big mistake.,House tells her the financial considerations that were so important when she made her first choice still exist.,House tells her the man he sent outside is an unreliable person and she's being hypocritical by allowing him to supersede the importance of her own work.,4,How does House criticize Afsoun's change of decision before Afsoun asks him why he is doing this?,124345,House M.D.,45.83-62.07,house_s07e23_seg02_clip_22,House tells her the man he sent outside is an unreliable person and she's being hypocritical by allowing him to supersede the importance of her own work. 2307,I will transfer Joseph to my department then fire him.,Yes I can fire Joseph.,I will make Joseph want to quit.,But I can sleep with his wife.,Yes Karen.,3,"What does Chandler say to Joey after Joey says, not Karen?",124346,Friends,36.31-45.47,friends_s02e23_seg02_clip_13,But I can sleep with his wife. 2308,He says the police will ban him from investigating it further,He says it makes him look guilty,He says it makes Beckett look bad,He says a lot of people connected to it have been killed,He says the police will confiscate it from him,3,Why does Castle say he is hiding the document from everyone when he starts to have the video conference?,124347,Castle,59.36-66.26,castle_s08e02_seg02_clip_12,He says a lot of people connected to it have been killed 2309,To find Barney.,To the store to get beer.,To the cafe.,They go to get a pedicure.,To find Lily a present.,1,Where does Marshall go after Ted knocks on his door?,124348,How I Met You Mother,25.51-46.22,met_s05e05_seg02_clip_08,To the store to get beer. 2310,"Hello, Mrs. Ross!","Hello, Chandler!",We didn't get married!,Why are you here?,What happened to my face?,0,What did Ross say after he and Rachel left the chapel?,124349,Friends,58.5-60.54,friends_s05e23-24_seg02_clip_41,"Hello, Mrs. Ross!" 2311,Because it is a great way to solidify your happiness.,Because it is a great way to solidify your work ethic.,Because it is a great way to solidify your goals.,Because it is a great way to solidify your friendship.,Because it is a great way to solidify your relationship.,4,Why does Monica say that she wants to get married when she is talking to Chandler at the Central Perk?,124350,Friends,11.49-16.33,friends_s06e24-25_seg02_clip_20,Because it is a great way to solidify your relationship. 2312,Esposito,Castle,Montgomery,Beckett,Ryan,3,Who moves in to look at the body after Lanie steps aside?,124351,Castle,13.5-20.71,castle_s03e07_seg02_clip_01,Beckett 2313,give to others,be nice,be kind,share,be friends with each others friends,4,What did Leonard ask Penny to do when they discussed friends?,124352,The Big Bang Theory,44.69-59.59,s03e06_seg02_clip_03,be friends with each others friends 2314,She didn't like the patient,She didn't want to be a doctor anymore,It wasn't her responsibility to be helping House,She didn't like House,Foreman had blackmailed her,2,Why was Cameron unhappy helping with the case when she was talking to House?,124353,House M.D.,0-41.76,house_s06e07_seg02_clip_07,It wasn't her responsibility to be helping House 2315,Concerned.,Elated.,Relieved.,Angry.,Sad.,4,How did the captain feel when he sat down in his chair?,124354,How I Met You Mother,27.16-45.47,met_s06e17_seg02_clip_13,Sad. 2316,Because George doesn't listen Cristina.,Because of the party.,Because George is nasty,Because George doesn't kidd Cristina.,Because of the estrogen.,4,Why Cristina is shouting to George when having lunch together?,124355,Grey's Anatomy,1.78-7.57,grey_s02e02_seg02_clip_12,Because of the estrogen. 2317,She twirled her shirt strings.,She combed her hair.,She stood up.,She drank some water.,She scratched her head.,0,What did Rachael do after Monica gestured her arm towards her?,124356,Friends,24.04-27.55,friends_s08e08_seg01_clip_01,She twirled her shirt strings. 2318,An eraser.,A chess piece.,A photo.,A paper.,A candy bar.,0,What did Gates give Beckett when she told her to play it piece by piece?,124357,Castle,5.68-14.2,castle_s04e12_seg02_clip_26,An eraser. 2319,That there was no way they could get to the ridge the Chemistry Department has them cut off. ,That they were winning.,That they were losing.,That they give up.,That they were having fun. ,0,What did Leonard say after they ran into the shed?,124358,The Big Bang Theory,14.37-20.18,s02e16_seg01_clip_00,That there was no way they could get to the ridge the Chemistry Department has them cut off. 2320,Leonard and Sheldon's apartment,Penny's apartment,Howard's mother's house,The roof,The Cheesecake Factory,1,Where was the Halloween party held before Leonard and Sheldon left?,124359,The Big Bang Theory,0-11.9,s01e06_seg02_clip_13,Penny's apartment 2321,Chase said the willingness to step outside of ourselves makes us interesting,Chase said our complexity makes us interesting,Chase said having a sense of humor makes us interesting,Chase said the screw ups makes us interesting,Chase said constant change makes us interesting,3,What does Chase say makes us interesting when he is discuss being boring with Foreman,124360,House M.D.,33.67-42.85,house_s05e05_seg02_clip_20,Chase said the screw ups makes us interesting 2322,At home,A movie,A theater show,A picnic date.,At a shopping mall.,3,Where are Raj and Emily when she is kissing him?,124361,The Big Bang Theory,10.51-20.41,s08e24_seg02_clip_11,A picnic date. 2323,Chanler said Monica can wear her new boots,Chanler said Monica can wear anything,Chanler did not say anything,Chanler said Monica can wear a dress,Chanler said Monica can wear jeans and a t-shirt,0,What did Chanler say Monica can wear to the office party after putting the bird statue down?,124362,Friends,12.72-15.2,friends_s08e10_seg02_clip_06,Chanler said Monica can wear her new boots 2324,Wilson,Cameron ,Cuddy,Ali,Chase ,3,Who was on House Motocycle when he walked into the parking garage? ,124363,House M.D.,0-6.98,house_s03e04_seg02_clip_16,Ali 2325,Because Penny want to kiss the girl.,Because Penny is happy.,Because Penny wants to kiss Leonard.,Because Penny loves kisses.,Because Penny is disappointed of Leonard.,4,What Penny is surprised when Leonard said that kissed a girl?,124364,The Big Bang Theory,0-48.16,s08e24_seg02_clip_14,Because Penny is disappointed of Leonard. 2326,Looking toward Beckett.,Biting a sandwich.,Sipping from a cup.,Getting up from a chair.,Scratching his head.,0,What was Esposito doing before Castle asked Esposito about the photos?,124365,Castle,0-1.35,castle_s03e23_seg02_clip_13,Looking toward Beckett. 2327,Penny said Leonard wasn't her type but that men who are her type usually weren't good boyfriends.,Penny said that Leonard was too short.,Penny said that she didn't want to date a man who was smarter than her.,Penny said that she didn't want to date a man who wore so many bright colors.,Penny said she didn't want to date her neighbor. ,0,Why did Penny say she was conflicted about dating Leonard after telling Sheldon she knew about Leonard's crush?,124366,The Big Bang Theory,38.73-51.54,s01e17_seg02_clip_11,Penny said Leonard wasn't her type but that men who are her type usually weren't good boyfriends. 2328,his coffee cup,his phone,a birthday cake,a computer screen,a patient's file,2,What is House looking at when Wilson counts to three?,124367,House M.D.,0-4.94,house_s08e02_seg02_clip_23,a birthday cake 2329,she laughed ,she cried,"She said ""if I let go of my hair, why head will fall off""",she slapped chandler,she ran out of the room scared,2,What did Phoebe do after watching the scene on television?,124368,Friends,56.58-65.03,friends_s01e01_seg02_clip_05,"She said ""if I let go of my hair, why head will fall off""" 2330,6:00.,7:00.,8:00.,8:30.,7:30.,2,When did Wilson tell House to meet him and Sam when he asked him to go to dinner with them?,124369,House M.D.,63.65-66.32,house_s06e17_seg02_clip_10,8:00. 2331,She laid down.,She ran to it.,She picked up a pillow.,She grabbed a blanket.,She grabbed his finger.,1,What did Monica do after Chandler pointed at the wall?,124370,Friends,33.74-37.56,friends_s10e01_seg02_clip_00,She ran to it. 2332,I thought you were the pizza guy. ,"Not now, I need to walk the dog.","Well, quit thinking.","Oh dear boy, you need to get a life.","Barney, I teach all day. It's the last thing I want to do when I get home.",4,What did Lewis say after after Barney said he couldn't stop thinking about her?,124371,How I Met You Mother,0-7.99,met_s02e06_seg02_clip_15,"Barney, I teach all day. It's the last thing I want to do when I get home." 2333,He sits at the bar. ,He leaves the restaurant too. ,He walks over to the table. ,He hugs Janice. ,He goes to the bathroom. ,2,What does Chandler do after Joey leaves the restaurant?,124372,Friends,24.61-30.31,friends_s01e14_seg02_clip_06,He walks over to the table. 2334,Phoebe closes her eyes.,Phoebe goes into the bedroom.,Phoebe covers her face with a pillow.,Phoebe covers her eyes with her hands.,Phoebe turns away from her date.,0,What does Phoebe do when she tells her date she doesn't want things to be awkward?,124373,Friends,22.28-28.07,friends_s09e04_seg02_clip_18,Phoebe closes her eyes. 2335,Pick up an apple,Take his bag off,Get on the computer,Sit in the chair,Drink some water,1,What does Sheldon do after he enters the apartment,124374,The Big Bang Theory,0-13.58,s02e02_seg02_clip_15,Take his bag off 2336,Creating a fake vomit,Forcing fingers in her throat,Eating more than she can handle,Swallowing spicy peppers,By poisoning herself ,4,How does a House find out a patient is throwing up after giving her a rundown of herself?,124375,House M.D.,10.12-31.75,house_s01e14_seg02_clip_16,By poisoning herself 2337,A car.,A chain.,A bike,A trolley.,A horse.,1,What does Ryan travel on before he gets to the tiger?,124376,Castle,57.1-64.75,castle_s04e10_seg02_clip_25,A chain. 2338,at his side,in his left pocket,on his hip,on his head,up in the air,1,Where does Chandler have his left hand when he walks towards Ross?,124377,Friends,48.21-51.87,friends_s09e11_seg02_clip_11,in his left pocket 2339,raj,sheldon,howard,lewoitz,meg,1,who smells the new comics when the group are at the comic store,124378,The Big Bang Theory,4.65-13.65,s02e22_seg01_clip_00,sheldon 2340,Pam's son,Pam's father,Pam's lover,Pam's husband,Pam's brother,4,How did Pam know Alan Clark when she was being accused of a crime? ,124379,Castle,36.09-57.22,castle_s06e16_seg02_clip_25,Pam's brother 2341,Against the wall.,Out the window.,Up the stairs.,In front of Marcel.,Onto the table.,3,Where does Phoebe jump before Luisa shoots the tranquilizer?,124380,Friends,21.71-28.84,friends_s01e19_seg02_clip_15,In front of Marcel. 2342,He gets up and leans against the white board.,He rubs his forehead.,He picks up his cell phone to check some information.,"He rubs his knee, it begins to hurt after sitting on the plane.",He rubs his hair. ,0,What does House do when he says the sick air plane passener has a focal limb paralysis?,124381,House M.D.,27.8-34.08,house_s03e18_seg02_clip_20,He gets up and leans against the white board. 2343,Stolen cars,Rape,Theft,Disappeared ,Abduction,4,What does Castle say that Lewis had done before describing it?,124382,Castle,43.45-52.4,castle_s07e23_seg02_clip_19,Abduction 2344,Esposito says the name of the company is Spy Ventures.,Esposito says the name of the company is Spy-Cation.,Esposito says the name of the company is Spy Nation.,Esposito says the name of the company is Adventures R' Us.,Esposito says the name of the company is Adventure Mart.,0,What does Esposito say is the name of the company behind everything after Castle and Beckett speak to Hans?,124383,Castle,52.36-78.09,castle_s02e24_seg02_clip_09,Esposito says the name of the company is Spy Ventures. 2345,Chandler has a secret to tell Ross,Chandler was lonely,Chandler wants to come with Ross,Chandler wants porn,Chandler is upset,3,Why does Chandler rush to say goodbye to Ross after Ross says goodbye?,124384,Friends,1.2-35.42,friends_s03e12_seg02_clip_18,Chandler wants porn 2346,To treat the frostbite,To make tea,Because the patient said he had to use the bathroom,To keep the patient warm,Because the patient said he is tired,0,Why does Mark ask for warm circulating water when looking at the patient?,124385,Grey's Anatomy,21.49-29.55,grey_s03e24_seg02_clip_04,To treat the frostbite 2347,The man went to Ana's house with a gun.,The man had a water gun,The man was buying a gun.,The man has a broken gun.,The man sell a gun,0,What said Ana happen two weeks back when talking to the detectives about the gunman that was collecting money?,124386,Castle,0.46-3.64,castle_s03e01_seg02_clip_15,The man went to Ana's house with a gun. 2348,Joey was practicing his lines for his rehearsal.,Joey was sitting in a chair waiting to talk to Rachel and Ross.,Joey was trying to figure out his password.,Joey was trying to decide what shirt to wear with slacks.,Joey was trying to call an old girlfriend.,1,What was Joey doing when Rachel walked into the room?,124387,Friends,2.79-10.86,friends_s08e14_seg02_clip_15,Joey was sitting in a chair waiting to talk to Rachel and Ross. 2349,They are in the garage,They are at Penny's apartment,They are at Raj's apartment,They are at the movies,They are at the Cheesecake Factory,0,Where is the group when they talking about the TARDIS,124388,The Big Bang Theory,0-15.58,s08e19_seg02_clip_11,They are in the garage 2350,A cup,His jacket,A newspaper,A book,A wallet,1,What did Chandler have in his hand when he left Joey and Ross at the coffee shop?,124389,Friends,38.59-43.81,friends_s07e17_seg02_clip_08,His jacket 2351,Teal,Green,Blue,Purple,Yellow,2,"What color is Beckett's shirt when she say's ""Don't ask...""?",124390,Castle,0-10.01,castle_s03e08_seg02_clip_02,Blue 2352,Melinda,Cuddy,Eve,Stacy,Cameron,4,Who is sitting at the male patient's bedside when he dies in front of her?,124391,House M.D.,28.84-34.69,house_s03e12_seg02_clip_23,Cameron 2353,She puts her phone number into his phone contacts.,She gives him a kiss.,She hands him a piece of paper.,She walks away.,She smacks him across the face.,3,What does Lanie do after she tells Scott she is getting fit for an iron lung?,124392,Castle,81.21-91.25,castle_s08e03_seg02_clip_09,She walks away. 2354,Castle demands Esposito arrest Charisse for Robin's murder.,Castle shrugs and walks awy from Charisse.,Castle is sad for Charisse and the other Aca - Cons.,Castle kisses Beckett and proposes to Beckett on bent knee.,Castle order new outfits for the Aca-Cons performance.competition.,2,How does Castle react after Charisse accredits Robin with the creation of the Aca-Cons?,124393,Castle,10.12-18.41,castle_s08e09_seg02_clip_09,Castle is sad for Charisse and the other Aca - Cons. 2355,She hugged him,She cried,She hit him,She crossed her arms,She walked away with a sad face,4,What did little girl do when Ross said he wanted to dance with Mona?,124394,Friends,33.27-39.52,friends_s08e01_seg02_clip_14,She walked away with a sad face 2356,Taking pictures,Collecting blod samples,Measuring the tracks,Swabbing for finger prints,Checking for DNA evidence.,1,What was Lanie doing when Beckett arrived at the scene?,124395,Castle,5.94-15.54,castle_s04e03_seg02_clip_01,Collecting blod samples 2357,had to call his boss first,said yes,told her he would think about it,said his mom would need to know first,He told Ramona to leave and said no.,4,What did Sheldon want to do when Ramona wanted to share credit?,124396,The Big Bang Theory,0-11.31,s02e06_seg02_clip_16,He told Ramona to leave and said no. 2358,Diamond,Ruby,Emerald,Jade,Crystal,3,Who was the girl Esposito enquired about when he asked the girls questions?,124397,Castle,20.76-39.26,castle_s06e18_seg02_clip_11,Jade 2359,Empties his pockets. ,Takes his pants off. ,Changes his shirt. ,Counts money. ,Looks under the bed. ,1,What does Joey do after he walks into his room?,124398,Friends,5.49-8.85,friends_s07e11_seg02_clip_10,Takes his pants off. 2360,The doctor placed a partial occluding clamp.,The doctor placed tissue inside the patient's body.,The doctor placed a syringe inside the patient.,The doctor placed a screw inside the patient.,The doctor placed a cloth inside the patient.,0,What did one of the doctors place in the patient when they noticed the patient was still bleeding?,124399,Grey's Anatomy,32.1-35.55,grey_s03e09_seg02_clip_23,The doctor placed a partial occluding clamp. 2361,500,600,700,800,750,1,How many pills were found at the House apartment after the police searched it?,124400,House M.D.,35.04-39.14,house_s03e08_seg02_clip_01,600 2362,folding clothes,doing computer work,leaving,loading the washer,loading the drier,0,What was Sheldon doing when Penny was telling him she lied?,124401,The Big Bang Theory,0-15.64,s02e01_seg02_clip_02,folding clothes 2363,Cameron is standing behind Chase. ,Cameron is sitting next to Foreman. ,Cameron is leaning on the table by House. ,Cameron is just inside the door to the hall. ,Cameron is sitting on the floor. ,2,"Where is Cameron when House tells Foreman, Chase and her to go check the patients neck?",124402,House M.D.,27.46-36.46,house_s02e06_seg02_clip_20,Cameron is leaning on the table by House. 2364,Joey was wearing an orange sweater.,Joey was wearing an orange t-shirt.,Joey was wearing an orange sports jacket.,Joey was wearing an orange hoodie.,Joey was wearing an orange cardigan.,0,What was Joey wearing when Chandler was on the phone?,124403,Friends,0-10.23,friends_s05e07_seg02_clip_16,Joey was wearing an orange sweater. 2365,It feels good.,It's painful.,He can't handle how nice it feels.,He loves the pain.,He can't get enough.,1,Why is Chandler cringing and making sounds when Monica is massaging him?,124404,Friends,21.01-34.02,friends_s05e13_seg01_clip_00,It's painful. 2366,Yellow,Green,Grey,Blue,Black,2,"What color is the shirt that Esposito is wearing when he say's ""You told us to build our case...""?",124405,Castle,79.12-88.9,castle_s06e04_seg02_clip_21,Grey 2367,Things are exciting. ,Things are awkward because of Meredith's mom. ,Things are not good at all. ,Things are tense because they are mad at each other. ,Things are awkward because of Bailey. ,1,How are things between Richard and Meredith when they are having a conversation?,124406,Grey's Anatomy,7.31-15.48,grey_s03e19_seg02_clip_04,Things are awkward because of Meredith's mom. 2368,Bazinga,Oh crap,Oh damn,Oh snap,Look out now?,3,What did Barney say when Blauman lost his temper?,124407,How I Met You Mother,0-13.24,met_s03e15_seg02_clip_03,Oh snap 2369,Around her neck.,In her right hand.,In her left hand.,On her left hip.,On her right hip.,2,Where was Beckett's bade when she was standing at the receptionist's desk?,124408,Castle,34.66-38.26,castle_s06e09_seg02_clip_07,In her left hand. 2370,Howard's PhD.,A job application.,A resume.,Taxes.,An email.,4,What does Howard have to finish up after Leonard asks him to leave the room?,124409,The Big Bang Theory,46.82-49.52,s02e21_seg02_clip_04,An email. 2371,Lesley is mixing an energy drink,Lesley is mixing a potion.,Lesley is mixing a cup of noodles.,Lesley is mixing oatmeal.,Lesley is mixing a chemical compound.,2,What is Lesley mixing when Leonard leaves the lab?,124410,The Big Bang Theory,19.24-38.47,s01e03_seg02_clip_05,Lesley is mixing a cup of noodles. 2372,Someone manipulated her to do it,She did not care for Castle,He is a private I and that comes with the job,She was scared he would say no,She was just a mean person,2,What was Sofia's excuse for doing it after Castle accused her of using him?,124411,Castle,13.62-20.88,castle_s07e12_seg02_clip_23,He is a private I and that comes with the job 2373,"Estella, there are a lot of people in New Jersey.","Estella, New Jersey is modern.","Estella, New Jeser is big.","Estella, you can not think that New Jersey is better than New York","Estella, I want to live in New Jersey",3,What said Lily to Estella when she sat next to Marshall?,124412,How I Met You Mother,0-33.94,met_s04e03_seg02_clip_12,"Estella, you can not think that New Jersey is better than New York" 2374,Raj says the pills are for infections.,Raj says the pills are for sleeping.,Raj says the pills are for anxiety disorder.,Raj says the pills are for antibiotics.,Raj says the pills are for animals.,2,What does Raj tell Sheldon the pills are used for when they are talking?,124413,The Big Bang Theory,0-46.77,s04e22_seg02_clip_09,Raj says the pills are for anxiety disorder. 2375,push papers off the desk,Storm out of the radio station,run into the door,cover the microphone,tap on the glass,1,What does sheldon do after taking off his headphones in the studio?,124414,The Big Bang Theory,71.03-79.66,s07e10_seg01_clip_01,Storm out of the radio station 2376,Ross is drinking out of a carton of milk.,Ross is drinking a cup of coffee.,Ross is drinking a glass of wine.,Ross is drinking a beer.,Ross is drinking water.,2,What is Ross drinking when Rachel comes in the apartment?,124415,Friends,5.04-7.42,friends_s08e04_seg02_clip_10,Ross is drinking a glass of wine. 2377,pass out,scratch foreman,throw up,scream in pain,wet the bed,3,What did lucy do when foreman went to touch her stomach for abnormalities?,124416,House M.D.,79.23-89.02,house_s03e19_seg02_clip_19,scream in pain 2378,Wil Wheaton and Adam Nimoy,Adam Nimoy and Penny,Howard and Wil Wheaton ,Leonard and Penny,Raj and Wil Wheaton,0,Who was at the door when Sheldon answered it? ,124417,The Big Bang Theory,39.08-43.5,s09e07_seg02_clip_01,Wil Wheaton and Adam Nimoy 2379,Stare at her,Shake their heads,Talk among themselves,Stand up and leave the room,Laugh at her,0,What does the panel do after Park asks them not to fire her?,124418,House M.D.,40.75-48.52,house_s08e04_seg02_clip_20,Stare at her 2380,He wants to talk to her about Amy. ,He wants to talk to her about Leonard. ,He wants to talk to her about girls. ,He wants to talk to her about science. ,He wants to talk to her about alcohol. ,2,Why does Sheldon visit Penny when she is working at the bar?,124419,The Big Bang Theory,45.66-50.67,s06e07_seg02_clip_08,He wants to talk to her about girls. 2381,a video recording,a box,a picture,a document,nothing,2,What is Castle holding before Alexis walks into his apartment?,124420,Castle,65.85-71.3,castle_s07e20_seg02_clip_17,a picture 2382,He says nice try Penney,He laughs at what she's done,He looks away,He smiles at her,You sure this is right?,4,What does Leonard say after Penney fixes his tie?,124421,The Big Bang Theory,14.26-62.02,s04e15_seg02_clip_00,You sure this is right? 2383,500 grand,200 grand,300 grand,400 grand,100 grand,4,How much is it to catch the killer when Coonan says,124422,Castle,0-46.75,castle_s02e13_seg02_clip_24,100 grand 2384,In Central Park ice skating,In the coffee house getting coffee,At a Christmas tree lot,In the mall shopping for last minute Christmas gifts.,At a homeless shelter serving food to the homeless.,2,Where were Phoebe and Joey when they were talking to the man about fulfilling Christmas destiny,124423,Friends,0-15.33,friends_s03e10_seg02_clip_14,At a Christmas tree lot 2385,He sang,He danced,He screamed,He fainted,He ran,1,What did Roy do after the music started playing?,124424,Friends,57.42-66.77,friends_s10e11_seg02_clip_11,He danced 2386,Salad,A drink,Burrito,Creamer,Ice,1,What does Rachel grab from the fridge when she is yelling at Ross?,124425,Friends,51.02-56.13,friends_s02e20_seg02_clip_12,A drink 2387,Cops.,EMS,Fire fighters.,Lawyers.,Surgeons.,0,Which type of job did Joe said Foreman didn't like when he asked if he was his doctor?,124426,House M.D.,21.39-28.67,house_s02e20_seg02_clip_16,Cops. 2388,Cherish the memory,Just get over it,Wait until he can figure something out,Just leave him alone,Search her hard drive for a replacement copy,4,Where does House suggest Cuddy do for a replacement to the cut item before House walks towards the door.,124427,House M.D.,26.89-34.57,house_s06e11_seg02_clip_09,Search her hard drive for a replacement copy 2389,she has an evidence bag in her hands,she has a blue folder in her hands,she has a picture in her hands,she doesn't have anything in her hands,she has a phone in her hands,1,What does Beckett have in her hands when she is conversing with Montgomery about a case?,124428,Castle,48.95-57.65,castle_s02e14_seg02_clip_18,she has a blue folder in her hands 2390,A red shirt.,A blue shirt.,A purple shirt.,A black shirt.,A yellow shirt.,0,What does color shirt does Lucy have on when talking about her daughter?,124429,How I Met You Mother,11.71-19.51,met_s03e13_seg02_clip_13,A red shirt. 2391,A chessboard.,A tennis ball.,A Playboy magazine.,A glass of wine.,A jacket.,3,What is Howard holding when Bernadette says show him the closet?,124430,The Big Bang Theory,40.44-43.02,s06e19_seg01_clip_01,A glass of wine. 2392,An umbrella.,A fist bump.,Another beer.,A hug.,A copy of his speech.,0,What does Marshall ask Ted for before entering the church?,124431,How I Met You Mother,83.42-94.39,met_s06e01_seg02_clip_16,An umbrella. 2393,The hotel employee thinks Greta is in big trouble because Greta told him that the police may look for her.,The hotel employee thinks Greta is in big trouble because Greta carried a gun.,The hotel employee thinks Greta is in big trouble because another cop already asked him about Greta the day before.,The hotel employee thinks Greta is in big trouble because she was behaving suspiciously.,The hotel employee thinks Greta is in big trouble because the police told the employee what Greta did.,2,Why does the hotel employee think Greta is in big trouble after talking to Esposito and Ryan?,124432,Castle,66.62-76.52,castle_s03e11_seg02_clip_17,The hotel employee thinks Greta is in big trouble because another cop already asked him about Greta the day before. 2394,He is not sleeping with Beckett,He lied to her,He has food on his face,He farted,He cheated on her,0,Why is Paula Haas upset with Castle before she walks away?,124433,Castle,2.3-9.21,castle_s02e05_seg02_clip_17,He is not sleeping with Beckett 2395,worst mistake,worst headache,root canal,worst hangover,worst disaster,3,What does Rachel think their marriage is like after standing up?,124434,Friends,37.39-42.6,friends_s06e01_seg02_clip_14,worst hangover 2396,Before he lost his bounty hunter lisence,Last week,A month ago,It's been ten years,when she arrested him,4,When was the last time Kate says she spoke to the victim after she sees his dead body?,124435,Castle,23.24-72.23,castle_s03e22_seg02_clip_00,when she arrested him 2397,Chandler falls asleep.,Chandler tears up the newspaper.,Chandler answers the phone.,Chandler knocks the cup over.,Chandler falls off the couch.,2,What does Chandler do after putting the cup back on the table?,124436,Friends,33.94-37.78,friends_s09e21_seg02_clip_20,Chandler answers the phone. 2398,He was tired,He was injured,He was hungry,He was eating,He was praying,1,Why was Leonard sitting when Amy and Penny were playing a game?,124437,The Big Bang Theory,17.1-33.31,s07e11_seg01_clip_00,He was injured 2399,Sitting on the wheelchair,Sleeping on the sickbed,Standing at the window,Standing beside the shelf,Standing at the door. ,1,Where was Arlene when House came into the room?,124438,House M.D.,0-10.86,house_s07e11_seg02_clip_05,Sleeping on the sickbed 2400,Stands up,Follows after house,Turns on his computer,Turns around in his chair,Takes a drink of coffee,0,What does Wilson do after House mentions Wilson's wife?,124439,House M.D.,9.66-15.64,house_s02e14_seg02_clip_19,Stands up 2401,Because he said there wasn't anything wrong with him,Because he had a fear of doctor's,Because he had a bad experience with a doctor once,Because he liked feeling the pain,Because hernia operations cost a lot probably,4,Why did Joey say he wouldn't after Chandler asked him if he would just go to the doctor,124440,Friends,0-13.43,friends_s06e04_seg02_clip_09,Because hernia operations cost a lot probably 2402,Richard Castle,Peter Garber,Martha,Ryan and Esposito,Beckett,1,Who got killed after Scott had made amends with him?,124441,Castle,43.34-56.12,castle_s08e03_seg02_clip_09,Peter Garber 2403,Rachel drinks a beer.,Rachel passes out.,Rachel runs out the door.,Rachel kisses Ross.,Rachel turns to look at Phoebe to find out why she pinched her.,4,When Phoebe pinches Rachel how does she respond after?,124442,Friends,46.16-59.26,friends_s07e14_seg02_clip_02,Rachel turns to look at Phoebe to find out why she pinched her. 2404,Wilson was talking about Becky,Wilson was talking about Foreman,Wilson was talking about Cameron,Wilson was talking about House,Wilson was talking about Louis,3,Who was Wilson talking about when he said nobody even likes them?,124443,House M.D.,59.51-64.87,house_s02e02_seg02_clip_11,Wilson was talking about House 2405,he promised to save her,he put the victim in the position,he traded her life for his own,it's is daughter,he thinks its beckett,4,why was castle sorry after the victim is shoot?,124444,Castle,0-11.26,castle_s07e15_seg02_clip_11,he thinks its beckett 2406,House was wiping his nose when he was talking to Wilson,House was dancing when he was talking to Wilson,House was typing when he was talking to Wilson,House was using the restroom when he was talking to Wilson,House was eating when he was talking to Wilson,0,What was House doing when he was talking to Wilson?,124445,House M.D.,5.95-13.09,house_s02e02_seg02_clip_11,House was wiping his nose when he was talking to Wilson 2407,On massage chairs.,On a bench.,Two folding chairs.,On a hotel bed.,On a hospital bed.,4,Where did Chandler and Monica sit when they were talking to each other?,124446,Friends,27.61-45.02,friends_s09e10_seg02_clip_13,On a hospital bed. 2408,His stomach's bothering him.,He forgot his umbrella.,He doesn't want to fall during the dance.,His suit jacket ripped.,He wants his wedding toast to be great.,4,Why does Ted say he's nervous after drinking with Marshall?,124447,How I Met You Mother,65.12-84.15,met_s06e01_seg02_clip_16,He wants his wedding toast to be great. 2409,A beer bottle. ,Tickets. ,A glass of beer. ,A can of peanuts. ,A soda can. ,1,What is Brad holding when he is standing at the table in front of Robin?,124448,How I Met You Mother,29.34-31.75,met_s05e01_seg02_clip_03,Tickets. 2410,Joey,Ross,Chandler,Monica,Rachel,2,Who walks Phoebe down the aisle when she gets married to Mike?,124449,Friends,27.39-48.12,friends_s10e12_seg02_clip_25,Chandler 2411,In the car,In Raj apartment,In the comic book store,At work ,At Sheldon place. ,0,Where were Bernadette and Raj when they was talking to his dad?,124450,The Big Bang Theory,0-51.92,s10e03_seg02_clip_16,In the car 2412,Sitting at the kitchen table.,Sitting on a chair.,Sitting on the sofa next to Rachel.,SItting on the chair next to Monica.,Sitting on the sofa next to Chandler.,4,Where was Phoebe when they were watching TV with Joey's grandma?,124451,Friends,33.5-37.22,friends_s05e19_seg02_clip_17,Sitting on the sofa next to Chandler. 2413,At the comic book store.,In Sheldon's apartment.,Sitting at a table.,In a restaurant.,At a sauna.,2,Where is Raj when Bernadette confronts him?,124452,The Big Bang Theory,46.95-56.09,s04e14_seg02_clip_15,Sitting at a table. 2414,An envelope,Her purse,A spoon,A coffee cup,Her phone,3,What is Phoebe holding when the video starts?,124453,Friends,0-2.16,friends_s05e21_seg02_clip_07,A coffee cup 2415,To lend her his car.,To borrow money.,Stan Lee's phone number for Sheldon.,To give her a job.,To help her move.,2,What did Penny ask Stuart for after she asked it he could do her a favor?,124454,The Big Bang Theory,0-16.33,s03e16_seg02_clip_15,Stan Lee's phone number for Sheldon. 2416,He shoots himself. ,He ignores Castle. ,He lays down on the floor. ,He passes out. ,He sits up and faces Castle.,4,What does the man in the jail cell do after he sees Castle?,124455,Castle,31.71-36.12,castle_s03e15_seg02_clip_16,He sits up and faces Castle. 2417,Sleeping. ,Playing a game.,Talking.,Singing.,Watching a movie.,4,What were Rachel and Joey doing in the living room before the credits came on?,124456,Friends,15.2-23.53,friends_s08e12_seg02_clip_21,Watching a movie. 2418,Ryan and Beckett are looking for Rogan.,Ryan and Beckett are looking for Esposito.,Ryan and Beckett are looking for Alexis.,Ryan and Beckett are looking for Castle.,Ryan and Beckett are looking for Gates.,3,Who are Ryan and Beckett looking for when they search the scene of the crash?,124457,Castle,41.73-46.99,castle_s07e01_seg02_clip_01,Ryan and Beckett are looking for Castle. 2419,At work,In the kitchen,In her bed,In the car,In Sheldon's living room,2,Where is Penny when she is talking to Sheldon about Leonard?,124458,The Big Bang Theory,18.91-21.75,s06e02_seg02_clip_10,In her bed 2420,gives house a hug,hugs chase,sits in a chair ,calls security,hugs bens step dad,4,what does ben's mom do after hearing that her son is going to be ok?,124459,House M.D.,0-9.77,house_s08e06_seg02_clip_24,hugs bens step dad 2421,It gets thrown in the toilet,He loses it in the crowd,It gets stuck on his hand.,He destroys it with a hammer,He gives it back,2,What happens when the man asks Esposito for the ring back?,124460,Castle,12.66-21.7,castle_s04e18_seg02_clip_16,It gets stuck on his hand. 2422,They walk past a coffee shop.,They walk past a soda vending machine.,They walk past a door with a golden star on it.,They walk past a large painted portrait of a women. ,They walk past a large fan.,4,"what does Castle, Beckett and Esposito walk past when talking about teeming with twisted secrets?",124461,Castle,30.7-40.47,castle_s03e18_seg02_clip_01,They walk past a large fan. 2423,Sheldon wants to marry Bernadette.,Sheldon wants to marry Penny.,Sheldon wants to marry Leonard.,Sheldon wants to marry Priya.,Sheldon wants to marry Amy.,4,Who does Sheldon say that he wants to marry when he walks out of his room?,124462,The Big Bang Theory,45.16-55.22,s09e07_seg02_clip_12,Sheldon wants to marry Amy. 2424,At the restaurant. ,Penny's apartment.,The library.,At the comic book store.,The laundry room.,4,Where was Penny and Sheldon when he asked her when they became friends?,124463,The Big Bang Theory,0-4.34,s02e01_seg02_clip_04,The laundry room. 2425,her son,Derek,Jake,her father,her brother,2,Who does Helen say is gone after she says it's the last time?,124464,Grey's Anatomy,4.53-13.14,grey_s03e18_seg02_clip_03,Jake 2426,Kristy Wood,Kylie Wood,Karrie Wood,Mary Woods,Brylie Woods,1,Who did Katie say she wanted to see in the pageant when Meredith was doing the exam?,124465,Grey's Anatomy,9.77-18.14,grey_s01e01_seg02_clip_09,Kylie Wood 2427,I am outta here,That is good,That is so bad,Next please,Maybe later,0,What did Barney said after Lily said I am rage envy?,124466,How I Met You Mother,24.5-26.04,met_s02e16_seg02_clip_07,I am outta here 2428,Computers are behind Sheldon.,Books are behind Sheldon.,Dogs are behind Sheldon.,Cats are behind Sheldon.,Papers are behind Sheldon.,1,What is behind Sheldon when he is talking to Amy?,124467,The Big Bang Theory,17.93-24.01,s06e15_seg02_clip_06,Books are behind Sheldon. 2429,Chandler has a crush on his coworker,Chandler actually enjoys his job,He's too afraid,Chandler can't afford to quit because he is supporting Joey,Chandler figures he'll hate any job he ever has.,2,Why does Chandler say he doesn't quit his job when Rachel says he hates it?,124468,Friends,0-17.53,friends_s03e10_seg02_clip_09,He's too afraid 2430,Wilson and House toast to the creamy goodness.,Wilson and House toast to insanely smart bears.,Wilson and House toast to greater health.,Wilson and House toast to climbing the hill.,"Wilson and House toast to life, laughter and oreos.",3,What do Wilson and House toast their oreos to when reminiscing about the bear?,124469,House M.D.,12.35-23.76,house_s08e21_seg02_clip_16,Wilson and House toast to climbing the hill. 2431,Pray,Warm up,Stretch out,Run laps,Get drunk,4,What does Joey suggest he and the man in the apartment do before dancing?,124470,Friends,37.82-46.22,friends_s04e04_seg02_clip_11,Get drunk 2432,Martha tells Castle that she wanted to get an early start for her violin lesson.,Martha tells Castle that it's Alexis' first Valentines Day with Ashley and she's feeling the pressure.,Martha tells Castle that she left early because she didn't want to see him.,Martha tells Castle that she needed to pick up some things for school.,Martha tells Castle that she needed to get gas in the car before her lesson.,1,Why did Martha tell Castle Alexis left early when he is in the kitchen getting his coffee?,124471,Castle,75.61-85.82,castle_s03e15_seg02_clip_15,Martha tells Castle that it's Alexis' first Valentines Day with Ashley and she's feeling the pressure. 2433,Tired.,Bad.,Sick.,Good.,Rested,3,How did Robin say she was after Barney asked how she was doing? ,124472,How I Met You Mother,11.14-15.36,met_s03e17_seg02_clip_01,Good. 2434,She had a baby,She took a break,She let one rip,She laid down,She took a break,2,What did Chip say that Zana did after having dinner with Monica? ,124473,Friends,18.01-25.21,friends_s04e02_seg02_clip_16,She let one rip 2435,His television,A rare surgical textbook,His spiffy sweater,His motorcycle,His car,1,What does House want to buy from Harris when the men are mowing his lawn?,124474,House M.D.,32.17-45.61,house_s06e20_seg02_clip_19,A rare surgical textbook 2436,A white envelope.,An empty coffee cup.,A stack of research files.,A pen that won't write.,His pager.,0,What does House throw into the garbage can when he sits down next to the computer?,124475,House M.D.,22.5-29.56,house_s03e22_seg02_clip_18,A white envelope. 2437,Vogler did not expect anything,Vogler expects House to be in his office with his lunch,Vogler expects House to be in his office with dinner,Vogler expects House to be in his office with a snack,Vogler expects House to be in his office with his letter of resignation,4,What did Vogler expect from House after he left from talking to House?,124476,House M.D.,0-10.89,house_s01e18_seg02_clip_05,Vogler expects House to be in his office with his letter of resignation 2438,Pheobe had a talk with Emily that upset him.,Chandler had a talk with Emily that upset him.,Joey had a talk with Emily that upset him.,Rachel had a talk with Emily that upset him.,Monica had a talk with Emily that upset him.,4,Who had a talk with Emily that Ross is upset about before coming to the apartment?,124477,Friends,23.3-42,friends_s04e23-24_seg02_clip_16,Monica had a talk with Emily that upset him. 2439,An elephant. ,A flag. ,A portrait of a man. ,Leaves. ,A bride. ,4,What is there a picture of on the wall behind Marcus when he's explaining that Zoey is in love with Ted? ,124478,How I Met You Mother,18.91-51.05,met_s06e15_seg02_clip_08,A bride. 2440,The bomb is close to the pediatric unit.,The bomb is located in the busiest section of the hospital.,The OR that the bomb is located in is directly above the main oxygen line.,The bomb is located in the most highly populated section of the hospital.,The bomb is directly above the nursery.,2,Why is Burke so worried about the location of the bomb when he tells Meredith where it is?,124479,Grey's Anatomy,28.75-42.68,grey_s02e17_seg02_clip_08,The OR that the bomb is located in is directly above the main oxygen line. 2441,He is not ok ,he is ok,he is drinking ,he going to eat,he is going to a movie ,0,What did House say after he was hallucinating? ,124480,House M.D.,19.46-22.16,house_s05e24_seg02_clip_25,He is not ok 2442,Gloria showed as a granny.,Gloria showed as an adviser.,Gloria showed as a friend.,Gloria showed up as Sarah's long-lost mother.,Gloria showed up as teacher.,3,What did Gloria to approached Sarah when she was alive?,124481,Castle,78.59-85.33,castle_s03e18_seg02_clip_16,Gloria showed up as Sarah's long-lost mother. 2443,Kutner said the dog marked its territory in the kitchen.,Kutner said the dog marked its territory in the living room.,Kutner said the dog marked its territory in the dining room.,Kutner said the dog marked its territory in the patient's bedroom.,Kutner said the dog marked its territory in the basement.,1,Where did Kutner say a dog marked its territory when the dog moved into a patient's house?,124482,House M.D.,18.73-21.46,house_s05e17_seg02_clip_13,Kutner said the dog marked its territory in the living room. 2444,"Phoebe is breaking up with T ony because, he cheated","Phoebe is breaking up with T ony because, he is not fun anymore","Phoebe is breaking up with T ony because, he lied","Phoebe is breaking up with T ony because, he is mean","Phoebe is breaking up with T ony because, he is a horrible person",1,"Why is Phoebe breaking up with T ony, when she is questioned by Monica?",124483,Friends,0-7.38,friends_s01e05_seg02_clip_01,"Phoebe is breaking up with T ony because, he is not fun anymore" 2445,ryan,the police chief,natalie,enrique,Beckett,4,Who called Castle when he was complaining about the script?,124484,Castle,43.29-64.02,castle_s03e11_seg02_clip_00,Beckett 2446,Thomas Crown,Rollins,Victor Mature,The antichrist,Victor Crowne,4,"Who does Castle describe as having cold, soulless eyes after Beckett expresses concern that he is acting ""next level nutter"" crazy?",124485,Castle,72.22-84.99,castle_s08e21_seg02_clip_15,Victor Crowne 2447,The elevator doors.,The box.,The envelope.,The gift.,The car door.,0,"What opened after Jason said that he just wanted an answer, that's all?",124486,House M.D.,4.5-13.96,house_s05e09_seg02_clip_17,The elevator doors. 2448,He made a phone call.,He opened the door.,He rubbed his head.,He put on his coat.,He took off his jacket.,1,What did House do before he talked to Broda?,124487,House M.D.,23.71-27.26,house_s07e07_seg02_clip_12,He opened the door. 2449,On her lap,Hanging on her chair,On the table,On the floor by her feet,She didn't have a bag,1,Where was Phoebe's bag when the group was having dinner?,124488,Friends,13.01-18.86,friends_s05e17_seg02_clip_17,Hanging on her chair 2450,A grey suit with a red tie.,A navy suit with a blue and white striped tie.,A black suit with green paisley bowtie.,A navy polo shirt with a tan sports jacket.,A black T-shirt with a pocket,0,What is Mr. Weisberg wearing when he is being questioned by Beckett,124489,Castle,0.94-5.64,castle_s02e20_seg02_clip_23,A grey suit with a red tie. 2451,She was going to the gift shop.,She was going to the surgery room.,She was going to the cafeteria.,She was going home.,She was going to a theme park.,1,Where was Callie going after talking to George?,124490,Grey's Anatomy,51.76-66.17,grey_s03e15_seg02_clip_21,She was going to the surgery room. 2452,Shopping.,The coffee shop.,The hospital.,At Phoebe's.,At Chandler's.,2,Where were Phoebe and Monica before they were at Monica's watching the tonight show?,124491,Friends,0-7.25,friends_s01e11_seg02_clip_01,The hospital. 2453,Food,Clothes and suitcases,Children,Dogs,Cats,1,What does Rachel have all over the living room when Phoebe walks in?,124492,Friends,41.34-51.32,friends_s01e12_seg02_clip_11,Clothes and suitcases 2454,What's for dinner.,Where are you going.,How's the group.,What are the conditions.,What do you think about the place.,0,What question did House ask Wilson after the talking about lying?,124493,House M.D.,37.78-42.33,house_s02e16_seg02_clip_10,What's for dinner. 2455,Dr Taylor,Derek,the patient,nurse,xray tech ,0,Who does George accuse of drinking before surgery? ,124494,Grey's Anatomy,71.53-87.87,grey_s01e07_seg02_clip_12,Dr Taylor 2456,A piano is being used,A fiddle is being used,A guitar is being used ,A saxophone is being used,A flute is being used,2,What instrument is being used to introduce a new song when some of the group is listening,124495,Friends,0-4.56,friends_s03e14_seg02_clip_20,A guitar is being used 2457,In the clinic,In the car,In his office,On the airplane ,At his place. ,3,Where were House when he was talking to Cuddy?,124496,House M.D.,49.64-57.83,house_s03e18_seg02_clip_04,On the airplane 2458,She says she's going to buy the house.,She says she's going to make an offer on the house.,She says that she's going to bulldoze the house.,She says that she's going to set the house on fire.,She says that she's going to sell the house. ,1,What does the realtor tell Monica the woman upstairs is going to do when she is talking to her?,124497,Friends,7.28-22.13,friends_s10e15_seg02_clip_07,She says she's going to make an offer on the house. 2459,The bed,A Chair,Bedside table,A round table,A couch,2,What piece of furniture did house move after finding out the dog died?,124498,House M.D.,81.92-83.27,house_s04e03_seg02_clip_24,Bedside table 2460,milk,tea,coffee,soda,water,2,What drink did Penny have too much of when she was working?,124499,The Big Bang Theory,37.18-45.69,s02e18_seg02_clip_12,coffee 2461,Beckett. ,Esposito. ,The victim. ,The wall of the building. ,His wallet. ,3,What is Castle gesturing to when he is standing next to the victim and Beckett?,124500,Castle,64.55-66.42,castle_s07e09_seg02_clip_00,The wall of the building. 2462,Goes to kitchen,Leaves with the girls,Runs upstairs,Sits on couch next to Sheldon,Drops his food,3,What does Howard do after all the girls leave?,124501,The Big Bang Theory,77.45-83.33,s05e08_seg01_clip_01,Sits on couch next to Sheldon 2463,A desk.,A window.,A car.,A closet.,A vending machine.,4,What is behind House when he is talking to his team?,124502,House M.D.,0-9.12,house_s05e10_seg02_clip_14,A vending machine. 2464,None. ,Five. ,Six. ,Seven. ,Four. ,4,How many people are standing at the counter listening when House is talking about the why the patient thought he needed a bunker. ,124503,House M.D.,65.69-69.83,house_s08e08_seg02_clip_05,Four. 2465,Alexis promised to become a writer. ,"Alexis promised to grow in a mature, non-infantile woman. ",Alexis promised Castle she'd eventually read one of his books. ,That she'd be home before dawn was what Alexis promised. ,Alexis promised to always be his little girl. ,4,What did Alexis promise when talking to Castle? ,124504,Castle,37.45-46.57,castle_s01e10_seg02_clip_21,Alexis promised to always be his little girl. 2466,Long Island,New Jersey,Manhattan ,Brooklyn,Queens,3,Where does Ted say he'd be willing to move when he is talking to Stella?,124505,How I Met You Mother,46.46-65.18,met_s04e03_seg02_clip_14,Brooklyn 2467,pillow,chair,phone,folder,keys,3,What did Foreman grabbed before he started talking to House?,124506,House M.D.,2.67-11.57,house_s02e09_seg02_clip_14,folder 2468,Jill showed off a gorgeous forest green jacket.,Jill showed off her new sweater and new pants.,Jill showed off a new black pant suit.,Jill showed off her new Tommy Hilfiger jeans.,Jill showed off an elegant red dress.,1,What items did Jill show off after she took them from their shopping bags?,124507,Friends,11.98-25.09,friends_s06e13_seg02_clip_05,Jill showed off her new sweater and new pants. 2469,A funny picture.,A box with a ring.,His new hat.,His new suit.,A dollar bill.,1,What did Ross show Chandler after he walked in?,124508,Friends,2.52-10.4,friends_s04e22_seg02_clip_00,A box with a ring. 2470,The waitress took a picture.,The waitress served crabs.,The waitress wants to be paid.,The waitress wants a good tip.,The waitress wants everybody leave.,0,What did the waitress when Lily and Marshall were discussing.,124509,How I Met You Mother,23.5-44.97,met_s02e03_seg02_clip_03,The waitress took a picture. 2471,It is a pink color.,The inside is black.,It is brown.,It is a gray tone.,The inside is blue.,0,What is the color of the inside of Rachel's jacket when she takes it off?,124510,Friends,0-5.99,friends_s07e05_seg02_clip_13,It is a pink color. 2472,A new piece of hospital red tape,The biopsied heart,A new email forward,Strands of DNA,The patient's misshapen legs,3,What is Chase showing House after the team had just biopsied the patient's heart?,124511,House M.D.,52.66-69.58,house_s03e02_seg02_clip_12,Strands of DNA 2473,Beckett needed an EMP emitter.,Beckett needed the units of men to look for gunshell casings and bloodstains.,Becket needed an Emergency swat team formation around the perimeter.,Beckett was curious who could find where Detective Castle disappered.,Becket was hungry for some lunch so she had the men of the unit order soemthing.,1,What did Beckett want looked for when she found out the body had gun shot wounds?,124512,Castle,31.45-47.4,castle_s01e04_seg02_clip_01,Beckett needed the units of men to look for gunshell casings and bloodstains. 2474,somatostatin,oxytocin,adrenalin,Cortisol,T3,1,What hormone did Sheldon say was released when a female witnesses a male domination exhibition?,124513,The Big Bang Theory,19.85-26.05,s02e09_seg02_clip_12,oxytocin 2475,The neck,The chest,The armpit,The genital area,The head,4,Where is the wound on the body when Alexis shows it to Lanie?,124514,Castle,6.75-24.76,castle_s07e21_seg02_clip_08,The head 2476,10,5,4,7,6,4,How many red cups were on the table when Penny was pouring the beer?,124515,The Big Bang Theory,0-3.98,s05e19_seg02_clip_11,6 2477,Sheldon looked weird with his eyes.,Sheldon was too pretty.,Sheldon was too smart.,Sheldon was rude.,Sheldon had too many enemies.,2,What did Sheldon think when the kids hated him as a child?,124516,The Big Bang Theory,24.89-42.54,s03e01_seg02_clip_14,Sheldon was too smart. 2478,Leonard let Raj's dog drink his beer. ,Penny and Leonard dressed Raj's dog up like a toy robot.,Leonard and Penny shaved Raj's dog's fur. ,Leonard accidentally dyed Raj's dog's fur bright orange at the lab. ,Penny let Raj's dog eat a box of chocolates. ,4,Why was Raj angry with Leonard and Penny after he entered the Vet's office?,124517,The Big Bang Theory,8.85-39.84,s07e15_seg02_clip_07,Penny let Raj's dog eat a box of chocolates. 2479,They can never go to the moon. ,They can never go to outer space. ,They can go to outer space too. ,They need to study hard so they cannot make their dreams come true.,They can never amount to anything. ,2,What does Howard tell the kids when giving a speech at school?,124518,The Big Bang Theory,44.37-46.48,s06e18_seg02_clip_09,They can go to outer space too. 2480,Threw it across the room.,Sat it on the table.,He didn't have a plate.,Put it in the kitchen sink,Threw it in the garbage.,1,What did Ross do with his plate when he was talking about calling from Rome?,124519,Friends,0-3.92,friends_s01e08_seg02_clip_02,Sat it on the table. 2481,It was apartment 2-C,it was apartment 1-B,it was apartment 2-D,it was first floor,It was apartment 3-C,0,What was the floor number of the apartment Castle and Beckett found out when they looked on the marker board,124520,Castle,10.03-20.06,castle_s03e02_seg02_clip_16,It was apartment 2-C 2482,Castle respects Toni.,Confidentiality is very important to Castle.,Castle is eager to hear about Toni's sex life.,Castle just wants Toni to confess.,Castle is not aware of the investigation procedure he needs to follow.,2,Why is Castle so quick to promise confidentiality after Toni mentions that it's about her sex life?,124521,Castle,74.31-91.18,castle_s03e02_seg02_clip_16,Castle is eager to hear about Toni's sex life. 2483,Ross tells the man he's calling the police.,Ross tells the man he wants him out of the apartment.,Ross tells the man he's tired of listening to his noise from below.,Ross tells the man that he's one of the applicants for the apartment.,Ross tells the man he's disgusted by his nakedness.,3,What does Ross tell the naked man he applied for after knocking on the door?,124522,Friends,25.81-33.31,friends_s05e14_seg02_clip_13,Ross tells the man that he's one of the applicants for the apartment. 2484,Got up and left,Chugged down a mug of beer,Pretended to stab himself and die,Slipped all the way down under the table,Gagged,2,What does Barney do when Ted and Robin were kissing and he was sitting in the booth at the bar with them?,124523,How I Met You Mother,13.96-23.88,met_s02e01_seg02_clip_02,Pretended to stab himself and die 2485,I'm only pretending to be depressed.,I'm on the verge of suicide.,I've never been more depressed in my life.,I'm not depressed.,I'm depressed most of the time.,3,What did Dr. House say when Dr. Wilson asked him how depressed he was?,124524,House M.D.,62.58-64.42,house_s03e15_seg02_clip_24,I'm not depressed. 2486,Ross is not a good dad,Ross is not mentally stable,Ross is not financially stable,Ross may meet and marry someone else,Ross does not care about the baby,3,Why does Janice indicate that Rachel should be concerned when Rachel tells her that she has Ross to help with the baby?,124525,Friends,23.89-34.08,friends_s08e23-24_seg02_clip_40,Ross may meet and marry someone else 2487,A trick.,A waste of time.,A joke.,A hokum.,A useless act.,3,What did Sheldon call meditation after Raj left his apartment?,124526,The Big Bang Theory,57.82-68.03,s03e18_seg02_clip_08,A hokum. 2488,sexy,irritated,bored,hungry,tired,0,How did Stephanie feel when she was making out with Leonard?,124527,The Big Bang Theory,49.87-59.02,s02e08_seg02_clip_09,sexy 2489,Inside the fridge.,On top of the kitchen counter.,On top of a tray on the table.,On the counter.,On top of a dresser.,2,Where were the glasses of water when Westfield was saying that an enemy operative had intercepted classified data to Beckett?,124528,Castle,54.18-58.28,castle_s03e09_seg02_clip_20,On top of a tray on the table. 2490,A restaurant,A bar,Texas,The postoffice,The mall,2,Where is Sheldon going after he leaves the apartment? ,124529,The Big Bang Theory,24.76-56.26,s07e11_seg01_clip_00,Texas 2491,ross was talking to juice when rachel was talking,ross was reading the bible when rachel was talking,ross was holding a book with shampoo on it when rachel was talking,ross was reading the bible when rachel was talking,ross was talking to picclo when rachel was talking,2,what was ross doing when rachel was talking,124530,Friends,27.46-48.82,friends_s10e01_seg02_clip_20,ross was holding a book with shampoo on it when rachel was talking 2492,Ryan,Esposito,Castle,Chief,The suspect,2,Who walks behind Tom and Beckett after they leave?,124531,Castle,19.52-24.52,castle_s02e21_seg02_clip_04,Castle 2493,ate a muffin,grabbed a cup of tea,put a plate down,opened a cabinet,closed the microwave door,1,What did Phoebe do when Monica started telling her she will be filling in as food critic?,124532,Friends,2.21-11.98,friends_s04e09_seg02_clip_00,grabbed a cup of tea 2494,Wilson said he wants it for his last meal ever.,Wilson said it's worth the cholesterol skyrocket.,Wilson said no one can resist a French Toast Tower.,Wilson said he will never give it up.,Wilson said it was his one vice and he was keeping it.,4,How did Wilson defend his love for French Toast Towers when Sam asked him what his cholesterol was?,124533,House M.D.,8.46-11.28,house_s06e18_seg02_clip_00,Wilson said it was his one vice and he was keeping it. 2495,Raj and Penny decided to get married. ,Raj and Penny parted as bitter enemies. ,Raj made it clear he now pitied Penny. ,Raj and Penny parted as friends. ,Penny screamed at Raj to leave her apartment. ,3,How did Raj and Penny part after the end of the discusssion? ,124534,The Big Bang Theory,54.83-63.02,s05e01_seg02_clip_11,Raj and Penny parted as friends. 2496,Alexis ,Ryan,Castle,Beckett,Esposito ,4,Who was driving the car when Ryan and Esposito when they were discussing about the diamond? ,124535,Castle,1.37-14.16,castle_s06e08_seg02_clip_13,Esposito 2497,They got out to get some food,The heard gun shots,They got a call from Beckett,It was a bomb in the car,They saw a suspect,4,Why did Ryan and Esposito get out of the car after sharing a warm moment? ,124536,Castle,67.34-80.22,castle_s08e05_seg02_clip_12,They saw a suspect 2498,Because Sheldon's room is in quarantine.,Because Sheldon's room is desorganized.,Because Sheldon's room is too small.,Because Sheldon is sick.,Because Sheldon doean't allow girls in his room.,4,Why Amy left Sheldon room when he was upset?,124537,The Big Bang Theory,0-49.94,s08e08_seg02_clip_16,Because Sheldon doean't allow girls in his room. 2499,Sally,Cameron ,Cuddy,Wilson,House,3,Who walked out of the office first after the Foreman told his idea?,124538,House M.D.,31.21-35.05,house_s03e21_seg02_clip_20,Wilson 2500,Her shoes,Her purse,Her glass,Her wrap,Her necklace,3,What did Monica forget when she and Ross are about to leave?,124539,Friends,34.87-42.01,friends_s07e11_seg02_clip_20,Her wrap 2501,Because she cheats,Because she says so,Because her boyfriend really wants to build her confidence,Because she likes to make up her own rules to sports,Because she is dainty,4,Why does Phoebe get 23 points when she is learning to play basketball,124540,Friends,30.25-44.12,friends_s03e13_seg02_clip_08,Because she is dainty 2502,A truck.,A heater.,A bed.,A desk.,A window.,4,What is behind Wilson when he said something about ridiculous?,124541,House M.D.,0-7.63,house_s01e01_seg02_clip_18,A window. 2503,Robin was talking to his dad,Robin was talking to Lily,Robin was talking to her aunt.,Robin was talking alone,Robin was talking to Ted.,0,Who was talking Robin when sat on the couch,124542,How I Met You Mother,16.51-33.63,met_s06e14_seg02_clip_12,Robin was talking to his dad 2504,A file folder.,A cell phone.,A glass of water,A stethoscope.,A teddy bear.,3,What did Foreman grab when he was standing next to the patients bed? ,124543,House M.D.,0-4.46,house_s05e21_seg02_clip_10,A stethoscope. 2505,Red,Blue,Green,Yellow,Lavendar,3,What is the color of Cameron's gown when she is doing the biopsy?,124544,House M.D.,20.92-85.02,house_s02e07_seg02_clip_09,Yellow 2506,George kisses the woman.,George looks away from the woman.,George walks out the door.,George performs surgery.,George dances with Meredith.,1,What does George do when he says that ?,124545,Grey's Anatomy,40.96-42.78,grey_s02e02_seg02_clip_20,George looks away from the woman. 2507,In jail,At the courthouse,In a car,At the church,At the precinct,2,Where is Castle when he calls Beckett on their wedding day?,124546,Castle,81.65-90.73,castle_s06e23_seg02_clip_26,In a car 2508,A golf ball,A baseball,A basketball,A baseball card,A signed Star Wars script,0,What does Sheldon grab from the shelf when he's in the storage unit?,124547,The Big Bang Theory,43.64-51.27,s09e19_seg02_clip_16,A golf ball 2509,Chase gave her medication,Chase gave her bag,Chase put cover on her,Chase turn on the machine,Chase gave her tea,3,What did Chase do before he told Augustine they will be back to check on her ?,124548,House M.D.,84.6-92.69,house_s01e05_seg02_clip_16,Chase turn on the machine 2510,A banana,A bagel,A book,A movie theater,Tickets to Hamilton,1,What does Raj say you can't find in India when asked by Leonard?,124549,The Big Bang Theory,0-45.78,s01e04_seg01_clip_01,A bagel 2511,Bottle of water. ,A beer bottle. ,Wine glass. ,A stuffed animal. ,A bottle of lotion. ,0,What is Phoebe holding when she is sitting on the couch next to Rachel in Joey's apartment?,124550,Friends,58.83-60.03,friends_s07e07_seg02_clip_01,Bottle of water. 2512,Dr. Cameron,Dr. Foreman,Her patient. ,Dr. Chase,House,4,Who did Cuddy want to go talk to when she stood up? ,124551,House M.D.,0-2.7,house_s03e01_seg02_clip_26,House 2513,More than 5 minutes,Less than a minute,Less than 5 minutes,More than 2 minutes,More than 10 minutes,1,How long did ryan say that the phone call that paul received lasted when talking to beckett and castle?,124552,Castle,53.57-60.39,castle_s07e08_seg02_clip_02,Less than a minute 2514,50$,100$,1000$,5000$,500$,0,How much money did Esposito say Amber had in the bank after he mentioned what she spent money on?,124553,Castle,13.5-20.26,castle_s03e23_seg02_clip_13,50$ 2515,He gave him some wine.,House gave Clarence some milk.,He gave him some water.,House gave Clarence some tea.,House gave Clarence a drink of liquor.,4,What did House give Clarence to drink when Clarence was in the hospital bed? ,124554,House M.D.,1.96-10.29,house_s02e01_seg02_clip_14,House gave Clarence a drink of liquor. 2516,Monica says thank you.,Monica orders the restaurant staff to take salads to table four.,Monica asks for a new jacket.,Monica walks out. ,Monica hugs him. ,1,What does Monica do after the waiter tells her it was really good?,124555,Friends,0-8.12,friends_s04e10_seg02_clip_18,Monica orders the restaurant staff to take salads to table four. 2517,because he told her to leave the room ,because she thought he was playing sleep,because he tried to get out the bed,because he stopped breathing,because she thought he hated them that much,4,Why did Franni get angry after Doug said he could not quit?,124556,House M.D.,0-14.29,house_s05e21_seg02_clip_10,because she thought he hated them that much 2518,A bunch of condoms,A blue cup.,A bottle opener.,A can juice.,A TV remote.,0,What did Raj pick up before he said something about that's the spirit?,124557,The Big Bang Theory,33.02-42.32,s02e21_seg02_clip_04,A bunch of condoms 2519,Ted is irritated because his food has not been delivered,Ted is irritated because Lily and Marshall are always kissing,Ted is irritated because Lily and Marshall are too touchy,Ted is irritated because his cable is out,Ted is irritated because Lily and Marshall know everything about each other,4,Why is Ted irritated when he is listening to Lily and Marshall,124558,How I Met You Mother,47.81-58.14,met_s02e09_seg02_clip_01,Ted is irritated because Lily and Marshall know everything about each other 2520,A church ,Home,A pub,A taxi,A sketch artist,4,Where is beckett and castle taking mr. mueller when mr. mueller stops and sees the suspect on the tv?,124559,Castle,4.96-11.27,castle_s03e19_seg02_clip_05,A sketch artist 2521,Ryan was about to tell Castle that the gun was dipped in marinara sauce.,Ryan was about to tell Castle that the gun was real but was covered in fake blood.,Ryan was about to tell Castle that the gun was fake but was covered in real blood.,Ryan was about to tell Castle that the gun was coated with olive oil.,Ryan was about to tell Castle that the gun was fake.,4,What was Ryan about to tell Castle about the gun when Castle enters the room?,124560,Castle,0-14.9,castle_s02e24_seg02_clip_09,Ryan was about to tell Castle that the gun was fake. 2522,He goes to the bathroom. ,He leaves the room.,He sits on the couch.,He gets something from the fridge.,He hugs Leonard.,2,What does Sheldon do after he tells Leonard to remind him to compliment Wolowitz?,124561,The Big Bang Theory,26.64-35.42,s02e05_seg02_clip_13,He sits on the couch. 2523,They discussed their relationship.,They talked about the man in the store wanting to go into the adult section.,They talked about family.,They talked about friends.,They talked about work.,1,What was Monica talking about when she was with Richard in the video store?,124562,Friends,5.8-15.87,friends_s03e13_seg02_clip_00,They talked about the man in the store wanting to go into the adult section. 2524,Masters' last boat ride,An internship with House,A patient's medical history,Masters' sick mother,A job in New York City,1,What does Masters wish to discuss with Cuddy when the two are walking in the hallway?,124563,House M.D.,72.96-89.52,house_s07e19_seg02_clip_02,An internship with House 2525,Esposito put a death certificate in a folder;,He put a degree in the folder.,Esposito put a sheet of paper in the folder.,He put a flyer in the folder.,He put nothing in the folder.,0,What did Esposito put in a folder when the paper came from the fax machine?,124564,Castle,27.2-45.64,castle_s03e14_seg02_clip_23,Esposito put a death certificate in a folder; 2526,Raj.,Stuart.,Leonard.,Howard.,Sheldon.,0,Who is eating when the guys are watching Indiana Jones?,124565,The Big Bang Theory,62.95-74.56,s07e04_seg02_clip_17,Raj. 2527,Make tea,Light a cigarette,Light fireworks,Play with matches,Heat up his food,4,What does Joey want to do when he finds there is no gas leak?,124566,Friends,2-9.16,friends_s08e03_seg02_clip_10,Heat up his food 2528,Victor,Vincent,Vinny,Vikram,Vemen,3,Who did Beckett find when she was searching the buliding?,124567,Castle,48.62-59.43,castle_s08e02_seg02_clip_02,Vikram 2529,Foreman thinks hes a jerk because hes not attracted to her,Foreman thinks hes a jerk because he stepped on her foot,Foreman thinks hes a jerk because he called her weak,Foreman thinks hes a jerk because he told her a white lie,Foreman thinks hes a jerk because he took a job over her.,2,Why does Foreman think hes a jerk after speaking with Cameron?,124568,House M.D.,41.29-54.63,house_s03e22_seg02_clip_11,Foreman thinks hes a jerk because he called her weak 2530,An allergic reaction,Anaphylaxis,Fluid,A plastic bag,Poor air quality,2,What does Chase say almost caused the patient to suffocate when sitting at the table with his colleagues?,124569,House M.D.,88.69-91.9,house_s06e15_seg02_clip_00,Fluid 2531,helmet,beenie,hat,cap ,nothing,4,What was Jackson wearing on his head when he was getting an MRI?,124570,House M.D.,12.76-15.95,house_s05e16_seg02_clip_02,nothing 2532,A door,A phone,An ipad,A screen,A clipboard,4,What is Bailey looking at before she hands out the assignments?,124571,Grey's Anatomy,40.55-51.36,grey_s03e18_seg02_clip_01,A clipboard 2533,"Bernadette goes to the club with Raj, Howard, and Amy.","Bernadette goes to the club with Howard, Penny, and Amy.","Bernadette goes to the club with Raj, Penny, and Amy.","Bernadette goes to the club with Raj, Penny, and Howard.","Bernadette goes to the club with Priya, Penny, and Amy.",2,Who does Bernadette go to the club with when she is out?,124572,The Big Bang Theory,0-9.06,s06e11_seg02_clip_05,"Bernadette goes to the club with Raj, Penny, and Amy." 2534,Rachel,Monica,Joey and Ross,Phoebe,Chandler's grandfather,3,Who becomes interested in Chandler when he mentions saving money?,124573,Friends,8.48-19.68,friends_s07e02_seg02_clip_14,Phoebe 2535,Ross' apartment. ,The coffee shop.,Joey's Apartment.,Monica's Apartment.,The Hospital.,4,Where is Ross and Joey when Ross tells Joey that he doesn't want to be just anybody?,124574,Friends,5.58-8.06,friends_s09e02_seg02_clip_16,The Hospital. 2536,They run away together.,They give high fives.,They start to dance.,They hug.,They sit down.,3,What do Raj and Howard do after Howard yells at him to wait?,124575,The Big Bang Theory,5.55-9.65,s09e04_seg02_clip_14,They hug. 2537,He yelled at Phoebe,He laughed,He stormed out of the room,He sat on the bed,He kicked the bed,1,What was Chandler's first reaction to the bed after he noticed the bed?,124576,Friends,59.88-63.03,friends_s03e07_seg02_clip_14,He laughed 2538,blue ,yellow ,white,red,Black ,4,What color was Rachel dress when she was talking to Pheobe? ,124577,Friends,1.6-13.45,friends_s10e09_seg02_clip_06,Black 2539,Sorenson requested Beckett to be on his task force.,Beckett saw Sorenson at the New York Police Department annual conference.,Castle searched for Sorenson in an effort to surprise Beckett and help rekindle her love life.,Sorenson was found to be a suspect on a murder case that Beckett was working on.,Beckett searched for Sorenson online and called him.,0,How is Beckett back in touch with her ex after breaking up?,124578,Castle,33.56-45.81,castle_s01e09_seg02_clip_05,Sorenson requested Beckett to be on his task force. 2540,The American flag,The Star Trek flag,The California flag,The NASA flag,The Harvard Flag,0,What flag is on Sheldon's right when he introduces himself?,124579,The Big Bang Theory,3.15-6.3,s06e07_seg01_clip_00,The American flag 2541,Because Leonard is staying home.,Because Leonard is buying something.,Because Leonard is selling something.,Because Leonard is renewing his lease.,Because Leonard is moving out.,4,Why does Sheldon have Leonard sign something when Penny is there?,124580,The Big Bang Theory,0-8.92,s09e04_seg02_clip_04,Because Leonard is moving out. 2542,Foreman has a blue sweatshirt on.,Foreman has a pink sweatshirt on.,Foreman has an orange sweatshirt on.,Foreman has a green sweatshirt on.,Foreman has a red sweatshirt on.,0,Which color sweatshirt does Foreman have on when he discusses a job at Mercy with Thirteen?,124581,House M.D.,0-11.62,house_s05e15_seg02_clip_17,Foreman has a blue sweatshirt on. 2543,A painting,A gift,A plate of food,A lamp,A penguin,4,What was sitting next to Lily when she sat down to talk to Ted?,124582,How I Met You Mother,16.99-22.56,met_s02e11_seg02_clip_10,A penguin 2544,A black cap is on her head.,A police cap is on her head.,A long ponytail is on her head.,A barrette is on her head.,A bun is on her head.,4,What is on Beckett's head when she is standing next to Tory watching her enhance the film?,124583,Castle,50.17-60.03,castle_s06e21_seg02_clip_21,A bun is on her head. 2545,Sitting on the floor.,Standing in the kitchen.,Sitting outside.,Sitting on the sofa.,Standing in her bedroom.,3,Where was Pheobe Sr. when Pheoba was standing just in the doorway?,124584,Friends,3.21-8.66,friends_s03e25_seg02_clip_04,Sitting on the sofa. 2546,The victims seem to be targeted specifically.,The deaths seem to be connected.,No one was targeted.,The incident doesn't seem to be set to intentionally kill someone.,The incident seems to be meaningless. ,2,How does Beckett describe the incident after talking about who the other victims were?,124585,Castle,85.48-91.42,castle_s04e19_seg02_clip_02,No one was targeted. 2547,Packets of sugar.,Napkins.,Another cup.,A magazine.,A newspaper.,0,What was between the two cups on the table when Phoebe was pouring cream in her cup.,124586,Friends,0-5.19,friends_s09e06_seg02_clip_00,Packets of sugar. 2548,Monica,Ross,Joey,Phoebe,Chandler,2,Who does rachel need to give a rent check too before her actual date with joey?,124587,Friends,19.95-22.67,friends_s08e12_seg02_clip_06,Joey 2549,A big rat,A paramedic,A dog,A cat,A person,4,"What comes out of the vehicle when Richard says My God, wow?",124588,Grey's Anatomy,0-6.72,grey_s03e24_seg02_clip_04,A person 2550,I hate you!,I'm going to kill you.,Your daughter is in danger.,Jump off a cliff!,Go home.,4,What is one of the things the man tells Castle when he is speaking with him?,124589,Castle,1.8-14.4,castle_s07e02_seg02_clip_25,Go home. 2551,He was sad about it.,He said nothing.,He was happy about it.,He thought it was gross because Joey would be 52.,He was angry at Joey.,3,Where and when did Ross say as a response to Joey?,124590,Friends,25.29-64.03,friends_s10e04_seg02_clip_01,He thought it was gross because Joey would be 52. 2552,a notebook,a chalkboard,the floor,a white board,a tablet computer,3,what is the man in the red shirt writing on when he is talking to the doctors?,124591,House M.D.,0-21.16,house_s02e01_seg02_clip_21,a white board 2553,pen,mug,nothing,book,phone,0,What is Cameron holding when House and Kutner are talking at her desk?,124592,House M.D.,0-6.05,house_s05e13_seg02_clip_13,pen 2554,Monica,Chandler,Joey,Ross,Rachel,3,Who bets that they can get all 50 states before dinner?,124593,Friends,35.02-42.02,friends_s07e08_seg02_clip_01,Ross 2555,"White, horizontal blinds, drawn shut. ",Closed orange curtains.,A wall full of monitoring equipment. ,An over the bed table with a bouquet of balloons tied to it.,"A blanket and a pillow, on a chair. ",0,"What is behind Bailey's head when she says"" So. if you want it to fall off...?""",124594,Grey's Anatomy,12.25-16.79,grey_s02e10_seg02_clip_08,"White, horizontal blinds, drawn shut. " 2556,He goes on to say that he didn't know where he fit in.,He says this is why he killed himself,he goes on to say this was his parent's fault,he walks out.,he begins to cry,0,What happens after House suggests that Kutner was conflicted?,124595,House M.D.,53.58-54.92,house_s05e20_seg02_clip_07,He goes on to say that he didn't know where he fit in. 2557,Raj is with Amy. ,Sheldon is with Amy. ,Howard is with Amy. ,Penny is with Amy. ,Bernadette is with Amy. ,1,Who is with Amy when she is in her lab?,124596,The Big Bang Theory,0-3.84,s05e16_seg02_clip_07,Sheldon is with Amy. 2558,Monica and Joey are at the same table as Phoebe,Rachel and Monica are at the same table as Phoebe,Monica and Chandler are at the same table as Phoebe,Ross and Joey are at the same table as Phoebe,Rachel and Ross are at the same table as Phoebe,1,Who else is sitting at the table with Phoebe when she gets into a discussion with Roy?,124597,Friends,14.08-21.05,friends_s10e11_seg02_clip_12,Rachel and Monica are at the same table as Phoebe 2559,He was smart. ,He knew the situation well. ,He got lucky. ,He went off her advice. ,He had talked to Dr. Foreman.,2,Why did Wilson say House was right when he was talking to Cuddy? ,124598,House M.D.,14.64-22.07,house_s03e01_seg02_clip_26,He got lucky. 2560,Raj tags along for couples night.,Raj tags along for guys night.,Raj tags along for girls night.,Raj tags along for animal night.,Raj tags along for puppy night.,2,What does Raj tag along for when he is with the girls?,124599,The Big Bang Theory,0-9.93,s06e11_seg02_clip_05,Raj tags along for girls night. 2561,"Barney pretends to shovel ""dirt""",Barney pretends to commit a lewd act,Barney pretends to vomit,Barney pretends to commit Hari Keri,barney pretends to fall asleep,3,What act does Barney pretend to do after watching Ted and Robin kiss?,124600,How I Met You Mother,10.86-27.91,met_s02e01_seg02_clip_02,Barney pretends to commit Hari Keri 2562,mockery,Irony,anger,frustration,Sarcasm,4,What was the tone inflection used in Esposito's answer to Castle after Castle asked how the body was found?,124601,Castle,20.45-45.5,castle_s02e02_seg02_clip_03,Sarcasm 2563,Beckett says Tom.,Beckett says Dave.,Beckett says Scott.,Beckett says Sam.,Beckett says Larry,0,Who does Beckett say confessed when she discusses the DA looking into dismissing charges against Kyle?,124602,Castle,3.68-12.42,castle_s04e22_seg02_clip_25,Beckett says Tom. 2564,Neil told Taub that he was like a kid with no worries in this world.,Neil had told Taub that he is like a kid with a stocked candy shop.,Neil described himself as being like a kid with a credit card.,Neil said that he was like a kid with unlimited power and brains.,Neil had described himself to Taub as being like a kid with toys.,4,How did Neil describe himself as being when he told Taub that he was like a kid with what?,124603,House M.D.,40.06-42.31,house_s05e18_seg02_clip_12,Neil had described himself to Taub as being like a kid with toys. 2565,On the seat,On the table,In the cabinet,In someone's hand,On the bed,3,Where did Cameron put the record pad when she his done writing on it,124604,House M.D.,1.88-11.75,house_s05e01_seg02_clip_09,In someone's hand 2566,A Swiss Army knife,A pill bottle,His fingernails,His phone,A pen,4,What is House fiddling with before Wilson walks in the office?,124605,House M.D.,41.87-50.61,house_s03e15_seg02_clip_24,A pen 2567,Its something big,Its a slow start,Its a reaction to the medication,Its normal,It will stop,0,How does Meredith feel about the progress Mr Walker is making after he moves his finger?,124606,Grey's Anatomy,57.17-68.42,grey_s01e09_seg02_clip_21,Its something big 2568,He sit down,He give the people money,He close the windows,He pushed the people out of the restaurant.,He clean the floor,3,What did Joey did before closing the door?,124607,Friends,31.12-32.96,friends_s06e12_seg02_clip_12,He pushed the people out of the restaurant. 2569,Kisses him.,She walks away.,Writes him an apology.,Calls her mom.,Smacks him.,1,What does Izzie do after debating with Alex?,124608,Grey's Anatomy,77.78-96.03,grey_s02e08_seg02_clip_14,She walks away. 2570,At the movies.,At home,On a plane.,At a restaurant,At the police station.,2,What place are Castle and Alexis when the video starts?,124609,Castle,4.01-12.02,castle_s07e21_seg02_clip_19,On a plane. 2571,He thinks it looks stupid. ,He thinks it looks cheap. ,He thinks it looks like a jerk. ,He thinks it look crazy. ,He thinks it looks weird. ,2,What does Sheldon say about the turtle after Amy point one out?,124610,The Big Bang Theory,15.11-20.53,s08e17_seg02_clip_01,He thinks it looks like a jerk. 2572,Brown.,Dark blue.,Red.,Light blue.,White.,3,What color scrubs does Alex wear when sitting with Izzie?,124611,Grey's Anatomy,58.74-87.02,grey_s02e12_seg02_clip_24,Light blue. 2573,On the table to Castle's left.,In Rita's left hand.,In Rita's right hand.,In Castle's left hand.,On the table to Rita's right.,3,Where was the white coffee cup when Castle turned towards Rita?,124612,Castle,0-2.73,castle_s08e11_seg02_clip_22,In Castle's left hand. 2574,He smiled and went into the adult section of the video store.,He talked with her.,He frowned .,He left the store.,He ignored her.,0,What did the man do after Monica told him they weren't judging him?,124613,Friends,29.29-34.79,friends_s03e13_seg02_clip_00,He smiled and went into the adult section of the video store. 2575,a knife,a .45,a piece of brick,a stick,a hammer,1,What did the doctor say made the wounds when she examined the body?,124614,Castle,19.12-21.85,castle_s03e08_seg02_clip_02,a .45 2576,Blood,Fingerprints,Footprints ,Saliva,Cigarette butts,1,"What did Esposito say they ""didn't"" find when Beckett asked if they found anything?",124615,Castle,1.8-4.5,castle_s05e24_seg02_clip_04,Fingerprints 2577,The victim was a business person.,The victim was a teacher.,The victim was a cop.,The victim was a taxi driver.,The victim was a ,3,What was the job of the murder victim before he died.,124616,Castle,7.75-86.14,castle_s03e16_seg02_clip_11,The victim was a taxi driver. 2578,Yanavich,Lian,Gillium,Steven,Grigory,4,Who does Beckett say found out the truth and threatened to expose the person when she is interrogating them,124617,Castle,0.92-13.8,castle_s08e11_seg02_clip_24,Grigory 2579,A water bottle.,A latpotp.,a coffee cup.,His badge.,A file folder.,4,What was in Ryan's hand after Beckett said they should canvas auto shops?,124618,Castle,14.35-20.83,castle_s06e12_seg02_clip_04,A file folder. 2580,Because ballistics show the neither of the dueling pistols was the murder weapon.,Because Adam was unable to give them any details.,Because Adam was not in New York at the time of the murder.,Because Adam didn't know how to shoot a gun.,Because Adam didn't know where Goldstein was.,0,Why does Beckett think Adam didn't kill Goldstein even after he confessed?,124619,Castle,26.64-36.69,castle_s03e04_seg02_clip_23,Because ballistics show the neither of the dueling pistols was the murder weapon. 2581,Nothing.,A cup of coffee. ,A briefcase.,A plate of food.,A sheet of paper.,2,What is Chandler holding when he walks through the kitchen?,124620,Friends,13.96-15.51,friends_s08e19_seg02_clip_04,A briefcase. 2582,Cristina kissess Burke.,Cristina smacks Izzie.,Cristina walks out the door.,Cristina dances with Meredith.,Cristina frowns and turns away from Izzie.,4,What does Cristina do after Izzie waves her food in her face?,124621,Grey's Anatomy,54.01-56.27,grey_s01e07_seg02_clip_10,Cristina frowns and turns away from Izzie. 2583,black,white,red,blue,yellow,1,What color coffee cup does House drink from when he is dining with Wilson?,124622,House M.D.,51.79-58.92,house_s08e21_seg02_clip_16,white 2584,Irene,Cuddy,Foreman,His doctors,13 and Taub,0,Who does House go to see after he leaves Wilson's office and tells him he'll be right back?,124623,House M.D.,22.33-38.96,house_s04e04_seg02_clip_14,Irene 2585,I like you but I do not want to see you.,"Rachel, you're a real special lady.",I don't like you.,Want to get married?,Let's get married.,1,What does Joshua say after Rachel says I mean it just feels right. Don't you?,124624,Friends,0-14.71,friends_s04e20_seg02_clip_12,"Rachel, you're a real special lady." 2586,rub her hair with her right hand,rub her hair with her left hand,kiss Sheldon,go to sleep,point at Sheldon,1,"What did Amy do, when Sheldon told her ""Its nice to see you"" ?",124625,The Big Bang Theory,7.46-16.16,s10e13_seg02_clip_11,rub her hair with her left hand 2587,A document,An envelope,A box,A package ,A note,1,What was House trying to leave when he was at the door?,124626,House M.D.,46.21-55.21,house_s06e03_seg02_clip_13,An envelope 2588,In a beach chair,In a porch swing,On a wicker chair,On a rocking chair,On a white bench,4,Where was Ross sitting when his date revealed her bald head?,124627,Friends,47.76-53.34,friends_s03e25_seg02_clip_19,On a white bench 2589,He wishes he didn't care about his coworkers.,He's going to quit his job.,He doesn't care what his coworkers think anymore.,He wishes his coworkers cared a little bit.,He wishes his coworkers didn't care.,3,What does Earl say he wishes for before Phoebe called this a freaky place?,124628,Friends,38.77-49.62,friends_s07e13_seg02_clip_22,He wishes his coworkers cared a little bit. 2590,Cuddy,Foreman,Wilson,House,Masters,4,Who does Chase tell to be nice when talking about bedside manners?,124629,House M.D.,1.73-6.9,house_s07e14_seg02_clip_16,Masters 2591,Library,Walmart,Toysrus,Target,A Third Eye Blind Concert,0,Where did Joey meet the woman before he set her up with Ross?,124630,Friends,17.99-25.43,friends_s09e14_seg02_clip_04,Library 2592,Monica's wallet.,A coffee cup.,Her guitar.,A muffin.,A tissue.,4,What does Phoebe pick up when she finishes the hug?,124631,Friends,22.51-31.81,friends_s02e02_seg02_clip_14,A tissue. 2593,A coffee maker,A hospital bed,A stack of hospital gowns,A cabinet of medical supplies,Chairs,4,What was behind Regina when she told Cuddy that his doctor needs a nap?,124632,House M.D.,64.16-73.2,house_s06e13_seg02_clip_07,Chairs 2594,"No exit, Hastings said, the joke being Tyler would never leave the bar. ",Tyler would proudly walk out the front door. ,"Tyler lived upstairs, so he'd take the internal staircase. ","Tyler had a room in the basement, so he'd head down through the stockroom. ",Tyler would always take the back door to the alley. ,4,What exit would Tyler take when he'd leave Matt's Bar? ,124633,Castle,46.19-57.17,castle_s04e02_seg02_clip_23,Tyler would always take the back door to the alley. 2595,Rachel,Chandler,Richard,Phoebe,Janice,4,Who walks into the kitchen when Monica is cooking at the restaurant?,124634,Friends,6.6-10.8,friends_s07e07_seg02_clip_01,Janice 2596,A piece of pizza,An orange,An apple,A taco,He's not eating anything,2,What is Joey eating when he's talking to Monica and Rachel?,124635,Friends,2.61-9.57,friends_s04e04_seg02_clip_13,An apple 2597,Make the room a game room.,Make the room a theater room.,Make the room a studio.,Make the room a home office.,Make the room a baby room.,3,How did Bernadette say she wanted to decorate the room when Howard asked her?,124636,The Big Bang Theory,18.91-29.11,s09e12_seg02_clip_09,Make the room a home office. 2598,patient folders ,books ,purse,jacket,phone,0,what is park holding when her and house were talking ,124637,House M.D.,12.74-20.94,house_s08e02_seg02_clip_15,patient folders 2599,He threatened the owners wife.,He threatened to kill their owner.,He threatened to shut them down after a bad chemical spill.,He blew up their place,He blew up the owners house.,2,What does Alan say he did to the company when he is speaking with Esposito?,124638,Castle,39.79-43.37,castle_s08e19_seg02_clip_07,He threatened to shut them down after a bad chemical spill. 2600,I'm not going anywhere,"Okay, page me if you need me",Let me stay a while,Just let me watch for a few more minutes,I hope you know what your getting into,1,What did Derek say right after he left Richard,124639,Grey's Anatomy,24.85-92.03,grey_s02e06_seg02_clip_04,"Okay, page me if you need me" 2601,Monica's former boss,Monica's former accountant,Monica's teacher,Richard,Jenny,1,Who were Rachael and Phoebe talking to when they were talking to people at the party?,124640,Friends,0-5.1,friends_s07e19_seg02_clip_13,Monica's former accountant 2602,He is assisting with a surgery.,He is prepping for surgery.,He is talking to Cristina.,He is on the phone.,He is relaxing with a cup of tea.,3,What is George doing when Callie walks up to him?,124641,Grey's Anatomy,45.91-55.36,grey_s03e15_seg02_clip_21,He is on the phone. 2603,At Beckett,At Castle's head,At Castle's chest,At Martha and Mia,At Lucy ,3,Where did Lorenzo point the gun after telling Castle he will give him two reasons? ,124642,Castle,43.45-51.6,castle_s08e05_seg02_clip_20,At Martha and Mia 2604,A comb,A bag,A book,A baby,A cup,3,What did Mr Niles have in his hand when he was standing beside his wife?,124643,Grey's Anatomy,3.57-8.49,grey_s03e05_seg02_clip_12,A baby 2605,On a motorcycle. ,In a snowmobile. ,In a horse drawn carriage. ,In a vehicle. ,In a bubble bath. ,4,Where are Katee and Howard sitting when they're talking? ,124644,The Big Bang Theory,0-9,s03e09_seg02_clip_08,In a bubble bath. 2606,Wheres the milk?,To touching,Get a room,All right he likes you back,Oops sorry. ,3,What does joey say when he interrupts tag and rachels hug?,124645,Friends,53.66-57.38,friends_s07e08_seg02_clip_10,All right he likes you back 2607,Rachel said she tells her boss everything.,Rachel said she tells Monica everything.,Rachel said she tells her Mom everything.,Rachel said she tells Chandler everything.,Rachel said she tells Phoebe everything.,4,Who did Rachel say she tells everything when she was talking to Ross?,124646,Friends,30.31-35.42,friends_s03e01_seg02_clip_11,Rachel said she tells Phoebe everything. 2608,A bottle of water. ,A bottle of beer. ,A glass of wine. ,A shot glass. ,A cocktail. ,2,What is the woman holding when she is sitting at a dinner table with Ted?,124647,How I Met You Mother,2.68-7.37,met_s05e02_seg02_clip_02,A glass of wine. 2609,Bernadette is cooking in the oven.,Bernadette is folding napkins.,Bernadette is on her laptop.,Bernadette is on her phone.,Bernadette is stirring sauce.,4,What is Bernadette doing when she is talking to Raj about his date?,124648,The Big Bang Theory,0-5.11,s09e14_seg02_clip_10,Bernadette is stirring sauce. 2610,He puts his two thumbs in the air and leans back in the char. ,He leans forward on the table and smiles in the faces of Castle and Beckett. ,He takes his hand rubs his head.,He takes his hand rubs his face.,He puts his hands out in front of him and leans back in the chair.,4,What does Wade do after he tells Castle and Beckett Vega made his Vig and we were good?,124649,Castle,66.54-70.55,castle_s02e15_seg02_clip_06,He puts his hands out in front of him and leans back in the chair. 2611,A beer bottle. ,A wine bottle. ,A flask. ,A thermos. ,A cup. ,0,What is Ross drinking when he is in the hallway?,124650,Friends,40.63-44.97,friends_s04e16_seg02_clip_19,A beer bottle. 2612,Martha Pastures,Mary Masters,Marcy Masters,Martha Masters,Martha Statures,3,Who did Cuddy say House's new team member was going to be when she held up the file?,124651,House M.D.,33.74-44.23,house_s07e06_seg02_clip_00,Martha Masters 2613,They are life lessons,They are what he wishes life were like,They are the opposite of reality,They are like nursery rhymes- horror stories in disguise,They have always bored him to tears,0,How does Esposito relate to fairy tales when he is talking to Beckett and Castle?,124652,Castle,16.98-21,castle_s04e17_seg02_clip_02,They are life lessons 2614,a wallet,a sketchbook,a camera,a note book,a knife,3,What did Lucas pull out of his pocket right before he started stating what he found out? ,124653,House M.D.,32.31-37.78,house_s05e02_seg02_clip_05,a note book 2615,Ten dollars.,A million dollars.,Five bucks.,50 cents.,25 cents.,4,How much does Howard estimate the whistle is worth after Raj hands it to him?,124654,The Big Bang Theory,55.68-61.18,s06e14_seg02_clip_09,25 cents. 2616,Because Tommy want 25 grand from Brian.,Because Tommy wants to give a party surprise to Brian.,Because Tommy is broke.,Because Tommy needs money to gambling.,Because Tommy needs money to buy food.,0,Why Tommy blackmail Brian when he pretended to be Zack?,124655,Castle,11.75-17.62,castle_s03e21_seg02_clip_19,Because Tommy want 25 grand from Brian. 2617,Foreman,Wilson,Taub,Chase,Cameron,2,Who went into House's office when he was at his desk?,124656,House M.D.,76.75-82.33,house_s08e06_seg02_clip_24,Taub 2618,That's great,Nothing,give him something,cut him some slack,perfect,3,what did Joey say about chandler when he told with Monica,124657,Friends,6.74-58.61,friends_s02e08_seg02_clip_14,cut him some slack 2619,He was holding a yoyo,He was holding a stuffed animal,he was holding a beer,He was holding his girlfriends hand,He was holding a flashlight,4,What is Castle holding as he crawls on the floor before the lady woke up?,124658,Castle,43.6-53.29,castle_s01e09_seg02_clip_23,He was holding a flashlight 2620,Painting her nails.,Reading a magazine.,Looking through her mail.,Getting a drink.,Putting away her groceries. ,2,What is Monica looking at when she is listening to her phone messages?,124659,Friends,0-3.41,friends_s06e22_seg02_clip_10,Looking through her mail. 2621,That he should leave,That he should hold up another bank,That he would be put in witness protection,That he would be given immunity,That he will be killed,0,What does Beckett suggest when the suspect asks her what she will do?,124660,Castle,23.67-38.69,castle_s04e07_seg02_clip_02,That he should leave 2622,He wanted his advice on a pair of shoes.,He wanted his autograph.,He needed money from him.,Because he wanted to help Monica get a new bed.,He was hoping to get a hug from him.,3,Why did joey want to see the mattress king when he was speaking to the salesman?,124661,Friends,18.04-51.05,friends_s03e07_seg02_clip_20,Because he wanted to help Monica get a new bed. 2623,Monica is making sexual noises,Phoebe is considering becoming a lesbian,Phoebe is hoping to get a bigger tip,Monica has been flirting with Phoebe,Phoebe always feels sexual in her home.,0,Why does Phoebe get carried away when she is giving Monica a massage?,124662,Friends,15.68-41.54,friends_s08e14_seg02_clip_20,Monica is making sexual noises 2624,Sitting to the left of Foreman.,Sitting to the right of Wilson.,Sitting to the left of Cameron.,Standing behind Foreman.,Standing behind Cameron.,0,Where was Chase when he asked House if he thought Rachel had a tapeworm in her brain?,124663,House M.D.,53-56.59,house_s01e01_seg02_clip_18,Sitting to the left of Foreman. 2625,A bottle of water.,The blinds.,The balcony door.,The mini bar.,A box of chocolates,4,What did Haley open when she got into the hotel room?,124664,Castle,30.42-36.87,castle_s08e14_seg02_clip_00,A box of chocolates 2626,Castle picked up an umbrella ,Castle picked up a pad and a pencil ,Castle picked up an electric guitar,Castle picked up a cell phone,Castle picked up a Digital Camera,4,What did Castle pick up after Beckett mentioned getting a hold of CSU to sweep for prints,124665,Castle,38.01-47.97,castle_s06e09_seg02_clip_03,Castle picked up a Digital Camera 2627,Emily,Ross,Joshua,Chandler,Joey,2,Who tells Rachel they aren't ready for a relationship when they are talking?,124666,Friends,0-9.74,friends_s04e16_seg02_clip_18,Joshua 2628,Ross was actually glad that the duck might not be around.,Ross did not want to remember the duck.,"Unlike Joey and Chandler, Ross did not have pleasant memories of the duck. His memories were mostly associated with annoyance.",Ross is an unpleasant person.,Ross always makes unpleasant faces.,2,Why was Ross making an unpleasant face when he was remembering the duck?,124667,Friends,57.01-87.04,friends_s04e22_seg02_clip_18,"Unlike Joey and Chandler, Ross did not have pleasant memories of the duck. His memories were mostly associated with annoyance." 2629,Left the room.,Drank some water.,Turned around.,Took a picture out of a folder.,Dropped the folder.,3,What did Castle do before the man in the blue shirt mentioned Philip being Clifford Lee's oldest son?,124668,Castle,13.35-16.47,castle_s04e04_seg02_clip_16,Took a picture out of a folder. 2630,Foreman,The headless zombie.,Cuddy,Cameron,Thirteen,0,Who was behind House after he shot the two zombies?,124669,House M.D.,67.52-79.4,house_s07e15_seg02_clip_11,Foreman 2631,Leonard said everyone was going to eat at a diner.,Leonard said everyone was going to eat at a fancy restaurant.,Leonard said everyone was going to eat at his apartment.,Leonard said everyone was going to eat at Burger King.,Leonard said everyone was going to eat at Raj's house later tonight.,4,Where did Leonard say everyone was going to eat when he was on his computer?,124670,The Big Bang Theory,5.45-8.17,s04e17_seg02_clip_05,Leonard said everyone was going to eat at Raj's house later tonight. 2632,Yellow,Purple,Red,Pink,Blue,3,"What color is the shirt that Ryan is wearing when he say's ""Nothing good.""?",124671,Castle,81.01-91.03,castle_s03e08_seg02_clip_02,Pink 2633,Sheldon is holding a paper bag,Sheldon is holding a can of coca-cola,Sheldon is holding a poster of the new Star Wars movie,Sheldon is holding a pizza box,Sheldon is holding a gallon of milk,0,What is Sheldon holding before Amy ask him to be quiet,124672,The Big Bang Theory,0-6.1,s10e09_seg02_clip_01,Sheldon is holding a paper bag 2634,House said suddenly everyone hates you if you are dyeing,House said suddenly everyone loves you if you are dyeing,House said suddenly everyone feel sad for you if you are dyeing,House said suddenly everyone feel bad for you if you are dyeing,House said suddenly everyone feel crazy for you if you are dyeing,1,What did House say to Wilson when he is talking about dying?,124673,House M.D.,57.13-62.49,house_s02e02_seg02_clip_11,House said suddenly everyone loves you if you are dyeing 2635,Leonard is driving the van.,Raj is driving the van.,Howard is driving the van.,Sheldon is driving the van.,Priya is driving the van.,2,Who is driving the van when everyone is in the van?,124674,The Big Bang Theory,0-12.29,s09e03_seg02_clip_03,Howard is driving the van. 2636,A teddy bear,Flowers,A card,A box of chocolates,Nothing,0,What was Sheldon holding when he was at the hospital?,124675,The Big Bang Theory,0-3.58,s05e18_seg02_clip_05,A teddy bear 2637,sitting on the floor,sitting on chairs,sitting on a sofa,sitting on a coffee table,standing,3,What are Ross and Rachel doing when talking?,124676,Friends,0.65-3.25,friends_s06e01_seg02_clip_14,sitting on a coffee table 2638,Be at the coffee house,Be at a restaurant,Be at a bar,Be at the apartment,Be at Monica's apartment,3,What did Rachel say she'll do after Phoebe invited a guy over?,124677,Friends,15.08-40.88,friends_s07e15_seg02_clip_08,Be at the apartment 2639,Football League,Police Department,Police Athletic League,Basketball League,Bowling League,3,What did the top of the picture behind Beckett read before Castle said she was worth it?,124678,Castle,45.51-50.97,castle_s08e11_seg02_clip_22,Basketball League 2640,They kiss his face. ,They tickle him. ,They punish him. ,They tell him how they feel. ,They tell him to take it. ,0,What do Amy and Penny do after Sheldon is pinned?,124679,The Big Bang Theory,14.69-24.29,s06e04_seg02_clip_13,They kiss his face. 2641,Foreman and Chase,Adams and Taub,Chase and Adams,Chase and Taub,Foreman and Wilson,3,Who arrives late to the diagnostic team meeting after Park remarks that someone said he was at work?,124680,House M.D.,0-12.13,house_s08e05_seg02_clip_01,Chase and Taub 2642,A garbage bag.,A bathing suit,A new suit.,A checkered jacket.,A Halloween costume,3,What is Stuart wearing when he shows a comic to Penny?,124681,The Big Bang Theory,0-54.03,s02e20_seg02_clip_04,A checkered jacket. 2643,Came outside,Went inside,Walked away,Went to her office,Went into a restaurant,0,What did Zhang do after Beckett was on the phone?,124682,Castle,33.55-41.16,castle_s07e17_seg02_clip_19,Came outside 2644,A couple.,Just one.,A few.,None.,About five.,1,How many of the 1000 apartments Ross looked at did he say compared to his original when talking to the group?,124683,Friends,28.68-40.28,friends_s05e14_seg02_clip_10,Just one. 2645,bored,happy,shocked,tired,angry,2,How did Robin feel when she found out half failed the bar?,124684,How I Met You Mother,14.24-26.11,met_s03e08_seg02_clip_01,shocked 2646,A photograph printed from the video footage.,A video clip played from her smartphone.,His casting call photo.,Keys to an apartment.,A murder weapon.,0,What does Beckett show the Castle lookalike that confirms his identity in the mysterious video after meeting him for the first time?,124685,Castle,77.42-81.47,castle_s05e05_seg02_clip_22,A photograph printed from the video footage. 2647,Chandler was telling a story about how his mother broke up with someone.,Chandler was telling a story about how he was going to break up with Janice by using a note.,Chandler was telling a story about how Paolo kissed his mother.,Chandler was telling a story about how Rachel and Ross broke up.,Chandler was telling a story about how he was going to lose his job.,1,Why did Ross look surprised when Chandler was explaining something?,124686,Friends,30.16-45.07,friends_s01e05_seg02_clip_00,Chandler was telling a story about how he was going to break up with Janice by using a note. 2648,Marshall,Barney,Marshall's dad.,Ted.,Stella's ex-husband.,1,Who falls down when he offers his fist for a fist bump?,124687,How I Met You Mother,13.68-39.97,met_s04e03_seg02_clip_14,Barney 2649,Sad. ,Happy. ,Occupied. ,Busy. ,Flirty. ,0,How does Rachel look after Ross turns around and sees her?,124688,Friends,39.97-44.25,friends_s03e16_seg02_clip_07,Sad. 2650, I went to the tanning place and the same thing happened to me.,I have to talk to you about Rachel.,I have to talk to you about Monica.,I have to talk to you about Emma.,I have to talk to you about my twins.,0,What did Chander say to get Ross to open the door after Ross told him to go away?,124689,Friends,47.62-61.62,friends_s10e03_seg02_clip_22, I went to the tanning place and the same thing happened to me. 2651,A tie.,A stethescope,A scarf.,A towel.,A necklace.,1,What was around Kutner's neck when he was discussing rashes with House?,124690,House M.D.,23.93-28.53,house_s04e05_seg02_clip_16,A stethescope 2652,Twinkletoes,Their tiny little dancer,A little girl,A ballerina,The next winner of Dancing with the Stars,0,"What does Rachel call Joey before Monica asks him to show her ""some manly moves""?",124691,Friends,29.01-43.81,friends_s04e04_seg02_clip_13,Twinkletoes 2653,A part of life.,A genie and a bottle,A secret treasure box.,An epiphany.,Pandora's box.,4,What does Martha say the past two months is like when she is saying it shouldn't be opened?,124692,Castle,50.41-55.81,castle_s07e02_seg02_clip_25,Pandora's box. 2654,They are best friends.,they hate each other. ,they are sisters,they are just neighbors,they are lovers,0,How does Amy describe her and Penny's friendship after Sheldon asks if they are close. ,124693,The Big Bang Theory,12.3-20.71,s05e02_seg02_clip_09,They are best friends. 2655,A xylophone.,A backpack.,A scarf.,A jacket.,A messenger bag.,4,What did Sheldon have over his shoulder when he said he comes there for the personal service?,124694,The Big Bang Theory,55.21-62.04,s03e05_seg02_clip_04,A messenger bag. 2656,He is holding a breifcase.,He is holding Penny's hand.,He is holding a blanket.,He is holding a cup of tea.,He is holding a pillow.,0,What is Lenard holding after he walks out in the livingroom,124695,The Big Bang Theory,45.62-49.23,s01e09_seg02_clip_08,He is holding a breifcase. 2657,She brings up the point that the letter was found in Bernadette's closet and should count for something. ,She says that Bernadette has a right to know. ,She says tell her or I will beat you up. ,She says tell her or I will destroy your laundry. ,She threatens Sheldon by holding his experiment hostage. ,0,What point does Penny bring up when she and Sheldon are talking?,124696,The Big Bang Theory,55.49-60.31,s06e19_seg02_clip_06,She brings up the point that the letter was found in Bernadette's closet and should count for something. 2658,They are waiting for the elevator,They are breaking into an apartment,They are waiting for the landlord,They are looking in the mailbox,They are looking for a specific apartment,1,What are Chase and Masters doing when they are in the hallway,124697,House M.D.,32.21-40.26,house_s07e08_seg02_clip_05,They are breaking into an apartment 2659,Sheldon asked where could he find a date.,Sheldon thinks it will be fun.,Sheldon thinks Leonard needs a back up to his girlfriend Penny.,Sheldon wanted to go out of town also.,Sheldon is feeling under the weather.,2,Why did Sheldon say Leonard should go with Raj after talking?,124698,The Big Bang Theory,7.48-8.78,s06e02_seg02_clip_15,Sheldon thinks Leonard needs a back up to his girlfriend Penny. 2660,a wallet,a notebook,a camera phone,a piece of paper,a cane,4,What does the man in the red shirt have in his right hand when he is talking to the injured man?,124699,House M.D.,24.76-47.26,house_s02e01_seg02_clip_21,a cane 2661,In the fridge,On the recliner,On the couch,In the oven,On the foosball table,1,Where was the pizza box when Joey told Rachel that's where he kept the pizza?,124700,Friends,17.65-23.53,friends_s06e18_seg02_clip_09,On the recliner 2662,judge,teacher,Anita,victim,murderer,0,Who was found in the wrong when he got sold out?,124701,Castle,8.89-127.03,castle_s08e13_seg02_clip_26,judge 2663,Foreman,Chase ,House,Cuddy,Ryan,2,Who calls Cameron Chases's girlfriend when the doctors are discussing a pregnant patient in the conference room?,124702,House M.D.,40.96-48.24,house_s03e17_seg02_clip_15,House 2664,You're easy to talk to,It was nice talking to you,She feels better,I have to go now,Tell Mrs.Koothrapalli I said hello,2,What did Bernadette said after talking to Dr. Koothrapalli?,124703,The Big Bang Theory,0-45.62,s10e03_seg02_clip_16,She feels better 2665,Girls,His wife,Professionals,Celebrities,Men,0,Who did Mr. Treeger say he was ready to dance with when Joey asked if he wanted to practice?,124704,Friends,27.42-33.03,friends_s04e04_seg02_clip_18,Girls 2666,A biro,A pen,A bag,A nylon,A comb,2,What was Chandler holding when he walked in ?,124705,Friends,14.27-20.47,friends_s08e19_seg02_clip_04,A bag 2667,On the bed,In the bathtub,On the kitchen floor,On the couch,In the hallway,0,Where is the dead body when Castle and Beckett walk into the crime scene?,124706,Castle,58.82-62.5,castle_s06e19_seg02_clip_00,On the bed 2668,laughs,shakes his hand,Walks over to a crate of items,trips and falls,yells at Sheldon,2,What does Alicia do after Leonard says he lives under her apartment?,124707,The Big Bang Theory,20.41-30.32,s02e19_seg02_clip_02,Walks over to a crate of items 2669,Penny believes Howard and Leonard's excuse for not being present.,Penny does not believe Howard and Leonard's excuse for not being present.,Penny leaves the lab to find Howard and Leonard.,Penny thinks it's funny that Howard and Leonard have a flat tire.,Penny is suspicious but accepting of Howard and Leonard's excuse.,0,What is Penny's reaction when Howard and Leonard text her about a flat tire?,124708,The Big Bang Theory,26.46-43,s09e19_seg02_clip_08,Penny believes Howard and Leonard's excuse for not being present. 2670,Eating a bagel.,Drinking coffee.,Rubbing Monica's belly.,Reading the newspaper.,Talking to Phoebe.,2,What was Ross doing when Monica walked into the coffee shop? ,124709,Friends,39.17-44.39,friends_s08e22_seg02_clip_10,Rubbing Monica's belly. 2671,The waiter,Joey,Mike,Her date,MaryEllen,4,Who also leaves the restaurant after Phoebe leaves?,124710,Friends,40.91-50.19,friends_s09e03_seg02_clip_13,MaryEllen 2672,hid and seek,bingo,blackjack,tag,a version of rock paper scissor,4,what are ryan and esposito playing when they bet to see who gets becketts old desk?,124711,Castle,58.93-68.67,castle_s08e01_seg02_clip_01,a version of rock paper scissor 2673,Beckett picked up her phone.,Beckett picked up her coffee.,Beckett picked up a letter.,Beckett picked up her coat.,Beckett picked up her gun.,2,What did Beckett pick up before she is talking about letter ? ,124712,Castle,73.28-83.29,castle_s03e05_seg02_clip_18,Beckett picked up a letter. 2674,He gets out of the van,He fights him,He punches him in the face,He writes him a note,He throws it back ,0,What does Castle do after Esposito throws him his jacket?,124713,Castle,81.72-87.9,castle_s02e01_seg02_clip_16,He gets out of the van 2675,Beckett does not say anything,Beckett says hello to Castle,Beckett says she is hungry,Beckett asks about Tyson's mom,Beckett ignores Castle,3,What does Beckett say after Castle says the key is Tyson's mother?,124714,Castle,0-6.83,castle_s07e14_seg02_clip_20,Beckett asks about Tyson's mom 2676,bored,happy,tired,shocked,angry,3,How did Amy feel when Sheldon suggest Hewlet and Packard?,124715,The Big Bang Theory,12.6-24.31,s06e05_seg02_clip_03,shocked 2677,Monica says her aunt scored the winning touchdown.,Monica says her mother scored the winning touchdown.,Monica says her cousin scored the winning touchdown.,Monica says she scored the winning touchdown.,Monica says her neice scored the winning touchdown.,3,Who does Monica say scored the winning touchdown in Geller Bowl VI when talking with her friends?,124716,Friends,39.02-49.22,friends_s03e09_seg02_clip_01,Monica says she scored the winning touchdown. 2678,Bernadette is in a bedroom.,Bernadette is in the bathroom.,Bernadette is in a kitchen.,Bernadette is in a living room.,Bernadette is in a nursery.,1,What type of room is Bernadette in when she is talking on the phone to Amy?,124717,The Big Bang Theory,2.72-6.95,s04e22_seg02_clip_12,Bernadette is in the bathroom. 2679,Beckett showed and put in front of Mr. Kopek a form.,Beckett showed and put in front of Mr. Kopek a glass of water.,Beckett showed and put in front of Mr. Kopek a firearm.,Beckett showed and put in front of Mr. Kopek explosives.,Beckett did not show Mr. Kopek anything.,0,What did Beckett show and put in front of Mr. Kopek when they were interrogating him?,124718,Castle,45.67-53.36,castle_s02e14_seg02_clip_25,Beckett showed and put in front of Mr. Kopek a form. 2680,Mitzi had peed on all the seats.,Ross did not plan to stay long.,There was clutter everywhere.,Ross had been sitting all day.,Ross wanted to make dinner.,2,"Why did Ross not take a seat when Cheryl said, ""Take a seat""?",124719,Friends,8.7-15.31,friends_s04e06_seg02_clip_05,There was clutter everywhere. 2681,ten years.,nine years.,eight years.,five years.,seven years.,1,How long had Marshall and Lily been together before they broke up?,124720,How I Met You Mother,46.12-58.39,met_s02e01_seg02_clip_03,nine years. 2682,She rolls her eyes. ,She drinks the water. ,She throws the cup. ,She throws water on House. ,She turns it back to the way it was. ,4,What does the patient do after House turns the paper cup in front of her?,124721,House M.D.,0.48-6.18,house_s07e12_seg02_clip_23,She turns it back to the way it was. 2683,Pizza,Laundry,Cat food,Grass,Paperwork,1,What was meredith yelling at her dog about eating before busting into the bathroom?,124722,Grey's Anatomy,27.51-34.8,grey_s02e13_seg02_clip_20,Laundry 2684,At the mall.,On the street.,At the circus.,At the library.,At court.,1,Where did Ted run into Kathy after 3 years?,124723,How I Met You Mother,16.02-21.05,met_s03e08_seg02_clip_18,On the street. 2685,He says he doesn't think Rachel will ever love him the way Carol did.,He says he doesn't think Rachel will ever underappreciate him.,He says he doesn't think Rachel will forget him.,He says he thinks Rachel will want children too.,He says he doesn't think Rachel will injure her thumb.,1,How does Joey comfort Ross when he's upset about Carol?,124724,Friends,43.73-50.86,friends_s09e02_seg02_clip_16,He says he doesn't think Rachel will ever underappreciate him. 2686,Begs for help.,Runs outside.,He covers his mouth with his t-shirt.,Starts to cry.,Calls for Leonard.,2,What does Howard do when the men in the bio hazard room say he's been exposed?,124725,The Big Bang Theory,18.49-29.97,s04e23_seg02_clip_13,He covers his mouth with his t-shirt. 2687,Lucy drops by. ,Leonard drops by. ,Bernadette drops by. ,Howard drops by. ,Penny drops by. ,3,Who drops by to see Raj when he is at home?,124726,The Big Bang Theory,29.09-33.04,s06e04_seg02_clip_13,Howard drops by. 2688,Adrienne Turner.,Missy Goldberg.,Joey.,Monica.,Rachel.,0,Who turns around when Chandler accuses Ross of breaking a pact?,124727,Friends,34.25-45.76,friends_s10e11_seg02_clip_15,Adrienne Turner. 2689,Because Leonard was afraid Sheldon would embarrass him if they went to the production.,Because Leonard and Sheldon had a prior engagement. ,Because Leonard secretly had a date with someone else that night.,Because Leonard didn't have faith in Penny's talent and thought the production would be bad.,Because Leonard hated Penny.,3,Why did Leonard refuse when Penny invited Leonard and Sheldon to come to her production?,124728,The Big Bang Theory,0-57.49,s01e10_seg01_clip_02,Because Leonard didn't have faith in Penny's talent and thought the production would be bad. 2690,At the grocery store.,At the local drug store.,Randomly on the street.,At the theater,At the golf course.,3,Where does Castle say Beckett must have met some indian guy when he is in the dry cleaners with Ryan and Esposito?,124729,Castle,56.96-66.38,castle_s08e01_seg02_clip_09,At the theater 2691,Howard was in the bar.,Howard was on front the TV.,Howard was on front the printer.,Howard was sleeping.,Howard was fixing a model spaceship.,2,Where was Howard when Bernadette was talking?,124730,The Big Bang Theory,28.68-61.02,s06e22_seg02_clip_15,Howard was on front the printer. 2692,"Ted, the college professor, at his house. ","John the accountant, at a neighborhood diner.","Archibald, the wealthy stockbroker, at an upscale steak house. ","Simon, the bass guitar player, at his show.","Roman, the Russian billionaire, on his yacht. ",3,Who did Robin leave to see after drinking with her friends?,124731,How I Met You Mother,21.44-36.33,met_s03e16_seg02_clip_09,"Simon, the bass guitar player, at his show." 2693,Holds his hand,Hugs him,Kisses him,Passes out,Runs out of the room,2,What does Penny do after Leonard tells her she's perfect?,124732,The Big Bang Theory,16.12-22.46,s01e06_seg02_clip_15,Kisses him 2694,a eye patch,a spa mask,a blindfold,nothing,glasses,4,What is house wearing on his face when wilson comes into his office to talk?,124733,House M.D.,38.73-45.85,house_s07e17_seg02_clip_12,glasses 2695,House is on a train.,House is a strip club.,House is in the hospital.,House is at Wilson's apartment.,House is at the mall.,2,Where is House when Chase propose Bob has food allergies?,124734,House M.D.,0-17.76,house_s02e15_seg02_clip_09,House is in the hospital. 2696,A turkey. ,A bottle of water. ,A grocery bag. ,A shopping bag. ,A tray. ,4,What is Monica holding when she walks into Joey's apartment?,124735,Friends,38.12-41.42,friends_s07e19_seg02_clip_13,A tray. 2697,Gift Shop,The bathroom,To the cafeteria,Radiology,Home,3,Where does Thirteen say she will see Wilson before she leaves the room?,124736,House M.D.,0-6.67,house_s06e18_seg02_clip_12,Radiology 2698,She got a blanket,She drank coffee,She read a book,She looked at her watch,She stood up,4,What did Rachel do before Phoebe left the room?,124737,Friends,0-9.9,friends_s06e07_seg02_clip_12,She stood up 2699,Phoebe's sister walked in.,Chandler walked in.,Marcel surprised them all and hopped in.,Ross' ex walked in.,Rachel's ex walked in.,1,Who walked into Central Perk when the friends were together?,124738,Friends,35.12-48.32,friends_s02e12-13_seg02_clip_28,Chandler walked in. 2700,A tray of food. ,A cup of coffee. ,A copy of an x-ray.,A patient's file. ,A stack of book. ,0,What did House have in his hands when he was following O'Shea?,124739,House M.D.,73.81-78.51,house_s05e02_seg02_clip_01,A tray of food. 2701,Run out of the building,Whisper in Howards ear ,Start to Cry ,Jumps up and down,He ignores her,1,What does Raj do after Mrs.Cooper call his name,124740,The Big Bang Theory,0-9.38,s05e06_seg02_clip_14,Whisper in Howards ear 2702,Because the results did not match his guess.,Because he wanted to be right.,Because he lost his faith in House after he went back on drugs.,Because the patient died.,He doesn't think House made a mistake.,0,Why does Foreman think House made a mistake after reading Sister Augustine's scan?,124741,House M.D.,41.37-61.12,house_s01e05_seg02_clip_05,Because the results did not match his guess. 2703,She is drinking coffee. ,She is stirring something with a wooden spoon. ,She is drinking a beer. ,She is cutting vegetables. ,She is cracking eggs open. ,1,What is Phoebe doing when she is sitting at the table in Monica's place?,124742,Friends,0.31-2.44,friends_s02e11_seg02_clip_15,She is stirring something with a wooden spoon. 2704,Mike Collier.,Adam Collier.,Peter Collier.,David Collier,Jason Collier.,3,What person does Mark say they had to pick out of a line up when they were at the police station?,124743,Castle,43.63-69.08,castle_s05e17_seg02_clip_24,David Collier 2705,astounded,happy,peaceful,angry,bored,0,How did Leonard feel when Howard got a red hat?,124744,The Big Bang Theory,48.21-63.02,s03e01_seg02_clip_14,astounded 2706,House lost his train of thought because Cameron and Foreman wouldn't stop pinching each other.,House forgot what he was saying because Foreman tripped over a chair leg and fell loudly.,Because House was taken aback by how lovely Cameron looked all dressed up.,House was distracted by Cameron and Foreman whispering back and forth.,House was rattled because Cameron wouldn't stop texting loudly on her phone.,2,Why did House forget what he was saying before looking over to Foreman and Cameron?,124745,House M.D.,7.25-12.68,house_s02e17_seg02_clip_04,Because House was taken aback by how lovely Cameron looked all dressed up. 2707,"He left it in his office, he'll go and get it.",He left it in his car outside.,He left it in his other pair of pants.,He left it in the bathroom but he flushed.,He left it in one of the rooms with a patient.,2,Where does House say he left his CT machine when the patient asks about doing an xray?,124746,House M.D.,70.77-84.13,house_s05e09_seg02_clip_15,He left it in his other pair of pants. 2708,Cheerleader,Smells Like Teen Spirit,Mary Jane's Last Dance,Digital Witness,Thor and Dr. Jones,4,What song are Raj and Howard singing when they're playing musical instruments?,124747,The Big Bang Theory,0-9.31,s09e04_seg02_clip_06,Thor and Dr. Jones 2709,Ross.,Tag.,Joey.,Kevin.,John.,1,Who did Phoebe say Rachel just broke up with when they were at the coffee shop discussing who would get the phone?,124748,Friends,14.12-17.72,friends_s07e15_seg02_clip_01,Tag. 2710,Ross told Joey that everyone would be very sad if anything happened.,Ross told Joey that he will buy him a new duck if anything happens.,Ross told Joey that he should get a normal pet anyway.,Ross told Joey that he really likes the duck.,Ross told Joey that the vet said that it was a simple procedure.,4,"What did Ross tell Joey after he said, ""If anything should happen to him?""",124749,Friends,33.07-40.47,friends_s04e22_seg02_clip_18,Ross told Joey that the vet said that it was a simple procedure. 2711,Ross is drinking coffee,Ross is looking through a magazine,Ross is playing a game,Ross is dancing,Ross is singing,1,What is Ross doing when he is sitting down?,124750,Friends,9.44-16.23,friends_s01e05_seg02_clip_01,Ross is looking through a magazine 2712,cooking breakfast,spring cleaning,ruckus,nonsense,Domestic devotion,4,What did Castle call his mother's actions when questioning her purpose in the kitchen?,124751,Castle,42.47-92.32,castle_s03e18_seg02_clip_00,Domestic devotion 2713,Erika was supposed to be at her friend's wedding.,Erika was supposed to be at school taking extra classes.,"Erika was supposed to be in Europe, backpacking with friends.",Erika was supposed to be in Hawaii with her boyfriend.,Erika was supposed to be working at her uncle's business.,2,Where was Erika supposed to be when she was killed?,124752,Castle,58.52-63.02,castle_s05e24_seg02_clip_04,"Erika was supposed to be in Europe, backpacking with friends." 2714,Cane,James,Jimmy,Sean,House,4,"Who was Arlene talking to when she said ""It got you fired, you schmuck.""",124753,House M.D.,58.63-66.23,house_s07e11_seg02_clip_05,House 2715,He wasn't talking to Izzie,He was talking about himself,He was talking about his patients,"He was talking about his son, Denny",He was talking about the food,3,Who was Mr. Duquette talking about when he was talking to Izzie?,124754,Grey's Anatomy,20.03-70.09,grey_s03e04_seg02_clip_16,"He was talking about his son, Denny" 2716,Blue,Green,Red,Black,Yellow,3,What color is Ross' jacket when he is sitting next to Joey?,124755,Friends,0-4.34,friends_s07e17_seg02_clip_10,Black 2717,In her hair.,In her lap.,Pointing at Castle.,In her jacket pocket.,Reaching into a bag.,0,Where was Beckett's left hand when she was explaining the type of person they needed to into the classroom?,124756,Castle,15.47-18.21,castle_s07e04_seg02_clip_04,In her hair. 2718,Because Beckett laughs a little and wonders if Castle caught her.,Because Beckett thinks Castle likes to dress up like a woman.,Because Beckett is thinking Castle is not paying attention to the conversation.,Because Beckett is wondering if Castle uses the call girl services. ,Because Beckett thinks that Marilyn is full of it and she wonders if Castle believes Marilyn's lies. ,3,Why does Beckett look at Castle suspicious when Marilyn said that using lust is powerful?,124757,Castle,10.49-16.41,castle_s04e12_seg02_clip_08,Because Beckett is wondering if Castle uses the call girl services. 2719,House orders a BLT from the cafeteria and pulls out a guitar to play music loudly.,House studies the whiteboard to cross reference symptoms and proposed conditions for Bob.,House walks out the door to confront Maria on abusing Bob secretly and sexually.,House orders Foreman and Chase to retest Bob for allergies along with light sensitivity.,House punches Chase in the arm because Chase mixed up the test results for Bob.,1,What does House do after reviewing the excruciating pain Bob experienced in lower extremities?,124758,House M.D.,80.59-91.06,house_s02e15_seg02_clip_09,House studies the whiteboard to cross reference symptoms and proposed conditions for Bob. 2720,Raj knows what Siri is going to say before she says it. ,Raj has installed a microchip in himself.,Raj can mind meld with his cell phone.,Raj can impersonate Siri's voice.,Raj has romantically bonded with his cell phone. ,4,Why did Sheldon say Raj has made an evolutionary leap after hearing Raj talk with Siri?,124759,The Big Bang Theory,0-35.84,s05e14_seg02_clip_08,Raj has romantically bonded with his cell phone. 2721,Lesley wanted next,Sheldon wanted next,Howard wanted next,Raj wanted next,Penny wanted next,3,Who wanted to get in the Time Machine after Leonard got out,124760,The Big Bang Theory,0-15.01,s01e14_seg02_clip_06,Raj wanted next 2722,he found him on video,he put him on survallence ,he got a confession,he alibied out,"he has him at another function,",3,how did ryan clear dave barton before he comes to brief beckett?,124761,Castle,27.53-33.85,castle_s08e19_seg02_clip_04,he alibied out 2723,Because of the blood on his face,Because his face was bruised,Because he was not wearing his glasses,Because there was lipstick on his face,Because he face hurt,3,Why did Dr. House look confused when he looked in the mirror?,124762,House M.D.,25.86-31.86,house_s05e24_seg02_clip_00,Because there was lipstick on his face 2724,A foot ,Her phone,A gun,A hand,A clipboard,4,What does Lanie have in her hand when telling Beckett about the victim,124763,Castle,76.12-82.79,castle_s05e08_seg02_clip_01,A clipboard 2725,get it together,get an annulment,get a job,get someone else,get with the program,1,What does Rachel want Ross to do when talking with Ross?,124764,Friends,44.55-47.15,friends_s06e01_seg02_clip_14,get an annulment 2726,That he could help the U.S. gain Chinese intel,That he could end the Triad drug trade,That he could end illegal sweatshop working,That he could end China's purchase of the U.S. debt.,That he could be a good field agent.,3,What is Xiang's discussed role when the debriefing goes on?,124765,Castle,8.25-24.26,castle_s04e16_seg02_clip_22,That he could end China's purchase of the U.S. debt. 2727,Montgomery said the bad guys file down a regular house key and they use a hammer to drive into the lock.,Esposito said the bad guys file down a standard house key and they use a mallet to drive into the lock.,Esposito said the bad guys cut off part of a standard house key and they use a mallet to drive into the lock.,Esposito said the bad guys file down a standard house key and they use a nail to drive into the lock.,Montgomery said the bad guys cut off part of a standard house key and they use a mallet to drive into the lock.,1,How did Esposito say the bad guys use a bump key when he's explaining it to Ryan? ,124766,Castle,19.74-27.63,castle_s01e07_seg02_clip_05,Esposito said the bad guys file down a standard house key and they use a mallet to drive into the lock. 2728,She gave him a glass of water. ,She stood up.,She took something out of her pocket.,She leaned back in her chair.,She kissed his hand.,1,What did Elena do after Pete told her it's been a long day?,124767,Grey's Anatomy,46.88-56.66,grey_s03e10_seg02_clip_24,She stood up. 2729,She has a blank look on her face. ,She has a smile on her face. ,She is too happy to care. ,She is too excited to care. ,She breaks up with Sheldon. ,0,What is Amy's response when Sheldon thinks he is being funny?,124768,The Big Bang Theory,50.42-60.22,s06e10_seg02_clip_00,She has a blank look on her face. 2730,Terry,Tyler,Tyson,Tim,Theodore ,2,Who's girlfriend do the two police talk about after finding people dead?,124769,Castle,27.71-34.52,castle_s07e14_seg02_clip_06,Tyson 2731,Walking down the hall.,Hugging.,Shaking hands.,Opening the doors for a nurse.,Putting on Scrubs.,2,What are Derek and George doing when Derek says you saw me leave the house this morning?,124770,Grey's Anatomy,63.32-72.88,grey_s01e07_seg02_clip_19,Shaking hands. 2732,Looking at Vasiliy and Rita,Looking at their computers,Going through files,Getting coffee,Looking at a map,0,What are Beckett and Castle doing when Vasiliy and Rita are talking?,124771,Castle,72.82-80.56,castle_s08e11_seg02_clip_20,Looking at Vasiliy and Rita 2733,A stethescope,A clipboard,A notebook,His lab coat,A pack of gum,1,What was Chase holding when revealing the diagnosis?,124772,House M.D.,76.18-85.19,house_s03e09_seg02_clip_02,A clipboard 2734,Nice to see you again.,He's mine too.,Happy Halloween!,What time is it?,You're a weird lady.,4,What does Joey call Mona after she calls Ross her hero?,124773,Friends,0.63-7.25,friends_s08e06_seg02_clip_16,You're a weird lady. 2735,Hacking,Stealing computers,Stealing from a store,Sneaking on websites,Using illegal sites,0,What did tory say computer trespassing was when explaining the terminology to castle?,124774,Castle,73.55-75.82,castle_s07e08_seg02_clip_02,Hacking 2736,Castle is watching from the two way mirror in another room.,Castle is getting a Coke from the vending machine.,Castle is standing by the door.,Castle is home at his apartment sleeping.,Castle is getting a hot dog from the street vendor.,0,What is Castle doing when Beckett is interviewing Damian?,124775,Castle,15.77-23.19,castle_s03e15_seg02_clip_15,Castle is watching from the two way mirror in another room. 2737,A lamp,A bookshelf,A bottle of pills,A table of surgical tools,An oxygen mask,0,"What was next to Cameron when Chase was talking to Dan about letting them know if it gets easier to focus, and remember things?",124776,House M.D.,15.33-23.21,house_s01e02_seg02_clip_17,A lamp 2738,Ross spent the weekend with Rachel.,Ross spent the weekend with James.,Ross spent the weekend with Emily.,Ross spent the weekend with Monica.,Ross spent the weekend with Stuart.,2,Who did Ross spend a weekend in Vermont with when he was on his first date?,124777,Friends,31.87-38.37,friends_s04e19_seg02_clip_13,Ross spent the weekend with Emily. 2739,Howard was going blind and didn't want Bernadette to rearrange the furniture. ,Howard wanted things to look like they did when he was a child. ,Howard didn't like giving Bernadette her way. ,Howard was in a bad mood over the way his video game went. ,Howard was mad at Sheldon and took it out on Bernadette. ,1,Why didn't Howard want Bernadette to redecorate when she asked him if she could? ,124778,The Big Bang Theory,26.38-40.2,s09e07_seg02_clip_00,Howard wanted things to look like they did when he was a child. 2740,Guzzling water,Hitting the red punching bag,Wiping sweat off of his brow,Flirting with one of the class attendees,Picking a white towel up off of the floor,4,What was the instructor doing when Ross ran into the room?,124779,Friends,5.79-12.12,friends_s06e17_seg02_clip_16,Picking a white towel up off of the floor 2741,Chandler went for a walk.,Chandler went to Central Perk.,Chandler went over to Ross's place.,Chandler went to work.,Chandler went for a drive.,0,Where did Chandler go when he walked out the door?,124780,Friends,27.16-29.29,friends_s07e16_seg02_clip_19,Chandler went for a walk. 2742,Mentor ,Momentous,Moment,Minotaur,Pinto,0,"What does Joey mean to say when he says the word ""mento"" to the interviewer?",124781,Friends,18.73-34.48,friends_s08e19_seg02_clip_05,Mentor 2743,She said that he was McDreamy of a man,She said mostly things that involve the word dirty and bad,She said that he was more man than anybody at the hospital,She said that his eyes were pool a woman can melt into,She said that he can get any woman under his spell,1,What did Callie tell Mark she heard about him when he asked,124782,Grey's Anatomy,42.58-56.78,grey_s03e04_seg02_clip_25,She said mostly things that involve the word dirty and bad 2744,Beckett was eating a big sandwich. ,Beckett was napping in a rocking chair. ,Beckett was working intently at the board. ,Beckett was hiding something in her purse. ,Beckett was screaming at Ryan. ,2,What was Beckett doing when Castle came in and looked at her? ,124783,Castle,90.27-96.03,castle_s01e10_seg02_clip_21,Beckett was working intently at the board. 2745,They do like to hang out together., House was intoxicated.,They all wanted to sleep.,They all just ate MacDonald's., They would have to dig up a body.,4,Why were all the people uncomfortable with Houses plan after he mentioned the brain biopsy?,124784,House M.D.,35.21-48.41,house_s04e04_seg02_clip_04, They would have to dig up a body. 2746,She wanted him to finish his job.,She wanted her money.,She wanted her ring back.,She found her ring and wanted to apologize.,She wanted him to fix her car.,3,Why does Morris say Mrs Westlake invited him to come back to her house after he threatened her?,124785,Castle,48.18-64.86,castle_s03e15_seg02_clip_04,She found her ring and wanted to apologize. 2747,He wanted to get the waitress.,He wanted to say something to change their mind before they said no.,He wanted someone to turn down the music.,He wanted Ted to leave.,He wanted to sell Ted his car.,1,Why did Barney yell when Ted was speaking.,124786,How I Met You Mother,47.9-57.02,met_s02e19_seg01_clip_01,He wanted to say something to change their mind before they said no. 2748,Bad.,Fabulous.,Bored.,Tired.,Afraid.,1,"What said Liz after the man said ""how are you doing Liz""?",124787,Grey's Anatomy,5.46-10.01,grey_s01e04_seg02_clip_08,Fabulous. 2749,"$10,000","$15,000","$40,000","$20,000","$25,000",1,How much money did the murdered victim take out of his account 2 weeks ago before he was killed,124788,Castle,27.38-30.47,castle_s02e22_seg02_clip_20,"$15,000" 2750,A poinsetta.,A holly bush.,African violet.,Orchids.,Daisies.,0,What type of flower is pictured when Marshall delivers a package?,124789,How I Met You Mother,27.51-31.48,met_s02e11_seg02_clip_14,A poinsetta. 2751,To the car.,To his kitchen.,To the offfice.,Tot eh bathroom.,A coffee shop.,0,Where did Castle go after he finished talking to the man in the blue suit?,124790,Castle,73-82.02,castle_s07e02_seg02_clip_08,To the car. 2752,purple,black,Beige or tan,blue,pink,2,What color is the ladies' purse that is behind Leonard when they are at the table,124791,The Big Bang Theory,15.56-41.19,s01e13_seg02_clip_07,Beige or tan 2753,He shouted at her,He flirted with her,He kicked her,He mocked her,He insulted her,1,What did house do to Cuddy after the Doctors have left?,124792,House M.D.,47.44-58.61,house_s06e14_seg02_clip_20,He flirted with her 2754,In the lungs. ,It's distinct with each patient. ,In the coronary arteries. ,In the brain. ,"It's a placebo effect, thus only mental. ",2,"Where does House say Kawasaki's disease lives, after Wilson shoots down House's idea about comparing his patients' results?",124793,House M.D.,83.63-90.28,house_s02e17_seg02_clip_16,In the coronary arteries. 2755,House's hands. ,A shirt.,Pants.,House's hair. ,A shoe.,4,What is House cleaning when Wilson flushes the toilet?,124794,House M.D.,84.18-89.62,house_s08e20_seg02_clip_09,A shoe. 2756,ketchup,banking,McDonald's,friendship,dogs,1,What does Jen talk to the architects about when at the restaurant?,124795,How I Met You Mother,0-4.36,met_s05e02_seg02_clip_02,banking 2757,"Penny goes to the club with Howard, Amy, and Raj.","Penny goes to the club with Bernadette, Amy, and Priya.","Penny goes to the club with Bernadette, Priya, and Raj.","Penny goes to the club with Priya, Amy, and Raj.","Penny goes to the club with Bernadette, Leonard, and Raj.",3,Who does Penny go to the club with when she is out?,124796,The Big Bang Theory,0-8.18,s06e11_seg02_clip_05,"Penny goes to the club with Priya, Amy, and Raj." 2758,Smoking a cigarette,Bringing another victim into the apartment,Bringing a vacuum into the apartment,Talking on his cell phone,Bringing shopping bags into the apartment,4,What is Nadir doing when he discovers the police in his apartment?,124797,Castle,21.17-22.93,castle_s01e07_seg02_clip_25,Bringing shopping bags into the apartment 2759,Castle says Lanie is the inspiration for his character.,Castle says Beckett is the inspiration for his character.,Castle says his daughter is the inspiration for his character.,Castle says Ryan is the inspiration for his character.,Castle says Veronica Mars is the inspiration for his character.,1,Who does Castle say is the inspiration for his character Nikki Heat when talking to the camera?,124798,Castle,61.59-66.29,castle_s05e07_seg02_clip_00,Castle says Beckett is the inspiration for his character. 2760,Raj walked in.,Howard walked in.,Sheldon walked in.,Leonard's ex-girlfriend walked in.,Stuart walked in.,1,Who walked in Leonard's apartment after knocking?,124799,The Big Bang Theory,13.6-22.25,s03e04_seg02_clip_10,Howard walked in. 2761,Leonard took the plate out of the microwave,Leonard took out a bowl from the microwave,Leonard took out the popcorn from the microwave,Leonard took out a mug from the microwave,Leonard took nothing out of the microwave,3,What did Sheldon take out of the microwave when he was talking to Leonard?,124800,The Big Bang Theory,41.34-50.1,s01e10_seg02_clip_01,Leonard took out a mug from the microwave 2762,Raj,Sheldon,Penny,Amy,Leonard,0,Who tells Howard if they're ready for the stereo when he asks?,124801,The Big Bang Theory,0-41.59,s01e09_seg01_clip_00,Raj 2763,The defendant's schedule.,Blood,DNA evidence,A lease record,A security footage DVD,4,What is missing from the evidence box when Castle and Beckett look for it?,124802,Castle,57.33-72.23,castle_s07e03_seg02_clip_09,A security footage DVD 2764,Underneath the metal island.,On a shelf.,There are no boxes.,On the floor.,On the ceiling.,0,Where are the boxes located when everyone is standing around listening to Monica speak?,124803,Friends,0-10.39,friends_s04e10_seg02_clip_11,Underneath the metal island. 2765,White,Black,Blue,Red,Orange,2,What color shirt was Chandler wearing when he suggested getting Erica some antacids? ,124804,Friends,32.65-39.67,friends_s10e16_seg02_clip_18,Blue 2766,The supervisor yells for Castle and Beckett to come out.,The supervisor walks behind the van and looks in smiling.,The supervisor approaches the van and draws her gun.,The supervisor tosses a smoke bomb into the van.,The supervisor asks tells Gage to surrender immediately.,1,What does the tactical team's supervisor do after the van's doors are pulled open?,124805,Castle,81.86-88.02,castle_s04e16_seg02_clip_14,The supervisor walks behind the van and looks in smiling. 2767,A baseball cap,"A blue, surgical hair net",Electrodes from a medical device,Bandages,A straw hat,1,What was on the patient's head when they told him about the tumor?,124806,House M.D.,86.87-91.44,house_s02e04_seg02_clip_21,"A blue, surgical hair net" 2768,Did she feel it,Was it from that far,Was it intentional,Do we know her name,Do we have a suspect,0,What does Beckett ask after Esposito says He took out a moving target froma a quarter of a mile away?,124807,Castle,2.7-7.65,castle_s04e09_seg02_clip_02,Did she feel it 2769,Maple syrup,Donuts,Butterscotch,Rootbeer,Shortbread,2,What does Ted tell Barney is to Canadian women what Chocolate is to American women when they are in the classroom?,124808,How I Met You Mother,34.82-47.24,met_s05e03_seg02_clip_07,Butterscotch 2770,The telephone,A slice of pizza,A cup of tea,Her purse,Some boxes,2,What did Rachel pick up after Monica asked something about being a little harsh?,124809,Friends,47.6-57.37,friends_s03e21_seg02_clip_03,A cup of tea 2771,A picture of a couch.,A picture of a dog.,A picture of a truck.,A picture of a uterus.,A picture of a stop sign.,3,What was behind Marshall when he said something to the doctor about bad news?,124810,How I Met You Mother,6.23-14.73,met_s06e13_seg02_clip_18,A picture of a uterus. 2772,A drum.,A xylophone.,A trombone.,A guitar.,A violin.,3,What instrument is Raj playing when he and Howard are singing?,124811,The Big Bang Theory,0-9.31,s09e04_seg02_clip_06,A guitar. 2773,Sometime before 6 a.m.,Sometime before 1 a.m.,After 2 a.m.,Sometime after 1 a.m., At 3 a.m.,3,What time did Esposito say the victim's car hit a tree and burned when he is discussing the state trooper's report?,124812,Castle,7.04-9.24,castle_s08e11_seg02_clip_09,Sometime after 1 a.m. 2774,Blue,Black,Green,Yellow,Red,1,"What color is Joe's shirt when Bob say's ""Joe, same thing with the...""?",124813,House M.D.,38.77-48.64,house_s08e05_seg02_clip_14,Black 2775,They have a look of disgust. ,They have a look of excitement. ,They are happy. ,They are nervous. ,They are beside themselves. ,0,How do the guys react when Sheldon tells one of them he will represent them?,124814,The Big Bang Theory,0-3.9,s10e02_seg02_clip_05,They have a look of disgust. 2776,Joey's character's death,the winning lottery numbers,the scary pigeon ,Phoebe's breakup,Monica's firing from her job,2,"What did Phoebe's psychic fail to mention, according to Ross, when Phoebe last met with her. ",124815,Friends,0-4.83,friends_s09e18_seg02_clip_11,the scary pigeon 2777,Howard Wolowitz,Amy Farrah Fowler,Penny,Stephen Hawking,Wil Wheaton,3,Who does Sheldon say is calling when his phone begins to ring?,124816,The Big Bang Theory,44.26-90.3,s06e06_seg02_clip_16,Stephen Hawking 2778,the living room,the kitchen,the hallway,the doorway,the bathroom,2,Where are Chandler and Phoebe standing when Chandler stops to talk to Phoebe?,124817,Friends,30.01-32.71,friends_s09e05_seg02_clip_02,the hallway 2779,2 day shipping,3 day shipping,5 day shipping,one week shipping,one day rush,4,What time period did the customer want the blossoms when they put in the order?,124818,The Big Bang Theory,12.6-21.11,s02e18_seg02_clip_12,one day rush 2780,27 years.,6 months.,30 years.,10 Years.,6 years.,0,"How long did Verna say she loved Ted, the man next door, when Izzie confronts her about him?",124819,Grey's Anatomy,30.25-39.97,grey_s02e05_seg02_clip_18,27 years. 2781,candles,flowers,books,plates,wine glasses,0,What things are on the coffee table when Monica walks to the bedroom?,124820,Friends,27.91-29.71,friends_s09e05_seg02_clip_02,candles 2782,His heavy breathing.,His hair.,His slowness.,His intelligence.,His clothing.,2,What does Bernie mock Leonard about after they enter the store?,124821,The Big Bang Theory,51.13-59.12,s07e03_seg02_clip_07,His slowness. 2783,Sheldon had discovered the first stable super-heavy element.,Sheldon is a fan of Science Friday.,Sheldon had discovered the cure for cancer.,Sheldon had walked on the moon.,Sheldon had invented the underwater car.,0,Why was Sheldon being interviewed on Science Friday after the university made him appear on the radio show?,124822,The Big Bang Theory,0-11.91,s07e10_seg01_clip_01,Sheldon had discovered the first stable super-heavy element. 2784,Sheldon suggested for Raj to look into artificial women.,Sheldon suggested that Raj call his parents.,Sheldon suggested that Raj go home.,Sheldon suggested that Raj go to the comic book store.,Sheldon suggested that Raj take a nap.,0,What did Sheldon suggest Raj do after Raj said he didn't want to work on the computer?,124823,The Big Bang Theory,97.37-124.04,s03e12_seg01_clip_00,Sheldon suggested for Raj to look into artificial women. 2785,The police arriving,A gunshot,The girl beginning a new song,The leader trips,Castle yells at them,2,What interrupts the boys when they stop singing?,124824,Castle,27.01-36.01,castle_s08e09_seg02_clip_08,The girl beginning a new song 2786,Julie,Phoebe,Carol,Ross,The copy store girl,0,Who does Monica say Rachel hates when they are crying in the coffee house?,124825,Friends,31.81-44.42,friends_s02e02_seg02_clip_14,Julie 2787,House says he is not interested.,House says that he should have never let her see him naked.,House says thank you and walks away.,House tells Wilson he should go out with her instead,House says that he doesn't want to hurt her.,1,What does House do when Wilson says she wants to get to know him better?,124826,House M.D.,39.17-46.29,house_s06e17_seg02_clip_10,House says that he should have never let her see him naked. 2788,a hotel,a restaurant,a goth nightclub,a museum,an art expo,2,Where did Sheldon say he always wanted to go when he was out on the town?,124827,The Big Bang Theory,22.45-35.37,s03e03_seg02_clip_02,a goth nightclub 2789,A neighbor complaint,Castle had called a 911,A tip from a hotline,The police saw a large group gathering,Robyn had called the police,1,Why did Esposito arrive with backup when Castle started asking questions?,124828,Castle,61.68-76.98,castle_s08e09_seg02_clip_08,Castle had called a 911 2790,Eat a pizza,Go back to bed,Read a book,Practice for a game show host audition,Watch TV,3,What did Joey plan to do after Ross and Chandler left for basketball?,124829,Friends,0.31-6.55,friends_s08e20_seg02_clip_00,Practice for a game show host audition 2791,Glasses of water,A calendar,the blueprints of the radio telescope,A police file on Marie's boyfriend,A stack of stalker photos taken of Marie,0,"What is on the desktop between Montgomery, Westfield, Castle, and Kate when they all sit down?",124830,Castle,46.88-61.44,castle_s03e09_seg02_clip_20,Glasses of water 2792,He drank from a bottle.,He started crying.,He sat down.,He jumped up.,He Pulled out a gun.,0,What Did the Tattooed man do after Beckett said its him?,124831,Castle,0-6.19,castle_s07e06_seg02_clip_19,He drank from a bottle. 2793,She gets up and puts her dishes away,She eats food,She looks at her watch,She gets up and leaves,She takes a drink of beer,4,What does Rachel do after she mentions the library fundraiser,124832,House M.D.,41.73-50.8,house_s05e03_seg02_clip_12,She takes a drink of beer 2794,He goes to sleep.,He lies down.,He yells at her.,He gets up out of bed.,He smacks her.,3,What does House do after Cameron tells him to lie down?,124833,House M.D.,51.63-61.43,house_s02e24_seg02_clip_01,He gets up out of bed. 2795,Because Castle wants to impress Beckett by solving the mugging case,Because he thinks Ryan will need his help to solve it,Because he thinks amnesia is cooler than his current case,Because Castle recognized the mugging victim,Because his boss asked him to shadow Ryan for the case ,2,Why does Castle step away from the Fink case after he hears Ryan has a mugging case?,124834,Castle,48.73-84.85,castle_s02e11_seg02_clip_03,Because he thinks amnesia is cooler than his current case 2796,crayon,ink pen,marker,pencil,colored pencil,3,What type of writing utensil is Monica using when the girls are taking the quiz?,124835,Friends,12.55-17.39,friends_s02e19_seg02_clip_13,pencil 2797,Derrick Storm,Denny Storm,Natalie Heat,Roger Thunder,Michael Storm,0,Who did Castle say he had beat up a trucker after he signed off the cb radio?,124836,Castle,8.56-24.62,castle_s05e08_seg02_clip_18,Derrick Storm 2798,Brock his brother,his aunt,his uncle ,his sister,his girlfriend ,0,Who came to visit Derek when he was in the hospital? ,124837,House M.D.,37.41-45.07,house_s03e11_seg02_clip_18,Brock his brother 2799,An airport,Bye Bye Birdie,A bird's nest,Baby birds,A dove,1,What does Monica say she drew after no one guessed the answer?,124838,Friends,7.6-13.01,friends_s01e18_seg02_clip_22,Bye Bye Birdie 2800,The students were trying to become law enforcement officers and were practicing.,The students were rehearsing for a play and got carried away.,The students were doing a reenactment of the Stanford Prison Experiment.,The students were brainwashed by the professor and didn't know what they were doing.,The students were just having fun and it became a real game.,2,Why were the students imprisoning innocent people when they were playing at the prison?,124839,Castle,77.41-81.2,castle_s08e03_seg02_clip_16,The students were doing a reenactment of the Stanford Prison Experiment. 2801,He said he was good.,He said he was fine.,Marshall answered that we no longer have hemorrhoids.,He stated that he felt better.,He didn't say anything.,2,What did Marshall say to Ted when he was ask how was he doing?,124840,How I Met You Mother,36.22-61.38,met_s05e05_seg02_clip_00,Marshall answered that we no longer have hemorrhoids. 2802,Frank,Monica,Ross,Joey,Chandler,2,Who does Rachel say she has when Janice commends Rachel for raising her baby alone?,124841,Friends,18.64-27.67,friends_s08e23-24_seg02_clip_40,Ross 2803,A tattoo,A pearl necklace,A tie,A scarf,A feather boa,1,What is on Mary Reed's neck when she is talking to Mr.Parker?,124842,Castle,9.09-12.64,castle_s06e02_seg02_clip_23,A pearl necklace 2804,She was unkind.,She was mean,She was fat,She was rude,She was a delight,4,What did Leonard say about Howard's mother when he told Penny about her?,124843,The Big Bang Theory,29.8-40.53,s02e12_seg02_clip_08,She was a delight 2805,House called security to remove Amy from Henry's room and place Henry under protective protection.,House staged a performance in Henry's room to distract Amy from Foreman talking to Henry.,House recruited Cuppy to engage Amy about billing and insurance to distract Amy from Henry.,House arranged a page for Foreman when Amy vacated Henry's hospital room.,House ordered Cameron and Chase to take Amy for coffee to free Henry for Foreman.,3,How did House plan to help Foreman when Foreman had to get around Amy to question Henry? ,124844,House M.D.,8.14-20.81,house_s02e14_seg02_clip_04,House arranged a page for Foreman when Amy vacated Henry's hospital room. 2806,His mouth,His nose,His eyes,His lips,His ears,2,What did Adams and Chase see when Will's bandage was removed?,124845,House M.D.,68.39-77.57,house_s08e14_seg02_clip_21,His eyes 2807,Jesus Lewindowsky,Janusz Lenadovsky,Janis Levowitz,Georgus Levagovszi,Janus Lewindovsky,1,What was Jimmy Lennon's given name when he was born?,124846,Castle,4.31-16.38,castle_s03e21_seg02_clip_14,Janusz Lenadovsky 2808,Brucco.,Flucco.,Trucco.,Franko.,Brancko.,2,Who does Slaughter suggest they go hang out a window until he talks when telling Castle to go?,124847,Castle,31.16-39.07,castle_s08e06_seg02_clip_07,Trucco. 2809,Looked at the television ignoring Ross.,Reclined the chair.,Started dancing and laughing.,Sat down beside Rachel.,Looked through his black agenda book.,4,What did Joey look at after Ross asked what they were doing in four weeks?,124848,Friends,3.45-11.73,friends_s04e20_seg02_clip_09,Looked through his black agenda book. 2810,He is picking books up off the floor.,He is getting his backpack out of his locker.,He is getting a drink from the water fountain.,He is talking to a teacher.,He is coming out of the restroom door.,2,What is Ben doing when Phoebe shows up?,124849,Friends,12.03-21.79,friends_s08e10_seg02_clip_09,He is getting a drink from the water fountain. 2811,Dr. Hofstadter punches Sheldon.,Dr. Hofstadter hugs Penny.,Dr. Hofstadter screams at Leonard.,"Dr. Hofstadter purses her lips, rolls her eyes and turns her head to the side.",Dr. Hofstadter reads a book.,3,What does Dr. Hofstadter do when Penny they will set a date when the time is right?,124850,The Big Bang Theory,2.17-3.72,s08e23_seg02_clip_09,"Dr. Hofstadter purses her lips, rolls her eyes and turns her head to the side." 2812,Mrs. Cooper,Penny,Howard,Raj,Sheldon,4,Who knocks on Leonards bedroom door before asking Leonard if he is asleep?,124851,The Big Bang Theory,39.22-48.18,s06e02_seg02_clip_08,Sheldon 2813,Sheldon said he is being encouraged to dance,Sheldon says he is being encouraged to drink 5 margaritas,Sheldon says he is being encouraged to sing,Sheldon says he is being musically encouraged to bus a move,Sheldon said he is being encouraged to do nothing,3,What did Sheldon tell Amy he is being when she talks to him,124852,The Big Bang Theory,56.12-61.33,s09e16_seg02_clip_11,Sheldon says he is being musically encouraged to bus a move 2814,he was almost killed,his friend was killed ,he lost his daughter,he was left alone,he almost killed someone,1,What happened to Castle when he was outside crying?,124853,Castle,0-3.66,castle_s07e11_seg02_clip_07,his friend was killed 2815,they found out that she was going to go on vacation,they found out that she was the murderer,They found out that she had an affair with her husbands boss,they found out she was part of a gang,they found out she was wearing a wig,2,What secret did Castle and Beckett find out when they were questioning Toni?,124854,Castle,82.97-91.18,castle_s03e02_seg02_clip_16,They found out that she had an affair with her husbands boss 2816,Standing in the kitchen.,Laying on his bed.,Sitting on a water bed.,Sitting in a chair in a home made time machine in the living room.,Out on the balcony.,3,Where was Leonard at before Penny came in the room?,124855,The Big Bang Theory,0-3.6,s01e14_seg02_clip_06,Sitting in a chair in a home made time machine in the living room. 2817,Castle told Alexis that she should go do her homework.,Castle told Alexis that she should not listen to his private conversations.,Castle told Alexis that he doesn't know what she is talking about.,Castle asked Alexis how much she heard.,Castle told Alexis that he won't be answering any of her questions.,3,What did Castle say after Alexis said that it isn't just for this case?,124856,Castle,14.4-21.16,castle_s04e01_seg02_clip_21,Castle asked Alexis how much she heard. 2818,Because Raj asked them to come to his house.,Because Leonard lost the keys.,Because Sheldon told them to.,Because Penny went into her apartment with Mike., Because Howard asked to spend the night.,3,Why did the guys pause for a while in the hallway before they ran into the apartment?,124857,The Big Bang Theory,26.86-44.27,s01e14_seg02_clip_15,Because Penny went into her apartment with Mike. 2819,Cuddy sat down by House,Cuddy pushed Wilson out the door,Cuddy walked out of the room,Cuddy went over to the file cabinets,Cuddy hugged Wilson,2,What did Cuddy do after she told Wilson to go spend more time with the patient?,124858,House M.D.,42.46-50.3,house_s04e16_seg02_clip_13,Cuddy walked out of the room 2820,green,grey,blue,white,red,2,"What color is the shirt House is wearing when he say's ""He looks like...""?",124859,House M.D.,0-9.94,house_s03e15_seg02_clip_04,blue 2821,They had a thing on the side,They went on a vacation together,They adopted a dog together,They would sleep over each other's houses sometimes,They would have late-night phone conversation ,0,What does Mindy tell Rachel her and Barry did when Rachel and Barry were engaged?,124860,Friends,7.92-15.85,friends_s01e20_seg02_clip_14,They had a thing on the side 2822,Means she was raised by wolves ,Shows she has a very low IQ ,Can tell she will be a bad surgeon ,Proves he was right about her skills,Implies that she can't walk and chew,0,Why does intern thirteen say House judges her for using the same hand for knife and forks when talking to Lawrence?,124861,House M.D.,0-15.6,house_s04e16_seg02_clip_08,Means she was raised by wolves 2823,In a cabinet.,Finding the ring.,Near the kitchen.,In his closet.,In front of Joey.,4,Where was Chandler after the door opened?,124862,Friends,0-6.3,friends_s04e22_seg02_clip_09,In front of Joey. 2824,Robe,nothing,she is only wearing a shirt,she is wearing just pants,who is Rachel,0,"What is Rachel wearing when ross Says ""Listen ,Listen""?",124863,Friends,51.52-61.34,friends_s10e12_seg02_clip_12,Robe 2825,A copy of Harry potter and the goblet of fire.,A copy of 1001 Arabian nights.,A copy of one of his Nikki Heat books.,A cup of coffee.,A file on the victim.,1,What is castle holding when he is telling the group about Scheherazade?,124864,Castle,23.78-33.65,castle_s08e17_seg02_clip_02,A copy of 1001 Arabian nights. 2826,He's holding his arm with a cast,He's holding cell phone.,He's holding water bottle,He's holding a stethoscope,He's not holding anything,3,What is the patient holding when House is talking to Stacy about Chase?,124865,House M.D.,73.28-83.29,house_s02e08_seg02_clip_09,He's holding a stethoscope 2827,An airplane,A hotel,A bed and breakfast,A sweat lounge,A hospital ,4,Where are ross and rachel when they are offered a semi private room?,124866,Friends,0-8.03,friends_s08e23-24_seg01_clip_01,A hospital 2828,Serena feels livid and stomps.,Serena feels sad and cries.,Serena feels mad and stomps.,Serena feels confident and cocky.,Serena feels confused and cries.,3,How does Serena feel and act when she discusses the thief with Beckett?,124867,Castle,1.73-16.85,castle_s04e05_seg02_clip_05,Serena feels confident and cocky. 2829,A box of cigars,A TV dinner,A bowling ball,A laptop computer,A scented candle,0,What does Taub remove from the trash when House is talking to Foreman about cats?,124868,House M.D.,20.96-31.9,house_s05e18_seg02_clip_06,A box of cigars 2830,Tears of gratitude,Tears of frustration,Tears of angry,Content,ungrateful ,0,How does rachel respond emotionally when Gavin agrees to help her out with the baby?,124869,Friends,0-6.3,friends_s09e11_seg02_clip_18,Tears of gratitude 2831,Her handler,Her boyfried,Montgomery,A drug dealer,A drug addict ,0,Who does Westfield say he thinks killed Marie when they are seated in Montgomery's office?,124870,Castle,71-90.11,castle_s03e09_seg02_clip_20,Her handler 2832,A yoga mat.,A banana.,A cat.,A Burger. ,A phone.,4,"What was Castle talking into when he said ""Uh-uhh.""",124871,Castle,0-9,castle_s08e07_seg02_clip_21,A phone. 2833,Told her salmonella wasn't a problem at all.,Laugh.,Push her.,Thanked her about warning them about it.,Start worrying about salmonella.,2,What did Ross do to Monica after she talked about salmonella?,124872,Friends,0-9.63,friends_s04e23-24_seg02_clip_04,Push her. 2834,Nothing.,Work.,Dinner.,A party.,Drinks.,0,What did Robin say she was talking about after Ted asked?,124873,How I Met You Mother,44.57-49.39,met_s03e17_seg02_clip_01,Nothing. 2835,On his arms.,At the swimming pool.,On his nose.,At the Santa Clause waterpark.,At Magic Mountain.,4,Where does Sheldon say that Leonard got a bad sunburn when he's talking to Amy in the car?,124874,The Big Bang Theory,8.45-14.31,s08e09_seg02_clip_06,At Magic Mountain. 2836,Raj said Bert would go to Hawaii to relax.,Raj said Bert would climb the Statue of Liberty.,Raj said Bert would climb the Empire State Building and swat at planes.,Raj said Bert would go to Canada.,Raj said Bert would visit his family.,2,Where did Raj think Bert would go after hearing Amy reject him?,124875,The Big Bang Theory,33.85-37.87,s07e13_seg02_clip_12,Raj said Bert would climb the Empire State Building and swat at planes. 2837,Phoebe calls him Mr. Percocet.,Phoebe tells him to take his medication.,Phoebe tells him to rest his eyes.,Phoebe tells him he delusional.,Phoebe brings Joey into the room.,0,How does Phoebe respond when Cliff tells her Joey asked him weird questions?,124876,Friends,22.28-33.26,friends_s08e23-24_seg02_clip_28,Phoebe calls him Mr. Percocet. 2838,Takes off his socks,Puts lotion on his hands,Takes off his shoes,Takes off his watch,Turns out the light,0,What does Howard stop to do when he comes into the bedroom while Bernadette is sitting in bed?,124877,The Big Bang Theory,49.97-56.29,s10e04_seg02_clip_09,Takes off his socks 2839,Esposito and Ryan are explaining the case's findings to Castle.,Esposito and Ryan are telling Castle how to approach Beckett.,Esposito and Ryan are telling Castle about Beckett's bad habits.,Esposito and Ryan are giving Castle ides for his date that night.,Esposito and Ryan are explaining police procedure to Castle.,0,What are Esposito and Ryan doing when talking to Castle in front of the whiteboard?,124878,Castle,60.97-70.84,castle_s08e13_seg02_clip_12,Esposito and Ryan are explaining the case's findings to Castle. 2840,Ross's apartment,Work,Central Perk,His apartment,To see Phoebe,3,Where does Joey go after he leaves Monica's apartment?,124879,Friends,36.24-55.15,friends_s10e17-18_seg02_clip_23,His apartment 2841,A push cart.,A lamp.,An elevator.,A picture on the wall.,A bed.,3,What was behind Beckett when she said something about someone killing someone?,124880,Castle,74.37-82.93,castle_s02e05_seg02_clip_19,A picture on the wall. 2842,He is drinking something.,House is sleeping.,House is listening to music.,House is looking through paperwork.,He is eating lunch.,3,What is House doing at first when Jodi is describing her problem to him?,124881,House M.D.,11.45-19.7,house_s01e03_seg02_clip_03,House is looking through paperwork. 2843,Five,Two,Zero,Three,One,4,How many days of no drugs does House say he has left when he gets off the elevator?,124882,House M.D.,36.94-48.52,house_s03e10_seg02_clip_14,One 2844,Ross isn't going anywhere,Ross is going to dinner with a friend,Ross is going home,Ross is going to visit a friend ,Ross is going to class,4,Where is Ross going when he said he should go?,124883,Friends,8.54-12.51,friends_s09e15_seg02_clip_11,Ross is going to class 2845,Socks,A robe,Pants,Underwear,A skirt,1,What clothing did Monica put on after Chandler says something about cigarettes?,124884,Friends,40.94-49,friends_s09e05_seg02_clip_14,A robe 2846,Sheldon was told by Leonard Penny does this.,Penny's feet shadow could be seen by Sheldon under the door.,Sheldon guessed.,Sheldon watched Penny stand next to the door by looking under the door.,Sheldon asked Raj about it and he told him about it.,1,Why did Sheldon know Penny stood next to the door whenever he knocked on the door?,124885,The Big Bang Theory,17.16-20.47,s04e01_seg02_clip_04,Penny's feet shadow could be seen by Sheldon under the door. 2847,A neck brace. ,A scarf. ,A turtleneck shirt. ,A stethoscope.,A neck tie. ,0,What is around the patient's neck when he is talking to Dr. House? ,124886,House M.D.,6.18-15.45,house_s04e03_seg02_clip_10,A neck brace. 2848,white,tan,blue,green,grey,1,What color is the couch behind Robin when Lilly and Marshall are hugging?,124887,How I Met You Mother,46.04-48.99,met_s06e14_seg02_clip_14,tan 2849,Serena was referring to herself.,Serena was referring to the book Castle had given her.,Serena was referring to the cup of coffee Castle handed her.,Serena was referring to Beckett belonging to someone else.,Serena was referring to Castle belonging to Beckett.,4,What was Serena referring to when telling Castle she doesn't steal things that belong to someone else?,124888,Castle,44.19-50.77,castle_s04e05_seg02_clip_26,Serena was referring to Castle belonging to Beckett. 2850,Ross sang foreboding chords after Luisa stormed out of the door.,Rachel sang foreboding chords after Luisa stormed out of the door.,Phoebe sang foreboding chords after Luisa stormed out of the door.,The monkey sang foreboding chords after Luisa stormed out of the door.,Rachel sang foreboding chords after Luisa stormed out of the door.,2,Who sang foreboding chords after Luisa stormed out of the door?,124889,Friends,47.91-53.7,friends_s01e19_seg02_clip_12,Phoebe sang foreboding chords after Luisa stormed out of the door. 2851,Cooking dinner.,Making the bed.,Take out the trash.,Family values.,Folding laundry.,3,What did Penelope tell Becket was never Georges strong suit when they were talking?,124890,Castle,29.26-56.27,castle_s08e07_seg02_clip_21,Family values. 2852,Stairs,chair,stool,floor,Couch,4,Where was Ross sitting when he was with Candler?,124891,Friends,51.29-55.57,friends_s06e12_seg02_clip_12,Couch 2853,That he would buy her dinner,That he would break up with her boss,That he would take her to a movie,That he would get her fired,That he would move to Yemen,1,What does Rachel say Chandler promised after he compliments her suit?,124892,Friends,15.13-19.88,friends_s04e03_seg02_clip_10,That he would break up with her boss 2854,In the conference room.,In House's office.,Walking in the Hallway.,In the Patient Room. ,In the lab. ,2,Where is Cameron and House when she tells Cameron that it was brucellosis?,124893,House M.D.,58.14-62.33,house_s02e14_seg02_clip_08,Walking in the Hallway. 2855,They were doing an interpretive dance routine,They were going to sell them,They didn't want Phoebe to have them,They each thought the set belonged to them, There were no candlestick holders present,3,Why were Monica and Rachel having a tug of war over a set of candlestick holders when they were in the living room?,124894,Friends,46.16-53.71,friends_s06e04_seg02_clip_10,They each thought the set belonged to them 2856,Superman logo is on his shirt,Batman logo is on his shirt,Aquaman logo is on his shirt,Spiderman logo is on his shirt,The Flash logo is on his shirt,4,Which superhero logo is on Sheldon's shirt before Penny starts talking to him,124895,The Big Bang Theory,0-7.88,s04e21_seg02_clip_09,The Flash logo is on his shirt 2857,50,22,60,31,86,3,How many men did Penny say she did not sleep with when she was with Sheldon?,124896,The Big Bang Theory,46.44-60.09,s04e01_seg02_clip_16,31 2858,Howard,Raj,Sheldon,Penny,No one,0,Who is sitting at the table next to Bernadett when the doorbell rings?,124897,The Big Bang Theory,0-6.4,s10e01_seg02_clip_02,Howard 2859,Sheldon states the alliance is over rated,Sheldon scoffs at Leonard,"Sheldon says ""of course she does!""",Sheldon states he never identified with the rebel alliance,Shedon says you are wrong!,3,What does sheldon respond after leonard suggests that she is not fit for the group?,124898,The Big Bang Theory,2.16-8.01,s04e03_seg02_clip_03,Sheldon states he never identified with the rebel alliance 2860,Yellow and white markers,Yellow markers with numbers,Red markers with letters,Red markers with numbers,Yellow markers with letters,4,What items were all around the ground as they collected evidence after the murder?,124899,Castle,5.94-9.14,castle_s04e03_seg02_clip_01,Yellow markers with letters 2861,Phoebe is sitting on the sofa.,Phoebe is sitting on a stool,Phoebe is standing behind the coffee bar.,Phoebe is lying on the sofa.,Phoebe is sitting at a table with a couple of friends.,1,Where is Phoebe when Chandler enters the Central Perk?,124900,Friends,58.44-66.03,friends_s05e21_seg02_clip_06,Phoebe is sitting on a stool 2862,Happy,Evil,Indifferent,Humiliated,Disgusted,1,How did Marshall feel after breaking his own moral code once?,124901,How I Met You Mother,42.72-54.09,met_s06e07_seg02_clip_13,Evil 2863,Going to Paris ,Drinking,Smoking ,talking gossip,ganging up on Rachel,2,What was hard to do after they quit doing it?,124902,Friends,0-10.33,friends_s05e18_seg02_clip_18,Smoking 2864,More than 5,1,2,3,4,0,How many Christmas trees were in the lobby when the staff was celebrating? ,124903,House M.D.,77.22-88.25,house_s04e10_seg02_clip_22,More than 5 2865,George walks out of the room,Dr Grey throws a book at George,Dr Grey begins to cry,Dr Grey looks up and continues writing her notes.,Dr Grey take a sip of coffee,3,What happens after George walks into the room?,124904,Grey's Anatomy,0.86-2.58,grey_s02e04_seg02_clip_04,Dr Grey looks up and continues writing her notes. 2866,He is afraid he'll look monstrous.,He is afraid he will die.,He is afraid he will never walk again.,He is afraid he will never see again.,He is afraid he will always be sick.,0,What is the patient with bandages around his face afraid of when he is talking to the nurse?,124905,House M.D.,13.63-18.81,house_s02e01_seg02_clip_10,He is afraid he'll look monstrous. 2867,Because he didn't like the refreshments. ,Because he couldn't figure out how to cover the table.,Because Raj said their problems would be solved if Stuart was a girl.,Because he doesn't want to date anybody.,Because he hates comic books.,2,Why was Stuart confused before he covered the table?,124906,The Big Bang Theory,30.1-37.77,s06e16_seg02_clip_08,Because Raj said their problems would be solved if Stuart was a girl. 2868,Raj farts,Sheldon laughs loudly,Sheldon looks up and makes a crack at Howard's profession as an engineer,Leonard chokes on his potato chips,howard looks at Leonard with much interest,2,What happens after Leonard looks at Howard and tells him about his idea ?,124907,The Big Bang Theory,1.86-4.64,s04e12_seg01_clip_01,Sheldon looks up and makes a crack at Howard's profession as an engineer 2869,A void,A space,A sub-floor,A car,A pay booth,0,What feature of the parking garage does House believe a person could be in after the collapse of the building?,124908,House M.D.,15.35-24.65,house_s06e21_seg02_clip_04,A void 2870,back pain,cramps,headache,for a friend,to die,2,Why did Natalie say she took the pills when Cuddy asked her about them?,124909,House M.D.,81.9-92.03,house_s05e11_seg02_clip_02,headache 2871,Pulled his hands away,Fell asleep,Jumped up and down,Started crying,Walked away,0,What did Castle do after he put his hands on the machine?,124910,Castle,39.17-49.08,castle_s05e06_seg02_clip_21,Pulled his hands away 2872,House was sleeping,House was reading,House was drinking,House was playing poker,House was cooking,3,What was House doing when Chase called him ?,124911,House M.D.,1.58-11.86,house_s02e19_seg02_clip_17,House was playing poker 2873,Sitting at a table.,Outside.,Standing behind the counter with a screen in front of him.,Ordering drinks at the bar.,Chilling outside.,2,Where is Glen when he is speaking to Penny?,124912,The Big Bang Theory,0-5.83,s09e15_seg02_clip_07,Standing behind the counter with a screen in front of him. 2874,Raj runs to the door.,Raj jumps on the table.,Raj cries in the corner.,Raj looks to the side.,Raj watches porn.,3,What does Raj do after he says they are going to die?,124913,The Big Bang Theory,0-2.31,s07e12_seg02_clip_12,Raj looks to the side. 2875,Darrien passed out,Darrien's arm was going numb,Darrien started to seize,Darrien went into shock,Darrien couldn't breath,1,What happens to Darrien when Chase notices that her fingers were turning blue?,124914,House M.D.,45.57-48.38,house_s07e22_seg02_clip_04,Darrien's arm was going numb 2876,Robin is sitting at the computer desk,Robin is sitting on the arm of the couch.,Robin is sitting on the couch next to Lily.,Robin is in the kitchen getting a beer.,Robin is sitting on the floor.,2,Where is Robin when the friends are all in Ted's apartment?,124915,How I Met You Mother,2.48-10.86,met_s03e08_seg02_clip_00,Robin is sitting on the couch next to Lily. 2877,The color of Ross' shirt is purple,The color of Ross' shirt is green,The color of Ross' shirt is black,The color of Ross' shirt is red,The color of Ross' shirt is blue,4,What color shirt does Ross have on when he is in the park with Monica,124916,Friends,27.54-37.24,friends_s03e09_seg02_clip_07,The color of Ross' shirt is blue 2878,Monica and Chandler's apartment.,The coffee bar.,An expensive restaurant.,Joey's commercial shoot set.,Joey's apartment.,0,"Where are Rachel, Phoebe, and Monica when Ross arrives in a potato costume?",124917,Friends,4.13-13.87,friends_s08e06_seg02_clip_04,Monica and Chandler's apartment. 2879,Treating a patient. ,Laying on a couch.,Standing by the desk.,Watching a tv show.,Sitting behind his desk.,4,What was House doing when Wilson was speaking to him?,124918,House M.D.,2.23-11.13,house_s04e16_seg02_clip_14,Sitting behind his desk. 2880,Sitting in a chair.,Sitting on the couch.,Sitting on the floor.,Laying on the couch.,Standing by the bookshelf.,2,Where was Alexis after Castle walked into the room?,124919,Castle,60.69-66.61,castle_s04e06_seg02_clip_26,Sitting on the floor. 2881,Dr. Winkle she will not let the situation happen again.,Dr. Winkle said she agreed with the apology.,Dr. Winkle said she was sorry as well.,Dr. Winkle said she did not apologize for calling Sheldon Dr Dumb-ass.,Dr. Winkle said she will try to avoid interacting with Sheldon.,3,What did Dr. Winkle say when Dr. Gablerhauser apologized on her behalf to Sheldon?,124920,The Big Bang Theory,54.33-55.84,s02e03_seg02_clip_06,Dr. Winkle said she did not apologize for calling Sheldon Dr Dumb-ass. 2882,A purse,A baseball glove,A sandwich,A water bottle ,A stuffed bear,4,What is sitting on top of the piano when Jessica Glitter turns around and smiles at Lily?,124921,How I Met You Mother,46.42-51.54,met_s06e09_seg02_clip_12,A stuffed bear 2883,Monica,Ross,Joey,Rachel,Chandler,2,Who said they liked their food when talking about what it tasted like?,124922,Friends,28.84-40.32,friends_s06e09_seg02_clip_17,Joey 2884,He was talking on the phone.,He closed a door.,He closed a window.,He closed a laptop.,He was playing with a pen.,3,What did House do after Foreman said that he will speak to the cafeteria staff?,124923,House M.D.,20.69-28.21,house_s08e15_seg02_clip_00,He closed a laptop. 2885,To visit with Howard and Bernadette. ,To build the crib he bought for them. ,To visit with Stuart. ,To argue with Stuart. ,To build the crib for Howard and Bernadette with Stuart. ,1,Why did Raj say was the reason he came to Howard and Bernadette's house when Stuart answered the door? ,124924,The Big Bang Theory,15.15-25.25,s10e10_seg02_clip_10,To build the crib he bought for them. 2886,They were late for work.,They were leaving.,Guests are on the way.,His parents were there.,He was tired.,2,Why did Sheldon tell Amy not to get him randy after talking to her?,124925,The Big Bang Theory,15.65-21.97,s10e06_seg02_clip_04,Guests are on the way. 2887,Two,,Five,Three,One,3,How many lamps are displayed in the background after Avery pulls up the subway maps?,124926,Castle,22.81-29.08,castle_s02e18_seg02_clip_20,Three 2888,The auctioneer gets mad,The auctioneer gets concerned,The auctioneer gets angry,The auctioneer gets depressed,The auctioneer gets giddy,1,Hoe does the auctioneer react after he sees Beckett's badge?,124927,Castle,78.68-92.03,castle_s03e10_seg02_clip_24,The auctioneer gets concerned 2889,in her trashcan,in her kitchen sink,in her toilet,in her backyard,in the streets. ,1,where does Cuddy tell the patient she can live before the patient slams the door on her?,124928,House M.D.,0-18.61,house_s07e20_seg02_clip_17,in her kitchen sink 2890,He means he is sore. ,He means then there would be a chance of a heart attack. ,He means it cut down his chances on living. ,He means that the surgery took a lot out of him. ,He means that he might pop a stitch. ,1,What does Alfred mean when he says that he shouldn't have had that angioplasty?,124929,The Big Bang Theory,29.13-35.85,s09e24_seg02_clip_06,He means then there would be a chance of a heart attack. 2891,Trumpet,Notebook,Guitar,Autographed photo,Cell phone,3,What does Sheldon have in his hands when he approaches Arthur?,124930,The Big Bang Theory,33.06-40.44,s06e22_seg02_clip_12,Autographed photo 2892,Glamour,People,US Weekly,Cosmo,Newsweek,4,What magazine was the woman in the dress holding when she stood up from the chair?,124931,House M.D.,0-7.37,house_s02e04_seg02_clip_00,Newsweek 2893,She falls down.,She kicks his leg.,She takes out a blowhorn.,She swims to shore.,She takes his beer can.,2,What does Rachel do after Joey incorrectly answers her questions?,124932,Friends,21.05-37.53,friends_s07e03_seg02_clip_05,She takes out a blowhorn. 2894,Called 911,Tried to run,Fought back,Bandaged himself,Tried to hide,4,What does Lainie say the victim did after he was shot in the leg?,124933,Castle,38.89-50.51,castle_s03e22_seg02_clip_00,Tried to hide 2895,She pulls on his ear. ,She grabs his hair and pulls. ,She grabs his pants and pulls. ,She grabs his shirt and pulls him back. ,She pulls on his nose. ,3,What does Monica do after Joey turns around and walks away?,124934,Friends,30.4-34.83,friends_s05e16_seg02_clip_08,She grabs his shirt and pulls him back. 2896,I'm not going out tonite I have a headache.,"Hi, sweetie your ready to go.",She said nothing.,"Okay, who's here just for the drinks.",She asked if her dress was too slutty,4,What was the first thing Rachel said when she walked out of the bedroom?,124935,Friends,6.9-9.3,friends_s08e05_seg02_clip_10,She asked if her dress was too slutty 2897,He can act like a monkey. ,He can act like an elephant.,He can act like a wizard.,He can act like an Italian chef,He can act like a writer. ,4,What does Joey tell Ross he can act like before Joey picks up the paper and pencil?,124936,Friends,26.86-32.76,friends_s05e10_seg02_clip_04,He can act like a writer. 2898,Blue,Green,Brown,Gray,red,1,What color is Bernadette blouse when she was driving ?,124937,The Big Bang Theory,36.64-41.44,s08e11_seg02_clip_03,Green 2899,Bottles,Papers,Boxes,Clothes,Bags,4,What did Leonard and Sheldon have in their hand when they was coming upstairs?,124938,The Big Bang Theory,0-21.79,s10e13_seg02_clip_00,Bags 2900,by bursing through the door,by coming from the ceiling,by jumping from behind the couch ,by coming through a window ,by jumping out of a box ,1,How does Alexis surprise her dad when she from he enters the room?,124939,Castle,58.31-65.14,castle_s04e22_seg02_clip_07,by coming from the ceiling 2901,the kitchen table,the couch,the floor,A park bench ,A bus stop ,2,where are Raj and Sheldon sitting when they are dealing with fear? ,124940,The Big Bang Theory,43.39-51.65,s03e18_seg02_clip_06,the floor 2902,A camera,an arm,numb,hurting,A piano,4,What does Patrick say his leg is not when he is talking to House while having his brain scanned?,124941,House M.D.,6.78-30.27,house_s03e15_seg02_clip_04,A piano 2903,nothing,bleeding,cuts,spots,bruises ,4,what did taub notice on lues neck after waking lue up from his bad dream?,124942,House M.D.,37-42.57,house_s08e18_seg02_clip_12,bruises 2904,Esposito will check Keith's apartment to get data from his TV set.,Esposito will interrogate Keith about the time-stamp.,Esposito will check the data file to see if it has been corrupted.,Esposito will no longer use the video as evidence.,Esposito will cross-reference the time-stamp with the news being played on the TV in the background.,4,What does Esposito want to do after Gates tells him not to use the time-stamp in the video?,124943,Castle,61.62-73.5,castle_s05e07_seg02_clip_15,Esposito will cross-reference the time-stamp with the news being played on the TV in the background. 2905,Avoiding of her,Angry with her,Happy to see her,Wishing she was not there,Disgusted with her,2,How does Derek feel when he is walking towards Meredith?,124944,Grey's Anatomy,72.02-90.02,grey_s02e11_seg02_clip_21,Happy to see her 2906,Susan dances with Ben.,Susan kicks Ross.,Susan cries.,Susan hugs Carol.,Susan gestures with her hand.,4,What does Susan do when she says look?,124945,Friends,0-1.12,friends_s01e16-17_seg02_clip_08,Susan gestures with her hand. 2907,A piece of fruit,a file,a stack of papers,a cup of coffee,her coat,0,What does the doctor grab before she walks away?,124946,House M.D.,0-4.5,house_s01e03_seg02_clip_13,A piece of fruit 2908,The celebrities auction them off.,The celebrities pass them on to other celebrities.,The celebrities keep them for the next function.,The celebrities send them to the dry cleaners.,The celebrities send them back to Rachel's store.,4,What do the celebrities do with tuxedos from Rachel's store after they are done with them?,124947,Friends,20.11-25.21,friends_s07e20_seg02_clip_02,The celebrities send them back to Rachel's store. 2909,He had to go pick up Ben,He had to pee,He was nervous,He had a Dr.'s appointment,He didn't stand up,0,Why did Ross say he had to leave before he stood up?,124948,Friends,49.04-55.09,friends_s04e22_seg02_clip_03,He had to go pick up Ben 2910,He was next to Nemo.,He was standing next to Castle.,He was standing next to Astro.,Ryan was standing next to Esposito.,Ryan was next to Scooby Do.,3,Who were Ryan standing next to when they were talking.,124949,Castle,0-36.88,castle_s03e14_seg02_clip_23,Ryan was standing next to Esposito. 2911,Penny and Leonard walk down the stairs.,Sheldon and Penny walk down the stairs.,Sheldon and Leonard walk down the stairs.,Sheldon and Amy walk down the stairs.,Amy and Leonard walk down the stairs.,2,Who walks down the steps when they are in the apartment complex?,124950,The Big Bang Theory,9.52-14.57,s07e02_seg02_clip_14,Sheldon and Leonard walk down the stairs. 2912,Foreman,Wilson,Cuddy,Chase,Masters,3,Whose phone rang when he was asleep?,124951,House M.D.,154.82-163.42,house_s07e22_seg02_clip_08,Chase 2913,Thong,Bra,Shorts,Pantyhose,Panties,4,What garment does Rachel hold up when Ross is teaching her how to sort laundry?,124952,Friends,16.17-35.7,friends_s01e05_seg02_clip_12,Panties 2914,Cords.,Lights.,A telephone.,A fan.,Balloons.,1,What did the ladder have on it when Joey talks about not aging?,124953,Friends,11.48-17.37,friends_s08e19_seg02_clip_02,Lights. 2915,Amy.,Raj.,Howard.,Bernadette.,Leonard.,4,Who offered a beverage to Penny when sat on the couch?,124954,The Big Bang Theory,0-52.48,s07e01_seg02_clip_11,Leonard. 2916,Tell his wife he has another wife.,Tell his wife Bob was not his real name.,Tell his wife he cheated.,Tell his wife he can't have kids.,Tell his wife he is gay.,2,What did Adam's say she told Bob to tell his wife after Chase said the truth may have killed Bob?,124955,House M.D.,25.66-30.61,house_s08e05_seg02_clip_15,Tell his wife he cheated. 2917,Thirteen is holding a dog.,Thirteen is holding a purse.,Thirteen is holding a phone.,Thirteen is holding a cat.,Thirteen is holding a necklace.,2,What is Thirteen holding when she is driving in the cab?,124956,House M.D.,0-8.55,house_s06e04_seg02_clip_07,Thirteen is holding a phone. 2918,A low white blood cell count,High blood pressure,Dizziness,Weakness,Cramps,0,What did House say could be a side effect when he was discussing diuretics?,124957,House M.D.,2.31-5.08,house_s02e05_seg02_clip_01,A low white blood cell count 2919,They were discussing each other.,They were discussing a dance.,They were talking about work.,They were talking about a murder dealing with the lottery.,They were talking about baseball.,3,"What was Castle, Beckett, Ryan, Montegomery, and Esposito talking about when they were standing in front of the white board?",124958,Castle,0-60.39,castle_s03e14_seg02_clip_23,They were talking about a murder dealing with the lottery. 2920,They were in someones house.,They were at work.,They were in a library.,They were in the break room.,They were in Castle's office.,4,Where were Castle and Beckett before rushing out towards where Ryan was working?,124959,Castle,0-9.48,castle_s02e24_seg02_clip_09,They were in Castle's office. 2921,He was sad about.,He said that he nothing about it.,He never talked about it.,He said that he knew the best fangs master who makes it.,He was angry about it.,3,Where and when did Castle say about the fangs?,124960,Castle,0-46.99,castle_s02e06_seg02_clip_02,He said that he knew the best fangs master who makes it. 2922,Ryan is holding a case file in his hand,Ryan is holding a stack of mug shots,Ryan is holding a magazine,Ryan is holding some index cards,Ryan is holding some evidence bags,0,What is Ryan holding in his hand when he is talking with Esposito,124961,Castle,73.03-82.79,castle_s08e05_seg02_clip_03,Ryan is holding a case file in his hand 2923,Monica and Phoebe.,Rachel.,Monica.,Monica and Rachel.,Phoebe and Rachel.,3,Who left the room after Rachel said they were going to lunch?,124962,Friends,0-10.33,friends_s06e12_seg02_clip_07,Monica and Rachel. 2924,He said the texts she had been getting had really scared her,He said the phone calls she had been getting had really scared her,He said the letters she had been getting really scared her,He said the pictures she had been getting had really scared her,He said she felt like someone had been following her and that really scared her,2,Why did Travis say Jenna had been really scared lately when he was talking to Castle and Beckett?,124963,Castle,16.83-26.32,castle_s02e03_seg02_clip_11,He said the letters she had been getting really scared her 2925,"Ross said, the one next to my foot.","Ross said, in the green dish.","Ross said, the turkey burger is in that bag.","Ross said, I ate you turkey burger ","Ross said, I gave your turkey burger to Rachel.",0,Where is the turkey burger of Chandler when he ask to Ross?,124964,Friends,6.84-10.55,friends_s03e24_seg02_clip_12,"Ross said, the one next to my foot." 2926,Wilson.,Cameron.,Chase.,Foreman.,The laboratory technician.,0,Who is House trying to convince to admit likes his boss when he is in the laboratory?,124965,House M.D.,14.24-23.59,house_s02e22_seg02_clip_14,Wilson. 2927,winked at Chandler,took Chandlers coat,hit Ross's back,hit Chandler's arm,made a sad face,0,What did Joey do after Chandler told him he missed Monica most?,124966,Friends,43.46-49.5,friends_s09e10_seg02_clip_18,winked at Chandler 2928,sheldon wants his phone looked at.,sheldon wants his laptop looked at,sheldon wants his tablet looked at,sheldon wants his train looked at,sheldon wants his toaster looked at,3,what does sheldon want howard to work on after he fixed the chip?,124967,The Big Bang Theory,37.35-41,s08e22_seg02_clip_09,sheldon wants his train looked at 2929,they were at Monica's apartment,they were at a shop,they were at a park,they were at a resturant,they were at a museum,4,"Where did Monica, Rachel, and Phoebe go after Phoebe mentions that she was hungry?",124968,Friends,19.31-26.97,friends_s06e22_seg02_clip_01,they were at a museum 2930,A kaftan. ,A three piece suit.,A sweater and jeans. ,A bath robe.,A surgical mask and gown. ,4,What does Dr. House wear when he walks into the room? ,124969,House M.D.,48.98-59.06,house_s03e21_seg02_clip_20,A surgical mask and gown. 2931,He starts dozing off,He tears down the x-rays,He starts coughing ferociously,He starts sneezing,He gives a diagnosis ,4,What does Derek do when one doctor is asking another doctor a question?,124970,Grey's Anatomy,16.07-23.73,grey_s03e24_seg02_clip_12,He gives a diagnosis 2932,Cuddy,Chase,Cameron,Foreman,Wilson,0,Who came up to House when he was on the airplane?,124971,House M.D.,27.32-33.7,house_s03e18_seg02_clip_04,Cuddy 2933,George Bush,Barbara Walters,Ted Nugent,Richard Nixon,Leonard Nemoy,2,Who does House say they should have listened to when Foreman is talking about the cat?,124972,House M.D.,9.57-20.51,house_s05e18_seg02_clip_06,Ted Nugent 2934,Monica has her parents and Ross over for dinner,Monica has Phoebe and Joey over for dinner,Monica has Chandler and Joey over for dinner,Monica doesn't have anyone over for dinner,Monica has Rachel and Phoebe over for dinner,0,Who does Monica have over for dinner when she is at her apartment?,124973,Friends,0-12.31,friends_s01e02_seg02_clip_09,Monica has her parents and Ross over for dinner 2935,Where to go for Christmas.,Where he should take his wife for dinner.,What Marshall wants for his birthday.,How to change your last name.,Marital disputes.,4,What do Lily and Marvin discuss when he calls her a second time?,124974,How I Met You Mother,29.44-37.42,met_s06e01_seg02_clip_08,Marital disputes. 2936,Kissing Taub,Lying to Chase,Dating House,Stealing meds,Popping pills,1,What does Cameron admit to when Chase is asking for clarification?,124975,House M.D.,0-18.14,house_s05e21_seg02_clip_04,Lying to Chase 2937,The Bank,The Bus stop,The Grocery Store,The Gas Station,The Flower Shop,3,Where does Penny mention she had to go when talking to Leonard?,124976,The Big Bang Theory,27.77-35.39,s07e21_seg01_clip_00,The Gas Station 2938,Paul.,Paula.,Bill.,Joey.,Chandler.,0,What name did Phoebe mention after looking at Monica?,124977,Friends,29.65-40.49,friends_s02e19_seg02_clip_13,Paul. 2939,because she took a self defense class,because she exercised too hard,because Monica crashed into her,because her bra underwire was sticking her,because she was dancing all night long,2,Why does Rachel say her side hurts before Monica hugs her,124978,Friends,0-7.02,friends_s03e21_seg02_clip_03,because Monica crashed into her 2940,She has lost more weight. ,She is high. ,She has gained weight. ,She is drunk.,She spent more money. ,3,Why are Ross and Monica's parents going to be mad when they see Monica?,124979,Friends,38.14-45.77,friends_s07e14_seg02_clip_12,She is drunk. 2941,GNB would use bribes.,GNB would use physical force.,GNB would use violent dogs.,GNB would use snakes.,GNB would use guns to make the residents leave.,3,What would GNB use when they wanted to make hundreds of residents leave according to Barney?,124980,How I Met You Mother,29.77-30.97,met_s06e05_seg02_clip_01,GNB would use snakes. 2942,A parrot called him a weirdo. ,A parrot called him fat ass. ,A parrot called him skinny ass. ,A parrot called him crazy. ,A parrot called him genius. ,1,What did a parrot call Sheldon at age 16 when he was in a pet store?,124981,The Big Bang Theory,42.26-42.85,s05e09_seg02_clip_05,A parrot called him fat ass. 2943,Because visiting hours were over,Because Tom did not want him in the room ,Because Julia was sleep when he arrived,Because Tom did not know who Damien was,Because Julia had been released,1,Why did Tom ask Damien to leave the room when he came to the hospital to visit Julia?,124982,House M.D.,4.89-18.67,house_s06e18_seg02_clip_12,Because Tom did not want him in the room 2944,Monica has a green shirt on.,Monica has a blue shirt on.,Monica has a red shirt on.,Monica has a purple shirt on.,Monica has an orange shirt on.,4,What color shirt does Monica have on when someone is talking on the phone with her?,124983,Friends,0-5.27,friends_s06e22_seg02_clip_10,Monica has an orange shirt on. 2945,Foreman,Wilson,Cuddy,Taub,Chase,3,Who did House and Adams leave in the hallway after they were done talking?,124984,House M.D.,48.37-58.14,house_s08e06_seg02_clip_24,Taub 2946,she wasn't doing anything ,she was eating on her table,she was watching tv,she was asleep in her bed,she was running on treadmill,4,What is Cameron doing before she answered the door?,124985,House M.D.,0-9.58,house_s01e19_seg02_clip_00,she was running on treadmill 2947,a christmas tree,an elf,a heart with cupid,a jack o latern,a witch,3,what holiday themed decoration is behind penny sitting on her dishes shelf when she is talking to leonard?,124986,The Big Bang Theory,0-5.78,s05e07_seg02_clip_08,a jack o latern 2948,it caused her arrhythmia,it is made with poisonous mushrooms,It's derived from Marijuana ,Many other people had reporte illness after drinking the tea,He is suspicious of any alternative medicine ,0,Why does Foreman suggest the tea may be to blame for the nun's illness when the team tries to uncover it's source?,124987,House M.D.,47.04-52.27,house_s01e05_seg02_clip_16,it caused her arrhythmia 2949,American flag.,State of Indiana.,State of Oregon.,State of North Carolina.,State of Florida.,2,What flag is being held up when Sheldon shows how to identify the hoist?,124988,The Big Bang Theory,39.07-48.07,s05e14_seg01_clip_01,State of Oregon. 2950,eating,walking,standing,sitting,drinking,3,What was the man doing before he started talking?,124989,Friends,0-6.72,friends_s03e18_seg02_clip_09,sitting 2951,A former detective,A Congressman,The Mayor,Fox,A famous baseball player,3,Who did Lara describe when Beckett asked her to describe the man in the apartment?,124990,Castle,80.73-91.22,castle_s02e15_seg02_clip_23,Fox 2952,Because he has to figure it out for himself,Because her and Ross don't sleep in the same bed,Because they loved to cuddle,Because her and Ross are cuddly sleepers,Because there is no right way to tell somebody that you don't want to cuddle with them,3,Why did Rachel say that they couldn't help him there after Chandler asked how to tell Janice that he needed space when he sleeps,124991,Friends,29.41-45.02,friends_s03e03_seg02_clip_05,Because her and Ross are cuddly sleepers 2953,He turns the game off.,He sits on the couch.,He grabs a banana from the kitchen.,He starts calling someone on the phone.,He takes his jacket off.,0,What does Leonard do when asking Sheldon if he is just going to give up?,124992,The Big Bang Theory,31.33-40.69,s02e05_seg02_clip_13,He turns the game off. 2954,Took off his robe,Jumped in bed with Lily ,Kissed Lily ,Checked the temperature in the room ,Brushed his teeth,1,What did Marshall do when he entered the bedroom? ,124993,How I Met You Mother,5.8-8.13,met_s06e06_seg02_clip_14,Jumped in bed with Lily 2955,irritated,happy,peaceful,elated,bored,0,How did Raj feel when Sheldon thought Raj didn't know Indian cinema?,124994,The Big Bang Theory,0-9.18,s02e01_seg02_clip_11,irritated 2956,Paul gets mad because he thinks Ross is mean to Lizzie.,Paul gets mad because he can't possibly know what he means.,Paul gets mad because he thinks Ross is lying about loving Lizzie.,Paul gets mad because he thought Ross meant that he also sees Lizzie as a 12-year-old girl.,Paul gets mad because he thinks Ross is too nice to Lizzie.,3,Why does Paul get mad after Ross says that he knows what Paul means?,124995,Friends,0-24.01,friends_s06e21_seg02_clip_15,Paul gets mad because he thought Ross meant that he also sees Lizzie as a 12-year-old girl. 2957,5 basket of apples,Baskets of bananas ,Jars of jam,A stack of newspapers,Glasses of wine,2,What is on the kitchen table when Chandler is talking to Ross and Rachel?,124996,Friends,0-6.6,friends_s03e03_seg02_clip_05,Jars of jam 2958,Two laundry baskets,Five laundry baskets,A mannequin,A folded pile of towels,A gallon of milk,0,What is behind Stella when she says it did not happen in New Jersey?,124997,How I Met You Mother,6.13-11.67,met_s04e03_seg02_clip_12,Two laundry baskets 2959,A large bookcase.,A large window. ,A Christmas tree. ,An oil painting.,A coat rack.,0,What is behind the three people when they sit on the sofa? ,124998,The Big Bang Theory,58.9-64.02,s09e24_seg02_clip_06,A large bookcase. 2960,in 20 years,in 10 years,in 15 years,in 25 years,in 30 years,0,How many years did everyone agree to meet when they were talking about their future?,124999,The Big Bang Theory,35.52-42.27,s07e18_seg02_clip_17,in 20 years 2961,Cuddy's mother says she has more in common with Wilson.,Cuddy's mother says she has more in common with House.,Cuddy's mother says she has more in common with Cuddy's sister Julia.,Cuddy's mother says she has more in common with Cuddy's ex.,Cuddy's mother says she has more in common with people more like herself.,2,Who does Cuddy's mother tell her she has more in common with when arguing with Cuddy in the exam room?,125000,House M.D.,57.62-72.47,house_s07e11_seg02_clip_17,Cuddy's mother says she has more in common with Cuddy's sister Julia. 2962,A cat,A newspaper,A dog,A file,A vial ,3,What is House looking at when talking to Cameron and Foreman,125001,House M.D.,10.47-11.83,house_s03e05_seg02_clip_20,A file 2963,No way.,What do you mean?,What did you say?,What?,Oh shut up.,3,"What did Monica say after Phoebe said ""You're done""? ",125002,Friends,0-3.73,friends_s10e12_seg02_clip_10,What? 2964,It's the middle of a blizzard,Ross only gave them one day's notice,"People are on their way, but running late",Ross offended too many people that no one wanted to show up,Ross is being impatient and he should just wait longer ,1,Why does Chandler reason that no one came to the apartment after Ross shared news of his death?,125003,Friends,52.31-63.03,friends_s09e17_seg02_clip_19,Ross only gave them one day's notice 2965,raised his hands,stood up,sat on the floor,put a hand on Castle's shoulder,signaled to security,1,What did Marcus do after Castle told him to settle the score?,125004,Castle,58.06-63.5,castle_s07e15_seg02_clip_14,stood up 2966,He suddenly had a severe coughing attack.,"He ""accidentally"" spilled his coffee at just the wrong time.",He made a loud fuss over Castle's necktie.,His phone conveniently rang and it was his mother.,The alarm on his wristwatch suddenly started loudly going off.,3,How did Visiliy evade answering after Castle asked who he reported to?,125005,Castle,9.05-17.2,castle_s08e11_seg02_clip_14,His phone conveniently rang and it was his mother. 2967,A turned over drink ,An open window,An empty pet bed,Blood ,A house plant that had been turned over,2,What did Chandler see when he was calling Klunkers? ,125006,Friends,9.14-15.13,friends_s07e08_seg02_clip_16,An empty pet bed 2968,A grocery bag,A wine bottle,A shoebox,A kitten,Nothing,2,What does Monica hand to Rachel after she sits down on the couch?,125007,Friends,12.69-19.77,friends_s09e12_seg02_clip_13,A shoebox 2969,Leonard is annoyed because Sheldon won't let go of being upset.,Leonard is annoyed because Sheldon keeps walking slowly.,Leonard is annoyed because Sheldon won't live with him anymore.,Leonard is annoyed because Sheldon is being mean.,Leonard is annoyed because Sheldon won't get him a cat.,0,Why is Leonard annoyed when he is walking with Sheldon?,125008,The Big Bang Theory,25.77-37.25,s07e02_seg02_clip_14,Leonard is annoyed because Sheldon won't let go of being upset. 2970,Gets his keys,Leaves the room,Grabs his coats,Searches on the computer,Makes a phone call,4,What does Ryan do after receiving confirmation about the passengers?,125009,Castle,7.82-16.56,castle_s08e17_seg02_clip_22,Makes a phone call 2971,going to the bathroom,people attacking him,Perverts watching him sleep,what side was better,closer to the door,2,What was Sheldon talking about before Amy closed the curtains?,125010,The Big Bang Theory,13.21-43.08,s10e04_seg02_clip_09,Perverts watching him sleep 2972,arrest warrant,his gun,his phone,handcuffs,coffee cup,2,What does Esposito have in his hand when talking to Beckett?,125011,Castle,36.18-43.42,castle_s03e23_seg02_clip_14,his phone 2973,Robin is at a storage utility.,Robin is at a mall.,Robin is at a store.,Robin is at a house.,Robin is at a restaurant.,4,Where is Robin when she is asked for a nightcap?,125012,How I Met You Mother,4.59-11.32,met_s03e03_seg02_clip_10,Robin is at a restaurant. 2974,Rachel is ordering cookies.,Rachel is ordering biscuits.,Rachel is ordering pizza.,Rachel is ordering tea.,Rachel is ordering alcohol and beers.,4,What is Rachel trying to order when she picks up the phone in the hotel room?,125013,Friends,15.05-20.36,friends_s05e23-24_seg02_clip_35,Rachel is ordering alcohol and beers. 2975,less than half an inch,the width of a single hair,a wide as a pea,two centimeters,a sheet of paper,1,"How wide does Amy tell Sheldon the locus coeruleus is after she says ""hope your hands are steady""?",125014,The Big Bang Theory,36.59-50.24,s05e16_seg02_clip_12,the width of a single hair 2976,They are singing. ,They are playing a game. ,They are having dinner. ,They are dancing. ,They are watching a movie. ,2,"What are Amy, Sheldon, Leonard, and Penny doing when they are spending time together?",125015,The Big Bang Theory,0-20.17,s08e03_seg02_clip_13,They are having dinner. 2977,The knife,The boot,The steering,The phone,The cane,2,What did Becket grip when she was trying to get out of the car?,125016,Castle,105.21-109.02,castle_s04e16_seg02_clip_01,The steering 2978,His back,His head,His right side,His knee,His shoulder,2,What part of the body does Joey touch when he complains about hurting?,125017,Friends,9.29-13.06,friends_s06e04_seg02_clip_10,His right side 2979,100,120,50,60,10,0,How many rooms did the hotel sign say were available when the SUV pulled up in the alley?,125018,Castle,28.22-32.68,castle_s07e20_seg02_clip_24,100 2980,Playing video games ,eating candy,making sandwiches,drinking ,nothing ,0,"What was House's ""girlfirend"" doing after her left her to talk to Wilson?",125019,House M.D.,0-10.12,house_s08e14_seg02_clip_05,Playing video games 2981,She weighed 200 pounds,She cheated,He used to let her win,He never felt right hitting a girl,He has weak tendons.,0,Why does Ross say that Monica was undefeated when they wrestled as childern?,125020,Friends,0-14.73,friends_s05e10_seg02_clip_11,She weighed 200 pounds 2982,he is getting ready to board a plane,he is in his bedroom,he is in the cafe,he is walking down the street,he is at Monica's apartment,0,Where is ROss when he is with headphones on his head?,125021,Friends,34.28-38.46,friends_s01e24_seg02_clip_12,he is getting ready to board a plane 2983,He eyed the counter,He talked with someone,He tripped over Lucas,He said something peculiar,He tasted his food,2,What happened to house when in the cafeteria?,125022,House M.D.,61.06-67.8,house_s06e12_seg02_clip_23,He tripped over Lucas 2984,No one was sitting in between Monica and Ross,Chandler was sitting in between Monica and Ross,Joey was sitting in between Monica and Ross,Rachel was sitting in between Monica and Ross,Phoebe was sitting in between Monica and Ross,4,Who is sitting in the middle of Monica and Ross when they are in the cafe on the couch?,125023,Friends,0-3.66,friends_s09e15_seg02_clip_11,Phoebe was sitting in between Monica and Ross 2985,The door knob.,Chandler's arm.,Chandler's hand.,Chandler's Butt.,Chandler's belt.,3,What did Joey's sister grab after she jumped out from behind the door?,125024,Friends,25.68-33.64,friends_s03e11_seg02_clip_15,Chandler's Butt. 2986,Raj give Penny a science book.,Raj gives Penny a flower.,Raj gives Penny a smile and a thumbs up.,Raj gives Penny a big hug.,Raj gives Penny a bottle of water.,2,"What does Raj give Penny after she says gentleman, are you ready?",125025,The Big Bang Theory,30.41-40.45,s01e13_seg02_clip_01,Raj gives Penny a smile and a thumbs up. 2987,it would require a specialised machine ,it has gotten to large ,it is to tiny ,its to near the brain stem ,it has never been done before ,3,Why does Chase tell House no neurosurgeon would help his patient after he asks for help? ,125026,House M.D.,26.4-31.86,house_s05e17_seg02_clip_17,its to near the brain stem 2988,There is a children's playyard gate in the basement,There is a dog kennel in the basement,There is an old bird cage in the basement,There is a cage with hamsters in it in the basement,There is a pet carrier in the basement,0,"What is the ""cage"" Chase refers to when he goes to the basement?",125027,House M.D.,63.96-70.86,house_s08e19_seg02_clip_06,There is a children's playyard gate in the basement 2989,To get intel,To destroy the precinct,To improve castles career,To keep beckett from looking into things she shoudn't,To protect montgomery,3,Why did the mystery man keep castle at the precinct after weldon was able to keep his job as mayor?,125028,Castle,115.04-121.43,castle_s04e12_seg02_clip_26,To keep beckett from looking into things she shoudn't 2990,Because House thought he could win her over.,Because House might win their bet.,Because House thought she didn't know what she was doing.,Because House was hoping that Cuddy was overly nice.,Because House was hoping Cuddy would be thinking about something else and say yes.,1,Why did House think he could get no clinic hours for a week when he was talking to Cuddy?,125029,House M.D.,1.31-4.82,house_s01e02_seg02_clip_17,Because House might win their bet. 2991,The man with a gun gives Kate a pill.,The man with a gun gives Kate a book.,The man with a gun gives Kate a cupcake.,The man with a gun gives Kate a candy.,The man with a gun gives Kate a note.,0,What does the man with a gun give Kate after Bracken leaves the room?,125030,Castle,33.62-63.65,castle_s06e22_seg02_clip_18,The man with a gun gives Kate a pill. 2992,Phoebe is holding a stuffed animal,Phoebe is holding a bottle of water,Phoebe is holding a cup of coffee,Phoebe is holding her guitar ,Phoebe is holding a cup of tea,3,What is Phoebe holding in her hand before she picks up the pink book,125031,Friends,2.26-12.15,friends_s10e04_seg02_clip_07,Phoebe is holding her guitar 2993,Get a surgery done to live,Keep taking her medication,Stop smoking with a baby,Try to get off the drugs,Let the doctors diagnosis her,0,What is Masters trying to convince a patient to do after coming into her room?,125032,House M.D.,82.35-89.02,house_s07e19_seg02_clip_21,Get a surgery done to live 2994,A pencil.,A telephone.,A bagel.,A wine glass.,A pretzel.,1,What was Monica holding in her left hand when she said about stepping up?,125033,Friends,8.96-10.64,friends_s09e23-24_seg02_clip_15,A telephone. 2995,The second picture had a two missiles on it.,The second picture had a cow on it.,The second picture had a funeral service on it.,The second picture had a crying baby on it.,The second picture had a man with his face turned away from view.,4,What was on the second picture Hawke looked at when Beckett presented it?,125034,Castle,43.24-46.42,castle_s06e08_seg02_clip_06,The second picture had a man with his face turned away from view. 2996,Alexis noticed the inmates and guards had no interaction with each other.,Alexis noticed the inmates and guards hardly said a word.,Alexis noticed the inmates and guards seemed to be in a trance.,Alexis noticed the inmates and guards were all about her age.,Alexis noticed the inmates and guards were all healthy looking.,3,What did Alexis notice about all the inmates and guards were when she was told to look for similarities?,125035,Castle,72.79-75.31,castle_s08e03_seg02_clip_16,Alexis noticed the inmates and guards were all about her age. 2997,to bring up the rest of the cups. ,to the store.,to her aparement.,to the bank,to her room. ,0,Where doee pheobe say she is going before joey comes in?,125036,Friends,0-8.26,friends_s05e18_seg02_clip_10,to bring up the rest of the cups. 2998,A horror film.,A paper bag.,A speeding ticket.,A dentist office.,A bad job interview.,1,Where did Winters say Chloe's acting wouldn't get her out of after he laughed? ,125037,Castle,19.61-30.1,castle_s05e06_seg02_clip_24,A paper bag. 2999,Sheldon wanted free lunch.,Sheldon wanted a raise.,Sheldon lost a beat.,Sheldon wanted a meeting with Stephen Hawking,Sheldon wanted a date.,3,Why was Sheldon dressed in the French maid outfit when he was at work?,125038,The Big Bang Theory,18.05-28.01,s05e21_seg02_clip_07,Sheldon wanted a meeting with Stephen Hawking 3000,Ross,Chandler,Monica,Phoebe,Joey,4,Who comes home when Rachel and Phoebe are hanging out in the apartment?,125039,Friends,56.13-59.13,friends_s07e07_seg02_clip_01,Joey 3001,Because Raj was flirting with another woman.,Because Raj has been avoiding her.,Because Raj didn't respond to her texts or phone calls.,Because Raj accidentally insulted her mother.,Because Raj does want to move in with her.,1,Why is Bernadette upset at Raj before she sits down?,125040,The Big Bang Theory,47.58-63.02,s04e14_seg02_clip_15,Because Raj has been avoiding her. 3002,Chandler told the guy to take Rachel.,Chandler told the guy that he needs to leave.,Chandler told the guy that he is not interested.,Chandler told the guy that he just ruined his dream.,Chandler asked the guy what he is doing and then said that he needs to wake up.,4,What did Chandler do after the man who claimed to be Joshua appeared to be interested in him?,125041,Friends,34.47-42.03,friends_s04e14_seg02_clip_19,Chandler asked the guy what he is doing and then said that he needs to wake up. 3003,The duet was sung by Stuart and Raj. ,Sheldon and Amy sang the duet. ,The duet was sung by Raj and Sheldon. ,Penny and Amy sang a duet to Bernadette. ,Penny and Raj sang the duet for Bernadette. ,3,Who sang a duet to Bernadette when she sat on the stage? ,125042,The Big Bang Theory,51.66-60.43,s09e16_seg02_clip_12,Penny and Amy sang a duet to Bernadette. 3004,A waiter,A policeman,A dance,James,Adam,0,Who walked pass House and Nora's table when they were eating. ,125043,House M.D.,43.62-53.86,house_s06e10_seg02_clip_18,A waiter 3005,Rough.,Tough.,Bad.,Depressing.,Hard.,1,What did Penny say breakups can be when she was talking to Sheldon?,125044,The Big Bang Theory,39.89-50.15,s04e03_seg02_clip_09,Tough. 3006,black,grey,White,blue,green,2,"What color is Ryans shirt when Beckett says ""Let's go.""?",125045,Castle,57.66-66.46,castle_s07e01_seg02_clip_18,White 3007,Her hands,A rascal,She used stilts,A cane,Ross,3,What did Anita use to walk when she was alive?,125046,Friends,53.79-58.15,friends_s08e09_seg02_clip_15,A cane 3008,That he should've been with a man,That he's going to get better,That he married the wrong woman,That the world is going to end,That his mother is going to kill him,3,What doesn't the patient say he thinks after his wife confronts him about it?,125047,House M.D.,68.55-89.02,house_s08e08_seg02_clip_09,That the world is going to end 3009,She closes her eyes.,She starts to cry.,She looks away.,She looks at the monitor. ,She pulls a blanket over her face. ,3,What does the female patient do after House turns the monitor towards her?,125048,House M.D.,86.5-91.05,house_s01e19_seg02_clip_20,She looks at the monitor. 3010,He made a phone call.,He kissed a girl.,He sat down.,He texted his wife.,He drank some water.,2,What did Tuab do before he said It's interesting?,125049,House M.D.,33.68-42.55,house_s07e16_seg02_clip_12,He sat down. 3011,He made a phone call.,He opened the door.,He cried.,He sat down.,He closed the door.,4,What did Harris do after he said something about roadkill?,125050,House M.D.,59.54-69.14,house_s06e20_seg02_clip_19,He closed the door. 3012,Dr. Nieman,No one,Tysons lawyer,The DA,Tysons mom,0,Who is waiting for tysons release when beckett walks up beside them?,125051,Castle,0-9.26,castle_s07e14_seg02_clip_22,Dr. Nieman 3013,reading,cleaning,dancing ,playing on the computer,nothing,2,What did House find Dominika doing when he got home?,125052,House M.D.,88.67-119.02,house_s08e13_seg02_clip_26,dancing 3014,Chandler is holding an iron.,Chandler is holding a candle.,Chandler is holding a glass.,Chandler is holding a poster.,Chandler is holding a newspaper.,4,What is Chandler holding when Joey sits down?,125053,Friends,5.09-8.48,friends_s03e01_seg02_clip_01,Chandler is holding a newspaper. 3015,In his bed.,On the couch.,In the bathroom.,In the kitchen.,In the coffee shop.,0,Where was Joey when Rachel came to talk to him?,125054,Friends,40.55-50.6,friends_s08e14_seg02_clip_00,In his bed. 3016,A camera,A file folder,A cell phone,A piece of paper,A business card,1,What does George throw down after Meredith catches him flirting with a nurse?,125055,Grey's Anatomy,36.81-42.79,grey_s03e02_seg02_clip_16,A file folder 3017,Ross.,Tag.,Will.,Joey.,Rachel.,0,Who says it's their sweater when they randomly pick it up from Monica's apartment?,125056,Friends,23.61-30.81,friends_s08e02_seg02_clip_18,Ross. 3018,Vet clinic,Local shelter,The pound,With elderly people,Hospitals ,2,Where does Kathy say she volunteers at when eating dinner?,125057,How I Met You Mother,46.52-49.52,met_s03e08_seg02_clip_04,The pound 3019,mittens,a leather jacket,a rain coat,a ski cap,a red jacket,4,What is Raj wearing when he tells Sheldon he doesn't want to be blinded by a hot spoon?,125058,The Big Bang Theory,32.77-35.16,s04e15_seg01_clip_02,a red jacket 3020,Stacy,Wilson,Cuddy,Foreman,Chase,0,Which doctor is House going to see when they are in their office?,125059,House M.D.,12.4-16.4,house_s02e06_seg02_clip_23,Stacy 3021,House is playing a video game,House is checking the paitent,House is looking at the patient's charts,House is waiting for a nurse,House is not in a patient's room,0,What is House doing when he is sitting in a patient's room?,125060,House M.D.,0-9.22,house_s05e01_seg02_clip_00,House is playing a video game 3022,Sophie was discharged 4 months ago.,Sophie was discharged two weeks ago.,Sophie was discharged 1 month ago.,Sophie was discharged a few hours ago.,Sophie was discharged last week.,4,When was Sophie discharged from the hospital when she was staying there?,125061,Grey's Anatomy,10.01-12.62,grey_s02e14_seg02_clip_02,Sophie was discharged last week. 3023,A rolled up rug,A puppy,A stack of files,A palette of water,A tray of food ,4,What does Castle have in his hand when he walks through the door?,125062,Castle,43.72-51.16,castle_s08e13_seg02_clip_13,A tray of food 3024,Because House has a hatred for tables,Because it is not House's condo,Because House has no money,Because House will just wait for Wilson to buy one,Because House thinks tables are useless,1,Why does House say he won't get a table when talking to Wilson?,125063,House M.D.,10.11-25.73,house_s06e15_seg02_clip_00,Because it is not House's condo 3025,To the left of Beckett facing her and Esposito.,To the left of Ryan facing him and Beckett.,Behind Esposito.,To the left of Castle.,To the right of Castle.,1,Where was Ryan when Esposito was talking about the song James stole.,125064,Castle,0-4.6,castle_s05e07_seg02_clip_11,To the left of Ryan facing him and Beckett. 3026,Luca is pointing a gun.,Luca is pointing a cane.,Luca is pointing his keys.,Luca is pointing a paint brush.,Luca is pointing a machete.,0,What is Luca pointing at Beckett and Castle when talking to them?,125065,Castle,4.58-5.96,castle_s07e10_seg02_clip_22,Luca is pointing a gun. 3027,George was laying sofa.,George was laying on a hospital bed.,George was laying on the ground.,George was laying a a couch.,George was laying on a bench.,4,Where was George laying when Callie approached him?,125066,Grey's Anatomy,28.12-32.65,grey_s03e02_seg02_clip_25,George was laying on a bench. 3028,On the chair,On the bed?,Inside the MRI machine,At the entrance,Beside the window,1,Where was the patient when he talked to the doctors about what he ate?,125067,House M.D.,40.77-43.06,house_s07e17_seg02_clip_09,On the bed? 3029,"Howard said she got to be around him, so that should make her feel at home. ",Howard rudely told her she could get out if she didn't like things the way they were. ,Howard said the fact that she cleaned the house was proof it was part hers. ,Howard said the fact it was in both their names was his gift to her. ,Howard said he put her name on the mailbox. ,2,What did Howard say should make Bernadette feel the house was hers after she asked to redecorate? ,125068,The Big Bang Theory,30.78-45.54,s09e07_seg02_clip_00,Howard said the fact that she cleaned the house was proof it was part hers. 3030,Someone kept opening and closing the door.,Someone was cleaning the window.,Someone left out the door.,Someone came through the door.,Someone was standing in the doorway.,1,What was happening by the door after Foreman agreed that patient may be Jewish? ,125069,House M.D.,19.76-23.35,house_s01e01_seg02_clip_18,Someone was cleaning the window. 3031,A spoon., A whip.,A broom.,A towel.,A finger.,1,What did the mistress touch Esposito with after he asked about shop talk?,125070,Castle,24.34-33.81,castle_s02e16_seg02_clip_18, A whip. 3032,Cleaning the counters.,Drinking margaritas.,Stirring and drinking their instant coffee.,Eating a sandwich quickly.,Drinking glasses of water quickly.,2,What were Chandler and Ross doing in the kitchen when Joey came out of his room?,125071,Friends,23.61-28.04,friends_s02e21_seg02_clip_12,Stirring and drinking their instant coffee. 3033,xray scans,laptop,baby,phone,briefcase,0,What is house holding when he walks into the office?,125072,House M.D.,72.57-81.75,house_s03e05_seg02_clip_12,xray scans 3034,People were staring at him.,It didn't match his outfit.,He was hot.,It hurt his Joey's apple.,He didn't like the color.,3,Why did Joey take off his tie when he was at the party?,125073,Friends,27.74-34.24,friends_s07e14_seg02_clip_03,It hurt his Joey's apple. 3035,He was at the hospital.,He was sitting at his desk.,He was in his car.,He was sitting inside a cell.,He was at his apartment.,3,Where was Castle when Beckett told him that there was no evidence?,125074,Castle,81.8-90.89,castle_s05e05_seg02_clip_16,He was sitting inside a cell. 3036,Ross has on a suit jacket and tie,Ross has on a bathing suit,Ross has on a robe,Ross has on a hat,Ross has on a scarf,0,What does Ross have on when he asks for thin mints?,125075,Friends,6.62-12.92,friends_s06e19_seg02_clip_06,Ross has on a suit jacket and tie 3037,Ross thinks he will loose his job.,The shop got Ross's coffee order wrong.,Ross and Rachel had a fight.,Ross is running late for an appointment.,"Monica, Chandler and Rachel are teasing Ross.",4,Why does Ross get upset before he leaves the coffee shop?,125076,Friends,0-17.71,friends_s03e22_seg02_clip_13,"Monica, Chandler and Rachel are teasing Ross." 3038,Her notes,The computer,The phone,The medical report,The lungs,2,What does Dr Park look at after Foreman leaves?,125077,House M.D.,69.18-78.28,house_s08e02_seg02_clip_24,The phone 3039,A large cake,Monica and Chandler's shoulders,The telephone,Phobe's chest,A bottle of wine,1,What did Joey grab after Monica said it might be kind of cool?,125078,Friends,8.56-18.3,friends_s07e16_seg02_clip_04,Monica and Chandler's shoulders 3040,Bernadette and Penny,Bernadette and Howard,Bernadette and Amy,Raj and Howard,Bernadette and Leslie,3,Who is hanging out with Sheldon and Leonard when they are in the apartment?,125079,The Big Bang Theory,0-5.27,s05e12_seg01_clip_01,Raj and Howard 3041,He was her late mother's best friend and she wanted to meet him.,She had always wanted to meet her long lost brother.,She needed information from him for a report.,She felt he needed to know that Mandy hadn't cheated on him.,She wanted to let him know how she really felt before it was too late.,3,What was Alexis's excuse for tracking down Zach when talking to her dad?,125080,Castle,0-27,castle_s06e13_seg02_clip_26,She felt he needed to know that Mandy hadn't cheated on him. 3042,Because Sheldon was taking a shower.,Because Sheldon was sleeping.,Because Sheldon was not wearing bottoms.,Because Sheldon was working on a project.,Because Sheldon was afraid of Leonard.,2,Why did Penny tell Leonard to not enter Sheldon's room after leaving the room herself?,125081,The Big Bang Theory,12.14-15.18,s02e03_seg02_clip_06,Because Sheldon was not wearing bottoms. 3043,pacing,eating,reading,dancing,sleeping,0,What is Foreman doing when he is talking to the other doctors?,125082,House M.D.,0-9.9,house_s05e04_seg02_clip_12,pacing 3044,Her mask.,Her lipstick.,Her eyeglasses.,Her nose ring.,Her milk mustache.,2,What did Cameron take off her face before she asked do you want to stop?,125083,House M.D.,8.36-14.96,house_s03e16_seg02_clip_10,Her eyeglasses. 3045,Steal.,Fraud.,Embezzlement.,Kill.,Accused Sarah.,2,What did Gloria in North Caroline before being investigated by the detectives.,125084,Castle,51.65-56.14,castle_s03e18_seg02_clip_16,Embezzlement. 3046,From singing.,From screaming.,From coughing to much.,From talking to much.,From singing too loud.,1,How does Chandler say he strained his voice when he's talking to Joey and Ross?,125085,Friends,6.9-10.35,friends_s04e09_seg02_clip_15,From screaming. 3047,Home,dinner,movies,church,school,0,Where does castle want to take mia when he offers to drive her in his ferrari?,125086,Castle,25.26-31.68,castle_s08e05_seg02_clip_05,Home 3048,Penny was helping Sheldon into to the room.,Leonard was helping Sheldon into to the room.,Nobody was helping Sheldon into to the room.,Amy was helping Sheldon into to the room.,Howard was helping Sheldon into to the room.,1,Who was helping Sheldon when he was limping into the room?,125087,The Big Bang Theory,17.71-21.25,s10e09_seg02_clip_06,Leonard was helping Sheldon into to the room. 3049,a stool,a chair,a couch,a bench,hammock,1,Where was Castle sitting when he was talking to Beckett? ,125088,Castle,47.55-63.55,castle_s02e03_seg02_clip_08,a chair 3050,Shouts for Penny.,Runs away.,Goes with Leonard.,Gets up to finish making tea.,Does some equations.,3,What does Sheldon do when he tells Howard he will comfort him?,125089,The Big Bang Theory,43.6-58.13,s04e16_seg02_clip_01,Gets up to finish making tea. 3051,Because Max is overwhelmed by the support his friend is giving him. ,Because Max is unsure how to confess to Marshall that he loves the feel of his embrace.,Because Max wants to get on with his dinner date and the hug is making him late.,Because Max is uncomfortable with the duration of the hug with another man.,Because Max has been keeping track of the duration of the hug on his watch. ,3,"Why does Max say ""It's going on a while"" after the embrace Marshall gives him?",125090,How I Met You Mother,41.25-62.03,met_s06e05_seg02_clip_10,Because Max is uncomfortable with the duration of the hug with another man. 3052,They were making out.,They were dancing.,They were playing a game.,They were eating dinner.,They wer leaving the room.,0,"What were Joey and Rachael doing when Monica, Chandler, and Phoebe had their ears to the wall?",125091,Friends,0.95-4.46,friends_s10e01_seg02_clip_00,They were making out. 3053,Raj calls Howard's mother over.,Raj adjusts Howard's tie.,Raj walks downstairs.,Raj look at the sky.,Raj hugs Amy.,1,What does Raj do before he says Ok?,125092,The Big Bang Theory,6.84-10.55,s05e24_seg02_clip_11,Raj adjusts Howard's tie. 3054,In front of a pizza shop,In his home,At work,Visiting his children at school,In a museum,0,Where is Harley Romero when he is taken into custody?,125093,Castle,38.26-57.62,castle_s03e20_seg02_clip_24,In front of a pizza shop 3055,No one,Penny,Amy,Burnadette,Priya,4,Who was Leonard kissing when he was in the kitchen?,125094,The Big Bang Theory,37.52-41.42,s04e21_seg02_clip_02,Priya 3056,Beckett told the caller to go to a hospital.,Beckett told the caller to go to a coffee shop.,Beckett told the caller come to her office.,Beckett told the caller to go to Michelle's office.,Beckett told the caller to go to a police station.,3,Where did Beckett tell the caller to go when she was on the phone?,125095,Castle,28.91-31.17,castle_s05e10_seg02_clip_03,Beckett told the caller to go to Michelle's office. 3057,A drink.,A sandwich.,His checkbook and a pen.,A kiss.,A chair to sit in. ,2,What does Joey get before Monica asks him not to tell Chandler?,125096,Friends,23.63-26.84,friends_s09e16_seg02_clip_04,His checkbook and a pen. 3058,He doesn't think he knows what the truth is. ,He doesn't think anyone will believe him. ,He only knows how to lie. ,He doesn't know what happened. ,He doesn't trust who is questioning him. ,1,Why doesn't Eddie just tell the truth when he is being questioned?,125097,Castle,11.38-18.21,castle_s03e19_seg02_clip_23,He doesn't think anyone will believe him. 3059,Just for you,You are too kind,Not as sweet as you,Its because I am talking to you,Yes I am,4,What did Ross say when Mona told him he was sweet?,125098,Friends,45.77-50.02,friends_s08e01_seg02_clip_14,Yes I am 3060,"Wilson said that Carnell said he offered to do anything, because he was willing to do anything.",Wilson said that maybe Carnell was offering to help House kill him.,"Wilson said that Carnell didn't mean anything by offering to do ""anything""; he was just being trite.",Wilson said that Carnell offered to do anything because he was wanting a large check.,"Wilson responded by saying, ""Maybe, talk to someone?""",4,"How did Wilson respond when House was asking about Carnell offering to do ""anything""?",125099,House M.D.,37.14-53.45,house_s07e16_seg02_clip_01,"Wilson responded by saying, ""Maybe, talk to someone?""" 3061,Ran to the bathroom.,Ran to get in the time machine.,Ran into the kitchen.,Sat down on the sofa.,Sat down at the desk.,1,What did Raj do after Penny left?,125100,The Big Bang Theory,30.99-36.3,s01e14_seg02_clip_07,Ran to get in the time machine. 3062,Park,Adams,13,Cameron,Cuddy,1,Who calls Chase weird when he's working in the room with the X-Rays images?,125101,House M.D.,0-8.9,house_s08e08_seg02_clip_09,Adams 3063,He picked up a pen.,He closed the door.,He pulled out his gun.,He sat down.,He opened the door.,4,What did Castle do before Mallory said Hello?,125102,Castle,42.25-51.94,castle_s08e18_seg02_clip_12,He opened the door. 3064,Yes.,No.,Maybe,Raj is being controlling,Raj deserves it,0,Is Sheldon being controlling when he works with Raj?,125103,The Big Bang Theory,6.6-60.02,s03e04_seg02_clip_16,Yes. 3065,Castle picks up a newspaper,Castle picks up a piece of paper,Castle picks up a lamp,Castle picks up his wallet,Castle picks up a statue,1,What does Castle pick up after Beckett talks about getting a subpoena for traffic cams?,125104,Castle,40.03-53.38,castle_s03e10_seg02_clip_24,Castle picks up a piece of paper 3066,She crossed her arms.,She danced with Esposito.,She sat on the floor.,She looked out the window.,She handcuffed Castle.,0,What did Beckett do after Ryan said something about a case?,125105,Castle,8.47-12.04,castle_s07e17_seg02_clip_14,She crossed her arms. 3067,Howard stood up and walked out the store.,Howard stood up and walked towards Wil.,Howard turnt around and ignored Wil.,Howard pretended to read a comic book.,Howard stood up and told Wil to leave. ,1,What did Howard do after Wil walked into the store?,125106,The Big Bang Theory,22.41-32.71,s09e11_seg02_clip_06,Howard stood up and walked towards Wil. 3068,Penny walks downstairs. ,Penny walks out of her apartment. ,Penny runs into her apartment. ,Penny carries a box too. ,Penny punches Leonard. ,1,What happens when Leonard is carrying a big box up the stairs?,125107,The Big Bang Theory,40.73-44.57,s02e19_seg02_clip_03,Penny walks out of her apartment. 3069,Sheldon pulls an old photograph off the shelf.,Sheldon pulls a comic book off the shelf.,Sheldon pulls an old t-shirt off the shelf.,Sheldon pulls a golf ball from the shelf.,Sheldon pulls a toy robot out of a box.,3,What does Sheldon pull from the shelf after Amy tells him to take baby steps?,125108,The Big Bang Theory,31.43-54,s09e19_seg02_clip_16,Sheldon pulls a golf ball from the shelf. 3070,George and Meredith were playing cards.,George and Meredith were playing Monopoly.,George and Meredith were playing bingo.,George and Meredith were playing checkers.,George and Meredith were playing chess.,0,What game were George and Meredith playing when they were eating?,125109,Grey's Anatomy,34.13-37.78,grey_s03e06_seg02_clip_13,George and Meredith were playing cards. 3071,I hate Joshua.,"I was with Ross, and we had a lot of fun.",I was with Joshua this morning and he ask to marry him.,I was with Joshua and he kiss me.,"I was with Joshua for an hour today, and he has not ask me out.",4,What said Rachel after she closed the door?,125110,Friends,29.37-35.07,friends_s04e13_seg02_clip_11,"I was with Joshua for an hour today, and he has not ask me out." 3072,zombie maker,sleepy drug,zombie food,zombie drug,zombie meal,3,How did Ryan say users refer to scopolamine after telling Beckett and Castle the side effects of the substance?,125111,Castle,11.79-29.01,castle_s04e22_seg02_clip_19,zombie drug 3073,The carpet.,Books.,The furniture.,Figurines.,The television.,3,What was House looking at after the man let him into the house?,125112,House M.D.,26.11-36.02,house_s08e07_seg02_clip_19,Figurines. 3074,Amy kicks Penny. ,Amy punches Penny. ,Amy hugs Penny. ,Amy hugs Bernadette. ,Amy hugs the table. ,2,What does Amy do after she gets excited?,125113,The Big Bang Theory,16.56-18.4,s05e08_seg02_clip_16,Amy hugs Penny. 3075,Purple,Blue,Red,White,Black,4,"What color is the jacket that Ryan is wearing when he say's ""...but we found...""?",125114,Castle,78.4-88.09,castle_s07e07_seg02_clip_02,Black 3076,Monica wanted ice cream,Monica said she needed to sit down,Monica said she needed a glass of wine,Monica was extremely calm,Monica didn't really care.,1,How did Monica react after she found of Erica was pregnant?,125115,Friends,50.35-61.03,friends_s10e16_seg02_clip_18,Monica said she needed to sit down 3077,Because he has a headache,Because he's busy,Because he is on the phone,Because he is on his way out,Because he is sick to his stomach,0,Why does Wilson tell House to go away when House comes into his office?,125116,House M.D.,76.84-85.12,house_s08e19_seg02_clip_06,Because he has a headache 3078,Because Phoebe saw he had a Green Bay Packers jersey on.,Because Phoebe knew the cute guy and he had a dark side.,Because Phoebe didn't think he was cute at all.,Because Phoebe thought he was far too young to be even close to qualified.,Because it was not professional for her to hire him because of his looks.,4,Why did Phoebe tell Rachel she couldn't hire the cute guy after she looked at his photo?,125117,Friends,39.06-50.18,friends_s07e04_seg02_clip_05,Because it was not professional for her to hire him because of his looks. 3079,a book,a number sign,her hat,a flag,her badge,4,what does beckett put in the air when she is at an auction?,125118,Castle,86.5-92.03,castle_s03e10_seg02_clip_24,her badge 3080,A briefcase,A knife,A camera,A model,A bunny,2,What does Mr.Monroe have in his hands when he was interviewed by Castle and Beckett?,125119,Castle,69.91-75.95,castle_s02e03_seg02_clip_11,A camera 3081,Castle said it was a crazy stalker.,Castle said it was a random killing.,Castle said it was something from Odette's life.,Castle said it was a horrible accident.,Castle said it was just bad luck.,2,What did Castle say got Barbra killed after he and Beckett talked to Jason?,125120,Castle,59.25-65.88,castle_s04e18_seg02_clip_18,Castle said it was something from Odette's life. 3082,Sits down at the table and eats lunch. ,Sings and dances with Cameron. ,"Hugs Chase, Cameron, and Foreman. ",Rips up the carpet with a stain on it. ,Gets a water bottle out of the refrigerator. ,4,"What does House do after he walks in the room with Chase, Cameron, and Foreman? ",125121,House M.D.,21.17-44.63,house_s03e01_seg02_clip_02,Gets a water bottle out of the refrigerator. 3083,Ross said the balls were in the way.,Ross said the food was in the way.,Ross said the cups were in the way.,Ross said the lamp was in the way.,Ross said his shirt was in the way.,0,What did Ross say was in the way when he was on the table?,125122,Friends,46.92-57.07,friends_s03e06_seg02_clip_19,Ross said the balls were in the way. 3084,A used retainer,A piece of hair,Burned teeth,A threatening letter,A tube of lipstick,3,What piece of evidence is key to Castle when talking to the other detective?,125123,Castle,22.06-28.81,castle_s02e05_seg02_clip_20,A threatening letter 3085,not a team player,a backstabber,a brut,a star worker,his best asset,0,What did Rachel's boss accuse her of when her caught her?,125124,Friends,9.74-11.51,friends_s10e14_seg02_clip_07,not a team player 3086,Alexis was wearing her favorite jeans.,Alexis was talking to her boyfriend.,Alexis stole her purse.,Alexis dented her car door.,She had been abducted.,4,Why was Sara upset when she was standing over Alexis? ,125125,Castle,39.6-61.44,castle_s05e15_seg02_clip_17,She had been abducted. 3087,Mr. A turned to Monica.,Mr. A turned to Rachel.,Mr. A turned to Joey.,Mr. A turned to Chandler.,Mr. A turned to Ross.,2,"Who did Mr. A turn and ask a question to after Phoebe admitted she found his ""request"" funny? (Note: This might have been this cutest clip I've watched for mTurk.)",125126,Friends,40.02-63.03,friends_s02e11_seg02_clip_11,Mr. A turned to Joey. 3088,make a cake,have a party,have a dinner,play his game,work on his math,3,What did Sheldon want to do when Sunday came?,125127,The Big Bang Theory,40.32-61.56,s03e07_seg01_clip_00,play his game 3089,He goes to work out on Wednesday night,Wednesday nights are wrestling nights,He has Hamburgers on Wednesday night,Wednesday Nights are ladies nights at cheetah's ,He goes to his mother house on Wednesday nights,3,Why did House say he was pleased after Cuddy mentioned to him an offered time and day?,125128,House M.D.,54.8-64.34,house_s04e13_seg02_clip_06,Wednesday Nights are ladies nights at cheetah's 3090,The bar,The bathroom,The living room,The kitchen,Out the front door,2,Where does Raj go after asking for a computer with a webcam?,125129,The Big Bang Theory,35.1-39.37,s01e08_seg02_clip_05,The living room 3091,Wilson said he cheated on Sam.,Wilson said he worked two jobs.,Wilson said he filled out job applications.,Wilson said he filed for divorce.,Wilson said he took trips to foreign countries.,1,What did Wilson say he did after Sam said they did not have a conversation in months?,125130,House M.D.,51.19-53.41,house_s06e18_seg02_clip_13,Wilson said he worked two jobs. 3092,That he wasn't feeling well.,That he was going to take the afternoon off so he could work on another experiment with Penny.,That he was finished with their work.,That he thought Leonard would do fine without him.,That he had a doctor's appointment. ,1,What did Dave say he was going to do after Leonard said they should get back to the lab?,125131,The Big Bang Theory,9.12-26.99,s02e11_seg02_clip_09,That he was going to take the afternoon off so he could work on another experiment with Penny. 3093,Because he felt something in the bed move and wanted to see what was there,Because something from that direction woke him up,Because he wanted to turn off his alarm clock. ,Because he expected there to be a woman there from the night before,Because he almost rolled off the bed and was trying to recover ,3,Why did Dr. House look to his left when he woke up?,125132,House M.D.,8.31-12.93,house_s05e24_seg02_clip_00,Because he expected there to be a woman there from the night before 3094,To clear Brandon's arteries ready for the surgery.,To place sensors that will give information they need for the surgery.,To place a Hickman line into Brandon for drugs to be administered to him during surgery.,To remove an obstruction that will block access to the surgery site.,To place a marker needed for precision during the surgery.,1,Why is Brandon having the procedure done before he has surgery?,125133,House M.D.,6.11-10.81,house_s01e03_seg02_clip_21,To place sensors that will give information they need for the surgery. 3095,She had a tiara on.,She had on a bathing suit.,She had a hat on.,She had a scarf on.,She had a robe on.,2,What did Emma have on when she was sitting in the stroller?,125134,Friends,19.83-23.8,friends_s10e08_seg02_clip_08,She had a hat on. 3096,asks someone to answer,hangs it up,ignores it,He answers,walks out,3,What does Esposito do after Becket makes a call?,125135,Castle,24.58-28.89,castle_s06e17_seg02_clip_10,He answers 3097,Carnell responded without seeming to not have a second thought. He delightfully told House that wouldn't be a problem and would cancel the morning maid service.,Carnell told House he couldn't do that in this room.,Carnell asked House to wait until his shift was over so he wouldn't have to be a witness.,Carnell asked Wilson if he already knew of House's plans.,Carnell told House he was going to call the police.,0,How did Carnell respond after House sarcastically told him that he was planning to slit Wilson't throat and disembowel Wilson in the bathtub after they have sex?,125136,House M.D.,0-10.42,house_s07e16_seg02_clip_01,Carnell responded without seeming to not have a second thought. He delightfully told House that wouldn't be a problem and would cancel the morning maid service. 3098,Hands it to Chase,Looks in it,Puts it in his pocket,Carries it with him,Places it on the counter behind him,4,What does Chase do with the chart after the Woman hands it to him?,125137,House M.D.,0-5.34,house_s02e09_seg02_clip_14,Places it on the counter behind him 3099,Craig ,Chase,House,Foreman,Cameron,4,Who suggests primary HIV infection when they are discussing diagnosis? ,125138,House M.D.,0-24.39,house_s03e23_seg02_clip_14,Cameron 3100,Chanler was tlaking to Joey,Chanler was talking to Monica,Chanler was talking to Ross,Chanler was talking to Rachel,Chanler was talking to Pheobe,1,Who was Chanler talking to after he picked up the bird statue?,125139,Friends,5.27-7.13,friends_s08e10_seg02_clip_06,Chanler was talking to Monica 3101,In front of the hospital's emergency entrance. ,The x-ray lab. ,Outside the hospital cafeteria.,"The hospital walkway, between units. ",At the nurse's station. ,3,"Where are Burke and Patricia when Patricia says,""Harvest team's on their way in?""",125140,Grey's Anatomy,42.31-45.91,grey_s02e02_seg02_clip_08,"The hospital walkway, between units. " 3102,Joey suggested to play Wii.,Joey suggested to play soccer.,Joey suggested to play basketball.,Joey suggested to play chess.,Joey suggested to play the boxer gay.,4,What suggested Joey when talking to a black guy?,125141,Friends,6.49-12.69,friends_s03e07_seg02_clip_16,Joey suggested to play the boxer gay. 3103,In the viewing room watching an operation,In the movies,In the office,In a cafe,In the car,0,Where are House and Cuddy when talking about their relationship?,125142,House M.D.,4.13-13.2,house_s07e03_seg02_clip_25,In the viewing room watching an operation 3104,Castle is holding him hostage,He's holding Castle hostage,Castle and him want to chat downstairs,Castle is threatening him,There is a fire,1,Why does Coonan want to go to the elevators after arriving at the station,125143,Castle,0-64.39,castle_s02e13_seg02_clip_24,He's holding Castle hostage 3105,In their dorms.,In their backpacks.,In their cars.,In their boyfriends cars.,Under a false bottom inside their lockers.,4,Where did Principal Dunan say he found the jewelry when Beckett brought in the two girls from the dance?,125144,Castle,80.3-85.47,castle_s06e15_seg02_clip_23,Under a false bottom inside their lockers. 3106,He was in preschool. ,He was elementary school age. ,He was high school age. ,He was junior high age. ,He was in college. ,3,What age was Howard when he started to do magic?,125145,The Big Bang Theory,46.45-49.79,s06e08_seg02_clip_07,He was junior high age. 3107,The day her dad died how her mom lifted her up.,The day her mom died how her dad lifter her up.,The day her sister died how her brother lifted her up.,The day her dad died how brother mom lifted her up.,The day her brother died how her mom lifted her up.,1,What does Beckett tell Castle about when she tells her story?,125146,Castle,34.05-78.68,castle_s05e03_seg02_clip_26,The day her mom died how her dad lifter her up. 3108,Insult them,Smother them,Act clingy,Find a tiny flaw,Ridicule them,3,What does Wilson say House does when he wants to push people away?,125147,House M.D.,11-23.51,house_s01e19_seg02_clip_17,Find a tiny flaw 3109,a costume,a bathing suit,a dress suit,Pajamas,a scarf,3,What is Wilson wearing when he discusses getting House a mattress delivered?,125148,House M.D.,0-19.12,house_s06e05_seg02_clip_01,Pajamas 3110,In the shower.,In the courtyard.,In the bathroom.,In bed.,In the hall.,3,Where was the cellmate when House was asking him to to thank him?,125149,House M.D.,0-8.16,house_s08e01_seg02_clip_15,In bed. 3111,"1,000 dollers",200 dollers,"5,000 dollers",1 million dollers,20 dollers,2,What was the price Joey was asking for the entertainment center after chandler said he was crazy?,125150,Friends,27.31-60.03,friends_s04e02_seg02_clip_03,"5,000 dollers" 3112,she wants it to be perfrect,she doesn't want to have this moment captured.,she needs to fix her make up,she is not ready,she needs to find ross. ,1,why does monica turn and yell at the photographer after pheobe says she is pregnant?,125151,Friends,16.25-23.81,friends_s08e01_seg02_clip_01,she doesn't want to have this moment captured. 3113,Wrapped a scarf around her neck.,Wrapped a scarf around her head.,Put on her coat.,Put her keys in her purse.,Grabbed a bottle of wine.,2,What did Castle's mother do before she told him and Beckett not to wait up?,125152,Castle,74.23-80.54,castle_s07e16_seg02_clip_26,Put on her coat. 3114,He put on his jacket,He hugged Lily,He high Fived Barney,He drank a beer,He kissed Zoey,4,What did Ted do after he told Marshall he had to go?,125153,How I Met You Mother,39.72-49.01,met_s06e15_seg02_clip_18,He kissed Zoey 3115,Drug Store.,Convenience Store.,Shoe store.,Jewelry store.,Sandwich Shop.,3,What kind of store sign did Miss X walk under before Alvie said he had a birth certificate?,125154,House M.D.,50.45-55.8,house_s06e20_seg02_clip_03,Jewelry store. 3116,"Castle is holding a water bottle, not coffee.",Castle is holding 3 cups of coffee.,Castle is holding 4 cups of coffee.,Castle is holding 1 cup of coffee.,Castle is holding 2 cups of coffee.,4,How many cups of coffee is Castle holding when he enters the trailer?,125155,Castle,45.13-49.83,castle_s05e07_seg02_clip_00,Castle is holding 2 cups of coffee. 3117,Because Stuart realizes he and Howard are no longer friends. ,Because Howard keeps insulting Stuart.,Because Howard won't Stuart in the apartment.,Because Stuart wants to apologize to Bernadette but Howard won't let him.,Because Stuart and Howard cannot come to an agreement about Stuart living with Howard's mother.,4,Why does Stuart decide to leave after talking to Howard?,125156,The Big Bang Theory,35.56-61.31,s08e01_seg02_clip_15,Because Stuart and Howard cannot come to an agreement about Stuart living with Howard's mother. 3118,anyone who would listen ,Marshel,the bartender,a patron,Robin,4,Who did Lilly choose to vent to when she was at the bar,125157,How I Met You Mother,30.59-61.18,met_s03e08_seg02_clip_11,Robin 3119,a chair,a music stand,a jar with money,a box,a guitar case,4,What does Phoebe have sitting in front of her when Monica goes to grab Phoebe?,125158,Friends,15.67-17.56,friends_s09e19_seg02_clip_17,a guitar case 3120,Bailey starts screaming. ,Bailey goes in the room to help.,Bailey starts to cry.,Bailey calls security.,Bailey leaves the viewing area with her baby.,4,What does Bailey do when she sees that Derek is going to die?,125159,Grey's Anatomy,0-79.92,grey_s02e18_seg02_clip_18,Bailey leaves the viewing area with her baby. 3121,"Bernadette, Howard, Priya, and Sheldon. ","Bernadette, Howard, Priya, and Amy. ","Bernadette, Howard, Priya, and Leslie. ","Bernadette, Howard, Priya, and Raj. ","Bernadette, Howard, Priya, and Howard's mom. ",3,Who is playing Jenga when they're in the apartment?,125160,The Big Bang Theory,15.94-16.82,s04e22_seg02_clip_10,"Bernadette, Howard, Priya, and Raj. " 3122,Beckett was ready to admit she loved Castle. ,Beckett was surer than ever as to Hastings' guilt. ,Beckett realized she hated being a cop. ,Beckett no longer believed Hastings was the killer. ,Beckett's appetite was ruined by the conversation with Hastings. ,3,What had changed for Beckett after she spoke to Hastings? ,125161,Castle,64.03-73.63,castle_s04e02_seg02_clip_23,Beckett no longer believed Hastings was the killer. 3123,Because Nick has menengitis.,Because Nick has an auto-immune disease.,Because Nick is so young.,Because Nick has Neuro Blastoma.,Because Nick has Leukemia.,4,Why is everyone afraid Nick will die if they follow House's suggest to try when everyone is trying to get answers to why Matty is ill?,125162,House M.D.,49.11-54.47,house_s03e21_seg02_clip_18,Because Nick has Leukemia. 3124,Everhardt said the patient is sick,Everhardt said the patient is having fun,Everhardt said the patient starting vomiting,Everhardt said the patient is fun,Everhardt did not say anything,2,What did Everhardt say about the patient when rushed into the hospital?,125163,House M.D.,11.75-18.07,house_s01e15_seg02_clip_06,Everhardt said the patient starting vomiting 3125,He went to the bathroom.,He left the apartment.,He went to the kitchen.,He slapped Sheldon.,He kicked Sheldon.,1,What did Raj do before Sheldon opened his eyes?,125164,The Big Bang Theory,44.22-54.08,s03e18_seg02_clip_08,He left the apartment. 3126,A standard hardware.,A high-end import hardware.,A lavish import hardware.,An expensive import hardward.,A high-tech hardware.,1,What kind of hardware does Ryan say is on the Delgado's door when he discussing it with Esposito and Montgomery?,125165,Castle,29.38-33.77,castle_s01e07_seg02_clip_05,A high-end import hardware. 3127,Jumps down from above,Runs outside,Swims across the pool,Leaps through the air,Walks up the stairs,4,How does Castle get to talk to Alexis after talking to Becker?,125166,Castle,29.42-33.62,castle_s02e04_seg02_clip_11,Walks up the stairs 3128,Spud's McKenzie,Mr. Potato Head,"Remember the Russian satellite, Sputnik?""",A baked potato.,Super Potato Man,2,"What does Ross say after Monica asks, ""What are you suppose to be?""",125167,Friends,16.53-21.54,friends_s08e06_seg02_clip_04,"Remember the Russian satellite, Sputnik?""" 3129,Chloe implied that Sara had been stealing from the Petersons,Chloe implied Ms. Peterson was a lesbian,Chloe implied the Petersons had an open relationship,Chloe implied the Petersons were smuggling drugs,Chloe implied Mr. Peterson was having an affair,4,Why was Chloe nervous after Beckett mentioned she talked to the Petersons?,125168,Castle,17.9-30.75,castle_s01e02_seg02_clip_12,Chloe implied Mr. Peterson was having an affair 3130,Angela's parents reported it at 9 o'clock.,Angela's parents reported it at midnight.,Angela's parents reported it at 6 p.m.,Angela's parents reported it at 8:00 a.m in the morning.,Angela's parents reported it at noon.,3,What time did Angela's parents report that she was missing after they noticed she was gone?,125169,Castle,4.01-6.69,castle_s01e09_seg02_clip_01,Angela's parents reported it at 8:00 a.m in the morning. 3131,oil stains,Hydraulic fluid,water,paint,his clothes was clean,1,What did Ryan said they had identified on Ted clothes when he was debriefing Beckett? ,125170,Castle,0-17.59,castle_s06e12_seg02_clip_04,Hydraulic fluid 3132,Rachel,Joey,Her mother,The wedding planner,Ross,0,Who sides with Monica when she has a dispute with Chandler?,125171,Friends,0-7.57,friends_s07e02_seg02_clip_14,Rachel 3133,Bernadette,Howard's mom,Amy,Sheldon's mom,Leslie,1,Who is there to take Howard home after he is at Leonard and Sheldon's for 2 days?,125172,The Big Bang Theory,23.91-46.2,s05e19_seg02_clip_16,Howard's mom 3134,A cellphone ,A disk ,A diskette,A battrey,A remote controller ,4,What did Chandler pick after he said we have to turn off the porn?,125173,Friends,46.83-54.59,friends_s08e19_seg02_clip_04,A remote controller 3135,Robin hugs Marshall.,Robin hugs Lily.,Robin dances with Barney.,Robin sits on the table.,Robin gestures with her hand and turns back to look at Ted.,4,What does Robin do before she says Barney's fault?,125174,How I Met You Mother,3.63-7.27,met_s02e15_seg02_clip_01,Robin gestures with her hand and turns back to look at Ted. 3136,Punch the man,Talk calmly to the man,Flip the table,Storms out,Cries,2,What does Beckett do when she is in the interrogation?,125175,Castle,17.48-23.01,castle_s05e14_seg02_clip_16,Flip the table 3137,A lantern.,A fire.,A flashlight.,Candles.,A lamp.,3,What is lit on the headboard when Chandler is massaging Monica?,125176,Friends,0-10.25,friends_s05e13_seg01_clip_00,Candles. 3138,She is wearing a bob.,She is wearing a bun.,She is wearing pony tails.,She is wearing a pixie cut. ,She is wearing a French twist. ,2,"What sort of hairdo is on the red-headed nurse located behind Cameron when House says,""...You can get back to your shift at the ER,?""",125177,House M.D.,33.02-40.47,house_s05e21_seg02_clip_04,She is wearing pony tails. 3139,He grabbed a beer bottle ,He drank a shot.,He danced around.,He unbutton his jacket.,He spit the lime wedge out of his mouth.,4,What did Barney do before saying hot damn?,125178,How I Met You Mother,10.35-14.19,met_s03e12_seg02_clip_08,He spit the lime wedge out of his mouth. 3140,santa claus,a zombie,a groom,a secret agent,a doctor,1,how is castle dressed when he is with beckett and kyle at the precinct?,125179,Castle,0-9.66,castle_s04e22_seg02_clip_25,a zombie 3141,I hope it's good.,Bottoms up.,Here's to nothing.,Thank you.,To the metric system.,4,What does Sheldon say before he takes a drink?,125180,The Big Bang Theory,34.81-49.82,s04e07_seg02_clip_14,To the metric system. 3142,The doctors family with a cake,The doctor with new info,The wife of the patient,The doctors manager and coworker ,The parents of the patient,4,Who walks into the room before the doctor is able to answer the patients question?,125181,House M.D.,47.09-66.9,house_s01e03_seg02_clip_06,The parents of the patient 3143,A pink headband,A ball cap,A tiara,A bag,A Mohawk,2,What is Amy wearing on her head when Sheldon gives his speech? ,125182,The Big Bang Theory,40.31-49.59,s05e24_seg02_clip_14,A tiara 3144,He gagged,Yumm.,Looks good.,Sounds delicious.,Let's dig in.,0,What did Ross say about the food after Monica told him what it was? ,125183,Friends,9.85-28.31,friends_s10e16_seg02_clip_04,He gagged 3145,Beckett suspects James was making payoffs.,Beckett suspects Jordan was making payoffs.,Beckett suspects Jeff was making payoffs.,Beckett suspects Dan was making payoffs.,Beckett suspects John was making payoffs.,2,Who does Beckett suspect was making payoff through the campaign when talking to Nesbit?,125184,Castle,45.46-52.66,castle_s01e03_seg02_clip_16,Beckett suspects Jeff was making payoffs. 3146,6,4,2,8,10,2,How many weeks did Beckett say Castle had left when he tried to scratch his foot?,125185,Castle,0-8.19,castle_s05e19_seg02_clip_00,2 3147,Raj,Penny,Sheldon,Leanord,Bernedette,3,Who is Zack standing next to when he asks Penny if she is dying?,125186,The Big Bang Theory,7.63-14.34,s07e09_seg02_clip_13,Leanord 3148,It was a set that belonged to calderons grandparents,It was a set that belonged to Calderons parents,It was calderons sisters,It was calderons best friends set,It had no significance ,1,What did calderon say was significant about the necklace and the bracelet when castle and beckett said it looked familiar?,125187,Castle,63.24-71.03,castle_s03e05_seg02_clip_22,It was a set that belonged to Calderons parents 3149,She is bleeding,She is drugged,She is shot,She was stabbed,She was unconscious,0,Why is Kate dragging herself along the wall before she collapses?,125188,Castle,0-6.66,castle_s06e22_seg02_clip_20,She is bleeding 3150,Excited,Upset,Sad,Happy,Thrilled,1,How does Phoebe react to Chandler when he says she should move in with Gary?,125189,Friends,2.97-21.62,friends_s05e21_seg02_clip_07,Upset 3151,Turned off the lamp.,Went to sleep.,Got out of bed.,Called him a name.,Pulled the covers over her head.,0,What did Penny do after she told Sheldon to go home?,125190,The Big Bang Theory,20.8-23.32,s06e02_seg02_clip_10,Turned off the lamp. 3152,Zach says that her manager Marilyn got her into drugs.,Zach says the he got her into drugs but is sorry about it.,Zach says that her best friend got her into drugs.,"Zach says that her ex-boyfriend, Jesse Jones, got her into drugs.",Zach says that Beckett got her into drugs.,3,Who does Zach say got Mandy into drugs when Ryan and Esposito show him the picture?,125191,Castle,72.47-90.02,castle_s06e13_seg02_clip_03,"Zach says that her ex-boyfriend, Jesse Jones, got her into drugs." 3153,To get some coffee,For an opinion on her hair,To say goodmorning,For an opinion on her shoes,To watch television,3,Why does Rachel come into the living room when Chandler and Ross are sitting there?,125192,Friends,4.96-15.82,friends_s03e12_seg01_clip_00,For an opinion on her shoes 3154,She gives him a hug. ,She spills something on him. ,She shakes his hand. ,She gives him a kiss. ,She hands him a drink. ,2,What does Rachel do after a man sitting at a table acknowledges she is there?,125193,Friends,14.35-18.56,friends_s10e14_seg02_clip_03,She shakes his hand. 3155,Foreman needs to talk with all the doctors about to end their shift to discuss how they should interact with House.,Foreman needs to take a shower because he's been at the hospital nonstop for four days babysitting House.,Foreman wants to revisit a room where he feels at home because his new job is taking its toll.,Foreman is exercising his prerogative as Dean of Medicine to inspect any and all rooms in the hospital.,Foreman thought he saw House enter the locker area and wants to make sure House is not abusing medication again.,1,Why is Foreman using the regular doctor's locker room after Chase asks him why he's up here when he has his own office and bathroom?,125194,House M.D.,39.45-53.94,house_s08e05_seg02_clip_25,Foreman needs to take a shower because he's been at the hospital nonstop for four days babysitting House. 3156,A suture removal,A dissection of a boil,A needle aspiration ,A MRI of the abdomen,A X-ray of the bottom region,2,What procedure is the patient told will be performed before Bailey explain other possibilities,125195,Grey's Anatomy,0-9.07,grey_s02e10_seg02_clip_08,A needle aspiration 3157,Glass.,Bricks.,Wooden pillars.,Carts.,Metal.,1,What was mainly lying around everywhere when Emily and Ross walked into the building?,125196,Friends,37.99-60.47,friends_s04e23-24_seg02_clip_04,Bricks. 3158,A chest.,A jukebox.,A safe.,A crawlspace.,A storage unit. ,1,What is the hidden key shown to be for after Castle asks?,125197,Castle,21.99-35.46,castle_s03e11_seg02_clip_11,A jukebox. 3159,Lanie,Oprah's assistant,Ryan,Lars,A detective,1,Who was calling Castle's phone when the detectives were heading out?,125198,Castle,64.61-73.58,castle_s08e17_seg02_clip_02,Oprah's assistant 3160,Joey,Tag,Ross,Chandler,Monica,1,Who is Rachel talking to on the patio when they are at monicas?,125199,Friends,0-3.41,friends_s07e08_seg02_clip_10,Tag 3161,"Phoebe tries to get Ross, Chandler and Joey to help.","Rachel tries to get Ross, Chandler and Joey to help.","Monica tries to get Ross, Chandler and Joey to help.","Janice tries to get Ross, Chandler and Joey to help.","Julie tries to get Ross, Chandler and Joey to help.",0,"Who tries to get Ross, Chandler and Joey to help with the Thanksgiving meal prep when they are watching football?",125200,Friends,5.95-12.96,friends_s03e09_seg01_clip_00,"Phoebe tries to get Ross, Chandler and Joey to help." 3162,hurt,sad,happy,bored,irritated,2,How did Sheldon feel when he fooled his friends?,125201,The Big Bang Theory,20.41-34.01,s03e03_seg02_clip_02,happy 3163,The three dweebs,The three musketeers ,The three nerds,The three outsiders,The three losers,4,What nickname does the older Phoebe say they had when she is talking about being friends with Lily and Frank?,125202,Friends,45.88-57.11,friends_s03e25_seg02_clip_04,The three losers 3164,Wilson is watching the surgery,Foreman is watching the surgery,Chase is watching the surgery,House is watching the surgery,Cuddy is watching the surgery,3,Who is watching the surgery from above the operating room when the surgery is going on?,125203,House M.D.,9.86-23.76,house_s03e13_seg02_clip_18,House is watching the surgery 3165,Leaves.,Kisses her.,Picks up the mic.,Hugs her.,Sits down.,1,What does Castle do after he tells Becket not to worry?,125204,Castle,42.27-52.44,castle_s05e08_seg02_clip_18,Kisses her. 3166,High heels.,Flats.,Penny loafers.,Dress shoes.,Running shoes.,0,What Style of shoes is Cuddy wearing when she was standing by Valerie?,125205,House M.D.,46.57-58.55,house_s06e11_seg02_clip_16,High heels. 3167,I am working tonight,I was winning this argument. ,It's easy to blame someone else,Where do you think you are going,This is my last point,1,What did Wilson say before House left the room?,125206,House M.D.,20.25-23.47,house_s06e19_seg02_clip_22,I was winning this argument. 3168,His friend Tommy had it.,They found it on his body.,They found it in a nearby dumpster.,It was found in Rebeca's apartment trash bin.,It was with Sam's lawyer.,3,Where was the divorce paperwork found after Sam's murder?,125207,Castle,26.51-60.79,castle_s04e08_seg02_clip_25,It was found in Rebeca's apartment trash bin. 3169,"A boy, laughing, on the swing.",Rachel.,Chandler.,Emma.,A mother pushing her son on the swing. ,0,"Who, besides himself, does Ross blame for situation earlier after Rachel says Emma will never swing again?",125208,Friends,11.46-23.99,friends_s10e07_seg02_clip_12,"A boy, laughing, on the swing." 3170,She sticks her fork into her food and puts it into her mouth.,She taps him on the shoulder.,She puts pepper on his food.,She takes his desert.,She rushes a piece of cake into her mouth.,0,What does Christine do after George ask her why is she yelling at him and replies it is the estrogen?,125209,Grey's Anatomy,4.04-8.97,grey_s02e02_seg02_clip_12,She sticks her fork into her food and puts it into her mouth. 3171,He sets down a pencil.,He sets down a plate.,He sets down a mug.,He sets down an envelope.,He sets down a napkin.,2,What does Chandler set down on the table when he sits next to Monica?,125210,Friends,24.24-28.51,friends_s07e18_seg02_clip_08,He sets down a mug. 3172,All babies find him comforting.,She like the smell of him.,She like the way he rocked her.,She felt safe with him.,She liked the sound of his voice.,4,Why did House say the reason may have been that the baby wasn't fussy when he was holding her?,125211,House M.D.,4.5-7.65,house_s08e06_seg02_clip_06,She liked the sound of his voice. 3173,Reading,Starting a fire,Cooking,Pouring champagne,Talking on the phone,3,What was Castle doing when Beckett came to his apartment?,125212,Castle,57.61-65.3,castle_s08e10_seg02_clip_26,Pouring champagne 3174,Bernadette is sitting across the table from Dave.,Stuart is sitting across the table from Dave.,Priya is sitting across the table from Dave.,Sheldon is sitting across the table from Dave.,Amy is sitting across the table from Dave.,4,Who is sitting across the table from Dave when he is eating dinner?,125213,The Big Bang Theory,0-9.41,s09e10_seg02_clip_11,Amy is sitting across the table from Dave. 3175,Bernadette.,Penny.,Amy.,Howard.,Stuart.,3,Who writes on the whiteboard when Raj is looking at?,125214,The Big Bang Theory,0-46.83,s10e13_seg02_clip_08,Howard. 3176,Beckett pulls off a flower.,Beckett pulls off a name tag.,Beckett pulls off a button.,Beckett pulls off a badge.,Beckett pulls off a patch.,3,What does Beckett pull off the victim's chest after finding him?,125215,Castle,20.71-24.76,castle_s03e07_seg02_clip_01,Beckett pulls off a badge. 3177,Watch him after hours,Keep him from dying,Protect him from others,Have sex with him,Be friends with him,3,What did the scientific explanation Masters gave indicate she wanted to do after seeing the very blessed male patient?,125216,House M.D.,41.66-54.51,house_s07e16_seg02_clip_12,Have sex with him 3178,His shirt is White,His shirt is black,There is no waitress who walks infront,The shirt color was grey,The waitresses shirt is blue,0,What color is the shirt of the waitress who walks in front of Barney when he and Lily walks into the resturant?,125217,How I Met You Mother,39.92-45.75,met_s04e01_seg02_clip_09,His shirt is White 3179,Platelets are too low,Red count too high,Red count too low,White count too high,White count too low ,0,Why does Foreman say they can't biopsy the patient's liver when discussing treatment with Cuddy in the conference room?,125218,House M.D.,61.44-67.36,house_s03e17_seg02_clip_15,Platelets are too low 3180,Monica said Joey agreed to Ross,Monica said she agreed to Ross.,Monica said Phoebe agreed to Ross.,Monica said no one agreed to Ross.,Monica said Chandler agreed to Ross.,0,Who did Monica say agreed to Ross when she was talking to Rachel.,125219,Friends,9.45-13.88,friends_s03e17_seg02_clip_16,Monica said Joey agreed to Ross 3181,Amy is moving out.,Howard is moving out.,Leonard is moving out.,Penny is moving out.,Raj is moving out.,2,Who is moving out of Sheldon's apartment when he is still living there?,125220,The Big Bang Theory,11.2-24.01,s06e15_seg02_clip_06,Leonard is moving out. 3182,Cameron said the girls were 17.,Cameron said the girls were about 16.,Cameron said the girls were 14,Cameron said the girls were 15.,Cameron said the girls were 12.,1,How old did Cameron say two girls were when she asked Keener if he saw them last night?,125221,House M.D.,1.78-3.56,house_s06e06_seg02_clip_09,Cameron said the girls were about 16. 3183,chocolates,flowers,hug,handshake,kiss,4,What did Amy receive from her date that caused Sheldon to turn around and leave when he witnessed it?,125222,The Big Bang Theory,51.17-61.07,s09e08_seg01_clip_00,kiss 3184,A club.,A bar.,A restaurant.,At home.,A jail. ,0,Where does Fulton say he was at when Logan was murdered?,125223,Castle,20.26-25.66,castle_s06e21_seg02_clip_22,A club. 3185,He shakes Beckett's hand.,He takes off running.,He pulls out a gun.,He sits down at a table.,He jumps over the bar counter.,1,What does Seth do after Beckett shows him her badge?,125224,Castle,66.72-76.38,castle_s04e04_seg02_clip_07,He takes off running. 3186,On the steering wheel. ,On the car seat.,Around Mrs.Latham's shoulder.,On Mrs.Latham's right hand.,In his lap.,4,Where was Leonard's hands after he said Mrs. Latham is an attractive woman? ,125225,The Big Bang Theory,41.82-44.72,s04e15_seg02_clip_13,In his lap. 3187,The duck needs the company.,He is too attached now that the chick has a name,He knew Joey would miss it,The shelter doesn't take chicks,He doesn't want the chick to get killed when they can't find a home for it,4,Why doesn't Chandler take the chick to the animal shelter when he is talking to Joey?,125226,Friends,21.65-45.47,friends_s03e21_seg02_clip_16,He doesn't want the chick to get killed when they can't find a home for it 3188,Monica's hair was in pigtails.,Monica's hair was in a ponytail.,Monica's hair was in a french braid.,Monica's hair was down.,Monica's hair was in a bun.,3,How was Monica's hair done when she was sitting on the couch?,125227,Friends,26.91-48.81,friends_s01e18_seg02_clip_00,Monica's hair was down. 3189,juice,phone,keys,paper,mug,3,What was Castle holding before he started talking?,125228,Castle,0-9.02,castle_s08e07_seg02_clip_09,paper 3190,Because Driscoll started having a seizure.,Because Driscoll's monitors showed his heart had stopped.,Because Driscoll went unconscious.,Because Foreman found out Driscoll's heart rate was 170.,Because Driscoll stopped breathing.,3,Why did Foreman say to get the crash cart after he checked Driscoll's heart rate?,125229,House M.D.,47.78-60.17,house_s07e10_seg02_clip_07,Because Foreman found out Driscoll's heart rate was 170. 3191,A shirt,A brush,A pillow,A tissue,A cookie,3,What did Rachel do after Ross left the room?,125230,Friends,1.98-11.89,friends_s03e21_seg02_clip_15,A tissue 3192,For her not to be have a decrease in salary,For her not to be transferred,For her to not be suspended,For her to not get fired,For her not to switch departments,3,What did Park ask the other doctors when she was sitting down?,125231,House M.D.,18.92-37.84,house_s08e04_seg02_clip_20,For her to not get fired 3193,A cup of coffee,The door,A beer,A cup of tea,Jokingly an extra key,0,What does Lucas offer House before House stands up?,125232,House M.D.,79.92-94.03,house_s06e08_seg02_clip_11,A cup of coffee 3194,Ross is eating.,Ross is drinking.,Ross is talking on the phone.,Ross is putting ice on his face.,Ross is talking to Joshua.,1,What is Ross doing before Rachel opens the door?,125233,Friends,23.02-33.05,friends_s04e16_seg02_clip_18,Ross is drinking. 3195,She walked away.,She told him Kim was wrong about him.,She called the police.,She ran past him into his house.,She screamed at him to shut up and listen.,1,What does Alexis do when Lyle says they need to stay off his property?,125234,Castle,0-4.63,castle_s06e07_seg02_clip_12,She told him Kim was wrong about him. 3196,A broken piece of glass.,A knife.,A wooden spike.,Nothing was in her back.,An Ax.,4,"What does the victim have in her back when Castle, Beckett and Esposito get to the crime scene?",125235,Castle,45.58-55.35,castle_s03e18_seg02_clip_01,An Ax. 3197,Chandler was speaking to Adam,Chandler was speaking to Pete,Chandler was speaking to Brent,Chandler was speaking to Zack,Chandler was speaking to Liam,3,Who did Chandler speak to after he came into the office,125236,Friends,54.14-62.34,friends_s09e22_seg02_clip_21,Chandler was speaking to Zack 3198,By saying that she was known to make out with her students. ,By saying the librarian was very attractive. ,By saying he was in love with her at the time. ,By saying the librarian didn't look 50. ,By saying he was young and stupid. ,3,How does Ross try to justify making out with the 50 year old school librarian after Chandler jumps into the discussion?,125237,Friends,55.07-64.03,friends_s08e09_seg02_clip_14,By saying the librarian didn't look 50. 3199,Raj's drink is white,Raj's drink is green,Raj's drink is brown,Raj's drink is clear,Raj's drink is purple,1,What color was Raj's drink when he is with Leonard,125238,The Big Bang Theory,43.81-58.02,s02e21_seg02_clip_06,Raj's drink is green 3200,Hamburger joint,French,Japanese steakhouse,Cafe,Pizza,2,What type of restaurant were Ross and Carol at when Carol was telling Ross to move on? ,125239,Friends,12.92-21.12,friends_s01e14_seg02_clip_21,Japanese steakhouse 3201,Can't you harass someone else?,Good times...,I was trying to sleep...,Can't you show one milligram of tact?,"Oh great, my favorite psychopath...",1,What did Wilson say when he opened the door after House asked him if he wanted to come watch?,125240,House M.D.,17.1-21.61,house_s04e03_seg02_clip_17,Good times... 3202,When they get drunk,When they share clients,When they feel like it,When they come over for dinner,When they visit the doctor,1,What does the Misstress say is the only time when her colleagues share info?,125241,Castle,37.87-44.63,castle_s02e16_seg02_clip_18,When they share clients 3203,He took a walk down the street,He got a ride to the store,He was abducted by someone,He got abducted by aliens ,He got arrested by the police ,2,Where did Henry go after he was standing outside on camera?,125242,Castle,37.9-46.82,castle_s07e17_seg02_clip_14,He was abducted by someone 3204,Pointed at a door,Fell to the ground,Dropped his drink,Got arrested,Took off his jacket,0,What did Barney do before Jerry asked about what he had just ripped out of the ground?,125243,How I Met You Mother,40.46-45.63,met_s06e21_seg02_clip_09,Pointed at a door 3205,Sheldon and Amy are at the movies,Sheldon and Amy are at the grocery store,Sheldon and Amy are at the library,Sheldon and Amy are in the hallway,Sheldon and Amy are in a book store,3,Where is Sheldon and Amy when she wants him to be quiet,125244,The Big Bang Theory,0-6.1,s10e09_seg02_clip_01,Sheldon and Amy are in the hallway 3206,Mrs Geller's House.,At the cemetary.,At Monica's house.,At Nana's apartment.,At a restaurant. ,0,Where is Monica and her mom when they are talking about Nana?,125245,Friends,0-3.52,friends_s01e08_seg02_clip_18,Mrs Geller's House. 3207,George,Meredith,Karev,A patient.,Addison,1,Who did Izzie see after she opened the curtain?,125246,Grey's Anatomy,22.73-71.68,grey_s02e06_seg02_clip_03,Meredith 3208,Rachel said it was a traditional Italian dessert.,Rachel said it was a traditional Iranian dessert.,Rachel said it was a traditional German dessert.,Rachel said it was a traditional Turkish dessert.,Rachel said it was a traditional Peruvian dessert.,3,What did Rachel say when he asked her what kind of dessert it was?,125247,Friends,0-4.2,friends_s02e22_seg02_clip_02,Rachel said it was a traditional Turkish dessert. 3209,Because Lilly has growth hormone deficiencies in her family.,Because their apartment is heavily slanted.,Because Lilly has a history of uneven growth patterns.,Because Lilly is so short compared to Marshall.,Because Lilly wants her kids to have one leg stronger than the other.,1,Why does Lilly say that her kids will grow up slanted when she is talking to Marshall?,125248,How I Met You Mother,9.75-13.29,met_s03e12_seg02_clip_11,Because their apartment is heavily slanted. 3210,A concert. ,A person. ,A television show. ,A meeting. ,A life event. ,3,What does Troy say helped turn his life around when he is being questioned by Beckett?,125249,Castle,0-2.71,castle_s03e04_seg02_clip_17,A meeting. 3211,Keep thinking happy thoughts,Keep calm,Keep swallowing,Keep looking at the clock,Keep looking at me,2,What does the doctor tell the patient to keep doing before starting the exam even if she uncomfortable?,125250,House M.D.,29.59-39.6,house_s04e02_seg02_clip_09,Keep swallowing 3212,Beckett thought Sorenson was in Milwaukee.,Beckett thought Sorenson was in Washington.,Beckett thought Sorenson was in Alaska.,Beckett thought Sorenson was in prison.,Beckett thought Sorenson was in Boston.,4,Where did Beckett think Sorenson was after she heard Montgomery mention him?,125251,Castle,33.9-36.13,castle_s01e09_seg02_clip_01,Beckett thought Sorenson was in Boston. 3213,A model of the city,A gallon of milk,Newspaper everywhere,Two red mugs and papers,Donuts,3,What is on the table when Robin asks the news man to do something later?,125252,How I Met You Mother,17.7-21.36,met_s03e11_seg02_clip_04,Two red mugs and papers 3214,"I don't know, maybe it was the local quinine.",He had too much to drink.,He had food poisoning.,He was coming down with the flu. ,He was very upset for being treated like a child.,0,What did Penny say after Raj's mom asked what was wrong with him?,125253,The Big Bang Theory,20.84-27.35,s02e04_seg02_clip_15,"I don't know, maybe it was the local quinine." 3215,Beckett asked Agent Napier to drop his ID,Beckett asked Agent Napier to drop his hands,Beckett asked Agent Napier to drop his gun,Beckett asked Agent Napier to drop his attitude,Beckett asked Agent Napier to drop his pettyness,3,What did Beckett ask Agent Napier to drop when she is talking to him?,125254,Castle,53.33-61.53,castle_s08e13_seg02_clip_16,Beckett asked Agent Napier to drop his attitude 3216,time travel,computers,Harvard,Princeton,bowling,0,What does Sheldon say he's been thinking about lately when he talks to Leonard?,125255,The Big Bang Theory,0-55.94,s01e04_seg01_clip_00,time travel 3217,Overly apreciative,Overly contemptous,Overly assertive,Passively aggressive ,Over regarding ,1,How is House's attitude toward hospital hierarchy according Cuddy when reading is performance review?,125256,House M.D.,14.11-20.34,house_s04e13_seg02_clip_06,Overly contemptous 3218,Izzy,Cristina,Meredith,Burke,Chief,2,Who said diagnosis was bone cancer when Derek asked about he patient?,125257,Grey's Anatomy,69.63-94.09,grey_s02e25_seg02_clip_00,Meredith 3219,A bonsai tree,An vase of assorted flowers,A potted fern,A potted pear tree,A cactus,2,What kind of plant is sitting outside of Professor Lewis' apartment when Barney is in the hallway talking with her?,125258,How I Met You Mother,21.6-24.27,met_s02e06_seg02_clip_15,A potted fern 3220,She got coffee,She washed her hands,She opened the fridge,She preheated the oven,She answered the phone,0,What did Penny do after she walked into the kitchen?,125259,The Big Bang Theory,5.89-18.92,s07e20_seg02_clip_00,She got coffee 3221,Eat chocolate,Leave the room,Sit down,Make a cup of coffee,Offer to wipe the table herself,4,What did Monica do after Mrs. Geller started wiping the table?,125260,Friends,26.11-32.11,friends_s02e16_seg02_clip_03,Offer to wipe the table herself 3222,He pulled out his gun.,He untied Anatoly.,He removed the gag from Anatoly's mouth.,He handcuffed Anatoly.,He called for police back-up. ,2,What did Castle do before Anatoly started to talk?,125261,Castle,23.59-28.93,castle_s08e11_seg02_clip_17,He removed the gag from Anatoly's mouth. 3223,Clapped,Kissed,Shook ,Rubbed,Smelled,4,What did Phoebe do to Joey's hands after he told her no? ,125262,Friends,9.57-19.15,friends_s05e11_seg02_clip_06,Smelled 3224,A cup of coffee. ,A folder. ,A bottle of water. ,A pen. ,A salad. ,1,What does Chandler's assistant have in her hand when she walks into his office?,125263,Friends,60.19-63.03,friends_s09e09_seg01_clip_00,A folder. 3225,Carol says that Marty is still paranoid.,Carol says that Susan is still paranoid.,Carol says that Lily is still paranoid.,Carol says that Marshall is still paranoid.,Carol says that Susan is still paranoid.,0,Who does Carol say is still paranoid when talking to Ross?,125264,Friends,41.8-47.3,friends_s01e02_seg02_clip_01,Carol says that Marty is still paranoid. 3226,cup,plate,fork,phone,coat,0,What was Castle holding after he started talking?,125265,Castle,0-7.93,castle_s02e07_seg02_clip_22,cup 3227,Because Rachel was just so happy.,Because Rachel was reliving putting her slippers on the wrong feet.,Because Rachel was afraid she was a terrible mother.,Because Rachel didn't know what else to do.,Because Rachel didn't want them to leave.,1,Why did Rachel start crying again after she had stopped?,125266,Friends,43.89-54.42,friends_s08e23-24_seg02_clip_35,Because Rachel was reliving putting her slippers on the wrong feet. 3228,House removed a small brown dinosaur from the child's nose.,House removed a small green army man from the child's nose.,House removed a small red fire engine from the child's nose.,House removed a small blue marble from the child's nose.,House removed a small yellow sports car from the child's nose.,2,What did House remove when he inserted the forceps into the child's nose?,125267,House M.D.,42.52-52.28,house_s01e15_seg02_clip_18,House removed a small red fire engine from the child's nose. 3229,Becca,The baby,Cuddy,Foreman,House,0,Who has a problem with their heart after the machines start beeping?,125268,House M.D.,37.93-48.32,house_s05e06_seg02_clip_12,Becca 3230,Eva,Cole,The mistress,No one,The assistant,0,Who does castle think is responsible for staging the murder when explaining the details to beckett?,125269,Castle,45.43-56.78,castle_s07e13_seg02_clip_15,Eva 3231,She thought it would make him happy.,She was so proud of their engagement and couldn't keep it to herself.,She had to come to terms with some lack of privacy due to his fame.,She wanted to surprise him.,To make it easier to announce to their family and friends.,2,Why did Beckett say she told the news people about her engagement to Castle when talking to him?,125270,Castle,84.39-135.02,castle_s06e13_seg02_clip_26,She had to come to terms with some lack of privacy due to his fame. 3232,There was a bottle of beer.,There was nothing on the stand.,There was a computer.,There was a glass of water.,There was a paper on a stand in front of Penny.,4,What was on a stand in front of Penny when she was standing in front of the boys?,125271,The Big Bang Theory,12.6-14.85,s01e13_seg02_clip_03,There was a paper on a stand in front of Penny. 3233,Rachel said he got a job at the circus,Rachel said he got a job at Medieval Times,Rachel said he got a job on a riverboat,Rachel said he got a job at the construction site,Rachel said he got a job at the police station,2,Where did Rachel say Ross was employed when she saw his suit,125272,Friends,10.68-22.28,friends_s03e21_seg02_clip_03,Rachel said he got a job on a riverboat 3234,She sat on a chair.,She pulled out her papers.,She looked in her purse.,She took the phone from Castle.,She sat on a desk.,3,What did Emma do before she walked away?,125273,Castle,25.08-28.72,castle_s06e04_seg02_clip_10,She took the phone from Castle. 3235,Alex.,Derek.,Meredith.,George.,Nurse.,2,Who is walking next to a patient when a nurse is pushing him?,125274,Grey's Anatomy,51.19-55.19,grey_s02e02_seg02_clip_12,Meredith. 3236,Joey is talking to Phoebe,Rachel is talking to Phoebe,Roy is talking to Phoebe,Chandler is talking to Phoebe,Ross is talking to Phoebe,2,Who is talking to Phoebe when they tell her that she cringed?,125275,Friends,0-1.6,friends_s10e11_seg02_clip_12,Roy is talking to Phoebe 3237,It went great.,He lives on the street.,I'm getting married.,We didn't have it.,She dumped me.,1,Where does Ross say when Phoebe asks him about the conversation?,125276,Friends,26.98-32.88,friends_s08e11_seg02_clip_15,He lives on the street. 3238,Barber,Shower,Steam room,Bookstore,Bar,2,Where was Chandler going after they had finished playing?,125277,Friends,22.73-29.77,friends_s07e03_seg02_clip_07,Steam room 3239,He was signing papers.,He was crying.,He was looking out the window.,He was putting papers in his briefcase.,He was leaving the room.,0,What was Roy doing when Chase looked at his pager?,125278,House M.D.,60.32-63.47,house_s06e04_seg02_clip_07,He was signing papers. 3240,Kyle feels guilty.,Kyle feels hatred.,Kyle feels mad.,Kyle feels confused.,Kyle feels relieved and grateful.,4,How does Kyle feel after Beckett tells him that the DA is looking into dismissing charges against him?,125279,Castle,4.6-16.56,castle_s04e22_seg02_clip_25,Kyle feels relieved and grateful. 3241,Burgers,Pizza,Mexican,Chinese,Wings,3,What type of food were Robin and Lily eating when Ted was fixing his hair in the mirror? ,125280,How I Met You Mother,52.93-60.15,met_s03e11_seg01_clip_02,Chinese 3242,Dude!,Bro!,Man!,Barney!,What!,0,What did Ted say to Barney after the first two girls they flirted with left?,125281,How I Met You Mother,24.5-60.5,met_s03e10_seg02_clip_08,Dude! 3243,Said to leave them alone.,Asked her to help them.,Told her they were busy.,Let go of the machine.,Kept working. ,3,What did Leonard and Sheldon do after Penny came out of her apartment?,125282,The Big Bang Theory,39.64-44.05,s01e14_seg02_clip_01,Let go of the machine. 3244,Robin,Ted,Hannah,Barney,Nicholas,0,Who does Lily think is judging her for lying to Marshall when she doesn't tell him the truth about the apartment?,125283,How I Met You Mother,54.17-60.19,met_s03e07_seg02_clip_03,Robin 3245,Talking on the phone,Sifting through papers,Drinking a cup of water,Sitting down in chair,Blowing on the glass,4,What is House doing when Scott asks how sick his son would get?,125284,House M.D.,8.27-13.06,house_s03e21_seg02_clip_02,Blowing on the glass 3246,The loud fart noise outside there apartment.,Chandler doesn't want Ross playing bagpipes at there wedding.and he called the cops.,Two way conversations only.,No parking tickets.,Why is he getting an gay marriage licence?,1,Why is Chandler getting angry after talking to Ross?,125285,Friends,0-7.99,friends_s07e15_seg02_clip_12,Chandler doesn't want Ross playing bagpipes at there wedding.and he called the cops. 3247,George holds the foot,George holds the brain.,George holds the intestine.,George holds the heart.,George holds the hand.,2,"What is holding George after saying, i got another one?",125286,Grey's Anatomy,80.59-82.81,grey_s02e02_seg02_clip_12,George holds the intestine. 3248,Sheldon,Women,Leonard,A new scarf,Nice guys,4,Who does Penny want to go out with when she's done with men like Mike?,125287,The Big Bang Theory,0-41.49,s01e17_seg02_clip_07,Nice guys 3249,That he will escape to Mexico,That he will turn himself in,That he will rob another bank,That he will go through with the crime,That he wants full immunity,3,What does the suspect ultimately decide when talking on the phone with Beckett?,125288,Castle,39.14-48.7,castle_s04e07_seg02_clip_02,That he will go through with the crime 3250,He stands up and walks away.,He puts his feet up on the coffee table.,He laughs at Ross.,He claps his hands.,He jumps up and down. ,1,What does Chandler do after he explains to Monica how the whole Dr. Monkey thing came up?,125289,Friends,21.27-26.51,friends_s06e12_seg02_clip_14,He puts his feet up on the coffee table. 3251,Bracken agrees that the deal is now with Beckett and not Smith. ,Bracken agrees to release the number. ,Bracken agrees to kill Beckett's family. ,Bracken agrees to have dinner with Beckett. ,Bracken agrees to take the file and go home. ,0,Why does Bracken agree to after Beckett tells him she will release the number? ,125290,Castle,57.43-81.47,castle_s05e01_seg02_clip_25,Bracken agrees that the deal is now with Beckett and not Smith. 3252,a coffee mug,a newspaper,her jacket,a brownie,a candle,0,what does phoebe pick up when talking to joey on the couch at the coffee house?,125291,Friends,29.77-39.06,friends_s10e09_seg02_clip_06,a coffee mug 3253,"Chandler said no, I will give you tomorrow.",Chandler said yes.,"Chandler said no, I did this morning.","Chandler said, of course.","Chandler said no, I did not due them.",4,What happen when Doug asked for the numbers to Chandler?,125292,Friends,47.04-50.47,friends_s03e24_seg02_clip_12,"Chandler said no, I did not due them." 3254,She has a date,She has to work,She has a job interview,Her sister is visiting ,Her mother is visiting,0,Why can't Rachel hangout with her friends when Phoebe ask what her plans are for the night?,125293,Friends,18.37-27.82,friends_s02e10_seg02_clip_05,She has a date 3255,Wood shavings are found in the lock mechanism.,Brass shavings are found in the lock mechanism.,Metal shavings are found in the door.,Nickel shavings are found in the lock mechanism.,Brass shavings are found in front of the door.,1,What did Montgomery tell Esposito was found at the Delgado's place when forensics came back?,125294,Castle,13.16-19.3,castle_s01e07_seg02_clip_05,Brass shavings are found in the lock mechanism. 3256,Sheldon is holding a glass.,Sheldon is holding his cell phone.,Sheldon is holding a book on marriage.,Sheldon is holding a hamburger.,Sheldon is holding a napkin.,1,What is Sheldon holding when Leonard is talking about the test?,125295,The Big Bang Theory,6.44-12.04,s08e03_seg02_clip_13,Sheldon is holding his cell phone. 3257,Chandler,Rachel,Monica,Joey,Phoebe,4,Who is hiding Joey's candy bar after he asks for it?,125296,Friends,17.88-28.89,friends_s07e01_seg02_clip_01,Phoebe 3258,They kept her there.,The ICU.,The psych ward.,Her room.,The OR.,4,Where did the patient get rushed too after Chase and House examined the stomach by video?,125297,House M.D.,17.75-27.31,house_s02e08_seg02_clip_09,The OR. 3259,They are with Bernadette and Howard. ,They are with Emily and Raj. ,They are with Sheldon and Amy. ,They are with Raj and Lucy. ,They are with Amy and Bernadette. ,2,Who is Penny and Leonard with when they are out to dinner?,125298,The Big Bang Theory,0-26.05,s08e03_seg02_clip_13,They are with Sheldon and Amy. 3260,Sheldon.,Raj.,Leonard.,Howard.,Bernadette.,1,Who did Penny tell to talk to her after she walked through the door?,125299,The Big Bang Theory,0-7.67,s03e09_seg02_clip_03,Raj. 3261,Being in a book club,Going out on dates,Braiding each other's hair and debate who is the coolest Jonas brother.,Being gay lovers,Being in a boy band,2,What did Beckett accuse Esposito of after seeing him looking at a book with another?,125300,Castle,0-5.17,castle_s02e12_seg02_clip_14,Braiding each other's hair and debate who is the coolest Jonas brother. 3262,Have you seen my phone?,Is he alive?,Has he been hit?,Where's your ring?,Is he dead?,4,What does Martha ask Beckett when she Beckett walks in the room?,125301,Castle,5.05-21.57,castle_s07e22_seg02_clip_00,Is he dead? 3263,hand,shirt,tissue,paper,tounge,0,What did Sheldon wipe the white board with when Raj took the eraser?,125302,The Big Bang Theory,12.61-22.21,s03e04_seg02_clip_16,hand 3264,In her hands,On the counter,On the table,Her fiancee is holding them,Se hands them to RObin,1,Where does Lily have her bouquet when talking to the woman in the marriage chapel?,125303,How I Met You Mother,0-4.85,met_s02e08_seg02_clip_07,On the counter 3265,Time,Cosmopolitanism ,NY Journal,polular science,DIY today ,1,What magazine was Castle reading when he was talking to Beckett?,125304,Castle,40.23-57.15,castle_s02e03_seg02_clip_08,Cosmopolitanism 3266,The seat beside House,Standing in the isle,The seat in front of House,The back of the plane ,The seat behind House,2,Where was the girl that asked if someone was sick when Cuddy and House were talking about the sick passenger? ,125305,House M.D.,50.09-55.1,house_s03e18_seg02_clip_04,The seat in front of House 3267,Drinks. ,Drinks and baskets of food. ,Food. ,Empty glasses. ,Glasses of water. ,1,What is on the table when they talk about the Gerards? ,125306,How I Met You Mother,27.02-49.74,met_s03e11_seg01_clip_03,Drinks and baskets of food. 3268,Dr. Burke needs her immediately but she is not available.,Christina tells him he doesn't know what he is doing.,Christina does not follow any order that Dr. Burke gives her.,"She tells him she has done what she needs to do, and to stop worrying.",Dr. Burke's conversation is interrupted by another doctor.,3,Why does Dr. Burke get upset when he is talking to Christina?,125307,Grey's Anatomy,0.88-10.6,grey_s03e06_seg02_clip_07,"She tells him she has done what she needs to do, and to stop worrying." 3269,An evidence bag ,A briefcase,A newspaper ,A comic book,A file,4,What is Beckett looking at when discussing the suspect,125308,Castle,8.4-17.69,castle_s03e13_seg02_clip_06,A file 3270,On its own,With the drops,With the medicine ,After a few day,By staying with him,0,How does House tell the patient that it will come out after talking about dying?,125309,House M.D.,27.29-46.65,house_s01e03_seg02_clip_22,On its own 3271,He was at home.,At her desk.,In the chair.,On a red couch.,On a bench in the corner.,2,Where was Castle sitting when Beckett came out of the office?,125310,Castle,4.23-6.76,castle_s06e09_seg02_clip_25,In the chair. 3272,to the kitchen,to the bathroom,on the balcony,over to the sofa ,into the closet ,0,Where does House go when he walks into Wilson's apartment?,125311,House M.D.,73.66-86.16,house_s05e21_seg02_clip_10,to the kitchen 3273,Sheldon said to have a drink.,Sheldon said Penny to forget Leonard.,Sheldon said that Leonard tormented Penny.,Sheldon said Penny to search another boyfriend.,Sheldon said Penny to stop crying.,2,What said Sheldon after Penny said that miss Leonard?,125312,The Big Bang Theory,6.71-61.02,s07e01_seg02_clip_11,Sheldon said that Leonard tormented Penny. 3274,She was crying.,She was angry.,She shaked her head.,She was disgusted.,She ran away.,2,How did Cuddy react when Wilson asked something about being right?,125313,House M.D.,8.33-18.01,house_s03e01_seg02_clip_26,She shaked her head. 3275,Flipping through/reading a comic book.,Getting himself a drink.,He's in the bathroom.,Listening to headphones.,Writing in a notepad.,0,What is Leonard doing when everyone else is talking to Sheldon?,125314,The Big Bang Theory,0-8.87,s03e18_seg02_clip_04,Flipping through/reading a comic book. 3276,Cameron says she waited for House to clean it. ,Cameron says she tried to clean it herself. ,Cameron says she asked Cuddy to change the carpet. ,Cameron says she had Chase try to clean it. ,Cameron says she had not noticed it. ,2,How does Cameron react after House sees the stain on the carpet? ,125315,House M.D.,72.24-87.42,house_s03e01_seg02_clip_02,Cameron says she asked Cuddy to change the carpet. 3277,making lunch ,cooking breakfast,cleaning the kitchen,washing dishes,Martha was spring cleaning,4,What was Martha doing in the kitchen when Castle walked in?,125316,Castle,27.7-92.32,castle_s03e18_seg02_clip_00,Martha was spring cleaning 3278,They are in Amy's apartment. ,They are in Leonard and Sheldon's apartment. ,They are in Bernadette's apartment. ,They are in Penny's apartment. ,They are in Raj's apartment. ,1,Where are Amy and Sheldon when they are having this discussion?,125317,The Big Bang Theory,6.12-37.51,s07e04_seg01_clip_01,They are in Leonard and Sheldon's apartment. 3279,A dead body,A register ,A chair,A fan,A crate,0,What is on the side of Lanie when Esposito steps into the room,125318,Castle,57.1-66.76,castle_s07e19_seg02_clip_03,A dead body 3280,House found the extra breast on her shoulder.,House found the extra breast on her back.,House found the extra breast on her stomach.,House found the extra breast behind her knee.,House found the extra breast on her thigh.,3,Where did House find an extra breast when he was examining Maggie?,125319,House M.D.,96.11-100.77,house_s04e10_seg02_clip_24,House found the extra breast behind her knee. 3281,Bark like a dog,Jump,Twist and Shout,Speak,A hand trick,4,What does Raj ask Sheldon to do when they fight?,125320,The Big Bang Theory,0-36.91,s03e04_seg02_clip_16,A hand trick 3282,laughing,crying,eating,reading,drinking,1,What was the girl doing before she started talking?,125321,Castle,0-8.21,castle_s02e15_seg02_clip_23,crying 3283,Complicated.,Sexy.,Smart.,Confusing.,Computer.,4,What kind of talk did Monica mention when she was talking to Chandler?,125322,Friends,0-6.09,friends_s08e12_seg02_clip_10,Computer. 3284,"Yes, Howard tells Leonard to look inside a black case.","No, Howard tells Leonard to go shopping.","Yes, Howard tells Leonard to go into the closet.","Yes, Howard tells Leonard to go to the front desk.","No, Howard tells Leonard he does not have any aftershave.",0,Does Howard confirm that he has aftershave after Leonard makes the inquiry?,125323,The Big Bang Theory,10.5-17.71,s02e21_seg02_clip_04,"Yes, Howard tells Leonard to look inside a black case." 3285,Are you going to eat the rest of that? ,Are you still eating tuna?,Are you coming out of the closet?,Are you saying I am fat?,Are you breaking up with us?,4,What does Rachel say after Joey says he wants to talk about our situation?,125324,Friends,10.86-22.64,friends_s08e14_seg02_clip_15,Are you breaking up with us? 3286,Ross kisses Rachel.,Ross pushes Susan out the door.,Ross rolls his head and sneers in frustration.,Ross dances with Susan.,Ross proposes to Rachel.,2,What does Ross do before Susan tells him to get on his back?,125325,Friends,10.36-12.89,friends_s01e16-17_seg02_clip_08,Ross rolls his head and sneers in frustration. 3287,Toilet flooding,Gas Leak,Roof leak,Mold,Broken fridge,1,What is the handyman searching for when he is in the apartment?,125326,Friends,0-6.01,friends_s08e03_seg02_clip_10,Gas Leak 3288,She says where are you going,She asks Who are you?,She says talk a walk,I cant believe Bernadette lets you wear a dickie,She says he is creepy,3,What does Penney say to Howard after he enters the room?,125327,The Big Bang Theory,26.67-62.02,s04e15_seg02_clip_00,I cant believe Bernadette lets you wear a dickie 3289,Beckett says she needs access to the campaign bank account.,Beckett says she needs access to the campaign computers.,Beckett says she needs access to the campaign ledgers.,Beckett says she needs access to the campaign headquarters.,Beckett says she needs access to the campaign human resource personnel. ,2,What does Beckett tell Nesbit she needs before tracking down the blackmail payments?,125328,Castle,58.97-65.27,castle_s01e03_seg02_clip_16,Beckett says she needs access to the campaign ledgers. 3290,He opens the fridge.,He turns on the tv.,He goes to his bedroom.,He calls someone.,He punches Marshall. ,3,"What does Ted do after he tells Marshall ""it doesn't matter""?",125329,How I Met You Mother,21.26-27.16,met_s06e09_seg02_clip_04,He calls someone. 3291,He worked a double shift,He picked up a banker,He drove to Philadelphia,He didn't show up for work,"A cash deposit for $10,000?",4,What does Beckett say after Ryan says from five days ago?,125330,Castle,46.81-53.56,castle_s03e16_seg02_clip_06,"A cash deposit for $10,000?" 3292,Chandler is worried Bonnie will hear Ross talking about Rachel,Chandler didn't know Bonnie was at the beach house,Bonnie is bald,Bonnie keeps pinching Chandler's behind.,Bonnie is suggesting they go swimming in January.,2,Why does Chandler look shocked when Bonnie comes up from the beach?,125331,Friends,50.55-59.86,friends_s03e25_seg02_clip_19,Bonnie is bald 3293,They were referencing the phone call they had received.,The suspect line up.,"The DVD of ""the ring""",The other detective's work.,A document they were concerning.,2,What were the detectives referencing when talking about the crime?,125332,Castle,2.25-9.9,castle_s05e17_seg02_clip_09,"The DVD of ""the ring""" 3294,He didn't ask the patient to take a nap before surgery.,He didn't ask the patient for her age.,He didn't ask the patient to go to OR first.,He didn't ask the patient one simple question.,He didn't ask the patient who she was.,3,Why was House so frustrated with Chase after the patient was rushed to the OR?,125333,House M.D.,51.88-65.08,house_s02e08_seg02_clip_09,He didn't ask the patient one simple question. 3295,Entertainment room.,Hotel room.,Bedroom.,Home living area.,Cafe.,3,Where are Raj and Howard when they are discussing double dating?,125334,The Big Bang Theory,0-3.78,s07e20_seg02_clip_04,Home living area. 3296,Ross,Racheal,Chandler,Phoebe,Joey,0,Who is holding the picture when the gang is looking at it?,125335,Friends,0-3.84,friends_s07e21_seg02_clip_18,Ross 3297,He stops taping because his throat was dry,He stops taping because he forgot his script,He stops taping because he didn't have a personal flag,He stops taping because Amy yelled cut,He stops taping because Leonard came into the apartment and interrupted him,3,Why does Sheldon stop taping after his friend sits down,125336,The Big Bang Theory,54.83-63.02,s06e07_seg01_clip_00,He stops taping because Amy yelled cut 3298,A milk shake.,A cheese burger,The Blood.,A house.,A puppy.,2,What did Chase say he would get Cameron before he stood up?,125337,House M.D.,34.93-41.24,house_s06e03_seg02_clip_20,The Blood. 3299,She covers her face with a blanket.,She pretends to be asleep.,She gets up.,She cries.,She watches tv.,3,What does the patient do when her parents come to see her?,125338,House M.D.,157.34-165.62,house_s05e08_seg02_clip_24,She cries. 3300,six bucks,ten bucks,five bucks,two bucks,nine bucks,4,How much did House say that a straight flush was worth after everyone else at the table folded?,125339,House M.D.,70.33-79.02,house_s02e19_seg02_clip_17,nine bucks 3301,that Wonder Woman was pretty so put on some lipstick,that Wonder Woman was not blonde put on her wig,that her wrist bands should be gold and not silver,that she need to visualize her invisible plane,that she should get rid of the cape Wonder Woman didn't have one,1,What one thing did Sheldon tell Penny to change about her costume after she shut her door,125340,The Big Bang Theory,49.93-62.02,s04e11_seg02_clip_09,that Wonder Woman was not blonde put on her wig 3302,a day of accounts,a day of surgeries ,a day of inspections,a day of constructions,a day of doctor visits. ,2,what does alan have a full day of before he ushers castle out the door? ,125341,Castle,51.45-62.73,castle_s08e19_seg02_clip_04,a day of inspections 3303,On the table,On the chair,On the shelf,In the bin,In the drawer,0,Where did Costello put the record pad when he got to the seat,125342,House M.D.,27.01-32.41,house_s05e04_seg02_clip_12,On the table 3304,She is holding a pillow.,She is holding a cup.,She is holding a cat.,She is not holding anything.,She is holding a magazine.,4,What is Monica holding in her lap when she is talking to Phoebe?,125343,Friends,0-3.14,friends_s07e18_seg02_clip_08,She is holding a magazine. 3305,Dixie cups ,A recording machine,He had someone next to Cole,One of Cole's associates was wearing a wire,Castle put a bug under the table,1,How was Castle listening when Cole was having a meeting?,125344,Castle,6.61-16.75,castle_s07e13_seg02_clip_02,A recording machine 3306,A customer,Monica,A woman and her boyfriend,The bartender,Rachel,4,Who is sitting behind Ross when he is asking what kind of gift a kid would like?,125345,Friends,0-1.86,friends_s03e10_seg02_clip_01,Rachel 3307,Her purse. ,"A hammer, a mask, and gloves. ",A water bottle. ,Her coat. ,Food. ,1,What is Rachel holding when she walks into the hallway to join Ross?,125346,Friends,6.09-10.15,friends_s05e16_seg02_clip_14,"A hammer, a mask, and gloves. " 3308,A string of pearls,Blue stone and diamond earrings,A silver bracelet,Blue stone pendant on a chain,A handkerchief ,1,What did Martha give to Beckett before Beckett gave her a hug?,125347,Castle,34.93-40.37,castle_s06e23_seg02_clip_26,Blue stone and diamond earrings 3309,Running down the hall.,Putting supplies in his backpack from the cabinet.,Swinging on a swingset.,Climbing the stairs.,Sitting at his desk looking at his computer,1,What is House doing when he is on the cell phone?,125348,House M.D.,12.48-17.77,house_s07e05_seg02_clip_22,Putting supplies in his backpack from the cabinet. 3310,Puts his hand out in front of him and Beckett,Drops a phone on the floor,Takes a picture of the fight,Covers his face with his hands,Moves back out of the way,0,What does Castle do after Beckett says to break it up?,125349,Castle,83.56-89.37,castle_s02e09_seg02_clip_04,Puts his hand out in front of him and Beckett 3311,Chandler's,Rachel's,Joey's,Phoebe's,Monica's,4,Who's hand was Ross holding when he came into the coffee shop?,125350,Friends,5.32-9.24,friends_s03e01_seg02_clip_08,Monica's 3312,Mrs. Green yells at Monica,Mrs. Green runs outside,Mrs. Green jumps up and down,Mrs. Green pours some drink,Mrs. Green lights a match,3,What does Mrs. Green do when she is talking to Rachel about the nanny for the baby?,125351,Friends,33.92-46.82,friends_s08e20_seg02_clip_03,Mrs. Green pours some drink 3313,Rick jumps off the building.,Rick runs away.,Rick smokes a cigarette.,Rick gets fast food.,Rick plays frisbee.,2,What does Rick do after he's allowed to step outside of the hospital?,125352,Grey's Anatomy,56.58-59.7,grey_s02e14_seg02_clip_13,Rick smokes a cigarette. 3314,She says they are the story of her life,She says they are children's dream sequences,She says they are reality in costume,She says they are pretty little stories laced with monsters,She says they are pretty much horror stories,4,What does Beckett say fairy tales are when she is talking to Castle and Esposito?,125353,Castle,6.25-8.04,castle_s04e17_seg02_clip_02,She says they are pretty much horror stories 3315,Robin kisses Barney.,Robin walks away from Ted.,Robin hugs Marshall.,Robin plays chess with Lily.,Robin puts her arm around Ted's shoulders.,4,What does Robin do after Ted says it was kind of Barney's fault?,125354,How I Met You Mother,6.66-8.78,met_s02e15_seg02_clip_01,Robin puts her arm around Ted's shoulders. 3316,Wash your hands.,"Caution, safety glasses required.",Keep quiet.,Do not operate the machinery.,Do not touch.,1,What sign is visible when Howard asks Raj for a superhero pose?,125355,The Big Bang Theory,15.09-28.7,s06e14_seg02_clip_10,"Caution, safety glasses required." 3317,Martha comes up to Beckett to discuss Castle.,Castle approaches Beckett.,Lanie comes up to Beckett.,Montgomery walks up to Beckett.,Esposito walks up to Beckett.,4,Who walks up after Beckett discusses an alibi?,125356,Castle,0-4.95,castle_s04e13_seg02_clip_03,Esposito walks up to Beckett. 3318,He convinces Leonard to go shopping. ,He convinces Leonard to break in. ,He convinces Leonard to let him drive. ,He convinces Leonard to drive up to the gate and push the button. ,He convinces Leonard to go to the beach. ,3,What does Sheldon convince Leonard to do when they are at the house?,125357,The Big Bang Theory,15.61-59.72,s08e19_seg02_clip_07,He convinces Leonard to drive up to the gate and push the button. 3319,Ross starts sweeping the coffee shop floor.,Ross props the broom against the counter.,Ross lays the broom on the floor.,Ross puts the broom away behind the bar.,Ross sits down next to Rachel while holding the broom.,0,What does Ross do after Rachel hands him the broom?,125358,Friends,3.48-11.61,friends_s01e02_seg02_clip_12,Ross starts sweeping the coffee shop floor. 3320,Requests a second opinion.,Starts to scream.,Calls her mom.,Drinks water.,Starts crying.,3,What brown haired patient does after House leaves?,125359,House M.D.,58.71-71,house_s03e16_seg02_clip_11,Drinks water. 3321,She picks up a gun.,She picks up her coffee mug.,She picks up a piece of garbage.,She picks up her cell phone.,She picks up handcuffs.,3,What does Beckett Pick up after reading the report?,125360,Castle,20.26-30.61,castle_s02e16_seg02_clip_16,She picks up her cell phone. 3322,green,blue,red,white,black,2,what color coat was beckett wearing when talking,125361,Castle,34.37-43.19,castle_s03e14_seg02_clip_21,red 3323,like he is a failure,like he is a god,like he is a master,like he is godfather,like he is all knowing,3,how does house compare himself when talking with cuddy about his methods?,125362,House M.D.,0-11.13,house_s07e07_seg02_clip_04,like he is godfather 3324,Joey and Ross went to the movies. ,Joey and Ross went to a pageant.,Joey and Ross went to a game. ,Joey and Ross went shopping.,Joey and Ross went to the coffee shop. ,2,Where did Joey and Ross go when Chandler had told them they knew they were going to be late?,125363,Friends,38.06-43.41,friends_s10e08_seg02_clip_15,Joey and Ross went to a game. 3325,Chandler,Phoebe,Rachel,Joey,Monica,4,Who answers the phone when it rings?,125364,Friends,41.9-51.1,friends_s07e17_seg02_clip_10,Monica 3326,She takes a drink out of a mug,She eats some chicken,She throws the phone,She takes a nap,She realizes she needs to go that bathroom,0,What does Phoebe do after she sits down?,125365,Friends,11.98-17.33,friends_s04e23-24_seg02_clip_37,She takes a drink out of a mug 3327,Kutner said the patient's wife worked at a school as a math teacher.,Kutner said the patient's wife worked for a charity organization.,Kutner said the patient's wife made clothes by knitting.,Kutner said the patient's wife worked at a library.,Kutner said the patient's wife rescued dogs.,4,What did Kutner say the patient's wife did when he was telling House about the patient's life?,125366,House M.D.,8.97-11.31,house_s05e17_seg02_clip_13,Kutner said the patient's wife rescued dogs. 3328,Give a man some hope,Help a man die faster,Let a man leave early,Hire a team of doctors,Let his assistant go free,3,What does Wilson want House to do before he says he has gotten smarter with principles? ,125367,House M.D.,13.2-26.85,house_s04e01_seg02_clip_15,Hire a team of doctors 3329,Everyone is moving in together.,They all got puppys.,They all bought new cars.,They all got more money.,They all can do back flips.,0,Why did House say everyone was happy when he was talking to Nolan?,125368,House M.D.,24.52-42.58,house_s06e20_seg02_clip_24,Everyone is moving in together. 3330,Penny brought her sister,Penny didn't bring anyone,Penny brought her mom,Penny brought Wil,"Penny brought Amy, and Bernadette",4,Who Did Penny bring to the bar when Leonard and Raj are at?,125369,The Big Bang Theory,46.31-61.33,s09e16_seg02_clip_11,"Penny brought Amy, and Bernadette" 3331,two,three,one,four,five,1,How many kids faces are on the poster when Rachel asks Ross if he was irritating?,125370,Friends,4.4-11,friends_s08e22_seg02_clip_07,three 3332,Raj and Sheldon are holding cans of soda.,Raj and Sheldon are holding video game controllers.,Raj and Sheldon are holding laptops.,Raj and Sheldon are holding each other.,Raj and Sheldon are holding flags.,1,What are Raj and Sheldon holding when playing video games?,125371,The Big Bang Theory,1.71-3.71,s03e10_seg02_clip_02,Raj and Sheldon are holding video game controllers. 3333,The woman on the train made the bet.,Rachel had made the bet.,Ross' mentor made the bet.,Joey made the bet.,Ross' mom made the bet.,0,Who made a bet with them self that Ross had beautiful eyes when they were on the train.,125372,Friends,22.92-40.33,friends_s04e10_seg02_clip_18,The woman on the train made the bet. 3334,Castle calls Martha for advice.,Castle cries on Beckett.,Castle shrugs it off admirably.,Castle hugs Alexis.,Castle dances with Beckett.,2,How does Castle respond when Beckett jokes about Gates hatred?,125373,Castle,63.91-69.28,castle_s05e14_seg02_clip_26,Castle shrugs it off admirably. 3335,Holds a knife to Castle's neck,Shoots at the car,Hits Castle with his gun,Grabs Castle and takes him away at gunpoint,Holds a gun on Castle,4,What does Glovkin do after Bilal gets in a car and he confronts Castle?,125374,Castle,65.36-75.27,castle_s07e20_seg02_clip_24,Holds a gun on Castle 3336,Juiet,Hannah,Eva,Cameron,Jane,3,"Who was House talking to when he said ""Have you spoken to Wilson.""",125375,House M.D.,1.88-7.05,house_s05e01_seg02_clip_09,Cameron 3337,The jacket started to grow larger.,The jacket changed colors.,The jacket started to light up.,The jacket started to shrink.,The jacket disappeared and reappeared.,4,What happened to the jacket Beckett was holding when he twisted it and turned it in different directions?,125376,Castle,36.91-45.52,castle_s07e03_seg02_clip_26,The jacket disappeared and reappeared. 3338,a random police officer,"A guy named ""El Gordo""",a famous politician,a musician,a bridge engineer,1,Who did Fran say she had an intimate encounter with when she was in Caracas?,125377,House M.D.,16.67-36.04,house_s03e18_seg02_clip_02,"A guy named ""El Gordo""" 3339,Organ donation forms,Consent to chemotherapy forms,Radiation therapy forms,Privacy rights and protections forms,Various diagnostic equipment,2,What items does Thirteen want to take from the room House is in before she tells House Afsoun changed her mind?,125378,House M.D.,6.96-17.4,house_s07e23_seg02_clip_22,Radiation therapy forms 3340,A necklace,An audition opportunity ,A purse,A ticket to a concert,A ticket to disneyland,1,What does Leonard give Penny to make up with her when they are talking?,125379,The Big Bang Theory,28.21-43.82,s07e12_seg02_clip_10,An audition opportunity 3341,She was blowing her nose into a tissue.,She was playing guitar.,She was on stage singing a song.,She was reading the newspaper.,She was kissing her boyfriend.,3,What was Phoebe doing before Monica and Chandler asked her opinion about a house?,125380,Friends,10.81-20.67,friends_s10e15_seg02_clip_00,She was reading the newspaper. 3342,Lanie,Esposito,Ryan,No one,Beckett,0,Who is doing the victims brief autopsy report when they are talking to beckett,125381,Castle,60-62.79,castle_s03e18_seg02_clip_01,Lanie 3343,He knew exactly what he wanted to do,He was sad and conflicted,He was mad at her,He was happy she wanted him back,He said No,1,How did Ross feel after hearing Emily's stipulation?,125382,Friends,47.87-62.58,friends_s05e04_seg02_clip_09,He was sad and conflicted 3344,His coughing,His heart-rate ,His blood pressure,His shallow breathing,His blood-sugar levels ,0,What did Wilson say he wasn't a big of after being asked if the patient was okay?,125383,House M.D.,51.59-56.57,house_s06e09_seg02_clip_05,His coughing 3345,Baby.,Crib.,Bernadette.,Love.,Music.,1,What did Howard wrote when writing on the whiteboard?,125384,The Big Bang Theory,0-51.17,s10e13_seg02_clip_08,Crib. 3346,Wilson,House,Lucas,Perry,Gruber,2,Who was talking to Cuddy in her office when she was looking at the nurse station?,125385,House M.D.,12.25-19.05,house_s05e03_seg02_clip_12,Lucas 3347,Raj did the laundry.,Raj went outside.,Raj was texting.,Raj standed and walk away.,Raj served tea.,3,Where did Raj do after Amy talked?,125386,The Big Bang Theory,0-51.71,s07e17_seg01_clip_00,Raj standed and walk away. 3348,orange,banana,eggplant,blueberries,apples,2,What fruit does Penny walk by when Sheldon is alone with the cart?,125387,The Big Bang Theory,53.52-55.63,s01e04_seg02_clip_03,eggplant 3349,She ate some spaghetti.,She kissed Leonard.,She picked up a beer.,She opened a bag of chips. ,She ate a hamburger. ,0,What did Penny do after talking about the water boiling?,125388,The Big Bang Theory,27.18-31.4,s06e06_seg02_clip_03,She ate some spaghetti. 3350,Her mother Mrs. Green,Her friend Monica,Phoebe,Joey,Chandler,0,Who is Rachel talking to when she is discussing the baby?,125389,Friends,22.81-56.13,friends_s08e20_seg02_clip_03,Her mother Mrs. Green 3351,Food is being cooked ,House is vomiting.,A little girl is crying,Doctor Cuddy is talking to patients.,A surgery is being performed,3,What is being done when the scene begins?,125390,House M.D.,0-6.18,house_s01e09_seg02_clip_08,Doctor Cuddy is talking to patients. 3352,Movies are for losers.,Movies are the dying species of our generation,Movies are the lost art second only to broadway.,"If he knows it through a wall, he knows it too well",I love movies!,3,"What did Monica tell Chandler about movies, when they were eavesdropping?",125391,Friends,14.5-30.25,friends_s10e01_seg02_clip_02,"If he knows it through a wall, he knows it too well" 3353,The towel was on the floor.,The towel was on a chair.,The towel was on the counter.,The towel was on a shelf.,The towel was over Rick's butt.,4,Where was the towel when Phoebe was working?,125392,Friends,20.36-57.98,friends_s04e04_seg02_clip_06,The towel was over Rick's butt. 3354,Yeah!,No!,Ah!,Hey!,Hello!,2,What did the audience say when Marshall said not to go swinging no wrecking ball?,125393,How I Met You Mother,36.79-43.03,met_s06e23_seg01_clip_01,Ah! 3355,House said Cuddy went all in against Sony,House said Cuddy went all in against Pfiser,House said Cuddy went all in against AtlanticNet,House said Cuddy went all in against Microsoft,House said Cuddy went all in against Southern Bell,2,Which company does House say Cuddy went all in against after they discuss malaria,125394,House M.D.,72.52-84.01,house_s06e13_seg02_clip_12,House said Cuddy went all in against AtlanticNet 3356,$800,$600,$500,$700,$200,3,How much does Joey say he won when playing cards with Chandler? ,125395,Friends,48.82-56.45,friends_s06e06_seg02_clip_12,$700 3357,50,9mm,45,338 Magnum,12 gauge shell,3,What type of bullet was found in the booth when the Crime Scene Tech was giving his report?,125396,Castle,43.72-47.44,castle_s03e13_seg02_clip_03,338 Magnum 3358,House is wearing a sling.,House is wearing a purse.,House is wearing a sash.,House is wearing a backpack.,House is wearing a fanny pack.,3,What is House wearing on his shoulder when he walks out of the classroom?,125397,House M.D.,41.14-44.88,house_s04e05_seg02_clip_26,House is wearing a backpack. 3359,Near the patients bed,On the phone with the patient,Talking from behind glass,In the hospital bed next to the patient,In the hospital lobby ,0,Where was Meredith when speaking to the patient?,125398,Grey's Anatomy,0-9.63,grey_s02e10_seg02_clip_20,Near the patients bed 3360,She begins pacing the room.,She leans forward in her chair.,She leaves the room.,She gives Penelope a hug.,She shakes Penelope's hand.,1,What does Beckett do when she asks Penelope if she mentioned anything to Scott?,125399,Castle,66.62-74.27,castle_s08e07_seg02_clip_21,She leans forward in her chair. 3361,She sent an email.,She tripped and fell.,She took notes.,She ate a donut.,She opened the door to the hospital building.,4,What does Beckett do after Ryan's mentions the hospital?,125400,Castle,1.36-10.9,castle_s07e14_seg02_clip_06,She opened the door to the hospital building. 3362,he lost his glasses,He has new contacts,he is drunk,Preya pushed him,he tripped,1,Why does Leonard run into the wall after showing off his new clothes?,125401,The Big Bang Theory,13.95-23.57,s04e18_seg02_clip_01,He has new contacts 3363,Freddie Mercury.,Elvis Presley.,John Lennon.,Prince.,Paul McCartney.,2,What artist does Castle bring up when he is trying to comfort Alexis?,125402,Castle,21.15-26.88,castle_s02e07_seg02_clip_22,John Lennon. 3364,Cuddy has a bag of chips in her hands,Cuddy has a file folder in her hands,Cuddy has a x-ray in her hands,Cuddy has a magazine in her hands,Cuddy has a salad in her hands,4,What is in Cuddy's hand when she comes into her office ,125403,House M.D.,23.88-34.05,house_s06e13_seg02_clip_12,Cuddy has a salad in her hands 3365,She throws the cup. ,She drinks water. ,She hands the cup to Chase. ,She hands the cup to House. ,She prevents House from moving the cup. ,4,What does the patient do when House reaches for the cup again?,125404,House M.D.,57.49-61.77,house_s07e12_seg02_clip_23,She prevents House from moving the cup. 3366,Leave the room,Get in the car,Take her to the hospital ,Get the coats,Get her to the bathtub ,3,What did Monica tell Chandler to do after she found out Erica was going into labor?,125405,Friends,36.31-49.43,friends_s10e16_seg02_clip_18,Get the coats 3367,His shoes.,The TV.,Star Wars poster.,A fan.,Penny's laptop.,3,What's shown behind Sheldon when he questions their friendship?,125406,The Big Bang Theory,0-9.62,s02e01_seg02_clip_04,A fan. 3368,A bag,A football,A coffee,A box,A newspaper,0,What is David Underhill holding when he enters the room?,125407,The Big Bang Theory,18.3-22.73,s02e11_seg01_clip_01,A bag 3369,She is sitting on a bar stool ,She is sitting on the couch,She is sitting on the floor,She is sitting by the pool ,She is sitting in the hallway,1,Where is Cuddy sitting when talking to House about lying?,125408,House M.D.,0-8.9,house_s07e07_seg02_clip_04,She is sitting on the couch 3370,The U.S.A's embassies could be attacked,The U.S.A could be under terrorist attack,The U.S.A's distraction would let their enemies go unchecked,The U.S.A could lose it's influence in the Middle East,The U.S.A could lose its influence in the United Nations,2,What conclusion does Beckett reach after Sophia's debriefing?,125409,Castle,24.74-37.36,castle_s04e16_seg02_clip_22,The U.S.A's distraction would let their enemies go unchecked 3371,A bottle is in Robin's hand.,A glass is in Robin's hand.,A tie is in Robin's hand.,A hat is in Robin's hand.,A shirt is in Robin's hand.,1,What is in Robin's hand when she is at the bar with her friends?,125410,How I Met You Mother,0-6.51,met_s06e20_seg02_clip_06,A glass is in Robin's hand. 3372,the tape of events is played agaim,he then asks to piece together witness statements,beckett asks him why he wants to review,becket says ok lets do it,scene flashes back to the beggining,1,what happens when castle asks to review the sequence of events?,125411,Castle,55.36-56.72,castle_s04e19_seg02_clip_23,he then asks to piece together witness statements 3373,Sheldon is sure the experiment will cause Penny to fall in love with him and refuse Leonard's proposal and go out with him instead. ,Sheldon is sure the experiment will cause Penny to want to make out with him. ,Sheldon is sure the experiment will cause Amy to become jealous of him and Penny. ,Sheldon is sure the experiment will cause Penny to fall in love with him and they can live happily together in Wisconsin. ,Sheldon is sure the experiment will cause them to fall in love and Penny will take him to Gary Con and buy him all the dragon T-shirts he wants. ,4,"Why does Sheldon say ""Okay babe, let's do this to"" to Penny when he is walking into her apartment? ",125412,The Big Bang Theory,34.38-38.13,s08e16_seg02_clip_00,Sheldon is sure the experiment will cause them to fall in love and Penny will take him to Gary Con and buy him all the dragon T-shirts he wants. 3374,Steve got his ear pierced.,Joey got his ear pierced.,Chandler got his ear pierced.,Ross got his ear pierced.,Moe got his ear pierced.,3,Who does Ross say got his ear pierced when he is talking to Emily?,125413,Friends,37.48-41.61,friends_s04e19_seg02_clip_13,Ross got his ear pierced. 3375,Alex turns and smiles at Izzie.,Alex kisses Izzie.,Alex hugs Izzie.,Alex dances with Izzie.,Alex sits on the floor.,0,"What does Alex do after he says ""me neither""?",125414,Grey's Anatomy,34.52-37.62,grey_s03e08_seg02_clip_25,Alex turns and smiles at Izzie. 3376,Beckett is talking to Agent Hendricks,Beckett is talking to Agent Connors,Beckett is talking to Agent Villante,Beckett is talking to Agent McCord,Beckett is talking to Agent Esposito,1,Who is Beckett talking to when it mentioned grabbing Castle,125415,Castle,0-7.34,castle_s07e01_seg02_clip_07,Beckett is talking to Agent Connors 3377,Barney closes the door.,Barney closes the laptop.,Barney closes the fridge.,Barney closes the toilet.,Barney closes the book.,1,What does Barney close after they are done watching the video?,125416,How I Met You Mother,36.62-40.76,met_s05e04_seg02_clip_02,Barney closes the laptop. 3378,Her hairstyle.,Her skin.,Her makeup.,Her clothes.,Her figure.,1,What does Amy compliment Penny on after Sheldon after Sheldon picks up his notebook?,125417,The Big Bang Theory,0-43.63,s05e08_seg01_clip_01,Her skin. 3379,Because Leonard was a compulsive liar. ,Because Leonard didn't want to hurt Penny's feelings or deal with the fallout of admitting he didn't believe in her.,Because Leonard was planning a party for Sheldon the night of the production.,"Because Leonard was planning on going anyways, but wanted it to be a surprise for Penny.",Because Leonard didn't want to contradict Sheldon. ,1,Why did Leonard lie when he explained why he and Sheldon couldn't go to Penny's production?,125418,The Big Bang Theory,0-55.11,s01e10_seg01_clip_02,Because Leonard didn't want to hurt Penny's feelings or deal with the fallout of admitting he didn't believe in her. 3380,Drugs.,Keys.,A gun.,Hotel card.,Money.,0,What did Marvin get out of his jacket when he told Beckett it was going to cost her?,125419,Castle,51.86-58.34,castle_s03e14_seg02_clip_18,Drugs. 3381,He is going to have dinner with Penny.,He is going to meet up with Raj.,He is going to work.,He is going to the store.,He is going over Howard and Bernadette's.,0,Where is Leonard going when he leaves the apartment?,125420,The Big Bang Theory,48.38-56.44,s05e14_seg01_clip_01,He is going to have dinner with Penny. 3382,To take a shower,To change,To see why it was quiet.,Exercise,There are no stairs.,2,Why does Castle go upstairs after talking to Becker?,125421,Castle,21.85-29.21,castle_s02e04_seg02_clip_11,To see why it was quiet. 3383,He goes to his room and closes the door. ,He points to the door. ,He sits down. ,He points at Chandler. ,He points to the floor. ,3,What does Joey do when he is facing Chandler and his arms are crossed?,125422,Friends,22.33-29.77,friends_s05e07_seg02_clip_16,He points at Chandler. 3384,"Raj had resigned himself to hear ""Raj is a girl"" jokes from Howard.",Raj had wanted to ask Bernadette for a date.,Raj had a hard time making a bracelet with his beads.,Raj had hoped Howard would go to the movies with him.,Raj had wanted Amy to help him make his bracelet.,0,Why was Raj upset before Bernadette showed Howard what she was doing?,125423,The Big Bang Theory,0-22.02,s07e07_seg02_clip_04,"Raj had resigned himself to hear ""Raj is a girl"" jokes from Howard." 3385,In an exam room on the patient table.,In a chair in the waiting room.,In the operating room.,In her apartment.,At a chair by the nurse's station. ,0,Where was Jodi sitting when she told House her mucous was pale goldenrod?,125424,House M.D.,11.91-33.45,house_s01e03_seg02_clip_03,In an exam room on the patient table. 3386,Get a new dress.,Be married to someone else.,We can't give up.,Get a new apartment.,Have a magical wedding.,2,What did Castle tell Beckett the deal is before getting the happing ending?,125425,Castle,82.2-93.13,castle_s06e23_seg02_clip_15,We can't give up. 3387,With his ex wife,Sitting at a bar,Waiting for results,At his wedding,In a job interview,1,Where is House seeing a memory at after Chase gives him three volts to the brain?,125426,House M.D.,73.44-89.02,house_s04e16_seg02_clip_14,Sitting at a bar 3388,tired,angry,relieved,gloomy,elated,2,How did Robin and Ted feel when Marshall and Lily were not getting divorced?,125427,How I Met You Mother,17.56-28.76,met_s03e07_seg02_clip_14,relieved 3389,Wilson sees mustard on House's face.,Wilson is amazed Houses is not being sarcastic and is trying to figure out House's angle.,House owes Wilson money.,House noted WIlson as the holdup on the patients test results.,House was screaming at the parents and being rude.,1,Why does Wilson stare at House when House references the patients EKG?,125428,House M.D.,35.29-49.51,house_s01e02_seg02_clip_19,Wilson is amazed Houses is not being sarcastic and is trying to figure out House's angle. 3390,pen and paper,donuts,briefcase,an x-ray,folder,3,What does Cameron bring with her when she enters the room?,125429,House M.D.,66.67-72.15,house_s06e04_seg02_clip_02,an x-ray 3391,Masters was talking to Broda,Masters was talking to House,Masters was talking to Cuddy,Masters was talking to Foreman,Masters was talking to Chase,0,Who was Masters talking to when she wanted to see the rash on the patient,125430,House M.D.,3.96-11.88,house_s07e07_seg02_clip_13,Masters was talking to Broda 3392,Where is the money you owe me?,Why are you flirting with my girl.,Why are you touching my wife.,What are we going to do?,Where is my wallet?,3,What did Barney ask Ted before he said Honey was vibing on him? ,125431,How I Met You Mother,27.01-38.72,met_s06e15_seg02_clip_02,What are we going to do? 3393,Lanie,Castle ,Esposito,Ryan,Montgomery,3,Who's voice is Beckett hearing when she relives the time she almost died?,125432,Castle,39.17-57.18,castle_s04e09_seg02_clip_02,Ryan 3394,a new mattress,money for family,better food,more books ,extra outside time ,1,What does castle offer him when he knows he cant get him out,125433,Castle,30.16-35.56,castle_s07e15_seg02_clip_14,money for family 3395,walked in the room,sat down,opened the window,hugged him,put a folder down,0,What did House do before he started talking?,125434,House M.D.,0-4.4,house_s01e03_seg02_clip_22,walked in the room 3396,A fellow human being,His brother,His best friend,A person deserving of life,His sister,1,Who did House say the patient (Matty) could save after he said his life doesn't have to be meaningless?,125435,House M.D.,47.43-53.41,house_s03e21_seg02_clip_21,His brother 3397,A shoe,A hat,A wallet,A gun,A necklace,4,What of Cano Vega's does Esposito lift after Esposito kneels next to the body?,125436,Castle,25.43-31.67,castle_s02e15_seg02_clip_01,A necklace 3398,he took off his watch,he kissed him,he ran away,he threw up,he cried,0,what did the white guy do after ross said lets do this,125437,Friends,10.33-19.48,friends_s02e21_seg02_clip_18,he took off his watch 3399,Because Penny likes Sheldon,Because Sheldon cant open the door,Because Penny cant open the door,Because Penny betrayed Leonard,Because Penny doesn't like talk with sheldon,3,Why Penny gets nervous after talk with Sheldon?,125438,The Big Bang Theory,0-26.41,s01e09_seg02_clip_08,Because Penny betrayed Leonard 3400,To find a few inches of column space,To give her a recipe,To give her a call,To giver her a chef recommendation,To give her priority in her yaching club,0,What does Oona promise Martha when they are talking?,125439,Castle,13.95-28.37,castle_s04e18_seg02_clip_26,To find a few inches of column space 3401,Howard was worried Sheldon would become a mad scientist.,Howard was worried Sheldon would stop being his friend.,Howard was worried Sheldon would set off a nuclear device because the cafeteria ran out of jello.,Howard was worried Sheldon would become angry with him.,Howard was worried Sheldon would quit his job.,2,What did Howard say he was worried about in general with Sheldon after Leonard mentioned him?,125440,The Big Bang Theory,28.61-34.45,s04e03_seg02_clip_10,Howard was worried Sheldon would set off a nuclear device because the cafeteria ran out of jello. 3402,Castle sees the captain of the ship.,A gun.,A group of men dancing.,A poster for the musical.,A group of guests is seen taking photos.,3,What can be seen when Castle enters the dance rehearsal space?,125441,Castle,5.06-13.34,castle_s08e08_seg02_clip_06,A poster for the musical. 3403,Sheldon invites Lesley,Sheldon invites Wil Wheaton,Sheldon invites Howard,Sheldon invites Kripke,Sheldon invites Raj,1,Who does Sheldon invite on the episode before they stop taping,125442,The Big Bang Theory,31.2-54.2,s06e07_seg01_clip_00,Sheldon invites Wil Wheaton 3404,They are in awe of someone's accomplishments. ,They are in awe of someone's wife. ,They are in awe of someone's car. ,They are in awe of someone's home. ,They are in awe of the beautiful scenery. ,3,What are Sheldon and Leonard in awe of when they are in the car together?,125443,The Big Bang Theory,12.3-33.61,s08e19_seg02_clip_07,They are in awe of someone's home. 3405,To get juice.,To get water.,To get beer.,To get ice.,To get food.,2,Why did Raj go to refrigerator when Howard said he'll be on his best behavior?,125444,The Big Bang Theory,24.58-43.17,s07e20_seg02_clip_04,To get beer. 3406,It means there's no point of keeping a TV in a coma patients room.,He is talking about nuclear war between two countries.,It means he is not going to share his sandwich with Wilson.,It means people should always be happy.,"It means he'll keep being mean to people, and people will be mean to him.",4,"What does House mean when he says ""mutually-assured destruction""?",125445,House M.D.,49.83-69.58,house_s02e01_seg02_clip_10,"It means he'll keep being mean to people, and people will be mean to him." 3407,A bracelet. ,A cast. ,A tattoo. ,A scar. ,A rash. ,1,What did the patient have on his arm when he was lying in bed?,125446,House M.D.,21.64-25.24,house_s04e03_seg02_clip_10,A cast. 3408,Goodbye,Help,Diamondback,Brownwood,Chesterbanks ,2,What was the girl's last words before she died?,125447,Castle,40.08-55.06,castle_s07e07_seg02_clip_02,Diamondback 3409,A turtle neck,A collared blouse,A see through blouse,A Christmas sweater,She wore no top,1,What type of top was Beckett wearing when talking with Gates?,125448,Castle,40.51-45.01,castle_s06e19_seg02_clip_05,A collared blouse 3410,I am tired ,how about hot chocolate instead,No thanks,Sounds good.,yes I would love to,3,What did Leonard say after Penny invited him over for coffee?,125449,The Big Bang Theory,0-52.78,s01e10_seg02_clip_14,Sounds good. 3411,That there was no chemistry between them,That he had to go to the bathroom,that he was cold,That he needed to eat,That he wanted to go home,0,What did Chandler tell Ross when he was pacing the lobby?,125450,Friends,0.29-3.77,friends_s04e13_seg02_clip_06,That there was no chemistry between them 3412,bedroom,couch,Kitchen,lab,restaurant,2,Where was Leonard when he is talking to Penny?,125451,The Big Bang Theory,4.88-8.24,s09e07_seg02_clip_12,Kitchen 3413,throws books on the floor,opens the locker,closes Izzie's locker,stands in front of Izzie's locker,puts food in his mouth,4,What does George do after he says the locker belongs to Izzie?,125452,Grey's Anatomy,0-5.52,grey_s03e01_seg02_clip_17,puts food in his mouth 3414,10,2,3,5,20,3,How many seconds were on the timer when Ryan and Esposito found it?,125453,Castle,60.25-71.94,castle_s06e11_seg02_clip_10,5 3415,A picture of Hastings.,A picture of a building on fire.,A picture of a deceased body.,A picture of a man's head shot.,A picture of a man's outfit.,3,What did Castle show Hastings a picture of after the presentation.,125454,Castle,9.9-19.81,castle_s06e05_seg02_clip_16,A picture of a man's head shot. 3416,The passenger says he will give Rachel a sedative.,The passenger says he will give Rachel a narcotic.,The passenger says he will give Rachel an antibiotic.,The passenger says he will give Rachel a probiotic.,The passenger says he will give Rachel an injection.,0,What does the passenger say he will give Rachel after Rachel annoys him?,125455,Friends,0-9.3,friends_s04e23-24_seg02_clip_35,The passenger says he will give Rachel a sedative. 3417,His head,His mouth,His neck,His hand,His leg,1,Where did Wilson pointed to when he asked if Ashley is having a cold sore?,125456,House M.D.,50.06-59.96,house_s06e09_seg02_clip_00,His mouth 3418,A girl/girl relationship,A good murder mystery,A cross dresser,Comic relief,A touching airport scene,0,What is the one thing that Joey says is missing from the Shining when he is reading Little Women?,125457,Friends,3.15-21.75,friends_s03e13_seg02_clip_08,A girl/girl relationship 3419,Paperwork.,A cane.,His phone.,An X-ray.,Crutches.,4,What Chase holds when House rudely interrupts?,125458,House M.D.,0-10.35,house_s08e12_seg02_clip_20,Crutches. 3420,The patient is being transported on a stretcher.,The patient is being transported in a wheelchair.,The patient is being transported on a gurney.,The patient is being transported on a bicycle.,The patient is being transported on a red wagon.,2,How is the patient being transported when she is unconscious?,125459,House M.D.,94.1-99.06,house_s03e14_seg02_clip_23,The patient is being transported on a gurney. 3421,She dries her eyes with a tissue. ,She lays down. ,She starts crying. ,She smiles and laughs. ,She hugs the doctor. ,3,What does Rachel do after she covers her mouth?,125460,Friends,27.72-30.7,friends_s08e11_seg02_clip_07,She smiles and laughs. 3422,community college,university,grad school,medical school,law school,0,What kind of college did Penny say she did not graduate when she spoke the truth to Sheldon?,125461,The Big Bang Theory,0.3-12.69,s02e01_seg02_clip_02,community college 3423,Nausea and rashes,Shock and cold,Nausea and Headaches,Cold and rashes,Shock and rashes,2,What are two symptoms that Wilson says the patient experiences when writhing the on the board?,125462,House M.D.,10.64-17.58,house_s02e05_seg02_clip_00,Nausea and Headaches 3424,They go to Monica's to hatch a plan,They look at pictures from Rachel's pregnancy album,They go the the apartment that Ross was telling her about,They go to Ross' apartment to gather more information,They go to Mrs. Green's to borrow money for the apartment,2,What does Ross and Rachel do after they drink from their coffee mugs?,125463,Friends,42.3-47.96,friends_s08e07_seg02_clip_02,They go the the apartment that Ross was telling her about 3425,Writing on a file,Throwing a ball up and down,Twirling his cane,Eating an ice cream,Drinking a cup of coffee,2,What is House doing when he is standing in front a classroom and asked who was on the projection screen?,125464,House M.D.,0-4.6,house_s04e02_seg02_clip_00,Twirling his cane 3426,$12.50,$15,$5,$7.50,$10,4,How much money did Ross say Monica owes after he said how much Phoebe owes?,125465,Friends,45.02-53.12,friends_s01e18_seg02_clip_11,$10 3427,Castle tells Courtney to say hi to John,Castle tells Courtney to say hi to Steve,Castle tells Courtney to say hi to Brandon,Castle tells Courtney to say hi to Sam,Castle tells Courtney to say hi to David,2,Who does Castle tell Courtney to say hi to after Courtney talks to him about casting in his movie?,125466,Castle,0-11.08,castle_s08e14_seg02_clip_07,Castle tells Courtney to say hi to Brandon 3428,She is watching TV.,She is making the bed.,She is carrying a coffee table.,She is cooking.,She is rubbing her pillow.,4,What is Lily doing when Ted says it's how Lily furnished her apartment?,125467,How I Met You Mother,4.88-14.63,met_s02e05_seg02_clip_19,She is rubbing her pillow. 3429,Headphones.,Earbuds.,A stethoscope.,A Bluetooth.,Earplugs.,2,What did the doctor take out of his ears before he started speaking?,125468,House M.D.,13.5-22.96,house_s07e12_seg02_clip_13,A stethoscope. 3430,They agree to disagree.,Sex is the best!,Ross doesn't agree with the man in the chair.,Sex isn't everything.,Sex is better with one person you care about.,4,What does Ross Agree with the guy in the chair about after thinking things through?,125469,Friends,41.94-53.47,friends_s03e18_seg02_clip_09,Sex is better with one person you care about. 3431,he is sad,he is shocked that they are going to let him. ,he is happy,he is annoyed,he is angry. ,1,how was joey expecting his friend to react after he tells them about his plan?,125470,Friends,32.46-43.38,friends_s05e18_seg02_clip_10,he is shocked that they are going to let him. 3432,House said yes and to go ahead.,House said no and to suture the lung.,House said not yet and to wait.,House said he didn't get a chance to ask.,House asked him if he was up to the job.,1,How did House respond after Chase asked him if he had a green light for foaming the lung?,125471,House M.D.,47.18-56.53,house_s07e02_seg02_clip_09,House said no and to suture the lung. 3433,Dita von Teese,Leonard Nimoy.,William Shatner.,Adam Nimoy.,George Takai.,3,Who is at the front door with Wil Wheaton when Sheldon answers it?,125472,The Big Bang Theory,39.39-44.12,s09e07_seg02_clip_01,Adam Nimoy. 3434,House wants to hurt her feelings,House wants to hit on Arlene,House thinks her husband will die,House isn't interested he's just fooling around with her,"House understands the rational, but struggles with the irrational",4,Why is House so interested in learning why Arlene doesn't leave her husband when he's questioning her about what she gets out of helping him?,125473,House M.D.,44.17-70.86,house_s03e01_seg02_clip_11,"House understands the rational, but struggles with the irrational" 3435,Leonard couldn't find the frozen pizza he wanted at the market.,Leonard didn't get a professorship that he wanted,Leonard suffers from seasonal affective disorder.,Penny is with someone else. ,Leonard lost his grant for physics research. ,3,Why was Leonard sulking when he entered his apartment?,125474,The Big Bang Theory,11.92-50.29,s02e04_seg02_clip_09,Penny is with someone else. 3436,Nobody was officiating the wedding.,Sheldon was officiating the wedding.,Howard was officiating the wedding.,Amy was officiating the wedding.,Bernadette was officiating the wedding.,4,Who was officiating the ceremony when Penny and Leonard were getting married?,125475,The Big Bang Theory,3.5-7.7,s10e01_seg02_clip_16,Bernadette was officiating the wedding. 3437,Outrageous Acts of Science,Star Trek,Sliders,Mythbusters.,Battlestar.,4,What TV show does Penny ask if they're going to watch after she sits down?,125476,The Big Bang Theory,43.5-55.04,s02e19_seg02_clip_11,Battlestar. 3438,That Martha will call her and make lunch plans,That they will go sailing together,That they will vacation together,That they will play bridge,That they will go to a fundraiser together,0,What promise does Martha make Oona when she is exiting?,125477,Castle,37.21-47.44,castle_s04e18_seg02_clip_26,That Martha will call her and make lunch plans 3439,Meredith told Jeff don't tell her he wants to break up with her.,Meredith told Jeff don't tell her he wants to end it.,Meredith told Jeff don't tell her he met another woman.,Meredith told Jeff don't tell her he's in another relationship.,Meredith told Jeff don't tell her anything.,2,What did Meredith tell Jeff not to tell her to see other women before he said he can't end it?,125478,Grey's Anatomy,69.44-78.79,grey_s03e25_seg02_clip_23,Meredith told Jeff don't tell her he met another woman. 3440,He got up from his seat and passed in front of the cameraq,He extended his hand into the screen shot next to him,He got mad and hung up the phone,He rushed off stage in anger,He passed out after he jumped up out of his seat too fast,1,What did Joey do after Monica told him that he was not on tv?,125479,Friends,0-14.81,friends_s05e04_seg02_clip_11,He extended his hand into the screen shot next to him 3441,Joey.,Stuart.,Chandler.,Ross.,Leanne.,3,Who comes walking in when Phoebe is talking about Greg and Jenny?,125480,Friends,5.27-8.99,friends_s08e04_seg02_clip_04,Ross. 3442,Cardboard boxes,Shoes,Purses,Wigs,Clear plastic bins,3,What is sitting on the shelves all around the dressing room when Beckett and Castle are questioning Hans?,125481,Castle,60.45-63.51,castle_s03e07_seg02_clip_12,Wigs 3443,Holiday Inn,Hotel Hookah,Heart break hotel,Hotel Barclay ,The snooty fox ,3,What was the name of the establishment the suspect ran into when being pursued by Ryan and Esposito?,125482,Castle,86.65-99.03,castle_s08e05_seg02_clip_12,Hotel Barclay 3444,Cuddy,House,Chase ,Cameron,Wilson,1,Who does Foreman say the patient is connected to when discussing her treatment with the group of doctors?,125483,House M.D.,81.92-91.03,house_s07e11_seg02_clip_13,House 3445,laughed ,hugged Castle,cried,left the room,made a call,3,What did Gates do after she was done talking?,125484,Castle,5.17-12.69,castle_s07e15_seg02_clip_05,left the room 3446,A glass of milk,A cookie,A cane,A stick,The television guide,3,What is Phoebe Sr. holding in her hand when she tells Phoebe that she is her mother?,125485,Friends,1.86-25.74,friends_s03e25_seg02_clip_19,A stick 3447,Ross is wearing leather pants. ,He's excited to see Ben. ,He has to talk to Ross about something important. ,He has a present for Ross. ,He has a present for Ben. ,0,What makes Chandler so excited after Ross and Ben walk into the apartment?,125486,Friends,31.91-40.33,friends_s05e11_seg02_clip_06,Ross is wearing leather pants. 3448,Onions,Tomatoes,Baked Potatoe,Lemon,Avocado ,1,What is Vikrum chopping when Beckett comes in?,125487,Castle,23.05-32.17,castle_s08e02_seg02_clip_13,Tomatoes 3449,Randy secretly likes working,Randy needs his severance check,Randy likes a girl at work,Randy is just messing around,Randy is hoping for a promotion,1,Why does Randy refuse to quit when he wants to leave his job?,125488,How I Met You Mother,0-7.38,met_s06e07_seg02_clip_13,Randy needs his severance check 3450,Joey is sad.,Joey feels at ease.,Joey is amused by the question.,Joey is indifferent.,Joey feels alarmed and anxious.,4,How does Joey feel when Rachel asks him how he would feel if he found out he had fathered a child?,125489,Friends,49.62-62.03,friends_s08e02_seg02_clip_03,Joey feels alarmed and anxious. 3451,Amy took a pill.,Amy slept.,Amy holded hands with Sheldon.,Amy talk to Raj.,Amy drunk wine.,4,What did Amy when Penny was talking?,125490,The Big Bang Theory,0.32-63.02,s07e05_seg02_clip_02,Amy drunk wine. 3452,Castle tells Beckett they should leave.,Castle and Beckett look at each other.,Castle thinks Sanchez is lying.,Beckett wants Castle to search the island.,Castle and Beckett think they should search for Lara in Cuba.,1,How do Castle and Beckett respond after hearing Lara's name from Sanchez?,125491,Castle,0-8.08,castle_s02e15_seg02_clip_17,Castle and Beckett look at each other. 3453,He picks up a mask,He picks up a spanking palette.,He picks a collar,He picks a t-shirt,He picks a costume from the floor.,1,What does Castle grabs when he is talking to Kate Beckett at the costume shop.,125492,Castle,2.64-12.32,castle_s02e16_seg02_clip_04,He picks up a spanking palette. 3454,Because the wife wanted to see if her husband paid for the apartment.,Because the wife wanted to see if her husband wrote a letter. ,Because the wife wanted to see if there was any money.,Because the wife wanted to see her bills.,Because the wife sent some kind of threatening letter.,4,Why does Castle think the wife would want to intercept the victim's mail after the victim's death?,125493,Castle,32.86-37.81,castle_s02e05_seg02_clip_20,Because the wife sent some kind of threatening letter. 3455,Foreman tells Chase taking a year off didn't dull Chase's skill set.,Foreman tells Chase no one else could have diagnosed the patient with polio.,Foreman tells Chase he looks even better and wiser with his beard.,"Foreman tells Chase every new nurse has asked him about Chase, so he's still got the old magnetism.",Foreman tells Chase how impressed he is with Chase's professional attitude.,0,How does Foreman compliment Chase before Chase brushes it off as having gotten lucky?,125494,House M.D.,22.54-28.18,house_s08e05_seg02_clip_25,Foreman tells Chase taking a year off didn't dull Chase's skill set. 3456,Because Monica told her too,Because Monica is not pregnant,Because Monica told her she was not invited to the wedding,Monica's mother was not in this scene,Because Chanler did not walk Monica to talk to her mother,1,Why did Monica's mother walk away after talking to Monica?,125495,Friends,6.99-9.9,friends_s08e01_seg02_clip_03,Because Monica is not pregnant 3457,a towel ,lotion,a shower cap ,a brush ,A box of tissues ,4,What does Raj bring out of the bathroom before he goes to bed? ,125496,The Big Bang Theory,50.19-58.03,s04e13_seg02_clip_11,A box of tissues 3458,No one was talking about the surveillance cameras ,Esposito was talking about the surveillance cameras ,Ryan was talking about the surveillance cameras ,Ryker was talking about the surveillance cameras ,Montgomery was talking about the surveillance cameras ,4,Who was talking about the surveillance cameras when Beckett asked about the hidden cameras?,125497,Castle,33.31-40.51,castle_s03e16_seg02_clip_06,Montgomery was talking about the surveillance cameras 3459,Howard doesn't know what he would say to them. ,Howard said he already tried. ,Howard said he put a call into his mother. ,Howard says that it won't help. ,Howard says he will get revenge. ,0,What is Howard's reaction when Bernadette tells him to stand up to the other astronauts?,125498,The Big Bang Theory,47.38-50.58,s06e02_seg02_clip_13,Howard doesn't know what he would say to them. 3460,Castle tries to lure Tyson outside,Castle punches Tyson and pushes into his apartment,Castle tries to get Tyson to confess and be recorded,Castle screams for Beckett to see if she's inside,Castle points his gun at Tyson ,1,How does Castle react when Tyson opens up the door to his apartment?,125499,Castle,52.19-88.39,castle_s07e15_seg02_clip_05,Castle punches Tyson and pushes into his apartment 3461,On the floor.,On the coffee table.,On the sofa.,On the kitchen counter.,On Raj's lap.,1,Where did Sheldon place the white bag after he walked into the apartment?,125500,The Big Bang Theory,0-5.91,s03e18_seg02_clip_04,On the coffee table. 3462,Leonard drunk beer.,"Leonard said, keep fighting.",Leonard advice to keep communicating. ,Leonard played a game.,Leonard fought with Amy.,2,What did Leonard do when Amy and Sheldon were fighting?,125501,The Big Bang Theory,0-49.07,s10e05_seg02_clip_00,Leonard advice to keep communicating. 3463,A Car,A picture of the crime scene,A passcode,A Sketch of Oni,A House,3,What does Ryan show a witness when he is inside?,125502,Castle,0-10.45,castle_s01e06_seg02_clip_11,A Sketch of Oni 3464,White with black polka dots,Yellow with white daisies,Red and white stripes,Purple,Orange with white dots,0,What color is the coffee mug Rachel is drinking out of when she is at Central Perk?,125503,Friends,41.7-44.68,friends_s08e07_seg02_clip_02,White with black polka dots 3465,Sheldon has gone into Penny's apartment.,Sheldon has gone out for pizza.,Sheldon has gone downstairs to talk with a neighbor.,Sheldon has done to Amy's apartment.,Sheldon went to spend the night with Howard and Bernadette.,0,Where has Sheldon gone when Leonard awakes in the middle of the night?,125504,The Big Bang Theory,26.53-60.54,s01e02_seg02_clip_04,Sheldon has gone into Penny's apartment. 3466,Raj is sitting at the kitchen counter when he is talking to his parents online,Raj is sitting on the couch when he is talking to his parents online,Raj is sitting on the floor when he is talking to his parents online,Raj is sitting in the wooden chair when he is talking to his parents online,Raj is sitting at the desk when he is talking to his parents online,3,Where is Raj sitting when he is talking to his parents online,125505,The Big Bang Theory,32.51-40.64,s02e23_seg02_clip_11,Raj is sitting in the wooden chair when he is talking to his parents online 3467,Throw the bill at Chandler,Turn off the lights,Scream in frustration,Run out of the apartment,Say that he'll find a new roommate ,1,What did Joey do after looking at the electricity bill?,125506,Friends,52.36-62.44,friends_s06e06_seg01_clip_00,Turn off the lights 3468,Cameron had an X-ray in her hands.,Broom.,Mop.,Bedpan.,Money.,0,What did Cameron have in her hands when she came into the room where Foreman and House were?,125507,House M.D.,68.96-71.24,house_s06e04_seg02_clip_02,Cameron had an X-ray in her hands. 3469,a weight scale,a soda machine,a filing cabinet,a bookcase,a plant,0,What is behind the door when Rachel is talking to Ross about being irratating?,125508,Friends,7.15-11,friends_s08e22_seg02_clip_07,a weight scale 3470,the baby shirt was white when ross was holding the baby,the baby shirt was red when ross was holding the baby,the baby shirt was blue when ross was holding the baby,the baby shirt was green when ross was holding the baby,the baby shirt was dark red when ross was holding the baby,0,what color was the baby shirt when ross was holding the baby,125509,Friends,0-22.28,friends_s10e01_seg02_clip_20,the baby shirt was white when ross was holding the baby 3471,all the answers,the bad guy,help,the truth,a doggie bag,4,What did Castle say he would bring back after he kissed Beckett?,125510,Castle,34.78-54.05,castle_s05e08_seg02_clip_18,a doggie bag 3472,Howard,Dr. Koothrapalli (Raj dad) ,Penny,Emily,Sheldon,1,Who was on the phone when Bernadette and Raj was in the car?,125511,The Big Bang Theory,0-37.81,s10e03_seg02_clip_16,Dr. Koothrapalli (Raj dad) 3473,bed,couch,bed side chair,lean against the wall,he never entered the room,2,Where did House sit at when he entered his patient room?,125512,House M.D.,53.56-60.32,house_s05e15_seg02_clip_13,bed side chair 3474,Chandler,Joey,Rachel,Ross,Monica,4,Who wants to steal emma and go to Canada after realizing that want a baby?,125513,Friends,57.69-62.03,friends_s10e04_seg02_clip_18,Monica 3475,Leonard reached for a blanket.,Leonard reached for a cup of coffee.,Leonard reached for a pillow.,Leonard reached for a stuff animal.,Leonard reached for his eyeglasses.,4,What did Leonard reach for after Penny said they may be having their last conversation?,125514,The Big Bang Theory,22.81-32.42,s03e05_seg02_clip_03,Leonard reached for his eyeglasses. 3476,Jason had a lot of followers on social media,His parents were secret agents,His parents were mobsters,His parents were high powered lawyers,Jason was the son of the principal,3,Why did Castle find out Jason the wrong kid to mess with after he got punched?,125515,Castle,65.05-89.11,castle_s07e04_seg02_clip_14,His parents were high powered lawyers 3477,Amy did not get an answer from Sheldon.,Sheldon would not tell Amy where they were going.,"Sheldon said to Amy, ""Sorry, you're on a need-to-know basis"".",Sheldon was not telling Amy their destination.,Sheldon was not disclosing the location to Amy. ,2,What did Sheldon say to Amy after she asked where they were going?,125516,The Big Bang Theory,49.83-61.14,s09e19_seg02_clip_07,"Sheldon said to Amy, ""Sorry, you're on a need-to-know basis""." 3478,in the kitchen,at the desk,in the chair,on the couch,behind the couch,0,Where is Leonard when Howard ask him about ants,125517,The Big Bang Theory,10.13-32.86,s03e19_seg02_clip_00,in the kitchen 3479,It is Labor Day.,It is Christmas Day.,It is Valentine's Day.,It is Flag Day.,It is 4th of July.,2,What day is is when Penny is trying to get a table?,125518,The Big Bang Theory,0-7.36,s09e15_seg02_clip_07,It is Valentine's Day. 3480,Your dress is ripped.,You look weird tonight.,I almost forgot to pick you up.,Could I interest you in a nightcap.,Have you been drinking already?,3,What did Alfred say to the lady when they walked in the restraurant?,125519,The Big Bang Theory,1.1-73.09,s10e01_seg01_clip_01,Could I interest you in a nightcap. 3481,House was partially right.,House and Foreman were both right.,House and Foreman were both wrong.,Foreman was partially right.,House was not even close.,2,Who was correct when House and Foreman disagreed about the white blood cell count?,125520,House M.D.,8.1-11.25,house_s01e03_seg02_clip_13,House and Foreman were both wrong. 3482,Because it was Rachel and Monica wanted to talk to her.,Because she was tired of Ross monopolizing her phone.,Because she wanted to call her mom.,Because Ross was calling long distance and it was costing Monica too much money.,Because Ross said it was her boyfriend.,4,Why did Monica grab the phone away from Ross after the second phone call?,125521,Friends,54.01-61.03,friends_s02e17_seg02_clip_08,Because Ross said it was her boyfriend. 3483,looks out the window,sits down in the chair,sits down on the couch,walks towards the door,walks to the kitchen,3,What does House do after he tells the patient the tumor is benign?,125522,House M.D.,80.52-90.19,house_s02e11_seg02_clip_19,walks towards the door 3484,Sheldon is putting it in a backpack.,Sheldon is putting it in a smaller box.,Sheldon is putting it in the bathroom.,Sheldon is putting it in the stove.,Sheldon is putting it in a desk drawer.,4,Where is Sheldon putting a snake after he pulls it from a box ?,125523,The Big Bang Theory,0.28-2.53,s05e07_seg02_clip_05,Sheldon is putting it in a desk drawer. 3485,Because Penny crashed Leonard's car.,Because Penny got married to Zach.,Because Penny tricked Leonard into driving.,Because Penny wasn't wearing her seat belt.,Because Penny was singing too loud to the radio,1,what did Penny do when she made Leonard mad at her?,125524,The Big Bang Theory,0.29-19.15,s07e09_seg02_clip_03,Because Penny got married to Zach. 3486,House says he's come because the team has a case.,House says he's come because he needs treatment for his wounds.,House says he's come because he's looking for Wilson.,House says he's come because Cuddy asked him to assist in the emergency wing.,House says he's come because Chase needs his help with the new patient.,0,Why does House tell Taub he's come to the emergency room when Taub is treating Adams' wounds?,125525,House M.D.,0-2.65,house_s08e21_seg02_clip_19,House says he's come because the team has a case. 3487,bottle,newspaper,pillow,book,phone,1,What is Marshall holding in his left hand when he is sitting and talking to Ted?,125526,How I Met You Mother,2.35-8.38,met_s03e08_seg02_clip_09,newspaper 3488,Eat a sandwich,Fix the copier,Fix the plumbing,Jump rope,Play basketball,1,"What does Joey's character come to do before watching ""them have sex""?",125527,Friends,40.9-45.38,friends_s08e19_seg02_clip_02,Fix the copier 3489,Francisco's day planner,Francisco's wallet,Francisco's cell phone,Francisco's computer,Francisco's credit cards,2,What did Esposito say was taken into Evidence before saying if GPS was turned on it might tell them where he went?,125528,Castle,34.43-48.66,castle_s04e13_seg02_clip_08,Francisco's cell phone 3490,Burke was laying on a mat.,"Burke was laying a chair,",Burke was laying on a hospital bed.,Burke was laying on a blanket.,Burke was laying on a dresser.,2,Where was Burke laying when Cristina told him good night?,125529,Grey's Anatomy,7.26-11.79,grey_s03e02_seg02_clip_25,Burke was laying on a hospital bed. 3491,Bottles of Pepsi,Margaritas,Cups of grape juice,Cans of ginger ale,There were no drinks on the table,1,What type of drinks did everyone have on the table when the group was having dinner?,125530,Friends,18.86-26.66,friends_s05e17_seg02_clip_17,Margaritas 3492,Monica tells her friends that her family used to decorate the Christmas tree together.,Monica tells her friends that her family used to play a game of touch football.,Monica tells her friends that her family used to watch football together.,Monica tells her friends that her family used to play NFL monopoly.,Monica tells her friends that her family used to dance at the Geller bowl.,1,What did Monica tell her friends her family used to do when celebrating Thanksgiving?,125531,Friends,15.31-19.81,friends_s03e09_seg02_clip_01,Monica tells her friends that her family used to play a game of touch football. 3493,A notepad,A pencil,A marker,A pen,A clipboard,3,What is Rachel holding in her right hand when talking to Monica and Phoebe?,125532,Friends,27.85-35.05,friends_s01e18_seg02_clip_00,A pen 3494,Derek guessed Meredith ate ravioli.,Derek guessed Meredith ate a sandwich.,Derek guessed Meredith ate chicken wings.,Derek guessed Meredith ate a grilled cheese.,Derek guessed Meredith ate pizza.,3,What did Derek guess Meredith ate when he approached her?,125533,Grey's Anatomy,6.75-9.45,grey_s01e04_seg02_clip_11,Derek guessed Meredith ate a grilled cheese. 3495,A backpack.,A gun.,Some flowers.,A briefcase.,The newspaper.,0,What was House carrying when he was walking up to the house?,125534,House M.D.,2.25-11.48,house_s08e07_seg02_clip_19,A backpack. 3496,a birthday party,a prom,a Christmas party,a game night,a car ride,0,What does Sheldon say he doesn't like when Penny tries to talk about having this for Leonard?,125535,The Big Bang Theory,0-49.33,s01e16_seg02_clip_01,a birthday party 3497,watching TV,playing video games,playing instruments,eating,sleeping,2,What are Preston and George doing when Cristina walks out of the apartment living room?,125536,Grey's Anatomy,2.44-9.15,grey_s02e20_seg02_clip_25,playing instruments 3498,Joey places the wastecan next to Kate to drown out her snoring.,Joey places the wastecan next to Kate in case she needs to throw away used tissues.,Joey places the wastecan next to Kate so she doesn't hit the floor if she rolls off the sofa.,Joey places the wastecan next to Kate in case she has to vomit.,Joey places the wastecan next to Kate in case she needs something to hold onto when she wakes up.,3,Why does Joey place the wastecan next to Kate when she is sleeping?,125537,Friends,9.35-14.03,friends_s03e22_seg02_clip_10,Joey places the wastecan next to Kate in case she has to vomit. 3499,Phoebe realized she used to mug Ross,Phoebe realized she used to mug Rachel,Phoebe realized she used to mug Joey,Phoebe realized she used to mug Chandler,Phoebe didn't mug anyone she knows,0,Who did Phoebe realize she used to mug when she was younger?,125538,Friends,52.79-61.03,friends_s09e15_seg02_clip_11,Phoebe realized she used to mug Ross 3500,irritated,happy,bored,angry,tired,1,How did Sheldon feel when the doctor liked his paper?,125539,The Big Bang Theory,0-16.54,s08e14_seg02_clip_14,happy 3501,The colors are green and black.,Its a solid white,It has a purple tone.,"It has different colors, purple, red, yellow.",There arent any colors.,3,What is the color of the lights when the man tells Dr House he doesnt know what to say?,125540,House M.D.,46.6-52.47,house_s03e07_seg02_clip_22,"It has different colors, purple, red, yellow." 3502,Penny calls it a breathless love. ,Penny calls it an exciting love. ,Penny calls it a boring kind of love. ,Penny calls it an endless love. ,Penny calls it a nervous love. ,2,What does Penny call her and Leonard's love when she is hanging out with the girls?,125541,The Big Bang Theory,33.95-35.4,s06e02_seg01_clip_01,Penny calls it a boring kind of love. 3503,Ross is from Long Island.,Ross is from Manhattan.,Ross is from Jersey.,Ross is from Buffalo.,Ross is from Lexington.,0,Where does Ross say that he is from when his date asks him to tell her about himself?,125542,Friends,45.85-49.75,friends_s06e08_seg02_clip_12,Ross is from Long Island. 3504,She stares out the window. ,She kicks the wall. ,She opens the door. ,She leaves the room. ,She begins to cry. ,2,What does Penny do after she kisses Leonard?,125543,The Big Bang Theory,7.5-16.51,s03e01_seg02_clip_03,She opens the door. 3505,Beckett kisses Castle.,Beckett runs away to call for backup.,Beckett is stunned and annoyed.,Beckett walks towards the courthouse.,Beckett sits on the couch.,2,How does Beckett react after viewing the video?,125544,Castle,23.41-29.71,castle_s04e13_seg02_clip_03,Beckett is stunned and annoyed. 3506,White.,Gray,Black.,Brown.,Red.,3,What color was the luggage Ross was holding when Rachel said they were going to Greece.?,125545,Friends,5.99-9.14,friends_s05e01_seg02_clip_18,Brown. 3507,Howard.,Sheldon.,Leonard.,Raj.,Dave.,4,Who sat next to Amy when she was driving?,125546,The Big Bang Theory,22.91-55.2,s09e08_seg02_clip_15,Dave. 3508,A cookbook,A candle,A cell phone,A breadstick,A handbag,3,What is Tom holding when he asks Monica is she knows if Chandler is seeing anyone?,125547,Friends,12.29-19.22,friends_s09e17_seg02_clip_19,A breadstick 3509,Because Castle wonders if Hasim and Sara a victim of kidnapping had a relationship.,Because Castle wonders if Hasim was related to Sara a victim of kidnapping.,Because Castle thinks that Hasim looks like a terrorist.,Because Castle believes he know Hasim from middle school,Because Castle thinks Hasim looks like a character in a movie he's seen recently. ,0,Why is Castle concerned when discussing a suspect name Hasim?,125548,Castle,16.68-23.63,castle_s05e15_seg02_clip_05,Because Castle wonders if Hasim and Sara a victim of kidnapping had a relationship. 3510,Folding clothes. ,Drinking beer. ,Cooking food. ,Drinking wine. ,Dancing. ,0,What are Ted and Robin doing when they are at Ted's place?,125549,How I Met You Mother,55.39-60.21,met_s03e19_seg02_clip_02,Folding clothes. 3511,Next to Tory ,next to Castle ,Along the wall,in a chair,in a couch,2,Where did Beckett stand when she entered the tech depo room? ,125550,Castle,20.83-30.55,castle_s06e12_seg02_clip_04,Along the wall 3512,You knew the next step would be an ultrasound.,You knew the next step would be an EEG.,You knew the next step would be a blood draw.,You knew the next step would be a lumbar puncture.,You knew the next step would be a echocardiogram.,3,"What did Cameron say after House said, ""Any guesses on how I figured that one out""?",125551,House M.D.,21.81-32.05,house_s02e24_seg02_clip_01,You knew the next step would be a lumbar puncture. 3513,sheldon stands in front of the bedroom.,sheldon stands in front of the dining table.,sheldon stands in front of the couch,sheldon stands in front of the bathroom,sheldon stands in front of his white board,4,where does sheldon stand when he explains he's smart?,125552,The Big Bang Theory,18.39-21.95,s08e17_seg02_clip_09,sheldon stands in front of his white board 3514,Fifteen years ago,Twenty years ago,Twenty-five years ago,Ten years ago,Two years ago,1,How long ago was it when Castle's office was Noah Kramer's office?,125553,Castle,21.54-24.23,castle_s08e21_seg02_clip_07,Twenty years ago 3515,The lady sat on the floor,The lady cried,The lady slipped on the floor,The lady prayed,The lady walked away,4,What happened after Joey held the lady's hands?,125554,Friends,0-8.4,friends_s03e20_seg02_clip_16,The lady walked away 3516,goes to the bathroom,leaves the room,goes to the kitchen,goes into the living room,leaves the house,0,Where does Amy go after Amy shuts the drapes?,125555,The Big Bang Theory,33.31-57.44,s10e04_seg02_clip_09,goes to the bathroom 3517,He said it was just a benign cyst,He said it was just scar tissue,He said it was just a benign artifact,He said it was a twisted blood vessel,He said it was a harmless tissue tag,1,What does Dr. Simpson say House mistook the granuloma for when he is operating?,125556,House M.D.,82.04-89.66,house_s03e13_seg02_clip_18,He said it was just scar tissue 3518,Blue,Red,Green,Purple,Orange,1,What color is the large doctor's book on the table when they discuss Sebastian's illness>?,125557,House M.D.,42.4-47.93,house_s02e04_seg02_clip_00,Red 3519,A couple of weeks ago.,Six months ago.,When her mother asked her to. ,The first time she threw up.,Yesterday.,3,When does Nina say she should have brought in her mother when talking to Callie?,125558,Grey's Anatomy,54.62-62.42,grey_s03e19_seg02_clip_23,The first time she threw up. 3520,No one burns Ross up,The delivery man burns Ross up,Rachel's father burns Ross up,Monica's father burns Ross up,Phoebe's father burns Ross up,2,What guy burns Ross up when he talks to Rachel?,125559,Friends,30.69-42.79,friends_s01e05_seg02_clip_01,Rachel's father burns Ross up 3521,Outside of an ambulance. ,Inside of her office. ,In a patient's room. ,In the laboratory.,In her vehicle.,0,Where is Bailey when she is advised about the patients stats?,125560,Grey's Anatomy,75.26-80.98,grey_s02e20_seg02_clip_03,Outside of an ambulance. 3522,Leonard asks Sheldon to stop taking the test.,Leonard takes a sip of his beer.,Leonard gives Sheldon his cell phone.,Leonard gets up and leaves.,Leonard takes Penny by the hand.,4,What does Leonard do after he mentions marriage being scary?,125561,The Big Bang Theory,14.85-22.69,s08e03_seg02_clip_13,Leonard takes Penny by the hand. 3523,Chandler is sick,Monica is sick,Birth of their new babies,Birth of Rachel's baby,Birth of Ross's baby,2,Why are Monica and Chandler in the hospital before going home,125562,Friends,0-16.44,friends_s10e17-18_seg02_clip_15,Birth of their new babies 3524,Standing in the hall.,Standing in the kitchen.,Sitting in the recliner.,Sitting on the sofa.,Sitting at the table.,2,Where was Monica when Phoebe told her she wanted crazy bitch again?,125563,Friends,3.84-11.21,friends_s10e12_seg02_clip_20,Sitting in the recliner. 3525,A Itailian flag,A USA flag,A England flag,A Canadian Flag,A Greek flag,3,Which countries flag did House notice after he walked into the apartment to leave the envelope?,125564,House M.D.,97.82-112.82,house_s06e03_seg02_clip_13,A Canadian Flag 3526,easter,Halloween,thanksgiving,christmas eve,newyears,3,On what holiday did gates say Tim cabot's father die in a car crash after telling Castel there was more blood on his hands than that?,125565,Castle,53.38-65.34,castle_s05e09_seg02_clip_20,christmas eve 3527,He is in his dressing room.,He is onstage during rehearsal.,He is standing in an open doorway.,He is standing in the kitchen drinking a beer.,He is sitting on the couch taking notes.,2,Where was Joey standing when Cecilia is talking to him about character?,125566,Friends,52.27-59.65,friends_s07e15_seg02_clip_12,He is standing in an open doorway. 3528,Henry saw Amy.,Henry saw House.,Henry saw Chase.,Henry saw Cuddy.,Henry saw Wilson.,1,Who did Henry see after Henry's door opened?,125567,House M.D.,21.26-29.4,house_s02e14_seg02_clip_04,Henry saw House. 3529,He was asking them about helping him plan a surprise party for Amy.,He was asking them about helping him plan his birthday.,He was asking them about being physical with Amy.,He was asking them about what love feels like.,He was asking them to help him kill a bug in his apartment. ,2,Why was Sheldon talking to Penny and Bernadette when they were at Penny's apartment?,125568,The Big Bang Theory,37.55-60.57,s09e11_seg02_clip_06,He was asking them about being physical with Amy. 3530,Alex bumped the baby when he sat down,Alex shouted as he sat down,Alex slammed his tray on the table,It was Cristina that made the baby cry,Alex didn't give the baby any food,2,How did Alex make the baby cry when he sat down for lunch?,125569,Grey's Anatomy,39.6-45.97,grey_s02e20_seg02_clip_13,Alex slammed his tray on the table 3531,fraud checks,Anonymous bank deposits,no money,a million dollars worth of deposits,red flags,1,What did ryan say he found in mrs.kirbys joint account with her husband when questioning her?,125570,Castle,76.01-81.47,castle_s08e16_seg02_clip_13,Anonymous bank deposits 3532,"She asks why listen to voice messages when the real person is here, just delete it.",She tells him she messed up and asks that he does not listen to the message.,She asks him to give her the phone and she jumps on his back.,She tells him it's another Rachel not her.,She turns around and walks away.,2,What does Rachel do when Ross tells her he has a message from her while he is holding his phone?,125571,Friends,15.35-22.73,friends_s04e21_seg02_clip_13,She asks him to give her the phone and she jumps on his back. 3533,Because she didn't get to meet the ghost. ,Because she doesn't want Marshall talking to anyone without her permission. ,Because she doesn't want the ghost teaching their future kids things. ,Because she didn't have her ghost hunting equipment. ,Because she needs to make sure the ghost is nice. ,2,Why is Lily so upset about the ghost when she is in the new place with Marshall and Robin?,125572,How I Met You Mother,44.35-59.13,met_s03e12_seg02_clip_08,Because she doesn't want the ghost teaching their future kids things. 3534,A teapot and cookies,Test tubes from an experiment,A load of clothes,Two wine glasses,A bunch of files,3,What did Leonard have in his hands when he walked over to the coffee table?,125573,The Big Bang Theory,35.93-37.19,s02e02_seg02_clip_04,Two wine glasses 3535,From the mailboxes.,From her apartment.,From the elevator.,From the stairway.,From the bedroom.,4,Where did Penny come from when the guys saw her in the apartment?,125574,The Big Bang Theory,12.6-26.15,s05e01_seg01_clip_00,From the bedroom. 3536,Beckett pointed at Travis's heart.,Beckett pointed at a cellphone.,Beckett pointed at the front door.,Beckett pointed at a lie detector test.,Beckett pointed at handcuffs.,1,Where did Beckett point after she threatened to show Travis a video?,125575,Castle,45.16-46.45,castle_s02e03_seg02_clip_23,Beckett pointed at a cellphone. 3537,Stands up,Blow his nose,Take a bite out of his sandwich,Walk away,Wipe his eyes,4,What does Castle do after talking to Jeremy?,125576,Castle,54.27-58.76,castle_s07e11_seg02_clip_08,Wipe his eyes 3538,Joey fainted.,Joey screamed and jumped up and down. ,Joey ran out the door.,Joey ran in the room to put on extra clothes.,Joey refused to play.,1,How did Joey react after Chandler suggested Strip Poker?,125577,Friends,34.82-37.43,friends_s03e25_seg02_clip_07,Joey screamed and jumped up and down. 3539,Leonard felt tired.,Leonard felt happy.,Leonard felt depressed.,Leonard felt angry.,Leonard felt excited.,3,How did Leonard feel after being sprayed with water?,125578,The Big Bang Theory,0-8.36,s03e03_seg02_clip_08,Leonard felt angry. 3540,No more crying.,No more screaming.,No more pranks.,No more breaking toys.,No more hiding food.,2,What did Ben and Rachel agree upon when they made an agreement?,125579,Friends,57.06-61.03,friends_s07e16_seg02_clip_19,No more pranks. 3541,That they will come back ambiguous,That they will come back negative,That they will never come back,That they were lost,That they need a second opinion,1,What does the doctor suspect when discussing the tests outcome?,125580,House M.D.,0-5.39,house_s02e21_seg02_clip_14,That they will come back negative 3542,a doctor,another ornithologist,a nurse,a mechanic,a cook,1,Who did Professor Crawley's wife had an affair with when the friends heard of it?,125581,The Big Bang Theory,0-14.26,s03e02_seg02_clip_14,another ornithologist 3543,He slapped him.,He sat beside him.,He tapped on his shoulder.,He threw a tray at him.,He stood beside him.,2,How did Sheldon get the man in the brown shirts attention after saying excuse me?,125582,The Big Bang Theory,49.44-52.49,s02e03_seg02_clip_12,He tapped on his shoulder. 3544,$50,$20,$19,$35,$13,2,How much is the check Robin is talking about when at the bar?,125583,How I Met You Mother,2.98-7.15,met_s05e02_seg02_clip_12,$19 3545,32 inch,50 inch,55 inch,30 inch,60 inch,4,How big of a tv did house say he wanted when talking to wilson in his office?,125584,House M.D.,83.24-89.02,house_s07e17_seg02_clip_12,60 inch 3546,Joey comes in the coffeehouse,Monica comes in the coffeehouse,Ross comes in the coffeehouse,Phoebe comes in the coffeehouse,Will comes in the coffeehouse,3,Who comes in the coffeehouse when Rachel is sitting on the couch,125585,Friends,2.56-12.49,friends_s08e16_seg02_clip_00,Phoebe comes in the coffeehouse 3547,"University Policy Manual, Chapter 4, subsection 2, Mediation of Intra-departmental Disputes made Gablehauser responsible.",Department code 105 made Gablehauser responsible.,Department code 15 made Gablehauser responsible.,Rule 5 section 13 made Gablehauser responsible.,Rule 10 section 10 made Gablehauser responsible.,0,What rule made Doctor Gablehauser responsible for handling situations after disputes have taken place?,125586,The Big Bang Theory,35.21-39.76,s02e03_seg02_clip_06,"University Policy Manual, Chapter 4, subsection 2, Mediation of Intra-departmental Disputes made Gablehauser responsible." 3548,Penny was throwing up.,Penny had fell.,Penny was sweeping.,Penny was sleep.,Penny was looking for her earring. ,2,Why was Penny on the floor when Sheldon and Bernadette was in her apartment?,125587,The Big Bang Theory,33.61-48.76,s09e11_seg02_clip_06,Penny was sweeping. 3549,They discuss the apartment,They take their coats off and put them on the couch,They open the door and walk in,They walk into the bathroom,They bring the groceries into the house,2,What happens when you first see Joey and Chandler,125588,Friends,41.91-51.37,friends_s02e16_seg02_clip_08,They open the door and walk in 3550,The woman likes to be toasted,The woman likes to be burned,The woman likes to be loved,The woman likes to be kissed,The woman likes to be hugged,1,"When Chase is talking about the woman he was seeing before, she liked to be what when he is talking to Carmen and Foreman?",125589,House M.D.,53.14-61.7,house_s01e20_seg02_clip_07,The woman likes to be burned 3551,Because Leonard talked about an Ex girlfriend too much,Because Leonard slapped her,Because Leonard interrupted their intimacy by proposing to her.,Because Leonard wanted to break up with Penny,Because Leonard seemed bored with Penny,2,Why is Penny upset with Leonard when they are talking together?,125590,The Big Bang Theory,0-14.2,s05e24_seg01_clip_00,Because Leonard interrupted their intimacy by proposing to her. 3552,A sandwich,A cup of coffee,A file,A bottle of water,An ex-ray film,0,What does the female Dr. hand dr. Taub after saying they have to stay and test?,125591,House M.D.,0-8.46,house_s06e08_seg02_clip_11,A sandwich 3553,Frustrated.,Happy.,Excited.,Miserable.,Nervous.,0,How did Leonard feel when the computer screen froze?,125592,The Big Bang Theory,11.85-32.59,s05e02_seg02_clip_07,Frustrated. 3554,nothing ,head band,benie,paint ,eyepatch,4,What did House's patient have on on his face when he was in the hospital.,125593,House M.D.,0-6.97,house_s08e06_seg02_clip_23,eyepatch 3555,Jennifer Lawrence,Judge judy,Carrie fisher,Robert Downy Jr.,Dr. Phil,2,Who opened the door after James rang the door bell?,125594,The Big Bang Theory,4.48-12.04,s07e14_seg02_clip_16,Carrie fisher 3556,Christmas,Thanksgiving,Valentines Day,Halloween,Fourth of July,0,What holiday is being celebrated in Justin's room when Burke walks in?,125595,Grey's Anatomy,59.06-66.26,grey_s02e12_seg02_clip_03,Christmas 3557,Call a nurse,Get him some medicine,Give him a shot,Get up and leave,Quit his job,3,What did House say he was going to do when the patient answered him?,125596,House M.D.,27.56-41.12,house_s02e14_seg02_clip_02,Get up and leave 3558,Ketamine,Cocaine,Ecstacy,Angel Dust,Vitamin B-12,0,What was Doug Bishop injected with before he died?,125597,Castle,49.24-51.04,castle_s02e14_seg02_clip_03,Ketamine 3559,Tag is stunned and surprised.,Tag cries.,Tag runs out the door.,Tag sits on the floor.,Tag kisses Rachel.,0,How does Tag react after Rachel rapidly clears her desk?,125598,Friends,20.95-26.86,friends_s07e09_seg02_clip_02,Tag is stunned and surprised. 3560,Leaning against the bookcase.,Sitting on a white chair.,Standing behind Dr House.,Laying on the floor next to the desk.,Sitting in a wheel chair.,1,Where is the man with glasses after Dr Lisa Cuddy leaves the room?,125599,House M.D.,67.78-81.42,house_s07e02_seg02_clip_14,Sitting on a white chair. 3561,Every time she kicks,When she has the hiccups,When she moves,When she turns over,When she stretches,0,What does Izzie say that Kate gives Dorie belly burn when doing?,125600,Grey's Anatomy,28.84-35.35,grey_s02e10_seg02_clip_01,Every time she kicks 3562,Beckett plans on finding out where the wife got her shoes.,Beckett plans on finding out what the husband was doing in the city.,Beckett plans on finding out why the wife married her husband.,Beckett plans on finding out what kind of marriage the wife had with her husband.,Beckett plans on finding out how the wife and her husband met.,1,What does Beckett plan on finding out when she visits the wife at the morgue?,125601,Castle,0-14.42,castle_s02e10_seg02_clip_03,Beckett plans on finding out what the husband was doing in the city. 3563,Chase,Cameron,Foreman,House,Gabe,3,Who is leading the conversation when they are having a meeting?,125602,House M.D.,0-11,house_s01e10_seg02_clip_09,House 3564,They are happy traditions.,They are good traditions.,They are sad traditions.,They are weird traditions.,They are grand traditions.,4,What does Joey think about bachelor parties when he is upset at the coffee shop?,125603,Friends,20.26-24.85,friends_s08e08_seg01_clip_01,They are grand traditions. 3565,That Mia was very sensitive to chemicals,That Mia was very sensitive to people,That Mia was very sensitive to animals,That Mia was very sensitive to her,That Mia was very sensitive to smell,4,What did Beckett say about Mia before she called Beckett Captain Obvious?,125604,Castle,36.75-41.86,castle_s08e05_seg02_clip_03,That Mia was very sensitive to smell 3566,Blue,Red,White,Black,Green,1,What is the color of the T-shirt that is wearing the guy behind of Nora when she is talking to Barney?,125605,How I Met You Mother,3.3-10.8,met_s06e18_seg02_clip_04,Red 3567,More likely months,A few years,More likey weeks,It's very difficult to tell,It depends on the drugs and radiation treatments,0,How long of a time period did Wilson give after the patient (Stark) asked if he had a few months or years to live?,125606,House M.D.,69.77-76.07,house_s04e03_seg02_clip_17,More likely months 3568,Beckett takes a sip of her coffee,Beckett advises that Jesse has a multiple personality disorder,Beckett slams the book at Jessee,"Jesse states ""this is crazy""",Beckett responds by hypothesizing Jessee wanted to get sympathy for his movement.,4,What happens after Castle asks why Jessee blewup his own protest?,125607,Castle,10.8-14.4,castle_s04e19_seg02_clip_23,Beckett responds by hypothesizing Jessee wanted to get sympathy for his movement. 3569,Joey went on the balcony ,Joey left the apartment ,Joey went to the bathroom ,In the bedroom,Joey went over to mom place,3,Where did Joey go after he hugged Monica and Chandler? ,125608,Friends,22.13-27.45,friends_s07e16_seg02_clip_04,In the bedroom 3570,Raj is returning the drone to Howard after fixing it for him.,Raj is giving Howard a drone as a birthday gift.,Raj and Howard are planning to pack the drone in a suitcase.,Raj is disappointed in the quality of his new drone.,"Raj can't get it to work, and he wants Howard's help.",4,Why is Raj handing his drone to Howard before Leonard comes out of the hallway?,125609,The Big Bang Theory,1.29-17.2,s08e22_seg01_clip_00,"Raj can't get it to work, and he wants Howard's help." 3571,Sheldon says he doesn't understand what Raj is talking about. ,Sheldon says he doesn't understand either. ,Sheldon says he doesn't understand what their problem is with him. ,Sheldon says he doesn't understand why Raj doesn't get it. ,Sheldon says he doesn't understand why Howard doesn't get it. ,2,What is Sheldon't response after Raj says he doesn't get Sheldon's problem with bird?,125610,The Big Bang Theory,2.38-7.14,s05e09_seg02_clip_05,Sheldon says he doesn't understand what their problem is with him. 3572,A fork,A wooden spoon,A ladle,Her finger,A spatula,1,What does Monica taste the food with after she puts it down on the table?,125611,Friends,47.58-54.54,friends_s10e08_seg02_clip_01,A wooden spoon 3573,A turkey.,A roll of toilet paper.,A box of tissues.,A pot roast.,A roll of paper towels.,4,What did Phoebe have her hand on when she was telling Ross about how she cried on her date?,125612,Friends,13.13-17.41,friends_s09e04_seg02_clip_03,A roll of paper towels. 3574,Yellow flowers.,A telephone.,Pink flowers.,A water pitcher.,Purple flowers.,2,What was to the left of Afsoun by the lamp when she told House she was waiting for the nurse to come back?,125613,House M.D.,2.49-5.4,house_s07e23_seg02_clip_17,Pink flowers. 3575,A parrot,A purse.,A pet parakeet,A toy dog,A shawl,1,What does Penny have on her shoulder when Stuart shows her the comic book?,125614,The Big Bang Theory,0-55.83,s02e20_seg02_clip_04,A purse. 3576,"That was rude, I don't want to see you again.","And FYI, you'd be lucky to have me as a daughter in law.",I forgot to close the lid.,"Oops, the laptop is about to fall.","Raj will be right back, goodbye. ",1,What did Penny say to Raj's parents after re-entering the room?,125615,The Big Bang Theory,44.28-47.75,s02e04_seg02_clip_15,"And FYI, you'd be lucky to have me as a daughter in law." 3577,A pizza,A phone call,A package,A text ,A ride ,3,What does Esposito receive after fist-bumping Ryan?,125616,Castle,77.21-82.33,castle_s08e05_seg02_clip_03,A text 3578,Stuart,Penny,Raj,Howard,Sheldon,4,Who was in the backseat with Amy when Leonard was driving?,125617,The Big Bang Theory,0-4.64,s07e09_seg02_clip_03,Sheldon 3579,Her purse.,A sweater.,A blender.,A bag.,A phone.,1,What is Rachel holding when she walks past Ross?,125618,Friends,24.79-33.94,friends_s02e04_seg02_clip_18,A sweater. 3580,angry,hurt,irritated,sad,hungry,2,How did Penny feel when Leonard asked a favor of her?,125619,The Big Bang Theory,0-21.71,s03e05_seg02_clip_04,irritated 3581,A piece of clothing in the cabinet,A box hidden under the sink,A chest that is behind the toilet,A box hidden in the shower,Money in the shower,3,What does Marshall look for when he goes into the bathroom?,125620,How I Met You Mother,10.5-14.71,met_s06e06_seg02_clip_10,A box hidden in the shower 3582,Chandler likes the blankets,Chandler is tired,Chandler is asleep,Chandler can't walk,Chandler wants intimate time with Monica,4,Why is Chandler in the bed when he and Monica are together?,125621,Friends,25.59-49.52,friends_s07e01_seg02_clip_01,Chandler wants intimate time with Monica 3583,"Amy says she likes harps, Little House on the Prairie, medieval poetry, and medieval literature.","Amy says she likes flutes, Ender's Game, video games, and romance novels.","Amy says she likes trumpets, the Bible, solitaire, and food.","Amy says she likes harps, romance novels, pizza, and facial hair.","Amy says she likes pizza, beef, chicken, and turkey.",0,What does Amy say she likes when Howard attempts to find common interests with her?,125622,The Big Bang Theory,21.09-39.07,s07e03_seg02_clip_06,"Amy says she likes harps, Little House on the Prairie, medieval poetry, and medieval literature." 3584,Beckett says that the suspect is not the murderer.,Beckett says she didn't need a confession.,Beckett thinks she has proof but needs more time.,Beckett wants to review the prints again.,Beckett wants to double-check the man's alibi.,1,How does Beckett respond after Esposito asks if she got a confession?,125623,Castle,69.42-75.16,castle_s05e24_seg02_clip_21,Beckett says she didn't need a confession. 3585,She wants to be president,She wants House,She wants a bigger bank account,She wants to be a mother,She wants unlimited life,3,Why does Cuddy say she doesn't have a perfect life yet when Becca describes her life as perfect?,125624,House M.D.,21.68-35.22,house_s05e06_seg02_clip_12,She wants to be a mother 3586,Billy shakes his head and looks down.,Billy thinks it is romantic and kisses Mandy.,Billy says he can't believe Mandy did this and walks away.,Billy is angry at Mandy and slams his fist on the table.,Billy doesn't respond and hugs Mandy. ,1,How does Billy react to Mandy after she says the only way he's going back to jail is over her dead body?,125625,Castle,3.26-17.21,castle_s03e07_seg02_clip_19,Billy thinks it is romantic and kisses Mandy. 3587,McManus has schizophrenia,McManus has bipolar,McManus has ADHD,McManus has Anxiety ,McManus has Depression,0,Which mental illness does McManus have according to Castle when he discusses him disappearing for long stretches?,125626,Castle,0-25.69,castle_s05e13_seg02_clip_15,McManus has schizophrenia 3588,"Beckett pushed both Ryan, and Esposito","The Swat Team pushed both Ryan, and Esposito","The Ice Cream man pushed both Ryan, and Esposito","The FBI pushed both Ryan, and Esposito","Crystal pushed both Ryan, and Esposito",3,"Who pushed both Ryan, and Esposito against the lockers when they were approaching them?",125627,Castle,16.86-24.16,castle_s08e13_seg02_clip_16,"The FBI pushed both Ryan, and Esposito" 3589,Almost every day,Many times a day,A few times a month,Three times a week,Every couple of hours,3,What does the patient say when House asks how often she has been doing it?,125628,House M.D.,50.61-62.58,house_s01e14_seg02_clip_16,Three times a week 3590,A bar.,A lounge.,A small diner.,A club,A restaurant.,4,Where is Joey when he asked the fan if he was Phoebe's fan?,125629,Friends,44.12-46.82,friends_s06e14_seg02_clip_05,A restaurant. 3591,He slams the door shut.,He walks down the stairs.,He got up off the couch.,He knocked on Penny's door.,He ran down the street.,0,What does Sheldon do after talking to Lenord?,125630,The Big Bang Theory,32.42-35.12,s01e09_seg02_clip_08,He slams the door shut. 3592,House extracts a plastic toy from the patient's stomach.,House extracts a large tumor from the patient's stomach.,House extracts a steak bone from the patient's stomach.,House extracts a tapeworm from the patient's stomach.,House extracts a hairball from the patient's stomach.,3,What does House extract from the patient's stomach after he makes the incision?,125631,House M.D.,53.48-65.36,house_s03e14_seg02_clip_23,House extracts a tapeworm from the patient's stomach. 3593,She moved to France.,She died.,She's a lesbian now.,She disowned Ted.,She ate a bad taco.,1,What happened to Ted's grandmother before this lunch date?,125632,How I Met You Mother,8.89-26.03,met_s02e03_seg02_clip_19,She died. 3594,last week,24 hours,14 hours,2 days ago,18 hours,2,How long ago did Ross say he had been on the date with Rachel after Joey asked why he was there?,125633,Friends,29.41-60.03,friends_s02e15_seg02_clip_08,14 hours 3595,Foreman is shocked because House begged him to stay,Foreman is shocked because House quit too,Foreman is shocked because House told him to leave,Foreman is shocked because House refused to let him leave,Foreman is shocked because House assaulted him,0,Why is Foreman shocked about Houses behavior before speaking with Cameron?,125634,House M.D.,0.43-8.6,house_s03e22_seg02_clip_11,Foreman is shocked because House begged him to stay 3596,A smile,Laughter ,Tears,Yelling,A look of not being amused and annoyed,4,What was Dr. Greene's response to Ross when he joked about libraries?,125635,Friends,0-12.92,friends_s03e07_seg02_clip_08,A look of not being amused and annoyed 3597,Question number 28.,Question number 29.,Question number 30.,Question number 27.,Question number 25.,0,What was the number of the first question when Phoebe started reading the quiz after Rachel walked in?,125636,Friends,0-9.41,friends_s02e19_seg02_clip_13,Question number 28. 3598,The clipboard,A picture of the black female victim,A book,A monitor,A chart,1,What does House show to Chase and Foreman before telling them the disease he believes the black female victim?,125637,House M.D.,45.97-79.65,house_s03e05_seg02_clip_20,A picture of the black female victim 3599,Gathering the dishes from the table.,Playing with the loose cloth belt on her clothing.,Looking at magazines.,Sitting on the sofa with her feet on the table.,Eating desert.,1,What is Alexis doing when Castle says i'm not going to like it.,125638,Castle,0-4.89,castle_s02e16_seg02_clip_24,Playing with the loose cloth belt on her clothing. 3600,Chase isn't a good doctor.,Chase lacks talent.,Chase doesn't want to be a doctor.,Chase wasted his talent.,Chase won't follow hospital rules. ,3,Why does Treiber say he treats Chase like an idiot when Chase asks?,125639,House M.D.,31.69-38.13,house_s08e20_seg02_clip_09,Chase wasted his talent. 3601,Gunther doesn't tell Rachel anything,Gunther tells Rachel to cover his shift,Gunther tells Rachel to take another shift,Gunther tells Rachel to go home for the day,Gunther tells Rachel that Terry wants her train again,4,What does Gunther tell Rachel after he asked if he could talk to her?,125640,Friends,15.97-29.21,friends_s03e10_seg01_clip_00,Gunther tells Rachel that Terry wants her train again 3602,A magazine.,A plastic toy.,His arm.,His cell phone,A bottle of beer.,4,What does Raj have resting on the arm of the chair before Stuart talks about dating two women?,125641,The Big Bang Theory,1.53-6.71,s09e21_seg02_clip_10,A bottle of beer. 3603,Princeton,Cambridge,UNC,NCSU,Duke,0,What university was the visiting doctor from when Sheldon mentioned her?,125642,The Big Bang Theory,9.76-20.14,s03e21_seg01_clip_01,Princeton 3604,Alexis turned in extra credit work.,Alexis called them up and pretended to be Castle.,Alexis slept with her professor,Alexis forged Castle's signature.,Alexis did a case free for the president of the college.,3,What did Alexis do when she made sure she got credit at her college for being an intern.,125643,Castle,71.81-75.36,castle_s08e01_seg02_clip_03,Alexis forged Castle's signature. 3605,Penny was talking to Amy on the phone.,Penny was getting dressed.,Penny was playing cards.,Penny was hugging Sheldon.,Penny was laying down.,4,What was Penny doing before Leonard mentioned a truce?,125644,The Big Bang Theory,0-8.7,s04e13_seg02_clip_11,Penny was laying down. 3606,Robin is dancing on a rug.,Robin is dancing on pizza.,Robin is dancing on a lake.,Robin is dancing on basketball court., Robin is dancing on the table top.,4,Where is Robin dancing with the boy in the vest after she takes his fry?,125645,How I Met You Mother,10.12-15.44,met_s02e09_seg02_clip_18, Robin is dancing on the table top. 3607,tounge depressor,stethoscope ,thermometer ,scaple ,needle ,1,What did Foreman have in his hand when he was examining his patient,125646,House M.D.,0-9.01,house_s03e11_seg02_clip_18,stethoscope 3608,kevin,Beckett,sheldon,ryan,Castle,4,who's birthday was Martha missing when she said she was going to be out of cell phone range?,125647,Castle,21.39-30.49,castle_s05e19_seg02_clip_00,Castle 3609,House said Wilson is ahead because it takes most people three bags to get to that stage of muscle spasm,House said Wilson is ahead because it takes most people two bags to get to that stage of muscle spasm,House said Wilson is ahead because it takes most people four bags to get to that stage of muscle spasm,House said Wilson is ahead because it takes most people five bags to get to that stage of muscle spasm,House said Wilson is ahead because it takes most people six bags to get to that stage of muscle spasm,1,Why did House say Wilson was ahead of the schedule when talking to him?,125648,House M.D.,56.44-67.36,house_s08e19_seg02_clip_12,House said Wilson is ahead because it takes most people two bags to get to that stage of muscle spasm 3610,She said that they could keep it.,She said to let it go,She said they look really happy,She said the puppy was up for sale,She said she didnt want the puppy. ,0,What does Phoebay say to the couple when they were holding the puppy?,125649,Friends,8.32-23.05,friends_s04e11_seg02_clip_19,She said that they could keep it. 3611,An alien head,A planet,A spacesuit,A control panel,A star,1,What is depicted on the wall behind Castle when he gets shocked,125650,Castle,40.25-44.32,castle_s05e06_seg02_clip_21,A planet 3612,Ted was reading a book on the couch.,Ted was doing pushups in the corner.,Ted was grabbing a drink from the kitchen.,Ted was working on a new architecture project.,Ted was on the ground crying.,0,What was Ted doing when Robin walked into the apartment?,125651,How I Met You Mother,36.32-39.02,met_s06e13_seg02_clip_15,Ted was reading a book on the couch. 3613,Phoebe is mad at Rachel.,Phoebe is on drugs.,Phoebe wants to catch a ride with Ross in his car.,Phoebe is mad at Joey.,Phoebe wants to go shopping.,2,Why does Phoebe flirt when she talks to Ross?,125652,Friends,0-8.42,friends_s07e14_seg02_clip_02,Phoebe wants to catch a ride with Ross in his car. 3614,Stacy says Howard,Stacy says Steve,Stacy says Mark,Stacy says John,Stacy says Jim,2,Who does Stacy say she wants to talk to tonight when she discusses staying with House?,125653,House M.D.,0-15.51,house_s02e11_seg02_clip_24,Stacy says Mark 3615,A microwave is behind Monica when she is listening to the answering machine,A stove is behind Monica when she is listening to the answering machine,A refrigerator is behind Monica when she is listening to the answering machine,A washer is behind Monica when she is listening to the answering machine,A dryer is behind Monica when she is listening to the answering machine,2,Which appliance is behind Monica when she is listening to the answering machine?,125654,Friends,0-5.27,friends_s06e22_seg02_clip_10,A refrigerator is behind Monica when she is listening to the answering machine 3616,Green.,Blue.,Black.,White.,Orange.,4,What color were the pillowcases Penny and Leonard were resting on when they were discussing Howard?,125655,The Big Bang Theory,0-5.58,s03e05_seg02_clip_04,Orange. 3617,A banana,Pie,A sandwich,Cookies,Popcorn,3,What does the older Phoebe feed Phoebe Buffet when she is in her kitchen?,125656,Friends,16.04-50.69,friends_s03e25_seg02_clip_04,Cookies 3618,How Ross broke his hand.,How to properly use air quotation marks.,Why he wanted to have a child with Carol in the first place.,Why Rachel and Ross have a good relationship.,Why Ross doesn't leave Rachel.,1,What doesn't Joey understand when talking to Ross?,125657,Friends,47.45-62.03,friends_s09e02_seg02_clip_16,How to properly use air quotation marks. 3619,I love you.,No you clearly need some help.,I want to be with you during this difficult time.,"Still, still, let me come for me.",As long as you are sure you will be ok.,3,"What did Ross say when Rachel said no, come on I'm totally ok?",125658,Friends,46.52-60.03,friends_s10e13_seg02_clip_01,"Still, still, let me come for me." 3620,A blue dog.,A red dog.,A blue horse.,A red horse.,A picture of Einstein.,0,What is on the framed poster under the neon arrow that says service when a fan walks up to Phoebe at the coffee shop?,125659,Friends,55.83-60.03,friends_s06e14_seg02_clip_04,A blue dog. 3621,Monica and Ross tell Joey their father told them they couldn't play football.,Monica and Ross tell Joey their mother told them they couldn't play football.,Monica and Ross tell Joey their grandmother told them they couldn't play football.,Monica and Ross tell Joey their uncle told them they couldn't play football.,Monica and Ross tell Joey their entire family told them they couldn't play football.,1,Who do Monica and Ross tell Joey told them they cannot play football when everyone is gathered in the kitchen?,125660,Friends,3.3-8.7,friends_s03e09_seg02_clip_01,Monica and Ross tell Joey their mother told them they couldn't play football. 3622,in a doctors office,In the operating room working on a patient,in the police station,in the hospital,in a room,1,Where were the doctors standing when House was watching them?,125661,House M.D.,0-23.77,house_s07e16_seg02_clip_21,In the operating room working on a patient 3623,Penny.,Leonard.,Sheldon.,Howard.,Raj.,0,Who approach the table after Raj grabbed the bottle?,125662,The Big Bang Theory,0-32.87,s01e05_seg01_clip_00,Penny. 3624,Ryan,Vikram,Castle,Beckett,Lanie,3,Who gets up after Esposito interrupts their conversation on the couch?,125663,Castle,30.67-36.99,castle_s08e07_seg02_clip_09,Beckett 3625,Marshall did not get much sleep and it made him cranky.,Marshall did not want her about Lily's bad day at work.,Marshall did not want to hear Lily talking about Max's small penis.,Marshall was annoyed by Lily's weird behavior.,Marshall was hungry and was taking his frustration out on Lily.,2,Why was Marshall yelling and acting irate when he was talking to Lily?,125664,How I Met You Mother,0.89-8.34,met_s06e05_seg02_clip_01,Marshall did not want to hear Lily talking about Max's small penis. 3626,Ted and Lily,Marshall and Lily,Barney's parents,Marshall and Robin,Robin and Marshall,0,Who does Barney tell about Nora nursing him back to health after he's well again?,125665,How I Met You Mother,45.16-61.03,met_s06e18_seg02_clip_00,Ted and Lily 3627,Telling Sheldon his good qualities,Kissing Sheldon,Giving Sheldon ice cream,Calling Sheldon names and giving tough love,Distracting Sheldon by talking about current events,3,How is Penny able to change Sheldon's attitude after Amy fails?,125666,The Big Bang Theory,24.97-46.42,s10e09_seg02_clip_07,Calling Sheldon names and giving tough love 3628,to the supermarket,to the shop,He left the hospital room,to another hospital,to the bathroom,2,"Where did Cofield go after he said ""because House created an atmosphere that promotes recklessness""?",125667,House M.D.,22.09-39.11,house_s08e11_seg02_clip_21,He left the hospital room 3629,That the way it was back then.,"Thats very kind of you to say, Our society has a long and rich history,",Not everybody gets to do it that way.,When I was younger.,Only time will tell.,1,"What did Mason Wood say after Castle said, This is a dream come true?",125668,Castle,6.11-12.22,castle_s08e14_seg02_clip_05,"Thats very kind of you to say, Our society has a long and rich history," 3630,Beckett was holding a cup of coffee,Beckett was holding a flyer with a picture of a man and a woman,Beckett was holding bottle water,Beckett was holding a folder with pictures,Beckett was holding a phone,1,"What was Beckett holding when she was standing with Ryan, Esposito and castle ?",125669,Castle,0-9.21,castle_s02e04_seg02_clip_08,Beckett was holding a flyer with a picture of a man and a woman 3631,Monica notices the paint on the walls,Monica notices Joey,Monica notices the new waiter,Monica notices the newspapers,Monica notices that she forgot her purse somewhere,3,What does Monica notice after she enters the shop?,125670,Friends,37.68-53.49,friends_s08e21_seg01_clip_00,Monica notices the newspapers 3632,At a coffee shop,At the gym,At a birthday party,He would not answer ,At the hospital ,2,Where did Paul say he was when he was being interrogated by Castle and Beckett ?,125671,Castle,0-11.7,castle_s05e11_seg02_clip_07,At a birthday party 3633,In the bathroom. ,Standing next to the door. ,Standing next to the counter. ,At the sink. ,On the floor. ,2,Where is Kathy when she is talking to Chandler?,125672,Friends,0-6.96,friends_s04e06_seg02_clip_19,Standing next to the counter. 3634,They sing,The punch Sheldin,They laugh,They walk out the room,They sit down,3,What do the four guys do after Howard reveals their only option,125673,The Big Bang Theory,0-42.12,s02e14_seg01_clip_01,They walk out the room 3635,Loser.,Oh really.,No way.,I guess.,Get over it.,3,What did Ross say after Dr. Li Spoke? ,125674,Friends,50.96-61.03,friends_s10e06_seg02_clip_12,I guess. 3636,She checked the answers in the back,She googled it,She called a friend,She did not get the answer,She mentioned the clue to Chandler who said Rent ,4,How did Rachel get the answer to her crossword when sitting on the couch?,125675,Friends,14.29-32.77,friends_s04e06_seg02_clip_07,She mentioned the clue to Chandler who said Rent 3637,Chase.,Wilson.,House. ,A lecturer on Foreman's computer. ,Cameron.,0,"Who suggests that Ian could have Juvenile Rheumatoid Arthritis, before Wilson Suggests Kawasaki's disease?",125676,House M.D.,28.03-32.79,house_s02e17_seg02_clip_16,Chase. 3638,a wig,a hat,glasses,a headset,a hood,3,What is Penny wearing on her head when she is playing the game?,125677,The Big Bang Theory,0-9.61,s02e03_seg02_clip_14,a headset 3639,She offers to give Leonard a back massage,She offers to try her best to get over it,She offers to speak with her father about Postponing the wedding,She offers Leonard 500$ to change his mind about his weekend trip,She offers to move in with Howards mother in order to get him to marry her.,2,What does Bernadette offer to do for Leonard when they are talking?,125678,The Big Bang Theory,41.65-53.64,s05e24_seg01_clip_00,She offers to speak with her father about Postponing the wedding 3640,Janice is standing in a kitchen.,Janice is standing in a bathroom.,Janice is standing in a closet.,Janice is standing at the bottom of the stair well.,Janice is standing in a shower.,3,Where is Janice standing when she says oh my god?,125679,Friends,22.69-29.13,friends_s10e15_seg02_clip_07,Janice is standing at the bottom of the stair well. 3641,Sheldon shows up.,The clip ends.,A return to the bar.,Stuart shows up.,Leonard shows up.,3,What happens after the science graphic?,125680,The Big Bang Theory,54.92-58.42,s06e11_seg02_clip_05,Stuart shows up. 3642,5,2,1,4,3,4,How many people were listening to Ryan when he made a toast?,125681,Castle,1.96-17.02,castle_s04e04_seg02_clip_27,3 3643,"When Ross tells Rachel that they did not hang out every night, he is standing next to a coffee machine.","When Ross tells Rachel that they did not hang out every night, he is standing next to a container of muffins.","When Ross tells Rachel that they did not hang out every night, he is standing next to an overturned chair.","When Ross tells Rachel that they did not hang out every night, he is standing next to another customer.","When Ross tells Rachel that they did not hang out every night, he is standing next to Chandler.",2,What is Ross standing next to when he tells Rachel that they did not hang out every night?,125682,Friends,35.85-42.09,friends_s02e07_seg02_clip_18,"When Ross tells Rachel that they did not hang out every night, he is standing next to an overturned chair." 3644,A where an animal is dressed like a person.,Your dessert,A Youtube clip of a man getting kicked in the groin.,A Youtube clip of an animal playing a musical instrument.,A sale ad for a gun store.,3,What does Ted say to never show Robin when he is teaching Barney?,125683,How I Met You Mother,0.3-13.02,met_s05e03_seg02_clip_07,A Youtube clip of an animal playing a musical instrument. 3645,house is wearing a blue shirt,house is wearing a pink shirt,house is wearing a green shirt,house is wearing a red shirt,house is wearing a black shirt,0,What color shirt is House wearing after talking with Cameron?,125684,House M.D.,51.76-57.17,house_s04e14_seg02_clip_14,house is wearing a blue shirt 3646,Killing eachoer.,Hugging.,Eating.,Sleeping.,Juggling.,1,What were the patient and the husband of the patient doing when Thirteen walked over?,125685,House M.D.,28.39-33.26,house_s06e11_seg02_clip_16,Hugging. 3647,Laying down on a sofa.,Laying down in a patient bed.,Standing in the hall.,Walking down the hall.,Sitting in a chair.,1,Where was House when Cameron was talking to him about blood tests?,125686,House M.D.,4.9-14.24,house_s02e24_seg02_clip_01,Laying down in a patient bed. 3648,Room 718,Room 717,Room 719,room 720,Room 715,1,Where was Mia after she mentions her agreement with Alex?,125687,Castle,6.7-11.16,castle_s07e18_seg02_clip_25,Room 717 3649,Tonya violated the infidelity clause. ,Tonya loaned Bill money. ,Child support.,Lawyer fees for court.,Bill violated the infidelity clause. ,4,"How does, Ryan explains, Bill owe Tonya money after Beckett says Tonya would be left with nothing?",125688,Castle,9.82-23.22,castle_s03e11_seg02_clip_15,Bill violated the infidelity clause. 3650,House has a white jacket on.,House has a blue jacket on.,House has an orange jacket on.,House has a gray jacket on.,House has a purple jacket on.,3,What color jacket does House have on when he discusses Stacy staying over?,125689,House M.D.,0-10.77,house_s02e11_seg02_clip_24,House has a gray jacket on. 3651,Chandler asks Ross why he remembers the specifc day,Chandler asks Ross what he meant,Chandler makes fun of Ross,Chandler doesn't do anything,Chandler wasn't present,2,What does Chandler do when he hears Ross remember a specific date on the night of the hockey game tickets?,125690,Friends,44.44-47.9,friends_s01e04_seg02_clip_01,Chandler makes fun of Ross 3652,Lying about where she spends her time ,Stealing her boyfriend,Leaving the apartment a mess all the time,Singing too loudly from the bathroom,Stealing her thunder ,4,What does Monica accuse Rachel of when they are arguing in the doorway?,125691,Friends,19.89-27.73,friends_s07e01_seg02_clip_16,Stealing her thunder 3653,Foreman's father was waiting outside.,Wilson was waiting outside.,House was waiting outside.,Foreman's pastor was waiting outside.,Foreman's mother was waiting outside.,2,Who was waiting outside after Cameron left Foreman's hospital room?,125692,House M.D.,78.57-90.83,house_s02e21_seg02_clip_17,House was waiting outside. 3654,Works for FBI,Works for cable company,Is his landlord,Works for phone company,Works for CIA,3,How was the man able to get Castle's phone number after claiming to have been with him?,125693,Castle,73-75.87,castle_s07e02_seg02_clip_08,Works for phone company 3655,Beckett puts them on a desk,Beckett tears them up,Beckett throws them away,Beckett hands them to Ryan,Beckett walks away from Esposito and reads them,4,What does Beckett do after she gets the papers from Esposito?,125694,Castle,30.22-40,castle_s06e04_seg02_clip_21,Beckett walks away from Esposito and reads them 3656,In the dead man's mouth.,In the dead man's front pants pocket.,In the left shoe of the dead man.,Underneath the dead man's body.,At the call history of the dead man's phone.,0,Where did Castle tell the detectives to look when they were checking over the dead man?,125695,Castle,58.53-65.56,castle_s01e06_seg02_clip_00,In the dead man's mouth. 3657,Kyle is wearing a bathing suit.,Kyle is wearing a bow tie and glasses.,Kyle is wearing a helmet.,Kyle is wearing a big fur coat.,Kyle is wearing headphones.,1,What is Kyle wearing before unlocking the apartment?,125696,Castle,32.79-40.64,castle_s06e08_seg02_clip_02,Kyle is wearing a bow tie and glasses. 3658,a beer bottle,a wine glass,a whisky glass,a bottle of water,nothing,1,what did house have in his hand when he walked into the bedroom with beckett?,125697,Castle,60.34-70.17,castle_s05e14_seg02_clip_26,a wine glass 3659,Somebody.,Yes.,No.,Not today.,Not over my dead body.,2,What did Miss Shipton say after Mason Wood said I need to speak to Castle alone.,125698,Castle,24.45-29.62,castle_s08e14_seg02_clip_05,No. 3660,Barney runs to the door.,Barney dances with Lily.,Barney looks to side alarmed and then down at his lap. ,Barney lays on the floor.,Barney plays chess with Ted.,2,What does Barney do after Jerry says 9:30? ,125699,How I Met You Mother,31.08-34.21,met_s06e19_seg02_clip_06,Barney looks to side alarmed and then down at his lap. 3661,Red,White,Blue,Green,Purple,1,What color hat is Monica wearing when playing table tennis?,125700,Friends,43.42-49.62,friends_s09e23-24_seg02_clip_41,White 3662,Chase,House,Foreman,Taub,Wilson,0,Who buries hs/her face in his/her hands when having a group discussion?,125701,House M.D.,7.44-12.09,house_s08e15_seg02_clip_23,Chase 3663,Lift a suitcase.,Go outside.,Sat on the couch.,Grab a book.,Run to Sheldon's bed.,4,"What did Amy do when Leonard said, who, who?",125702,The Big Bang Theory,0-47.06,s08e08_seg02_clip_16,Run to Sheldon's bed. 3664,Hank cannot diagnose Hank,House accused Hank of steroid use,Lola doesn't trust modern medicine,Lola just found out that Hank has been cheating on her,Hank has only gotten worse since he was admitted.,1,Why is Lola upset with House when they are discussing Hank's illness?,125703,House M.D.,0.45-40.22,house_s01e12_seg02_clip_08,House accused Hank of steroid use 3665,Raj,Chandler,Lily,Ross,Gunther,4,Who comes up and calls Joshua an idiot after Joshua says thanks?,125704,Friends,24.91-34.52,friends_s04e20_seg02_clip_12,Gunther 3666,He cut off his thumb playing World of Warcraft.,He cut his head open.,He tried to stick a USB into his brain.,He scraped his knee.,Nothing.,4,What is wrong with Sheldon when he is at the hospital with Leonard's mom/,125705,The Big Bang Theory,11.29-61.02,s02e15_seg02_clip_10,Nothing. 3667,Stuart does. ,Amy does. ,Howard does. ,Raj does. ,Penny does. ,4,Who stops by Bernadette's office when she is there?,125706,The Big Bang Theory,8.1-17.71,s10e02_seg02_clip_05,Penny does. 3668,You are all such losers.,I gotta get out of here.,I made a mistake.,It wasn't supposed to happen like this.,This one's deadly.,4,"What did Stephanie say about the gun before she told them ""Nobody move""? ",125707,Castle,62.34-70.03,castle_s05e06_seg02_clip_23,This one's deadly. 3669,Ryan asks Esposito to check the rear of the car to check for traces of blood.,Ryan asks Esposito to check the rear of the car to see if the trunk has been opened.,Ryan asks Esposito to check the rear of the car to see if the rear tires are flat.,Ryan asks Esposito to check the rear of the car for signs of an accident.,Ryan asks Esposito to check the rear of the car to check for bullet holes.,3,Why does Ryan ask Esposito to look near the rear of the car when investigating the road?,125708,Castle,66.03-81.02,castle_s07e01_seg02_clip_01,Ryan asks Esposito to check the rear of the car for signs of an accident. 3670,Rachel said they are still people with legs.,Rachel said they are still people with eyes.,Rachel said they are still looking at us.,Rachel said they are people looking for running partners.,Rachel said she was looking for a good guy.,1,How did Rachel describe the people after Phoebe told her she will never see those people again?,125709,Friends,41.72-60.03,friends_s06e07_seg02_clip_12,Rachel said they are still people with eyes. 3671,Night Time,The Afternoon,The Morning,Around Noon,Early Morning,0,What time of day is it when Sheldon is sitting and accompanied by a man?,125710,The Big Bang Theory,20.82-58.64,s05e06_seg02_clip_14,Night Time 3672,a mask,a winter coat,a suit and tie,a t-shirt,a basketball jersey,2,What is Barney wearing when he is at the bar?,125711,How I Met You Mother,4.17-7.45,met_s05e02_seg02_clip_12,a suit and tie 3673,The delivery driver.,An angry little girl.,A grandmother.,A little girl's father.,A white dog.,4,Who runs after Marshall after he eats a cookie?,125712,How I Met You Mother,34.54-47.38,met_s02e11_seg02_clip_14,A white dog. 3674,Adams,Cuddy,Wilson,Foreman,Park,0,How followed House after House left Ben's room?,125713,House M.D.,16.74-23.72,house_s08e06_seg02_clip_24,Adams 3675,Taub said its not amyloidosis.,Taub said to call House.,Taub said to get the crash cart.,Taub said to keep the oxygen on her.,Taub said to call the OR.,0,What did Taub say before they wheeled the young unconscious patient out of her room?,125714,House M.D.,0-3.56,house_s07e02_seg02_clip_09,Taub said its not amyloidosis. 3676,She said she's not dating the nurse man.,She said she's in love with the nurse man.,She said that she's just goofing around with the guy since she's also goofing around with Chandler so why not.,She said she did not know any nurse man.,She said she is in love with Chandler.,2,What did Monica told Chandler after he asked him about going out to a nurse man?,125715,Friends,28.21-36.02,friends_s09e10_seg02_clip_13,She said that she's just goofing around with the guy since she's also goofing around with Chandler so why not. 3677,On a bus,At her house,In a hospital bed,On an airplane,In an ambulance,2,Where is Jillian when she wakes up?,125716,Grey's Anatomy,0-85.11,grey_s03e13_seg02_clip_22,In a hospital bed 3678,They are celebrating Memorial Day,They are celebrating Christmas,They are celebrating 4th of July,They are celebrating Thanksgiving,They are celebrating St. Patrick's Day,3,Which holiday does Monica say they celebrating after Rachel comes in the house,125717,Friends,0-8.27,friends_s05e08_seg02_clip_06,They are celebrating Thanksgiving 3679,Music playing,A dog barking,A glass breaking,A women walking out with a baby carrier,Ross and Chandler,3,What interrupts Joey after he starts singing to Rachel?,125718,Friends,2.95-12.99,friends_s09e12_seg02_clip_13,A women walking out with a baby carrier 3680,The patient begged House to let her die this way,He gets off on torturing his patients like this,House is suffering from a mental break down,He already knew it was going to happen and what to do,House is shell shocked and has no idea what to do,3,Why is House so calm when the machine starts beeping and Lupe loses consciousness?,125719,House M.D.,10.01-33.68,house_s03e20_seg02_clip_12,He already knew it was going to happen and what to do 3681,Two trees,Two fake cavemen,Two houses,Two cars,Two dogs,1,What is Ross standing between when Rachel tells him he looks good?,125720,Friends,25.63-30.82,friends_s01e02_seg02_clip_01,Two fake cavemen 3682,Joey thinks he sees Richard.,Joey is looking for food.,Joey hears Chandler continue his idea.,Joey wants to ask the DJ to play a song.,Joey hears Phoebe calling his name.,2,Why does Joey turn back around after Chandler makes a suggestion?,125721,Friends,16.37-22.73,friends_s04e05_seg02_clip_17,Joey hears Chandler continue his idea. 3683,She wants to have one by the time she's 35.,She wants to have one before she turns 40.,She wants to have one before she turns 37.,She wants to have one before she turns 36.,She wants to have one before she turns 39.,0,What age does Rachel want to be when she had her first baby?,125722,Friends,3.36-6.44,friends_s07e14_seg02_clip_11,She wants to have one by the time she's 35. 3684,He is eating. ,He is sleeping. ,He is drawing. ,He is petting it. ,He is reading. ,3,What is Ross doing to the couch when he is sitting on it in the hallway?,125723,Friends,0-3.19,friends_s05e16_seg02_clip_14,He is petting it. 3685,Amy says that Stuart comforts Sheldon.,Amy says that Priya comforts Sheldon.,Amy says that Raj comforts Sheldon.,Amy says that Leonard comforts Sheldon.,Amy says that Penny comforts Sheldon.,4,Who does Amy say comforts Sheldon when she is talking to Leonard?,125724,The Big Bang Theory,26.85-34.78,s09e21_seg02_clip_10,Amy says that Penny comforts Sheldon. 3686,Regina Falangie.,Rachel.,Monica.,Carla.,Carol. ,0,Who does Phoebe say she is after the guard talks to her?,125725,Friends,51.06-59.03,friends_s05e23-24_seg02_clip_40,Regina Falangie. 3687,In the wall,In the couch,In the door,In the floor,In the ceiling,0,Where did Chase find the bottle of alcohol after searching the area?,125726,House M.D.,27.61-38.41,house_s06e08_seg02_clip_07,In the wall 3688,Hunt has a key in his hand.,Hunt has a gun in his hand.,Hunt has a phone in his hand .,Hunt has a pillow in his hand.,Hunt has a alarm clock in his hand.,2,What is in Hunt's hand when he is talking to Castle in a bedroom ?,125727,Castle,49.96-54.46,castle_s05e16_seg02_clip_21,Hunt has a phone in his hand . 3689,That you need to use your imagination.,That the picture is wrong.,That every bartender makes it differently.,To just drink it.,That he doesn't know what he is talking about.,2,What did Penny say after Sheldon says that's not how it looks in the picture?,125728,The Big Bang Theory,15.91-42.02,s04e07_seg02_clip_14,That every bartender makes it differently. 3690,Beckett,Castle,Ryan,York,Gordon,1,Who held the deed after Esposito?,125729,Castle,26.85-32.77,castle_s03e14_seg02_clip_08,Castle 3691,a jacket,a sandwich,a soda pop,a file for evidence,a cup of coffee,4,what does castle bring becket when he arrives to the police station?,125730,Castle,59.36-69.02,castle_s03e17_seg02_clip_10,a cup of coffee 3692,A necklace,Neck Brace,A bandana,A knife,A rope,1,What does the guy have on his neck when he is wheeled in by paramedics?,125731,Grey's Anatomy,44.77-51.04,grey_s03e24_seg02_clip_04,Neck Brace 3693,his knee cap,a thigh muscle,a tattoo,a strong leg muscle,a leg with no scars,1,What did House say he could remember being there when he was standing with his pants down?,125732,House M.D.,8.05-15.65,house_s02e13_seg02_clip_18,a thigh muscle 3694,Lily's car,a limo,Ted's car,Barney's car,a taxi,4,What did Ted take his date in when he went out?,125733,How I Met You Mother,0-13.96,met_s03e13_seg02_clip_16,a taxi 3695,Barker says she is a veternarian.,Barker says she is a canine therapist.,Barker says she is a service dog trainer.,Barker says she is a dog whisperer.,Barker says she is a dog groomer.,1,What kind of doctor does Barker tell Beckett and Castle she is when talking about Francisco?,125734,Castle,41.41-47.64,castle_s04e13_seg02_clip_07,Barker says she is a canine therapist. 3696,A phone,A chart,A journal,A book,A file,0,What did Park pick up when she was in the room with Foreman?,125735,House M.D.,72.36-91.03,house_s08e02_seg02_clip_24,A phone 3697,house believes her eye are tricking her,house believes the symptoms are real. ,house believes she has PTSD,house is just being lazy,house believes that her dad is coaching her,2,why does house believe that the patient's brain is fine after Foreman gives him ideas of what the problem might be?,125736,House M.D.,47.26-65.72,house_s02e13_seg02_clip_08,house believes she has PTSD 3698,raccoons,dogs,cats,mice,rabbits,4,What were in the cages in the back of the van when Ted said he'll run up and get his bag of supplies?,125737,How I Met You Mother,1.86-8.37,met_s06e05_seg02_clip_10,rabbits 3699,House was at the doorpost,House was sitting beside the bed,House was leaning on the wall,House was sitting on the bed,House was standing beside the shelf,1,Where was House when he was talking to Benjamin about the mistake he made,125738,House M.D.,65.43-81.46,house_s08e03_seg02_clip_08,House was sitting beside the bed 3700,They started to hurt.,Nothing.,They turned color. ,They grew bigger.,They went numb.,4,What happened to Brandon's fingers when the surgery was being performed?,125739,House M.D.,10.34-18.34,house_s01e03_seg02_clip_21,They went numb. 3701,Sheldon.,Howard?,Penny.,Raj.,Leonard.,3,Who grab a bottle after Leonard talked?,125740,The Big Bang Theory,0-30.7,s01e05_seg01_clip_00,Raj. 3702,Punched him. ,Pushed him back into the bed. ,Patted him on the shouder. ,Slapped his knee. ,Slapped his face. ,2,What did Castle do before Alan grimaced in pain?,125741,Castle,0-3.13,castle_s08e19_seg02_clip_07,Patted him on the shouder. 3703,Crime scene photos,Handcuffs,A cup of coffee,A case file,A cell phone,3,What is in front of Beckett when she is interrogating Eddie?,125742,Castle,58.71-65.54,castle_s03e19_seg02_clip_23,A case file 3704,Barney is arguing with the bartending about his bill.,Barney is trying to pick up his briefcase.,Barney is trying to find a place to sit.,Barney is watching Marshall and the girl and holding a drink in his hand. ,Barney is trying to read a book but he is having trouble reading the fine print. ,3,What is Barney doing when Marshall is saying goodbye to a girl in a bar?,125743,How I Met You Mother,26.71-40.07,met_s02e02_seg02_clip_08,Barney is watching Marshall and the girl and holding a drink in his hand. 3705,Leonard wants to propose to Penny,Leonard is getting married to someone else.,Penny is getting married to someone else.,Leonard is at a government office for marriage licenses.,Leonard is getting a marriage license. ,3,Why is it awkward for Leonard after he proposed to Penny in the past?,125744,The Big Bang Theory,22.37-36.68,s05e24_seg02_clip_04,Leonard is at a government office for marriage licenses. 3706,Tommy dated a stripper.,Joey dated a stripper.,Chandler dated a stripper.,He dated a stripper.,Gunther dated a stripper.,1,Who did Ross say dated a stripper when he was talking to Rachel?,125745,Friends,41.12-50.12,friends_s03e01_seg02_clip_11,Joey dated a stripper. 3707,Mia wanted a second helping,Mia was spending time with her,Castle and Beckett was married,She just won some money,Her favorite show came on,0,Why did Martha say she was glad when handing Mia a bowl?,125746,Castle,4.53-10.86,castle_s08e05_seg02_clip_20,Mia wanted a second helping 3708,white,green,red,blue,black,1,What color are the grocery carts when Penny and Sheldon are shopping?,125747,The Big Bang Theory,40.89-43.3,s01e04_seg02_clip_03,green 3709,why are you doing this?,this is so stupid.,this is going to be awesome.,won't work.,we going to blow up.,3,What did Sheldon say after past Raj said cool?,125748,The Big Bang Theory,0-40.1,s03e22_seg02_clip_14,won't work. 3710,Chase.,House.,Cameron.,Foreman.,A nurse.,3,Who tries to calm Jessica's mother after the attack.,125749,House M.D.,29.26-34.29,house_s01e16_seg02_clip_06,Foreman. 3711,he is sitting down,he is pacing the floor,he is writing ,he is lifting weights,he is ordering pizza,0,What is Sheldin doing after the men walk out?,125750,The Big Bang Theory,0-44.41,s02e14_seg01_clip_01,he is sitting down 3712,Blue ,Red,Yellow,White,Black,1,What color are Rachel's shows when she is eating brunch?,125751,Friends,27.14-29.03,friends_s10e11_seg02_clip_12,Red 3713,She was shy.,She slept with him.,She was confused.,She found Dr Burke.,She answered the questions.,1,Why did Meredith run after she found out who Dr Shepherd was?,125752,Grey's Anatomy,22.55-57.06,grey_s01e01_seg02_clip_05,She slept with him. 3714,Because the nerves were too damage,Because the bones in his leg were broken too badly,Because House created an atmosphere that promotes recklessness,Because the can't afford the procedure to make him walk again,Because he could never walk in the first place,2,Why did Cofield say that the guy in the hospital bed would never walk again when he was speaking to him?,125753,House M.D.,11.96-21.63,house_s08e11_seg02_clip_21,Because House created an atmosphere that promotes recklessness 3715,A gun,A book,A rock,An implant,A pen,3,What did Mark has in his hand when he showed it to Mrs. Niles,125754,Grey's Anatomy,6.7-11.61,grey_s03e05_seg02_clip_12,An implant 3716,Joey,Rachel,Monica,Ross,Rachel's boss,4,Who does Chandler say took it really well after Rachel says he broke a promise?,125755,Friends,18.39-23.14,friends_s04e03_seg02_clip_10,Rachel's boss 3717,Read her novel,Find her a date,Be her date to a fundraiser,Babysit her grandchildren,Be a bachelor for her charity auction,0,What does Castle's mother make him promise to do after Oona leaves?,125756,Castle,49.3-67.44,castle_s04e18_seg02_clip_26,Read her novel 3718,Trapper John runs away,Trapper John steps on the phone,Trapper John starts singing,Trapper John starts laughing,Trapper John gives Castle a hug,1,What does Trapper John do after he hangs up the phone?,125757,Castle,40.05-46.88,castle_s04e07_seg02_clip_02,Trapper John steps on the phone 3719,Curled in a chair.,In the bed with his brother.,On the floor at the foot of the bed.,In the hospital bed on the other side of the room.,In the hallway outside of the room.,0,Where is Evan sleeping when Foreman is talking about treating his brother?,125758,House M.D.,18.16-24.21,house_s05e08_seg02_clip_21,Curled in a chair. 3720,Chandler,Ross,Cindy,Phoebe,Joey,0,Who is Monica going to live with after living with Rachel?,125759,Friends,30.83-38.68,friends_s10e10_seg02_clip_16,Chandler 3721,Sheldon takes Amy to dinner.,Sheldon walks over to the trashcan.,Sheldon goes to the front office of the storage facility.,Sheldon goes to the bathroom.,Sheldon goes to wait for Amy in the car.,1,Where does Sheldon go after he leaves the storage locker?,125760,The Big Bang Theory,41.49-61.02,s09e19_seg02_clip_16,Sheldon walks over to the trashcan. 3722,Phoebe notices some writing on the wall.,Phoebe sees the view from the window.,Phoebe sees a good-looking neighbor.,Phoebe sees a cat in the windowsill. ,Phoebe sees new sconces.,4,What does Phoebe notice after she laments all the changes done to the apartment?,125761,Friends,47.41-54.8,friends_s07e10_seg02_clip_16,Phoebe sees new sconces. 3723,They are at a concert. ,They are in a store. ,They are at a movie. ,They are at a baseball game. ,They are in a restaurant. ,3,Where is the gang when they are spending time together?,125762,The Big Bang Theory,46.22-56.02,s08e03_seg02_clip_13,They are at a baseball game. 3724,Carrying his suitcase,Video tapping him ,Handing him a cup of coffee,Had his hand on his shoulder,Holding a microphone up to him,1,What was Joey doing to Chandler when they walked out of the hotel?,125763,Friends,0-4.4,friends_s04e23-24_seg02_clip_02,Video tapping him 3725,He was trying to find the witness to a crime,He was trying to get the kids to feel empowered,He was helping the kids with the math,He was trying to spend more time with his son,He was trying to find the school bullies,0,What was the reason for Castle interacting with the kids when he was in the classroom?,125764,Castle,18.71-53.91,castle_s07e04_seg02_clip_14,He was trying to find the witness to a crime 3726,An actor,Mr. weisbergs lawyer,No one,Ellie monroe,Mr. weisbergs maid,3,Who did mr. weisberg say he was with when beckett asked for an alibi?,125765,Castle,17.4-27.74,castle_s02e20_seg02_clip_23,Ellie monroe 3727,For carpenter,For fencing,For flooring,For roofing,For his car,0,What does Morris say he used the nail gun for after Beckett tells him they found his fingerprints on it?,125766,Castle,33.82-42.16,castle_s03e15_seg02_clip_04,For carpenter 3728,Monica had been busy planning her wedding. ,Monica had been busy working too many hours. ,Monica had been busy reorganizing her apartment. ,Monica had been busy with her side catering business. ,Monica had been busy with organizing her friends' lives. ,0,What did Monica say she was too busy with when she said she didn't realize all the things she'd be giving up?,125767,Friends,56.14-62.03,friends_s07e18_seg02_clip_05,Monica had been busy planning her wedding. 3729,The Tulsa Ramada.,The Tulsa Hilton.,The Tulsa Marriott.,The Tulsa Holiday Inn.,The Tulsa Motel.,0,Where will Monica say she will have her second honeymoon when she decides to go visit Chandler.,125768,Friends,51.7-59.52,friends_s09e04_seg02_clip_00,The Tulsa Ramada. 3730,He hits her with a newspaper. ,He pats her on the head. ,He braids her hair. ,He spills water on her head. ,He kisses her forehead. ,4,What does Ross do to Monica's head after he speaks to her? ,125769,Friends,14.73-23.05,friends_s02e02_seg02_clip_01,He kisses her forehead. 3731,An automobile emerges from a parking garage at high speed and nearly runs him over.,Window washing equipment drops from a tall building and lands inches from his head.,A tree being pruned has one of its large branches crash down in front of his feet.,"A bicyclist loses control, hits a curb, and flies headlong into Castle.","Castle trips over a curb, loses his balance, and is prevented from falling into traffic by Esposito and Ryan.",1,How is Castle's fear magnified while walking down the street after Esposito and Ryan tell him that his being marked for death is all in his head?,125770,Castle,53.29-64.3,castle_s08e21_seg02_clip_15,Window washing equipment drops from a tall building and lands inches from his head. 3732,handling a severed hand,handling a severed foot,putting stitches,checking blood pressure,patting off sweat,1,what is yang doing in the room when she is with derek performing surgery?,125771,Grey's Anatomy,75.62-85.23,grey_s02e06_seg02_clip_03,handling a severed foot 3733,In Howard's kitchen,In the comic book store,In a van,In an airplane,On a train ,2,"Where is Sheldon, Raj, Howard, and Leonard when they're talking?",125772,The Big Bang Theory,0-8.2,s09e03_seg02_clip_03,In a van 3734,Eat dinner together,Go to a basketball game,Strip Club,Party hard!,Watch Baywatch reruns,1,What are Joey and Chandler going to do after Chandler gets home tomorrow?,125773,Friends,42.23-52.95,friends_s09e09_seg01_clip_00,Go to a basketball game 3735,Joey is lying in bed.,Joey is standing next to the door.,Joey is sitting on the couch.,Joey is sitting at a bar.,Joey is standing outside.,2,Where is Joey when Monica and Rachel are talking to him?,125774,Friends,0-4.29,friends_s05e06_seg02_clip_06,Joey is sitting on the couch. 3736,Sheldon stand up.,Sheldon stay sit.,Sheldon almost broke his arm.,Sheldon sat on the floor.,Sheldon drunk beer.,0,What did Sheldon after fixing his device.,125775,The Big Bang Theory,0-66.33,s05e07_seg02_clip_08,Sheldon stand up. 3737,Monica picks up the phone and starts dialing,Petes mom comes on the television phone. ,Monica says that she doesn't want to bother her mom right now,Ross runs out of the room to grab a telephone ,Monica says that she will call her mom later on this evening. ,1,"What happens when Ross tells Monica to ""call mom, call mom""",125776,Friends,34.29-42.04,friends_s03e23_seg02_clip_08,Petes mom comes on the television phone. 3738,Police officers,Cats,Rats,Firefighters,Dogs,4,What members of the fire department could not smell anyone when the fire captain led the the search for a trapped person,125777,House M.D.,23.72-35.82,house_s06e21_seg02_clip_04,Dogs 3739,Ted kisses Robin.,Ted hisses and shakes his head.,Ted lays on the floor.,Ted runs to the door.,Ted looks out the window.,1,What does Ted do before he says no?,125778,How I Met You Mother,0-2.12,met_s04e01_seg02_clip_13,Ted hisses and shakes his head. 3740,Esposito and Ryan started laughing.,Esposito and Ryan walked away.,Esposito and Ryan started dancing.,Esposito and Ryan started screaming.,Esposito and Ryan started jumping in the air. ,1,"What did Esposito and Ryan do after Montgomery said yeah, uh-huh?",125779,Castle,2.33-10.7,castle_s03e13_seg02_clip_03,Esposito and Ryan walked away. 3741,He was going to work late. ,To the movies.,He had a date.,He was going to the comic book store. ,To girl's night.,4,Where did Raj say he was going after Howard asked him if he wanted to do something Friday night?,125780,The Big Bang Theory,5.19-19.22,s07e07_seg02_clip_00,To girl's night. 3742,The mom goes outside,The mom takes off her coat,The mom does a flip,The mom leaves,The mom runs away,1,What does the mom do when she says she cannot take it anymore?,125781,House M.D.,2.36-6.74,house_s01e08_seg02_clip_06,The mom takes off her coat 3743,Chase,Taub,Foreman,House,Wilson,2,Who asked Ruby if she liked PPTH when she was at the nurses station?,125782,House M.D.,81.47-87.32,house_s07e18_seg02_clip_08,Foreman 3744,It was love at first sight.,It was so-so.,It was great! ,It was awful,One night stand material.,3,How did Phoebe's date go after she heard what Ross had to say the day before?,125783,Friends,11.91-27.79,friends_s09e04_seg02_clip_03,It was awful 3745,He won the lottery,He wants to take her to Greece,He wants to break up with her,He wants the relationship to move forward,He wants her to work for him,3,What does Gary tell Phoebe after they sit down?,125784,Friends,44.6-54.06,friends_s05e21_seg02_clip_07,He wants the relationship to move forward 3746,A teddy bear.,Nothing.,Flowers.,A backpack.,His cellphone.,2,What is Damien holding when he walks into Julia's hospital room?,125785,House M.D.,7.56-11.11,house_s06e18_seg02_clip_12,Flowers. 3747,He says you are creepy,He saids Love you mom,He says get out,He says go to work,He said 'I do.',4,What does Leonard say before his mother hugs him?,125786,The Big Bang Theory,0-36.31,s03e11_seg02_clip_15,He said 'I do.' 3748,James is in the driveway of Sam's house,James is in the backyard of Sam's house,James is at the front door of Sam's home,James is in his car,James is inside Sam's house,2,Where is James when he is introducing himself to Sam Gibbs?,125787,How I Met You Mother,0-8.48,met_s06e02_seg02_clip_11,James is at the front door of Sam's home 3749,Addison is anxious because she is afraid Meredith hates her.,Addison is anxious because she wants to know if Meredith was outside her house the night before.,Addison is anxious because she wants to be friends with Meredith.,Addison is anxious because she wants to tell Meredith to stay away from Derek.,Addison is anxious because she wants to know if Meredith is sleeping with her husband.,4,Why is Addison anxious when talking to Meredith?,125788,Grey's Anatomy,30.21-73.95,grey_s02e25_seg02_clip_11,Addison is anxious because she wants to know if Meredith is sleeping with her husband. 3750,Good for me,nothing,he goes to the kitchen,he sits down,He Cries,0,What did Sheldin say after the scene starts,125789,The Big Bang Theory,2.95-59.02,s01e14_seg02_clip_09,Good for me 3751,On the couch at work. ,On the couch in Joey's apartment. ,On the couch in her apartment. ,On the couch in the coffee shop. ,On the couch in Monica's apartment. ,4,Where is Phoebe when she is reading a magazine?,125790,Friends,0-2.7,friends_s06e18_seg02_clip_10,On the couch in Monica's apartment. 3752,House think the man has drugs because he just is,House think the man has drugs because he is a drug dealer,House think the man has drugs because he is a liar,House think the man has drugs because he is sneaky,House think the man has drugs because he is a teenager,4,Why does House think the man has drugs when talking to Foreman,125791,House M.D.,22.51-33.99,house_s01e08_seg02_clip_00,House think the man has drugs because he is a teenager 3753,House is never right,He doesn't like House,He thinks House is stupi,He won't listen,He does the opposite of what House tells him ,3,"Why does House say he doesn't want to tell the patient's doctor about her condition when talking to Chase, Taub and Foreman about her diagnosis?",125792,House M.D.,31.4-40.96,house_s07e11_seg02_clip_13,He won't listen 3754,Howard screams.,Howard leans back and sighs.,Howard hits Stuart.,Howard walks out the door.,Howard rides a bike.,1,What does Howard do after he looks out the window?,125793,The Big Bang Theory,25.21-27.61,s10e05_seg02_clip_05,Howard leans back and sighs. 3755,the cleaning lady,Ted,Barney,Robin,no one tells Marshall that it is not Lilly's shampoo,3,Who's shampoo does Marshall discover the bottle really belongs to after describing the scent?,125794,How I Met You Mother,44.97-56.14,met_s02e01_seg02_clip_02,Robin 3756,angry,shy,embarassed and happy,irritated,bored,2,How did Leonard feel when Mrs. Latham said Leonard was handsome?,125795,The Big Bang Theory,24.68-40.66,s04e15_seg02_clip_13,embarassed and happy 3757,He turned away.,He took it from him.,He moved over to look in it.,He closed it.,He took a picture of it.,2,What did Castle do when Ryan opened up the folder?,125796,Castle,27.68-31.7,castle_s03e11_seg02_clip_15,He moved over to look in it. 3758,Beckett said it could have been Michael Smith,Beckett said it could have been Vulcan Jones,Beckett said it could have been Sammy Cooper,Beckett said it could have been 3XK,Beckett said it could have been Alex Olympia ,3,Who else did Beckett say could have taking Castle before he got married,125797,Castle,84.84-91.72,castle_s07e01_seg02_clip_07,Beckett said it could have been 3XK 3759,Batman.,A DJ.,Supergirl.,A nurse.,A potato.,3,What costume was Mona wearing when she called Ross her hero?,125798,Friends,0-5.04,friends_s08e06_seg02_clip_16,A nurse. 3760,Chips,Popcorn,Chicken wings,Pizza,Tacos,1,What food is Stella eating when Ted gets off the couch?,125799,How I Met You Mother,9.09-15.16,met_s04e01_seg02_clip_13,Popcorn 3761,Castle and Beckett feel turned on by the poetry.,Castle and Beckett feel depressed after reading some of the things Greg wrote.,Castle and Beckett feel amused and entertained by the letters.,Castle and Beckett feel annoyed that they have to read these letters.,Castle and Beckett consider quitting their jobs as a result of how bored they feel.,2,How do Castle and Beckett feel after reviewing the love aspects of the letters?,125800,Castle,57.35-91.03,castle_s03e05_seg02_clip_18,Castle and Beckett feel amused and entertained by the letters. 3762,A petition,The lease,A permission slip,The roommate agreement,A blank check,3,What did Sheldon want Leonard to sign before he left?,125801,The Big Bang Theory,8.1-11.4,s05e15_seg02_clip_13,The roommate agreement 3763,A basket,Flowers,Her favorite soft drink,A list of her favorite songs,Balloons,1,What does bring Damien bring with him when he visits Julia in the hospital?,125802,House M.D.,7.56-22.23,house_s06e18_seg02_clip_12,Flowers 3764,he is ice cold,he is passed out,he ODed on vicodin,he is delirious ,he is missing,4,Why are Foreman and Wilson worried about House when they are at his house?,125803,House M.D.,0-11.64,house_s08e22_seg02_clip_11,he is missing 3765,None of the customers stop for a sample of Bijan for men.,1 customer stops for a sample of Bijan for men.,2 customers stop for a sample of Bijan for men.,3 customers stop for a sample of Bijan for men.,4 customers stop for a sample of Bijan for men.,0,How many customers stop for a sample when Joey offers them Bijan for me?,125804,Friends,6.41-34.18,friends_s02e02_seg02_clip_04,None of the customers stop for a sample of Bijan for men. 3766,Castle suggested a political thriller.,Castle suggested to the group he would write an autobiographical memoir of his childhood.,None. Castle said maybe he'd take a break from his writing career and support his wife full-time.,Castle shared with the group he would like to try his hand at writing science fiction.,Castle told the group that he would look into writing historical non-fiction.,0,What book genre did Castle tell the group that he may write after the group asked him what he would write about if Beckett chose to run for office?,125805,Castle,30.67-33.59,castle_s07e23_seg02_clip_27,Castle suggested a political thriller. 3767,Ross,Herself,Monica,Joey,Her sister ,2,Who does Rachel announce is moving when talking to Phoebe in the apartment?,125806,Friends,0-8.85,friends_s06e06_seg02_clip_12,Monica 3768,drinking a cup of coffee,sitting at his desk,getting in the car,eating,drinking a soda,3,What is Sheldon doing when Seibert says they have to shake a few hands?,125807,The Big Bang Theory,0-5.06,s04e15_seg01_clip_02,eating 3769,Joey did not find the women attractive.,Joey was too busy trying to find a monkey named Marcel.,Joey did not want to waste his energy helping someone else.,Joey had to go to work.,Joey found the women annoying.,1,Why did Joey not want to help two women after Chandler suggested they should?,125808,Friends,16.54-22.81,friends_s01e19_seg02_clip_14,Joey was too busy trying to find a monkey named Marcel. 3770,Ross was waiting for Emily. ,Ross was waiting for Frank. ,"There was no one Ross was waiting for, her worked at the airport. ",Chandler was who Ross was waiting for. ,Ross was waiting for Rachel. ,0,Who was Ross waiting for when he sat in the airport? ,125809,Friends,48.98-59.23,friends_s05e01_seg02_clip_15,Ross was waiting for Emily. 3771,He blinked rapidly.,He took a drink of his coffee.,He slammed his book shut.,He tipped the waitress.,He took a bit of his donut.,2,What did Ross do before he asked Monica and Chandler if they called the cops?,125810,Friends,0-8.61,friends_s07e15_seg02_clip_12,He slammed his book shut. 3772,Sheldon is afraid his claustrophobia is getting the best of him.,Sheldon is worried he and Raj will never get out of the tunnel.,Sheldon feels frightened that his career has stalled. ,Sheldon is worried about Amy.,Sheldon is afraid of living alone.,2,Why does Sheldon feel frightened when talking to Raj?,125811,The Big Bang Theory,0-18.51,s08e06_seg02_clip_16,Sheldon feels frightened that his career has stalled. 3773,He said nothing.,He said shoot.,He said nuts.,"Ted said, Tantrum.",He said are you kidding.,3,"What did Ted say after he said oh my God that sucks, I am going in the kitchen to do push-ups?",125812,How I Met You Mother,60.16-61.38,met_s05e05_seg02_clip_00,"Ted said, Tantrum." 3774,Her cell phone.,Street phone.,Her hotel phone.,Her house phone.,Through letters.,2,How did the blackmailer contact Amber according to Esposito after he said there were no unusual calls?,125813,Castle,33.76-41.86,castle_s03e23_seg02_clip_13,Her hotel phone. 3775,6:30.,6:00.,7:30.,7:00.,7:15.,3,How late did the DA's personal assistant say never stayed passed at work before Castle asked how late the DA works?,125814,Castle,0-7.8,castle_s03e19_seg02_clip_17,7:00. 3776,By his haircut,By his broken arm,By his tattoo,By his broken leg,By his name tag,2,How will Ricky identify the Russian when going undercover?,125815,Castle,71.75-74.6,castle_s02e01_seg02_clip_16,By his tattoo 3777,Her memoirs,A forward for a book,A poem ,Her masters dissertation ,A letter to her divorce lawyer,1,What does Joey's girlfriend say she is writing when she is talking about her day?,125816,Friends,48.27-60.34,friends_s09e21_seg02_clip_03,A forward for a book 3778,Eric is looking at a book.,Eric is looking at a computer screen.,Eric is looking at a video.,Eric is looking at a photograph.,Eric is looking at his cell phone.,3,What is Eric looking at when Beckett is questioning him?,125817,Castle,15.64-17.48,castle_s05e21_seg02_clip_16,Eric is looking at a photograph. 3779,House's mother is upset because Thomas calls House a lunatic.,House's mother is upset because Thomas is denying House is his son.,House's mother is upset because Thomas doesn't remember having children.,House's mother is upset because Thomas says that he's disappointed in House.,House's mother is upset because Thomas is swearing at the dinner table.,0,Why is House's mother upset with Thomas after telling him House is his son?,125818,House M.D.,7.34-12.39,house_s08e14_seg02_clip_21,House's mother is upset because Thomas calls House a lunatic. 3780,weather Amy needs a makeover,weather Sheldon has feelings,weather Penny cheated on Leonard,how long to bake a cake for,weather you can pick things up in outer space,4,What are Penny and Amy arguing about when Amy is pacing behind the couch?,125819,The Big Bang Theory,33.82-41.67,s06e13_seg02_clip_13,weather you can pick things up in outer space 3781,Phoebe.,Rachel.,Jasmine.,Joey.,The girl from the copy place.,1,Who does Ross turn around and see after he mentions the girl in the copy place?,125820,Friends,30.82-46.69,friends_s03e16_seg02_clip_07,Rachel. 3782,"Marshall said, you can come to my school it's much easier. ","Marshall said, it's okay because you look beautiful.","Marshall said, well if work is killing you when is your funeral.","Marshall said, I can help you with your workload. ","Marshall said, he was in the third year at Columbia law so if the workload does kill you I can probably get a conviction. ",4,What did Marshall say after the girl told him her workload was killing her?,125821,How I Met You Mother,0.31-5.9,met_s02e02_seg02_clip_08,"Marshall said, he was in the third year at Columbia law so if the workload does kill you I can probably get a conviction. " 3783,Barney and Ted were unable to make Marshall dance.,Barney and Ted were unable to make Marshall eat something.,Barney and Ted were unable to make Marshall happy.,Barney and Ted were unable to make Marshall talk.,Barney and Ted were unable to make Marshall laugh.,4,What were Barney and Ted unable to do when they were with Marshall?,125822,How I Met You Mother,5.31-8.26,met_s06e14_seg02_clip_14,Barney and Ted were unable to make Marshall laugh. 3784,Wade said he wanted to date Wade's girlfriend.,Wade said he wanted to make a payment on his loan.,Wade said he wanted to go out to eat with Wade.,Wade said he wanted to get drugs.,Wade said he wanted to buy his house.,1,What does Wade say is the reason Vega called him when he discusses loan borrowing with Castle and Beckett?,125823,Castle,20.09-31.71,castle_s02e15_seg02_clip_06,Wade said he wanted to make a payment on his loan. 3785,A fertilized egg.,Eggs.,Semen.,Sperm.,A sex worker.,3,What is Monica trying to obtain when talking to Chandler?,125824,Friends,0-7.41,friends_s03e03_seg02_clip_10,Sperm. 3786,Water,Coke,Coffee,Tea,Juice,2,What does Castle hand Beckett when he walks up?,125825,Castle,24.31-32.86,castle_s03e16_seg02_clip_06,Coffee 3787,Esposito.,Mark.,Castle.,Beckett.,Cop.,1,Who come to talk to Captain Montgomery after showing his credentials?,125826,Castle,23.69-31.87,castle_s03e16_seg02_clip_11,Mark. 3788,Ted is teaching Barney about Robin,Ted is teaching Barney how to pick up women.,Ted is teaching Barney to be a better friend than Marshall,Ted is teaching Barney about architecture ,Ted is teaching Barney how to stay on Lily's nice list,0,Why is Ted teaching Barney when they are in the classroom?,125827,How I Met You Mother,2.42-58.44,met_s05e03_seg02_clip_07,Ted is teaching Barney about Robin 3789,yellow,blue,orange,brown,pink,0,what color are the flowers in the background when they start talking?,125828,Friends,4.65-62.03,friends_s09e05_seg02_clip_14,yellow 3790,In front of her,On his head,Behind the couch,Across the room,Nowhere visiable,2,Where was Joey standing after Chandler and Monica left the reception desk?,125829,Friends,49.99-55.24,friends_s08e02_seg01_clip_00,Behind the couch 3791,Clapped.,Took off her glasses.,Put on her glasses.,Winked.,Signaled a thumbs up. ,2,What did Whitner do after House said she's the winner?,125830,House M.D.,13.2-20.48,house_s03e13_seg02_clip_02,Put on her glasses. 3792,a studio taping,a bar mitzvah,a children's party,a lecture,a talent show,2,What event does Arthur ask for help with after he asks for a favor?,125831,The Big Bang Theory,32.19-42.92,s06e22_seg02_clip_17,a children's party 3793,Yellow,Pink,Red,Green,Blue,4,What color sweater is Ross wearing when he talks to Racheal and Mona?,125832,Friends,3.3-10.5,friends_s08e08_seg02_clip_16,Blue 3794,Gray. ,Purple. ,Red. ,Orange. ,Blue. ,4,What color is Castle's shirt when walks into the interview room with Beckett?,125833,Castle,32.36-40,castle_s04e03_seg02_clip_24,Blue. 3795,Watching TV.,Eating Pizza.,Waxing their legs.,Looking at a laptop.,Talking about Rachel.,2,What are Monica and Pheobe doing when they are sitting on the bed?,125834,Friends,51.87-61.03,friends_s03e16_seg02_clip_07,Waxing their legs. 3796,Cameron thinks Chase doesnt know what PTSD is.,Cameron brings up that the patient was molested by her father.,Cameron has PTSD and didnt like how flippant he was being about it.,Cameron generally dislikes Chase.,Cameron gets upset about everything.,1,"Why is Cameron upset about Chase's statement that it might ""just be PTSD"" when the group is talking about the patients puzzling symptoms?",125835,House M.D.,51.99-62.12,house_s02e13_seg02_clip_19,Cameron brings up that the patient was molested by her father. 3797,Because Monica wants Sandra to like her,Because Monica is worried about getting a work promotion,Because Monica is thinking about Chandler,Because Monica wants Sandra to throw her a baby shower,Because Monica wants Sandra to hate her,0,Why is Monica scared when she is talking to Phoebe about Sandra being mad?,125836,Friends,0-12.31,friends_s08e20_seg02_clip_03,Because Monica wants Sandra to like her 3798,scratch his head,turn around,walk towards her,laugh,throw a ball,2,What does Leopold do after Beckett says something about his brother being immortal?,125837,Castle,18.87-28.53,castle_s05e17_seg02_clip_17,walk towards her 3799,Because Joey doesn't have any close friends.,Because Joey doesn't have any brothers and will never be a best man.,Because Ross promised Joey would be the best man.,Because Chandler begged Ross to be the best man.,Because Joey asked to be the best man.,1,Why is Joey upset that Chandler is Ross's best man when he marries for the second time?,125838,Friends,33.72-38.76,friends_s04e22_seg02_clip_00,Because Joey doesn't have any brothers and will never be a best man. 3800,The patient starts screaming because she is hallucinating House chopping her head off.,The patient starts screaming because she thinks House's lack of a soul is terrifying.,The patient starts screaming because she sees a huge spider.,The patient starts screaming because she likes her eye.,The patient starts screaming because she realizes how ugly her hospital gown is.,0,Why does the patient start screaming when House explains the diagnosis?,125839,House M.D.,15.47-52.79,house_s05e02_seg02_clip_03,The patient starts screaming because she is hallucinating House chopping her head off. 3801,Bailey,Izzie,Callie,Cristina,Meredith,3,Who were Burke's wedding vows for before Addison asked him to say them?,125840,Grey's Anatomy,24.66-36.56,grey_s03e25_seg02_clip_12,Cristina 3802,Go to work,Take the chick to the vet,Take the chick back to the store,Break up with Janice,Tape Baywatch,2,What did Joey think Chandler was going to do before he got home?,125841,Friends,17.32-31.93,friends_s03e21_seg02_clip_16,Take the chick back to the store 3803,Because Leonard is having breathing issues,Because Leonard just got his teeth worked and doesnt want to ruin the work.,Because Leonard reminded her that she wanted to take the relationship slow.,Because Leonard wants to enjoy the moment,So Leonard's Date can be get a better feel of Leonard's Lips,2,Why did Leonard's Date ask to Make out slow when she was talking to Leonard?,125842,The Big Bang Theory,11.37-59.83,s05e15_seg02_clip_12,Because Leonard reminded her that she wanted to take the relationship slow. 3804,A briefcase. ,A grocery bag. ,An umbrella. ,A bottle of wine. ,A bottle of water. ,3,What is Ross carrying when he walks into the coffee shop?,125843,Friends,23.61-28.33,friends_s10e14_seg02_clip_07,A bottle of wine. 3805,A police badge.,A gun.,A gift.,An arrest warrant.,A pair of handcuffs.,0,What does Ryan show in his hand after the hostess whispers to the Asian male sitting at a dining table?,125844,Castle,73.28-91.03,castle_s04e04_seg02_clip_11,A police badge. 3806,Romance his ass off,Break up with him,Beat him up,Tattletale on him,Spend all of his money.,0,What does Penny say she is going to do for Leonard when they talk?,125845,The Big Bang Theory,53.34-62.02,s07e06_seg02_clip_00,Romance his ass off 3807,Cry,Laugh,Walk away,Hugs Izzie,Stomps her foot,0,What does Caroline do after Izzie points right?,125846,Grey's Anatomy,55.22-59.54,grey_s03e20_seg02_clip_03,Cry 3808,The prints do not match the partials found at the crime scene.,Beckett did not get a confession from him.,Ryan thinks Beckett has narrowed her focus too sharply onto the suspect.,Ryan found out who the real murderer is.,The papers say that the suspect was vacationing during Erika's murder.,0,Why does Ryan disagree with Beckett after she says it's him?,125847,Castle,70.74-88.43,castle_s05e24_seg02_clip_21,The prints do not match the partials found at the crime scene. 3809,he does not say antying,last night you just said heart you,last night you didn't respond,last night your text didn't go through,"""yeah except for last night when you spelled out ...""",4,what does castle repsond after looking at the phone,125848,Castle,8.21-11.85,castle_s06e04_seg02_clip_10,"""yeah except for last night when you spelled out ...""" 3810,Chicken,Duck,Dog,Cat,Rabbit ,1,What animal was Joey holding when he was next to the door?,125849,Friends,0-2.94,friends_s05e19_seg02_clip_19,Duck 3811,Joey was making sugar and spice loaf.,Joey was making cinnamon blueberry loaf.,Joey was making garlic and anchovy loaf.,Joey was making cinnamon raisin loaf.,Joey was making garlic cheese bread.,3,What kind of bread was Joey making before arguing with Chandler?,125850,Friends,31.25-35.16,friends_s04e07_seg02_clip_21,Joey was making cinnamon raisin loaf. 3812,The superhero logo on Sheldon's shirt is The Flash,The superhero logo on Sheldon's shirt is Batman,The superhero logo on Sheldon's shirt is Superman,The superhero logo on Sheldon's shirt is Spiderman,The superhero logo on Sheldon's shirt is Nighthawk,0,What superhero logo is on Sheldon's shirt when he is talking to Penny,125851,The Big Bang Theory,53.06-61.34,s08e15_seg02_clip_00,The superhero logo on Sheldon's shirt is The Flash 3813,A pink shirt. ,A blue shirt. ,Jeans. ,A white shirt. ,An apron. ,0,What is the man holding up when he is standing next to Mona?,125852,Friends,3.36-7.32,friends_s08e17_seg02_clip_09,A pink shirt. 3814,"I win, you are a looser.","You want win by cheating, go ahead.",Joey win.,You are cheating.,I don't play anymore with you.,1,What said Ross when he was jumping in one leg?,125853,Friends,32.49-37.43,friends_s03e09_seg02_clip_10,"You want win by cheating, go ahead." 3815,He was scared of the other houses.,It would confuse them.,He said their was a curse in the house.,He didn't like the homeowner.,The roof wasn't the right color.,1,Why didn't Chandler want to see the new house when Monica brought it up to Phoebe?,125854,Friends,18.76-27.35,friends_s10e15_seg02_clip_00,It would confuse them. 3816,Alex.,Penny.,Leonard.,Amy.,Raj.,3,Who was doing an experiment when the phone ring?,125855,The Big Bang Theory,0-52.82,s06e16_seg02_clip_17,Amy. 3817,In a garage.,In a parking lot.,By the pier.,Behind a building in the alley.,At someone's house.,0,Where did Gage take Beckett and Castle when Beckett asked where they were?,125856,Castle,58.9-66.72,castle_s04e16_seg02_clip_13,In a garage. 3818,He starts to argue. ,Scratch his nose.,Bite his tongue.,He starts to yell.,Scratch his head.,4,What does Chandler do after Rachel and Monica both said yeah?,125857,Friends,3.63-7.87,friends_s07e02_seg02_clip_14,Scratch his head. 3819,A good guy.,A Superhero.,Gift Ninja.,An awesome person.,A superb writer.,2,What does Castle call himself when the girls are looking at the eaarings?,125858,Castle,5.5-11.46,castle_s05e14_seg02_clip_11,Gift Ninja. 3820,The chief of surgery's office. ,Stacy's psychiatrist's office. ,Ayersman's office. ,Stacy's office. ,"His own office, after being suspended. ",1,Where does House admit to breaking into when he's talking to Stacy?,125859,House M.D.,68.55-73.44,house_s02e08_seg02_clip_15,Stacy's psychiatrist's office. 3821,Her shoulder.,Her hair.,Her jacket.,Her leg.,The table.,1,What did Beckett run after asking how that makes sense?,125860,Castle,43.45-50.77,castle_s04e02_seg02_clip_23,Her hair. 3822,Lies.,Disappointments.,Money.,Regret.,Gifts. ,1,What does Chase say his father gave him enough of after Chase says he's given him enough hugs?,125861,House M.D.,24.85-32.35,house_s01e13_seg02_clip_24,Disappointments. 3823,messenger bag,Flowers,Notebook,Flashlight,Phone,2,What is Taub holding when he and Chase are snooping?,125862,House M.D.,0-8.4,house_s06e08_seg02_clip_07,Notebook 3824,Pleasant care.,Bad care.,Good care.,Rude care.,Complete care.,2,How did Phoebe tell Joey to care for the fan before she leaves the establishment?,125863,Friends,18.61-23.41,friends_s06e14_seg02_clip_05,Good care. 3825,Joey is most likely looking for a cat.,Joey is most likely looking for a new best friend.,Joey is most likely looking for a dog.,Joey is most likely looking for a new roommate.,Joey is most likely looking for a new duck.,3,What is Joey most likely in the process of looking for when the woman enters his apartment?,125864,Friends,18.77-38.2,friends_s06e03_seg02_clip_19,Joey is most likely looking for a new roommate. 3826,To confess his love to her,To make Cuddy miserable,To discuss a medical procedure,To confess his hat for her,To tell her he quits ,2,Why did House say he was in Her office when trying to keep her from walking out? ,125865,House M.D.,13.77-23.47,house_s05e12_seg02_clip_13,To discuss a medical procedure 3827,All the answers,The looks,The money,The dream,Nothing,0,What does tag think rachel has when talking to her on the patio of monicas apartment?,125866,Friends,40.01-42.8,friends_s07e08_seg02_clip_10,All the answers 3828,Chase was popping his shoulder back in place.,They were stretching.,Chase was giving him an injection.,He was taking sleeping gas.,It was part of the exam.,3,Why was Stewart counting after Chase told him to?,125867,House M.D.,54.3-61.87,house_s05e07_seg02_clip_07,He was taking sleeping gas. 3829,Stuart.,Amy.,Bernadette.,Howard.,Leonard.,4,Who wears headphones when talking with Penny?,125868,The Big Bang Theory,0-27.99,s08e20_seg02_clip_13,Leonard. 3830,Just one.,Four.,Ten.,Zero.,Twenty.,3,How many women does Stuart say have messaged them after Raj says they've received 162 views?,125869,The Big Bang Theory,0-11.61,s07e04_seg02_clip_17,Zero. 3831,he had a pen in his hand,he had a cup in his hand,he had a book in his hand,he had surgical scissors in his hand,he didnt have anything in his hand,3,What did Derek have in his hand when he was saying good job to all the other doctors around him,125870,Grey's Anatomy,17.75-27.31,grey_s01e04_seg02_clip_08,he had surgical scissors in his hand 3832,Turn on the lamp,Get a date,Buy new shoes,Get tickets to the new Flash movie,Talk to a stranger online,0,What is Howard's goal when he is raving about what he is about to do?,125871,The Big Bang Theory,33.09-63.02,s01e09_seg01_clip_00,Turn on the lamp 3833,slim and ugly,ugly times fat squared,slim times ugly squared,Neediness times dress size squared,boring squared,3,What did Howard say the definition of the Wolowitz Coefficient is when he spoke to Raj and Sheldon?,125872,The Big Bang Theory,11.08-24.61,s02e20_seg01_clip_02,Neediness times dress size squared 3834,A balloon ride,A phone call,A cab,A drink,A deep breath,3,What did Robin take when Ted was saying something about his grandma not returning calls?,125873,How I Met You Mother,8.89-11.43,met_s02e03_seg02_clip_19,A drink 3835,blonde,black,brown,orange,white,3,what color hair does pam have when talking to the detectives,125874,Castle,5.72-11,castle_s06e16_seg02_clip_25,orange 3836,A credit card ,A Coffee Mug,A Bottle of Lotion,A scented candle,Star Trek Collectable,4,What does Sheldon look at when he is on the computer?,125875,The Big Bang Theory,6-16.21,s05e20_seg02_clip_14,Star Trek Collectable 3837,Took a family photo,started dancing,talked about having a baby,Introduced Chanler to everyone,went out to eat,0,What did Monica and Chanler do with Monica's parents after Monica's mother walked away?,125876,Friends,18.93-20.68,friends_s08e01_seg02_clip_03,Took a family photo 3838,They are in the patient's hotel room.,They are in the patient's car.,They are in the patient's bag.,They are all already inside the patient.,They were destroyed.,2,Where are the patient's drugs after he is put in the hospital? ,125877,House M.D.,50.74-64.54,house_s02e07_seg02_clip_09,They are in the patient's bag. 3839,Sheldon is in the kitchen,Sheldon is in the bathroom,Sheldon is sitting at the computer ,He is sitting on the couch ,Sheldon is standing next to the window,0,Where is Sheldon when he talk to Priya? ,125878,The Big Bang Theory,0-26.11,s04e21_seg02_clip_02,Sheldon is in the kitchen 3840,While Weber is calling House a cheater. ,Before Weber asks the parameters of the study. ,After House says the room number of the patient he tested Weber's drug on. ,Before Weber figures out who House is. ,Once the class has concluded. ,2,When does Wilson ask House if it was the coma patient when they're in Weber's lecture?,125879,House M.D.,76.58-84.85,house_s02e12_seg02_clip_09,After House says the room number of the patient he tested Weber's drug on. 3841,He left the room.,He smiled.,He jumped around the room.,"He asked, ""Did it work?""",He stared at her and said nothing.,3,What did House do after Arlene asked if he printed a fake label to prove she is a hypochrondriac?,125880,House M.D.,51.39-61.16,house_s07e11_seg02_clip_05,"He asked, ""Did it work?""" 3842,Achmed was a radars system engineer in the military.,Achmed was a doctor.,Achmed was an actor.,Achmed was a biologist.,Achmed was a accountant.,0,What did Achmed do for a living when he was in Pakistan?,125881,Castle,58.28-60.97,castle_s08e13_seg02_clip_12,Achmed was a radars system engineer in the military. 3843,a television,a fishbowl,a computer,a plant,a bookcase,3,What is behind Ms. Nazif when she tells Beckett her and Ana were acquaintances?,125882,Castle,15.35-23.02,castle_s07e12_seg02_clip_13,a plant 3844,He's pouring coffee.,He's pouring milk.,He's pouring orange juice.,He's pouring soup.,He's pouring cereal.,0,What is Dr. Franzblau pouring when talking to Rachel?,125883,Friends,0-3.15,friends_s01e23_seg02_clip_11,He's pouring coffee. 3845,Because she already ate dinner,Because she is a vegetarian,Because it isn't cooked well,Because it smells bad,Because she wanted more salad,1,Why is Phoebe upset when veal is placed in front of her?,125884,Friends,43.91-58.96,friends_s09e07_seg02_clip_15,Because she is a vegetarian 3846,Dr. Taub runs after him.,Dr. Taub grabs the file,Dr. Taub walked away,Dr. Taub shouted ,Dr. Taub made a phone call,0,What does Dr. Taub do after the black doctor finds a file with is name on it?,125885,House M.D.,69.69-78.18,house_s06e16_seg02_clip_12,Dr. Taub runs after him. 3847,His corvette.,His ponytail.,His mustache.,His gold tooth.,His hand covered in gold rings.,2,What did Ted say gave the doorman away after he called the doorman a scoundrel?,125886,How I Met You Mother,0-6.71,met_s06e17_seg02_clip_13,His mustache. 3848,Boyd.,Chase.,House.,Foreman.,Cubby,3,Who is going through several pieces of documents and files to research in more detail after talking with the other doctors?,125887,House M.D.,75.62-90.02,house_s02e19_seg02_clip_15,Foreman. 3849,Stroke.,Pulmonary embolism.,Siezures. ,Liver failure.,Cardiac arrest.,4,What did Chase say House predicted when they were all trying to figure out what was wrong with Addie?,125888,House M.D.,38.38-43.67,house_s03e22_seg02_clip_18,Cardiac arrest. 3850,he wants all of them to compete together. ,he wants ross to compete.,he wants chandler to compete.,he doesn't feel he is good enough.,he wants them to not let Ben compete. ,4,what is joey's real reason for backing out of the audition after his friends turn away from him?,125889,Friends,41.32-50.17,friends_s05e18_seg02_clip_10,he wants them to not let Ben compete. 3851,The stove,The door,The cabinet,Joey,The couch,1,What is like a child to Chandler and Monica when she's talking to the handyman?,125890,Friends,15.75-21.19,friends_s08e03_seg02_clip_10,The door 3852,House said because he was interviewing at another hospital,House said because he had to go to court,House said because he wanted to change his look,House said because he was going before the Board of Trustees,House said because it is his dressy casual,4,Why did House say he wore a shirt and tie after Cuddy asked him ,125891,House M.D.,0-7.16,house_s07e08_seg02_clip_05,House said because it is his dressy casual 3853,In a bar.,On a rooftop,In the kitchen.,On a street in New York city.,In a cab.,1,Where are Ted and Jen when they are remembering their first date?,125892,How I Met You Mother,15.19-57.78,met_s05e02_seg02_clip_13,On a rooftop 3854,Barney,a multi-paned window,Lilly,a stripper,a policeman,1,What is behind Honey when she talks about receiving e-mails from Michelle Obama?,125893,How I Met You Mother,0-5.1,met_s06e15_seg02_clip_02,a multi-paned window 3855,In the bathroom,Standing in the kitchen ,Sitting on the couch,At Penny's apartment,Outside the door of his apartment,2,Where is Leonard when Sheldon is running in the living room?,125894,The Big Bang Theory,50.12-56.12,s04e11_seg02_clip_06,Sitting on the couch 3856,2 times,9 times.,Only once.,None.,Several times.,1,How many times Chandler's boss slapped hin when working?,125895,Friends,15.68-19.39,friends_s03e24_seg02_clip_12,9 times. 3857,She likes to French.,"Hi Ted, want some of this?","Been here, done that...","Hey Ted, pucker up all you want, but I was here first.",Looks like you finished last. I've been here before.,3,What did Little Barney say to Ted after he saw him?,125896,How I Met You Mother,11.5-17.55,met_s03e04_seg02_clip_12,"Hey Ted, pucker up all you want, but I was here first." 3858,Assistant AG,Vice President,AG,State Senator,Diplomat to Isreal,0,What station does Esposito tell Castle Allison Hyde holds before the shooting starts?,125897,Castle,49.94-96.03,castle_s08e01_seg02_clip_25,Assistant AG 3859,Monica tries to get the sauce off.,Monica starts barking out orders.,Monica walks out.,Monica changes her coat.,Monica just stands there and smiles.,1,What does Monica do when she has sauce all over her coat?,125898,Friends,0-12.77,friends_s04e10_seg02_clip_18,Monica starts barking out orders. 3860,In the refrigerator. ,A reclining chair.,On the counter. ,In the closet.,Joey never eats pizza. ,1,[Where/...] did Joey tell Rachel he kept his pizza [when/] he is showing her around his apartment?,125899,Friends,17.37-23.53,friends_s06e18_seg02_clip_09,A reclining chair. 3861,drinking a soda,looking through the computer,talking on the intercom,eating lunch,talking on the phone,4,what is the airport service lady doing before telling ted and robin to take a seat?,125900,How I Met You Mother,35.17-43.02,met_s02e15_seg02_clip_00,talking on the phone 3862,A car.,A tree.,A lamp post.,A fire hydrant.,A desk.,4,What is Cameron leaning on when she is outside of the patient's room talking to House?,125901,House M.D.,38.81-48.4,house_s06e04_seg02_clip_12,A desk. 3863,Taub is asleep,Taub isn't doing anything,Taub is filling paperwork out,Taub is on the phone,Taub is with a patient,2,What is Taub doing after Adams walks into the room where he is sitting?,125902,House M.D.,90.68-98.03,house_s08e15_seg02_clip_20,Taub is filling paperwork out 3864,Chloe lived with a roommate,Chloe lived with Sara,Chloe lived with the suspect,Chloe lived with the Petersons,Chloe lived with her parents,0,Who did Chloe said she lived with after Beckett asked where she stayed?,125903,Castle,0-10.56,castle_s01e02_seg02_clip_12,Chloe lived with a roommate 3865,Kutner,Lisa,House,Wilson,Chase,3,Who was watching when they tried to resuscitate Amber?,125904,House M.D.,0-9.1,house_s04e16_seg02_clip_19,Wilson 3866,Mr. Nile's cat he is holding.,Mr. Nile's dog he is holding.,Mr. Nile's daughter he is holding.,Mr. Nile's nephew he is holding.,Mr. Nile's son he is holding.,4,Who is Mr. Niles holding when Bailey talks to him about Mrs. Nile's diagnosis?,125905,Grey's Anatomy,36.17-63.42,grey_s03e05_seg02_clip_12,Mr. Nile's son he is holding. 3867,On a kitchen table.,On the vet's table,On the living room couch.,On the floor.,On a bed.,1,Where was cinnamon when Raj entered the room?,125906,The Big Bang Theory,22.43-27.74,s07e15_seg02_clip_07,On the vet's table 3868,Esposito. ,Castle. ,Beckett. ,Ryan. ,Montgomery. ,3,Who tried to talk to Winters when he said he needed a minute?,125907,Castle,23.93-26.23,castle_s05e06_seg02_clip_02,Ryan. 3869,Hi adulterers,Hello Whore,Hello Husband Stealer,Hi Derek,Hello Dr. Grey,4,What does addison say after she steps on the elevator with Derek and Meredith?,125908,Grey's Anatomy,14.54-19.99,grey_s02e08_seg02_clip_18,Hello Dr. Grey 3870,He takes off his clothes. ,He opens the door and exits the room. ,He cooks dinner. ,He opens the refrigerator door. ,He throws dishes.,1,What does Raj do after he talks to Penny? ,125909,The Big Bang Theory,3.72-12.72,s05e04_seg02_clip_13,He opens the door and exits the room. 3871,The apartment door,Her purse,Her book,Her wallet,Her bottle,0,What did Rachel close before Monica said they're mine?,125910,Friends,39.45-49.32,friends_s08e10_seg01_clip_00,The apartment door 3872,Bernadette.,"A man Sheldon greeted as, ""Kripke."" ",Howard. ,Sheldon's mother.,Raj's sister.,1,Who walked up to the office door after Sheldon winked at Raj?,125911,The Big Bang Theory,37.93-51.97,s05e14_seg02_clip_08,"A man Sheldon greeted as, ""Kripke."" " 3873,He's with Leonard,Penny,Howard,He's by himself,Emily,4,Who is Raj with when he's outside sitting on the grass?,125912,The Big Bang Theory,12.31-16.51,s08e24_seg02_clip_11,Emily 3874,Tells her to stop it,Leaves the table,Eats olives too,Smiles at her,Asks for the waiter,3,What does Joey do after MaryEllen eats the olives from her drink?,125913,Friends,22.63-27.27,friends_s09e03_seg02_clip_13,Smiles at her 3875,Hugged her girlfriends.,clapped.,Holded game controls.,Wrote.,Drunk wine.,3,What did Leonard and Sheldon after Howard told a plot?,125914,The Big Bang Theory,22.39-59.7,s06e23_seg02_clip_11,Wrote. 3876,She wanted to tell him she loved him.,She wanted to squeeze his hand and see him one more time.,She wanted to give him a hug.,She wanted to tell him she was grateful.,She wanted to tell him she would renounce her vows. ,1,Why did the nun come out after Chase left the room? ,125915,House M.D.,48.97-97.17,house_s08e12_seg02_clip_25,She wanted to squeeze his hand and see him one more time. 3877,He pushes her. ,He sits down next to her. ,He hugs her. ,He kisses her hand. ,He kneels next to her. ,4,What does Chandler do after Monica sits down in the lobby?,125916,Friends,47.83-52.46,friends_s08e02_seg01_clip_00,He kneels next to her. 3878,Phoebe and her friend Roger walked through the door.,Joey walked in the door.,Chandler walked in the door.,Pluto walked in the door.,No one walked in the door.,0,Who walked in the door when Ross walked toward the door.,125917,Friends,25.43-33.5,friends_s08e11_seg02_clip_15,Phoebe and her friend Roger walked through the door. 3879,The letter B,A heart,A leaf,A crescent moon,A cross,4,What kind of pendant did Bernadette have on her necklace when her and Howard were talking in the bedroom?,125918,The Big Bang Theory,47.01-50.48,s05e24_seg01_clip_00,A cross 3880,Danny said he had to go to the hospital.,Danny said he will never forgive them.,Danny said he called the police.,Danny said okay and shut the door.,Danny said he liked being fogged.,3,How did Danny react when Monica and Rachel apologized to him?,125919,Friends,43.91-46.22,friends_s05e06_seg02_clip_06,Danny said okay and shut the door. 3881,a waiter,Marshall,Barney,Ted,a dog,3,Who is sitting at the coffee table with Robin and Lily when they are talking?,125920,How I Met You Mother,1.83-10.05,met_s03e19_seg02_clip_07,Ted 3882,mixes a magical potion,start reciting a secret spell,point at the display screen,tickles the little girl,punches House in the arm,2,What does Wilson do right before House says to move the wand to the side?,125921,House M.D.,8.93-15.04,house_s07e05_seg02_clip_14,point at the display screen 3883,Dr. Grey refused to look at the patient.,Dr. Grey kept looking at the patient's foot.,Dr. Grey kept poking the patient's face.,Dr. Grey was looking at Burke instead of concentrating on the patient.,Dr. Grey did not find the patient interesting.,3,Why did one of the doctors ask Dr. Grey if the brain of a patient was not interesting enough for her when Burke was operating?,125922,Grey's Anatomy,29.68-32.79,grey_s03e09_seg02_clip_23,Dr. Grey was looking at Burke instead of concentrating on the patient. 3884,She turns the TV on and plays a video for him.,She shows Brent some photos.,She hands Brent a bottled water.,She turns on a recorder with messages.,She slams her hands on the table.,3,What does Beckett do after Brent tells her it was a mutual thing?,125923,Castle,4.5-14.41,castle_s01e02_seg02_clip_09,She turns on a recorder with messages. 3885,Yelling.,An ambulance.,Car honks and traffic.,Car music.,Her neighbors music.,2,What did sounds did Aleixis say she didn't hear when Sara was bending down? ,125924,Castle,76.01-84.65,castle_s05e15_seg02_clip_17,Car honks and traffic. 3886,Kate,Ryan,Castle,Alexis,Lanie,2,Who was sitting in the back seat when Espositio was driving. ,125925,Castle,0-13.16,castle_s07e06_seg02_clip_13,Castle 3887,Black.,Green.,Blue.,Yellow.,Red.,3,What color shirt was Bernadette wearing when she was talking about Priya?,125926,The Big Bang Theory,13.97-20.18,s04e19_seg02_clip_03,Yellow. 3888,Interrupt,Intertep,Interskol,Interim,Interpol,4,What system does Esposito say he will the person's photo through when he sees he will see if they know him?,125927,Castle,3.96-10.56,castle_s07e20_seg02_clip_16,Interpol 3889,Kate Beckett,Martha,Jones,Harden,Elena Markov,1,Who did Javi call her name when he picked Beckett;s phone call?,125928,Castle,28.03-31.48,castle_s06e17_seg02_clip_10,Martha 3890,Penny was dressed like a school teacher. ,Penny was wearing a sexy nightie. ,Penny wasn't wearing any clothes.,Penny was wearing Leonards glasses.,Penny was wearing a princess costume.,4,How was Penny dressed when Leonard walked through the door.,125929,The Big Bang Theory,25.4-37.16,s06e18_seg02_clip_16,Penny was wearing a princess costume. 3891,Raj's sister,President Seibert,Dr. Plomkin,Jimmy Speckerman,Lesley from their job,3,Who did Leonard say wants to have drinks with him after Sheldon returns to working on his tablet,125930,The Big Bang Theory,45.06-61.76,s05e11_seg01_clip_00,Jimmy Speckerman 3892,Eric confessed ,The bullets found on the scene,Luca and Eric's DNA crossed paths ,The victim told someone he was in danger,Luca left his ID on the scene,2,According Esposito why was Luca Tessaro definitely their victim when explaining to Ryan and Beckett?,125931,Castle,14.31-24.15,castle_s07e10_seg02_clip_17,Luca and Eric's DNA crossed paths 3893,Turns on the TV,Pushes Erica out the door,Stands up and kisses Joey,Runs out for some more beer,Tell a funny joke,0,What does Rachel do when she is trying to help out Joey?,125932,Friends,15.65-20.07,friends_s02e12-13_seg02_clip_16,Turns on the TV 3894,Officer and a Lady,Office and a Gentleman,Author and a Lady,Lady and an author,Lady and a Gentleman,1,What did Harvey call Becket and Castle before he left the room?,125933,Castle,0-7.65,castle_s04e12_seg02_clip_05,Office and a Gentleman 3895,A broom,A knife,A pen,A torch,A book,3,What did Castle has in his hand when he moved to the back of the car?,125934,Castle,2.73-9.27,castle_s04e16_seg02_clip_01,A torch 3896,Stepped off the elevator.,Walked up the stairs.,Ran to her car.,Pulled out a gun.,Pulled out her badge.,0,What does Beckett do before she said something about meeting again?,125935,Castle,66.77-76.31,castle_s07e14_seg02_clip_06,Stepped off the elevator. 3897,The color top Phoebe is wearing is purple,The color top Phoebe is wearing is blue,The color top Phoebe is wearing is red,The color top Phoebe is wearing is green,The color top Phoebe is wearing is white,2,what color top is Phoebe wearing when she is sitting next to Ross on the couch,125936,Friends,49.04-58.73,friends_s08e10_seg02_clip_01,The color top Phoebe is wearing is red 3898,Because the man wants to steal a dog.,Because the man begged for money.,Because the man wants steal money.,Because the man wants sell a gun.,Because the man wants to collect money from Todd.,4,Why the man come to Ana's house when holding a gun?,125937,Castle,4.55-10.47,castle_s03e01_seg02_clip_15,Because the man wants to collect money from Todd. 3899,Standing by the whiteboard.,Sitting at the computer.,Carrying out mammography on Elise.,Pacing the room.,By Elise's bedside.,1,Where is Cameron when the discussion about Elise's treatment is going on?,125938,House M.D.,43.17-44.83,house_s01e07_seg02_clip_06,Sitting at the computer. 3900,Kiara whispered she wanted to discuss Jade,Kiara started dancing for him,Kiara smiled seductively,Castle started to get drunk,Castle wanted to have fun,0,Why did Castle change his mind when Kiara offered him some private time?,125939,Castle,48.29-72.66,castle_s06e18_seg02_clip_11,Kiara whispered she wanted to discuss Jade 3901,Ross is talking to Emily.,Ross is talking to Jenna.,Ross is talking to Monica.,Ross is talking to Rachel.,Ross is talking to Joey.,0,Who is Ross talking to about relationships when he is with Emily?,125940,Friends,0-6.79,friends_s04e19_seg02_clip_13,Ross is talking to Emily. 3902,It's flawed,It's a living hell,It's perfect,It's stolen,It should end,2,What does Ted think about Zoey's life when he confronts her?,125941,How I Met You Mother,18.52-30.86,met_s06e08_seg02_clip_05,It's perfect 3903,Cuddy doesn't confess anything to WIlson,Cuddy confesses to WIlson that she is sleep deprived,Cuddy confesses to WIlson that she needs more time with the body,Cuddy confesses to WIlson that it is harder than she expected,Cuddy confesses to WIlson that she doesn't feel anything for the baby,4,What does Cuddy confess to Wilson when she is talking about her foster daughter?,125942,House M.D.,4.77-9.98,house_s05e13_seg02_clip_03,Cuddy confesses to WIlson that she doesn't feel anything for the baby 3904,She stands up and picks up her coat.,She goes to get him coffee.,She remains seated and quits her job.,She tells the DA that she took the call at 7 P.M.,She walks out of the room without gathering anything.,0,"What does the lady coworker gather after the DA says ""this conversation is over'.",125943,Castle,7.8-16.06,castle_s03e19_seg02_clip_17,She stands up and picks up her coat. 3905,Nex to her water.,Next to her wine.,Next to her beer.,Next to her coffee.,Next to her soda.,0,Where does Rachel tell the waiter she wants her side salad when they are all out for dinner?,125944,Friends,18.49-30.38,friends_s02e05_seg02_clip_07,Nex to her water. 3906,Rachel is holding a cat,Rachel is holding a gun,Rachel is holding a purse strap,Rachel is holding a coat,Rachel is holding a map,2,What is Rachel holding on her shoulder when she turns to Phoebe?,125945,Friends,22.82-28.68,friends_s03e24_seg02_clip_03,Rachel is holding a purse strap 3907,bored,happy,excited,nonchalant,gloomy,3,How did Emmitt feel about Super Bowls when he spoke to Barney?,125946,How I Met You Mother,0-20.16,met_s02e14_seg02_clip_14,nonchalant 3908,green,black,blue,yellow,brown,3,What color was Howard's pants when he was chatting with Sheldon and the group?,125947,The Big Bang Theory,31.22-38.9,s02e14_seg01_clip_01,yellow 3909,Sandwich,Pizza,Taco,Bagel,Soup,0,What is House eating when he's watching TV?,125948,House M.D.,18.34-27.74,house_s02e01_seg02_clip_10,Sandwich 3910,"If he was more nurturing, paid more attention, or had a uterus. ",If he had more money.,If he had a nicer house. ,If he had a nicer car ,If he was higher up in his career. ,0,What does Ross say may have prevented him from being upset when he is talking to Phoebe?,125949,Friends,37.67-48.8,friends_s03e06_seg02_clip_18,"If he was more nurturing, paid more attention, or had a uterus. " 3911,Tom kicked Castle in the face,Tom shot Castle,Castle threw a table at Tom,Tom walked away,Tom punched Castle,4,What happened after Castle called Tom Dempsey a wise guy?,125950,Castle,40.73-49.23,castle_s04e14_seg02_clip_05,Tom punched Castle 3912,Looks flabergasted,Looks angry,Looks entertained,Looks happy,Looks cheerful,0,What does Sheldon do after the judge tells him to pay the cashier?,125951,The Big Bang Theory,35.72-39.32,s03e16_seg02_clip_09,Looks flabergasted 3913,Marshall moved in the air a wip.,Marshall took the paper from Lily's hand.,Marshall waked away.,Marshall went to the kitchen.,Marshall toop his laptop.,0,What did Marshall do after Lily said not good enough?,125952,How I Met You Mother,30.99-59.03,met_s05e01_seg02_clip_11,Marshall moved in the air a wip. 3914,Joey was next to the dressing room mirror. ,Joey was on the show stage. ,Joey was in the bathroom.,Joey was sitting on the couch,Joey was in Heston's shower in his dressing room. ,4,Where was Joey before Charlton Heston started to talk to him?,125953,Friends,0-10.5,friends_s04e14_seg02_clip_14,Joey was in Heston's shower in his dressing room. 3915,How is House going to feel about this?,Is there another reason?,Why didn't you offer me?,"So, you're just being altruistic?",Did you run this by House?,3,What does docttor (13) ask doctor (26) after he offers someone else to do the echo exam?,125954,House M.D.,46.12-61.35,house_s04e02_seg02_clip_09,"So, you're just being altruistic?" 3916,Phoebe's hair was in a half up braid style.,Phoebe's hair was up in a hat.,Phoebe's hair was down.,Phoebe's hair was in a braided ponytail.,Phoebe's hair was in twin french braids.,0,How was Phoebe's hair done when she was talking to Mr. A?,125955,Friends,0-23.01,friends_s02e11_seg02_clip_11,Phoebe's hair was in a half up braid style. 3917,She is modeling. ,She is auditioning. ,She is at an interview at a restaurant. ,She is at an interview in her hometown. ,She is at an interview with a bunch of brunettes. ,1,Where is Penny when she is sitting down with other blonde women?,125956,The Big Bang Theory,46.41-47.85,s08e21_seg02_clip_10,She is auditioning. 3918,Robin dances with Ted.,Robin kisses Ted.,Robin punches Barney.,Robin runs up the stairs.,Robin puts her hand on Ted's arm.,4,What does Robin do when she tells Ted not to be hard on himself?,125957,How I Met You Mother,0-2.42,met_s02e15_seg02_clip_01,Robin puts her hand on Ted's arm. 3919,A bicycle.,A plumber.,A baby in a carseat.,A bull dog.,A lawnmower.,0,What did Penny and Leonard walk past after they got upstairs?,125958,The Big Bang Theory,10.44-17.4,s05e14_seg02_clip_00,A bicycle. 3920,to test a hypothesis ,to be funny,to show jasper who is boss,So jasper doesn't stroke like lucy,to even the score,3,Why does house want someone to punch jasper in the nose before leaving the conference room?,125959,House M.D.,42.73-48.52,house_s03e19_seg02_clip_19,So jasper doesn't stroke like lucy 3921,The van is going to New York.,The van is going to Europe.,The van is going to Boston.,The van is going to Greenland.,The van is going to Mexico.,4,Where is the van going when everyone is in it?,125960,The Big Bang Theory,11.97-21.74,s09e03_seg02_clip_03,The van is going to Mexico. 3922,The diagnosis is brain hemorrhage.,The diagnosis is brain tumor.,The diagnosis is stomach cancer.,The diagnosis is pancreatitis,The diagnosis is Stage two B Breast Cancer,4,What diagnosis does Bailey tell Mr. Niles his wife has when she talks to him and his son?,125961,Grey's Anatomy,36.62-50.91,grey_s03e05_seg02_clip_12,The diagnosis is Stage two B Breast Cancer 3923,He frowns.,He laughs.,He sighs.,He screams in terror.,He does nothing.,1,What does Chandler do after looking at his pen?,125962,Friends,34.52-41.12,friends_s03e12_seg02_clip_18,He laughs. 3924,Robin tells him,Marshall sees a basket of lemons in the bedroom ,Marshall overhears Lily tell Robin ,Robin tells Barney who tells Marshall ,Marshall just assumes she wants to have a girl instead of a boy ,1,How does Marshall know Lily wants to have a girl before she tells him? ,125963,How I Met You Mother,36.27-47.87,met_s06e06_seg02_clip_14,Marshall sees a basket of lemons in the bedroom 3925,This is the Mona Lisa!,I can make that.,I don't think art is worth my time.,It was a tower of sponges.,I don't get it?,3,What did Chandler say when Monica asked him about his opinion on art?,125964,Friends,7.5-26.11,friends_s10e13_seg02_clip_01,It was a tower of sponges. 3926,House is hiding the prestigious fellowship he was awarded that would require him to move,House is hiding great musical talent,House is hiding his intention to get a job in Boston,House is hiding the fact he is about to lose his ability to walk at all,House is hiding a brain tumor,4,What does Wilson reveal House is hiding when he walks in on House playing the piano?,125965,House M.D.,50.32-62.9,house_s03e15_seg02_clip_08,House is hiding a brain tumor 3927,one,nine,ten,eight,three,3,How many days late is Rachel's child when Dr.Long enters the room?,125966,Friends,6.41-14.65,friends_s08e22_seg02_clip_08,eight 3928,Howard said he has plans of getting drunk.,Howard said he didn't have money to pay for his date.,Howard said he has a lot of food allergies.,Howard said he has plans of leaving the date early.,Howard said he is a passionate man who tends to have public displays of affection.,4,What did Howard warn Leonard about before they went on their date?,125967,The Big Bang Theory,27.91-36.59,s03e12_seg01_clip_00,Howard said he is a passionate man who tends to have public displays of affection. 3929,Sitting on his couch.,Inside the restaurant where Penny works.,Standing just outside her apartment.,In the kitchen area of his apartment.,Kneeling on the floor.,2,Where is Sheldon after he asks Penny for help?,125968,The Big Bang Theory,0-10.54,s04e14_seg02_clip_03,Standing just outside her apartment. 3930,He called Leonard. ,He adjusted his pants.,He ordered Chinese food.,He walked back to his apartment.,He closed Penny's door.,4,What did Sheldon do after running his hand through his hair?,125969,The Big Bang Theory,34.69-38.75,s08e16_seg02_clip_00,He closed Penny's door. 3931,Alexis had vowed to never read his books. ,Alexis was growing up and someday Castle would hardly see her. ,Castle had learned of Alexis's plans to join the marines. ,Castle had found drugs in Alexis's bedroom. ,Alex had dropped out of school. ,1,Why was Castle melancholy when talking to Alexis? ,125970,Castle,11.04-22.09,castle_s01e10_seg02_clip_21,Alexis was growing up and someday Castle would hardly see her. 3932,Teacher,Father,Sugar Daddy,Friend,Skilled Assistant ,2,What does the woman ask if the man is before being interrupted by someone?,125971,Castle,60.08-74.19,castle_s06e04_seg02_clip_00,Sugar Daddy 3933,Newpaper.,Laptop.,iPad.,Cell phone.,wire,3,What holds Raj when talks to Howard?,125972,The Big Bang Theory,25.8-57.98,s08e12_seg02_clip_02,Cell phone. 3934,His dinner.,A cell phone,comic books,A backpack,Wine glasses,4,What was Raj holding in his hands when Penny pulled on his arm?,125973,The Big Bang Theory,2.91-4.94,s02e04_seg02_clip_09,Wine glasses 3935,She sits down,She leaves the apartment,She spills her drink,She falls over,She picks up a box,4,What does Phoebe do right after she says to be careful to Rachel?,125974,Friends,20.07-28.63,friends_s09e12_seg02_clip_13,She picks up a box 3936,Sydney lost a kid her 3rd year at the hospital.,Sydney lost a kid her second year at the hospital.,Sydney lost a kid her fourth year at the hospital.,Sydney lost a kid her first year at the hospital.,Sydney lost a kid her 6th year at the hospital.,3,What year did Sydney lose a kid when she worked at the hospital?,125975,Grey's Anatomy,10.26-15.16,grey_s03e07_seg02_clip_25,Sydney lost a kid her first year at the hospital. 3937,Running in circle.,Calling on the phone.,Jumping jacks.,Drinking vodka.,Typing.,4,What did Nolan begin doing when he was sitting behind his desk,125976,House M.D.,64.09-86.02,house_s06e20_seg02_clip_24,Typing. 3938,She removes a portion with a syringe,She places it on the table,She places it in the storage,She hands it to her colleague,She places it in her lab coat,3,What does Cameron do with the tube of specimen after performing the procedure on the patient?,125977,House M.D.,71.57-76.1,house_s02e01_seg02_clip_18,She hands it to her colleague 3939,Professor Kaufman.,Professor Newman.,Donald.,The guy who ate his sandwich.,Elizabeth.,1,Who does Ross say is retiring when he is telling Rachel and Joey about what he's going to be doing at work?,125978,Friends,0-5.89,friends_s08e12_seg02_clip_00,Professor Newman. 3940,map,lemonade,pickel,security,nothing,0,What is behind Raj and Stewart when Raj says We're gonna die here?,125979,The Big Bang Theory,0-6.16,s07e12_seg02_clip_12,map 3941,On the table. ,On the bed. ,On the counter. ,On the couch. ,On the coffee table. ,3,Where does Phoebe put her bag when she is searching through it?,125980,Friends,6.82-11.79,friends_s02e09_seg02_clip_02,On the couch. 3942,A jacket,A book ,A gun,A cup,A pen,4,What was Chase holding in his hand when House dropped the file on the table,125981,House M.D.,53.13-61.05,house_s01e14_seg02_clip_00,A pen 3943,House denied having Wilson's dvd player.,House said that Wilson gave him the dvd player.,House said that he did not have Wilson's dvd player.,House reminded Wilson that he paid him for the dvd player.,House suggested that Wilson left it behind when he moved out.,4,Why did House say that he had Wilson's dvd player when Wilson asked him about the dvd player?,125982,House M.D.,5.92-13.65,house_s02e19_seg02_clip_00,House suggested that Wilson left it behind when he moved out. 3944,The McBrides,The Tessaros,The Laughlins,The Texans,The Man,1,Who does Dino say he will go to war with if they are responsible for Eric's murder when he is talking to Jane?,125983,Castle,5.89-17.21,castle_s07e10_seg02_clip_21,The Tessaros 3945,George,Meredith,Alex,Burke,Izzie ,3,Who does Cristina eat with when at the restaurant? ,125984,Grey's Anatomy,17.6-25.09,grey_s02e08_seg02_clip_10,Burke 3946,He laid on the floor.,He drank some water.,He jumped up.,He walked away.,He cried.,3,What did House do after saying something about believe the crap?,125985,House M.D.,63.08-72.6,house_s02e02_seg02_clip_11,He walked away. 3947,Phoebe! What are you doing.,Chandler doesn't say anything at the beginning of the scene.,Oh that's great! With my luck its gonna be him.,Where is Monica?,Where is Rachel?,2,What does Chandler say after the scene starts?,125986,Friends,0-3.37,friends_s03e17_seg02_clip_02,Oh that's great! With my luck its gonna be him. 3948,joyful,happy,surprised,sick,hungry,2,How did Penny feel when Sheldon did not want to keep a secret?,125987,The Big Bang Theory,45.15-59.02,s02e01_seg02_clip_02,surprised 3949,Penny begins to cry.,Penny throws something at Howard.,Penny shuts the door.,Penny yells at Howard.,Penny laughs at Howard.,0,What does Penny do after Howard finishes his monologue?,125988,The Big Bang Theory,48.99-59.02,s05e22_seg02_clip_15,Penny begins to cry. 3950,Who does like wine,Who doesn't like roses,Who doesnt like wine ,Who doesn't like cheese ,Who doesn't like milk ,1,What did Lucas say to Cuddy to make her smile right before he left? ,125989,House M.D.,23.13-30.84,house_s05e03_seg02_clip_12,Who doesn't like roses 3951,Esposito,Castle,Beckett,Hamilton,Lanie,4,Who promises to be minimally invasive as possible when speaking to Dr. Weiss?,125990,Castle,76.96-91.07,castle_s04e03_seg02_clip_18,Lanie 3952,Did your boyfriend make you type that,Nothing,ok ,Talk to you tommorow,But we need to get this done now ,0,What did Penny's partner say when they were texting,125991,The Big Bang Theory,26.74-43.57,s06e08_seg02_clip_01,Did your boyfriend make you type that 3953,Sarah tells Castle that not all the men want sex some are looking for a listening ear.,Sarah tells Castle that selling sex is big business.,Sarah tells Castle that they also are a call sales center for merchandise.,Sarah tells Castle that this is not busy that usually they have double employees working.,Sarach tells Castle that the call center is so busy mid day because they pick up calls for a pizza joint. ,0,How does Sarah respond to Castle's question when he is surprised that the office call center is so busy mid day?,125992,Castle,40.58-72.96,castle_s04e12_seg02_clip_08,Sarah tells Castle that not all the men want sex some are looking for a listening ear. 3954,That she was trying to show off her self esteem it has nothing to do with sex,He told her she is stupid she is not sexy.,He said she is not cute enough to have sex.,He told her she will never get a man.,He told her she is just a man.,0,What did Leonard say to Leslie after he talked to girl ?,125993,The Big Bang Theory,2.44-61.04,s02e03_seg02_clip_12,That she was trying to show off her self esteem it has nothing to do with sex 3955,The flowers on the reception desk are purple,The flowers on the reception desk are red,The flowers on the reception desk are pink,The flowers on the reception desk are orange,The flowers on the reception desk are yellow,4,What color are the flowers sitting on the reception desk when House keeps walking pass them,125994,House M.D.,0-16.86,house_s02e23_seg02_clip_21,The flowers on the reception desk are yellow 3956,Doug opened the door to let Robin in .,Doug opened the door to go out .,Doug opened the door to go in.,Doug opened the door for his dad.,Doug opened the door for the pizza man.,0,Why did Doug open a door when his dad is in the shower ?,125995,How I Met You Mother,50.85-57.2,met_s03e04_seg02_clip_12,Doug opened the door to let Robin in . 3957,He said that he wouldn't give him the chance.,He said that House didn't get it.,He said that his Dad would never find him.,He said that he didn't want to find out.,He said that he knew his Dad hadn't changed.,1,How did his patient respond after House asked if he still thought his Dad could hurt him?,125996,House M.D.,63.38-72.02,house_s07e17_seg02_clip_17,He said that House didn't get it. 3958,An iPad,A phone ,An iPhone,An iPod,A Samsung Galaxy 7,3,What did Leonard say Penny threw when he sits on the couch?,125997,The Big Bang Theory,23.49-61.02,s01e17_seg02_clip_07,An iPod 3959,We're going to explore the effects of tequila shots on a gorgeous 22 year old woman.,I'm just joking.,We are going to see which dress goes better with your eyes.,We are going to see which restaurant serves the best food.,No. I really have to get back to work with Leonard.,0,What did Dave say after Penny said we are going to work on an experiment?,125998,The Big Bang Theory,26.23-34.6,s02e11_seg02_clip_09,We're going to explore the effects of tequila shots on a gorgeous 22 year old woman. 3960,House guesses that the hallucinations are being faked by the patient.,House guesses that the hallucinations are caused by a bad batch of drugs.,House guesses that the hallucinations are caused by an overactive imagination.,House guesses that the hallucinations are caused by too many scary movies.,House guesses that the hallucinations are caused by the organ donor's neurological issues.,4,What does House say is his guess as to why the patient is having hallucinations when meeting with his colleagues?,125999,House M.D.,55.98-91.03,house_s05e02_seg02_clip_03,House guesses that the hallucinations are caused by the organ donor's neurological issues. 3961,Bernadette kicks Howard's mother.,Bernadette calls off the wedding.,Bernadette frowns at her father.,Bernadette runs to Amy and Penny.,Bernadette walks away from Howard.,2,What does Bernadette do before her father kisses her forehead?,126000,The Big Bang Theory,50.18-54.46,s05e24_seg02_clip_11,Bernadette frowns at her father. 3962,A plastic bag.,The garbage.,On a table.,On a chair.,In Georges hand.,1,Where did Cristina put her sandwich after she took it out of the vending machine?,126001,Grey's Anatomy,7.65-17.55,grey_s01e07_seg02_clip_10,The garbage. 3963,Fix her air conditioner,Watch a movie,Take a trip,Sign a contract,Go to a baseball game,3,What does Paula want Castle to do after he sleeps with Beckett?,126002,Castle,5.53-11.52,castle_s02e05_seg02_clip_17,Sign a contract 3964,In the file cabinet.,On his desks.,In the mail.,In her office.,In her bosses office.,1,Where did Tag tell Rachel the contracts were not when they were looking for them?,126003,Friends,34.31-41.87,friends_s07e12_seg02_clip_10,On his desks. 3965,45%,12%,100%,97%,34%,3,What percent match was Mia Ganghong before Tech 1 matched her?,126004,Castle,60.92-67.69,castle_s04e16_seg02_clip_21,97% 3966,in the bathroom,locked in the entertainment center,on the porch,in a restaurant,laying on the floor,1,Where is Joey before he says something about the chairs?,126005,Friends,5.64-11.58,friends_s06e20_seg02_clip_10,locked in the entertainment center 3967,Edema and localized swelling in the section of the temporal lobe.,Swelling in the amygdala.,Swelling in half of the temporal lobe.,Edema and localized swelling in the section of the frontal lobe. ,Edema and localized swelling in the section of the parietal lobe.,0,What did Wilson say the results after House had the MRI scan were?,126006,House M.D.,71.3-75.26,house_s04e15_seg02_clip_08,Edema and localized swelling in the section of the temporal lobe. 3968,The nypd,D.C.,lapd,fbi,cia,1,Who made it clear that they want the data when the ladies are talking?,126007,Castle,0-6.81,castle_s06e03_seg02_clip_07,D.C. 3969,green,red,black,purple,white,3,What color hoodie is Leonard wearing under his jacket when he is sitting aat the desk?,126008,The Big Bang Theory,0-5.85,s05e10_seg02_clip_02,purple 3970,If it's hormone free.,"If it's diced, not shredded.","If the chicken was ""humanely"" killed.",Did the chef wash his hands before and after cooking it.,If it came from a free range farm.,1,What does Sheldon ask about the chicken after Penny begins handing out food?,126009,The Big Bang Theory,29.3-59.18,s02e19_seg02_clip_11,"If it's diced, not shredded." 3971,The remote control.,His cellphone.,A comic book.,A cup of coffee.,His hat. ,2,What did Leonard put on the coffee table before standing up?,126010,The Big Bang Theory,9.08-12.11,s09e11_seg02_clip_06,A comic book. 3972,He thinks the video is gross.,He thinks the video is awful.,He thinks the video is sexy.,He thinks the video is great.,He thinks the video is abusive.,1,Why does Ted look disgusted after watching the video made by Marshall?,126011,How I Met You Mother,0-8.86,met_s05e04_seg02_clip_02,He thinks the video is awful. 3973,a lamp ,a blood pressure machine ,A computer ,A statue,a vase with flowers ,0,What is Cuddy standing by when House leaves Vogler's office? ,126012,House M.D.,4.07-8.58,house_s01e15_seg02_clip_06,a lamp 3974,She said she wished he would leave.,She said she was too.,She said she had no idea who he was.,"She didn't say anything, just smiled.",She said she didn't want him to leave. ,1,What did the nun say when Chase said he was happy he knew her? ,126013,House M.D.,20.66-52.79,house_s08e12_seg02_clip_25,She said she was too. 3975,The cafe,The hallway,Outside,Her apartment,A bar,3,Where is Ross when he talks to Monica?,126014,Friends,0-11.9,friends_s01e10_seg02_clip_06,Her apartment 3976,Black,Grey,Green,Yellow,White,4,"What color is the shirt that Ross is wearing when he say's ""Chandler and I are in a bar...""?",126015,Friends,0-9,friends_s07e04_seg02_clip_11,White 3977,The quality of dinner conversation declining.,The lack of good TV shows on at this hour.,All the politics going on at his place of employment.,The fact they discontinued his favorite shampoo.,All the changes made to the last Star Wars film.,0,What is Sheldon upset about before he picks up his notebook?,126016,The Big Bang Theory,0-31.37,s05e08_seg01_clip_01,The quality of dinner conversation declining. 3978,It helps him brainstorm,It helps him sit down,It helps him think,It helps him to move his hands,It helps him speak clearly,2,"Why is Castle picking things up from the desk before Ryan says ""kid's mom thought it was a little odd.""?",126017,Castle,0-3.16,castle_s02e05_seg02_clip_19,It helps him think 3979,flowers,a bouquet of balloons,a tray of food,a giant teddy bear,a basket of fruit,1,what does the man in the tan suit bring hank before house leaves their hospital room?,126018,House M.D.,62.81-72.75,house_s01e12_seg02_clip_08,a bouquet of balloons 3980,Outside,Kitchen,Patient room,Waiting room,Lab,4,Where are the other doctors working when House walks in?,126019,House M.D.,0-3.72,house_s03e03_seg02_clip_09,Lab 3981,His head,His shoulder,His wrist,His upper arm,His chest,3,Where did Alan put his hand on Castle when they were talking?,126020,Castle,58.67-62.28,castle_s08e19_seg02_clip_04,His upper arm 3982,Chase,House,Taub,Wilson,Masters,0,Who said they couldn't complain about their boss when standing beside Foreman. ,126021,House M.D.,23.47-29.45,house_s07e08_seg02_clip_17,Chase 3983,drill a hole in georges head,start george on steriods,start george on chemo,put george on a diet,give george antibiotics,0,What did cameron tell george they wanted to do when it came to finding out what was wrong with george,126022,House M.D.,12.35-17.58,house_s03e06_seg02_clip_17,drill a hole in georges head 3984,angry,bored,tired,excited,hungry,3,How did Ted feel when he was putting on Sparky?,126023,How I Met You Mother,0-8.27,met_s05e05_seg02_clip_16,excited 3985,you still have to drink it ,So am I ,Way ahead of you. That's an I can't believe it's not butter! stick. ,it's good for you ,more for me,2,What did Sheldon say after Leonard said he was lactose intolerant?,126024,The Big Bang Theory,0-24.08,s02e23_seg02_clip_11,Way ahead of you. That's an I can't believe it's not butter! stick. 3986,He hugs her. ,Her brushes her cheek.,He kisses her forehead. ,He holds her hands. ,He moves away from her. ,3,What does Joshua do with Rachel when they sit on the sofa? ,126025,Friends,3.9-12.61,friends_s04e20_seg02_clip_12,He holds her hands. 3987,Because birds had flown into the plane's engine,Because the plan was losing fuel at a rapid pace,Because a patient in first class was going into labor,Because the pilot had suffered a heart attack ,Because they had a patient onboard that was not going to survive,4,Why did House tell the plane occupants that they had to make a landing as soon as possible after he picked up the intercom phone,126026,House M.D.,30.31-45.62,house_s03e18_seg02_clip_17,Because they had a patient onboard that was not going to survive 3988,Love will find a way,Target Sighted,The hunt begins,Target Aquired,The hunt is on,3,What did Barney say before approaching the the two ladies?,126027,How I Met You Mother,2.72-60.5,met_s03e10_seg02_clip_08,Target Aquired 3989,Penny was reading a book.,Penny was kissing Leonard.,Penny was eating popcorn.,Penny was cooking in the kitchen.,Penny was drinking wine.,2,What was Penny doing when Sheldon and Amy came into the room?,126028,The Big Bang Theory,0-3.89,s10e05_seg01_clip_01,Penny was eating popcorn. 3990,On the chair,On the table,On the floor,On the bed,On the window,0,Where was Jesse sitting when Beckett got closer to him?,126029,Castle,0-3.56,castle_s06e13_seg02_clip_04,On the chair 3991,Because Raj is in a hurry.,Because Raj had a headache.,Because Raj felt sad.,Because Raj didn't find support from his friends.,Because Raj had to work.,3,Why Raj stood and walked away after hear the opinions of his friends?,126030,The Big Bang Theory,0-55.78,s01e08_seg01_clip_03,Because Raj didn't find support from his friends. 3992,Howard doesn't know what he means. ,Howard means black-market phasers. ,Howard tells Leonard to mind his own business. ,Howard means homeless people on the streets. ,Howard is actually talking about Sheldon. ,1,"What does Howard mean when he says ""seedy underbelly""?",126031,The Big Bang Theory,6.95-10.88,s03e17_seg02_clip_02,Howard means black-market phasers. 3993,In a grocery store.,In a hospital bed.,At the pool.,At the park.,In his kitchen.,1,Where is the little boy when he starts seizing?,126032,House M.D.,15.53-24.2,house_s06e04_seg02_clip_12,In a hospital bed. 3994,Ryan said Michael worked for Microsoft as a programmer.,Ryan said Michael worked as a janitor.,Ryan said Michael worked as a car salesman.,Ryan said Michael worked as a waiter.,Ryan said Michael worked in construction.,4,What did Ryan say Michael did for a living when he was on the phone with Gates?,126033,Castle,49.04-50.38,castle_s07e14_seg02_clip_13,Ryan said Michael worked in construction. 3995,Opening a bottle.,Holding a yellow cup.,Holding a phone.,Holding a dish.,Holding a computer.,1,What is holding Leonard when listen Raj?,126034,The Big Bang Theory,6.67-70.17,s01e08_seg01_clip_03,Holding a yellow cup. 3996,Casper the friendly ghost,a judge,the cat,Castle,no one,3,who is in the room also when Weldon and Kate are talking?,126035,Castle,6.39-91.36,castle_s04e12_seg02_clip_20,Castle 3997,Zane,Hector,Beckett,Ryan,Espocito,1,"Who is Castle talking to after debriefing Ryan, Espocito, and Beckett?",126036,Castle,76.16-89.08,castle_s08e20_seg02_clip_22,Hector 3998,Jump,Faint ,Fall,Caugh,Burp,4,"What did Sheldon do before he said ""that's all I can do without throwing up""?",126037,The Big Bang Theory,26.54-39.05,s07e09_seg02_clip_13,Burp 3999,He is cooking for Lily. ,He is cooking for Robin. ,He is cooking for Stella. ,He is cooking for Marshall. ,He is cooking for Barney. ,2,Who is Ted cooking for when he is in his apartment?,126038,How I Met You Mother,2.72-7.56,met_s04e01_seg02_clip_05,He is cooking for Stella. 4000,Barney called a friend who might be able to help,Barney begged the woman behind the desk to make an exception,Barney screamed in frustration,Barney expressed excitement about the bachelor party,Barney suggested they get something to eat and plan what to do next,3,How did Barney respond after hearing that Lily and Marshall would not be able to get married?,126039,How I Met You Mother,0-18.18,met_s02e08_seg02_clip_07,Barney expressed excitement about the bachelor party 4001,Snaps his fingers.,Bounces a ball on his desk.,Slams his palm on his desk.,Rubs his forehead.,Scratches his chin,3,What does House do with his hand when he asks Wilson to tell him his real evil plan?,126040,House M.D.,17.11-20.27,house_s06e12_seg02_clip_08,Rubs his forehead. 4002,Meredith gives Grace a large meal,Meredith gives Grace a sedative and takes her off life support,Meredith changes Grace's clothes,Meredith performs a complex surgical procedure,Meredith tries to revive Grace,1,What does Meredith do to Grace when there are several people in the room with her?,126041,Grey's Anatomy,32.69-48.6,grey_s02e15_seg02_clip_20,Meredith gives Grace a sedative and takes her off life support 4003,Hans initially reacts by being happy that Castle figured it all out.,Hans initially reacts by being angry with himself.,Hans initially reacts by being annoyed that Castle is still talking to him.,Hans initially reacts by being annoyed that Castle is breaking the fourth wall.,Hans is initially relieved because he thinks he will be free to go.,3,How does Hans initially react when Castle tells him that it's all a game?,126042,Castle,13.99-90.28,castle_s02e24_seg02_clip_09,Hans initially reacts by being annoyed that Castle is breaking the fourth wall. 4004,green ,yellow,orange,white,blue,3,What color shirt does Wilson have on when he is talking to House about his frequent visits to Human Resources?,126043,House M.D.,18.34-25.39,house_s07e02_seg02_clip_03,white 4005,A duplex,In a storage shed,In an apartment,a house,a trailer,2,Where did chi's dad say they lived when being questioned by cameron?,126044,House M.D.,62.6-69.04,house_s01e08_seg02_clip_11,In an apartment 4006,Ate lunch,Killed someone,Bought a phone,Went to see her husband,Went to the phone,2,What did Jenna Mcboyd do before she died according to Beckett?,126045,Castle,33.48-52.12,castle_s02e03_seg02_clip_20,Bought a phone 4007,"Monkey-Bunkey would be given a car, Castle jokingly said. ",Castle joked that he would adopt Monkey-Bunkey. ,"Monkey-Bunkey would be thrown a big birthday party, Castle joked. ",Castle joked he would throw Monkey-Bunkey away. ,Castle joked he'd fistfight Monkey-Bunkey. ,3,What did Castle jokingly threaten to do when he next saw Monkey-Bunkey? ,126046,Castle,17.62-30.39,castle_s01e09_seg02_clip_23,Castle joked he would throw Monkey-Bunkey away. 4008,Five,One,Two,Three,Six,3,How many Pregnancy tests were done on the patient when she came to the hospital,126047,House M.D.,38.23-50.52,house_s08e07_seg02_clip_22,Three 4009,a computer screen,a magazine,the bible,a medical book,a television screen,4,what is the nun looking at when she is in the hospital room with another nun?,126048,House M.D.,79.68-89.02,house_s01e05_seg02_clip_01,a television screen 4010,Jessica Benson.,Jessica Steamer.,Jessica Lockhart.,Jessica Fitzgerald.,Jessica Rhiner.,2,Who is Cecilia's character when Joey is trying to replicate it?,126049,Friends,40.02-49.3,friends_s07e15_seg02_clip_10,Jessica Lockhart. 4011,Lights start flashing,A clown pops out,Someone comes out shooting,The building explodes,A hammer drops from the ceiling ,3,What happens after Ryan and Esposito set off the alarm,126050,Castle,52.6-61.59,castle_s06e11_seg02_clip_10,The building explodes 4012,Patient chart,Lunchbox,Briefcase,Book,Cup of coffee,2,What is Wilson holding in his hands after he finds House at his desk?,126051,House M.D.,76.54-80.92,house_s07e08_seg02_clip_01,Briefcase 4013,You have no idea how much this hurts,"Yeah, I'm fine.",I think I'll need stitches.,Is there a bump here.,Am I bleeding?,0,What did Ross say when he was holding his forehead? ,126052,Friends,19.81-32.41,friends_s08e23-24_seg02_clip_32,You have no idea how much this hurts 4014,A robot arm.,A death star replica.,A telescope.,A Lava Lamp.,A window.,3,What is behind Howard when he and Bernadette tell each other they love each other?,126053,The Big Bang Theory,47.41-51.06,s05e05_seg02_clip_07,A Lava Lamp. 4015,Mrs. Geller cries.,Mrs. Geller kisses Monica.,Mrs. Geller leans her head to the side and closes her eyes.,Mrs. Geller kisses Ross.,Mrs. Geller dances with Monica.,2,What does Mrs. Geller do after Monica asks if she would tell her?,126054,Friends,36.5-39.06,friends_s01e08_seg02_clip_18,Mrs. Geller leans her head to the side and closes her eyes. 4016,He says that he doesn't like it anyway. ,He says that there can be two Buzz Lightyear's. ,He says that he's sure he won't mind. ,He says that Buzz Lightyear isn't real though. ,He says he will call his sister for her opinion. ,3,What does Raj say after Howard tells him that Buzz is already taken?,126055,The Big Bang Theory,38.77-43.62,s05e15_seg02_clip_07,He says that Buzz Lightyear isn't real though. 4017,Because Mandy is going to marry a gay.,Because Mandy is going to marry a crazy.,Because Mandy is going to marry an idiot.,Because Mandy is going to marry an unemployed person,Because Mandy is going to marry a jerk.,4,Why Rachel is concern after talking to Mandy?,126056,Friends,47.42-50.72,friends_s01e20_seg02_clip_19,Because Mandy is going to marry a jerk. 4018,Phoebe. ,A plastic bag. ,A purse. ,His coat. ,A brown grocery bag. ,4,What does Joey have in his arms when he is standing next to Monica outside?,126057,Friends,19.53-22.58,friends_s03e25_seg02_clip_01,A brown grocery bag. 4019,In the dining room.,In the living room.,In the bedroom.,In the bathroom.,In the kitchen.,4,Where was Chandler when Joey asked for a hug?,126058,Friends,8.53-11.83,friends_s08e14_seg02_clip_20,In the kitchen. 4020,She used to be a prostitute.,She enjoyed walking outside.,She thought she could help that way.,She needed some extra money quickly.,She was bored at the hospital.,2,Why did Thirteen volunteer to go streetwalking after House goes through what Cole found in the patients trunk and glove box?,126059,House M.D.,33.83-55.04,house_s04e05_seg02_clip_20,She thought she could help that way. 4021,Fixing his belt.,Fixing Lilly's dress.,Adjusting his shirt.,Doing his belt.,Zipping his sweatshirt.,2,What is Marshall doing when he walks back into the restaurant?,126060,How I Met You Mother,5.22-7.83,met_s02e03_seg02_clip_03,Adjusting his shirt. 4022,Next to the patient,Across the room,In the hall,Right next to her,Outside,3,Where was Chase standing when he did not see Cameron prepare the heparin?,126061,House M.D.,30.46-35.68,house_s01e16_seg02_clip_14,Right next to her 4023,A knife.,A Gun.,A Guitar.,Another body.,A cell phone,2,What is laying next to victim before Beckett walks in?,126062,Castle,34.79-37.14,castle_s05e07_seg02_clip_00,A Guitar. 4024,Irvington PD.,LA PD.,Chicago PD.,Dallas PD.,Arlington PD.,0,Where did Michael Goldman report his wife missing when Esposito was talking to Castle?,126063,Castle,15.04-21.63,castle_s01e08_seg02_clip_03,Irvington PD. 4025,The beautiful guest room,The beautiful guest bathroom,The beautiful guest bed,The beautiful guest closet,The beautiful guest towels,0,What are Chandler and Monica fighting about before Chandler goes over to talk to Joey?,126064,Friends,0-28.22,friends_s06e03_seg02_clip_03,The beautiful guest room 4026,He was in Victoria Secret's buying his girlfriend lingerie,He was onstage of the play he was auditioning for,He was downstairs at the coffee house getting the group coffee,He was in Bloomingdales trying to find a replacement for the broiling pan he had borrowed from Monica and ruined,He was at a telethon on tv,4,Where was Joey when Monica was talking to him on the phone,126065,Friends,0-9.77,friends_s05e04_seg02_clip_11,He was at a telethon on tv 4027,Onto a broken dream,At the first sight of gold,Onto an idea of love,At an emotional life raft,On to a mental life raft ,3,Where did House accuse Chase of grasping before mentioning intimacy not being an option?,126066,House M.D.,16.21-22.33,house_s08e12_seg02_clip_11,At an emotional life raft 4028,Cameron doesn't ask because she doesn't like to be involved in others business.,Cameron doesn't ask because she doesn't know Foreman that well.,Cameron doesn't ask because she didn't know he was leaving,Cameron doesn't ask because she knows Foreman will tell her,Cameron doesn't ask because she thought she was the reason for him leaving.,3,Why doesn't Cameron ask Foreman why hes leaving before talking with him?,126067,House M.D.,9.89-18.5,house_s03e22_seg02_clip_11,Cameron doesn't ask because she knows Foreman will tell her 4029,She slapped him.,She walked around him.,She choked.,She turned around.,She backed up.,1,What did Beckett do after Castle said he wheres boxers?,126068,Castle,38.96-43.71,castle_s05e22_seg02_clip_08,She walked around him. 4030,In the pool,In the park,In the store,In the theatre,On the street corner,4,Where are Phoebe and the lady standing when they talk,126069,Friends,14.26-49.01,friends_s02e06_seg02_clip_11,On the street corner 4031,Resting on top of her forehead.,Resting on top of her notebook.,Resting on a barstool. ,On her face.,On her lap. ,1,"Where are Martha's glasses when she asks Castle, ""What are you doing?'",126070,Castle,23.95-30.05,castle_s02e04_seg02_clip_11,Resting on top of her notebook. 4032,Rachel was wearing a black and white sweater.,Rachel was wearing a white sweater.,Rachel was wearing a black coat.,Rachel was wearing a yellow dress.,Rachel was wearing a blue dress.,2,What was Rachel wearing when she was talking to the woman in the white coat?,126071,Friends,0-14.63,friends_s08e10_seg02_clip_09,Rachel was wearing a black coat. 4033,wallet,keys,cell phone,jacket,Emma,2,What is Ross holding when he looks behind him to the kid on the swings?,126072,Friends,14.66-20.26,friends_s10e07_seg02_clip_12,cell phone 4034,His mother walks in ,His dad gets mad,He has a very strong pain,His nurse gets upset,He starts to cry ,2,What happens after Carnell tells about his ecstasy use?,126073,House M.D.,45.73-53.12,house_s02e05_seg02_clip_01,He has a very strong pain 4035,angry,jealous,mad,happy,disgusted,1,What did chase say Cameron was making house when she asked why would she want to get caught having sex?,126074,House M.D.,28.17-36.97,house_s03e16_seg02_clip_10,jealous 4036,MP3,IPOD,Phone,CD Player,Pager,0,Which item does the patient say it is after being told it is not hemorrhoids?,126075,House M.D.,68.22-88.02,house_s01e03_seg02_clip_22,MP3 4037,His neighbor. ,His good pal.,His wingman.,His brother.,His best bud.,4,What does Chandler call Joey when he walks in the door?,126076,Friends,49.04-57.02,friends_s02e14_seg02_clip_09,His best bud. 4038,Screamed at Cuddy,Pulled out a piece of hair,Kicked the side of the elevator,Asked them if this was their floor,Collapsed on the ground,1,What did the tattooed woman do before exiting the elevator?,126077,House M.D.,82.6-90.27,house_s05e10_seg02_clip_11,Pulled out a piece of hair 4039,The lab.,His new jacket.,A 3D Printer.,His car.,A house.,2,What is Howard excited to own when talking to Raj?,126078,The Big Bang Theory,30.29-39.16,s06e14_seg02_clip_09,A 3D Printer. 4040,He glares at her.,He looks away from her.,He laughs at her.,He walks off.,He kisses her.,1,What does Burke do when Dr. Yang asks him if she can sleep with other people?,126079,Grey's Anatomy,1.37-8.22,grey_s02e06_seg02_clip_11,He looks away from her. 4041,a pickle jar,a snake,A box of gloves,a brain,papers,2,what did Amy pick up when she was telling sheldon what he was going to do?,126080,The Big Bang Theory,0-5.02,s05e16_seg02_clip_07,A box of gloves 4042,A pen.,A pair of handcuffs.,A magazine.,A bouquet of flowers.,A violin.,0,What is Beckett holding when she said sell to?,126081,Castle,11.28-13.63,castle_s02e24_seg02_clip_16,A pen. 4043,Joey,Hannah,Rachel,Ross,Phoebe,2,Who jumps on Ross's back when he is on the phone in the kitchen?,126082,Friends,16.23-29.22,friends_s04e21_seg02_clip_13,Rachel 4044,"Bowman said House was the obsessive, defiant kind.","Bowman said House was the selfish, intolerant kind.","Bowman said House was the reckless, unpredictable kind.","Bowman said House was the impulsive, irresponsible kind.","Bowman said House was the hostile, self-centered kind.",0,How did Bowman describe House after Cuddy said he wasn't the rooting kind?,126083,House M.D.,6.11-10.81,house_s05e09_seg02_clip_21,"Bowman said House was the obsessive, defiant kind." 4045,"House said, ""I'm going to see Cuddy.""","House said, ""it's time you all grew up.""","House said, ""I'm outta here, you're too sappy.""","House said, ""I'm not listening to this drivel.""","House said, ""it's not like you're a catch.""",4,What did House say before he left the hospital room?,126084,House M.D.,0-3.15,house_s07e10_seg02_clip_24,"House said, ""it's not like you're a catch.""" 4046,Red,Green,Blue,Brown,Yellow,1,What color is Raj's drink when Penny asks Raj if he's talking to her?,126085,The Big Bang Theory,0-5.19,s01e08_seg02_clip_05,Green 4047,by Check,by cash,by money order,by Western union,by coins ,0,How did House tell Lucas he was going to pay him after Lucas was done with his findings? ,126086,House M.D.,45.97-50.97,house_s05e02_seg02_clip_05,by Check 4048,The instruments ,The heart rate,The patient's bed,The ceiling,The BP,4,What starts dropping after Chase asks for the sponge and suction?,126087,House M.D.,68.17-77.57,house_s05e01_seg02_clip_09,The BP 4049,Barney moves his wine glass from his mouth and licks his lip.,Barney kisses Robin.,Barney proposes to Robin.,Barney dances with Robin.,Barney hugs Robin.,0,What does Barney do after Robin says nothing?,126088,How I Met You Mother,29.1-32.44,met_s04e01_seg02_clip_13,Barney moves his wine glass from his mouth and licks his lip. 4050,A moldy cealing,A desk,A stack of boxes,A bucket of water,A picture,4,What was behind Taub when he said he didn't see any sign of water damage?,126089,House M.D.,31.5-41.08,house_s08e18_seg02_clip_03,A picture 4051,"Cuddy said, not so fast.","Cuddy said, please, go with my blessing.","Cuddy said, after you give me back my pen.","Cuddy said, only if you start treating the patient.","Cuddy said, not until after the yelling.",4,What did Cuddy say to House after he asked if he could go now?,126090,House M.D.,67.1-71.21,house_s04e03_seg02_clip_04,"Cuddy said, not until after the yelling." 4052,"Raj's parents, Dr. and Mrs. Koothrappali.",Penny.,Howard.,Leonard.,Sheldon.,0,Who appeared on Raj's laptop after a Skype call started making an audible notification and he opened the laptop?,126091,The Big Bang Theory,50.55-62.02,s05e04_seg02_clip_13,"Raj's parents, Dr. and Mrs. Koothrappali." 4053,He looked in her ears.,He gave her some jello.,He checked her pulse.,He poked her with a needle.,He looked at her throat.,3,What did Lawrance do after Thirteen held down Irene?,126092,House M.D.,23.07-26.24,house_s04e04_seg02_clip_16,He poked her with a needle. 4054,Stuart.,Penny.,Amy.,Bernadette.,Leonard.,4,Who is with Sheldon when he sat on the couch?,126093,The Big Bang Theory,2.48-62.02,s10e13_seg02_clip_08,Leonard. 4055,get up and leave,jiggle a handful of coins,takes a nap,proposes to rachel,throws money in the air ,1,What does ross do when he is at the coffee shop with monica and rachel?,126094,Friends,0-5.89,friends_s08e22_seg02_clip_13,jiggle a handful of coins 4056,he drink coffee,He clean his feet,he clap his hands,He turn on the light,nothing,3,What did Chase do before he and Adams enter the patient's house?,126095,House M.D.,41.59-46.51,house_s08e17_seg02_clip_03,He turn on the light 4057,He goes to the vending machine,He leaves ,He buys them pizza,He offers to leave,He sneaks the ring back in the jacket.,4,What does Joey do after Ross tells him he's acting weird?,126096,Friends,55.21-61.68,friends_s09e01_seg01_clip_00,He sneaks the ring back in the jacket. 4058,Leave the office without filing a report,Sneak into the captain's office,Go in free to the NBA playoffs,Go to all major league baseball games free,Sneak into the biggest shows on Broadway,0,What would Beckett do when she is invisible?,126097,Castle,1.23-8.61,castle_s07e03_seg02_clip_26,Leave the office without filing a report 4059,Sheldon needs help.,He knows Sheldon likes pie.,They haven't won a game all night.,Sheldon dislikes pie,Leonard wants Sheldon to try it.,2,Why does Leonard say he will stick the pie in Sheldon's face after Sheldon says wait?,126098,The Big Bang Theory,25.56-52.52,s06e04_seg02_clip_16,They haven't won a game all night. 4060,Howard.,Penny.,Raj.,Leonard.,Leslie.,3,Who was not impressed by David Underhill when they guys are eating?,126099,The Big Bang Theory,43.38-54.89,s02e11_seg01_clip_01,Leonard. 4061,House was working on a laptop.,House was eating lunch.,House was talking on the phone.,House was looking through a file.,House was writing on a pad.,0,What was House doing when the doctors were discussing a case?,126100,House M.D.,77.22-82.16,house_s08e21_seg02_clip_04,House was working on a laptop. 4062,A fork. ,A gun. ,A golf club. ,A baseball bat. ,A pan. ,3,What does Carrie Fisher have in her hands when she comes out of her house?,126101,The Big Bang Theory,19.61-27.73,s07e14_seg02_clip_16,A baseball bat. 4063,Foreman tells Chase that he only counts on him,Foreman tells Chase that he'll owe him one,Foreman doesn't tell Chase anything,Foreman tells Chase he needs help,Foreman tells Chase that he owes him,4,What does Foreman tell Chase when he is trying to convience him to help him out?,126102,House M.D.,54.56-62.85,house_s06e07_seg02_clip_04,Foreman tells Chase that he owes him 4064,He said it did not matter what they gave to Emma.,He said nothing.,He was made at Phoebe for doing that.,He was angry.,He was happy.,0,Where and when did Joey say?,126103,Friends,0-53.47,friends_s10e04_seg02_clip_01,He said it did not matter what they gave to Emma. 4065,Ted,Barney,Robin,Rachel ,Lily,4,Who is sick when the three friends are sitting on the yellow couch in the living room?,126104,How I Met You Mother,29.41-38.42,met_s06e24_seg02_clip_07,Lily 4066,White,Grey,Green,Blue,Purple,1,"What color is the undershirt that Ross is wearing when he say's ""You know, I mean""?",126105,Friends,0-10.03,friends_s02e04_seg02_clip_18,Grey 4067,on the phone ,Staring at the nurse ,talking to Derek ,getting dressed ,working out ,1,What was George during when Meredith called his name ?,126106,Grey's Anatomy,30.83-40.49,grey_s03e02_seg02_clip_16,Staring at the nurse 4068,She is imagining herself if she gained back the weight she lost.,She dyed her hair.,She was dreaming.,She gained back all the weight she lost.,"It's not Monica, it is Monica's cousin.",0,Why does Monica look so different when she is talking with Chandler?,126107,Friends,0-6.01,friends_s06e15-16_seg02_clip_27,She is imagining herself if she gained back the weight she lost. 4069,He wanted his brother to get sicker,He was mean,He thought vitamins were snacks,He didn't,He thought more vitamins would make him strong,4,Why did the brother of the young patient give his brother more vitamins after he got sick?,126108,House M.D.,34.41-53.33,house_s05e08_seg02_clip_21,He thought more vitamins would make him strong 4070,Castle is holding an ice pack.,Castle is holding a cell phone.,Castle is holding an ink pen.,Castle is holding towel.,Castle is holding tshirt.,0,What is Castle holding against his face when he and Beckett are questioning Jessup about his whereabouts?,126109,Castle,0-3.76,castle_s02e09_seg02_clip_06,Castle is holding an ice pack. 4071,finding out who owns ethe taxi,finding out who shot Castle,finding out where Castle was when he was shot,cleaning up this mess,figuring out who owns the dinghy,4,Where does Beckett suggest they start before Castle wakes up?,126110,Castle,19.06-24.05,castle_s07e01_seg02_clip_16,figuring out who owns the dinghy 4072,A pair of gloves.,A notebook.,A voice recorder.,Her jacket.,An umbrella.,0,What was Beckett holding when she asked Dr. Nieman about Pam's face?,126111,Castle,68.87-73.37,castle_s06e09_seg02_clip_07,A pair of gloves. 4073,Cuddy is dating no one,Cuddy is dating Wilson,Cuddy is dating House,Cuddy is dating Lucas,Cuddy is datina a mystery man,3,Who is Cuddy dating when Wilson brings up that she is dating one of House's friends?,126112,House M.D.,6.98-22.7,house_s06e07_seg02_clip_04,Cuddy is dating Lucas 4074,Show him her ring,Run away,Punch him in the face,Throw a drink on him ,Give him a hug,0,What does Cathy do after telling Ted she is engaged?,126113,How I Met You Mother,31.58-38.45,met_s03e08_seg02_clip_18,Show him her ring 4075,To the moon,Over to his house.,To his Disney land,To California.,Go to jail.,4,Where did Wilson say House could go when he was talking to him?,126114,House M.D.,0-7.28,house_s06e03_seg02_clip_20,Go to jail. 4076,Beckett.,Castle.,Esposito.,Ben Lee.,Jane.,2,Who tells Ryan about the Grand Central breakthrough after Ryan agrees to go to Chinatown?,126115,Castle,16.84-27.31,castle_s04e04_seg02_clip_11,Esposito. 4077,Chandler and Joey decide to order a pizza.,Chandler and Joey are disappointed by what is on T.V.,Chandler and Joey decide to turn it back off.,Chandler and Joey get very excited about still having free porn.,Chandler and Joey sit down to watch Seinfeld.,3,What do Chandler and Joey do after Chandler turns the T.V. on?,126116,Friends,12.48-19.02,friends_s08e19_seg02_clip_05,Chandler and Joey get very excited about still having free porn. 4078,Stella said thank you to Ted.,Stella told Ted that he doesn't look so bad himself and began to kiss him.,Stella told Ted to stop staring at her.,Stella told Ted to focus on watching the movie.,Stella told Ted that he is very odd.,1,What did Stella do after Ted told her that she looked beautiful tonight?,126117,How I Met You Mother,25.09-34.78,met_s04e01_seg02_clip_12,Stella told Ted that he doesn't look so bad himself and began to kiss him. 4079,Hi you guys.,I love you all.,I'll mess you so much.,"Oh no, not again.",I can't believe I'm leaving you all.,0,What did Rachel say when she was leaning on the door? ,126118,Friends,40.31-49.54,friends_s10e16_seg02_clip_04,Hi you guys. 4080,They is having dinner,They are playing video games,"Raj, Howard, Leonard and Priya is watching a movie ",Leonard and Priya are hugged and kissing while Raj and Howard watch. ,They're watching videos on the computer. ,0,What are the guys and Priya doing when they sit around and talk about Sheldon?,126119,The Big Bang Theory,0-45.32,s04e21_seg02_clip_02,They is having dinner 4081,Weber says that house is always high and isn't capable of evaluating such work. ,Weber says that House doesn't know the language or the culture well enough to make a decision like this. ,Weber says he doesn't care because he got the money from the pharmaceutical companies. ,"Weber says that House has been published in an american competing journal, and is thus biased. ",Weber says that Neuroscience New Delhi is a respected journal. ,4,"What does Weber point out, after House asks him why he published his findings in India?",126120,House M.D.,12.18-22.19,house_s02e12_seg02_clip_09,Weber says that Neuroscience New Delhi is a respected journal. 4082,She kisses Ross. ,She stays and talks to Ross. ,She doesn't get on the plane. ,She turns around and walks away. ,She stays. ,3,What does Emily do after she says something to Ross?,126121,Friends,0-3.57,friends_s04e17_seg02_clip_08,She turns around and walks away. 4083,Their daughter's nanny,Her best friend,Her little sister who was in town for a visit,Her yoga instructor,The neighbor's dog walker,4,Who did Rachel say her husband was in bed with after she made Ross sit down on the couch,126122,Friends,29.81-43.97,friends_s06e15-16_seg02_clip_38,The neighbor's dog walker 4084,That he was being watched,That someone would steal a work called the Fist of Capitalism,That someone would steal from his art collection vault,That someone would buy his prized painting,That someone was trying to kill him,1,What was the worry of Mr. Hayes when the exhibit opened.,126123,Castle,30.93-49.39,castle_s04e05_seg02_clip_02,That someone would steal a work called the Fist of Capitalism 4085,Watching Tv,Sitting in the living room,Cleaning under the kitchen table,Reading a book,Washing dishes,2,"What is Monica doing when Ross yelled ""We were on a break""?",126124,Friends,23.21-34.82,friends_s04e01_seg02_clip_18,Cleaning under the kitchen table 4086,Joey enters the room.,Phoebe enters the room.,Ross enters the room.,Rachel enters the room.,Gunther enters the room.,3,Who enters the room after Monica and Chandler begin their argument about boots?,126125,Friends,28.23-51.36,friends_s08e10_seg01_clip_00,Rachel enters the room. 4087,House said he has a pistol whooper,House did not mention any weapons,House said another name for a gun was a glock,House said he has a huge collection of mass destruction,House called a gun an arsenal,4,What did House use as another name for a gun when him and wilson were talking,126126,House M.D.,0-2.28,house_s08e08_seg02_clip_08,House called a gun an arsenal 4088,Ted is smoking a cigar.,Barney is smoking a cigar.,Stuart is smoking a cigar.,Marshall is smoking a cigar.,Jenn is smoking a cigar.,1,Who is smoking a cigar when Ted is in the front seat of the car?,126127,How I Met You Mother,20.41-23.71,met_s03e15_seg02_clip_13,Barney is smoking a cigar. 4089,A tray. ,A cup of coffee. ,A plate. ,A dish towel. ,A broom. ,3,What is Rachel holding in her hand when she gets up from the couch in the coffee house?,126128,Friends,1.8-6.6,friends_s02e12-13_seg02_clip_28,A dish towel. 4090,A piece of cake. ,Spaghetti. ,Pizza. ,A sandwich. ,Salad. ,4,What is Leonard eating when he is sitting at the table in the cafeteria?,126129,The Big Bang Theory,3.19-9.25,s01e12_seg01_clip_00,Salad. 4091,Beckett,Alexis,Martha,Esposito,Damian,2,Who is Castle talking to when he is conflicted about what to believe?,126130,Castle,9.69-18.06,castle_s03e15_seg02_clip_16,Martha 4092,She was looking into schools for their children,Sergie believes she was upstate having an affair.,She was spending time with their other son,She was in a clinic getting private treatment,She was at their second home preparing for rennovations.,1,Where does Sergei tbelieve his wife to be when Castle asks if she was upstate?,126131,Castle,28.67-42.33,castle_s08e11_seg02_clip_10,Sergie believes she was upstate having an affair. 4093,She smiled,She laughed,She screamed,She frowned,She puffed,4,How did thirteen reacted when Taub said he went home with his wife?,126132,House M.D.,10.47-16.38,house_s06e18_seg02_clip_22,She puffed 4094,his quality of life ,his spot with major league baseball,his endorsement deals ,his sense of well being ,"family, work, friends ",4,What does House tell Chase his patient will lose when he goes home if he doesn't have the surgery? ,126133,House M.D.,70.54-91.03,house_s05e17_seg02_clip_17,"family, work, friends " 4095,She hugs him. ,She shakes her shoulders. ,She kisses him. ,She falls. ,She stops. ,1,What does Janine do when she is dancing with Joey?,126134,Friends,28.9-31.28,friends_s06e10_seg02_clip_07,She shakes her shoulders. 4096,The floor.,On his lap.,On a chair.,On a coffee table.,On the counter.,0,Where did Ross put his messenger bag when he said he was back from the vet?,126135,Friends,36.49-40.93,friends_s01e21_seg02_clip_07,The floor. 4097,Penny uses a red cloth.,Penny uses a white cloth.,Penny uses a blue cloth.,Penny uses a pink cloth.,Penny uses a black cloth.,1,What color cloth does Penny use after she clears her throat?,126136,The Big Bang Theory,16.29-23.44,s04e17_seg02_clip_02,Penny uses a white cloth. 4098,Sitting on a bench reading a newspaper.,Rubbing a dog on the sidewalk.,Playing with matches on the sidewalk.,Walking down the middle of the street.,Playing cards with a cop.,1,What was Castle doing when Beckett drove up?,126137,Castle,8.39-13.05,castle_s02e11_seg02_clip_00,Rubbing a dog on the sidewalk. 4099,Red.,Blue.,White.,Yellow.,Teal.,2,What color is Phoebe's shirt when she is in Monica's apartment?,126138,Friends,0-7.13,friends_s08e04_seg02_clip_04,White. 4100,plate,bag,shirt,marker,glass,3,What was helping holding before she started talking?,126139,The Big Bang Theory,0-5.93,s06e04_seg02_clip_13,marker 4101,George,Susan,Izzy,Derek,Addison,1,Who was sitting with Meredith before Cristina walked in?,126140,Grey's Anatomy,45.91-58.52,grey_s03e18_seg02_clip_21,Susan 4102,Howard is excited. ,Howard is disgusted. ,Howard is jealous. ,Howard is in love. ,Howard is green with envy. ,1,What is Howard's reaction when Raj says that he wants a dolphin or hummingbird as his first tattoo?,126141,The Big Bang Theory,24.11-29.46,s05e09_seg02_clip_05,Howard is disgusted. 4103,Amy suggests that Penny and Leonard go sit in a jacuzzi together.,Amy suggests getting Penny and Leonard some professional help.,Amy suggests that Penny and Leonard hug it out.,Amy suggests giving Penny and Leonard some privacy.,Amy suggests that Penny and Leonard draw pictures to illustrate how they feel.,3,What does Amy suggest doing after Sheldon attempts to help Penny and Leonard?,126142,The Big Bang Theory,9.32-39.15,s10e13_seg02_clip_11,Amy suggests giving Penny and Leonard some privacy. 4104,She offered to help him seek revenge..,"Rachel responded ""That was you, we heard about you in junior high"".",She offered to take him out to dinner.,She did not respond.,She revealed that she was the one who stole his clothes.,1,What was Rachel response after Ross told her about a bad experience in school when someone stole his clothes?,126143,Friends,22.81-30.61,friends_s07e16_seg02_clip_21,"Rachel responded ""That was you, we heard about you in junior high""." 4105,House didn't get as many answers wrong as he thought,The odds are higher than House thought,House's package will arrive sooner than House expected,House will have more people at his party,Someone wants to play House's game,4,"Why does House get excited after Kutner says ""seven to fourteen""?",126144,House M.D.,68.55-75.23,house_s05e06_seg02_clip_01,Someone wants to play House's game 4106,a rocket booster,gold,a new computer,a new laser,donation,4,What was Mrs. Latham going to give the science department when she spoke to Leonard?,126145,The Big Bang Theory,0-17.42,s04e15_seg02_clip_13,donation 4107,House is tired of hearing him yap,The man is having a heart attack ,He discovered a treatment to save him,His patient is going to start bleeding,There is no winning the argument ,3,Why does House say he has to leave Wilson when he is trying to help him out?,126146,House M.D.,55.02-69.98,house_s04e01_seg02_clip_15,His patient is going to start bleeding 4108,She hugged Phoebe.,She sat on the couch.,She picked her purse up from the table.,She put her hand on Phoebe's shoulder.,She gave Phoebe some money.,2,"What did Monica do after she told Phoebe ""good work"" ?",126147,Friends,6.51-8.99,friends_s08e16_seg02_clip_05,She picked her purse up from the table. 4109,Ross said he would see his college roommates at the gym,Ross said he would see his college roommates on the street,Ross said he would see his college roommates at reunions,Ross said he would see his college roommates by accident,Ross said he would see his college roommates at dating events,2,Where does Ross say he would see his college roommates when he is talking to Rachel,126148,Friends,16.07-25.53,friends_s05e05_seg02_clip_17,Ross said he would see his college roommates at reunions 4110,A bag of medication,A laptop,A phone,A book,A cup of coffee,3,What was on the table in front of Cameron and Chase when the team was discussing Anti-venom?,126149,House M.D.,12.02-21.74,house_s01e21_seg02_clip_11,A book 4111,clean suits,hazmat suits,sterile suits,regular suits,no suit protection,2,What suits did Burke say to put on when the group were doing surgery?,126150,Grey's Anatomy,0-16.75,grey_s03e14_seg02_clip_15,sterile suits 4112,Bernadette said Leonard won the teddy bear.,Bernadette said Howard won the teddy bear.,Bernadette said Penny won the teddy bear.,Bernadette said Sheldon won the teddy bear.,Bernadette said Stuart won the teddy bear.,4,Who did Bernadette say won the teddy bear when she was holding the teddy bear?,126151,The Big Bang Theory,29.11-42.02,s09e12_seg02_clip_09,Bernadette said Stuart won the teddy bear. 4113,PST,MVP,ALP,LEP,GDP,1,What kind of player does Castle say Derek was when he was with an ambulance chasing Pitbull?,126152,Castle,8.18-12.73,castle_s07e19_seg02_clip_06,MVP 4114,Because he thinks everyone hates him.,Because she told him he is the worst human ever.,Because she shows him a knife.,Because that is what she tells him.,Because she says she is not there to convince him to live.,4,Why does the man think the blonde hates him after her first few words?,126153,House M.D.,0-24.5,house_s08e22_seg02_clip_17,Because she says she is not there to convince him to live. 4115,excruciating stomach pain,sick feeling in stomach,virus,flu,vomiting,0,What did Cameron say can cause malnutrition when Cameron was talking to House and her other colleagues?,126154,House M.D.,0-7.27,house_s06e04_seg02_clip_13,excruciating stomach pain 4116,Monica,Ross,Chandler,Joshua,Rachel,2,Who answers the sleep clinic worker after Joey starts snoring?,126155,Friends,40.22-52.22,friends_s04e20_seg02_clip_12,Chandler 4117,Chandler sucker punched Little Bully.,Chandler grabbed the watch and ran.,Chandler wondered if it was within the fight's rules to wear a watch as a weapon.,Chandler wondered if they could call off the fight.,Chandler quietly asked Ross if they could call Joey over for backup.,2,How did Chandler react when Little Bully took his watch off?,126156,Friends,16.82-36.6,friends_s02e21_seg02_clip_18,Chandler wondered if it was within the fight's rules to wear a watch as a weapon. 4118,Sam drove to North Carolina,Sam drove to Alabama.,Sam drove to Canada.,Sam drove to New York.,Sam drove to Massachusetts.,3,Where did Sam drive to when he wanted to secure a property?,126157,Castle,16.1-18.85,castle_s04e08_seg02_clip_10,Sam drove to New York. 4119,Gives her his sweatshirt.,Offers to buy her dinner.,Says he'll take her to a movie.,Says he never wanted to hurt her.,Hugs her.,3,How does Alex comfort Izzie when she's crying?,126158,Grey's Anatomy,45.25-59.61,grey_s02e12_seg02_clip_24,Says he never wanted to hurt her. 4120,She holds up one of the shoes she is wearing,A brand new bottle of perfume,A pink cashmere blanket,A bottle of good champagne,Her hand with jewelry on it,4,"What does Rachel show Monica when she says, ""At least he bought me something with it?""",126159,Friends,9.86-17.41,friends_s04e05_seg02_clip_19,Her hand with jewelry on it 4121,Barney ordered a drink,Barney kissed Robin,Barney stood up,Barney looked up,Barney waved his hands,3,What did Barney do after drinking from his glass?,126160,How I Met You Mother,0-8.14,met_s05e02_seg02_clip_16,Barney looked up 4122,Take a tap class,Audition for Cats,Go ice skating in Central Park,Make brownies with pot,Play music for spare change on the street.,1,What Does fake Monica suggest they do the next day when she is in Monica's kitchen?,126161,Friends,0.3-17.11,friends_s01e21_seg02_clip_11,Audition for Cats 4123,He did nothing but okay video games,He had relations with another woman,He slept in all day,He read a lot of books,He went to the bar every night,1,"What did Ross do when he and Rachel were ""on a break"" that made Rachel mad?",126162,Friends,5.51-41.78,friends_s04e01_seg02_clip_18,He had relations with another woman 4124,Reading the newspaper. ,Reading a book. ,Eating. ,Drinking wine. ,Drinking a beer. ,0,What is Martha doing when she is talking to Castle?,126163,Castle,0-2.29,castle_s04e03_seg02_clip_00,Reading the newspaper. 4125,Thatcher is attacking the vending machine,Denny is attacking the vending machine,Mr. Griswold is attacking the vending machine,Chief Webber is attacking the vending machine,Mr. Freeark is attacking the vending machine,4,Who is attacking the vending machine before Cristina shows up,126164,Grey's Anatomy,1.78-13.81,grey_s02e14_seg02_clip_13,Mr. Freeark is attacking the vending machine 4126,She went to the icebox.,She reached for the sugar.,She put on her coat.,She grabbed her purse.,She poured coffee.,0,What did Sam do after she looked at her watch.,126165,House M.D.,13.63-18.34,house_s06e18_seg02_clip_00,She went to the icebox. 4127,Robin,Ted,Marshall,Chloe,Zoey,2,Who was in the room when Lily was talking about Marshall to Robin?,126166,How I Met You Mother,48.11-59.03,met_s06e05_seg02_clip_17,Marshall 4128,Rachel mentions there are 2 people messing with her and Phoebe.,Rachel mentions there is 1 person messing with her and Phoebe.,Rachel mentions there are 6 people messing with her and Phoebe.,Rachel mentions there are 4 people messing with her and Phoebe.,Rachel mentions there are 3 people messing with her and Phoebe.,0,How many people does Rachel mention are messing with her and Phoebe when talking to Joey and Phoebe?,126167,Friends,2.7-8.7,friends_s05e14_seg02_clip_13,Rachel mentions there are 2 people messing with her and Phoebe. 4129,"After six months, three months, and three years.","After six days, three weeks, and six months.","After six weeks, three months, and six months.","After six weeks, six months, and six years.","After three weeks, six months, and six days.",2,When the doctor was talking to Cameron when did he say she should get tested?,126168,House M.D.,61.25-79.39,house_s02e07_seg02_clip_06,"After six weeks, three months, and six months." 4130,her phone,a beer bottle,a straw,her shoes,her purse,2,What is in Honey's hand when she talks about receiving emails from Michelle Obama?,126169,How I Met You Mother,0-5.7,met_s06e15_seg02_clip_02,a straw 4131,She pointed at them.,She flipped them both off.,She put her fingers in the shape of an L on her forehead.,She put up both her hands defensively.,She waved goodbye.,0,What gesture did Penny use after Sheldon defended the time machine?,126170,The Big Bang Theory,20.95-24.79,s01e14_seg02_clip_07,She pointed at them. 4132,He gave the ring to his girlfirend.,It has been stolen. ,He lost the ring. ,He pawned the ring. ,It is stuck on his finger. ,4,Why can't Esposito give back the wedding ring after Ryan asks for it to be returned? ,126171,Castle,10.85-20.8,castle_s04e18_seg02_clip_16,It is stuck on his finger. 4133,Penny asks what strike three means.,Penny apolizes to Sheldon.,Penny leaves the spot to Sheldon.,Penny makes fun of Sheldon.,Penny requests Leonard for help.,3,What does Penny do when Sheldon's gives strike three?,126172,The Big Bang Theory,21.54-30.1,s02e07_seg02_clip_04,Penny makes fun of Sheldon. 4134,a story,a joke,money,a bike,a friend,3,What did Barney bring to the bar when he visited his friends?,126173,How I Met You Mother,9.45-20.08,met_s02e20_seg02_clip_07,a bike 4135,Howard is excited because he likes all the things Amy likes.,Howard quickly becomes bored with her and begins to turn on the radio.,Howard is disappointed because he thought Amy liked swimming.,Howard is angry because Amy didn't include him in her list of interests.,"Howard is neutral because he likes a couple of the things that she likes, but not all of them.",1,What is Howard's reaction when Amy lists her interests?,126174,The Big Bang Theory,34.42-41.86,s07e03_seg02_clip_06,Howard quickly becomes bored with her and begins to turn on the radio. 4136,Took a drink,Hugged Monica,Hung up the phone,Stood up,Jumped on his bed,3,What did Ross do after Emily said she would come to New York?,126175,Friends,42.24-47.56,friends_s05e04_seg02_clip_09,Stood up 4137,Ms. Twohey insisted on meeting Rob today.,Ms. Twohey was speaking with a weird high pitched voice.,Ms. Twohey asked personal questions about Rob.,Ms. Twohey kept making weird buzzing sounds.,Ms. Twohey insulted Rob for no particular reason.,0,Why did Rob find the conversation he had with Ms. Twohey odd after he finished talking to her on the phone?,126176,Castle,17.62-20.33,castle_s05e10_seg02_clip_03,Ms. Twohey insisted on meeting Rob today. 4138,He got a thoughtful look of tension on his face when he was reading.,He was laughing and making funny faces just because.,He got a depressed look on his face as he was reading.,He got an anxious look on his face when he was reading.,"He got an aggravating, i'm the smartest person in the world look.",4,What look does Chase say House got when he was looking at a page in the patient's chart.,126177,House M.D.,76.92-91.03,house_s03e08_seg02_clip_01,"He got an aggravating, i'm the smartest person in the world look." 4139,A GMC.,A BMW.,A Volkswagon., A LaSabre.,A Ford.,3,What kind of car does Ross talk about when he is on stage?,126178,Friends,22.07-26.43,friends_s08e02_seg02_clip_12, A LaSabre. 4140,The other prisoner smiles,The other prisoner yells,The other prisoner turns his back towards House,The other prisoner yawns,The other prisoner leaves the cell,2,What does the other prisoner do before House takes out the pills?,126179,House M.D.,16.32-24.49,house_s08e01_seg02_clip_15,The other prisoner turns his back towards House 4141,a dog,Castle,Beckett,a strange old man,Keith Murphy,4,Who is the first person Esposito and Ryan question after they go into the office?,126180,Castle,25.99-36.03,castle_s02e12_seg02_clip_21,Keith Murphy 4142,James,House,Jack,Adam,Cane,1,"Who was Taub talking to when she said ""I don't think he was faking""",126181,House M.D.,45.7-52.03,house_s06e19_seg02_clip_02,House 4143,He found it on the ground,He paid for it,He went Online,He created it,A friend gave it to him,2,How did Leonard say he got the gift for Penny when he talked to her?,126182,The Big Bang Theory,39.31-54.62,s07e12_seg02_clip_10,He went Online 4144,Sheldon speaks to himself.,Sheldon speaks to Howard.,Sheldon speaks to Penny.,Sheldon speaks to Raj.,Sheldon speaks to no one.,3,Who does Sheldon speak to first when he sits down?,126183,The Big Bang Theory,1.99-14.95,s04e18_seg02_clip_16,Sheldon speaks to Raj. 4145,A stethoscope ,A scarf,A rope,A bag,A ribbon,3,What did the man in brown jacket has on his shoulder when he walked into the elevator?,126184,Grey's Anatomy,81.66-85.06,grey_s02e20_seg02_clip_23,A bag 4146,He gets mad. ,He tells her to stop telling him what to do. ,He looks back at his patient. ,He walks away. ,He says thank you. ,2,What does Alex do after Addison tells him to get back down to the clinic?,126185,Grey's Anatomy,82.48-86.84,grey_s03e15_seg02_clip_24,He looks back at his patient. 4147,Kutner is writing on a clipboard.,Kutner is writing on a laptop.,Kutner is writing on a notepad.,Kutner is writing on an index card.,Kutner is writing on his hand.,0,What is Kutner writing on when talking to Lawrence?,126186,House M.D.,3.12-6.24,house_s04e16_seg02_clip_08,Kutner is writing on a clipboard. 4148,Scott.,Foreman.,Michael.,Chase.,Wilson.,2,Who did House have Wilson meet after leading him to the table?,126187,House M.D.,26.01-34.85,house_s08e21_seg02_clip_07,Michael. 4149,A week.,A month.,A few months.,A few weeks.,Two months.,1,How long did Ross say he was looking for his sweater when he saw it at Monica's?,126188,Friends,28.01-38.81,friends_s08e02_seg02_clip_18,A month. 4150,Rachel said Phoebe is going to be in Rome,Rachel said Joey is going to be in Rome,Rachel said Monica is going to be in Rome,Rachel said no one is going to be in Rome,Rachel said Paolo is going to be in Rome,4,Who did Rachel say was going to be in Rome for the New Year's when talking to Chandler?,126189,Friends,0-5.8,friends_s01e10_seg02_clip_01,Rachel said Paolo is going to be in Rome 4151,Mad,In shock and surprise,Giggly,Sad,Frustrated,1,How does Dr. Rhodes react when Ross tells him his third nipple is on his butt?,126190,Friends,47.52-59.03,friends_s03e23_seg02_clip_03,In shock and surprise 4152,Cristina took Rick to the cafeteria,Cristina took Rick to the chapel,Cristina took Rick for a cigarette,Cristina took Rick to the roof,Cristina took Rick to sit on a bench outside the hospital,2,Where did Cristina take Rick before Derek shows up,126191,Grey's Anatomy,44.55-64.15,grey_s02e14_seg02_clip_13,Cristina took Rick for a cigarette 4153,Rachel.,His hair.,His teeth.,A door.,His phone.,3,What does Ross keep touching with his hand when he talks?,126192,Friends,0-7.67,friends_s02e04_seg02_clip_18,A door. 4154,white,pink,red,purple,yellow,2,What color flowers is Monica holding when she walks down the aisle?,126193,Friends,52.51-56.28,friends_s07e23-24_seg02_clip_38,red 4155,Because she was trying to scare Castle.,Because she stepped on a tack.,Because she hit her foot on the corner of the book shelf.,Because she was angry.,Because Castle scared her when he yelled like a zombie.,4,Why did Alexis scream after turning from behind the bookshelf?,126194,Castle,47.86-57.44,castle_s04e22_seg02_clip_26,Because Castle scared her when he yelled like a zombie. 4156,Chase has divorced Cameron,Cameron and Chase are arguing,Cameron still has the hots for him,Cameron has divorced Chase,Cameron is a workaholic ,2,Why does House think Cameron didn't go on her vacation with Chase after House says he's not her boss anymore?,126195,House M.D.,44.65-55.35,house_s05e21_seg02_clip_04,Cameron still has the hots for him 4157,The IRS,the airport,the container company,"Customs, Fish and Wildlife and the shipping company",The Navy,3,What three agencies did Beckett tell Esposito to print after she had an epiphany?,126196,Castle,0-15.83,castle_s02e14_seg02_clip_25,"Customs, Fish and Wildlife and the shipping company" 4158,Ross wants to see if Rachel is awake,Ross wants to go to the bathroom and it's in Rachel's room,Ross wants to be the groomsman for a wedding and wants Rachel to walk down the aisle with him,Ross wants to see if Rachel loves him,Ross wants to tell at Rachel,2,Why does Ross go talk to Rachel after he talks to Monica?,126197,Friends,12.57-27.6,friends_s10e12_seg02_clip_12,Ross wants to be the groomsman for a wedding and wants Rachel to walk down the aisle with him 4159,put his coat on,walked out of the hospital,took notes,made a face at Chase,threw his briefcase on the table,4,What did Foreman do after House told them to draw cultures for bacteria and fungi?,126198,House M.D.,26.43-30.46,house_s07e18_seg02_clip_01,threw his briefcase on the table 4160,German Shepards.,Blood-hounds.,Rottweilers.,Pitbulls.,Bull dogs.,1,What do the department have to find the bloody gloves when detectives are trying to identify the killer?,126199,Castle,8.18-10.9,castle_s07e20_seg02_clip_17,Blood-hounds. 4161,That he wears sandals with socks.,He leaves the fridge open.,He doesn't have manners.,He leaves the toilet seat up.,His favorite baseball team is the Braves.,0,"What does Ted bring up about not liking about his sister's husband, after Barney's rant?",126200,How I Met You Mother,55.33-60.83,met_s02e10_seg02_clip_11,That he wears sandals with socks. 4162,The window,The shelf,The door,The bed,The fridge,2,Where did Stella head to after she leave the presence of Ted?,126201,How I Met You Mother,56.43-60.03,met_s03e13_seg02_clip_13,The door 4163,coat,shirt,pants,hat,sock,4,What piece of clothing does Chase remove from the patient when he is screaming?,126202,House M.D.,60.55-68.29,house_s02e15_seg02_clip_09,sock 4164,A cat,Remote,Piece of pizza,A magazine,Box of cereal,4,What was Joey holding when Ross came in his apartment? ,126203,Friends,55.83-61.41,friends_s08e04_seg02_clip_04,Box of cereal 4165,Hank said he didn't believe he was really sick.,Hank said he didn't want his coworkers to judge him.,Hank said he didn't want Lexa to think he was a coward.,Hank said he didn't want to be bossed around.,Hank said he didn't want to become his parents.,4,What was Hank's reason for not wanting to quit his job when Cameron told him his job was making him sick?,126204,House M.D.,0-28.29,house_s06e07_seg02_clip_15,Hank said he didn't want to become his parents. 4166,Amber.,Lisa.,Eric.,Wilson.,A serial killer.,2,Who is at fault for harming the patient after Eric blames House?,126205,House M.D.,18.25-37.45,house_s04e16_seg02_clip_12,Eric. 4167,FBI,Cuddy,A cop,DEA,Vogler,4,Who has chase been feeding information to about house when he shows up to his office to talk?,126206,House M.D.,17.39-22.3,house_s01e16_seg02_clip_22,Vogler 4168,Sarah was at the doctor.,Sarah was at work.,Sarah was at her house in Long Island.,Sarah was at her daughter's dance recital.,Sarah was at the Hamptons.,3,Where was Sarah when Matt was killed?,126207,Castle,35.21-45.77,castle_s02e10_seg02_clip_24,Sarah was at her daughter's dance recital. 4169,lets go play basketball,lets to dinner,He had urgent matter come up ,let go play tennis ,how can he help him? ,2,What did Derek say that Pitbull told him when Derek called him to his car? ,126208,Castle,40.05-54.62,castle_s07e19_seg02_clip_07,He had urgent matter come up 4170,His front porch.,A steep cliff.,His car.,A tread mill.,His ego. ,3,What did the man fall on when He collapsed?,126209,House M.D.,7.58-15.17,house_s04e15_seg02_clip_16,A tread mill. 4171,baby formula,a bow,a pin,a flower,a binky,1,What is stuck to Ross's forehead after leaning into the baby carriage?,126210,Friends,23.5-27.16,friends_s09e11_seg02_clip_11,a bow 4172,In the car,In the toilet,In the elevator,Beside the fridge,On the ladder,2,Where was the man in brown jacket when Meredith rushed up to him?,126211,Grey's Anatomy,81.66-85.06,grey_s02e20_seg02_clip_23,In the elevator 4173,Her hand is a completely different color.,There is a severe wound underneath.,Her hand is twitching,Her hand is not functional.,She has a new hand.,1,Why is Meredith shocked when she removes the cloth from her patients hand?,126212,Grey's Anatomy,33.57-43.29,grey_s03e06_seg02_clip_07,There is a severe wound underneath. 4174,Chandler.,A police officer.,Ross.,The secretary.,Monica.,1,Who leaves the office when Gary leans back into his chair?,126213,Friends,50.47-53.12,friends_s05e21_seg02_clip_04,A police officer. 4175,She rubbed Chandler's head.,She put down a drink.,She kissed Chandler.,She zipped her top up.,She started dancing.,3,What did Sherry do after Rachael pulled her bar up?,126214,Friends,35.05-37.36,friends_s04e14_seg02_clip_12,She zipped her top up. 4176,The lady in the grey top put a cup of coffee down on the table,The lady in the grey top put some mail down on the table,The lady in the grey top put her keys down on the table,The lady in the grey top put her cellphone down on the table,The lady in the grey top put a grocery bag down on the table,1,What does the lady in the grey top put down on the table when she is talking to House,126215,House M.D.,76.84-86.5,house_s04e12_seg02_clip_03,The lady in the grey top put some mail down on the table 4177,The couch in the lobby.,The foot of her bed.,Blue chair in the room.,The toilet in the bathroom.,On the floor by the door.,2,"Where did the patient point to after saying her mother is ""sitting right there""? ",126216,House M.D.,1.34-4.45,house_s04e04_seg02_clip_10,Blue chair in the room. 4178,The hospital,The comic book store,His apartment,The cheesecake factory,The hallway,0,Where is Sheldon when he is singing soft kitty to Arthur?,126217,The Big Bang Theory,0-7.16,s06e22_seg02_clip_17,The hospital 4179,long walks,herbal tea,Sex,exercising,reading,2,What was the proven most effective method to help with anxiety Dr.Long Recommended after speaking with Rachel?,126218,Friends,21.66-61.03,friends_s08e22_seg02_clip_08,Sex 4180,Because Kyle said he saw Tom.,Because Kyle is funny looking,Because Tom is funny looking,Because they are lovers.,Because Tom was seen talking to Kyle.,0,Why did Castle think it was funny when Tom said Kyle would be hard to miss?,126219,Castle,0-5.4,castle_s04e22_seg02_clip_20,Because Kyle said he saw Tom. 4181,Leslie,Amy,Tyson,Nieman,Gates,1,Who called beckett on the phone when she is with castle behind the interrogation glass?,126220,Castle,79.99-84.2,castle_s07e14_seg02_clip_22,Amy 4182,on top of ross,on the floor,on the sofa,in the kitchen,on the coffee table,4,where is rachel sitting when joey is telling the group about a part that he got?,126221,Friends,50.96-58.59,friends_s01e06_seg02_clip_11,on the coffee table 4183,Asleep.,Happy. ,Relaxed. ,Severely distressed.,Angry. ,3,What is Rebecca's demeanor when she is laying in the machine? ,126222,House M.D.,36.91-46.83,house_s01e01_seg02_clip_05,Severely distressed. 4184,She goes to bed.,She starts crying.,She starts falling asleep.,She leaves with him.,She starts singing.,4,What does Alexis do when Castle gets up from the couch?,126223,Castle,63.9-70.95,castle_s02e07_seg02_clip_22,She starts singing. 4185,Rachel found a bag of money in a trashcan. ,Ross was there and he called out to Rachel. ,Rachel saw the plane was reserved for her only. ,Chandler was there and he asked Rachel to marry him. ,Phoebe was waiting for Rachel at the gate. ,1,Why was Rachel surprised when she walked through the airport? ,126224,Friends,46.1-51.87,friends_s05e01_seg02_clip_15,Ross was there and he called out to Rachel. 4186,A book.,A purse.,A bag.,A box.,A sandwich.,3,What did Sheldon hand to Penny after she got her mail?,126225,The Big Bang Theory,25.19-32.3,s02e14_seg02_clip_04,A box. 4187,4,5,6,7,8,0,How many pills did House have after he pulled them out of his pocket?,126226,House M.D.,23.37-27.83,house_s08e01_seg02_clip_15,4 4188,He's hungry,He's happy,He's shocked,He's disappointed,He's angry,2,How does Joey react before Ross leaves?,126227,Friends,0-6.41,friends_s08e03_seg02_clip_12,He's shocked 4189,Nora tells Barney she wants to have 6 kids.,Nora tells Barney she wants to move to Europe.,Nora tells Barney she wants to be married.,Nora tells Barney she is afraid of marriage.,Nora tells Barney she wants to be with an italian race car driver.,2,What does Nora tell Barney she wants when they're at dinner?,126228,How I Met You Mother,0-15.91,met_s06e18_seg02_clip_04,Nora tells Barney she wants to be married. 4190,The Library,Room 102,The Math building,Arbys,The Hospital,0,Where did Ross and Anita make love when Ross was in high school?,126229,Friends,25.88-42.16,friends_s08e09_seg02_clip_15,The Library 4191,Navy seal,Special forces,Commander,Contractor,A doctor,1,What did hayley say malcom use to be when talking to alexis about his past?,126230,Castle,24.49-29.39,castle_s08e14_seg02_clip_18,Special forces 4192,Because Joey wanted to impress Phoebe.,Because Joey wants to win the bet with Chandler.,As payback because Chandler hid all of Joey's clothes.,Because Joey was cold and catching the flu.,Because Joey wanted to know what it feels like to be Chandler for a day.,2,Why is Joey wearing all of Chandler's clothes when he enters the apartment?,126231,Friends,55.88-62.43,friends_s06e20_seg02_clip_14,As payback because Chandler hid all of Joey's clothes. 4193,In the chair on the left ,On the couch ,On the sit in the center ,Behind the couch ,At the bar ,0,Where is Ross sitting when looking at the frame ,126232,Friends,10.54-62.03,friends_s02e09_seg02_clip_02,In the chair on the left 4194,a ring,a tiara,a necklace,a gown,a pair of shoes,1,What present did Sheldon get when he visited Amy?,126233,The Big Bang Theory,0-19.28,s05e12_seg02_clip_15,a tiara 4195,She stood up.,She slung her head back.,She kissed Chandler.,She grabbed her phone.,She grabbed a water bottle.,1,What did Monica do after Phoebe mentioned her secret bachelorette party?,126234,Friends,3.24-6.75,friends_s08e08_seg01_clip_01,She slung her head back. 4196,two ,one,four or five,three or four,seven or eight ,2,How many days did the dinghy drift after it ran dry?,126235,Castle,59.9-69.89,castle_s07e01_seg02_clip_16,four or five 4197,Izzie's therapist,Gretchen's mom and dad,"Gretchen, Izzie and Addison",An emergency patient,Bailey,2,Who is on the elevator before it stops at the psych floor?,126236,Grey's Anatomy,16.85-44.77,grey_s03e06_seg02_clip_23,"Gretchen, Izzie and Addison" 4198,a plate of food,a beer,a pillow,headphones,a book,0,what does keo bring house when she approaches him on the plane,126237,House M.D.,61.27-70.73,house_s03e18_seg02_clip_02,a plate of food 4199,Origin story.,Birth story,Mother's story.,His wife's story,His mob story,0,What does Castle tell the man is everything when he talking to him?,126238,Castle,2.68-12.07,castle_s08e19_seg02_clip_07,Origin story. 4200,Phoebe,Rachel,Phoebe and rachel,Mrs. Geller,No one,2,Who does Ross walk down the isle with before monica comes down the isle?,126239,Friends,39.75-43.52,friends_s07e23-24_seg02_clip_38,Phoebe and rachel 4201,In the car,In the bedroom ,At work ,In the lab ,At Penny's apartment,0,Where were Amy and Sheldon when they was talking?,126240,The Big Bang Theory,0-52.8,s10e12_seg02_clip_06,In the car 4202,The name of the book was Relationships for Dummies,the name of the book was Harry Potter,the name of the book was Star wars,the name of the book was the Bible,There was no book,0,What was the name of the book Barney opened up to read when Lily was putting books on the shelf?,126241,How I Met You Mother,44.55-51.05,met_s02e05_seg02_clip_12,The name of the book was Relationships for Dummies 4203,Superman,Robin,Supergirl,Batman,Zorro,3,What superhero is behind Stuart when he is showing Penny a comic book?,126242,The Big Bang Theory,0-56.73,s02e20_seg02_clip_04,Batman 4204,Meredith,Cristina,Bailey,Burke,Derek,2,Who came in when Izzy was ready to leave the girl and get to other patients?,126243,Grey's Anatomy,44.07-70.08,grey_s03e14_seg02_clip_15,Bailey 4205,A pair of socks,A sandwich,A Beer,A basketball,A canoe ,3,What is Joey holding when he tells the guys he is auditioning to be a game show host?,126244,Friends,0-4.37,friends_s08e20_seg02_clip_00,A basketball 4206,He learns that Priya is in town.,To interject.,To be nosey.,To correct them.,Because Penny told him to.,0,Why does Leonard become interested in the conversation when Sheldon and Howard are talking?,126245,The Big Bang Theory,13.08-22.38,s04e16_seg02_clip_01,He learns that Priya is in town. 4207,A rifle. ,A hand gun.,A shotgun.,Nothing.,A knife.,3,What did the guy in the apartment have in his hand when Esposito told him to show his hands?,126246,Castle,86.04-90.19,castle_s05e07_seg02_clip_11,Nothing. 4208,Car,Money,Loft,Money,Jewelry ,2,Which item is Martha trying to get from a friend after her father passed away?,126247,Castle,47.16-65.02,castle_s07e23_seg02_clip_00,Loft 4209,Monica.,Rachel.,Joey.,Phoebe.,Pete.,3,Who gave Ross a burger after talking to Chandler?,126248,Friends,29.37-33.36,friends_s03e24_seg02_clip_12,Phoebe. 4210,they are in Penny's apartment,they are in Sheldon's apartment ,they are in a cafe,they are in a resturant,they are in a bar,0,Where are Penny and Sheldon standing after Leonard walks into the room?,126249,The Big Bang Theory,0-7.14,s01e02_seg02_clip_04,they are in Penny's apartment 4211,Working in the hospital,Walking,Sleeping,On vacation,Walking his dog,2,"What did Izzie think Dr.Karev, might be doing, after Dr.Karev did not respond to his beeper?",126250,Grey's Anatomy,34.13-40.26,grey_s02e10_seg02_clip_20,Sleeping 4212,He drank Marshall's drink.,Because he owed Ted money.,Because Ted owed him money.,He borrowed Marshall's car.,Because of the thing between him and Robin.,4,Why did Barney say it was akward being around Ted before Ted came to the bar? ,126251,How I Met You Mother,31.62-44.57,met_s03e17_seg02_clip_01,Because of the thing between him and Robin. 4213,A flower,A star,A dolphin,A cat,A dog,1,What is the figure of Nora's necklace when she is talking to Barney?,126252,How I Met You Mother,2.1-10.2,met_s06e18_seg02_clip_04,A star 4214,Howard likes it when Penny punches him. ,Howard is making fun of Penny. ,Howard asks to be punched. ,Howard's costume requires punches. ,Howard makes a sexist remark. ,4,Why does Penny punch Howard after he speaks?,126253,The Big Bang Theory,4.85-12.56,s04e11_seg02_clip_08,Howard makes a sexist remark. 4215,Ben's table,Phoebe's table,Joey's table,Richard's table,Janice's table,0,Where was Ross sitting when he was at Monica's wedding?,126254,Friends,0-7.5,friends_s08e01_seg02_clip_14,Ben's table 4216,A blanket,His headphones,A magazine,A book ,A jacket,1,What did Cuddy take off House after she walked up to him?,126255,House M.D.,26.87-34.15,house_s03e18_seg02_clip_04,His headphones 4217,Vogue Magazine,Her ramen,Her ISP,Cable subscriptions,Guys like Mike.,4,What is Penny done with when she's crying about Mike?,126256,The Big Bang Theory,30.82-61.02,s01e17_seg02_clip_07,Guys like Mike. 4218,Leonard ran away before he could introduce himself to Penny.,Leonard played it cool when he introduced himself to Penny.,Leonard peed his pants when he introduced himself to Penny.,Leonard threw up when he introduced himself to Penny.,Leonard introduced himself nervously to Penny.,4,How did Leonard finally introduce himself to Penny after he worked up the courage to ask her out?,126257,The Big Bang Theory,19.81-29.71,s07e11_seg02_clip_04,Leonard introduced himself nervously to Penny. 4219,took off her glasses,played with her hair,smirked and looked away ,left the room,thorw a book at him ,2,What did Penny do after Sheldon said he couldn't help them ?,126258,The Big Bang Theory,18.09-26.23,s06e19_seg02_clip_06,smirked and looked away 4220,To copy his tux,To copy his house key,To copy his car key,To copy his skin,To copy his behavior,3,Why was Castle taken after the man mentions a ship?,126259,Castle,50.85-55.37,castle_s07e02_seg02_clip_08,To copy his skin 4221,An envelope,A camera,A clipboard,A pen,A laptop,1,What was Lanie holding when they discussed the bruises found on the victim's head?,126260,Castle,40.93-47.97,castle_s03e05_seg02_clip_03,A camera 4222,Howard has pulled a hot dog from Sheldon's ear. ,Howard has a pulled a scarf from Sheldon't ear. ,Howard has pulled a rabbit from Sheldon's ear. ,Howard has pulled a knife from Sheldon's ear. ,Howard has pulled a quarter from Sheldon's ear. ,4,What does Howard magically pull from Sheldon's ear when he is doing magic tricks?,126261,The Big Bang Theory,49.5-52.74,s05e12_seg01_clip_01,Howard has pulled a quarter from Sheldon's ear. 4223,Writing.,Cleaning.,Cooking.,Crying.,Doing her hair.,2,What is Rachel doing when Rachel and Ross walk in the room?,126262,Friends,1.87-11.5,friends_s03e03_seg02_clip_00,Cooking. 4224,His mindset will kill him,The medication will kill him,The pain will kill him,The infection will kill him,Nothing will kill him,2,What does House know will kill him if he doesn't get the surgery when Stacy brings it up?,126263,House M.D.,80.98-88.02,house_s01e21_seg02_clip_22,The pain will kill him 4225,Went to Amy's house.,He went straight to his bedroom.,He sat down on the couch.,Went back to the party.,He brought Leonard a cup of tea.,4,What did Sheldon do after Leonard came back home from the Halloween party?,126264,The Big Bang Theory,27.47-36.93,s01e06_seg02_clip_13,He brought Leonard a cup of tea. 4226,Beckett picked up Ryan and took him home. ,Esposito had Ryan get back in the car and drive off. ,Ryan ran down the street to a McDonald's. ,Esposito got back in the car and drove off. ,"Esposito had Ryan go to subway entrance, seven o'clock. ",4,Where did Esposito have Ryan go after their car was hit and clowns started shooting?,126265,Castle,36.99-47.03,castle_s06e08_seg02_clip_13,"Esposito had Ryan go to subway entrance, seven o'clock. " 4227,Boxes,Books,Shoes,Makeup,Paper,0,What is placed all around the bed when Howard is going through the closet?,126266,The Big Bang Theory,25.69-28.97,s05e12_seg02_clip_03,Boxes 4228,Because he wants to see it.,Because he hates it.,Because he doesn't want to see it.,Because he needs to clean it.,Because he wants to buy it.,0,Why is Chandler excited when Ross tells him about he camera footage?,126267,Friends,27-31.45,friends_s08e04_seg02_clip_10,Because he wants to see it. 4229,Four,One,Three,,Two,4,How many babies did the mailman pass when he walked by the coffee shop?,126268,Friends,0-2.14,friends_s09e06_seg02_clip_00,Two 4230,Beckett has pizza in her hand.,Beckett has a cup in her hand.,Beckett has a dog in her hand.,Beckett has a baby in her hand.,Beckett has a mouse in her hand.,1,What does Beckett have in her hand when Serena asks her about the thief?,126269,Castle,0-12.09,castle_s04e05_seg02_clip_05,Beckett has a cup in her hand. 4231,He says within the next year. ,He says he doesn't know. ,He says within the next week. ,He says any day now. ,He says within the next summer. ,3,When does Leonard say the elevator will be fixed after Alfred asks?,126270,The Big Bang Theory,0-8.32,s09e24_seg02_clip_06,He says any day now. 4232,Standing next to a couch.,Standing in an operating room.,Sitting at his desk in his office. ,Standing in front of a patient room.,Sitting on a loveseat. ,3,Where is House when he is talking to Foreman? ,126271,House M.D.,2.58-14.42,house_s05e12_seg02_clip_20,Standing in front of a patient room. 4233,chandler was near the door ,chandler was near the lake ,chandler was standing near monica,chandler was near the lake ,chandler was riding the bike in the snow,2,where was chandler when he was talking to phoebe,126272,Friends,0-14.95,friends_s10e10_seg02_clip_07,chandler was standing near monica 4234,Supergirl,Wonder Woman ,Batgirl,Catwoman,Harley Quinn,1,Who does Sheldon want Penny to dress up as when describing the costume to her?,126273,The Big Bang Theory,0-11.1,s04e11_seg02_clip_06,Wonder Woman 4235,He dropped his cane.,He threw the envelope on the table.,He popped some pills.,He answered the phone.,He wrote on an envelope.,1,What did House do after Wilson left the room?,126274,House M.D.,33.59-40.03,house_s03e08_seg02_clip_06,He threw the envelope on the table. 4236,He said it was weird not to remember her husbands first name.,He said it was weird not to remember where she got her dress.,He said it was weird not to remember how much her dress cost.,He said it was weird not to remember the name of the hotel.,He said it was weird not to remember if her wedding was a buffet.,4,Why did Ted laugh at Robin after she hesitated to answer his question.,126275,How I Met You Mother,40.01-50.55,met_s02e09_seg02_clip_09,He said it was weird not to remember if her wedding was a buffet. 4237,"Joey was really unhappy, they had planned that hangout for a while.","Joey was cool with it, they hung out all the time anyways.",Joey was taken aback at Ross for ditching hangout and poked slight fun at him.,"Joey didn't really care, he was now free to call a woman he had been planning to.","Joey was glad, he had been meaning to get out of it for a while.",2,How did Joey respond when Ross cancelled their hangout?,126276,Friends,23.41-37.22,friends_s02e12-13_seg02_clip_28,Joey was taken aback at Ross for ditching hangout and poked slight fun at him. 4238,A joint,A pencil,A pen,A stapler,A syringe,4,What is Foreman holding after being told to treat the black female woman?,126277,House M.D.,76.01-91.03,house_s03e05_seg02_clip_20,A syringe 4239,Bernadette.,Raj.,Leonard.,Penny.,Howard.,2,Who are Sheldon and Amy talking about when in the car?,126278,The Big Bang Theory,0-54.3,s08e09_seg02_clip_06,Leonard. 4240,He started crying.,Everyone left the room in a single file line.,Everyone started clapping.,He gave everyone a high five.,He started singing.,2,What happened after Joey said he was sorry?,126279,Friends,0-10.56,friends_s03e07_seg02_clip_20,Everyone started clapping. 4241,Ross' natural charm.,Ross' stunning good looks.,Ross' superior intelligence.,Ross' natural charisma.,Ross' amazing body.,3,Why did Ross say the kids failed his midterm after he walked into the kitchen?,126280,Friends,50.12-57.28,friends_s07e18_seg02_clip_06,Ross' natural charisma. 4242,Annoyance,Competitivness,Anger,Sadness,Frustration,1,"Describe the emotion between Ryan, Esposito and Castle after Castle offers to make a wager",126281,Castle,57.61-83.49,castle_s02e02_seg02_clip_03,Competitivness 4243,Took off his shoes,Poured her coffee,Twirled apron strings,Rubs Stella head,Takes off his pants,2,What does Ted do when Stella tells him cooking is sexy? ,126282,How I Met You Mother,9.68-19.37,met_s04e01_seg02_clip_05,Twirled apron strings 4244,Penny is holding a mini umbrella.,Penny is holding Sheldon's hand.,Penny is holding coasters.,Penny is holding a bottle of beer.,Penny is holding her phone.,2,"What is Penny holding when she say ,""oh, the horror.""?",126283,The Big Bang Theory,32.87-36.59,s04e17_seg02_clip_02,Penny is holding coasters. 4245,"So what, it's not like I would miss House's brand of torture.","Oh well, there are other jobs out there.",Even if we run 100 test that only gives a 1% chance of saving these kids.,That actually might be the break I've been looking for. ,No he won't. He enjoys harassing me too much.,2,What did Foreman say directly after Wilson said House was going to fire him?,126284,House M.D.,67.94-76.06,house_s03e21_seg02_clip_21,Even if we run 100 test that only gives a 1% chance of saving these kids. 4246,They were part of the theater company,They were high school friends,They went to college together,They were cousins,They were siblings,0,How did Eddie know Pam and Justin before Justin was killed?,126285,Castle,55.46-85.82,castle_s06e16_seg02_clip_25,They were part of the theater company 4247,House says give Lithium,House says an encephalogram,House says give a blood test,"House says broad spectrum antibiotics, a cort-stim test, and an echocardiogram.",House says provide dialysis,3,How does House say the patient should be treated after he talks about controlling sepsis?,126286,House M.D.,16.23-37.1,house_s01e03_seg02_clip_01,"House says broad spectrum antibiotics, a cort-stim test, and an echocardiogram." 4248,Sam's passion is in reducing waste.,Sam's passion is in consulting.,Sam's passion is in teaching his kids about energy conservation.,Sam's passion is in his work.,Sam's passion is in his family values.,0,What does Helen say Sam's passion was after Castle asks her about Sam's job?,126287,Castle,70.37-80.82,castle_s02e10_seg02_clip_05,Sam's passion is in reducing waste. 4249,Penny calls him a liar. ,Penny tells him that he sees her every day. ,Penny tells him that she hates him. ,Penny wants to break up again. ,Penny says she can't do this anymore. ,1,What is Penny's reaction when Leonard tells her he misses her?,126288,The Big Bang Theory,9.49-10.75,s05e14_seg02_clip_00,Penny tells him that he sees her every day. 4250,blue,yellow,red,green,purple,1,What color is Rachel's dress when talking to monica,126289,Friends,0-9.8,friends_s07e01_seg02_clip_16,yellow 4251,A yellow rubber duck,A cup of coffee,A cookie,An I pad,A box,4,What is Sheldon holding when he's talking to Howard? ,126290,The Big Bang Theory,0-9.65,s05e21_seg02_clip_07,A box 4252,kiwi,A sword,Flan,Joeys shoes,a poopie diaper,0,What does Chandler threaten Ross with when he and Joey are running away?,126291,Friends,14.24-29.38,friends_s02e06_seg02_clip_21,kiwi 4253,Leonard is wearing a suit so he can look nice for girl friend.,Leonard is wearing a suit so he can look nice for his pitch.,Leonard is wearing a suit so he can look nice for his mom.,Leonard is wearing a suit so he can look nice for his dad.,Leonard is wearing a suit so he can look nice for Sheldon.,1,Why is Leonard wearing a suit when he is leaving the apartment?,126292,The Big Bang Theory,25.38-48.99,s04e15_seg02_clip_11,Leonard is wearing a suit so he can look nice for his pitch. 4254,Alluaudia.,Bamboo.,Rice paper.,Cork.,Hemp.,0,What die Gates say was used in sustainable architecture when everyone was trying to figure out where Hannah had come from?,126293,Castle,17.85-24.72,castle_s05e14_seg02_clip_10,Alluaudia. 4255,She didn't want to be with him anymore,She would try and make it work with him,She didn't forgive him,She wanted him back ,She wouldn't marry him,1,What did Emily decide after talking to Ross?,126294,Friends,41.3-46.62,friends_s05e04_seg02_clip_09,She would try and make it work with him 4256,A carrot.,His finger.,A pen.,His fork.,His knife.,0,What does Leonard start pointing with when he is talking with Raj?,126295,The Big Bang Theory,46.75-56.28,s04e14_seg02_clip_00,A carrot. 4257,Beside the window,At the door,Beside the shelf,Beside the cabinet,Beside the bed,3,Where was Lucas standing when the others starred at him?,126296,House M.D.,8.19-14.56,house_s05e02_seg02_clip_05,Beside the cabinet 4258,House informed the team that the kid's immune system has sparkly things in it.,House informed his team that their kid's immune system has a factory defect.,House told the team that the kid's immune system has zero chance of improving.,House let the team know that their kid's immune system was self-healing.,House said that the kid's immune system was right on schedule for his age.,1,What did House say their kid's immune system has when he was discussing the child's condition with his team?,126297,House M.D.,55.97-59.08,house_s03e08_seg02_clip_18,House informed his team that their kid's immune system has a factory defect. 4259,He knows because Chandler told him. ,He knows because Ross told him. ,He knows because Monica told him. ,He knows because Phoebe told him. ,He knows because Gunther told him. ,2,What does Joey say after Rachel confesses she had a crush on him when she first met him?,126298,Friends,23.64-28.99,friends_s07e05_seg02_clip_13,He knows because Monica told him. 4260,Penny sat on the chair.,Penny sat on a stool.,Penny sat on the rug.,Penny sat on the step.,Penny sat on the couch.,4,Where sat Penny when talking with Leonard?,126299,The Big Bang Theory,0-45.44,s08e20_seg02_clip_13,Penny sat on the couch. 4261,Rachel is upset,Chandler is upset,Joey is upset,Monica is upset,Ross is upset,4,Who is upset that they cannot guess all 50 states after they get their results?,126300,Friends,1.12-12.05,friends_s07e08_seg02_clip_01,Ross is upset 4262,"Sheldon, Howard, and Leonard are on a bus with inductees. ","Sheldon, Howard, and Leonard are sitting in a military vehicle.","Sheldon, Howard, and Leonard are standing outside the White House.","Sheldon, Howard, and Leonard are sitting in a government office.","Sheldon, Howard, and Leonard are visiting a veterans' hospital.",3,"Where are Sheldon, Howard, and Leonard when they have their conversation with Colonel Williams?",126301,The Big Bang Theory,0-42.07,s10e03_seg02_clip_17,"Sheldon, Howard, and Leonard are sitting in a government office." 4263,Penny is sleep with a dog when the phone rings,Bernadette is sleep with a dog when the phone rings,Raj is sleep with a dog when the phone rings,Amy is sleep with a dog when the phone rings,Howard is sleep with a dog when the phone rings,2,Who is sleep with a dog when their phone rings,126302,The Big Bang Theory,9.57-19.48,s10e04_seg02_clip_14,Raj is sleep with a dog when the phone rings 4264,Beckett opens an evidence bag.,Beckett opens a folder.,Beckett opens a laptop.,Beckett opens an envelope.,Beckett opens a wallet.,2,What does Beckett open for the suspect to see when Castle is talking?,126303,Castle,28.36-34.21,castle_s06e21_seg02_clip_22,Beckett opens a laptop. 4265,House has been playing the piano. ,House has been reading a magazine. ,House has been playing solitaire. ,House has been listening to an audiotape. ,House has been working a jigsaw puzzle. ,0,"What has House been doing when Foreman enters the room and shuts the door, wearing a pink scrub top?",126304,House M.D.,88.35-95.55,house_s03e15_seg02_clip_15,House has been playing the piano. 4266,the water cooler,the park,the workroom,the bathroom,Lunchroom,4,Where are the guys located when they are talking together,126305,The Big Bang Theory,0-15.56,s01e13_seg02_clip_07,Lunchroom 4267,Chandler was standing to Monica's left.,Chandler was sitting next to Monica.,Chandler was standing to Monica's right.,Chandler was sitting across from Monica.,Chandler was standing in front of Monica.,3,Where was Chandler when he was talking to Monica?,126306,Friends,0-20.75,friends_s03e25_seg02_clip_01,Chandler was sitting across from Monica. 4268,A cane,A pen,A book,A picture,A gun,4,What did Becket pointed to Acosta when she asked him not to move?,126307,Castle,57.19-63.22,castle_s08e08_seg02_clip_12,A gun 4269,Phoebe was wearing a boho t shirt.,Phoebe was wearing a white dress.,Phoebe was wearing a purple sweater.,Phoebe was wearing a brown dress shirt.,Phoebe was wearing a brown sweater.,2,What was Phoebe wearing when she spoke to Mr. A?,126308,Friends,0-24.9,friends_s02e11_seg02_clip_11,Phoebe was wearing a purple sweater. 4270,Standing beside the front door to the apartment,Out on the balcony smoking a cigarrette,Hiding under the bed in Monica's bedroom.,In the bathroom using Monica's razor to shave his beard,Sitting on the couch trying to watch a movie.,0,Where was Chandler when Rachel and Ross were arguing?,126309,Friends,39.78-52.91,friends_s04e01_seg02_clip_19,Standing beside the front door to the apartment 4271,Esposito,The woman in the background,Castle,Ryan,Montgomery,3,Who does Beckett hand the diamond to after Castle hands it to her?,126310,Castle,32.28-43.97,castle_s06e08_seg02_clip_11,Ryan 4272,"Raj wanted the girl to say, ""I may be available in the future.""","Raj wanted the girl to say, ""try again later.""","Raj would like the girl to sit him down, look him in the eye and say I love you.",Raj wanted the girl to talk in a strange accent.,Raj wanted the girl to talk to him in a flirtatious way.,2,How did Raj want a girl to talk to him when she told him she was not interested in him?,126311,The Big Bang Theory,12.73-19.77,s07e13_seg02_clip_12,"Raj would like the girl to sit him down, look him in the eye and say I love you." 4273,To annoy him.,To encourage him to make the call.,To stop him from making the call.,Just for fun.,To hurt him.,2,Why does Ted tackle Marshall when he is making a call?,126312,How I Met You Mother,0-20.14,met_s02e01_seg02_clip_03,To stop him from making the call. 4274,"""For Ross.""","""Whatever!""","""Say cheese.""","""Never say die!""","""One is the loneliest number.""",0,"Which phrase does Phoebe, Joey, and Rachel say before Monica walks into the apartment?",126313,Friends,5.4-9,friends_s02e05_seg02_clip_03,"""For Ross.""" 4275,He wants to go back to college.,He wants to get a kitten.,He wants to learn to salsa dance.,He wants to throw a bar mitzvah.,He doesn't know why Chandler is discussing Ross.,4,What does Joey tell Ross after he goes on a conspiracy rant?,126314,Friends,19.85-32.57,friends_s05e20_seg02_clip_13,He doesn't know why Chandler is discussing Ross. 4276,class room,lab,car,restaurant,Couch,4,Where was Sheldon when he received Amy text?,126315,The Big Bang Theory,25.15-31.68,s04e01_seg02_clip_00,Couch 4277,She is on the street,She is in her apartment,She is in Dubai ,She is with Rachel,She is sitting in the couch,4,Where is Monica when Ross starts talking to her?,126316,Friends,0-27.85,friends_s02e02_seg02_clip_01,She is sitting in the couch 4278,She sits on the car. ,She stands in front of the car. ,She hugs Castle. ,She hugs Montgomery. ,She passes out. ,1,What does Beckett do after she gets out of the car?,126317,Castle,5.56-13.64,castle_s03e22_seg02_clip_00,She stands in front of the car. 4279,To speed up,To move his steering wheel to the left,To move his steering wheel to the right,To slow down,Howard suggests that Sheldon give it a rest and try again tomorrow,4,What does Howard suggest Sheldon do when he is frustrated with his video game?,126318,The Big Bang Theory,0-13.76,s02e05_seg02_clip_13,Howard suggests that Sheldon give it a rest and try again tomorrow 4280,Rachel fainted.,Rachel looked at Ross.,Rachel laughed.,Rachel told Dr.Long that they can't do that.,Rachel started dancing.,1,What did Rachel do when Dr.Long told her about the most effective way of dealing with the anxiety?,126319,Friends,22.58-61.03,friends_s08e22_seg02_clip_08,Rachel looked at Ross. 4281,A judge's stand.,A staircase.,A window washing machine.,A police car.,A series of windows.,4,What does Castle pass before meeting with a man in a leather jacket?,126320,Castle,0-9.56,castle_s06e18_seg02_clip_24,A series of windows. 4282,Marshall.,Lily,Robin.,James,Jerry.,0,Who stands next to Barney when he was talking?,126321,How I Met You Mother,55.25-58.25,met_s06e14_seg02_clip_12,Marshall. 4283,Put out a BOLO alert with the van's description ,Send patrols out to search the neighborhood,Fly helicopters overhead with spotlights,Track the van's GPS,Have teams check footage from nearby street cameras ,4,What does Gates suggest to help track down the red van when they are looking for Beckett?,126322,Castle,0-17.87,castle_s07e15_seg02_clip_05,Have teams check footage from nearby street cameras 4284,"Lizzie, Ross, Paul, and Rachel are at a museum.","Lizzie, Ross, Paul, and Rachel are in Ross's apartment.","Lizzie, Ross, Paul, and Rachel are in Central Park.","Lizzie, Ross, Paul, and Rachel are at a restaurant.","Lizzie, Ross, Paul, and Rachel are at Rachel's apartment.",3,"Where are Lizzie, Ross, Paul, and Rachel when they have their conversation?",126323,Friends,0-51.32,friends_s06e21_seg02_clip_15,"Lizzie, Ross, Paul, and Rachel are at a restaurant." 4285,A napkin and a fork,A napkin to grab the coffee cup,A napkin and a spoon,A napkin and a Chinese to go container,A napkin and a water bottle,1,What does House grab when he tries to collect the parents DNA,126324,House M.D.,74.99-82.84,house_s01e02_seg02_clip_19,A napkin to grab the coffee cup 4286,Izzie,Derek,Meredith,Burke,Cristina,0,Who does Bailey tell to be thorough when she is examining the test results for a patient?,126325,Grey's Anatomy,22.23-36.37,grey_s02e05_seg02_clip_04,Izzie 4287,she is happy about it. ,She is a little annoyed,she is upset at him,She sings anyway,Sheldon wants to sing instead.,1,What is Amy's reaction when Sheldon does not want to hear her play. ,126326,The Big Bang Theory,3.9-9.9,s05e02_seg02_clip_09,She is a little annoyed 4288,the precinct,Exotic dance club,castles apartment,a school,a park ,1,where is becket when lanie calls her to tell her about the damage done to the wedding dress.,126327,Castle,0-9.98,castle_s06e23_seg02_clip_15,Exotic dance club 4289,He was coughing.,He was singing.,He was laughing.,He almost knocked down the lady.,He was sneezing.,3,What did Ross do when the show came on?,126328,Friends,5.49-6.41,friends_s04e18_seg02_clip_01,He almost knocked down the lady. 4290,Lily and Robin,Ted and Barney,Mom and Marcus,Ted and Robin,Marcus and Barney,2,Who did Marshall call out for after he hung up the phone with Honey?,126329,How I Met You Mother,0-39.67,met_s06e15_seg02_clip_15,Mom and Marcus 4291,House dumps out books.,House dumps out clothes.,House dumps out towels.,House dumps out toys.,House dumps out shoes.,1,What does House dump out of the box after picking it up?,126330,House M.D.,57.7-59.36,house_s04e15_seg02_clip_07,House dumps out clothes. 4292,Jane's brother. ,Jane's father. ,Jane's grandmother. ,Jane's mother. ,Jane's sister. ,3,Who was the patient in bed when Jane walked in?,126331,House M.D.,0-4.41,house_s04e10_seg02_clip_22,Jane's mother. 4293,A dress ,A suit ,All of Chandlers clothes,A holloween costume ,A leather jacket ,2,What was Joey wearing when he entered the apartment?,126332,Friends,5.84-12.91,friends_s03e02_seg02_clip_16,All of Chandlers clothes 4294,He doesn't like girls.,His mom wouldn't approve.,Leonard is in love with her.,She isn't his type.,He's saving himself for someone special.,4,Why does Sheldon insinuate he won't sleep with Penny after she asks him?,126333,The Big Bang Theory,37.5-43.17,s07e11_seg02_clip_09,He's saving himself for someone special. 4295,Monica was reading Phoebe's mail.,Monica was reading a book.,Monica was going over her own mail.,Monica was looking at Rachel's mail.,Monica was reading Chandler's mail.,3,What was Monica looking at when she was sitting on the couch?,126334,Friends,22.53-51.63,friends_s01e18_seg02_clip_00,Monica was looking at Rachel's mail. 4296,They all stand up and leave.,They all raise their hands.,They all take a bite out of their sandwich.,They all give a high five to each other.,They all do nothing and look at each other.,1,"What does Leonard, Sheldon, Raj and Howard all do after Leonard says we are the army ants?",126335,The Big Bang Theory,7.3-17.34,s01e13_seg02_clip_01,They all raise their hands. 4297,they don't hear anyting beep,they all look at the patient's scanner,they look at the computer,they look at their cellphones,they all look at thier pagers,4,"What do Chase, Cameron, and Foreman all look at after they hear it beeping?",126336,House M.D.,66.85-76.26,house_s03e11_seg02_clip_08,they all look at thier pagers 4298,Leonard cutting the cord with Raj. ,Leonard cutting the cord with Sheldon. ,Leonard cutting the cord with Leonard. ,Leonard cutting the cord with Priya. ,Leonard cutting the cord with Penny. ,4,What does Priya say she appreciates when her and Leonard embrace?,126337,The Big Bang Theory,9.69-24.22,s04e18_seg02_clip_03,Leonard cutting the cord with Penny. 4299,At church.,In a store.,In a bathroom.,At his family reunion.,In bed sleeping.,2,Where was House when the test was going on ?,126338,House M.D.,10.71-17.4,house_s04e15_seg02_clip_16,In a bathroom. 4300,Grab a microphone,Get her jacket,Make a phone call,Types on the computer,Gets her keys,0,What does Beckett do after receiving confirmation about the subject?,126339,Castle,50.15-57.98,castle_s08e17_seg02_clip_22,Grab a microphone 4301,Protein malnutrition.,Epilepsy.,Infection.,Virus.,Auto immune disease.,0,"What did Cameron say could cause fevers when her, House, Chase and Foreman were trying to figure out why the patient is having seizures?",126340,House M.D.,88.13-91.33,house_s06e04_seg02_clip_12,Protein malnutrition. 4302,Joey thinks she will embarrass him. ,Rachel has been too shy. ,Rachel reminds him that they have met before. ,Joey has wanted to keep Rachel all to himself. ,Kash is hard to approach. ,0,What reason does Rachel give to Kash after he asks her why he's never seen her on set before?,126341,Friends,50.79-59.56,friends_s08e05_seg02_clip_02,Joey thinks she will embarrass him. 4303,Rachel,Phone,Chandler,Ross ,Joey,0,"Who says ""times up"" before Monica tells everyone what she drew?",126342,Friends,7.8-12.81,friends_s01e18_seg02_clip_22,Rachel 4304,eat,hugs Sheldon,put her hand on Sheldon's face,drink,paces around the room,2,"What does Amy do after she tells Sheldon ""Okay"" ?",126343,The Big Bang Theory,40.22-47.04,s09e11_seg02_clip_16,put her hand on Sheldon's face 4305,hit her,cried,hugged her,touched her,kissed her,3,What did Joey do after he started talking?,126344,Friends,14.71-22.21,friends_s01e10_seg02_clip_16,touched her 4306,Grocery bags. ,Shopping bags. ,A few purses. ,Puppies. ,Kittens. ,1,What does Jill have in her hands when she walks into the coffee shop?,126345,Friends,0-2.85,friends_s06e13_seg02_clip_05,Shopping bags. 4307,"He said he promised to ""lose"" the first pictures",He said he promised to edit the pictures,He said he promised to put in a good word to Mr. Farrow,He said he volunteered to do another shoot of her,He said he apologized and told her how she could keep such things from happening again,3,How did Mr. Monroe say he and Jenna resolved their problems when Beckett and Castle went to see him?,126346,Castle,71.63-86.3,castle_s02e03_seg02_clip_11,He said he volunteered to do another shoot of her 4308,HIV,Aids,Dengue Fever,Ebola Virus,Swine Flu,2,What was found in the blood work after it was ran?,126347,Castle,18.04-27.29,castle_s07e01_seg02_clip_18,Dengue Fever 4309,Because Penny is friend with Alex.,Because Penny think that Alex flirt with Leonard.,Because Penny wants to visit Alex.,Because Penny thinks Alex is good.,Because Penny thinks that is okey that Alex flirt with Leonard.,1,Why Penny mentioned Leonard and Alex after Sheldon was talking about a person that flirt?,126348,The Big Bang Theory,2.21-63.02,s06e12_seg02_clip_03,Because Penny think that Alex flirt with Leonard. 4310,Pauls brother,Jared stone,A lawyer,No one,It couldn't be traced,1,Who did the video cam footage reveal calling paul on a payphone before paul died?,126349,Castle,64.02-72.64,castle_s07e08_seg02_clip_02,Jared stone 4311,She does no damage to the door.,The door breaks open.,She kicks a large hole in it.,Her stiletto gets stuck in it.,She breaks the door down. ,3,What happens when Tina tries to kick the door down? ,126350,Castle,7.6-15.19,castle_s07e22_seg02_clip_08,Her stiletto gets stuck in it. 4312,Monica Roland-ski,Katy perry,Beyonce ,Marilyn,Shad,0,What did Barney call Robin after Chloe left ?,126351,How I Met You Mother,57.05-57.62,met_s02e07_seg02_clip_18,Monica Roland-ski 4313,because he did not get the food he ordered,because bullies have taken things from them,becasue he has to work late,because he was passed up for a promotion,because Howard insulted him,1,"Why is Sheldon angry when talking to Leonard, Raj and Howard in the lunch room?",126352,The Big Bang Theory,0-20.71,s04e19_seg02_clip_08,because bullies have taken things from them 4314,Diamondback,Harvard,Dartmouth ,Yale,Princeton ,2,Where does the doctor say he went to school after Castle sees his degree?,126353,Castle,15.68-26.43,castle_s07e23_seg02_clip_19,Dartmouth 4315,drink,Hat,Coat,Paper,food,3,What did Leonard grab before he started talking?,126354,The Big Bang Theory,21.04-24.8,s03e16_seg02_clip_04,Paper 4316,Sheldon stated it was a girly move,Sheldon stated that things are unfair,I will be back ,This is not over ,Leonard are you going to let her talk to me like that?,3,What did Sheldon say before he left the kitchen? ,126355,The Big Bang Theory,0-33.01,s04e21_seg02_clip_02,This is not over 4317,Drew,Taub,Dibala,Daniel,Dwyane,2,Who is Chase talking to when he tells Chase about his son?,126356,House M.D.,0-13.2,house_s06e03_seg02_clip_13,Dibala 4318,researching bikes,talking about Price is Right wheel,trying to deliver mail,saving on gas by biking,trying to give a message to Marshall,1,What was Barney doing when he brought the bike in?,126357,How I Met You Mother,9.45-27.17,met_s02e20_seg02_clip_07,talking about Price is Right wheel 4319,Howard and Raj. ,Howard and Sheldon. ,Howard and Leonard. ,Leonard and Sheldon. ,Leonard and Raj. ,0,Who is playing a game with Penny when they are in the apartment?,126358,The Big Bang Theory,56.91-59.63,s04e18_seg02_clip_03,Howard and Raj. 4320,House,Foreman,Cameron,Taub,Chase,4,Who was with 13 when she was helping someone?,126359,House M.D.,0-2.19,house_s07e22_seg02_clip_04,Chase 4321,Football,Basketball,Tennis racket,Hockey stick,Skateboard,0,What is Chandler holding when he is by Joey?,126360,Friends,19.21-28.21,friends_s03e09_seg02_clip_01,Football 4322,The Stokes' trust fund for Vance's wife would be in jeopardy with Emma.,Vance didn't want his wife to leave him.,Emma and Angelo witness Vance do something illegal.,The Stokes' would require Vance and his wife to take care of Emma.,Vance was afraid that Emma would inherit the business from the Stokeses. ,0,Why does Ryan and Esposito believe Vance murdered when Vance asks what would be his motive?,126361,Castle,75.8-90.78,castle_s06e04_seg02_clip_24,The Stokes' trust fund for Vance's wife would be in jeopardy with Emma. 4323,Kissed her,Pushed her,Moved out from her arms,Cried,Put his hand on her shoulder,2,What did Chandler do after the girl in read that he may have jumped the gun?,126362,Friends,38.37-47.52,friends_s03e11_seg02_clip_15,Moved out from her arms 4324,Showed him a photo,took off his watch,Adjusted his shirt sleeve,Put on a bracelet,put a phone in his pocket,3,What did Beckett do to Castle after she told him there should be stricter laws against telemarketers?,126363,Castle,5.85-14.86,castle_s08e02_seg02_clip_02,Put on a bracelet 4325,he was at his mother's house,he was in a car,he was in an amusment park,he was at the cheesecake factory,he was at a park,3,Where was Sheldon when Amy mentioned that he was not in the taxi he got into earlier?,126364,The Big Bang Theory,0-6.82,s04e17_seg02_clip_03,he was at the cheesecake factory 4326,nervous,excited,angry,hurt,irritated,1,How did Leonard feel when he was being quizzed?,126365,The Big Bang Theory,25.55-40.45,s01e13_seg02_clip_01,excited 4327,He tells Ellis to go back to bed,He tells George to get her labs,"He greets Dr Grey, and she returns the greeting",he walks in and hugs dr grey,George turns around and starts to leave,2,What happens after Richard walks by the room?,126366,Grey's Anatomy,11.63-17.23,grey_s02e04_seg02_clip_04,"He greets Dr Grey, and she returns the greeting" 4328,behind the breakfast counter,in his room ,at the table,on the street ,in the hall,0,where does Joey stand after the girl comes into the apartment?,126367,Friends,21.78-29.16,friends_s06e03_seg02_clip_19,behind the breakfast counter 4329,cried,he gave it back,he said to be more specific,ran away,punched him,2,what did sheldon do after howard told him to give it back,126368,The Big Bang Theory,32.05-41.2,s06e09_seg02_clip_01,he said to be more specific 4330,"""Something like this, I don't know. It comes free with a full tank of gas.""","""That's really none of your business!""","""Leonard's the one to ask, not me.""","""Sheldon told me the weight in terms of some equation--so I have no idea.""","""Just two pieces, actually; Amy and Bernadette and I ate all the rest.""",0,"What did Penny say after the Vet asked ""How big a box of chocolate was it?""",126369,The Big Bang Theory,9.15-14.46,s07e15_seg02_clip_07,"""Something like this, I don't know. It comes free with a full tank of gas.""" 4331,she wasnt holding anything,she was holding a bottle of champaign,she was holding a soda can,she was holding a beer,She was holding a glass of wine,4,What was the women holding when she was congratulating Ross and Rachael at the party,126370,Friends,0-7.54,friends_s08e18_seg02_clip_04,She was holding a glass of wine 4332,Hollywood,Disney Land,Key West,Bollywood ,Las Vegas.,2,Where does Chandler say he was going to be before Ross messed up his plans?,126371,Friends,34.87-49.98,friends_s09e17_seg02_clip_05,Key West 4333,Using the toilet.,Washing their clothes.,Brushing their teeth.,Taking a shower together.,Cleaning the bathroom.,3,What are Robin and Ted doing when Marshall walks into the bathroom complaining?,126372,How I Met You Mother,0-35.03,met_s02e01_seg02_clip_03,Taking a shower together. 4334,A dog,A crack whore,A meth head,A pill popper,A cat,1,What does House compare Amber to when she asks him why he thinks she has an ulterior motive?,126373,House M.D.,12.81-26.24,house_s04e12_seg02_clip_22,A crack whore 4335,A bag of chips.,His hand.,A cell phone.,Her ticket.,A water bottle.,3,What does Rachel hold when Ross professes his love to her?,126374,Friends,49.03-55.99,friends_s10e17-18_seg02_clip_38,Her ticket. 4336,Its unfortunate,Its a tragic waste,That's what she get,Why would she do that,She's beautiful for a criminal ,1,What did Esposito say about Sofia going to prison after she walked?,126375,Castle,45.38-53.1,castle_s07e12_seg02_clip_23,Its a tragic waste 4337,Penny tosses her hair over her shoulder.,Penny put's down her notebook on the table.,She gets a drink of water.,She storms out of the apartment.,Penny hugs Sheldon.,1,What does Penny do after Sheldon says stupid people make him sad?,126376,The Big Bang Theory,23.71-27.31,s03e10_seg02_clip_14,Penny put's down her notebook on the table. 4338,A pool cue,A tub of popcorn,An umbrella,A cell phone,A flashlight,3,What was Zoey holding when she was talking about making concessions?,126377,How I Met You Mother,28.74-35.09,met_s06e11_seg02_clip_02,A cell phone 4339,Boats.,Fireworks.,Lamps.,Lanterns.,Candles.,4,What was lit all around Monica and Chandler when he was proposing to her?,126378,Friends,40.03-44.87,friends_s06e24-25_seg02_clip_41,Candles. 4340,her officer ,her mother,her brother,her uncle,her father ,4,Who was standing behind Layla when she was talking to Beckett? ,126379,Castle,12.19-25.28,castle_s07e12_seg02_clip_13,her father 4341,wanted a lawyer,wanted a new job,wanted to be a doctor,frustrated with his parents,wanted to go home,3,What did Raj say when he spoke to Penny?,126380,The Big Bang Theory,14.95-31.73,s01e08_seg02_clip_05,frustrated with his parents 4342,Tokyo.,London.,The restroom.,Vermont.,At home.,3,Where does Monica say where is Ross located after Phoebe asks where he was?,126381,Friends,5.9-12.4,friends_s04e14_seg02_clip_08,Vermont. 4343,Two,Three,Four,Six ,One,1,How many doctors are in the office when they talk to Dr. Cuddy?,126382,House M.D.,22.26-43.18,house_s06e10_seg02_clip_22,Three 4344,She won the lottery,Shes getting a dog,She got a bonus check,She got promoted,She is pregnant,4,What news did Lily give to everyone after they walked in?,126383,How I Met You Mother,34.82-42.02,met_s06e12_seg02_clip_07,She is pregnant 4345,Ted thought marshall was already home,Ted didn't expect marshall to be home so soon,Ted thought marshall was in the bar singing kareoke ,Ted thought Marshall planned to be home in the morning,ted thought Marshall had two dates that night,1,"When Marshall arrives home after his date, why is Ted surprised?",126384,How I Met You Mother,50.72-60.8,met_s02e05_seg02_clip_12,Ted didn't expect marshall to be home so soon 4346,Ran over by a drunk driver,Killed in a war bombing ,Shot during a store robbery ,Lost during a failed transplant ,Drown during a Miami hurricane ,2,How does Lawrence say he lost his parents before asking intern thirteen for help with the lungs?,126385,House M.D.,35.89-52.01,house_s04e16_seg02_clip_08,Shot during a store robbery 4347,Turns and walks out the door.,Pushes Dr. House to the floor.,Laughs and says he was just kidding.,Shoves past Dr. House to use the bathroom.,Starts to cry.,0,What does Dr. Foreman do after he tells Dr. House he doesn't like him.,126386,House M.D.,33.59-35.43,house_s03e15_seg02_clip_24,Turns and walks out the door. 4348,A PC,A TV,A painting,A phone,A bag,2,What's on the wall behind Frank when he's talking to Phoebe?,126387,Friends,16.83-25.24,friends_s04e12_seg02_clip_04,A painting 4349,Detective Seeger like it a little bit.,Detective Seeger thinks it is a dump.,Detective Seeger is impressed and thinks it's nice.,Detective Seeger thinks it is awful,Detective Seeger doesn't like the hotel.,2,How does Detective Seeger feel when he sees the hotel that Beckett and Castle are staying at?,126388,Castle,40.51-55.53,castle_s03e22_seg02_clip_16,Detective Seeger is impressed and thinks it's nice. 4350,200,2000,100,1000,60,3,How many units did they say is in new york before they decide they can't hit them all?,126389,Castle,0-4.14,castle_s02e17_seg02_clip_14,1000 4351,66.,69.,67.,72.,69.,4,What year Ford car did House refer to when he was telling the pharmacist about his patient being in a coma?,126390,House M.D.,29.78-32.94,house_s04e14_seg02_clip_22,69. 4352,he left the house,tucked his willy between his legs...,he played the piano,he told his dad,he packed luch,1,what does Ross mom says he did after he got so upset?,126391,Friends,4.34-62.03,friends_s09e05_seg02_clip_14,tucked his willy between his legs... 4353,I want to make a bed out of this burger,I want to die inside this burger,"I want to get tiny fitted sheets for this burger and just crawl into this bun, get all cozy and die there.",I want to get cozy and die eating this burger,I love this place,2,What did Lilly say after she bit into her burger?,126392,How I Met You Mother,22.1-31.76,met_s04e02_seg02_clip_17,"I want to get tiny fitted sheets for this burger and just crawl into this bun, get all cozy and die there." 4354,Amy walked into the room with Foreman.,House ordered Foreman to discharge Henry .,House flashed two syringes to inject in Henry.,Foreman pulled out a video camera to record Henry.,Chase walked in the room to take Henry to surgery.,2,Why did Henry get scared after House ordered Henry to roll over?,126393,House M.D.,28.5-49.3,house_s02e14_seg02_clip_04,House flashed two syringes to inject in Henry. 4355,Penny calls for him.,Sheldon is pleased at figuring out the trick.,Sheldon is frustrated at not understanding how the card trick works.,He remembers he forgot a book.,He is late for an appointment.,2,Why does Sheldon leave after Howard guesses his card?,126394,The Big Bang Theory,51.84-59.48,s04e18_seg02_clip_16,Sheldon is frustrated at not understanding how the card trick works. 4356,House and Foreman,13 and Foreman,Foreman and Wilson,Cuddy and Wilson,House and Cuddy,1,Who is Marcus talking to when he is telling them his assignment?,126395,House M.D.,0-5.16,house_s06e12_seg02_clip_10,13 and Foreman 4357,Dan lied about previous intimate encounters with his girlfriend,Dan didn't bring his girfriend to the hospital soon enough,Dan's girlfriend was allergic to latex,Dan's girlfriend was allergic to penicillin,Dan's girlfriend needed CPR,3,What did House mean when he told Dan that he almost killed his girlfriend?,126396,House M.D.,40.43-46.07,house_s02e16_seg02_clip_05,Dan's girlfriend was allergic to penicillin 4358,His wallet,His bag,His helmet,His bike,His sunglasses,1,What does the driver take from the bike rider after he hits him with his car?,126397,Castle,21.52-35.55,castle_s02e08_seg02_clip_00,His bag 4359,He wants what conclusion his daughter comes to regarding her problem,He wants to get a bite to eat,He's got a hot date,He doesn't get paid past his eighth hour,He's retiring once and for all,0,Why does Castle say he is leaving when he's talking with Beckett?,126398,Castle,54.75-66.32,castle_s02e22_seg02_clip_25,He wants what conclusion his daughter comes to regarding her problem 4360,The army has failed to provide Brant with medication.,The army has failed to deliver Brant's father's file.,The army has failed to honorably discharge Brant.,The army has failed to deliver Brant's luggage.,The army has failed to pay Brant.,1,How has the army failed to keep its end of the bargain after Brant is admitted to the hospital?,126399,House M.D.,34.31-60.78,house_s08e15_seg02_clip_20,The army has failed to deliver Brant's father's file. 4361,Brushed her hair.,Pointed her finger at him.,Tied her hair.,Made a heart with her hands.,Blew him an air kiss. ,1,What did Monica do after Chandler pointed at her?,126400,Friends,33.39-36.82,friends_s03e06_seg02_clip_18,Pointed her finger at him. 4362,Picks the Chick up ,Covers the chicks ears.,Puts the chick back in the box.,Pets the chick. ,Calls Joey to side.,4,What does Chandler do after he tells Joey that he took her to the shelter?,126401,Friends,28.42-35.18,friends_s03e21_seg02_clip_16,Calls Joey to side. 4363,A soda can,Her coat,A marker,Her coffee,A phone,2,What does Beckett pick up after she approaches the whiteboard?,126402,Castle,5.64-12.69,castle_s02e12_seg02_clip_14,A marker 4364,a subway station,a cruise ship port,a bus station,a train station,the airport,4,where are robin and ted when they arrive late to board?,126403,How I Met You Mother,47.41-54.95,met_s02e15_seg02_clip_00,the airport 4365,She turned around with her head down.,She shook her head yes.,She shook her head no.,She shrugged her shoulders.,She just gave him a hug.,2,How did Rita respond when Castle asked her if he was going to see her or his dad again?,126404,Castle,64.17-71.45,castle_s08e11_seg02_clip_22,She shook her head no. 4366,Lily was sad.,Lily was happy.,Lily was sleepy.,Lily was content.,Lily was tired.,0,"What was Lily before Ted said, but I thought your summer was great?",126405,How I Met You Mother,2.79-62.03,met_s02e02_seg02_clip_12,Lily was sad. 4367,She puts a smaller towel on him. ,She puts another towel on him. ,She moves the towel lower. ,She lifts the towel. ,She puts more lotion on. ,3,What does Phoebe do when she walks to the side of her client?,126406,Friends,35.89-44.87,friends_s04e04_seg02_clip_06,She lifts the towel. 4368,Danny stayed in the bar.,Danny left the bar dead.,Danny left the bar alive.,Danny returned to the bar.,Danny never left the bar.,2,What was the conclusion of Beckett when was analyzing the case?,126407,Castle,78.8-82.93,castle_s03e10_seg02_clip_13,Danny left the bar alive. 4369,A clipboard. ,A notebook. ,An umbrella. ,A grocery bag. ,A gym bag. ,0,What is the woman holding when she is standing in the hallway with Leonard and Sheldon?,126408,The Big Bang Theory,1.48-3.84,s02e19_seg02_clip_03,A clipboard. 4370,It was Scientist Day,It was Nerd Day,It was Star Wars Day,It was Superhero Day,It was Marvel Day,2,What day is the group meeting about when Penny questioned them ,126409,The Big Bang Theory,0-12.4,s07e22_seg01_clip_00,It was Star Wars Day 4371,She was holding a costume.,She was holding a skull..,She was holding a vampire mask.,She was holding a figurine.,She wasn't holding anything.,1,What was the African American women in the shop holding in her hands before Beckett and Castle walked in?,126410,Castle,52.16-62.08,castle_s02e06_seg02_clip_02,She was holding a skull.. 4372,A jug of milk,A comic book,A laptop,A bowl,A flag,3,What was Leonard holding when Stephanie walked into the kitchen?,126411,The Big Bang Theory,16.84-22.78,s02e10_seg02_clip_00,A bowl 4373,Joey asked Monica how long the party was going to be for. ,Joey asked Monica where the bathroom is. ,Joey asked Monica if there is a chance they can switch from chicken to steak. ,Joey asked Monica where the rings were at. ,Joey asked Monica if they were happy. ,2,What did Joey ask Monica after Phoebe was done talking?,126412,Friends,0-43.47,friends_s08e01_seg01_clip_00,Joey asked Monica if there is a chance they can switch from chicken to steak. 4374,Sheldon put some gum in his mouth.,Sheldon was peeking into the door's peephole.,Sheldon shouted Leonard's name.,Sheldon checked under Penny's door.,Sheldon said Penny's name over and over again.,4,What was Sheldon doing when he was knocking on Penny's door?,126413,The Big Bang Theory,6.32-9.94,s04e01_seg02_clip_04,Sheldon said Penny's name over and over again. 4375,They talk about future plans. ,They talk about how their week has been. ,They talk about how their month has been. ,They talk about the life they would've shared together. ,They talk about Meredith. ,3,What do Richard and Ellis talk about when he visits her patient room?,126414,Grey's Anatomy,36.23-80.11,grey_s03e14_seg02_clip_25,They talk about the life they would've shared together. 4376,Monica told Rachel to shut up.,Monica told Rachel to give her more details.,Monica took the binoculars from Rachel.,Monica tried to look into the neighbor's apartment.,Monica laughed.,0,How did Monica react after Rachel said their neighbors were having sex?,126415,Friends,14.41-16.81,friends_s01e04_seg02_clip_16,Monica told Rachel to shut up. 4377,On his leg,On his face,On his arm,On his tommy,On his neck,1,Where did Stacy put the towel on the patient when he screamed? ,126416,House M.D.,25.42-30.04,house_s01e21_seg02_clip_19,On his face 4378,Joey thinks he's dressed as a hockey player.,Joey thinks he's dressed as a vicar.,Joey thinks he's dressed as a doctor.,Joey doesn't think anything about his outfit.,Joey thinks he's dressed as a goalie.,1,What does Joey think he is dressed as when he is wearing a hockey helmet?,126417,Friends,3.6-11.1,friends_s07e02_seg02_clip_18,Joey thinks he's dressed as a vicar. 4379,"Dolan calls Castle ""Costello.""",Dolan calls Castle by his name.,"Dolan calls Castle ""Big Boy.""","Dolan calls Castle ""Judy.""","Dolan calls Castle ""Shakespeare.""",4,Who does Dolan call Castle before handing him the phone?,126418,Castle,22.99-30.21,castle_s05e08_seg02_clip_24,"Dolan calls Castle ""Shakespeare.""" 4380,Dating his mother.," Driving on parkways, and parking on driveways.",Faking a lab result.,Not bringing him a sandwich.,Being so slow.,2,What did Taub say was very wrong when he was talking through the aisles?,126419,House M.D.,0-4.02,house_s06e16_seg02_clip_12,Faking a lab result. 4381,Penny was food into a bowl.,Penny was eating tacos.,Penny was watching TV.Penny was drinking milk.,Penny was reading a book.,Penny gave Leonard a slice of pizza.,0,What was doing Penny when Leonard sat on the table.,126420,The Big Bang Theory,8.5-68.03,s05e07_seg02_clip_08,Penny was food into a bowl. 4382,A sticker,A pie,A trophy,A computer,A wallet,0,What did Sheldon give Leonard after he looked at the whiteboard?,126421,The Big Bang Theory,37.21-45.91,s08e14_seg01_clip_02,A sticker 4383,walked off,hugged him,laid down,shoved him,got up,3,What did Penny do after hearing Leonard went to a dirty store?,126422,The Big Bang Theory,2.17-4.65,s08e17_seg02_clip_03,shoved him 4384,Wilson says that maybe he needs to have an actual conversation,Wilson says he needs a real friend,Wilson says he needs to have some time off,Wilson says he needs to take some time off with his wife,Wilson doesn't say anything,0,What does Wilson say he needs when he is talking to House about his problems?,126423,House M.D.,33.59-44.63,house_s02e14_seg02_clip_19,Wilson says that maybe he needs to have an actual conversation 4385,Penny,Amy,Raj,Howard,Leonard,4,Who was was pouring coffee when Sheldon was on the phone? ,126424,The Big Bang Theory,4.73-7.56,s09e07_seg02_clip_01,Leonard 4386,Paint dry. ,A television show. ,A comedy. ,A cartoon. ,A horror movie. ,4,What are Raj and Emily watching when they are on the couch?,126425,The Big Bang Theory,0-13.09,s07e21_seg02_clip_15,A horror movie. 4387,Give her a favorite squeaky toy. ,Hold her in your lap. ,Sing Katy Perry songs.,"Watch Hitchcock's ""The Birds.""",Sing to her in French.,2,What did Raj say would calm his dog after the Vet picked Cinnamon up?,126426,The Big Bang Theory,50.76-58.73,s07e15_seg02_clip_07,Sing Katy Perry songs. 4388,Because he needs her to remove him.,Because he needs her to leave him.,Because he needs her to slap him.,Because he needs her to yell at him.,Because he needs her to help him.,4,Why is Joey nervous when he is talking to Cecilia?,126427,Friends,11.53-18.89,friends_s07e15_seg02_clip_10,Because he needs her to help him. 4389,Smoking,Reading,Studying,Peeing,Buying Drugs from students,3,What was Joey doing in the library before he met Ross' perfect woman?,126428,Friends,19.23-26.67,friends_s09e14_seg02_clip_04,Peeing 4390,He runs,He shoots at the car,He gets in the car,He pushes Castle out of the way,He gets hit by the car,2,What does Bilal do when he is talking to Castle in a dark alley and a car pulls up?,126429,Castle,52.49-58.43,castle_s07e20_seg02_clip_24,He gets in the car 4391,Howard said Bert had a rough afternoon ahead of him.,Howard said Bert's afternoon would be better to him.,Howard said Bert should skip work for the rest of the day.,Howard said Bert should just forget about today and concentrate on tomorrow.,Howard said Bert's night would get worse.,0,What did Howard say when he was talking about Bert?,126430,The Big Bang Theory,5.7-9.38,s07e13_seg02_clip_12,Howard said Bert had a rough afternoon ahead of him. 4392,Castle put on night vision goggles.,Castle put on a clown mask.,Castle put stickers on his face.,Castle put on glasses.,Castle put on face paint.,0,What did Castle put on his face after he reached out and grabbed an item on a dresser?,126431,Castle,87.35-96.57,castle_s07e03_seg02_clip_26,Castle put on night vision goggles. 4393,Robin smacks Marshall.,Robin lays on the floor.,Robin proposes to Ted.,Robin dances with Ted.,Robin looks at Marshall with concern.,4,What does Robin do after Marshall chugs drinks? ,126432,How I Met You Mother,17.86-23.01,met_s02e15_seg02_clip_01,Robin looks at Marshall with concern. 4394,They start dancing. ,They start laughing. ,They start crying. ,They start playing pool. ,They start making out. ,4,What do Phoebe and Ross start doing after she kisses him on the cheeks?,126433,Friends,7-12.6,friends_s03e06_seg02_clip_19,They start making out. 4395,A puppy.,Fresh sheets.,The newspaper.,Chocolates.,Eggs.,4,"What did Monica offer to bring to Rachel in the morning after Rachel accepted ""the nice room?""",126434,Friends,7.02-61.03,friends_s06e18_seg02_clip_07,Eggs. 4396,"He tells the kids not to study and work hard, because look at what happened to her. ",He tells the kids that he doesn't know her. ,He tells the kids he never wants to meet her. ,He tells the kids they need to go home and not bother with school. ,He tells the kids that she was poisoned to death by her very own discovery. ,4,What does Sheldon tell the kids about Madam Curie when he is giving his speech?,126435,The Big Bang Theory,21.73-23.84,s06e18_seg02_clip_09,He tells the kids that she was poisoned to death by her very own discovery. 4397,Joey,Chandler,Phoebe,Monica,Rachel,0,Who thinks they are going to be alone forever before Phoebe is giving a massage in her apartment?,126436,Friends,0-14.86,friends_s08e14_seg02_clip_20,Joey 4398,He walks over and sits in the chair.,He grabs something and leaves real fast.,He gets into the refrigerator.,He hugs Rachel.,He knocks over the garbage can.,1,What does Joey do after he walks through the door?,126437,Friends,0-9.75,friends_s08e10_seg02_clip_09,He grabs something and leaves real fast. 4399,Taub,Wilson,Cuddy,Thirteen,Chase,4,What other doctor is standing with House when he is talking to Foreman and Cameron?,126438,House M.D.,3.22-5.53,house_s01e13_seg02_clip_10,Chase 4400,What's wrong with that?,What's wrong with them wanting a dog?,"It's normal to want to be normal, House.",Is is so wrong for them to want to have a normal child?,Why should they get a cocker spaniel?,3,What did Cameron say when House suggested that the family get a cocker spaniel?,126439,House M.D.,40.51-45.46,house_s03e04_seg02_clip_10,Is is so wrong for them to want to have a normal child? 4401,The chowder,A job offer,A clam bake,A cruise,The creme filling,0,Why does Foreman guess that House would be going to Boston when Cameron asks him?,126440,House M.D.,75.91-86.3,house_s03e15_seg02_clip_04,The chowder 4402,gets in the car,visits the locksmith,go to the morgue,opens the back of a jukebox,drives away,3,What does Beckett do after Castle asks her what the key is for?,126441,Castle,25.14-33.21,castle_s03e11_seg02_clip_11,opens the back of a jukebox 4403,"John said if by ""okay"" she meant, ""in unfathomable agony,"" then yeah, he's okay.","John asked Cameron how would he know, she's the doctor.",John told Cameron that everything looks like it's covered in sparkles.,John said he thinks so.,John said he couldn't take it anymore.,3," When Cameron asked John if he was still okay, what did he say after she asked him that?",126442,House M.D.,4.79-6.96,house_s01e09_seg02_clip_20,John said he thinks so. 4404,Because Karl wants George to feel comfortable talking to him and to show he understands George's position.,Karl wants George to feel threatened by him.,Karl thinks that George is trying to give him an unnecessary shot. ,Karl wants to show George that he does not trust him.,Karl places his hand on George in order to make George mad. ,0,Why does Karl place his hand on George's hand after George confesses?,126443,Grey's Anatomy,0-14.4,grey_s02e11_seg02_clip_21,Because Karl wants George to feel comfortable talking to him and to show he understands George's position. 4405,Rick was looking at the floor.,He was looking at Phoebe's feet.,Rick was looking at a magazine.,Rick was looking at the television.,Rick was looking at an invitation.,1,What was Rick looking at when he was on the table?,126444,Friends,12.77-18.29,friends_s04e04_seg02_clip_06,He was looking at Phoebe's feet. 4406,She wearing a club dress.,She wearing a dress.,She wearing a suit.,She was wearing a leather jacket.,She was wearing jeans and a t shirt.,3,Where and when was Beckett wearing? ,126445,Castle,4.74-86.22,castle_s02e06_seg02_clip_02,She was wearing a leather jacket. 4407,Racheal,Monica,Chandler,Phoebe,Joey,0,Who starts walking in the apartment after Mona and Ross start kissing?,126446,Friends,57.93-60.03,friends_s08e08_seg02_clip_16,Racheal 4408,A pair of ice skates,A purse,Awhite sweater,An orange scarf,A coat,4,What was on the back of the door when Rachel was leaving the office?,126447,Friends,6.83-10.08,friends_s05e17_seg02_clip_17,A coat 4409,Because was just too upset.,Because she slept with her boyfriend.,Because she didn't know where she was.,Because she lost her phone number.,Because she dumped her.,4,Why did Phoebe say she couldn't call Leslie when Monica asked her why she didn't call her?,126448,Friends,0-22.11,friends_s03e14_seg02_clip_10,Because she dumped her. 4410,Natalie most likely ordered some clothes.,Natalie most likely ordered hygiene products.,Natalie most likely ordered a new gun.,Natalie most likely ordered a suit for Castle.,Natalie most likely ordered some new clothes for Beckett.,0,What did Natalie most likely order when she says it will help with her research and that she needs the ladies room?,126449,Castle,34.21-53.11,castle_s03e11_seg02_clip_17,Natalie most likely ordered some clothes. 4411,Castle,Ryan ,Beckett,Gates,Lanie,0,Who was with Esposito when he was talking to mama about a murder? ,126450,Castle,0-7.35,castle_s08e09_seg02_clip_04,Castle 4412,Fangs and hair color,Fangs and hairspray,Fangs and hair gel,Fangs and a wig,Fangs and lipstick,2,What did Lloyd offer Ryan and Esposito after he said--if they change their minds?,126451,Castle,63.44-68.06,castle_s03e07_seg02_clip_08,Fangs and hair gel 4413,mug,x-ray,book,crutches,chart,3,What is Chase holding when he is talking to Park in the patient's room?,126452,House M.D.,0-9.95,house_s08e12_seg02_clip_25,crutches 4414,Rachel,Ralph Lauren,Phoebe,Dina,Monica,0,Who does Joey introduce to his sister after he walks into Rachel's office?,126453,Friends,22.52-31.36,friends_s08e10_seg02_clip_04,Rachel 4415,Chocolate milk,Straight tequila,A beer,A martini,A glass of wine,1,What does Meredith order when she is at the bar?,126454,Grey's Anatomy,54.76-92.03,grey_s03e01_seg02_clip_17,Straight tequila 4416,A few years,A few days,A few months,Never,Too long to remember ,1,When was the last time the doctor had seen Lewis before saying he was agitated? ,126455,Castle,30.46-43,castle_s07e23_seg02_clip_19,A few days 4417,The girls are at a charity function,The girls are at the firehouse,The girls are at a speed dating event,The girls are at their apartment,The girls are standing at a fire hose,3,Where are the girls when they are talking to the firemen,126456,Friends,44.44-53.26,friends_s01e14_seg02_clip_21,The girls are at their apartment 4418,A shadowy figure,A blue light,A sign from above,A child in a blanket,A person pointing to the building,1,What did Castle see before he ended up in that room?,126457,Castle,14.08-17.92,castle_s07e06_seg02_clip_14,A blue light 4419,playing ping pong,playing pool,throwing darts,singing karaoke,kissing,3,"What was Leonard and Raj doing when Penny, Amy and Bernadette walked in?",126458,The Big Bang Theory,44.47-54.28,s09e16_seg02_clip_11,singing karaoke 4420,Writing down notes. ,Standing by his bed.,Sitting in a chair.,Eating a sandwich.,Laying on a hospital bed.,4,What was Foreman doing when Joe started talking to him?,126459,House M.D.,0-4.55,house_s02e20_seg02_clip_16,Laying on a hospital bed. 4421,Raj was designing a robot. ,Raj was texting a friend. ,Raj was listening to music. ,Raj was asking Siri a question about gelato on his cell phone. ,Raj was setting his phone alarm.,3,What was Raj doing before Sheldon talked to him?,126460,The Big Bang Theory,0.6-13.14,s05e14_seg02_clip_08,Raj was asking Siri a question about gelato on his cell phone. 4422,Monica and Chandler feel awkward and sad.,Monica and Chandler feel happy.,Monica and Chandler feel excited that they won't have to see Mike anymore.,Monica and Chandler feel annoyed the Phoebe hasn't offered them water.,Monica and Chandler feel angry with Mike for not wanting to get married.,0,How do Monica and Chandler feel after Phoebe and Mike have their fight?,126461,Friends,47.9-56.02,friends_s09e16_seg02_clip_22,Monica and Chandler feel awkward and sad. 4423,Green,Red,Yellow,Blue,Black,4,What is the color of Monica's dress when she is talking to Roy?,126462,Friends,10.24-19.14,friends_s10e11_seg02_clip_11,Black 4424,She turns to cut vegetables. ,She turns to cook soup. ,She turns to cook lobster on the stove. ,She turns to cut meat. ,She turns to stir the soup. ,2,What does Monica do after she speaks with the waitress about sending someone in?,126463,Friends,0-6,friends_s07e07_seg02_clip_01,She turns to cook lobster on the stove. 4425,The woman kept staring at him while he was chewing,The woman asked for a piece of gum,The woman told him to stop smacking on the gum,The woman helped him when he was choking,The woman walked away from him,3,What did the woman do when Chandler was chewing gum,126464,Friends,8.85-22.13,friends_s01e07_seg02_clip_18,The woman helped him when he was choking 4426,Amused and smiling. ,Crying and sad. ,Angry. ,Irritated. ,Surprised. ,0,What is Monica's demeanor after Phoebe talks? ,126465,Friends,6.49-15.35,friends_s01e05_seg02_clip_01,Amused and smiling. 4427,Penny has brown hair and wonder woman has blone hair. ,Penny is blonde and wonder woman does not have blonde hair. ,Penny doesn't want to look like a slut with brown hair. ,Sheldon doesn't like the fact that Penny is not there. ,Sheldon doesn't like the fact that Penny brought her boyfriend. ,1,Why does Sheldon have such a problem with Penny's costume when she is over?,126466,The Big Bang Theory,3.43-7.42,s04e11_seg02_clip_08,Penny is blonde and wonder woman does not have blonde hair. 4428,Because she wanted to exercise.,Because she wasn't Katie's doctor.,Because she wanted to talk to Bailey.,Because she wanted to talk to the Chief., Because she wanted to talk to Yang.,1,Why did Meredith run out of the room after talking to Katie's parents?,126467,Grey's Anatomy,0-11.96,grey_s01e01_seg02_clip_05,Because she wasn't Katie's doctor. 4429,they are fighting all the time,they have not seen much of each other,he proposed during sex,they have different goals,they sex is not so great,2,Why does Penny feel things are wierd with Leonard when Amy asks how things are going with him?,126468,The Big Bang Theory,5.27-15.51,s06e01_seg02_clip_01,he proposed during sex 4430,Beckett starts talking to Ryan,Beckett starts talking to Castle,Beckett starts talking to Esposito,Beckett starts talking to no one,Beckett starts talking to the wall,1,Who does Beckett start talking to after she looks at the computer?,126469,Castle,7.21-14.42,castle_s05e20_seg02_clip_07,Beckett starts talking to Castle 4431,Monicas hand,A rubicks cube,The edge of the counter.,His breath.,The hem of his shirt.,1,What was Chadler holding when Phoebe was talking about why she ran?,126470,Friends,9.24-12.82,friends_s05e16_seg02_clip_17,A rubicks cube 4432,A fly,A shadow,A bee,A leaf,A ball ,1,What goes past the window when Castle is talking to Mark?,126471,Castle,58.17-63.17,castle_s05e17_seg02_clip_24,A shadow 4433,Martha,Ryan,Dave,Gretchen Cutler,Esposito ,3,Who do Beckett and Castle go to question after they get off the phone with each other?,126472,Castle,15.94-21.86,castle_s07e14_seg02_clip_20,Gretchen Cutler 4434,The woman looked 24,The woman looked 22,The woman looked 33,The woman looked 25,The woman looked 30,4,How old does Monica say the woman was when she talks to Chandler about dating?,126473,Friends,0-5.51,friends_s07e06_seg02_clip_04,The woman looked 30 4435,"She says ""whatever"" and turns her head",She jumps for joy,She slaps Meredith,She screams at Meredith,She pounds her fist on the table,0,How does Cristina react after Meredith says she's going to end it with Derek?,126474,Grey's Anatomy,12.42-16.11,grey_s03e02_seg02_clip_16,"She says ""whatever"" and turns her head" 4436,Joey.,Will.,Tag.,Chandler.,Richard.,2,Who did Ross run into on the street when they were wearing the same sweater?,126475,Friends,53.62-62.02,friends_s08e02_seg02_clip_18,Tag. 4437,Monica said George was a perfectionist.,Monica said George was intelligent.,Monica said George was shy.,Monica said George was aggressive.,Monica said George was outgoing.,2,What did Monica say George was like after Rachel asked about him?,126476,Friends,24.61-26.11,friends_s01e04_seg02_clip_16,Monica said George was shy. 4438,Alexis rented an apartment off campus.,Alexis started ordering textbooks.,Alexis sent notices to all her friends.,Alexis picked all her classes and bought T-shirts.,Alexis started looking for a car.,3,What did Alexis do after she sent in her application to Stanford?,126477,Castle,61.7-65.81,castle_s04e03_seg02_clip_00,Alexis picked all her classes and bought T-shirts. 4439,Tape,Marker,Knife,Wrapping paper,Phone,1,What was Monica holding when she was standing with her hand on a box?,126478,Friends,23.32-28.68,friends_s06e04_seg02_clip_05,Marker 4440,eight,one,six,three,two,4,how many people go up the stairs when kate and castle are walking down the stairs?,126479,Castle,43.39-91.36,castle_s04e12_seg02_clip_20,two 4441,Shanghai Number 12 Girls' School.,PS 12 in New York.,Eton in England.,Keystone Academy in Beijing.,Shanghai Number 10 Girl's School.,0,Where was it determined that Mia Ganghong goes to school when Sophia had the uniform insignia ran?,126480,Castle,45.58-51.45,castle_s04e16_seg02_clip_21,Shanghai Number 12 Girls' School. 4442,He sat down on the floor.,He stood up from a chair.,He sat down on the couch.,He sat down on a chair.,He answered the phone.,3,What Chandler do before he said about Ross and Rachel just knowing stuff?,126481,Friends,47.14-52.1,friends_s03e03_seg02_clip_04,He sat down on a chair. 4443,Penny is holding a beer,Penny is holding her cell phone,Penny is holding a bottle of wine,Penny is holding a laundry basket,Penny is holding a pitcher and cups,4,What is Penny holding when she sits on the sofa,126482,The Big Bang Theory,29.41-37.51,s06e23_seg02_clip_06,Penny is holding a pitcher and cups 4444,He got a tattoo,He signed a new book deal,He bought a new Tesla,He got engaged,He was offered a position as a British secret agent,4,Why does Beckett congratulate Castle after talking about his book?,126483,Castle,64.96-77.85,castle_s02e05_seg02_clip_17,He was offered a position as a British secret agent 4445,Neil had instructed Taub to put down that crap he's drinking.,"Neil told Taub to shut his stupid, lying, self-righteous mouth.",Neil had told Taub to leave his office and never come back.,Neil instructed Taub to check himself before he wrecks himself.,Neil said for Taub to loosen up a little and throw caution to the wind.,0,What did Neil tell Taub to do right after Taub had given him reasons to change his prototype?,126484,House M.D.,63.02-65.27,house_s05e18_seg02_clip_12,Neil had instructed Taub to put down that crap he's drinking. 4446,She leaves. ,She stands up. ,She slaps him. ,She hugs him. ,She drinks coffee. ,1,What does Phoebe do after her boyfriend kisses her?,126485,Friends,35.14-37.84,friends_s05e21_seg02_clip_07,She stands up. 4447,He invites her to his house.,He laughs at her.,He puts down the paperwork he was holding.,He slams the door.,He breaks the cabinet.,2,What does House do when Jodi says she thought it was okay?,126486,House M.D.,33.45-43.52,house_s01e03_seg02_clip_03,He puts down the paperwork he was holding. 4448,Because she always wanted to meet him.,Because she was responsible for Sheldon not missing Stan Lee.,Because she thought he could help get her into a movie.,Because she thinks she may be kin to him.,Because she needed an autograph.,1,Why did Penny tell Stuart she wanted Stan Lee's phone number after she asked for a favor?,126487,The Big Bang Theory,0-11.37,s03e16_seg02_clip_15,Because she was responsible for Sheldon not missing Stan Lee. 4449,House is in his office.,House is in the bathroom.,House is in the car.,House is in the hall.,House is in his bed.,0,Where is House when he is talking to his speaker phone.,126488,House M.D.,18.04-25.09,house_s04e04_seg02_clip_04,House is in his office. 4450,Penny called Bernadette mouse,Penny called Bernadette nerd,Penny called Bernadette short,Penny called Bernadette boney,Penny called Bernadette plain,2,What did Penny call Bernadette before she left to go see the woman that hurt her friend,126489,The Big Bang Theory,48.45-58.02,s07e08_seg02_clip_02,Penny called Bernadette short 4451,A blue blazer.,A blue hoodie.,A red t-shirt.,A lab coat.,A leather jacket.,1,What was House wearing when he told Afsoun it will get worst?,126490,House M.D.,61.44-64.76,house_s07e23_seg02_clip_17,A blue hoodie. 4452,"Well, phoebe, if you go clubbing on 5th avenue...","Hey, i'm one of those stinkers.",You do attract some stinkers,"Phoebe, i understand, i'll do what you ask",Guys can be such jerks,2,"What did Joey say to Phoebe, after Phoebe told Joey, lately all the guys she meet seems nice at first then turn out to be big jerks.",126491,Friends,50.76-59.03,friends_s08e23-24_seg02_clip_16,You do attract some stinkers 4453,Ray says he got the beer from his best friend.,Ray says he got the beer from the bar.,Ray says he got the beer from the store.,Ray says he got the beer from a young couple with tattoos. ,Ray says he brought the beer himself.,3,Where does Raj tell Leonard he got the beer after he walks over?,126492,The Big Bang Theory,10.66-20.03,s05e24_seg02_clip_04,Ray says he got the beer from a young couple with tattoos. 4454,Chandler and Joey are talking about checking out a new apartment,Chandler and Joey are talking about a new car,Chandler and Joey are talking about their dates,Chandler and Joey are talking about their parents,Chandler and Joey were not talking about anything,0,What are Chandler and Joey talking about after they enter the apartment?,126493,Friends,46.01-50.74,friends_s02e16_seg02_clip_08,Chandler and Joey are talking about checking out a new apartment 4455,A nurses station ,An office ,The cafeteria,A bus,The sidewalk ,0,Where are House and Cuddy when they are talking ,126494,House M.D.,23.26-31.76,house_s07e08_seg02_clip_05,A nurses station 4456,baseball bat,gun,jacket,a platter ,a plate of food,2,What is Beckett holding in her hand when she walking into the bar to speak with Rita?,126495,Castle,41.18-50.68,castle_s08e11_seg02_clip_14,jacket 4457,House said that Cameron's mommy instincts were kicking in.,House said all we can do is try.,House called Cameron the master of thinking.,House said that he'd be a lot more certain if it was his idea.,House said that it wasn't his call to figure out this one.,3,How did House respond to Cameron after Cameron suggested that the patient's malnutrition was connected to stomach pain?,126496,House M.D.,0-12.72,house_s06e04_seg02_clip_13,House said that he'd be a lot more certain if it was his idea. 4458,Harris like to collect surgical textbooks,It's a family heirloom ,It's a rare textbook worth thousands,Harris hates House,Harris already lined up a buyer for it,2,Why won't Harris sell House the book after House offers him 100% return on his investment?,126497,House M.D.,35.53-51.86,house_s06e20_seg02_clip_19,It's a rare textbook worth thousands 4459,"That she'll be going ""number two"".",That she had the asparagus.,That she'll probably be in there a while.,That she doesn't know where the restroom is.,That there are only single restrooms at that restaurant.,1,What does Leonard's date give Bernadette a fair warning about when making their way to the restroom?,126498,The Big Bang Theory,27.48-59.09,s04e05_seg02_clip_13,That she had the asparagus. 4460,She was eating.,She was sleeping.,She was reading the paper.,She was writing something.,She was watching TV.,2,What was Robin doing when ted was talking to her?,126499,How I Met You Mother,9.61-15.2,met_s02e09_seg02_clip_09,She was reading the paper. 4461,sheldon cries about it,sheldon srtips naked,sheldon sings and dances,sheldon zooms in and adds an echo to his voice,sheldon screams from the top of his lungs. ,3,how does sheldon emphasize why he should be chosen when talking on the video?,126500,The Big Bang Theory,7.41-17.5,s08e17_seg02_clip_09,sheldon zooms in and adds an echo to his voice 4462,I really like you.,Hello there,Bite me.,Can we be friends?,Is it a good time to chat?,2,What did Ramona say to Penny when Ramona was leaving?,126501,The Big Bang Theory,4.93-15.09,s02e06_seg02_clip_16,Bite me. 4463,Wilson told house he owns a Pit bull,Wilson asked house if he owns his own home,Wilson asked house if he owns a Gun,Wilson told house he does not own anything,House and wilson did not discuss any possessions,2,What did Wilson ask House if he owns when they were having a drink,126502,House M.D.,0-0.46,house_s08e08_seg02_clip_08,Wilson asked house if he owns a Gun 4464,Sid liked buying expensive things.,Sid wanted to spoil the actors.,Sid wanted to make sure the actors could come and go with more privacy.,Sid wanted to test the entrance before he bought one for his house.,Sid wanted to make the actors feel important.,2,Why did Sid have a private VIP entrance created for the actors before he died?,126503,Castle,58.71-62.81,castle_s07e22_seg02_clip_03,Sid wanted to make sure the actors could come and go with more privacy. 4465,soda,coffee,jug of water,tea,nothing ,2,What was on the table when Beckett entered the room to speak with Ms. Nazif? ,126504,Castle,0-15.35,castle_s07e12_seg02_clip_13,jug of water 4466,On her lap,On the floor,On the shelf,On the couch,On the table,4,Where did Penny put the jotter and pen when she wanted to express herself better? ,126505,The Big Bang Theory,16.25-17.41,s06e02_seg01_clip_01,On the table 4467,At a Pizza restaurant.,At her parents house.,In a car.,At the grocery store.,Laying in bed together.,4,Where are Barney and Abbey when she thinks about having sex with Ted?,126506,How I Met You Mother,49.95-56.95,met_s03e19_seg02_clip_07,Laying in bed together. 4468,Leonard started singing.,Leonard stopped the car.,Leonard put Penny in his lap.,Leonard smiled hard over the steering wheel., Leonard called Sheldon crazy.,3,What did Leonard do after Sheldon said there was no need for Howard to extend his middle finger.,126507,The Big Bang Theory,53.67-58.02,s04e13_seg02_clip_01,Leonard smiled hard over the steering wheel. 4469,Monica,Joey,Ross,The Chick,Rachel,3,Who is Chandler talking to when he is watching baywatch?,126508,Friends,0.27-13.26,friends_s03e21_seg02_clip_16,The Chick 4470,Joey forgot he was pretending to be a neurologist.,Joey thinks it's funny to do so.,Joey is trying to confuse Cliff.,Joey is trying a new therapy for Cliff.,Phoebe told Joey to do so.,0,Why does Joey change his tone after seeing Cliff?,126509,Friends,48.52-61.03,friends_s08e23-24_seg02_clip_28,Joey forgot he was pretending to be a neurologist. 4471,He started talking to himself.,He left the table.,He didn't do anything.,He laughed.,He said he'd take the bullet.,4,What did Howard do after Sheldon said some sexual intercourse?,126510,The Big Bang Theory,37.84-43.33,s02e03_seg02_clip_12,He said he'd take the bullet. 4472,Joey,Chandler,Ross,Rachel,Monica,2,Who is standing behind Julie when she is speaking?,126511,Friends,6.2-13.65,friends_s02e01_seg02_clip_03,Ross 4473,1,2,4,5,3,4,How many pins were in the woman's brain when House was explaining how the magnet moved it?,126512,House M.D.,39.91-47.25,house_s05e04_seg02_clip_24,3 4474,Dr. Wilson,Dr. Cuddy,Dr. Cameron,Dr. Hurts,Dr. Limon,0,Which doctor was with House when he was reviewing the patient's test results?,126513,House M.D.,68.84-77.78,house_s02e13_seg02_clip_18,Dr. Wilson 4475,To check the time to arrive at home.,To know the time for his shower.,Count seconds.,To give the time to Raj.,To hurry Stuart.,0,Why Howard looked his watch when talking with Raj?,126514,The Big Bang Theory,13.13-62.51,s10e05_seg02_clip_00,To check the time to arrive at home. 4476,Dancing on the stage with women,Cleaning up after the girls,Stretching out the dancer alone,Cooking for the whole team,Gets attacked by the big group,0,Which situation is Castle left in after lying about who he is?,126515,Castle,69.48-92.03,castle_s08e08_seg02_clip_06,Dancing on the stage with women 4477,She was looking through a photo album.,She was lying on the couch.,She was doing yoga.,She was sipping wine by the window.,She was cooking dinner.,3,What was Martha doing when Castle entered the apartment?,126516,Castle,98.58-107.82,castle_s06e12_seg02_clip_26,She was sipping wine by the window. 4478,Laser gun ,pistol ,rife,knife ,bat ,0,What was the suggested cause of death on the case that was display behind Castle back when he was talking to Beckett about Nebula 9? ,126517,Castle,40.51-50.52,castle_s05e06_seg02_clip_06,Laser gun 4479,a pin,a mustard stain,a rose,a lilly,a sticker,0,what does demming have on his sports coat when he sits by beckett at her desk?,126518,Castle,79.23-89.02,castle_s02e22_seg02_clip_25,a pin 4480,Because Raj saw that Mikayla was friendly sexy.,Because Mikayla was angry.,Because Mikayla had a Halloween costume.,Because Mikayla was naked.,Because Mikayla want to kiss him.,0,Why Raj drank in a hurry after Mikayla approached him?,126519,The Big Bang Theory,0-16.17,s02e21_seg02_clip_07,Because Raj saw that Mikayla was friendly sexy. 4481,the left side,the right side,the middle,not on the bed ,the chair,0,What side of the bed is Sheldon when he is closer to the window?,126520,The Big Bang Theory,12.64-28.14,s10e04_seg02_clip_09,the left side 4482,Rachel said she was on a date because she didn't want Mr. Zellner to find out she was eating alone.,Rachel said she was on a date because she actually was. ,Rachel said she was on a date because she is a compulsive liar. ,Rachel said she was on a date because she was interviewing for another job and did not want Mr. Zellner to find out.,Rachel said she was on a date because she was trying to impress Mr. Zellner.,3,"Why did Rachel say she was on a date when she first saw Mr. Zellner, her boss. ",126521,Friends,0-27.66,friends_s10e14_seg02_clip_03,Rachel said she was on a date because she was interviewing for another job and did not want Mr. Zellner to find out. 4483,Taub,Cuddy,Foreman,Chase,Himself,4,Who does Wilson point to after he suggests House have pizza with a friend?,126522,House M.D.,51.05-56.59,house_s03e15_seg02_clip_25,Himself 4484,On her shoulder,On her knee,On her head,On her back,On her foot,0,Where does Chief place his hand after Addison leans forward with her head in her hands?,126523,Grey's Anatomy,4.55-11.83,grey_s03e02_seg02_clip_02,On her shoulder 4485,Howard walking in,Penny walked in,Sheldon walked in,Bernadette walked in,The dog walked in,2,Who walked in when Raj said they ruined everything?,126524,The Big Bang Theory,26.54-33.87,s01e08_seg02_clip_12,Sheldon walked in 4486,half hour. ,1 minutes ,3 minutes,20 seconds ,30 seconds,4,how long was the patient without oxygen when she crashed?,126525,House M.D.,42.31-51.76,house_s02e13_seg02_clip_08,30 seconds 4487,Jason equipment,Hugo's equipment,Office equipment,Corporate equipment,Mann's equipment,0,What did Hugo use to forge counterfeit ID and passports from real countries before he died?,126526,Castle,2.82-13.63,castle_s02e24_seg02_clip_16,Jason equipment 4488,He needs to learn more about the patient's medical history,He needs to run more test,He needs to care more about the patient's personal history,He needs to eat faster,He needs more sleep,2,What is House trying to teach Foreman when he starts eating?,126527,House M.D.,51.93-88.02,house_s01e10_seg02_clip_09,He needs to care more about the patient's personal history 4489,Notes on the case,Pictures of Castle,A key to the office,A disguising hat,A binder,0,What does Beckett show Castle after he tell her his plan to get the file?,126528,Castle,34.41-43.01,castle_s03e13_seg02_clip_11,Notes on the case 4490,she storms out of the apartment,she falls to the floor,she sits down in a chair,she punches Raj,she starts to cry,2,"When does Penny do after she says ""This sucks!""?",126529,The Big Bang Theory,21.97-24.72,s07e18_seg02_clip_00,she sits down in a chair 4491,Talking on the phone.,Working,Driving.,Talking on the computer.,Making a cup of coffee,2,What is Amy doing when she tells Sheldon to go to work?,126530,The Big Bang Theory,1.98-5.39,s08e09_seg02_clip_07,Driving. 4492,She a robot.,She's been paid for.,She's a man.,She's holding him hostage.,She's going to pay Howard.,0,What does Sheldon suggest about Howard's date when he notices her?,126531,The Big Bang Theory,0-59.22,s01e04_seg01_clip_01,She a robot. 4493,A pot of coffee,A coffee cup,A lamp,a deck of cards,a cup of pens,1,What was on the table in front of Montgomery when Beckett was talking to him about what they know so far?,126532,Castle,5.48-14.61,castle_s03e13_seg02_clip_19,A coffee cup 4494,Making a bowl of cereal.,Making a cup of coffee.,Making oatmeal.,Making a glass of warm milk for Sheldon.,Making a cup of tea.,4,What is Leonard doing in the kitchen when Sheldon receives a phone call?,126533,The Big Bang Theory,37.77-87.94,s06e06_seg02_clip_16,Making a cup of tea. 4495,Bernadette is talking to Raj.,Bernadette is talking to Sheldon.,Bernadette is talking to Barry.,Bernadette is talking to Priya.,Bernadette is talking to Amy.,0,Who is Bernadette talking to about his date when she is in her kitchen?,126534,The Big Bang Theory,0-3.98,s09e14_seg02_clip_10,Bernadette is talking to Raj. 4496,Jump out of the bed,Scream in his face,Shoot her eyes open,Begin to bleed internally ,Start coughing loudly ,2,What does the patient do to startle House when he goes into check on her?,126535,House M.D.,86.34-104.02,house_s04e16_seg02_clip_08,Shoot her eyes open 4497,He is in the patient's room ,He is in the cafe,He is in the car,He is in the movie theatre,He is in his office ,0,Where is House when talking to Nash?,126536,House M.D.,12.31-19.8,house_s06e16_seg02_clip_22,He is in the patient's room 4498,Sheldon hugs Raj.,Sheldon jumps and throws his hands up.,Sheldon goes to the store.,Sheldon runs to hallway.,Sheldon walks to the kitchen.,1,What did Sheldon do when Raj made smoke occur?,126537,The Big Bang Theory,5.1-6.6,s07e03_seg02_clip_01,Sheldon jumps and throws his hands up. 4499,he was sitting in the observation room ,he was in the doctor's lounge,he was in his office,he was in a surgery room,he was in the cafe,0,Where was Derek when he was looking at a patient's MRI scan?,126538,Grey's Anatomy,30.02-36.55,grey_s03e09_seg02_clip_08,he was sitting in the observation room 4500,Her mother. ,"Ted Carter, her ex-boyfriend",Her ex best friend. ,Her ex husband. ,Her best friend. ,1,Who does Ayyana name as a person Marie had problems with when Beckett is questioning her?,126539,Castle,2.7-7.65,castle_s03e09_seg02_clip_04,"Ted Carter, her ex-boyfriend" 4501,twitches,tremors,tumors,epileptic episodes,seizures,0,What inflictment did House say was gone from the patient before saying the pain the patient had was psychological?,126540,House M.D.,79.57-89.41,house_s02e13_seg02_clip_18,twitches 4502,Working on his computer.,Watching T.V.,Eating Breakfast.,Reading a book.,Playing a video game. ,3,What is Sheldon doing when he tells Penny that he couldn't sleep?,126541,The Big Bang Theory,6.51-10.24,s07e20_seg02_clip_00,Reading a book. 4503,House is opening a drawer.,House is opening a magazine.,House is opening a laptop.,House is opening a briefcase.,House is opening a bag of chips.,0,What is House opening when Chase walks into the room?,126542,House M.D.,39.04-40.4,house_s01e18_seg02_clip_05,House is opening a drawer. 4504,789 is visible on the door.,21 is visible on the door.,109 is visible on the door.,200 is visible on the door.,306 is visible on the door.,4,What number is visible after Penny opens the door?,126543,The Big Bang Theory,0-5.9,s05e22_seg02_clip_15,306 is visible on the door. 4505,On a beach.,In a star trek themed room.,In a medieval themed room.,Inside of a cartoon.,In the bathroom.,1,Where is Beckett when she asks Gabriel the last time he saw her?,126544,Castle,75.92-84.66,castle_s05e06_seg02_clip_02,In a star trek themed room. 4506,Next to the crib.,In the crib.,Walking around.,On front the bed.,Next to the sink.,0,Where is Raj when Howard is writing?,126545,The Big Bang Theory,0-52.72,s10e13_seg02_clip_08,Next to the crib. 4507,A bright green shirt.,A full suit.,Workout attire since he just got back from the gym.,A white shirt and a tie.,"Just his boxers, no shirt.",3,What is Marshall wearing when he is speaking with his parents in the living room?,126546,How I Met You Mother,0-9.6,met_s06e13_seg02_clip_15,A white shirt and a tie. 4508,He said he would bring him a tape,he said he would bring him a cookie,he said he would bring him an autograph,he said he would bring him his clothes ,he didn't say he would bring him anything,0,What did Joey tell the dry cleaner man he would bring him before he left the store?,126547,Friends,0-4.29,friends_s06e22_seg02_clip_01,He said he would bring him a tape 4509,Clean out,Throw out,Repack,Give to Monica,Check for money,2,What does Chandler ask Ross to do after Joey packs anything,126548,Friends,38.14-51.93,friends_s10e16_seg02_clip_02,Repack 4510,Castle told Alexis that it is a good time to learn how to keep a secret.,Castle told Alexis that it is very important that she doesn't say anything to anybody especially Beckett.,Castle told Alexis that she is very sneaky.,Castle asked Alexis why she isn't at school.,Castle told Alexis to make him some food.,1,What did Castle say after Alexis told him that she had heard enough?,126549,Castle,18.9-29.71,castle_s04e01_seg02_clip_21,Castle told Alexis that it is very important that she doesn't say anything to anybody especially Beckett. 4511,Barney's wife,Barney's sister,Barney's friend,Barney's cleaning lady,Barney's personal shopper,0,Who is lilly pretending to be before company arrives?,126550,How I Met You Mother,0-14.31,met_s02e05_seg02_clip_12,Barney's wife 4512,Because she misses making a mess.,Because she misses cleaning up.,Because she misses her friends.,Because she misses making salads.,Because she misses being the hostess.,4,Why is Monica upset when someone else is cooking breakfast?,126551,Friends,4.6-8.9,friends_s04e13_seg02_clip_04,Because she misses being the hostess. 4513,Because she was stuck up ,Zoey wasn't paying him any attention ,Zoey was flirting with other men ,Because she was boring ,Because Zoey lied and told her husband she was out with friends,4,Why was Ted upset after his date with Zoey?,126552,How I Met You Mother,37.21-43.86,met_s06e11_seg02_clip_02,Because Zoey lied and told her husband she was out with friends 4514,0-8-2-2-4-1-6-7,0-9-4-6-8-2-7-3,0-8-7-5-4-2-4-2,1-4-2-2-7-6-8-0,0-8-6-7-2-2-4-1,4,What is the number Beckett says after she tells Bracken she has the file?,126553,Castle,21.81-37.4,castle_s05e01_seg02_clip_25,0-8-6-7-2-2-4-1 4515,It needed to be reheated.,His expectations were too high. ,It needed some butter.,He realized he actually doesn't like potato skins.,It wasn't a potato skin.,1,Why did Ted not enjoy the potato skin after taking a bite?,126554,How I Met You Mother,7.97-20.07,met_s03e18_seg02_clip_04,His expectations were too high. 4516,Wilson's patient's threw up.,Wilson's patient's body shook.,Wilson's patient coughed up blood.,Wilson's patient spit out a tooth.,Wilson's patient sweated immensely.,1,What happened to Wilson's bald patient when he was touched by Wilson on the chin?,126555,House M.D.,4.16-10.18,house_s02e05_seg02_clip_00,Wilson's patient's body shook. 4517,His neck,His hands,He chests,His stomach,His legs,4,Where on the patient did Taub uncover the blanket when he asked if he has been testing on a tanning cream,126556,House M.D.,63.26-70.09,house_s05e06_seg02_clip_16,His legs 4518,Leonard takes the phone from SHeldon,Leonard sighs,Leonard goes to sleep,Leonard slaps Sheldon,Leonard gets up,0,What does Leornard do after Sheldon tells Peeny to harness her limited powers of concentation?,126557,The Big Bang Theory,41.84-47.98,s02e17_seg02_clip_09,Leonard takes the phone from SHeldon 4519,50,10,100,20,30,2,How many cards did Mona say she was getting after asking Ross how many he wanted? ,126558,Friends,32.64-36.92,friends_s08e11_seg02_clip_04,100 4520,A cup,A knife,A spoon,A file,A phone,2,What did Nora had in her hand when she was at the table with House,126559,House M.D.,47.18-60.54,house_s06e10_seg02_clip_18,A spoon 4521,Rachel was standing to Monica's right.,Rachel was sitting to Monica's left.,Rachel was standing to Monica's left.,Rachel was sitting behind Chandler.,Rachel was sitting to Monica's right.,4,Where was Rachel when Phoebe talked to Mr. A?,126560,Friends,20.48-46.64,friends_s02e11_seg02_clip_11,Rachel was sitting to Monica's right. 4522,On the table.,In the cabinet.,In the garbage.,In the refrigerator.,On a car.,0,Where did George put his beer bottle before he said Cristina made us?,126561,Grey's Anatomy,0.54-3.65,grey_s01e03_seg02_clip_25,On the table. 4523,He smiled and walked away. ,He took away a bottle of juice from Wil's desk.,He hung up the phone on Kevin Smith. ,He allowed his fiancee to become an actress.,He didn't want to discuss the subject any more. ,1,What did Leonard do after Will introduced him as a fiance who doesn't believe women should have dreams? ,126562,The Big Bang Theory,18.3-59.04,s08e20_seg02_clip_10,He took away a bottle of juice from Wil's desk. 4524,She talks to Chandler.,She pulls out her phone.,She orders a drink.,She shakes her sugar packet.,She reads a book.,3,What does Rachel do after asking if the stripper is married?,126563,Friends,51.92-60.03,friends_s03e12_seg02_clip_18,She shakes her sugar packet. 4525,A stubborn idiot child,A doctor of malpractice ,A wasted little genius ,Wasted master potential ,A unloved grown child ,0,How does Cuddy describe House after saying he thinks he is well principled? ,126564,House M.D.,19.67-29.06,house_s03e11_seg02_clip_02,A stubborn idiot child 4526,Rachel pushed him.,Rachel slapped him.,Phoebe head butted him accidentally.,Rachel head butted him accidentally.,He passed out.,3,What happened to Ross after he counted to three?,126565,Friends,11.71-15.91,friends_s08e23-24_seg02_clip_32,Rachel head butted him accidentally. 4527,Because the Chairman wants Ted to tell him if he thinks the Arcadian should be a landmark.,Because the Chairman wants Ted to tell him how he feels about the Arcadian becoming a landmark.,Because Ted feels the Arcadian should be a landmark.,Because Ted doesn't want the Arcadian to be a landmark.,Bedcause the Chairman wants Marshall to tell him if Arcadian should be a landmark.,0,Why did the Chairman say to Ted to cut right to the chase after he walked to the mic?,126566,How I Met You Mother,14.84-21.08,met_s06e23_seg01_clip_01,Because the Chairman wants Ted to tell him if he thinks the Arcadian should be a landmark. 4528,The park,The hospital,A restaurant,His apartment,School,1,Where was Sheldon when he was talking to Mr. D'Onofrio? ,126567,The Big Bang Theory,0-5.53,s05e18_seg02_clip_05,The hospital 4529,Two women.,A window.,A colorful picture..,Grapes.,Wine.,2,What is behind Joey when he talks about being from Naples?,126568,Friends,9.14-15.76,friends_s07e19_seg02_clip_18,A colorful picture.. 4530,Chandler is happy that the bakery sent the cheesecake.,Chandler feels terrible.,Chandler is worried that Mrs. Braverman will miss her cheesecake.,Chandler will pay for the cheesecake.,Chandler promises to bring it back to Mrs. Braverman.,1,How does Chandler feel after learning the cheesecake was from Mama's Little Bakery?,126569,Friends,52.52-64.78,friends_s07e11_seg01_clip_00,Chandler feels terrible. 4531,Castle try to throw the paper ball into the dumpster,Castle try to throw the paper ball into the trash can,Castle try to throw the paper ball into the toilet,Castle try to throw the paper ball into the bed,Castle try to throw the paper ball into a bowl,1,Where did Castle try to throw the paper ball into when he is in the room with Beckett?,126570,Castle,18.17-27.03,castle_s08e01_seg02_clip_01,Castle try to throw the paper ball into the trash can 4532,She does not like Tulsa.,She has no days off of work.,She thinks it is too expensive.,She is scared of flying.,She is really sick.,2,Why does Monica say she can't visit Chandler when Joey suggested it?,126571,Friends,35.37-43.54,friends_s09e04_seg02_clip_00,She thinks it is too expensive. 4533,Hans thinks that he is not really in jail because he thinks he is hallucinating.,Hans thinks that he is not really in jail because he is playing a spy game.,Hans thinks that he is not really in jail because he thinks he is dreaming.,Hans thinks that he is not really in jail because he is an undercover cop.,Hans thinks that he is not really in jail because he is delusional.,1,Why does Hans think he is not really in jail when Castle first begins yelling at him?,126572,Castle,16.25-90.28,castle_s02e24_seg02_clip_09,Hans thinks that he is not really in jail because he is playing a spy game. 4534,House finally sat down because his knee was hurting,House finally sat down because he broke his cane,House finally sat down because it was crowded,House finally sat down because he liked his chair ,House finally sat down because he needed to work on the computer,0,Why does House finally sit down when he was talking to the group about a case,126573,House M.D.,39.63-53.3,house_s02e23_seg02_clip_21,House finally sat down because his knee was hurting 4535,she was wearing bra and panties,she was wearing a v neck,she was wearing a night gown,she wearing a robe,she was wearing a long sleeve,4,what kind of shirt was Monica wearing when she was looking at the electronic?,126574,Friends,0-8.94,friends_s03e23_seg02_clip_08,she was wearing a long sleeve 4536,Howard jumped out the window,Howard went to the bathroom,Howard rubbed Bernadette's stomach ,Howard was not in the room,Howard took off his watch,4,What did Howard do before he got in bed with Bernadette?,126575,The Big Bang Theory,12.07-16.76,s10e04_seg02_clip_10,Howard took off his watch 4537,combing his hair.,Talking to his wife.,Falling asleep.,Mad about the days activities.,Taking a bath.,2,What was Leonard doing before Sheldon called him?,126576,The Big Bang Theory,11.69-73.09,s10e01_seg01_clip_01,Falling asleep. 4538,To grow them strong.,To not give up.,To keep them safe and warm.,To love them.,To care for them.,2,What does Phoebe promise when she is talking to the embryos?,126577,Friends,49.74-61.03,friends_s04e12_seg02_clip_08,To keep them safe and warm. 4539,A stain on his shirt,His phone,A computer screen,A clipboard,A newspaper,3,What is George looking at before he walks away from Izzie?,126578,Grey's Anatomy,4.8-14.4,grey_s03e20_seg02_clip_03,A clipboard 4540,Who is Dr. Monkey.,An offensive joke.,Why Ross had a monkey.,What doctor Monica should see.,The movie they saw last evening.,1,What are Chandler and Ross trying to explain to Monica when they are sitting on the couch?,126579,Friends,23.12-61.64,friends_s06e12_seg02_clip_14,An offensive joke. 4541,It smells dirty. ,It smells like detergent. ,There was saliva on the pillow but not the pillow case. ,Because people wash pillow cases. ,Because people are dirty. ,2,Why does Beckett say that someone washed the pillow case when she is talking to Castle about the case?,126580,Castle,21.34-27.56,castle_s02e16_seg02_clip_24,There was saliva on the pillow but not the pillow case. 4542,murder,detective,police,crime,mystery,3,What kind os blog did Castle mention after Harvey left the room?,126581,Castle,10.35-15.3,castle_s04e12_seg02_clip_05,crime 4543,The patient had been dumpster diving,The patient used questionable materials for making artwork,The patient works as a product tester,The patient didn't wear a mask when doing construction work,The patient worked in a factory that produced chemicals,2,How does Thirteen think the patient was exposed to toxins when she is discussing his condition with the other doctors?,126582,House M.D.,48.96-68.55,house_s05e06_seg02_clip_01,The patient works as a product tester 4544,He says its impossible,He says nothing,he laughs at Leonard,Oh Leonard you know I cant do that,He says its not humane to do such things,3,What does Sheldin say after Leonard finishes speaking,126583,The Big Bang Theory,0-29.22,s02e14_seg01_clip_01,Oh Leonard you know I cant do that 4545,He picked her up.,He proposed to her.,He pushed her.,He slapped her.,He gave her a drink.,0,What does the guy with the mustache do to Mandy Carson after he told her that's the most romantic thing he's heard?,126584,Castle,9.3-17.68,castle_s03e07_seg02_clip_19,He picked her up. 4546,Work,Central perk,His bedroom,Monica's apartment,Ross's apartment,2,Where does Joey go after talking with Monica?,126585,Friends,25.54-31.41,friends_s07e19_seg02_clip_14,His bedroom 4547,On the floor.,Next to Rachel.,On the sofa.,In the chair next to Monica.,In Joey's lap. ,3,Where does Ross sit down when he is talking to Monica?,126586,Friends,33.33-56.02,friends_s01e09_seg02_clip_01,In the chair next to Monica. 4548,In the cafeteria,In her car,In her office,In an elevator,In the maternity ward,3,Where does Dr. Cuddy after the meeting takes place?,126587,House M.D.,20.67-43.06,house_s06e13_seg02_clip_07,In an elevator 4549,Steve and Jennie's rejects.,Phoebe and Jennie's rejects.,Rachel and Jennie's rejects.,Greg and Jennie's rejects.,Leanne and Jennie's rejects.,3,What doesn't Phoebe want when she is talking to Chandler?,126588,Friends,0-5.27,friends_s08e04_seg02_clip_04,Greg and Jennie's rejects. 4550,Phoebe picks up a plate.,Phoebe picks up her purse.,Phoebe picks up her guitar.,Phoebe picks up a napkin.,Phoebe picks up a coffee mug.,4,What does Phoebe pick up from the table when Chandler is speaking?,126589,Friends,21.69-23.44,friends_s02e08_seg02_clip_14,Phoebe picks up a coffee mug. 4551,An Airplane,A bar,A restaurant,A park,An airport,0,Where is Rachel when she is talking to the sleeping man?,126590,Friends,22.06-26.79,friends_s04e23-24_seg02_clip_37,An Airplane 4552,happy,confused,irritated,angry,tired,1,What did Leonard and Penny feel like when they were on their date?,126591,The Big Bang Theory,5.49-19.53,s03e02_seg02_clip_06,confused 4553,Turns music on and does some stretches.,Goes to sleep.,Turns music on and strips his clothes off.,Turns lights off and turns music on.,"Turns music on, turns off the lights and does some stretches.",4,What does Howard do when Bernadette goes to brush her teeth?,126592,The Big Bang Theory,64.83-78.61,s05e05_seg02_clip_07,"Turns music on, turns off the lights and does some stretches." 4554,Howard a book.,Howard holds a cell phone.,Howard holds a container with pop corn.,Howard holds a cup of soda.,Howard a bag.,3,What holds Howard when he enters to the theater?,126593,The Big Bang Theory,0-18.06,s01e11_seg02_clip_08,Howard holds a cup of soda. 4555,Writes something on a clipboard.,Takes off his scrubs.,Types something on a computer.,Grabs a tool from a nurse.,Gives Christina a hug.,1,What does Derek do when Cristina tells him she was feeling sick?,126594,Grey's Anatomy,17.12-26.68,grey_s01e07_seg02_clip_19,Takes off his scrubs. 4556,House Hugs Cuddy,House Hits Cuddy,House Pushes Cuddy,House motions a kiss to Cuddy,House Yells at Cuddy,3,What does House do to Cuddy after Wilson talks to him about being at Human Resources repeatedly in the last 6 weeks?,126595,House M.D.,19.75-31.5,house_s07e02_seg02_clip_03,House motions a kiss to Cuddy 4557,The saleswoman implied that the boots were underpriced.,The saleswoman implied that the boots were way too nice to pass on.,The saleswoman implied that Monica looked great in the boots.,The saleswoman implied that the boots were too expensive for Monica.,The saleswoman implied that the boots were a steal. ,3,What did the saleswoman imply to Monica when she was shopping for shoes?,126596,Friends,24.15-45.58,friends_s08e10_seg01_clip_00,The saleswoman implied that the boots were too expensive for Monica. 4558,Phoebe would be in prison for seven years.,Phoebe would be in prison for 10 years.,Phoebe would be in prison for two to four years minimum.,Phoebe would be in prison for six years.,Phoebe would be in prison for one year.,2,How long did Phoebe say she would be in prison when she was talking about impersonating a cop?,126597,Friends,6.86-9.84,friends_s05e16_seg02_clip_17,Phoebe would be in prison for two to four years minimum. 4559,The girl is impressed and gives Barney her number.,The girl gets up and leaves without responding. ,The girl throws her drink in Barney's face.,The girl laughs a tBarney in his face. ,The girl tells Barney is pickup line is corny and orders a drink. ,1,What does the girl do after Barney gives her a corny pickup line?,126598,How I Met You Mother,11.49-15.22,met_s02e02_seg02_clip_08,The girl gets up and leaves without responding. 4560,Monica had a piece of gum in her mouth when she kissed Ethan for the first time.,Monica had a pepermint in her mouth when she kissed Ethan for the first time.,Monica had a mint leaf in her mouth when she kissed Ethan for the first time.,Monica had a tic tac in her mouth when she kissed Ethan for the first time.,Monica had a jawbreaker in her mouth when she kissed Ethan for the first time.,3,What did Monica have in her mouth when she kissed Ethan for the first time?,126599,Friends,22.11-30.61,friends_s01e22_seg02_clip_10,Monica had a tic tac in her mouth when she kissed Ethan for the first time. 4561,Knife,Phone,Sandwich,Bottle of wine,Blanket,3,What does Penny grab after saying where she was that morning?,126600,The Big Bang Theory,50.96-57.37,s02e15_seg02_clip_10,Bottle of wine 4562,Howard stops the car.,Howard smacks Raj.,Howard looks at Raj.,Howard runs to table.,Howard leans on the couch.,2,What does Howard do after Raj asks him about Hater-ade?,126601,The Big Bang Theory,0-4,s08e01_seg02_clip_02,Howard looks at Raj. 4563,A jug of milk.,An apple.,Paperwork.,A cake.,A cup of coffee?,1,What is Joey holding in his hand before he sits down at the table with Rachel and Monica?,126602,Friends,2.32-8.7,friends_s04e04_seg02_clip_13,An apple. 4564,A force that wasn't there.,A police officer,Castle,A stranger,A Doctor,0,What did the victim say saved his life when he was being attacked?,126603,Castle,0-16.25,castle_s07e03_seg02_clip_09,A force that wasn't there. 4565,He tells Izzie he is not sure of the surgery outcome,He tells Izzie they did not get a donor,He tells Izzie to take a break,He tells Izzie to take a nap,He tells Izzie they got two donors,4,What does the doctor do before he discloses the patients' flatlining?,126604,Grey's Anatomy,0-6.31,grey_s02e25_seg02_clip_11,He tells Izzie they got two donors 4566,dressing,a bottle of wine,a plate of deserts,a bowl of bread,a bowl of salad,4,what does raj bring to the dinning table when amy is sitting with lucy?,126605,The Big Bang Theory,49.95-58.42,s06e24_seg02_clip_05,a bowl of salad 4567,Pink,Blue,Yellow,White,Black,2,What color scrubs were the doctors wearing when they were performing the procedure on the patient? ,126606,House M.D.,28.28-34.37,house_s04e02_seg02_clip_09,Yellow 4568,Penny says she is open to the idea.,Penny slams the door to Leonard's face with disgust.,Penny says she will take the Sheldon's class only if its online.,Penny asks Sheldon about his class.,Penny becomes sad and cries.,1,How does Penny react after Leonard ask if she is open to talking Sheldon's class?,126607,The Big Bang Theory,38.36-50.17,s02e07_seg02_clip_04,Penny slams the door to Leonard's face with disgust. 4569,A silver bracelet.,A gold watch.,A gold bracelet.,A black leather watch.,A silver watch.,3,What was on Foreman's right arm when he said Rachel had ham in her apartment?,126608,House M.D.,6.74-9.88,house_s01e01_seg02_clip_18,A black leather watch. 4570,Sheldon meant Penny didn't have to eat meat.,Sheldon meant Penny didn't have to live alone.,Sheldon meant Penny didn't have to be single.,Sheldon meant Penny didn't have to live in a messy apartment.,Sheldon meant Penny didn't have to go without bathing.,3,"What did Sheldon mean when he told Penny she ""didn't have to live like this""?",126609,The Big Bang Theory,0-18.03,s01e02_seg02_clip_04,Sheldon meant Penny didn't have to live in a messy apartment. 4571,Cuddy is talking to 13,Cuddy is talking to Taub,Cuddy is talking to Foreman,Cuddy is talking to Vogler,Cuddy is talking to Wilson,4,Who is Cuddy talking to about AtlanticNet when she standing over them,126610,House M.D.,0-5.31,house_s06e13_seg02_clip_12,Cuddy is talking to Wilson 4572,A car,A pipe,A space,The hallway,The path for cars,1,What feature of the parking garage does House follow when he crawls into the rubble?,126611,House M.D.,49.77-93.03,house_s06e21_seg02_clip_04,A pipe 4573,Sheldon says he's not afraid to be alone at work. ,Sheldon says he's not afraid to be alone on land. ,Sheldon says he's not afraid to be alone at the grocery store. ,Sheldon says he's not afraid to be alone in his room. ,Sheldon says he's not afraid to be alone in his apartment. ,1,Where does Sheldon say he is not afraid to be alone when he is talking with Leonard?,126612,The Big Bang Theory,1.38-4.4,s06e24_seg01_clip_02,Sheldon says he's not afraid to be alone on land. 4574,red,brown,white,black,yellow,0,what color shirt was sheldon wearing when talking,126613,The Big Bang Theory,0-6.63,s07e04_seg01_clip_01,red 4575,Zoey,Lily,Ted,Marshall,Robin,1,Who was next to Barney when he was sitting on the couch?,126614,How I Met You Mother,0-6.65,met_s06e11_seg02_clip_02,Lily 4576,a toy,a note book,food,radio,camera,1,"What is Amy doing before Bernadette says ""I love you too"" ?",126615,The Big Bang Theory,0-8.85,s07e01_seg02_clip_02,a note book 4577,So he can prove his point,So the patient can fry,So the patient can live long enough for them to redo the tests,So he can check if the patient was alive,He thought it will fix the entire problem ,2,Why did House still insist on the defibrillator after Foreman disagreed?,126616,House M.D.,21.81-28.93,house_s05e21_seg02_clip_20,So the patient can live long enough for them to redo the tests 4578,A letter.,A razor.,A comb.,His phone.,A tube of lipstick.,4,What does House pick up after he looks in the mirror?,126617,House M.D.,31.86-41.56,house_s05e24_seg02_clip_00,A tube of lipstick. 4579,Raj ordered pizza.,Raj ran a race.,Raj put his blanket on the couch and his book on the coffee table.,Raj ran to the bathroom.,Raj cried on the floor.,2,What did Raj do after someone knocked on the door?,126618,The Big Bang Theory,12.51-20.44,s04e07_seg02_clip_00,Raj put his blanket on the couch and his book on the coffee table. 4580,The next door neighbor.,Raj.,Bernadette.,Amy.,Howard.,4,Who is the military man looking for when Raj opens the door?,126619,The Big Bang Theory,25.93-34.25,s10e01_seg02_clip_02,Howard. 4581,Because Leonard end his relationship with Priya.,Because Leonard cheats Priya with a new girfriend.,Because Leonard will travel with his new girlfriend.,Because Leonard has 3 girlfriends.,Because Leonard want to kiss Penny.,1,Why Penny is surprised when Leonard told about his girlfriends?,126620,The Big Bang Theory,0-37.07,s05e07_seg02_clip_08,Because Leonard cheats Priya with a new girfriend. 4582,He yelled at the man. ,He had the man sign a release form.,He let the man say goodbye to his mother.,He reattached his index finger.,He put the man under.,4,What did Chase do before reattaching the man's thumb? ,126621,House M.D.,9.66-15.18,house_s06e13_seg02_clip_10,He put the man under. 4583,Chandler is sitting in on the floor.,Chandler is sitting in a blue recliner.,Chandler is sitting on a blue couch.,Chandler is sitting in a brown recliner.,Chandler is sitting in at the kitchen table.,3,Where is Chandler sitting when talking to Monica about dating?,126622,Friends,11.02-17.41,friends_s07e06_seg02_clip_04,Chandler is sitting in a brown recliner. 4584,House guessed Foreman told Cuddy about the lie,House guessed Wilson told Cuddy about the lie,House guessed Taub told Cuddy about the lie,House guessed 13 told Cuddy about the lie,House guessed Chase told Cuddy about the lie,1,Who did House say told Cuddy when he lied about the books,126623,House M.D.,9.08-22.28,house_s07e03_seg02_clip_25,House guessed Wilson told Cuddy about the lie 4585,A bottle of wine,A bottle of water,A bottle of beer,A soda can,Some food,1,What does Penny grab from the refrigerator when she's talking to Leonard?,126624,The Big Bang Theory,35.21-44.82,s10e06_seg02_clip_02,A bottle of water 4586,House,James,Brian,Adam,Sean,0,Who appeared at the door when Wilson opened the door?,126625,House M.D.,28.01-42.01,house_s05e02_seg02_clip_18,House 4587,"Based on her current needs, she picks the yogurt.",Is he all right?,I am fine. Thank you.,I wouldn't want to impose.,What flavor yogurt?,0,What did Elizabeth say after Sheldon's offer?,126626,The Big Bang Theory,11.23-21.25,s03e21_seg02_clip_03,"Based on her current needs, she picks the yogurt." 4588,Alessia,Plotia,Croatia,Ambrosia,Grecian,3,What's does Lanie say the name of the project is when she is speaking with Castle and Beckett?,126627,Castle,27.32-35.97,castle_s04e03_seg02_clip_18,Ambrosia 4589,Singing,Dancing,Doing pushups,Talking in a foreign language,Knitting,0,What was the man doing when House was sitting on the floor in the jail cell?,126628,House M.D.,48.98-57.14,house_s03e06_seg02_clip_00,Singing 4590,left it alone,hated it,threw it away,loved it,gave it away,3,How did Ted's date like the dessert when she was on the date?,126629,How I Met You Mother,52.72-62.03,met_s03e13_seg02_clip_16,loved it 4591,He seemed very happy,He was boastful,He was embarrassed,He was very confident ,He was angry at himself,2,How was Wilson acting when he told House what she did?,126630,House M.D.,0-57.8,house_s05e05_seg02_clip_13,He was embarrassed 4592,Gasps,Clasps her hands together,Drops her beverage,Sips from her cup,Points at Richmond's computer monitor,3,What does McCord do after Richmond says he cross-referenced the flight recording?,126631,Castle,16.99-25.94,castle_s06e02_seg02_clip_16,Sips from her cup 4593,The monkey was sick,He didn't want to leave him alone because they had their first fight,The monkey gets anxious when Ross is away,Ross likes to bring the monkey wherever he goes,The monkey followed Ross,1,What does Ross say after Monica asks him why he brought the monkey to her apartment?,126632,Friends,0-23.5,friends_s01e10_seg02_clip_06,He didn't want to leave him alone because they had their first fight 4594,Nobody ,Penny,Howard,Bernadette,Leonard,0,Who was in the backseat when Amy was driving?,126633,The Big Bang Theory,0-41.2,s10e12_seg02_clip_06,Nobody 4595,To go get a manicure and pedicure before her meeting with him.,To stand him up at the diner the following day.,To be honest about her feelings.,To steer clear of the word dumped,To wear a sexy outfit to her meeting with him.,3,What did Ross tell Rachel when she asked him for advice about meeting Barry.,126634,Friends,14.51-29.3,friends_s01e02_seg02_clip_12,To steer clear of the word dumped 4596,"House, and Wilson are in the cafe","House, and Wilson are in the hospital","House, and Wilson are in the courthouse ","House, and Wilson are in the apartment","House, and Wilson are outside",2,"Where are House, and Wilson when they are talking?",126635,House M.D.,9.1-20.48,house_s01e09_seg02_clip_11,"House, and Wilson are in the courthouse " 4597,He cries,He takes a shot of alcohol and drinks his beer,He wipes away his tears,He secretly pulls out some pain medicine ,He flexes his muscles ,1,What does Marshall do after he says he doesn't believe in pain killers?,126636,How I Met You Mother,14.84-22.71,met_s02e15_seg02_clip_01,He takes a shot of alcohol and drinks his beer 4598,christmas presents,pictures of patients,a bowl of candy canes,a picture of a family,a christmas card,2,what does house look at on the table in disgust when he walks into the conference room?,126637,House M.D.,17.8-27.15,house_s01e05_seg02_clip_01,a bowl of candy canes 4599,20,10,100,50,40,0,How many magazines did House joke that you would have to sell before getting a new bike?,126638,House M.D.,5.99-15.21,house_s02e04_seg02_clip_00,20 4600,He means the guys are great. ,He means that the guys are hazing him. ,He means the guys are being so nice to him. ,He means that the guys video taped Howard's reaction and uploaded it to the internet. ,He means the guys are his best friends. ,3,What does Howard mean when he says it's on YouTube?,126639,The Big Bang Theory,35.21-41.29,s06e02_seg02_clip_13,He means that the guys video taped Howard's reaction and uploaded it to the internet. 4601,Castle wants to surprise Mr. Caraway rather than alert him.,Castle tells Beckett to wait for better evidence.,Castle thinks someone is going to get punished.,Castle disagrees with Beckett's plan.,Castle thinks the judge will not agree to Beckett's plan.,2,How does Castle react after Beckett calls the judge?,126640,Castle,30.16-36.46,castle_s02e16_seg02_clip_16,Castle thinks someone is going to get punished. 4602,Pizza,Chocolate cake,Gummy bears,Popcorn,Trail mix,3,What snack is on the table after Leonard says it's not gonna happen?,126641,The Big Bang Theory,11.81-16.23,s04e15_seg02_clip_11,Popcorn 4603,She walked over to him,She played her guitar.,She signed an autograph.,She gave him some coffee.,She sat down at a table with him.,2,What did Phoebe do just before the fan told her that he thought she was really talented?,126642,Friends,9.3-15.01,friends_s06e14_seg02_clip_05,She signed an autograph. 4604,Ted plans to whip a trash can.,Ted plans to whip the wall.,Ted plans to whip a box on the floor.,Ted plans to whip a dummy.,Ted plans to whip a metal container.,3,What Ted paln to whip when holding the whip?,126643,How I Met You Mother,0-54.15,met_s05e01_seg01_clip_02,Ted plans to whip a dummy. 4605,Water.,Juice.,Milk.,Beer.,Wine.,2,What was Joey drinking before Chandler told him he's the other guy?,126644,Friends,23.16-32.37,friends_s04e07_seg02_clip_20,Milk. 4606,One drink.,Two drinks.,Nothing.,A napkin.,A bottle.,1,What was Castle holding when he was on the dance floor in the club?,126645,Castle,29.17-33.62,castle_s03e14_seg02_clip_18,Two drinks. 4607,hit him,walked away,sat down,turned around,hugged him,3,What did Foreman do after House walked up?,126646,House M.D.,4.45-12.91,house_s02e09_seg02_clip_14,turned around 4608,He hit the patient,He held and used a syringe in his hands,He kissed the patient,He gave the patient ice cream,He talked to the patient,1,What did chase do after holding the intravenous line?,126647,House M.D.,0-8.58,house_s01e15_seg02_clip_18,He held and used a syringe in his hands 4609,Because she gets to go to a soap opera roof party.,Because she gets to go to a soap opera hotel party.,Because she gets to go to a soap opera back party.,Because she gets to go to a soap opera after party.,Because she gets to go to a soap opera morning party.,0,Why is Rachel so excited when she is with Joey?,126648,Friends,0-4.5,friends_s09e20_seg02_clip_04,Because she gets to go to a soap opera roof party. 4610,A beer bottle.,A handkerchief.,A cookie.,A candybar.,A cellphone,4,What did Penny Hand to Sheldon when he was crying? ,126649,The Big Bang Theory,28.68-36.56,s04e14_seg02_clip_15,A cellphone 4611,Art.,Math.,Science.,Literature.,Sports.,2,What subject does Barney reveal he's bad at when talking to Ted?,126650,How I Met You Mother,16.08-24.74,met_s03e01_seg02_clip_12,Science. 4612,Her new car.,Her new dress.,How to dance.,That she's over him.,An apartment for rent.,3,What is it that Abbey thinks she needs to show Ted when laying in bed with Barney?,126651,How I Met You Mother,46.29-49.34,met_s03e19_seg02_clip_07,That she's over him. 4613,He would do anything she needs.,He was leaving,He would not stay.,He wanted to go have fun.,He wanted to make rice,0,What did castle tell Beckett after martha speaks?,126652,Castle,2.73-25.92,castle_s02e13_seg02_clip_17,He would do anything she needs. 4614,Park felt frustrated.,Park felt stupid.,Park felt amused.,Park felt relieved.,Park felt flattered.,0,How did Park feel when Taub suggested the patient might have diabetic nerve damage?,126653,House M.D.,20.69-29.05,house_s08e20_seg02_clip_05,Park felt frustrated. 4615,"Ryan, Chase, Tom","Tom, Jerry, and Bob","Wilson, Foreman, Chase","Chase, Foreman, and Cameron",The Avengers,3,Who is sitting at the table as House enters the room after talking to Wilson about whether the patient has cancer or not in the lab?,126654,House M.D.,52.45-92.03,house_s02e13_seg02_clip_19,"Chase, Foreman, and Cameron" 4616,Sarah said she gave Sam the secret method.,Sarah said she gave Sam a key to her apartment.,"Sarah said she gave Sam $100,000.",Sarah said she gave Sam her grandfather's special pen.,Sarah said she gave Sam a makeover.,3,What did Sarah say she gave Sam before he died?,126655,Castle,63.38-74.82,castle_s02e10_seg02_clip_24,Sarah said she gave Sam her grandfather's special pen. 4617,He runs around the room.,He stands there looking at her.,He dances in the room.,He asks what time it is.,He hugs a teddy bear.,1,What does Taub do when Rachel agrees that tomorrow is Thursday.,126656,House M.D.,35.71-43.36,house_s06e18_seg02_clip_17,He stands there looking at her. 4618,She is on the phone,She is trying to find the answer to a crossword puzzle,She is knitting,She is watching tv,She is reading a book,1,Why is Rachel talking about musicals when she is in the living room?,126657,Friends,2.8-37.26,friends_s04e06_seg02_clip_07,She is trying to find the answer to a crossword puzzle 4619,a nurse and a doctor,a soda and a book,a pencil and paper,apple juice and jell-o,a pillow and blanket,3,What two things does Sheldon ask Arthur if he can get for him before Arthur asks for a favor?,126658,The Big Bang Theory,27.24-37.41,s06e22_seg02_clip_17,apple juice and jell-o 4620,New York City,Miami Beach,Paris,Brazil,Ecuador,4,Where does Cuddy suggest her photo was taken when speaking to Dr. House?,126659,House M.D.,28.33-37.93,house_s06e11_seg02_clip_09,Ecuador 4621,nodding his head yes,wiping a tear from his eye,holding a tissue to his nose,waving to someone walking by,typing on his computer,0,What is Raj doing when his father is telling Bernadette about how excited Raj's mother was when she was pregant?,126660,The Big Bang Theory,27.61-36.32,s10e03_seg02_clip_16,nodding his head yes 4622,Leonard walks out the door.,Leonard rocks on his feet with his arms crossed.,Leonard dances to music.,Leonard runs to the bathroom.,Leonard kisses Penny.,1,What does Leonard do before Penny says they are not in a rush?,126661,The Big Bang Theory,0-2.48,s08e23_seg02_clip_09,Leonard rocks on his feet with his arms crossed. 4623,Taub.,Adams.,Cuddy.,Wilson.,Parks.,0,Who was holding the baby when she was fussing and House said she wasn't fussing when he was holding her?,126662,House M.D.,1.8-4.5,house_s08e06_seg02_clip_06,Taub. 4624,Blink his eyes,Close his eyes,Follow his finger,Cross his eyes,Cover his eyes,2,What does House ask the patient to do after he shines a light into his eye?,126663,House M.D.,71.35-81.2,house_s03e15_seg02_clip_25,Follow his finger 4625,Mellisa Talbot and Dr. Cameron Talbot. ,The manager again,Eliska,The nurses aide,The tenant of Eliska's old room. ,0,Who did Beckett sit down and talk to after ending her conversation with the Manager?,126664,Castle,38.87-61.39,castle_s02e05_seg02_clip_07,Mellisa Talbot and Dr. Cameron Talbot. 4626,homework,a lecture,Sparky book,a mystery,jazz,2,What did Ted want to listen to when he was driving with Marshall?,126665,How I Met You Mother,0-5.91,met_s05e05_seg02_clip_16,Sparky book 4627,Beckett is holding her purse.,Beckett is holding a computer.,Beckett is holding a gun.,Beckett is holding case files.,Beckett is holding a coffee.,3,What is Beckett holding when she is talking to Montgomery about a case ? ,126666,Castle,0-5.46,castle_s03e05_seg02_clip_18,Beckett is holding case files. 4628,"""So why is this taking so long?""","""So, how's the game coming along?","""So, how's much longer till we can play?""","""So, how's the testing coming?","""How long will this game take to play?",3,What does Monica say to Ross when she walks into the living room?,126667,Friends,25.71-33.27,friends_s04e12_seg02_clip_05,"""So, how's the testing coming?" 4629,He was talking on the phone.,He was folding laundry.,He was watching TV.,He was working on his experiment. ,He was looking through the white pages.,1,What was Sheldon doing when Penny walked through the door?,126668,The Big Bang Theory,13.96-20.52,s04e03_seg02_clip_09,He was folding laundry. 4630,Iced coffee.,Hot chocolate.,Cold water.,Hot water with lemon.,A muffin.,3,What does Chandler order when he's sitting on the couch?,126669,Friends,2.76-6.21,friends_s04e09_seg02_clip_15,Hot water with lemon. 4631,The Mayor of New York ,Monica calling for Chandler,Chandler's mother,Rachel and Phoebe calling from the coffee shop,"Joey wasn't sure, he didn't recall",4,Who did Joey say called fro Chandler after he relayed that he had a missed call?,126670,Friends,44.25-52.79,friends_s06e03_seg02_clip_01,"Joey wasn't sure, he didn't recall" 4632,A book,A poster,An action figure,A laptop,A newspaper,0,What does Leonard pick up after Sheldon talks about scented candles with Elizabeth?,126671,The Big Bang Theory,22.77-32.48,s03e21_seg02_clip_03,A book 4633,He gets diarrhea.,He gets neaseous.,He gets hyper.,He does not like the taste.,It wouldn't help.,4,Why did House decline after Adams offered her ibuprofen?,126672,House M.D.,47.49-54.17,house_s08e01_seg02_clip_15,It wouldn't help. 4634,A wardrobe.,A trunk.,A window.,The basement.,A bookshelf.,0,"Where did gun shots come from after Beckett, Castle, Esposito and Ryan heard a phone ringing?",126673,Castle,81.92-87.77,castle_s07e23_seg02_clip_09,A wardrobe. 4635,Because he told her where he was going and she wouldn't like it.,Because he didn't tell her where he was going.,Because he told her where he was going and she didn't understand it.,Because he didn't tell her where he was going so that he could be with Penny.,Because he only gived information on a need to know basis.,1,Why did Penny think that Leonard lied to his girlfriend after she asked why he didn't call her?,126674,The Big Bang Theory,13.64-22.95,s04e19_seg02_clip_15,Because he didn't tell her where he was going. 4636,Because his speech patterns show further brain degeneration.,Because his blood tests show further brain degeneration.,Because his movements show further brain degeneration.,Because auditory hallucination shows further brain degeneration.,Because his inability to move shows further brain degeneration.,3,How did Cameron know Dan had suffered further brain degeneration when the doctor were meeting?,126675,House M.D.,71.82-75.32,house_s01e02_seg02_clip_17,Because auditory hallucination shows further brain degeneration. 4637,Hugging Joey,Making a sandwich,Playing foosball,Washing her hair,Jumping up and down,4,What was Rachel doing before she said it's out of my system?,126676,Friends,0.3-10.21,friends_s09e20_seg02_clip_04,Jumping up and down 4638,Tan Gloves,White gloves,Pink Gloves,Purple gloves,Black gloves ,2,What color were Lanie's gloves when she was speaking with Castle and Beckett? ,126677,Castle,0-35.11,castle_s06e19_seg02_clip_05,Pink Gloves 4639,They are guessing what the characters are saying in a different language,They are complaining about who got kicked off a reality TV competition,"They are watching ""Jeopardy!"" and yelling out answers",They are watching the lottery numbers being pulled and want their numbers to be called,They are watching a game and cheering on their favorite team,0,Why are the people watching TV talking when they are watching a show?,126678,Friends,17.23-46.17,friends_s01e01_seg02_clip_05,They are guessing what the characters are saying in a different language 4640,The little girl was with her daddy for half an hour,The little girl was with her daddy for one day,The little girl was with her daddy for eight hours,The little girl was with her daddy for one weekend,The little girl was with her daddy for two hours,2,How long does Edie say the little girl was with her daddy before she ended up in the hospital?,126679,House M.D.,29.45-36.35,house_s03e09_seg02_clip_00,The little girl was with her daddy for eight hours 4641,Wilson.,Cameron.,Foreman.,Chase.,Elise.,2,Who expresses surprise towards House after he suggests the medical team do not treat Elise's tumor?,126680,House M.D.,59.36-61.85,house_s01e07_seg02_clip_06,Foreman. 4642,Running,Sinoing,Writing,Hanging a picture,Having a nap,3,What is Beckett doing when Ryan first enters the room?,126681,Castle,0-5.33,castle_s06e04_seg02_clip_21,Hanging a picture 4643,The doctor tells him to be quiet,Looks around because none of his friends are there,He passes out,He high-fives Chandler,"Rachel, Monica and Chandler clap",4,What happens after Frank runs out and tells everyone he has a baby?,126682,Friends,47.22-51.94,friends_s05e03_seg02_clip_13,"Rachel, Monica and Chandler clap" 4644,He told her that he couldn't keep working with House,He was getting out of the shower in the hosipital gym,He had just told her that he had found out that he was going to be a father,He was looking at a test tube with liquid in it,He told her that he just found out his parents were divorcing after 40 years of marriage,3,What was Chase doing before Cameron said damn,126683,House M.D.,0-5.1,house_s03e18_seg02_clip_17,He was looking at a test tube with liquid in it 4645,Janice,Phoebe,Rachael,Jenny,Monica,4,Who walked into Monica's apartment when Joey was sitting down?,126684,Friends,38.12-42.02,friends_s07e19_seg02_clip_13,Monica 4646,There is no chance to recover,He is dying too fast to save,There is no abnormalities ,He is a chronic drug user,He has a large rectal tumor,2,What does House learn about the patient when Wilson is trying to convince him to get help?,126685,House M.D.,26.85-44.45,house_s04e01_seg02_clip_15,There is no abnormalities 4647,House gave the coffee to Wilson,House gave the coffee to Cuddy,House drank the coffee,House gave the coffee to Fotrman,House did not mix coffee,2,What did House do after he mixed his coffee ?,126686,House M.D.,84.23-91.06,house_s06e05_seg02_clip_01,House drank the coffee 4648,Sam starts to laugh,Sam kicks James out,Sam doesn't believe James,Sam hugs James,Sam doesn't do anything,3,What does Sam do when he finds out that James is his son?,126687,How I Met You Mother,37.91-45.87,met_s06e02_seg02_clip_11,Sam hugs James 4649,House says orthopedist,House says neurologist,House says oncologist.,House says rehab doctor,House says rheumatologist,2,Which type of doctor does House say Wilson is when he discusses the 29 year old patient who cannot talk?,126688,House M.D.,13.49-39.06,house_s01e01_seg02_clip_00,House says oncologist. 4650,3,2,4,5,1,0,How many bullets came through the window when Beckett and Eric were having a romantic moment?,126689,Castle,73.51-78.6,castle_s05e21_seg02_clip_19,3 4651,That she is too busy to listen to what Beckett has to complain about this time. ,That she is letting the man go because he is her step son. ,That she can't do anything to help because she is too close to the case. ,That she doesn't care what is going on. She has better things to do. ,That City Hall has decided it's good PR. ,4,What does Victoria Gates say after she tells Beckett that it's out of her hands?,126690,Castle,0-15.44,castle_s05e07_seg02_clip_04,That City Hall has decided it's good PR. 4652,Lynchberg says the Red Cross ,Lynchberg says the Graham Morton Foundation,Lynchberg says the Liver Cancer Society,Lynchberg says NAMI,Lynchberg says the Leukemia Foundation,1,Where does Odette's share of her estate go according to Lynchberg when he discusses Odette's estate wishes with Beckett?,126691,Castle,27.1-42.25,castle_s04e18_seg02_clip_06,Lynchberg says the Graham Morton Foundation 4653,sitting down,looking at charts,talking about where to eat for lunch,drawing on the xray boards,playing ping pong,4,"what are house, dominika, chase and foreman doing when they are in the xray viewing room?",126692,House M.D.,0-11.57,house_s07e17_seg02_clip_12,playing ping pong 4654,He pours a glass of water.,He starts tapping the table with his hands.,He stands up and throws a chair.,He puts his head down on the table.,He pushes his hair up.,4,What does Evan Mitchell do before Ryan walks through the door with a bag?,126693,Castle,64.03-73.68,castle_s01e07_seg02_clip_05,He pushes his hair up. 4655,To call his mom.,To go cry in his room.,To have his turn on the time machine.,To take the steak out the oven that was burning.,To check on his live experiment. ,2,Why did Leonard run into his apartment after Penny left with her date?,126694,The Big Bang Theory,32.76-41.61,s01e14_seg02_clip_15,To have his turn on the time machine. 4656,The patient is looking at a movie.,The patient is looking at a photo.,The patient is looking at flowers.,The patient is looking at a vision chart.,The patient is looking at an IV bag.,3,What is the patient looking at when House is instructing her?,126695,House M.D.,4.55-7.28,house_s05e02_seg02_clip_03,The patient is looking at a vision chart. 4657,Fi9refighters,Policeman ,Naval men,Doctors,Nurses,0,What type of people are standing behind House before Cuddy says screw you?,126696,House M.D.,0-9.6,house_s06e21_seg02_clip_18,Fi9refighters 4658,Joey said that he wasn't going to get Cathy anything.,Joey said that he didn't know and also asked if he has to get something for Cathy since they have only been going out for a couple of weeks.,Joey said that he was just going to take Cathy out to dinner.,Joey said that he was going to get Cathy a new purse.,Joey said that he was going to get Cathy a bracelet.,1,What did Joey say after Chandler asked what he is going to get Cathy for her birthday?,126697,Friends,50.14-56.15,friends_s04e06_seg02_clip_02,Joey said that he didn't know and also asked if he has to get something for Cathy since they have only been going out for a couple of weeks. 4659,Beckett and Esposito,Ryan and Beckett,Esposito and Ryan,Ryan and Gates,Gates and Beckett,2,Who was with Castle when he went into the meeting as Eric was talking?,126698,Castle,6.97-11.33,castle_s08e04_seg02_clip_12,Esposito and Ryan 4660,Stuart says he can't because they aren't friends. ,Stuart says he can't because he's working and he doesn't want to. ,Stuart says he can't because he has his own doctor appointment. ,Stuart says he can't because he has a therapy appointment. ,Stuart says he can't because he has a workshop to attend. ,1,How does Stuart answer after Sheldon asks him to take him to the dentist?,126699,The Big Bang Theory,12.26-15.4,s05e15_seg02_clip_07,Stuart says he can't because he's working and he doesn't want to. 4661,a can of beans,a can of tuna,a jar of asparagus,a bag of chips,a candy bar,2,What was Sheldon trying to open when Sheldon as on his date with Stephanie?,126700,The Big Bang Theory,0-9.3,s02e09_seg02_clip_12,a jar of asparagus 4662,On the floor,A table next to the booth,At the high-tops at the bar,Their booth,They're standing next to the door at the bar,3,Where is Barney and Ted sitting when they're talking at the bar?,126701,How I Met You Mother,20.84-28.88,met_s06e05_seg02_clip_01,Their booth 4663,a phone,a computer,a shoe,a pumpkin,chair ,1,What was Castle holding when he was explaing the case to his mom?,126702,Castle,48.26-56.7,castle_s04e22_seg02_clip_07,a computer 4664,A day.,A week.,A month.,Two months.,Five weeks. ,2,How long had Natalie lived in her house's crawlspace to prepare when Castle asks?,126703,Castle,5.39-13.02,castle_s03e11_seg02_clip_11,A month. 4665,A painting.,A bed.,A chair.,A refrigerator.,A bar. ,3,What is behind Phoebe when she is talking to Mike?,126704,Friends,0-9.53,friends_s09e16_seg02_clip_22,A refrigerator. 4666,House,Foreman,Cuddy,Cameron,Kutner,2,Who comes into Wilson's office when the door opens?,126705,House M.D.,72.56-78.61,house_s05e13_seg02_clip_13,Cuddy 4667,Joey.,Chandler.,Rachel.,Monica.,Phoebe.,0,Who will be menstruating the day before the wedding?,126706,Friends,41.07-50.39,friends_s04e20_seg02_clip_09,Joey. 4668,Change his clothes,Change the return time,Change the scheduled destination,Change his name,Change cars,2,What did Sam do after the cars would pick him up?,126707,Castle,71.07-82.39,castle_s02e10_seg02_clip_20,Change the scheduled destination 4669,Foreman,Chase,Cuddy,House,Taub,3,Who is sitting at Wilson's desk when he enters his office?,126708,House M.D.,76.54-81.79,house_s07e08_seg02_clip_01,House 4670,They are going to sleep.,They are going to see each other naked.,They are going to take a nap.,They are about to have a pillow fight.,They are about to hug each other.,1,What is the first time Monica and Chandler are about to do when they were in bed together?,126709,Friends,5.7-8.7,friends_s09e10_seg02_clip_13,They are going to see each other naked. 4671,What's that,Nope never,I suppose that's possible,Well maybe a little,Never heard of it,2,How did Paul respond after Beckett asked him if he uses the zombie drug?,126710,Castle,44.43-57.58,castle_s04e22_seg02_clip_19,I suppose that's possible 4672,House,Foreman,Wilson,Chase,Taub,0,Who has another drink after Clarence tells him he's drunk?,126711,House M.D.,44.11-52.45,house_s02e01_seg02_clip_14,House 4673,He wants to get married next month,He wants to get married in November,He wants to get married in May,He wants to get married next week,He wants to get married in September,4,When does Castle tell Beckett he wants them to marry when he talks to her about being family?,126712,Castle,79.32-87.79,castle_s06e12_seg02_clip_26,He wants to get married in September 4674,pick up the phone,open her laptop,search through a box of files,grabbed a pen and paper,walked out of the room,0,What did Beckett do after telling Ryan and Esposito to look into a suspect while she ran a background?,126713,Castle,25.21-34.21,castle_s03e11_seg02_clip_17,pick up the phone 4675,Agnes,Richard,The gang from the bar,Cristina,Meredith,0,"Who tells Meredith that they just wanted to be there when graced crossed over, after Meredith is about to ask if they want to say goodbye?",126714,Grey's Anatomy,2.15-12.9,grey_s02e15_seg02_clip_20,Agnes 4676,Because he ends up stealing her away.,Because Amy hated the magic trick.,Because Amy wanted Marshall to do a magic trick.,Because Amy ended up leaving.,Because Amy wanted to see another magic trick after.,0,Why does Marshall get upset after Barney does the magic trick for Amy?,126715,How I Met You Mother,0-33.82,met_s02e02_seg02_clip_05,Because he ends up stealing her away. 4677,the erotic hand soaps,The magic display,The girly poster,his doormat,The storm trooper,4,What precious personal item did Lilly make barney get rid of after bringing in a plant?,126716,How I Met You Mother,16.91-44.87,met_s02e05_seg02_clip_12,The storm trooper 4678,Her boyfriend,Studying ,An iron lung,Getting a real job,Cooking Castle dinner,2,What does Alexis say she's busy with after Scott tries hitting on her?,126717,Castle,69.35-85.32,castle_s08e03_seg02_clip_09,An iron lung 4679,He hangs it on a towel rack.,He puts it in his pocket.,He gives it to Leonard.,He places it in a bag.,He puts into a storage box.,4,What does Sheldon do with the napkin after he shows it to the camera?,126718,The Big Bang Theory,49.01-57.7,s09e07_seg02_clip_06,He puts into a storage box. 4680,Esposito.,Ryan and Esposito.,Ryan.,Ryan and Lanie.,Esposito and Lanie.,1,Who did Montgomery assign to lead the Raglan case after he removed Castle and Beckett?,126719,Castle,70.42-77.06,castle_s03e13_seg02_clip_08,Ryan and Esposito. 4681,three,seven,two,six,four,3,How many fingers did Joey hold up when Phoebe asked Mike how many sisters Joey has?,126720,Friends,41.7-54.77,friends_s09e03_seg02_clip_12,six 4682,Dogs.,Cats.,Allergy sufferers.,Rats.,More people.,1,Who does Phoebe say Monica could now invite after she says there will be no lilies?,126721,Friends,26.34-42.27,friends_s07e02_seg02_clip_12,Cats. 4683,Grey,Teal,White,Orange,Purple,2,"What color is the shirt that Beckett is wearing when he say's ""It's Empty""?",126722,Castle,0-9.72,castle_s07e01_seg02_clip_01,White 4684,The man laughed at their car.,The man's convertible was much nicer.,The man threw egg on their car.,They had the same convertible as the man.,The man's car was newer.,3,Why was Ross and Joey surprised when the man rolled by in the red convertible?,126723,Friends,23.01-27.62,friends_s07e14_seg02_clip_20,They had the same convertible as the man. 4685,Aleister Labs.,Tech labs.,Zantium labs.,Zolan Labs.,Zoantiu Labs,2,Who does Esposito say is mad with Alan when he is talking about his lead?,126724,Castle,31.3-40.24,castle_s08e19_seg02_clip_07,Zantium labs. 4686,Get the patient into surgery,Pray,Do nothing,Ask for a second opinion,Transfer the patient,0,What does foreman want to do with the patient when coming up with solutions with house and chase?,126725,House M.D.,67.35-70.47,house_s01e16_seg02_clip_22,Get the patient into surgery 4687,telemarketers,murderers,collection agencies,prank callers,soliciters,0,Who did Beckett say she wished there were tougher laws against before putting on the bracelet?,126726,Castle,7.65-14.41,castle_s08e02_seg02_clip_02,telemarketers 4688,talking on the phone,dancing,crying,eating,pushing stroller,4,What is Amy doing when she comes into the coffee shop to talk to Chandler and Monica?,126727,Friends,47.43-54.61,friends_s10e05_seg02_clip_15,pushing stroller 4689,take a drink of coffee,toss a black folder to Foreman,twirl his cane,take off his shoes,dial the phone,1,What does House do when he tells Foreman to go straight to the source?,126728,House M.D.,5.7-12.35,house_s03e06_seg02_clip_17,toss a black folder to Foreman 4690,Penny was working at a restaurant.,Penny was at home.,Penny was walking in the street.,Penny was at bed.,Penny was in the kitchen.,0,Where was Penny when she called to Leonard?,126729,The Big Bang Theory,0-43.65,s01e11_seg02_clip_08,Penny was working at a restaurant. 4691,Ice cream cones,Guns and flashlights,Their badges,Puppies,Small children ,1,What do Ryan and Esposito have in their hands when doing their search,126730,Castle,10.79-17.08,castle_s06e11_seg02_clip_10,Guns and flashlights 4692,They act very suspiciously,They squabble and disagree with one another,They seem very frightened,They dote on the little girl constantly,They are very vague in their answers,1,How do the parents of the little girl patient behave when Cameron is asking them questions?,126731,House M.D.,0-10.12,house_s03e09_seg02_clip_00,They squabble and disagree with one another 4693,Cancer.,Epilepsy.,Tramatic brain injury.,Vascular disease.,Migraines.,0,"What did House say was definitely not wrong with Roy's son when him, Chase, Foreman and Cameron were disucussing what may be wrong with him?",126732,House M.D.,57.99-60.73,house_s06e04_seg02_clip_12,Cancer. 4694,Rachel came out crying.,Rachel started laughing hysterically.,Rachel came back out screaming Oh my God!,Rachel started measuring the room.,Rachel started talking about decorating it.,2,How did Rachel react when she walked into the bedroom?,126733,Friends,55.11-59.11,friends_s07e10_seg02_clip_16,Rachel came back out screaming Oh my God! 4695,Black,Blue,Red,Gray,Green,2,What color was Beckett's coat when she met up with Castle?,126734,Castle,83.29-85.11,castle_s03e07_seg02_clip_00,Red 4696,Unaffected. ,Very happy. ,Upset and unhappy. ,Disinterested. ,Crying. ,2,What is Monica's demeanor when she is talking to Phoebe? ,126735,Friends,4.88-14.95,friends_s07e03_seg02_clip_03,Upset and unhappy. 4697,Dont activate,Blow up,Put holes in people,Nothing,Blow glitter,2,What did castle claim the airbags from modesto motors do when confronting elise?,126736,Castle,51.01-56.02,castle_s07e19_seg02_clip_23,Put holes in people 4698,"eat his salad and said ""No""","looked away from House and said ""No""","read something on his phone and said ""No""","read a book and said ""No""","looked at House and said ""No""",4,"what did Danny do, when house asked him ""tell me your real name"" ?",126737,House M.D.,5.28-14.4,house_s07e17_seg02_clip_17,"looked at House and said ""No""" 4699,Sheldon wants to leave.,Sheldon is sad about the wedding.,Sheldon is excited for the wedding.,Sheldon is thinking of proposing to Amy.,Sheldon is not having fun with her.,3,What does Amy think Sheldon might be thinking when at the marriage licences office.,126738,The Big Bang Theory,12.75-26.01,s05e24_seg02_clip_04,Sheldon is thinking of proposing to Amy. 4700,Three men,Two men ,Five men,One man,Six men ,1,How many men were sitting at the table when Cole was discussing business?,126739,Castle,17.19-25.12,castle_s07e13_seg02_clip_02,Two men 4701,Black.,Red.,White.,Blue.,Yellow.,1,What color shirt was Deb wearing when she was holding a cup of coffee?,126740,House M.D.,0-3.9,house_s04e13_seg02_clip_01,Red. 4702,"The victim had died from an singel GSW gun-shot-wound to the chest, from an fairly large caliber.",The victim was drowned.,The victim was merely in an drunk stupor.,The victim died of an overdose.,The victim died from sunbathing.,0,What did Becket find out about the victim after speaking to Dr.Parish?,126741,Castle,11.96-16.83,castle_s01e04_seg02_clip_01,"The victim had died from an singel GSW gun-shot-wound to the chest, from an fairly large caliber." 4703,She is in a clothing store. ,She is at a used car lot.,She is in an office at a job interview.,She is in a restaurant at a job interview.,She is standing in an empty apartment with a woman with a folder in her hand.,4,"Where is Zoey when she says ""I guess I'll take it""?",126742,How I Met You Mother,0-4.16,met_s06e15_seg02_clip_17,She is standing in an empty apartment with a woman with a folder in her hand. 4704,Alex tells Izzie he won't speak to Derek about her friend. ,Alex tells Izzie he doesn't want to be her friend.,Alex tells Izzie he's won't save her friend.,Alex tells Izzie he won't search the donor database for her.,Alex tells Izzie he won't lie for her.,4,What does Alex tell Izzie he won't do when talking on the phone?,126743,Grey's Anatomy,8.57-31.56,grey_s02e25_seg02_clip_11,Alex tells Izzie he won't lie for her. 4705,I do like him but not enough to keep him.,That is what everyone says.,I don't. I hate Joseph.,I don't.,"Oh yes, I love him.",2,What does Chandler tell Joey after Joey says everyone loves Joseph?,126744,Friends,14.95-21.36,friends_s02e23_seg02_clip_13,I don't. I hate Joseph. 4706,Sheldon interrupted the ceremony.,Amy interrupted the ceremony.,Beverly interrupted the ceremony.,Nobody interrupted the ceremony.,Penny interrupted the ceremony.,0,Who interrupted the ceremony after Bernadette wanted to continue?,126745,The Big Bang Theory,4.9-12.26,s10e01_seg02_clip_16,Sheldon interrupted the ceremony. 4707,Ross.,Phoebe.,Joey.,Chandler.,Steve.,3,Who is late when he apologizes to Monica?,126746,Friends,0-8.96,friends_s09e13_seg02_clip_22,Chandler. 4708,Eat his lunch,Start to cry,Sit on the floor ,Knock on the door,Run down the hall ,3,What does Howard do when standing next to Raj?,126747,The Big Bang Theory,61.46-64.02,s10e09_seg02_clip_07,Knock on the door 4709,Pink,Green,Yellow,Blue,Black,0,What is the color of Penny's dress when she is talking to Leonard?,126748,The Big Bang Theory,27-36.9,s06e18_seg02_clip_16,Pink 4710,Sitting at a table in the kitchen. ,Standing by the door. ,At the sink cleaning dishes,Laying on the couch in the living room,Standing by the table in the kitchen,0,Where was Rachel when Ross talked to Joey and Chandler ,126749,Friends,41.19-60.86,friends_s03e02_seg02_clip_16,Sitting at a table in the kitchen. 4711,Meridith was standing next to Derek,Alex was standing next to Derek,Izzie was standing next to Derek,Cristina was standing next to Derek,Derek wasn't standing next to anyone,3,Who was standing next to Derek when he was preforming surgery?,126750,Grey's Anatomy,5.97-11.55,grey_s01e07_seg02_clip_19,Cristina was standing next to Derek 4712,House,Taub,Masters,Cameron,Thirteen,2,Who is having trouble concentrating on the procedure after seeing that the male patient is well endowed?,126751,House M.D.,0-19.94,house_s07e16_seg02_clip_12,Masters 4713,In the bathroom,In the car,At home ,In the office,At the gym,3,Where were Castle when he was taking picture of another phone?,126752,Castle,88.72-94.11,castle_s08e09_seg02_clip_04,In the office 4714,Maria owed Bob some favors.,Maria wanted Bob to pass on to the tenth grade.,Maria wanted Bob to sit behind her.,Maria liked Bob.,Maria felt bad because Bob was so dumb.,2,Why did Maria let Bob cheat off her work when they were in Mr. Foley's class?,126753,House M.D.,20.15-23.71,house_s02e15_seg02_clip_18,Maria wanted Bob to sit behind her. 4715,Leonard paid $50.,Leonard paid $10.,Leonard paid $200.,Leonard paid $15.,Leonard paid $20.,4,How much did Leonard tell Penny he paid for Theo Sassler's signature when she doubted if one person would ask for her autograph?,126754,The Big Bang Theory,28.17-39.69,s10e06_seg02_clip_02,Leonard paid $20. 4716,Being third cousins,Short distance,Long-distance,Breaking up,Just being friends,2,What does ashley think him and alexis can make work when he is talking to castle?,126755,Castle,11.38-15.47,castle_s03e23_seg02_clip_16,Long-distance 4717,night,raining,sunny,storming with lightning,snowy,4,What are the conditions like outside the window when Ross is talking with Monica and Chandler?,126756,Friends,12.48-15.96,friends_s01e10_seg02_clip_06,snowy 4718,She started dancing.,She drank her beer.,She put money in her shorts.,She grabbed her purse.,She got on stage.,2,What did Monica do after the girl stuck her butt out?,126757,Friends,1.93-4.62,friends_s04e14_seg02_clip_12,She put money in her shorts. 4719,Castle feels thrilled.,Castle feels excited.,Castle feels happy.,Castle feels worried.,Castle feels mad.,3,How does Castle feel when he discusses Beckett being out there somewhere with Esposito?,126758,Castle,49.99-77.37,castle_s06e17_seg02_clip_17,Castle feels worried. 4720,He takes the one not being offered to him,He takes the offered coffee and then switches them later,He pours out the coffee,He accepts the coffee House offers but does not drink it,He challenges House to drink both coffee cups,0,"How does Wilson handle the coffee he was offered, after Wilson states he is suspicious of House's motives?",126759,House M.D.,15.53-47.14,house_s03e22_seg02_clip_09,He takes the one not being offered to him 4721,Because the plate she was making was wrong. ,Because the steak was on fire. ,Because it was the first time she had realized she would never get to sleep with anyone else. ,Because her boss overheard her. ,Because Phoebe sneezed on the food. ,2,Why was Monica panicked after she said that she would never get to sleep with anyone else again?,126760,Friends,48.07-56.45,friends_s07e18_seg02_clip_05,Because it was the first time she had realized she would never get to sleep with anyone else. 4722,Cameron is happy that House is still hurt. ,Cameron is sad House didn't come back sooner. ,Cameron is angry that House didn't come back sooner. ,Cameron is concerned that House isn't taking it easy. ,Cameron is upset that House is nice to her.,3,How does Cameron react when House comes back to work?,126761,House M.D.,35.43-51.99,house_s03e01_seg02_clip_02,Cameron is concerned that House isn't taking it easy. 4723,Penny asks Raj what time it is?,Penny asks Raj if they are going to be lame characters with silly accents?,Howard asks Raj when the activity will start?,Leonard asks Penny what time it is?,Amy asks Stuart what time it is?,1,What does Penny ask Raj before the activity begins?,126762,The Big Bang Theory,0-9.46,s07e18_seg02_clip_00,Penny asks Raj if they are going to be lame characters with silly accents? 4724,49th Street bar.,Studio 54.,Jack's bar and grill.,The Cocacabana.,The Four Season.,4,Where does Rachel suggest Joey take his date for drinks when he is asking for suggestion?,126763,Friends,41.87-46.52,friends_s08e12_seg02_clip_00,The Four Season. 4725,Castle and Beckett went to the bar.,Castle and Beckett went for a walk.,Castle and Beckett went to see a match.,Castle and Beckett went where the body was found.,Castle and Beckett went to the concert.,3,Where went Castle and Beckett after they were analyzing the crime?,126764,Castle,85.62-90.2,castle_s03e08_seg02_clip_10,Castle and Beckett went where the body was found. 4726,bandage his arm,start to laugh,start to cry,pick up her stethescope,tuck in his covers,2,What does Elizabeth do after telling the patient he doesn't trust her?,126765,House M.D.,15.25-20.74,house_s02e10_seg02_clip_25,start to cry 4727,Shannon.,Sarah.,Susan.,Stacy.,Sam.,4,Who did House say saw him naked when Wilson said someone wanted to meet him?,126766,House M.D.,34.27-46.29,house_s06e17_seg02_clip_10,Sam. 4728,Leslie.,Penny.,Alicia.,The guy who won the MacArthur genus grant.,Batman.,3,"Who do Leonrd, Sheldon and Raj turn around to see when they are eating?",126767,The Big Bang Theory,24.79-27.15,s02e11_seg01_clip_01,The guy who won the MacArthur genus grant. 4729,Cat poop ,Marbles,Clothes,Twister,Blue pieces of paper,4,What was on the floor by Joey and Ross when Rachel came in? ,126768,Friends,31.83-38.76,friends_s07e08_seg02_clip_16,Blue pieces of paper 4730,a folder ,an apple,a coffee,a gun,a cellphone,0,"What did House take out when he said ""four hours, not four months"" ?",126769,House M.D.,56.28-65.58,house_s04e16_seg02_clip_01,a folder 4731,Raj.,Leonard.,Howard.,Sheldon.,Penny.,3,Who sings in the car when Raj and Sheldon are talking about kites?,126770,The Big Bang Theory,27.31-32.22,s03e06_seg02_clip_02,Sheldon. 4732,Keith cannot remember any names because he did not meet anybody.,Keith thinks Beckett is a very persistent woman.,Keith gives Beckett a video showing he was with a girl the other night.,Keith cannot remember any names because of a psychological disorder.,Keith thinks the way Beckett phrases her questions is funny.,2,Why does Keith start to chuckle after Beckett tells him to do better and give her a name?,126771,Castle,12.32-32.57,castle_s05e07_seg02_clip_15,Keith gives Beckett a video showing he was with a girl the other night. 4733,Looked at him and looked back down.,Glared at him.,Ignored him.,Got up and took a patient.,"Said ""thank you""",0,What did Cameron do after House complimented her hair?,126772,House M.D.,24.76-26.56,house_s03e04_seg02_clip_10,Looked at him and looked back down. 4734,$4 million,$7.4 million,$8 million,$2 million,$4.7 million,1,How much money did castle say eva transfered over to a swiss account when talking to beckett?,126773,Castle,67.26-71.2,castle_s07e13_seg02_clip_15,$7.4 million 4735,He shakes his head no. ,He mimes a pistol shot with his hands. ,He nods. ,He scratches his head ruefully. ,He bites his lip. ,2,"What does Chase do when Adams says, ""You hunt kangaroos?""",126774,House M.D.,40.95-50.3,house_s08e08_seg02_clip_09,He nods. 4736,Thirteen is in a cab.,Thirteen is at college.,Thirteen is at home.,Thirteen is at the hospital.,Thirteen is at a coffee shop.,0,Where is Thirteen when she asks to upgrade her seat using her mileage points?,126775,House M.D.,0-8.1,house_s06e04_seg02_clip_07,Thirteen is in a cab. 4737,He offered her some coffee,He opened the door for her,He picked her up,He kissed her,He hugged her,4,What did Ross do after he told Rachel that it was important to him that she was there,126776,Friends,5.22-15.37,friends_s05e20_seg02_clip_16,He hugged her 4738,A white dog.,A white snake.,White smoke,A white rat.,White chalk outline of a dead body.,2,What white item can be seen behind the officers before Beckett takes her gun from the purse?,126777,Castle,0-6.98,castle_s02e14_seg02_clip_23,White smoke 4739,A book,A glass of wine,A bottle of water,A computer,A magazine,3,What does Castle grab before sitting on the couch?,126778,Castle,75.42-81.29,castle_s03e16_seg02_clip_23,A computer 4740,Penny believed that being pregnant gave Bernadette x-ray vision. ,Penny thought Bernadette was a psychic. ,"Bernadette was a good guesser, according to Penny. ",Penny thought Bernadette could sniff the box and know its contents. ,Penny thought Bernadette had sent the package herself. ,3,How did Penny expect Bernadette to know what was in the box after she held it before her? ,126779,The Big Bang Theory,0.3-7.5,s09e18_seg02_clip_01,Penny thought Bernadette could sniff the box and know its contents. 4741,Next to the door with Ryan and Esposito,Next to the chair with Ryan and Esposito,Next to the table with Ryan and Esposito,Next to the wall with Ryan and Esposito,Next to the soda machine with Ryan and Esposito,2,Where is Beckett standing when Karpowski walks into the conversation?,126780,Castle,13.52-19.83,castle_s02e05_seg02_clip_19,Next to the table with Ryan and Esposito 4742,"We had a great time, thank you",We had a horrible time,I want a refund,"Bad food, bas service, yuck",I can't wait to come again!,0,What did Monica say to the hotel when she was pretending to say good bye to the hotel?,126781,Friends,29.31-63.03,friends_s10e01_seg02_clip_02,"We had a great time, thank you" 4743,Joey is eating chips.,Joey is eating a sandwich.,Joey is eating a salad.,Joey is eating fried chicken.,Joey is not eating anything.,1,What is Joey eating when Monica walks into the apartment?,126782,Friends,11.1-13.51,friends_s02e05_seg02_clip_03,Joey is eating a sandwich. 4744,Howard calls Sheldon.,Howard walks away.,Howard looks up at Amy.,Howard stands on the chair.,Howard plays with his phone.,2,What does Howard do after Bernadette suggests Amy fake a laugh?,126783,The Big Bang Theory,24.65-28.5,s07e12_seg02_clip_12,Howard looks up at Amy. 4745,Sheldon was sad because it meant that he wasn't Penny's type either. ,Sheldon was angry that Penny insulted Leonard.,Sheldon was annoyed that Penny didn't just make up her mind.,Sheldon agreed and thought that Leonard didn't seem to be a desirable date for anyone. ,Sheldon didn't understand why Penny wouldn't want to date Leonard. ,3,How did Sheldon feel when Penny said Leonard wasn't the kind of guy she normally dated?,126784,The Big Bang Theory,40.01-53.46,s01e17_seg02_clip_11,Sheldon agreed and thought that Leonard didn't seem to be a desirable date for anyone. 4746,A bedroom.,The bathroom.,The kitchen.,The living room.,A closet.,0,Where did Park and Taub find the dismembered pig when they were investigating the house?,126785,House M.D.,35.15-50.67,house_s08e18_seg02_clip_03,A bedroom. 4747,Steam the dress,Help Monica's Grandmother,Break up with Ross,Eat her fruits and vegetables,Cook,1,What did Rachel forget to do when Monica thanked her?,126786,Friends,48.08-54.02,friends_s07e23-24_seg02_clip_10,Help Monica's Grandmother 4748,Lily placed her arms around Marshall's legs.,Lily placed her arms around Robin.,Lily placed her arms to her side.,Lily place her arms around Marshall's shoulders.,Lily place her arms around Marshall's back.,4,Where did Lily place her arms after Marshall came to terms with his father's death?,126787,How I Met You Mother,43.09-46.63,met_s06e14_seg02_clip_14,Lily place her arms around Marshall's back. 4749,a date with the boss,the job title,the handsome guy who works there,the cash,the money bump,3,What did Phoebe say she sold out for when she was starting to work at the massage office?,126788,Friends,46.47-54.36,friends_s09e21_seg02_clip_16,the cash 4750,She was dressed like Little Red Riding Hood,"She was dressed like Cinderella, complete with glass slippers",She was dressed like Snow White ,She was dressed like Goldilocks,She was dressed like the Little Mermaid,0,How was the victim dressed when she was killed?,126789,Castle,27.7-31.27,castle_s04e17_seg02_clip_02,She was dressed like Little Red Riding Hood 4751,Deli,Car park,Water park,The Laundry room,House repair,3,Where did Eliska work before being promoted to Client Services?,126790,Castle,10.6-18.11,castle_s02e05_seg02_clip_07,The Laundry room 4752,Dog treats.,A dog bone.,A chew toy.,A doggy sweater that says diamond in the ruff.,A little pink collar.,3,What does Barney buy the dog before the girl slaps him?,126791,How I Met You Mother,25.83-35.92,met_s03e14_seg01_clip_02,A doggy sweater that says diamond in the ruff. 4753,Sheldon's mom texts him. ,Leslie texts Sheldon. ,Penny texts Sheldon. ,Bernadette texts Sheldon. ,Amy texts Sheldon. ,4,Who texts Sheldon when she is at the dry cleaners?,126792,The Big Bang Theory,28.57-30.74,s04e01_seg02_clip_00,Amy texts Sheldon. 4754,starts looking though mail ,reads a magazine,takes out her phone ,turns on the tv,starts looking through drawers,4,what does adams do after she sits down on the couch ,126793,House M.D.,70.79-83.26,house_s08e17_seg02_clip_03,starts looking through drawers 4755,Monica said the nurse was wearing ugly shoes.,Monica said she wanted to go home.,Monica said she was starving.,Monica said she wanted a baby.,Monica told Chandler to go get her a Coke.,3,What did Monica say after the nurse walked by?,126794,Friends,15.05-19.18,friends_s01e23_seg02_clip_01,Monica said she wanted a baby. 4756,Howard plays chess with Sheldon.,Howard runs out the door.,Howard proposes to Bernadette.,Howard starts singing.,He grimace and leans his chin forward.,4,What does Howard do when he says chummy?,126795,The Big Bang Theory,18.46-21.23,s08e01_seg02_clip_02,He grimace and leans his chin forward. 4757,She was bald,In a beehive,In an updo,In a high ponytail,In two loose pigtails,4,How did Rachel have her hair styled when she was talking to Dr. Schiff?,126796,Friends,6.86-11.62,friends_s08e11_seg02_clip_07,In two loose pigtails 4758,Because he needed money.,"Because he has experience with pregnant, and crazy ladies.",Because he owed him money.,Because he needed a ride.,Because he loved him.,1,Why did Raj say he was calling his dad after Bernadette insulted him.,126797,The Big Bang Theory,36.65-47.43,s10e03_seg02_clip_15,"Because he has experience with pregnant, and crazy ladies." 4759,Mean ones,Slow ones,Busy ones,Rich ones,Cocky ones,4,Who did beckett say is the easiest to take down when talking to Flanagan,126798,Castle,38.69-44.15,castle_s08e15_seg02_clip_17,Cocky ones 4760,Derek kisses Meredith.,"Derek looks down, turns and walks away.",Derek hugs Meredith.,Derek kisses Addison.,Derek proposes to Meredith.,1,"What does Derek do after he says ""yeah""?",126799,Grey's Anatomy,7.74-10.47,grey_s02e02_seg02_clip_20,"Derek looks down, turns and walks away." 4761,They confirm she won't be honest,They confirm she will go along with whatever Sebastian says,They confirm she is intimidated,They confirm she has a bit of a crush on Sebastian,They confirms she is not herself when he is around,0,How do Cameron's remarks confirm House's feelings when he says the patient should not be present in the room?,126800,House M.D.,40.51-51.76,house_s02e04_seg02_clip_01,They confirm she won't be honest 4762,Left the hospital.,Went to visit his patient.,Threw a manic fit.,Got tests performed on his brain.,"Went to visit Cuddy, ",3,What did house do after he spoke with Wilson?,126801,House M.D.,49.85-59.65,house_s04e16_seg02_clip_14,Got tests performed on his brain. 4763,Castle's mother walks in,Beckett walks in,A woman gives him attention,A strange man walks up to Castle,A woman hits Castle,2,What happens after Castle sits down?,126802,Castle,0-4.96,castle_s06e18_seg02_clip_11,A woman gives him attention 4764,Joey pointed a toy towards the duck.,Joey pointed a arrow towards the duck.,Joey pointed a gun towards the duck.,Joey pointed his finger towards the duck.,Joey pointed a pencil towards the duck.,2,What did Joey point towards a duck he was holding before he went out the front door?,126803,Friends,0-2.1,friends_s05e19_seg02_clip_19,Joey pointed a gun towards the duck. 4765,Because Leonard Begged Her,Because Leonard Blackmailed Her,Because Leonard Paid Her,Because she felt bad for Leonard,Because there was nothing better to do,4,Why did Leonards date Kiss him after she was Disgusted?,126804,The Big Bang Theory,30.51-59.83,s05e15_seg02_clip_12,Because there was nothing better to do 4766,A pillow.,A glass.,A bowl.,A gun.,A wallet.,2,What was Wilson holding in his left hand when he said yelling was a clue?,126805,House M.D.,49.96-57.62,house_s02e06_seg02_clip_20,A bowl. 4767,He had a conversation he wanted to have and made a gesture he wanted to make.,He had a conversation he did want to have and made a gesture he didn't want to make.,He had been dying to have the conversation and make this gesture all along.,He had that same conversation and made that same gesture with her.,She was hurt by the conversation he had and gesture he made.,1,What did Rachel say about the conversation and gesture Ross made when he was talking about the key?,126806,Friends,8.68-15.51,friends_s08e11_seg02_clip_15,He had a conversation he did want to have and made a gesture he didn't want to make. 4768,Park,Foreman,Chase,Cuddy,Wilson,0,Who was House talking to when he was in the room?,126807,House M.D.,0-8.65,house_s08e02_seg02_clip_24,Park 4769,House said every 5 million cases.,"House said every 50,000 cases.",House said every ten million cases.,House said every million cases.,"House said every 100,000 cases.",2,How many cases did House say it would take to set off a chain reaction when he was going over his patient's condition?,126808,House M.D.,52.34-55.53,house_s02e12_seg02_clip_21,House said every ten million cases. 4770,White.,Black.,Brown.,Green.,Yellow.,0,What color chair does Phoebe sit down on after Roy asks for the ladies attention?,126809,Friends,23.15-36.5,friends_s10e11_seg02_clip_11,White. 4771,House takes a sip of wine.,House takes a sip of water.,House sets the pill bottle on the table.,House drops his cane.,House takes his shoes off.,2,What does House do after taking a pill by mouth?,126810,House M.D.,109.64-113.12,house_s07e23_seg02_clip_22,House sets the pill bottle on the table. 4772,Under Armour ,McDonalds,Umbro,Deer Brook,Nike,3,What does George have on his shirt when he talks about Christina?,126811,Grey's Anatomy,2.84-8.24,grey_s01e03_seg02_clip_25,Deer Brook 4773,Cuddy,House,Chase,Foreman,Wilson,3,Who walked into the room when Park was observing the lungs?,126812,House M.D.,43.24-52.34,house_s08e02_seg02_clip_24,Foreman 4774,behind Castle,right side of castle ,Left side of Castle ,Behind Beckett,no statue,2,Where was the statue located at when Beckett and Castle was walking into the Banking suite? ,126813,Castle,85.63-92.57,castle_s06e12_seg02_clip_04,Left side of Castle 4775,A red tie.,A purple tie.,A green tie.,A blue tie.,A black tie.,0,What color tie is the waiter wearing when he is being asked a question?,126814,Friends,52.27-61.13,friends_s04e10_seg02_clip_11,A red tie. 4776,Penny dump her group because they don't know how to play,Penny dump her group because they are dumb,"Penny dumped her group because, they're a bunch of wussies","Penny dump her crew because, they don't know how to play",Penny dump her crew because she does not like them,2,Why did Penny dump her group when Sheldon asked her the question?,126815,The Big Bang Theory,1.5-7.8,s02e03_seg02_clip_14,"Penny dumped her group because, they're a bunch of wussies" 4777,Amy and Sheldon are in the hospital.,Amy and Sheldon are in the car.,Amy and Sheldon are in church.,Amy and Sheldon are sitting on Sheldon's bed.,Amy and Sheldon are in the lab.,1,Where are Amy and Sheldon when they have their conversation?,126816,The Big Bang Theory,0-7.22,s09e19_seg02_clip_08,Amy and Sheldon are in the car. 4778,Cuddy went to tell House that a patient was looking for him,Cuddy went to tell House that he was in trouble,Cuddy went to tell House that he was needed in the lab,Cuddy went to tell House that Wilson was back,Cuddy didn't tell House anything,3,Why did Cuddy go into the patient's room when House was playing a video game?,126817,House M.D.,18.9-25.81,house_s05e01_seg02_clip_00,Cuddy went to tell House that Wilson was back 4779,Lovely and loving,Stupid and silly,Kind and loving ,Lovely and generous,Generous and stupid ,3,How does Bailey describe Izzie when speaking in the hall? ,126818,Grey's Anatomy,76.87-82.55,grey_s03e12_seg02_clip_03,Lovely and generous 4780,Ben asks to use the bathroom,Joey comes into the room dressed as Santa,Ben starts to cry,Ben starts to laugh,Joey comes into the room in a super man suit,4,What happened when Ross started telling Ben the story of Hannukkah?,126819,Friends,24.32-32.02,friends_s07e10_seg02_clip_16,Joey comes into the room in a super man suit 4781,They test Dan the same day,They test Dan four days later,They tested Dan three days later,They tested Dan five days later ,They test Dan 7 days later,1,How many days after Dan's girlfriend was admitted to the hospital did they test Dan for potential allergens?,126820,House M.D.,69.11-78.98,house_s02e16_seg02_clip_05,They test Dan four days later 4782,A pocket knife,A magazine,The Central Perk menu,A bagel,A coffee mug,1,"What does Ross show Gunther when he says ""check this out?""",126821,Friends,28.92-34.53,friends_s06e12_seg02_clip_07,A magazine 4783,Phoebe.,Monica.,Rachel.,Nobody responds.,Everyone in unison.,1,"Who is first to respond to Roy after he asks,"" are you talking about me""?",126822,Friends,8.01-13.35,friends_s10e11_seg02_clip_11,Monica. 4784,Paper from the straw.,A cherry.,White foam.,A strawberry.,A yellow slice of lemon.,4,What is floating in the water glass when Leonard says the guys were making him nervous?,126823,The Big Bang Theory,0-7.5,s07e11_seg02_clip_04,A yellow slice of lemon. 4785,Tilt table test.,Finger Measurement Test.,Romberg's test.,The Diamond Test.,The Nose Test and the Heel Test.,0,What test did House suggest for a patient when Foreman said that particular test never worked?,126824,House M.D.,49.96-55.76,house_s02e04_seg02_clip_05,Tilt table test. 4786,On Joey's bed. ,In the shower. ,Under the bed. ,Sitting on the bed. ,In the bed together. ,4,Where are Chandler and Monica when they are in Chandler's hotel room?,126825,Friends,35.05-37.53,friends_s04e23-24_seg02_clip_35,In the bed together. 4787,His grandpa,His grandma,Chandler,Rachael,Monica ,1,Who complimented Joey on his performance when they were watching his fake television scene?,126826,Friends,15.54-20.17,friends_s05e19_seg02_clip_19,His grandma 4788,Stress.,Poor nutrition. ,Family medical history.,Physical trauma.,Sugar.,0,What did House say causes intermittent insulin secretion after Foreman mentioned it?,126827,House M.D.,43.43-46.18,house_s02e04_seg02_clip_21,Stress. 4789,Meredith doesn't believe Derek.,Meredith yelled at Derek.,Meredith broke up with Derek.,Meredith hates Derek.,Meredith withheld the truth from Derek.,4,Why is Derek Angry after Meredith talks?,126828,Grey's Anatomy,0.61-39.33,grey_s03e09_seg02_clip_30,Meredith withheld the truth from Derek. 4790,Mad.,"House had many facial expressions when he was talking to the lady, mainly a why me look.",Upset.,Surprised.,Non-chalant.,1,How was House's facial expression when he was talking to the lady in the bed?,126829,House M.D.,9.8-29.83,house_s07e23_seg02_clip_11,"House had many facial expressions when he was talking to the lady, mainly a why me look." 4791,He runs to the restroom.,He drops the glass onto the floor. ,He gasps for air.,He holds his chest.,He spits the drink back into the glass.,4,What does Raj do after Bernadette didn't remember washing her hands after working in the lab with penicillin-resistant gohorrhea?,126830,The Big Bang Theory,48.5-53.76,s04e09_seg02_clip_06,He spits the drink back into the glass. 4792,Glass of milk,Glass of wine,Glass of water,Can of beer,Jar of honey,0,What was Phoebe holding when she was talking to Monica and Rachel in the kitchen ?,126831,Friends,0-5.19,friends_s04e13_seg02_clip_10,Glass of milk 4793,She said she was going to move out. ,She said she was going to go to the bedroom to take the painting she left on the wall. ,She said she was going to go to London to meet the man of her dreams. ,She said she was going to take off. ,She said she was done with all the games and just wanted to be happy. ,3,What did Rachel say she was going to do after she came back inside?,126832,Friends,36.82-41.94,friends_s10e16_seg02_clip_13,She said she was going to take off. 4794,In the doorway.,On the couch.,In the bathroom,In the coffee shop.,In Joey's room.,0,Where was Ross when he said that he just came to say that?,126833,Friends,55.83-58,friends_s08e16_seg02_clip_05,In the doorway. 4795,At the kitchen table,On the coffee table,On her bed,On the floor,On the counter,1,Where was Monica sitting when Chandler was sitting on the couch?,126834,Friends,0-3.86,friends_s08e15_seg02_clip_06,On the coffee table 4796,Christina is talking on her phone.,Christina is talking to doctor.,Christina is taking a nap.,Christina is talking to a patient.,Christina is cleaning the room. ,3,What is Christina doing when she is in a hospital room ?,126835,Grey's Anatomy,0-4.41,grey_s03e14_seg02_clip_15,Christina is talking to a patient. 4797,A stranger.,Her job.,Her stalker.,Her blackmailer.,Her boss.,3,What did Esposito say Amber didn't tell her father about when Castle mentioned the photos?,126836,Castle,0-8.1,castle_s03e23_seg02_clip_13,Her blackmailer. 4798,rests his arm behind Monica on the couch,takes a drink of coffee,hugs Monica,blows his nose,stand sup,0,What does Chandler do after saying he wonders why anyone would want to get married?,126837,Friends,6.96-11.19,friends_s06e24-25_seg02_clip_20,rests his arm behind Monica on the couch 4799,Bag of chips,A sandwich,Cards,Cup of coffee,Patient chart,2,What did Meredith have in her hands when Izzy sat down beside her?,126838,Grey's Anatomy,42.78-51.43,grey_s03e06_seg02_clip_13,Cards 4800,Stands up.,Puts his arm around Ross.,Pats Ross' arm.,Makes air quotes.,Points to Rachel. ,3,What does Joey do when he tells Ross that he doesn't think Ross will be just anybody to Rachel?,126839,Friends,48.07-50.86,friends_s09e02_seg02_clip_16,Makes air quotes. 4801,Calls her friend.,Gives out hugs.,Offers apologies.,Orders lunch for the team.,Tells the family bad news.,2,What does Bailey do before walking away?,126840,Grey's Anatomy,0-11.75,grey_s02e12_seg02_clip_24,Offers apologies. 4802,9,7,8,6,10,3,How many tests could be run before exsanguinating the kids?,126841,House M.D.,74.4-80.77,house_s01e04_seg02_clip_17,6 4803,Leonard sprayed aerosol spray to make the laser beams visible. ,Leonard sprayed water to make t he laser beams visible.,Leonard held a mirror to reflect the laser beams to make them visible.,Leonard blew smoke on the laser beams to make them visible.,Leonard use steam to make the laser beams visible. ,0,How was Leonard able to see the laser beams when they were invisible?,126842,The Big Bang Theory,17.56-38.69,s02e18_seg01_clip_00,Leonard sprayed aerosol spray to make the laser beams visible. 4804,By stepping upon the small table.,By going around the small table.,By moving the small table.,By pushing the small table.,By going under the table.,0,How did Ross hug his dad after arriving in the office?,126843,Friends,29.69-38.66,friends_s01e08_seg02_clip_02,By stepping upon the small table. 4805,She does not want to waste her supplies on Barney,She does not want to see Barney naked,She does not think Barney will like the end result,She promised Marshall that he would be the only man she ever sees naked,She does not have the time to do so,3,Why does Lily refuse to paint a nude portrait of Barney after he asks her to?,126844,How I Met You Mother,39.15-45.68,met_s02e13_seg02_clip_13,She promised Marshall that he would be the only man she ever sees naked 4806,At the park,In a restaurant,In Sheldon's apartment,In a cafeteria,At a food truck,3,"Where were Leonard, Raj, Howard and Sheldon when they were sitting together eating?",126845,The Big Bang Theory,0-5.85,s08e21_seg01_clip_01,In a cafeteria 4807,damage to the kdney,damage to the esophagus,damage to the lungs,damage to the blood vessels,damage to the heart,4,Where does the doctor (26:) want to look for damage when explaining the test to the patient?,126846,House M.D.,31.33-37.86,house_s04e02_seg02_clip_09,damage to the heart 4808,Have sex with Rachel,Be an astronaut,Get married and divorced again,Be on TV,Be a grandfather,3,What does Joey say Ross is not gonna do when he's sitting on the couch?,126847,Friends,0-3.41,friends_s08e07_seg02_clip_09,Be on TV 4809,a loveable teddy bear,a red blooded man with sexual desires,a jerk,a knight in shining armour,a gentleman,1,What does Leonard say Sheldon is changing into after he say Amy is causing a transformation?,126848,The Big Bang Theory,14.57-26.33,s06e02_seg02_clip_08,a red blooded man with sexual desires 4810,A first aid kit,A wheel chair,A coat rack,A candle,A lamp,4,What was behind Mrs. Verhoeven's daughter when she was talking to Rachel and Ross about how they thought she was going to loose her mom that morning?,126849,Friends,19.48-27.4,friends_s08e07_seg02_clip_03,A lamp 4811,The killer threw the gloves in a river.,The killer burned the gloves in another location.,The killer put the gloves in a Ziploc bag or burned them.,The killer distroyed the gloves by flushing them down the toilet.,The killer burned the gloves or threw the gloves in the dumpster.,2,How does Esposito think the killer got rid of the gloves after the murder?,126850,Castle,34.52-37.7,castle_s07e20_seg02_clip_17,The killer put the gloves in a Ziploc bag or burned them. 4812,Gems,Bananas,Rubies,Diamonds,Minerals,3,What was did Beckett say Noel DuPre was smuggling after telling Mr. Kopek how his signature got on the form?,126851,Castle,67.38-85.92,castle_s02e14_seg02_clip_25,Diamonds 4813,19,18,21,22,12,0,What number is on the door after Joey opens it and sees Ross?,126852,Friends,22.64-25.43,friends_s08e16_seg02_clip_05,19 4814,in her bed,at his bedside,in the car,on a red couch,on the toilet,3,Where is Robin sitting when she is listening to her dad talk?,126853,How I Met You Mother,23.11-29.71,met_s06e14_seg02_clip_12,on a red couch 4815,They had their TV too loud.,They were sleeping.,Music turned up too loud.,They were not there.,They were having a party at their home.,2,Why did the neighbors say they didn't hear a gunshot when the victim was killed?,126854,Castle,18.87-25.54,castle_s08e12_seg02_clip_01,Music turned up too loud. 4816,He pushed to button.,House stuck his foot out.,House used his walking cane to stop the door.,House used his hand.,He did nothing.,2,How did House stop the elevator door from closing after he went it?,126855,House M.D.,88.23-96.56,house_s02e01_seg02_clip_14,House used his walking cane to stop the door. 4817,A coffee mug. ,A wallet. ,An ornament. ,A muffin. ,A cookie. ,1,What does Phoebe hold up when she is in the coffee house and standing next to Rachel?,126856,Friends,19.23-22.33,friends_s02e09_seg02_clip_02,A wallet. 4818,Stacy wants House to get a knew leg,Stacy wants House to get surgery on his leg to walk again,Stacy wants House to let the doctors cut off his leg,Stacy wants House to get treatment on his leg,Stacy doesn't want House to do anything,2,What does Stacy want House to do when she is mentioning his leg?,126857,House M.D.,12.32-15.84,house_s01e21_seg02_clip_22,Stacy wants House to let the doctors cut off his leg 4819,"A white board with writing on it, two flags, and a bookcase.",A beach.,A sunset.,A kitchen setup with a fridge and table.,Empty wall and nothing else.,0,What is in the background Sheldon and Amy when they are recording the flags show?,126858,The Big Bang Theory,46.32-53.06,s09e15_seg02_clip_07,"A white board with writing on it, two flags, and a bookcase." 4820,Foreman told Taub that he had been in surgery all day.,"Foreman told Taub that he was just leaving, he had been in his office all day.",Foreman told Taub that he just got there to perform a biopsy.,Foreman told Taub that he had a meeting about a new parking validation system.,Foreman told Taub that he had been in a meeting with Cuddy about a malpractice law suit.,3,Where did Foreman say he had been when Taub asked him if he was just getting in?,126859,House M.D.,8.98-15.72,house_s08e08_seg02_clip_23,Foreman told Taub that he had a meeting about a new parking validation system. 4821,He sat right up,He rolled over on his side,He put his hands behind his head,He waved at her,He reached for the bowl,1,What did Barney do before Robin sat down?,126860,How I Met You Mother,8.68-13.65,met_s02e11_seg02_clip_09,He rolled over on his side 4822,A lover,A job,A big check,A friend,A baby,4,What does Cuddy say she is getting when she consoles Becca over her life choices?,126861,House M.D.,5.42-22.13,house_s05e06_seg02_clip_12,A baby 4823,Beckett and Castle are sitting on the stairs. ,Beckett and Castle are sitting in a park.,Beckett and Castle are sitting at a desk in their office talking.,Beckett and Castle are sitting in a pool.,Beckett and Castle are sitting on their desks.,2,Where is Beckett and Castle sitting when they are talking?,126862,Castle,82.82-87.42,castle_s03e17_seg02_clip_10,Beckett and Castle are sitting at a desk in their office talking. 4824,glasses,coffee,rosary,gang colars,hat,0,what is leonard wearing when he says Said the premise is intriguing,126863,The Big Bang Theory,0-4.06,s08e14_seg02_clip_14,glasses 4825,money,apple,note,shoes,tool,4,What did Dominicka put on the desk after she came out from under it?,126864,House M.D.,64.02-74.03,house_s07e17_seg02_clip_15,tool 4826,Pink. ,Orange.,Blue. ,Purple.,Green!,4,What color is Rachel's shirt when she is sitting on the couch talking to Ross and Joey? ,126865,Friends,26.01-30.68,friends_s03e10_seg02_clip_09,Green! 4827,assistant,intern,secretery,aide,fellowship,4,What did House say you can learn a lot from doing to Samira when they were walking Sidney Curtis to the elevator?,126866,House M.D.,19.15-25.68,house_s04e06_seg02_clip_22,fellowship 4828,Blue,Red,Yellow,White,Pink,0,What color are Beckett's earrings when talking to Castle and Florence?,126867,Castle,78.3-87.49,castle_s04e14_seg02_clip_14,Blue 4829,Win,Live,Lose,Die,Love,3,What does the woman tell House she doesn't want to do when she responds to him?,126868,House M.D.,68.55-78.79,house_s01e14_seg02_clip_17,Die 4830,A sandwich,A coffee cup,A photo,A pen,A stack of folders,4,What is Miranda holding when she is talking to the group of doctors?,126869,Grey's Anatomy,15.47-91.03,grey_s03e13_seg02_clip_22,A stack of folders 4831,Walkman,iPod,Headphones,Cash,Gift card,1,"What did Howard give Amy after he told her to ""Find something you like""?",126870,The Big Bang Theory,46.53-49.01,s07e03_seg02_clip_06,iPod 4832,"You don't see your mistake, do you?",No it won't ,You don't know what you doing.,I trust you.,Back up!,0,"What did past Sheldon say after past Leonard said trust me, it'll work. ",126871,The Big Bang Theory,0-47.52,s03e22_seg02_clip_14,"You don't see your mistake, do you?" 4833,Tissues. ,Money. ,A deck of playing cards. ,Pennies. ,Pocket lint. ,2,What does Howard pull out of his pocket and lay down on the table when he is sitting with Raj and Sheldon?,126872,The Big Bang Theory,26.92-31.24,s04e18_seg02_clip_16,A deck of playing cards. 4834,airport,employees locker room,bus terminal,school,gym,3,Where was Kutner and Taub searching lockers at when they discovered a bottle of pills in one?,126873,House M.D.,57.06-92.03,house_s05e11_seg02_clip_02,school 4835,On a chair by the wall,On Cuddy's desk,In Cuddy's chair,On the floor ,On a file cabinet,1,Where was House sitting when Cuddy walked in her office?,126874,House M.D.,0-31.12,house_s05e12_seg02_clip_13,On Cuddy's desk 4836,They skateboard. ,They hit each other. ,They hug. ,They fall on the floor. ,They kiss. ,2,What do Tad and Rachel do when they are sitting in the hallway?,126875,Friends,21.79-25.69,friends_s07e14_seg02_clip_19,They hug. 4837,His old box of magic tricks.,Half a dozen napkins.,His mom's favorite dress.,Two purple vests.,A pink robe he bought her.,3,What does Howard show Bernadette after he does a magic trick?,126876,The Big Bang Theory,0-12.25,s05e12_seg02_clip_03,Two purple vests. 4838,Someone stole them ,She lost her keys,She tossed them out of the window,Marshall threw them in the trash,Her car was repossessed while they were in the car ,1,Why didnt chloe leave the apartment after Marshall and his friends left ?,126877,How I Met You Mother,9.13-11.41,met_s02e07_seg02_clip_18,She lost her keys 4839,Cameron rushes up to Cuddy for approval to move to Wilson's service.,Chase engages Cuddy for signoff on treating Bob for food allergies.,Mrs. Lambert startles Cuddy angry about being Mrs. Lambert being maligned.,Foreman corners Cuddy to demand a raise and new office in the hospital.,House stalls Cuddy to request Cuddy remove Stacy from the hospital staff.,2,Who engages Cuddy after Cuddy walks through the door?,126878,House M.D.,18.67-28.68,house_s02e15_seg02_clip_09,Mrs. Lambert startles Cuddy angry about being Mrs. Lambert being maligned. 4840,Beckett wants to know if Vivien knew about Nick's plans.,Beckett tells Esposito to check again.,Beckett asked how Esposito got the information.,Beckett suddenly understands the case in a new perspective.,Beckett wants to know if Toni knew about Nick's plans.,3,How does Beckett react after Esposito informs her about Nick's activities and schedule?,126879,Castle,64.84-89.43,castle_s03e02_seg02_clip_18,Beckett suddenly understands the case in a new perspective. 4841,"Margha wanted to meet with both of them again in the near future, as friends.",Margha wanted to watch the game.,Margha wanted Chandler's number.,Margha wanted Joey's number.,Margha wanted to join the game.,1,What was Margha's request after she had met Chandler and Joey?,126880,Friends,42.56-62.6,friends_s03e09_seg02_clip_07,Margha wanted to watch the game. 4842,A sandwich,A carrot,A candy bar,An apple,A french fry,4,What did Raj pick up and eat when Howard was showing Leonard and Sheldon the ring?,126881,The Big Bang Theory,32.33-36.26,s03e17_seg02_clip_02,A french fry 4843,Joann,Monica,Rachel,Phoebe,Kathy,4,Who is Chandler talking with when he is in his apartment?,126882,Friends,0-5.51,friends_s04e06_seg02_clip_19,Kathy 4844,Gunther,Chandler,Ross,Mike,The waiter,3,Who does Joey call out for after Phoebe is upset with her date?,126883,Friends,33.36-40.04,friends_s09e03_seg02_clip_13,Mike 4845,In the back of the head.,In the forehead.,In the back.,In her chest.,In her neck.,0,Where did Beckett say Tracy got shot when her and Castle were at her house going over the crime scene?,126884,Castle,19.79-23.01,castle_s04e15_seg02_clip_15,In the back of the head. 4846,Leonard was up all night watching The Flash. ,Leonard was up all night watching his sick cat. ,Leonard was up all night watching his sick dog. ,Leonard was up all night with Sheldon because he was sick. ,Leonard had an emergency drill last night. ,4,Why is Leonard so tired when he is eating with the guys?,126885,The Big Bang Theory,54.66-58.07,s05e15_seg02_clip_00,Leonard had an emergency drill last night. 4847,In a bathtub ,On a bar stool,On her desk,On House's operation table,In her desk chair,4,Where did Cuddy sit after telling House to do something?,126886,House M.D.,6.3-13.5,house_s05e01_seg02_clip_11,In her desk chair 4848,Barney hugs Jerry.,Barney hugs Lily.,Barney pushes Jerry out the door.,Barney looks at Jerry in confusion.,Barney dances with Robin.,3,What does Barney do after Jerry mentions the chili dog?,126887,How I Met You Mother,25.95-27.66,met_s06e19_seg02_clip_06,Barney looks at Jerry in confusion. 4849,House is on the phone having a heated discussion on a difficult diagnosis.,House is watching pornographic films.,House is in an indelicate situation with a staff nurse.,House has his pants unzipped and is inspecting himself.,House is videotaping a lecture for internet use and she fears distracting him.,3,Why does Thirteen awkwardly pause upon entering the room with House in it before she asks him about the condition of his leg?,126888,House M.D.,0-8.12,house_s07e23_seg02_clip_22,House has his pants unzipped and is inspecting himself. 4850,Accepts the job.,Orders dessert.,Stands up to leave.,Asks the waiter for the check.,Spits out his drink.,2,What does Eric Foreman do after Cuddy says she needs someone to control House?,126889,House M.D.,77.45-87.24,house_s04e04_seg02_clip_10,Stands up to leave. 4851,Castles mom,Jeremy keipers dad,Jeremy keipers mom,Alexis,Montgomery,2,Who did ryan just get off the phone with before meeting up with castle and beckett?,126890,Castle,59.17-65.08,castle_s03e23_seg02_clip_16,Jeremy keipers mom 4852,Meredith dances with Cristina.,Meredith kisses Alex.,Meredith kisses Derek.,Meredith kicks Addison on the leg.,Meredith closes her eyes and moves her head to the side.,4,What does Meredith do when she says dude?,126891,Grey's Anatomy,26.95-28.77,grey_s02e06_seg02_clip_11,Meredith closes her eyes and moves her head to the side. 4853,Happy ,Surprised,Angry,Sad,Tired,1,"How did Mallory reacted when he heard Castle called him ""Agent Mallory, Mi6""",126892,Castle,46.65-57.66,castle_s08e18_seg02_clip_12,Surprised 4854,keys,purse,phone,folder,table,3,What was Emily holding before she started talking?,126893,House M.D.,0-8.95,house_s08e11_seg02_clip_23,folder 4855,Until he was sick of vegetables.,Until he got sick.,Until he got healthy.,Until Phoebe's baby was born.,Until he couldn't handle it.,3,How long did Joey say he would be a vegetarian when he was talking to Phoebe?,126894,Friends,17.33-25.69,friends_s04e16_seg02_clip_13,Until Phoebe's baby was born. 4856,Just Raj. ,The whole gang. ,Just Sheldon. ,It's Bernadette. ,Just Penny. ,3,Who is at NASA to pick up Howard after he comes home?,126895,The Big Bang Theory,0-4.81,s06e04_seg02_clip_01,It's Bernadette. 4857,Sister,Wife,Ex,Mother,Hooker,2,Which woman did the man call after tracing his calls?,126896,Castle,80.98-92.03,castle_s07e19_seg02_clip_14,Ex 4858,Another Angiogram,Another biopsy,Another x-ray,Another ultrasound,Another feel test,0,What does House say the team needs to do before Cameron begins to argue with House?,126897,House M.D.,0-12.53,house_s03e24_seg02_clip_20,Another Angiogram 4859,Water.,Nachos.,Money.,Paper clips.,Beer.,2,What did Sheldon try to hand to Penny when he said take some?,126898,The Big Bang Theory,23.05-28.49,s02e14_seg02_clip_02,Money. 4860,On House's parietal thalamic area.,On House's prefrontal lobe.,On House's cerebellum.,On House's limbic lobe.,On House's hypothalamus.,0,Where does cuddy say she wants to run a PET scan on House when discussing his pain with Cameron?,126899,House M.D.,30.04-47.33,house_s03e02_seg02_clip_08,On House's parietal thalamic area. 4861,The officer gives Beckett a file folder,The officer gives Beckett a mug shot book,The officer gives Beckett a phone message,The officer gives Beckett a small box,The officer gives Beckett a bottle of water,0,What does the officer give Beckett after Ryan gets up out of the chair,126900,Castle,60.48-70.1,castle_s03e10_seg02_clip_13,The officer gives Beckett a file folder 4862,toaster,stove,microwave,refrigerator,dishwasher,3,What appliance is behind Barney when he talks to a man in a blue shirt?,126901,How I Met You Mother,0-4.2,met_s06e19_seg02_clip_12,refrigerator 4863,For all I knew he was the crazy one.,No. He said Sheldon was great.,He told me it was a great place to live.,He told me to sleep with one eye open.,He told me that Sheldon was a weird person.,0,"What did Leonard say after Penny said, so Sheldon's last roommate tried to warn you off?",126902,The Big Bang Theory,0-11.47,s03e22_seg02_clip_00,For all I knew he was the crazy one. 4864,no particular day is approaching,that Rain day is approaching,that groundhog day is approaching,that his birthday is approaching,that Star Wars day is approaching,4,What does Sheldon announce when he tells the guys that a certain day is approaching?,126903,The Big Bang Theory,0-7.05,s07e22_seg01_clip_00,that Star Wars day is approaching 4865,Rectal bleed,Hemorrhaging artery ,Spinal fusion,Brain trauma,Heart arrhythmia ,0,What is the patient issue that Thirteen interrupts with when she opens the door?,126904,House M.D.,14.56-19.57,house_s05e01_seg02_clip_04,Rectal bleed 4866,Simmons used to head up a large street gang there.,Simmons used to run the drug trade there.,Simmons used to run a chop shop there.,Simmons used to run a protection racket there.,Simmons use to hold up mom and pop stores there.,1,What does Ryan say Simmons' used to do in Washington Heights after Becket asks him if he said Washington Heights?,126905,Castle,19.9-26.97,castle_s03e13_seg02_clip_06,Simmons used to run the drug trade there. 4867,Phillip gave Tyson a sleeping pill.,Phillip called 911.,Phillip shot Tyson.,Phillip arrested Tyson.,Phillip talked to Tyson.,4,What did Phillip do when Tyson gave him a gun?,126906,Castle,0-2.31,castle_s04e04_seg02_clip_25,Phillip talked to Tyson. 4868,ambition,trust,compassion,empathy,honesty,4,What did Masters say is the best policy before House asked her why she said that?,126907,House M.D.,0-5.14,house_s07e07_seg02_clip_12,honesty 4869,red,blue,yellow,pink,orange,2,What color is the bowl Penny is eating out of when she is talking about taking off her bra?,126908,The Big Bang Theory,6.52-14.28,s04e19_seg02_clip_03,yellow 4870,He walked out the door.,He sat down next to Monica.,He picked up a towel.,He drank some water.,He turned around.,1,What did Chandler do after he scratched his ear?,126909,Friends,38.42-42.92,friends_s09e10_seg02_clip_13,He sat down next to Monica. 4871,George was on the hospital bed.,George was sitting down.,George was laying down. ,George was in the hospital by the bedside. ,George was in the cafe. ,3,Where is George when he is telling his confession?,126910,Grey's Anatomy,0-8.69,grey_s03e12_seg02_clip_16,George was in the hospital by the bedside. 4872,Cooper does. ,Leonard does. ,Sheldon does. ,Stuart does. ,Raj does. ,4,Who brings Howard a suitcase when he comes to visit?,126911,The Big Bang Theory,6.59-9.41,s06e15_seg02_clip_00,Raj does. 4873,A pool party,Bachelorette party,Rehearsal dinner,At the wedding,On vacation,3,When was Sue going to hang out the wedding album after making them?,126912,Castle,28.5-34.38,castle_s02e04_seg02_clip_23,At the wedding 4874,He talked about what they would do at home.,He said he would take Stuart to meet his parents.,He said they would move to India.,He said they would have 20 children.,He said he loves Penny.,0,How did Raj make Stuart uncomfortable after he explained the perfect relationship?,126913,The Big Bang Theory,38.95-56.37,s06e16_seg02_clip_08,He talked about what they would do at home. 4875,Derek recommended a night of observation for Sullivan. ,Derek suggested Sullivan try a different hospital with better doctors. ,Derek thought it best Sullivan just go home and take some aspirin. ,Derek recommended Sullivan make him beneficiary of his will before the operation. ,Derek recommended Sullivan stopped complaining so much. ,0,What did Derek recommend for Sullivan before the surgery? ,126914,Grey's Anatomy,80.17-87.14,grey_s03e04_seg02_clip_12,Derek recommended a night of observation for Sullivan. 4876,Wrestling,hot dog eating,Chess,Scrabble,Monopoly,0,What does Monica say she was undefeated in when Rachel is asking about sibling relationships?,126915,Friends,0-19.21,friends_s05e10_seg02_clip_11,Wrestling 4877,Triangle,Square,Circle,Rectangle,Star,2,What shape were the ceiling lights in the room when the group was gathered?,126916,Castle,69.34-79.24,castle_s05e06_seg02_clip_21,Circle 4878,A refrigerator.,A stack of chairs.,A couch.,A bed.,Penny.,1,"What is behind Raj when he says, it's locked?",126917,The Big Bang Theory,31.88-37.04,s06e08_seg02_clip_07,A stack of chairs. 4879,Penny was in her bedroom.,Penny was sitting on the couch.,Penny was sitting in a chair.,Penny was standing outside in the hall.,Penny was standing in front of a door.,4,Where is Penny when Leonard approached her to talk?,126918,The Big Bang Theory,13.12-61.02,s01e06_seg02_clip_10,Penny was standing in front of a door. 4880,Kissed him.,Rolled her eyes.,Looked at Joey with disgust.,Hugged him.,Put her hands on Joey's.,4,"What did Rachel do when Joey asked ""Was that good for you?""",126919,Friends,0.27-5.3,friends_s10e03_seg02_clip_07,Put her hands on Joey's. 4881,Because Rachel's father is nice.,Because Rachel's father gave Ross money.,Because Rachel's father loves him. ,Because Rachel's father teach to play chess.,Because Rachel's father gave money.,1,Why Ross thanks rachel's father after he hug Rachel?,126920,Friends,55.8-58.75,friends_s03e07_seg02_clip_16,Because Rachel's father gave Ross money. 4882,Lilly is sliding backwards towards the door. ,Lilly is standing on the skateboard and rolling towards the door.,Lilly is walking backwards towards the door.,Lilly is riding a bike backwards towards the door.,Lilly is sitting backwards on a skateboard and rolling towards the door.,4,What is Lilly doing after she says she'll bet 10 bucks for going through the door backwards?,126921,How I Met You Mother,47.56-57.6,met_s03e12_seg02_clip_11,Lilly is sitting backwards on a skateboard and rolling towards the door. 4883,She tells him to leave,She says okay goodnight,She tells him to drive safe,She tells him that she wants to marry hime,She says wait wait wait ,4,What does Rachel say after Ross says goodnight?,126922,Friends,0-13.15,friends_s10e13_seg02_clip_09,She says wait wait wait 4884,Jason Tyson,Johanna Beckett,Mark Beckett,Mary Richards,Evan Gomez,1,Whose name is on the tomb stone Kate remembers after she collapsed?,126923,Castle,29.24-30.72,castle_s06e22_seg02_clip_20,Johanna Beckett 4885,Phoebe is from out of town and came to visit Joey.,Phoebe sold her guitar to Joey.,There are clothes for Joey in Phoebe's bag.,Phoebe will be staying at Joey's apartment?,Joey is letting Phoebe wash her clothes in his apartment.,3,Why is Phoebe carrying her bags and a guitar when she enters Joey's apartment?,126924,Friends,1.53-38.75,friends_s06e18_seg02_clip_07,Phoebe will be staying at Joey's apartment? 4886,A video of kittens. ,A movie. ,A television show. ,A video of puppies. ,A video of the killer. ,4,What is the team watching when they are discussing the case?,126925,Castle,5.52-13.34,castle_s05e21_seg02_clip_16,A video of the killer. 4887,He is in the laundry room,He is in the hallway of his building,He is standing in front of the mailboxes,He is in front of the apartment building,He is in the park,0,Where is Sheldon when he says hello to Penny,126926,The Big Bang Theory,53.06-61.34,s08e15_seg02_clip_00,He is in the laundry room 4888,yoga,drinks whiskey,lights incense ,turns off the lights,pushes Sheldon ,2,what does Raj doing when he's talking to Sheldon about getting over his fears?,126927,The Big Bang Theory,18-26.56,s03e18_seg02_clip_06,lights incense 4889,A 5 star restaurant. ,A wedding. ,A therapist. ,Another country. ,A concert. ,1,What did House say he had never been to when he was dancing with Cuddy?,126928,House M.D.,15.64-19.79,house_s07e08_seg02_clip_17,A wedding. 4890,because raj couldn't cook,because raj did not understand english,because sheldon was rude,because raj wanted to play mario kart,because raj was happy,2,why did raj feel offended when sheldon told him to go away?,126929,The Big Bang Theory,45.05-54.17,s03e10_seg02_clip_02,because sheldon was rude 4891,Barney told Robin and Ted that they needed to buy a new wardrobe for Ted.,Barney told Robin and Ted that they needed to buy some new furniture together.,Barney told Robin and Ted that they needed to clean Robin's apartment.,Barney told Robin and Ted that they needed to complete the quiz that he found.,Barney told Robin and Ted that they needed to get to know each other better.,3,What did Barney tell Robin and Ted that they needed to do before they moved in together?,126930,How I Met You Mother,50.96-61.03,met_s02e18_seg02_clip_00,Barney told Robin and Ted that they needed to complete the quiz that he found. 4892,Ted's mom asked something. ,Ted's mom clapped.,Ted's mom made fall the dishes to the waitress.,Ted's mom turned around around.,Ted's mom said bye.,2,What did Ted's mom when she raised her hand?,126931,How I Met You Mother,0-48.74,met_s02e03_seg02_clip_03,Ted's mom made fall the dishes to the waitress. 4893,Jane arm was asleep.,Jane's arm was numb from a shot from a syringe.,House was holding Jane's are against her will.,Jane's arm was tied to a heavy boulder.,Jane was wearing an arm cast.,4,Why was Jane unable to move her left arm when she approached the woman laying in the hospital bed?,126932,House M.D.,0.44-3.09,house_s04e10_seg02_clip_22,Jane was wearing an arm cast. 4894,About Amy.,About his father.,About his Sheldon.,About his mom.,About Howard.,3,Why did Leonard say he is sad when he was talking to Penny?,126933,The Big Bang Theory,0-3.88,s07e04_seg02_clip_09,About his mom. 4895,As a hippie hairdo.,As a slick urban hairdo.,As a womans hairdo.,As a doofy idiot hairdo.,As a fifties hairdo.,3,How does Tommy refer to Ross's hairdo after finding out Ross spilled hot coffee on him?,126934,Friends,32.11-45.62,friends_s03e22_seg02_clip_13,As a doofy idiot hairdo. 4896,She asks if he wants a bottle.,She asks if he wants a cola.,She asks if they can just get along.,She asks if he needs a pacifier.,She asks if he wants to die.,4,What is the final question Rachel asks after her inquisition of Ross?,126935,Friends,47.6-61.03,friends_s07e03_seg02_clip_05,She asks if he wants to die. 4897,Joey is carrying a duffel bag.,Joey is carrying a box.,Joey is carrying flowers.,Joey is carrying balloons.,Joey is carrying a pizza.,3,What is Joey carrying when walking down the hospital hallway?,126936,Friends,49.79-50.74,friends_s01e23_seg02_clip_11,Joey is carrying balloons. 4898,Foreman said the room was filled with kids,Foreman did not see a lady come into the room,House said that there was a man that entered the room,"When they both walked in, the room was empty",Foreman said the lady just came in with a rash,4,What did Foreman tell house that the lady just came in with when entering the Room,126937,House M.D.,0-16.47,house_s01e05_seg02_clip_01,Foreman said the lady just came in with a rash 4899,House told Taub he was a very sneaky guy.,House told Taub he was a rat.,House told Taub he was a good person.,House told Taub he was a double agent.,House told Taub he was a quadruple agent.,4,What did House tell Taub he was after Taub told him he told Wilson that House sent him for information?,126938,House M.D.,48.37-51.5,house_s05e17_seg02_clip_13,House told Taub he was a quadruple agent. 4900,A belt,An access code ,A ring,A bolt cutter ,A map,2,What does one gentleman ask the other gentleman to give him back when they are speaking?,126939,Castle,0-10.4,castle_s04e18_seg02_clip_16,A ring 4901,yelled,cried,smiled,screamed,called Amy,2,How did Penny react when Leonard called her spaghetti crunchy?,126940,The Big Bang Theory,19.63-38.35,s06e06_seg02_clip_03,smiled 4902,The doctor says that Ross has a bad atttitude.,The doctor says that Ross is having an allergic reaction.,The doctor says that Ross needs to have surgery immediately.,The doctor says that Ross has an infection.,The doctor says that Ross needs a sedative.,1,What does the doctor say is the wrong with Ross after he looks at him?,126941,Friends,15.05-19.18,friends_s02e06_seg02_clip_07,The doctor says that Ross is having an allergic reaction. 4903,A napkin,A cup.,A coin.,A shoe.,A wallet.,2,What did Phoebe throw at the old lady when she wouldn't stop looking at Phoebe?,126942,Friends,2.65-5.83,friends_s05e23-24_seg02_clip_28,A coin. 4904,Get a bug.,Squash it.,Spray it with poison.,Throw it at your sister.,Run away.,0,What does Joey say to do when you are afraid of bugs?,126943,Friends,18.31-24.72,friends_s03e04_seg02_clip_06,Get a bug. 4905,He pees out the window.,He kisses Chandler.,He pees on Chandler.,He points his finger at Chandler.,He poses like Superman.,3,What does Joey do when he tells Chandler to pee into the wind?,126944,Friends,40.89-45.47,friends_s03e04_seg02_clip_06,He points his finger at Chandler. 4906,That it the largest,That is is one of the best in the country,That it is going to be closing down,That it is not very good,That it is expanding,1,What does Izzie say about Seattle Grace's bone marrow transplant center when she is talking to Dustin and Caroline?,126945,Grey's Anatomy,66.74-70.1,grey_s03e20_seg02_clip_03,That is is one of the best in the country 4907,A sketchpad,A cup,A knife,A gun,A tray,0,What did Penny pick from the table after she handed the book to Stuart,126946,The Big Bang Theory,20.41-23.11,s02e20_seg02_clip_04,A sketchpad 4908,Rachel feels amused.,Rachel feels disturbed and horrified.,Rachel feels sad and depressed.,Rachel feels indifferent.,Rachel feels anxious to watch the whole tape.,1,How does Rachel feel when the tape begins to play?,126947,Friends,28.06-46.77,friends_s08e15_seg02_clip_17,Rachel feels disturbed and horrified. 4909,Chase told Ali she was hard to find.,Chase told Ali she was a sight for sore eyes.,Chase told Ali she was a bitch.,Chase told Ali she was a game-player.,Chase told Ali she was evil.,4,How did Chase refer to Ali when he first saw her?,126948,House M.D.,11.25-16.65,house_s07e10_seg02_clip_24,Chase told Ali she was evil. 4910,Robin puts a medicine bottle on the sink counter,Robin puts her head on the sink counter,Robin puts her leg on the sink counter,Robin puts a makeup case on the sink counter,Robin puts some breath mints on the sink counter,2,What does Robin put on the sink counter after she goes in her purse,126949,How I Met You Mother,21.41-31.2,met_s03e03_seg02_clip_10,Robin puts her leg on the sink counter 4911,Beckett nodded only one time.,Beckett nodded three times.,Beckett nodded only two times.,"Beckett turned her head to the left, then to the right. ",Beckett turned around and walked away without nodding.,1,How many times did Beckett nod after Castle told her to nod once if it's about the Russians or nod twice if it is something else?,126950,Castle,48.79-57.82,castle_s06e03_seg02_clip_14,Beckett nodded three times. 4912,Phone,Ipad,Magazine,Book,Television,1,What did Castle put down after his daughter walked up?,126951,Castle,61.67-65.27,castle_s07e21_seg02_clip_08,Ipad 4913,Rachel is standing on the sidewalk.,Rachel is at the apartment.,Rachel is on the train.,Rachel is in the car.,Rachel is at the museum.,0,Where is Rachel when Ross is trying to get out of the parking spot?,126952,Friends,15.6-19.96,friends_s07e14_seg02_clip_02,Rachel is standing on the sidewalk. 4914,Cuddy,Chase,Foreman,Kutner,Wison,3,Who walked into the hospital with the parent when House was talking to their daughter?,126953,House M.D.,85.57-92.93,house_s05e08_seg02_clip_24,Kutner 4915,Derek was in the elevator.,Derek was in the office.,Derek was in the bedroom.,Derek was in the kitchen.,Derek was in the livingroom.,0,Where was Derek when talking to George?,126954,Grey's Anatomy,0-7.54,grey_s01e07_seg02_clip_04,Derek was in the elevator. 4916,shoe,marker,eraser,book,chair,2,What was Sheldon and Raj fighting over when Raj tried to change the whiteboard?,126955,The Big Bang Theory,7.5-16.51,s03e04_seg02_clip_16,eraser 4917,Howard lied because he hated talking to Bernadette. ,Howard was watching a movie. ,Howard was sleeping upstairs. ,Howard was in the middle of a video game. ,Howard was late for a class. ,3,Why did Howard not have a minute for Bernadette when she asked him? ,126956,The Big Bang Theory,10.05-18.85,s09e07_seg02_clip_00,Howard was in the middle of a video game. 4918,In a store.,In House's office.,On Wilson's couch.,A table. ,At the Police Station. ,3,Where are House and Wilson sitting when they are talking about owning guns?,126957,House M.D.,8.19-16.38,house_s08e08_seg02_clip_08,A table. 4919,"Sits down, in happiness, crossing her arms","Sits down, in laughter, crossing her legs","Sits down, in anger, crossing her arms","Sits down, in excitement, crossing her legs","Sits down, in amazement, holds her chest",4,What does Rachel do after Ross tells her about the near death experience?,126958,Friends,29.29-35.09,friends_s05e20_seg02_clip_16,"Sits down, in amazement, holds her chest" 4920,No,yes,not sure,she could be wrong,She knew he was a con-amn,0,Did Elise believe Fletcher was a con-man even after Castle and Beckett discussed it with her family?,126959,Castle,51.53-69.94,castle_s02e04_seg02_clip_08,No 4921,He was gonna go pick up Leronard,He was off to buy a pussycat,He was gonna dust Penny's apartment,He was off to the lab,He was meeting Raj ,1,What did Sheldon say to Penny when he was leaving the laundry room?,126960,The Big Bang Theory,8-15.69,s04e03_seg02_clip_10,He was off to buy a pussycat 4922,Green,blue,red,pink,grey,0,"What color is Beckett's jacket when Castle say's ""Oh, no.""?",126961,Castle,0-9.92,castle_s06e01_seg02_clip_24,Green 4923,Dan said he got them from his mom,Dan said he had them from a recent ear infection,Dan said he gets them from his dealer,Dan said he stole them from his friend Elliot's dad,Dan said he couldn't remember where they came from,3,Where did Dan tell House he got the pills after House asked him if the medicine names sounded familiar?,126962,House M.D.,23.04-32.91,house_s02e16_seg02_clip_05,Dan said he stole them from his friend Elliot's dad 4924,Sam never showed,30 minutes,hour and a half,An hour,2 hours,3,How long was sam's massage session when he went to the massage parlor? ,126963,Castle,63.45-69.18,castle_s04e08_seg02_clip_13,An hour 4925,they are at a wedding reception,they are at a church,they are at a event,they are at a musem,they are at the bride's home,0,Where are Monica and Ross at when Monica goes to greet the bride?,126964,Friends,3.3-12.31,friends_s07e11_seg02_clip_17,they are at a wedding reception 4926,on her own knee,on Chandler's knee,on Monica's knee,on the table,on her own face,2,Where does Rachel have her right hand after Ross points at the TV?,126965,Friends,5.36-10.08,friends_s08e15_seg02_clip_18,on Monica's knee 4927,Beckett is pasting pictures on the white board,Beckett is writing on the white board,Beckett is cleaning the white board,Beckett isn'tdoing anything to the white board,Beckett is painting the white board,1,What is Beckett doing when she is at the police station in front of the white board?,126966,Castle,88.83-96.03,castle_s01e10_seg02_clip_21,Beckett is writing on the white board 4928,A water bottle. ,A book. ,A cell phone. ,A napkin. ,Her jacket. ,1,What does Rachel have in her hand when she hugs Joey?,126967,Friends,42.09-44.5,friends_s08e07_seg02_clip_12,A book. 4929,nuts,a natural,crazy,pretty,stupid,1,What did Sheldon call Penny when she played the game?,126968,The Big Bang Theory,35.4-51.09,s03e07_seg01_clip_00,a natural 4930,Ace,Diamond,Club ,Spade ,Heart ,4,What card suit is behind the men when they are talking,126969,Castle,0-9.3,castle_s08e06_seg02_clip_07,Heart 4931,Force feeding a child pills,Stealing pills from a dead man,Taking away a mans alcohol ,Lying to get his way again ,Attacking a man's dignity ,1,What does Cuddy accuse House of doing before apologizing to a man?,126970,House M.D.,29.06-45.15,house_s03e11_seg02_clip_02,Stealing pills from a dead man 4932,Ross tells Joey that he and Monica are not supposed to play foosball.,Ross tells Joey that he and Monica are not supposed to play football.,Ross tells Joey that he and Monica are not supposed to play soccer.,Ross tells Joey that he and Monica are not supposed to play basketball.,Ross tells Joey that he and Monica are not supposed to play table tennis.,1,What sport does Ross tell Joey he and Monica are not supposed to play when everyone is gathered in the kitchen?,126971,Friends,0-3.9,friends_s03e09_seg02_clip_01,Ross tells Joey that he and Monica are not supposed to play football. 4933,She fluffed her pillow.,She got out of bed.,She called the nurse.,She took off her robe.,She started to cry.,4,What did Rachael do when Phoebe was holding the baby?,126972,Friends,26.46-32.77,friends_s08e23-24_seg02_clip_35,She started to cry. 4934,He eats popcicles,He sits and shakes violently,He laughs,He talks to himself,He runs to Leonard and Penney,4,What does Sheldin do after watching the scary film.?,126973,The Big Bang Theory,0-30.91,s03e13_seg02_clip_07,He runs to Leonard and Penney 4935,Because Ross is dizzy,Because Ross is tired,Because Ross finds out that Rachel has feelings for him,Because Ross learns his grandmother died,Because Ross doesn't want to go to work,2,Why doe Ross need to lie down when talking to Rachel in the apartment?,126974,Friends,43.68-59.03,friends_s04e21_seg02_clip_13,Because Ross finds out that Rachel has feelings for him 4936,Chandler calls a cab.,Chandler happily agrees.,Chandler storms away from Joey.,Chandler gets frustrated and defensive.,Chandler sings with Phoebe.,3,How does Chandler react after Joey suggests he pretend?,126975,Friends,5.15-14.85,friends_s04e05_seg02_clip_17,Chandler gets frustrated and defensive. 4937,House is the lobby.,House is in the visiting room.,House is in the bathroom.,House is in his office.,House is in a MRI machine.,4,Where is House when he is laying down?,126976,House M.D.,64.7-69.1,house_s04e15_seg02_clip_08,House is in a MRI machine. 4938,irritated,happy,bored,tired,angry,0,How did the girl feel when she was in the hospital for her period?,126977,Grey's Anatomy,26.44-41.87,grey_s03e14_seg02_clip_15,irritated 4939,Her picture on the desk. ,Her picture on the white board. ,Her cell phone records. ,Her background information. ,Her cell phone. ,1,"What is Castle looking at when he is talking about the victim, Amy?",126978,Castle,56.6-59.8,castle_s04e17_seg02_clip_03,Her picture on the white board. 4940,South Dakota.,South Carolina.,Florida.,North Dakota.,North Carolina.,4,What state did Ryan say Mrs. Lewis' son was from when Beckett asked him where the area code from his phone number was from?,126979,Castle,40.51-48.61,castle_s07e23_seg02_clip_09,North Carolina. 4941,House doesn't answer. ,"House replies with ""okay"".",House gets up from his seat and looks out the window.,House asks Chase why.,House tells Chase that he is being petty. ,1,How does House respond to Chase after Chase said that his father gave him enough disappointments?,126980,House M.D.,30.48-38.91,house_s01e13_seg02_clip_24,"House replies with ""okay""." 4942,Because they are partners,Because they are friends,Because they are brothers,Because he owed him one,Because he likes to be punched,0,Why does Ryan say he took a punch for Esposito when they are watching the video?,126981,Castle,0-66.01,castle_s05e02_seg02_clip_26,Because they are partners 4943,Howard said Sheldon used his password. ,Howard said Raj used his password. ,Howard said Bernadette used his password. ,Howard said Stuart used his password. ,Howard said Leonard used his password. ,3,Who did Howard say used his Hulu password when he was talking to Bernadette?,126982,The Big Bang Theory,52.52-60.02,s09e12_seg02_clip_09,Howard said Stuart used his password. 4944,Chase is standing in front of the window.,Chase is sitting in a chair at the table.,Chase is standing in front of the door.,Chase is standing near the table.,Chase is sitting on top of the table.,1,Where is Chase when Foreman before Cameron walks away?,126983,House M.D.,27.46-33.31,house_s02e19_seg02_clip_15,Chase is sitting in a chair at the table. 4945,Hard to say.,You told me to.,It's what you do.,That's how it's done.,I didn't want her to recognize me.,0,What did Joey say after Rachel asked him why he used the voice? ,126984,Friends,28.21-53.12,friends_s02e21_seg02_clip_11,Hard to say. 4946,Mary Angela.,Gina.,Dina.,Mary Therese,Cookie.,0,Who did Joey's sister say Chandler had the softest lips after she kissed him?,126985,Friends,53.71-59.03,friends_s03e11_seg02_clip_15,Mary Angela. 4947,Black,Blue,White,Red,Yellow,1,What is the color of the shirt that House wears when he is talking to the doctors?,126986,House M.D.,35.05-36.73,house_s01e08_seg02_clip_06,Blue 4948,horse,giraffe,dog,bear,elephant,0,"What white type of porcelain animal, is behind Marilyn, when she is speaking?",126987,Castle,0-9.58,castle_s04e12_seg02_clip_08,horse 4949,The captain at the station Victoria Gates.,Castle's ex. girlfriend.,The waitress at the bar Castle frequents.,The brunette at the bowling alley.,Kate Beckett.,4,"Who was Tony referring to when he said to Castle ""She's hot no wonder your sex scenes are so steamy""?",126988,Castle,0-5.92,castle_s03e22_seg02_clip_08,Kate Beckett. 4950,4,32,5,74,44,3,How many times does Wilson say House has been to Human Resources in the last 7 weeks after Cuddy tells him about a meeting?,126989,House M.D.,11.75-25.86,house_s07e02_seg02_clip_03,74 4951,Ross says he has to go to the Bathroom.,Ross gives her a look as if to agree with Rachel. ,Ross walks out the door. ,"Ross looks at her as if to say ""Yes I do."" ",Ross looks disgusted with the thought of Rachel moving in. ,3,"How does Ross react after Rachel says ""I don't think Ross wants me to move in and disrupt his life'""",126990,Friends,45.59-62.03,friends_s08e14_seg02_clip_15,"Ross looks at her as if to say ""Yes I do."" " 4952,full bladder,weak bladder,bad bladder,sick bladder,nervous bladder,4,What kind of bladder did Howard speak of when Raj ran out of the room?,126991,The Big Bang Theory,26.47-38.44,s02e14_seg02_clip_06,nervous bladder 4953,He threw them on the bed.,He put them on.,He put them in the closet.,He left the room.,He hung them over his shoulder.,3,What did Ross do after he picked up his shoes?,126992,Friends,0-3.28,friends_s04e01_seg02_clip_19,He left the room. 4954,grocery store,coffee shop,dry cleaners,department store,hardware store,2,What kind of store does Joey walk into when he is carrying his headshot?,126993,Friends,0-6.8,friends_s06e22_seg02_clip_03,dry cleaners 4955,The girl wa awake.,Alex was singing.,There was a party,Cristina fainted.,Doctors were holding the bowels.,4,What was happening in the surgery room when operating a girl?,126994,Grey's Anatomy,40.03-43.71,grey_s01e07_seg02_clip_11,Doctors were holding the bowels. 4956,The ocean,The river,A jog,A bikeride,A bonfire,0,Where is Bonnie coming from when she comes up behind Chandler?,126995,Friends,50.55-61.1,friends_s03e25_seg02_clip_19,The ocean 4957,Black,Gray,Blue,Red,Yellow,1,What is the color of Ross' jacket when he is with Chandler?,126996,Friends,39.63-49.04,friends_s05e08_seg02_clip_06,Gray 4958,"Ross says ""Holy moley.""","Ross says ""Oh jeez.""","Ross says ""Yikes.""","Ross says ""Uh oh.""","Ross says ""Criminy.""",3,What does Ross say in alarm after he opens the machine's door?,126997,Friends,46.22-53.22,friends_s01e05_seg02_clip_15,"Ross says ""Uh oh.""" 4959,Saya said her uncle is a fire fighter.,Saya said her uncle is a judge.,Saya said her uncle is a lawyer.,Saya said her uncle is a police officer.,Saya said her uncle is a private investigator. ,3,What did Saya tell Beckett her uncle was when talking? ,126998,Castle,0-10.22,castle_s06e18_seg02_clip_23,Saya said her uncle is a police officer. 4960,She had a book in her other hand.,She had a cast on her other hand.,She was holding her cup with the other hand.,Her other hand was hurting.,Mike was holding her other hand.,4,Why was Phoebe trying to open the sugar packet with one hand when she was on the couch with Mike?,126999,Friends,13.12-17.39,friends_s09e06_seg02_clip_00,Mike was holding her other hand. 4961,inside the bar,in front of the bar,in a taxi,on top of the roof,in bed,1,Where were Barney and Ted when they were talking to Colleen and Lindsey?,127000,How I Met You Mother,0.91-8.75,met_s03e02_seg02_clip_06,in front of the bar 4962,She would strike up a conversation about couches.,She would strike up a conversation about water.,She would strike up a conversation about cows.,She would strike up a conversation about sandwiches.,She would strike up a conversation about world hunger.,3,How does Rachel say she would get something she wanted from Joey when talking to Ross?,127001,Friends,50.35-61.03,friends_s05e14_seg02_clip_10,She would strike up a conversation about sandwiches. 4963,four to five hours,five to six hours,three to four hours,one to two hours,two to three hours,1,"According to Pearlmutter, how long before the victim dies did she sustain her injuries?",127002,Castle,56.91-62.78,castle_s05e20_seg02_clip_01,five to six hours 4964,Matt,Ryan,Blake,Adam,Mike,0,Who does Beckett say dropped off research when she is questioning a suspect?,127003,Castle,73.8-75.13,castle_s02e16_seg02_clip_24,Matt 4965,Penny is on the phone.,Penny is eating.,Penny is counting money.,Penny is fixing her makeup.,Penny is serving another person.,2,What is Penny doing when Bernadette asks for their drinks?,127004,The Big Bang Theory,8.41-11.9,s07e08_seg02_clip_02,Penny is counting money. 4966,He was sorry that he said he wasn't there.,"He said she could, but he had nothing to say.",He said he was sorry for everything.,He asked why his mother let her in the house.,He told her to close the door. ,1,What did Howard say after Bernadette asked if they could talk?,127005,The Big Bang Theory,45.91-53.2,s05e05_seg02_clip_12,"He said she could, but he had nothing to say." 4967,A coat,A frisbee,A jacket,A glass of water,A ball,3,What does Rachel throw at Joey after she stands up?,127006,Friends,53.06-64.62,friends_s02e12-13_seg02_clip_16,A glass of water 4968,She hates kids and was being sarcastic. ,She feels her dreams of getting married and having a baby are not going to happen.,She wants to quit her job.,Her husband wants her to have a child. ,A sperm donor has contacted her to have his child. ,1,Why does Addison say her new dream is a baby after Naomi gives her a shot?,127007,Grey's Anatomy,60.37-85.02,grey_s03e22_seg02_clip_06,She feels her dreams of getting married and having a baby are not going to happen. 4969,"""You decorate dads office and now your a decorator? Okay I went to the zoo yesterday and now I'm a Koala Bear.""","""Oh really, I had no idea that you were working on a career in decorating.""","""Amy you are not a decorator"".","""Since when did you start decorating""","""Amy your job is spending dads money"".",0,How does Rachel respond when Amy says that she is a decorator?,127008,Friends,43.35-55.56,friends_s09e08_seg02_clip_16,"""You decorate dads office and now your a decorator? Okay I went to the zoo yesterday and now I'm a Koala Bear.""" 4970,Cameron told House he should go shopping,Cameron told House he should eat,Cameron told House he should rest,Cameron told House he should watch television,Cameron told House he should go running,2,What did Cameron tell House he should do when she is talking to him?,127009,House M.D.,78.74-84.73,house_s02e24_seg02_clip_00,Cameron told House he should rest 4971,The flight attendant gives the message to Chandler.,The flight attendant gives the message to Ross.,The flight attendant gives the message to the wrong person.,The flight attendant gives the message to the right person.,The flight attendant gives the message to Joey.,2,Who does the flight attendant give Rachel's message to when she is at the airport?,127010,Friends,22.06-28.02,friends_s01e24_seg02_clip_12,The flight attendant gives the message to the wrong person. 4972,Because Leondard says Sheldon had a lucky hunch,Because Penny says Sheldon had a lucky hunch,Because Raj says Sheldon had a lucky hunch,Because Howard says Sheldon had a lucky hunch,Because Sheldon doesn't like Leonard,0,"Why Sheldon says ""Don't you ever speak to me again"" to Leonard after he coming out of aparment? ",127011,The Big Bang Theory,23.11-37.81,s01e09_seg02_clip_08,Because Leondard says Sheldon had a lucky hunch 4973,Because Barney will buy a new car.,Because Barney won a laptop.,Because Barney went to a gala opening.,Because Barney will marry Robin.,Because Barney will travel.,2,Why Barney is so excited when arrived to the restaurant?,127012,How I Met You Mother,0-55.21,met_s02e09_seg01_clip_00,Because Barney went to a gala opening. 4974,A trick with his feet. ,A trick having to do with a match. ,A trick with his hands. ,A trick with a cherry stem. ,A trick with a lighter. ,1,What trick did the bartender teach Chandler when he was at the bar?,127013,Friends,58.28-61.03,friends_s04e13_seg02_clip_10,A trick having to do with a match. 4975,Red,Green,Clear,Yellow,Purple,1,What color is the liquid in Raj's glass when he makes a toast?,127014,The Big Bang Theory,50.48-52.51,s02e21_seg02_clip_06,Green 4976,House gave Wilson a blanket.,House gave Wilson the television remote.,House gave Wilson a bowl with food in it.,House gave Wilson a battery.,House gave Wilson his phone charger.,2,What did House give Wilson when he approached the couch Wilson was sitting on?,127015,House M.D.,3.19-8.65,house_s08e19_seg02_clip_12,House gave Wilson a bowl with food in it. 4977,Do you want grab a broom ?,Hey ! dont you wanna keep guns away from kids ?,Whats the weather like outside ?,Where is my diamond ring ?,When are you going to confess ?,1,What question did Joey ask the random man that was sitting in the coffeehouse after his talk with Patron ?,127016,Friends,34.48-35.7,friends_s06e12_seg02_clip_12,Hey ! dont you wanna keep guns away from kids ? 4978,A bathroom,A kitchen,A stairway,A parking garage,A jail cell,2,Where did the team come from before they walked into the office?,127017,Castle,0-10.03,castle_s02e24_seg02_clip_05,A stairway 4979,A car ,A tree,A motorcycle,A boat ,A table ,0,What is on top of the man when he is being treated by the doctor,127018,Grey's Anatomy,44.89-52.81,grey_s03e15_seg02_clip_23,A car 4980,Mandy said Lance's character was the best.,Mandy said a 5-year old could write for Lance's character.,Mandy said Lance's character was insane.,Mandy said Lance's character was over-the-top.,Mandy said Lance's character was going to be killed off.,1,What did Mandy say about Lance's character when he said it was very complicated.,127019,Castle,64.18-70.65,castle_s03e18_seg02_clip_02,Mandy said a 5-year old could write for Lance's character. 4981,Because he couldn't be near others.,Because he had tuberculosis.,Because he had an infectious disease.,Because his immune system was shot.,Because he be near people coughing.,3,Why did Brandon need to be put in a clean room after his test results came back?,127020,House M.D.,13.5-18,house_s01e03_seg02_clip_13,Because his immune system was shot. 4982,Covers his ears,Gives Monica the bowl,Points at Monica,Turns his back towards Monica,Covers his face with his hand,2,What does Chandler do when he tells Monica to not make him uncomfortable?,127021,Friends,42.8-46.52,friends_s08e14_seg02_clip_02,Points at Monica 4983,Barney gave the cop a napkin.,Barney gave the cop water.,Barney took the cop to the hospital,Barney did nothing.,Barney run away.,0,What did Barney do after the cop was bleeding.,127022,How I Met You Mother,16.48-61.03,met_s03e18_seg02_clip_13,Barney gave the cop a napkin. 4984,Water,Wine,Beer,Coke,Tea ,2,What was Rachel and Tuab drinking when they were eating dinner? ,127023,House M.D.,54.43-58.51,house_s05e03_seg02_clip_12,Beer 4985,"Lily, and it was at the restaurant they normally go to. ","Zoey, at the bar.","Marshall, at the park.",His mom.,His dad.,0,Who and when did someone say something about Ted's relationship with Zoey?,127024,How I Met You Mother,0-67.04,met_s06e20_seg01_clip_01,"Lily, and it was at the restaurant they normally go to. " 4986,Rachel was holding a bottle of wine,Rachel was holding a white bag,Rachel was holding a red bag,Rachel was holding a black bag,Rachel was not holding anything,3,What was Rachel holding after she put her jacket in the closet ?,127025,Friends,45.72-55.5,friends_s05e23-24_seg02_clip_02,Rachel was holding a black bag 4987,Foreman,House,Wilson ,Chase,Cameron,2,Who is with Cuddy when she is in the nursery in her home?,127026,House M.D.,0-4.34,house_s05e13_seg02_clip_03,Wilson 4988,Playing house.,Shaking hands.,Kissing.,Fooling around.,Going on dates.,1,What does Castle say they have been doing after he says he doesn't have the right to pry?,127027,Castle,5.06-17.02,castle_s05e03_seg02_clip_26,Shaking hands. 4989,Get drunk since it worked for a bunch of girls in his high school,Fall asleep standing up,Fall asleep with a heating pad on her stomach,Fall asleep with her head facing east,Fall asleep with her head facing west,0,What does Frank Jr. suggest Phoebe does to ensure she gets pregnant when they're in the doctor's office?,127028,Friends,13.31-22.99,friends_s04e12_seg02_clip_05,Get drunk since it worked for a bunch of girls in his high school 4990,815.,25.,713.,613.,28.,3,What donor is Cuddy considering when talking to House?,127029,House M.D.,60.96-73.5,house_s02e23_seg02_clip_06,613. 4991,Penny,Stuart,Leonard,Howard's mother,Bernadette's father,1,Who walks into the living room when Bernadette and Howard are talking?,127030,The Big Bang Theory,4.2-10.21,s08e24_seg02_clip_11,Stuart 4992,A paragon of humanity,The shining star on a hill,The best city in the world,The hub of the diamond trade,A marvel of modern ingenuity,3,What does Beckett say the city is after Castle clues everyone in on his diamond theory?,127031,Castle,7.02-32.74,castle_s06e08_seg02_clip_11,The hub of the diamond trade 4993,Arlene says that a family is a group of people who love you.,Arlene says that anyone can be family if they love you right.,Arlene says that 3 kids and a husband is a family.,Arlene says that a family is a lot more than the people you work with.,"Arlene says that House and Wilson are not family, more like friendly guests.",2,What does Arlene describe as a family when Cuddy says she has a family?,127032,House M.D.,21.61-28.36,house_s07e11_seg02_clip_17,Arlene says that 3 kids and a husband is a family. 4994,Reading a clipboard ,Sleeping,Talking on the phone,Waving to people,Clapping his hands,2,What is House doing when he is walking with the woman? ,127033,House M.D.,0-2.73,house_s08e02_seg02_clip_15,Talking on the phone 4995,Derek falls asleep.,Derek tells the doctors that he is ready to go.,Derek dies. ,Grey tells everyone to get out.,Burke tells everyone that the surgery will be fast. ,2,What happens after the doctors open Derek's skull cap?,127034,Grey's Anatomy,0-83.68,grey_s02e18_seg02_clip_18,Derek dies. 4996,He was standing by the refrigerator in the break room.,He was in the operating room.,He was in a room in the hospital surrounded by brain scans.,He was standing by a computer in the lab.,He was in the hallway outside of a patient's room. ,2,Where was House before the other doctors entered the room?,127035,House M.D.,18.57-33.97,house_s03e01_seg02_clip_18,He was in a room in the hospital surrounded by brain scans. 4997,Writing a letter,Drinking tea,Eating a sandwich,Getting a pedicure,Reading a magazine,4,What is the woman doing before Castle approaches her?,127036,Castle,47.88-57.91,castle_s02e24_seg02_clip_05,Reading a magazine 4998,Castle was carrying a laptop. ,Castle was carrying a notebook.,Castle was carrying a shirt. ,Castle was carrying an envelope.,Castle was carrying a coffee mug.,4,What was Castle carrying in his hand when walking to the desk?,127037,Castle,38.23-46.88,castle_s02e07_seg02_clip_10,Castle was carrying a coffee mug. 4999,Sheldon mumbles in protest when Leonard volunteers Sheldon to be the subject in their experiment.,Sheldon mumbles in protest when Leonard tells the Colonel he's just a student.,Sheldon mumbles in protest when the Colonel calls himself a master physicist.,Sheldon mumbles in protest when Howard takes all the credit for their work.,"Sheldon mumbles in protest when Howard says he is the ""main brain"" behind the project.",4,What does Sheldon mumble in protest of when Howard and Leonard are speaking to the Colonel?,127038,The Big Bang Theory,25.42-39.95,s10e02_seg02_clip_07,"Sheldon mumbles in protest when Howard says he is the ""main brain"" behind the project." 5000,Bethany was asking what Howard and Raj did for fun.,Bethany was asking what Howard and Raj did for work?,Bethany was asking what Howard and Raj did for entertainment.,Bethany was asking what Howard and Raj did for dinner.,Bethany was asking what Howard and Raj did for school. ,1,"What did Bethany mean when she asked Howard and Raj ""what do you guys do?""",127039,The Big Bang Theory,10.75-27.46,s03e03_seg02_clip_08,Bethany was asking what Howard and Raj did for work? 5001,Because Rachel had borrowed her earrings and had lost one,Because Ross used the last of the toilet paper and did not bother to get any when he was out.,Because Rachel did her own laundry but never did Monica's,Because Rachel used the last of the milk and didn't replace it.,That Ross was in the bathroom when she needed to get in there.,4,Why did Monica say she was mad before Rachel told her that they were all adults now,127040,Friends,0-21.34,friends_s02e17_seg02_clip_02,That Ross was in the bathroom when she needed to get in there. 5002,Eric claims he was not close to dave,Eric claims he is a reformed and took a vow to refrain from lying,Eric claims he was not in the city,Eric claims he hasn't seen Dave in years,Eric claims he didn't know who Dave was,1,What does Eric claim he is when he is being interviewed about Dave's murder?,127041,Castle,70.13-81.02,castle_s08e04_seg02_clip_12,Eric claims he is a reformed and took a vow to refrain from lying 5003,Stacy is sitting next to Marshall.,Lily is sitting next to Marshall.,Ted is sitting next to Marshall.,Stuart is sitting next to Marshall.,James is sitting next to Marshall.,4,Who is sitting next to Marshall when Ted is talking about different songs?,127042,How I Met You Mother,8.65-12.05,met_s03e04_seg02_clip_15,James is sitting next to Marshall. 5004,A ballpoint pen.,A cup of coffee.,A cell phone.,A pipe.,An exercise ball.,0,What is Dr. House holding in his right hand when Dr. Wilson walks in?,127043,House M.D.,42.33-44.63,house_s03e15_seg02_clip_24,A ballpoint pen. 5005,Megan is watching the patient,Cuddy is watching the patient,No one is watching the patient,House is watching the patient,Becky is watching the patient,3,Who is watching the patient from the door when the doctors are working?,127044,House M.D.,19.43-28.46,house_s01e15_seg02_clip_06,House is watching the patient 5006,Maybe it's hard to tell. ,No he doesn't.,Yes he does. ,Yes and no. ,Not really. ,2,Does Raj actually hit it off when he talks with the woman?,127045,The Big Bang Theory,35.4-41.51,s04e22_seg02_clip_13,Yes he does. 5007,Rachel gave Ross a hug because she was sorry Caitlin was not interested.,Rachel gave Ross a pizza.,Rachel gave Ross notice that Caitlin was not interested.,Rachel gave Ross the pizza bill.,Rachel gave Ross Caitlin's number.,4,What did Rachel have for Ross when she met him after talking to Caitlin?,127046,Friends,29.46-62.03,friends_s05e19_seg02_clip_17,Rachel gave Ross Caitlin's number. 5008,That Kathy should try swimming,That Kathy should try running,That Kathy should drink less coffee,That Kathy should remember to take her medicine,That Kathy should exercise less,0,What does Sam say will help Kathy when talking to Violet?,127047,Grey's Anatomy,64.34-73.28,grey_s03e23_seg02_clip_02,That Kathy should try swimming 5009,Drink,Food,Drugs,Records,Cell phone,1,What is House holding in his left hand before he addresses the doctors?,127048,House M.D.,0-4.19,house_s03e03_seg02_clip_09,Food 5010,a motorcycle,a car, a bicycle,a plane,a boat,2,what is Barney riding when he comes into the bar?,127049,How I Met You Mother,8.57-18.02,met_s02e20_seg02_clip_07, a bicycle 5011,He asks her if she knows where it is.,He tells his mother that his where Beckett lives.,He asks his mother if she would like to go with him.,He tells his mother he can't tell her what the address is for.,He tells his mother there was a murder there.,4,What does Castle do after Martha asks about the address he got from Beckett?,127050,Castle,53.54-63.24,castle_s03e18_seg02_clip_00,He tells his mother there was a murder there. 5012,Phoebe was wearing a boho dress.,Phoebe was wearing a brown coat.,Phoebe was wearing a thick sweater.,Phoebe was wearing a dress suit.,Phoebe was wearing a wool hat.,1,What was Phoebe wearing when she sat next to Monica?,127051,Friends,8.76-34.73,friends_s01e18_seg02_clip_00,Phoebe was wearing a brown coat. 5013,A suit.,A jogging suit.,Jeans and t-shirt.,His pajamas.,A football jersey.,1,What was Fred Cana wearing when he was talking to Tom and Beckett about his stamps?,127052,Castle,27.69-40.41,castle_s02e21_seg02_clip_04,A jogging suit. 5014,Stella is pregnant.,Monica is pregnant.,Rachel is pregnant.,Estar is pregnant.,Phoebe is pregnant.,4,Who is pregnant when she is on the phone with Joey?,127053,Friends,0-7.56,friends_s04e23-24_seg02_clip_37,Phoebe is pregnant. 5015,May the third,May the fourth,May the fifth,May the tenth,May the seventh,1,What day is Star wars day when Howard tells Penny?,127054,The Big Bang Theory,28.2-35.49,s07e22_seg01_clip_00,May the fourth 5016,Just underwear,Nothing,A suit,Snow pants,A lab coat,0,What is the woman wearing when the patient is in bed?,127055,House M.D.,0-14.96,house_s08e17_seg02_clip_17,Just underwear 5017,Suit Jacket,Wine bottle,A bouquet,Wine Glass,Dessert Plate,2,What was the Bride holding when she was talking to Monica?,127056,Friends,13.81-24.61,friends_s07e11_seg02_clip_17,A bouquet 5018, Priya calls Sheldon on the phone.,Priya leave the table.,Priya begins to cry.,Priya looks scared.,Priya grabs her elbow.,4,What does Priya do after she says Indian parents are very protective of their children?,127057,The Big Bang Theory,50.26-56.34,s04e23_seg02_clip_00,Priya grabs her elbow. 5019,angry,bored,excited,jealous,tired,2,How did Howard feel when Leonard and Sheldon were happy about their paper?,127058,The Big Bang Theory,12.76-27.85,s08e14_seg02_clip_14,excited 5020,A soda can.,A movie.,A balloon.,A thermometer.,A book.,4,What was Castle holding when he said this Benny Stryker?,127059,Castle,34.21-43.21,castle_s03e09_seg02_clip_08,A book. 5021,Emma,Joey,Phoebe,Monica,Mandy,3,Who was looking through the door with Chandler after he herd Ross yelling in the hallway?,127060,Friends,17.18-27.12,friends_s10e08_seg02_clip_09,Monica 5022,$1200.00,$1500.00,$2000.00,$1000.00,$2500.00,1,"How much money did Chandler offer to pay for the big, white dog when Joey tried to give it to him?",127061,Friends,30.27-36.64,friends_s06e06_seg02_clip_17,$1500.00 5023,Chase said that cocaine abuse could cause both Tommy's paranoia and his chest pain.,Chase said Tommy could have been exposed to radon from improper construction of the bunker.,Chase said Tommy could have heavy metal poisoning from the musket powder.,Chase said Tommy was likely having severe anxiety and had a mental illness.,Chase said it sounded like the classic symptoms for Paranoid schizophrenic.,0,What did Chase attribute Tommy's arsenal and symptoms to after he listened to what House said about it?,127062,House M.D.,71.2-76.72,house_s08e08_seg02_clip_05,Chase said that cocaine abuse could cause both Tommy's paranoia and his chest pain. 5024,Selling a product from his book,Trying to find an intern,Showing them how to do paperwork,Helping them see potential job areas,Telling a story about a snake bite,4,What is House doing in a classroom full of young doctors after writing on a whiteboard?,127063,House M.D.,13.87-29.13,house_s01e21_seg02_clip_11,Telling a story about a snake bite 5025,She asked how did it started.,She asked how long it's been going on.,She asked where did it happened.,She asked which son it was.,She asked if she was older than him.,3,How did Beth react when Penny told her she was sleeping with her son?,127064,The Big Bang Theory,15.13-24.93,s03e11_seg02_clip_13,She asked which son it was. 5026,A kitchen.,A ballroom.,A small holding .,A bathroom.,An office lobby.,2,Where was Alexis when Sara was pacing back and forth? ,127065,Castle,38.23-60.99,castle_s05e15_seg02_clip_17,A small holding . 5027,John,James,House,Jimmy,Sean,2,Who appeared at the door when Arlene was working on the laptop,127066,House M.D.,0-5.79,house_s07e11_seg02_clip_05,House 5028,Nick's leg got hurt when he tried to use the phone,Nick's arm got hurt when he tried to use the phone,Nick's neck got hurt when he tried to use the phone,Nick's ankle got hurt when he tried to use the phone,Nick's back got hurt when he tried to use the phone,1,Which body part got hurt when Nick tried to use the phone,127067,House M.D.,13.5-22.51,house_s08e01_seg02_clip_10,Nick's arm got hurt when he tried to use the phone 5029,The matter is closed.,She was interested in Howard.,To shut up,To leave the room,To file an official complaint.,0,What did Page tell Sheldon when he tried to tell her Howard's good qualities?,127068,The Big Bang Theory,32.79-40.47,s04e07_seg02_clip_10,The matter is closed. 5030,Too slow.,Too selfish.,Too mean.,Too Cocky.,Not too quick.,3,What does Phoebe say Rachel is when she gets the phone from her?,127069,Friends,41.45-46.86,friends_s07e15_seg02_clip_01,Too Cocky. 5031,Sheldon,Penny,Leonard,Bernadette,Howard,0,Who is just outside Amy's door when they knock?,127070,The Big Bang Theory,56.91-57.77,s06e07_seg02_clip_05,Sheldon 5032,That he would give it to her if she would give him free meals at the restaurant.,That he would give it to her for $100.,That he would give it to her if she would pretend to be his wife.,That he would give it to her if she would wear his favorite dress.,That he would give her the address if she would go to his cousin's wedding with him.,4,What did Stuart say after he said maybe they could make a deal?,127071,The Big Bang Theory,44.33-58.33,s03e16_seg02_clip_15,That he would give her the address if she would go to his cousin's wedding with him. 5033,Lily follows Barney to the bar to order another drink.,Lily follows Barney to the bar to confront him about his feelings for Robin.,Lily follows Barney to the bar to talk about Marshall's feelings for her.,Lily follows Barney to the bar to talk about Robin's outfit.,Lily follows Barney to the bar to talk about Barney's fear of commitment.,1,"Why does Lily follow Barney to the bar after he asks for ""private convo time""?",127072,How I Met You Mother,0-28.3,met_s05e01_seg02_clip_03,Lily follows Barney to the bar to confront him about his feelings for Robin. 5034,The DA will press charges against Tyson,The DA will press charges against Castle,The DA will press charges against Beckett,The DA will press charges against Alexis,The DA will press charges against Ryan,1,What does Tyson say will happen tomorrow when he is talking to Castle in the jail cell?,127073,Castle,27.72-56.35,castle_s05e05_seg02_clip_16,The DA will press charges against Castle 5035,There has to be another way to do this,"Whatever happens, we stick together","Whatever happens, we kill this man","Whatever happens, we keep the girl alive","Shoot first, ask questions later",3,"What did Sophia say to Corrigan when Castle, Beckett, Corrigan, and her were all walking down the hallway together after Corrigan says they haven't identified Danberg's partner",127074,Castle,0-26.8,castle_s04e16_seg02_clip_23,"Whatever happens, we keep the girl alive" 5036,Her knees.,Her cell phone.,Her eyes.,Her finger.,The straw in her drink.,4,What did Barney say was pointed at him when Honey was touching Ted?,127075,How I Met You Mother,42.62-60.03,met_s06e15_seg02_clip_02,The straw in her drink. 5037,She ripped it to pieces,She Stamped it ,She threw it in the trash ,She wrote all over it with a pen,She put it away in the desk,1,What did the DMV lady do immediately after Sheldon handed her the Application,127076,The Big Bang Theory,2.75-10.68,s02e05_seg02_clip_09,She Stamped it 5038,His cell phone.,His car keys.,A weapon.,His glasses.,His wallet with his ID.,4,What does the guard take away from Castle after searching him?,127077,Castle,43.76-50.07,castle_s08e03_seg02_clip_16,His wallet with his ID. 5039,stab,I lied,fuck yousuck it,he was a bitch,no daddy,1,What does george say after he says after you asked me if it was true?,127078,Grey's Anatomy,14.62-24.5,grey_s03e12_seg02_clip_16,I lied 5040,Monica is waiting in line.,Monica is sitting next to chandler.,Monica is sitting next ross.,Monica is sitting next to Joey.,Monica is sitting next Rachael.,1,Where is Monica when she is listening?,127079,Friends,26.44-28.9,friends_s07e15_seg02_clip_12,Monica is sitting next to chandler. 5041,she came from the ice cream store,she came up the stairs ,she was coming from the bar stool,she came in through the front door,she had just returned from the McCafe,3,"Where did Rachel come from before she was introduced to the gang as a ""Lincoln High Survivor""?",127080,Friends,27.03-47.23,friends_s04e21_seg02_clip_01,she came in through the front door 5042,Made a circle,Raised their glasses,Danced,Clap,Threw rice into the air,3,What do the wedding guests do when Monica and Chandler enter the room?,127081,Friends,34.37-41.94,friends_s08e01_seg02_clip_03,Clap 5043,Sheldon is sitting at the table across from Ira Flatow.,Sheldon is sitting at the desk in the control room.,Sheldon is standing behind the door to the control room.,Sheldon is crouched under the table.,Sheldon is sitting on the table.,0,Where is Sheldon when Ira Flatow introduced him to Science Friday's listeners?,127082,The Big Bang Theory,8.62-24.23,s07e10_seg01_clip_01,Sheldon is sitting at the table across from Ira Flatow. 5044,At the door,At the window,Near the plant,Beside the whiteboard,Next to the coffee machine,1,Where does the Indian doctor stand when he tells House it sn't true?,127083,House M.D.,8.78-11.35,house_s05e24_seg02_clip_25,At the window 5045,in his pockets,On the table.,on the floor,in the trash,on top of the tv,1,Where did Joey lay his donut when he was talking to Cecilla?,127084,Friends,5.12-7.68,friends_s07e15_seg02_clip_10,On the table. 5046,Apple,Cherry,Blueberry,pumpkin,pecan,2,"What kind of pie are Penny, Amy, Leonard, and Sheldon using when there having pie eating contest?",127085,The Big Bang Theory,21.71-35.71,s06e04_seg02_clip_16,Blueberry 5047,Her parents house.,A rec center.,At the VFW.,At the Moose Lodge.,At the bingo hall.,1,Where does Rachel say Chandler and Monica will have to get married when their talking about not having enough money?,127086,Friends,6.83-12.03,friends_s07e02_seg02_clip_12,A rec center. 5048,The woman wanted to drink water.,The woman wanted to drink a beer.,The woman doesn't want to drink anything.,The woman want to drink wine.,The woman wants soda.,1,What did the woman want to drink after Marshall asked if she wanted a drink?,127087,How I Met You Mother,9.24-56.02,met_s02e07_seg02_clip_14,The woman wanted to drink a beer. 5049,Brian Holiday's,Brian Whitman's,Brian White's,Brian Whittington's,The Senator's,1,What person's office does Esposito say the threatening call came from when it was made?,127088,Castle,3.2-7.78,castle_s07e11_seg02_clip_07,Brian Whitman's 5050,a book,a drink,a swig of liquor ,his pills ,a tissue,3,What did House take after everyone left his office,127089,House M.D.,43.69-46.09,house_s03e21_seg02_clip_20,his pills 5051,Wilson,Chase ,Foreman,Cameron,Matthews ,3,Which Doctor does House call a brownoser after helping Cuddy with a patient diagnosis? ,127090,House M.D.,29.13-40.05,house_s03e17_seg02_clip_15,Cameron 5052,Adoption.,Divorce.,Exercise.,Marriage.,Poetry.,0,"What is one of the ""other ways"" that Marvin suggests to Marshall when they are sitting in the living room?",127091,How I Met You Mother,0-6,met_s06e13_seg02_clip_15,Adoption. 5053,She says it looks like a kitchen.,She says it looks like a dining room.,She says it looks like a cave.,She says it looks like a bathroom.,She says it looks like a pond. ,2,What does Monica say that the dining room looks like when touring the house?,127092,Friends,0-10.36,friends_s10e15_seg02_clip_07,She says it looks like a cave. 5054,House called Chase pathetic,House called Cameron pathetic,House called Foreman pathetic,House called Wilson pathetic,House called Cuddy pathetic,1,Who did House call pathetic when he is laying in the bed?,127093,House M.D.,23.02-26.71,house_s02e24_seg02_clip_00,House called Cameron pathetic 5055,She has a dog,She has a soda,She has charts,She has a hamper,She has a vacuum.,2,What does Bailey have in her hands when she talks about needing something more with Richard?,127094,Grey's Anatomy,1.82-10.47,grey_s03e13_seg02_clip_22,She has charts 5056,Because Sheldon had to get an even number of apples.,Because Sheldon wouldn't touch the grocery cart.,Because Sheldon was talking down about ordinary people like Penny,Because Sheldon took a long time finding the perfect orange.,Because Sheldon wanted to leave as soon as they got to the store.,2,Why was Penny annoyed with Sheldon after they got to the grocery store?,127095,The Big Bang Theory,42.7-51.72,s01e04_seg02_clip_03,Because Sheldon was talking down about ordinary people like Penny 5057,Ross has an ice cream cone in his hand,Ross has a bottle of water in his hand,Ross has a baseball in his hand,Ross has a coffee cup in his hand,Ross has a football in his hand,4,What does Ross have in his hand when he is talking to the blonde lady,127096,Friends,0-9.39,friends_s03e09_seg02_clip_07,Ross has a football in his hand 5058,2,none,1,3,4,0,How many pens did Amber have in her pocket when the doctors were talking? ,127097,House M.D.,40.18-44.82,house_s04e03_seg02_clip_10,2 5059,Marshall said that the student was not entirely wrong.,Marshall said that student was wrong.,"Marshall said, shut up.",Marshall said that students are not allowed to talk.,Marshall explained again the lesson.,0,What said Marshall after the students laugh?,127098,How I Met You Mother,6.2-59.03,met_s05e01_seg02_clip_11,Marshall said that the student was not entirely wrong. 5060,A picture,A hammer,A saw,A hard hat,Safety glasses,0,What does Zach have in his hand when he's walking with Esposito and Ryan?,127099,Castle,40.51-45.46,castle_s06e13_seg02_clip_03,A picture 5061,The Golden Gate Bridge.,The Hollywood sign in the Hollywood Hills.,One of the giant sequoias in Yosemite National Park.,The Universal Studios emblem from the studio/amusement park of the same name.,The entrance to the Santa Monica Pier.,1,What famous California landmark transfixes Castle before he enters the Hungry Orchid?,127100,Castle,74.89-82.33,castle_s08e14_seg02_clip_02,The Hollywood sign in the Hollywood Hills. 5062,Chandler blames Ross for breaking a pact.,Chandler is glad Ross took him away.,Chandler thinks Ross made him sound gay.,Chandler tells Ross to find Adrienne.,Chandler accuses Ross of dating Missy Goldberg.,2,How does Chandler react after Ross pulls him away from the table?,127101,Friends,10.04-21.55,friends_s10e11_seg02_clip_15,Chandler thinks Ross made him sound gay. 5063,A can of bug spray,A pot,A Lamp,A tv,Yellow flowers,4,What is in front on Dr.Hofstadter when she grunts in disgust?,127102,The Big Bang Theory,5.27-11.48,s08e23_seg02_clip_09,Yellow flowers 5064,Soap,Water,Vomit,Paint,Blood,4,What did Irene get on her sweater when her mother fell down?,127103,House M.D.,77.45-95.03,house_s04e04_seg02_clip_14,Blood 5065,She blames her behavior on nervousness.,She claims the cancer has affected her mind.,She suspects that her medicine has affected her mind.,She defends her behavior as valid and rational.,She says she is on a sugar high.,4,How does Ms. Seabury explain her behavior after Chief and the doctors question her?,127104,Grey's Anatomy,70.54-75.1,grey_s03e02_seg02_clip_02,She says she is on a sugar high. 5066,He slapped Sonia silly,He said screw you to Sonia,He said he was thinking the same thing about her,He gave Sonia a high five,He turned and walked away,2,How did Esposito respond after Sonia said she thank god he didnt go bald?,127105,Castle,15.5-26.35,castle_s08e16_seg02_clip_26,He said he was thinking the same thing about her 5067,House left the room,House farted,House got angry,Put two fingers behind foreman's head,House punched Foreman,3,What did House do after he told Foreman he would wait?,127106,House M.D.,8.9-18.7,house_s08e06_seg02_clip_08,Put two fingers behind foreman's head 5068,Got up from his seat,Gave the peace sign,Pointed down the hall,Spun around in his chair,Waved,4,What did Chase do after Taub and Foreman looked at him?,127107,House M.D.,82.79-92.1,house_s07e20_seg02_clip_17,Waved 5069,Cuddy,Foreman,House,Chase,Cameron,2,Who is smoking a cigar when Wilson asks about a call?,127108,House M.D.,0-2.29,house_s02e17_seg02_clip_27,House 5070,Courtney says going to Castle's book signing.,Courtney says being cast in Castle's movie.,Courtney says reading Castle's 1st book.,Courtney says being hired as a model for Castle.,Courtney says not being cast in Castle's movie.,4,What does Courtney say was the best thing that happened for her career when she discusses doing lunch with Castle ,127109,Castle,0-9.75,castle_s08e14_seg02_clip_07,Courtney says not being cast in Castle's movie. 5071,They went to dinner.,They kept driving.,They went to the lab.,They were in the car with Penny and friends.,They were in the car with Leonard's girlfriend.,3,What happened after Sheldon said that he wished they had a train?,127110,The Big Bang Theory,0-12.4,s04e19_seg02_clip_15,They were in the car with Penny and friends. 5072,Because Helen quit her job.,Because Helen had said it's the last time.,Because Helen wants to go on vacation.,Because Helen refused the treatment.,Because he is in love with Helen.,1,Why does Derek say don't throw in the towel after he sits on the bed?,127111,Grey's Anatomy,17.67-31.26,grey_s03e18_seg02_clip_03,Because Helen had said it's the last time. 5073,His head,His arm,His leg,His cane,His stomach,2,What does House grab right after he hits the ground after falling?,127112,House M.D.,79.08-85.39,house_s08e22_seg02_clip_11,His leg 5074,Joey though Monica meant that she broke the legs of the man who wronged her.,Joey though Monica meant that she killed the man who wronged her.,Joey though Monica meant that she cut the man who wronged her.,Joey thought Monica meant that she cooked the man who wronged her.,Joey though Monica meant that she cast a spell on the man who wronged her.,3,What does Joey think Monica meant when she said that she's getting her revenge?,127113,Friends,0-11.6,friends_s08e21_seg02_clip_02,Joey thought Monica meant that she cooked the man who wronged her. 5075,The classroom. ,The bathroom. ,The exam room. ,The vet's office. ,The hospital room. ,4,Where is Lily when the doctor walks into the room?,127114,How I Met You Mother,64.68-67.02,met_s05e02_seg02_clip_02,The hospital room. 5076,He didn't want too and that should be enough.,He knew she would try and stop him.,He knew she would follow him.,He was looking out for his family.,He was taken without his consent.,1,What is the reason Castle gives as to why he didn't tell Alexis when he left?,127115,Castle,26.11-32.41,castle_s07e02_seg02_clip_25,He knew she would try and stop him. 5077,Pie,Cake,Ice Cream,Chips,Soda,1,What did Rachael also tell Phoebe to tell Monica to bring when Rachael asked Phoebe to call?,127116,Friends,28.21-34.22,friends_s07e19_seg02_clip_13,Cake 5078,Amy told Penny that Sheldon's assistant was courting Leonard.,Amy told Penny that Sheldon's assistant was courting Sheldon.,Amy told Penny that Sheldon's assistant was doing a great job.,Amy told Penny that Sheldon's assistant was always getting in the way of her plans.,Amy told Penny that Sheldon's assistant often purchased lunch for Leonard.,0,What did Amy tell Penny that Sheldon's assistant was doing after Penny said that everything was fine.,127117,The Big Bang Theory,20.44-29.9,s06e03_seg02_clip_10,Amy told Penny that Sheldon's assistant was courting Leonard. 5079,Shop,Shower,Basketball Game,Office,Movie Theater,4,Where did Chip work when Monica met him?,127118,Friends,36.92-43.82,friends_s04e02_seg02_clip_16,Movie Theater 5080,Sheldon calls his mom to have her explain it to Penny.,Sheldon tells Penny she will never understand his job.,He gets Penny a hot beverage.,Sheldon sits on the couch near Penny.,Sheldon gets out an Etch-a-Sketch.,3,What does Sheldon do after Penny asks him to explain what Leonard does?,127119,The Big Bang Theory,31.82-35.72,s03e10_seg02_clip_14,Sheldon sits on the couch near Penny. 5081,Derek yells this is too much,Derek says this is gross,Derek says I want to go home,"Derek says clamp, clamp, clamp",Derek faints,3,what does Derek says right after the artery ruptures?,127120,Grey's Anatomy,15.85-99.03,grey_s01e06_seg02_clip_20,"Derek says clamp, clamp, clamp" 5082,Henry Fonda.,Steve Mcqueen.,Paul Newman. ,Atticus Finch.,Cary Grant.,0,Who does Castle compare Joe to when discussing the jury case?,127121,Castle,31.69-38.29,castle_s03e19_seg02_clip_15,Henry Fonda. 5083,Howard galloped as if he was riding a horse.,Howard ran as fast as he could towards Bernadette. ,Howard passed out in the living room.,Howard hopped as if he was a bunny.,Howard tiptoed so he wouldn't make any noise. ,0,How did Howard approach Bernadette after she came from the room? ,127122,The Big Bang Theory,16.84-24.6,s06e18_seg02_clip_16,Howard galloped as if he was riding a horse. 5084,He rolled his eyes.,He started to laugh.,He opened it back up.,He picked it up.,He left the room.,0,What did Foreman do after Cameron closed the chart?,127123,House M.D.,24.12-28.22,house_s01e04_seg02_clip_06,He rolled his eyes. 5085,"Phoebe's song was full of dirty, highly sexual lyrics. ","Phoebe's song seemed to consist of her simply whistling and saying ""la la la."" ",Phoebe was dressed in a clown costume. ,Rachel and Ross were dancing wildly in front of Phoebe. ,The lights were out and Phoebe performed in the dark. ,1,How was Phoebe's performance comical when she was in the coffee shop? ,127124,Friends,50.42-60.03,friends_s05e05_seg02_clip_04,"Phoebe's song seemed to consist of her simply whistling and saying ""la la la."" " 5086,Marshall said it wasn't his fault.,Marshall said he left 20 messages.,Marshall said he was worried.,Marshall said it's all Teds fault.,Marshall said it wasn't Ted's fault.,3,What did Marshall say after Ted suggested he leave Lilly a message?,127125,How I Met You Mother,44.9-46.71,met_s05e05_seg02_clip_12,Marshall said it's all Teds fault. 5087,"That the conversation got away from him, it was a train wreck","That they made progress, it felt good","It was a one way street, with traffic","That they needed counseling, badly",That he did not want to talk about it,0,How did Taub say the conversation with Sam went when he was talking with Thirteen in the Radiology Room?,127126,House M.D.,63.57-81.36,house_s06e18_seg02_clip_12,"That the conversation got away from him, it was a train wreck" 5088,Yell at Marcel,Dance,Sing along,Sit down and eat,Shut the music off,1,"What does Ross, Joey, and Chandler do when the music starts playing?",127127,Friends,29.15-38.46,friends_s01e18_seg02_clip_07,Dance 5089,Bite of a dog.,Bite of a spider.,Vampire mark.,Necklace.,Needle mark.,4,What found Lanie on the side neck of the doctor when doing the autopsy,127128,Castle,47.97-54.57,castle_s03e05_seg02_clip_03,Needle mark. 5090,A rented movie. ,Some chips. ,His drink. ,Some food. ,His keys. ,4,What does Leonard grab from a bowl next to the door before he leaves?,127129,The Big Bang Theory,40.57-49.05,s04e17_seg02_clip_05,His keys. 5091,Gates puts on her coat.,Gates puts on her glasses.,Gates puts on her shoes.,Gates puts on head phones.,Gates puts on her hat .,1,What did Gates put on before she picks up a piece of paper ?,127130,Castle,39.66-47.15,castle_s04e08_seg02_clip_13,Gates puts on her glasses. 5092,Amy ,Howard ,Leonard ,Kripke ,Bernadette ,3,Who enters the room after Sheldon has talked to Raj about his new dating style? ,127131,The Big Bang Theory,45.4-47.79,s05e14_seg02_clip_08,Kripke 5093,Chase,Cameron,Wilson,a cab,Forman,2,Who did House call after the bartender took his keys?,127132,House M.D.,40.05-60.53,house_s04e16_seg02_clip_15,Wilson 5094,The News,Paranormal,SAmquanch,Trailer Park Boys,Mission Monster,4,What TV show offered a million dollar reward to viewers after submitting proof of Big Foot?,127133,Castle,0-12.15,castle_s05e20_seg02_clip_07,Mission Monster 5095,Make a stitch,Dental exam,Give medicine,Take the temperature,Quick pervic exam.,4,What is going to do Cristina to Mrs. Glass when she carry a tray wit instruments?,127134,Grey's Anatomy,57.78-63.1,grey_s01e09_seg02_clip_13,Quick pervic exam. 5096,In his hotel room plotting a crime,Passed out in a supply closet with a belly full of roofies,Robbing a bank,Driving to the scene of the crime,Making himself obvious for an alibi ,1,Where did Castle say Mike was after Beckette and Castle both realized the key card was relevant?,127135,Castle,20.69-28.68,castle_s02e12_seg02_clip_14,Passed out in a supply closet with a belly full of roofies 5097,Wolverine,Bear,Fox,Wolf,Polar Bear,3,What animal does Joey liken himself to before Chandler hugs him?,127136,Friends,0.83-18.16,friends_s08e14_seg02_clip_20,Wolf 5098,Barney said Robin is American.,Barney said the money is blue.,Barney said there are children playing hockey on the money.,Barney asked why people make fun of them.,"Barney says ""it's like you want us to make fun of you"".",4,What does Barney say before grabbing his coffee?,127137,How I Met You Mother,26.22-29.53,met_s05e05_seg02_clip_12,"Barney says ""it's like you want us to make fun of you""." 5099,The recipe was worth a lot of money.,It was the only recipe she knew how to make.,Monica stole the recipe from Phoebe.,The recipe was the one legacy her grandmother left her.,Phoebe had a bad day at work.,3,Why is Phoebe upset when talking to Monica about the cookie recipe?,127138,Friends,23.8-28.68,friends_s07e03_seg02_clip_03,The recipe was the one legacy her grandmother left her. 5100,she thinks that rachel is asking her to go out with her dad.,she is suppose rescue rachel,that she is not suppose to be there. ,that she needs to only stay for a short bit. ,that rachel needs money. ,0,How does pheobe feel that invention for dinner is suppose to work after rachel invites her?,127139,Friends,10.37-18.31,friends_s08e08_seg01_clip_00,she thinks that rachel is asking her to go out with her dad. 5101,Red,White,Yellow,Orange,Blue,0,What color are the candles on the bar when Cristina sits next to Meredith?,127140,Grey's Anatomy,51.89-58.12,grey_s02e01_seg02_clip_23,Red 5102,Preparing drinks for a toast,Picking her nose,Crying,Working on an experiment,Laughing at them,0,What is Bernadette doing in the background when Howard and Raj are talking?,127141,The Big Bang Theory,12.56-37.1,s04e09_seg02_clip_06,Preparing drinks for a toast 5103,He went to a friend's house,He wanted to go home.,He went to the mall,He went into a room to sit down.,He went to sleep,3,"Where did House go after he told Chase and Adams ""Tell all the alters that they have cancer""?",127142,House M.D.,73.28-91.03,house_s08e07_seg02_clip_22,He went into a room to sit down. 5104,Raj asked Howard to go home.,Raj asked Howard to leave him alone.,Raj asked Howard what took him so long.,Raj asked Howard to get out of his face.,Raj asked Howard to shut up. ,2,What did Raj say after Howard scream for him to wait?,127143,The Big Bang Theory,0-9.06,s09e04_seg02_clip_14,Raj asked Howard what took him so long. 5105,She means that Lucy hit on Leonard and Leonard liked it. ,She means that Bernadette hit on Leonard and Leonard liked it. ,She means that Leslie hit on Leonard and Leonard liked it. ,She means that Amy hit on Leonard and Leonard liked it. ,She means that Alex hit on Leonard and Leonard liked it. ,4,What does Penny mean when she says she knows that she hit on him and he liked it?,127144,The Big Bang Theory,46.68-47.9,s06e12_seg02_clip_07,She means that Alex hit on Leonard and Leonard liked it. 5106,She tells him to leave her sight,She tells him to kick Penney,She tells him to come home,She tells him to be quiet,Now go to bed,4,What does Leonard's mother say after she hugs him?,127145,The Big Bang Theory,0-54.31,s03e11_seg02_clip_15,Now go to bed 5107,dog ,books,tv ,cd rack ,computer monitor ,4,What was behind Kate when she was sitting down on the desk talking to Castle and Beckett? ,127146,Castle,68.72-83.29,castle_s07e19_seg02_clip_07,computer monitor 5108,It is the number of times Beckett has told Bracken to stop committing crimes. ,It is the number of the bank account that Bracken stole money from. ,It is the number of the bank account where Bracken deposited the money. ,It is the amount of money Beckett will get if she gets the power. ,It is the address to a bank where Bracken has a safety deposit box. ,2,What does Beckett say the number is for after she tells Bracken she has the file? ,127147,Castle,32.5-89.04,castle_s05e01_seg02_clip_25,It is the number of the bank account where Bracken deposited the money. 5109,On the sidewalk,At the station,At home,In the car,In the street,3,Where was Castle supposed to wait after the detectives entered the building?,127148,Castle,27.31-30.73,castle_s07e06_seg02_clip_14,In the car 5110,none,1,2,3,4,2,How many plates is Monica carrying before sitting them on the table?,127149,Friends,0-5.58,friends_s07e18_seg02_clip_05,2 5111,She doesn't like the woman she sat next to.,She ripped her gown.,She is embarrassed.,She thinks Stuart is still into her.,"She hated the food, and doesn't want to be near it.",3,Why doesn't she want to go back for her wrap when she realizes she forgot it?,127150,Friends,38.23-51.25,friends_s07e11_seg02_clip_20,She thinks Stuart is still into her. 5112,He says that Sheldon is going. ,He says that Bernadette and Penny are going. ,He says that Bernadette and Leonard are going,He says that just Bernadette is going. ,He says that he is going alone. ,3,Who does Howard say will be traveling to Vegas when he is talking with Raj?,127151,The Big Bang Theory,21.96-26.03,s06e15_seg02_clip_00,He says that just Bernadette is going. 5113,Ross was eating a chocolate bar.,Ross was eating an apple.,Ross was eating an orange.,Ross was eating fruit candy.,Ross was eating a muffin.,0,What was Ross eating when he was talking to Rachel?,127152,Friends,45.32-47.42,friends_s03e01_seg02_clip_11,Ross was eating a chocolate bar. 5114,blue,green,red,yellow,black,2,What color marker was Raj using when showing his plan on the whiteboard to the group?,127153,The Big Bang Theory,0-9.85,s02e14_seg01_clip_01,red 5115,She told Ross to run and save himself.,"She said, Maybe the firemen can help us.",She ran away.,She denied pulling the alarm.,She screamed out of fear.,1,How did Rachel respond after she pulled the fire alarm?,127154,Friends,26.54-36.98,friends_s05e16_seg02_clip_17,"She said, Maybe the firemen can help us." 5116,She yelled at him,She dragged him to the front door,She made him pancakes,She gave him a hug,She asked where he was going ,1,What did Monica do after Ross admitted he loved Emily?,127155,Friends,46.63-56.26,friends_s04e17_seg02_clip_02,She dragged him to the front door 5117,You are married?,Hate Chili. Love Spud guns.,Thanks for not saying anything,This is my exit,Do you date,1,"What did House say he hates when Thirteen said ""Chili""",127156,House M.D.,59.57-63.61,house_s07e18_seg02_clip_01,Hate Chili. Love Spud guns. 5118,Because he told her he wouldn't drink and drive,Because he told her what kind of grades he got,Because he knew she was drunk and hurt by Kurt,Because he said he got accepted into Harvard,Because he said he has a degree in physics,2,Why did Penny tell Leonard he was really smart after he stopped kissing her,127157,The Big Bang Theory,0-44.34,s01e06_seg02_clip_15,Because he knew she was drunk and hurt by Kurt 5119,eating,sky-diving,spelunking,frogs,insects,2,What does Sheldon say his professor talked to him about when he is going down the stairs with Leonard?,127158,The Big Bang Theory,0-56.56,s01e04_seg01_clip_00,spelunking 5120,Stuart overheard Bernadette tell Howard she was making burgers,Stuart overheard Bernadette tell Howard she was making Lasanga,Stuart overheard Bernadette tell Howard she was making ravioli,Stuart overheard Bernadette tell Howard she was making meat loaf,Stuart overheard Bernadette tell Howard she was making pizza,3,What did Stuart overhear Bernadette tell Howard when he spoke to Raj?,127159,The Big Bang Theory,10.5-17.29,s08e24_seg02_clip_00,Stuart overheard Bernadette tell Howard she was making meat loaf 5121,Afsoun is holding a balloon.,Afsoun is holding medicine.,Afsoun is holding a pillow.,Afsoun is holding a bandage.,Afsoun is holding a flower.,4,What is Afsoun holding when talking to House?,127160,House M.D.,31.33-34.23,house_s07e23_seg02_clip_22,Afsoun is holding a flower. 5122,Ross,Phoebe,Pete,Monica and Chandler ,Rachel ,3,Who was Joey talking to when he was in the kitchen?,127161,Friends,0-7.97,friends_s07e16_seg02_clip_04,Monica and Chandler 5123,Charges were dropped against Nina O'Keefe,Charges were dropped against Nora King,Charges were dropped against Martin Johnson,Charges were dropped against Ellen Fisher,Charges were dropped against Ava Griffin,0,Who did Castle help get charges dropped when Weller made his motion,127162,Castle,0-10.56,castle_s08e10_seg02_clip_26,Charges were dropped against Nina O'Keefe 5124,They will tell you when you do wrong,They will punch you when you do something stupid,You can make msitakes and they will still love you,You will always have someone to talk to,You will never be forgiven,2,What does Foreman say the great thing about brother is when he is giving the young patient medication?,127163,House M.D.,55.05-73.12,house_s05e08_seg02_clip_21,You can make msitakes and they will still love you 5125,because its only says one word over and over,because its about having good sex,because its about a man's penis,because its about a three-some,because its about being a bitch and a whore,4,Why is Joey and Monica shocked after hearing Phoebe's new song,127164,Friends,5.42-16.82,friends_s03e14_seg02_clip_20,because its about being a bitch and a whore 5126,Fly.,Mouse.,Rabbit.,Snake.,Cricket,4,What did Mr. Duff called to Izzie before she got angry?,127165,Grey's Anatomy,46.75-50.56,grey_s01e09_seg02_clip_13,Cricket 5127,He was asking for his lawyer.,He was asking to go to the bathroom.,He was asking for money.,He was asking for mercy.,He was asking for a ride.,0,What was the man in the green sweater asking for after the man in the brown sweater was asking him questions right when they came out of the building?,127166,Castle,23.41-30.61,castle_s04e21_seg02_clip_13,He was asking for his lawyer. 5128,maybe,I will think about it.,yes,Let me call my mother.,Let me check my work schedule first.,2,What did Sheldon say when Leonard asked his friends to join him?,127167,The Big Bang Theory,46.43-61.9,s04e12_seg01_clip_01,yes 5129,Bernadette,Raj,Howard,Sheldon,Penny,2,Who is the officer looking for when Raj opens the door/,127168,The Big Bang Theory,25.93-33.29,s10e01_seg02_clip_02,Howard 5130,Map,Phone Records,DNA,Witness,Email,4,Which item was a break in the case after striking out with the Dagmars?,127169,Castle,77.96-88.09,castle_s07e07_seg02_clip_02,Email 5131,A lamp,A plant,A candle,A stack of dishes,A pitcher of lemonade,0,What was behind Chandler when he asked the table if he could be excused?,127170,Friends,13.87-23.02,friends_s03e11_seg02_clip_15,A lamp 5132,She says that she will go too.,She says that she will house sit for them.,She says she is going down to city hall.,She says that she is going to the cornerstore.,She says that she is inviting Rachel.,0,What does Phoebe say after Chandler agrees to go with Monica to Vegas?,127171,Friends,22.38-31.2,friends_s05e23-24_seg02_clip_02,She says that she will go too. 5133,Because Howard pull his nose.,Because Howard hit him.,Because Howard took his phone.,Because Howard push him.,"Because Howard said to Ray ""poor deluded bastard"".",4,Why Raj is upset after Howard talked to him?,127172,The Big Bang Theory,0-21.46,s01e15_seg02_clip_13,"Because Howard said to Ray ""poor deluded bastard""." 5134,A coca cola bottle,A pill bottle,a paper,a paper clip,a comic book,1,What does Sheldon take from Raj when Raj extends his hand?,127173,The Big Bang Theory,16.92-23.39,s04e22_seg02_clip_09,A pill bottle 5135,On her waist,On the table,Inside her jacket,Behind her back,Across her chest,4,Where did Cuddy put her hands when talking to House and Foreman about the Patient,127174,House M.D.,58.44-71.32,house_s06e04_seg02_clip_00,Across her chest 5136,Chest bumped,Shook hands,Fist bumped,Traded business cards,Hit each other on the arm,2,What did Castle and Trevor do right before his phone started going off?,127175,Castle,44.78-54.09,castle_s08e14_seg02_clip_07,Fist bumped 5137,Cameron meant that Wilson would be dishonoring Amber's memory no matter what.,Cameron meant that Wilson would be hurting others no matter what he did.,"Cameron meant that Wilson should do what he had to do, but only time would alleviate his pain.",Cameron meant that Wilson had waited too long to make a decision and was now in a worse situation.,Cameron meant that Wilson needed to let someone else make the choice for him.,2,What did Cameron mean when she said that there wasn't a right choice?,127176,House M.D.,46.21-57.66,house_s05e01_seg02_clip_19,"Cameron meant that Wilson should do what he had to do, but only time would alleviate his pain." 5138,Sitting behind him on the bed watching in the mirror.,Leaning in the door frame with her arms crossed.,Putting on red lipstick in the mirror.,Fixing the collar of his shirt,Walking into the bedroom from the bathroom dressing area.,1,What is Sam doing when she begins watching Tom put on his tie?,127177,House M.D.,39.12-45.79,house_s06e18_seg02_clip_12,Leaning in the door frame with her arms crossed. 5139,Samuel was murdered,Samuel was at the park,Samuel was at church,Samuel was at his mom house,Samuel was at the movies,0,What happened to Samuel when he lived at the apartment,127178,Castle,0-76.15,castle_s01e05_seg02_clip_04,Samuel was murdered 5140,They looked at each other in silence.,They both said No loudly.,They gave huge smiles and shook their head yes.,They walked away from Penny.,They both sat down in confusion.,1,How did Sheldon and Howard react after Penny asked if they wanted to come?,127179,The Big Bang Theory,27.08-29.93,s01e10_seg01_clip_02,They both said No loudly. 5141,Because Taub hasn't studied at all,Because Taub lost his wife and house after the last exam,Because Taub will be more rested,Because Taub hasn't been in school for five years,Because Taub has been super nervous about the exam,1,Why does Taub sarcastically mention he thinks he'll do better on the test than he did last time when talking to Foreman?,127180,House M.D.,72.5-96.03,house_s07e12_seg02_clip_15,Because Taub lost his wife and house after the last exam 5142,He started shouting.,He begin to cry.,He begin to kiss Zoey.,He ran away.,He jumped up.,2,What did Ted do after he got off the phone with Marshall?,127181,How I Met You Mother,47.97-103.17,met_s06e15_seg02_clip_18,He begin to kiss Zoey. 5143,Cosmopolitan,Ladies' Home Journal,Science,A medical journal,Shape,2,What magazine is Leonard reading when he's on the couch?,127182,The Big Bang Theory,51.32-57.62,s04e11_seg02_clip_06,Science 5144,Black.,Yellow.,Red.,Green.,White.,1,What color shirt was the bartender wearing when he poured Penny and Beverly another shot?,127183,The Big Bang Theory,22.58-28.08,s03e11_seg02_clip_12,Yellow. 5145,A bottle of beer,A cup of coffee,Robins shoulder,His head,A lamp shade,3,What did Ted grab after Ted's father said something about a great game?,127184,How I Met You Mother,28.25-34.28,met_s02e03_seg02_clip_19,His head 5146,Coop,Dr. Cooper,Dr. Loser,Loser,Cooper,2,What does Stephen Hawking call Sheldon when joking about their game?,127185,The Big Bang Theory,66.1-108.6,s06e06_seg02_clip_16,Dr. Loser 5147,Because Dave can't use public transportation.,Because Dave doesn't has a car.,Because Dave is sick.,Because Dave can't buy a car.,Because Dave's car was broke.,4,Why Dave sat next to Amy when she is driving?,127186,The Big Bang Theory,20.97-55.2,s09e08_seg02_clip_15,Because Dave's car was broke. 5148,Beckett did not show the sales clerk anything,Beckett showed the sales clerk a warrent,Beckett showed the sales clerk a mask she wanted,Beckett showed the sales clerk a picture,Beckett showed the sales clerk her badge and handcuffs,4,What did Beckett show the sales clerk after he had shown the fuzzy handcuffs?,127187,Castle,35.21-37.41,castle_s02e16_seg02_clip_04,Beckett showed the sales clerk her badge and handcuffs 5149,Penny and Leonard are making dinner.,Penny and Leonard are playing Xbox.,Penny and Leonard are playing World of Warcraft on the computer.,Penny and Leonard are kissing on the couch.,Penny and Leonard are watching tv.,4,What are Penny and Leonard doing before Sheldon and Amy comes into the apartment arguing?,127188,The Big Bang Theory,0-3.89,s10e05_seg01_clip_01,Penny and Leonard are watching tv. 5150,She broke in,She ordered the stationery,She saw it at the office,She had dropped off the envelope before,She had seen it online,1,How does Mia know where the envelope was from when being interviewed?,127189,Castle,25-29.47,castle_s07e18_seg02_clip_25,She ordered the stationery 5151,A gift box.,A necklace.,A flowerpot.,Her purse.,A shirt.,3,What was Phoebe holding when she said something to Monica.about walking down the aisle?,127190,Friends,0-5.67,friends_s07e23-24_seg02_clip_10,Her purse. 5152,Willy,James,Brian,Adam,Wilson,4,Who walked into the room after House picked the paper from the board?,127191,House M.D.,3.68-10.58,house_s03e08_seg02_clip_06,Wilson 5153,She was putting her hair in a ponytail.,She was putting her clothes in the washing machine.,She was sitting on the dryer painting her nails.,She was buying fabric softener.,She was folding clothes.,1,What was Penny doing when she was talking to Sheldon about Amy?,127192,The Big Bang Theory,29.92-51.86,s04e03_seg02_clip_09,She was putting her clothes in the washing machine. 5154,Sitting on his desk,Sitting in the window,Standing next to ryan,Sitting at his desk,Standing next to his desk,3,Where was Lloyd when Ryan and Esposito were asking him questions?,127193,Castle,0-4.2,castle_s03e07_seg02_clip_08,Sitting at his desk 5155,His wallet,A watch,His pager,Some money,A pen,2,What does Taub get out of his pocket before he leaves the room?,127194,House M.D.,14.56-22.76,house_s07e09_seg02_clip_12,His pager 5156,Monica,Rachel,Phoebe,Ross,Chandler,2,Who got shot by the tranquilizer dart when the animal control officer took her shot?,127195,Friends,19.23-32.57,friends_s01e19_seg02_clip_15,Phoebe 5157,Folded in front of her.,On her head.,On her hips.,Across her chest.,Behind her back.,0,Where were Amy's hands when the door was opening?,127196,The Big Bang Theory,57.55-59.03,s05e22_seg02_clip_15,Folded in front of her. 5158,One fourth,All,One third,Half,Ten percent,3,How many dispensers are empty or broken after Wilson inquires what has been found?,127197,House M.D.,66.45-71,house_s01e04_seg02_clip_06,Half 5159,Howard thought that she was sarcastic.,Howard thought that she was pretty.,Howard thought that she was annoying.,Howard thought that she was funny.,Howard thought that she was hungry.,3,Why did Howard ask Leonard why couldn't he make it work with Penny after Leonard talked about warcraft?,127198,The Big Bang Theory,24.5-38.45,s04e19_seg02_clip_15,Howard thought that she was funny. 5160,Her new car.,Her new job.,Her new apartment.,Her open marriage.,Her Swedish assistant.,3,What did Barney ask Lily to talk about when Jerry was looking at his watch?,127199,How I Met You Mother,0-3.25,met_s06e21_seg02_clip_03,Her open marriage. 5161,a sweater with a tie,a hat ,a scarf,a parachute,a tank top,0,What is Sheldon wearing when he is talking to Leonard?,127200,The Big Bang Theory,NaN-NaN,s01e04_seg01_clip_00,a sweater with a tie 5162,Raj throws a ball.,Raj walks to the window.,Raj nods back at Lucy.,Raj rolls his eyes.,Raj dances to music.,2,What doe Raj do after Lucy nods at him?,127201,The Big Bang Theory,4.41-6.76,s06e18_seg02_clip_13,Raj nods back at Lucy. 5163,Monica and Chandler are in a hotel bed together.,Monica and Chandler are in the woods.,Monica and Chandler are in a dimly lit public park.,Monica and Chandler are on Ross's couch.,Monica and Chandler are at Chandler's office.,0,Where are Monica and Chandler when they are naked together?,127202,Friends,37.22-62.03,friends_s04e23-24_seg02_clip_35,Monica and Chandler are in a hotel bed together. 5164,Castle burned the picture,Castle picked up the picture,Castle did not see any picture,Castle gave the picture to Seeger,Castle use his foot to push the picture under the couch,4,What did Castle do when he saw picture on the floor?,127203,Castle,54.16-63.72,castle_s03e22_seg02_clip_16,Castle use his foot to push the picture under the couch 5165,A car.,The orderly.,A nurse.,A patient.,A cowboy.,1,What did Cuddy say was Outside before she left the room?,127204,House M.D.,76.29-88.71,house_s06e11_seg02_clip_16,The orderly. 5166,sad,angry,tired,bored,worried,0,How did Amy feel when Sheldon walked in his room?,127205,The Big Bang Theory,0-9.18,s06e23_seg02_clip_14,sad 5167,Chandler,Monica,Pheobee,Rachel,Joey,3,Who was Ross yelling for after he ran into the airport?,127206,Friends,13.93-21.18,friends_s10e17-18_seg02_clip_38,Rachel 5168,Because Stuart is going crazy.,Because Phoebe is going crazy.,Because Janice is going crazy.,Because Rachel is going crazy.,Because Chandler is going crazy.,3,Why is Joey annoyed when he is talking about the party?,127207,Friends,0-9.91,friends_s09e20_seg02_clip_04,Because Rachel is going crazy. 5169,An ID tag,A gold chain,A police badge,A pair of sun glasses,A tie,2,What does Esposito have around his neck when he sits listening to Beckett?,127208,Castle,9.08-17.71,castle_s02e21_seg02_clip_04,A police badge 5170,A cowboy hat. ,A hospital bracelet and a hospital gown. ,A suit and tie. ,A leather jacket. ,A teeshirt and shorts. ,1,What does Sebastian wear when he talks to Dr. House? ,127209,House M.D.,69.77-77.87,house_s02e04_seg02_clip_01,A hospital bracelet and a hospital gown. 5171,Chandler wanted to get some coffee.,Chandler went to answer the door.,Chandler heard Joey crying.,Chandler saw a scary clown.,Monica told Chandler where to go look for Emma.,4,What makes Chandler run after talking to Monica?,127210,Friends,24.81-31.94,friends_s09e14_seg02_clip_15,Monica told Chandler where to go look for Emma. 5172,Because he can't read or write. ,"Because if he wrote a movie he wouldn't be able to get ""those guys"" to star in it.",Because he is blind. ,He doesn't know how to type.,He hates Good Will Hunting. ,1,Why is Joey frustrated after Ross tells him to write a moive like the Good Will Hunting guys?,127211,Friends,0-13.58,friends_s05e10_seg02_clip_04,"Because if he wrote a movie he wouldn't be able to get ""those guys"" to star in it." 5173,Everyone was crazy,Everyone was looking in the right place,Everyone was looking in the wrong place,They kept over looking it,Everyone was chasing something that never existed,2,What did Beckett and Castle discover about everyone's search for the gold after reviewing a map?,127212,Castle,81.83-88.57,castle_s07e07_seg02_clip_19,Everyone was looking in the wrong place 5174,Marshall was standing with his arms in his pockets.,Marshall was hunched over.,Marshall was standing with his arms at his side.,Marshall was standing with his arms crossed.,Marshall was standing with his arms over his head.,3,How was Marshall standing when Brad was talking to Marshall and Ted?,127213,How I Met You Mother,24.38-41.26,met_s02e05_seg02_clip_19,Marshall was standing with his arms crossed. 5175,goggles,sunglasses,eye glasses,lipstick,headtie ,0,What is Joe wearing on his face when he opens the door window for Beckett?,127214,Castle,41.48-44.64,castle_s03e04_seg02_clip_17,goggles 5176,Gum. ,A cigarette. ,A twizzler. ,A straw. ,A toothpick. ,1,What does Chandler have in his mouth when he is dancing in the snow?,127215,Friends,38.69-44.59,friends_s03e17_seg02_clip_16,A cigarette. 5177,She is feeling frustrated. ,She is feeling angry. ,She is feeling very nervous. ,She is disappointed. ,She is excited. ,2,How does Izzie feel when she is around Dr. Torres?,127216,Grey's Anatomy,47.31-56.78,grey_s03e19_seg02_clip_04,She is feeling very nervous. 5178,Cuddy is leaning on a window.,Cuddy is leaning on a cane.,Cuddy is leaning on her desk.,Cuddy is leaning on a wall.,Cuddy is leaning on the floor.,2,What is Cuddy leaning on when speaking to Westbrook and Mr.Avecedo?,127217,House M.D.,54.2-59.66,house_s06e13_seg02_clip_19,Cuddy is leaning on her desk. 5179,drop his crutch,turn the corner in the corridor,trip Taub,sit down in a wheelchair,ask a nurse for help,1,What does Chase do before Taub says he should have seen it and it was perfect?,127218,House M.D.,76.07-82.82,house_s08e12_seg02_clip_21,turn the corner in the corridor 5180,She is eating a french fry. ,She is drinking something. ,She is screwing a cap on a bottle. ,She is eating a hot dog. ,She is itching her arm. ,2,What is Phoebe doing when she is standing in front of Monica?,127219,Friends,0.9-4.8,friends_s02e20_seg02_clip_12,She is screwing a cap on a bottle. 5181,on space deck,in a cabin ,in the tunnel,in an airlock ,in the mess hall ,2,Where has the murder weapon been planted after the murder?,127220,Castle,31.91-36.46,castle_s07e16_seg02_clip_24,in the tunnel 5182,sitting on the kitchen island,in the sink,in the trash,on the floor,in the freezer,0,"Where is the open ice cream container before Amy says ""I'm drunk""?",127221,The Big Bang Theory,0-5.59,s04e19_seg02_clip_03,sitting on the kitchen island 5183,Tell her friends to leave. ,Shut the door behind her. ,Make lunch for herself. ,Sneeze. ,Go to the bathroom. ,1,What does Penny do after she walks into her apartment? ,127222,The Big Bang Theory,5.9-10.03,s06e06_seg02_clip_16,Shut the door behind her. 5184,In the apartment,At the bus stop,In the office,A cafeteria,A church,1,Where is Sheldon when having a conversation with a stranger,127223,The Big Bang Theory,24.04-30.79,s05e06_seg02_clip_14,At the bus stop 5185,She slaps Rachel. ,She rolls her eyes. ,She points to the counter. ,She falls asleep. ,She hugs Monica and Rachel. ,4,What does Phoebe do after she sits down at the coffee house?,127224,Friends,48.62-54.02,friends_s04e22_seg02_clip_09,She hugs Monica and Rachel. 5186,The narrator is Denny,The narrator is Meredith,The narrator is Bailey,The narrator is George,The narrator is Izzie,0,Who is narrating speaking on making everything better when Burke is cooking,127225,Grey's Anatomy,0-22.37,grey_s03e04_seg02_clip_25,The narrator is Denny 5187,Hugs Rita,Sits on the desk,Looks out the window,Puts his arms up in the air,Twiddles his thumbs,1,What does Vasiliy do when he says he knows things might not end up well for him/,127226,Castle,46.42-55.53,castle_s08e11_seg02_clip_20,Sits on the desk 5188,The boy's mom says she is mad,The boy's mom says she is tired,"The boy's mom says ""Then what?""",The boy's mom says she is fed up,The boy's mom says she is in love with House,2,What does the boy's mom say after Chase says they will keep him on the pads. ,127227,House M.D.,5.73-14.15,house_s01e08_seg02_clip_06,"The boy's mom says ""Then what?""" 5189,42,56,37,63,22,1,How many fava beans does Amy say she got into her mouth last night after Sheldon ask why she's acting odd?,127228,The Big Bang Theory,28.94-40.31,s08e09_seg02_clip_06,56 5190,Autosomal dominant polycystic kidney disease.,Glomerulocystic kidney disease,Polycystic kidney disease,Hemolytic uremic syndrome.,Interstitial nephritis,3,"Why did Cameron say Addie's kidneys shut down when she House, Chase and Foreman were discussing the Addie's diagnosis?",127229,House M.D.,16.32-19.85,house_s03e22_seg02_clip_18,Hemolytic uremic syndrome. 5191,five hours a day,His whole life,twenty minutes a day,once a week,once a year,1,How long does the woman tell House that he spends looking for answers when walking toward him?,127230,House M.D.,20.38-27.74,house_s04e08_seg02_clip_26,His whole life 5192,He sat down in a chair,He laughed maniacally,He smirked at the Captain,He acted like he was critically injured,He put on his coat,1,What did Simmons do after all the commotion in the interrogation room with Beckett and Castle?,127231,Castle,21.26-30.56,castle_s03e13_seg02_clip_08,He laughed maniacally 5193,He looked at flower.,He looked at a painting.,He looked at a wall.,He looked at a mugshot.,He looked at the television screen on the wall.,4,What did Tony Mueller look at after mentioning Wardell Williams name? ,127232,Castle,23.44-32.91,castle_s03e19_seg02_clip_05,He looked at the television screen on the wall. 5194,green,grey,purple,red,blue,2,"What color is the shirt House is wearing when he say's ""Then someone...""?",127233,House M.D.,79.46-89.28,house_s06e20_seg02_clip_03,purple 5195,Monica hurt her eye playing ping pong,Monica hurt her finger playing ping pong,Monica hurt her elbow playing ping pong,Monica hurt her wrist playing ping pong,Monica hurt her knee playing ping pong,3,What did Monica hurt when she was playing ping pong,127234,Friends,0-10.14,friends_s09e23-24_seg02_clip_47,Monica hurt her wrist playing ping pong 5196,Low white blood count,Low red blood count,Low blood pressure,High white blood count,High red blood count,0,"What does Wilson tell House he can't explain after ruling out drugs, cancer and MS?",127235,House M.D.,76.81-91.62,house_s02e05_seg02_clip_00,Low white blood count 5197,He blew up the house,he called them mom and dad for the first time.,he started cooking meth,He blew up the family cat,he decide to make a bomb,1,What happened after Mr. and Mrs. Kutner gave Lawrence a Chemistry set?,127236,House M.D.,13.84-20.09,house_s05e20_seg02_clip_07,he called them mom and dad for the first time. 5198,A baby,A computer,Papers,A foot,A woman,0,What is on the table when house is sitting,127237,House M.D.,18.71-25.08,house_s01e04_seg02_clip_17,A baby 5199,He throws a football,He falls over,He runs away,He opens the door,He spills his drink,3,What does Joey do after Mike asks if the coffee is sweet enough?,127238,Friends,32.04-37.84,friends_s09e06_seg02_clip_00,He opens the door 5200,Clean the floors,Pack bread,Built luxury boats,Repair the machinery,Manage his employees,2,What did Gabe do in his factory before he got sick?,127239,House M.D.,26.87-40.53,house_s03e07_seg02_clip_11,Built luxury boats 5201,Thirteen drank some coffee,Thirteen turned the lights off,Thirteen took her gloves off,Thirteen ate an apple,Thirteen laughed,2,What did Thirteen do after Masters said it would only take half an hour? ,127240,House M.D.,43.42-48.34,house_s07e19_seg02_clip_02,Thirteen took her gloves off 5202,"House, Mother Teresa","Cameron, Chase","Angelina Jolie, Chase",House,"Mother Teresa, Angelina Jolie",4,Who does House say is perfect when Wilson says nobody is?,127241,House M.D.,44.52-57.52,house_s01e19_seg02_clip_17,"Mother Teresa, Angelina Jolie" 5203,teach English,teach math,teach science,Teach architecture,teach bartending,3,What does Ted say he does for a living when at the restaurant?,127242,How I Met You Mother,12.06-17.76,met_s05e02_seg02_clip_02,Teach architecture 5204,Esposito,Orderly,Melanie Kopek,Craig,The Michelin Man,2,Who comes to identify the body of Doug when Castle and Beckett are in the morgue?,127243,Castle,63.69-71.82,castle_s02e14_seg02_clip_03,Melanie Kopek 5205,She turns on the TV.,She hugs him.,She gets out of bed.,She laughs.,She gets angry and yells at him.,3,What does Ellis do when Richard said she would have fought him for chief and probably won?,127244,Grey's Anatomy,54.34-62.8,grey_s03e14_seg02_clip_25,She laughs. 5206,One,Two,Three,Four,Six,2,How many rat traps did Mike have in his hand after Phoebe found the rat?,127245,Friends,35.52-40.02,friends_s09e12_seg02_clip_06,Three 5207,He starts to have a seizure,He starts beating Castle up,He begins to smoke weed,He takes Castle's phone,He slaps Castle,3,What does the suspect do to Castle when he discovers Castle talking on his phone?,127246,Castle,0-9.1,castle_s04e07_seg02_clip_02,He takes Castle's phone 5208,The flu.,Stress cardiomyopathy.,Cancer.,A brain tumor.,Pneumonia.,1,What does Izzie tell Verna she has when she is lying in a hospital bed?,127247,Grey's Anatomy,0-3.78,grey_s02e05_seg02_clip_18,Stress cardiomyopathy. 5209,Proud,Happy,Euphoric,Dumbfounded,Upset,4,What is Ross' emotional state when he first enters the apartment?,127248,Friends,0-8.25,friends_s08e16_seg02_clip_06,Upset 5210,Castle tells the corpse that he is busted because the dead man's love affair has been discovered by his wife.,Castle tells the corpse that he is busted because the dead man is discovered to have been a criminal.,Castle tells the corpse that he is busted because the dead man is discovered to have been gay.,Castle tells the corpse that he is busted because the dead man is only pretending to be dead.,Castle tells the corpse that he is busted because Castle is lonely and wants someone to talk to.,0,Why does Castle tell the corpse that he is busted after speaking with the women?,127249,Castle,41.9-75.7,castle_s02e10_seg02_clip_03,Castle tells the corpse that he is busted because the dead man's love affair has been discovered by his wife. 5211,a dog grabs the chicken,it flys away ,it drowns,house steals it,it poops on the floor,0,what happens to wilsons white chicken after talking to masters in his office?,127250,House M.D.,20.92-30.71,house_s07e19_seg02_clip_21,a dog grabs the chicken 5212,She thinks he needs to leave now. ,She's having an easy time trusting him. ,She is finding it difficult to concentrate because he keeps talking. ,She is finding it funny that he chooses now to barge into the van. ,She's having a hard time making a decision. ,4,How does Beckett feel when Gage is giving her all of this information?,127251,Castle,69.1-75.7,castle_s04e16_seg02_clip_14,She's having a hard time making a decision. 5213,Her forehead.,Her eye.,Her nose.,Her cheek.,Her lips.,4,What part of her face was Cuddy touching before she asked if he paid?,127252,House M.D.,28.82-37.83,house_s01e20_seg02_clip_07,Her lips. 5214,Bernadette,Amy,Penny,Howard,Raj,1,Who picks up the table tennis ball after Raj makes a terrible serve.,127253,The Big Bang Theory,51.63-61.1,s08e19_seg02_clip_11,Amy 5215,House wanted Foreman to perform an liver biopsy,House wanted Foreman to perform an bone marrow biopsy.,House wanted Foreman to perform an endometrial biopsy.,House wanted Foreman to perform an kidney biopsy.,House wanted Foreman to perform an bone biopsy.,2,What type of biopsy did House want Foreman to perform after Foreman went back to a certain patient?,127254,House M.D.,80.25-82.03,house_s02e11_seg02_clip_13,House wanted Foreman to perform an endometrial biopsy. 5216,to find the differences,to make fun of the picture,to trace the picture,to compare the similarities,to color the picture,3,"why does ryan place a sketch of a woman next to an actual picture of a woman when informing becket, esposito, and castle?",127255,Castle,20.49-29.15,castle_s07e19_seg02_clip_23,to compare the similarities 5217,A banana cream pie.,A frog.,A whoopee cushion.,An airhorn.,A snake.,4,What does Sheldon remove from a box before he sits down?,127256,The Big Bang Theory,0-18.55,s05e07_seg02_clip_05,A snake. 5218,write something down ,look out the window,shakes castles hand,kiss mrs. talbot,eat an apple,0,what does mr. talbot do before going over to check on his son?,127257,Castle,36.22-43.73,castle_s02e05_seg02_clip_07,write something down 5219,Being on time to staff appointments.,Buy more surgeyry tools.,Being more considerate beofer an promotion.,Plotting out more Emergency power plans if the hospital encounters an blackout.,The purpose of getting the chief nurse involved in current ER events in the hospital.,4,What is the advice between the male and the female nurse after the first question?,127258,Grey's Anatomy,76.86-89.29,grey_s01e03_seg02_clip_09,The purpose of getting the chief nurse involved in current ER events in the hospital. 5220,with the looters,when up for auction,with the police,Basement of the smithsonian,with Mr. X,3,Where does Hasheim propose is the safest place in the world when keeping history safe from looters?,127259,Castle,8.37-26.05,castle_s08e17_seg02_clip_25,Basement of the smithsonian 5221,Go on a vacation,Go hiking,Get a divorce,Try to have kids,Try to fix their marriage,0,What did the patients husband want to do when she gets better from her illness?,127260,House M.D.,52.25-75.16,house_s06e11_seg02_clip_24,Go on a vacation 5222,Oh dear God!!!,Don't forget genetic predisposition towards addiction. ,This is a terrible story,that's a lot pain,Is he still alive?,1,"What did Sheldon say after Toby ended his story with saying drink, shoot, and snort his pain away?",127261,The Big Bang Theory,0-36.61,s01e10_seg02_clip_14,Don't forget genetic predisposition towards addiction. 5223,Castle and Beckett go to the precinct,Castle and Beckett go to the hospital where Archie is,Castle and Beckett go to the crime scene,Castle and Beckett go to forensics team,Castle and Beckett don't go anywhere,1,Where do Castle and Beckett go to after the witness ID's the suspect as Archie Bronstein?,127262,Castle,50.68-69.69,castle_s07e19_seg02_clip_10,Castle and Beckett go to the hospital where Archie is 5224,They had already seen it.,They had no time to watch it.,They had a bet on the game.,They wanted to tell a person at the bar.,The bartender asked them the score.,1,Why was Barney trying to find out the score to the Super Bowl when he was looking at his phone.,127263,How I Met You Mother,48.68-56.61,met_s02e14_seg02_clip_02,They had no time to watch it. 5225,A note left by Chase ,Resumes for potential hires ,The patient's test results,Her resignation letter,Paperwork from Cuddy ,3,What does Cameron hand to House when he walks in to see her waiting in his office?,127264,House M.D.,0-19.38,house_s03e24_seg02_clip_24,Her resignation letter 5226,He spit out his toothpaste.,He didn't believe it.,He said he knew that already.,He said he wondered if Howard knew.,He got choked.,0,How did Leonard react when Priya said that Raj had a big crush on Bernadette?,127265,The Big Bang Theory,0-8.19,s05e01_seg01_clip_00,He spit out his toothpaste. 5227,Allison did.,Rachel did.,Monica did.,Phoebe did.,Maria did.,4,Who introduced herself to Ross when he was in the office?,127266,Friends,0-3.8,friends_s04e04_seg02_clip_06,Maria did. 5228,She had a strong motive.,She confessed to the murder.,She doesn't have an alibi.,She was found with the murder weapon.,She has a crazy killer look in her eye.,4,Why does Castle think Sarah is the killer after talking to her in the interrogation room?,127267,Castle,44.89-51.49,castle_s02e10_seg02_clip_24,She has a crazy killer look in her eye. 5229,Did a back flip.,Jumped for joy.,Shook his hand.,Gave a high five.,Did the fist pump.,2,What did Castle do after Mason Wood introduced himself?,127268,Castle,0-3.76,castle_s08e14_seg02_clip_05,Shook his hand. 5230,"Sheldon mentions Mark Zuckerberg, Steve Jobs and Bill Gates. ","Sheldon mentions Einstein, Tesla and Omoto.","Sheldon mentions Tesla, Edison and the Wright brothers.","Sheldon mentions Elon Musk, Tesla and Tolstoy.","Sheldon mentions Berscheid, Snyder and Omoto.",4,Who are the people Sheldon mentions after Penny says relationships are more complicated than french fries?,127269,The Big Bang Theory,29.82-50.9,s08e03_seg02_clip_08,"Sheldon mentions Berscheid, Snyder and Omoto." 5231,A wig,A monocle,A beard,A hat,A corset,1,What is the man wearing when Ted shows up?,127270,How I Met You Mother,5.29-11.17,met_s06e08_seg02_clip_05,A monocle 5232,"Sheldon just tells them what it said, no one had to ask. ",Bernadette asks what the letter said. ,Amy asks what the letter said. ,Penny asks what the letter said. ,Sheldon just gives them the letter when he sees them. ,3,What do the girls ask Sheldon about the letter when they are in the laundry room?,127271,The Big Bang Theory,14.17-16.59,s06e19_seg02_clip_06,Penny asks what the letter said. 5233,Would you like to have dinner sometime ?,Nothing,Good ,Bye ,perdect,0,What did Chandler say with Nina when He told with her ?,127272,Friends,0-60.09,friends_s01e16-17_seg02_clip_09,Would you like to have dinner sometime ? 5234,He found it in an orifice,He found it on the floor of the examining room,He found it on Wilson's desk,He found it in a drawer in the lab,He found it in the clinic,0,Where did House find the light he was shining on Cuddy when she was talking to the donors?,127273,House M.D.,84.2-92.03,house_s03e09_seg02_clip_00,He found it in an orifice 5235,He enjoys talking to House,He likes to mess with House,His intelligence scares him,Might lead to drinks tonight,Solving problems is easy ,1,Why does Wilson say he thought it would be fun before House seems upset?,127274,House M.D.,0-11.88,house_s04e01_seg02_clip_15,He likes to mess with House 5236,A vase of flowers,A cup and a plate.,A can and and box,A bag and a fruit,A phone and a book,1,What does Priya hold when she and Penny talk about foreplay in the hospital?,127275,The Big Bang Theory,33.61-42.02,s04e23_seg02_clip_13,A cup and a plate. 5237,Foreman,Mother Superior ,House,Cameron,Sister Augustine,4,Who is laying in the hospital bed before the scene ends?,127276,House M.D.,89.33-95.03,house_s01e05_seg02_clip_16,Sister Augustine 5238,this is a real story,This is a made up story,this is a dream,this in a zoo,nothing ,1,What was Amber telling House when she was whispering in his ear?,127277,House M.D.,4.73-8.78,house_s05e24_seg02_clip_25,This is a made up story 5239,He says he is stupid,He says nothing,Hes says get away,He say he is old,Leonard excellent I want to show you something,4,What does Sheldin say after the next scene starts?,127278,The Big Bang Theory,0-43.7,s01e13_seg02_clip_03,Leonard excellent I want to show you something 5240,At the table.,On the floor.,On the couch.,Outside.,On a bench.,2,Where did Monica and Ross sit when they were talking about fantasies?,127279,Friends,0-10.83,friends_s04e17_seg02_clip_02,On the couch. 5241,Sheldon pour water in a glass.,Sheldon drank soda.,Sheldon stand.,Sheldon stopped eating.,Sheldon cooked.,3,What did Sheldon do after Dr. Gablehauser Arrived?,127280,The Big Bang Theory,0-58.35,s01e12_seg01_clip_00,Sheldon stopped eating. 5242,a stack of books,houses cane,a puppy,a baby,blood samples,3,What is taub holding when he is in houses office discussing a patient with the group?,127281,House M.D.,0-9.9,house_s08e06_seg02_clip_06,a baby 5243,Joey,Phoebe,Chandler,Ross,Leslie ,1,Who tries to calm Rachel down after she starts to pack Monica's belongings in the apartment?,127282,Friends,4.27-19.83,friends_s06e06_seg02_clip_12,Phoebe 5244,Chase wants to investigate the condition of Bob's feet carefully.,Chase sees pus oozing out of Bob's socks.,Chase smells sulfur coming from Bob's feet.,Bob has bumps and welts appearing on Bob's legs.,Blood stains are appearing through Bob's socks.,0,Why does Chase prevent Maria when Maria attempts to remove Bob's socks?,127283,House M.D.,50.08-63.74,house_s02e15_seg02_clip_09,Chase wants to investigate the condition of Bob's feet carefully. 5245,She was having difficulty breathing. ,She had broken her leg. ,She had nearly drowned in a pool.,She had a stroke caused by a blood clot. ,She was admitted due to anaphylactic shock from a bee sting. ,3,[Why/...] did Foreman say Jasper's young sister admitted to the hospital [when/] Foreman discusses it in her hospital room?,127284,House M.D.,0-4.79,house_s03e19_seg02_clip_05,She had a stroke caused by a blood clot. 5246,Ross told Joey he really appreciated his gesture.,Ross tried to change the subject.,Ross told Rachel he would love it.,"Ross gave Rachel a sad, hound dog look.",Ross put his hand on Rachel's tummy.,3,What did Ross do when Rachel said she didn't think Ross wanted her to move in with him?,127285,Friends,54.28-60.79,friends_s08e14_seg02_clip_15,"Ross gave Rachel a sad, hound dog look." 5247,Nothing,Call a doctor,Go to the ER,Continue to their vacation,Stay at home,4,What does Howard suggest they do after Bernadette throws up?,127286,The Big Bang Theory,42.11-46.08,s10e05_seg02_clip_02,Stay at home 5248,Rachel is drinking a bottle of water.,Rachel is drinking orange juice.,Rachel is drinking soda.,Rachel is drinking grape juice.,Rachel is drinking lemonade.,0,What is Rachel drinking when she talks to Phoebe and Monica?,127287,Friends,0-23.57,friends_s08e02_seg02_clip_03,Rachel is drinking a bottle of water. 5249,Her tea party.,Her soccer party.,Her hockey party.,Her Tupperware party.,Her football party.,4,What did Penny went well after Leonard asked her about it?,127288,The Big Bang Theory,43.88-46.33,s03e06_seg02_clip_02,Her football party. 5250,He never liked kids.,He thought she had a son.,He realizes he may still have a chance with her.,He didn't think Stella could have kids.,She doesn't seem like the mom type to him.,2,Why is Ted surprised when Lucy reveals she has a daughter?,127289,How I Met You Mother,13.81-28.21,met_s03e13_seg02_clip_13,He realizes he may still have a chance with her. 5251,Alexis,Ryan,Esposito,Lanie,Castle,4,Who is with Beckett when she is in her office?,127290,Castle,0-3.2,castle_s08e07_seg02_clip_06,Castle 5252,She frightened him into answering,She let kim know he was a suspect.,"She was playing good cop, bad cop",She wanted Zach to know she was in charge,She was out of ideas,0,Why did Beckett mention that Zach had no alibi after he refused to tell them more?,127291,Castle,13.5-33.31,castle_s02e20_seg02_clip_21,She frightened him into answering 5253,Wilson,House,Taub,Foreman,Chase,2,Who is with Thirteen in the hospital room when they are doing a rectal exam?,127292,House M.D.,65.08-71,house_s05e01_seg02_clip_04,Taub 5254,She is staying with him,She is going to Hawaii,She is going to reorganize her closet,She is separating from her ex-lover,She is moving into a house,0,What is exclaimed by the woman when she sees House?,127293,House M.D.,0-6.03,house_s02e11_seg02_clip_24,She is staying with him 5255,Dr. Burke doesn't want Cristina to see him cry.,He is giving them privacy so Cristina can tell her mother they are involved.,He is late to see another patient.,Dr. Burke is uncomfortable around women,He is giving them privacy because they are beginning to argue,4,Why does Dr. Burke leave the room when Helen and Cristina are talking?,127294,Grey's Anatomy,73.03-93.03,grey_s02e04_seg02_clip_00,He is giving them privacy because they are beginning to argue 5256,Flowers,A bottle of water,A guest book,A hotel key,A phone,0,What is Phoebe holding when she tells Monica she's with child? ,127295,Friends,1.12-10.64,friends_s08e01_seg02_clip_01,Flowers 5257,Ross feels excited,Ross feels unprepared,Ross feels joyful,Ross feels ecstatic,Ross feels guilty,1,How does Ross say he feels about Elizabeth wanting to take him on a trip when he discusses it with Joey?,127296,Friends,16.07-31.2,friends_s06e19_seg02_clip_06,Ross feels unprepared 5258,Esposito is eating,Esposito is reading,Esposito is dancing,Esposito is sleeping,Esposito is sitting awkwardly next to a girl who is touching his face,4,What is Esposito doing after Castle sits down?,127297,Castle,0-5.42,castle_s06e18_seg02_clip_11,Esposito is sitting awkwardly next to a girl who is touching his face 5259,Kiss Joey,Smoke,Eat pie,Work at McDonalds,Read for pleasure,4,What does the perfect woman do before being set up with Ross?,127298,Friends,11.79-15.82,friends_s09e14_seg02_clip_04,Read for pleasure 5260,A hair brush. ,Her purse.,Emma.,A new recliner.,A brown bag.,4,What is Rachel carrying after she walks into the apartment?,127299,Friends,34.14-37.35,friends_s09e16_seg02_clip_04,A brown bag. 5261,The dancers selected their spot on the platform.,The producers selected the dancers.,The audience selected the dancers.,The dancers are professionals.,The dancers learned how to dance.,4,How did the dancers get on one of the platforms after Ross and Monica are curious about how they got up on there?,127300,Friends,14.85-18.56,friends_s06e10_seg02_clip_07,The dancers learned how to dance. 5262,MPs,security guards,secret service,no one,FBI agents,0,who did foreman say would be stationed at every entrance of the second floor when talking to house?,127301,House M.D.,10.81-15.04,house_s08e15_seg02_clip_00,MPs 5263,House will be upset if they don't complete the procedure,She just wants more attention ,She objects to being treated at that hospital,She was panicked before but she has calmed down,"She probably just fell asleep, she's exhausted",4,What reason does Chase give to leave the patient in peace after Cameron suggests removing the patient and halting the procedure?,127302,House M.D.,29.77-56.14,house_s01e01_seg02_clip_05,"She probably just fell asleep, she's exhausted" 5264,She sits on the couch. ,She puts it on Ross. ,She gets a slice of pizza ,She gets a drink from the fridge. ,She plays with it. ,4,What does Rachel do before she takes her scarf off?,127303,Friends,6.15-10.25,friends_s04e13_seg02_clip_08,She plays with it. 5265,Shouting.,Knocking.,Kicking.,Ringing the doorbell.,Calling by phone.,1,How did Howard let Leonard know he is at the door after his arrival?,127304,The Big Bang Theory,8.05-14.91,s07e04_seg02_clip_09,Knocking. 5266,They haven't pick out any baby names.,They don't know the Baby's gender.,They haven't decided on God Parents.,They haven't told anyone Bernadette is pregnant. ,They haven't had a baby shower.,1,Why does Bernadette ask Howard if their weird when talking to about their future baby?,127305,The Big Bang Theory,2.01-15.75,s10e04_seg02_clip_10,They don't know the Baby's gender. 5267,the office,Mystery,A maintenance worker,Fire ax on stage,the bathroom,3,Where did the ax come from before it was used as a weapon to kill the victim?,127306,Castle,70.7-75.35,castle_s03e18_seg02_clip_01,Fire ax on stage 5268,Legs,Head,Feet,Hands,Toes,1,What part of body does Lanie need to get information when she is talking with the detectives?,127307,Castle,47.81-55.1,castle_s04e03_seg02_clip_18,Head 5269,Wonderwoman,Spiderman Villians,Superman,Batman villians,Dogs,3,What does Jen say her cats were dressed up as when at the bar?,127308,How I Met You Mother,26.22-38.44,met_s05e02_seg02_clip_12,Batman villians 5270,a cell phone,picture of a woman,cup of coffee,picture of a man,nothing,3,What did Ryan gave Beckett when she was sitting at the desk ?,127309,Castle,18.28-27.86,castle_s01e06_seg02_clip_11,picture of a man 5271,She is standing near the stove.,She is standing near the arm chair.,She is standing near the kitchen table.,"She is standing near doorway, she just walked in.",She is leaning standing near the refrigerator door.,0,What is the lady in the brown jacket standing near when talking to Monica about auditioning?,127310,Friends,0-4.2,friends_s01e21_seg02_clip_11,She is standing near the stove. 5272,an apple,a cellphone,a notepad,coffee,a sweater,2,"what is Howard holding in his hand when he said ""its pretty sweet huh"" ?",127311,The Big Bang Theory,7.25-16.72,s05e02_seg02_clip_00,a notepad 5273,Chandler and Monica talked about where they want to live,Chandler and Monica talked about adoption,Chandler and Monica talked about what they would name their child,Chandler and Monica talked about living without children,Chandler and Monica talked about all their nephews,1,What did Chandler and Monica talk about concerning their family before they talked about a baby,127312,Friends,0-10.25,friends_s09e22_seg02_clip_21,Chandler and Monica talked about adoption 5274,Phoebe walked into the restaurant ,Gunther walked into the restaurant ,Guy walked into the restaurant ,Richard walked into the restaurant ,Ross walked into the restaurant ,3,Who walked into the restaurant when Chandler was romantically talking to Monica,127313,Friends,47.91-58.28,friends_s06e24-25_seg02_clip_07,Richard walked into the restaurant 5275,A turtle neck,A crew neck t shirt,A pink sweater,A yellow blouse,She had on a rain coat,0,What type of shirt was Beckett wearing when she was talking to Esposito Castle and Ryan?,127314,Castle,34.21-49.06,castle_s05e11_seg02_clip_07,A turtle neck 5276,He sets it down,He drops it,He throws it on Penney,He tips it then gulps,He spits it out,3,What does Raj do with his drink after he kicks the door?,127315,The Big Bang Theory,0-52.78,s02e04_seg02_clip_07,He tips it then gulps 5277,Bailey,Derek,Addison,Richard,Mark ,0,Who paged Izzie when in a patients room?,127316,Grey's Anatomy,0-6.11,grey_s03e12_seg02_clip_03,Bailey 5278,She punched him in the arm.,She sat down.,She made a sandwich.,She changed her costume.,She drank a beer. ,0,"What did Penny do after Howard said, ""No on is looking at her hair""? ",127317,The Big Bang Theory,6.28-11.7,s04e11_seg02_clip_08,She punched him in the arm. 5279,They hit each other. ,They hug. ,They chase each other. ,They drink coffee. ,They cry by themselves. ,1,What do Rachel and Monica do when they are both frowning at the coffee house?,127318,Friends,8.4-12.31,friends_s02e02_seg02_clip_14,They hug. 5280,A boot,A cup,A bag,A plate,A gun,2,What did the man in turtle neck shirt pick up from the counter when he was about to leave?,127319,Friends,48.52-53.4,friends_s02e14_seg02_clip_07,A bag 5281,by pulling on a hidden lever disguised as a book,by saying open sesame,by pushing a button,clapping three times,facial recognition,0,How did alex get a secret passage way to appear when is showing castle his new space?,127320,Castle,11.53-21.28,castle_s08e01_seg02_clip_03,by pulling on a hidden lever disguised as a book 5282,Montgomery,Gates,Lanie,MaMa,Martha,2,Who did Beckett slap before Ryan and Esposito walked in?,127321,Castle,50.98-57.35,castle_s08e09_seg02_clip_04,Lanie 5283,House is holding his cane,House is holding a guitar,House is holding a remote control,House is holding a bowl of popcorn,House is holding his cellphone,1,What is House holding in his hands when the lady is reading the pink covered book ,127322,House M.D.,42.88-52.46,house_s07e22_seg02_clip_00,House is holding a guitar 5284,Mystery Theater,Science Connections,SkyMall,Ellery Queen,Alfred Hitchcock's Mysteries,2,What magazine was Castle excited about receiving after he got the mail?,127323,Castle,3.2-6.86,castle_s04e03_seg02_clip_00,SkyMall 5285,House is hiding his medicine in his cane,House is hiding his medicine in his shoe,House is hiding his medicine under his pillow,House is hiding his medicine in his toilet tissue,House is hiding his medicine in his soap,2,Where is House hiding his medicine after he wakes up,127324,House M.D.,51.76-60.77,house_s08e01_seg02_clip_10,House is hiding his medicine under his pillow 5286,On the car,On the window,On the table,On the floor,On the couch,4,Where was the man in blue shirt sitting when he passed the newspaper to Chandler? ,127325,Friends,0-2.7,friends_s04e02_seg02_clip_03,On the couch 5287,She ran out of the room,She took a sip of her beer,She took a bite of food,She told House not to tell anyone,She laughed,1,What did Thirteen do a few seconds after she told House that she killed a man,127326,House M.D.,65.54-74.64,house_s07e18_seg02_clip_07,She took a sip of her beer 5288,Change,Keys,Bottles,His drink,Peanuts,1,"What does the bartender take from House when he says ""You're not getting them back""?",127327,House M.D.,22.76-27.76,house_s04e16_seg02_clip_15,Keys 5289,it displayed them as child molesters ,it showed them as rapist,the show depicted them as terrorist and villians,it spun them off as simple men,it showed them with no class,2,why did the man at the dry cleaners dislike joeys show when he asked for his opinion,127328,Friends,0-38.53,friends_s06e22_seg02_clip_03,the show depicted them as terrorist and villians 5290,Chandler had met Ginger's very large father,Chandler was very short compared to Ginger,Chandler was very thin compared to Ginger,Chandler was freaked out by Ginger's leg,Chandler thought Ginger wasn't pretty enough,3,Why did Chandler say he was the smallest person in the wall when he spoke to Monica?,127329,Friends,39.89-57.39,friends_s03e14_seg02_clip_13,Chandler was freaked out by Ginger's leg 5291,He is drinking a cup of coffee.,He is tying a tie.,He is looking at samples through a microscope.,He is twirling a pen. ,He is pouring a glass of wine. ,2,What is Wilson doing when he tells House to ask for help if he needs it?,127330,House M.D.,0-3.8,house_s02e17_seg02_clip_16,He is looking at samples through a microscope. 5292,To look at bridal magazines.,To see Bernadette's wedding dress.,To the mall.,To have some wine at Penny's place.,To catch a showing of the latest Nicholas Sparks movie.,0,Where do the girls go after Sheldon suggests they talk about CERN?,127331,The Big Bang Theory,44.12-98.04,s05e08_seg01_clip_01,To look at bridal magazines. 5293,Because he didn't understand English.,Because he was innocent.,Because he really didn't know anything.,Because he stayed silent on the advice of his high-powered counsel.,Because he was protecting a family member.,3,Why did the suspect not say anything when he was questioned by the detectives?,127332,Castle,35.35-39.33,castle_s07e06_seg02_clip_19,Because he stayed silent on the advice of his high-powered counsel. 5294,A new leg,A murder,A new life,A bribe,A new brain,3,What does House say it would be a good time for when he is speaking with the patient?,127333,House M.D.,4.01-12.91,house_s01e14_seg02_clip_17,A bribe 5295,Joey has to call their other friends. ,Joey needs to stop by the ATM. ,Joey has to film one more scene. ,Joey needs to change his clothes. ,Joey needs to fix his hair. ,3,What does Joey need to do before he and Rachel go to dinner?,127334,Friends,22.98-28.12,friends_s08e05_seg02_clip_02,Joey needs to change his clothes. 5296,Its no different than how she feels every day,She wasnt paying attention,She only noticed when they hurt,She always slept through the symptoms,Her symptoms caused denial ,0,Why did Foreman say the patient didn't notice the initial symptoms after mentioning guillian-barre?,127335,House M.D.,63.38-71.06,house_s05e10_seg02_clip_14,Its no different than how she feels every day 5297,Asia,South America,Europe,Australia,Africa ,2,Which continent does Colette say that Michael was supposed to travel to when discussing him with Castle and Beckett?,127336,Castle,31.03-38.33,castle_s04e11_seg02_clip_10,Europe 5298,balloons,burgers,beer,cigarettes,a potted plant,0,What does the visitor bring into the room after Hand admits to taking an unidentified drug?,127337,House M.D.,43.38-66.88,house_s01e12_seg02_clip_08,balloons 5299,Chase said the contractions are less frequent,Chase said the Contraction are more frequent,Chase did not say anything about the contractions,Chase said the contractions are bad,Chase said the contractions are great,0,What did Chase say about the patients contractions when he entered the break room?,127338,House M.D.,33.14-39.94,house_s01e18_seg02_clip_05,Chase said the contractions are less frequent 5300,Monica calls Rachel a thief.,Monica calls Rachel's boyfriend a thief.,Monica calls Ross' girlfriend a thief.,Monica calls Rachel's coworker a thief.,Monica calls both Ross and Rachel thieves. ,1,Who does Monica call a thief when talking to Ross and Rachel?,127339,Friends,0-6.09,friends_s04e05_seg02_clip_19,Monica calls Rachel's boyfriend a thief. 5301,Sexual photographs.,Reports on the murder scene.,Family photographs.,Photographs of the crime scene.,The murder weapon. ,0,What does Ryan show to Castle after Castle asks to see it?,127340,Castle,24.11-34.38,castle_s03e11_seg02_clip_15,Sexual photographs. 5302,Esposito and Ryan are they are in a library,Esposito and Ryan are in a restaurant,Esposito and Ryan are in the conference room,Esposito and Ryan are in an interrogation room,Esposito and Ryan are they are at a bank,3,Where are Esposito and Ryan when they are sitting at the table with the man in the jean jacket,127341,Castle,0-9.62,castle_s03e10_seg02_clip_13,Esposito and Ryan are in an interrogation room 5303,I'm always going to be on the outside.,"Talk to me, girlfriend.","No ones does, if they can help it.",Castle and I are about to become a family.,Thank you for all of your help with Castle and Alexis.,4,What did Beckett ask Lanie after opening the door?,127342,Castle,0-3.57,castle_s06e07_seg02_clip_16,Thank you for all of your help with Castle and Alexis. 5304,Ross came to the coffee shop.,No one came to the coffee shop.,Chandler came to the coffee shop.,Joey came to the coffee shop.,Monica's friend Richard came to the coffee shop.,0,Which friend came to the coffee shop when the three girls were talking about the book?,127343,Friends,6.4-14.41,friends_s02e19_seg02_clip_04,Ross came to the coffee shop. 5305,his friends,Castle,Jane,his wife,the group,2,Who did Ryan include when he gave his toast?,127344,Castle,0-15.92,castle_s04e04_seg02_clip_27,Jane 5306,Spaghetti.,A slice of pie.,A chocolate bar.,A carrot stick.,Potato chips.,4,What is Phoebe eating when Joey charms her?,127345,Friends,0-25.33,friends_s06e21_seg02_clip_12,Potato chips. 5307,Been to a movie.,Flew in an airplane.,Ridden in a car.,Talked to a girl.,Gone through the tunnel.,4,What does Joey say he's never done before?,127346,Friends,1.53-9.15,friends_s03e04_seg02_clip_06,Gone through the tunnel. 5308,Confident,Nervous,Happy,Angry,Scared,1,How does Leonard appear when meeting Alicia?,127347,The Big Bang Theory,0-19.51,s02e19_seg02_clip_02,Nervous 5309,Taub said Danny lived 15 minutes away.,Taub said Danny lived 10 miles away.,Taub said Danny lived 30 minutes away.,Taub said Danny lived 20 miles away.,Taub said Danny lived 2 hours away.,2,How far did Taub say Danny lived from the hospital when he showned House a paper?,127348,House M.D.,20.01-23.01,house_s07e17_seg02_clip_15,Taub said Danny lived 30 minutes away. 5310,Mandy said Jesse was a small-time hood with no dreams.,Mandy said Jesse was a snake and she wishes she'd never met him.,Mandy said Jesse was a small man with a small mind.,Mandy said Jesse was human trash and that night was the biggest mistake of her life.,Mandy said Jesse raped her.,3,What did Mandy say to Celebgazer about Jesse after they spend the night together?,127349,Castle,39.62-48.52,castle_s06e13_seg02_clip_04,Mandy said Jesse was human trash and that night was the biggest mistake of her life. 5311,"Silly Harry, Cobra","Dirty Harry, Cobra","Harry, Snake","Dirty Harry, Snake","Cobra, Snake",1,Who are the best cops according to Castle when he's speaking to Beckett,127350,Castle,0-18.11,castle_s03e13_seg02_clip_11,"Dirty Harry, Cobra" 5312,a bandage wrap,a tattoo,stitches,a spider,bumps from a reaction,0,what does cameron have on his arm when he is in the conference room talking to the team ?,127351,House M.D.,17.8-21.81,house_s03e19_seg02_clip_19,a bandage wrap 5313,Ryan said Diego was a cashier.,Ryan said Diego was a janitor.,Ryan said Diego was a busboy.,Ryan said Diego was a construction worker.,Ryan said Diego was a bartender.,1,What did Ryan say Diego did for a living after Castle brought his name up?,127352,Castle,82.05-84.29,castle_s08e13_seg02_clip_12,Ryan said Diego was a janitor. 5314,In her apartment.,The doctors office.,In the park.,At Chandler and Joey's,At the coffee shop. ,1,"Where are Ross and Monica when Ross asks Monica, ""Did you tell him about my squirt gun idea""?",127353,Friends,28.04-31.87,friends_s02e06_seg02_clip_07,The doctors office. 5315,5 years,10 years,15 years,20 years,50 years,3,How long did Joey say it had been since the city had had a bad blizzard after he walked in the apartment?,127354,Friends,28.49-37.78,friends_s10e12_seg02_clip_20,20 years 5316,A pen,A bag,A phone,A stick,A jacket,2,What did Cuddy had in her hand when she walked into the massaging room. ,127355,House M.D.,0-8.4,house_s06e13_seg02_clip_19,A phone 5317,he pushes Alexis,he holds Alexis's hand,he kisses Alexis on the cheek,he hugs Alexis,he doesn't do anything,3,What does Castle do after he gets up from sitting down and gets close to Alexis?,127356,Castle,42.73-52.34,castle_s01e10_seg02_clip_21,he hugs Alexis 5318,He is afraid she has told Rachel something he does not want her to know.,He is worried about being late.,He is worried because he lost his wallet.,He is afraid Jasmine will hit him.,He is worried that he is loosing his looks.,0,Why is Ross so worried when he is talking to Jasmine?,127357,Friends,0-17.7,friends_s03e16_seg02_clip_07,He is afraid she has told Rachel something he does not want her to know. 5319,She went to dance class.,She called another friend.,She ordered a pizza,She spun in circles,She acted surprised that she was really on the phone with Sheldon.,4,What did Penny do with her phone after she talked about being in a play?,127358,The Big Bang Theory,0-55.3,s02e17_seg02_clip_09,She acted surprised that she was really on the phone with Sheldon. 5320,Danny said Sid's show had been around for 20 years.,Danny said Sid's show had been around for 38 years.,Danny said Sid's show had been around for 5 years.,Danny said Sid's show had been around for 35 years.,Danny said Sid's show had been around for 15 years.,3,How many years did Danny say Sid's show had been around when he was giving a speech?,127359,Castle,3.19-6.83,castle_s07e22_seg02_clip_03,Danny said Sid's show had been around for 35 years. 5321,A child.,An adult.,A baby.,A father.,An elderly person.,2,Who does Robin compare Marshall to when she is sitting down with Barney and Ted?,127360,How I Met You Mother,35.91-58.39,met_s02e01_seg02_clip_03,A baby. 5322,Phoebe and Rachel walk in together,Monica and Joey walk in together,Chandler and Joey walk in together,Rachel and Ross walk in together,Chandler and Ross walk in together,2,Who walks in together when they enter the cafe?,127361,Friends,0-3.15,friends_s01e04_seg02_clip_01,Chandler and Joey walk in together 5323,kitchen,bathroom,Through the door,outside,car,2,Where does House come from before Wilson starts talking?,127362,House M.D.,0-5.67,house_s01e08_seg02_clip_08,Through the door 5324,A pen.,A bagel.,A cup of coffee.,A book.,A cellphone.,1,What was House holding in his hand when he said he wanted new labs to Foreman?,127363,House M.D.,63.05-67.16,house_s03e15_seg02_clip_00,A bagel. 5325,going through her purse,picking up her glass,reading a book,talking on the phone,showing Monica her new jewlery,1,What was Phoebe doing when Joey and Chandler walked in the cafe?,127364,Friends,0-6.93,friends_s01e04_seg02_clip_01,picking up her glass 5326,He kissed her ,He slapped her ,He kicked her ,He lie her down ,He gave her a knock ,0,What did Ross do after Emily after she said Yes ?,127365,Friends,54.01-59.03,friends_s04e19_seg02_clip_13,He kissed her 5327,Diabetes.,A heart disease.,Lyme disease.,Liver failure.,Cancer.,0,What House determines woman has when insulting her therapist?,127366,House M.D.,20.48-37.78,house_s03e16_seg02_clip_11,Diabetes. 5328,blue,grey,white,yellow,black,4,"What color is the shirt Rachel is wearing when she say's ""Joey Tribbiani...""?",127367,Friends,53.26-63.03,friends_s06e15-16_seg02_clip_04,black 5329,He walked out the door.,He kissed Rachel.,He sat on the floor.,He flipped through the notepad.,He hugged Monica.,3,"What did Ross do after he said ""Boy""?",127368,Friends,22.01-24.76,friends_s06e15-16_seg02_clip_20,He flipped through the notepad. 5330,She spilt on him ,She slapped him ,She gave him a knock ,She kissed him,She urinate on him ,3,What did ross do to the guy wearing a white shoe after he climb bed with her ,127369,Friends,2.95-7.97,friends_s08e23-24_seg02_clip_16,She kissed him 5331,Sandy Rivers,Two pretty girls,Robin,The bartender,Lily and Marshall.,4,Who is standing behind Ted and Barney when Barney is giving Ted a pep talk?,127370,How I Met You Mother,1.51-7.53,met_s03e03_seg02_clip_13,Lily and Marshall. 5332,Burke is reading,Burke is sleeping,Burke is whistling,Burke is watching tv,Burke is cooking chicken,4,What is Burke doing after Christina enters the room?,127371,Grey's Anatomy,0-9.89,grey_s03e04_seg02_clip_25,Burke is cooking chicken 5333,Toy plane doesn't move.,The toy plane broke.,Toy plane went down.,Toy plane hits Sheldon.,The toy plane fly.,4,What happen after the toy plane moves its helix?,127372,The Big Bang Theory,11-52.38,s08e22_seg02_clip_16,The toy plane fly. 5334,A wealthy family,The police,The lottery,A multinational corporation,The Mayor's office,2,Who is Miranda's employer when her family is kidnapped?,127373,Castle,10.01-24.12,castle_s06e10_seg02_clip_23,The lottery 5335,Eats some food,Pours a glass of wine,Plays with her necklace,Plays with her hair,Goes to the kitchen,1,What does Ross' date do when she's talking about being a chef?,127374,Friends,10.73-14.96,friends_s06e08_seg02_clip_12,Pours a glass of wine 5336,Unemployed.,35.,40.,Rich.,married.,2,What did Ross say everyone would be when it's ten years later?,127375,Friends,56.25-64.71,friends_s07e14_seg02_clip_19,40. 5337,At the wall,In the bin,At Wilson,Inside the house,Outside the window,3,Where did House throw the money after he squeezed it?,127376,House M.D.,44.01-51.02,house_s05e02_seg02_clip_18,Inside the house 5338,A bannister.,Raj's shoulder.,The refrigerator door.,A counter.,A book shelf.,2,What was Leonard leaning on when Sheldon said Tom is going to med school?,127377,The Big Bang Theory,0-4.62,s02e03_seg02_clip_16,The refrigerator door. 5339,Sheldon,Amy,Penny,Stuart,His mother,0,Who did Leonard say he was worried about when he was talking to Howard and Raj?,127378,The Big Bang Theory,16.92-23.99,s04e03_seg02_clip_10,Sheldon 5340,Because they missed Monica's birthday,Because they missed Thanksgiving dinner,Because they missed Christmas,Because they're late to Thanksgiving dinner,Because they missed Chandler's birthday,3,"Why do Phoebe, Ross and Joey say that they were mugged before coming to Monica's",127379,Friends,0-29.83,friends_s10e08_seg02_clip_09,Because they're late to Thanksgiving dinner 5341,Because Kripke threatened him,Because it was much better than theirs,Because Kripke was going to cheat,Because Kripke paid off the judges,Because Kripke had never been beat by anyone before,1,Why was Leonard intimidated by Kripke's robot after speaking with him about it,127380,The Big Bang Theory,13.69-50.72,s02e12_seg02_clip_14,Because it was much better than theirs 5342,watching tv,making a sandwich,kissing Phoebe ,eating Chinese food,smoking ,3,what is Joey doing when he's talking to Rachel?,127381,Friends,0-7.97,friends_s03e17_seg02_clip_01,eating Chinese food 5343,Howard shows the guys the ring fits on his finger. ,Howard shows the guys production markings inside the ring. ,Howard shows the guys the ring fits on Leonard's finger. ,Howard shows the guys the ring fits on Sheldon't french fry. ,Howard shows the guys his power after he puts the ring on. ,1,What does Howard do to prove that the ring is close to magical after Sheldon scoffs at him?,127382,The Big Bang Theory,57.11-58.92,s03e17_seg02_clip_02,Howard shows the guys production markings inside the ring. 5344,A pen,A pager,A clipboard,Nothing,A needle,2,What is Olivia holding when George meets her in the hospital room?,127383,Grey's Anatomy,23.21-28.22,grey_s02e02_seg02_clip_20,A clipboard 5345,Joey is disappointed because Annabelle is married.,Joey is disappointed because Annabelle is going out with the costumed cowboy.,Joey is disappointed because Annabelle doesn't want to be his friend.,Joey is disappointed because Annabelle leaves with the old man behind the counter.,Joey is disappointed because Annabelle doesn't like his suit.,1,Why is Joey disappointed after Anabelle leaves the store?,127384,Friends,14.34-43.94,friends_s02e02_seg02_clip_04,Joey is disappointed because Annabelle is going out with the costumed cowboy. 5346,Her dress color is Purple,Her dress color is black,She does not have on a dress,She has on a green dress,She has on a grey dress,0,What color is Lily's dress when she walks in the resturant with Ted?,127385,How I Met You Mother,38.46-44.29,met_s04e01_seg02_clip_09,Her dress color is Purple 5347,Colonel Williams is accepting of their proposition.,"Colonel Williams is angry at Sheldon, Leonard, and Howard.",Colonel Williams breaks down crying.,Colonel Williams gets up and silently leaves the office.,Colonel Williams opens a window to get some air.,0,"What is Colonel Williams' reaction when Sheldon, Leonard, and Howard finish their speech?",127386,The Big Bang Theory,39.4-70.82,s10e03_seg02_clip_17,Colonel Williams is accepting of their proposition. 5348,Talking on the phone.,Using the toilet.,Rearranging his office.,Using the fax machine.,Vacuuming the floor.,0,What is Ross doing when he said something about goofing around?,127387,Friends,0-3.54,friends_s03e12_seg02_clip_02,Talking on the phone. 5349,He runs down the hallway ,He has him escorted off of the premises,He throws a piece of bread at him ,He opens the door,He starts to cry,3,What does Wilson do after House yells outside of his door?,127388,House M.D.,17.55-25.66,house_s04e03_seg02_clip_17,He opens the door 5350,A summons.,His card.,A package.,A letter.,A medal.,1,What does the man give Raj before leaving?,127389,The Big Bang Theory,46.74-55.7,s10e01_seg02_clip_02,His card. 5351,"If it was PTSD, the twitching wouldnt have magically disappeared.",None of the patients symptoms matched those of PTSD.,There was no reason for the patient to have PTSD.,PTSD is a made up disease.,Foreman definitely thinks the patient has PTSD.,0,Why doesnt Foreman think that the patient has PTSD after Chase suggests that the patient might have PTSD?,127390,House M.D.,60.74-69.02,house_s02e13_seg02_clip_19,"If it was PTSD, the twitching wouldnt have magically disappeared." 5352,both,left,his right hand,neither,no cane,2,what hand was house holding his cane in when walking,127391,House M.D.,5.64-13.16,house_s05e02_seg02_clip_01,his right hand 5353,She wore the black wig.,She walked out the door.,She sat on the couch.,She watched TV.,She hugged Sheldon. ,1,What did Penny do after saying she wasn't going?,127392,The Big Bang Theory,43.67-46.24,s04e11_seg02_clip_08,She walked out the door. 5354,Getting a water from the fridge.,Walking into her apartment.,Opening her Apartment door.,Walking up the stairs.,Sitting down at the couch. ,2,What is Penny doing when she asks Leonard who his special girl is?,127393,The Big Bang Theory,34.79-39.06,s06e12_seg02_clip_07,Opening her Apartment door. 5355,Robin and Barney. ,Lily and Marshall. ,Fred and Wilma. ,Barney and Lily. ,Ted and Lily,0,Which friends are on the couch making out when they all get back to the apartment? ,127394,How I Met You Mother,71.43-80.72,met_s05e01_seg01_clip_02,Robin and Barney. 5356,Phoebe is playing a song.,Monica is playing a song.,Ross is playing a song.,Rachel is playing a song.,Patti is playing a song.,0,Who is singing a song when she is at the coffee shop?,127395,Friends,0-4.07,friends_s01e10_seg02_clip_02,Phoebe is playing a song. 5357,A bottle of oxygen,Balloons,A bag of fast food ,A radio,His cane,4,What was in House's hand when he saw Wilson?,127396,House M.D.,29.93-33.01,house_s04e02_seg02_clip_23,His cane 5358,A backpack,A comic book,A kitten,A clipboard,A bottle,3,What did Sheldon hand Stuart after he said somthing about stabbing?,127397,The Big Bang Theory,38.45-45.47,s03e05_seg02_clip_06,A clipboard 5359,Bernie.,Punchy.,Paul.,Peter.,John.,1,Who walks up to Ted when he is talking to Barney at the bar?,127398,How I Met You Mother,12.49-16.01,met_s06e09_seg02_clip_12,Punchy. 5360,Monica is playing a new song,Phoebe is playing a new song,Ross is playing a new song,Chandler is playing a new song,Rachel is playing a new song,1,Who is playing a new song on a guitar when two of the group is listening,127399,Friends,0-6.84,friends_s03e14_seg02_clip_20,Phoebe is playing a new song 5361,bird,drone,kite,plane,cat,1,What flew off the table attacking everyone in the apartment before leaving to the hallway?,127400,The Big Bang Theory,4.98-14.93,s08e22_seg02_clip_16,drone 5362,"""All you had to do was say 'Yes, hurry up!.'""","""All you had to do was say 'Yes, I do.'""","""All you had to do was say 'Why don't you make up your mind already?'""","""All you had to do was say 'We're running out of time! Hurry please!'""","""All you had to do was say 'Do you want your son to die?'""",1,What does House tell Wilson that he should have said to the parents after the mother asked if he thinks they should really do the procedure?,127401,House M.D.,72.25-74.87,house_s03e21_seg02_clip_02,"""All you had to do was say 'Yes, I do.'""" 5363,Playing video games.,Watching television.,Eating Chinese food.,Playing a board game.,Cleaning the apartment.,2,"What Marshall, Lily, Robyn and Ted doing when Barney came in the apartment?",127402,How I Met You Mother,25.67-35.53,met_s06e21_seg01_clip_01,Eating Chinese food. 5364,Mr. Duquette wanted Izzie to explain medicine to him. ,Mr. Duquette wanted to know how Izzie and Denny had become engaged on the day of the operation. ,Mr. Duquette was curious what school Izzie had gone to. ,"Izzie knew a lot about the law, and Mr. Duquette was curious. ",Izzie was Mr. Duquette's niece but he wasn't sure if she knew that. ,1,Why was Mr. Duquette questioning Izzie after Denny's death? ,127403,Grey's Anatomy,54.46-80.17,grey_s03e04_seg02_clip_12,Mr. Duquette wanted to know how Izzie and Denny had become engaged on the day of the operation. 5365,Orders everything on the menu.,Passes gas.,Takes food from Leonard's plate.,Belch/Burp,Excuses herself to go to the restroom.,3,What is the first thing Leonard's date does when they are sitting at the dinner table?,127404,The Big Bang Theory,12.11-48.45,s04e05_seg02_clip_13,Belch/Burp 5366,"""You're going to be just fine""","""Don't forget me in your will.""","""Merry Christmas!""","""A great way to start the new year.""","""Have a wonderful life.""",4,What did House say to Maggie and Jane when he was leaving their room?,127405,House M.D.,150.37-155.02,house_s04e10_seg02_clip_24,"""Have a wonderful life.""" 5367,They are in a hot tub. ,They are in a pool. ,They are in a sauna. ,They are in jail. ,They are in a bar. ,2,Where are Sheldon and James when they are near the end of the night?,127406,The Big Bang Theory,40.34-56.02,s07e14_seg02_clip_16,They are in a sauna. 5368,Joey smiles and asks what kind of sandwich.,Joey raises his eyebrows in interests.,Joey smiles and points toward Rachel.,Joey asks Phoebe if Rachel is serious about the sandwiches.,Joey rubs his hands together and nods his head.,1,What does Joey do after Rachel mentions sandwiches?,127407,Friends,57.67-61.03,friends_s05e14_seg02_clip_10,Joey raises his eyebrows in interests. 5369,They are standing on a stage,They are standing at a ballet bar,They are standing on a platform,They are standing in a parade,They are standing on the street curb,2,Where are Ross and Monica standing after they finish stretching ,127408,Friends,19.02-29.13,friends_s06e10_seg02_clip_15,They are standing on a platform 5370,She gives Chandler a massage. ,She gives Rachel a massage. ,She gives Joey a massage. ,She gives Monica a massage. ,She gives Ross a massage. ,1,What does Phoebe do when she is at work?,127409,Friends,8.43-10.6,friends_s09e21_seg02_clip_16,She gives Rachel a massage. 5371,he was playing a game,he was sleeping,he was watching tv,he was eating,he was toasting a marshmellow,4,What was Sheldon doing when Leonard walked into the room where he was?,127410,The Big Bang Theory,54.93-60.03,s05e15_seg02_clip_13,he was toasting a marshmellow 5372,Move his toes,Move his left leg,Move his right leg,Move his left hand,Move his head,3,What does Jeff do after moving his right hand?,127411,House M.D.,15.01-25.01,house_s02e06_seg02_clip_22,Move his left hand 5373,Putting on make-up,Watching TV,Cooking,Reading a magazine,Eating a sandwich,3,What is Monica doing when Phoebe reaches for the phone,127412,Friends,4.51-8.48,friends_s10e03_seg02_clip_07,Reading a magazine 5374,She eats red meat,She is rude,She leaves him,She confesses her feelings,The bill is too expensive ,0,Why is Burke surprised when having dinner with Cristina? ,127413,Grey's Anatomy,41.37-49.29,grey_s02e08_seg02_clip_10,She eats red meat 5375,Professor Hans comes in ,Professor Smith comes in,Professor Jones comes in,Professor Friesenstinlender comes in,Professor Jamison comes in,3,Who is the professor that comes in before Ross asks for thin mints?,127414,Friends,0-5.99,friends_s06e19_seg02_clip_06,Professor Friesenstinlender comes in 5376,she vomits,she sees zach and cries,She sees Zach and runs toward him.,she looks distraught,she looks overwhelmed,2,What happens after Mandy turns around?,127415,Castle,2.7-6.75,castle_s06e13_seg02_clip_26,She sees Zach and runs toward him. 5377,on his shoulders,in his pockets, on the table,in the air,at his side outside his pockets,1,"Where are taub hands when he tells House ""that you couldn't share publicly"" ?",127416,House M.D.,35.82-44.65,house_s04e16_seg02_clip_01,in his pockets 5378,Ross walks in after,Monica walks in after ,Rachel walks in after,Chandler walks in after,Joey walks in after,1,Who walks in after Phoebe is in the room fixing the partitional divider?,127417,Friends,17.65-24.58,friends_s03e07_seg02_clip_14,Monica walks in after 5379,On her hair.,Across her chest.,On the stove. ,Her hips.,In the air.,3,Where did Monica put her hands before the first time she asked if anybody had a problem? ,127418,Friends,23.54-27.51,friends_s04e10_seg02_clip_11,Her hips. 5380,500 years,50 years,100 years,200 years,1000 years,3,How long will it take Joey's character to return from Blargon 7 after searching for alternative fuels?,127419,Friends,5.32-13.17,friends_s08e19_seg02_clip_02,200 years 5381,She punches the woman. ,She turns around and walks away. ,She smokes a cigarette. ,She punches both of the women. ,She slaps them. ,1,What does Rachel do after the woman that is smoking next to her waves at her to go?,127420,Friends,44.56-50.47,friends_s05e18_seg02_clip_18,She turns around and walks away. 5382,Paul,Chandler,Carol,Joey, Monica,3,Who is sitting on a table when talking to a classroom.,127421,Friends,0-4.16,friends_s03e07_seg02_clip_19,Joey 5383,A comic book ,A cell phone.,His laptop.,His inhaler.,A Martini,4,What is in Howard's hand when he tells Bernadette that he naturally winds up in charge?,127422,The Big Bang Theory,56.51-61.76,s08e21_seg02_clip_03,A Martini 5384,Thirteen is fixing a IV bag.,Thirteen is fixing the patients hair.,Thirteen is fixing a blanket.,Thirteen is fixing her coat.,Thirteen is fixing up a table.,0,What is Thirteen fixing when she next to a patient that is in a hospital bed ?,127423,House M.D.,2.82-7.05,house_s07e23_seg02_clip_21,Thirteen is fixing a IV bag. 5385,A scotty. ,Captain Max Rennard. ,Spock. ,Captain Jack Sparrow. ,A martian. ,1,What character did Gabriel Winters play when he was on Nebula 9?,127424,Castle,16.1-18.87,castle_s05e06_seg02_clip_02,Captain Max Rennard. 5386,A chance,A chance at life,A death warrant,Warfarin-induced skin neccrosis,Some knowledge,3,What does House tell Foreman when he tells him what they gave to her by treating her?,127425,House M.D.,2.61-10.44,house_s01e16_seg02_clip_14,Warfarin-induced skin neccrosis 5387,That's incredibly illegal.,How did you access this.,This is not legal.,I don't want any part of this.,This is not going to be good.,0,What did Beckett say after castle said they had communications to and from the Iranian mission? ,127426,Castle,38.38-46.71,castle_s06e12_seg02_clip_19,That's incredibly illegal. 5388,spleen,brain,lungs,liver,heart,4,What organ is the surgery transplanting as indicated right after the bleeding wound was cauterized?,127427,House M.D.,5.6-10.82,house_s01e14_seg02_clip_21,heart 5389,Going down the stairs.,Walking back up the hall.,Going into someones apartment.,Going up the stairs.,At the end of the hall.,4,Where was Esposito when Castle said he went the wrong way? ,127428,Castle,65.34-70.4,castle_s05e07_seg02_clip_11,At the end of the hall. 5390,Signing autographs,Flirting with a police officer,Drinking coffee,Petting a dog,Looking at art in the gallery.,3,What is Castle doing when Kate pulls up in her car?,127429,Castle,6.52-24.7,castle_s02e11_seg02_clip_00,Petting a dog 5391,A made a song for Emma.,She gave her a flower.,She gave her a book.,She gave nothing.,She gave clothes.,0,Where and when did Phoebe give to Emma?,127430,Friends,37.14-64.03,friends_s10e04_seg02_clip_01,A made a song for Emma. 5392,A police report on the patient.,The patients belongings.,The patients teeth.,The patients heath reccords.,The patients fingernails.,2,What did House look at when he was trying to figure out what was wrong with the patient?,127431,House M.D.,58.89-74.95,house_s04e15_seg02_clip_16,The patients teeth. 5393,a piano,a flute,a trumpet,a clarinet,a french horn,0,What instrument is behind Robin when Marshall shows his soul patch?,127432,How I Met You Mother,3.9-9.9,met_s06e19_seg02_clip_12,a piano 5394,In the heart,In the back,In the leg,In the guy,Through his eye,2,Where does Laine say the victim was shot when Kate arrives at the crime scene?,127433,Castle,38.39-48.49,castle_s03e22_seg02_clip_00,In the leg 5395,Cofield shakes Chase's hand.,Cofield covers Chase's feet with the blanket.,Cofield hands Chase his business card.,Cofield holds a cup for Chse to drink from.,Cofield adjusts Chase's pillow.,1,What does Cofield so before leaving Chase's bedside in the trauma room?,127434,House M.D.,28.53-36.35,house_s08e11_seg02_clip_21,Cofield covers Chase's feet with the blanket. 5396,she grabbed a glass jar,she grabbed a green cloth,she grabbed a blue cloth,she grabbed a plastic cup,she didn't grab anything,2,What does Rachel grab from the kitchen table after Ross left thru the front door?,127435,Friends,6.27-15.85,friends_s04e20_seg02_clip_05,she grabbed a blue cloth 5397,took her shoes off,went to bed,started dancing,asked Leonard to kiss her,asked Leonard to go to bed,0,What did Priya do when the music started playing?,127436,The Big Bang Theory,32.59-44.02,s04e17_seg02_clip_02,took her shoes off 5398,Sheldon is asking Penny questions so he can get close to her,"Sheldon is asking Penny questions, so he can know more about her","Sheldon is asking Penny questions because, they are market-research questions for the online registration for Penny's game",Sheldon is asking Penny questions so they can be best friends,Sheldon is asking Penny questions so he can use it against her,2,Why is Sheldon asking Penny questions when he is on his lap top?,127437,The Big Bang Theory,19.81-28.21,s02e03_seg02_clip_14,"Sheldon is asking Penny questions because, they are market-research questions for the online registration for Penny's game" 5399,white,yellow,blue,red,purple,2,what color jacket does raj wear when sitting at the table,127438,The Big Bang Theory,11.9-19.84,s07e06_seg02_clip_09,blue 5400,In the Navy.,In the Marine Corps.,In the Air Force.,In the Army.,In his old college dorm.,3,Where does Esposito say he got enough communal living when searching Bardot's room?,127439,Castle,69.15-79.54,castle_s08e15_seg02_clip_03,In the Army. 5401,Cuddy with a patient.,Wilson and a former patient.,Chase and Cameron.,Cuddy with an enemy.,Foreman and his patient.,0,Who is Dr.House trying to avoid when is leaving the hospital elevator?,127440,House M.D.,73.15-78.64,house_s02e04_seg02_clip_21,Cuddy with a patient. 5402,Stays at home ,Go to prison ,Become a musician ,Get sent to the army ,Leave her and her mother ,4,What did Phoebe's dad do when the friends mentioned him?,127441,Friends,4.96-13.96,friends_s02e09_seg02_clip_02,Leave her and her mother 5403,newspaper,pants,book,shirt,ticket,3,What did joey tear of Ross that caused him to yell when he was talking to Phoebe?,127442,Friends,7.53-17.48,friends_s10e08_seg02_clip_09,shirt 5404,Sitting in the cafeteria. ,In the office.,Outside.,Riding in the car.,Standing in the elevator.,4,"Where was Gretchen, Christina, and Izzie when Christina said they were going upstairs?",127443,Grey's Anatomy,15.52-25.27,grey_s03e06_seg02_clip_23,Standing in the elevator. 5405,His drink,His finger,His napkin,His hat,His shoes,1,What did Professor Spaffor raise after Ross said basically all nuts?,127444,Friends,56.13-60.03,friends_s09e20_seg02_clip_04,His finger 5406,Because Mr Mason's son is vitamin deficient.,Because Mr Mason's son is going to have a heart attack. ,Because Mr Mason's son has high glucose levels.,Because Mr Mason's son is at risk from the poison he ingested.,Because Mr Mason's son is at risk of liver failure.,1,Why does Chase tell Mr Mason he needs to treat his son before he administers the new medication?,127445,House M.D.,50.74-58.31,house_s02e22_seg02_clip_14,Because Mr Mason's son is going to have a heart attack. 5407,A sink,A video monitor,A patient,The board of directors,The exit door,0,What did House stand in front of when discussing patient symptoms with Taub?,127446,House M.D.,0-9.1,house_s07e11_seg02_clip_13,A sink 5408,Lying on a bench..,Sitting inside his car.,Standing outside bar.,Walking in the park.,Sitting under a tree.,0,Where did Callie find George after coming from the hospital building?,127447,Grey's Anatomy,23.13-32.65,grey_s03e02_seg02_clip_25,Lying on a bench.. 5409,He said that he misses his daughter.,He said that he was mad that Joey tried to save Ross but not him first.,He said that he is ready for a mini-vacation.,He said that he wants to go get a vasectomy.,He says that he is learning how to play guitar.,1,What answer did Chandler give after he explained his concern with Ross?,127448,Friends,33.5-42.49,friends_s05e20_seg02_clip_13,He said that he was mad that Joey tried to save Ross but not him first. 5410,Walked out,Laughed,Cried,Turned around,Shrugged,3,What did Monica do after Chandler played the message?,127449,Friends,14.5-24.16,friends_s09e18_seg02_clip_11,Turned around 5411,Jesse was at a pool hall in Queens with some friends.,Jesse was in jail for public intoxication.,Jesse was in Manhattan at a tattoo contest.,Jesse was at home in bed.,Jesse was on a date with a client.,0,Where did Jesse say he was between 10:00 and 11:00 last when Beckett interrogated him?,127450,Castle,54.75-57.87,castle_s06e13_seg02_clip_04,Jesse was at a pool hall in Queens with some friends. 5412,She cry,She left,she ask for a drink,She went to the bathroom,She eat cake,2,What did Penny do after Sheldon calculated the number of her sexual partners?,127451,The Big Bang Theory,24.32-32.43,s04e01_seg02_clip_14,she ask for a drink 5413,A cell phone,A book,A glass,A mirror,A folder,2,What is Barney holding when he is sitting at the table?,127452,How I Met You Mother,48.45-58.03,met_s06e01_seg02_clip_11,A glass 5414,Burke wanted Cristina to order food for him. ,Burke asked Cristina to work the oxygen machine. ,Burke asked Cristina to help time him. ,Cristina was asked by Burke to hand him the tools as needed. ,The job Burke gave Cristina wasn't shown. ,2,What job did Burke give Cristina after she wouldn't leave? ,127453,Grey's Anatomy,20.04-35.73,grey_s03e04_seg02_clip_12,Burke asked Cristina to help time him. 5415,That it is his first date.,That he likes her.,That Leonard cheated.,That Raj is dumb.,That superman is real.,0,What does Sheldon admit to when he is in the car with Penny?,127454,The Big Bang Theory,48.17-50.95,s04e01_seg02_clip_06,That it is his first date. 5416,A tuxedo,A bath robe,A pair of sunglasses,His hat,His pants,4,What was Ross putting on before Rachel said something about taking full responsibility?,127455,Friends,29.3-38.59,friends_s04e01_seg02_clip_18,His pants 5417,Chase shows that they'd be risking more lives if they don't give the patients room to those waiting. ,Chase says that the patient's insurance only covers three nights in the hospital. ,Chase points out that cutting a hole in the patient's throat shows that the urgency is much greater. ,Chase says that the patient's healing so it's less risky now. ,"Chase says that they're giving the patient morphine, which they'd only do if it was a serious situation. ",2,"How does Chase illustrate to Foreman that the equation's changed, after Foreman says they can't do an LP?",127456,House M.D.,50.86-60.32,house_s02e24_seg02_clip_04,Chase points out that cutting a hole in the patient's throat shows that the urgency is much greater. 5418,To give her money. ,Because she had a bad night. ,Because Margo had a bad night. ,To drop something off. ,To apologize. ,4,"According to Margo, why did Hannah come by the night before?",127457,Castle,4.08-5.44,castle_s05e14_seg02_clip_07,To apologize. 5419,On the ferry boat.,In the burning building.,In the bus crash.,In the train crash.,At the bank hold up.,0,Where did Alex tell his patient that dozens of people died before Addison came into the room?,127458,Grey's Anatomy,38.33-46.09,grey_s03e15_seg02_clip_24,On the ferry boat. 5420,A phone,A bracelet,A blanket,A picture,A document,1,What did Beckett pick up after Castle entered the room?,127459,Castle,86.98-94.03,castle_s02e12_seg02_clip_14,A bracelet 5421,Ryan and Esposito didn't challenge Castle,Castle took the challenge,Castle took a raincheck,Castle bet them on a different challenge,Castle walked away,4,What did Castle end up doing after Ryan and Esposito challenged him?,127460,Castle,80.61-90.12,castle_s07e19_seg02_clip_26,Castle walked away 5422,If Bernadette would be a good mom.,If Bernadette would be crazy.,If Bernadette would be hungry.,If Bernadette would be hurting.,If Bernadette would be mad at Howard.,0,What did Bernadette worry about when she was going to have a baby?,127461,The Big Bang Theory,17.7-38.14,s10e03_seg02_clip_12,If Bernadette would be a good mom. 5423,They agreed that she would clean his office periodically. ,They agreed that she would work for him.,They agreed that he would wait to help her financially until she found a job.,They agreed to stay together.,They agreed that she would clean her apartment for work and replace the maid.,4,How did Wilson and his wife come to an agreement after she refused to take his money without working?,127462,House M.D.,50.7-68.84,house_s02e15_seg02_clip_15,They agreed that she would clean her apartment for work and replace the maid. 5424,Ross,Joey,Monica,Phoebe,Rachel,1,Who is on the phone after Chandler picks up?,127463,Friends,23.01-63.03,friends_s09e09_seg01_clip_00,Joey 5425,A packet of sage.,The incense.,A candle lighter.,A hookah pipe.,A drum kit.,2,What does Raj use after turning on some Indian meditation music?,127464,The Big Bang Theory,7.67-19.18,s03e18_seg02_clip_06,A candle lighter. 5426,A drawer of money,A laptop,A bookshelf,A fridge,Flowers,4,What was behind Monica when she told Phoebe she would need $500?,127465,Friends,7.2-16.51,friends_s04e06_seg02_clip_02,Flowers 5427,His face.,His eyebrows.,His nose.,His chest.,His back.,2,What did Rachel say Ross's dad should have took a pass at after he said he had to shave his ears?,127466,Friends,40.91-46.13,friends_s08e18_seg02_clip_04,His nose. 5428,Five,Two,Three,,One,4,How many cartons of Chinese food are on the top shelf of the fridge when House opens the door?,127467,House M.D.,94.63-96.08,house_s05e21_seg02_clip_06,One 5429,Robin is sitting on the couch,Robin is sitting on the floor,Robin is sitting on the kitchen counter,Robin is laying on the couch,Robin is sitting in the chair,0,Where is Robin when Lily is talking with Marshall and Ted in the open doorway,127468,How I Met You Mother,0-7.91,met_s03e19_seg02_clip_14,Robin is sitting on the couch 5430,He st down.,He shut the door.,He threw a cup.,He waked out.,He turned around.,4,What did Eric do after he said this was ridiculous?,127469,Castle,34.85-39.64,castle_s08e04_seg02_clip_12,He turned around. 5431,A cake with a nail in it,A cake with a shoe in it,A cake with a file in it,A egg with a bacon in it,A snow cone with broccoli in it,2,What did Sonia ask Esposito if he was going to bring her after asking if he will visit? ,127470,Castle,6.98-17.83,castle_s08e16_seg02_clip_26,A cake with a file in it 5432,shakes his head,hangs his head down,puts his hands to his face,reclines back in the chair,smiles and laughs,4,What does Ferguson do when after he says he was shown some photos of the fires?,127471,Castle,43.37-51.68,castle_s06e11_seg02_clip_07,smiles and laughs 5433,A salad,A cheeseburger,A candy bar,A steak,A sub sandwich ,0,What is on Amy's plate when in the cafeteria,127472,The Big Bang Theory,0-8.12,s07e05_seg02_clip_08,A salad 5434,She was crazy,She was stealing,She was lazy,She was always late,An Affair,4,Penelope fired Hannah after she discovered what?,127473,Castle,4.98-14.95,castle_s05e14_seg02_clip_07,An Affair 5435,Punchy.,Robin.,Lily.,Marshall.,John.,0,Who does Ted say has to go when he is talking to Barney?,127474,How I Met You Mother,27.53-31.06,met_s06e09_seg02_clip_12,Punchy. 5436,Hannah,Rachel,Amanda,Anna ,Monica,4,Who got fire on herself when cooking?,127475,Friends,0-9.28,friends_s04e10_seg02_clip_09,Monica 5437,Beckett holds up a cat,Beckett hold up a baby,Beckett hold up her badge,Beckett hold up an apple,Beckett holds up an ice cream cone,2,What does Beckett hold up after Castle places his bid?,127476,Castle,80.98-92.03,castle_s03e10_seg02_clip_24,Beckett hold up her badge 5438,Joey was dressed as an elf. ,Joey was dressed as the Easter Bunny. ,Joey fell down as he entered. ,Fake snow from above poured onto Joey as he entered. ,Joey was dressed in a baseball uniform. ,0,What was funny about Joey after he came into the apartment? ,127477,Friends,28.44-35.12,friends_s01e10_seg02_clip_05,Joey was dressed as an elf. 5439,the forget about it and go out for a drink,they google it,they call a museum,they call Stuart at the comic store,they go look at Leonard and Sheldons comics,4,How does Bernadette suggest Penny and Amy reslove their arguement before she stands up?,127478,The Big Bang Theory,51.03-56.46,s06e13_seg02_clip_13,they go look at Leonard and Sheldons comics 5440,House was late,He isn't crazy,He has to leave,He wants birth control pills,He is really sleepy,3,What did the patient tell House when he walked into the room?,127479,House M.D.,0-11.3,house_s02e14_seg02_clip_02,He wants birth control pills 5441,a dog,a cobra snake,a cat,a bear,a bird,1,what animal was on phoebe's shirt when talking to rachel,127480,Friends,0-7.54,friends_s09e01_seg02_clip_04,a cobra snake 5442,The Lab,The Public Library,Castle's Bachelor Pad,Beckett's sister's home,The University,4,Where does Beckett say Castle and her will go after she gives Ryan and Esposito their mission?,127481,Castle,0-9.92,castle_s02e16_seg02_clip_18,The University 5443,Amy wants to straighten her hair before she picks up the baby.,Because Amy has had a big crush on Ross and wants to straighten her hair. ,Because Amy is bored and wants to straighten her hair.,Because Amy has a job interview and wants to straighten her hair.,Because Amy is going on a date and wants to straighten her hair before she goes.,4,Why did Amy ask for a hair straightener before she pushed her hair back.,127482,Friends,0-33.94,friends_s09e08_seg02_clip_01,Because Amy is going on a date and wants to straighten her hair before she goes. 5444,Hannah,Mia,Sophia,Maria,Thirteen,4,"Who was Eddie talking to when he said ""Did you call the cops""?",127483,House M.D.,0-11.57,house_s06e10_seg02_clip_18,Thirteen 5445,The baby is wearing a sun dress.,The baby is wearing a bib.,The baby is wearing a winter coat.,The baby is wearing a diaper.,The baby is wearing a rain suit.,4,What is the baby wearing when Phoebe is addressing the room?,127484,Friends,0-3.33,friends_s03e08_seg02_clip_11,The baby is wearing a rain suit. 5446,Howard was serving food.,Howard was preparing snacks.,Howard was dialing his phone. ,Howard was sleeping.,Howard was taking pictures.,2,What is doing Howard when Leonard holds a chello?,127485,The Big Bang Theory,0-60.72,s07e06_seg02_clip_09,Howard was dialing his phone. 5447,Nora is at home making dinner.,Nora is seated at a restaurant table.,Nora is standing by the bar.,Nora is standing by a vase of flowers.,Nora is lying down on her couch.,3,Where was Nora when Barney enters the hallway?,127486,How I Met You Mother,2.44-4.58,met_s06e18_seg02_clip_00,Nora is standing by a vase of flowers. 5448,A young Leonardo DiCaprio,A young Liam Neeson,A young Robert De Niro,A young Harrison Ford,A young George Lucas,3,Who does Marshall say he resembles when he and Ted are talking on the couch?,127487,How I Met You Mother,34.85-38.2,met_s03e08_seg02_clip_09,A young Harrison Ford 5449,because he is wearing new clothes,because he lost weight,because he shaved,because she needed a favor,because she liked his shoes,0,Why did Penny say Leonard looked great after he and Priya came through the door?,127488,The Big Bang Theory,0-10.85,s04e18_seg02_clip_01,because he is wearing new clothes 5450,Bubble gum,Ice cream,Cotton candy,A candy cane,A chocolate bar,2,What is Lily eating when walking down the street with Ted and Marshall?,127489,How I Met You Mother,57.98-64.01,met_s03e08_seg02_clip_09,Cotton candy 5451,A sea shell. ,A cell phone. ,A telephone. ,A pack of ice. ,Her hand. ,2,What does Monica hold up to her ear when she is sitting on the back of the couch?,127490,Friends,31.21-33.92,friends_s09e03_seg02_clip_10,A telephone. 5452,"""What if the right side is just a little dead?""","""What if he has special powers and he can fly now?"" ","""What if everything we think we know about the brain is completely wrong?""","""What if you all figure out what we are going to have for lunch while I figure out what is actually going on?""","How do you know that I can't know that?""",0,WHat does House say after Chase tells him that he doesn't know how Patrick's brai reorganized itself 25 years ago?,127491,House M.D.,0-8.55,house_s03e15_seg02_clip_17,"""What if the right side is just a little dead?""" 5453,She throws them in the trash after he leaves.,She puts them on her desk. ,She smells them. ,She gives them to a patient that she sees in the hallway.,She puts them in a vase.,2,What does Dr. Cameron do after Jasper gives her the flowers?,127492,House M.D.,79.63-87.02,house_s03e19_seg02_clip_05,She smells them. 5454,by the xray scan,by the hallway,by the door,next to maddy,house is sitting,0,Where is house standing when he is telling abigail and maddy the news that abigail is not a dwarf?,127493,House M.D.,19.31-27.4,house_s03e10_seg02_clip_21,by the xray scan 5455,A notebook.,A telephone.,A book.,A map.,A gun.,4,What did the woman with black hair pull out of her pocket when the team walked into the large building?,127494,Castle,39.44-48.98,castle_s04e16_seg02_clip_23,A gun. 5456,A pen ,A chart,A stethoscope,A paper cup,A laptop,3,Whay is the doctor holding when she talks to the little boy,127495,Grey's Anatomy,21.57-30.81,grey_s03e15_seg02_clip_23,A paper cup 5457,Twenty-five,Five hundred,One thousand,Ten million,Five billion,3,How many nursing homes does House estimate when talking to Thirteen about the patient?,127496,House M.D.,0.91-9.11,house_s05e18_seg02_clip_06,Ten million 5458,running on treadmill,taking a shower,watching tv,making coffee,sleeping ,0,what was cameron doing when someone knocks on the door ,127497,House M.D.,0-5.46,house_s01e19_seg02_clip_00,running on treadmill 5459,She spills her drink. ,She leaves. ,She hugs Phoebe. ,She laughs. ,She pulls Phoebe into the kitchen area. ,4,What does Rachel do after she puts up a finger?,127498,Friends,17.71-21.61,friends_s07e19_seg02_clip_13,She pulls Phoebe into the kitchen area. 5460,Dropped a box of plates,Flicked Rachel in the head,Turned on the television,Took down a painting,Ate a sandwich,1,What did Monca do after Rachel said you wouldn't let me finish?,127499,Friends,2.81-6.87,friends_s06e20_seg02_clip_14,Flicked Rachel in the head 5461,They say that they need to call House,They say that there is nothing wrong with the patient,They say they need to call Foreman,THey don't say anything,They say that the patient is in worse condition than they thought,0,What does Kutner say when he and Taub look at the patient's scans?,127500,House M.D.,39.44-45.95,house_s05e04_seg02_clip_10,They say that they need to call House 5462,She inches toward him,She slaps him,She spits on him,She slaps his hand,She flips her hand,0,What does the woman do after Joey gives her a suggestion for a better character kiss?,127501,Friends,28.41-34.86,friends_s03e20_seg02_clip_10,She inches toward him 5463,frosting a cake,wrapping a present,Blowing up a baloon,Writing on a birthday card,Drinking,4,What was Phoebe doing when she told Monica least of all you?,127502,Friends,14.17-23.91,friends_s07e14_seg02_clip_03,Drinking 5464,On Leonard's hand.,On Leonard's back.,On Leonard's forehead.,On Leonard's stomach.,On Leonard's right shoulder.,4,Where did Sheldon put the sticker when he gave it to Leonard?,127503,The Big Bang Theory,36.31-41.71,s08e14_seg01_clip_02,On Leonard's right shoulder. 5465,To warn jade's family Sausolito was coming to kill them.,To warn jade's family Smith was coming to kill them.,To warn jade's family Samuels was coming to kill them.,To warn jade's family Saito was coming to kill them.,To warn jade's family James was coming to kill them.,3,Why did Randall say he went to Jade's house after Castle said Yakus never let's anyone out? ,127504,Castle,35.04-42.78,castle_s06e18_seg02_clip_24,To warn jade's family Saito was coming to kill them. 5466,Taub,James,Jacob,Jimmy,Sean,0,"Who was Kutner talking to when he said, ""It's not a tan. Means it's not Leukemia.""",127505,House M.D.,71-77.83,house_s05e06_seg02_clip_16,Taub 5467,Margo asked for the tuna on rye.,Margo asked for lobster.,Margo asked for a piece of pizza.,Margo asked for a pie.,Margo asked for a steak.,0,What type of food did Margo ask for when House pulled out a letter?,127506,House M.D.,70.86-73.62,house_s02e11_seg02_clip_19,Margo asked for the tuna on rye. 5468,Sitting on the couch. ,Sitting at the table. ,Sitting on the floor. ,Sitting on the counter. ,Sitting on the recliner. ,1,Where is Rachel when she is talking about a plan?,127507,Friends,0-4.58,friends_s07e14_seg02_clip_12,Sitting at the table. 5469,To learn how to cook Canadian dishes,To learn more about Parisian culture,To figure out who else Eddie was helping,He was set up a date tonight,His daughter asked him to attend,2,Why is Castle attending the international food night before Ryan states the French restaurant doesn't do take out?,127508,Castle,5.12-12.09,castle_s08e13_seg02_clip_13,To figure out who else Eddie was helping 5470,Inside the uterus.,Inside the cervix.,Inside the esophagus.,Inside the cranium.,Inside the stomach.,4,Where in the body was House making Chase search in the patient when using the camera?,127509,House M.D.,0-25.49,house_s02e08_seg02_clip_09,Inside the stomach. 5471,"Penny said, she hopes he never comes back.","Penny said, she hopes he comes right back.","He is cuter, now that he knows he is rich.","Penny said, she was going to tell Leonard what Raj said to her.","Penny said, she was going to tell Raj's parents what he said to her.",2,What did Penny say after Raj exited her apartment?,127510,The Big Bang Theory,7.13-15.82,s05e04_seg02_clip_13,"He is cuter, now that he knows he is rich." 5472,Mr. Harris told Beckett he wanted to avoid prison time.,Mr. Harris told Beckett he went to the bedroom to take a nap.,Mr. Harris told Beckett he did not have to answer her questions.,Mr. Harris told Beckett he killed Sara.,Mr. Harris told Beckett he hated talking to her.,1,What did Beckett say Mr. Harris told her when he was being detained?,127511,Castle,5.1-8.08,castle_s01e02_seg02_clip_19,Mr. Harris told Beckett he went to the bedroom to take a nap. 5473,Leonard is wanting some tequila himself. ,Leonard is relieved to know how Sheldon really feels. ,Leonard is wanting to know how long he has felt like this. ,Leonard is shocked!,Leonard is wanting Sheldon to share. ,3,What is Leonard's reaction when Sheldon tells him he loves him so much?,127512,The Big Bang Theory,5.43-8.58,s04e23_seg02_clip_01,Leonard is shocked! 5474,A book,A photo,A camera,An ice cream cone,A briefcase,1,What object does the nurse hand the patient when he is getting stitches?,127513,Grey's Anatomy,4.6-14.27,grey_s01e07_seg02_clip_11,A photo 5475,Ross is holding his coat above his head.,Ross is holding a baby above his head.,Ross is holding a box above his head.,Ross is holding a pillow above his head.,Ross is holding an umbrella above his head.,4,What is Ross holding above his head when outside the apartment windows?,127514,Friends,44.25-46.3,friends_s02e08_seg02_clip_14,Ross is holding an umbrella above his head. 5476,Anton's studio was seized,Butt prints just came in,Anton's easel just came in,Anton's sketches just came in,Anton's works were destroyed,3,Why does Ryan say a butt lineup may be unnecessary after reading his text?,127515,Castle,0-10.37,castle_s08e07_seg02_clip_09,Anton's sketches just came in 5477,Sophia,Castle,Corrigan,Alexis,Danberg,1,What did Beckett say immediately after Sophia pulled a gun on her and Castle,127516,Castle,37.27-55.28,castle_s04e16_seg02_clip_23,Castle 5478,Foreman was in with a patient giving her good news.,Foreman was in the eleator going to ICU.,Foreman was in the cafeteria having lunch.,Foreman was doing rounds on the 3rd floor of the hospital.,Foreman was in a hospital bed fighting for his life.,4,Where was Foreman when he was talking to Cameron about his Dad?,127517,House M.D.,8.17-12.72,house_s02e21_seg02_clip_17,Foreman was in a hospital bed fighting for his life. 5479,Robin went home.,Robin went to Simon.,Robin went to the stage to perform.,Robin went to Barney.,Robin went to sleep.,1,Where did Robin go after leaving her friends whom she was drinking with?,127518,How I Met You Mother,39.61-42.88,met_s03e16_seg02_clip_09,Robin went to Simon. 5480,Beckett gives Castle a bank statement.,Beckett gives Castle a credit card statement.,Beckett gives Castle a mortgage statement.,Beckett gives Castle a car loan statement.,Beckett gives Castle a student loan statement.,1,What type of statements does Beckett give Castle when she is discussing Odette's spending with Castel?,127519,Castle,0-14.7,castle_s04e18_seg02_clip_06,Beckett gives Castle a credit card statement. 5481,It was career suicide.,It was a stupid move.,She must be looking to lose her job.,She should write a letter to the DA.,It was smart move.,4,What did Montgomery say about Beckett calling in the DA's personal assistant after she told him she was sorry for not calling the DA first?,127520,Castle,66.98-73.4,castle_s03e19_seg02_clip_17,It was smart move. 5482,Ross is bringing the hospital tray.,Ross is behind pushing the hospital bed.,Ross next to his bed leaing over him.,Ross is in front of the soda machine.,Ross is in the male commode room.,2,Where is Ross when Joey is in his hospital bed?,127521,Friends,10.03-15.64,friends_s05e03_seg02_clip_13,Ross next to his bed leaing over him. 5483,Fun Bobby opened the door.,Danny opened the door.,"The ugly, naked guy opened the door.",Ross opened the door.,Paul opened the door.,1,Who opened the door when Rachel knocked on it?,127522,Friends,32.69-36.32,friends_s05e06_seg02_clip_06,Danny opened the door. 5484,The outfit that Rachel has on is brown,The outfit that Rachel has on is red,The outfit that Rachel has on is blue ,The outfit that Rachel has on is pink,The outfit that Rachel has on is orange,0,What color outfit does Rachel have on when she walks over to the table,127523,Friends,41.19-50.96,friends_s04e02_seg02_clip_08,The outfit that Rachel has on is brown 5485,Derek hugs Meredith.,Derek kisses Meredith.,Derek walks out the door.,Derek takes his hand off his face and nods forward.,Derek dances with Meredith.,3,What does Derek do when Meredith mentions the legs and feet?,127524,Grey's Anatomy,40.9-42.21,grey_s03e09_seg02_clip_08,Derek takes his hand off his face and nods forward. 5486,behind the nurses station,in a patients room,in the locker room,on a gurney in the hall,under her desk ,3,Where is Dr. Bailey sleeping when Izzy is looking at her?,127525,Grey's Anatomy,34.42-40.93,grey_s01e01_seg02_clip_09,on a gurney in the hall 5487,With disgust,Acceptance,Surprise,Guilt,Shame,0,How does Joey react when Rachel offers him tofu cake?,127526,Friends,0-3.97,friends_s07e11_seg02_clip_10,With disgust 5488,"The person playfully said she couldn't go, which Phoebe laughed at.",The person agreed that she should go.,The person asked her if it was necessary.,The person just sat there as Phoebe left.,The person offered to pay her to stay.,4,What did the person Phoebe was with offer to do when she said she had an appointment to go to?,127527,Friends,45.7-60.14,friends_s08e07_seg02_clip_12,The person offered to pay her to stay. 5489,In a kitchen,In a hallway.,In a car.,On the street.,In the toilet.,1,Where was Taub when he said BP's too low?,127528,House M.D.,80.1-89.66,house_s05e06_seg02_clip_16,In a hallway. 5490,Joey.,Phoebe.,Rachel.,Danielle Steele.,Jessica Fletcher.,1,Who is writing about Monica and Chandler after Joey leaves the apartment?,127529,Friends,36.31-54.93,friends_s06e21_seg02_clip_12,Phoebe. 5491,He didn't love his wife,He had considered porn,He wanted a divorce,He hated his job,He was a typical guy,4,What did Chase admit to Hank when Cameron wasn't there?,127530,House M.D.,53.11-90.79,house_s06e07_seg02_clip_07,He was a typical guy 5492,Stark asked Brennan to try to be quick.,Stark asked Brennan to be careful.,Stark asked for someone to watch his hospital gown.,Stark asked for a little head support.,Stark asked for a glass of water.,3,What did Stark ask for after Brennan picked him up?,127531,House M.D.,21.45-25.11,house_s04e03_seg02_clip_04,Stark asked for a little head support. 5493,His keys. ,A backpack. ,His wallet. ,A bag. ,His soda. ,3,What does Raj put down next to the door after he walks in?,127532,The Big Bang Theory,33.38-36.09,s01e02_seg02_clip_12,A bag. 5494,Monica is nowhere Ross to use her elbow against him,Monica puts her elbow into Ross's side,Monica elbows Ross ,Monica doesn't do anything with her elbows,Monica puts her elbow onto Ross's hand ,4,Where does Monica put her elbow when she is talking to Ross?,127533,Friends,57.03-60.03,friends_s01e02_seg02_clip_09,Monica puts her elbow onto Ross's hand 5495,Rachel is with Phoebe.,Rachel is with Monica.,Rachel is with Chandler.,Rachel is with Ross.,Rachel is with Joey.,3,Who is Rachel with when she is drunk in the hotel room?,127534,Friends,7.08-11.21,friends_s05e23-24_seg02_clip_35,Rachel is with Ross. 5496,Rachael ,Phoebe,Gail,Ross,Monica,2,Who walked out on Chandler when he was in the shop?,127535,Friends,0-8.9,friends_s02e14_seg02_clip_06,Gail 5497,Shoes,Hat,Dish washing gloves,Socks,Jacket,2,What did Monica take off when she heard the door bell?,127536,Friends,26.69-37.72,friends_s04e20_seg02_clip_07,Dish washing gloves 5498,An old tennis shoe of Sam's.,An old photo of Sam and James when they were younger.,A portrait Sam painted years ago.,A newspaper from the 70's.,A tape of an old conversation.,1,What did James hold up after Sam admitted to knowing his mother.,127537,How I Met You Mother,21.21-27.31,met_s06e02_seg02_clip_11,An old photo of Sam and James when they were younger. 5499,She puts her white coat on.,She sits down in the chair behind her desk.,She take off her red jacket and puts it on the coat rack.,She sits on the sofa in her office.,She puts her bag on the desk.,2,What does Dr. Cuddy do when Dr. House says if it's not a date it is business?,127538,House M.D.,13.14-18.62,house_s02e22_seg02_clip_03,She take off her red jacket and puts it on the coat rack. 5500,"If Patrick can talk and he is left handed, that means that the right side of his brain is working. ",He says that he has to be able to see from both eyes to play and that means that both sides of his brain have to be working. ,That he is still alive so there is no way that half his brain is dead. ,Because music is a global process and you can't play th piano with half a brain. ,Because it just doesn't make any sense that he can play the piano with half a brain. ,3,Why does House say that Patrick's brain can't be working on only one side after Patrick plays the piano? ,127539,House M.D.,31.06-74.27,house_s03e15_seg02_clip_17,Because music is a global process and you can't play th piano with half a brain. 5501,Castle couldnt make his mind up,Castle had to many sedatives,Castle didnt like sedatives,Castle was allergic to sedatives,Castle would rather stay sharp,4,Why didn't Castle want a sedative after Goldberg offered one to him?,127540,Castle,58.9-63.23,castle_s06e02_seg02_clip_15,Castle would rather stay sharp 5502,Castle would go to jail,Castle would've died,Castles career would end,Castle wouldn't be at the precinct anymore,Nothing,3,What would have happened to castle after weldon was run out of office?,127541,Castle,109.36-115.04,castle_s04e12_seg02_clip_26,Castle wouldn't be at the precinct anymore 5503,Embalming fluid.,Blood.,Vomit.,Acid.,Menthol.,0,What did Castle and Shaw both say at the same time when they realized what was on the bandage?,127542,Castle,63.12-70.85,castle_s02e17_seg02_clip_13,Embalming fluid. 5504,leaves the apartment,nothing,laughs,drinks water,nods,3,What does Leonard do after he speaks?,127543,The Big Bang Theory,12.45-83.02,s02e03_seg02_clip_16,drinks water 5505,Pops the Air mattress.,Pulls the blanket over his head.,Gets out of his bed.,Throws a pillow at Sheldon.,Puts a pillow over his head. ,2,What does Howard do after Sheldon says that he is sleeping on a bouncy castle?,127544,The Big Bang Theory,47.65-53.1,s02e01_seg02_clip_11,Gets out of his bed. 5506,Amy,Leonard,Raj,Howard,Sheldon,4,Who goes to visit Penny when she is working at the bar?,127545,The Big Bang Theory,46.29-48.16,s06e07_seg02_clip_08,Sheldon 5507,Lilly,Ted,Jen,Robin,Marshall,3,Who is sitting next to Barney in the booth when they are at the bar?,127546,How I Met You Mother,0-2.97,met_s05e02_seg02_clip_13,Robin 5508,1,3,2,6,5,4,How many incompletes did House say Adams had during her junior year when she was in high school?,127547,House M.D.,61.67-66.17,house_s08e06_seg02_clip_06,5 5509,River,Ocean,Lake,Beach,Water,3,What does Phoebe spell after Monica asks her a question,127548,Friends,5.8-12.82,friends_s04e02_seg02_clip_08,Beach 5510,A robe,A swim suit,A superhero t-shirt,A lab coat,A police uniform,0,"What is Sheldon wearing when he says hubba, hubba?",127549,The Big Bang Theory,16.08-18.91,s06e02_seg02_clip_10,A robe 5511,Dropping all of her paperwork.,Removing her sunglasses.,Talking on the phone while he was talking to her.,Ignoring Sam.,Covering her ears.,1,What was Violet doing before Sam said was talking about Paul?,127550,Grey's Anatomy,41.75-44.74,grey_s03e23_seg02_clip_02,Removing her sunglasses. 5512,"When Rachel asks Ross why he never said anything to her, his excuse is that the was too shy.","When Rachel asks Ross why he never said anything to her, his excuse is that there was never a good time.","When Rachel asks Ross why he never said anything to her, his excuse is that he was afraid she would reject him.","When Rachel asks Ross why he never said anything to her, his excuse is that he was busy with work.","When Rachel asks Ross why he never said anything to her, his excuse is that he was trying to build confidence.",1,What is Ross's excuse when Rachel asks him why he never said anything to her?,127551,Friends,30.07-34.23,friends_s02e07_seg02_clip_18,"When Rachel asks Ross why he never said anything to her, his excuse is that there was never a good time." 5513,James,Taub,Jacob,Sean,Jimmy,1,Who objected Foreman not to go home when he stood up from his seat,127552,House M.D.,59.15-68.77,house_s05e23_seg02_clip_21,Taub 5514,He is supposed to go with Chandler. ,He is supposed to play every guitar in the store. ,He is supposed to go with her. ,He is supposed to go with supervision. ,He is not supposed to be touching guitars yet. ,4,Why is Phoebe so upset after Joey tells her he went to a guitar store?,127553,Friends,0.87-12.77,friends_s05e11_seg02_clip_06,He is not supposed to be touching guitars yet. 5515,Monica wanted a better view. ,Monica found dirty socks under the bed. ,"The sheets were filthy, according to Monica. ",Monica found a glass with someone's lipstick on it. ,Monica found the toilet to be stuffed up. ,3,Why did Monica say they should change rooms when she spoke to Chandler? ,127554,Friends,17.71-27.61,friends_s05e05_seg02_clip_04,Monica found a glass with someone's lipstick on it. 5516,cancer,2,pie,kitten,baby,4,what did Addison tell Naomi the answer was when she was being examined by her?,127555,Grey's Anatomy,65.89-75.67,grey_s03e22_seg02_clip_06,baby 5517,She clapped her hands.,She grabbed Sheldon's hand.,She put her hands in the air.,She clenched her fists.,She put her head in a pillow.,3,What did Penny do before Bernadette started talking to her?,127556,The Big Bang Theory,58.63-61.46,s06e12_seg02_clip_03,She clenched her fists. 5518,On his desk,On the floor,On a footstool,On another chair,On a scale,0,Where are House's feet when Wilson walks in the office?,127557,House M.D.,45.09-54.3,house_s03e15_seg02_clip_24,On his desk 5519,Barney is in Ted's bed,Barney is in Ted's classroom,Barney is in Ted's apartment,Barney is in a booth at McClaren's,Barney is in his office,1,Where is Barney when he falls asleep listening to Ted?,127558,How I Met You Mother,7.87-17.26,met_s05e03_seg02_clip_07,Barney is in Ted's classroom 5520,Bruce Willis,Al Pacino,Jean Claude Van Dam,Julia Roberts,Clint Eastwood,1,Who does Joey say he's going to be in a movie with after he hangs up the phone?,127559,Friends,38.75-58.28,friends_s01e06_seg02_clip_11,Al Pacino 5521,In a jacuzzi,At the bar,On beach chairs,The stairs,In a limo,3,"Where was Foreman, Kutner, Taub, and Thirteen sitting when they were talking with House?",127560,House M.D.,0-3.84,house_s05e10_seg02_clip_14,The stairs 5522,Bartender,Policeman,Dummy.,Lily.,ted.,2,Who is fighting Jerry when Barney try to stop him?,127561,How I Met You Mother,30.61-34.82,met_s06e21_seg02_clip_09,Dummy. 5523,Jealous that he didn't get the email.,Excited to hear what he said.,Mad because he doesn't like Professor Proton.,Confused who Professor Porton was.,He was curious how he got Leonard's email. ,1,How did Sheldon act after Leonard got an email from Professor Proton?,127562,The Big Bang Theory,40.27-50.34,s07e07_seg02_clip_00,Excited to hear what he said. 5524,Cameron meant that Wilson wouldn't fit in anywhere else. ,Cameron meant that Wilson would be sorry later if he left and lost all of his friends.,Cameron meant that Wilson would regret leaving his job. ,Cameron meant that Wilson would regret leaving her behind.,Cameron meant that grief makes you act irrationally while giving you a false sense of clarity.,4,What did Cameron mean when she said that Wilson would later realize he was behaving irrationally?,127563,House M.D.,2.64-19.81,house_s05e01_seg02_clip_19,Cameron meant that grief makes you act irrationally while giving you a false sense of clarity. 5525,Barry,Ross,Monica,Joey,Chandler ,3,"Who walks into the coffee house when Rachel and Mindy are hugging, ",127564,Friends,52.5-66.03,friends_s01e20_seg02_clip_14,Joey 5526,Soda,Alcohol,Juice,Water,Milk,1,What is Penny drinking when she is talking to Leonard?,127565,The Big Bang Theory,0-39.61,s07e12_seg02_clip_10,Alcohol 5527,angry,happy,peaceful,nervous and worried,tired,3,How did Howard feel when Raj and Leonard were walking too fast into the emergency room?,127566,The Big Bang Theory,11.36-24.26,s04e01_seg02_clip_15,nervous and worried 5528,Esophogram,None.,EGD,Esophogram AND EGD,CAT scans,1,What reports does George give to Ellis after he greets her?,127567,Grey's Anatomy,0-17.23,grey_s02e04_seg02_clip_04,None. 5529,because he doesn't have a boarding pass,because he doesn't have a plane ticket,because he doesn't have any money,because he missed the flight,because he is with Pheobee,0,Why does the airline employee not let Ross talk to Rachel after he arrives at the desk?,127568,Friends,25.53-30.46,friends_s10e17-18_seg02_clip_38,because he doesn't have a boarding pass 5530,some rope,a knife,a gun,a surge of electricity,a saw,2,what was used to kill the victim before she is killed?,127569,Castle,0-12.09,castle_s07e15_seg02_clip_11,a gun 5531,Encephalitis,Swine Flu,Anthrax,Dengue fever,Malaria,3,What does Lanie say Mr. Powers had antibodies for when she is reporting it to Beckett?,127570,Castle,47.53-59.42,castle_s07e20_seg02_clip_16,Dengue fever 5532,He ordered a drink,He put his head in his hands,He screamed,He left,He sat down,3,What did Ross to when Phoebe started singing to him?,127571,Friends,8.84-13.4,friends_s08e10_seg02_clip_04,He left 5533,Black,purple,red,grey,he doesn't have a jacket,0,"What color is Ross's jacket when he say's ""I'm gonna wtch Chandler up there while....""?",127572,Friends,0-9.81,friends_s10e12_seg02_clip_12,Black 5534,Leonard told Sheldon all he had to do was go to court and pay the fine.,Sheldon thought Leonard ate his cake.,Sheldon thought Leonard spilled his coffee.,Sheldon thought Leonard ate his sandwich.,Sheldon thought Leonard didn't clean the kitchen.,0,Why did Sheldon get mad at Leonard before Howard said he was guilty?,127573,The Big Bang Theory,0-34.22,s03e16_seg02_clip_04,Leonard told Sheldon all he had to do was go to court and pay the fine. 5535,A box of files,A clock,A phone,A picture,A eagle statue,3,What was next to Esposito when he was talking to everyone about how he pulled the dispatcher's log from the archives?,127574,Castle,57.54-66.67,castle_s03e13_seg02_clip_19,A picture 5536,Running water. ,A sponge. ,Dish soap. ,A fire hose. ,A bath tub. ,3,What does Castle say he will need when he needs to clean something up?,127575,Castle,4-7.56,castle_s02e16_seg02_clip_24,A fire hose. 5537,She applies it to her eye.,She applies it to her mouth.,She applies it to her hand.,She applies it to her arm.,She applies it to her neck.,1,Where does Rachel apply the ice wrapped in cloth when she enters the hallway?,127576,Friends,42.2-52.24,friends_s04e16_seg02_clip_18,She applies it to her mouth. 5538,Hayley wanted an automatic rifle.,Hayley wanted a .22 caliber.,"Hayley wanted a small, discreet pistol.",Hayley wanted a bb gun.,Hayley wanted a .38 caliber.,4,What type of gun was Hayley trying to purchase when she went to Tony?,127577,Castle,65.54-74.64,castle_s02e07_seg02_clip_10,Hayley wanted a .38 caliber. 5539,They couldn't make the show,No they didn't win,It was a tie ,There was no show,Yes they won,4,Did Ryan and Esposito win in the show they participated in when Castle asked them?,127578,Castle,13.59-24,castle_s07e19_seg02_clip_26,Yes they won 5540,A cell phone case that she is trying to open.,She holds a small mini bottle of alcohol in her hand.,A tube of lipstick.,A cup of tea.,A photograph of Sam.,1,What does Mandy have in her hand when she tells Alexis to relax it's Sam's number?,127579,Castle,2.73-10.01,castle_s06e13_seg02_clip_16,She holds a small mini bottle of alcohol in her hand. 5541,Emily.,Joey.,Phoebe.,Rachel.,Monica.,4,Who does Chandler run to after Monica talks?,127580,Friends,0-11.81,friends_s04e14_seg02_clip_08,Monica. 5542,He was an addict,He denied using it,He had never used it,He was shocked it was suggested,He admitted to using it,4,What did Dugan's answer about cocaine when House asked suggest?,127581,House M.D.,45.85-77.06,house_s07e06_seg02_clip_17,He admitted to using it 5543,A photo,A poster,A stain,A spider,Nothing,1,What is on the door when Sheldon closes it?,127582,The Big Bang Theory,19.72-23.78,s06e23_seg02_clip_14,A poster 5544,sheldon says animals don't trust him because he bathes in yogurt,sheldon says animals don't trust him because he's a vegetarian,sheldon says animals don't trust him because he's a vegan,sheldon says animals don't trust him because he smells like nothing. ,sheldon says animals don't trust him because he only eats eggs and cheese.,3,why does sheldon say animals don;'t trust him after showing him flossing?,127583,The Big Bang Theory,39.15-45.08,s08e17_seg02_clip_09,sheldon says animals don't trust him because he smells like nothing. 5545,Penny,Howard,Sheldon,Leonard,Raj,4,Who was sitting on the couch when he was moving a knight on the chessboard?,127584,The Big Bang Theory,0.98-6.18,s02e18_seg01_clip_00,Raj 5546,House's mother threatens to uninvite Thomas to Christmas.,House's mother threatens to forbid House from contacting him.,House's mother threatens to move out of Thomas' house.,House's mother threatens to take back the watch she bought him.,House's mother threatens to never see Thomas again.,4,What does House's mother threaten to do after asking Thomas to apologize to House?,127585,House M.D.,32.13-38.1,house_s08e14_seg02_clip_21,House's mother threatens to never see Thomas again. 5547,Remote control Stephan Hawking wants to meet Bernadette,Puppet William Shatner wants to meet Bernadette,Playdoh Drew Barrymore wants to meet Bernadette,Claymation Tim Burton wants to meet Bernadette,Cardboard Lady Gaga wants to meet Bernadette,0,Who does Howard say wants to meet Bernadette when she is working on her computer,127586,The Big Bang Theory,8.54-19.83,s10e09_seg02_clip_01,Remote control Stephan Hawking wants to meet Bernadette 5548,Castle says he doesn't care about statistics,Castle says statistics also lie,Castle says statistics is a subject you take in college,Castle says statistics convict innocent people,Castle says statistics don't lie,0,What does Castle say about statistics when Beckett presents him with one?,127587,Castle,2.69-8.51,castle_s03e15_seg02_clip_05,Castle says he doesn't care about statistics 5549,Phalanges aren't real.,"Yes, the phalange is fixed.",We have removed the phalange.,Phalanges are one fire.,Pheobee made up Palanges.,1,What did the airline employee say after the lady asked about the phalange?,127588,Friends,0-5.22,friends_s10e17-18_seg02_clip_38,"Yes, the phalange is fixed." 5550,That's nice,That's strange,That's weird,That's beautiful,That's awful,3,What does Phoebe say after reading Monica's vows?,127589,Friends,55.78-59.03,friends_s07e21_seg02_clip_18,That's beautiful 5551,Chase is trying to divert attention while keeping an eye on the killer next to House. ,"Chase isn't really listening to Foreman, he just contradicts him because he's jealous of Foreman's game.",Chase has found a new instrument for performing an LP.,Chase is saying that the urgency has changed the balance between risks and benefits. ,Chase is just repeating what Cameron is mouthing to him. ,3,"Why does Chase tell Foreman the equation's changed, after Foreman says they couldn't do an LP?",127590,House M.D.,49.06-60.32,house_s02e24_seg02_clip_04,Chase is saying that the urgency has changed the balance between risks and benefits. 5552,Not to promise.,Not to eat hamburgers.,Not to get his hopes up.,Not to be greedy.,Not to drink beer.,0,What did Foreman tell Marcus not to do when they were talking about jobs?,127591,House M.D.,19.79-30.32,house_s06e12_seg02_clip_23,Not to promise. 5553,A follow-up.,A diabetic check.,A immunization update.,A surgical consult.,A casting appointment.,0,What kind of appointment did Chase say the patient came in for when explaining himself to House?,127592,House M.D.,36.87-48.7,house_s02e08_seg02_clip_09,A follow-up. 5554,At Bilal's home.,Walking down the Street with Bilal.,Sitting at a bistro with Bilal.,In an Alley with Bilal.,Sitting in a car with Bilal.,3,Where was Castle when Bilal told him he trusted him.,127593,Castle,11.39-14.85,castle_s07e20_seg02_clip_24,In an Alley with Bilal. 5555,She clapped her hands.,She interlocked her fingers.,She twiddled her thumbs.,She bent her thumb back.,She counted her fingers.,1,What did Beckett do after she sat up?,127594,Castle,29.22-33.4,castle_s03e15_seg02_clip_15,She interlocked her fingers. 5556,A magazine. ,His groceries.,A duck.,A drink.,a pile of clothes,4,"What does Joey put on the counter before the clerk ask ""can I help you""?",127595,Friends,20.78-24.19,friends_s06e22_seg02_clip_10,a pile of clothes 5557,Foreman is sitting at Cuddy's desk ,House is sitting at Cuddy's desk ,Chase is sitting at Cuddy's desk ,Vogler is sitting at Cuddy's desk ,Taub is sitting at Cuddy's desk ,1,Who is sitting at Cuddy desk when she enters with her food,127596,House M.D.,17.69-26.09,house_s06e13_seg02_clip_12,House is sitting at Cuddy's desk 5558,He is her uncle,He is her mother's murder,He is her dad,He is a con artist, He is a Renaissance man,1,What does Beckett disclose about the man when talking to Castle?,127597,Castle,11.7-19.36,castle_s06e22_seg02_clip_04,He is her mother's murder 5559,She would hang up.,She would leave the call,She would leak pictures,She would call her boyfriend,She would take off her clothes,4,What did Priya say she would do after Leonard took off his clothes?,127598,The Big Bang Theory,2.37-7.11,s05e02_seg02_clip_07,She would take off her clothes 5560,Buy a bouquet of flowers,Clean his house,Pick his mother up from the airport,Walk his dog,Go to the bathroom and pee for him,4,What did Lily offer to do for Marshall before the funeral? ,127599,How I Met You Mother,20.21-31.72,met_s06e14_seg02_clip_00,Go to the bathroom and pee for him 5561, Amy dances set,Amy hugs Penny.,"Amy jumps, startled by the noises.",Amy walks out the door.,Amy sits on the floor.,2,What does Amy do after Sheldon mumbles in his sleep?,127600,The Big Bang Theory,47.54-52.82,s10e04_seg02_clip_14,"Amy jumps, startled by the noises." 5562,a tuxedo,a robe,a space suit,scrubs,pajamas,0,"what is house wearing when he calls for a meeting in the conference room with foreman, cameron and chase?",127601,House M.D.,73.37-83.34,house_s02e17_seg02_clip_04,a tuxedo 5563,"Because Simmons thinks he has the upper hand, he realizes Detective Beckett does not have a warrant for his arrest. ",Simmons feels close to Detective Beckett because she smiles at him. ,Simmons and Detective Beckett had a relationship in the past. ,Simmons believes Detective Beckett thinks someone else committed the murder. ,Simmons does not see Detective Beckett's gun. Simmons thinks she is coming to shake his hand. ,0,Why is Simmons so confident when he sees Detective Beckett?,127602,Castle,35.37-53.74,castle_s06e22_seg02_clip_06,"Because Simmons thinks he has the upper hand, he realizes Detective Beckett does not have a warrant for his arrest. " 5564,A clock,A light,A phone,A vase of flowers ,A stack of comic books,1,What was next to Sheldon when he asked Leonard if he wanted to talk about what was bothering him?,127603,The Big Bang Theory,8.96-16.12,s01e14_seg02_clip_09,A light 5565,She smacked his hand.,She slapped him.,She rubbed her nose.,She started choking.,She walked away.,2,What did Monica do after Chandler mentioned they were just goofing around?,127604,Friends,21.01-26.11,friends_s05e03_seg02_clip_05,She rubbed her nose. 5566,Marty is John Henry's uncle.,Marty is John Henry's best friend,Marty is John Henry's brother,Marty is John Henry's doctor.,Marty is John Henry's nephew,3,Who is Marty Hamilton when he is introducing himself to House?,127605,House M.D.,85.11-91.03,house_s01e09_seg02_clip_11,Marty is John Henry's doctor. 5567,Derek was asking for money, Derek was asking for a knife,Derek was asking for a towel,Derek was asking for oxygen, Derek was asking for blood O negative,4,"What was Derek asking after the artery gushed blood out, and what type did he needed?",127606,Grey's Anatomy,0-48.53,grey_s01e06_seg02_clip_20, Derek was asking for blood O negative 5568,coffee shop,apartment,hospital lounge,courthouse ,park,2,"Where are Phoebe, Monica, Chandler, and Joey sitting when they are all talking together?",127607,Friends,56.37-59.03,friends_s08e23-24_seg02_clip_05,hospital lounge 5569,come to me,Just a sec,I am going on vacation,I want to order a pizza,Let me alone,1,What did Penny say before she was connected to Sheldon?,127608,The Big Bang Theory,0-54.13,s02e17_seg02_clip_09,Just a sec 5570,The other side of the room,Out in the hallway,At the foot of the hospital bed,Standing next to Adams,Standing next to Chase,2,Where is Chase standing when Adams tell him her patients symptoms?,127609,House M.D.,69.88-74.78,house_s08e12_seg02_clip_19,At the foot of the hospital bed 5571,asked the boss for help,called Howard,called Leonard,called Sheldon's mom,use a word from Amy,4,What did Sheldon do when he was playing the word game?,127610,The Big Bang Theory,0-19.93,s06e06_seg02_clip_03,use a word from Amy 5572,Monica drinks some of her wine and then looks down.,Monica hugs Ross.,Monica kicks Ross.,Monica dances with Rachel.,Monica kisses Chandler.,0,"What does Monica do after she says ""that is a wonder""?",127611,Friends,21.77-26.25,friends_s01e08_seg02_clip_18,Monica drinks some of her wine and then looks down. 5573,Ryan has a girlfriend,Ryan doesn't like girls,Ryan is much older than the girl,Ryan is married,Ryan should be home in bed,3,Why is Ryan uncomfortable when the girl sits on his lap?,127612,Castle,4.51-23.02,castle_s06e18_seg02_clip_11,Ryan is married 5574,Leonard is holding a tablet.,Leonard is holding his travel bag.,Leonard is holding a sponge.,Leonard is holding his cell phone.,Leonard is holding socks.,4,What is Leonard holding when he asks Sheldon mocks him about getting a steamer?,127613,The Big Bang Theory,8.64-14.88,s06e13_seg01_clip_00,Leonard is holding socks. 5575,In the newspaper,On the internet,From a referal,From a phone book,From another customer,1,How did the Ukrainians find Hugo before they hired him?,127614,Castle,33.38-38.08,castle_s02e24_seg02_clip_16,On the internet 5576,Herself.,Frank and Alice.,Herself and her boyfriend.,Her sister.,She isn't planning on having a baby.,1,Who is Phoebe planning on having a baby for when she is talking to the embryos?,127615,Friends,33.26-49.13,friends_s04e12_seg02_clip_08,Frank and Alice. 5577,Leave,Talk,Care,Help,Work,4,What does the girl ask if she did not need to do before she sat up?,127616,Castle,54.16-60.08,castle_s06e04_seg02_clip_00,Work 5578,Monica.,Rachel,Janice.,Ross.,Susan.,2,Who served pancakes to Chandler when holding a skimmer?,127617,Friends,29.13-32.77,friends_s03e01_seg02_clip_01,Janice. 5579,Pete,Castle,Bill,Esposito,David,1,Who enters the room with Beckett when she goes to question Mrs. Castle?,127618,Castle,22.47-35.96,castle_s04e03_seg02_clip_24,Castle 5580,Married,In a relationship,It's complicated,Single,Divorced,3,What is the woman's relationship status when she shows Joey her cat pics?,127619,Friends,10.72-22.69,friends_s09e09_seg01_clip_00,Single 5581,Achmed lived in Egypt.,Achmed lived in India.,Achmed lived in Nepal.,Achmed lived in Afghanistan.,Achmed lived in Pakistan.,4,Where did Achmed live before he came to the United State?,127620,Castle,55.59-57.84,castle_s08e13_seg02_clip_12,Achmed lived in Pakistan. 5582,Izzie wants Alex to lie about Denise's condition.,Izzie wants Alex to lie about Carey's condition.,Izzie wants Alex to lie about Daniel's condition.,Izzie wants Alex to lie about Denny's condition.,Izzie wants Alex to lie about Destiny's condition.,3,Whose condition does Izzie want Alex to lie to Burke about when talking on the phone?,127621,Grey's Anatomy,0-30.66,grey_s02e25_seg02_clip_11,Izzie wants Alex to lie about Denny's condition. 5583,Walmart,mcdonalds,Target,the bar,Burger King,3,Where was Marshall when he brought a possum inside?,127622,How I Met You Mother,14.71-26.11,met_s06e19_seg02_clip_12,the bar 5584,standing behind him,sitting on the bed,in the bathroom,in the closet,standing in the doorway,4,Where is Sam when they were talking about Wilson's shirts were too small?,127623,House M.D.,40.46-51.13,house_s06e18_seg02_clip_12,standing in the doorway 5585,Ted told Barney they must watch the game in person.,Ted told Barney to watch the game alone.,Ted told Barney they have to watch the game apart.,Ted told Barney they have to watch the game in the stadium.,Ted told Barney they have to watch the game together.,4,What did Ted tell Barney they have to watch together after taking his phone?,127624,How I Met You Mother,0-4.54,met_s02e14_seg02_clip_03,Ted told Barney they have to watch the game together. 5586,Castle assumes Franchesca is Dr. Barker's patient.,Castle assumes Royal is Dr. Barker's patient.,Castle assumes Donatella is Dr. Barker's patient.,Castle assumes Francisco is Dr. Barker's patient.,Castle assumes Alexis is Dr. Barker's patient.,3,Who does Castle assume is the patient when talking to Dr. Barker about her therapy sessions?,127625,Castle,29.39-36.95,castle_s04e13_seg02_clip_07,Castle assumes Francisco is Dr. Barker's patient. 5587,Raj ,Sheldon,Leonard ,Howard ,Stuart ,2,Which one of the guys says their mommy raised a gentleman after they are complemented? ,127626,The Big Bang Theory,65.79-72.73,s08e21_seg01_clip_01,Leonard 5588,A park bench,The back of Ross's head,Her hands together,The roof of the cab,A street sign,3,What did Phobe smack after Rachel said she hadn't seen it yet?,127627,Friends,71.72-78.6,friends_s06e02_seg01_clip_01,The roof of the cab 5589,The color of Amy's jacket is black,The color of Amy's jacket is red,The color of Amy's jacket is brown,The color of Amy's jacket is purple,The color of Amy's jacket is green,1,What color jacket is Amy wearing when they are driving in the car,127628,The Big Bang Theory,26.69-36.56,s10e12_seg02_clip_06,The color of Amy's jacket is red 5590,Phoebe is giving Monica a haircut.,Monica is giving herself a haircut.,Chandler is giving Monica a haircut.,Ross is giving Monica a haircut.,Julie is giving Monica a haircut.,0,Who is giving Monica a haircut when they are in Monica's bedroom?,127629,Friends,7.63-13.73,friends_s02e01_seg02_clip_13,Phoebe is giving Monica a haircut. 5591,Put him in his crib,Hand him to Beckett,Put him on the table,Hand him to Castle,Hand him to Gates,3,What does Ryan do with the baby after he says he isn't ready?,127630,Castle,14.75-25.36,castle_s06e10_seg02_clip_05,Hand him to Castle 5592,Richard offers to clear the room so Meredith can be alone with the patient,Richard offers to hold a memorial service,Richard offers to send letters to Grace's family,Richard offers to give Meredith the week off,Richard offers to take care of it himself,4,What does Richard offer to do when Meredith is about to take Grace off life support?,127631,Grey's Anatomy,23.66-46.02,grey_s02e15_seg02_clip_20,Richard offers to take care of it himself 5593,prison records,arrest records,dental records,autopsy reports,school records,0,Where did Ryan say he found some information after it was sent over to the office?,127632,Castle,21.13-31.27,castle_s06e09_seg02_clip_25,prison records 5594,He opened the door.,He sat down.,He cleaned his nose.,He laughed,He stood up.,2,What did Castle do before Wilson said something about mom a pep talk?,127633,House M.D.,4.17-12.5,house_s02e02_seg02_clip_11,He cleaned his nose. 5595,Joey's shirt was black,Joey's shirt was green,Joey's shirt was red,Joey's shirt was blue,Joey's shirt was grey,2,What was the color of Joey's shirt when he was speaking to Chandler?,127634,Friends,0-17.27,friends_s03e24_seg02_clip_03,Joey's shirt was red 5596,He turns around and walks away.,He looks at his watch.,He hands Beckett a bunch of photographs.,He opens a door.,He sits down in the chair.,1,What does Ryan do after telling Beckett he placed a call over to the alumni office?,127635,Castle,81.81-91.4,castle_s07e11_seg02_clip_17,He looks at his watch. 5597,asked to go inside,phoned him,made Sheldon talk,left him a note,acted like a stripper gram,4,What did Raj do when he fooled Howard to opening his door?,127636,The Big Bang Theory,6.03-22.96,s02e01_seg02_clip_11,acted like a stripper gram 5598,A book.,A toy cow.,A dress.,A leather purse.,A napkin.,4,"What does Phoebe have in her hands when she talks about mommy cows, daddy cows, and baby cows?",127637,Friends,0-6.27,friends_s04e16_seg02_clip_13,A napkin. 5599,Four people,Two people,Three people,Five people.,Six people.,2,How many people does Castle say Beckett took out when she was shot and ambushed?,127638,Castle,36.33-63.69,castle_s08e01_seg02_clip_09,Three people 5600,Slaughter,Beckett,Ryan,Esposito,Montgomery,0,Who pushed the man in the tan coat after Castle headed toward the car?,127639,Castle,8.6-19.36,castle_s08e06_seg02_clip_09,Slaughter 5601,Ryan,Esposito,Beckett,York,Hixton,0,Who walked into the office when Castle was talking?,127640,Castle,39.14-46.42,castle_s03e14_seg02_clip_08,Ryan 5602,Lie like little children ,Argue like school girls,Blame each others team,Spank the bad doctors,Flirt by pulling her hair ,3,What does Intern thirteen say is fun to watch Foreman do after telling him that Cameron gave them permission to treat?,127641,House M.D.,35.43-51.53,house_s04e06_seg02_clip_11,Spank the bad doctors 5603,A puppy,A clipboard,A water bottle,A bowl of soup,A box,1,What was Raj holding when Sheldon vowed eternal hatred for Wil Wheaton?,127642,The Big Bang Theory,3.36-10.68,s03e05_seg02_clip_06,A clipboard 5604,Near her by the hallway,Near her by the tv,Near her by the room,Near her by the door,Near her by the steps,3,Where is Ross standing when Rachel sits on the end of the couch?,127643,Friends,57.08-61.05,friends_s05e20_seg02_clip_16,Near her by the door 5605,She dances. ,She jumps. ,She claps. ,She snaps her fingers. ,She kicks her legs. ,2,What does Rachel do when she walks off stage at the coffee house?,127644,Friends,40.58-43.33,friends_s01e10_seg02_clip_01,She claps. 5606,to the patients room,to the breakroom,to cuddys office,home,to the airport,2,where does foreman go after talking to chase in the hallway?,127645,House M.D.,63.62-73.62,house_s06e04_seg02_clip_13,to cuddys office 5607,Sitting in the backseat,Running alongside of her window,Sitting in the passenger seat,Laying in the backseat,Laying in the trunk,2,What is Sheldon doing when Amy is driving the car?,127646,The Big Bang Theory,53.19-56.86,s09e19_seg02_clip_07,Sitting in the passenger seat 5608,Martha tells Castle to listen to his head.,Martha tells Castle to listen to his heart.,Martha tells Castle to follow his gut.,Martha tells Castle that she never liked Damian.,Martha tells Castle that Beckett's bound to make a mistake.,1,How does Martha tell Castle to deal with Beckett arresting Damian before Castle visits Damian?,127647,Castle,10.57-18.5,castle_s03e15_seg02_clip_16,Martha tells Castle to listen to his heart. 5609,Penny is trying to commit suicide.,Penny wrote a suicide letter.,Penny is walking on the ceiling of glass.,Penny is driving with no brakes in the rain.,Sheldon says she talks to strangers and pets unfamiliar dogs.,4,What does Sheldon tell Leonard that Penny does after saying she had a death wish?,127648,The Big Bang Theory,18.86-65.04,s06e02_seg02_clip_15,Sheldon says she talks to strangers and pets unfamiliar dogs. 5610,Her purse,A bottle of water,A cup of coffee,A laptop,A notebook,4,What was Priya holding when she was talking to Sheldon and Leonard? ,127649,The Big Bang Theory,0-3.6,s04e21_seg02_clip_02,A notebook 5611,Window,Couch,Sink,Table,Mirror,0,What is behind Castle when he asks if Kate was kidding him?,127650,Castle,85.42-91.36,castle_s04e12_seg02_clip_20,Window 5612,Raj confessed he had no idea what it was. ,Raj said it was just some shiny hunk of junk. ,Raj explained it was an antique sextant used for navigation. ,Raj said it was a family heirloom. ,Raj wouldn't tell anyone what it was. ,2,What did Raj say was in the box after he opened it? ,127651,The Big Bang Theory,26.71-37.51,s09e18_seg02_clip_01,Raj explained it was an antique sextant used for navigation. 5613,foreman and thirteen,kutner and taub,taub and foreman,taub,kutner,0,"who did house say would be singing in the rain when talking to taub, kutner, thirteen, and foreman over speaker phone",127652,House M.D.,21.46-33.07,house_s05e12_seg02_clip_05,foreman and thirteen 5614,A box of tuna helper,A hamburger,A comic book,A bag of licorice ,A pack of gum,2,What is Stuart showing Penny when he is working at the store?,127653,The Big Bang Theory,0-54.63,s02e20_seg02_clip_04,A comic book 5615,Howard could see on her face she was upset. ,"Bernadette sternly called him ""Howard."" ",Bernadette had been screaming before entering the room. ,Penny had called Howard to warn him Bernadette was on the warpath. ,Howard didn't know she was serious and he remained oblivious. ,1,How did Howard know Bernadette had something serious to say when she addressed him? ,127654,The Big Bang Theory,16.96-25.44,s09e07_seg02_clip_00,"Bernadette sternly called him ""Howard."" " 5616,A plate of food,A tray of mugs,A pot of coffee,A platter of biscuits,A notepad,2,What was the waitress holding when she was at the table of patrons behind Ross and Phoebe?,127655,Friends,26.43-30.83,friends_s08e10_seg02_clip_01,A pot of coffee 5617,Howard told Leonard to just give up if he can't speak with Penny.,Howard told Leonard to go talk to Penny on his own.,Howard told Leonard to try to act cool to attract Penny's attention.,Howard asked Leonard to try to hook him up with Penny.,Howard told Leonard that Penny was way too out of his league and try to ask someone else out.,1,What advice did Howard finally give to Leonard when he was trying to convince him to ask Penny out?,127656,The Big Bang Theory,7.8-12.6,s07e11_seg02_clip_04,Howard told Leonard to go talk to Penny on his own. 5618,coat,skirt,necklace,apron,gloves,2,What was the boy wearing before he started talking?,127657,Castle,12.61-21.16,castle_s08e09_seg02_clip_08,necklace 5619,Brain stem,frontal cortex,blood brain barrier,The Hypothalimus,obsipital lobe,3,"What part of the brain, after removing House's skull cap, is Chase probing?",127658,House M.D.,0-15.02,house_s04e16_seg02_clip_15,The Hypothalimus 5620,Rachel is eating pie.,Rachel is reading a magazine.,Rachel is watching tv.,Rachel is playing cards with Joey.,Rachel is rubbing her neck.,1,What is Rachel doing when Ross is looking out the window?,127659,Friends,23.19-26.55,friends_s05e14_seg02_clip_10,Rachel is reading a magazine. 5621,Went into the kitchen.,Shut the door and sat down.,Got into the time machine.,Slammed the door and left.,Ate some pizza.,3,What did Penny do after she called everyone pathetic?,127660,The Big Bang Theory,22.43-28.33,s01e14_seg02_clip_07,Slammed the door and left. 5622,Sheldon says that he is ready for the judge's response. ,Sheldon says he has finished now. ,Sheldon says his milk stool is complete. ,Sheldon says that he is over it. ,Sheldon says that it's not his fault ever for anything. ,2,What does Sheldon say after his speech to the judge is complete?,127661,The Big Bang Theory,26.71-32.41,s03e16_seg02_clip_09,Sheldon says his milk stool is complete. 5623,His couch,His Hair,His cat,His dog,His Bicep,4,What did Chandler ask Phoebe to feel when he called her?,127662,Friends,15.91-20.71,friends_s05e14_seg02_clip_12,His Bicep 5624,He needs to sleep,He is in too much pain ,He has a date,He is going to talk to Cuddy,He already knows the diagnosis,0,Why does House say he needs to leave after he tells his team to stay and monitor the patient?,127663,House M.D.,17.25-44.23,house_s03e16_seg02_clip_17,He needs to sleep 5625,Do you want to have dinner,I am here to invite you home,Who says I'm here to convince you to live,Can I see down,Here you are,2,What did Cameron said after she sat down?,127664,House M.D.,10.27-15.41,house_s08e22_seg02_clip_17,Who says I'm here to convince you to live 5626,She seen her around before ,She went to grad school with one,She played Tennis with one,She shared Romance with one,One of them was her sister ,4,How did Gates say she knew one of the US Attorney women after explaining it to Beckett and Castle? ,127665,Castle,66.17-81.47,castle_s06e19_seg02_clip_05,One of them was her sister 5627,Leaning on the wall in the class room,Sitting on his desk in the classroom,Looking out the window of the classroom,Sitting on the chair in the classroom,Standing infront of the board in the classroom,1,Where is Joey when he talks to his acting class about doing something bad to another actor?,127666,Friends,52.78-60.32,friends_s03e07_seg02_clip_18,Sitting on his desk in the classroom 5628,Rachel,Jason,Ross,A pedestrian ,Phoebe,4,Who thinks that the car is low on coolant when it catches on fire?,127667,Friends,15.35-21.25,friends_s03e23_seg02_clip_03,Phoebe 5629,A donut,A hot dog,A hamburger,A pretzel,A chicken leg,3,What did Lily eat before Robin said that was crazy?,127668,How I Met You Mother,8.56-16.21,met_s03e08_seg02_clip_11,A pretzel 5630,She bakes a pie. ,She gives Chandler a hug. ,She gets a drink from the fridge. ,She gets up and gives Chandler a kiss. ,She punches Chandler in the arm. ,3,What does Monica do after she closes the book that is on her lap?,127669,Friends,28.38-34.79,friends_s09e03_seg02_clip_02,She gets up and gives Chandler a kiss. 5631,In the bedroom. ,On the couch. ,On the balcony. ,In Rachel's apartment. ,At the coffee shop. ,2,Where are Rachel and Tag when they are talking about Joey?,127670,Friends,13.14-16.5,friends_s07e08_seg02_clip_11,On the balcony. 5632,Lily wants Barney to promise he won't cheat on Nora.,Lily wants Barney to promise he won't cheat on Robin.,Lily wants Barney to promise he won't lie to Nora.,Lily wants Barney to promise he won't lie to her about Nora.,Lily wants Barney to promise he won't lie to Zoey.,2,What does Lily want Barney to promise when she's screaming at him?,127671,How I Met You Mother,13.21-38.42,met_s06e18_seg02_clip_04,Lily wants Barney to promise he won't lie to Nora. 5633,Monica is in a cab.,Monica is at the restaurant.,Monica is in her apartment.,Monica is on a train.,Monica is at the coffee shop.,2,Where is Monica when she talks to Chandler?,127672,Friends,0-4.34,friends_s09e14_seg02_clip_15,Monica is in her apartment. 5634,He wants to relax with her.,He talks to her about relaxing,He thinks she should relax.,Van Zant tells Beckett to relax.,He wants the lady to relax.,3,What does Van Zant tell Beckett to do before he pulls Valentine in?,127673,Castle,72.92-81.92,castle_s07e22_seg02_clip_15,Van Zant tells Beckett to relax. 5635,Fire.,A spark.,A dove.,A bunny.,A stick.,1,What does Barney grab as part of his magic trick when Marshall calls him a jerk?,127674,How I Met You Mother,38.04-65.03,met_s02e02_seg02_clip_05,A spark. 5636,Looks through a book.,Drops a piece of paper on the table.,Draws a picture on the white board.,Walks into the room.,Writes on a notepad. ,2,"What does House do before he says, ""was it like that""?",127675,House M.D.,40.93-49.3,house_s08e17_seg02_clip_22,Draws a picture on the white board. 5637,He was in the shower.,He was mowing the grass.,He was outside.,He was at the park.,He was at his house.,4,Where and when was Ted when he was calling Zoey on the phone?,127676,How I Met You Mother,0-47.22,met_s06e20_seg01_clip_01,He was at his house. 5638,She runs into the back to look for Matt Lauer's clothes.,She begs the dry cleaner.,She exits the dry cleaners.,She starts laughing.,She calls after Joey.,2,What does Phoebe do after she asks the dry cleaner guy if he had any of Matt Lauer's clothes that had not been cleaned yet?,127677,Friends,5.21-17.16,friends_s06e22_seg02_clip_01,She exits the dry cleaners. 5639,Mrs. Verhoeven's daughter says her mother was very sick.,Mrs. Verhoeven's daughter says her mother died in her sleep.,Mrs. Verhoeven's daughter says her mother did not pass away.,Mrs. Verhoeven's daughter says her mother died in a car accident.,Mrs. Verhoeven's daughter says she fell in the laundry room.,2,How does Mrs. Verhoeven's daughter say her mother passed away when Ross gives his condolences?,127678,Friends,11.89-18.82,friends_s08e07_seg02_clip_03,Mrs. Verhoeven's daughter says her mother did not pass away. 5640,A green book,A blue container,A yellow bag,A white shirt,A brown mug,1,What is Amy holding when she suggest they go to the cadaver lab at UCLA?,127679,The Big Bang Theory,15.42-25.2,s06e04_seg02_clip_10,A blue container 5641,Prince Charles.,Chandler.,Joey.,Emily.,Joshua.,4,Who is Rachel dating when she tries to describe the relationship to Ross?,127680,Friends,12.99-32.76,friends_s04e20_seg02_clip_04,Joshua. 5642,The snake shop.,The bird store.,Pet Emporium.,The grocery store.,They are not going to the store. They are heading home. ,1,Which store are Chandler and Monica heading to after the coffee shop?,127681,Friends,26.44-29.6,friends_s10e05_seg02_clip_15,The bird store. 5643,Allergies,TB,Flu,Pnemonia,A cold,1,What kind of illness did Alex say the cough sounded like after the woman next to him coughed?,127682,Grey's Anatomy,11.01-18.35,grey_s03e14_seg02_clip_06,TB 5644,Because he's friends with Ross.,Because he upset Monica.,Because of how young he is.,Because he had a job to do.,Because he was late for something.,2,Why did Rachel tell Tag to get out after Tag mentioned his age?,127683,Friends,0-9.44,friends_s07e14_seg02_clip_03,Because of how young he is. 5645,Tom Cruise,Emmitt Smith,Barney's mom,Barney's dad,Lily,1,Who did Barney see when he was walking down the street?,127684,How I Met You Mother,0-16.26,met_s02e14_seg02_clip_14,Emmitt Smith 5646,She drinks,She sits down on the bed,She squats by the bed,She eats,Sit up on the bed,4,"What does Amy do when after Sheldon asks her ""Why "" ?",127685,The Big Bang Theory,12-19.52,s09e11_seg02_clip_16,Sit up on the bed 5647,Rachel sits down on the sofa.,Rachel went to bed.,Rachel is making coffee.,Rachel is eating the cheesecake.,Rachel turns on the television.,3,What is Rachel doing after Chandler calls himself a horrible person?,127686,Friends,59.88-70.03,friends_s07e11_seg01_clip_00,Rachel is eating the cheesecake. 5648,"""Chand Love""","""Bing Love""","""Chandler Love""","""Our Love""","""The Love""",0,What did Chandler say Monica couldn't live without when he was talking to Phoebe?,127687,Friends,9.54-14.05,friends_s05e23-24_seg02_clip_28,"""Chand Love""" 5649,Joey and Rachel are at Goldenbowl Studios.,Joey and Rachel are in Joey's apartment.,Joey and Rachel are at Silvercup Studios.,Joey and Rachel are at 30 Rockefeller Plaza.,Joey and Rachel are at Central Park.,2,Where are Joey and Rachel when Joey gives Rachel a tour?,127688,Friends,11.66-15.44,friends_s06e15-16_seg02_clip_10,Joey and Rachel are at Silvercup Studios. 5650,Izzie told George to go visit a particular patient.,Izzie told George to take the escalator.,Izzie told George to go home.,Izzie told George to go take the stairs.,Izzie told George to go lay down on the hospital bed.,3,Where did Izzie instruct George to go after she said she was taking the elevator?,127689,Grey's Anatomy,35.57-37.82,grey_s01e04_seg02_clip_11,Izzie told George to go take the stairs. 5651,Drinking coffee. ,Hugging a woman. ,Kissing a woman. ,Leaving the coffee house. ,Walking up to the counter. ,2,What is the man doing when Phoebe is pointing at him in coffee house?,127690,Friends,48.21-51.87,friends_s08e08_seg01_clip_00,Kissing a woman. 5652,Mr. A was taken aback and didn't know what to say.,Mr. A was offended.,Mr. A laughed because it was silly.,Mr. A started crying.,Mr. A gave her a hug and thanked her for trying to console him.,0,How did Mr. A react after Phoebe mentioned his wife's spirit was now in her?,127691,Friends,0-23.64,friends_s02e11_seg02_clip_11,Mr. A was taken aback and didn't know what to say. 5653,She say Why doesnt she leave,She says she isnt young enough,She says she is not skinny,She says she is too dumb,She says is it because shes uneducated,4,What does Leonard's mother say after Penney hugs her ?,127692,The Big Bang Theory,10.68-61.02,s03e11_seg02_clip_15,She says is it because shes uneducated 5654,Violet is talking to Izzie,Violet is talking to Cooper,Violet is talking to Alex,Violet is taking to no one,Violet is talking to Pete,4,Who is Violet talking to when she is talking about her previous relationship?,127693,Grey's Anatomy,0-35.94,grey_s03e23_seg02_clip_06,Violet is talking to Pete 5655,Beckett was talking to Esposito,Beckett was talking to Fariq Yusef ,Beckett was talking to Ryan,Beckett was talking to Ryker,Beckett was talking to no one,1,Who is talking to Beckett when Castle walks in to talk to her?,127694,Castle,9.9-22.51,castle_s03e16_seg02_clip_06,Beckett was talking to Fariq Yusef 5656,Sheldon compared Leonard and Penny to Orpheus and Eurydice. ,Sheldon compared Leonard and Penny to Romeo and Juliet. ,Sheldon compared Leonard and Penny to Tristan and Isolde. ,Sheldon compared Leonard and Penny to Lancelot and Guenevere. ,Sheldon compared Leonard and Penny to Menelaus and Helen of Troy. ,4,What historical figures did Sheldon compare Leonard and Penny to when Penny said Leonard had a crush on her?,127695,The Big Bang Theory,19.21-36.81,s01e17_seg02_clip_11,Sheldon compared Leonard and Penny to Menelaus and Helen of Troy. 5657,A clown nose and shoes,A crown and fairy wings,A princess dress,A monkey costume,A mermaid tail,1,What is Castle wearing when the little girl asks if she can go play?,127696,Castle,12.48-18.71,castle_s07e04_seg02_clip_14,A crown and fairy wings 5658,Justin had actually tried to save Alan,Justin was the wrong person,Justin was in the wrong place at the wrong time,Justin had been acting in self defence when Alan died,Justin was just an actor hired for the day,4,Why was Justin innocent when he got killed?,127697,Castle,54.57-88.02,castle_s06e16_seg02_clip_25,Justin was just an actor hired for the day 5659,stubby fingers,rough fingers,arthritic fingers,hot dog fingers,callousy fingers,4,How did Rachel describe Phoebe's fingers when she was getting a massage?,127698,Friends,2.99-11.41,friends_s09e21_seg02_clip_16,callousy fingers 5660,Sheldon is holding a donut.,Sheldon is holding a a sandwich.,Sheldon is holding a brown paper bag.,Sheldon is holding a calculator.,Sheldon is holding a cellphone.,2,What is Sheldon holding when Amy talks to him in the hallway?,127699,The Big Bang Theory,0-5.49,s10e09_seg02_clip_01,Sheldon is holding a brown paper bag. 5661,She choked.,She grabbed the pen.,She put her head on the table.,She cried.,She stood up.,4,What did Thirteen do after Melanie handed her the folder?,127700,House M.D.,22.33-26.05,house_s05e16_seg02_clip_06,She stood up. 5662,It would be easier if Leonard had no friends,It would be easier if Leonard was a deep sleeper,It would be easier if Leonard was a violent sociopath,It would be easier if Leonard lived by himself,Nothing would be easier,2,What did Leonard say would be easier when he got up to answer the door?,127701,The Big Bang Theory,55.83-60.36,s01e10_seg02_clip_01,It would be easier if Leonard was a violent sociopath 5663,The recording took a morbid turn.,Ross ran out of tape.,His parents had finished recording what they wanted to say.,Ross' parents started making good-natured yet crude jokes.,Rachel interrupted him.,0,Why did Ross record the ending soon after starting it?,127702,Friends,18.65-54.83,friends_s10e04_seg02_clip_07,The recording took a morbid turn. 5664,Stanford rejected her college application.,Ashley sent her a letter breaking up with her.,Alexis found out her mother is missing.,Alexis was denied a credit card.,Alexis found out she was a victim of identity theft.,0,Why was Alexis upset after she read her mail?,127703,Castle,57.13-60.78,castle_s04e03_seg02_clip_00,Stanford rejected her college application. 5665,A burrito.,A breakfast biscuit.,French toast sticks with syrup.,An apple.,Nothing (he's drinking out of a mug.),2,What is Sheldon eating when he's in the car with Amy?,127704,The Big Bang Theory,9.1-21.46,s08e09_seg02_clip_06,French toast sticks with syrup. 5666,For being so kind.,For doing a great job with the wedding.,For being a great daughter in law.,For choosing a beautiful gown.,For making her son so very happy.,4,Why did Martha thank Beckett after Beckett thanked her? ,127705,Castle,27.67-34.48,castle_s06e23_seg02_clip_26,For making her son so very happy. 5667,Cried. ,Sat down. ,Ran out the door. ,Threw her hands up. ,Stood up. ,4,What did Cuddy do when she told Wilson she had to go talk to House? ,127706,House M.D.,0-3.6,house_s03e01_seg02_clip_26,Stood up. 5668,Cameron is in the operating room.,Cameron is in the bathroom.,Cameron is in House's office.,Cameron is standing next to Powell.,Cameron is in the lobby.,3,Where is Cameron when she is talking to Powell about being OK ?,127707,House M.D.,47.44-53.49,house_s03e03_seg02_clip_01,Cameron is standing next to Powell. 5669,they are in Monica's apartment,they are in Chandler's apartment ,they are in a suit shop,they are in a showroom,they are outside a botique,2,Where are Chandler and Rachel when they are looking for something for Chandler?,127708,Friends,0-6,friends_s07e20_seg02_clip_02,they are in a suit shop 5670,A patient's arm,An X-Ray machine,A Textbook,A computer screen,A paper,4,"What is House looking at when he says ""this game is fun?""",127709,House M.D.,82.82-85.58,house_s06e04_seg02_clip_00,A paper 5671,To rip apart,To swat flies,To read Joey's review,To hit each other on the head,To cut coupons,2,Why does everyone grab a newspaper after walking up to the newsstand?,127710,Friends,7.03-20.49,friends_s02e10_seg01_clip_00,To read Joey's review 5672,Wilson ,Cuddy,O'Shea,Foreman,Taub,2,Who did House sit down with when he was in the cafeteria? ,127711,House M.D.,86.51-92.62,house_s05e02_seg02_clip_01,O'Shea 5673,Smoothies,Tacos,Burgers,Fries,Pizza,4,What are Izzieand George eating when Meredith busts in the Bathroom?,127712,Grey's Anatomy,24.92-47.02,grey_s02e13_seg02_clip_20,Pizza 5674,Penny,Bernadette and Amy,Mailman,Penny and Zack,Sheldon,3,Who was at the door when Leonard answered?,127713,The Big Bang Theory,42.4-47.93,s04e11_seg01_clip_00,Penny and Zack 5675,A book.,Her glass.,Her jacket.,Her briefcase.,The mail.,2,What did Beckett put down before she sat down?,127714,Castle,7.77-23.87,castle_s06e14_seg02_clip_26,Her jacket. 5676,"Barney said, ""Friends should help others.""","Barney said, ""Don't stress over problems.""","Barney said, ""New is always better.""","Barney said, ""Always protect your friends.""","Barney said, ""Love yourself before other.""",2,What four words did Barney give Ted to live by when he gave him advice?,127715,How I Met You Mother,40.2-43.77,met_s06e05_seg02_clip_01,"Barney said, ""New is always better.""" 5677,Castle,Matt,Kurt,Eddie,Stephen,4,Who does Eddie name as Lyla's killer when he finally starts telling the truth?,127716,Castle,23.21-25.03,castle_s03e19_seg02_clip_23,Stephen 5678,happy,uncomfortable,comfortable,angry,bored,1,How did Sheldon feel when he slept on the air mattress?,127717,The Big Bang Theory,28.42-48.22,s02e01_seg02_clip_11,uncomfortable 5679,a dress,a wig,a hat,her shoes,her clothes.,1,what was put on the victim to make her look like beckett before she was killed?,127718,Castle,30.43-43.35,castle_s07e15_seg02_clip_11,a wig 5680,Penny doesn't understand why he would pick Bernadette. ,Penny is relieved. ,Penny cries. ,Penny screams at Raj for not choosing her. ,Penny tells Sheldon to go instead. ,0,What is Penny's reaction when Raj doesn't pick her to meet Lucy?,127719,The Big Bang Theory,1.17-5.26,s06e24_seg02_clip_05,Penny doesn't understand why he would pick Bernadette. 5681,Mistress Sucker and Mistress Meanie,Mistress Killer and Mistress Banana,Mistress Amber and Mistress Scorpion,Mistress Wonderful and Mistress Krystal,Mistress Amber and Mistress Venom,2,Who is Ryan interviewing before Esposito helps the Mistress with her boot?,127720,Castle,41.92-52.74,castle_s02e16_seg02_clip_18,Mistress Amber and Mistress Scorpion 5682,crying,looking through a chart,talking to derek,checking her watch,looking at her device,4,What is izzie doing when she walks up to the group as they stare at a room?,127721,Grey's Anatomy,37.61-45.31,grey_s03e18_seg02_clip_03,looking at her device 5683,A drink,A panini,A newspaper ,A candy bar,An umbreslla,0,What does Chase have in his hand when discussing House with his coworkers?,127722,House M.D.,82.12-90.74,house_s01e12_seg02_clip_11,A drink 5684,He was in the kitchen cooking.,He was in the living room.,He just walked out of the bathroom.,He was in the bathroom.,He was not in the apartment.,1,Where was Chandler when Joey entered the apartment.,127723,Friends,7.75-10.23,friends_s08e22_seg02_clip_13,He was in the living room. 5685,Hello there,Well look who it is ,"Good morning, Dr. Stephanie. ",greetings to you too,Hi,2,What did Sheldon say after Stephanie greeted him?,127724,The Big Bang Theory,0-19.81,s02e10_seg02_clip_00,"Good morning, Dr. Stephanie. " 5686,His looks,His name,His murderous impulses,His fair skin,His sense of humor,2,What does Leopold say he doesn't share with his brother when he's talking to Beckett?,127725,Castle,23.01-33.59,castle_s05e17_seg02_clip_17,His murderous impulses 5687,His keys,A notebook,His wallet,A pen,A check,3,What does Chase put in his pocket right before Foreman asks him how much money he makes?,127726,House M.D.,13.61-19.97,house_s06e10_seg02_clip_05,A pen 5688,A massage,A salon,A restaurant ,A movie,A fight ,0,Where did sams assistant have sam before 9:47 ?,127727,Castle,56.4-62.13,castle_s04e08_seg02_clip_13,A massage 5689,Because Gabe died.,Because Gabe had cut him off previously.,"Because Gabe had just asked him ""that thing about the speed limit.""",Because House needed to leave.,Because Gabe wasnt there.,2,Why does House not think it is Gabe's turn to ask a question after Gabe asks if it is his turn to ask a question?,127728,House M.D.,56.73-66.48,house_s03e07_seg02_clip_22,"Because Gabe had just asked him ""that thing about the speed limit.""" 5690,He looks through his microscope.,Chase goes to treat the patient.,Chase looks through charts.,Chase sits down.,He gets up. ,3,What does Chase do after House mentions stress? ,127729,House M.D.,42.67-48.19,house_s02e22_seg02_clip_21,Chase sits down. 5691,$20,$25,$40,$55,$50,4,How much is the shaving cream worth after Castle shows his team the can?,127730,Castle,79.21-82.09,castle_s02e23_seg02_clip_01,$50 5692,Because he wanted his transmission to run like new.,He really needed a new transmission.,He had cheated him.,Because he wanted to learn more about transmissions.,Because his wife had insisted he do it. ,2,Why did Bob say he put a new transmission in Larry's truck when he was confessing to all of the people?,127731,House M.D.,24.15-37.41,house_s08e05_seg02_clip_14,He had cheated him. 5693,vomitted,left,stood up,Grabbed her hand,cried,3,What did Sebastian do before he started talking?,127732,House M.D.,18.55-23.86,house_s02e04_seg02_clip_15,Grabbed her hand 5694,"Castle, after he fumbles with the pistol",Castle ,bartender,Grady,bystander,3,Who is the quickest draw after they pull their pistols?,127733,Castle,65.35-94.03,castle_s07e07_seg02_clip_25,Grady 5695,25 years,10 years,15 years,20 years,25 years to life,3,How much time did Beckett tell Bob that he could get for kidnapping when she was talking to him in the interrogation room?,127734,Castle,0-9.66,castle_s05e14_seg02_clip_16,20 years 5696,Cuddy said House was obsessed with Malaria ,Cuddy said House was obsessed with new technology,Cuddy said House was obsessed with experimental medicines,Cuddy said House was obsessed with porn,Cuddy said House was obsessed with running shoes,0,What did Cuddy say House was obsessed with when he presented her with a form for signature,127735,House M.D.,44.66-55.71,house_s06e13_seg02_clip_12,Cuddy said House was obsessed with Malaria 5697,She developed it in surgery,She developed it overnight,"She doesn't have one, she just doesn't want to leave.",She doesn't have one but is at risk,She doesn't have one but was exposed to one.,2,What does George tell Miss Larson after she asks since when did her mother develop a infectious disease?,127736,Grey's Anatomy,8.9-89.02,grey_s02e14_seg02_clip_19,"She doesn't have one, she just doesn't want to leave." 5698,Rachel introduces herself as a neighbor.,Rachel introduces herself as an admirer of the building.,Rachel introduces herself as Ross's friend.,Rachel introduces herself as Ross's wife.,Rachel introduces herself as the owner of the apartment.,1,How does Rachel introduce herself when she and Ross are at the door?,127737,Friends,0-3.96,friends_s08e07_seg02_clip_03,Rachel introduces herself as an admirer of the building. 5699,George sits on the floor.,George hugs Derek.,George looks after Derek stunned.,George plays chess with Izzie.,George hugs Meredith.,2,What does George do after Derek walks away?,127738,Grey's Anatomy,8.65-13.2,grey_s02e02_seg02_clip_20,George looks after Derek stunned. 5700,Call the police,Burn his clothes,Do his laundry,Put his shoe and sock back on,Go to the bank,3,What does Beckett think the killer did after taking the coin out of Ted's sock?,127739,Castle,17.91-31.79,castle_s06e12_seg02_clip_07,Put his shoe and sock back on 5701,On the night stand to the left of the victim.,Next to the victim by his head.,On the night stand to the right of the victim.,Next to the victim by his chest.,On the floor.,0,Where was the yellow evidence marker when the photographer was taking pictures of the dead body?,127740,Castle,58.36-61.12,castle_s06e19_seg02_clip_00,On the night stand to the left of the victim. 5702,Plastic Bottle,Mirror,Cloth,Thermometer ,Flashlight,4,What tool was House using when he was examining the patient?,127741,House M.D.,71.97-81.2,house_s03e15_seg02_clip_25,Flashlight 5703,A towel.,A baseball cap.,A helmet.,A tie.,A wig.,3,What was Jerry's head when he asked for five beers for the table?,127742,How I Met You Mother,37.02-41.91,met_s06e21_seg02_clip_04,A tie. 5704,Joey is in the park.,Joey is at a church.,Joey is at his own apartment.,Joey is at a hospital.,Joey is in the coffee shop.,3,Where is Joey when he asks if she is going to be alright?,127743,Friends,0-9.77,friends_s06e15-16_seg02_clip_10,Joey is at a hospital. 5705,Barney is sitting on the floor.,Barney is sitting on the arm of the couch.,Barney is sitting on the ceiling.,Barney is sitting on Lily's lap.,Barney is sitting on the bathtub.,1,Where is Barney sitting when Lily tells them the location?,127744,How I Met You Mother,42.62-45.92,met_s06e24_seg02_clip_07,Barney is sitting on the arm of the couch. 5706,Cuddy. ,Foreman. ,Cameron. ,Chase. ,House. ,3,Who is actually paying attention when the patient is getting scanned instead of arguing?,127745,House M.D.,22.1-28.68,house_s01e05_seg02_clip_05,Chase. 5707,Coming down the stairs,Standing by the window,Walking down the hall,Going up the stairs,Sitting behind the desk,4,Where do Castle and Slaughter find Hayley after entering the office?,127746,Castle,76.99-86.02,castle_s08e06_seg02_clip_09,Sitting behind the desk 5708,Mr. Maller,Mr. moler,Mr. mule,Mr. Mueller,Mr. Mullard,3,Who identified wardell as a suspect when being questioned by beckett and castle? ,127747,Castle,8.12-17.58,castle_s03e19_seg02_clip_05,Mr. Mueller 5709,hungry,happy,peaceful,bored,upset,4,How did Sheldon feel when Penny told him to keep it secret?,127748,The Big Bang Theory,36-51.94,s02e01_seg02_clip_02,upset 5710,a teacher,a rocket science,a manager,a gynecologist,a priest,3,What did Raj's father want him to be when he was grown?,127749,The Big Bang Theory,17.39-30.51,s01e08_seg02_clip_05,a gynecologist 5711,"Ross, Rachel, and Joey are sitting on Rachel's bed.","Ross, Rachel, and Joey are sitting on the couch in a coffee shop.","Ross, Rachel, and Joey are sitting on Monica's bed.","Ross, Rachel, and Joey are sitting on the floor of the coffee shop.","Ross, Rachel, and Joey are sitting on the counter of the coffee shop.",1,"Where are Ross, Rachel, and Joey sitting when they have their conversation?",127750,Friends,0-15.08,friends_s06e03_seg02_clip_19,"Ross, Rachel, and Joey are sitting on the couch in a coffee shop." 5712,Derek and George,McDreamy and McSteamy,Burke,stupid,uncaring,1,What does Addison call her past lovers when she is speaking with Naomi?,127751,Grey's Anatomy,51.86-64.62,grey_s03e22_seg02_clip_06,McDreamy and McSteamy 5713,Cat.,Dog.,"There was a cup, a small pitcher, another small cup, and a plastic pail (hospital items) on the table.",Syringe.,Cottn Balls.,2,What was on the table when House when he was in the bed?,127752,House M.D.,47.64-49.87,house_s07e23_seg02_clip_11,"There was a cup, a small pitcher, another small cup, and a plastic pail (hospital items) on the table." 5714,Necklace,Box,Safe,Pen,Dead body,3,Which item is found with a USB drive inside after finding a note?,127753,Castle,44.51-48.6,castle_s07e14_seg02_clip_06,Pen 5715,Howard,Penny,Bernadette,Sheldon,Leonard,3,Who was in the car with Amy when she was driving?,127754,The Big Bang Theory,0-48.16,s10e12_seg02_clip_06,Sheldon 5716,On the right side of the street facing East.,On the right side of the street facing West.,On the street facing North.,On the right side of the street facing South.,In the parking garage.,0,Where was the single white car after Beckett figured out the location of her victim?,127755,Castle,46.97-55.47,castle_s02e18_seg02_clip_20,On the right side of the street facing East. 5717,Susan describes how Chlorpromazine is highly addictive.,Susan thinks Chlorpromazine is only used as an anti-psychotic treatment. ,Susan states she does not like to take medicine. ,Bailey has prescribed her the wrong medications before. ,Susan wants to Bailey to tell her she is not crazy. ,1,Why does Susan think suspiciously of Chlorpromazine after Bailey inquires if Susan has taken it to treat her acid reflux?,127756,Grey's Anatomy,3.83-27.21,grey_s03e22_seg02_clip_06,Susan thinks Chlorpromazine is only used as an anti-psychotic treatment. 5718,A pen,A paper,A phone,A folder,A key,0,What is Beckett holding when she is talking to Tyler?,127757,Castle,14.42-19.37,castle_s02e16_seg02_clip_05,A pen 5719,a bottle of wine,a bouquet of flowers,a candle,a bowl,a microwave,3,What was next to Howard when he was talking to Sheldon on the phone about it being out of the washer?,127758,The Big Bang Theory,2.41-11.44,s01e16_seg02_clip_08,a bowl 5720,Laugh.,Cry.,Call her mom.,Grab her phone.,Offer tea to friends.,0,What did Amy when Sheldon was making a comment?,127759,The Big Bang Theory,0-57.91,s06e23_seg02_clip_11,Laugh. 5721,Raj is sitting in the chair,Raj is sitting on the couch,Raj is sitting at the kitchen counter,Raj is sitting on the floor,Raj is sitting at the desk,0,Where is Raj when Penny is talking to Sheldon and Howard need the apartment door,127760,The Big Bang Theory,9.12-18.82,s01e16_seg02_clip_01,Raj is sitting in the chair 5722,Cuddys ask if Harvey pays her to be pet,Cuddy ask if Harvey pays her to be loved,Cuddy ask if Harvey pays her to be kissed,Cuddy ask if Harvey pays her to be fed,Cuddy ask if Harvey pays her to be smothered and strangled.,4,What question did Cuddy ask Annette when she is talking to her?,127761,House M.D.,33.33-40.08,house_s01e20_seg02_clip_07,Cuddy ask if Harvey pays her to be smothered and strangled. 5723,Car keys,A coffee mug,A towel,A clip board,A spoon,3,What did House grab before sitting down?,127762,House M.D.,15.47-25.03,house_s03e20_seg02_clip_12,A clip board 5724,We got him,I am going to kill him.,"Damn it,we were so close.",Why did you let him go,Now what is next,2,What did castle said after he got up from the floor ?,127763,Castle,79.31-82.31,castle_s08e13_seg02_clip_21,"Damn it,we were so close." 5725,Because Carnell didn't want the school to find out.,Because Carnell couldn't remember.,Because Carnell was afraid he'd be arrested.,Because Carnell's father was standing there.,Because Carnell was ashamed of it.,3,Why did Carnell hesitate to answer when Cameron asked him if he took recreational drugs?,127764,House M.D.,32.8-39.26,house_s02e05_seg02_clip_01,Because Carnell's father was standing there. 5726,The hospital,His apartment,His office ,In the car,A restaurant ,3,Where was Castle when he got on the phone with Ryan? ,127765,Castle,2.31-10.18,castle_s06e07_seg02_clip_15,In the car 5727,Phoebe says that he gets thrown out of a plane.,Phoebe says that he gets hit by a bus.,Phoebe says that he gets shot in the leg.,Phoebe says that he gets pushed into a river.,Phoebe says that he gets hit by a motorcycle.,1,What does Phoebe say is the bam aspect of the story when Monica asks what the second bam means?,127766,Friends,27.29-51.79,friends_s08e02_seg02_clip_03,Phoebe says that he gets hit by a bus. 5728,Amy,Sheldon,Amber,Mandy,Natalie,4,Who's school locker did Taub and Kutner checked when they found a bottle of pills?,127767,House M.D.,58.9-79.6,house_s05e11_seg02_clip_02,Natalie 5729,he is crazy ,He can't drive ,I fell off,I was just sitting there,We had a difference of opinion. ,4,What did Sheldon say after Raj asked him why Howard left him in the middle of the road?,127768,The Big Bang Theory,0-57.51,s02e05_seg02_clip_04,We had a difference of opinion. 5730,There were blue wine glasses.,There were green wine glasses.,There were clear wine glasses.,There were orange wine glasses.,There were multi-colored wine glasses.,0,What color wine glasses were on the table when they were sitting.,127769,Friends,0-9.9,friends_s01e02_seg02_clip_09,There were blue wine glasses. 5731,Ryan is excited to go.,Ryan wants to go with Esposito to Grand Central instead.,Ryan wants to help Castle with prison records instead.,Ryan asks to go by himself.,Ryan is not comfortable going without police backup.,0,How does Ryan react after Beckett wants to go check out Chinatown?,127770,Castle,17.29-19.57,castle_s04e04_seg02_clip_11,Ryan is excited to go. 5732,hungry,sad,irritated,angry,bored,3,How did Sheldon feel when Howard and Raj made fun of his Grandmother?,127771,The Big Bang Theory,23.09-33.64,s03e17_seg02_clip_13,angry 5733,Beckett shown Castle a straight jacket,Beckett shown Castle a whip,Beckett shown Castle a mask,Beckett shown Castle fuzzy handcuffs,Beckett did not show Castle anything,2,What did Beckett show Castle after he picked up the paddle?,127772,Castle,11-13.2,castle_s02e16_seg02_clip_04,Beckett shown Castle a mask 5734,A book,A bug,A rock,A tree branch,Some leaves,2,What is Sheldon holding in his hand when he's outside talking to Leonard?,127773,The Big Bang Theory,0-5.9,s10e09_seg02_clip_06,A rock 5735,Michigan,New York,London,Texas,Denver,2,Where did Hunt say he was going after Beckett asked him was he going back to D.C?,127774,Castle,64.67-71.26,castle_s04e20_seg02_clip_25,London 5736,Sydney said she would find a new peer counselor for Izzie.,Sydney said she would find a boyfriend for Izzie.,Sydney said she would find a new passion in life for Izzie.,Sydney said she would find a better paying job for Izzie.,Sydney said she would find a new jacket for Izzie.,0,What did Sydney say she would find for Izzie when Izzie was zipping up her jacket?,127775,Grey's Anatomy,0-3.12,grey_s03e07_seg02_clip_25,Sydney said she would find a new peer counselor for Izzie. 5737,She coughs loudly ,She takes a sip of coffee,She throws a ball across the room,She hugs Leonard,She looks through her papers,4,What Leonard's mom do after Leonard and Sheldon banter about Leonard being a handful?,127776,The Big Bang Theory,24.36-32.48,s08e23_seg02_clip_05,She looks through her papers 5738,She doesn't want to lead House on any longer,She would rather be with Wilson than continue working for House,She is drunk and clearly isn't in the right frame of mind,She would rather work as House's equal than work under him,She wants to take House's job from him by sleeping with Wilson,1,Why does Amber reject House's fellowship after she talks to him about her relationship with Wilson?,127777,House M.D.,31.12-57.35,house_s04e12_seg02_clip_22,She would rather be with Wilson than continue working for House 5739,Tickle Toes,Dr. Tickles,Tickle Me Elmo,Sesame Street Tickler,Tickle monster,4,How did Wilson reference himself after the child said that moving the wand tickles her?,127778,House M.D.,14.57-25.39,house_s07e05_seg02_clip_14,Tickle monster 5740,Monica prepared lasagna,Monica prepared spagatti,Moncia prepared steak,Monica prepared soup,Monica didn't prepare dinner,1,What did Monica prepare for dinner when her parents came over?,127779,Friends,5.7-36.02,friends_s01e02_seg02_clip_09,Monica prepared spagatti 5741,A tiara.,A wedding band.,A bouquet of flowers.,The end of Penny's wedding gown.,The Bible.,2,What is Penny holding when Sheldon walks up towards the altar?,127780,The Big Bang Theory,22.41-26.61,s10e01_seg02_clip_16,A bouquet of flowers. 5742,The bladder,The kidneys.,The ureters,The urethra.,The stomach.,1,What key organ does Chase highlight after Foreman and House are discussing possible causes?,127781,House M.D.,22.22-29.93,house_s01e12_seg02_clip_07,The kidneys. 5743,Justin had stolen Pam's credit card,Justin was using Pam's credit card to purchase drugs,Justin was texting on the phone Pam purchased,Pam had been authorizing payments to Justin,Pam had given Justin her credit card,2,What was the connection between Pam's credit card and Justin before he died?,127782,Castle,0-30.81,castle_s06e16_seg02_clip_25,Justin was texting on the phone Pam purchased 5744,Izzie cries.,Izzie turns to look at Cristina in surprise?,Izzie pushes Meredith.,Izzie kisses Alex.,Izzie kisses George.,1,What does Izzie do after Cristina says it has been going on forever?,127783,Grey's Anatomy,21.16-24.31,grey_s01e07_seg02_clip_10,Izzie turns to look at Cristina in surprise? 5745,Castle said she probably thought they would lose respect for her,Castle said she probably thought they'd use it against her,Castle said she probably thought they would be jealous of her,Castle said she probably was ashamed of them,Castle said she probably wished she'd never posed for them,1,Why does Castle propose that Amber didn't tell anybody about the photos when he and Beckett were looking at them?,127784,Castle,0-7.24,castle_s03e23_seg02_clip_14,Castle said she probably thought they'd use it against her 5746,Take her off of the medication,Do an MRI scan of the brain,Run blood test on her heart,Stimulate deep in the brain,Give her a chance to recover,3,What does Wilson still want House to do to a patient after he already knows what is wrong?,127785,House M.D.,0-17.8,house_s04e16_seg02_clip_14,Stimulate deep in the brain 5747,Lily is sitting next to Ted.,James is sitting next to Ted.,Ted is sitting next to Ted.,Barney is sitting next to Ted.,Marshall is sitting next to Ted.,4,Who is sitting next to Ted when he is talking about different songs?,127786,How I Met You Mother,7.41-13.59,met_s03e04_seg02_clip_15,Marshall is sitting next to Ted. 5748,Because Ross' newspaper was more popular than the others,Because he wanted to hear all the reviews,Because he wrote Ross' review,Because Ross asked for a turn,Because Phobe and Joey's reviews were not positive,4,Why does Chandler ask Ross to read his review after Phoebe read hers?,127787,Friends,57.48-61.15,friends_s02e10_seg01_clip_00,Because Phobe and Joey's reviews were not positive 5749,The van's tires are blown out simultaneously.,The van starts to rock from side to side.,The van's rear doors are ripped open by a tactical team of police.,The van's front windshield explodes.,The van's side door slides open.,2,What happens to the van after Gage asks Beckett who the target is for the final time?,127788,Castle,72.62-82.74,castle_s04e16_seg02_clip_14,The van's rear doors are ripped open by a tactical team of police. 5750,Rachel.,Phoebe.,Gunther.,Monica.,Ross.,0,Who grabbed the phone off the table first when Rachel and Phoebe were trying to think of something fair?,127789,Friends,35.44-42.65,friends_s07e15_seg02_clip_01,Rachel. 5751,A male nurse,House,The patient,Chase,The woman in the Doctor coat,4,Who hands the chart to the foreman after leaving the room?,127790,House M.D.,0-6.68,house_s02e09_seg02_clip_14,The woman in the Doctor coat 5752,Under her arm.,On her seat.,On the cart.,On the bed.,On the nightstand.,1,Where did Adams put her notepad after she stood up?,127791,House M.D.,67.36-71.45,house_s08e09_seg02_clip_13,On her seat. 5753,Stuart is standing next to Leonard.,Priya is standing next to Leonard.,Penny is standing next to Leonard.,Raj is standing next to Leonard.,Bernadette is standing next to Leonard.,2,Who is standing next to Leonard when he is in his own kitchen?,127792,The Big Bang Theory,47.76-53.03,s09e07_seg02_clip_06,Penny is standing next to Leonard. 5754,Marshall is sitting in front of Ted.,Barney is sitting in front of Ted.,Lily is sitting in front of Ted.,Ted is sitting in front of Ted.,Stuart is sitting in front of Ted.,1,Who is sitting in front of Ted when he is talking about songs?,127793,How I Met You Mother,5.25-11.12,met_s03e04_seg02_clip_15,Barney is sitting in front of Ted. 5755,For art.,They do not have lights on their helmets.,So that they can rave together.,To create a light dance party.,"It is too dim, without it they won't be able to see.",4,Why do Sheldon and Raj have lights on their helmets when they are in the tunnel?,127794,The Big Bang Theory,0-5.29,s08e06_seg02_clip_16,"It is too dim, without it they won't be able to see." 5756,Rachel has a burger.,Rachel has a pizza.,Rachel has a hammer.,Rachel has a hot dog.,Rachel has a blanket.,2,What does Rachel have in her hand when she talks to Ross?,127795,Friends,12.19-17.99,friends_s05e16_seg02_clip_14,Rachel has a hammer. 5757,Little Bully did not want to break his watch.,Little Bully was going to use it as a weapon.,Little Bully did not want Chandler and Ross to steal his watch.,Little Bully couldn't see the time properly as it was put on the wrong way.,Little Bully was putting it in a pot that the winner would take.,0,Why did Little Bully take his watch off before the fight?,127796,Friends,8.26-23.32,friends_s02e21_seg02_clip_18,Little Bully did not want to break his watch. 5758,soda,Coffee,milk,tea,water ,1,What was Phoebe drinking when Joey was describing his meal? ,127797,Friends,30.09-44.82,friends_s10e09_seg02_clip_06,Coffee 5759,writing on the glass door,drawing on cuddys pictures,drawing on his arm,marking the wall,writing on the dry erase board,4,what is house doing with the marker when he is in the conference room with the team?,127798,House M.D.,73.37-83.34,house_s02e17_seg02_clip_04,writing on the dry erase board 5760,Ionized Water,Pure Fountain,Ice Water,Pure Water,Clear Water,3,What is the name of Carolyn's Project when Lopez is talking about it?,127799,Castle,17.68-29.3,castle_s07e18_seg02_clip_02,Pure Water 5761,Rachel is feeling nervous.,Rachel is feeling apathetic.,Rachel is feeling impressed and excited.,Rachel is feeling angry with Joey.,Rachel is feeling depressed.,2,How is Rachel feeling when Joey gives her a tour of the studio?,127800,Friends,14.18-34.35,friends_s06e15-16_seg02_clip_10,Rachel is feeling impressed and excited. 5762,Nothing,A nurse,A lamp,The door,A cart,4,What does House bump into when he tries to leave the procedure room?,127801,House M.D.,8.55-18.45,house_s03e04_seg02_clip_10,A cart 5763,A mop,A tv,A toy,A couch,A balloon,1,What is behind Ross when he said he'll be alright.,127802,Friends,24.19-29.15,friends_s08e03_seg02_clip_11,A tv 5764,He is doing creepy stuff. ,He dabbles in alchemy,It's Latin for black lead,He claims its sugar water.,He who has cane sugar in his blood.,2,"What did Foreman say that ""Plumbin Negrim"" stood for when House chanted it",127803,House M.D.,31.97-34.79,house_s06e17_seg02_clip_16,It's Latin for black lead 5765,Beckett is on a train.,Beckett is in the precinct.,Beckett is at Alexis' wedding.,Beckett is in a boiler room.,Beckett is at Lanie's baby shower.,3,Where is Beckett when Acosta runs off to escape arrest?,127804,Castle,0-9.03,castle_s08e08_seg02_clip_12,Beckett is in a boiler room. 5766,Leonard is talking to Penny.,Priya is talking to Penny.,Raj is talking to Penny.,Howard is talking to Penny.,Sheldon is talking to Penny.,0,Who is talking to Penny when they are in the kitchen?,127805,The Big Bang Theory,0-10.07,s09e07_seg02_clip_12,Leonard is talking to Penny. 5767,decrease the white count,increase the white count,run a fever,Increase red count,decrease red count,1,"How did House say that the body would react if the patient was exposed to a second infection before mentioning the body would ""send in the troops to start fighting""?",127806,House M.D.,10.78-21.11,house_s02e21_seg02_clip_14,increase the white count 5768,Addison said it looked like married couple at odds.,Addison said it looked like a cat fight.,Addison said it looked like cock fight.,Addison said it looked like a lover's quarrel. , Addison said it looked like a trainwreck of emotions.,3,What does Addison say it looked like when Meredith and Derek were arguing earlier?,127807,Grey's Anatomy,57.26-90.18,grey_s02e25_seg02_clip_11,Addison said it looked like a lover's quarrel. 5769,Coffee,File,Cane,Patient Chart,Food,2,What does House grab before he leaves his office?,127808,House M.D.,12.88-21.17,house_s06e19_seg02_clip_22,Cane 5770,A helmet.,Sunglasses.,A hat.,A tiera with diamonds.,A gold crown.,4,What was Rachel wearing on her head when she was sitting at the table?,127809,Friends,36.09-40.32,friends_s07e14_seg02_clip_19,A gold crown. 5771,Animal print,Floral,Solid color,Plaid,Paisley,3,What was the pattern of Howard's button-down shirt when Raj said he'd like to switch sides?,127810,The Big Bang Theory,0-9.62,s09e07_seg02_clip_06,Plaid 5772,Dusting,Cooking,Showering,Folding laundry,Yoga,3,What was Rachel doing when talking with Phoebe?,127811,Friends,25.1-40.16,friends_s06e13_seg02_clip_10,Folding laundry 5773,A sandwich,A Penny Blossum,A mug,A piece of pizza,A piece of cheesecake from the Cheesecake factory,1,What are Leonard and Penny holding in their hands after Sheldon leaves the area,127812,The Big Bang Theory,13.95-31.01,s02e18_seg02_clip_11,A Penny Blossum 5774,her sister,Ross,Phoebe,her mother,Rachel,4,Who did Monica think Chandler was when he came through the door?,127813,Friends,32.02-35.54,friends_s06e02_seg02_clip_04,Rachel 5775,He doesn't have any napkins,He's mad at Leonard ,He doesn't have enough napkins for himself and Leonard,He used all his napkins,He doesn't use napkins,2,Why won't Sheldon give Leonard a napkin when he asks for one?,127814,The Big Bang Theory,5.76-28.49,s03e05_seg02_clip_00,He doesn't have enough napkins for himself and Leonard 5776,a computer monitor,a priceless lamp,a picture frame,a tv,a laptop,4,what does gael push aside when he tells robin that he must have her when they are in brooklyn?,127815,How I Met You Mother,48.9-57.35,met_s03e02_seg02_clip_06,a laptop 5777,He ate the rest of it. ,He dropped it into the container.,He threw it in the trash. ,He threw it out the window. ,He offered it to Stella.,1,What did Ted do after taking a bite of the potato skin?,127816,How I Met You Mother,28.93-31.59,met_s03e18_seg02_clip_04,He dropped it into the container. 5778,In a taxi. ,In the Hospital.,At Howard House.,His apartment.,In Bernadette's car.,4,Where is Raj when he calls his dad on the phone?,127817,The Big Bang Theory,48.05-52.05,s10e03_seg02_clip_15,In Bernadette's car. 5779,Pouring coffee,Typing on her computer,Opening a soda,Looking through a file,Hanging up the phone,0,What was Beckett doing when Castle walked in the room and asked her what she would do if she won the lottery?,127818,Castle,77.37-85.11,castle_s03e14_seg02_clip_08,Pouring coffee 5780,Kyle tells Montgomery,Kyle tells Steve.,Kyle tells Esposito,Kyle tells Castle.,Kyle tells Scott,3,Who does Kyle tell to keep his zombie outfit after Beckett says that the DA is looking into dismissing charges?,127819,Castle,0-26.69,castle_s04e22_seg02_clip_25,Kyle tells Castle. 5781,Lanie is touching dead body.,Lanie is touching an animal.,Lanie is touching a shell casing.,Lanie is touching drugs.,Lanie is touching a gun.,0,What is Lanie touching with her pen when the investigators are walking up to her?,127820,Castle,0.89-2.66,castle_s01e04_seg02_clip_01,Lanie is touching dead body. 5782,She had it flat ironed.,She was completely bald.,Her hair was in braids and beads.,It was in Shirley Temple ringlets.,It was in an updo.,2,What style did Robin have her hair when she was in Argentina?,127821,How I Met You Mother,24.15-48.9,met_s03e02_seg02_clip_06,Her hair was in braids and beads. 5783,The wall,The chair,The board,The computer,The dog,2,What did Castle pointed to when he stood beside Beckett? ,127822,Castle,59.32-65.57,castle_s03e09_seg02_clip_10,The board 5784,Grab Castle and take the gun hostage,Grab the gun and take Castle hostage,Grab the gun and take Beckett hostage,Grab Beckett and take the gun hostage,Leave the station,1,What does Coonan do after Beckett confronts him,127823,Castle,40.19-73,castle_s02e13_seg02_clip_24,Grab the gun and take Castle hostage 5785,cane,watch,phone,folder,chart,0,What was House holding before he started talking?,127824,House M.D.,0-3.24,house_s08e12_seg02_clip_11,cane 5786,Laying in the hospital bed.,Sitting on the floor.,Sitting in a chair.,Standing by the window. ,No where in the room.,1,Where does Taub find Bobby when he goes into his hospital room?,127825,House M.D.,49.25-59.17,house_s08e16_seg02_clip_08,Sitting on the floor. 5787,George is too weak,george refused treatment,George is claustrophobic ,george is too big for an LP,George can't be sedated,3,Why can't foreman do a LP on george after house requested a sample of georges CSF?,127826,House M.D.,1.9-8.55,house_s03e06_seg02_clip_17,george is too big for an LP 5788,he goes to his desk,he gets up to leave,he goes to the break room,he picks up a phone,he uses his computer,1,"What does Ryan do when he was sitting on their desks with Espostio, Ryan, Beckett and Castle?",127827,Castle,85.39-95.09,castle_s04e04_seg02_clip_19,he gets up to leave 5789,Penny was at the auto repair shop.,Penny was at the grocery store in the checkout line.,Penny was at the beauty salon getting her hair cut.,Penny was at the workbench at Howard's workshop.,Penny was at the Chinese take out restaurant.,3,Where was Penny when she got the text from Howard?,127828,The Big Bang Theory,25.86-31.87,s09e19_seg02_clip_08,Penny was at the workbench at Howard's workshop. 5790,Sam's sublet.,Helen's apartment.,An office.,Sarah's house.,The hallway.,2,Where is Helen Parker when she is telling Castle and Beckett about her children?,127829,Castle,34.05-46.76,castle_s02e10_seg02_clip_05,An office. 5791,Uno,Bingo,Travel Twister,Monopoly,Hide and Seek,2,What does Amy suggest the girls play when they are talking together?,127830,The Big Bang Theory,36.74-53.64,s05e10_seg02_clip_02,Travel Twister 5792,"George told her that her blood was toxic, not their marriage.","George told her that their marriage was toxic, not her blood.","George told her that both her blood and their marriage was toxic,","George told her that neither her blood nor their marriage was toxic,",George was unable to speak.,0,What did George tell Callie when she ran up to him on the stretcher?,127831,Grey's Anatomy,10.14-14.75,grey_s03e14_seg02_clip_14,"George told her that her blood was toxic, not their marriage." 5793,The shop model.,Phoebe.,Emily.,Rachel.,Monica.,4,Who tried on the wedding dress when they were picking it up at the bridal shop?,127832,Friends,46.55-63.39,friends_s04e20_seg02_clip_05,Monica. 5794,Ross asks about Carol's family.,Ross asks about Carol's coworkers.,Ross asks about Carol's employees.,Ross asks about Marty's family.,Ross asks about Susan's mother.,0,Who does Ross ask about when talking to Carol?,127833,Friends,41.19-46.08,friends_s01e02_seg02_clip_01,Ross asks about Carol's family. 5795,A cup,A phone,A bag,A waller,A plate,0,What did the blonde lady has in her hand when she was about to go with the police?,127834,Friends,0-7.48,friends_s05e23-24_seg02_clip_41,A cup 5796,falls down ,gets tackled by the janitor ,drops his candy ,sign falls on his head,he makes a phone call,1,What happens to taub after talking to chase,127835,House M.D.,75.62-83.72,house_s08e12_seg02_clip_21,gets tackled by the janitor 5797,Sad,Happy,Upset,Angry,Stressed,1,What is Zoey's emotion when Marshall calls her and tells her Ted is in love with her?,127836,How I Met You Mother,41.94-64.03,met_s06e15_seg02_clip_17,Happy 5798,A year and 40 days,Ten years,A year,Two years,a week,2,How long had Sue known Elise before she was killed?,127837,Castle,34.38-43.43,castle_s02e04_seg02_clip_23,A year 5799,Because Monica is hungry,Because Monica thought the wedding was about her and Ross is making it about him,Because Monica is tired and wants to sleep,Because Monica wants to see how loud she can be,Because Monica is crazy,1,"Why is Monica yelling at Ross, when they are talking about the wedding?",127838,Friends,3.99-14.11,friends_s10e12_seg02_clip_12,Because Monica thought the wedding was about her and Ross is making it about him 5800,He banged the phone on the desk.,He sent an email.,He hung up a trophy.,He turned on the tv.,He watered the plants.,0,What did Ross do after he said bye to Rachel?,127839,Friends,20.07-26.86,friends_s03e12_seg02_clip_02,He banged the phone on the desk. 5801,No rooms,Private rooms,community rooms,Semi-private rooms,Bathrooms,3,What rooms are available at the hospital when ross and rachel show up?,127840,Friends,0-7.3,friends_s08e23-24_seg01_clip_01,Semi-private rooms 5802,two,five,ten,seven,four,4,How many people did Sebastian say die of TB every minute when he was sitting at the conference table talking to the doctors?,127841,House M.D.,70.06-77.89,house_s02e04_seg02_clip_00,four 5803,Next year.,Next month.,In the Fall.,In the Winter.,In December.,1,When did Michael say he was graduating after being asked how he was by Wilson?,127842,House M.D.,40.05-47.33,house_s08e21_seg02_clip_07,Next month. 5804,Michelangelo,Mozart,Bach,Renoir,Beethoven,4,Who did West Side say was responsible when the detectives questioned him?,127843,Castle,0-10.12,castle_s04e19_seg02_clip_06,Beethoven 5805,Standing in the kitchen.,Sitting on the sofa.,In the bathroom.,Sitting on the floor.,Laying on the sofa.,3,Where was Phoebe when Monica was telling them she broke up with Alan?,127844,Friends,12.91-20.9,friends_s01e03_seg02_clip_19,Sitting on the floor. 5806,A different student,Matt,Chi,Chi's dad,Matts mom,2,Who does chase think isn't going to make it when learning how serious the symptoms are?,127845,House M.D.,2.3-7.82,house_s01e08_seg02_clip_11,Chi 5807,He leaves the apartment. ,He walks to the kitchen. ,He stands up from the couch. ,He pushes Ross. ,He gets in Ross' face. ,2,What does Chandler do after Ross points at him?,127846,Friends,21.5-28.48,friends_s09e17_seg02_clip_05,He stands up from the couch. 5808,She refers to the lingerie she's wearing as ridiculous.,She refers to the shoes she's wearing as ridiculous.,She refers to the hat she's wearing as ridiculous.,She refers to the book she's reading as ridiculous.,She refers to the kitten she's petting as ridiculous.,2,What does Ms. Graber refer to as ridiculous after the three doctors walk into her room?,127847,Grey's Anatomy,5.95-11.05,grey_s02e23_seg02_clip_06,She refers to the hat she's wearing as ridiculous. 5809,"Yes I am. But today, I don't care.",Not today. Today I'm on codeine.,Not today. Today I'm on ibuprofen.,Not today. Today I'm on morphine.,Yes I am. But I'm also on morphine.,3,"What did House say after Cameron said, ""You've gotta be in pain""?",127848,House M.D.,52.97-59.65,house_s02e24_seg02_clip_01,Not today. Today I'm on morphine. 5810,He understands that kids can be cruel. ,He says that he doesn't understand why he didn't have any friends. ,He says he gets that Sheldon didn't have any friends growing up. ,He understands that Sheldon lacks happiness. ,He understands that he wants Sheldon to go away. ,2,What does Arthur say he understands when he is speaking with Sheldon?,127849,The Big Bang Theory,51.05-54.89,s06e22_seg02_clip_12,He says he gets that Sheldon didn't have any friends growing up. 5811,Ignoring the phone call,Talking to Phoebe,Talking about Rachel,Looking at a magazine,Thinking about babysitting,3,What was Monica doing before Amanda called?,127850,Friends,3.18-6.36,friends_s10e03_seg02_clip_07,Looking at a magazine 5812,Sideshow Larry,Ugly face Bob,Spackle back Larry,Crazy eye Louie,Stinky hair Frankie,2,What does Monica call Phoebe's friend after she's asked to go on a date?,127851,Friends,13.12-20.44,friends_s03e15_seg02_clip_04,Spackle back Larry 5813,white,blue,purple,pink,red,4,What color was the rose on Chanler's suit before Monica's mother walked away?,127852,Friends,11.07-12.52,friends_s08e01_seg02_clip_03,red 5814,The patient is twenty six years old,The patient is ten years old,The patient is sixty years old,The patient is sixteen years old,The patient is six years old,4,How old is the patient when she had pancreatitis discovered in her body?,127853,House M.D.,7.66-12.17,house_s03e09_seg02_clip_02,The patient is six years old 5815,angry,nervous,happy,anxious,elated,1,How did Sheldon feel when he thought he would be late?,127854,The Big Bang Theory,0-9.3,s04e11_seg02_clip_07,nervous 5816,The cake in the kitchen was red velvet,The cake in the kitchen was chocolate,The cake in the kitchen was carrot,The cake in the kitchen strawberry,The cake in the kitchen pineapple,1,Which kind of cake was in the kitchen when Monica was with her mother,127855,Friends,9-21.31,friends_s02e16_seg02_clip_03,The cake in the kitchen was chocolate 5817,Val was an advocate and Matt joined her at the protest. ,Val and Matt were tourists and wanted to take in as much as they could,Matt was an advocate and Val joined him at the protest. ,Val and Matt had just happened to walk by the protest.,Val and Matt had organized the protest. ,1,Why does Val say she and Matt were at the protest when the incident occured?,127856,Castle,32.45-42.97,castle_s04e19_seg02_clip_02,Val and Matt were tourists and wanted to take in as much as they could 5818,House walked close to it,House went running outside,House started crying,House called the police,House sat on the floor,0,What did House do when he saw a stain on the floor,127857,House M.D.,64.88-74.54,house_s03e01_seg02_clip_02,House walked close to it 5819,Monica carry a dog.,Monica carry a stroller.,Monica carry a vacuum.,Monica carry a box.,Monica carry a suitcase,2,What was doing Monica when Rachel crossed her?,127858,Friends,11.12-17.39,friends_s04e13_seg02_clip_11,Monica carry a vacuum. 5820,happy,upset,bored,strong,gloomy,1,How did Raj feel when he had to be Aquaman?,127859,The Big Bang Theory,42.18-62.03,s04e11_seg02_clip_07,upset 5821,She takes their order.,She fills their water glasses.,She gives Bernadette a hug.,She clears their plates from the table.,She checks her cell phone for messages.,1,What does Penny do when she walks up to Howard and Bernadette eating at the table?,127860,The Big Bang Theory,0-7.22,s06e07_seg02_clip_05,She fills their water glasses. 5822,He sits at his lap top on a desk. ,He cooks dinner. ,He washes dishes. ,He feeds the dog. ,He kisses the girl. ,0,What does Sheldon do after he walks into the room? ,127861,The Big Bang Theory,33.31-43.21,s07e11_seg01_clip_00,He sits at his lap top on a desk. 5823,Rachel cries on the couch.,Rachel kisses Ross.,Rachel dances with Monica.,Rachel goes to the coffee house.,Rachel realizes she liked the rush of air from the refrigerator.,4,What happens after Rachel stands up?,127862,Friends,66.77-74.78,friends_s05e23-24_seg02_clip_05,Rachel realizes she liked the rush of air from the refrigerator. 5824,Derek held a cup of espresso,Derek pushed George,Derek killed George,Derek hit the nurse,Derek jumped out of the window,0,What did Derek do after George left?,127863,Grey's Anatomy,41.95-48.13,grey_s01e07_seg02_clip_12,Derek held a cup of espresso 5825,Boudreau threatens Castle and Alexis,Castle is angry at Esposito.,Castle need to use the restroom.,Castle is looking for Beckett and is sure Boudreau is Tyson.,Castle hears Beckett's voice in the apartment.,3,Why does Castle stop Boudreau from closing the door when Boudreau is being questioned?,127864,Castle,79.46-93.49,castle_s07e15_seg02_clip_00,Castle is looking for Beckett and is sure Boudreau is Tyson. 5826,the patient died,a bomb went off,a white female came into his room,the nurse tripped,they kissed,2,what happened after the white female nurse told the patient that he should be back to ditching work in no time,127865,House M.D.,53.25-62.5,house_s01e03_seg02_clip_06,a white female came into his room 5827,In a chair.,Behind the desk. ,In the hallway.,Outside.,In front of the desk. ,1,Where was Ross in the classroom before he went over to the map? ,127866,Friends,29.41-43.14,friends_s08e12_seg02_clip_21,Behind the desk. 5828,He closed the blinds.,He turned on the light.,He opens the door.,He threw something in the trash.,He dropped his phone.,2,What does House do before the talks to Cuddy about prison tats?,127867,House M.D.,5.81-13.86,house_s03e11_seg02_clip_02,He opens the door. 5829,Kutner said the patient put the juice on the television.,Kutner said the patient put the juice on the kitchen counter.,Kutner said the patient put the juice on a coaster.,Kutner said the patient put the juice on a glass table.,Kutner said the patient put the juice on the floor.,4,Where did Kutner say a patient put a glass of juice when the patient was fixing his television?,127868,House M.D.,25.75-28.87,house_s05e17_seg02_clip_13,Kutner said the patient put the juice on the floor. 5830,Pictures of buildings.,Five folders.,A settings menu.,Pictures of animals.,Pictures of food.,1,What was on the right side of the screen before Tori put up the deleted picture?,127869,Castle,14.4-17.1,castle_s06e09_seg02_clip_07,Five folders. 5831,They stink.,They're not her favorite kind.,She's allergic.,She says they're ugly.,They look fake.,2,Why does Stella refuse Ted's flowers when he hands them to her?,127870,How I Met You Mother,0-14.91,met_s03e13_seg02_clip_17,She's allergic. 5832,Tyson's,The pier,Searching old warehouses,To the tech lab to review all of the camera footage,Home ,0,Where does Castle go when he is searching for Beckett away from his team?,127871,Castle,26.8-55.48,castle_s07e15_seg02_clip_05,Tyson's 5833,Chandler. ,Ross. ,Joey. ,Monica. ,Phoebe. ,0,Who comes home when the girls are talking in the apartment?,127872,Friends,2.44-10.37,friends_s04e13_seg02_clip_10,Chandler. 5834,He slipped on a banana peel.,He is surprised to see her.,He is leaning on it.,A gust of air makes him fall.,Joey is hit by the door.,2,Why does Joey fall after Rachel opens the door?,127873,Friends,31.32-39.08,friends_s09e23-24_seg02_clip_41,He is leaning on it. 5835,Reading,Walking,Carrying boxes,Checking off items on a clipboard,Sitting,3,What is Alicia doing when she meets Leonard and Sheldon?,127874,The Big Bang Theory,0-10.2,s02e19_seg02_clip_02,Checking off items on a clipboard 5836,in the bed,in the kitchen,on the couch,on the porch,at the table,0,Where are Amy and Sheldon when they talk about being nervous?,127875,The Big Bang Theory,8.93-23.28,s09e11_seg02_clip_16,in the bed 5837,Chandler and Monica are at a car wash,Chandler and Monica are at a casino,Chandler and Monica are at a restaurant,Chandler and Monica are sitting in the park,Chandler and Monica are laying in the grass,2,Where are Chandler and Monica before she tells him she is cold,127876,Friends,0-10.68,friends_s06e24-25_seg02_clip_07,Chandler and Monica are at a restaurant 5838,Izzy walks through the hall into the room when the patient is wearing the floral robe,Christina walks through the hall into the room when the patient is wearing the floral robe,Geroge walks through the hall into the room when the patient is wearing the floral robe,Meredith walks through the hall into the room when the patient is wearing the floral robe,Alex walks through the hall into the room when the patient is wearing the floral robe,1,Who walks through the hall into the room when the patient is wearing the floral robe,127877,Grey's Anatomy,57.78-67.66,grey_s01e09_seg02_clip_13,Christina walks through the hall into the room when the patient is wearing the floral robe 5839,Bailey tells him that the doctor is opening the skull cap.,Bailey tells him that it is okay to take a nap.,Bailey tells him that Derek will be okay.,Bailey tells him that she loves him.,Bailey tells him that it is cold in the hospital. ,0,What does Bailey tell her son when she is watching the surgery?,127878,Grey's Anatomy,39.49-94.03,grey_s02e18_seg02_clip_18,Bailey tells him that the doctor is opening the skull cap. 5840,That she shouldn't wear flip flops.,That she is driving too fast.,That he want's to drive.,The car is needing a tune up.,That he can drive.,0,What does Sheldon tell Penny when she is driving?,127879,The Big Bang Theory,11.43-22.23,s04e01_seg02_clip_06,That she shouldn't wear flip flops. 5841,Raj.,Sheldon.,Amy.,Leonard.,Stuart.,1,Who talked Penny with when sat next to Bernadette?,127880,The Big Bang Theory,8.51-63.02,s06e12_seg02_clip_03,Sheldon. 5842,House put Chase on hold,House went to sleep,House drinking coffee,House drinking tea,House doing nothing,0,What did House do when talking to Chase?,127881,House M.D.,13.44-20.55,house_s02e19_seg02_clip_17,House put Chase on hold 5843,crying,standing,laughing,sitting,eating,3,What was the girl doing before she started talking?,127882,Friends,3.2-11.91,friends_s08e10_seg02_clip_15,sitting 5844,Weapon,Body,Gun,Blood,Bullet casings,1,What was the main thing missing from the murder scene when the police arrived?,127883,Castle,5.03-10.51,castle_s04e03_seg02_clip_01,Body 5845,She hugged Phoebe.,She slapped Phoebe.,She ran out of the room.,She took out her phone.,She fell on the floor.,0,What did the woman do after Phoebe talked to her?,127884,Friends,44.18-52.83,friends_s04e11_seg02_clip_19,She hugged Phoebe. 5846,maid,aunt,mother,cousin,sister,2,What relationship does Martha have with Castle that you discover after he walks in?,127885,Castle,21.23-92.32,castle_s03e18_seg02_clip_00,mother 5847,Dave did not own a cellphone.,Martin did not know Dave's phone number.,Martin left his phone at home.,"Martin tried to call Dave, but the phones were out.",Dave was dead so he could not respond to Martin's calls.,3,Why was Martin unable to get a hold of Dave when Dave was out looking for Gabriel?,127886,Castle,24.33-27.42,castle_s08e21_seg02_clip_03,"Martin tried to call Dave, but the phones were out." 5848,Central Park skating rink,A tap class,A high school play,A Rockette's auditon,The Macy's Thanksgiving Day parade.,1,Where does Monica say she isn't brave enough to stand when she is sitting at the table?,127887,Friends,16.21-26.71,friends_s01e21_seg02_clip_11,A tap class 5849,heavy cream,packets of sugar,syrup,pixie sticks,shots of espresso ,1,What is leonard pouring into his coffee before sheldon arrives to the cafeteria table?,127888,The Big Bang Theory,46.89-56.83,s05e15_seg02_clip_00,packets of sugar 5850,Ross and Joey made a mess on the floor.,She made Tag angry.,She didn't know where Tag was.,She freaked Tag out.,Ross was in the apartment.,3,Why was Rachel upset when she was talking to Joey?,127889,Friends,40.02-47.9,friends_s07e08_seg02_clip_16,She freaked Tag out. 5851,Restaurant,His cubicle ,Boss's office,Breakroom,Bathroom,1,Where was Earl when he said the universe cares? ,127890,Friends,32.88-37.84,friends_s07e13_seg02_clip_22,His cubicle 5852,his cell phone,the window,a framed photograph hanging on the wall,the door,the floor,2,What does Castle look at when the doctor starts to talk about the conditions of the patient's release?,127891,Castle,10.75-15.68,castle_s07e23_seg02_clip_19,a framed photograph hanging on the wall 5853,Where are you moving?,"Are you now or have you ever been a salsa, Irish-folk or breakdancer?",What's your name?,On a scale of one to ten how light of foot would you describe yourself?,Can you move quickly?,3,What was the first question did Sheldon have for Alicia after he greeted her?,127892,The Big Bang Theory,32.41-45.32,s02e19_seg02_clip_02,On a scale of one to ten how light of foot would you describe yourself? 5854,She is amused and says she will see what she can do,She is indignant and turns her down,She is flattered and gives into Phoebe's request,She is angry and threatens to report Phoebe,She is amused but says the concert is a sell-out,1,How does Trudie react when she learns why Phoebe is really there?,127893,Friends,48.23-58.11,friends_s08e10_seg02_clip_15,She is indignant and turns her down 5855,Paul is sad Ann is in custody for murder.,Paul is happy Ann is detained.,Paul locked his coat in Ann' car.,Paul wanted to ask Ann on a date.,Paul broke his golf club.,0,Why is Paul disappointed after Castle recounts Ann's arrest?,127894,Castle,44.08-52.54,castle_s04e02_seg02_clip_22,Paul is sad Ann is in custody for murder. 5856,A hot espresso coffee ,A bottle of water,An iced tea,A soda in a can ,An ice blended frappacino ,0,What beverage does House purchase for Wilson and offer him when Wilson walks into House's office?,127895,House M.D.,0-8.19,house_s03e22_seg02_clip_09,A hot espresso coffee 5857,Burke was drinking tea.,Burke was eating.,Burke was reading a book.,Burke was watching television.,Burke was asleep.,2,What was Burke doing when Cristina was talking to him?,127896,Grey's Anatomy,0-3.31,grey_s03e02_seg02_clip_07,Burke was reading a book. 5858,Why was he setting in her favorite chair.,Why he was eating her food.,Why he didn't give her a ride the other day.,Why he didn't have a shirt on.,Why he hasn't called Bernadette.,4,What did Penny ask Howard after she set on the couch?,127897,The Big Bang Theory,15.94-23.31,s03e09_seg02_clip_03,Why he hasn't called Bernadette. 5859,Starts laughing. ,Rolls his eyes.,Stands up.,Slaps Ross.,Rocks an imaginary baby.,4,What does Chandler do after Ross tells Monica that he would never snap at her like that?,127898,Friends,1.54-8.94,friends_s06e12_seg02_clip_14,Rocks an imaginary baby. 5860,Phoebe has a harmonica on her lap.,Phoebe has a piano on her lap.,Phoebe has a guitar on her lap.,Phoebe has a purse on her lap.,Phoebe has a coffee on her lap.,2,What does Phoebe have on her lap when she is singing her song?,127899,Friends,4.65-8.43,friends_s01e10_seg02_clip_02,Phoebe has a guitar on her lap. 5861,In the boss's office,In Leslie's car,In an elevator,In a cafeteria,In the apartment stairwell,3,Where were Leslie and Leonard when they were discussing their date for that evening?,127900,The Big Bang Theory,14.5-21.43,s02e02_seg02_clip_04,In a cafeteria 5862,She says she will respect that. ,She says his minute is up. ,She asks Castle to go talk to him. ,She tells Ryan that people don't get a minute on her watch. ,She orders him to question Winters. ,1,How does Beckett respond after Ryan says that Winters needed a minute?,127901,Castle,24.85-31.29,castle_s05e06_seg02_clip_02,She says his minute is up. 5863,She sarcastically says she hopes she's a waitress her entire life.,She says her job is the absolute best.,She says she is quitting.,She says she got fired.,She says she finally got her promotion.,0,What does Penny say about her job after she gets home from work?,127902,The Big Bang Theory,13.04-59.26,s02e14_seg02_clip_04,She sarcastically says she hopes she's a waitress her entire life. 5864,a movie,a party,a fight,a murder,An interrogation,4,What does the man see on the computer screen before be questioned?,127903,Castle,0-6.3,castle_s05e11_seg02_clip_20,An interrogation 5865,Behind the trash can.,In the stall.,Sitting in a chair.,Hanging over the stall.,Laying over the sinks.,1,Where was Ted at in the bathroom when Marshall and Lily started kissing?,127904,How I Met You Mother,70.21-71.77,met_s02e21_seg02_clip_18,In the stall. 5866,To frame Bronson's girlfriend.,The setup was intricate enough to fool the best detective. ,To create confusion between all investigators.,To trick the police into believing Bronson was guilty.,To create a diversion.,4,Why does Beckett believe the suspect set Bronson up in the hardest way after Mccord disagrees with her?,127905,Castle,72.86-74.58,castle_s06e01_seg02_clip_24,To create a diversion. 5867,A girl who says her gait is weird.,A girl named Tina who says to Beckett you have a very bizarre gait.,A lady and she says something about a gait.,Tina does and says her gait is bizarre.,Tina does and she tells her about her gait.,1,Who walks up behind Beckett when they are following Vogel and what does she say to Beckett?,127906,Castle,6.3-19.36,castle_s07e22_seg02_clip_15,A girl named Tina who says to Beckett you have a very bizarre gait. 5868,House picked up a friend.,House was in traffic .,House stopped to eat. ,House decided to wash his car.,House got a flat tire. ,4,What happened to House when he was driving? ,127907,House M.D.,0.45-15.08,house_s08e07_seg02_clip_19,House got a flat tire. 5869,Drinking beer. ,Smoking cigarettes. ,Drinking wine. ,Smoking marijuana. ,Gossiping. ,1,What are the two women doing outside when Rachel is upset with them?,127908,Friends,0-2.95,friends_s05e18_seg02_clip_18,Smoking cigarettes. 5870,Because she thinks its always about Foreman,He farted and made the whole place smell.,He tried to kiss her.,He said that she only got the job because she was pretty.,Foreman stole her patient.,0,Why does Cameron get made at Foreman when testing the sister in the scanner?,127909,House M.D.,19.28-34.32,house_s01e05_seg02_clip_05,Because she thinks its always about Foreman 5871,A photo,A to-go meal,A wrapped gift,Handcuffs,A phone,2,What did Esposito set on the table when Ryan was questioning Vance about the security footage?,127910,Castle,42.67-51.29,castle_s06e04_seg02_clip_24,A wrapped gift 5872,Phoebe was referring to a long plain pretzel that Rachel was holding.,Phoebe was referring to a long thin pastry Joey was holding.,Phoebe was referring to a chocolate eclair that Monica was holding.,Phoebe was referring to a long pretzel that Rachel was holding.,Phoebe was referring to a churro that Rachel was holding.,1,"What was Phoebe referring to when she mentioned a ""phallic-shaped man-cake""?",127911,Friends,4.35-24.95,friends_s02e19_seg02_clip_02,Phoebe was referring to a long thin pastry Joey was holding. 5873,Champange,soda,vodka,wine,rum,0,What is Ross holding when he enters the cafe?,127912,Friends,26.27-31.87,friends_s10e14_seg02_clip_07,Champange 5874,Kate doesn't want anyone to find out that she wants to be with Joey.,Kate doesn't want anyone to find out that she and Joey slept together.,Kate doesn't want anyone to find out that she and Joey had dinner together.,Kate doesn't want anyone to find out that she just kissed Joey.,Kate doesn't want anyone to find out that she's not that good of an actress.,1,What does Kate not want anyone to find out about when talking to Joey?,127913,Friends,33.31-41.42,friends_s03e20_seg02_clip_16,Kate doesn't want anyone to find out that she and Joey slept together. 5875,Blue,Red,white,Yellow,Orange,0,What color is the shirt Castle is wearing when he is talking to Laura?,127914,Castle,0-9.24,castle_s02e10_seg02_clip_24,Blue 5876,A hazmat suit,Rubber gloves,A jacket,Booties,Glasses,1,What did Beckett put on after she and Castle walked up to Lanie at the crime scene?,127915,Castle,15.08-19.2,castle_s04e03_seg02_clip_01,Rubber gloves 5877,He assumed,because the tests show she's still pregnant.,He believed it to be true,He did't know but was acting like he did,The patient told him,1,"How did chase know it wasn't a Miscarriage, when he was speaking about the patient to Parks and Adams?",127916,House M.D.,0-11.38,house_s08e07_seg02_clip_22,because the tests show she's still pregnant. 5878,She owed him some money she was dropping off,She is stopping in to say hi,She is dropping off paperwork,She was trying to get away from her annoying co worker,She was trying to avoid house by being in his office,2,Why is Cameron in houses office before lecturing him about patient records?,127917,House M.D.,50.86-61.67,house_s04e14_seg02_clip_14,She is dropping off paperwork 5879,a tie in a knot,a bracelet ,hand cuffs,mardi gras beads,a tee shirt,2,What is hanging from Barneys wrist when hes talking to Emmit Smith ,127918,How I Met You Mother,2.93-10.08,met_s02e14_seg02_clip_14,hand cuffs 5880,Ryan and Esposito. ,Ryan and Castle. ,Esposito and Castle. ,Castle and Beckett. ,Beckett and Ryan. ,0,Who is questioning Ted when he is in the interrogation room?,127919,Castle,14.85-20.71,castle_s03e09_seg02_clip_04,Ryan and Esposito. 5881,Chandler says he has seen the tape three times.,Chandler says he has seen the tape four times.,Chandler says he has seen the tape twice.,Chandler says he has seen the tape ten times.,Chandler says he has seen the tape six times.,0,How many times does Chandler say he has seen the tape when watching it with Rachel and Monica?,127920,Friends,33.29-55.02,friends_s08e15_seg02_clip_17,Chandler says he has seen the tape three times. 5882,She throws the pencil to Castles.,She tosses a pencil in the air and catches it.,She pretends to pull a pencil out of her ear.,She makes the pencil disappear.,She scribbles on paper with a pencil.,4,What does Beckett do after Castles tells her to do the old pencil trick?,127921,Castle,0-6.79,castle_s02e04_seg02_clip_23,She scribbles on paper with a pencil. 5883,"Sheldon said monkeys asserted their dominance when challenged through chasing, assault and Stylized penile display.",Sheldon said monkeys kill their challengers.,Sheldon said monkeys take their challengers mate.,Sheldon said monkeys steal food from other disobedient monkeys.,Sheldon said monkeys break the challengers legs.,0,How did monkeys assert their dominance when challenged according to Sheldon?,127922,The Big Bang Theory,41.55-49.24,s04e21_seg02_clip_13,"Sheldon said monkeys asserted their dominance when challenged through chasing, assault and Stylized penile display." 5884,Joey is putting on a hat,Joey is putting on a long sleeved shirt,Joey is putting on his shoes,Joey is putting on a beanie,Joey is putting on a mask,1,What is Joey putting on when he approaches Chandler?,127923,Friends,0-5.86,friends_s03e24_seg02_clip_03,Joey is putting on a long sleeved shirt 5885,House asks the doctors to get out,House asks the doctors to give him ideas,House asks the doctors to check the patient,House asks the doctors to write a report on the patient,House asks the doctors to figure out what the patient has,1,What does House aslk of the doctors in his department when he is unsure?,127924,House M.D.,24.92-29.62,house_s04e09_seg02_clip_18,House asks the doctors to give him ideas 5886,3:00,2:00,4:00,1:00,6:00,0,What time did Patricia say the donor from Wilkinsone would arrive before Meredith showed up to ask aquestion?,127925,Grey's Anatomy,40.06-45.91,grey_s02e02_seg02_clip_08,3:00 5887,Ross tells his friends he and Julie reconnect at the grocery store.,Ross tells his friends he and Julie reconnect at JFK airport.,Ross tells his friends he and Julie reconnect in Taiwan.,Ross tells his friends he and Julie reconnect in the cab on the way home.,Ross tells his friends he and Julie reconnect in China.,4,Where does Ross mention he reconnects with Julie when talking with his friends?,127926,Friends,38.77-54.28,friends_s02e01_seg02_clip_03,Ross tells his friends he and Julie reconnect in China. 5888,Rachel & Ross,Ross,Chandler & Monica,Rachel & Phoebe,Phoebe,3,Who hugs Joey after his exclamation?,127927,Friends,0-14.09,friends_s07e04_seg02_clip_13,Rachel & Phoebe 5889,An umbrella.,A tray.,A plastic slurpee cup.,A tablet.,A clutch handbag.,1,What was the lady in the gold dress carrying when she passed behind Leonard?,127928,The Big Bang Theory,55.54-61.04,s02e21_seg02_clip_07,A tray. 5890,House uses a whiteboard,House writes it on a piece of paper,House keeps track on his phone,House uses a calendar,House writes them in a notebook,0,How does House keep track of the guesses when he explains the Cubby pool?,127929,House M.D.,10.24-51.19,house_s05e06_seg02_clip_01,House uses a whiteboard 5891,You added more than you needed to.,This is all wrong.,Not correctly. ,Yes you did.,Why are you doing this here?,2,"What did Sheldon say after past Leonard said Well, I've adjusted the formula?",127930,The Big Bang Theory,0-54.35,s03e22_seg02_clip_14,Not correctly. 5892,Trying to fix the timer.,Trying to end his massage.,Trying to break the timer.,Trying to add more time to his massage.,He isn't reaching for it.,3,What does Monica think Chandler is doing when he is reaching for the timer during his massage?,127931,Friends,39.27-50.02,friends_s05e13_seg01_clip_00,Trying to add more time to his massage. 5893,His undershirt is purple,His undershirt is red,His undershirt is orange,His undershirt is pink,His undershirt is black,4,What color is the patient's husband's undershirt when he is sitting by her bedside,127932,House M.D.,82.03-91.66,house_s06e11_seg02_clip_24,His undershirt is black 5894,a phone,a water bottle,a plate of food,a beer bottle,a movie disc,3,what does raj have in his hand when he is the only one standing up while everyone else is sitting and eating?,127933,The Big Bang Theory,6.72-16.06,s06e24_seg02_clip_05,a beer bottle 5895,He said she looked great.,He said you've got a great body,He said you've got a good energy,He said he was proud of her,He said she had great hair,2,How did Mr. Zellner compliment Rachel after she told him she was on a date?,127934,Friends,25.21-41.66,friends_s10e14_seg02_clip_03,He said you've got a good energy 5896,A book,A ball,A pen,A bag,A fork,3,What did Stacy throw to House when he was standing at the door?,127935,House M.D.,24.41-27.61,house_s02e06_seg02_clip_23,A bag 5897,Henry hugs House for the injection.,Henry cries and falls on the floor.,Henry passes out.,Henry swings to punch House.,Henry flinches in pain.,4,What does Henry do when House injects an STD cocktail into Henry's bottom?,127936,House M.D.,75.54-80.97,house_s02e14_seg02_clip_04,Henry flinches in pain. 5898,Sheldon wants the officer to have tea with him. ,Sheldon is feeling lonely. ,Sheldon doesn't feel the officer has done his job properly and goes on to explain the information that wasn't discussed. ,Sheldon wants the officer to meet his other friends. ,Sheldon wants the officer to arrest him. ,2,Why is Sheldon upset after the officer says he is done talking with them?,127937,The Big Bang Theory,25.81-35.52,s03e13_seg02_clip_01,Sheldon doesn't feel the officer has done his job properly and goes on to explain the information that wasn't discussed. 5899,a phone call,a post card,Photos of the fire,he visited,A letter,2,What memento did Ferguson receive from the arsonist after the victim was killed,127938,Castle,39.22-59.99,castle_s06e11_seg02_clip_07,Photos of the fire 5900,Montgomery. ,Ryan. ,Esposito. ,Castle. ,Corey. ,3,Who is jealous when Beckett was with Eric for protection?,127939,Castle,40.49-46.01,castle_s05e21_seg02_clip_16,Castle. 5901,Joey said they don't even listen to him.,Joey said they are too dumb to remember their lines.,Joey said most of them are too ugly to be on TV.,Joey said they don't even care about the craft.,Joey said they are just there for the credit.,2,How did Joey describe the students after he said he was stuck teaching them.,127940,Friends,54.43-63.07,friends_s03e07_seg02_clip_19,Joey said most of them are too ugly to be on TV. 5902,Take a trip to mexico with her sister.,"Spend the weekend at her sisters cabin, and go skiing.",Fly to New York to see a Broadway play.,Go downtown and have some fun!,She doesn't suggest anything.,1,What does Rachel suggest they do for the weekend after she enters?,127941,Friends,19.91-28.18,friends_s03e17_seg02_clip_02,"Spend the weekend at her sisters cabin, and go skiing." 5903,She screams. ,She walks out of the room. ,She dances. ,She cries. ,She crawls out through a door.,4,What does Amber do when everyone is sitting in the room? ,127942,House M.D.,92.21-101.99,house_s04e03_seg02_clip_10,She crawls out through a door. 5904,Dr.Long has the drugs,Dr.Long is nice to her too,Dr.Long is her cousin,Rachel isn't nice to Dr.Long,Dr.Long was her ex lover.,0,Why did Rachel say she is nice to Dr.Long when Rachel was speaking with Ross?,127943,Friends,0-9.46,friends_s08e22_seg02_clip_08,Dr.Long has the drugs 5905,a face,a dog,a tree,a house,a flag,0,What is there a picture of behind the door before Joey opens it?,127944,Friends,22.64-24.81,friends_s08e16_seg02_clip_05,a face 5906,26 people was in the room when ross was talking,3 people was in the room when ross was talking,59 people was in the room when ross was talking,79 people was in the room when ross was talking,42 people was in the room when ross was talking,1,how many people was in the room when ross was talking,127945,Friends,6.1-61.03,friends_s10e01_seg02_clip_20,3 people was in the room when ross was talking 5907,His phone.,A book.,The TV remote.,Chinese food.,His wallet.,3,What was Raj holding when Penny came through the door?,127946,The Big Bang Theory,0-7.08,s03e09_seg02_clip_03,Chinese food. 5908,Tan,Green,Grey,Black,Silver,0,"What color is the shirt that Beckett is wearing when she say's ""Yeah, well, I didn't have any leads then.""?",127947,Castle,80.12-90.02,castle_s04e01_seg02_clip_21,Tan 5909,Raj and Sheldon both have milk in front of them.,Raj and Sheldon both have computers in front of them.,Raj and Sheldon both have bottled water in front of them.,Raj and Sheldon both have action figures in front of them.,Raj and Sheldon both have a phone in front of them.,2,What do Raj and Sheldon both in front of them when sitting down?,127948,The Big Bang Theory,0-9.3,s04e19_seg02_clip_08,Raj and Sheldon both have bottled water in front of them. 5910,Stacy is sitting on the floor,Stacy is sitting on the couch,Stacy is sitting on the bed,Stacy isn't sitting ,Stacy is sitting bedside of House,4,Where is Stacy sitting when she is with House in the same room?,127949,House M.D.,0-9.24,house_s01e21_seg02_clip_22,Stacy is sitting bedside of House 5911,Because Castle is her ex and she is in a new relationship and doesn't feel comfortable.,She doesn't want too she doesn't need them. She can take care of herself.,The lady was mistaken. It wasn't really Beckett.,The indian man she is with is a Dr. and he can take care of her. They are also friends.,She afraid to contact anyone and Castle thinks it's linked to the man she is with.,4,Why does Castle think Beckett does not contact them when she is in trouble?,127950,Castle,66.83-76.69,castle_s08e01_seg02_clip_09,She afraid to contact anyone and Castle thinks it's linked to the man she is with. 5912,Four months.,Six months.,Twelve months.,Two months.,One month.,4,How long was the client's P.O. Box rented for after it's paid for in cash?,127951,Castle,52.21-55.81,castle_s05e05_seg02_clip_22,One month. 5913,Castle comes storming in the room to say Damian is innocent.,Beckett tell him he is free to go.,Beckett places him under arrest.,Beckett leaves Damian to think about what he did.,Beckett brings in another officer to begin a second interview.,2,What happens to Damian after Beckett is finished with her interview?,127952,Castle,52.88-66.34,castle_s03e15_seg02_clip_15,Beckett places him under arrest. 5914,Shuts the door.,Tags him.,Hangs up the phone.,Leaves Sheldon and runs off.,Gets off the couch and walks out. ,3,What does Raj do when he tells Howard that he is it?,127953,The Big Bang Theory,19.23-21.81,s02e01_seg02_clip_11,Leaves Sheldon and runs off. 5915,Because her coworker is talking about sexual tension.,Because her coworker is talking about sensual tension.,Because her coworker is talking about hyper tension.,Because her coworker is talking about hydra tension.,Because her coworker is talking about arm tension.,0,Why is Rachel upset when she is in the elevator?,127954,Friends,1.95-7.15,friends_s06e08_seg02_clip_12,Because her coworker is talking about sexual tension. 5916,a beer bottle,a tray with items,a sandwich,a pizza ,the duck,1,what does joey take into his room with him when he is with monica at his apartment?,127955,Friends,20.71-30.72,friends_s07e19_seg02_clip_14,a tray with items 5917,Raj kisses Penny.,Raj lays on the floor.,Raj runs from a bird.,Raj punches Leonard.,Raj stands up.,4,What does Raj do when he says they were being honest?,127956,The Big Bang Theory,9.56-14.64,s08e04_seg02_clip_07,Raj stands up. 5918,couch policy,noise policy,bathroom policy,eating policy,music policy,2,What kind of policy did Sheldon mention when he spoke to Leonard?,127957,The Big Bang Theory,18.91-31.81,s06e15_seg02_clip_08,bathroom policy 5919,Now let's test for TB,Oh no.,Test it again.,I want to go to lunch.,Foreman's interview in New York got screwed up.,4,What does Cameron say after Chase gives her the test results?,127958,House M.D.,0-8.27,house_s03e23_seg02_clip_16,Foreman's interview in New York got screwed up. 5920,Liz wanted to be a cop.,Liz wanted to be a lawyer.,Liz wanted to be a pediatrician.,Liz wanted to be a veterinarian.,Liz wanted to be a accountant.,0,What did Liz want to be before she became a writer?,127959,Castle,33.68-35.95,castle_s07e22_seg02_clip_03,Liz wanted to be a cop. 5921,Formulas for chemicals,Photos of a child,A letter,An email account,A spreadsheet listing chemicals,1,What comes up on the computer when Chase turns it when in a lab with Adams?,127960,House M.D.,37.27-42.79,house_s08e19_seg02_clip_06,Photos of a child 5922,tucks his shirt in,gets coffee,talks to ryan,picks up a file,gives alexis a hug,4,what does castle do before approaching beckett at the precinct?,127961,Castle,11.77-20.82,castle_s02e10_seg02_clip_20,gives alexis a hug 5923,He just wants her to do well in class ,Penny won't let him help ,Penny is working with a female friend,Penny is working on a project that he can't help her with,Penny has a male partner that he believes is hitting in her,4,Why was Leonard uncomfortable with Penny when she said she was going to be working on her project at home the next day,127962,The Big Bang Theory,39.66-60.09,s06e08_seg02_clip_01,Penny has a male partner that he believes is hitting in her 5924,tired,happy,bored,angry,protective,4,How did the brother feel when Alex was flirting with his sister?,127963,Grey's Anatomy,0-29.98,grey_s02e14_seg02_clip_04,protective 5925,She puts on lipstick.,She puts on a pair of black glasses.,She puts a sweater on.,She takes a mirror out of her hand bag.,She drops her cell phone in her bag.,1,What does Mandy do when she gets into the elevator with Alexis?,127964,Castle,51.88-59.62,castle_s06e13_seg02_clip_16,She puts on a pair of black glasses. 5926,Sheldon called Howard for a ride.,Sheldon decided to walk.,Sheldon rode a bike instead.,Sheldon called Raj for a ride.,Sheldon jumped out of the taxi.,4,What happened when Sheldon did not recognize the taxi driver?,127965,The Big Bang Theory,11.16-22.95,s04e17_seg02_clip_03,Sheldon jumped out of the taxi. 5927,She started screaming.,She started crying.,She did nothing.,She was happy.,She started jumping.,1,What did the woman do when the curtains were shut?,127966,House M.D.,59.24-69.11,house_s01e03_seg02_clip_21,She started crying. 5928,Daddy,Are you sure?,I love Ross.,Thanks for coming.,That's great.,0,What does Liz say after Paul says that Ross has one minute to change his mind?,127967,Friends,40.58-50.65,friends_s06e21_seg02_clip_03,Daddy 5929,Standing in the kitchen,Sitting in a sofa with her feet up,Going into the shower,CLimbing the stairs,Leaving work,1,Where is Penny when she is talking on the phone to Sheldon?,127968,The Big Bang Theory,14.92-21.94,s02e17_seg02_clip_09,Sitting in a sofa with her feet up 5930,Monica (brunette,Phoebe (blonde),Rachel (redhead),Carol (blonde),Janis (brunette),2,Who is upset about missing her flight when she is complaining to her friend about it?,127969,Friends,49.52-60.03,friends_s01e09_seg02_clip_15,Rachel (redhead) 5931,a pizza,a green shopping bag,a pink box,A BOOK,a letter,3,What is Monica holding when she walks into the coffee shop? ,127970,Friends,63.5-69.02,friends_s04e09_seg02_clip_15,A BOOK 5932,Phoebe is getting tickled,Phoebe thinks they are silly,Phoebe thinks of a funny moment,Phoebe feels awkward,Phoebe is not laughing,2,Why does phoebe begin to laugh when Monica and rachel are hugging?,127971,Friends,55.54-61.03,friends_s06e06_seg02_clip_04,Phoebe thinks of a funny moment 5933,A magazine,His cellphone.,A pen.,A cup.,A patient binder. ,3,What is in Wilson's hand when he calls House a felon?,127972,House M.D.,7.74-12.29,house_s08e08_seg02_clip_08,A cup. 5934,Gunter is making pancakes.,Stuart is making pancakes.,Chandler is making pancakes.,Michael is making pancakes.,Joey is making pancakes.,4,Who is making pancakes when he is at Monica's apartment?,127973,Friends,13.5-17.79,friends_s04e13_seg02_clip_04,Joey is making pancakes. 5935,It took him one try. ,It took him five tries.,It took him four tries. ,It took him three tries.,It took him ten tries.,2,How many tries does Leonard say it took him to get Captain Kirk when doing the Star Trek test?,127974,The Big Bang Theory,23.49-24.41,s06e12_seg02_clip_07,It took him four tries. 5936,Sheldon was standing behind the couch. ,Sheldon was sitting next to Penny on the couch.,Sheldon was sitting in a chair by the window. ,Sheldon was standing by the door. ,Sheldon was standing by the refrigerator.,2,Where was Sheldon when he said that Penny's last crush worked out well for Raj?,127975,The Big Bang Theory,57.94-64.02,s01e17_seg02_clip_11,Sheldon was sitting in a chair by the window. 5937,The brain is not getting any better,His overall heart is not getting any better,The pain is not getting any better,The state of his mind is not getting any better,The state of his sickness is getting worse,2,What is not getting any better with House when Stacy is mentioning his condition?,127976,House M.D.,3.52-11,house_s01e21_seg02_clip_22,The pain is not getting any better 5938,Rachel ignored Phoebe.,Rachel got very upset at Phoebe.,Rachel asked how large her Visa bill was.,Rachel snatched the bill from Phoebe.,Rachel got upset at both Phoebe and Rachel.,3,How did Rachel react when Phoebe was looking at her Visa bill?,127977,Friends,27.22-52.57,friends_s01e18_seg02_clip_00,Rachel snatched the bill from Phoebe. 5939,They want to discuss a plea deal.,They want to discuss Lyla Addison's murder.,They want to discuss the DA's campaign contributions.,They want to discuss Joe McUsic's murder.,They want to tell him he should hire a new lawyer.,3,Why do Castle and Beckett say they want to talk with Otis Williams when they bring him into the precinct?,127978,Castle,65.88-74.34,castle_s03e19_seg02_clip_18,They want to discuss Joe McUsic's murder. 5940,Her cell phone.,Her soft drink.,Her glasses.,Her notebook.,Her lab jacket. ,1,What did Lanie grabbed when she was standing up?,127979,Castle,28.17-32.2,castle_s03e02_seg02_clip_18,Her soft drink. 5941,Ross reminded Chandler of money he still owed.,Ross reminded Chandler of his work backlog.,Ross reminded Chandler of him still needed to break up with Janice.,Ross reminded Chandler of his blood pressure.,Ross reminded Chandler of mother.,2,Why did Chandler tell Ross to shut up after Ross asked him a question?,127980,Friends,11.11-20.95,friends_s01e05_seg02_clip_00,Ross reminded Chandler of him still needed to break up with Janice. 5942,Happy,Awkward,Annoyed,Mad,Intruded upon,1,How did Sheldon feel when Penny started crying and put her head on his shoulder,127981,The Big Bang Theory,0.86-57.58,s01e06_seg02_clip_15,Awkward 5943,Downtown,The Bathroom,Out to dinner,On a date,Home,0,Where did Castle and Beckett go after Beckett received a text message?,127982,Castle,14.69-21.37,castle_s05e08_seg02_clip_01,Downtown 5944,Joey was wet in Charlton Hestons's room.,Joey ate Charlton Heston's food.,Joey was using Charlton Heston's shower in his dressing room.,Joey was not a good actor.,Joey was sleeping in Charlton Heston's room.,2,Why was Charlton Heston angry after talking to Joey?,127983,Friends,37.22-60.03,friends_s04e14_seg02_clip_14,Joey was using Charlton Heston's shower in his dressing room. 5945,He said the problem had been the day she died.,He said the problems had been a month or so earlier,He said the problem had been a long time ago,He said the problem had been the day before she died,He said the problem had been last week,4,When did Travis say Jenna had had trouble at work when he was talking to Castle and Beckett?,127984,Castle,45.74-57.82,castle_s02e03_seg02_clip_11,He said the problem had been last week 5946,Anyone on the boat,The best friend Ashley,Her sister Britney ,The captain Lisa,The bunk mate Bethany ,4,Who does the manager tell Castle to talk to after asking about one of the women there?,127985,Castle,48.77-69.02,castle_s08e08_seg02_clip_06,The bunk mate Bethany 5947,Two ,Four,Six,Three ,Five,2,How many mugs were sitting on the table when Phoebe sat down beside Rachel?,127986,Friends,58.64-60.51,friends_s07e14_seg02_clip_02,Six 5948,Four times,Three times,Two times,One time,One and a half times,1,How many times does Amy bounce the quarter into the glass when Amy and Penny are playing the game?,127987,The Big Bang Theory,10.87-37.65,s05e19_seg02_clip_11,Three times 5949,He tears the photo.,He cries.,He leaves.,He screams.,He smiles.,4,How does Barney react when Jerry shows him an old photo of them together?,127988,How I Met You Mother,53.72-60.03,met_s06e19_seg02_clip_12,He smiles. 5950,A book.,A coffee cup.,A donut.,A needle.,A bullet.,1,What was Castle holding when Beckett said something about a killer?,127989,Castle,6.3-14.4,castle_s03e09_seg02_clip_08,A coffee cup. 5951,Rachel said the book was like The Hobbit.,Rachel said the book was like reading her own life.,Rachel said the book was like her childhood.,Rachel said the book was like nothing she has ever read before.,Rachel said the book was like the encyclopedia.,1,What did Rachel say the book was like when she was talking to Phoebe and Monica?,127990,Friends,0-7.36,friends_s02e19_seg02_clip_04,Rachel said the book was like reading her own life. 5952,Phone,Paper,Pen,Scissors,Stapler,2,What is in Cofields hand when he is talking to Adams?,127991,House M.D.,2.28-5.48,house_s08e11_seg02_clip_03,Pen 5953,"Casting nailed it, they look just like Expositor and Ryan.","She said ""That is just creepy"".",Really! They look nothing like Ryan and Esposito.,Is the casting team blind.,none of the above.,1,What did Beckett say to Castle after seeing the two actors who play Ryan and Esposito?,127992,Castle,63.26-68.72,castle_s03e22_seg02_clip_08,"She said ""That is just creepy""." 5954,DArryl Meek is a baseball player,Darryl Meeks is a world famous Cryptozologist,Darryl Meeks is a zoo keeper,Darryl meeks is s real estate developer,Darryl Meeks is a secret service agent for Clinton,1,Who is DArryl Meeks after investigating Ann's phone records,127993,Castle,20.26-46.36,castle_s05e20_seg02_clip_07,Darryl Meeks is a world famous Cryptozologist 5955,To go through her phone and track down every male.,To confront her then file for divorce.,To stalk his wife and find out for sure if she is having an affair.,To go home and have sex with his wife.,To go to counseling. ,3,How does House advise Wilson when an affair is suspected?,127994,House M.D.,48.37-51.63,house_s02e14_seg02_clip_08,To go home and have sex with his wife. 5956,He took some pills,He walked out,He touched her hand,He gave her some water,He wrote something down,0,What does House do after telling the patient to stop flirting with him?,127995,House M.D.,76.52-81.02,house_s03e17_seg02_clip_23,He took some pills 5957,Kicking a long term addiction ,Finding a trusted doctor,Picking the right surgeon ,Finding a woman to marry,Letting a man die alone,3,Which is House's situation compared to by Wilson before he says that it is even easier than hiring a team?,127996,House M.D.,32.13-46.65,house_s04e01_seg02_clip_15,Finding a woman to marry 5958,A backpack,A bird,A sling,A tattoo,A bug,0,What does House have on his shoulder when talking to Wilson?,127997,House M.D.,0-5.98,house_s02e07_seg02_clip_14,A backpack 5959,His dog ate it,He never got the letter,He fell asleep,He spilled beer on it,He had to leave for an emergency,2,What reason did Ross give for not finishing Rachel's whole letter after putting on his clothes?,127998,Friends,31.04-47.87,friends_s04e01_seg02_clip_18,He fell asleep 5960,The coffee house,Her desk at work,Her apartment,A job interview,A hospital room,1,"Where is Rachel when Ross sends her flowers, toys, and a singing telegram?",127999,Friends,22.64-62.03,friends_s03e12_seg02_clip_08,Her desk at work 5961,They break the door down,With the key ,It's not locked,Someone let's them in,They don't ,2,How do they get the door open after Chase tries to pick the lock,128000,House M.D.,46.08-54.58,house_s07e08_seg02_clip_05,It's not locked 5962,Leslie.,Raj.,Sheldon.,Howard.,Penny.,4,Who was picking up bottles from the table before Leonard walked in.,128001,The Big Bang Theory,39.58-61.37,s03e06_seg02_clip_02,Penny. 5963,Because the paint is blurry,Because Lily's paint has too much red.,Because Lily's paint is too dark.,Because paint spilled on the painting,Because Lily's paint was bad.,4,Why Lily's art teacher was mad when he saw the paint?,128002,How I Met You Mother,22.95-62.03,met_s02e02_seg02_clip_12,Because Lily's paint was bad. 5964,A diagram that represents how to change the baby,A grid that represents the house,A grid that represents the garage,A grid that represents the room,A diagram that represents how to make his wife happy,3,What is Howard drawing on the whiteboard when he's in the baby room with Raj?,128003,The Big Bang Theory,44.98-51.18,s10e13_seg02_clip_08,A grid that represents the room 5965,The patient spoke in gibberish,The patient used English,The patient used German,The patient used Russian,The patient used Spanish,4,What language did the patient use when Alex held up the card of a girl?,128004,Grey's Anatomy,68.77-73.2,grey_s03e23_seg02_clip_06,The patient used Spanish 5966,play cards,poker chips,darts,monopoly piece,a stamp,0,what is chase have in his hand before picking up a glass drink?,128005,House M.D.,47.39-56.6,house_s08e16_seg02_clip_26,play cards 5967,Howard starts crying. ,Howard is happy it's just her. ,Howard is relieved. ,Howard is disappointed. ,Howard is miserable. ,3,What is Howard's reaction when he just sees Bernadette?,128006,The Big Bang Theory,0-5.41,s06e04_seg02_clip_01,Howard is disappointed. 5968,In front of her cup.,To the right of her cup.,Back on the bar.,In front of the sugar.,She gave it to Mike.,1,Where did Phoebe put the creamer after she was done pouring it?,128007,Friends,0-6.1,friends_s09e06_seg02_clip_00,To the right of her cup. 5969,gave House a bottle of water,ran up to House to get it back,wiped her eyes with a tissue,took out a bottle of pills,dropped a pen,4,What did Cuddy do after House took the prescription?,128008,House M.D.,38.64-48.42,house_s03e08_seg02_clip_18,dropped a pen 5970,a dollar,a napkin,the roommate agreement,sheldons phone,a computer,3,what does sheldon hand leonard when they are at dinner with amy and penny?,128009,The Big Bang Theory,52.71-59.63,s08e03_seg02_clip_08,sheldons phone 5971,lue was getting eaten,lue was drowing,lue was being chased,lue was on fire,lue's grandpa was choking him,4,what was lue dreaming of before taub woke him up in the hospital?,128010,House M.D.,9.55-17.9,house_s08e18_seg02_clip_12,lue's grandpa was choking him 5972,A pumpkin hat,A baseball hat,A strawberry hat,Nothing,A monster hat,0,What is the baby wearing on its head when Ryan is holding him?,128011,Castle,0-9.22,castle_s06e10_seg02_clip_05,A pumpkin hat 5973,A video editor.,An amateur.,Someone who didn't know what they were doing.,An actor.,A professional.,4,Who did Beckett and Castle assume took the photo's when she mentioned the lighting in the photos?,128012,Castle,42.31-54.01,castle_s03e23_seg02_clip_13,A professional. 5974,Do you know how to shuffle?,Are you going to shuffle those?,Do you want Joey to shuffle those?,Do you want me to shuffle those?,Do you know how to play poker?,3,What did Ross ask Rachel when she was holding the deck of cards?,128013,Friends,29.71-39.32,friends_s01e18_seg02_clip_11,Do you want me to shuffle those? 5975,Phoebe,Chandler,Ross,Joey,Nobody,2,What person walks into the room when Amy is looking at the baby?,128014,Friends,24.33-32.34,friends_s09e08_seg02_clip_01,Ross 5976,Up and at em.,Much better.,Able to talk.,Happy.,Alive.,4,What did Alex tell his patient she better be when he comes back to check on her after surgery?,128015,Grey's Anatomy,42.21-97.03,grey_s03e15_seg02_clip_24,Alive. 5977,3,1,2,4,5,2,How many donors did Chase say didn't walk out after Bob made his confession?,128016,House M.D.,19.81-22.96,house_s08e05_seg02_clip_15,2 5978,Shuts the door.,Grabs the patient file.,Puts on gloves. ,Picks up the Telephone.,Grabs something from the cabinet. ,3,What does the nurse do after she tells Howard to hang on and stay calm?,128017,The Big Bang Theory,55.59-61.43,s04e01_seg02_clip_15,Picks up the Telephone. 5979,Wilson tells Chase and Taub that House is a horrible person,Wilson tells Chase and Taub that House is secretly a nice man,Wilson tells Chase and Taub that House is hard to talk to ,Wilson tells Chase and Taub that House is not one to reason with,Wilson doesn't tell Chase and Taub anything about House,1,What does Wilson say to Chase and Taub before he leaves House's office?,128018,House M.D.,46.84-55.39,house_s06e12_seg02_clip_08,Wilson tells Chase and Taub that House is secretly a nice man 5980,She hit it out of Rachel's hand.,She snatched it from Rachel's purse.,She pulled it from Rachel's jacket.,She slipped it out of Rachel's back pocket.,She grabbed it off the sofa.,0,How did Phoebe get the phone before she answered it?,128019,Friends,0-9.05,friends_s07e15_seg02_clip_08,She hit it out of Rachel's hand. 5981,The clinic,The doctor's lounge,House's office,Wilson's office,The cafeteria ,2,Where are House and Wilson when House offers Wilson an espresso coffee upon his arrival?,128020,House M.D.,0-10.44,house_s03e22_seg02_clip_09,House's office 5982,House tells Chase to check her test,House tells Chase to start a different medication,House tells Chase to stop the meds,House tells Chase to start a heavier dose of medication,House didn't tell Chase anything,2,What does House say to Chase when Chase told him that the patient's hearbeat is irregular?,128021,House M.D.,61.2-73.16,house_s02e14_seg02_clip_19,House tells Chase to stop the meds 5983,Howard impersonates a Mushroom,Howard impersonates a cat,Howard impersonates Christopher Walken,Howard impersonates Al Pacino,Howard impersonates Donald Trump,3,What is the name of the actor that Howard impersonates after describing a satanic fungus?,128022,The Big Bang Theory,5.4-23.71,s06e23_seg02_clip_06,Howard impersonates Al Pacino 5984,Chandler was holding an action figure.,Chandler was holding a rubix cube.,Chandler was holding a deck of cards,Chandler was holding a bag of chips.,Chandler was holding a pack of gum.,1,What was Chandler holding when Phoebe was talking about not wanting to go to prison?,128023,Friends,1.49-4.77,friends_s05e16_seg02_clip_17,Chandler was holding a rubix cube. 5985,on the edge of Penny's bed,on a city bus,next to a hospital bed,in his spot on the couch,on the toilet,2,"Where is Sheldon sitting when he sings ""Soft Kitty""?",128024,The Big Bang Theory,0-16.23,s06e22_seg02_clip_17,next to a hospital bed 5986,Penny needs a drink because Sheldon is mathematically figuring out how many men she has slept with. ,Penny needs a drink because Sheldon is making her heart flutter. ,Penny needs a drink because Amy is making her heart flutter. ,Penny needs a drink because Sheldon is happy and it's weird. ,Penny needs a drink because she misses Leonard. ,0,"Why does Penny say she needs a drink when her, Amy, and Sheldon are having dinner?",128025,The Big Bang Theory,9.3-30.01,s04e01_seg02_clip_14,Penny needs a drink because Sheldon is mathematically figuring out how many men she has slept with. 5987,Black ,Gray,Yellow,There was no mug,White with blue dots,1,What color was the mug sitting on the table in front of Monica and Phoebe when Rachel sat down with them?,128026,Friends,54.84-58.12,friends_s08e11_seg02_clip_07,Gray 5988,Green,Purple,Blue,White,Black,1,What color were the female doctor's surgical gloves when she was being instructed by Dr. Taub at the microscope?,128027,House M.D.,3.76-8.46,house_s07e10_seg02_clip_03,Purple 5989,casual,Very upset,calm,unconcerned,happy,1,How is Joey when he is talking to the police,128028,Friends,0-35.64,friends_s02e06_seg02_clip_11,Very upset 5990,she had top secret codes,she had information about the president,she was going to expose the truth about aliens,she had missiles pointed at the pentagon,she was working with terrorist. ,2,why was Marie a threat to the government when castle and beckett are talking with stryker about her disappearance?,128029,Castle,5.35-16.5,castle_s03e09_seg02_clip_10,she was going to expose the truth about aliens 5991,A bag of marshmallows ,A wheelchair,A walker,A cane,Crutches ,4,What is Marshall walking with when he goes to sit down at the booth in the bar?,128030,How I Met You Mother,10.6-16.96,met_s02e15_seg02_clip_01,Crutches 5992,He rushes at Dr. House.,He storms out.,He stomps his foot.,He puts his fist through the glass.,He laughs.,4,What does Dr. Chase do when Dr. House accused him of getting into his business?,128031,House M.D.,88.34-90.19,house_s03e15_seg02_clip_24,He laughs. 5993,Barney is panicking because Nora is questioning him about his loyalty to her.,Barney is panicking because Nora knows he lied to her.,Barney is panicking because Nora tells him she wants to be married and have kids.,Barney is panicking because he is afraid Lily will crash his date with Nora.,Barney is panicking because Robin sees him at the restaurant after telling her he was too sick to go out.,2,Why is Barney panicking at the table when he and Nora are having dinner?,128032,How I Met You Mother,0-28.51,met_s06e18_seg02_clip_04,Barney is panicking because Nora tells him she wants to be married and have kids. 5994,Ross is talking to Mr. Green.,Ross is talking to Mr. Bean.,Ross is talking to Mr. Gore.,Ross is talking to Mr. Gray.,Ross is talking to Mr. Glee.,0,Who is Ross talking to when he is in the hallway?,128033,Friends,0-6.85,friends_s02e22_seg02_clip_13,Ross is talking to Mr. Green. 5995,Water.,Coffee.,Perhaps a feminine hygiene product or a bowel regulating yogurt?,Sandwich,Piece of cake. ,2,What did Sheldon offer Elizabeth after he told Leonard he should be the one to get her something since she was his guest?,128034,The Big Bang Theory,10.62-17,s03e21_seg02_clip_03,Perhaps a feminine hygiene product or a bowel regulating yogurt? 5996,Her parents,Insurance ,Anonymous donor ,Her husband,Herself ,2,Who paid for Heather's surgery when she needed it?,128035,Grey's Anatomy,4.8-15.29,grey_s03e12_seg02_clip_03,Anonymous donor 5997,Don't ask,Stay put,Shut up,I'm sorry,Don't tell,2,What does Masters tell Taub to do after she pushes the button for the table to move?,128036,House M.D.,23.93-27.92,house_s07e16_seg02_clip_12,Shut up 5998,Leonard is jealous of the guard. ,Leonard is jealous of Sheldon. ,Sheldon is being ridiculous. ,Sheldon is jealous of Leonard. ,Sheldon is jealous of the guard. ,2,Why does Leonard ask the police officer to shoot Sheldon after he answers him?,128037,The Big Bang Theory,0.67-10.39,s03e13_seg02_clip_01,Sheldon is being ridiculous. 5999,Thirteen,Cuddy,Foreman,Taub,Chase,0,Who comes into Wilson's office when he is talking to House?,128038,House M.D.,14.56-19.12,house_s05e01_seg02_clip_04,Thirteen 6000,She kicked him,She dragged him aside,She pushed him away,She punched him,She stared him down,1,What did Cameron did to House when he told the patient she dumped him?,128039,House M.D.,25.39-31.5,house_s05e01_seg02_clip_09,She dragged him aside 6001,Lily was happy to know the true.,Lily was shocked,Lily was like nothing happen.,Lily was bored.,Lily was a little annoyed.,1,How was Lily after her art teacher gave her nasty comments?,128040,How I Met You Mother,26.67-62.03,met_s02e02_seg02_clip_12,Lily was shocked 6002,He asked if she was being sarcastic.,He asked how her day was at work.,He asked her why she is in such a bad mood.,"He asked her to be quiet, he's thinking.",He asked her what she thinks about Leonard.,0,What did Sheldon ask Penny after she came home from work?,128041,The Big Bang Theory,17.48-59.26,s02e14_seg02_clip_04,He asked if she was being sarcastic. 6003,Damian's house,Jail,The park,A cafe,The hospital,1,Where did Castle go to visit Damian after talking to Martha?,128042,Castle,21.58-45.81,castle_s03e15_seg02_clip_16,Jail 6004,chicken and Mexico,Fried tomatoes and green tomatoes,spaghetti and Italy,burritoes and beans,Canadian bacon and Toronto,4,What connection did Sheldon share when Leonard asked about the doctor?,128043,The Big Bang Theory,32.04-47.29,s03e21_seg01_clip_01,Canadian bacon and Toronto 6005,Marshall said he just need some time to think.,Marshall said he just need some space.,Marshall said he just need some air.,Marshall said he just need more air.,Marshall said he need more space.,2,Why did Marshall go outside in the snow after Lily told him he's up next?,128044,How I Met You Mother,45.75-59.03,met_s06e14_seg02_clip_15,Marshall said he just need some air. 6006,Roller skates ,Bike,Skateboard ,Nothing,Scooter,4,What was the guy in the black sweater riding on when he passed the open door? ,128045,Friends,21.97-26.85,friends_s07e14_seg02_clip_12,Scooter 6007,The phone.,The food.,The lamp.,The laptop.,Her work project.,3,What was Robin worried about when Gael swept everything off the desk in order to make love to her?,128046,How I Met You Mother,49.2-54.94,met_s03e02_seg02_clip_06,The laptop. 6008,An electrician.,A teacher.,A football player.,A construction worker.,Zack.,4,What Tommy pretended to be when blackmail Brian?,128047,Castle,1.81-9.49,castle_s03e21_seg02_clip_19,Zack. 6009,Bill,George,Frank,Derek,Burke,4,Who tells Cristina that she made him cross the line after Cristina tells him that someone wants an apology from her?,128048,Grey's Anatomy,68.82-80.86,grey_s02e15_seg02_clip_20,Burke 6010,To take a short cut.,To drive faster.,To give up.,To call her cell phone.,To drive to her destination.,3,What was Phoebe suggestion after Ross said that they weren't going to make it in time?,128049,Friends,13.73-20.14,friends_s10e17-18_seg02_clip_33,To call her cell phone. 6011,Esposito has a drawer open.,Esposito has a suitcase open.,Esposito has a safe open.,Esposito has a fridge open.,Esposito has a folder open.,4,What does Esposito have open when talking to Tory?,128050,Castle,84.2-86.04,castle_s05e21_seg02_clip_16,Esposito has a folder open. 6012,Burke.,Izzie.,Bailey.,Alex.,Cristina.,4,Who was waiting Meredith when sat in the restaurant?,128051,Grey's Anatomy,46.51-50.25,grey_s02e01_seg02_clip_23,Cristina. 6013,Hold his suitcase.,Order him a drink,Come on his honeymoon with him,Call Emily for him,Tell the plane to wait,4,What does Ross ask Rachel to do when he forgets his jacket?,128052,Friends,5.36-35.93,friends_s05e01_seg02_clip_18,Tell the plane to wait 6014,Marshall,Ted,Lily,Robin,Barney,3,Who guessed the correct answer after Barney explains what happened at museum last week?,128053,How I Met You Mother,36.52-59.38,met_s03e14_seg01_clip_02,Robin 6015,green,Black,red,blue,purple,1,"What color shirt is Beckett wearing when she say's ""...wondering if yu could use one...""?",128054,Castle,83.26-93.03,castle_s08e17_seg02_clip_25,Black 6016,Claimed he was late,told her the truth,professed his love for her,ran away,ignored her and kept walking,0,What did Wilson do after Cameron confronted him? ,128055,House M.D.,2.25-12.13,house_s03e15_seg02_clip_08,Claimed he was late 6017,Rachel,Monica,Phoebe,Joey,Chandler,1,Who walks out of Monica's room when Ross is in the living room?,128056,Friends,21.48-28.13,friends_s04e12_seg02_clip_05,Monica 6018,A pen.,An envelope.,A scalpel.,A document to sign.,A coffee.,2,"What did Meridith hand Burke before Patricia said ""Help let me out""?",128057,Grey's Anatomy,49.06-69.32,grey_s02e02_seg02_clip_08,A scalpel. 6019,He hangs up the phone,He laughs at her,He cries,He mails her a note,He breaks a glass,0,What does the killer do after asking Beckett about being a failure?,128058,Castle,83.28-92.03,castle_s02e17_seg02_clip_14,He hangs up the phone 6020,shoes,coffee cup,bag ,dry cleaning,clipboard,4,What is the sheriff holding when he comes in the room?,128059,House M.D.,25.66-34.21,house_s05e04_seg02_clip_12,clipboard 6021,He wanted to google the owner of the apartment Esposito was at.,He needed to check the weather.,He wanted to hack the WI-FI where Esposito was located.,He had the stolen hard drive.,He wanted to google Castle.,3,Why did Cross ask to borrow Castles laptop after Ryan said the hard drive had been stolen? ,128060,Castle,27.28-36.53,castle_s06e12_seg02_clip_19,He had the stolen hard drive. 6022,Pneumonia ,Huntington's chorea ,The flu,Small pox,Malaria ,1,How did 13 say her mother died before House said he was sorry? ,128061,House M.D.,35.04-43.24,house_s04e08_seg02_clip_18,Huntington's chorea 6023,Esposito,Ryan,Ruth,Javi,Beckett,4,Who is Castle with when the animal is pacing around?,128062,Castle,31.02-42.27,castle_s04e10_seg02_clip_25,Beckett 6024,Dot's Hot,Dot's Spot,Dot's Nots,Dot's Donuts,Dot's Rocks,1,What was the name of the restaurant when Monica and Chip ate diinner?,128063,Friends,18.01-22.21,friends_s04e02_seg02_clip_16,Dot's Spot 6025,She's holding a knife.,She's holding a ruler.,She's holding a gun.,She's holding a taser.,She's holding a metal bar.,0,What does Maria hold to Castle's throat when talking to him?,128064,Castle,2.13-5.55,castle_s07e06_seg02_clip_14,She's holding a knife. 6026,So he can check in her car,To get into her work locker,To get inside of her house,Find out what is in her diary ,Get her out of the storage room,2,Why does House need a person to pick a lock after talking to intern Thirteen? ,128065,House M.D.,0-12.6,house_s05e05_seg02_clip_05,To get inside of her house 6027,She was standing near the corner of the street,She was standing near the waterfall,She was standing near the box,She was standing near the desk,She was standing near the shoe rack,3,Where was Rachel standing before Ross entered the room?,128066,Friends,21.67-48.68,friends_s03e15_seg02_clip_06,She was standing near the desk 6028,Rachel and Ross are in the bedroom.,Rachel and Ross are standing by the fridge.,Rachel and Ross are on the couch.,Rachel and Ross are sitting on the table.,Rachel and Ross are sitting on stools.,2,Where is Ross and Rachel when Chandler asked if he looked fat?,128067,Friends,0-6.26,friends_s03e03_seg02_clip_04,Rachel and Ross are on the couch. 6029,A book.,A computer.,A paper.,A phone.,A picture.,1,What was Ryan looking at when he said Neil McCauley?,128068,Castle,12.69-20.22,castle_s03e22_seg02_clip_02,A computer. 6030,By the bathroom,By the front door,Outside,By the window,By the bedroom,3,Where is Joey standing when he notices ugly naked guy isn't moving?,128069,Friends,4.84-10.58,friends_s03e08_seg02_clip_11,By the window 6031,Sitting alone on the sofa.,Leaning on Joey.,Leaning on Ross.,Leaning on Chandler.,Reading a book.,3,What was Monica doing when Rachel asked what her favorite thing about summertime was?,128070,Friends,48.02-55.83,friends_s03e22_seg02_clip_13,Leaning on Chandler. 6032,They find she has only one kidney,They find she is pregnant,They find she has cancer,They find she has had a hysterectomy,They find she has an aneurysm,2,What do Cameron and Chase find when they do an ultrasound on the female patient?,128071,House M.D.,12.32-22.01,house_s01e10_seg02_clip_11,They find she has cancer 6033,A box.,A cell phone. ,A remote control.,A gift bag.,A towel.,3,What did Penny pick up off the table before she handed it to Amy? ,128072,The Big Bang Theory,5.42-9.34,s05e12_seg02_clip_15,A gift bag. 6034,House and Foreman,House,Taub,House and Taub,Taub and Masters,3,Who left the room after the meeting was over?,128073,House M.D.,19.12-24.12,house_s07e09_seg02_clip_12,House and Taub 6035,House acts excite.,House acts enthusiastically,House acts encouragingly,House acts happy,House acts sarcastically,4,How does House act after Cameron says that no condition accounts for all these symptoms?,128074,House M.D.,0-12.52,house_s01e03_seg02_clip_01,House acts sarcastically 6036,Taub.,All of them.,Kutner.,Thirteen.,Volakis.,1,Who did House say sucked the most when Taub asked him after he lectured everyone on how much they sucked?,128075,House M.D.,24.52-29.5,house_s04e05_seg02_clip_26,All of them. 6037,a computer screen ,A file in his hand,the board,the wall,a book on the table,1,"Where did House read his information from when Foreman asked him ""Hoe'd she get to you?""",128076,House M.D.,6.99-13.98,house_s01e14_seg02_clip_00,A file in his hand 6038,Phoebe's hair was in a french braid.,Phoebe's hair was in a bun.,Phoebe's hair was down.,Phoebe's hair was in a ponytail.,Phoebe's hair was in pigtails.,2,How was Phoebe's hair done when the friends were at Central Perk?,128077,Friends,0-15.61,friends_s02e12-13_seg02_clip_28,Phoebe's hair was down. 6039,Been honest,"Left David, gone with Wolf",Run to Mexico,"Killed David, dumped Wolf",Not gotten busted for shoplifting,1,What does Castle think Cecily should have done before the police got involved?,128078,Castle,28.49-40.51,castle_s02e22_seg02_clip_25,"Left David, gone with Wolf" 6040,A balding scalp.,A bad headache.,Skin cancer.,A rash.,A mole.,4,What ailment does Barney lie about when talking to Abby?,128079,How I Met You Mother,78.26-123.73,met_s03e13_seg02_clip_17,A mole. 6041,Because he started mocking her,Because he told her he was telling their mom she was being a brat,Because he told her it was obviously her time of the month,Because he told her he had used her razor and she needed to get another one,Because he told her she was being childish,0,Why did Monica say shut up after Ross came out of the bathroom?,128080,Friends,22.52-41.49,friends_s02e17_seg02_clip_02,Because he started mocking her 6042,Espsoito and Lanie,Ryan and Gates,Esposito and Ryan,Esposito and Gates,Ryan and Lanie,2,Who are Beckett and Castle talking to when they are at the precinct explaining where they were?,128081,Castle,0-4.08,castle_s07e19_seg02_clip_26,Esposito and Ryan 6043,He held the door.,He laughed.,He pushed a button.,He nodded his head.,He put down his briefcase.,2,What did Jeffery do after he went in the elevator?,128082,House M.D.,10.86-12.67,house_s04e04_seg02_clip_16,He pushed a button. 6044,office,lab,home,restaurant,car,4,Where was Sheldon when he was talking to Bernadette?,128083,The Big Bang Theory,11.71-16.52,s08e11_seg02_clip_03,car 6045,Grey,White,Red,Black,Green,1,"What color is the shirt that house is wearing when he say's ""Just needed the Puzzle""?",128084,House M.D.,73.02-82.37,house_s03e01_seg02_clip_23,White 6046,Ted jumps on the table.,Ted kisses Robin.,Ted lays on the floor.,Ted looks out the window.,Ted looks forward in chagrin and then gets up and walks away.,4,What does Ted do after Stella gestures for him to go?,128085,How I Met You Mother,7.88-11.82,met_s04e01_seg02_clip_13,Ted looks forward in chagrin and then gets up and walks away. 6047,Rachel gets up because Joey doesn't understand that Tuesday is the best day to be naked.,Rachel gets up because Joey doesn't understand that Friday is the best day to be naked.,Rachel gets up because Joey doesn't understand that Monday is the best day to be naked.,Rachel gets up because Joey doesn't understand that no day is good for being naked in front of her.,Rachel gets up because Joey doesn't understand that Sunday is the best day to be naked.,3,Why does Rachel get up and leave after Joey's remark about naked Wednesdays?,128086,Friends,0-14.08,friends_s06e03_seg02_clip_19,Rachel gets up because Joey doesn't understand that no day is good for being naked in front of her. 6048,He sits at a different table.,He sits down at the table with them. ,He spills his lunch on Leonard.,He starts crying.,He walks away.,4,What does Sheldon do after he addresses the group?,128087,The Big Bang Theory,36.29-45.6,s01e13_seg02_clip_06,He walks away. 6049,Between Callie and Yang,Beside Alex,Between Meredith and Izzie,Alone,With Burke and Derek,0,Where did George sit when he came in to the bar? ,128088,Grey's Anatomy,54.57-63.98,grey_s02e25_seg02_clip_00,Between Callie and Yang 6050,he is happy,depressed,he wants to party,he cries,He is excited,1,How does Leonard act after Howard asks if he wants to talk?,128089,The Big Bang Theory,35.41-59.02,s01e14_seg02_clip_09,depressed 6051,He is our friend ,So nothing. Let's destroy him.,he is my roommate,he is sad without us,look at him.,1,What did Leonard say after Howard said so?,128090,The Big Bang Theory,0-31.63,s01e13_seg02_clip_06,So nothing. Let's destroy him. 6052,Cristina,Dr. Burke,Alex,George,The last boy Cristina brought home for dinner.,1,Who does Helen say is good looking when she is talking to Cristina?,128091,Grey's Anatomy,72.56-84.19,grey_s02e04_seg02_clip_00,Dr. Burke 6053,A vacation,A funeral,A cookout,A party,A ceremony,3,What does Chandler call their wedding when talking to Monica,128092,Friends,7.57-29.97,friends_s07e02_seg02_clip_14,A party 6054,Leonard calls the kiss dull and uneventful.,"Leonard says the kiss was magical, but missing spark.","Leonard says the kiss was ""airy and light"".",Leonard never describes how the kiss felt for him.,Leonard says it was the best kiss he'd ever had.,3,How does Leonard describe the kiss when asked about it?,128093,The Big Bang Theory,0-35.22,s01e03_seg02_clip_05,Leonard never describes how the kiss felt for him. 6055,Castle is in the bathroom.,Castle is sitting with Beckett.,Castle is in the kitchen.,Castle is in the hallway.,Castle is on a stage.,4,Where is Castle when everyone claps ?,128094,Castle,13.51-15.7,castle_s07e23_seg02_clip_27,Castle is on a stage. 6056,Neil Patrick Harris,Marshall ,Lily ,Barney ,Ted ,4,Who walks out on Robin after she agrees to pay the check? ,128095,How I Met You Mother,0-5.22,met_s06e06_seg02_clip_14,Ted 6057,Bernadette is outside.,Bernadette is in the bathroom.,Bernadette is in the bedroom.,Bernadette is standing in the living room.,Bernadette is not home when Howard answers the door.,3,Where is Bernadette when Howard answers the door?,128096,The Big Bang Theory,0-16.25,s08e01_seg02_clip_15,Bernadette is standing in the living room. 6058,A skeleton,A ghost,A witch,A goblin,A pumpkin,0,What was on the door of Penny's apartment before Leonard and Sheldon left the Halloween party?,128097,The Big Bang Theory,12.2-17.09,s01e06_seg02_clip_13,A skeleton 6059,His dad never taught him how to drive,Sheldon says he is too evolved for driving,He doesn't get enough practice,He doesn't own a car so doesn't know how,He doesn't have a license to drive,1,What does Sheldon give as his excuse for not being good at driving when Howard accuses him of giving it up?,128098,The Big Bang Theory,45.67-53.87,s02e05_seg02_clip_13,Sheldon says he is too evolved for driving 6060,blood test,bone marrow,an xray of the patients brain,urine test,dna test,2,what did house want from the patient after getting thirteen to cancel the MRI scan?,128099,House M.D.,10.55-16.97,house_s05e04_seg02_clip_24,an xray of the patients brain 6061,Giant lizard monsters.,The Invisible Man.,Killer apes.,Kalas (a monster from Hindu mythology).,Dinosaurs.,1,"What does Raj suggest could be the next monster ""trend"" when he's playing video games?",128100,The Big Bang Theory,46.32-60.15,s08e23_seg02_clip_05,The Invisible Man. 6062,Because Rebecca told Alex she loves him.,Because Alex told Rebecca he wasn't the decent guy.,Because Alex told Rebecca she should stick with the decent guy.,Because Alex knows Rebecca loves Jeff.,Because Alex doesn't want Rebecca to stay.,2,Why did Rebecca begin to cry after Alex leaves the room?,128101,Grey's Anatomy,56.98-68.1,grey_s03e25_seg02_clip_23,Because Alex told Rebecca she should stick with the decent guy. 6063,Making some cereal.,Working on his computer.,Making Tea.,Getting something from the refrigerator.,Getting ready to cut Sheldon's hair. ,2,What is Leonard doing when he asks Sheldon if he is sure he wants to do this? ,128102,The Big Bang Theory,45.07-48.54,s07e20_seg02_clip_04,Making Tea. 6064,Silk robe,Top hat,Tuxedo,Bathing suit,Jeans and t-shirt,0,What was Ted wearing when he said he found the Tequila? ,128103,How I Met You Mother,13.26-16.87,met_s03e03_seg02_clip_13,Silk robe 6065,Mug,Magazien,Match,Photo,Kitten,2,What was Chandler holding when he said he didn't remember it?,128104,Friends,0-4.85,friends_s04e13_seg02_clip_11,Match 6066,a thousand.,100,over 100,20 or more,15,4,How many red tags did Greg tell Izzie the Search and Rescue team had when she asked him if she had told them Rick had a red tag?,128105,Grey's Anatomy,79.22-85.38,grey_s03e15_seg02_clip_23,15 6067,Gets up from his seat and gives Beckett his hand.,Takes his pen out of his coat pocket.,Reach for his cell phone.,Similes at Beckett.,Raises his eyebrow.,4,What does Castle do when Chloe says those were the only nights Sara stayed late?,128106,Castle,42.23-49.57,castle_s01e02_seg02_clip_12,Raises his eyebrow. 6068,Cryogenic lab,Out for coffee,Castle stays at the precinct,Beckett stays at the precinct,To the morgue,0,Where do Castle and Beckett go after their conversation in the precinct?,128107,Castle,54.64-61.02,castle_s04e03_seg02_clip_18,Cryogenic lab 6069,raj felt offended,raj felt happy,raj felt anxious,raj felt with his arm,raj felt understanding,0,how did raj feel after sheldon told raj to go away?,128108,The Big Bang Theory,45.05-54.17,s03e10_seg02_clip_02,raj felt offended 6070,Sports,Games,Favorites,Music,Instruments ,2,What does Castle's mom say she does not play after being asked to pick one?,128109,Castle,25.64-46.24,castle_s07e23_seg02_clip_00,Favorites 6071,Teal,Green,Red,Brown,Black,4,"What color is Beckett's jacket when she say's ""Well, so far we...""?",128110,Castle,82.95-92.68,castle_s05e15_seg02_clip_05,Black 6072,Spock,Captain America,R2 and 3po,Yoda,Batman,4,What animated character is on top of the microwave behind Leonard when he starts the laser obstacle chess game.,128111,The Big Bang Theory,14.96-18.21,s02e18_seg01_clip_00,Batman 6073,Whitner suggested House have a friend drop him off at the front of the building.,Whitner told House he should start talking to someone who cares to listen.,Whitner suggested House find a way to divert his negative energy elsewhere.,Whitner told House he should ask the parking office for some crampons.,Whitner suggested House call the office of cane-using citizens.,3,What did Whitner suggest House do when he complained about the black ice?,128112,House M.D.,8.65-12.29,house_s03e13_seg02_clip_02,Whitner told House he should ask the parking office for some crampons. 6074,7,5,6,2,3,3,How many cysts do the x-rays show in the kidneys when reviewing x-rays?,128113,House M.D.,3.16-5.86,house_s03e19_seg02_clip_20,2 6075,He nervously asked her out.,He kissed her.,He gave her a long hug.,He gave her a gift.,He started playing with her hair.,0,What did Leonard do when Penny opened her door.,128114,The Big Bang Theory,0-7.25,s01e03_seg02_clip_10,He nervously asked her out. 6076,Stage I,Stage IV,Stage III,Stage V,Stage II,1,What stage of cancer did House say Naomi had before telling him it metastasized to his liver?,128115,House M.D.,52.56-66.98,house_s01e18_seg02_clip_00,Stage IV 6077,A magazine,A plastic doll,A plastic cup,A DVD,A picture,2,What is Chandler aroused by before the phone rings?,128116,Friends,29.13-37.14,friends_s09e21_seg02_clip_20,A plastic cup 6078,She goes to a private mob doctor.,She goes to the hospital.,She sews them up with a needle and thread.,She sees a nurse friend.,She goes to a veterinarian.,2,How does Beckett mend her woulnds when she is in danger?,128117,Castle,66.38-73.1,castle_s08e01_seg02_clip_09,She sews them up with a needle and thread. 6079,"""Yes of course.""","""Not really. I'm just an enthusiast.""",""" Yes they all work""","""No, but which one do you want?""","""I'm not sure.""",1,What does Leonard say after Penny asks if any of the allergy medicine works?,128118,The Big Bang Theory,9.52-16.67,s03e15_seg02_clip_14,"""Not really. I'm just an enthusiast.""" 6080,Thirteen laughs because she thinks House could do better.,Thirteen laughs because she thinks it's funny that House had a girlfriend.,Thirteen laughs because she does not believe him.,Thirteen laughs because House burped after telling her about Cuddy.,Thirteen laughs because House made a funny face after he told her about Cuddy.,2,Why does Thirteen laugh when House says he was dating Cuddy?,128119,House M.D.,24.12-37.32,house_s07e18_seg02_clip_07,Thirteen laughs because she does not believe him. 6081,Chase said the guy was really getting to Foreman.,Chase said Foreman wasn't acting like himself.,Chase said insecurity wasn't a good look on Foreman.,Chase told Foreman to forget about that guy.,Chase told Foreman he didn't get where he was by being insecure.,0,What did Chase say to Foreman when Foreman was wondering about his attributes?,128120,House M.D.,47.11-52.09,house_s02e01_seg02_clip_18,Chase said the guy was really getting to Foreman. 6082,Zach says that Ryan and Esposito should be talking to Jocky Jickson.,Zach says that Ryan and Esposito should be talking to Jamie Johns.,Zach says that Ryan and Esposito should be talking to Jackie Jormpjomp.,Zach says that Ryan and Esposito should be talking to Jimmy Jimson.,Zach says that Ryan and Esposito should be talking to Jesse Jones.,4,Who does Zach say Ryan and Esposito should be talking to after they begin to ask him questions about Mandy?,128121,Castle,69.77-87.32,castle_s06e13_seg02_clip_03,Zach says that Ryan and Esposito should be talking to Jesse Jones. 6083,Maybe he has feelings for coconuts ,Maybe he's in love with someone else,Maybe he just wants to stay single,Maybe he just likes the shampoo she uses,That he does in fact like Rachel ,0,What alternative does Ross give to his feelings for Rachel after Phoebe doesn't believe him? ,128122,Friends,7.32-19.53,friends_s06e03_seg02_clip_01,Maybe he has feelings for coconuts 6084,Amy is sitting in the beige chair.,Penny is sitting in the beige chair.,Raj is sitting in the beige chair.,Sheldon is sitting in the beige chair.,Howard is sitting in the beige chair.,0,Who is sitting in the beige chair when Sheldon is talking?,128123,The Big Bang Theory,0-9.28,s06e15_seg02_clip_06,Amy is sitting in the beige chair. 6085,Ross,Chandler and Monica were talking about Gary and Phoebe being a hot couple and she wanted to compete with them.,Joey,Rachel,"They were talking about Ross, Joey, and Rachel.",1,Who were Chandler and Monica talking about when Monica asked to talk to him?,128124,Friends,8.64-22.73,friends_s05e17_seg02_clip_11,Chandler and Monica were talking about Gary and Phoebe being a hot couple and she wanted to compete with them. 6086,Really Fat Guy,Really Old Guy,Sleepy Guy,Almost Dead Guy,Needs a Shower Guy,1,What did George call the patient in the room when the group gathered for lunch?,128125,Grey's Anatomy,0-11.83,grey_s03e06_seg02_clip_13,Really Old Guy 6087,A ball off his desk.,His cane.,His cellphone.,His binder.,His jacket.,4,What does House grab right before he walks out of his office?,128126,House M.D.,68.01-74.31,house_s06e12_seg02_clip_08,His jacket. 6088,Monica is at the door,Rachel is at the door,Phoebe is at the door,Joey is at the door,Ross is at the door,1,Who is at the door when Danny goes to answer the door?,128127,Friends,0-2.57,friends_s05e10_seg02_clip_16,Rachel is at the door 6089,Rachel said yes.,Rachel said no.,Rachel said that was a good idea.,Rachel said they could reduce number of their meetings.,Rachel did not respond,1,What was Rachel's response when Taub tell he that he thinks they should stop seing each other?,128128,House M.D.,5.28-14.96,house_s07e18_seg02_clip_25,Rachel said no. 6090,unsure,happy,bored,sick,nauseated,0,How did Leonard feel when he ate the spaghetti?,128129,The Big Bang Theory,18.72-39.26,s06e06_seg02_clip_03,unsure 6091,He doesn't want Marshall and Lily to break up.,He thinks he should have followed Marshall to check on him.,Marshall's drunk and has Ted's car keys.,He's worried Cindy saw him.,Marshall was his ride home.,3,Why is Ted nervous after watching Marshall flee the bar?,128130,How I Met You Mother,14.51-27.56,met_s06e01_seg02_clip_11,He's worried Cindy saw him. 6092,Raj said he was the only person who could make himself happy.,Raj said he was the only person who could find him a date.,Raj said he was the only person who could stop his sadness.,Raj was the only person willing to have sex with himself.,Raj said he was the only person who could finish preparing dinner.,3,What did Raj say could only be done by him when wiping his hands?,128131,The Big Bang Theory,13.09-18.57,s04e22_seg02_clip_03,Raj was the only person willing to have sex with himself. 6093,Marshall.,Lily.,Barney.,Robin.,James.,2,Who is sitting across from Ted when he is at the bar?,128132,How I Met You Mother,0-5.44,met_s06e09_seg02_clip_12,Barney. 6094,She was drinking with friends.,She was sleeping with Castle.,She was sleeping with Esposito.,She has insomnia.,She was working on the case.,4,Why does Beckett say she was up late when Ryan asks?,128133,Castle,50.27-54.38,castle_s07e11_seg02_clip_17,She was working on the case. 6095,House is sitting on a couch ,House is in his therapist's office,House is standing in the hallway,House is standing in a patient room,House isn't with his therapist,0,Where is House when he is with his therapist?,128134,House M.D.,7.92-17.33,house_s03e11_seg02_clip_08,House is sitting on a couch 6096,phone,Wallet,Badge,Liquor bottle,paper,3,What does beckett look at before grabbing it when talking to castle?,128135,Castle,76.46-86.93,castle_s08e15_seg02_clip_17,Liquor bottle 6097,Looking inside a van,Looing at a dead body,Reading a case file,Talking to Ryan,Looking at a tire,4,What is Esposito doing when Beckett and Castle walk up?,128136,Castle,37.36-44.11,castle_s01e05_seg02_clip_08,Looking at a tire 6098,In a grocery store.,In a church.,In a house.,On the stage in a studio.,On the street.,3,Where are Castle and Beckett when Danny Valentine talks about the show and Sid.,128137,Castle,0-9.56,castle_s07e22_seg02_clip_03,On the stage in a studio. 6099,He took Vicodin,He provided someone else's urine sample,He took St. John's Wort and N-acetylcysteine,He was actually clean,He switched his test results with someone else's,2,How did House say he passed the test after Chase accused him of faking?,128138,House M.D.,0-30.7,house_s08e15_seg02_clip_23,He took St. John's Wort and N-acetylcysteine 6100,Sheldon wants Amy to laugh like a hyena.,"Sheldon wants Amy to laugh like she's hearing it for the first time, hysterically and with a tinge of sadness that Sheldon's no longer in her life.",Sheldon wants Amy to laugh with a note of regret.,Sheldon wants Amy to laugh like she's never laughed before.,Sheldon wants Amy to laugh like she would if George Takai was tickling her armpits.,1,How does Sheldon want Amy to laugh when she hears the Spockumentary joke?,128139,The Big Bang Theory,16.39-32.46,s09e07_seg02_clip_01,"Sheldon wants Amy to laugh like she's hearing it for the first time, hysterically and with a tinge of sadness that Sheldon's no longer in her life." 6101,He talked like a cowboy.,He had an earring in his left ear.,He was a little shorter.,He had a mustache and a v-shaped sideburn,He died the tips of his hair blond.,3,What was different about the old Ted after the couple remembered their first date?,128140,How I Met You Mother,24.76-32.69,met_s05e02_seg02_clip_13,He had a mustache and a v-shaped sideburn 6102,Castle,Beckett,Weiss,Esposito,Gates,2,who wanted to take cynthia body to the passageway facility after she killed herself?,128141,Castle,96.3-113.34,castle_s04e03_seg02_clip_26,Weiss 6103,In her home.,In the ER.,In the ambulance.,In the OR.,In her car.,2,Where did Foreman say Amber's heart stopped beating before he said there was nothing they could do?,128142,House M.D.,10.4-18.85,house_s04e16_seg02_clip_19,In the ambulance. 6104,reading a story,doing homework,studying for work,arguing,calling Leonard,0,What was Penny doing when she was visiting with Bernadette and Amy?,128143,The Big Bang Theory,23.5-38.58,s08e14_seg02_clip_14,reading a story 6105,On his butt,On his arm,On his foot,On his back,On his stomach,0,Where is Ross's third nipple when he shows Dr. Rhodes?,128144,Friends,52.83-59.03,friends_s03e23_seg02_clip_03,On his butt 6106,Howard closes a book.,Howard closes his computer.,Howard closes a water bottle.,Howard closes his lunch bag.,Howard closes his wallet.,1,What does Howard close after Sheldon says fine?,128145,The Big Bang Theory,42.92-46.52,s04e19_seg02_clip_08,Howard closes his computer. 6107,Orange.,Yellow.,Blue.,Pink.,Gray.,3,What color shirt Cuddy is wearing when house holds paperwork?,128146,House M.D.,26.37-46.26,house_s02e23_seg02_clip_06,Pink. 6108,and a compromise would cause us to lose this game.,and games cannot be tolerated in this institution,and games are for idiots,and games we play when the stakes aren't the lives of individuals,and you just wanted to beat him,4,"What did Cofield say after he said ""Or House makes medicine a game""?",128147,House M.D.,0-11.96,house_s08e11_seg02_clip_21,and you just wanted to beat him 6109,Ross was carrying the baby.,Joey was carrying the baby.,Chandler and Joey were carrying the baby.,No one was carrying a baby.,Chandler was carrying the baby.,4,Who was carrying the baby when Chandler and Joey were walking in the streets?,128148,Friends,47.58-51.93,friends_s02e06_seg02_clip_03,Chandler was carrying the baby. 6110,Penny,Ester Rosenblatt,Joe Smith,Dr. Hargo,Penny's cousin,1,Who does Howard introduce himself to when he is at the restaurant?,128149,The Big Bang Theory,0-44.48,s02e21_seg02_clip_14,Ester Rosenblatt 6111,Howard searched a magazine.,Howard looked around.,Howard stand on front a showcase.,Howard talked to a stranger.,Howard payed to Stuart.,4,What did Howard when Raj was talking?,128150,The Big Bang Theory,9.38-62.51,s10e05_seg02_clip_00,Howard payed to Stuart. 6112,MArshall said nothing as to why he returned home early,Marshall said his date got sick,MArshall said his date got paged,Marshall said his date was old,MArshall said his date got weird,4,"Why, after returning home, did Marshall say he was early?",128151,How I Met You Mother,53.02-65.05,met_s02e05_seg02_clip_12,MArshall said his date got weird 6113,He has found a locked treasure chest,He is wearing handcuffs,He is asking for the keys to Rachel's heart,He is trying to unlock a door,He is trying to steal something,1,Why does Chandler need the keys after asking Rachel for them?,128152,Friends,0.59-6.23,friends_s04e03_seg02_clip_10,He is wearing handcuffs 6114,Rachel was standing in front of the door.,Rachel was standing in front of the couch.,Rachel was standing in front of the bar stool.,Rachel was standing in front of the dog.,Rachel was standing in front of the cabinets,0,What was Rachel standing in front of when she answereed Joey's question?,128153,Friends,10.92-59.03,friends_s03e17_seg02_clip_01,Rachel was standing in front of the door. 6115,She is totally fine.,She doesnt like Beckett.,She killed someone.,She is separated from her husband and is not the mother she should be.,She missed her favorite show.,3,"Why does Zhang have an outburst after Beckett asks if her actions were ""being balanced""?",128154,Castle,50.55-63.08,castle_s07e17_seg02_clip_19,She is separated from her husband and is not the mother she should be. 6116,He had it on the wallet.,He had ID in his pocket.,He had ID in his back pocket.,He had it in his purse.,He had no ID on him.,4,Where and when was the victims ID? ,128155,Castle,36.21-86.22,castle_s02e06_seg02_clip_02,He had no ID on him. 6117,at home,at a screening of star wars,at a lecture,at the comic book store,at hip hop arobics,4,Where does Raj say he has to be when asked to joing Sheldon in taking back their pride?,128156,The Big Bang Theory,15.91-30.31,s04e19_seg02_clip_08,at hip hop arobics 6118,Red. ,Blue. ,Purple. ,Orange. ,White. ,0,What color is the bow and ribbon on Ted's present when Marshall gives it to him? ,128157,How I Met You Mother,0-6.05,met_s05e01_seg01_clip_02,Red. 6119,He tells her he has been seeing someone else anyway.,He agrees to drop the topic.,He tells her he will never stop trying,He leaves the coffee shop.,He slaps her.,3,What does Ross do after Rachael tells him to accept they will not be in a relationship?,128158,Friends,28.51-45.33,friends_s02e14_seg02_clip_09,He leaves the coffee shop. 6120,Their relationship,The cabinet,The door,The bag,The fridge,2,What does Ross ask about leaving open or not when he starts talking to Mona?,128159,Friends,15.61-20.11,friends_s08e08_seg02_clip_16,The door 6121,remotely,on a time,by a person,by a string,it never went off. ,0,how was the gun activated before it killed the girl?,128160,Castle,67.53-83.37,castle_s07e15_seg02_clip_11,remotely 6122,A pack of amunition,A pack of cigarettes,A pack of gum,A pack of papers,A pack of pencils,3,What did Elise bring Ryan when he was telling Castle and Beckett the confirmation from the car service?,128161,Castle,71.07-76.96,castle_s02e10_seg02_clip_20,A pack of papers 6123,Overly medicated antibiotics ,Being pumped with steroids ,Giving too much morphine ,Given the wrong flu shots,Missing too many doses again ,1,Which medication does Foreman try to blame for worsening the patient's condition before Chris reminds him it does not have that side effect?,128162,House M.D.,17.02-34.51,house_s04e06_seg02_clip_11,Being pumped with steroids 6124,To crack wise.,To diffuse a tense situation.,He wants to rub it in Ted's face.,He's tone deaf.,He really loved that game.,1,Why does Ted's dad mention a great game after revealing the truth about Granny?,128163,How I Met You Mother,23.17-30.15,met_s02e03_seg02_clip_19,To diffuse a tense situation. 6125,Castle honked his horn which scared Nadir.,Castle ran into a tree while driving.,Castle turned on the windshield wipers.,Castle pulled out his gun and forced Nadir to get off.,Castle drove at top speed until Nadir fell off.,2,How did Castle make Nadir get off of his car when Nadir landed on it holding a gun?,128164,Castle,51.15-56,castle_s01e07_seg02_clip_25,Castle turned on the windshield wipers. 6126," The mother of the victim, Anya Mishkin.","The victim, Anya Mishkin.",The witness of the car accident.,"The best friend of the victim, Anya Mishkin.",The state trooper's officer partner.,0,Who did Ryan say died in a single vehicle car crash after he reads the state trooper's report?,128165,Castle,0-3.08,castle_s08e11_seg02_clip_09," The mother of the victim, Anya Mishkin." 6127,He didn't seem serious,He seemed very determined,He appeared to be ashamed,He didn't seem happy,He seemed very angry,0,What sort of attitude did House display when he was talking to the therapist?,128166,House M.D.,0-32.68,house_s03e11_seg02_clip_08,He didn't seem serious 6128,Cleaning her living room.,Searching for Mitzi.,Cooking dinner.,Taking a shower.,Watching TV.,1,What was Cheryl doing before Ross came over?,128167,Friends,0-12.91,friends_s04e06_seg02_clip_05,Searching for Mitzi. 6129,To make a phone call,To read an article,To play online tetris,To book a taxi,To check his emails,4,Why did Sheldon pull out his phone when Leonard told him about the text?,128168,The Big Bang Theory,51.57-61.04,s07e07_seg02_clip_00,To check his emails 6130,His mother tired to smother him,his father dropped him,his father kicked him down the stairs,he was malnourished ,he was going through second hand drug withdrawal ,0,Why was the baby in the NICU when this scene takes place?,128169,House M.D.,49.76-56.75,house_s02e22_seg02_clip_19,His mother tired to smother him 6131,On the end table next to the candles.,On the couch next to him.,On the floor at his feet.,On the counter in the kitchen.,On the table.,4,Where was the champagne when joey tried to stand up? ,128170,Friends,29.41-40.26,friends_s10e03_seg02_clip_22,On the table. 6132,Castle doesn't have time,Castle doesn't have to work tomorrow,Castle cleared his schedule,Castle has no plans,Castle was told to stay late,3,Why does castle volunteer to work all night with beckett when beckett claims to be back at square one?,128171,Castle,72.87-75.69,castle_s02e20_seg02_clip_23,Castle has no plans 6133,A clipboard,A comic book,A Star Wars memorabilia,A Darth Vader helmet,A phone,0,What was Stuart holding when he was talking to Sheldon?,128172,The Big Bang Theory,0-7.7,s05e15_seg02_clip_07,A clipboard 6134,Monica describes Chandler's feelings as being prideful.,Monica describes Chandler's feelings as being unattractive. ,Monica describes Chandler's feelings as being admirable.,Monica describes Chandler's feelings as being kind.,Monica describes Chandler's feelings as being mean.,0,How does Monica describe Chandler's feelings about money after he describes the lessons his father taught him?,128173,Friends,5.31-22.13,friends_s09e16_seg02_clip_01,Monica describes Chandler's feelings as being prideful. 6135,She was holding flowers.,She was holding a cup.,She was holding a trophy with a ribbon on it.,She was holding a plate of food.,She was holding laptop.,2,What was Rachel holding close when she was talking.,128174,Friends,4.27-9.76,friends_s10e08_seg02_clip_08,She was holding a trophy with a ribbon on it. 6136,Angry,Confused,Happy,Excited,Delighted,1,What was Dr Yang's reaction when Richard asked her to help him?,128175,Grey's Anatomy,34.05-92.03,grey_s02e06_seg02_clip_04,Confused 6137,Ross,Chandler,Rachel,Phoebe,Mike,2,Who walks in the apartment after Joey agrees to help Monica,128176,Friends,32.97-40.27,friends_s09e16_seg02_clip_04,Rachel 6138,She said that blondes have more fun.,She said that blondes are airheads.,She said that blondes are pretty.,She said that blondes are witty.,She said that blondes are tall.,0,What is it that Cathy said about blondes after meeting Ted on the street?,128177,How I Met You Mother,27.92-30.21,met_s03e08_seg02_clip_18,She said that blondes have more fun. 6139,Sensitive.,Very real.,Introverted.,Sophiscated.,Intellectual.,1,How did Raj say Emily is after Howard says she is made of rubber?,128178,The Big Bang Theory,5.36-13.23,s07e20_seg02_clip_04,Very real. 6140,At Rachel's place.,At Ross's place.,At Joey's place.,At Monica's place.,At a restaurant.,3,Where does Monica suggest cooking dinner after Ross gets angry?,128179,Friends,30.53-42.3,friends_s01e09_seg02_clip_01,At Monica's place. 6141,Massage Carol's Back,Make Carol food,Rub Carol's feet,Rub Carol's belly,Clean up the living room,3,What do Ross and Susan do to Carol after Susan walks in?,128180,Friends,26.41-35.12,friends_s01e09_seg02_clip_15,Rub Carol's belly 6142,Chase is making coffee when House walks into the room,Chase is working on the computer when House walks into the room,Chase is reading a medical book when House walks into the room,Chase is looking through a patient's chart when House walks into the room,Chase is writing in a patient's chart when House walks into the room,0,What is Chase doing when House walks into the room,128181,House M.D.,56.83-66.6,house_s08e17_seg02_clip_17,Chase is making coffee when House walks into the room 6143,he pushes it along the floor,he picks it up with his left hand,he picks it up with both hands,he picks it up with his right hand,he rocks it back and forth,3,What does Ross do with the baby carriage after talking with Monica?,128182,Friends,36.01-39.36,friends_s09e11_seg02_clip_11,he picks it up with his right hand 6144,paper clips,paper,office supplies,staplers,pens,4,What did Chandler say was less satisfying stealing from your home when he was on the phone?,128183,Friends,19.72-29.98,friends_s01e15_seg02_clip_13,pens 6145,Went to Paris,Chewed Gum,She never stopped,Tried the patch,went to a party,3,What did Rachel's boss do before she went back to smoking?,128184,Friends,3.25-30.69,friends_s05e18_seg02_clip_18,Tried the patch 6146,the clueless call girl,the dumb blonde,the prissy princess,the whiney brat,the braless coed,4,Who did Castle say the studio casted when they for the role?,128185,Castle,5.53-17.5,castle_s03e11_seg02_clip_00,the braless coed 6147,Castle says Vega is a multimillionaire.,Castle says Vega is a billionaire.,Castle says Vega is broke.,"Castle says Vega is worth $100,000",Castle says Vega is worth $100,0,How much does Castle say Vega is worth when he talks to Wade about Vega borrowing from Wade?,128186,Castle,29.92-44.66,castle_s02e15_seg02_clip_06,Castle says Vega is a multimillionaire. 6148,Lanie said Castle redesigned his home with Meredith.,Lanie said Castle danced with Meredith.,Lanie said Castle had sex with Meredith.,Lanie said Castle took bubble baths with Meredith.,Lanie said Castle exchanged stories with Meredith.,2,What did Lanie say Castle did with Meredith when she was in town?,128187,Castle,78.16-82.68,castle_s05e10_seg02_clip_03,Lanie said Castle had sex with Meredith. 6149,Joey forgot to flush the toilet.,Joey peed on something.,Joey stepped on gum.,Joey was peed on by a friend.,Joey forgot to shower for the past several days.,1,"Why do Phoebe, Ross, and Rachel turn to Joey in disgust when Joey is standing behind the sofa?",128188,Friends,0-20.31,friends_s08e19_seg02_clip_13,Joey peed on something. 6150,Night Saturday Monday,Saturday's Tonight Night,Saturday Night Tonight,Saturday Night Tomorrow,Sunday Night Tonight,2,What does the sign on the wall say when Beckett and Castle enter the other room and leave his mom?,128189,Castle,84.45-87.2,castle_s07e22_seg02_clip_00,Saturday Night Tonight 6151,She feels upset by Chief's actions.,She recently lost her job.,She had a falling out with a friend.,Her favorite sports team just lost the championship.,She is having trouble with her marriage.,4,Why did Addison seem sad when talking to Chief?,128190,Grey's Anatomy,0-7.28,grey_s03e02_seg02_clip_02,She is having trouble with her marriage. 6152,Attic,Playground,Gym,Cafeteria,Basement,3,What does the contestant guess after Joey gives his clue?,128191,Friends,11.9-18.57,friends_s10e11_seg02_clip_04,Cafeteria 6153,He opens the window. ,He closes the door. ,He brings her food. ,He brings her flowers. ,He hits her with his cane. ,1,What does House do after he enters the patient's room?,128192,House M.D.,73.55-80.43,house_s01e14_seg02_clip_15,He closes the door. 6154,A coffee,A ring on her finger,A robe,A kiss on the head,A train ticket,3,What does chandler give rachel when she said she didn't graduate magna cum laude?,128193,Friends,3.15-13.65,friends_s04e10_seg02_clip_15,A kiss on the head 6155,Ross comes by everyday for lunch,Ross keeps calling for no reason,Ross sent Rachel a lot of gifts and flowers,Ross threatened Mark,Ross bought Rachel a large diamond ring.,2,Why does Mark say that someone wants people to know that Rachel has a boyfriend when they are in the office?,128194,Friends,30.39-55.21,friends_s03e12_seg02_clip_08,Ross sent Rachel a lot of gifts and flowers 6156,Ran to get help. ,Injected the patient with medicine. ,Intubated the patient and asked that he be bagged. ,He panicked and left. ,He called for a crash cart. ,2,What did Chase do when he helped the patient?,128195,House M.D.,4.6-14.27,house_s01e08_seg02_clip_11,Intubated the patient and asked that he be bagged. 6157,Money.,Bribes.,Curses.,Listings.,Contracts.,2,What did Phoebe say she had on people after Gunther asked about the newspaper?,128196,Friends,5.72-12.4,friends_s10e15_seg02_clip_00,Curses. 6158,Cardiothoracics,Neurology,Oncology,Proctology,Pediatrics,0,What type of specialty does Cristina mention to Ellis after she finishes examining her?,128197,Grey's Anatomy,62.39-70.64,grey_s03e14_seg02_clip_06,Cardiothoracics 6159,House is in Cuddy's office.,House is at a race track.,House is in the hospital.,House is on a boat.,House is at a coffee shop.,2,Where is House when Foreman discusses Henry's denial in front of Henry's daughter?,128198,House M.D.,0-5.43,house_s02e14_seg02_clip_04,House is in the hospital. 6160,Poltergeist.,Weekend at Bernie's.,Star Wars.,Dumb and Dumber.,When Harry Met Sally.,1,What did Chandler suggest they watch when Rachel turned up the TV?,128199,Friends,43.21-52.58,friends_s01e11_seg02_clip_01,Weekend at Bernie's. 6161,He was fixing his tie.,He was eating.,He was typing.,He took off his sweater.,He fixed the blinds.,2,What did Nolan do before he said something about written by?,128200,House M.D.,63.23-70.54,house_s06e20_seg02_clip_24,He was typing. 6162,orange,grey,red,blue,black,3,"What color is the scrubs Christina is wearing when she say's ""There...""?",128201,Grey's Anatomy,0-8.97,grey_s03e09_seg02_clip_23,blue 6163,The Wrist,The head,The arm,The leg,The foot,0,What did the doctor say the victim broke when she examined the body?,128202,Castle,10.92-13.2,castle_s03e08_seg02_clip_02,The Wrist 6164,George was pulling his father's tubes.,George was shaving his father's beard. ,George was cutting his father's hair.,George was trimming his father's nose hairs.,George was fixing his father's shirt.,1,What is George doing to his father's beard when he is confessing the truth?,128203,Grey's Anatomy,6.72-13.04,grey_s03e12_seg02_clip_16,George was shaving his father's beard. 6165,That she worked at a strip club,That she's had several abortions,That she got plastic surgery,That she is a prostitute,That she is a drug runner,2,What detail about Barbara does Castle mention when briefing Beckett?,128204,Castle,21.7-33.01,castle_s04e18_seg02_clip_16,That she got plastic surgery 6166,Facebook logo,A dog,A lightning bolt,A apple,A superman logo,2,What is drawn on the car when Esposito spots Derek?,128205,Castle,16.36-23.18,castle_s07e19_seg02_clip_06,A lightning bolt 6167,Joey described Danny as having a mustache and red hair.,Joey described Danny as having a blonde buzz cut and blue eyes.,Joey described Danny being short and heavyset.,Joey described Danny as having dark hair and a bushy beard.,Joey described Danny as being really tall and skinny.,3,How did Joey describe Danny when he was explaining him to Rachel and Monica?,128206,Friends,0-3.3,friends_s05e06_seg02_clip_06,Joey described Danny as having dark hair and a bushy beard. 6168,Kutners name before adoption was Lawrence Ghorbani,Kutners name before adoption was Lawrence Choudhary,Kutners name before adoption was Lawrence Abed,Kutners name before adoption was Lawrence Kazemi,Kutners name before adoption was Lawrence Lankarani,1,What was Kutner's name before he was adopted and took the name Kutner,128207,House M.D.,61.17-70.99,house_s05e20_seg02_clip_07,Kutners name before adoption was Lawrence Choudhary 6169,the love of his life,pizza,his mom,The Hollywood sign,no dream ,3,What was the last thing Castle saw in his dream before he woke up?,128208,Castle,0-111.78,castle_s08e13_seg02_clip_26,The Hollywood sign 6170,Castle,Gates,Esposito,Ryan,Slaughter,1,Who did Beckett tell she would keep it in mind and call sir before walking away from the desk?,128209,Castle,0-10.99,castle_s06e09_seg02_clip_25,Gates 6171,A bed,A chair,A pillow,A table,A coin,3,What is Joey sitting on when he mentors the students?,128210,Friends,0-9.6,friends_s03e07_seg02_clip_19,A table 6172,A line of boutique men's skincare products,A line of boutique women's skincare products,A line of boutique kids skincare products,A line of shampoo for men,A line of shampoo for women,0,What does Wilder run before Castle mentions the shaving cream?,128211,Castle,50.89-54.59,castle_s02e23_seg02_clip_01,A line of boutique men's skincare products 6173,Pizzeria.,Home,Ice cream partlor.,Coney Island.,Movies.,3,What place does Beckett say she went to when her Dad decided they leave her mom's funeral reception?,128212,Castle,39.11-47.85,castle_s05e03_seg02_clip_26,Coney Island. 6174,Raj keeps distracting Howard from the task at hand. ,Raj keeps gossiping. ,Raj lies a lot. ,Raj is speaking too softly. ,Raj is speaking too loudly. ,0,Why is Howard frustrated when Raj keeps talking?,128213,The Big Bang Theory,3.95-25.81,s06e08_seg02_clip_07,Raj keeps distracting Howard from the task at hand. 6175,they went to the break room,they went to the investigation room,they went to Gate's office,they went to a crime scene,they went to their desks,2,"Where did Ryan, Espsotio, Beckett and Castle go after they were in the interrogation room?",128214,Castle,15.52-24.74,castle_s04e04_seg02_clip_19,they went to Gate's office 6176,Because the baby will take too long of a nap if he plays with funny clown before his nap.,Because the baby won't eat lunch if he plays with funny clown before his nap.,Because the baby won't sleep if he plays with funny clown before his nap.,Because the baby won't want to play with Carol if he plays with funny clown before his nap.,Because the baby won't breastfeed if he plays with funny clown before his nap.,2,Why does Carol suggest Ross give the baby funny clown after he takes his nap?,128215,Friends,50.96-61.03,friends_s02e02_seg02_clip_04,Because the baby won't sleep if he plays with funny clown before his nap. 6177,A bull.,A cat.,A pit bull.,A wolf.,A gangster. ,2,What does Natalie compare Bill to after Ryan said he copied everything?,128216,Castle,62.95-71.43,castle_s03e11_seg02_clip_15,A pit bull. 6178,comic store,the gym,a bar,grocery store,mall,2,"Where were Raj, Howard, Leonard and Sheldon going next Thursday night when it was Anything Thursday?",128217,The Big Bang Theory,66.45-82.04,s02e20_seg01_clip_02,a bar 6179,The personal emergency napkin,The face napkin,The lap napkin,The guest napkin,The hands napkin,1,Which napkin does Sheldon say Leonard used when he took one of his napkins?,128218,The Big Bang Theory,30.09-35.53,s03e05_seg02_clip_00,The face napkin 6180,A lollipop,A cigar,A cigarette,Gum,A match,4,What does Morris have in his mouth when he is talking to Beckett and Castle in the interrogation room?,128219,Castle,27.33-34.74,castle_s03e15_seg02_clip_04,A match 6181,Her jacket. ,A scarf. ,A grocery bag. ,A shopping bag. ,A baby bag. ,0,What does Rachel have on her arm when she walks into the coffee house?,128220,Friends,51.56-54.25,friends_s08e11_seg02_clip_07,Her jacket. 6182,grey,purple,green,blue,black,1,"What color is the shirt Castle is wearing when he say's ""she'll be even angrier...""?",128221,Castle,0-10.01,castle_s03e23_seg02_clip_16,purple 6183,Priya and Leonard are in the living room,Priya and Leonard are in the bedroom,They're in the kitchen ,They're in Howard's apartment ,They're are in the hallway. ,2,Where is Priya and Leonard when they start kissing?,128222,The Big Bang Theory,0-41.72,s04e21_seg02_clip_02,They're in the kitchen 6184,The color shirt Chandler had on was beige,The color shirt Chandler had on was blue,The color shirt Chandler had on was purple,The color shirt Chandler had on was black,The color shirt Chandler had on was red,4,What color shirt did Chandler have on before he left the apartment,128223,Friends,10.37-19.83,friends_s07e16_seg02_clip_19,The color shirt Chandler had on was red 6185,House sat on the couch next to Wilson.,House sat on the floor.,House sat on the kitchen table.,House sat on a rolling chair.,House sat on a rocking chair.,0,Where did House sit after he handed Wilson a bowl of soup?,128224,House M.D.,14.11-20.48,house_s08e19_seg02_clip_12,House sat on the couch next to Wilson. 6186,House used his cane ,He sat down ,House got dressed,House ate an apple,House ran upstairs ,4,What did House do when he said then why I am taking this case,128225,House M.D.,8.74-18.41,house_s03e01_seg02_clip_02,House ran upstairs 6187,Zombies,Walking Dead,Black Ops mission,Marines mission,covert CIA mission,1,What the first crazy theory Castle proposed after Lanie said there is no body?,128226,Castle,14.17-20.11,castle_s04e03_seg02_clip_01,Walking Dead 6188,an orange,Peanuts,Banana,an apple,a sandwich,2,What did Marcel find when he rounded the corner in the hallway?,128227,Friends,37.22-48.38,friends_s01e19_seg02_clip_15,Banana 6189, dragon, rabbit,furry bear costume, batman,superman ,2,What costume was the cosplay person was wearing when Ryan was questioning him? ,128228,Castle,72.36-80.1,castle_s05e06_seg02_clip_06,furry bear costume 6190,A large jar of pickles.,A large jar of olives.,A large jar of mayonnaise. ,A large jar of relish.,A large bottle of ketchup.,1,What is sitting on the picnic table in front of Marshall before he gets up?,128229,How I Met You Mother,0-4.68,met_s04e03_seg02_clip_14,A large jar of olives. 6191,He turned it off because he is the grinch. ,He turned it off because he doesn't like music. ,He turned it off because he doesn't like Bernadette's singing. ,He turned it off because he's sick of Christmas music. ,He turned it off because he doesn't like christmas. ,3,Why did Sheldon turn the radio off when Bernadette was having fun?,128230,The Big Bang Theory,5.7-15.31,s08e11_seg02_clip_03,He turned it off because he's sick of Christmas music. 6192,Out of earshot.,Out of the room.,Outside.,To bed.,In a closet.,3,Where did Jay Leno say to put the kids when he was introducing Chandler's mom and her book?,128231,Friends,40.79-44.42,friends_s01e11_seg02_clip_01,To bed. 6193,Orange,Red,White,Blue,Green,4,What color was the bowl beside the stove when Robin was making crepes? ,128232,How I Met You Mother,8.7-15.23,met_s02e09_seg01_clip_00,Green 6194,yells,runs,shoots,drinks,hides ,4,What does the bartender do when the bad guy makes a threat?,128233,Castle,8.93-17.87,castle_s07e07_seg02_clip_25,hides 6195,Lily wronged his mother.,His parents were frequently nude around him.,His parents hated Robin,His parents loved Marshal more than Ted.,His parents kept important things from him.,4,What problem did Ted have with his parents before a full disclosure promise?,128234,How I Met You Mother,0-4.44,met_s02e03_seg02_clip_19,His parents kept important things from him. 6196,"They both know House is blackmailing Ayersman, and House just says this to mock him. ",House wants to show how interested he is in his coworkers lives. ,House wants Ayersman to admit to cheating. ,House wants to comfort the Ayersman.,House is trying to impress a girl in the room. ,0,Why does House bring up the fact that Ayersman is cheating on his wife before exiting?,128235,House M.D.,12.91-25.37,house_s02e08_seg02_clip_15,"They both know House is blackmailing Ayersman, and House just says this to mock him. " 6197,Castle took the train,Castle rode the bus,Castle took a taxi,Castle hired a limo,Castle rode his bike,2,How did Castle get to the crime scene before Beckett,128236,Castle,38.73-48.52,castle_s06e22_seg02_clip_07,Castle took a taxi 6198,Cuddy is carrying a salad.,Cuddy is carrying a pizza.,Cuddy is carrying a sub sandwich.,Cuddy is carrying a coffee.,Cuddy is carrying medicine.,0,What is Cuddy carrying when she walks into House's office?,128237,House M.D.,24.76-26.97,house_s06e13_seg02_clip_12,Cuddy is carrying a salad. 6199,I know how to please a woman.,YESS!!,Of course I did,well did I ,"Oh, good God.",4,What did Leonard say after Sheldon asked his girlfriend if he satisfied her sexually last night?,128238,The Big Bang Theory,0-24.76,s02e10_seg02_clip_00,"Oh, good God." 6200,He turned over the box and broke all the good china plates.,He when to change Emma.,He forgot the baby wipes.,He couldn't change the diaper properly.,He gave the bag to Monica.,0,What happened when Chandler picked up the diaper bag?,128239,Friends,14.99-20.66,friends_s09e08_seg02_clip_22,He turned over the box and broke all the good china plates. 6201,Rachel doesn't have a ride to the airport,There is no later flight,Rachel is suppose to be at her destination in 2 hours,Rachel can't afford another flight,The person Rachel wanted to see would not be on a later flight,1,Why does Rachel say she can't take a later flight when Phoebe proposes the idea of her doing so?,128240,Friends,49.22-60.03,friends_s01e09_seg02_clip_15,There is no later flight 6202,"$100,000 were the charges",$200 were the charges,$1000 were the charges,$2000 were the charges,$250 were the charges,0,How much does Castle say were the charges last month of Odette's credit cards when Castle looks at the statement?,128241,Castle,5.05-15.62,castle_s04e18_seg02_clip_06,"$100,000 were the charges" 6203,The judge rules Sheldon as innocent until proven guilty. ,The judge rules Sheldon as guilty and is ordered to pay the cashier. ,The judge rules Sheldon as guilty and innocent. ,The judge rules Sheldon as not guilty. ,The judge rules Sheldon as not guilty due to his intelligence. ,1,How does the judge rule after Sheldon't speech?,128242,The Big Bang Theory,31.51-36.61,s03e16_seg02_clip_09,The judge rules Sheldon as guilty and is ordered to pay the cashier. 6204,in a station.,In a bar,in a hospital,in a museum,In jail,4,Where is Johnny when Beckett visits him?,128243,Castle,23.19-42.74,castle_s02e13_seg02_clip_17,In jail 6205,500,1000,3000,1500,2500,2,How much money did the victim withdraw out of her account the day before she died?,128244,Castle,6.28-13.9,castle_s07e11_seg02_clip_08,3000 6206,Phoebe takes off her hat.,Phoebe takes off her sunglasses.,Phoebe takes off her gloves.,Phoebe takes off her jacket.,Phoebe takes off her shoes.,3,What does Phoebe take off after she sits down on the couch?,128245,Friends,22.44-26.66,friends_s01e14_seg02_clip_00,Phoebe takes off her jacket. 6207,She isn't sure if she loves him. ,She isn't sure if Leonard is calling her or Alex his special girl. ,She isn't sure Alex deserves him. ,She isn't sure she will ever look at Leonard the same again. ,She isn't sure what Leonard means. ,1,Why is Penny confused when Leonard calls her his special girl?,128246,The Big Bang Theory,32.95-41.8,s06e12_seg02_clip_07,She isn't sure if Leonard is calling her or Alex his special girl. 6208,Emily,Emma,Ellen,Castle,Alexis,1,Who's parents are they assuming to be suspects before talking about the set up?,128247,Castle,9.56-17.29,castle_s06e04_seg02_clip_19,Emma 6209,It was Wednesday when House looked for his hidden medicine,It was Tueday when House looked for his hidden medicine,It was Friday when House looked for his hidden medicine,It was Saturday when House looked for his hidden medicine,It was Monday when House looked for his hidden medicine,0,What day of the week was it when House looked for his hidden medicine,128248,House M.D.,45.46-60.77,house_s08e01_seg02_clip_10,It was Wednesday when House looked for his hidden medicine 6210,He fired Rocco for being on the phone with his girlfriend all the time when he should have been working ,He fired Rocco for hitting on his wife ,He fired Rocco for being lazy on the job,He fired Rocco because he was consistently late to work,He fired Rocco over money ,4,Why does Angelica Fink say her husband fired his old assistant Rocco after she is asked by Kate?,128249,Castle,6.53-21.32,castle_s02e11_seg02_clip_03,He fired Rocco over money 6211,She didn't say.,Richard.,Kate.,Javier,Kevin.,0,"What was the name of the ""birdie"" when Beckett mentioned it to Marvin?",128250,Castle,18.64-26.33,castle_s03e14_seg02_clip_18,She didn't say. 6212,go out with Marshall,pay for dinner,buy drinks ,go out with Barney,support Barney's hypothesis,4,What did Barney ask Ted to do when they were at the restaurant?,128251,How I Met You Mother,14.14-31.36,met_s03e02_seg02_clip_02,support Barney's hypothesis 6213,rocks,a bag of beads,letters,candy,a yellow flower,4,what does leonard have in a plastic zip lock bag when sheldon is next to him on the couch?,128252,The Big Bang Theory,6.51-16.13,s02e18_seg02_clip_11,a yellow flower 6214,Near a patient's bed in the room.,In the break room by the coffee machine.,Near the nurse's station.,By the MRI machine.,Next to an operating table. ,0,Where was Chase when he asked Park what the first step was?,128253,House M.D.,0-16.83,house_s08e12_seg02_clip_25,Near a patient's bed in the room. 6215,wallet,bag, digital recorder,pen,key,2,What was Marcus holding when he was talking about documentary with Foreman?,128254,House M.D.,1.72-10.76,house_s06e12_seg02_clip_10, digital recorder 6216,The patient has a lesion on his stomach,The patient has a lesion on his spleen ,The patient has a lesion on his kidney,The patient has a lesion on his liver,The patient doesn't have anything,3,What did House tell Wilson a patient had after Taub preformed an ultrasound on the patient?,128255,House M.D.,62.53-66.15,house_s04e05_seg02_clip_08,The patient has a lesion on his liver 6217,House said there was a baseball bat in the back of the car which he could use.,House said he could use a machete.,House said he could use a knife.,House said he could use an arrow.,House said he could use a gun,0,What did House offer he could use to kill Thirteen if she wanted to when they were in the car?,128256,House M.D.,146.98-176.02,house_s07e18_seg02_clip_25,House said there was a baseball bat in the back of the car which he could use. 6218,Flowers,A book,A phone,A laptop,A milk bottle,0,What was Rachael holding when she was talking to Ross,128257,Friends,0-4.85,friends_s09e01_seg01_clip_01,Flowers 6219,23,2,21,12,25,1,What was the number on the apartment door when Castle and Beckett were knocking?,128258,Castle,16.65-26.11,castle_s05e09_seg02_clip_04,2 6220,The realtor says she has no kids.,The realtor says that she has two kids.,The realtor says she has three kids.,The realtor says she has one kid.,The realtor says she has nine kids. ,1,How many kids does the realtors say the woman upstairs has when Monica asks what she's like?,128259,Friends,13.45-31.93,friends_s10e15_seg02_clip_07,The realtor says that she has two kids. 6221,To help him with his poise and standing.,To pretend to be his girlfriend to fool his parents.,To give him tips on his speech making.,To give him voice lessons.,To teach him some acting techniques.,4,What does Sheldon ask of Penny before calling her an actress?,128260,The Big Bang Theory,0.93-10.85,s04e14_seg02_clip_03,To teach him some acting techniques. 6222,Emily is wanting to call the wedding off.,Emily is wanting to put it off for 2 months.,Emily is wanting to put it off for 2 weeks.,Emily is wanting to put it off for 2 years.,Emily is wanting to put it off for 1 year.,0,How long does Ross say that Emily is wanting to put off the wedding after she talked to Monica?,128261,Friends,31.88-57.02,friends_s04e23-24_seg02_clip_16,Emily is wanting to call the wedding off. 6223,Ross had sunglasses on,Ross had a hat on,Ross had a visor on,Ross didn't have anything on ,Ross had headphones on,4,What does Ross have on his head when he was getting ready to board a plane?,128262,Friends,14.61-22.96,friends_s01e24_seg02_clip_12,Ross had headphones on 6224,cookies,popcorn,cotton candy,ice cream,pizza,2,What is Lily eating when she is walking on the street with Marshall and Ted?,128263,How I Met You Mother,58.31-64.34,met_s03e08_seg02_clip_09,cotton candy 6225,Stella's dad,Stella's mom,Stella's daughter,a cousin,a friend,2,Who did Ted's date mention when she was on the date?,128264,How I Met You Mother,35.98-62.03,met_s03e13_seg02_clip_16,Stella's daughter 6226,Raj was playing some music.,Raj was seated in the couch.,Raj was taking a shower.,Raj was not in the room.,Raj was eating lots of cookies in his mouth as he watched Howard.,4,What was Raj doing when Howard was shouting at someone?,128265,The Big Bang Theory,0-4.75,s03e22_seg02_clip_14,Raj was eating lots of cookies in his mouth as he watched Howard. 6227,a computer,a toy dog,a new rocket,a robot girlfriend,a hard drive,3,What was Howard making when he was not dating Bernadette?,128266,The Big Bang Theory,40.51-60.02,s06e05_seg02_clip_03,a robot girlfriend 6228,hot rollers,gum,a hair net,braids,ribbons ,0,what does yang have in her hair when patricia comes in with the scores?,128267,Grey's Anatomy,15.67-24.43,grey_s03e25_seg02_clip_21,hot rollers 6229,In the hallway.,In the observation window.,In his office.,In the room with the patient.,In Cuddy's office.,1,Where was House when he was explaining the burn victims condition?,128268,House M.D.,26.51-30.01,house_s02e12_seg02_clip_01,In the observation window. 6230,Kelly dances with Ryan.,Kelly kisses Esposito.,Kelly passes out.,Kelly reaches into her purse for her phone and the video of the female suspect.,Kelly hugs Beckett.,3,What does Kelly do after Beckett ask for a description?,128269,Castle,9-21.61,castle_s04e13_seg02_clip_03,Kelly reaches into her purse for her phone and the video of the female suspect. 6231,The dinner Beckett and Castle had with Javier,The presidential correspondents diner,The first Thanksgiving diner,Jesus and his disciples,The dining scene from Alien,4,"What diner does Castle think was worse than the one Castle, Beckett, Martha, and Jim were having before Castle and Beckett arrived downtown?",128270,Castle,29.82-37.39,castle_s05e08_seg02_clip_01,The dining scene from Alien 6232,Lisa Cuddy closes a green folder.,Lisa Cuddy closes a red folder.,Lisa Cuddy closes a yellow folder.,Lisa Cuddy closes a blue folder.,Lisa Cuddy closes a pink folder.,3,What is Lisa Cuddy closing when she sits at her desk?,128271,House M.D.,0-67.96,house_s01e14_seg02_clip_15,Lisa Cuddy closes a blue folder. 6233,Bernadette is with Leonard. ,Penny is with Leonard. ,Howard is with Leonard. ,Sheldon is with Leonard. ,Amy is with Leonard. ,3,Who is with Leonard when they are hanging out?,128272,The Big Bang Theory,0-8.1,s08e19_seg02_clip_07,Sheldon is with Leonard. 6234,14 years old.,13 years old.,15 years old.,17 years old.,10 years old.,4,How old does House say Jessica is when he is wondering what caused her rage attack?,128273,House M.D.,86.86-91.43,house_s01e16_seg02_clip_06,10 years old. 6235,Esposito and Ryan turned around to talk to a ignore their friend.,Esposito and Ryan turned around because someone dropped something.,Esposito and Ryan turned around to watch television.,Esposito and Ryan turned around because Gates said Gentlemen. ,Epsosito and Ryan turned around to make a phone call. ,3,Why did Esposito and Ryan turn around in their seats after talking to each other?,128274,Castle,46.42-54.62,castle_s06e22_seg02_clip_15,Esposito and Ryan turned around because Gates said Gentlemen. 6236,"Howard tells Sheldon that if he does not play with them, they wont be able to include him in the game in the future",Howard tells Sheldon that he would pay him to play the video game,"Howard tells Sheldon that the video game contains spoilers, and that he plans to ruin the spoiler for Sheldon","Howard tells Sheldon that after they play the video game, they are attending an event to meet George Lucas",Howard tells Sheldon that the Star Wars video game has lightsabers. ,4,What does Howard say before Sheldon begins to begs Amy to let him skip her aunt's birthday party?,128275,The Big Bang Theory,88.85-95.03,s05e19_seg01_clip_01,Howard tells Sheldon that the Star Wars video game has lightsabers. 6237,Monica calls it a tenderness,Monica calls it a tube of love,Monica calls it Polish sausage,Monica calls is a hot link,Monica calls it a moonlight,0,What does Monica call a man's thing when they are standing in the doorway,128276,Friends,18.25-30.51,friends_s05e08_seg02_clip_06,Monica calls it a tenderness 6238,Boyd healed Dr. Cameron.,Boyd healed Dr. Foreman and Dr. Cameron.,Boyd healed his mother.,Boyd healed a nurse.,Boyd healed Grace.,4,Whom did Boyd heal before getting the second Point?,128277,House M.D.,54.3-63.21,house_s02e19_seg02_clip_08,Boyd healed Grace. 6239,Cotton candy.,Melting ice cream.,Smoothie.,A dripping Cheeseburger.,Oily fries.,1,What does Robin have that causes Ted to interrupt Marshall's emotional moment when in the car?,128278,How I Met You Mother,23.11-26.41,met_s03e15_seg02_clip_13,Melting ice cream. 6240,He tampered with the crime scene.,Because Grigory was suing the bed and breakfast his mother stayed at.,Grigory was killed because his mother's enemy targeted him too.,"Grigory found clues of ""foul play"" and violence from the bed and breakfast where his mother was staying.",Grigory was possibly killed by the person who sabotaged his mother's car.,4,Why was Grigory killed when he was looking into his mother's death?,128279,Castle,16.72-24.65,castle_s08e11_seg02_clip_09,Grigory was possibly killed by the person who sabotaged his mother's car. 6241,Blue.,Red.,Green.,Gold.,Silver.,4,What color garland is Raj shown with after Penny tries to kiss Sheldon?,128280,The Big Bang Theory,48.84-55.14,s07e11_seg02_clip_09,Silver. 6242,Believed in God,Believed Joey was saving this seat for someone,Believed that the tow truck company would be coming,Believed he could ,Believed in love ,1,What did Patron say he believed after Joey asked him what he believed ?,128281,Friends,2.75-4.58,friends_s06e12_seg02_clip_12,Believed Joey was saving this seat for someone 6243,slap him,touch his chest,cry,run away,do math,1,what did cuddy do when house pointed at the blonde,128282,House M.D.,3.68-12.88,house_s07e08_seg02_clip_17,touch his chest 6244,The side of the street,The bar,The resturant,The bedroom,The couch,4,"Where are Ted and Marshall sitting after watching the ""Star Wars"" movie?",128283,How I Met You Mother,25.93-33.51,met_s04e01_seg02_clip_09,The couch 6245,Remy,Foreman,Taub,Cameron,Wilson,2,Who said the patient could have the flu when the doctors were discussing the case? ,128284,House M.D.,30.35-35.55,house_s04e13_seg02_clip_01,Taub 6246,in bed,standing behind Howard,in the kitchen near the sink,lying on the floor,at Pennys apartment,1,"Where is Sheldon when Raj, Howard and Leonard are all seating and looking at laptops?",128285,The Big Bang Theory,59.91-62.08,s04e19_seg02_clip_03,standing behind Howard 6247,Early afternoon.,Late afternoon.,Night.,Evening.,Morning.,2,What time is the day it when Monica starts talking about a man from cooking school?,128286,Friends,0-8.19,friends_s04e09_seg02_clip_00,Night. 6248,He likes to play practical jokes.,"Tyler may need rubber sheets, he is a bed wetter.",He is an abuser,He is an alcoholic,He is a compulsive gambler,1,What problem does Ryan tell Lanie that Tyler has when he is making his coffee?,128287,Castle,40.51-45.46,castle_s08e14_seg02_clip_17,"Tyler may need rubber sheets, he is a bed wetter." 6249,Across the hall. ,Home.,To the bedroom.,To the bathroom. ,To the supermarket. ,3,Where did Rachel's mom go after she talked to Rachel? ,128288,Friends,19.14-36.46,friends_s08e20_seg02_clip_13,To the bathroom. 6250,White,Green,Clear,Red,Brown,3,"What color is the beverage sitting on the tray in front of Leonard when he is eating with Raj, Howard and Sheldon?",128289,The Big Bang Theory,54.09-58.84,s08e21_seg01_clip_01,Red 6251,cardboard boxes,dart board,toaster,coffee pot,front door,0,What is in front of Sheldon when Alicia introduces herself to Leonard and Sheldon?,128290,The Big Bang Theory,4.5-8.7,s02e19_seg02_clip_02,cardboard boxes 6252,He fed the dog. ,He opened the door. ,He hung the tassle on the lamp. ,He watered the plants. ,He made a pot of coffee. ,2,What did Castle do before the phone rung?,128291,Castle,6.98-15.35,castle_s04e23_seg02_clip_25,He hung the tassle on the lamp. 6253,Sandwich.,Cucumber.,Lettuce.,Beans.,Onions.,0,What holds Mandy when talking with Leonard?,128292,The Big Bang Theory,0-46.12,s09e02_seg02_clip_11,Sandwich. 6254,Cuddy and House are in the operating room.,Cuddy and House are in a public park outside.,Cuddy and House are at a restaurant.,Cuddy and House are in the emergency room.,Cuddy and House are in the main lobby of the hospital.,2,Where are Cuddy and House when they have their conversation about House's previous relationship?,128293,House M.D.,5.46-64.17,house_s07e18_seg02_clip_07,Cuddy and House are at a restaurant. 6255,11,14,13,16,17,1,What score does Joey have before he gets another card?,128294,Friends,9.74-14.46,friends_s05e23-24_seg02_clip_40,14 6256,Castle,Stacey,Brad,Esposito,Beckett,2,Who drove a silver boxster when Stacey was alive?,128295,Castle,0-18.21,castle_s03e11_seg02_clip_06,Brad 6257,That people are really sick of this place,Cameron wants a job with House,Cameron wants to swaddle House in new clothes,The Earth is a sphere in space,The only thing that makes sense doesn't,4,What does House say is the only thing that makes sense after Cameron tells him she doesn't care what he thinks?,128296,House M.D.,69.31-93.03,house_s05e21_seg02_clip_04,The only thing that makes sense doesn't 6258,The gift had been re-gifted.,She didn't give them a gift.,She got the wrong item.,"Because she gave them an old, frozen cookie.",It was the wrong size.,3,"Why did Monica tell Chandler ""this is what happens when you don't register for gifts"" after Phoebe gave them her gift?",128297,Friends,45.16-51.57,friends_s07e03_seg02_clip_03,"Because she gave them an old, frozen cookie." 6259,Barney sat on the carpet.,Barney sat on Ted's legs.,Barney sat on a stool.,Barney did not sat anywhere.,Barney sat on the restarm of the couch.,4,Where sat Barney after enter in the living room?,128298,How I Met You Mother,26.55-61.03,met_s02e10_seg02_clip_11,Barney sat on the restarm of the couch. 6260,Amy plays chess.,Amy sings a song., Amy reaches for the teapot.,Amy kisses Sheldon.,Amy walks out into the hall.,2,What does Amy do after Sheldon places a teapot on the table?,128299,The Big Bang Theory,11.1-17.71,s06e12_seg02_clip_02, Amy reaches for the teapot. 6261,Blood is on his hand.,Dirt is on his hand.,Spilled jelly from the donut he took from her.,Ink stains.,A ring is on his hand.,4,What is on Castle's hand when Beckett slaps him in the face and calls him a jerk>,128300,Castle,51.47-57.84,castle_s08e09_seg02_clip_04,A ring is on his hand. 6262,Castle was going to receive bottle service.,Castle was going to receive free food.,Castle was going to receive a lap dance.,Castle was going to receive a private room.,Castle was going to receive 20 bucks.,0,What was Castle going to receive when he went to the X club?,128301,Castle,51.51-53.34,castle_s04e08_seg02_clip_10,Castle was going to receive bottle service. 6263,Be at the wrong place at the wrong time,Sleep with actresses,Threaten to fire someone and pay them $80 mil.,Support a criminal,Cheat on taxes,2,What did Weisberg say was the worst thing that he did when he was getting interrogated by Beckett?,128302,Castle,4.23-6.58,castle_s02e20_seg02_clip_23,Threaten to fire someone and pay them $80 mil. 6264,Penny was playing video games with Leonard. ,Penny was sitting on the couch.,Penny was getting out the shower.,Penny was making breakfast.,Penny was sitting in the kitchen,4,Where was Penny when Sheldon was dwelling on Amy?,128303,The Big Bang Theory,0-25.42,s09e08_seg01_clip_00,Penny was sitting in the kitchen 6265,A snob,A pig,A tramp,A bad doctor,A loser,1,What did George tell Meredith that he called Kallie before the group laughed?,128304,Grey's Anatomy,50.97-62.81,grey_s03e06_seg02_clip_13,A pig 6266,White Scarf,Nothing,Blue Scarf,Brown scarf,Red scarf,2,What did Lily have over her blouse when she was at the restaurant?,128305,How I Met You Mother,1.26-3.37,met_s06e20_seg01_clip_01,Blue Scarf 6267,Lifesized superheros ,Windows,A dog,Flags,A mirror,3,What was behind Amy and Sheldon when they were recording themselves?,128306,The Big Bang Theory,0-4.96,s05e14_seg01_clip_01,Flags 6268,Raj works out.,Raj yawns and lays back.,Raj runs in a circle.,Raj reads a book.,Raj looks out the window.,4,What does Raj do when he says this is not the way to work?,128307,The Big Bang Theory,4.92-8,s08e01_seg02_clip_02,Raj looks out the window. 6269,to hand him some money ,she was looking for candy ,she had to smoke a cigarette ,she was paged ,to grab a pen ,3,Why does Cutty reach in her pocket when talking to House?,128308,House M.D.,71.42-78.05,house_s05e12_seg02_clip_13,she was paged 6270,A knife,His hand,A gun,A baton,Castle's body,3,What does the guard smack against the wall after searching Castle?,128309,Castle,38.71-44.18,castle_s08e03_seg02_clip_16,A baton 6271,what do you want me to do?,"No, just for the fun of it, I'm gonna take his side. ",I will take you home,Yall going in the same direction ,"No, I can't help ",1,What did Howard say after Leonard asked for his help? ,128310,The Big Bang Theory,0-9.03,s02e05_seg02_clip_04,"No, just for the fun of it, I'm gonna take his side. " 6272,Handed up a bouquet of flowers.,Asked her to leave. ,Grabbed her and started making out. ,Kissed her on the cheek. ,Took her by the hand.,3,What did Ross do when Mona came in the door? ,128311,Friends,6.08-11.48,friends_s08e11_seg02_clip_04,Kissed her on the cheek. 6273,Raj is by himself. ,Raj is on a date. ,Raj is stood up. ,Raj is meeting a coworker. ,Raj is meeting a teacher of his. ,1,What is Raj doing when he is at a restaurant?,128312,The Big Bang Theory,0-4.5,s07e19_seg02_clip_15,Raj is on a date. 6274,Transplant List,Grocery List,Santa Claus's nice List,A Chore List,An email list,0,What list does Chase want to get the patient on after he has lapsed into a coma?,128313,House M.D.,26.57-31.41,house_s07e14_seg02_clip_16,Transplant List 6275,Let's go,I'm hungry,Let's eat,I'm tired,I'm bored,2,What does Zack say after he signs the paper?,128314,The Big Bang Theory,9.76-25.63,s07e09_seg02_clip_13,Let's eat 6276,In Ted's house,The park,The bar,Into the city,At the same place they always hang out at (the restaurant) ,4,What and when did Lily respond to Ted's comment?,128315,How I Met You Mother,0-75.47,met_s06e20_seg01_clip_01,At the same place they always hang out at (the restaurant) 6277,Howard was seated beside Sheldon.,Penny was seated beside Sheldon.,Raj was seated beside Sheldon.,Amy was seated beside Sheldon.,Nobody was seated beside Sheldon.,3,Who was sitting beside Sheldon when he had his feet up on the table?,128316,The Big Bang Theory,48.99-59.02,s10e09_seg02_clip_06,Amy was seated beside Sheldon. 6278,Winters asks why Oracle gives the crew such a low percent chance of survival.,Winters tells Oracle to be more realistic.,Winters says he believes that the crew has much better odds than that.,Winters thinks it is an optimistic prediction.,Winters asks to see Beckett and Castle.,3,How does Winters respond after Oracle says the chance of survival is 0.1%?,128317,Castle,66.45-74.03,castle_s05e06_seg02_clip_09,Winters thinks it is an optimistic prediction. 6279,Brant mentions his dad's file.,Brant mentions a different medication.,Brant mentions his wife.,Brant mentions the side effects of the pills.,Brant mentions his release from the hospital.,0,What does Brant mention after refusing pills from Taub?,128318,House M.D.,31.37-43.13,house_s08e15_seg02_clip_20,Brant mentions his dad's file. 6280,Wade said having an allergy attack.,Wade said barely breathing.,Wade said badly cut.,Wade said wheezing.,Wade said dead.,4,What condition does Wade say he found Vega in when he showed up to get a loan money payment?,128319,Castle,6.25-21.43,castle_s02e15_seg02_clip_06,Wade said dead. 6281,A sign,A monkey,A belt ,His badge,A scarf ,3,What does Esposito have around his neck when talking to Ryan and Castle,128320,Castle,4.65-10.23,castle_s08e13_seg02_clip_13,His badge 6282,In a booth,At the bar,On a couch,In his car,On the floor,2,Where do Phoebe and Gary sit when he arrives?,128321,Friends,43.79-46.76,friends_s05e21_seg02_clip_07,On a couch 6283,He starts crying. ,His eyes are wide and he turns to the side. ,He breaks free and runs away. ,He kisses her. ,He smells her hair. ,1,What happens after Penny hugs Raj?,128322,The Big Bang Theory,0.3-3.91,s01e02_seg02_clip_12,His eyes are wide and he turns to the side. 6284,Carol and Ross,Ross and Rachel,Chandler and Joey,Monica and Ross,Ross and Ben,4,Who walks into the apartment after Joey and Phoebe are done talking about guitars?,128323,Friends,29.3-33.36,friends_s05e11_seg02_clip_06,Ross and Ben 6285,She plugged in the coffee pot.,She put water in the coffee pot.,She poured some coffee.,She took out a teabag.,She grabbed a cup.,2,What did Sam do when she walked to the counter?,128324,House M.D.,1.88-6.58,house_s06e18_seg02_clip_00,She poured some coffee. 6286,Santa wants Ben to learn the meaning of life.,Santa wants Ben to learn about the Revolution.,Santa wants Ben to learn the meaning of Christmas.,Santa wants Ben to learn about Hanukkah.,Santa wants Ben to learn about Jewish heritage.,3,What does Santa want Ben to do when he sits with him?,128325,Friends,4-9.54,friends_s07e10_seg02_clip_16,Santa wants Ben to learn about Hanukkah. 6287,A beanie hat,A watch,Brass knuckles,Leather gloves,His backup pistol ,0,What accessory does Castle put on before he exits his car and goes to see Tyson?,128326,Castle,17.87-43.25,castle_s07e15_seg02_clip_05,A beanie hat 6288,Rachel is saying Chandler.,Rachel is saying Ross.,Rachel is saying Joshua.,Rachel is saying Joey.,Rachel is saying Miranda.,2,Whose name is Rachel saying when she is talking to Phoebe?,128327,Friends,14.34-20.2,friends_s04e13_seg02_clip_08,Rachel is saying Joshua. 6289,That it is not what it looks like.,It was none of his business.,That she had been in the bedroom with Raj.,That he should call Priya.,That she was leaving. ,0,What did Penny tell Leonard after he asked what was going on?,128328,The Big Bang Theory,16.39-28.99,s05e01_seg01_clip_00,That it is not what it looks like. 6290,She misses her friends back home.,She thinks Leonard doesn't like her anymore.,Sheldon insulted her.,"She says she's just ""hormonal"".",Because she think's she stupid.,4,Why does Penny get upset after being unable to guess the answer to a question?,128329,The Big Bang Theory,0-13.81,s03e10_seg02_clip_14,Because she think's she stupid. 6291,He hid her drugs from her,He put a restraining order on her,He slapped her for lying to him,He gave her a birthday present,He followed Chloe to the club that night because he though she was seeing another guy.,4,What did Evan say he did to Chloe when Beckett and Castle were first questioning him?,128330,Castle,62.62-70.23,castle_s03e01_seg02_clip_19,He followed Chloe to the club that night because he though she was seeing another guy. 6292,Too many to process.,Twenty.,None.,Five flights.,One flight.,3,How many flights were found after they were checked against the criteria?,128331,Castle,8.46-12.69,castle_s03e22_seg02_clip_02,Five flights. 6293,Chase pushed Nina in a wheel chair by Brian's bed,Chase gave Brian medication,Chase changed the IV bag,Chase gave Brian a paper to read,Chase did nothing ,0,What did Chase do when he went to Brian at the hospital ?,128332,House M.D.,71.32-78.81,house_s07e18_seg02_clip_10,Chase pushed Nina in a wheel chair by Brian's bed 6294,The laptop.,A contract.,A pen,His keys.,His hand,2,"What does Sheldon give Leonard after he says, ""we will officially no longer be roommates""?",128333,The Big Bang Theory,5.23-9.84,s09e04_seg02_clip_04,A pen 6295,In a cafe,In her bedroom,In a chair by the window,At the dining room table,Driving in her car,2,Where is Rachel when she is listening to the radio?,128334,Friends,0-13.58,friends_s02e08_seg02_clip_19,In a chair by the window 6296,Masters noticed something moving,Masters noticed danger.,Masters noticed that they were trapped.,Masters noticed two feet of a human being popping out that were covered with a blue polythene paper.,Masters did not see anything.,3,What did Masters notice before she called on Chase's attention?,128335,House M.D.,45.33-53.25,house_s07e18_seg02_clip_10,Masters noticed two feet of a human being popping out that were covered with a blue polythene paper. 6297,The Flash,Harley Quinn,Supergirl,Green Arrow,Aquaman,4,Who does Raj suggest Penny dress up as when she doesn't want to be Wonder Woman?,128336,The Big Bang Theory,32.41-44.42,s04e11_seg02_clip_06,Aquaman 6298,Where is my room?,Where is the doctor?,Can I have a different nurse?,Could we please talk to the manager?,How old are you ,3,What does rachel ask the nurse when rachel stands up from the wheel chair?,128337,Friends,46.37-51.85,friends_s08e23-24_seg01_clip_01,Could we please talk to the manager? 6299,A wood steak. ,A knife. ,An ice pick. ,A bullet. ,A nail. ,3,What does the man have in his head when Beckett sees him?,128338,Castle,81.32-87.39,castle_s03e22_seg02_clip_00,A bullet. 6300,I'm dying ,I'm pregnant ,I'm leaving you ,I'm cheating on you ,Let's get lunch ,1,What does Taub's wife tell him when he sees her?,128339,House M.D.,61.59-75.69,house_s07e23_seg02_clip_21,I'm pregnant 6301,Esposito and Ryan were in a fitness center.,Esposito and Ryan were in a destroyed aquarium.,Esposito and Ryan were in a sub-basement.,Esposito and Ryan were in a laboratory.,Esposito and Ryan were in a circus tent.,2,Where were Esposito and Ryan after Esposito helped Ryan up.,128340,Castle,55.53-58.26,castle_s06e11_seg02_clip_17,Esposito and Ryan were in a sub-basement. 6302,Gates tells Beckett to work on the Marks case,Gates tells Beckett to take the rest of the day off,Gates tells Beckett to take the rest of the month off,Gates tells Beckett to turn in her badge,Gates tells Beckett to investigate Simmons quietly,1,What does Gates tell Beckett to do after she takes her off the Simmons Case?,128341,Castle,68.42-76.97,castle_s06e22_seg02_clip_04,Gates tells Beckett to take the rest of the day off 6303,Beckett showed Hawke a tape recorder.,Beckett showed Hawke a picture of a woman name Alice Clark.,Beckett showed Hawke a camera which showed him stealing from a store.,Beckett showed Hawke a bloody knife with his name on it.,Beckett showed Hawke a phone number written a some cardboard.,1,What was the first thing Beckett showed Hawke when he was looking down at the table?,128342,Castle,6.83-10.92,castle_s06e08_seg02_clip_06,Beckett showed Hawke a picture of a woman name Alice Clark. 6304,He was holding a knife.,He was holding a banana.,He was holding an apple.,He was holding a phone.,He was holding his keys.,3,What was Sheldon holding in his hand when he was talking to Leonard? ,128343,The Big Bang Theory,23.48-33.3,s08e05_seg01_clip_01,He was holding a phone. 6305,That the killer got in unnoticed,That the victim is innocent,That the killer was a man,That the killer was a woman,That she was a suspect,0,What does Serena Kaye say isn't likely when the detectives are making guesses?,128344,Castle,72.01-81.7,castle_s04e05_seg02_clip_02,That the killer got in unnoticed 6306,He gave Castle a hug.,He pulled a gun on Castle. ,He punched Castle. ,He sat down.,He pulled out his cell phone. ,3,What did Alexis do before saying go?,128345,Castle,18.7-23.15,castle_s08e11_seg02_clip_17,He sat down. 6307,Dr. House grabbed Boyd's arm.,Dr. House grabbed his cup's handle.,Dr. House grabbed a scalpel.,Dr. House grabbed a wood Stir Stick.,Dr. House grabbed the Whiteboard.,3,What did Dr. House grab after Boyd asked about the second point?,128346,House M.D.,55.19-59.2,house_s02e19_seg02_clip_08,Dr. House grabbed a wood Stir Stick. 6308,He was standing up.,He was sitting down.,He was writing a book.,He was serving drinks.,He was laughing.,1,What was Marshall doing when he said something about vulnerable?,128347,How I Met You Mother,51.04-60.05,met_s02e10_seg02_clip_14,He was sitting down. 6309,Beckett cries.,Beckett is concerned and apprehensive for Castle.,Beckett smacks Castle.,Beckett arrests Castle.,Beckett punches Esposito.,1,How does Beckett react after Castle demands questioning Mr. Walters?,128348,Castle,0-4.05,castle_s07e23_seg02_clip_02,Beckett is concerned and apprehensive for Castle. 6310,Three,Two,Four,Five,One,1,How many days does Castle tell Beckett his mother prepares for a play before the opening?,128349,Castle,47.27-57.37,castle_s07e22_seg02_clip_00,Two 6311,Weller recommended the catering company.,Castle recommended the catering company.,Sadie recommended the catering company.,Their son recommended the catering company.,Emma recommended the catering company.,2,Who recommended the catering company Nina worked for when Joanna and Roger needed one?,128350,Castle,62.17-67.09,castle_s08e10_seg02_clip_11,Sadie recommended the catering company. 6312,The women asked for Joey's number.,The women slapped Joey.,The women gave Joey a kiss.,The women closed the door in front of Chandler's and Joey's face.,The women gave Joey some photos of them.,3,How did the two women at the apartment door react after Joey said he wanted pictures of them?,128351,Friends,26.8-30.51,friends_s01e19_seg02_clip_14,The women closed the door in front of Chandler's and Joey's face. 6313,Castle punched a kid,Jason told on him,Mrs Ruiz thought he was disruptive,Jason was the principal's son,The principal had a lead for him,1,How did Castle end up in the principal's office after the classroom?,128352,Castle,59.26-89.11,castle_s07e04_seg02_clip_14,Jason told on him 6314,His fighting with Leonard.,His relationship with his mother.,His relationship with Amy.,His obsession with action figures.,His quirky ways.,2,What does Sheldon discover his problem to be after Barry walks into the room?,128353,The Big Bang Theory,46.75-59.17,s06e14_seg02_clip_10,His relationship with Amy. 6315,Outside the hospital ,Her car,Patient's house,At a garden nursery ,At the patient's school? ,2,Where is Cameron when she calls House to tell him about the pesticide she found? ,128354,House M.D.,45.76-59.7,house_s01e08_seg02_clip_08,Patient's house 6316,It is a tattoo he is thinking about getting.,It is the logo of his favorite band.,It is something he has drawn since he was a kid.,It's just been stuck in his head.,His girlfriend drew it on him.,3,What does Dwight say about the symbol on his hand after Beckett asks about it?,128355,Castle,33.95-44.36,castle_s06e16_seg02_clip_13,It's just been stuck in his head. 6317,When they tried to snatch Joe Samson,When they tried to snatch Joe Harold,When they tried to snatch Joe Smith,When they tried to snatch Joe Pulgatti,When they tried to snatch Joe Elive,3,When does Beckett say things went south for the kidnappers when he discusses the cop case with Montgomery?,128356,Castle,17.35-26.03,castle_s03e13_seg02_clip_19,When they tried to snatch Joe Pulgatti 6318,blue,Purple,white,grey,black,1,"What color is Howard wearing when he say's ""Come on...""?",128357,The Big Bang Theory,54.1-64.02,s03e05_seg02_clip_00,Purple 6319,because she is from the state department ,because of the attempt on Oborin's life ,"to get justice for grigory, Anya and Sergei ",to give up a traitor ,to make a deal ,2,Why does Vasily want to speak to RIta after Beckett? ,128358,Castle,18.21-57.35,castle_s08e11_seg02_clip_20,"to get justice for grigory, Anya and Sergei " 6320,Because he can't show his nose.,Because he can't show his teeth.,Because he can't show his fingers.,Because he can't show his stomach.,Because he can't show his butt.,1,Why is Ross acting weird when he is on his date eating dinner at the table?,128359,Friends,48.12-52.35,friends_s06e08_seg02_clip_12,Because he can't show his teeth. 6321,Cameron confirms the tox screen shows cocaine and methamphetamine in Alex's system. ,Cameron confirms the tox screen shows oxycodone and heroine in Alex's system. ,Cameron confirms the tox screen shows valium and cocaine in Alex's system. ,Cameron confirms the tox screen shows LSD and heroine in Alex's system. ,Cameron confirms the tox screen shows valium and heroine in Alex's system. ,4,What does Cameron confirm the tox screen shows when reviewing the results with House and Chase?,128360,House M.D.,82.76-89.47,house_s02e13_seg02_clip_02,Cameron confirms the tox screen shows valium and heroine in Alex's system. 6322,Chandler is feeling jealous.,Chandler is feeling confused.,Chandler is feeling angry.,Chandler is feeling sad.,Chandler is amused.,1,How is Chandler feeling when Monica and Phoebe react to the stripper in a positive way?,128361,Friends,0-7.32,friends_s04e14_seg02_clip_12,Chandler is feeling confused. 6323,That he is a karate master. ,That he is an exotic dancer. ,That he is a race car driver. ,That he is a truck driver. ,"That he is an ""Intelligence asset.""",4,What does Hunt tell Castle after he tells him that he is Castle's father?,128362,Castle,0-25.66,castle_s05e16_seg02_clip_21,"That he is an ""Intelligence asset.""" 6324,About meeting Barry tomorrow to return the ring.,About a job interview with Calvin Klein the following day.,About telling Monica she broke her favorite coffee cup.,About telling her parents that she was a waitress.,About being able to make enough money to pay for her half of the rent.,0,What did Rachel say she was nervous about after Ross took the broom from her.,128363,Friends,0-15.09,friends_s01e02_seg02_clip_12,About meeting Barry tomorrow to return the ring. 6325,on the roof ,on the table ,on the bar stool,on the chair,On the couch ,4,Where was Joey sitting when they were at the coffee shop? ,128364,Friends,2.56-21.45,friends_s10e09_seg02_clip_06,On the couch 6326,How does any of this help me?,Where can I meet this guy?,Is this really a true story?,Did Bauman ever pee again?,Where did Bauman live after that?,0,What did Marshall ask when Barney finished his story?,128365,How I Met You Mother,40.62-58.97,met_s03e15_seg02_clip_03,How does any of this help me? 6327,He use Lucy to distract him,He used Martha to distract him,Someone walked in behind Lorenzo,He rushed and grabbed the gun from him,He used a jedi mind trick ,0,How did Castle disarm Lorenzo after saying Lucy wont let him? ,128366,Castle,71.51-82.83,castle_s08e05_seg02_clip_20,He use Lucy to distract him 6328,He ate his food.,He started crying.,He entered the car,He sat down on the chair.,He tripped him.,4,What did Richard do after the Tattooed man ran?,128367,Castle,12.82-22.54,castle_s07e06_seg02_clip_19,He tripped him. 6329,Alice said she is going to write self improvement books,Alice said she is going to climb Mt. Everest,Alice said she is going to visit the Great Wall of China,Alice said she is going to write books for adults,Alice said she is going walk across the country,3,What did Alice say she was going next after she is out the hospital,128368,House M.D.,81.69-103.97,house_s07e03_seg02_clip_25,Alice said she is going to write books for adults 6330,House has yet to get treatment.,House was denied all treatment plans.,House was avoiding getting treatment.,House can not afford treatment.,"House already got treatment, but it did not work. ",0,Why was House arguing with his hallucinations when he was on the bus?,128369,House M.D.,27.29-30.37,house_s04e15_seg02_clip_08,House has yet to get treatment. 6331,Marvin tells her to get a real job.,He wants her to buy Marshall a box of wine.,That she stop complaining so much.,That she try pickles on her sandwich.,He wants her to bring Marshall home for a visit.,3,What does Marshall's dad suggest to Lily when he calls a third time?,128370,How I Met You Mother,40.44-46.77,met_s06e01_seg02_clip_08,That she try pickles on her sandwich. 6332,Monica is wearing a white shirt.,Monica is wearing a black shirt.,Monica is wearing a red shirt.,Monica is wearing a blue shirt,Monica is wearing an orange shirt.,1,What color shirt is Monica wearing when they are all together in the room?,128371,Friends,8.56-59.03,friends_s02e04_seg02_clip_14,Monica is wearing a black shirt. 6333,Working on the computer. ,Playing a video game.,Playing a board game.,Working on a white board.,Playing a card game.,4,"What are Howard, Sheldon, Raj, and Leonard doing when Sheldon tells them not so fast?",128372,The Big Bang Theory,15.36-20.28,s04e11_seg01_clip_00,Playing a card game. 6334,she is in the drivers seat,she is in the passenger seat,she is not in the car,she is in the middle,she is in the back seat,0,What side of the car was Phoebe sitting on when the passengers are in the car?,128373,Friends,0-13.87,friends_s02e09_seg02_clip_17,she is in the drivers seat 6335,Leonard.,Amy.,Howard.,Penny.,Bernadette.,1,Who took the empty Chinese boxes when taking to Raj.,128374,The Big Bang Theory,9.23-71.03,s07e18_seg02_clip_17,Amy. 6336,George.,Alex.,Cristina.,Bailey.,Nurse.,1,Who is taking care of Joe when Izzie was looking him?,128375,Grey's Anatomy,6.23-9.55,grey_s02e01_seg02_clip_23,Alex. 6337,standing,sitting,crying,laughing,eating,1,What was Phoebe doing before she started talking?,128376,Friends,0-5.81,friends_s08e10_seg02_clip_15,sitting 6338,Sitting on the wheelchair,Sitting on the bed,Standing at the door,Leaning on the wall,Standing beside the bed,4,Where was Roy when he made comment about the sick boy,128377,House M.D.,19.91-29.44,house_s06e04_seg02_clip_04,Standing beside the bed 6339,A reporter had gotten Beckett's cell phone number and wanted to know if she was going to run for office.,Beckett had set a reminder for herself to take her medication for an illness known only to her and her doctor.,"Earlier, Beckett had asked a friend to call her at that time so she'd have an excuse to leave the stuffy gathering.",The precinct was letting Beckett know there's been a murder.,"Castle had his phone on silent mode, and his publisher had to call Beckett's phone to get in touch with him.",3,Why did Beckett's phone ring at the table after the toast at the table?,128378,Castle,70.1-72.29,castle_s07e23_seg02_clip_27,The precinct was letting Beckett know there's been a murder. 6340,Xiang,Xu Wen,Mai Liao,Cortez Spencer,Archibald Simpson,0,What is the name of the suspect mention when the debriefing occurs?,128379,Castle,0-7.28,castle_s04e16_seg02_clip_22,Xiang 6341,They think he has a terminal illness and there's nothing they can do.,They think he has a tumor that can be easily removed surgically and they're going to poke it with a stick.,He said that the patient has an infection and he will give him antibiotics to cure him.,He said that the patient has a virus and that he will have to wait it out for it to go away.,They think it's a brain tumor.,1,How does House explain the solution when he is talking to the medical patient?,128380,House M.D.,85.04-91.44,house_s02e04_seg02_clip_21,They think he has a tumor that can be easily removed surgically and they're going to poke it with a stick. 6342,High-fived Stella. ,Got off the couch.,Ate popcorn.,Pointed at the TV.,Winked at Stella. ,3,What did Ted do when he said great scene?,128381,How I Met You Mother,31.93-34.21,met_s04e01_seg02_clip_12,Pointed at the TV. 6343,freckles,eyepatch,her name,black lips,mustache,4,What is drawn on Rachel's face when she is in the hotel room with Ross?,128382,Friends,2.66-6.79,friends_s05e23-24_seg02_clip_35,mustache 6344,Because she is going to crash Chander's wedding.,Because she is going to crash Phoebe's wedding.,Because she is going to crash Ross' wedding.,Because she is going to crash Joey's wedding.,Because she is going to crash Monica's wedding.,2,Why is Rachel on a plane when she is talking about Ross?,128383,Friends,39.08-45.07,friends_s04e23-24_seg02_clip_37,Because she is going to crash Ross' wedding. 6345,The closet is too full,He can't reach,The bowl is too big,The bowl is super glued to his hand,The door is locked,4,Why can't Chandler put the bowl away after he and Monica decide to put it in the bathroom closet?,128384,Friends,24.19-30.7,friends_s08e14_seg02_clip_02,The door is locked 6346,Epositio found out that the cab driver was sick,Epositio found out that the cab driver was lying,Epositio found out that the cab driver stole money,Epositio found out that the cab driver stole a car,Esposito logged into the cab driver's gps and found out someone went in circles for 30$,4,What did Esposito find out about the cab driver when he was telling the other detectives?,128385,Castle,55.81-74.27,castle_s03e16_seg02_clip_06,Esposito logged into the cab driver's gps and found out someone went in circles for 30$ 6347,He's dead.,Did you watch him take the meds?,What kind of dog is that?,Did you watch the patient?,If I died you'd never get the job.,0,"What did Amber say when House asked, ""What's wrong with the dog?""",128386,House M.D.,45.38-60.35,house_s04e03_seg02_clip_24,He's dead. 6348,Sitting behind her desk.,Sitting on the couch.,Standing behind her desk.,Standing by the door.,Sitting at the table.,2,Where was Cuddy after House said it was too late?,128387,House M.D.,38.23-44.15,house_s07e09_seg02_clip_12,Standing behind her desk. 6349,House told Foreman to get a card from CVS,House told Foreman to get a card from the gift shop,House told Foreman to get a card from Walgreens,House told Foreman to get a card from the Walmart,House told Foreman to get a card from Target,1,Where did House tell Foreman to buy a card when talking about the boy?,128388,House M.D.,14.7-23.43,house_s01e08_seg02_clip_00,House told Foreman to get a card from the gift shop 6350,A diploma is hanging on the wall.,A stuffed animal is hanging.,A lamp is hanging,A chandalier is hanging,A poster is hanging.,0,What is hanging on the wall behind House when he is talking to Stacy about nothing changing?,128389,House M.D.,20.68-34.89,house_s02e11_seg02_clip_24,A diploma is hanging on the wall. 6351,Ross had proposed to Rachel,Joey had proposed to Rachel,Rachel was wearing her mother's ring,Chandler had proposed to Rachel,Rachel had found the ring recently,1,How did Rachel get the ring that she was wearing when Ross was asking her about it?,128390,Friends,0-34.14,friends_s09e01_seg02_clip_21,Joey had proposed to Rachel 6352,Would they pay for Ross's food.,Is he handsome.,Did they want to eat together.,Would they date him.,Can they get up.,3,What did Ross and Phoebe talk to the girls sitting at the table about after getting up?,128391,Friends,17.93-26.25,friends_s06e02_seg02_clip_04,Would they date him. 6353,A bandaid,a nonrebreather mask,A splint on her arm,A head wrap,A nasal canula,4,What medical equipment is on the patient when House is talking to her?,128392,House M.D.,6.44-11.96,house_s01e14_seg02_clip_16,A nasal canula 6354,a pistol and a knife.,A cup and a spoon ,A bottle and a bag,A cane and an handcuff,A record pad and a pen,4,What was Costello holding when he walked into the office. ,128393,House M.D.,22.96-30.16,house_s05e04_seg02_clip_12,A record pad and a pen 6355,Chandler is smug and happy.,Chandler cries.,Chandler kisses Monica.,Chandler walks away from Ross.,Chandler proposes to Monica.,0,When Ross confronts Chandler how does he respond after?,128394,Friends,15.69-27.21,friends_s09e17_seg02_clip_02,Chandler is smug and happy. 6356,"Penny, Amy, and Bernadette are at a club","Penny, Amy, and Bernadette are at the bar","Penny, Amy, and Bernadette are outside","Penny, Amy, and Bernadette are inside","Penny, Amy, and Bernadette are at a party",2,"Where is Penny, Amy, and Bernadette at when they are talking?",128395,The Big Bang Theory,0-8.59,s09e16_seg02_clip_11,"Penny, Amy, and Bernadette are outside" 6357,Injecting a patients IV,Eating a salad,Looking at CT scans,Writing on a clear writing board,Tossing paper into a waste basket,3,"What House doing when he is talking with Cameron, Chase and Foreman about a medical case and Cameron say's it may be shigellosis?",128396,House M.D.,54.2-62.47,house_s01e08_seg02_clip_00,Writing on a clear writing board 6358,Her monument that they will have erected.,Her name.,Her wishes for cremation.,Her desire to restore the old city museum.,Her parents and family.,1,"What would Mia's husband honor, according to Mia, during her press release with the reporters after Carolyn's tragic death.",128397,Castle,64.26-66.45,castle_s07e18_seg02_clip_23,Her name. 6359,The lungs.,The brain.,The heart.,The testicle.,The tonsils.,2,Which organ does House say is the key solution to cure the patient after Cameron explains the patient's condition?,128398,House M.D.,87.45-91.17,house_s02e14_seg02_clip_08,The heart. 6360,Stapler,Paper ,Phone,Eyeglass case,Drink,1,What is Cofield holding when he is talking to House?,128399,House M.D.,47.91-54.3,house_s08e11_seg02_clip_03,Paper 6361,Beckett says he was booked in 1998.,Beckett says he was booked last week.,Beckett says it has been years.,Beckett says he has not been booked since he was a teen.,Beckett says he was booked a few hours ago.,2,How long does Beckett say it has been since Vulcan Simmons was booked after Castle puts Simmons' photo on the board?,128400,Castle,3.54-15.92,castle_s03e13_seg02_clip_06,Beckett says it has been years. 6362,Callie wanted to seduce George.,Callie wanted to have sex with George.,Callie wanted to cheer George up.,Callie wanted to make George come with her.,Callie found George's jealousy hot.,4,Why did Callie kiss George when he was laying on a bench?,128401,Grey's Anatomy,35.83-41.27,grey_s03e02_seg02_clip_25,Callie found George's jealousy hot. 6363,Wiped her face.,Rubbed her head.,Propped her chin on her hand. ,Ruffled her hair.,Threw her hands into the air. ,2,What did Whitner do when she said no?,128402,House M.D.,4.1-6.37,house_s03e13_seg02_clip_02,Propped her chin on her hand. 6364,frustrated,sad,sick,angry,happy,4,How did Leonard feel when Alicia moved into the building?,128403,The Big Bang Theory,28.63-38.07,s02e19_seg02_clip_03,happy 6365,He says he will be back after the funeral. ,He says of course. ,He says he will be right back. ,He says he needs to get supplies. ,He says he is not that kind of doctor. ,4,What is Sheldon's answer when Amy asks if Sheldon is going to take care of her?,128404,The Big Bang Theory,30.46-36.42,s06e10_seg02_clip_00,He says he is not that kind of doctor. 6366,washing,soaping,pretending to be with someone,rinsing,scrubbing,2,What was Howard doing when he was in the bath?,128405,The Big Bang Theory,0-12.3,s03e09_seg02_clip_08,pretending to be with someone 6367,rock paper scissors,coin toss,red rover,draw straws,draw a name from the hat,0,What game did Bailey make the doctors play when figuring out who gets Kallie first?,128406,Grey's Anatomy,37.24-44.18,grey_s03e24_seg02_clip_12,rock paper scissors 6368,A cell phone.,A gun.,A file.,A laptop.,A handbag.,1,What was Beckett holding when Jerry Tyson turned around?,128407,Castle,0-6.24,castle_s07e14_seg02_clip_13,A gun. 6369,Green.,Red.,Yellow.,Blue.,White.,3,What color mug does Joey have next to him when Monica sits down next to him?,128408,Friends,2.04-6.46,friends_s09e04_seg02_clip_00,Blue. 6370,He's going to replace Raj,They're the perfect fit.,He's got potential new friends.,He's going to replace Leonard,They're not getting the roommate position.,4,What does Sheldon think of the men he is interviewing after they answer his questions?,128409,The Big Bang Theory,36.95-60.08,s09e04_seg02_clip_06,They're not getting the roommate position. 6371,pinkey,toe,thumb,tounge,foot,2,What part of Samira's body did she tell House she knew how to kill a man with when they were walking down the hallway?,128410,House M.D.,25.68-30.03,house_s04e06_seg02_clip_22,thumb 6372,Trust fund,Inheritance,Gift from a friend,Student loans,Lottery winnings,3,How does Tom say he was able to pay his tuition before he started school?,128411,Castle,33.31-41.41,castle_s04e22_seg02_clip_20,Student loans 6373,Bowman listened to House over the speakerphone and things didn't add up.,Bowman said that a few of House's colleagues describe him as a loose cannon.,Bowman said after time hostages start to root for their captor.,Bowman knew House had lied once already so didn't think he was trustworthy.,Bowman had heard that House had a death wish and might do something stupid.,2,Why did Bowman ask if House was lying when he was talking to Cuddy about the hostage situation?,128412,House M.D.,0-6.58,house_s05e09_seg02_clip_21,Bowman said after time hostages start to root for their captor. 6374,Leslie.,Leonard.,Howard.,Raj.,Sheldon.,4,Who was yelling through a door when Priya and Penny walked by?,128413,The Big Bang Theory,50.14-55.46,s04e23_seg02_clip_13,Sheldon. 6375,On the couch.,On bikes.,On the staircase.,In the lunch room.,In the bathroom.,2,Where is Leonard and Sheldon when they are talking about the university ?,128414,The Big Bang Theory,2.56-7.04,s01e04_seg01_clip_01,On the staircase. 6376,The maid.,The gardener. ,The pool boy.,The pest control guy.,The plumber.,0,Who does Wilson say that his wife fired because he was nice to them when Wilson is talking to House?,128415,House M.D.,26.51-29.77,house_s02e15_seg02_clip_15,The maid. 6377,Sheldon keeps getting distracted because of the toy.,Amy keeps getting distracted because of the toy.,Priya keeps getting distracted because of the toy.,Bernadette keeps getting distracted because of the toy.,Leonard keeps getting distracted because of the toy.,0,Why does Sheldon keep getting distracted when he's typing?,128416,The Big Bang Theory,4.2-16.21,s05e20_seg02_clip_14,Sheldon keeps getting distracted because of the toy. 6378,She spoke with her entertainment attorney. ,She spoke with her husband. ,She spoke with her best friend. ,She spoke with her divorce lawyer. ,She spoke with her accountant. ,0,What did Margo do after Hannah left her house?,128417,Castle,63.88-67.51,castle_s05e14_seg02_clip_07,She spoke with her entertainment attorney. 6379,A crime of ignorance.,A planned crime.,A crime of theft.,A crime of passion.,A crime of obession.,3,What did Castle say the crime isn't when he is talking about the victim on the table?,128418,Castle,0-17.4,castle_s01e08_seg02_clip_03,A crime of passion. 6380,Red.,Blue.,Black.,Orange.,Green.,4,What color was the couch House and Wilson were standing around when the were discussing jail?,128419,House M.D.,8.73-16.98,house_s06e03_seg02_clip_20,Green. 6381,A pen,A file,A cup,A book,A stick,1,What did Foreman had in his Hand when Cuddy addressed him and House about the patient. ,128420,House M.D.,62.12-68.56,house_s06e04_seg02_clip_00,A file 6382,urine tests ,alcohol levels,std screen,blood tests,tox screen,4,What did taub say he was going to run when talking to house in his office about last night?,128421,House M.D.,73.96-79.54,house_s04e16_seg02_clip_01,tox screen 6383,Give a statement,Go get more,Call Zane up,Leave the room,Stop taking videos,3,What does Beckett ask Jake to do after he shows video of Zane to her and Ryan?,128422,Castle,0-13,castle_s08e20_seg02_clip_10,Leave the room 6384,Dr. Smith,Dr. Corning,Dr. Elizabeth Plimpton,Dr. Hamilton,Dr. Jones,2,What visitor did Sheldon mention when he was eating lunch with his friends?,128423,The Big Bang Theory,0-15.26,s03e21_seg01_clip_01,Dr. Elizabeth Plimpton 6385,He went to join a cult again,He did not love her anymore,He needed space from the city,He was having an affair,A guru for answers,4,Why did the father lie to his wife about where he had been after she demands to know?,128424,House M.D.,71.23-92.5,house_s01e13_seg02_clip_21,A guru for answers 6386,because her mother's friend said Dr. Burke has a 20 year old twinkie,because she didn't want to tell her mother she needed to borrow some money,because she didn't want to tell her mother about her career change,because her mother's friend said she knew about young peoples' love lives,because her mother wanted to move in with her,0,Why was Monica nervous when she was in the kitchen with her mother,128425,Friends,11.71-22.51,friends_s02e16_seg02_clip_03,because her mother's friend said Dr. Burke has a 20 year old twinkie 6387,A stand back ,Tylenol ,Motrin ,Hexedrin,A warm rag ,3,What did Monica give Phoebe after she said her head hurt?,128426,Friends,44.86-55.19,friends_s07e16_seg02_clip_04,Hexedrin 6388,A patient,Chase,Foreman,Wilson,No one,3,Who is House talking to when he mentions their wife?,128427,House M.D.,3.68-10.12,house_s02e14_seg02_clip_19,Wilson 6389,When he leaves the room,When he explains they both are correct,When he goes in the kitchen,When he goes to the door,When he goes to the desk,1,When does Leonard finally stand up when they are in the apartment,128428,The Big Bang Theory,54.31-61.72,s02e02_seg02_clip_15,When he explains they both are correct 6390,How adorable Alexis looked sleeping.,How dark it was in the room at night.,How many stuffed toys Alexis slept with.,How loudly Alexis snored.,How much Alexis drooled while sleeping.,0,What did Castle say was ridiculous when Alexis was sleeping?,128429,Castle,28.03-36.76,castle_s01e04_seg02_clip_09,How adorable Alexis looked sleeping. 6391,They yell at the waiter,They say nothing until he walks away,Rachel starts crying ,They leave the room,They order food,1,How do Joey and Rachel respond when the waiter tries to tell them the specials? ,128430,Friends,7.54-13.93,friends_s08e16_seg02_clip_16,They say nothing until he walks away 6392,Grey,Black,Blue,Green,Red,0,"What color is the shirt that Cuddy is wearing when she say's ""A theory that ties your case up...""?",128431,House M.D.,0-9.35,house_s03e01_seg02_clip_23,Grey 6393,Chandler found a copy of Playboy under the mattress. ,Chandler found a high-speed chase on the television. ,There was a political debate on the radio that interested Chandler. ,Someone was making love in the room next door to Chandler and Monica. ,Chandler heard a preacher down on the street below. ,1,What drew Chandler's attention immediately after Monica went to the bathroom? ,128432,Friends,6.3-17.41,friends_s05e05_seg02_clip_04,Chandler found a high-speed chase on the television. 6394,Raj says his first tattoo will be a dog. ,Raj says his first tattoo will be a heart. ,Raj says his first tattoo will be a flower. ,Raj says his first tattoo will be a butterfly. ,Raj says his first tattoo will be a hummingbird or a dolphin. ,4,What does Raj say his first tattoo will be when he is talking with the guys?,128433,The Big Bang Theory,23.51-27.68,s05e09_seg02_clip_05,Raj says his first tattoo will be a hummingbird or a dolphin. 6395,Cristina tells Dr. Grey that Dr. Burke would like to do a biopsy.,Cristina tells Dr. Grey that Dr. Burke would like to do an EKG.,Cristina tells Dr. Grey that Dr. Burke would like to do a radio-ablation.,Cristina tells Dr. Grey that Dr. Burke would like to do an ultrasound.,"Cristina tells Dr. Grey that Dr. Burke would like to do an MRI,",2,What procedure does Cristina tell Dr. Grey that Dr. Burke would like to have done after she walks into the room?,128434,Grey's Anatomy,26.27-35.49,grey_s03e14_seg02_clip_14,Cristina tells Dr. Grey that Dr. Burke would like to do a radio-ablation. 6396,new boots,a brown hat,a red cowboy hat, a neck tie,a turtle neck shirt,2,What did Howard buy when he went to Texas?,128435,The Big Bang Theory,47.27-63.02,s03e01_seg02_clip_14,a red cowboy hat 6397,peanut brittle bottle and a superhero action figure.,his bed,his boot,his sleeping bag,his box in his room,0,Where did Sheldon hide his money when he needed to?,128436,The Big Bang Theory,8.96-22.09,s02e14_seg02_clip_02,peanut brittle bottle and a superhero action figure. 6398,Raj,Sheldon,Bernadette,Howard,Penny,0,Who was wearing an apron when they were in the kitchen?,128437,The Big Bang Theory,49.9-53.67,s07e09_seg02_clip_03,Raj 6399,Frank Sr. was referring to Ursula and Phoebe,Frank Sr. was referring to Rachel and Monica,Frank Sr. was referring to Rachel and Susan,Frank Sr. was referring to Rachel and Carol,Frank Sr. was referring to Emily and Rachel,0,Who was Frank Sr. referring to when he asked what happened to the girls?,128438,Friends,16.75-29.15,friends_s05e13_seg02_clip_17,Frank Sr. was referring to Ursula and Phoebe 6400,He was using a brush for his hair.,He was using his cell phone.,He was using a cane. ,He was using crutches.,He was using a camera.,3,What wars Barney using when he walked through the door.,128439,How I Met You Mother,7.68-16.84,met_s05e05_seg02_clip_16,He was using crutches. 6401,a couch,a white curtain,a picture,a door,a pool,1,What is behind Weldon when he says he doesn't trust anyone?,128440,Castle,34.72-38.37,castle_s04e12_seg02_clip_20,a white curtain 6402,The lights get turned off,Someone knocks on the door,There is a strange odor in the room,A mouse ran across the floor,Foreman notice a liquid seeping under the door,4,Why does Foreman stop talking abruptly when referring to Taub's letter of recommendation?,128441,House M.D.,19.41-41.72,house_s08e21_seg02_clip_09,Foreman notice a liquid seeping under the door 6403,The color of the dress the woman wore was purple,The color of the dress the woman wore was blue,The color of the dress the woman wore was red,The color of the dress the woman wore was yellow,The color of the dress the woman wore was green,2,What color dress does the woman wear before she walked away from Barney and Ted,128442,How I Met You Mother,15.73-23.29,met_s03e10_seg02_clip_08,The color of the dress the woman wore was red 6404,Ginger had a missing leg,Ginger had too many cats,Ginger was very tall,Ginger was a mean person,Ginger was very short,0,What was the unique feature about Ginger when Monica was asking about the date?,128443,Friends,10.62-48.21,friends_s03e14_seg02_clip_13,Ginger had a missing leg 6405,Stop it!,"I don't know, who?",What are you looking at?,I'm warning you!,Shut it.,4,"What does Izzie tell Alex after he says, ""Look who found some clothes.""",128444,Grey's Anatomy,24.33-28.38,grey_s03e18_seg02_clip_01,Shut it. 6406,"Sheldon, Amy, Penny, and Leonard are at the beach.","Sheldon, Amy, Penny, and Leonard are at a school.","Sheldon, Amy, Penny, and Leonard are in a jacuzzi.","Sheldon, Amy, Penny, and Leonard are at a spa.","Sheldon, Amy, Penny, and Leonard are in the lab.",3,"Where are Sheldon, Amy, Penny, and Leonard when they have their conversation?",128445,The Big Bang Theory,13.67-32.62,s10e13_seg02_clip_11,"Sheldon, Amy, Penny, and Leonard are at a spa." 6407,Sheldon was implying that he hates Penny.,Sheldon was implying that Leonard made a wrong decision of marrying Penny.,Sheldon was implying that Amy wanted to marry Leonard.,Sheldon was implying that he wanted to marry Leonard.,Sheldon was implying that Penny marrying Leonard was a compromise.,4,"Why did Leonard get offended after Sheldon said Penny, the one who married Leonard, was in favor of compromise? ",128446,The Big Bang Theory,26.96-42.51,s10e05_seg01_clip_01,Sheldon was implying that Penny marrying Leonard was a compromise. 6408,gives it back to the man,smashes it,throws it out the window,hangs up,nothing,0,What does Castle do when he's talking on the phone with Beckett?,128447,Castle,50.95-61.31,castle_s05e08_seg02_clip_24,gives it back to the man 6409,Roz states Yonatan thinks how Roz lives now is more important than how she lived in the past.,Roz tells them Yonatan is much less serious about his religion since he met her.,Roz states Yonatan has her dress in sack cloth and ashes each day to atone for her past.,"Roz says Yonatan knows nothing of her past, not even in a general way.",Roz says Yonatan has her tell him details of his past each day as an exercise in catharsis. ,0,How does Roz say Yonatan reconciles Roz's past with their rigorous religious practices when she explains her personal spiritual transformation to Thirteen and Kutner?,128448,House M.D.,0-13.8,house_s04e12_seg02_clip_03,Roz states Yonatan thinks how Roz lives now is more important than how she lived in the past. 6410,Because Monica had just come home.,Her mother came out of the back room unexpectedly.,He thought Rachel was pulling a prank on him.,He saw a bird fly into the window.,A mouse ran across his foot.,1,Why did Ross get startled when he was talking Rachel about her mother.,128449,Friends,22.72-27.39,friends_s08e20_seg02_clip_14,Her mother came out of the back room unexpectedly. 6411,Charlie grabs a stun gun.,Charlie grabs her cell phone.,Charlie grabs the alarm clock.,Charlie grabs her purse.,Charlie grabs a picture frame.,4,What does Charlie grab from the nightstand after Ross says he loves her?,128450,Friends,26.9-31.8,friends_s09e23-24_seg02_clip_20,Charlie grabs a picture frame. 6412,Leonard lay on the floor.,Leonard walked to the door.,Leonard danced on the bed.,Leonard called for a cab.,Leonard nodded his head in acknowledgement.,4,What did Leonard do after Penny said her shields were up?,128451,The Big Bang Theory,14.51-17.41,s04e13_seg02_clip_11,Leonard nodded his head in acknowledgement. 6413,Esposito is going to buy pizza.,Esposito is going to investigate about this case.,Esposito is going to find the true.,Esposito is going to find the murderer.,Esposito is going to find a Mexican restaurant.,1,What is going to do Esposito after talking about the doctor that buy coffee on the opposite direction of her work?,128452,Castle,14.96-19.37,castle_s03e05_seg02_clip_03,Esposito is going to investigate about this case. 6414,Monica walked in.,Phoebe walked in.,Ross walked in.,Chandler walked in.,Joey walked in.,4,Who walked in when Rachel was talking to the woman in the white coat?,128453,Friends,0-14.63,friends_s08e10_seg02_clip_09,Joey walked in. 6415,grabbed a bottle of water,set her purse down,took her phone out,showed Rachel a check,jumped up and down with joy,1,What did Monica do after she walked in the door?,128454,Friends,12.31-21.01,friends_s02e05_seg02_clip_03,set her purse down 6416,The victim said his name on the security footage,The victim's name was written in blood,The victim was famous and Esposito was a big fan,Someone told Esposito who the victim was,Esposito didn't care about the victim's name so he gave him a generic I.D.,2,How did Esposito say he I.D.ed the murder victim without any I.D. or wallet when approaching the crime scene with Beckett and Castle?,128455,Castle,6.25-23.2,castle_s02e15_seg02_clip_01,The victim was famous and Esposito was a big fan 6417,Hair loss,Sores,rash,bleeding,nothing,1,What did chase say showed up on the patient after giving them warfarin?,128456,House M.D.,82.51-89.2,house_s01e16_seg02_clip_22,Sores 6418,"He came late, after everyone had left.",He came from across the hospital.,He came in a taxi from the airport.,He came from the boardroom where the meeting was held.,"He didn't actually come, but called on a phone.",3,Where did the Chief come from after the boardmembers left the meeting?,128457,Grey's Anatomy,13.65-22.24,grey_s03e19_seg02_clip_23,He came from the boardroom where the meeting was held. 6419,to buy ice,to keep Marcel away from her,to be nice to Palo,to pick up Palo from the airport,to leave Marcel at home,1,What does Monica ask Ross to do when he enters the room?,128458,Friends,0-8.64,friends_s01e10_seg02_clip_14,to keep Marcel away from her 6420,Castle hands her Chinese food.,Castle hands her tissues.,Castle hands her a phone.,Castle hands her a ring.,Castle hands her medicine.,1,What does Castle hand to Scarlett after they both sit down?,128459,Castle,49.2-53.26,castle_s02e09_seg02_clip_19,Castle hands her tissues. 6421,More shots. ,Five beers. ,The waitress's number. ,Nothing. ,a Seven-and-Seven. ,4,What does Jerry order for himself after he starts ordering for the table? ,128460,How I Met You Mother,36.41-47.11,met_s06e21_seg02_clip_04,a Seven-and-Seven. 6422,Joey,Chandler,Phoebe,Gunther,His dad,3,Who does Ross compare himself to after telling his story,128461,Friends,36.06-51.96,friends_s10e17-18_seg02_clip_15,Gunther 6423,cobwebs,spray paint,little flags,pieces of paper,sticky notes,0,What is on the walls and door when Phoebe enters the hallway?,128462,Friends,30.01-32.41,friends_s09e05_seg02_clip_02,cobwebs 6424,tired,happy,angry,skeptical,bored,3,How did Leonard feel when Sheldon tried to coax him home?,128463,The Big Bang Theory,13.2-36.91,s06e15_seg02_clip_08,skeptical 6425,Looking at a clipboard,Walking down the hallway,Looking at her phone,Pacing in her office,Writing something in a notebook,2,What is Cuddy doing when Foreman asks her for a raise?,128464,House M.D.,20.42-29.04,house_s06e10_seg02_clip_05,Looking at her phone 6426,Sarah is mad at her friend for saying that 6 months was too short of a time to know somebody.,Sarah is mad at Sam.,Sarah is thinking about how long she has known Sam.,Sarah realizes the ring is a fake and is worthless.,Sarah is happy that she is engaged to Sam.,2,Why does Sarah look at her ring after she mentions visiting the morgue?,128465,Castle,9.99-30.42,castle_s02e10_seg02_clip_05,Sarah is thinking about how long she has known Sam. 6427,Marcus is Foreman's brother,Marcus is Foreman's cousin,Marcus is Foreman's uncle,Marcus is Foreman's nephew,Marcus is not related to Foreman,0,How is Marcus related to Foreman after Foreman tells him he is not giving him another chance?,128466,House M.D.,23.23-29.25,house_s06e12_seg02_clip_10,Marcus is Foreman's brother 6428,A piece of paper,A picture,A letter,A card ,A sticker,1,What did Hunt take off the wall when he was talking to Beckett?,128467,Castle,58.49-64.67,castle_s04e20_seg02_clip_25,A picture 6429,Rachel,Phoebe,Joey,The Doctor,Mike,2,Who leaves the room after Ross?,128468,Friends,35.4-51.93,friends_s09e01_seg02_clip_04,Joey 6430,The maid,Kushner,Yonatan,Roz,House,4,Who surprises Amber in her own home after she unlocks her door and walks to the mirror?,128469,House M.D.,41.87-57.52,house_s04e12_seg02_clip_03,House 6431,To come to her,To call her back,To get a a trace on the phone she was calling with,To call other staff members,To put her on loud speaker,2,What did Beckett ask Javi to do when she called him?,128470,Castle,30.62-42.26,castle_s06e17_seg02_clip_10,To get a a trace on the phone she was calling with 6432,Zoo,Candy store,Home,School,Gymboree,4,What place is Ross taking his son after Central Perk,128471,Friends,41.42-60.03,friends_s03e12_seg02_clip_18,Gymboree 6433,Sat down.,Opened the fridge.,Opened the cookie jar.,Got a drink.,Cooked some eggs.,2,What did Phoebe do after walking into the kitchen?,128472,Friends,29.2-34.65,friends_s03e25_seg02_clip_04,Opened the cookie jar. 6434,In the floor,In her legs,In the desk,In Castle's legs,In Vasiliy's hands,2,Where did Beckett leave the papers when she received the call?,128473,Castle,50.17-53.69,castle_s08e11_seg02_clip_09,In the desk 6435,A telescope,Binoculars,A beer,A set of keys,A stethoscope,1,What is Ross holding when he and Joey were locked up on the roof?,128474,Friends,10.66-15.72,friends_s07e12_seg02_clip_01,Binoculars 6436,Annette says Harvey likes to be loved,Annette says Harvey likes to be strangled or smothered,Annette says Harvey likes to be hugged,Annette says Harvey likes to be warm,Annette says Harvey likes to be kissed,1,What did Arnette say Harvey likes when she is sitting next to House?,128475,House M.D.,0-8.56,house_s01e20_seg02_clip_07,Annette says Harvey likes to be strangled or smothered 6437,How?,Why?,Why should it matter to me?,What's the point?,And if I don't?,0,What did the patient (Matty) ask after House mentioned he could save someone?,128476,House M.D.,50.85-58.11,house_s03e21_seg02_clip_21,How? 6438,She hugs Chandler. ,She puts her purse down. ,She puts her hair behind her ear. ,She kisses Chandler. ,She bites her nails. ,2,What does Monica do when Chandler is holding a bird figurine?,128477,Friends,6.2-8.99,friends_s08e10_seg02_clip_06,She puts her hair behind her ear. 6439,A change of clothes.,Tickets to the opera.,Coffee cups.,Brand new burner cell phones.,Tissues and sensitivity training.,2,What does Castle hand Serena and Beckett after they talk about him?,128478,Castle,27.27-33.38,castle_s04e05_seg02_clip_26,Coffee cups. 6440,Sheldon went behind Penny.,Sheldon went home.,Sheldon stayed in his seat.,Sheldon went to the bathroom.,Sheldon went to the altar.,4,Where did Sheldon go after he made an announcement that he wanted to say something to Leonard?,128479,The Big Bang Theory,12.96-23.11,s10e01_seg02_clip_16,Sheldon went to the altar. 6441,He jumped up.,He said no.,He said perhaps.,He laughed.,He took and held a deep breathe.,4,What did House do after he stopped reading the magazine?,128480,House M.D.,25.66-35.56,house_s02e13_seg02_clip_08,He took and held a deep breathe. 6442,He said if he pushed any harder he was going to give birth to his colon.,He said he was pushing as hard as he could.,He told Leonard to push harder.,He said they should get help.,He said he quit. ,0,What did Sheldon say after Leonard told him to push?,128481,The Big Bang Theory,21.14-28.19,s01e14_seg02_clip_01,He said if he pushed any harder he was going to give birth to his colon. 6443,he want a ride to the comic store,he is begging to meet Hawking,he needs to borrow money,he wants Howards limited edition Spock action figure,he wants to drive the mars rover,1,Why is Sheldon pleading with Howard when they are walking down the hall?,128482,The Big Bang Theory,5.49-9.46,s05e21_seg02_clip_00,he is begging to meet Hawking 6444,Beckett got a bag,Beckett got breakfast,Beckett got cup of coffee,Beckett wear a robe,Beckett pushed the board into the closet ,4,What did Beckett do before Castle open the door? ,128483,Castle,27.77-36.42,castle_s03e22_seg02_clip_16,Beckett pushed the board into the closet 6445,There are mice everywhere.,He realizes he got a tattoo.,He finds a pineapple.,It's a complete mess.,He finds a roach.,1,Why does Ted scream after running into his room?,128484,How I Met You Mother,26.6-44.53,met_s03e01_seg02_clip_12,He realizes he got a tattoo. 6446,He types on a computer.,He takes a sip of water.,He puts his hand to his face.,He looks at his watch.,He rips up a piece of paper. ,2,What does Chase do in the background when Cameron and Foreman are talking?,128485,House M.D.,71.27-74.12,house_s02e17_seg02_clip_16,He puts his hand to his face. 6447,A microphone. ,A pool stick. ,A roll of quarters. ,A paddle. ,A tennis racket. ,3,What is Mike holding when he is in a game room with Phoebe?,128486,Friends,7.54-9.36,friends_s09e23-24_seg02_clip_47,A paddle. 6448,"Penny, Bernadette, and Raj are taking a road trip together.","Penny, Bernadette, and Raj are also at the movie theater.","Penny, Bernadette, and Raj are in San Bernardino. ","Penny, Bernadette, and Raj are at Sheldon's apartment.","Penny, Bernadette, and Raj are in a workshop lab.",4,"Where are Penny, Bernadette, and Raj when Howard and Leonard are at the movie theater?",128487,The Big Bang Theory,25.86-33.37,s09e19_seg02_clip_08,"Penny, Bernadette, and Raj are in a workshop lab." 6449,He is now a patient at the Psychiatric ward.,He is Rachel's father's best friend.,He is Monica's ex-boyfriend.,He is Phoebe's stepbrother.,He is Rachel's roommate's brother's ex-wife's obstetrician.,4,Who did the doctor say his patient was after he introduced himself?,128488,Friends,2.66-7.97,friends_s01e23_seg02_clip_01,He is Rachel's roommate's brother's ex-wife's obstetrician. 6450,American baby.,Parenting.,Baby and Me.,The Whole 9 Months.,Fit Pregnancy.,4,What magazine is Rachel holding when here and Joey are at the coffee shop talking about where to take his date?,128489,Friends,0-6.82,friends_s08e12_seg02_clip_00,Fit Pregnancy. 6451,Raj tells Sheldon the ingredients are extracted from the urine of cows.,Raj tells Sheldon the ingredients are extracted from beets.,Raj tells Sheldon the ingredients are extracted from leaves.,Raj tells Sheldon the ingredients are extracted from dogs.,Raj tells Sheldon the ingredients are extracted from animals.,0,What does Raj tell Sheldon the ingredients are extracted from when they are talking?,128490,The Big Bang Theory,0-40.92,s04e22_seg02_clip_09,Raj tells Sheldon the ingredients are extracted from the urine of cows. 6452,Poker,21,Goldfish,Solidarity ,Uno,0,What game will the plan involve playing when going undercover?,128491,Castle,78.4-85.53,castle_s02e01_seg02_clip_16,Poker 6453,Cristina is asking Meredith to travel to Orlando.,Cristina is asking Meredith to be her guardian.,Cristina is asking Meredith to be her boss.,Cristina is asking Meredith to drink wine.,Cristina is asking Meredith to be her contact person.,4,What asked Cristina to Meredith after he sat?,128492,Grey's Anatomy,64.76-67.66,grey_s02e01_seg02_clip_23,Cristina is asking Meredith to be her contact person. 6454,he had big money on the dog show,he has season tickets,he is a professional groomer,he is a dog show judge,dog shows are his life,4,Why did Ryan say David Hernand was so upset after telling Castle about the vein in Hernand's head?,128493,Castle,6.8-23.13,castle_s04e13_seg02_clip_02,dog shows are his life 6455,eloquently,in a nutshell,poorly,extensively,in simple terms,0,How does Sheldon feel he explains the anthropic principle when he defines it for Leonard?,128494,The Big Bang Theory,35.67-53.36,s06e01_seg02_clip_01,eloquently 6456,Two,One,Three,Zero,Four,2,How many items are circled on the X-ray when House is performing surgery on himself?,128495,House M.D.,104.07-105.79,house_s07e22_seg02_clip_08,Three 6457,Chicago,Seattle,New York City,Boston,Cleveland,0,What city did Park say she did not want to go to when she was talking to Foreman?,128496,House M.D.,58.26-68.27,house_s08e02_seg02_clip_24,Chicago 6458,Threw a drink in his face.,Slapped his arm.,Grabbed his leg.,Punched his face.,Broke a plate on his head.,1,What did Ted's mother do to Ted's father after she said they were going to have a serious talk when they get home?,128497,How I Met You Mother,49.94-56.35,met_s02e03_seg02_clip_14,Slapped his arm. 6459,grab Phoebe by the hair,close Phoebe's guitar case,grab Phoebe by the arm,grab Phoebe's guitar,grab Phoebe by the neck,2,What does Monica try to do with Phoebe before going back into the restaurant?,128498,Friends,16.48-18.64,friends_s09e19_seg02_clip_17,grab Phoebe by the arm 6460,Get some food.,Go off stage.,Go away.,Go to the bar.,Go on stage.,4,What does Chandler ask Ross to do when he is at the party?,128499,Friends,0-6.27,friends_s08e02_seg02_clip_12,Go on stage. 6461,on the phone with Lily,sitting in a chair at the end of the booth,on the phone with Ted,sitting on the couch,sitting at the bar,1,Where is Jerry when Lily asks about Barney returning his calls?,128500,How I Met You Mother,0-4.56,met_s06e19_seg02_clip_06,sitting in a chair at the end of the booth 6462,She breaks up with him. ,She thinks he is disgusting. ,He makes her sick. ,He makes her happy that she is single. ,She thinks he is adorable. ,4,What does Emily think about Raj when they are on a date?,128501,The Big Bang Theory,17.41-25.21,s07e19_seg02_clip_15,She thinks he is adorable. 6463,Three hours.,Two hours.,Two days.,One half of an hour.,About an hour or so.,4,How long did Calvin say he had a cough when Cameron asked?,128502,House M.D.,20.42-28.58,house_s02e07_seg02_clip_06,About an hour or so. 6464,Cuddy looks at a clock on the wall.,Cuddy looks at a patient's face.,Cuddy looks at her watch.,Cuddy looks at a steak sandwich.,Cuddy looks at a piece of pie. ,2,What does Cuddy look at after she talks to Chase?,128503,House M.D.,28.53-36.81,house_s06e13_seg02_clip_10,Cuddy looks at her watch. 6465,Monica and Rachel thought that Phoebe was going to make a mess in the living room.,Monica and Rachel thought that Phoebe was hurt.,Monica and Rachel thought that they had upset Phoebe.,Monica and Rachel thought that Phoebe was going into labor.,Monica and Rachel thought that Phoebe was very delicate.,3,Why did Monica and Rachel appear to be alarmed when Phoebe pretended to be in pain?,128504,Friends,19.15-31.33,friends_s04e22_seg02_clip_18,Monica and Rachel thought that Phoebe was going into labor. 6466,Owen,George,Derek,Alex,Richard,3,Who does Izzie snap at after he walks into the room and insults her?,128505,Grey's Anatomy,23.88-27.48,grey_s03e18_seg02_clip_01,Alex 6467,Wilson ,Taub ,House's Mom ,Thirteen ,Foreman ,3,Who walks in on House when he has his pants down? ,128506,House M.D.,88.39-94.03,house_s07e23_seg02_clip_21,Thirteen 6468,He puts his arm around Lanie.,He grabs his bag and leaves the room.,He gives Lanie a notebook.,He throws a pencil at Castle.,He starts reading a book.,1,What does Scott do after he says works for me?,128507,Castle,23.73-33.76,castle_s08e03_seg02_clip_09,He grabs his bag and leaves the room. 6469,"Phoebe told Monica, ""There you go. That's the spirit.""",Phoebe told Monica that she needs to figure things out.,Phoebe told Monica that she is annoying.,Phoebe told Monica that she should learn to save money.,Phoebe told Monica that she has to leave. ,0,"What did Phoebe say after Monica said, ""I don't know?""",128508,Friends,0-4.2,friends_s04e06_seg02_clip_02,"Phoebe told Monica, ""There you go. That's the spirit.""" 6470,It started raining.,Joey said something stupid.,The car wouldn't start,He feels like he is getting old.,His ex-girlfriend walked by.,3,Why is Ross upset when he and Joey are in the car?,128509,Friends,27.22-31.02,friends_s07e14_seg02_clip_20,He feels like he is getting old. 6471,Rachel wants to wipe off her face before she goes to the hospital,Rachel wants to put makeup on,Rachel wants to blow her nose,Rachel is crying and wants to dry her tears,Rachel wants to wipe off the table,0,Why does Rachel pick up the tissue after Ross leaves the room?,128510,Friends,4.29-15.19,friends_s03e21_seg02_clip_15,Rachel wants to wipe off her face before she goes to the hospital 6472,Keith.,Beckett.,Castle.,Tommy Lee.,Gates.,4,Who approaches Esposito because the action is in the main room when he is reviewing the video evidence?,128511,Castle,31.69-45.77,castle_s05e07_seg02_clip_15,Gates. 6473,green,blue,yellow ,pink ,purple,1,what color is houses shirt when he is talking to adams,128512,House M.D.,5.34-15.13,house_s08e17_seg02_clip_03,blue 6474,Taub believes Brant has cancer.,Taub believes Brant has malaria.,Taub believes Brant has emphysema.,Taub believes Brant has acidosis.,Taub believes Brant has Alzheimer's.,1,What illness does Taub believe Brant has after meeting with his colleagues? ,128513,House M.D.,4.41-31.37,house_s08e15_seg02_clip_20,Taub believes Brant has malaria. 6475,Orange,Red,Black,Purple,Yellow,3,What color was the pillow beside Joey when he was sitting on the couch? ,128514,Friends,0-3,friends_s05e14_seg02_clip_13,Purple 6476,Penny.,His muscle.,A picture.,A letter.,A magazine.,4,What is Zack pointing to when he tells Leonard to check it out?,128515,The Big Bang Theory,51-55.31,s04e11_seg01_clip_00,A magazine. 6477,He bought twelve bentleys.,He bought a yacht.,He bought a mansion.,Hixton purchased three acres on the moon and a mausoleum.,He bought everyone a house.,3,What did the Hixton buy with the money from the lottery ticket when he cashed it in?,128516,Castle,23.05-34.11,castle_s03e14_seg02_clip_23,Hixton purchased three acres on the moon and a mausoleum. 6478,brown,red,orange,Green,grey,3,"What color is Ted's shirt when he say's ""Lily, didn't we just go through...""?",128517,How I Met You Mother,0-9.92,met_s03e15_seg02_clip_07,Green 6479,crumple it up and throw it in wilsons home,put it back in his pocket,put it in wilsons shirt pocket,give it to the neighbor,place it on the floor,0,what does house do with the money after wilson doesn't take it from house?,128518,House M.D.,43.51-51.02,house_s05e02_seg02_clip_18,crumple it up and throw it in wilsons home 6480,Sheldon hates the way Amy's Aunt Flora smells,"Sheldon agreed to attend the party and therefore cannot join Leonard, Howard, and Raj for the Star Wars Marathon",Sheldon's birthday is overshadowed by Aunt Flora's birthday,Sheldon forgot to buy Amy's Aunt Flora a birthday gift,Sheldon does not want to take a plane to visit Amy's Aunt Flora for her birthday,1,Why does Sheldon get upset after Amy mentions her Aunt Flora's 93rd birthday party?,128519,The Big Bang Theory,21.38-36.59,s05e19_seg01_clip_01,"Sheldon agreed to attend the party and therefore cannot join Leonard, Howard, and Raj for the Star Wars Marathon" 6481,Espisito has on A pin,Espisito has on A flower,Espisito has on A spot,Espisito has on A lizard,Espisito has on A parrot,0,What does Espisito have on his suit jacket when he talks to Montgomery and shows him a picture?,128520,Castle,4.47-20.11,castle_s02e09_seg02_clip_04,Espisito has on A pin 6482,Joey,Ross,Chandler,Gunther,Joshua,0,Who does Rachael have a little thing for when she was talking to Phoebe?,128521,Friends,0-13.38,friends_s09e22_seg02_clip_07,Joey 6483,Leonard is holding a thermos. ,Leonard is holding a glass.,Leonard is holding a sculpture.,Leonard is holding a mug.,Leonard is holding a brick.,0,What is Leonard holding when he is walking down the stairs with Sheldon?,128522,The Big Bang Theory,0-4.76,s07e02_seg02_clip_14,Leonard is holding a thermos. 6484,Monica says that it smells bad.,Monica says she hates it.,Monica says she wants to live there.,Monica says she loves it.,Monica says that it's beautiful. ,3,What does Monica say about the house when the realtor asks her what she thinks of it?,128523,Friends,0-14.85,friends_s10e15_seg02_clip_07,Monica says she loves it. 6485,Sheldon vacuumed the room,Sheldon ran out of the room,Sheldon was sleeping and did nothing,Sheldon sprayed disinfectant spray,Sheldon switched sides of the bed,4,What did Sheldon do before Amy came out of the bathroom?,128524,The Big Bang Theory,57.98-63.34,s10e04_seg02_clip_10,Sheldon switched sides of the bed 6486,Raj could take the old chairs to his house,Raj could take the TARDIS to his house,Raj could take Howard's mother's dresser,Raj could take all the velvet wallpaper,Raj could take the giant picture of Howard,1,What did Bernadette tell Raj he could take to his house after they stopped playing ping pong,128525,The Big Bang Theory,11-23.22,s08e19_seg02_clip_11,Raj could take the TARDIS to his house 6487,He said he didn't care.,He said he couldn't miss it.,He asked if Leonard was sure.,He asked Raj if Leonard was lying.,He said he was to nervous to go. ,0,How did Sheldon react after Leonard told him Brent Spiner was coming to the party?,128526,The Big Bang Theory,0-6.99,s05e05_seg02_clip_12,He said he didn't care. 6488,talking to Robin,sleeping,working on his laptop,using his phone,undressing ,3,What was Barney doing when he was sitting on the arm of the couch?,128527,How I Met You Mother,4.75-6.23,met_s03e08_seg02_clip_01,using his phone 6489,A cousin.,Tommy.,A roommate.,A colleague.,Brian.,4,Who said Miss DiNovi killed her son after Tommy called her?,128528,Castle,55.12-59.18,castle_s03e21_seg02_clip_19,Brian. 6490,Rachel picks up a book.,Rachel picks up a box.,Rachel picks up a blanket.,Rachel picks up her coat.,Rachel picks up her purse.,3,What does Rachel pick up from the chair before walking out of the room?,128529,Friends,2.6-4.88,friends_s05e17_seg02_clip_17,Rachel picks up her coat. 6491,Rachel gets scared and leaves the room,Rachel starts laughing,Rachel starts singing,Rachel gets very angry,Rachel drops some drinks,0,What does Rachel do after she sees Ross and the other man next to him on the couch?,128530,Friends,18.16-24.76,friends_s02e10_seg02_clip_17,Rachel gets scared and leaves the room 6492,An orange.,An apple.,A banana.,A cup.,A plate.,0,What did Monica pick up from the table after she described the food on the table?,128531,Friends,17.23-21.85,friends_s10e16_seg02_clip_04,An orange. 6493,If he's ever been in prison,If he's ever killed a patient,If he's ever had a pet dog,If he's ever been in love,If he's ever had sex on a plane,3,What does Gabe want to know about House after House get's his answer?,128532,House M.D.,32.34-39.17,house_s03e07_seg02_clip_11,If he's ever been in love 6494,Sharing a room.,Sharing a car.,Sharing a beverage.,Sharing a bathroom.,Sharing their phones.,0,What did Amy say her and Sheldon discussed after Penny asked her a question?,128533,The Big Bang Theory,3.35-11.26,s04e13_seg02_clip_02,Sharing a room. 6495,a counter,a table,a chair,a wall,a sofa,2,What is Ross leaning on with his left hand when Chandler is walking towards him?,128534,Friends,48.21-51.87,friends_s09e11_seg02_clip_11,a chair 6496,break the window,open the door,run down the hall,fall on the floor,drop his coffee cup,1,What does Kutner do right before saying he thinks there is something wrong with House?,128535,House M.D.,72.46-80.66,house_s05e16_seg02_clip_02,open the door 6497,Noon,2 Centemeters,30 Kilograms,100 pounds,2.5 pounds,4,How much weight did Rachel notice Monica had lost when reuniting?,128536,Friends,11.03-17.96,friends_s06e15-16_seg02_clip_04,2.5 pounds 6498,Horror movies. ,Comedies. ,Romantic movies. ,Dramas. ,Medical dramas. ,0,What does Emily say turns her on when she is with Raj?,128537,The Big Bang Theory,31.57-41.2,s07e21_seg02_clip_15,Horror movies. 6499,Angela,Mikhail,Tom,Dr. Haroun,Walter,2,Wom does Beckett say the team thought would be a treat to the mission when landing on a hostile planet? ,128538,Castle,72.01-83.87,castle_s07e16_seg02_clip_24,Tom 6500,Chase,Wilson,Foreman,House,Kutner,3,"Who takes a sip from his drink after he says ""I'm fine?""",128539,House M.D.,69.14-76.23,house_s07e16_seg02_clip_12,House 6501,White.,Pink.,Blue.,Black.,Red.,4,What color is the tie that Chase is wearing when talking to Foreman about the patient?,128540,House M.D.,45.91-59.87,house_s02e19_seg02_clip_15,Red. 6502,The sheets.,The guard rail.,The needle.,The oxygen mask.,Esmo's shoulder.,1,What was Meredith touching when she talked about surgery with Esmo?,128541,Grey's Anatomy,56.79-63.15,grey_s02e08_seg02_clip_18,The guard rail. 6503,middle aged guy in a Santa suit,younger biker type,older business type,younger Mafia looking guy,"older, tough-looking dude",4,How did Tim describe the man who had been knocking on Edmund's door when they saw him last week?,128542,Castle,0-83.27,castle_s05e09_seg02_clip_04,"older, tough-looking dude" 6504,Easley admitted to cutting the brake lines on Hixton's Maserati.,Easley admitted to killing Hixton during a fit of rage.,Easley admitted to stealing 2 of Hixton's First Editions.,Easley admitted to putting arsenic in Hixton's favorite food.,Easley admitted to cracking the vault and slowly pilfering Hixton's gold boullion.,2,What did Easley admit to doing after Beckett interrupted him and said his name?,128543,Castle,34.82-39.66,castle_s03e14_seg02_clip_21,Easley admitted to stealing 2 of Hixton's First Editions. 6505,She sat down on the couch and pouted.,She walks past him.,She holds her fingers up and says not done.,She slapped him.,She told him she was sorry too.,2,How does Penny react after Leonard says sorry?,128544,The Big Bang Theory,29.42-31.22,s01e14_seg02_clip_06,She holds her fingers up and says not done. 6506,He walkout the door,He used the computer,He sat down at the desk,He gave Beckett a file,He poured cup of coffee,4,What did Ryan do after Mark Fallon walkout the door ?,128545,Castle,58.31-67.01,castle_s03e17_seg02_clip_18,He poured cup of coffee 6507,A dead body.,A baby.,A sick person.,A pool of vomit.,A new Television.,0,"What was the gang looking down at when they all said ""Oh""?",128546,How I Met You Mother,0-4.53,met_s02e14_seg02_clip_02,A dead body. 6508,A bowl of fruit.,A bowl of pretzels.,A bowl of popcorn.,A plate with half a sandwich,A plate of cookies.,2,What is sitting next to Leonard's water bottle when they are playing a board game?,128547,The Big Bang Theory,4.62-8,s03e07_seg01_clip_00,A bowl of popcorn. 6509,Izzie is standing in front of Yang while she applies makeup on Yang's face.,Izzie is leaning against the lockers.,Izzie is standing on one of the benches.,Izzie is standing in one of the lockers.,Izzie is lying under one of the benches.,0,Where is Izzie when Alex entered the locker room?,128548,Grey's Anatomy,0-9.22,grey_s03e25_seg02_clip_21,Izzie is standing in front of Yang while she applies makeup on Yang's face. 6510,she was unwilling to stick to her diagnosis ,she didn't read the patients allergies ,She didn't understand the treatment plan,she felt that the patient deserved to suffer,she hadn't slept well enough and was making bad decisions ,0,Why did Cameron almost kill the patient when she had correctly diagnosed her?,128549,House M.D.,9.98-19.01,house_s01e05_seg02_clip_16,she was unwilling to stick to her diagnosis 6511,Forgetfulness,Meanness.,Niceness.,Hyperness.,Blindness. ,2,What did House have written on the board that the patient was suffering from when the doctors were discussing the case? ,128550,House M.D.,46.39-53.76,house_s04e13_seg02_clip_01,Niceness. 6512,He is hoping for a stroke. ,He is hoping for a heart attack. ,He is hoping for amnesia. ,He is hoping for a fall. ,He is hoping to see Leonard's mother. ,1,What is Alfred hoping for when he is walking up the stairs with Leonard?,128551,The Big Bang Theory,1.28-15.37,s09e24_seg02_clip_06,He is hoping for a heart attack. 6513,Raj tilts his head to the side.,Raj opens a book to read.,Raj orders pizza.,Raj walks to the car.,Raj punches Howard.,0,What does Raj do before he asks Howard if he is worried?,128552,The Big Bang Theory,41.84-45.84,s08e01_seg02_clip_02,Raj tilts his head to the side. 6514,A coffee mug,A medical journal,A magazine,A leather jacket,A cane,2,What was Joey holding when he was talking to Chandler?,128553,Friends,50.77-58.03,friends_s04e20_seg02_clip_07,A magazine 6515,Diamond studs,She is not wearing earrings,Chandelier earrings,Hoop earrings,Pearl earrings,3,What type of earrings is Dr. Bailey wearing when she is giving her speech?,128554,Grey's Anatomy,29.58-91.03,grey_s03e13_seg02_clip_22,Hoop earrings 6516,Told the woman it was okay.,Picked up his cup.,Sipped from his cup.,Drank from the water fountain.,Stood up from the chair.,0,What did Marshall do before he walked toward the window?,128555,How I Met You Mother,0-1.55,met_s02e17_seg02_clip_18,Told the woman it was okay. 6517,a coffee maker,a rack of files,a table of medical supplies,a cabinet,a picture,4,What was behind Cuddy when she asked Chase if he was interested in getting back on the team?,128556,House M.D.,43.66-52.88,house_s05e21_seg02_clip_06,a picture 6518,Castle said Anatoly called a catering company.,Castle said Anatoly called a car company.,Castle said Anatoly called a video game company.,Castle said Anatoly called a web developer company.,Castle said Anatoly called a phone company.,0,What type of company did Castle say Anatoly called when Castle checked Anatoly's phone?,128557,Castle,66.77-69.88,castle_s08e11_seg02_clip_17,Castle said Anatoly called a catering company. 6519,Castle is dressed as Wonder Woman,Castle is dressed as Spiderman,Castle is dressed as Superman,Castle is dressed as a zombie,Castle is dressed as a clown,3,What is Castle dressed as when Beckett says that the DA is looking into dismissing charges against Kyle?,128558,Castle,4.6-25.77,castle_s04e22_seg02_clip_25,Castle is dressed as a zombie 6520,Legionella,Lupus,Cancer,Pollups,Mesthelioma,0,What disease does House allude to when the doctors are consulting?,128559,House M.D.,12.13-17.07,house_s02e21_seg02_clip_14,Legionella 6521,a book and an apple,a magazine an a pear,a pear,a newspaper and an apple, nothing,3,What is Joey holding when Chandler storms into his apartment?,128560,Friends,26.05-32.26,friends_s06e03_seg02_clip_03,a newspaper and an apple 6522,At Chandler's. ,At Monica's. ,At the coffee house. ,At Richard's. ,At the video store. ,4,Where are Monica and Richard when they are spending time together?,128561,Friends,6.41-10.07,friends_s03e13_seg02_clip_00,At the video store. 6523,Chandler opened the refridgerator door.,He went to the bathroom.,He slapped Joey.,He fell down.,He cried.,0,What did Chandler do after he played fuse ball?,128562,Friends,57.06-59.5,friends_s04e18_seg02_clip_01,Chandler opened the refridgerator door. 6524,it will make him jump for joy,it will make him happy,it will make him livid,it will hurt his feelings,it will make him worried,3,How does Howard think Leonard will feel when he comments on Leonard's computer page?,128563,The Big Bang Theory,0-37.89,s02e18_seg02_clip_05,it will hurt his feelings 6525,she is a know it all ,She's a loud chewer,she is always correting someone,she is always trying to teach a lesson,she has a terrible hair cut ,1,What did Ted say was wrong with Lily that made he rant when she was at the bar,128564,How I Met You Mother,8.87-40.07,met_s03e08_seg02_clip_11,She's a loud chewer 6526,Red,Blue,White,Grey,Black,4,"What color is the shirt that Barney is wearing when he say's ""Oh snap""?",128565,How I Met You Mother,0-9.9,met_s03e15_seg02_clip_03,Black 6527,Using his computer.,Looking out the window.,Scratching his head.,Making breakfast.,Combing his hair.,0,What was Sheldon doing before everybody woke up?,128566,The Big Bang Theory,19.5-22.29,s05e19_seg02_clip_16,Using his computer. 6528,Cristina proposes to Burke.,Cristina kisses Burke.,Cristina performs surgery.,Cristina hugs Meredith.,Cristina throws something in the garbage and turns to face George.,4,What does Cristina do before she says she knows everything?,128567,Grey's Anatomy,16.65-19.36,grey_s01e07_seg02_clip_10,Cristina throws something in the garbage and turns to face George. 6529,Shrimp,Steaks,Cakes,Spaghetti,Corn,2,What is Ms. Seabury eating when the doctors enter her room?,128568,Grey's Anatomy,12.74-20.03,grey_s03e02_seg02_clip_02,Cakes 6530,He runs away. ,He hugs her. ,He holds her hand. ,He pushes her. ,He holds Emily closer. ,3,What does Ross do after Monica lifts her hand?,128569,Friends,0-4.28,friends_s04e23-24_seg02_clip_04,He pushes her. 6531,Because Penny wants to protect Amy.,Because Penny wants to fight.,Because Penny took Sheldon's side.,Because Penny wants convince Sheldon.,Because Penny wants to fight.,3,Why Penny joined the conversation when Amy was arguing with Sheldon?,128570,The Big Bang Theory,0-60.95,s10e05_seg02_clip_00,Because Penny wants convince Sheldon. 6532,Goes behind the bar,Leaves the bar,Goes to the bathroom,Takes a drink,Goes to his car,3,What does House do after disclosing his wish to his friend?,128571,House M.D.,31.07-44.78,house_s01e22_seg02_clip_15,Takes a drink 6533,The group attacked the Dr physically.,The group made fun of the Dr.,The group ignored the Dr.,The group was shocked for a moment.,The group left the room as soon as the Dr came in.,3,How did the group act when the Dr came into the apartment unanounced?,128572,Friends,36.02-60.03,friends_s02e22_seg02_clip_02,The group was shocked for a moment. 6534,The lucky cookie,The lucky dragon,The golden dragon,The lucky serpent ,The fortune cookie,1,Where did koberjust deny a search warrant for after ryan asked for one?,128573,Castle,58.44-66.72,castle_s08e19_seg02_clip_19,The lucky dragon 6535,Vegas,NYC,Washington,L.A.,Bahamas,3,Where did hamilton say he was going when talking to foreman at lunch?,128574,House M.D.,18.08-26.42,house_s01e09_seg02_clip_17,L.A. 6536,that she was bugged,that she was being followed,that someone was taking pictures of her,that her computer was hacked,that people were listening to her calls. ,1,how did stryker warn marie after she came to him?,128575,Castle,11.15-17.84,castle_s03e09_seg02_clip_10,that she was being followed 6537,blue,red,white,black,green,0,what colors was castle's undershirt when talking,128576,Castle,0-9.7,castle_s03e14_seg02_clip_21,blue 6538,I can do that.,Yes that would be Great!,Just gotta go to Rome.,How about now?,Yes that is correct.,2,What did Ross say after putting down the plate?,128577,Friends,4.48-10.36,friends_s01e08_seg02_clip_02,Just gotta go to Rome. 6539,She tells him she is most definitely making breakfast.,She tells him she is spring cleaning.,She tells him she took a cooking class.,She tells him she is making lunch.,She tells him she is just having fun.,1,What does Martha do after Castle says that he knows she's not making breakfast.,128578,Castle,12-19.39,castle_s03e18_seg02_clip_00,She tells him she is spring cleaning. 6540,14.,12.,10.,6.,24.,0,How many hours did House say it took two of the doctors to find a car when everyone thought someone was going to get fired?,128579,House M.D.,2.49-7.06,house_s04e05_seg02_clip_26,14. 6541,The hospital roof. ,The hospital waiting room.,The elevators. ,The O.R.,Her mother's hospital room.,4,Where is Nina when she is talking to the doctors about her mother?,128580,Grey's Anatomy,53.06-78.02,grey_s03e19_seg02_clip_23,Her mother's hospital room. 6542,Oscar Wilde ,Mark Twain,Kurt Vonnegut,Leo Tolstoy ,Stephen King ,4,Which author does Castle mention as rationale for his openness to a theory after Beckett asks about his writers block?,128581,Castle,31.76-40.03,castle_s02e11_seg02_clip_03,Stephen King 6543,Chandler,The man that had the picture of the man looking for a hot girl.,Ross,The mailman.,The policeman.,1,Who walked up when Joey and Jen were getting their mail.,128582,Friends,41.3-45.14,friends_s05e17_seg02_clip_11,The man that had the picture of the man looking for a hot girl. 6544,Stuart.,Leonard.,Amy.,Penny.,Bernadette.,4,Who talked after Josh said a comment?,128583,The Big Bang Theory,4.81-60.19,s08e20_seg02_clip_13,Bernadette. 6545,Pen,Apple,Pills ,Phone,Spoon,2,What did House bring out of his pocket when sitting close to the patient? ,128584,House M.D.,55.58-61.9,house_s02e14_seg02_clip_02,Pills 6546,A hospital room. ,A bathroom.,An elevator.,A playground,A car.,4,Where are Ryan and Esposito after meeting with Gilliam?,128585,Castle,29.71-38.13,castle_s08e05_seg02_clip_12,A car. 6547,The Statue of Liberty.,The Empire State Building.,A bar. ,A hotel.,A restaurant. ,1,Where did Val say she and Matt were before going to the protest?,128586,Castle,33.37-42.05,castle_s04e19_seg02_clip_02,The Empire State Building. 6548,They argue about who has solved the most cases.,They argue about who has saved each other's life more.,Beckett feels Castle just gets in the way in most cases.,Castle and Beckett have different opinons on their teamates,Beckett has an opinion on Castle's mom.,1,What do Castle and Beckett argue about when they are toasting to each other?,128587,Castle,51.86-61.64,castle_s04e07_seg02_clip_27,They argue about who has saved each other's life more. 6549,Into the food court.,Into the clinic.,To the car park.,Back to the Doctor's ball.,To the Emergency Room.,1,Where does House's colleague go after he leaves House?,128588,House M.D.,5.01-13.2,house_s02e03_seg02_clip_03,Into the clinic. 6550,Mrs. Davis was drinking beer.,Mrs. Davis was cleaning the table.,Mrs. Davis was eating.,Mrs. Davis was dancing with an old man.,Mrs. Davis was chatting.,2,What was doing Mrs. Davis after when Raj arrived?,128589,The Big Bang Theory,22.88-61.02,s07e01_seg02_clip_11,Mrs. Davis was eating. 6551,Raj,Stuat.,Sheldon.,Howard.,Amy.,0,Who was standing behind Leonard when Penny closed the door?,128590,The Big Bang Theory,33.68-38.03,s02e22_seg02_clip_08,Raj 6552,Stands up from the couch.,Looks at his pager.,Gets up from his desk.,Walks down the hallway.,Looks at one of his interns. ,1,What does House do before he tells Wilson to go home?,128591,House M.D.,44.65-50.7,house_s02e14_seg02_clip_08,Looks at his pager. 6553,a ticket out of town ,some pills ,a prescription sheet ,money,a cell phone ,3,What does Dr. Taub give Ryan before he tells him pay the thug his money? ,128592,House M.D.,34.05-51.99,house_s07e15_seg02_clip_06,money 6554,Derek,George,Alex,Cristina,Burke,3,Who is standing with Meredith and Izzie when we see them at the railing and the lights flicker?,128593,Grey's Anatomy,92.44-101.02,grey_s02e05_seg02_clip_04,Cristina 6555,He got up and went into the hall.,He got up and walked out of the room.,He got up and walked over to the window.,He got up and walked over to Monica.,He got up and left the apartment.,3,Where did Ross go after Monica said it wouldn't be fair to go on pretending?,128594,Friends,26.12-33.49,friends_s01e03_seg02_clip_19,He got up and walked over to Monica. 6556,Diet Coke,Diet Snapple,Diet Pepsi,Sprite ,A glass of wine,1,What is Monica drinking when she's sitting in the kitchen with Rachel and Joey?,128595,Friends,0-6.09,friends_s04e04_seg02_clip_13,Diet Snapple 6557,Black.,Green.,Pink.,Purple.,White.,3,What color shirt was Penny wearing when she agreed to take some money from Sheldon?,128596,The Big Bang Theory,43.86-49.62,s02e14_seg02_clip_02,Purple. 6558,Castle and Esposito,Ryan and Esposito,Castle and Ryan,Beckett and Esposito,Becket and Castle,4,Who is watching the skit about themselves when they are at the studio?,128597,Castle,5.81-12.51,castle_s07e22_seg02_clip_08,Becket and Castle 6559,Her house ,The operating room ,A cafe ,A park ,Her office ,2,Where do we see Cuddy when she is apologizing? ,128598,House M.D.,22.1-41.84,house_s07e23_seg02_clip_21,A cafe 6560,Marshall,Robin.,Lily.,Barney,James,3,Who sat next to Robin when Ted put the fedora and hold te whip?,128599,How I Met You Mother,18.97-79.05,met_s05e01_seg01_clip_02,Barney 6561,He touched Raj's nose with his fingertip.,He danced.,He left the apartment.,He sat on the floor.,He took a drink of water.,4,What did Howard do after he said about Raj wanting to have fun?,128600,The Big Bang Theory,10.24-17.68,s07e07_seg02_clip_04,He took a drink of water. 6562,watch his language,speak quietly,shout loudly,be nicer,put a napkin on his mouth,4,What did Sheldon tell Raj to do when Raj spoke to him?,128601,The Big Bang Theory,10.68-24.1,s03e21_seg01_clip_01,put a napkin on his mouth 6563,eating a sandwich,looking at a book,talking on the phone,eating chips,looking at a paper,2,what is joey doing when he walks through the door to monicas apartment,128602,Friends,36.31-42.72,friends_s01e06_seg02_clip_11,talking on the phone 6564,His father got sober and wants to be part of his life again.,His father wanted to make up for not being there for him.,His father had moved back to the U.S.,His father had gotten released from prison.,His father was trying to get back with his mother.,0,Why did the patient say his father was looking for him when he was explaining it to House?,128603,House M.D.,47.05-58.58,house_s07e17_seg02_clip_17,His father got sober and wants to be part of his life again. 6565,He was going to give him the cold shoulder.,He was going to kill him.,He was going to give him a warm welcome home.,He was going to not ever speak to him again.,He was going to tell him what he thought of him.,1,What was House's patient going to do when he saw his Dad again?,128604,House M.D.,73.46-96.03,house_s07e17_seg02_clip_17,He was going to kill him. 6566,Romeo and Juliet,Shakespeare's play Hamlet,Ryan's cousin,Becketts Thanksgiving,My dog situation,1,What did Castle compare their situation to before he talks to Hector?,128605,Castle,0-9.8,castle_s08e20_seg02_clip_22,Shakespeare's play Hamlet 6567,A spoon,A cup,A comb,A pen,A knife,3,What did Staurt drop on the book before he pick a book from the shelf?,128606,The Big Bang Theory,2.4-6.9,s02e20_seg02_clip_04,A pen 6568,Tickets to a basketball game,A new car,A spa day,A new television,$5000,4,What does Barney tell Lily he is going to give her after she refuses his request? ,128607,How I Met You Mother,39.74-49.83,met_s02e13_seg02_clip_13,$5000 6569,That 13 should go away and think about things for a while and get back to her. ,That wanting never got anyone anywhere. You have to achieve. ,That she never wanted to be anything anyway. ,That she doesn't care what 13 thinks. ,That women can aspire to anything but we don't get it just because we want it. ,4,"What does Lou tell 13 after 13 says ""We can have anything""?",128608,House M.D.,0-20.25,house_s05e01_seg02_clip_18,That women can aspire to anything but we don't get it just because we want it. 6570,Because Lesley refused to go on a date with him.,Because someone ate Leonard's lunch.,Because someone ruined Leonard's experiment.,Because Lesley tells Leonard there was no arousal in his kiss.,Because Leonard lost his job.,3,Why is Leonard disappointed when he leaves the laboratory?,128609,The Big Bang Theory,17.17-35.81,s01e03_seg02_clip_05,Because Lesley tells Leonard there was no arousal in his kiss. 6571,He throws his fist in the air,He starts laughing,He goes to the end of the bed to look,He puts his hand over his mouth,He wipes sweat off his face,0,What does Frank do when he says it has a head?,128610,Friends,25.38-28.04,friends_s05e03_seg02_clip_13,He throws his fist in the air 6572,Warfarin,Heparin,Niacin,Gabapentin ,Levaquin,0,Which medication does House suggest as the cause of the sores after the patient develops them?,128611,House M.D.,0-9.57,house_s01e16_seg02_clip_14,Warfarin 6573,Stop asking me,Give me 5 minutes,All I need is some water,Im about to faint,Im fine,4,What did Richard say when Derek implied Richard needed more rest?,128612,Grey's Anatomy,4.6-92.03,grey_s02e06_seg02_clip_04,Im fine 6574,House was looking at the patient file,House was looking at a file,House was looking at the IV bag,House was holding the patient hand,House was holding the side of the patient bed,4,What did House do when he was standing by the patient bed listening to Janey talking ?,128613,House M.D.,73.84-82.05,house_s08e06_seg02_clip_23,House was holding the side of the patient bed 6575,He throws it on the floor. ,He throws it on the bed. ,He throws it in the closet. ,He puts it on. ,He ties it around his waist. ,1,What does Joey do with his jacket after he walks in his room?,128614,Friends,4.27-6.1,friends_s07e11_seg02_clip_10,He throws it on the bed. 6576,Barney watched TV.,Barney sat on the couch.,Barney sat on a chair.,Barney sat on the floor.,Barney standed and walked away.,4,What did Barney do after he sat on the armrest of the couch?,128615,How I Met You Mother,0-53.4,met_s02e10_seg02_clip_11,Barney standed and walked away. 6577,Got down on one knee and proposed,Ran out towards the street,Sat in a stool,Ordered a coffee for the three of them,Looked at Liz,4,What did Ross do after Paul started timing him?,128616,Friends,37.84-43.02,friends_s06e21_seg02_clip_03,Looked at Liz 6578,Wriing notes while standing beside the lightpole near some blood prints.,Inside the foredsic lab on the PDA.,Standing alongside the boat.,Looking at the Squad car they drove.,Tasking some fingerprints at the Headquarters.,2,Where was Dr Parish sitting when Beckett spoke to her?,128617,Castle,7.53-10.63,castle_s01e04_seg02_clip_01,Standing alongside the boat. 6579,Leonard and Penny.,Bernadette and Howard.,A group of young people.,Amy and Penny.,Stuart and Amy.,2,Who listen when Raj was talking?,128618,The Big Bang Theory,6.72-64.02,s06e16_seg02_clip_17,A group of young people. 6580,That he wants to leave,That he is just joking,That he's at the wrong place,That he is a woman,That he has to tell House the truth,4,What did House say the patient would suddenly decide after he got up and walked to the door?,128619,House M.D.,40.21-52.41,house_s02e14_seg02_clip_02,That he has to tell House the truth 6581,A puppy.,A book.,A shirt.,A beer can.,A cellphone. ,3,What was Sheldon holding onto when he burped?,128620,The Big Bang Theory,29.6-33.57,s07e09_seg02_clip_13,A beer can. 6582,Pedro,Peter,Paul,Pauline,Padre,2,Who did Castle and Beckett bring in to interview after Castle said he knew the right zombie to tell them about the zombie drug?,128621,Castle,22.67-48.06,castle_s04e22_seg02_clip_19,Paul 6583,To his cell,Home,Against the wall,To another table,To his chair,2,Where does Bob go after Beckett flips the table,128622,Castle,19.33-24.39,castle_s05e14_seg02_clip_16,Against the wall 6584,Lisa Cuddy doesn't answer when asked the question.,"Lisa Cuddy is appalled at the questions and says ""What? No.""",Lisa Cuddy throws the bald man out of her office.,"Lisa Cuddy proudly says ""yes"".",Lisa Cuddy acts embarassed.,1,"How does Lisa Cuddy react when asked the question, ""You sleeping with House?""",128623,House M.D.,32.69-39.57,house_s01e14_seg02_clip_15,"Lisa Cuddy is appalled at the questions and says ""What? No.""" 6585,Yellow daisies,Red roses,White roses,Yellow roses,White lilies,3,What kind of flowers were on the table when Monica and Chandler were at a restaurant?,128624,Friends,0-3.97,friends_s06e24-25_seg02_clip_07,Yellow roses 6586,House was bored and need something to do.,House wanted to test his writing skills.,House made a bet with Cuddy.,House did it for the money.,House wrote the article for a prize.,3,What reason did House give for writing an article on neural degeneration when he at a party?,128625,House M.D.,82.42-84.65,house_s06e06_seg02_clip_09,House did it for the money. 6587,Grey,Blue,Green,Red,Black,1,"What color is the robe Bob is wearing when he say's ""Before I ask any of you...""?",128626,House M.D.,0-9.86,house_s08e05_seg02_clip_14,Blue 6588,Penny got married to Leonard four years ago.,Penny got married to Leonard one year ago.,Penny got married to Leonard two years ago.,Penny got married to Leonard three years ago.,Penny got married to Leonard recently.,4,When did Penny get married when she married Leonard?,128627,The Big Bang Theory,25.84-36.24,s09e03_seg02_clip_03,Penny got married to Leonard recently. 6589,A bird.,A brick.,A grenade.,A tree branch.,Strong winds.,2,What caused the window to break before Gage closed the door?,128628,Castle,2.3-8.28,castle_s04e16_seg02_clip_13,A grenade. 6590,She wants butter,She is allergic,She hates the taste,She prefers vinegar ,She asked for ketchup ,0,Why does Cristina refuse the olive oil when having dinner? ,128629,Grey's Anatomy,22.01-30.81,grey_s02e08_seg02_clip_10,She wants butter 6591,House says Wilson hiked 62 miles.,House says Wilson hiked 102 miles.,House says Wilson hiked 32 miles.,House says Wilson hiked 22 miles.,House says Wilson hiked 42 miles.,2,How far does House say Wilson hiked after Wilson mentions the oreos?,128630,House M.D.,6.18-11.88,house_s08e21_seg02_clip_16,House says Wilson hiked 32 miles. 6592,Joey tells Ross where he got the ball,Joey tells Ross that they had been throwing the ball back and forth for around an hour without dropping it,Joey tells Ross about the time Joey and Chandler threw the ball,Ross is surprised that the ball did not break,Ross did not realize they were throwing the ball,1,Why does Ross seem astonished after Joey tells him about throwing the ball back and forth?,128631,Friends,52.91-59.45,friends_s08e19_seg02_clip_05,Joey tells Ross that they had been throwing the ball back and forth for around an hour without dropping it 6593,His father.,Lily.,Ted.,Marshalls,To check his voicemail.,0,Who does Marshalls want to call when he asks for borrow Ted's phone?,128632,How I Met You Mother,0-5.1,met_s06e13_seg02_clip_18,His father. 6594,She's smoking.,She's pretty.,She's nice.,She's sweet.,He likes her.,0,Why does Slaughter ask if Beckett would be the one going after him when talking to Castle?,128633,Castle,48.84-59.07,castle_s08e06_seg02_clip_07,She's smoking. 6595,Names,One thing in common,The initials of their owner,He jokingly says they have the ability to power a lightsaber,His curiosity and attention,0,What does Castle say big diamonds have after he takes the diamond?,128634,Castle,11.23-25.26,castle_s06e08_seg02_clip_11,Names 6596,Borderline Personality Disorder,Hemophelia,OCD,Paranoid Personality Disorder,Dependent Personality Disorder,2,What disorder does Nadia deny having after House confronts her about it?,128635,House M.D.,18.53-27.08,house_s07e12_seg02_clip_23,OCD 6597,Tattoo ,A bracelet,A rubber band,Heart rate monitor,A wristwatch,4,What is Joey wearing on his wrist when he starts crying?,128636,Friends,54.11-64.03,friends_s03e07_seg02_clip_19,A wristwatch 6598,She talked him into a corner.,He loves her and wanted to show it.,She took the key and ran.,Key? What key?,She asked for it.,0,Why did Ross say he gave her a key when Monica asked him?,128637,Friends,2.48-7.75,friends_s08e11_seg02_clip_15,She talked him into a corner. 6599,Rachel runs away,Rachel backs him up,Rachel goes to sleep,Rachel orders coffee,Rachel stays silent,1,What happens after Ross gets upset with what he hopes are clip ons?,128638,Friends,31.12-49.74,friends_s10e05_seg02_clip_17,Rachel backs him up 6600,JewHunks.com,A local bar,A cemetery ,At a coffee shop.,At a shopping mart. ,0,"Where did Rachel tell Mr. Zellner she met her ""date"" after he walked in the room?",128639,Friends,37.11-52.87,friends_s10e14_seg02_clip_03,JewHunks.com 6601,Castle and Beckett became suspicious because these are tools of the geode trade.,Castle and Beckett became suspicious because these are tools of the meth trade.,Castle and Beckett became suspicious because these are tools of the heroin trade.,Castle and Beckett became suspicious because these are tools of the crack trade.,Castle and Beckett became suspicious because these are tools of the diamond trade.,4,"Why did Castle and Beckett become suspicious after they found a color grader, a UV lamp, and a karat weight scale in the store?",128640,Castle,78.21-93.1,castle_s02e14_seg02_clip_23,Castle and Beckett became suspicious because these are tools of the diamond trade. 6602,He found bank records of Zane,He found a witness ,He found out who the suspect is,He found Zane's burner phone,He didnt' find anything ,3,What did Espostio find when he came in with new evidence on Zane's murder?,128641,Castle,9.06-16.31,castle_s08e20_seg02_clip_20,He found Zane's burner phone 6603,Did that car finally quit on you?,What did you spend it on?,Why didn't you tell us you had a problem?,A bad night at Poker or great night with a hooker?,Are you still playing poker?,3,"What question does Chase ask when Wilson says he loaned House $5,000?",128642,House M.D.,51.36-61.54,house_s02e05_seg02_clip_00,A bad night at Poker or great night with a hooker? 6604,Sheldon is at the grocery store speaking with Mr. D'Onofio,Sheldon is at the barber shop speaking with Mr. D'Onofio,Sheldon is at the car wash speaking with Mr. D'Onofio,Sheldon is in the waiting room speaking with Mr. D'Onofio,Sheldon is in the hospital speaking with Mr. D'Onofio,4,Where is Sheldon when he is speaking to Mr. D'Onofio,128643,The Big Bang Theory,0-13.33,s05e18_seg02_clip_05,Sheldon is in the hospital speaking with Mr. D'Onofio 6605,Phoebe doesn't want to hurt Rachel.,Being the only one that knows makes Phoebe feel special,Phoebe is afraid Rachel will be angry with her and Rachel is one of her closest friends,Phoebe loves secrets,Phoebe feels sorry for Ross,1,Why does Phoebe decide not to say anything when Ross asks her not to?,128644,Friends,47.41-57.53,friends_s06e02_seg01_clip_01,Being the only one that knows makes Phoebe feel special 6606,A shirt is in Barney's hand.,A jar is in Barney's hand.,A jug is in Barney's hand.,A glass is in Barney's hand.,A shoe is in Barney's hand.,3,What is in Barney's hand when he is at the bar with his friends?,128645,How I Met You Mother,0-7.44,met_s06e20_seg02_clip_06,A glass is in Barney's hand. 6607,Beckett asked Castle if he was bribing her with a latte.,Beckett asked Castle if the latte was made with skim milk.,Beckett said the latte is too hot and she didn't have time to drink it.,Beckett told Castle she would have rather had an iced coffee.,Beckett told Castle she started a new caffeine free diet.,0,How did Beckett react after Castle gave her the latte?,128646,Castle,15.81-37.04,castle_s06e03_seg02_clip_14,Beckett asked Castle if he was bribing her with a latte. 6608,she is in front of her desk,she is standing up,behind her desk,she is on the couch,she is sitting in a chair next to the door ,2,Where is beckett sitting when Vikram comes in to update her on the case?,128647,Castle,0-5.87,castle_s08e19_seg02_clip_04,behind her desk 6609,Because he is so dumb.,Because he's shorter than the average human.,He doesn't have a belly button,Because he doesn't know how to swim,Because he can't breathe earth air with out an inhaler.,4,Why does Sheldon think Leonard is the real alien after his joke?,128648,The Big Bang Theory,16.81-73.1,s08e21_seg01_clip_01,Because he can't breathe earth air with out an inhaler. 6610,Castle lights a match.,Castle lights a torch.,Castle shines a flashlight.,Castle turns a car light on.,Castle uses a lantern.,2,How does Castle see Beckett when she is underwater in the car?,128649,Castle,0-8.18,castle_s04e16_seg02_clip_01,Castle shines a flashlight. 6611,Castle says Beckett has less than one minute.,Castle says Beckett has less than two minutes.,Castle says Beckett has more than five minutes.,Castle says Beckett has less than three minutes.,Castle says Beckett has less than thirty seconds.,3,How much time does Castle say Beckett has before she gets up and walks around the library?,128650,Castle,44.23-57.45,castle_s06e12_seg02_clip_22,Castle says Beckett has less than three minutes. 6612,Izzie and Alex. ,Merideth and Bailey.,John and Francis. ,Lily and George. ,Bob and Tracy. ,0,Which doctors are sitting on either side of the man talking to each other when they are at the clinic? ,128651,Grey's Anatomy,0-9.63,grey_s03e14_seg02_clip_06,Izzie and Alex. 6613,angry,bored,tired,surprised,irritated,3,How did Leonard feel when Penny showed up?,128652,The Big Bang Theory,25.81-37.51,s06e05_seg02_clip_03,surprised 6614,A bottle of water,A brandy snifter ,A pen and paper,A ring,A file folder,1,What is Taub holding when he is talking to Neil across the desk?,128653,House M.D.,5.4-11.7,house_s05e18_seg02_clip_12,A brandy snifter 6615,"Because Beckett, Castle, and Esposito didn't know how else to explain the theft.",Because Alice counseled important people and her files contained intimate details about them. ,"Because Beckett, Castle, and Esposito really hoped that the case would be intriguing.","Because Beckett, Castle, and Esposito were conspiracy theorists.",Because Alice knew celebrities' secrets and the thief could get rich leaking her files to the press.,1,"Why did Beckett, Castle, and Esposito think the thief would be interested in Alice's client files when they discussed what might have been stolen?",128654,Castle,59.58-72.51,castle_s06e08_seg02_clip_02,Because Alice counseled important people and her files contained intimate details about them. 6616,rock music,reggae music,classical music,jazz music,the blues ,1,What kind of music did Raj listen to when Raj was at Priya's house?,128655,The Big Bang Theory,34.87-45.45,s04e17_seg02_clip_02,reggae music 6617,Mucus.,Bile.,Vomit.,Saliva.,Blood.,4,What squirts onto the surgeon's smock when they're operating?,128656,Grey's Anatomy,6.44-9.9,grey_s01e06_seg02_clip_20,Blood. 6618,Castle gave Beckett a hug.,Castle gave Beckett an autographed book.,Castle gave Beckett a new pen.,Castle gave Beckett some fake evidence.,Castle gave Beckett a coffee.,4,What did Castle give Beckett when she was sitting at her desk?,128657,Castle,49.06-60.32,castle_s04e01_seg02_clip_21,Castle gave Beckett a coffee. 6619,"Newark, New Jersey.","Elizabethport, New Jersy.","Hoboken, New Jersey.","Toms River, New Jersey.","Hackensack, New Jersey.",1,Where did Ryan say Frenchies was located after he told Beckett and Castle how much she paid them a month to park?,128658,Castle,70.4-74.54,castle_s04e15_seg02_clip_15,"Elizabethport, New Jersy." 6620,grey,blue,red,yellow,black,2,"What color is the shirt Monica is wearing when she say's ""You go to the...""?",128659,Friends,50.24-60.17,friends_s04e17_seg02_clip_02,red 6621,Beckett asks abouts Simmons association with the local street dealers.,Beckett asks abouts Simmons association with Beckett's mom.,Beckett asks abouts Simmons association with Raglan.,Beckett asks abouts Simmons association with the Mexican Cartels.,Beckett asks abouts Simmons association with people in Washington Heights.,2,"Who does Beckett ask Simmons what his association with is after Simmons says ""He's sweet on you""?",128660,Castle,78.26-88.43,castle_s03e13_seg02_clip_06,Beckett asks abouts Simmons association with Raglan. 6622,to find new discoveries,to watch TV,to grow a garden,to procreate,to sleep in a bunkbed,3,What did Amy say they could be the first people to when talking to Sheldon?,128661,The Big Bang Theory,27.97-60.81,s08e17_seg02_clip_15,to procreate 6623,House doesn't notice anything wrong with his kidneys,Ian's kidneys are in critical condition,Ian's kidneys are recovering,Ian's kidneys are healthy,Ian's kidneys are shutting down,4,What is happening to Ian's kidneys when House notices his urine color?,128662,House M.D.,74.12-79.82,house_s02e17_seg02_clip_06,Ian's kidneys are shutting down 6624,Custody ,A cell,Prison,Interrogation ,Morgue ,3,Where do the two police find out the people they are looking for are at after a woman lets them know?,128663,Castle,0-12.42,castle_s07e19_seg02_clip_14,Interrogation 6625,Head injury,Severe bleeding from a severed limb,Internal injuries ,Severe frostbite,A woman in labor,3,What did Richard see when he looked at the patient?,128664,Grey's Anatomy,0-6.27,grey_s03e24_seg02_clip_04,Severe frostbite 6626,It is yellow.,It is blue.,It is green.,It is white.,There is no sign.,0,What color is the small sign behind Wilson when in the lab?,128665,House M.D.,70.51-79.48,house_s03e21_seg02_clip_21,It is yellow. 6627,Ian's right side.,Ian's left side.,Behind Ian.,On Ian's bed.,The restroom.,0,Where were Sarah and Alan located after House and Chase walked into their room?,128666,House M.D.,50.37-67.95,house_s02e17_seg02_clip_06,Ian's right side. 6628,He said he could tell them but he doesn't want to. ,He says he is bond by closet organizer confidentiality. ,He said he might tell them after he is done with his laundry. ,He says he doesn't want to share. ,He says he will need to ask Bernadette if that's okay. ,1,What reason does Sheldon give for not telling the girls what was in the letter after they ask him?,128667,The Big Bang Theory,17.49-22.31,s06e19_seg02_clip_06,He says he is bond by closet organizer confidentiality. 6629,In the coffee shop,In the park,In her apartment,On the street,On the balcony,0,Where is Phoebe sitting when when she is playing the guitar with Stephanie?,128668,Friends,72.55-80.57,friends_s02e06_seg02_clip_21,In the coffee shop 6630,A gallon.,A liter.,A pint.,A cup.,A quarter cup.,1,"How much fluid does Chase say was taken off the patient when talking to Foreman, House, and Cameron?",128669,House M.D.,0-10.88,house_s02e14_seg02_clip_06,A liter. 6631,Hugged her,Took her picture,Wrote in her chart,Gave her some water,Sat on the bed,4,What did Alex do after Jane said her face was hard to identify?,128670,Grey's Anatomy,65.78-72.53,grey_s03e18_seg02_clip_01,Sat on the bed 6632,Mr. Hubble.,Alex.,Meredith's mom.,The chief doctor.,A child.,0,Who is having a surgery when lying on a bed?,128671,Grey's Anatomy,67.66-72.11,grey_s02e02_seg02_clip_12,Mr. Hubble. 6633,brushing his teeth,fixing his hair,cooking,shaving,eating,1,What is Ted doing when Barney is standing behind him at the mirror?,128672,How I Met You Mother,4.61-8.6,met_s03e11_seg01_clip_03,fixing his hair 6634,She was baking muffins.,She was eating dinner.,She was drinking coffee.,She was reading a book.,She was staring out the window.,0,"What was Izzie doing when Callie, George and Meredith entered the kitchen?",128673,Grey's Anatomy,51.7-60.77,grey_s03e02_seg02_clip_25,She was baking muffins. 6635,She has a present in her lap.,She has a book in her lap.,She has a puppy in her lap.,She has a kitten in her lap.,She has a baby in her lap.,1,"What does Phoebe have in her lap before Joey opens the refrigherator and says ""I knew I shouldn't have mentioned it..?",128674,Friends,3.6-11.41,friends_s04e18_seg02_clip_03,She has a book in her lap. 6636,Raj.,Penny.,Sheldon.,Howard.,Leonard and Howard's mom.,4,What were Stuart's two suggestions for Superman when the guys were looking at comics?,128675,The Big Bang Theory,23.51-30.57,s04e11_seg02_clip_04,Leonard and Howard's mom. 6637,Sean,Adam,House,Drake,John,2,Who joined the doctors in the room after they's had been discussing about the patient's symptoms.,128676,House M.D.,84.15-89.05,house_s06e05_seg02_clip_18,House 6638,Esposito,Castle,Ryan,Valentine,No one is wearing the vest,3,Who is wearing the bulletproof vest that says Righter on it when they are acting out a scene?,128677,Castle,0-4.02,castle_s07e22_seg02_clip_08,Valentine 6639,Joey walks up to talk to Rachel,Ross walks up to talk to Rachel,Monica walks up to talk to Rachel,Phoebe walks up to talk to Rachel,Gunther walks up to talk to Rachel,4,Who walks up to talk to Rachel after Chandler was talking to her about Snoopy?,128678,Friends,11.56-13.66,friends_s03e10_seg01_clip_00,Gunther walks up to talk to Rachel 6640,opens his mouth wide,puts his hands on his hips,covers his ears,gives a smug smile,pulls his hair,0,What did Joey do after Chandler says he just had an affair with Josephs wife?,128679,Friends,46.08-53.4,friends_s02e23_seg02_clip_13,opens his mouth wide 6641,Penny says of course. ,Penny says no way. ,Penny says she isn't sure. ,Penny says it's none of her business. ,Penny says she hates Leonard. ,2,How does Penny answer Bernadette after she asks if she is going to break up with Leonard?,128680,The Big Bang Theory,20.02-31.34,s06e02_seg01_clip_01,Penny says she isn't sure. 6642,Howard and Raj,Amy and Sheldon,Howard and Bernadette,Lisa and Raj,Raj and his sister,1,Who is sitting on the couch when Leonard and Penny are talking,128681,The Big Bang Theory,54.9-59.03,s05e14_seg02_clip_05,Amy and Sheldon 6643,In a meeting in her office,In a boardroom meeting,At her nurse's counter,In House's office,In the cafeteria,1,Where is Dr. Cuddy when the scene begins?,128682,House M.D.,0-6.03,house_s06e13_seg02_clip_07,In a boardroom meeting 6644,Monica wanted Chandler to give her a high five. ,Chandler's boss wanted Chandler to lay in the sun. ,Chandler's boss likes to slap him. ,Ross wanted Chandler to help him cook. ,Phoebe wanted Chandler to watch her sing. ,2,Why did Chandler have to put lotion on after seeing his boss?,128683,Friends,14.85-22.27,friends_s03e24_seg02_clip_12,Chandler's boss likes to slap him. 6645,Tony Mueller.,Otis Williams.,Eddie McUsic.,Wardell Williams.,Joe McUsic.,4,Who did Beckett say made several phone calls to DA Karnacki's office before she asked if he'd talked to him?,128684,Castle,29.82-38.54,castle_s03e19_seg02_clip_17,Joe McUsic. 6646,Phoebe's weapon of choice was a pipe,Phoebe's weapon of choice was a bat,Phoebe's weapon of choice was a sling shot,Phoebe's weapon of choice was a backpack,Phoebe didn't mug a comic store,0,"What was Phoebe's ""weapon of choice"" when she used to mug a comic store?",128685,Friends,34.79-39.36,friends_s09e15_seg02_clip_11,Phoebe's weapon of choice was a pipe 6647,Beckett is at the mall.,Beckett is at home with Castle.,Beckett is in the precinct.,Beckett is at at store.,Beckett is no the street.,2,Where is Beckett when Meredith talks to her?,128686,Castle,21.62-26.12,castle_s01e06_seg02_clip_10,Beckett is in the precinct. 6648,Writing,Eating,Sleeping,Drinking,Typing,3,What was House doing when the doctors came in to the office?,128687,House M.D.,29.11-37.88,house_s05e22_seg02_clip_16,Drinking 6649,A leg,An arm,A chest ,A hand,A foot,2,What is the large X-ray a photo of when House and Jeffery Cole are having a heated discussion?,128688,House M.D.,9.63-16.97,house_s04e04_seg02_clip_22,A chest 6650,fifty five thousand,hundred million,one hundred,five million,twelve thousand,1,What number of cats does House mention before getting up from his chair?,128689,House M.D.,0-7.75,house_s05e18_seg02_clip_06,hundred million 6651,The doctor,The medicine cup,Another patient,Her purse,The table,3,Where does Kalpana get her pills from after she first appears on screen?,128690,Grey's Anatomy,56.42-67.62,grey_s02e04_seg02_clip_04,Her purse 6652,The horn blares uncontrollably when Marshall taps the dash.,The tape deck releases Marshall's cassette tape when he taps the dash.,The car starts up when Marshall taps the dash.,The windshield collapses inward when Marshall taps the dash.,The hood flies up billowing smoke when Marshall taps the dash.,1,What happens in the car when Marshall taps the dashboard?,128691,How I Met You Mother,31.54-48.54,met_s02e17_seg02_clip_18,The tape deck releases Marshall's cassette tape when he taps the dash. 6653,A coffee mug. ,A cell phone.,A lap top.,A newspaper. ,A microscope. ,1,What does Sheldon hold when is talking to Leonard?,128692,The Big Bang Theory,4.3-9.82,s04e05_seg01_clip_00,A cell phone. 6654,Because she was late for work,Because Chandler told her she was making him sick with the sweetness,Because she had dinner plans with her mother,Because she was supposed to go shopping with Phoebe,Because she had errands to run,0,Why did Rachel leave after she told Chandler that her and Ross were cuddly sleepers,128693,Friends,36.02-48.32,friends_s03e03_seg02_clip_05,Because she was late for work 6655,A beautiful pink blouse.,Nothing at all.,She wore a floral dress.,She wore t-shirt and jeans.,She wore a plaid dress.,0,Where and when was Rachel wearing?,128694,Friends,2.24-64.03,friends_s10e04_seg02_clip_01,A beautiful pink blouse. 6656,He pays Leonard for his help,He Laughs at Leonard,He applauds Leonard for the great Idea,He erases Leonard idea off the white board,He offers to help Leonard next time he needs help.,3,What does Stephen do after Leonard offers his opinion?,128695,The Big Bang Theory,51.87-61.02,s07e21_seg01_clip_00,He erases Leonard idea off the white board 6657,cats,insects,fossils,Big Foot,dinosaurs,3,Who is the main focus of Dr. Meeks Studies after further investigation?,128696,Castle,40.96-58.07,castle_s05e20_seg02_clip_07,Big Foot 6658,Ryan and esposito,"Ryan, esposito, and castle",Castle and beckett,Beckett and ryan,"Ryan, beckett and castle",1,Who went to the massage parlor looking for clues about sam after he died?,128697,Castle,70.06-75.79,castle_s04e08_seg02_clip_13,"Ryan, esposito, and castle" 6659,House tells her she is right.,House walks out.,House says that the victim at his poison apple somewhere else.,House tells them to check the butcher shop again.,House tells them he will have to do some research.,2,What does House do after Thirteen declares that food poisoning from the butcher shop and food stands was ruled out?,128698,House M.D.,9.35-18.25,house_s06e17_seg02_clip_10,House says that the victim at his poison apple somewhere else. 6660,talking about Paris,talking to Kim,coming up stairs ,smoking a cigarette. ,having a party,3,What was Kim Doing after Rachel come out the door?,128699,Friends,0-9.44,friends_s05e18_seg02_clip_18,smoking a cigarette. 6661,beckett asked for john,beckett asked for castle,beckett asked for sammy davis,beckett asked for stan,beckett asked for Samuel Cavanagh,4,who did beckett ask for at the door when man opened the door,128700,Castle,49.72-89.59,castle_s01e05_seg02_clip_04,beckett asked for Samuel Cavanagh 6662,Playboy,Thrasher,Cosmo,Home Decor Magazine,The TV guide,2,What is Monica going to go in her room to read when she's talking to rachel?,128701,Friends,15.61-19.51,friends_s02e20_seg02_clip_12,Cosmo 6663,He feels that Damian is not capable of murder,He thinks that Damian looks good for this murder,He thinks Damian must have been provoked to have committed this murder,He thinks Damian must have been drunk to commit this murder,He knew sooner or later Damian would kill someone,0,How does Castle feel about Damian as a murder suspect when he and Beckett are discussing the matter?,128702,Castle,8.51-12.99,castle_s03e15_seg02_clip_05,He feels that Damian is not capable of murder 6664,emmy is deteriorating ,emmys nerves are weak,nothing,emmys muscles are weak,Emmy is having spasms ,3,what does taub notice when emmy can't hold her arm out for long?,128703,House M.D.,34.75-42.43,house_s05e10_seg02_clip_11,emmys muscles are weak 6665,Slaughter steals a car.,Slaughter walks the other way from Castle. ,Slaughter starts running.,Slaughter throws a man into the trash.,Slaughter enters a room. ,3,What does Slaughter do after Castle walks towards the car?,128704,Castle,14.62-18.07,castle_s08e06_seg02_clip_09,Slaughter throws a man into the trash. 6666,A floorplan,A menu,An xray,A computer screen,A phone,0,What was Ryan pointing at when he was talking about the suspect?,128705,Castle,19.87-29.8,castle_s04e05_seg02_clip_05,A floorplan 6667,sits down,takes off his lab coat,runs over to the patient,gives orders,asks a question,2,What does Chase do when Masters says she's not coming back?,128706,House M.D.,5.18-14.5,house_s07e14_seg02_clip_16,runs over to the patient 6668,Cuddy is annoyed because House is refusing to return to work.,Cuddy is annoyed because House went through the files on her desk.,Cuddy is annoyed because House has broken into her office again.,Cuddy is annoyed because House sabotaged her meeting with Wilson.,Cuddy is annoyed because House is lying to Wilson about her.,2,Why is Cuddy annoyed with House when talking about her outing with Wilson?,128707,House M.D.,0-6.94,house_s02e22_seg02_clip_03,Cuddy is annoyed because House has broken into her office again. 6669,Castle says yes and asks if Martha is all right.,Castle ignores the question.,Castle says yes and leaves.,"Castle says yes, then no.",Castle gets up and leaves.,3,How does Castle respond after Martha asks him if he is all right? ,128708,Castle,0-9.53,castle_s02e23_seg02_clip_19,"Castle says yes, then no." 6670,She doesn't say anything.,How are you guys?,What are you guys doing?,Why is everyone all frazzled.,Do you guys have plans for the weekend?,4,What does Rachel say after Chandler opens the door?,128709,Friends,16.54-25.12,friends_s03e17_seg02_clip_02,Do you guys have plans for the weekend? 6671,I hate you,"Howard, my son, my greatest gift. ",You're a disappointment,I never loved you,Your mother is dead.,1,What did Bernadette tell Howard his father had written on the back of the photo of them before he left the room?,128710,The Big Bang Theory,42.8-62.02,s06e19_seg02_clip_14,"Howard, my son, my greatest gift. " 6672,Foreman felt that Chase was being rude.,Foreman felt angry that Chase was ignoring his advice.,Foreman felt that Chase was underestimating the effect House had on his life.,Foreman felt sad for Chase and Cameron.,Foreman felt that Chase was going to follow House's advice.,2,How did Foreman feel when Chase said that House didn't make his decisions?,128711,House M.D.,48.95-64.22,house_s06e07_seg02_clip_15,Foreman felt that Chase was underestimating the effect House had on his life. 6673,Rachel's best friend,Rachel's boyfriend,Rachel's date,Rachel's neighbor,Rachel's husband,1,How did Ross introduce himself when he stood and gave the speech?,128712,Friends,45.16-58.28,friends_s02e24_seg02_clip_14,Rachel's boyfriend 6674,There was nothing strange.,The killer got lost.,The killer passed out from the sight of blood.,The killer was interrupted by the police.,The killer was stopped by an unseen force.,4,What was strange about what happened when the victim was saved from his attack?,128713,Castle,0-41.53,castle_s07e03_seg02_clip_09,The killer was stopped by an unseen force. 6675,Priya tells him she is in love with her brother. ,Priya tells him they need to break up. ,Priya tells him they need to take some time apart. ,Priya tells him she is moving in with him. ,Priya tells him it's okay and these things happen. ,4,What is Priya's reaction when Leonard tells her he kissed another woman?,128714,The Big Bang Theory,47.31-55.29,s05e07_seg02_clip_14,Priya tells him it's okay and these things happen. 6676,Where the garbage can is.,Where the tray spot is,How to clean the coffee machines,How to properly sweep the floors,Which pots are decaf or regular,4,What does Gunther say he needs to review with Rachel when she is talking to Chandler?,128715,Friends,29.52-45,friends_s03e10_seg02_clip_09,Which pots are decaf or regular 6677,I love you,She didn't say anything,Go home,Please leave me alone,Thank you,4,What did Emily say to Ross before she walked away?,128716,Friends,0-4.85,friends_s04e17_seg02_clip_08,Thank you 6678,Bernadette was hanging out with her best friend Amy.,She was hanging out with Raj as well. ,Bernadette was hanging out with Leonard and Sheldon. ,She wasn't hanging out with anyone. ,Bernadette was hanging out with Howard's mother. ,1,Who was Bernadette hanging out with when she was with Penny?,128717,The Big Bang Theory,0-5.33,s09e19_seg02_clip_12,She was hanging out with Raj as well. 6679,Eva,Thirteen ,Mia,Juliet,Sophoa,1,Who talked to House she was going when he headed towards the entrace,128718,House M.D.,0-14.28,house_s06e04_seg02_clip_04,Thirteen 6680,Detective Montgomery comes to the door.,Detective Seeger comes to the door.,Detective Jones comes to the door.,Detective Hamilll comes to the door.,Detective Fred Simms comes to the door.,1,Who comes in the door greeting Castle before discussing a theft report?,128719,Castle,45.51-62.81,castle_s03e22_seg02_clip_16,Detective Seeger comes to the door. 6681,floor,chair,counter,bed,desk,2,Where was House sitting before Chase came up?,128720,House M.D.,0-6.84,house_s08e12_seg02_clip_11,counter 6682,"""She was pretty tasty.""","""Savor it.""","""You want some too?""","""Come on.""",He laughed.,0,What did Simmons say that made Beckett angry when she slammed him on the window?,128721,Castle,0-10.63,castle_s03e13_seg02_clip_08,"""She was pretty tasty.""" 6683,Phoebe and Rachel forgot to pick up pizza for Monica. ,Phoebe and Rachel for got to pick up a turkey for Monica.,Phoebe and Rachel forgot to pick up plates for Monica. ,Phoebe and Rachel forgot to pick up napkins for Monica. ,Phoebe and Rachel forgot to pick up pies for Monica. ,4,What did Phoebe and Rachel forget to pick up after talking to Monica through the door?,128722,Friends,2.97-25.27,friends_s10e08_seg02_clip_15,Phoebe and Rachel forgot to pick up pies for Monica. 6684,A pen. ,A marker. ,A straw. ,A wrapper. ,A ball. ,0,What is Stuart fiddling with when he is at the counter talking with Penny?,128723,The Big Bang Theory,47.54-49.58,s03e16_seg02_clip_15,A pen. 6685,Sheldon,Howard,Penny,Raj,a pig,3,Who is sitting on the couch when Howard is speaking to Penny?,128724,The Big Bang Theory,0-51.32,s01e16_seg02_clip_01,Raj 6686,Complete a daring rescue mission,Pick the right set of balls for the lottery,Trick the hostage takers ,Pay off the ransom,Promise not to call the cops,1,How did Miranda hope to get her family back when they were kidnapped?,128725,Castle,3.19-16.38,castle_s06e10_seg02_clip_23,Pick the right set of balls for the lottery 6687,He yells at him,He stands in the corner,He leaves the room,He takes notes,He starts to cry,1,What does Castle do when Beckett is talking to the suspect?,128726,Castle,96.13-101.93,castle_s02e03_seg02_clip_23,He stands in the corner 6688,Phoebe is at a restaurant.,Phoebe is at Central Park.,Phoebe is at a show on Broadway.,Phoebe is in the back of a taxi cab.,Phoebe is at her apartment.,0,Where is Phoebe when she's on a date with the man?,128727,Friends,53.4-61.03,friends_s08e17_seg02_clip_09,Phoebe is at a restaurant. 6689,Chandler and Monica are sitting on a park bench outside.,Chandler and Monica are sitting on the couch with Phoebe and Rachel.,Chandler and Monica are sitting on the subway.,Chandler and Monica are sitting at the kitchen table together.,Chandler and Monica are standing on their apartment balcony.,3,Where are Chandler and Monica when they have their fight about money?,128728,Friends,0-20.95,friends_s09e16_seg02_clip_01,Chandler and Monica are sitting at the kitchen table together. 6690,Castle asked what she is doing.,Caslte told her to call her mom.,Castle told her she had to go to bed.,Castle said she needs to go to school.,Castle said she was in danger.,0,What did Castle say to Alexis after she pick up her phone?,128729,Castle,14.26-17.95,castle_s03e17_seg02_clip_10,Castle asked what she is doing. 6691,Went to anyas moms house,called anya,went to anyas house,Put out a BOLO,Got anonymous tip ,3,How did the precinct get ahold of anya after viewing the footage of her?,128730,Castle,59.53-63.62,castle_s08e11_seg02_clip_23,Put out a BOLO 6692,An abstract painting.,A patient's eyes.,His desk.,A laptop computer screen.,Printed X-rays.,4,What is Foreman looking out when he is discussing a cyst?,128731,House M.D.,0-3.61,house_s03e19_seg02_clip_20,Printed X-rays. 6693,He moves his hands in and out of his pockets.,He makes nervous moves with his hands in front of him.,He is rocking his body slowly back and forth.,He rubs his hands through his hair repeatedly.,He looks at the floor instead of Penny's face.,1,What does Sheldon do when he walks up to Penny to show he is nervous.,128732,The Big Bang Theory,20.11-27.91,s07e11_seg02_clip_04,He makes nervous moves with his hands in front of him. 6694,that there is no light coming in the room,that someone is looking in the window,that someone is behind the drapes,that he doesn't like the drapes shut,that nothing is wrong,2,What is Sheldon worried about after Amy close the drapes?,128733,The Big Bang Theory,36.18-57.44,s10e04_seg02_clip_09,that someone is behind the drapes 6695,They are in the apartment. ,They are at a bar. ,They are at a party. ,They are in the car. ,They are outside. ,2,Where are the woman and Ted when they are talking?,128734,How I Met You Mother,0-13.01,met_s03e12_seg02_clip_08,They are at a party. 6696,Because Burke is leaving.,Because Burke is not overwhelmed with the whiteboard.,Because Burke is having a rest.,Because Burke is playing Mario game.,Because Burke is going to sleep.,1,Why Burke doesn't think is a mess when ask Derek about?,128735,Grey's Anatomy,19.59-26.71,grey_s02e02_seg02_clip_12,Because Burke is not overwhelmed with the whiteboard. 6697,Danny,Becker,Esposito,Alexis,Captain America,3,Who does Castle hear when he starts to walk up the stairs?,128736,Castle,29.42-34.46,castle_s02e04_seg02_clip_11,Alexis 6698,Howard had to take a bus.,Howard had to walk.,Howard used his bike.,Howard ran out of gas.,Howard ran all the way.,1,What made Howard late when he went to visit with Sheldon and Leonard?,128737,The Big Bang Theory,29.15-40.94,s04e11_seg02_clip_07,Howard had to walk. 6699,House told Wilson that the massage is to relax him so he doesn't need to talk to someone.,"House told Wilson that he has him to talk to, so he doesn't need to talk to anyone else.",House told Wilson he didn't want to talk about it in front of the masseuses.,"House said he has already scheduled, because he's not an idiot, he knows he needs help.",House told Wilson he plans on calling Dr. Phil.,3,"How did House reply after Wilson said, ""Maybe, talk to someone?""",128738,House M.D.,50.73-62.5,house_s07e16_seg02_clip_01,"House said he has already scheduled, because he's not an idiot, he knows he needs help." 6700,The kitchen cabinet,under the bed,on the kitchen table,in the living room,at his office,0,What is the first place Chandler thinks to put the bowl when Monica asks him to find a place for it?,128739,Friends,4.03-12.72,friends_s08e14_seg02_clip_02,The kitchen cabinet 6701,angry,happy,peaceful,joyful,uncomfortable,4,How did Sheldon feel when he left?,128740,The Big Bang Theory,29.08-45.33,s03e02_seg02_clip_14,uncomfortable 6702,Amy is dissecting a brain. ,Amy is eating her lunch.,Amy is working on her computer.,Amy is looking at a microscope.,Amy is pouring chemicals.,0,What is Amy doing when she is talking on the phone about an medical emergency?,128741,The Big Bang Theory,54.42-61.78,s06e16_seg02_clip_17,Amy is dissecting a brain. 6703,Monica,Phoebe,Charlie,Rachel,A woman in a multi-colored top behind him,2,Who does Joey kiss after she stands up?,128742,Friends,0.32-6.4,friends_s09e21_seg02_clip_20,Charlie 6704,There is an earthquake,Ross is singing to the baby,Carol unintentionally drinks some old milk,Susan kicks the back of the couch,Ross' hands are shaking nervously,1,Why does the baby kick hard when Ross and Carol have their hands on her stomach?,128743,Friends,7.8-43.52,friends_s01e09_seg02_clip_15,Ross is singing to the baby 6705,A box.,An umbrella., A coat.,A water bottle.,A soda can.,2,What was Thirteen holding when she opened the door?,128744,House M.D.,26.23-31.75,house_s05e11_seg02_clip_02, A coat. 6706,A bicycle,A trashcan,A lost child,A skatebaord,A piece of plywood,0,What was in front of the broken elevator when Sheldon and Leonard were walking down the stairs?,128745,The Big Bang Theory,25.21-29.97,s07e02_seg02_clip_14,A bicycle 6707,she gives him a triple espresso,she gives him good news,she brings him xrays ,she tells him surgery is canceled ,she offers to help him ,0,Why does Derek love the xray tech when he is scrubbing in?,128746,Grey's Anatomy,44.6-52.55,grey_s01e07_seg02_clip_12,she gives him a triple espresso 6708,Sink,Cubby shelves,Office chair,Trash can,Computer,1,What was house standing in front of when he was talking to Wilson?,128747,House M.D.,0-9.77,house_s02e15_seg02_clip_15,Cubby shelves 6709,Raj got a cheap airfare on his ticket,Raj admires the format in which the shampoo comes in.,Raj has been to Las Vegas before,Raj was born in Las Vegas,Raj does not love Las Vegas.,1,What did Raj say that reaffirms that Raj loves Las Vegas after Leonard plucks his eyebrows?,128748,The Big Bang Theory,0-8.7,s02e21_seg02_clip_04,Raj admires the format in which the shampoo comes in. 6710,Park accidentally spills a bottle of water onto Taub's trousers as she reaches to shake hands.,Park makes reference to Taub's fathering of children by 2 different mothers.,Park makes an awkward reference to Taub possibly being Jewish.,Park points out Taub's short stature when she introduces herself.,Park tells Taub she knows of a treatment which might allow him to lose a few extra pounds.,3,Why is Park's introduction of herself to Taub a little awkward before Taub responds to Park by saying he looks forward to working with her as well?,128749,House M.D.,28.76-35.96,house_s08e05_seg02_clip_01,Park points out Taub's short stature when she introduces herself. 6711,Roger said he had enough on his own plate to worry about Sadie's.,Roger said he didn't pry into Sadie's personal life.,Roger said he and Joanna had more to do than watch Sadie.,Roger said he wasn't interested in know what Sadie did for kicks.,Roger said Sadie was good at keeping secrets.,4,How did Roger respond when Ryan was surprised he knew nothing about Sadie's extramarital affairs?,128750,Castle,57.7-59.93,castle_s08e10_seg02_clip_11,Roger said Sadie was good at keeping secrets. 6712,Because a fire had started.,Because someone was trying to kill them.,Because he was giving them a head start.,Because a storm was brewing.,Because the ceiling was falling.,1,Why did Gage tell Castle and Beckett to run before the window broke?,128751,Castle,0-5.52,castle_s04e16_seg02_clip_13,Because someone was trying to kill them. 6713,The filing cabinets were too organized ,Her house was overly clean and neat,The car was organized oddly specific,She listens to the same song on repeat ,She has the same routine in her planner,3,Why does House believe that the patient in bed is highly ritualized before saying it works better than anti depressants? ,128752,House M.D.,0-10.12,house_s01e14_seg02_clip_16,She listens to the same song on repeat 6714,There was a coffee mug in front of Rachel.,There was a plate with an omelet on it in front of Rachel.,There was a laundry basket in front of Rachel.,There was a vase of flowers in front of Rachel.,There was a briefcase in front of Rachel.,2,What was in front of Rachel when she was standing at the dining room table?,128753,Friends,10.67-15.41,friends_s02e17_seg02_clip_02,There was a laundry basket in front of Rachel. 6715,She ran for the door.,She took off her coat.,She closed her eyes.,She put her hands on her face.,She passed out.,3,What did Rachael first do after watching the tape?,128754,Friends,26.41-31.09,friends_s08e15_seg02_clip_17,She put her hands on her face. 6716,Dirty laundry.,A baby.,Basket of fruit.,A little bunny.,A lap top computer.,4,What was Leonard holding before the nurse asked why a computer was stuck on Howard?,128755,The Big Bang Theory,12.14-16.39,s04e01_seg02_clip_16,A lap top computer. 6717,Emma. ,Chandler.,Rachel.,Monica.,Ross.,4,Who is shown to be afraid of spiders when Rachel mentions it in her argument with Ross?,128756,Friends,47.72-53.32,friends_s10e07_seg02_clip_12,Ross. 6718,Ross questioned Rachel about her drink.,Ross questioned Rachel about her wind.,Ross questioned Rachel about her clothes.,Ross questioned Rachel about the lightning-bearer.,Ross questioned Rachel about The Hobbit.,1,What was Ross questioning Rachel about when Ross was trying to leave?,128757,Friends,47.7-62.75,friends_s02e19_seg02_clip_04,Ross questioned Rachel about her wind. 6719,Went to school to be a doctor,Read about them on the internet,Use to be a nurse at a clinic,Found out from a close friend,Read a book from the lobby ,1,How does the man say he learned about diseases after House asked about them?,128758,House M.D.,0-12.03,house_s01e13_seg02_clip_21,Read about them on the internet 6720,Roses,Sunflowers,There were no flowers,Gardenias,Hydrangeas,1,What kind of flowers were on the tables when Ross and Joey were talking?,128759,Friends,8.17-12.71,friends_s04e22_seg02_clip_03,Sunflowers 6721,take off dress,cry,eat cake,exhale in relief,run out of apartment,3,What did Rachel do after telling her father she couldnt marry her fiance?,128760,Friends,44.22-53,friends_s01e01_seg02_clip_05,exhale in relief 6722,red,blue,green,grey,black,3,"What color is the shirt Castle is wearing when he say's ""We think so...""?",128761,Castle,79.7-89.05,castle_s04e13_seg02_clip_07,grey 6723,If word gets out she authorized a mask lineup to find a killer.,If word gets out she authorized a taste lineup to find a killer.,If word gets out she authorized a smell lineup to find a killer.,If word gets out she authorized a hand lineup to find a killer.,If word gets out she authorized a foot lineup to find a killer.,2,What is Beckett worried about getting out when she is talking about lineups at the police station with Castle?,128762,Castle,1.07-6.14,castle_s08e05_seg02_clip_10,If word gets out she authorized a smell lineup to find a killer. 6724,Stop! Police!,Stop running.,Don't make me chase you.,It's only going to be worse if you run.,I'm gonna get this scumbag,0,What did Beckett say when she was running after Seth? ,128763,Castle,79.6-86.04,castle_s04e04_seg02_clip_07,Stop! Police! 6725,Maria's face was dirty.,Maria's face was puffy.,Maria looked like she was about to cry.,Maria's face was covered in makeup.,Maria's face was dry.,2,How did Maria's face look after Mark told her he loved her?,128764,House M.D.,67.17-71.52,house_s02e15_seg02_clip_18,Maria looked like she was about to cry. 6726,Janice sleeping on a bed.,Monica jumping on the beds.,Janice kissing her ex husband.,Chandler playing on a car bed.,Ross trying to steal a mattress. ,2,What does Joey see Janice doing when he goes bed shopping with Monica?,128765,Friends,48.85-53.69,friends_s03e07_seg02_clip_20,Janice kissing her ex husband. 6727,Behind Alvie above his right shoulder.,In front of Miss X.,In front of House.,In front Of Alvie.,Behind House.,0,Where was the Now Open sign after House told Alvie to shut up?,128766,House M.D.,33.48-36.61,house_s06e20_seg02_clip_03,Behind Alvie above his right shoulder. 6728,Doug was looking a board.,Doug was drinking tea.,Doug was writing.,Doug was making a call.,Doug was texting.,0,What was doing Doug when Chandler was talking to him?,128767,Friends,34.5-36.21,friends_s03e24_seg02_clip_12,Doug was looking a board. 6729,Anita Rodriguez has been released,Anita Rodriguez was murdered,They caught the murderer,There's more food on the way,He got a promotion,0,What was Castle's good news when he made an announcement at the party?,128768,Castle,5.72-127.03,castle_s08e13_seg02_clip_26,Anita Rodriguez has been released 6730,Foreman gave drugs to House,Foreman punched House,Foreman pushed House out of the room,Foreman kissed House,Foreman held a folder,4,What did Foreman do after he closed the computer?,128769,House M.D.,20.92-30.27,house_s08e06_seg02_clip_08,Foreman held a folder 6731,In a red chair?,In a gray chair.,In a black chair.,In a yellow chair.,In the brown chair.,4,Where was Joey when he asked Rachel if she had date when a man?,128770,Friends,25.66-34.85,friends_s02e10_seg02_clip_05,In the brown chair. 6732,Rachel and Joey are at a restaurant.,Rachel and Joey are at an auction.,Rachel and Joey are at Joey's apartment.,Rachel and Joey are at Phoebe's apartment.,Rachel and Joey are in the back of a taxi cab.,1,Where are Rachel and Joey when Joey accidentally buys a boat?,128771,Friends,0-27.27,friends_s06e24-25_seg02_clip_06,Rachel and Joey are at an auction. 6733,Blue,Green,Orange,Red,Black,0,What color is the binder that House picks up before leaving the patient?,128772,House M.D.,34-41.6,house_s02e13_seg02_clip_02,Blue 6734,In the grocery store,Riding of the subway,Walking down the street,Sitting in a chair,Running down the highway,3,Where is Michael when talking about his wife?,128773,Castle,83.68-94.03,castle_s01e08_seg02_clip_03,Sitting in a chair 6735,She stood up.,She grabbed the phone.,She pulled out her gun.,She looked through the window.,She drank some water.,0,What did Beckett do after she shook he head?,128774,Castle,50.1-53.81,castle_s03e15_seg02_clip_15,She stood up. 6736,Run Toaster Run,Die Toaster Die,Sizzle Toast and Crunch,Be the Toaster,Toaster Run,1,What did Leonard like when Raj suggested a word or two?,128775,The Big Bang Theory,18.82-35.32,s02e12_seg01_clip_01,Die Toaster Die 6737,Lily is complaining to the employees and causing delay,Lily is flirting with the cashier,Lily cant find any money to pay the shop,Lily is on the phone instead of paying for the food,Lily cuts in front of everyone because she feels shes more important,2,Why is the Line upset when they are standing behind Lily?,128776,How I Met You Mother,38.96-59.95,met_s02e01_seg02_clip_14,Lily cant find any money to pay the shop 6738,Janice,Chandler,Lorraine,The waiter,Monica,2,Who did Joey leave with after giving his credit card to Chandler?,128777,Friends,10.8-32.41,friends_s01e14_seg02_clip_06,Lorraine 6739,Joey jordon,joey keegan,Jordan keegan,joey fatone,john keegan,2,Who are esposito and ryan going to go pick up after finding out that they were at a studio where they murder weapons went missing?,128778,Castle,68.13-74.81,castle_s08e14_seg02_clip_18,Jordan keegan 6740,Sheldon is going through a rough time and likes to drink. ,Sheldon is a closet alcoholic. ,Sheldon gargled with tequila and may have swallowed some. ,Sheldon has made a new type of Vodka and wants to try it out. ,Sheldon wants tequila to taste like water. ,2,Why is Sheldon drunk when he is at the table at the restaurant?,128779,The Big Bang Theory,0-3.43,s04e23_seg02_clip_01,Sheldon gargled with tequila and may have swallowed some. 6741,Do you have a suspect?,do you guys want to hit up a bar?,why is the elevator taking so long?,Don't you think Castle deserves the benefit of the doubt?,why are you guys so sure it was Castle?,3,What does Ryan ask before the detectives start discussing the case?,128780,Castle,0-6.81,castle_s07e01_seg02_clip_16,Don't you think Castle deserves the benefit of the doubt? 6742,someone was shooting ,someone drobed a bomb,he shot at them ,they got supurised ,they were at the wrong apartment,1,Why did Beckett and castle run out of the room when the cop bursts in?,128781,Castle,4.6-9.2,castle_s04e16_seg02_clip_13,someone drobed a bomb 6743,Her jacket. ,A backpack. ,A scarf. ,Her purse. ,A stuffed animal. ,3,What is Penny wearing on her shoulder when she is standing at the counter with Stuart?,128782,The Big Bang Theory,4.96-6.71,s03e16_seg02_clip_15,Her purse. 6744,Food,A drink,Cut off his hand.,Another card,More chips,2,What does the dealer offer after Phoebe talks about Joeys hand?,128783,Friends,15.64-50.17,friends_s05e23-24_seg02_clip_40,Cut off his hand. 6745,They are fighting with Marshall. ,They are watching a movie. ,They are listening to a movie. ,They are having a date. ,They are sleeping. ,3,What are Stella and Ted doing when they are in the apartment?,128784,How I Met You Mother,0-14.22,met_s04e01_seg02_clip_05,They are having a date. 6746,Mark,James,Brian,Mary,Park,4,Who handed Adams money after House asked her to take it?,128785,House M.D.,58.31-61.43,house_s08e03_seg02_clip_08,Park 6747,Amy said that the limbic system will make Penny very tired if she doesn't rest soon.,Amy said that the limbic system will make Penny lose interest in Leonard.,Amy said that the limbic system will make Penny angry at Sheldon's assistant.,Amy said that the limbic system will make Penny lose control over her emotions.,Amy said that the limbic system will make Penny calculate that another woman wants Leonard because he is desirable.,4,What did Amy say that the limbic system will make Penny do after Penny said that it's okay if Sheldon's assistant was flirting with Leonard?,128786,The Big Bang Theory,51.26-58.58,s06e03_seg02_clip_10,Amy said that the limbic system will make Penny calculate that another woman wants Leonard because he is desirable. 6748,Sheldon.,Dave.,Raj.,Penny.,Stuart.,1,Who sat on the front of the seat when Amy was driving?,128787,The Big Bang Theory,NaN-NaN,s09e08_seg02_clip_15,Dave. 6749,To the bar.,To sleep.,To the bathroom.,To his own apartment.,To the other side of the bed.,4,Where does Chandler want to go after Janice falls asleep?,128788,Friends,35.35-43.05,friends_s03e03_seg02_clip_10,To the other side of the bed. 6750,House was at his home.,House was at the zoo.,House was at a movie theater.,House was at the pharmacy.,House was at a playground.,4,Where was House when Foreman told him about the adenosine over the phone?,128789,House M.D.,68.58-78.31,house_s07e10_seg02_clip_07,House was at a playground. 6751,Drinking from a red solo cup,Drinking soda from a sippy cup,Holding a beer bottle,Eating a burger,Eating nachos,2,What is Robin doing when she says its a free country?,128790,How I Met You Mother,10.2-15.01,met_s05e05_seg02_clip_08,Holding a beer bottle 6752,he sang ,he ran away,he jumped up and down,he took off all his clothes,he cried,3,what does Ross mom says he did after she says that he got so upset?,128791,Friends,1.86-62.03,friends_s09e05_seg02_clip_14,he took off all his clothes 6753,working at her desk,looking out the window,laying on her sofa,meditating ,reading a book,0,what is cuddy doing when house goes to talk to her in her office?,128792,House M.D.,82.24-90.38,house_s01e12_seg02_clip_08,working at her desk 6754,Barney left to go the bathroom.,Barney was drinking a beer.,Barney was eating chips.,Barney was flirting with a waitress.,Barney was texting on his phone.,4,What was Barney doing when the gang was reminiscing about past Super Bowls?,128793,How I Met You Mother,0-2.72,met_s02e14_seg02_clip_03,Barney was texting on his phone. 6755,A recording,A file,Photos,Nothing,Food,2,What did eva want castle to drop off at her place when she was supposedly murdered?,128794,Castle,46.74-51.1,castle_s07e13_seg02_clip_15,Photos 6756,Penny is wearing a tee-shirt and jeans.,Penny is wearing a sweater and shorts.,Penny is wearing a bathing suit. ,Penny is wearing scuba gear.,Penny is wearing a white bathrobe.,4,What is Penny wearing when she participates in the conversation?,128795,The Big Bang Theory,0-9.94,s10e13_seg02_clip_11,Penny is wearing a white bathrobe. 6757,A girls bathroom,Chandler's Dojo,A Taco Bell,A Vanilla Ice look-alike contest,A bad acid trip,3,What did Ross enter when he was in college?,128796,Friends,23.69-32.98,friends_s07e04_seg02_clip_13,A Vanilla Ice look-alike contest 6758,Because there was a group of thugs surrounding him. ,Because Golovkin had a gun pointed at him.,Because a car was pulling up behind him.,Because there was a knife at his throat.,Because someone had grabbed him.,1,Why was Castle scared after he was told to come away from the light?,128797,Castle,62.39-74.77,castle_s07e20_seg02_clip_24,Because Golovkin had a gun pointed at him. 6759,a walkmen ,tie,a purse,his wallet ,name badge,4,What was hanging on Wilson lab coat when he walked out of House office? ,128798,House M.D.,33.61-34.57,house_s03e21_seg02_clip_20,name badge 6760,Esposito becomes distracted when Beckett collapses out of seemingly nowhere.,Esposito loses his train of thought.,Esposito notices a piece of plastic taped to a sign which acts as a wind-gauge for the killer.,Esposito notices a weird piece of paper on the ground that looked out of place.,"Esposito wasn't sure what else to say, as he'd already said most of what he was already thinking.",2,Why does Esposito trail off in mid-discussion with the team when they're trying to gather what information they have on the killer?,128799,Castle,54.01-66.17,castle_s04e09_seg02_clip_03,Esposito notices a piece of plastic taped to a sign which acts as a wind-gauge for the killer. 6761,Shake their heads in disbelief. ,They both roll their eyes at each other and laugh during the awkward discussion.,Focus on their smartphones in boredom.,Pass a written note to each other.,They both stare at each other with blank facial expressions during the awkward discussion.,4,How do the two female students in the front row respond after Leonard brings up never wanting to play the cello which is off topic from science?,128800,The Big Bang Theory,9.11-13.22,s06e18_seg02_clip_13,They both stare at each other with blank facial expressions during the awkward discussion. 6762,Raj.,Leonard.,Amy.,Stuart.,Sheldon.,3,Who says they were okay with the fantasy scenario after it ends?,128801,The Big Bang Theory,55.14-63.02,s07e11_seg02_clip_09,Stuart. 6763,a cell phone,revenge,a different cell,new blankets ,better books,1,What else does castle offer him after he refuses the money,128802,Castle,50.41-54.91,castle_s07e15_seg02_clip_14,revenge 6764,She storms away,She slaps him,She starts to cry,She smiles,She throws something at him,3,What does Masters do at the end of the conversation with House before he walks away?,128803,House M.D.,2.7-11.7,house_s07e06_seg02_clip_25,She smiles 6765,George,Bailey,Burke,Izzie ,McDreamy ,1,Who doesn't respect Meredith's choice when in surgery?,128804,Grey's Anatomy,0-7.95,grey_s01e07_seg02_clip_12,Bailey 6766,She cuts it up. ,She puts it in a frying pan. ,She puts it in the oven. ,She puts it in a pot on the stove. ,She takes off the shell. ,3,What does Monica do with the lobster after she picks it up?,128805,Friends,3.3-15.91,friends_s07e07_seg02_clip_01,She puts it in a pot on the stove. 6767,Yellow,Green,Black,Red,Purple,4,What color was Castle's daughter Alexis' outfit when he saw her walk by?,128806,Castle,33-39.69,castle_s05e06_seg02_clip_09,Purple 6768,Chandler is taking notes.,Michael is taking notes.,Joey is taking notes., Ross is taking notes.,Stanley is taking notes.,2,Who is on the phone taking notes when he is talking to Phoebe?,128807,Friends,0-5.36,friends_s04e23-24_seg02_clip_37,Joey is taking notes. 6769,Because she was going out with Julie and Rachel doesn't like her,Because she is a dog in the street,Because Rachel hates her,Because there are bad people out there,Because someone said was going to kill her,0,Why did Phoebe say that Monica was gonna get killed before Ross came in?,128808,Friends,0-33.3,friends_s02e02_seg02_clip_01,Because she was going out with Julie and Rachel doesn't like her 6770,There is 200 mili-liters of Prednisone in the IV bag.,There is 10 mili-liters of Prednisone in the IV bag.,There is 500 mili-liters of Prednisone in the IV bag.,There is 100 mili-liters of Prednisone in the IV bag.,"There is 1,000 mili-liters of Prednisone in the IV bag.",3,How many mili-liters of Prednisone are in the IV bag when Cuddy is talking with her mother?,128809,House M.D.,11.25-14.85,house_s07e11_seg02_clip_17,There is 100 mili-liters of Prednisone in the IV bag. 6771,Howard.,Leonard.,Sheldon.,Priya.,Raj.,3,Who was Penny talking to when she was walking in the hospital?,128810,The Big Bang Theory,29.69-51.54,s04e23_seg02_clip_13,Priya. 6772,Brain,Lungs,Heart,Kidney,Spleen,1,What body part in the glass case when House and the female doctor are talking?,128811,House M.D.,11.83-16.38,house_s08e02_seg02_clip_24,Lungs 6773,Chase says nothing,Chase says he is tired,Chase says the boy's chances are minimal at best,Chase says he is mad,Chase says he is glad,2,What does Chase say after House asks what his chances are without something?,128812,House M.D.,54.6-67.4,house_s01e08_seg02_clip_06,Chase says the boy's chances are minimal at best 6774,Barney,Marshal,Lilly,Robin ,Regis Philben,4,Who stood up and walked around after tasting their burger?,128813,How I Met You Mother,49.72-92.07,met_s04e02_seg02_clip_17,Regis Philben 6775,Vivien went to see Castle.,Vivien went to see Toni Johnston.,Vivien went to see Ryan.,Vivien went to see Esposito.,Vivien went to see Beckett.,1,Who did Vivien go to see before she died?,128814,Castle,10.49-29.18,castle_s03e02_seg02_clip_16,Vivien went to see Toni Johnston. 6776,When Chip gets married.,When Ross gets married for the third time.,When Phoebe gets married.,When Rachel gets married.,When Chandler gets married.,4,When did Chandler tell Joey he can be a best man after he is upset?,128815,Friends,32.78-42.55,friends_s04e22_seg02_clip_00,When Chandler gets married. 6777,silver,blue,grey,black,White,4,"What color is Ryan's shirt when he say's ""Pre-aimed at the victim...""?",128816,Castle,73.37-83.37,castle_s07e15_seg02_clip_11,White 6778,He walked her to the bathroom.,He kissed it.,He pulled her in for a hug.,He walked out the apartment.,He pulled her to couch to have a seat.,4,What did Danny do after he took Rachel's hand?,128817,Friends,34.78-39.63,friends_s05e10_seg02_clip_16,He pulled her to couch to have a seat. 6779,Why are you ignoring me,Still being immature?,You could atleast acknowledge I exist,Gonna hate me forever?,Still mad?,2,What's the last thing Derek says to Meredith before Addison walks onto the elevator?,128818,Grey's Anatomy,0-14.08,grey_s02e08_seg02_clip_18,You could atleast acknowledge I exist 6780,Because of the weather,Just anxiety ,He has asthma ,He was punched in the chest,To much air pollution,1,Why did Castle say he had trouble breathing after being asked by Goldberg? ,128819,Castle,51.97-58.47,castle_s06e02_seg02_clip_15,Just anxiety 6781,no crime ,crime of passion,crime of vengeance ,heinous crime,Crime of love,4,What type of crime did beckett consider the case when questioned by castle?,128820,Castle,11.14-15.72,castle_s04e03_seg02_clip_26,Crime of love 6782,Sitting on a bench at the playground with Chloe and Castle.,Sitting down outside with Chloe and Ryan.,Standing by a food truck outside with Chloe and Castle.,Sitting down outside with Chloe and Castle.,Standing outside of a diner with Chloe and Castle.,3,"Where is Beckett when she questioned Chloe and asks her stay late, where at the Petersons?",128821,Castle,0-6.88,castle_s01e02_seg02_clip_12,Sitting down outside with Chloe and Castle. 6783,A head on car collision ,A big fighting match,A fall down the stairs,A minor heart condition,A motorcycle accident,4,What happened to the patient before dying that House says was not related?,128822,House M.D.,56.26-66.14,house_s08e02_seg02_clip_23,A motorcycle accident 6784,Ross' reason was that the mall was closing soon.,Ross' reason was they had a Doctor's appointment.,Ross' reason was they had a Dentist appointment.,Ross' reason was they had to see a movie.,Ross' reason was that the coffee shop was closing.,3,What was Ross' reason when he told Rachel that they had to go?,128823,Friends,15.69-30.09,friends_s02e19_seg02_clip_04,Ross' reason was they had to see a movie. 6785,West was near ross when ross was holding the baby,rachel was near ross when ross was holding the baby,Heather was near ross when ross was holding the baby,johnny was near ross when ross was holding the baby,Thompson was near ross when ross was holding the baby,1,who was near ross when ross was holding the baby,128824,Friends,0-14.04,friends_s10e01_seg02_clip_20,rachel was near ross when ross was holding the baby 6786,He high fives Ryan.,He hugs Ryan.,He shakes hands with Ryan.,He walks away from Ryan.,He clinks glasses with Ryan.,4,What does Castle do to Ryan when he suggests George hired Scott?,128825,Castle,24.76-29.26,castle_s08e07_seg02_clip_21,He clinks glasses with Ryan. 6787,Robin is weeping.,Robin is laughing.,Robin is sad.,Robin is clapping.,Robin is shouting.,0,How did Robin react before Ted said the stories suck?,128826,How I Met You Mother,38.96-40.73,met_s06e14_seg02_clip_15,Robin is weeping. 6788,Phoebe asks when all of the dirty stuff starts,Phoebe asks what time it is,Phoebe asks when the party will be over,Phoebe asks Rachel to go with her to the buffet,Phoebe asks if Rachel likes the color blue,0,What does Phoebe ask about after she mentions the elegance of the environment?,128827,Friends,24.37-33.36,friends_s10e11_seg02_clip_04,Phoebe asks when all of the dirty stuff starts 6789,A cup of coffee,A football,A newspaper,His son,His briefcase,3,What is Ross holding when he said something about Human Services?,128828,Friends,5.79-12.02,friends_s02e06_seg02_clip_21,His son 6790,A rocket.,The vest.,A pair of rings.,His cell phone.,Her car keys.,2,What does Bernadette hand Howard after Mrs. Wolowitz stops talking?,128829,The Big Bang Theory,40.32-54.96,s05e12_seg02_clip_03,A pair of rings. 6791,that taking pus would not help the patient,that he would get the pus for House,that the pus is only a product of some larger issue,that the patient was already dead,that the patient did not have an infection,0,What did Foreman tell House when House wanted to get some pus from a patient?,128830,House M.D.,0.89-14.24,house_s03e20_seg02_clip_19,that taking pus would not help the patient 6792,paperwork,a thin binder,clipboard with papers,a book,a magazine,1,"What is Esposito holding in his hands, when walking upon the couple?",128831,Castle,0-9.12,castle_s02e12_seg02_clip_21,a thin binder 6793,Puts his hands up in the air,Points to Beckett,Points to a photo,Counts on his fingers,Puts his hands in his pockets,2,What does Castle do when he references Hamlet's father?,128832,Castle,7.57-11.58,castle_s08e20_seg02_clip_22,Points to a photo 6794,Westchester,Buffalo,Albany,Rochester,Queens.,0,Which city did Monica say the house they were buying was in when they came into the coffee shop?,128833,Friends,13.36-20.35,friends_s10e15_seg02_clip_00,Westchester 6795,Sheldon thinks he needs prayer,Sheldon thinks he needs more controllers,Sheldon thinks he has dyslexia and needs a handicap,Sheldon thinks he needs sleep,Sheldon thinks he needs more practice,4,What does sheldon thinks he needs after losing the race?,128834,The Big Bang Theory,19.96-22.52,s03e10_seg02_clip_02,Sheldon thinks he needs more practice 6796,Rachel,Ross,Chandler,Phoebe,Joey,2,Who walked into the apartment after Monica mentioned Tulsa?,128835,Friends,18.11-38.63,friends_s09e10_seg02_clip_18,Chandler 6797,take a drink,lower himself behind the bar,pour a drink ,take money,Run,1,What does the bartender do when Grady and Castle are about to talk?,128836,Castle,13.63-17.87,castle_s07e07_seg02_clip_25,lower himself behind the bar 6798,Purple ,Black,Gold,Green,Red,4,What color top was Cuddy wearing when she asked Cameron about House? ,128837,House M.D.,0-7.12,house_s03e10_seg02_clip_14,Red 6799,She didn't tell Monica where she was going,She forgot her Jacket,She hasn't had a chance to tell Ross about her feelings for him,She hates to fly,Ross isn't on board,4,Why is Rachel so upset when she sees that the plane is moving?,128838,Friends,11.98-61.45,friends_s05e01_seg02_clip_18,Ross isn't on board 6800,A football game,A couch,An office,The bowling alley,A resteraunt,4,Where are Monica and Chip sitting when they are talking about Zana?,128839,Friends,19.81-28.21,friends_s04e02_seg02_clip_16,A resteraunt 6801,A missing poster for her dog Cinnamon,an excel spreadsheet,a picture of his own face,a map of Africa,A recipe for cookies,0,What did Howard pull off the printer before Bernadette said that it was fine?,128840,The Big Bang Theory,40.59-46.08,s06e22_seg02_clip_15,A missing poster for her dog Cinnamon 6802,I prefer that Liz's boyfriends address me as Mr. Stevens.,Nice to meet you.,Let's get coffee.,Nice handshake.,Beautiful weather today.,0,What does Mr Stevens say after Ross shakes his hand?,128841,Friends,0-4.58,friends_s06e21_seg02_clip_03,I prefer that Liz's boyfriends address me as Mr. Stevens. 6803,Her father's murder.,Her mom's murder.,Her brother's murder,Her sister's murder.,Her grandpa's murder.,1,What does Beckett tell Castle she buried before he came along?,128842,Castle,61.22-69.77,castle_s07e02_seg02_clip_25,Her mom's murder. 6804,Mister Sugar Daddy,Hunk of Love,Big Man on Campus,Captain Money Bags,Wealthy Big Penis,4,What did Howard say his username was when discussing anything-for-a-greencard.com?,128843,The Big Bang Theory,24.42-36.34,s02e04_seg02_clip_09,Wealthy Big Penis 6805,Can't talk right now. Hanging with my mother ,Can't talk right now. Hanging with my boyfriend.,Can't talk right now. Hanging with some friends ,Can't talk right now. I'm shopping ,Can't talk right now. I'm at the movies ,1,What did Leonard want Penny to say when she was texting ,128844,The Big Bang Theory,0-8.71,s06e08_seg02_clip_01,Can't talk right now. Hanging with my boyfriend. 6806,She kisses him,She hugs him,She turns and leaves,She starts to cry,She inserts an IV,2,What does Christina do after delivering her message to the patient?,128845,Grey's Anatomy,10.18-19.47,grey_s03e08_seg02_clip_25,She turns and leaves 6807,Raj is with Leonard.,Amy is with Leonard.,Priya is with Leonard.,Penny is with Leonard.,Stuart is with Leonard.,3,Who is with Leonard when they are talking to Sheldon?,128846,The Big Bang Theory,0-10.45,s09e04_seg02_clip_04,Penny is with Leonard. 6808,"He wants to buy a car, she said it's pointless in the city.","He wanted to buy a condo, she wants to leave the city.",He thought writing plays is a job while Lily works too many hours,"She wanted to go to France, he hates France.","She wanted another drink, he thinks she has had too many already.",2,Why did Marshall and Lily start fighting before Marshall yelled?,128847,How I Met You Mother,18.64-28.4,met_s06e21_seg02_clip_03,He thought writing plays is a job while Lily works too many hours 6809,Pink.,Dark blue.,Purple.,Dark red.,Light blue.,4,What color scrubs does Alex wear when Izzie references boobs?,128848,Grey's Anatomy,62.42-76.82,grey_s02e08_seg02_clip_14,Light blue. 6810,Esposito.,Beckett.,Ryan.,Montgomery.,Martha.,2,"Who was with Castle when he started reading the statement from Joe's secretary, Mrs. Kennard?",128849,Castle,0-6.12,castle_s04e14_seg02_clip_14,Ryan. 6811,Standing outside,Seated at the bar,Sitting on the couch,Coming through the door,On stage,2,"Where is Ross after Joey thanks him for the ""art stuff?""",128850,Friends,8.96-21.77,friends_s09e21_seg02_clip_20,Sitting on the couch 6812,Yellow,Brown,Blue,Green,Pink,3,What color is Sheldon's shirt under the red shirt when he comes to the table to have a seat?,128851,The Big Bang Theory,62.1-64.02,s04e23_seg02_clip_00,Green 6813,Nothing,Gives the patient medicine,Talks to the patient about life,Wheels the patient out of the room,Walks the patient out of the room,3,What does house do with his patient after saying that it is not over for house?,128852,House M.D.,1.85-13.44,house_s01e09_seg02_clip_17,Wheels the patient out of the room 6814,Sheldon thought the relationship was bad for him.,Sheldon thought the relationship was not worth the trouble.,Sheldon found a new girlfriend to distract him.,Sheldon thought the relationship outlived it utility or usefulness.,Sheldon thought he was too good for Amy.,3,Why did Sheldon say he was fine with the break up he had with Amy when he was in the laundry room?,128853,The Big Bang Theory,3.08-10.77,s04e03_seg02_clip_10,Sheldon thought the relationship outlived it utility or usefulness. 6815,She says he always thinks she is defending House,She says he always thinks there is an ulterior motive,She says he always thinks there is an agenda,She says he always thinks she only thinks about money,She says he always thinks he isn't up for the task,2,What does Cuddy say Foreman always thinks there is when she and he meet to discuss his coming back?,128854,House M.D.,66.32-73,house_s04e04_seg02_clip_10,She says he always thinks there is an agenda 6816,Beckett feels Collins is superior,Beckett feels Collins is an excellent Trooper,Beckett feels Collins is wrong.,Beckett feels Collins is intelligent.,Beckett feels Collins is wise.,2,How does Beckett feel about Collins when she discusses the cases Collins referenced?,128855,Castle,0-32.81,castle_s07e23_seg02_clip_14,Beckett feels Collins is wrong. 6817,She was upset but didn't say anything.,She was angry and urged him to lie down.,She was shocked and urged him to lie down.,She was shocked and urged him to talk to Cuddy.,She was shocked and called Chase to help her.,2,How did Cameron respond after House started taking off his monitors to get out of bed?,128856,House M.D.,48.52-55.19,house_s02e24_seg02_clip_01,She was shocked and urged him to lie down. 6818,Pictures of the victim,Cups of coffee,Keys to the car,Cellphones,Their jackets,1,What did Ryan and Esposito take out of Castle's hands when they were leaving?,128857,Castle,18.99-20.85,castle_s03e15_seg02_clip_04,Cups of coffee 6819,Crap.,Spit.,Laxative.,Urine.,Melatonin.,0,What did Tritter say a nurse probably put in House's coffee when she was the last nurse he made fun of?,128858,House M.D.,72.67-79.19,house_s03e05_seg02_clip_02,Crap. 6820,"He said, they are crazy.","He said, they're running.","He said, they are crying","He said, they are laughing.","Marshall said, they're kissing!",4,What did Marshall say after the neighbor said they're kissing?,128859,How I Met You Mother,69.64-103.17,met_s06e15_seg02_clip_18,"Marshall said, they're kissing!" 6821,a flashlight,a light saber,a bat,a hockey stick,nothing,1,What does Leonard have in his hands when he goes out to the living room?,128860,The Big Bang Theory,29.25-35.38,s01e02_seg02_clip_04,a light saber 6822,A cup of coffee,The patient's chart,The patient's X-Ray,Medicine for the patient,His Cane,4,What does House have in his right hand when he walks into the room,128861,House M.D.,48.16-54.46,house_s05e15_seg02_clip_13,His Cane 6823,a sweatshirt,a tee shirt,"a shirt, tie and jacket",a sweater,a shirt no tie,2,How is Ross dressed when he tells Phoebe and Joey that Rachel's pregnant?,128862,Friends,1.55-5.58,friends_s08e03_seg02_clip_11,"a shirt, tie and jacket" 6824,green,blue,black,pink,white,3,what color shirt does rachel have on when talking to phoebe,128863,Friends,33.31-41.12,friends_s05e14_seg02_clip_12,pink 6825,He rereads the patient's chart,He leaves the room,He starts to cry,He begins to take down notes,He dials the woman's phone number,4,What does House do after the patient discloses his regrets?,128864,House M.D.,39.6-54.58,house_s06e16_seg02_clip_22,He dials the woman's phone number 6826,They are scary traditions.,They are silly traditions.,They are exciting traditions.,They are dumb traditions.,They are insignificant traditions.,1,What does Chandler think about bachelor parties when he is upset at the coffee shop?,128865,Friends,18.64-21.61,friends_s08e08_seg01_clip_01,They are silly traditions. 6827,Gates,Cameron,Cuddy,Carly,Lanie,2,Who did House accuse Masters of having a cross-generational female solidarity with after asking why she said honesty is the best policy?,128866,House M.D.,2.37-16.6,house_s07e07_seg02_clip_12,Cuddy 6828,stress fracture,infection,headache,tumor,kidney stone,1,What did Chase say the Patient woke up with when he was getting his rocks off withCameron?,128867,House M.D.,7.48-12.32,house_s03e16_seg02_clip_10,infection 6829,Pair of Queens ,Full house,Royal Flush,Pair of Kings,D cup,4,What does Chandler call Joey's hand when they are playing cards in their apartment?,128868,Friends,39.36-44.86,friends_s06e06_seg02_clip_12,D cup 6830,He says being homeless beats a 4.0 GPA,He says community service beats a 4.0 GPA,He says being sick beats a 4.0 GPA,He says the right recommendations beat a 4.0 GPA,He says family struggles beats a 4.0 GPA,4,What does House say beats a 4.0 GPA any day when he is going through Foreman's file?,128869,House M.D.,49.29-53.69,house_s01e10_seg02_clip_11,He says family struggles beats a 4.0 GPA 6831,Asked if he needed assistance?,Handed him a calculator.,Rolled his eyes and left.,No reaction.,Rachel handed Joey a calculator.,3,What was Chandler's reaction when Joey was having trouble adding with a calculator?,128870,Friends,54.9-62.03,friends_s08e22_seg02_clip_13,No reaction. 6832,A window sill.,A door.,A drawer.,A lamp.,A phone.,4,What did Cameron put her hand on after House said he didn't see how it would be possible?,128871,House M.D.,75.55-84.65,house_s05e13_seg02_clip_04,A phone. 6833,She wrapped a blanket around Sheldon.,She started singing.,She put a pillow and blanket on the couch.,She layed down on the couch.,She poured some wine.,2,What did Penny do when she walked in the room?,128872,The Big Bang Theory,14.05-16.65,s02e21_seg02_clip_14,She put a pillow and blanket on the couch. 6834,Her cell phone. ,Her wine glass.,Her napkin.,Her fork.,Her purse.,4,"What does Rachel set on the table after Paul says ""I didn't realize you were married""?",128873,Friends,38.72-45.02,friends_s06e21_seg02_clip_15,Her purse. 6835,he ignores her. ,he has sympathy for her. ,he gives her his full attention. ,He treats her as though he didn't really listen. ,"he tells her all is okay, ",3,How does Burke treat Dr. Bailey after she gets done talking? ,128874,Grey's Anatomy,18.55-33.13,grey_s03e06_seg02_clip_07,He treats her as though he didn't really listen. 6836,School meeting,Doctor's meeting,Nurse's meeting,Human Resources,Continuing education meeting,3,Which meeting does Cuddy say House has to go to after House talks about a tattoo with Wilson?,128875,House M.D.,0-22.57,house_s07e02_seg02_clip_03,Human Resources 6837,She wasn't scheduled,They closed for the night,There was a power outage,They gave her shift away,They now have new management,3,Why is Penny upset when she gets to work after crawling on the fire escape,128876,The Big Bang Theory,31.21-45.02,s01e14_seg02_clip_06,They gave her shift away 6838,Davison Jonet,Davis Johnson,Davi Joes,Dave Johnson,No one,3,Who was Eric talking about when he was talking to the group meeting?,128877,Castle,3.48-10.89,castle_s08e04_seg02_clip_12,Dave Johnson 6839,Jill had gone shopping.,Jill was at work.,Jill was dining out at a restaurant.,Jill was at the night club dancing.,Jill was out shoveling the walkway.,0,Where was Jill before she came in the door with her coat on?,128878,Friends,0-5.42,friends_s06e13_seg02_clip_05,Jill had gone shopping. 6840,they were in the investgation room,they were in Beckett's office,they were in the break room,they were in the interrogation room,they were outside the police station,2,Where did Beckett and Esoposito go after Beckett told Esposito that the Whitman's alibi checked out?,128879,Castle,71.88-79.21,castle_s07e11_seg02_clip_07,they were in the break room 6841,Cristina nods at George's father.,Cristina kisses Burke.,Cristina hugs Burke.,Cristina dances with Meredith.,Cristina walks out the door.,0,What does Cristina do after George's father thanks him?,128880,Grey's Anatomy,11.51-17.26,grey_s03e08_seg02_clip_25,Cristina nods at George's father. 6842,She puts down her drink,She eats some cake,She puts on makeup,She pops a balloon,She cries,0,What does Monica do before before Joey talks to Rachel about singing happy birthday?,128881,Friends,1.48-9.15,friends_s09e12_seg02_clip_13,She puts down her drink 6843,Drinking water,Playing cards,Massaging Monica,Eating an apple,Making a phone call,4,What was Phoebe doing before Joey walked in the room?,128882,Friends,42.49-52.72,friends_s01e07_seg02_clip_01,Making a phone call 6844,cold,seizure,cough,Hiccups,cancer,3,What did Susan have when Bailey pulled back the curtain to examine her?,128883,Grey's Anatomy,0-9.78,grey_s03e22_seg02_clip_06,Hiccups 6845,Sheldon thinks that Leonard is jealous. ,Sheldon thinks that Leonard is intimidated by Amy's intellect. ,Sheldon thinks that Leonard has feelings for Amy. ,Sheldon thinks that Leonard has feelings for Sheldon. ,Sheldon thinks that Leonard has feelings for his mom. ,1,Why does Sheldon tell Leonard to buck up when they are walking up the stairs?,128884,The Big Bang Theory,19.09-21.86,s04e03_seg02_clip_03,Sheldon thinks that Leonard is intimidated by Amy's intellect. 6846,He dug around a bag.,He took a handful of pills.,He took a swig of wiskey.,He flipped open a folder.,He massaged his leg.,4,What did House do after he sat down on the hallway bench?,128885,House M.D.,45.1-54.67,house_s02e23_seg02_clip_21,He massaged his leg. 6847,Robin falls down,Barney proposes to Robin,Barney walks away,Barney starts laughing,Robin laughs and walks away from Barney,4,What happens after the waiter walks by Robin and Barney?,128886,How I Met You Mother,0-5.88,met_s06e08_seg02_clip_05,Robin laughs and walks away from Barney 6848,They are picking out a turtle. ,They are picking out a puppy. ,They are picking out a kitten. ,They are picking out a spider. ,They are picking out a rat. ,0,Why are Amy and Sheldon doing when they are in the pet store?,128887,The Big Bang Theory,9.69-13.4,s08e17_seg02_clip_01,They are picking out a turtle. 6849,On the bed,On the floor,On the couch,On the table,On the Carpet,1,Where was the patient lying when House stood beside him?,128888,House M.D.,0-8.8,house_s02e06_seg02_clip_23,On the floor 6850,He turned him into a drug dealer.,He turned him into a star.,He turned him into a world class Santa.,He turned him into a world class person.,He turned him into a world class actor.,2,What did Dunne say he had done for Edmund when he was talking to Beckett and Castle about him?,128889,Castle,52.3-58.55,castle_s05e09_seg02_clip_06,He turned him into a world class Santa. 6851,Bandaids,Facial hair,Scratches,Sun glasses,Paint,1,"What is on Sheldon's, Raj's and Howard's faces when they are sitting in Sheldon's living room?",128890,The Big Bang Theory,0-4.35,s03e01_seg02_clip_02,Facial hair 6852,He is an anesthesiologist,"He is Dr. Wilson's supervisor, he is there to observe only",He is there for a consult.,He is a counselor,"He is a translator, he can translate better than Dr. Wilson.",2,Why does Dr. House tell the patient he is there when the patient asks Wilson who is he?,128891,House M.D.,67.7-77.3,house_s06e11_seg02_clip_09,He is there for a consult. 6853,Chandler had bad half-and-half that stole his car,Chandler had drank bad milk and gotten sick,Chandler hated the smell of bad milk,Chandler said the milk on the counter was bad,Chandler said that milk went bad when it was warm,0,What did Chandler say about bad milk when Monica came in?,128892,Friends,0-8.04,friends_s03e14_seg02_clip_13,Chandler had bad half-and-half that stole his car 6854,A statue,A photograpth,A cup,A bowl,A ladder,1,What is behind Annie when she goes to look for the case files,128893,Castle,36.01-46.12,castle_s07e19_seg02_clip_03,A photograpth 6855,He walks down the street and passes through a gate.,He walks into an abandoned building.,He crosses the street and catches a bus.,He walks into the coffee shop.,He walks up to the roof to hide.,0,Where does the suspect go before the police show up.,128894,Castle,101.78-110.74,castle_s03e06_seg02_clip_25,He walks down the street and passes through a gate. 6856,Joey is not in the apartment at all,Joey is in the kitchen dining room,Joey is alone on the couch ,Joey doesn't tell anything to anyone,Joey is in the living room sitting with his grandmother,4,Where is Joey when he is telling everyone about his part in a tv show?,128895,Friends,0-4.96,friends_s05e19_seg02_clip_04,Joey is in the living room sitting with his grandmother 6857,That he broke up with Amy.,That he got a new job.,That he was promoted.,That he was moving away.,That he was mad a Leonard.,0,What did Penny say she heard when she started talking to Sheldon.,128896,The Big Bang Theory,18.81-24.79,s04e03_seg02_clip_09,That he broke up with Amy. 6858,Cuddy's stethoscope is white,Cuddy's stethoscope is red,Cuddy's stethoscope is orange,Cuddy's stethoscope is blue,Cuddy's stethoscope is purple,3,What color is Cuddy's stethoscope when she is standing with House in the building rubble,128897,House M.D.,36.75-46.51,house_s06e21_seg02_clip_04,Cuddy's stethoscope is blue 6859,bullet proof jacket,jackets,sweater vests,chain link shirt ,weighted vest ,0,What are Grey and Burke wearing over their scrubs when they are in the operating room? ,128898,Grey's Anatomy,7.19-11.68,grey_s02e17_seg02_clip_08,bullet proof jacket 6860,They walk into the elevator. ,They walk up the stairs. ,They walk into the men's room. ,They walk down the stairs. ,They go into a library. ,1,Where do Alfred and Leonard go when they are talking? ,128899,The Big Bang Theory,3.52-12.16,s09e24_seg02_clip_06,They walk up the stairs. 6861,Esposito admired John Bierman,Esposito admired Jenna Marchman,Esposito admired Caleb Brown,Esposito admired Nicki Griffin,Esposito admired Jennifer Schwartz,2,Which defense attorney did Esposito seem to admire after they discussed Nina's case,128900,Castle,25.93-36.01,castle_s08e10_seg02_clip_26,Esposito admired Caleb Brown 6862,She was singing.,She was playing music.,She was changing clothes.,She was cooking.,She was writing.,4,"What was Monica doing, when the phone rung?",128901,Friends,14.28-18.94,friends_s02e08_seg02_clip_18,She was writing. 6863,walked away,laughed,danced,sat down,stood up,0,What did the announcer do after he was done talking?,128902,Castle,0-9.45,castle_s08e09_seg02_clip_08,walked away 6864,Penny tells Leonard to leave her alone.,Penny invites Leonard into her apartment.,Penny slams the door shut.,Penny takes out her cell phone.,Penny goes to make dinner.,2,What does Penny do after talking with Leonard?,128903,The Big Bang Theory,38.66-42.21,s02e07_seg02_clip_04,Penny slams the door shut. 6865,Taub and Rachel started kissing,Taub and Rachel walked out the room,Taub and Rachel went for counseling,Taub and Rachel had sex,Taub and Rachel asked for forgiveness from each other.,0,What did Taub and Rachel do after they agreed that something was seriously wrong with them?,128904,House M.D.,61.61-72.17,house_s07e18_seg02_clip_25,Taub and Rachel started kissing 6866,She's passing out.,She's convulsing.,She's sweating.,She's screaming.,She's hallucinating.,4,"What the patient is doing before house requests the team to ""freeze it""?",128905,House M.D.,0-14.7,house_s02e23_seg02_clip_06,She's hallucinating. 6867,No one got me an engagement present.,Cookies aren't engagement presents!,I got a blender.,Chandler didn't get me anything.,You don't need an engagement present.,0,"What did Ross say about his engagement present after Monica, Chandler, and Phoebe were discussing what Monica wanted?",128906,Friends,35.09-38.45,friends_s07e03_seg02_clip_03,No one got me an engagement present. 6868,a grenade,a gun,a knife,a sandwich,a folder,4,"What was Castle holding in his hand when he said ""Recent episodes were triggered by his son's death""?",128907,Castle,12.31-18.73,castle_s05e13_seg02_clip_15,a folder 6869,The weapon.,The fingerprints.,The altitude chamber.,The empty wine glasses.,The cellphone they found at the crime scene.,2,What did Beckett say when she was talking to Castle would lead straight to the killer?,128908,Castle,0-11.7,castle_s03e09_seg02_clip_08,The altitude chamber. 6870,At castles house,A coffee shop,A dark park,A dark hospital,A dark parking garage,4,Where did castle meet the mystery man after calling him up?,128909,Castle,84.5-93.03,castle_s04e12_seg02_clip_26,A dark parking garage 6871,"She said ""I already know""","She said ""yes sir""",She walked away,"She said ""What are you talking about""",She started crying,1,How did Cristina react after Richard scolded her?,128910,Grey's Anatomy,0-57.98,grey_s02e06_seg02_clip_04,"She said ""yes sir""" 6872,20 appetizers,11 appetizers,6 dinners,12 steaks,4 different salads,1,What did Ted mention when he spoke about McClaren's restaurant?,128911,How I Met You Mother,0-10.04,met_s02e20_seg02_clip_07,11 appetizers 6873,He will get over it,He doesn't want her to lie,He wants her honesty,He will get over it,He just wanted to know,4,What does Burke tell Cristina after she assure's he's not mad?,128912,Grey's Anatomy,0-16.22,grey_s02e13_seg02_clip_20,He just wanted to know 6874,Monica is. ,Rachel is. ,Phoebe is. ,Chandler is. ,Joey is. ,1,Who is talking about a plan when it's their birthday?,128913,Friends,0-3.36,friends_s07e14_seg02_clip_12,Rachel is. 6875,Ross is listening to music.,Ross is listening to a movie.,Ross is listening to book on tape.,Ross is listening to the airport instructions.,Ross is listening to people talking.,0,What is Ross doing when he is in line at the airport?,128914,Friends,17.29-19.08,friends_s01e24_seg02_clip_12,Ross is listening to music. 6876,House carries a cane.,House carries a puppy,House carries a necklace.,House carries a book,House carries a pencil,0,What does House carry in his hand when he talks about people not wanting a sick doctor with Wilson?,128915,House M.D.,0-17.04,house_s01e01_seg02_clip_00,House carries a cane. 6877,90 Hours.,80 Hours.,60 Hours.,70 Hours.,100 Hours.,0,How many hours did Lily say she worked when she was arguing with Marshall?,128916,How I Met You Mother,23.37-28.7,met_s06e21_seg02_clip_03,90 Hours. 6878,Pulled her gun,Kissed Castle,Drank a beer,Stood up,Hugged Lanie,3,What did Beckett do after Castle said something about money?,128917,Castle,80.1-87.38,castle_s03e01_seg02_clip_15,Stood up 6879,Phoebe was there to deliver his cold medicine.,Phoebe intended to take him home to his mother's.,Phoebe was there to attend the Parent Teacher conference.,Phoebe intended to sit Ben and one of the other kids he got in trouble with down and have a talk with him.,Phoebe was there as a substitute teacher and wanted to say hi to her nephew.,3,What did Phoebe intend to do for her nephew when she got to his school?,128918,Friends,18.86-53.98,friends_s08e10_seg02_clip_09,Phoebe intended to sit Ben and one of the other kids he got in trouble with down and have a talk with him. 6880,A bandage,Food,Milk,Marker,Blood,4,What is on Jason's face when he yells at Castle about being hit in the face?,128919,Castle,64.6-72.62,castle_s07e04_seg02_clip_14,Blood 6881,Ross walks away from Rachel,Ross huggs Rachel in response,Ross tells Rache to be more understanding,Ross tells Rachel to sit down and relax,Ross doesn't do anything,1,What does Ross do when Rachel tells him she doesn't want a seperate room from him?,128920,Friends,7.88-13.87,friends_s03e07_seg02_clip_14,Ross huggs Rachel in response 6882,She dropped some sandwich.,She dropped some candy.,She dropped some mints.,She dropped some jello.,She dropped some ice cream.,4,What does Ted tell Robin when she is in the backseat?,128921,How I Met You Mother,23.71-26.71,met_s03e15_seg02_clip_13,She dropped some ice cream. 6883,Eve,Eva,Cuddy,Juliet,Maria,2,"Who was House talking to when he said ""You wanna make out""?",128922,House M.D.,52.56-59.54,house_s06e14_seg02_clip_20,Cuddy 6884,Castle has a phone.,Castle has a coffee cup.,Castle has a broom.,Castle has a book.,Castle has a note pad.,1,What does Castle have in his hands when he is standing with Rita?,128923,Castle,5.46-8.19,castle_s08e11_seg02_clip_22,Castle has a coffee cup. 6885,the undercover detective,Lanie,Seeger,Espositio,Ryan,4,Who did Beckett say she was going to look into Hernand's allegations of dog show betting after Castle said it was ingenious?,128924,Castle,79.38-90.72,castle_s04e13_seg02_clip_02,Ryan 6886,Esposito is on the phone with Ryan,Castle is on the phone with Ryan,Beckett is on the phone with Ryan,Montgomery is on the phone with Ryan,No one is on the phone with Ryan,3,Who is on the phone with Ryan when he is relaying th evidence he has found so far?,128925,Castle,9.89-17.63,castle_s03e06_seg02_clip_14,Montgomery is on the phone with Ryan 6887,Park is looking through the window of a patient's room before walking towards Taub,Chase is looking through the window of a patient's room before walking towards Taub,Masters is looking through the window of a patient's room before walking towards Taub,Kutner is looking through the window of a patient's room before walking towards Taub,Foreman is looking through the window of a patient's room before walking towards Taub,3,Who is looking through the window of a patient's room before walking towards Taub,128926,House M.D.,75.19-84.76,house_s05e18_seg02_clip_06,Kutner is looking through the window of a patient's room before walking towards Taub 6888,Mike,Monica,Phoebe,Chandler,Chandler's mother,3,Who came in the cafe when Ross and Joey were sitting on the couch?,128927,Friends,27.85-32.09,friends_s04e22_seg02_clip_03,Chandler 6889,They duck down and turn away from her,They run out of the room,The applaud,They throw pillows at her,They start eating,0,How does everyone react after Monica picks up the wine glass?,128928,Friends,36.22-40.02,friends_s01e18_seg02_clip_22,They duck down and turn away from her 6890,his lights start blinking off and on ,Howard ran into a parked car,They fell,the brakes went out,Sheldon start screaming ,4,What happened when Howard went over the road bump?,128929,The Big Bang Theory,0-48.18,s02e05_seg02_clip_04,Sheldon start screaming 6891,a dandelion,a pigeon,a rose,a daisy,a dove and egg,4,What did Barney pull out of his coat when Nora left?,128930,How I Met You Mother,0-15.13,met_s06e16_seg02_clip_14,a dove and egg 6892,He had a laptop in his hand.,He had a folder in his hand.,He had a radio in his hand.,He had a cell phone in his hand.,He had a glass bottle in his hand. ,4,What did House have in his hand when he was talking?,128931,House M.D.,14.4-20.65,house_s02e16_seg02_clip_16,He had a glass bottle in his hand. 6893,A bunch of gauges.,Pictures of fast food entrees. ,Peeling wallpaper. ,"A series of x-rays, showing skull views. ",A large clock. ,3,"What is on the wall behind Adams when she says,""You're weird?""",128932,House M.D.,2.23-8.01,house_s08e08_seg02_clip_09,"A series of x-rays, showing skull views. " 6894,He drank water,He put his feet on the table,He took off his tie,He leaned on Chandler's shoulder,He stood up after sitting on the courch,4,"What did Ross do when he said ""Well who wants fair""?",128933,Friends,28.27-32.88,friends_s01e03_seg02_clip_19,He stood up after sitting on the courch 6895,Castle finds an incriminating photo of Greg.,Castle finds a stack of playing cards.,Castle finds a book.,Castle finds a stack of Greg's letters to Amy.,Castle finds a funny photo of Beckett.,3,What does Castle find after Beckett says maybe they'll catch a break?,128934,Castle,15.93-26.4,castle_s03e05_seg02_clip_18,Castle finds a stack of Greg's letters to Amy. 6896,He explains it is not on Star Wars Christmas,He explains it is 7-8-9,He explains it is not on Wooky Life Day,He explains it is May the fourth,He explains it is not Marvel Day,3,Which day does Leonard explain is Star Wars day when they are sitting around eating,128935,The Big Bang Theory,18.96-35.98,s07e22_seg01_clip_00,He explains it is May the fourth 6897,a picture of his parents,a coffee stain,a picture of Raj,stickers,a lipstick smudge,3,What is on the back of Raj's laptop when Penny is holding it? ,128936,The Big Bang Theory,8.68-12.15,s02e04_seg02_clip_15,stickers 6898,happy,unhappy,nervous,irritated,bored,1,How did Sheldon feel when he was going to be having to see Priya more with Leonard?,128937,The Big Bang Theory,37.52-48.07,s04e17_seg02_clip_03,unhappy 6899,She has a sinus infection.,She's allergic to the dog.,She has a cold.,She's allergic to the cat.,She has the flu.,3,Why did House say Mandy had clogged sinus' when she was in the exam room with him?,128938,House M.D.,15.17-18.29,house_s02e04_seg02_clip_05,She's allergic to the cat. 6900,A 7 eleven,A party location,An obituary ,The closest pizza place,The name of his dead mother ,2,What did House say he googled after mentioning someone being to young for having a dead mom?,128939,House M.D.,9.1-17.75,house_s04e08_seg02_clip_18,An obituary 6901,Fire Joeys friend,Fire joey,Take a lunch break,Take a bathroom break,Take a smoke break ,0,What does joeys director want to do before he continues filming?,128940,Friends,46.82-52.22,friends_s09e11_seg02_clip_18,Fire Joeys friend 6902,At the dining room table.,In the kitchen by the refrigerator.,On the living room sofa.,In the restaurant at the table.,In the kitchen by the sink.,4,Where is Raj when his sister Priya tells him to stop feeling sorry for himself.,128941,The Big Bang Theory,6.09-11.26,s04e22_seg02_clip_03,In the kitchen by the sink. 6903,Leonard.,Arthur.,George.,Donald.,Amy.,1,What name did Sheldon utter when he knocked on the door?,128942,The Big Bang Theory,49.31-59.23,s07e07_seg02_clip_04,Arthur. 6904,Alexis and Hayley examine it with him,Beckett and Alexis examine it with him,Ryan and Espositio examine it with him,His mother and Alexis examine it with him,Esposito and Beckett examine it with him,0,Who examines the document with Castle when he looks at it?,128943,Castle,20.71-35.43,castle_s08e02_seg02_clip_12,Alexis and Hayley examine it with him 6905,She will bring back presents.,Castle will miss her more.,She will never leave.,Castle will get sick of her.,Castle will forgot her name.,3,What does Alexis say will happen after she comes back to visit?,128944,Castle,0-4.6,castle_s04e13_seg02_clip_27,Castle will get sick of her. 6906,His neighbor,House,The milk man,His girlfriend,Himself,1, Who did Wilson see after he opened the door?,128945,House M.D.,46.87-59.37,house_s05e21_seg02_clip_10,House 6907,The sales clerk had shown a pair of fuzzy handcuffs,The sales clerk had shown them whips,The sales clerk told them to get out,The sales clerk did not show them anything,The sales clerk had shown a bounage set,0,What did the sales clerk show Beckett and Castle after he walked away?,128946,Castle,30.81-33.01,castle_s02e16_seg02_clip_04,The sales clerk had shown a pair of fuzzy handcuffs 6908,Dr. Foreman,A patient.,A nurse.,Wilson,Dr. Chase,3,Who told Cuddy No when she wanted to go talk to House?,128947,House M.D.,1.35-4.5,house_s03e01_seg02_clip_26,Wilson 6909,She says she hasn't seen Penny in a while. ,She says she wants Penny to go home. ,She says she doesn't like her. ,She tells her she will never get the part. ,She tells her to go away. ,0,What does the girl say when she sees Penny at the audition?,128948,The Big Bang Theory,51.02-53.04,s08e21_seg02_clip_10,She says she hasn't seen Penny in a while. 6910,She is exercising. ,She is cooking. ,She is playing a game. ,She is doing a cross word puzzle. ,She is doing taxes. ,4,What is Bernadette doing when she is home with Howard?,128949,The Big Bang Theory,55.51-62.02,s08e17_seg02_clip_03,She is doing taxes. 6911,Coughing,Singing,Sneezing,Chandler was talking to a man.,He was laughing.,3,What was Chandler doing before Monica walked up?,128950,Friends,0-2.88,friends_s05e17_seg02_clip_11,Chandler was talking to a man. 6912,He is dying.,He has been there for 40 years.,He is ill.,He has to attend court ordered detox program.,He got caught having an affair with a student.,3,Why is the professor retiring when Ross tells Rachel and Joey he will be taking over his class?,128951,Friends,20.78-26.98,friends_s08e12_seg02_clip_00,He has to attend court ordered detox program. 6913,the dog barks,Beckett responds saying that is a silly question,no one responds,a little boy laughs,"emma responds ""what do you mean?""",4,Who responds when castle asks how do you text love you?,128952,Castle,1.82-3.19,castle_s06e04_seg02_clip_10,"emma responds ""what do you mean?""" 6914,Raj,Sheldon,Kurt,Howard,Penny was standing by herself.,2,Who was standing next to Penny when Leonard approached her to talk?,128953,The Big Bang Theory,14.95-61.02,s01e06_seg02_clip_10,Kurt 6915,To help him deliver gifts.,To go find Lily.,To call Ted for help.,Marshall's going to pay for the gifts.,Marshall decides to call Barney and ask for money.,0,What does Marshall decide after talking with the driver?,128954,How I Met You Mother,22.93-32.71,met_s02e11_seg02_clip_14,To help him deliver gifts. 6916,Because Sam replaced the regular milk with soy milk.,Because Sam threw out all the unhealthy foods.,Because Sam put the milk in the fridge door and not on the shelf.,Because Sam filled the fridge with fruit.,Because Sam rearranged everything in the fridge.,2,Why did House say he saw the end of Wilson's and Sam's relationship when he looked in the fridge?,128955,House M.D.,81.33-85.1,house_s06e18_seg02_clip_00,Because Sam put the milk in the fridge door and not on the shelf. 6917,Castle is holding a cold slab of meat to his chest.,Castle is holding a bag of frozen peas to his chest.,Castle is holding a bag of ice cubes to his chest.,Castle is holding a raw chicken breast to his chest.,Castle is holding a glass of water to his chest.,2,What is Castle holding to his chest when he is talking about who may be the murderer?,128956,Castle,37.09-72.34,castle_s06e04_seg02_clip_18,Castle is holding a bag of ice cubes to his chest. 6918,Because Rachel told Ross he was not welcomed in their apartment anymore,Because Rachel told Ross his parents made ugly babies,Because Rachel told Ross he would end up alone like Monica,Because she told Ross that she sees why Monica is the way that she is now,Because Rachel told Ross the spelling tips would come in handy when he was playing Scrabble with Monica on Saturday nights,4,"Why did Monica yell ""Hey"" after Rachel was yelling at Ross",128957,Friends,20.51-47.57,friends_s04e01_seg02_clip_19,Because Rachel told Ross the spelling tips would come in handy when he was playing Scrabble with Monica on Saturday nights 6919,An engagement ring,Flowers,A pipe organ,A bikini,Tickets to the opera,2,What did Monica guess the man on TV bought the woman on TV when the woman got upset?,128958,Friends,22.76-35.12,friends_s01e01_seg02_clip_05,A pipe organ 6920,The color of Derek's sweater was pink,The color of Derek's sweater was brown,The color of Derek's sweater was green,The color of Derek's sweater was black,The color of Derek's sweater was blue,3,What color is Derek's sweater when he is working on a patient's airway,128959,Grey's Anatomy,38.25-47.72,grey_s03e17_seg02_clip_10,The color of Derek's sweater was black 6921,She cracked the case,She got a new boyfriend,She has a crush on him,Sunshine Electronics,She knows who the killer is,3,What does Becket say the good word is after Castle asks?,128960,Castle,0-33.9,castle_s02e03_seg02_clip_20,Sunshine Electronics 6922,Give her a hug,Scratch his head,Wave good-bye,Rub his hands together nervously,Stand up,3,What does Ross do after Charlie thanks hiim?,128961,Friends,4.8-9.92,friends_s09e21_seg02_clip_20,Rub his hands together nervously 6923,Agent Mark Fallon,Beckett,Castle,Captain Montgomery,No one,3,Who tries to defend Beckett and Castle when Agent Mark Fallon insists they both be removed from the task force,128962,Castle,12.19-27.1,castle_s03e16_seg02_clip_23,Captain Montgomery 6924,A plate.,A coffee cup.,A paper weight.,A phone reciever.,A medicine bottle.,3,What did Cameron put down before saying methotrexate?,128963,House M.D.,34.13-38.23,house_s05e13_seg02_clip_04,A phone reciever. 6925,Money,Liquor,Persuading,Lies,Courage,4,What did Ross say it took a lot of for Rachel to come to the wedding when he stood and spoke up?,128964,Friends,44.55-61.03,friends_s02e24_seg02_clip_14,Courage 6926,A black bag,A pair of earrings,A photo,A file folder,An engagement ring,4,What did Ryan hand to Castle after he asked him how it's going?,128965,Castle,71.85-79.21,castle_s03e11_seg02_clip_00,An engagement ring 6927,1am,10pm,11pm,Midnight,8pm,3,When does Shaw want them all in custody after they have six names?,128966,Castle,15.18-20.71,castle_s02e17_seg02_clip_14,Midnight 6928,They went into the bedroom,They had sex,They heard a man singing in the next room,A child came into the room,They heard screaming upstairs,2,What happened after Sam kissed Wilson,128967,House M.D.,88.86-94.03,house_s06e17_seg02_clip_16,They heard a man singing in the next room 6929,Cameron,Chase,Cuddy,Wilson,Foreman,3,Who is probably going to jail with House when the cops find out he is lying for him?,128968,House M.D.,47.79-76.46,house_s03e08_seg02_clip_01,Wilson 6930,The questioner granted parole hearing.,The questioner said she'd let the inmate talk to him.,The questioner said nothing.,The questioner took the inmate out the room.,The questioner laughed.,2,What did the questioner say after the female inmate told her this is how you get Hammerhead?,128969,Castle,36.91-45.91,castle_s08e16_seg02_clip_04,The questioner said nothing. 6931,Sheldon speaks Wookie.,Sheldon speaks Star Treks.,Sheldon speaks Star Wars.,Sheldon speaks Vulcan.,Sheldon speaks Chewbacca.,3,What language does Sheldon speak when he is talking to his friends?,128970,The Big Bang Theory,24.71-33.87,s09e07_seg02_clip_12,Sheldon speaks Vulcan. 6932,Ross is dressed as a lobster.,Ross is dressed as a baseball player.,Ross is dressed as an armadillo.,Ross is dressed as an astronaut.,Ross is dressed as a fireman.,2,How is Ross dressed when he's telling Ben the story about Hanukkah?,128971,Friends,14.78-20.32,friends_s07e10_seg02_clip_16,Ross is dressed as an armadillo. 6933,So everyone will get offended instead of just one of them. ,So no one feels steamrolled when they are trying to talk. ,So they can write a book on the technique. ,So they can make up an experiment. ,So they can write a hypothesis. ,1,Why are the guys trying a new conversational technique when they are together?,128972,The Big Bang Theory,7.78-15.28,s08e21_seg02_clip_10,So no one feels steamrolled when they are trying to talk. 6934,sit down,walk out,made a call,worked on laptop,took off coats,1,What do the men do after Gates is done talking?,128973,Castle,0-5.64,castle_s07e15_seg02_clip_05,walk out 6935,Paperwork,A gun,His badge,A helmet,Two tickets,0,What did Kevin hand over after Beckett said something about DNA?,128974,Castle,0-9.53,castle_s04e13_seg02_clip_02,Paperwork 6936,Cristina had to baby sit her sister's daughter,Cristina was suffering from insomnia.,Cristina was on call last night.,The neighbor's dog kept waking Cristina up with his barking.,Cristina's bed was too uncomfortable to sleep on.,2,Why didn't Cristina get much sleep last night when she was at home?,128975,Grey's Anatomy,64.83-68.89,grey_s01e04_seg02_clip_11,Cristina was on call last night. 6937,on the table,inside her apartment,Outside her apartment door,behind Ted,At the end of the hall,2,Where was Robin standing when she first greeted Ted?,128976,How I Met You Mother,0.59-4.7,met_s03e01_seg02_clip_16,Outside her apartment door 6938,She was getting sleepy.,She wanted to go home with him.,She had to work the next morning.,She was getting cold.,She wanted Barney to take her home.,1,Why did Honey tell Ted it was time to go home before Barney took Ted to the side? ,128977,How I Met You Mother,17.71-33.31,met_s06e15_seg02_clip_02,She wanted to go home with him. 6939,A video screen.,A traffic ticket.,A train station.,A parking meter.,A newspaper stand.,3,What did Stella and Ted pass after they got up from the table?,128978,How I Met You Mother,56.45-62.03,met_s03e13_seg02_clip_16,A parking meter. 6940,That she had homework to do.,That she had a boyfriend.,That she thought she had a dinner shift on Friday.,That she was washing her hair. ,That she already had plans. ,2,What did Penny say after Leonard asked her to a movie on Friday?,128979,The Big Bang Theory,27.6-35.97,s02e01_seg02_clip_04,That she thought she had a dinner shift on Friday. 6941,Rachel.,Monica.,Phoebe.,Chandler.,Joey.,1,Who kick on the leg of Ross after saying I have?,128980,Friends,26.11-29.59,friends_s03e09_seg02_clip_10,Monica. 6942,Rachel was trying to fill the coffee cups.,Rachel was trying to clean the table off.,Rachel was trying to taste the food.,Rachel was trying to mop the floor.,Rachel was trying to give Ross a kiss.,2,What was Rachel trying to do before Ross ate everything on his plate?,128981,Friends,9.92-19.85,friends_s06e09_seg02_clip_17,Rachel was trying to taste the food. 6943,She laughed.,She stood up.,She wrote something down.,She grabbed her husbands hand.,She cried.,2,What did Melanie do after she said no?,128982,House M.D.,14.88-21.86,house_s05e16_seg02_clip_06,She wrote something down. 6944,He believed he was improperly dressed and had no place to talk in the office. ,He believed She heard an advice and was arrogant,He believed She was not in the best position to talk about it,He believed she was being rude and need to shut up,He believed she read a book and was manipulative.,4,Why did House asked Cameron to stop talking when she approached to talk to him?,128983,House M.D.,45.67-69.44,house_s01e14_seg02_clip_00,He believed she read a book and was manipulative. 6945,be quiet,How do you know that?,That's not true,Never been proven.,Oh yea I almost forgot. ,3,What did Toby say after Sheldon said don't forget genetic predisposition towards addiction?,128984,The Big Bang Theory,0-37.83,s01e10_seg02_clip_14,Never been proven. 6946,Lily is sitting in front of the computer.,Ted is sitting in front of the computer.,Barney is sitting in front of the computer.,Marshall is sitting in front of the computer.,Robin is sitting in front of the computer.,2,Who is sitting in front of the computer when he is watching Robin's music video?,128985,How I Met You Mother,0-2.66,met_s02e09_seg02_clip_18,Barney is sitting in front of the computer. 6947,She had always wanted to know if she had done the right thing,She wanted to thank him for Castle,She was glad she could relive her younger days if only for a day,He had been part of a very happy time in her life,She had always wondered if he was the one who got away,4,Why did Martha indicate she was glad she could see Castle's father again when she and Castle were talking?,128986,Castle,112.44-120.91,castle_s06e12_seg02_clip_26,She had always wondered if he was the one who got away 6948,How can that be possible?,I can't believe it.,Are you sure?,Shut the front door.,We need to call him back.,3,What does Castle say after Beckett tells him that Hasberg was telling the truth?,128987,Castle,69.49-75.05,castle_s03e15_seg02_clip_04,Shut the front door. 6949,Hicks,Esposito,Castle,Henry,Mickey,3,Who was always there for Zhang when she was growing up?,128988,Castle,85.9-89.48,castle_s07e17_seg02_clip_19,Henry 6950,He wanted to see the heart transplant.,He lost his wallet.,He's getting sick.,Izzie's fighting with him.,Meredith's mad at him.,0,Why is Alex upset after leaving Bailey's huddle?,128989,Grey's Anatomy,14.88-27.85,grey_s02e12_seg02_clip_03,He wanted to see the heart transplant. 6951,Mike kissed her,Mike held her hand,Mike hugged her,Mike left the apartment,Mike went to the bathroom,0,What did Mike do after Phoebe closed her eyes and waited for him to leave,128990,Friends,25.02-37.53,friends_s09e04_seg02_clip_18,Mike kissed her 6952,He gives a thumbs up sign,He walks towards the door,He turns around,He puts his hands up,He sits down too?,4,What does Eddie do after Castle sits down?,128991,Castle,20.03-28.22,castle_s03e19_seg02_clip_23,He sits down too? 6953,On the table.,In the sink.,On the floor.,In the dishwasher.,On the counter.,0,Where did Raj put his glass after he took a sip?,128992,The Big Bang Theory,0-7.5,s07e19_seg02_clip_15,On the table. 6954,Phoebe ,Florence Henderson,Their mom,Nana,Gunther,2,Who does Ross say that Monica is like when they are teasing her about being too clean?,128993,Friends,21.36-33.26,friends_s01e06_seg02_clip_11,Their mom 6955,smaller male,beta male,larger male,alpha male,father figure,3,What did Sheldon say Leonard would be when he opened the jar of asparagus?,128994,The Big Bang Theory,16.13-22.64,s02e09_seg02_clip_12,alpha male 6956,Because they needed to hurry and leave.,"Because if she calls and tells Ashley then he will tell his parents , they'll call someone else.",Because her phone is dead.,Because he wants to use her phone.,Because he needs to pay her phone bill first.,1,Why did Castle tell Alexis she can not call Ashley after she picks up her phone?,128995,Castle,11.04-28.53,castle_s03e17_seg02_clip_10,"Because if she calls and tells Ashley then he will tell his parents , they'll call someone else." 6957,A dogs coat,His hair,Throught a book,Over eveidence,The landscape,0,What was Mr. Hernand combing before Beckett asked him his whereabouts?,128996,Castle,22.68-32.2,castle_s04e13_seg02_clip_02,A dogs coat 6958,Marshal is scared of Bozo the Clown,Marshal is scared of Chuckie the doll, Marshal is scared of Dumbo the elephant,Marshal is scared of Sasquatch,Marshal is scared of Kim Kardashian,3,Who did Lily say Marshal is scared of when they are discussing their relationship,128997,How I Met You Mother,28.92-41.91,met_s02e09_seg02_clip_01,Marshal is scared of Sasquatch 6959,A surveillance vidoe.,A Zombie fim.,A cartoon.,A flight.,A flotaing box.,3,What was Beckett watching on the screen before Esposito smiled at her?,128998,Castle,12.02-21.37,castle_s07e21_seg02_clip_19,A flight. 6960,He is sitting in the kitchen chair,He is sitting on the floor,He is sitting on the table,He is sitting on the couch,He is sitting on the counter,0,Where is Chandler sitting when talking to Rachel?,128999,Friends,1.68-9.52,friends_s04e06_seg02_clip_07,He is sitting in the kitchen chair 6961,Beckett feels guilty.,Beckett feels excited.,Beckett feels happy.,Beckett feels relieved.,"Beckett feels threatened by Serena's ""hostile takeover.""",4,How does Beckett feel toward Serena when she discusses the thief with Serena?,129000,Castle,0-19.01,castle_s04e05_seg02_clip_05,"Beckett feels threatened by Serena's ""hostile takeover.""" 6962,Tie his shoes,Say dada,Whistle,Drink his bottle,Put his teddy bear down,1,What was Ross trying to get Ben to do after they came to see Rachel?,129001,Friends,31.73-48.52,friends_s02e20_seg02_clip_07,Say dada 6963,justin,graham,ryan,castle,lorenzo,1,who did esposito say was a lousy gambler when talking to graham ?,129002,Castle,24.45-32.44,castle_s08e05_seg02_clip_23,graham 6964,Because Raj dropped his food.,Because Raj kissed her?,Because Raj said the word sex.,Because Raj went outside.,"Because Raj said ""I hate you"".",2,Why Bernadette was upset with Raj after putting his tag under his vest? ,129003,The Big Bang Theory,6.58-94.02,s07e17_seg01_clip_00,Because Raj said the word sex. 6965,Purple,Blue,Green,Red,Black,4,"What color is the jacket that House is wearing when he say's ""Where are you metting her?""?",129004,House M.D.,0-9.79,house_s05e06_seg02_clip_01,Black 6966,He is discussing ethical responsibility with Chase,He is discussing ethical responsibility with Cameron,He is discussing ethical responsibility with Foreman,He is discussing ethical responsibility with Wilson,He is discussing ethical responsibility with Robin,3,Who is House discussing ethical responsibility with when he sits down at his desk,129005,House M.D.,0-11.77,house_s01e14_seg02_clip_20,He is discussing ethical responsibility with Wilson 6967,Radiation.,A blood transfusion.,Chemotherapy.,A bone marrow transplant.,An antibiotic.,3,"What did House say the baby needed after Chase, Parks and Adams told him their findings?",129006,House M.D.,40.06-44.56,house_s08e06_seg02_clip_06,A bone marrow transplant. 6968,Randy slips and falls,Randy walks up to the group,Barney kicks Randy,Ted spills his beer,Lilly vomits ,1,What happens after ted looks at Lilly?,129007,How I Met You Mother,12.77-13.93,met_s06e07_seg02_clip_11,Randy walks up to the group 6969,picture in a frame,large ceramic rabbit,laptop,cell phone,file,4,What is Sorenson looking at when Castle walks into the kitchen?,129008,Castle,21.32-27.21,castle_s01e09_seg02_clip_05,file 6970,Danny doesn't say anything,Danny doesn't want his sister to get in their way,Danny doesn't want for Rachel's doubts to get in their way,Danny doesn't want his close relationship to his family to stand in their way,Danny doesn't want his feelings to get in their way,3,What does Danny not want to stand in their way when he talks to Rachel about their relationship?,129009,Friends,41.63-48.19,friends_s05e10_seg02_clip_16,Danny doesn't want his close relationship to his family to stand in their way 6971,Castle becomes serious and haunted with concern.,Castle passes out.,Castle cries.,Castle hugs Beckett.,Castle runs out the door.,0,When Mr. Walters describes the ghost how does Castle react after?,129010,Castle,11.7-21.61,castle_s07e23_seg02_clip_02,Castle becomes serious and haunted with concern. 6972,The kitchen table,The couch,The floor,The bed,The rug,3,Where did Rachel and Ross go sit after Ross agreed to stay with Rachel for a while?,129011,Friends,20.46-58.45,friends_s10e13_seg02_clip_09,The bed 6973,A nurse. ,Cuddy,Wilson,Chase,Foreman,3,Who had a pool going according to Wilson when he was talking to House?,129012,House M.D.,11.05-19.8,house_s04e06_seg02_clip_15,Chase 6974,nurse,Dr Taylor,George,patient,Meredith ,2,Who asks Derek if he smells something before surgery? ,129013,Grey's Anatomy,65.35-76.83,grey_s01e07_seg02_clip_12,George 6975,Ross tells her he doesn't like coffee.,Ross tells her he needs to get home.,Ross asks her where Montreal is.,Ross agrees to have coffee with her.,Ross asks the passenger what time it is.,3,What does Ross do after the female passenger confirms the train is Montreal?,129014,Friends,47.29-56.86,friends_s04e10_seg02_clip_18,Ross agrees to have coffee with her. 6976,Typing,Jumping,Sleeping,Sitting,writing,4,What was Cameron doing when House asked if she has spoken to Wilson?,129015,House M.D.,0.47-3.76,house_s05e01_seg02_clip_09,writing 6977,Stuart,Raj,Leonard,Penny,Amy,1,Who was Howard trying to make jealous when he took the picture?,129016,The Big Bang Theory,6.79-26.87,s08e21_seg02_clip_03,Raj 6978,because he broke a test tube,because he compares her work to what they do at Quiznos,because he ate her lunch,because he knock over lab equipment,because he won't hold her hand,1,Why is Amy angry at Sheldon before she hands him the scalpel?,129017,The Big Bang Theory,6.82-28.53,s05e16_seg02_clip_12,because he compares her work to what they do at Quiznos 6979,"Esposito, and Kevin are playing by Todd desk","Esposito, and Kevin are playing by the park","Esposito, and Kevin are playing by Kevins desk","Esposito, and Kevin are playing by Esposito desk","Esposito, and Kevin are playing by Becketts desk",4,"Where are Esposito, and Kevin playing Knife, Gun, Kevlar at when they are together?",129018,Castle,59.37-67.79,castle_s08e01_seg02_clip_01,"Esposito, and Kevin are playing by Becketts desk" 6980,The door crashes open. ,The door closes. ,A bomb goes off. ,A cell phone rings. ,Castle interrupts them. ,0,What happens before Beckett can tell Gage who the target is?,129019,Castle,72.18-81.42,castle_s04e16_seg02_clip_14,The door crashes open. 6981,On the side of the victims body,On the victims back,On the Victims leg,On the Victims stomach,On the victims chest next to the Y incision,4,Where did Lanie discover something on the victims body before showing Castle and Beckett?,129020,Castle,4.05-12.15,castle_s06e19_seg02_clip_05,On the victims chest next to the Y incision 6982,Meredith and Bailey were arguing,Meredith and Bailey were having fun,Meredith and Bailey were taking a selfie.,Meredith and Bailey were waking the girl.,Meredith and Bailey were talking.,0,What were doing Meredith and Bailey when operating a girl?,129021,Grey's Anatomy,78.24-88.83,grey_s01e07_seg02_clip_11,Meredith and Bailey were arguing 6983,He farts very loudly,Something falls out of his underwear,He gets goosebumps,Something makes him breaks out into a rash,He forgot his underwear,1,What happens to Joey after he takes his pants down,129022,Friends,41.6-53.89,friends_s07e19_seg02_clip_18,Something falls out of his underwear 6984,A thermometer ,A notepad,A stethoscope,A photo,A bottle of medication,2,What did Foreman put into his pocket after the patient wakes up?,129023,House M.D.,3.16-13.07,house_s03e11_seg02_clip_18,A stethoscope 6985,A tray of liquor,A tray of cigarettes and cigars,A plate of samples,A musical instrument,A stack of money,1,What was Vera/Beckett holding when Jerry was explaining that Dempsey wasn't dating Vera back then?,129024,Castle,54.52-63.01,castle_s04e14_seg02_clip_18,A tray of cigarettes and cigars 6986,Leonard said he would think about it. ,Leonard wanted to join right away.,Leonard rejected the idea.,Leonard was very curious and said he would sleep on the idea. ,Leonard wanted to use Howard's account.,2,How did Leonard react to Howard's idea of joining anything-for-a-greencard.com when Howard showed off the website?,129025,The Big Bang Theory,15.7-42.44,s02e04_seg02_clip_09,Leonard rejected the idea. 6987,It goes best with steak,It goes best with lobster,She only drinks red,She wants to make Burke mad,It does best with pizza ,0,Why does Cristina prefer a red wine when having dinner? ,129026,Grey's Anatomy,35.21-45.33,grey_s02e08_seg02_clip_10,It goes best with steak 6988,Wilson is crossing a street on a bike.,Wilson is in a taxi.,Wilson is at the hospital cafeteria.,Wilson is at his apartment,Wilson is at a school.,2,Where is Wilson when House talks to him about his attendance?,129027,House M.D.,34.85-57.58,house_s05e15_seg02_clip_17,Wilson is at the hospital cafeteria. 6989,Paula rolled her eyes,Paula gave Castle a kiss on the cheek,Paula handed Castle a drink,Paula took a sip of her drink,Paula gave Castle a tap on his cheek,4,What did Paula Hass do to Castle right before she walked away from him,129028,Castle,2.76-11.52,castle_s02e05_seg02_clip_17,Paula gave Castle a tap on his cheek 6990,a fork,a knife,a spoon,chopsticks,her hands,0,"what utensil is penny using to eat when she is on a double date with sheldon, amy , and leonard?",129029,The Big Bang Theory,33.43-42.77,s08e03_seg02_clip_08,a fork 6991,Chandler,Phoebe,Rachel,Monica,Charlie,4,Who is Ross talking to before Joey interrupts?,129030,Friends,0-3.2,friends_s09e21_seg02_clip_20,Charlie 6992,Twenty dollar bill.,A purse.,A flash light.,A garment bag.,A phone.,3,What does Monica pick up when she said something about who wants it?,129031,Friends,22.42-31.33,friends_s07e23-24_seg02_clip_10,A garment bag. 6993,150,"2,000",200,"1,000 or 1,500",900,3,How many passengers did the newscaster say a ferry can carry when reading the broadcast?,129032,Grey's Anatomy,32.63-40.03,grey_s03e15_seg02_clip_12,"1,000 or 1,500" 6994,Chandler,Joey,Ross,Rachel,Phoebe,1,Who is Monica on the phone with when she is playing cards with Phoebe?,129033,Friends,0-2.68,friends_s05e22_seg02_clip_15,Joey 6995,Next to the couch,In front of the TV.,Next to Joey,In the bathroom,Next to Chandler,1,Where did Ross stand after Monica asked if he loved Emily?,129034,Friends,0-44.52,friends_s04e17_seg02_clip_02,In front of the TV. 6996,Brown,Black,Blue,Red,Green,3,What color jacket was Ben wearing when Ross brought him in to Monica's apartment? ,129035,Friends,31.33-39.17,friends_s05e11_seg02_clip_06,Red 6997,Get dressed.,Help her.,Help Phyllis.,Help Leonard.,Use protection.,4,What does Howard's mother tell him to do when he was in bed with Leslie?,129036,The Big Bang Theory,33.64-41.02,s02e16_seg02_clip_05,Use protection. 6998,A glass of water.,A cup of coffee.,A bottle of water.,A book.,A magazine.,1,What was Ross carrying when he ran into Tommy?,129037,Friends,19.51-24.31,friends_s03e22_seg02_clip_13,A cup of coffee. 6999,Ross was happy cause he just got a promotion,Ross was trying to be polite,Ross was trying to get the attention of a girl,Ross thought it was a great class,Ross was glad all the people were there,3,Why does Ross clap his hands after he enters?,129038,Friends,4.68-16.81,friends_s06e17_seg02_clip_16,Ross thought it was a great class 7000,A dark rented car,A dark bike,A dark bus,A dark truck,A dark sedan,4,Whom did Roger say was following him after he made the drop?,129039,Castle,44.66-52.66,castle_s02e24_seg02_clip_16,A dark sedan 7001,She moves her hands. ,She punches her. ,She puts her hands on Pheobe's head. ,She points to the door. ,She rolls her eyes. ,0,What does Monica do when Phoebe's hands are on her head?,129040,Friends,1.22-3.97,friends_s02e01_seg02_clip_13,She moves her hands. 7002,Sebastian's phone. ,Cameron's car keys. ,The picture Sebastian keeps by his bed. ,Sebastian's watch. ,Sebastian's medicine. ,0,"What does House throw into the toilette, before saying that it won't flush?",129041,House M.D.,51.42-58.31,house_s02e04_seg02_clip_15,Sebastian's phone. 7003,say's he's a snitch,Calls him her inside man a judas,says he must be in love with her ,he feels castle isn't loyal to the crew,he calls him a lonestar ,1,How does Esposito see Castle when he is trying to be nice to Beckett? ,129042,Castle,60.37-67.63,castle_s06e03_seg02_clip_07,Calls him her inside man a judas 7004,13 is worried because the lady is going to tell about 13's illness,13 is worried because the lady is having severe headaches ,13 is worried because the lady is bleeding from her side,13 is worried because the lady became unconscious,13 is worried because the lady won't stop crying,2,Why is 13 worried when she is talking to the lady in the floral top and jean jacket,129043,House M.D.,0-9.58,house_s07e22_seg02_clip_00,13 is worried because the lady is bleeding from her side 7005,On a boat,In a bunker ,On an airplane ,Outside ,In a park,3,Where is castle after he is grabbed by an arm ,129044,Castle,38.61-48.37,castle_s08e06_seg02_clip_07,Outside 7006,The guests told Marshall and Lily they had to get home.,The guests told Marshall and Lily it was getting pretty late.,The guests told Marshall and Lily they have an appointment.,The guests told Marshall and Lily they aren't interested.,The guests told Marshall and Lily it was too early.,1,Why did Marshall and Lily's guests say they should be going before Lily told them there's still pie?,129045,How I Met You Mother,24.18-36.12,met_s05e04_seg01_clip_01,The guests told Marshall and Lily it was getting pretty late. 7007,Leonard tells the receptionist that he can tell her coffee is of low quality by its color.,Leonard tells the receptionist he needs to see Dr. Wells.,Leonard tells the receptionist she's reading yesterday's paper.,Leonard asks the receptionist is she knows where to find the vending machines.,Leonard gives the receptionist the answers to the puzzle.,4,What does Leonard do after leaning over the desk in the medical office?,129046,The Big Bang Theory,29.6-38.15,s01e01_seg01_clip_00,Leonard gives the receptionist the answers to the puzzle. 7008,It was protocol that she watch their backs to protect them,She was about to pull a gun on Castle and Beckett,"They had to go first because they had to protect her, if she died, the mission was over and they had to protect her at all costs",She was nervous,She is simply the slowest walker,1,Why was Sophia the last one to enter the room after leading them down the Hallway,129047,Castle,22.61-59.89,castle_s04e16_seg02_clip_23,She was about to pull a gun on Castle and Beckett 7009,At that point I should have left.,"In retrospect, that was clue number two.",I was worried that I was late to meet him.,The apartment building looked nice. ,The neighbor seemed nice. ,1,What did Leonard say after the person told him he wanted the crazy guy across the hall?,129048,The Big Bang Theory,42.49-54.89,s03e22_seg02_clip_00,"In retrospect, that was clue number two." 7010,Wash her hands,Read his chart,Bring out a thermometer,Put on gloves,Make a phone call,3,What does Thirteen do before touching the patient?,129049,House M.D.,78.49-84.36,house_s04e05_seg02_clip_20,Put on gloves 7011,Are you okay?,There she is,You're beautiful,Would you like to lay doen,The book said it souldn't last to much longer,1,What did Howard say when Bernadette came out the bathroom?,129050,The Big Bang Theory,0-22.58,s10e05_seg02_clip_02,There she is 7012,Rachel,Ross,Joey,Phoebe,Chandler,4,Who is laying in the bed when Monica and Chandler are in the hotel room?,129051,Friends,30.81-55.02,friends_s07e01_seg02_clip_01,Chandler 7013,runs to pack,begins crying,laughs,starts to call her boyfriend,hugs castle,3,what does alex do after castle tells her it could be dangerous to stay in the city?,129052,Castle,10.12-17.48,castle_s03e17_seg02_clip_10,starts to call her boyfriend 7014,Chase,Wilson,Foreman,Taub,Cuddy,3,Who came up to House when he was watching his team doing lab work?,129053,House M.D.,44.04-59.51,house_s08e13_seg02_clip_26,Taub 7015,Himself,Foreman,Cameron,Chase,Cuddy,4,Who does House give the patient to when he leaves?,129054,House M.D.,22.89-46.21,house_s01e10_seg02_clip_09,Cuddy 7016,She adjusted her shirt,She smiled awkwardly,She through her hands in the air,She fixed her hair,She nodded,2,What did Rachel do before telling Phoebe how she runs?,129055,Friends,29.41-38.42,friends_s06e07_seg02_clip_12,She through her hands in the air 7017,She's surprised they can see him since he's actually a ghost.,He's actually her mother.,He's Phoebe's long lost father.,The guy is actually Joey dressed up for his new role.,He's here to have sex with her.,4,What does Phoebe tell Rachel about her friend when the two of them go into the kitchen?,129056,Friends,50.55-57.07,friends_s08e11_seg02_clip_15,He's here to have sex with her. 7018,He was drunk and yelling all kinds of crazy stuff,He was high on meth,He was a paranoid schizophrenic ,He had a chip on his shoulder about the club owner,He was delusional and prone to anger,0,What did Kitty say was the problem with Evan when Earl was explaining the incident?,129057,Castle,48.76-53.68,castle_s03e01_seg02_clip_19,He was drunk and yelling all kinds of crazy stuff 7019,Allen's Alliance ,Russel's Reader,Shakespeare's Stories,Poe's Pen,Golden Globe,3,Which award does Castle say he is getting before saying he has always aspired for it?,129058,Castle,14.65-25.18,castle_s07e23_seg02_clip_00,Poe's Pen 7020,her body,Herself,her dad,her mom,The book,4,What did Bernadette say she hated more than Howard after throwing up?,129059,The Big Bang Theory,12.21-17.09,s10e05_seg02_clip_02,The book 7021,stomach ache,the flu,pink eye,a headache,nothing,2,What did Sheldon get when he borrowed makeup once from his sister?,129060,The Big Bang Theory,36.49-71.54,s06e13_seg01_clip_00,pink eye 7022,Steve,Adam,James,Brian,Mallory,4,Who appeared at the door when Castle opened the door?,129061,Castle,44.01-49.73,castle_s08e18_seg02_clip_12,Mallory 7023,He starts to cry,He has a seizure,He started to laugh,He moves out,He turns off the lights,4,What does Joey do when Chandler gives him the electric bill? ,129062,Friends,55.28-65.04,friends_s06e06_seg01_clip_00,He turns off the lights 7024,Happy and jolly. ,Sleepy and falling asleep. ,Angry.,Fearful. ,Sad and crying. ,1,What is Joey's coutenance when he sits on the sofa with Chandler? ,129063,Friends,42.32-51.32,friends_s04e20_seg02_clip_12,Sleepy and falling asleep. 7025,She has split personalities. ,She has hit her head on something. ,She is also with her old friend and that is how she talks. ,She has a mental disorder. ,She is nervous. ,2,Why is Lily talking differently when she is in the bar with her friends?,129064,How I Met You Mother,38.16-50.05,met_s03e16_seg02_clip_10,She is also with her old friend and that is how she talks. 7026,chase,taub,house,adams,park,0,who said they found a weird teapot-ish object at the patients home when talking to house in the conference room?,129065,House M.D.,29.77-39.54,house_s08e17_seg02_clip_22,chase 7027,She was guessing,Suspect finger prints on equipment,She got a tip off,She knew the hotel well,Records of suspect on invoice,1,Why was Beckett confident in bringing in CSI after talking Esposito Ryan and Castle?,129066,Castle,69.77-86.87,castle_s05e11_seg02_clip_07,Suspect finger prints on equipment 7028,He storms off. ,He hugs her. ,He kisses her. ,He slaps her. ,He punches her. ,0,What does Burke do after he has an argument with Cristina?,129067,Grey's Anatomy,8.67-17.8,grey_s02e24_seg02_clip_07,He storms off. 7029,Praise his mom.,Cry about his mom.,Talk about how awlful his mom is.,Talk about how awful his dad is.,Talk about how great his mom is?,2,How does Leonard get Penny to do anything when he wants to feel better?,129068,The Big Bang Theory,39.06-44.73,s07e04_seg02_clip_09,Talk about how awlful his mom is. 7030,Some stolen jewelry.,A stolen painting.,A stolen purse.,A stolen car.,A stolen cell phone.,1,What did Hayley say she was there to pick up when she came into Becketts office with Esposito and Ryan?,129069,Castle,63.5-69.02,castle_s08e07_seg02_clip_02,A stolen painting. 7031,A zit,A bandaid,A tattoo,Paint,A nose ring,1,What does Sheldon have on his nose when he is talking to Raj and Howard?,129070,The Big Bang Theory,3.71-8.55,s03e17_seg02_clip_13,A bandaid 7032,Rachel is apathetic and leaves the studio.,Rachel is swept off her feet.,Rachel is angry and slaps Joey in the face.,Rachel is nervous and falls silent.,Rachel notices that he is just reciting lines from his show.,4,What is Rachel's response when Joey hits on her?,129071,Friends,27.42-54.84,friends_s06e15-16_seg02_clip_10,Rachel notices that he is just reciting lines from his show. 7033,Amy left the bathroom door opened slightly.,Amy is talking to him through the door while peeing.,He can hear Amy vomiting.,He can hear Amy singing out of tune.,He can hear Amy brushing her teeth.,4,Why is Sheldon disturbed when Amy is in the bathroom?,129072,The Big Bang Theory,47.59-66.02,s10e04_seg02_clip_10,He can hear Amy brushing her teeth. 7034,Monica,Phoebe,Rachel,Chandler,Joey,2,Who thought Joey needed to slow down before getting to the newsstand?,129073,Friends,4.59-9.48,friends_s02e10_seg01_clip_00,Rachel 7035,Anna comes into the auditorium.,Laura comes into the auditorium.,Aubrey comes into the auditorium.,Lauren comes into the auditorium.,Ashely comes into the auditorium.,3,Who comes into the auditorium when Joey and Kate are talking?,129074,Friends,41.12-46.52,friends_s03e20_seg02_clip_16,Lauren comes into the auditorium. 7036,That his dog was sick.,That his father died of a heartattack.,That he failed a test.,He put on the wrong shoes.,His girlfriend got a bad haircut.,1,What bad news did Lily tell Marshall when he was outside?,129075,How I Met You Mother,33.44-68.01,met_s06e13_seg02_clip_18,That his father died of a heartattack. 7037,Joey is sitting on a bench.,Joey is sitting on a stool.,Joey is sitting on the sofa.,Joey is standing in the living area.,Joey is sitting on a recliner.,4,Where was Joey before he gets the statue of a white dog?,129076,Friends,0-10.2,friends_s06e06_seg02_clip_17,Joey is sitting on a recliner. 7038,She ignores House's suggestion,She sends House a care package.,She calls House,She calls a meeting.,She orders the treatment House suggested.,4,What does Cuddy decide to do after talking to Cameron?,129077,House M.D.,16.91-27.6,house_s03e10_seg02_clip_14,She orders the treatment House suggested. 7039,cried,walked away,laughed,yelled ,touched Joey,4,What did Sandy do after she started talking?,129078,Friends,12.31-20.41,friends_s01e10_seg02_clip_16,touched Joey 7040,He sees Samantha,He sees leaves on a branch,He sees a man.,He sees the television.,He sees his hospital food.,1,What did Jerry see after waking up to Thirteen?,129079,House M.D.,73.16-82.82,house_s05e06_seg02_clip_22,He sees leaves on a branch 7041,That he had a bad hernia,He said he was sick with the flu,He said he was constipated,He didn't say,He thought he had worms,0,What did Chandler say was wrong with Joey when Phoebe asked what was going on?,129080,Friends,1.16-7.55,friends_s06e04_seg02_clip_10,That he had a bad hernia 7042,His dad didn't pay the check,His dad picked up a waitress at the bar,His dad never showed up to the bar,His dad didn't tip the staff,His dad flirted with Lilly,1,Why is ted upset with his dad after they went to the bar last night?,129081,How I Met You Mother,20.81-45.46,met_s02e03_seg02_clip_14,His dad picked up a waitress at the bar 7043,Patrick has a cigarette.,Monica has a cigarette.,Ross has a cigarette.,Stuart has a cigarette.,James has a cigarette.,2,Who has a cigarette in his mouth when he is talking to Mr. Green?,129082,Friends,0-5.36,friends_s02e22_seg02_clip_13,Ross has a cigarette. 7044,Smiling. ,Laughing.,Clapping. ,Crying. ,Frowning. ,3,What is Beckett doing when she tells Bracken not to hurt the people she loves? ,129083,Castle,54.31-73.46,castle_s05e01_seg02_clip_25,Crying. 7045,The landlord,The priest,The mailman,The city councilman ,The chief executive officer,2,What professional person does the woman allude to when talking about Roger?,129084,Castle,0-6.18,castle_s08e10_seg02_clip_20,The mailman 7046,Martha expected a protest against Castle's book.,Martha expected a group of homeless men standing outside.,Martha expected to see J.K. Rowling there signing Harry Potter books.,Martha expected to see firemen putting out fires.,Martha expected to see a line out the door of people buying Castle's book.,4,What did Martha expect to see when she went to the bookstore?,129085,Castle,25.42-34.9,castle_s01e03_seg02_clip_03,Martha expected to see a line out the door of people buying Castle's book. 7047,What are you doing?,Hi.,I like your apron,Can I help you to cook?,Did you saw the movie?,1,What said Ross to Rachel after he talked to the man,129086,Friends,15.52-17.5,friends_s02e10_seg02_clip_17,Hi. 7048,Because the lack of money was not why Joey refused to go to the doctor,Because he has a rule to never borrow money from friends,Because he felt that Chandler would then have power over him,Because it would take him forever to pay it back and he didn't want it hanging over his head,Because he wanted to raise the money on his own,3,Why did Joey decline after Chandler offered to loan him the money to go to the doctor,129087,Friends,17.61-32.8,friends_s06e04_seg02_clip_09,Because it would take him forever to pay it back and he didn't want it hanging over his head 7049,the bathroom,the kitchen,his room,the hallway,his desk to his computer,4,where does leonard go after he gets up from his wooden chair in his apartment,129088,The Big Bang Theory,52.73-62.04,s02e18_seg02_clip_11,his desk to his computer 7050,She wasn't done with the alterations.,She's worried Bernadette won't like it.,Mrs. Wolowitz wanted to keep the vest for herself.,She thinks it won't fit.,She wanted to give Bernadette the vest herself.,3,Why is Mrs. Wolowitz worried after Howard gives Bernadette the vest?,129089,The Big Bang Theory,28.37-36.14,s05e12_seg02_clip_03,She thinks it won't fit. 7051,House.,Chase and Adams.,The patient's Mother.,The patient's siblings.,The patient's grandparents.,1,"Who else is in the room when Elizabeth tells the patient's father, ""We can't protect her from everything"".",129090,House M.D.,0-11.38,house_s08e19_seg02_clip_20,Chase and Adams. 7052,Sheldon ran in a circle.,Sheldon threw food on Raj.,Sheldon hid under the table.,Sheldon turned to stare at Leonard.,Sheldon walked to the store.,3,What does Sheldon do after Raj says he would give it to Alex?,129091,The Big Bang Theory,7.5-9.6,s06e12_seg02_clip_02,Sheldon turned to stare at Leonard. 7053,Have Rachel push Emma on the swing.,Have Rachel sit on the swing.,Rachel will watch Ross on the swing.,Ross will pay Rachel to let Emma on the swing.,Ross promises that nothing will hurt Emma if she gets on the swing. ,1,What is Ross's idea to get Rachel over her fears after Rachel tries to leave?,129092,Friends,25.33-35.19,friends_s10e07_seg02_clip_12,Have Rachel sit on the swing. 7054,stares in anger at the side of the car,take his right hand off of the steering wheel to gesture,point to the sky,take his left hand off of the steering wheel to gesture,stares at Raj,3,"What does Howard do, when he says ""he calls her Debbie"" ?",129093,The Big Bang Theory,33.84-42.15,s08e01_seg02_clip_02,take his left hand off of the steering wheel to gesture 7055,Unregistered .45,Unregistered .22,Unregistered .9,Machine gun,A rifle,0,What did ryan and esposito find at D'andres apartment when they showed up to question him?,129094,Castle,7.08-9.29,castle_s03e04_seg02_clip_04,Unregistered .45 7056,She is learning something,They are taking a break,Filling her head with lies,Becker yelled at the people upstairs,They smelled dinner cooking,2,Why does Castle think it got quiet upstairs when talking to Becker?,129095,Castle,22.06-23.74,castle_s02e04_seg02_clip_11,Filling her head with lies 7057,hits his shoulder,messed with his hair,pulls him by the arm,gives a wide smile,blinks at Leonard,1,What did Sheldon do after asking Leonard to go back to living with him?,129096,The Big Bang Theory,33.62-38.72,s06e15_seg02_clip_08,messed with his hair 7058,On the coffee table. ,On an empty table. ,On the couch. ,On the floor. ,He hands it to Phoebe. ,0,Where does Ross put the bottle of wine before he walks towards the counter?,129097,Friends,55.48-58.73,friends_s10e14_seg02_clip_07,On the coffee table. 7059,A punk.,A weak link.,The best fit for the movie.,A hopeless romantic.,Dumb for believing in the story.,3,What does Sheldon call himself to Leonard after discussing the movie?,129098,The Big Bang Theory,48.78-55.29,s06e02_seg02_clip_15,A hopeless romantic. 7060,Roz's throat has scars from singing night after night.,Roz's hearing will never be the same after all the loud concerts.,Roz's hip is permanently damaged from her once famous dance moves.,Roz's past drug use may have left long-term damage.,Roz has finger damage from too much guitar playing.,3,Why might it turn out that Roz's past life isn't entirely behind her when Thirteen explains to her the need to take a hair sample?,129099,House M.D.,29.45-35.89,house_s04e12_seg02_clip_03,Roz's past drug use may have left long-term damage. 7061,8AM,Noon.,6 PM.,Beckett said it will be midnight.,24 hours from now.,3,What time did Beckett say the deadline will be when she's talking to Castle?,129100,Castle,0-6.44,castle_s02e17_seg02_clip_13,Beckett said it will be midnight. 7062,About 12 hours,About a week.,Since yesterday,About 20 minutes,About 20 hours,3,How long does Barney say he's been sick for when he is on a date with Nora.,129101,How I Met You Mother,3.36-9.76,met_s06e18_seg02_clip_00,About 20 minutes 7063,Izzie was watching television.,Izzie was baking.,Izzie was washing the dishes.,Izzie was preparing to go to bed.,Izzie was taking a shower.,1,"What was Izzie doing when Meredith, Bailey, George and Callie came to visit her?",129102,Grey's Anatomy,58.5-77.09,grey_s03e02_seg02_clip_25,Izzie was baking. 7064,Cereal,Pizza,Toast,Ham,Pineapple,0,What is House eating when sitting on the couch?,129103,House M.D.,0-8.73,house_s06e15_seg02_clip_00,Cereal 7065,Raj holds a bottle.,Raj holds a basket.,Raj holds a baby.,Raj holds a dish.,Raj holds an orange.,0,What is holding Raj when he stands next to Sheldon?,129104,The Big Bang Theory,0-68.17,s07e17_seg01_clip_00,Raj holds a bottle. 7066,She drank coffee.,She got up and walked away.,She began to fan herself with her hands.,She kissed Chandler.,She hugged Phoebe.,2,"What did Janice start doing after she said ""There' you go""",129105,Friends,0-9.52,friends_s01e05_seg02_clip_15,She began to fan herself with her hands. 7067,bored,excited,angry,tired,worried,1,How did Leonard feel when Penny was going to school?,129106,The Big Bang Theory,42.88-60.39,s06e06_seg02_clip_03,excited 7068,She attacks Castle,She runs away,She is unconcious,She attacks Winters,She gets arrested ,4,What happens to Stephanie after Winters disarms her?,129107,Castle,64.76-72.97,castle_s05e06_seg02_clip_24,She gets arrested 7069,Raj said he was a Nice and sweet type of guy,"Raj said he was a Mcdonalds, and Wendy's type of guy",Raj said he was a Mean and rude type of guy,Raj never said what type of guy he was,"Raj said he was a Pottery Barn, and Crate and Barrel type of guy",4,What kind of guy did Raj say he was when he was talking to Emily?,129108,The Big Bang Theory,29.63-38.59,s08e24_seg02_clip_00,"Raj said he was a Pottery Barn, and Crate and Barrel type of guy" 7070,White,Red,Blue,Black,Yellow,4,What color are the gloves that Phoebe wears when she talks to Joey and Monica?,129109,Friends,33.96-43.28,friends_s03e10_seg02_clip_14,Yellow 7071,Too excited to even move,Overwhelmed with gratitude ,Still dreaming a nightmare ,Has been in bed too long,Needs to drink more milk,1,How does House try to jokingly explain the patient's condition after he seems to be paralyzed? ,129110,House M.D.,0-12.42,house_s04e06_seg02_clip_11,Overwhelmed with gratitude 7072,The couple lied to them,She stole her purse,The couple made unkind remarks,The couple made them wait for an hour,They've been getting free stuff unlike her,4,Why is Monica upset when she encounters the couple?,129111,Friends,39.67-43.64,friends_s08e03_seg02_clip_12,They've been getting free stuff unlike her 7073,What kind of job Katherine should get.,Whose side Martha is on.,If Katherine is the right person for Castle.,If Martha likes Katherine.,If Castle should sign the check for Alexis.,1,What does Castle ask Martha after Martha tells Castle Katherine is a bright woman?,129112,Castle,0-11.05,castle_s05e24_seg02_clip_21,Whose side Martha is on. 7074,Joey asks Rachel on a date. ,Joey asks Rachel to eat more Tuna. ,Joey asks Rachel to move in with Ross. ,Joey asks Rachel to move out on her own. ,Joey ask Rachel to move back in with Monica. ,2,"What does Joey ask Rachel to do after he says ""Ross is missing everything."" ",129113,Friends,31.94-50.55,friends_s08e14_seg02_clip_15,Joey asks Rachel to move in with Ross. 7075,Craig,House,Wilson,Foreman,Mark,3,Who goes to stand next to Dan after Melinda says that she does not want to see him?,129114,House M.D.,77.3-96.03,house_s02e16_seg02_clip_16,Foreman 7076,sat down,smacked him,walked out,closed the window,took a drink,0,What did Esposito do after he started talking?,129115,Castle,27.6-33.48,castle_s07e05_seg02_clip_02,sat down 7077,The naked man is holding a burrito.,The naked man is holding a cup of coffee.,The naked man is holding a slice of pizza.,The naked man is holding a spatula.,The naked man is holding a large soda.,4,What is the naked man holding when he opens the door for Ross?,129116,Friends,23.11-27.31,friends_s05e14_seg02_clip_13,The naked man is holding a large soda. 7078,a park bench,a sofa,pull out couch,the floor,a gurney,4,What is Arthur laying on before Penny told him she'd pack up his stuff to bring to the hospital? ,129117,The Big Bang Theory,0.92-6.41,s06e22_seg02_clip_15,a gurney 7079,The shop worker.,Ross and Emily.,Monica's parents.,Half of all of New York.,Half of the wedding dresses.,4,Who did Phoebe say would end up getting divorced when they were her and Monica were looking around at the bridal shop?,129118,Friends,28.72-37.31,friends_s04e20_seg02_clip_05,Half of the wedding dresses. 7080,Maitre D' said that that was the table Mr. Campbell always sat at.,Maitre D' said that Rachel would have to pay him a hefty tip to do that,Maitre D' said there were no more tables available. ,Maitre D' said he just didn't care enough to help her.,Maitre D' denied her request because Rachel was mean to him.,0,Why did Maitre D' deny Rachels request when she asked for a table change?,129119,Friends,0-14.35,friends_s10e14_seg02_clip_03,Maitre D' said that that was the table Mr. Campbell always sat at. 7081,Castle starts to make a scene,Castle leaves the room,Castle calls someone on the phone,Castle gets in between them,Castle doesn't do anyting ,3,What does Castle do when Valentine and Beckett get too close?,129120,Castle,81.32-89.36,castle_s07e22_seg02_clip_08,Castle gets in between them 7082,Ross hasn't had lunch today.,He just drank from a baby bottle,Ross loves oreos.,Joey bet Ross he couldn't fit four cookies in his mouth at once.,Ross wanted to eat them all before Monica got home.,1,Why does Ross shove cookies in his mouth when he is sitting at the kitchen table?,129121,Friends,39.93-55.36,friends_s02e02_seg02_clip_19,He just drank from a baby bottle 7083,Sheldon takes a shower,Sheldon towels off his neck,Sheldon kneels and ties his shoe,Sheldon takes his boots off,Sheldon grabs some coffee,1,What does Sheldon do before he sits down?,129122,The Big Bang Theory,36.62-41.12,s09e05_seg02_clip_07,Sheldon towels off his neck 7084,She is sitting on the couch,She is sitting in the rocking chair,She is sitting on the floor,she is sitting at the table,She is not sitting,1,Where is Beckett sitting when Castle crawls on the floor?,129123,Castle,40.52-50.21,castle_s01e09_seg02_clip_23,She is sitting in the rocking chair 7085,An abnormal growth of the insulin-secreting cells in his pancreas that only intermittently secrete insulin.,They said it's a rare type of cancer of the pancreas that is causing a tumor.,Blood sugar level of the patient were plunging in response to stress.,The patient has has an adenoma com- posed of islet cells.,"The patient's nesidioblastoma results from severe, long-standing hypoglycemia due to hyperinsulinism.",0,How does Chase and Foreman explain the patient's nesidioblastoma after House identifies it?,129124,House M.D.,39.32-44.81,house_s02e04_seg02_clip_21,An abnormal growth of the insulin-secreting cells in his pancreas that only intermittently secrete insulin. 7086,Joshua tells Rachel he's breaking up with her.,Joshua kisses her and asks Rachel to marry him.,Joshua runs away.,Joshua hugs Rachel and tells her he's leaving.,Joshua pushes past Rachel into the apartment.,2,What does Joshua do after Rachel opens the door?,129125,Friends,6.89-15.56,friends_s04e20_seg02_clip_20,Joshua runs away. 7087,A pair of jeans and a t-shirt,A bridemaids dress,A wedding gown,A t-shirt with a picture of a woman in a swimsuit,A bathrobe,3,What is Robin wearing when she was holding a vase with flowers at the wedding chapel?,129126,How I Met You Mother,10.91-16.06,met_s02e08_seg02_clip_07,A t-shirt with a picture of a woman in a swimsuit 7088,Nothing,Rename the show,Fire the whole staff,Replace the actors,Kill off a main character,4,What was the first thing ms. cutler do when she took over the shows writing?,129127,Castle,80-82.33,castle_s03e18_seg02_clip_01,Kill off a main character 7089,Bernadette made piece wrapped in foil.,Bernadette and Penny were assembling pieces to a science project.,Penny was slacking on her task.,Bernadette and Penny were sitting down making things.,Penny was making rude remarks.,1,What were Penny and Bernadette making before Raj knocked on the door?,129128,The Big Bang Theory,0-5.2,s09e19_seg02_clip_07,Bernadette and Penny were assembling pieces to a science project. 7090,She's teasing Monica about being a goody two shoes,Monica is so sweet.,Monica never wears zippers,Monica told her she is Pennsylvania Dutch,Monica's parents really are Amish,3,Why does Fake Monica think that Monica is Amish when they are in the kitchen?,129129,Friends,22.51-38.72,friends_s01e21_seg02_clip_11,Monica told her she is Pennsylvania Dutch 7091,House was fiddling with two metal balls in his hand,House was drinking a bottle of water,House was pouring a cup of coffee,House was looking through a file,House was writing something on the whiteboard,2,What was House doing when the patient enters his office and asks if he keeps score?,129130,House M.D.,29.38-37.84,house_s02e19_seg02_clip_08,House was pouring a cup of coffee 7092,His kidneys.,His stomach.,His heart.,His throat.,His brain.,2,Where is the problem coming from instead of Henry's lungs according to House when he walks in to talk with him?,129131,House M.D.,50.47-66.57,house_s02e14_seg02_clip_06,His heart. 7093,Her identical twin is here.,Her ID is on the ground.,Her stolen car is here.,She's wearing the same bracelet as Robyn.,They recognize her sister from a picture.,3,What connects the singer to Robyn when Castle notices it?,129132,Castle,37.37-46.37,castle_s08e09_seg02_clip_08,She's wearing the same bracelet as Robyn. 7094,an escort list,money,his cane,some food,a file,1,what does house try to hand wilson when he is at wilsons door?,129133,House M.D.,38.51-48.02,house_s05e02_seg02_clip_18,money 7095,She fluffed her pillow.,She woke up.,She covered her face.,She went to the window.,She stood up.,1,What did Alexis do when the sun came up?,129134,Castle,7.81-14.25,castle_s01e04_seg02_clip_09,She woke up. 7096,A statue,A lamp,A mirror,A building,A plane,1,When was behind Sheldon when he was asking Leonard questions?,129135,The Big Bang Theory,0-9.35,s03e03_seg02_clip_11,A lamp 7097,Mr. Rostenkowski walks to the apartment.,Mr. Rostenkowski pushes Bernadette down the aisle.,Mr. Rostenkowski runs down the stairs.,Mr. Rostenkowski cuts his eyes towards the side.,"Mr, Rostenkowski tells Bernadette to run for it.",3,What does Mr. Rostenkowski do after he calls Howard's mother a piece of work?,129136,The Big Bang Theory,34.21-38.77,s05e24_seg02_clip_11,Mr. Rostenkowski cuts his eyes towards the side. 7098,A brown box.,A brown jacket.,A brown gun holster that straps around his shoulders.,A brown bag with Joey's clothes in it.,A brown gun belt around his waist.,2,What brown item does Charlton Heston have when he tells Joey to listen to him?,129137,Friends,21.01-25.51,friends_s04e14_seg02_clip_14,A brown gun holster that straps around his shoulders. 7099,Leonard looks shocked because Sheldon gave him the keys to the lab.,Leonard looks shocked because Sheldon gave him a pet dog.,Leonard looks shocked because Sheldon gave him condoms and a pill like viagra.,Leonard looks shocked because Sheldon gave him money to pay for dinner.,Leonard looks shocked because Sheldon gave him a new toy.,2,Why does Leonard look shocked when Sheldon tells him what is in the bag?,129138,The Big Bang Theory,23.02-59.02,s04e15_seg02_clip_11,Leonard looks shocked because Sheldon gave him condoms and a pill like viagra. 7100,to rehire Cuddy ,to rehire Foreman,to rehire Chase,to rehire Cameron,to rehire Wilson ,1,What did 13 ask House to do when she said that she could fine another job?,129139,House M.D.,17.55-23.86,house_s05e15_seg02_clip_13,to rehire Foreman 7101,phone,watch,diamond,coat,keys,2,What was Castle holding after he started talking?,129140,Castle,7.95-16.37,castle_s06e08_seg02_clip_11,diamond 7102,Call Jason on the phone,Shoot out the window,Throw hand grenades,Guide them to safety,Ask for more hostages,3,What does the SWAT team do after the hostages are released?,129141,House M.D.,0-21.51,house_s05e09_seg02_clip_16,Guide them to safety 7103,Beckett,Castle,Mike,Esposito,Jim,0,Who does Ryan address when he enters the room?,129142,Castle,0-8.45,castle_s06e04_seg02_clip_21,Beckett 7104,excited,happy,worried,bored,angry,2,How did Bernadette feel when she was going to have a baby?,129143,The Big Bang Theory,0-15.26,s10e03_seg02_clip_12,worried 7105,"Bernadette, Leslie, and Howard","Bernadette, Amy, and Penny","Bernadette, Leonard, and Penny","Bernadette, Leslie, and Penny","Sheldon, Leslie, and Penny",1,Who is hanging out and chatting when they are in the apartment?,129144,The Big Bang Theory,1.45-5.8,s06e02_seg01_clip_01,"Bernadette, Amy, and Penny" 7106,Ross' Awards,Ross' Trophys,Ross' Toys,Ross' Things,Ross' Stuff,1,What does the box on the shelf between Ross and his father read when they were in the garage?,129145,Friends,0-1.22,friends_s07e13_seg02_clip_13,Ross' Trophys 7107,Raj was walking a dog.,Raj was cleaning the house.,Raj was reading New Moon and talking to the book., Raj was talking to Leonard.,Raj was on the telephone.,2,What did Raj do before someone knocked on the door?,129146,The Big Bang Theory,0-16.78,s04e07_seg02_clip_00,Raj was reading New Moon and talking to the book. 7108,She went to go get the patient's medication.,She started working on the patient's neck.,She called for a nurse.,She asked him what he would do.,She said she felt he should go ahead and take over. ,1,What did Park do after Chase asked her what the next step was?,129147,House M.D.,0-22.19,house_s08e12_seg02_clip_25,She started working on the patient's neck. 7109,sits down next to him,stands in a corner,looks at her computer,looks at her phone,nothing,0,What does 13 do when she's talking to House?,129148,House M.D.,25.03-35.04,house_s04e08_seg02_clip_18,sits down next to him 7110,Joey says he had sex with a girl in the middle of this,Joey says it starts with a z,Joey says he is hungry,Joey says he is tired,Joey says he is bored,0,What clue does Joey give the contestant before the contestant guesses?,129149,Friends,10.15-18.57,friends_s10e11_seg02_clip_04,Joey says he had sex with a girl in the middle of this 7111,Standing by rachel,Standing at the front door,Standing by the bathroom,Creeping through the window,Looking through a telescope,3,Where is joey when he interrupts rachel and tags hug? ,129150,Friends,55.21-62.03,friends_s07e08_seg02_clip_10,Creeping through the window 7112,Ted's date.,Robin.,Lily.,Barney.,Marshall.,0,Who knocked the door when Ted was reading a newspaper?,129151,How I Met You Mother,0-58,met_s03e18_seg02_clip_13,Ted's date. 7113,crackers,cookies and Hawaiian punch,cheeseburgers,hamburgers,hot cocoa,1,What did Raj want after Howard was out of his dilemma?,129152,The Big Bang Theory,31.26-40.67,s04e01_seg02_clip_16,cookies and Hawaiian punch 7114,Tetris,games,Atari,Nintendo,board games,1,What did Joey say that he used to play with Mike when they were in high school?,129153,Friends,24.59-37.04,friends_s09e03_seg02_clip_12,games 7115,Cold,Hungry,Hot,Pained,Angry,1,How did the boy felt before he started seizing. ,129154,House M.D.,19.91-51.08,house_s06e04_seg02_clip_04,Hungry 7116,6:00,5:00,7:00,8:00,9:30,1,When was the last time Harvey saw Laura before she was killed?,129155,Castle,30.16-38.26,castle_s04e12_seg02_clip_05,5:00 7117,Beckett is terrified.,Beckett is hopeful,Beckett is relieved.,Beckett is happy.,Beckett is joyous.,0,How does Beckett feel after Castle says he found it and then she sees the flashlight but not Castle?,129156,Castle,27.26-67.05,castle_s04e16_seg02_clip_01,Beckett is terrified. 7118,There are a couple of things he should know.,That he's nervous.,That he should not be nervous.,That he knows nothing.,That she knows everything.,0,What does Penny tell Sheldon about the date when they are in the car?,129157,The Big Bang Theory,53.11-61.76,s04e01_seg02_clip_06,There are a couple of things he should know. 7119,angry,sad,upset,hopeful,tired,3,How did Penny feel when Sheldon wanted Leonard to go home?,129158,The Big Bang Theory,44.72-60.02,s06e15_seg02_clip_08,hopeful 7120,Cameron tells House to apologize.,Cameron says House is being rude. ,Cameron says to be nice because Sebastian's almost dead.,Cameron asks if House thinks Sebastian's a hypocrite. ,Cameron just stands and watches. ,3,How does Cameron respond after House unplugs the television? ,129159,House M.D.,42.94-48.77,house_s02e04_seg02_clip_15,Cameron asks if House thinks Sebastian's a hypocrite. 7121,mouse,dog,hamster,lizard,cat,4,What walked up to the quitar after Chandler was asking the group if they knew what he did?,129160,Friends,58.83-60.03,friends_s04e02_seg02_clip_03,cat 7122,Amy used to play it all the time in college. ,Amy practiced beforehand. ,"Amy used to throw coins in a well during childhood to wish for friends, and learned to do some tricks. ",Amy had Sheldon teach her the physics of it. ,Amy wanted Penny to lose so badly that she practiced a lot the night before. ,2,How is Amy so good at this game when she's never played it before?,129161,The Big Bang Theory,42.15-45.86,s05e19_seg02_clip_11,"Amy used to throw coins in a well during childhood to wish for friends, and learned to do some tricks. " 7123,The color of Beckett's top is green,The color of Beckett's top is orange,The color of Beckett's top is pink,The color of Beckett's top is blue,The color of Beckett's top is black,3,What color top is Beckett wearing when she is talking to the man in the beige suit,129162,Castle,17.91-27.56,castle_s04e18_seg02_clip_06,The color of Beckett's top is blue 7124,With the patient,In his office,In the sauna,In the gym,At lunch,4,Where did House say he would be when the doctors figure out the answer?,129163,House M.D.,20.33-24.02,house_s02e05_seg02_clip_01,At lunch 7125,He hates Ted's girlfriend.,He's a minute away from receiving his Bar exam results.,He is arguing with Lily.,The computer is broken.,He can't remember his email password.,1,Why is Marshall out when he sits down at the computer?,129164,How I Met You Mother,4.96-17.68,met_s03e08_seg02_clip_00,He's a minute away from receiving his Bar exam results. 7126,Clothes,Balloon ,Puppy,A folder,A Box,3,What does Montgomery Dinovi hand to a co-worker when Lorraine approaches him?,129165,Castle,51.95-62.34,castle_s03e21_seg02_clip_19,A folder 7127,He had $70,He had $50,He had $30,He had $15,He had $100,1,How much money did Ted have in his pocket when he was talking to Ben?,129166,How I Met You Mother,24.39-26.01,met_s02e21_seg02_clip_11,He had $50 7128,In East Harlem,In Manhattan,In Brooklyn,In Long Island,In Connecticut,0,Where did Esposito find out Acosta's mystery partner's cell phone was recently used when looking into Acosta's life?,129167,Castle,0-6.54,castle_s08e08_seg02_clip_22,In East Harlem 7129,The officer says he will shoot Leonard. ,The officer says he will arrest them both!,The officer tells Leonard he would be happy to put Sheldon under a psych hold. ,The officer says he will see how he feels tomorrow and think on it. ,The officer says he will after his break. ,2,What is the officer happy to do after Leonard asks the officer to shoot Sheldon?,129168,The Big Bang Theory,9.72-14.08,s03e13_seg02_clip_01,The officer tells Leonard he would be happy to put Sheldon under a psych hold. 7130,His girl-friend broke up with him.,No women are interested in him.,Raj told him to leave.,His mom says she disowned him.,He lost the comic book store.,1,Why does Stuart feel rejected when talking to Raj?,129169,The Big Bang Theory,11.61-19.86,s07e04_seg02_clip_17,No women are interested in him. 7131,a steel beam,a truck,a tree trunk,a large slab of concrete,a large piece of metal,1,What is on top of the injured African American man when Izzy comes to help him?,129170,Grey's Anatomy,0-8.27,grey_s03e15_seg02_clip_12,a truck 7132,Friend's house.,Halfway house.,Bar.,Club.,The park.,1,Where did Esposito say Joe was when he was alleged to commit the murder?,129171,Castle,38.73-51.05,castle_s03e19_seg02_clip_15,Halfway house. 7133,Ross,Rachel,Phoebe,Paul Stevens,Monica,0,Who is in the doorway when Joey is talking?,129172,Friends,0-5.28,friends_s08e16_seg02_clip_06,Ross 7134,Auburn,Dark brown,Bright red,Purple,Blonde,4,What color does House tell Emma the baby's hair is after the surgery?,129173,House M.D.,54.01-59.87,house_s03e17_seg02_clip_23,Blonde 7135,Beckett is at the door,there is a delivery man,there is a messenger,there is a mail man with mail,there is a man pointing a gun at him,4,What happens when Castle opens the door of his home?,129174,Castle,19.01-28.06,castle_s08e05_seg02_clip_20,there is a man pointing a gun at him 7136,Ted goes to the bar when Brad approaches the table.,Ted goes to the bathroom when Brad approaches the table., Ted moves into the empty seat next to Marshall when Brad approaches the table.,Ted sits in the empty seat next to Robin when Brad approaches the table.,Ted decides to go home when Brad approaches the table.,2,Where does Ted move when Brad approaches the table?,129175,How I Met You Mother,0-44.52,met_s05e01_seg02_clip_03, Ted moves into the empty seat next to Marshall when Brad approaches the table. 7137,Rachel has a kettle open.,Rachel has the fridge open.,Rachel has a magazine open.,Rachel has a check register open.,Rachel has a drawer open.,3,What does Rachel have open when speaking with Joey?,129176,Friends,1.8-3.6,friends_s07e02_seg02_clip_18,Rachel has a check register open. 7138,Hakuana Matata,Circle of Life,Can You Feel The Love Tonight,The Lion Sleeps Tonight,I Just Can't Wait to be King,3,What plays on the stereo when Marcel puts the disc in?,129177,Friends,19.85-31.63,friends_s01e18_seg02_clip_07,The Lion Sleeps Tonight 7139,Chandler wanted to better himself as a person by helping others.,Chandler wanted to take one of them on a date.,Chandler wanted to charge the women money for his help.,Chandler wanted to make sure no other men interacted with the women.,Chandler thought the women were hot.,4,Why did Chandler want to him and Joey to help two women when the women were standing at the apartment door?,129178,Friends,3.42-9.12,friends_s01e19_seg02_clip_14,Chandler thought the women were hot. 7140,Fine.,Awesome.,Horrible.,Great.,Casual.,4,How did Chandler describe himself after Monica asked how he was doing?,129179,Friends,4.34-10.23,friends_s05e15_seg02_clip_07,Casual. 7141,Choking,Sneezing,Coughing,Laughing,Crying,2,What did Raj start doing when he was talking in the microphone?,129180,The Big Bang Theory,7.5-11.41,s07e03_seg02_clip_01,Coughing 7142,Wine.,Juice.,Milk.,Water.,Vodka.,0,What is Lily drinking when she is at the bar?,129181,How I Met You Mother,0-6.67,met_s06e07_seg02_clip_11,Wine. 7143,That he wants to give his patient a referral,That he wants to take him off his medication,That he prays for him,That he wants him to die,That he recommends his patient live independently,3,What does House say about his patient when discussing him?,129182,House M.D.,16.45-29.7,house_s01e22_seg02_clip_15,That he wants him to die 7144,Over his neck,On the table,In the drawer,On his shoulder,At the entrance,3,Where did House put his bag before he entered the elevator?,129183,House M.D.,52.48-65.15,house_s06e19_seg02_clip_02,On his shoulder 7145,Penny is drinking milk.,Penny is drinking a glass of wine.,Penny is not drinking anything at all.,Penny is drinking a bottle of beer.,Penny is drinking coffee.,1,What is Penny drinking before she says what?,129184,The Big Bang Theory,11.79-13.9,s04e22_seg02_clip_12,Penny is drinking a glass of wine. 7146,talking to the woman,judging the woman,not judging the woman,visiting the woman,dating the woman,2,What is castle not doing after the case,129185,Castle,4.48-89.59,castle_s01e05_seg02_clip_04,not judging the woman 7147,Certain scenes give him good dreams. ,Certain scenes are done improperly. ,Certain scenes are scientifically impossible. ,Certain scenes make him cry. ,Certain scenes scare him. ,4,Why can Sheldon only watch certain scenes when it's light out?,129186,The Big Bang Theory,2.55-6.89,s07e04_seg01_clip_01,Certain scenes scare him. 7148,He won't move out of his mother's house. ,He won't move out of their house. ,He won't pay for their meal. ,He won's get a job. ,He won't leave her alone. ,0,Why is Bernadette so upset with Howard when they are eating at the restaurant?,129187,The Big Bang Theory,5.2-10.4,s06e07_seg02_clip_05,He won't move out of his mother's house. 7149,They start to cry,They laugh at her ,They watch her walk away,They run down the hallway ,They eat their sandwiches ,2,What do Wilson and House do after Cuddy walks away?,129188,House M.D.,21.16-29.71,house_s04e03_seg02_clip_17,They watch her walk away 7150,Four times. ,Once. ,Twice. ,Three times. ,He doesn't take a drink. ,4,How many times does Barney take a drink when Ted is talking about being neighbors in New York City? ,129189,How I Met You Mother,33.47-45.44,met_s03e11_seg01_clip_03,He doesn't take a drink. 7151,In the car seat. ,The floor.,A high shelf,In the car trunk. ,In a chest.,2,Where were the boxes when Ross pointed for his dad to grab them? ,129190,Friends,20.44-22.58,friends_s07e13_seg02_clip_13,A high shelf 7152,A backpack. ,A scarf. ,A jacket. ,A bandana. ,A hat. ,0,What is Ross wearing when he walks into the apartment with a baby?,129191,Friends,24.31-28.21,friends_s02e20_seg02_clip_12,A backpack. 7153,Joey,Chandler,Monica,Ross,Rachel,0,Who notices that ugly naked guy isn't moving after Phoebe celebrates everyone being alive?,129192,Friends,0-9.98,friends_s03e08_seg02_clip_11,Joey 7154,"Marshall said, yes it would. It really would. ","Marshall said, well can I have your number.","Marshall said, I have a girlfirend.","Marshall said, I have exams and this is not a good time for dating. ","Marshall said, I would love to marry you. ",0,What does Marshall say after a girl tells him it would be great to see him again?,129193,How I Met You Mother,25.47-33.23,met_s02e02_seg02_clip_08,"Marshall said, yes it would. It really would. " 7155,To the elevator ,To the cafe,To the morgue,To the bookstore,Into Wilson's office,0,Where does House go when talking to Wilson?,129194,House M.D.,9.66-18.41,house_s02e07_seg02_clip_14,To the elevator 7156,10 minutes.,5 minutes.,A day.,2 minutes.,A few days.,3,How long did Eric say it took him to figure Beckett out before they were almost killed?,129195,Castle,0-6.01,castle_s05e21_seg02_clip_19,2 minutes. 7157,Penny called Leonard insulting names.,Penny said they should eat on the floor.,Penny suggested that her and Leonard make out on Sheldon's spot.,Penny said a sexual joke.,Penny suggested her and Leonard make out in the kitchen.,2,What did Penny say before Leonard call her a dirty girl?,129196,The Big Bang Theory,0-13.6,s03e04_seg02_clip_10,Penny suggested that her and Leonard make out on Sheldon's spot. 7158,He asked for another one.,He drank it all gone.,He said it was great.,He spit it back into the cup.,He asked if she made it correctly.,3,What did Sheldon do after he tasted the drink Penny made?,129197,The Big Bang Theory,16.51-57.02,s04e07_seg02_clip_14,He spit it back into the cup. 7159,A plate of food,A glass of water,Wrapping paper,Flowers,A Canvas,3,What is next to Afsoun when she talks about eczema?,129198,House M.D.,0-9.96,house_s07e23_seg02_clip_17,Flowers 7160,She hated it.,She thought it was pretty cool.,She wasn't sure how she felt.,She thought it was pretty lame.,She loved it.,3,What did Lindsey say she thought of the bar after Ted said it didn't seem that lame to him?,129199,How I Met You Mother,0-3.02,met_s03e02_seg02_clip_06,She thought it was pretty lame. 7161,Foreman and Chase found that Hank had cirrhosis of the liver.,Foreman and Chase found cancer in Hank's liver.,Foreman and Chase found threadworms in Hank's liver.,Foreman and Chase found that Hank had two livers. ,Foreman and Chase found that Hank had a parasitic twin on his liver.,2,What did Foreman and Chase find when they examined Hank's liver?,129200,House M.D.,72.3-89.81,house_s06e07_seg02_clip_15,Foreman and Chase found threadworms in Hank's liver. 7162,Monica walks in. ,Chandler walks in. ,Phoebe walks in with a phone up to her ear. ,Ross walks in. ,Gunther walks in. ,2,What happens when Joey is in his apartment with Rachel and has a phone up to his ear?,129201,Friends,27.61-34.22,friends_s06e18_seg02_clip_10,Phoebe walks in with a phone up to her ear. 7163,Izzie talked to Addison.,Izzie talked to Bailey.,Izzie talked to Derek.,Izzie talked to Meredith.,Izzie talked to George.,4,Who did Izzie talk to when she was walking in the hallway?,129202,Grey's Anatomy,0-3.64,grey_s03e17_seg02_clip_10,Izzie talked to George. 7164,Bottles of cold water,The movie Slumdog Millionaire,A Star Trek convention,Tater tots and a party invitation,A dinner date,3,What did Raj say made a great day after Seibert left?,129203,The Big Bang Theory,43.16-48.75,s04e15_seg01_clip_02,Tater tots and a party invitation 7165,Leonard is keeping score ,Amy is keeping score ,Sheldon is keeping score ,Stuart is keeping score ,Raj's sister is keeping score ,1,Who is keeping score of the ping pong game after Penny missed a point,129204,The Big Bang Theory,0-9.16,s08e19_seg02_clip_11,Amy is keeping score 7166,A glass of beer.,A slice of pizza.,Popcorn.,A pair of shoes.,A bag. ,3,What does Penny hold in her hand when Sheldon asks her what are you talking about?,129205,The Big Bang Theory,6.51-13.02,s02e19_seg02_clip_11,A pair of shoes. 7167,A monkey,Dirty laundry ,A dog,Food,A whiteboard,0,What does Ross bring when he goes to Monica's apartment?,129206,Friends,0-12.19,friends_s01e10_seg02_clip_06,A monkey 7168,Water,Coffee,Tea,Orange Juice,Apple Juice,1,What kind of drink did House hold when he was talking to Cameron?,129207,House M.D.,5.72-17.16,house_s04e04_seg02_clip_02,Coffee 7169,At Home,School,The hallway,Online,Work,4,Where did Sheldon tell Leonard he made the Infinite Sheldon card when Leonard was looking at the cards?,129208,The Big Bang Theory,26.42-34.41,s04e11_seg01_clip_00,Work 7170,He was riding in the passenger's seat.,He was driving.,He was riding in the backseat.,He was talking on the phone.,He was texting.,1,What was Gabe doing when he was in the car with House and Wilson?,129209,House M.D.,0-9.11,house_s03e07_seg02_clip_11,He was driving. 7171,Derek picked up her handbag.,Derek turned off Pete's television.,Derek called Pete's nurse.,Derek put on her coat.,Derek kissed Pete.,4,What did Derek do before she left Pete's room?,129210,Grey's Anatomy,55.63-67.48,grey_s03e10_seg02_clip_24,Derek kissed Pete. 7172,"There are 193,000 miles on the car before Ted suggests they push it.","There are 200,000 miles on the car before Ted suggests they push it.",There are 7 miles on the car before Ted suggests they push it.,"There are 100,000 miles on the car before Ted suggests they push it.","There are 207,000 miles on the car before Ted suggests they push it.",0,How many miles are on the car when Ted suggests they push it the remaining 7 miles?,129211,How I Met You Mother,37.1-53.49,met_s02e17_seg02_clip_18,"There are 193,000 miles on the car before Ted suggests they push it." 7173,"Nothing, he is completely naked and blurred out",A shirt and jeans,A dress,Shorts and a tank top,A robe,4,What is Ross wearing when he walks in the room with the assistant?,129212,Friends,53.42-62.12,friends_s10e03_seg02_clip_02,A robe 7174,castle becomes agitated and grunts,"castle asks when you write love you, how do you spell it",castle doesn't respond,he says nevermind,he continues texting,1,what does castle say after emma asks what he means,129213,Castle,4.1-5.93,castle_s06e04_seg02_clip_10,"castle asks when you write love you, how do you spell it" 7175,"Monica, Chandler, Rachel, and Joey are arguing about whether or not they think Mike should change his mind.","Monica, Chandler, Rachel, and Joey are arguing about how they each feel about marriage.","Monica, Chandler, Rachel, and Joey are carrying a couch into the apartment.","Monica, Chandler, Rachel, and Joey are talking about how stupid Mike is.","Monica, Chandler, Rachel, and Joey are talking about how dumb Phoebe is.",2,"What are Monica, Chandler, Rachel, and Joey doing when Mike and Phoebe argue about marriage?",129214,Friends,23.25-32.77,friends_s09e16_seg02_clip_22,"Monica, Chandler, Rachel, and Joey are carrying a couch into the apartment." 7176,"Please leave me alone, Joey!",No i do not.,You're one to talk.,I can worry about myself thank you very much.,"Yea, I Know",4,What did Phoebe say after Joey Told her she does attract some stinker?,129215,Friends,54.6-59.03,friends_s08e23-24_seg02_clip_16,"Yea, I Know" 7177,Ross is hiding behind an armchair.,Ross is hiding behind a refrigerator.,Ross is hiding behind a couch.,Ross is hiding under a table.,Ross is hiding behind a desk.,2,What is Ross hiding behind when the couple discusses the shirt?,129216,Friends,0-13.43,friends_s08e17_seg02_clip_09,Ross is hiding behind a couch. 7178,Leonard took of his shirt.,Leonard took off his headphones.,Leonard turn off the computer.,Leonard took a beer from the refrigerator.,Leonard listen music.,1,"What did Leonard do after saying, ""turn that off""?",129217,The Big Bang Theory,0-56.88,s08e20_seg02_clip_13,Leonard took off his headphones. 7179,"Ummm, hi?",What do you want?,Hey there,"Ummm, do I know you?",Why are you talking to me?,0,What did the model with the gold dress say to Barney after he introduced himself?,129218,How I Met You Mother,30.86-60.5,met_s03e10_seg02_clip_08,"Ummm, hi?" 7180,The patient is a thirty-six year old male,The patient is a twenty-five year old male,The patient is a fourty-five year old male,The patient is a thirty-five year old male,The patient is a thirty-seven year old male,3,Who is the patient that is rushed to the hospital when laying down?,129219,House M.D.,17.17-26.65,house_s01e15_seg02_clip_06,The patient is a thirty-five year old male 7181,saturday,monday,tuesday,sunday,All weekend,4,what did Barry say when Rachel came back ?,129220,Friends,3.15-63.03,friends_s06e15-16_seg02_clip_36,All weekend 7182,Poured water on Esposito,Punched Ryan in the arm,Danced with Lanie,Looked at his watch.,Ran out the door.,3,What did Dean do after he said true?,129221,Castle,40.51-44.6,castle_s03e01_seg02_clip_15,Looked at his watch. 7183,A bird.,A Vulcan robe.,A pair of scissors.,A purse.,A portrait.,3,What is Penny holding when Howard said come on in?,129222,The Big Bang Theory,8.82-11.19,s06e19_seg01_clip_01,A purse. 7184,Okay,Good,Great,Terrible,Fine,0,How does the guy say he is after being asked by House?,129223,House M.D.,0-13.2,house_s01e03_seg02_clip_22,Okay 7185,One,Four - Airport. Airport '75. Airport'77. Airport'79.,Two - Airport '75. Airport '77.,Two - Airport '77. Airport '79.,Four - Airport 35. Airport 42. Airport 77. Airport 09.,1,How many times does Chandler say Monica drew an airport before she tells everyone the answer?,129224,Friends,0-7,friends_s01e18_seg02_clip_22,Four - Airport. Airport '75. Airport'77. Airport'79. 7186,stands up with him,uses the phone,writes something down,look out the window,signal for a file,0,what does beckett do after esposito stands up from sitting with her in the office?,129225,Castle,0-8.19,castle_s08e16_seg02_clip_13,stands up with him 7187,His phone,Apple,Water,His cane,File,2,What did Cameron hand house after he asked if he lost any organs? ,129226,House M.D.,45.59-55.26,house_s02e24_seg02_clip_00,Water 7188,Cuddy said that she was late for her nap,Cuddy said that she was late for a a doctors appointment,Cuddy said that she was late for a Dentist meeting,Cuddy said that she was late for a business meeting,Cuddy said that she was late for a meeting,4,What did Cuddy say she was late to when she began to pack her stuff up?,129227,House M.D.,0-5.99,house_s02e23_seg02_clip_20,Cuddy said that she was late for a meeting 7189,Ross wants to talk to Rachel,Ross wants to tell Joey and Chandler,Ross wants to talk to Phoebe,Ross wants to talk to Monica,Ross wants to talk to Bruce Willis,1,Who does Ross want to go talk to after he leaves the apartment?,129228,Friends,17.96-25.84,friends_s06e04_seg02_clip_05,Ross wants to tell Joey and Chandler 7190,Sheldon recommends to Raj that he should throw the pills away.,Sheldon recommends to Raj that he does not take the pills.,Sheldon recommends to Raj that he should give the pills away.,Sheldon recommends to Raj that he take a lot of the pills.,Sheldon recommends to Raj that he should give the pills back.,3,What is Sheldon's recommendation to Raj when they are talking about the pills?,129229,The Big Bang Theory,27.08-61.54,s04e22_seg02_clip_09,Sheldon recommends to Raj that he take a lot of the pills. 7191,good attitude,blackeye,smile,drinks,new plates,1,What did the waitress have when she asked if Lily and Marshall needed anything?,129230,How I Met You Mother,5.75-21.5,met_s03e07_seg02_clip_14,blackeye 7192,She was assigned to gift shop management.,She was assigned in ER.,She wasn't assigned anywhere.,She was assigned to latrine duties.,She was assigned to OR.,4,Where was Cristina assigned before Burke reassigned her to the floor?,129231,Grey's Anatomy,0-22.96,grey_s03e15_seg02_clip_21,She was assigned to OR. 7193,"Beckett, Castle, and the witness were not hiding","Beckett, Castle, and the witness were hiding behind a dumster","Beckett, Castle, and the witness were hiding in a building","Beckett, Castle, and the witness were hiding behind a telephone pole",Beckett was not with Castle and the witness,1,"Where was Beckett, Castle, and the witness hiding after the car drove by?",129232,Castle,19.82-22.08,castle_s05e08_seg02_clip_07,"Beckett, Castle, and the witness were hiding behind a dumster" 7194,House was operating a wound in his thigh.,House was making a phone call.,House was taking Vacodin.,House was not doing anything.,House was looking outside the window.,0,What was House doing when seated in a bath tab?,129233,House M.D.,44.73-94.61,house_s07e22_seg02_clip_08,House was operating a wound in his thigh. 7195,Because Sheldon was angry and called Kripke names.,Because Sheldon interrupted Leonard.,Because Sheldon hit the table.,Because Sheldon threw something at Kripke.,Because Sheldon sneezed on Howard. ,0,What was Sheldon sorry for after Kripke walked away?,129234,The Big Bang Theory,28.14-33.36,s03e09_seg02_clip_01,Because Sheldon was angry and called Kripke names. 7196,Phoebe is Sitting down.,Phoebe is next to Monica.,Phoebe is next to Roy.,Phoebe is standing next to Rachel.,Phoebe is in between Rachel and Monica.,3,Who is Phoebe standing beside after she states she does want to see him take his clothes off?,129235,Friends,5.79-12.02,friends_s10e11_seg02_clip_11,Phoebe is standing next to Rachel. 7197,A pressure cooker.,A microwave.,The heater.,The bathroom water.,An oven.,0,What object did Chandler want to turn the heat down on when he was arguing with Monica?,129236,Friends,43.11-49.93,friends_s05e15_seg02_clip_07,A pressure cooker. 7198,Red,blue,green,purple,yellow,0,"What color is Chandler's vest when he says ""She's gonna break the pact.""?",129237,Friends,0-9.58,friends_s01e10_seg02_clip_05,Red 7199,Jeremy,Henry,Paul,Steven,Richard,0,Who was Foreman standing next to when he in the room?,129238,House M.D.,16.53-28.47,house_s03e05_seg02_clip_05,Jeremy 7200,He was sitting at a computer.,He was jogging in place.,He was doing yoga poses.,He was walking in a circle.,He was standing still against the wall.,3,What was House doing when talking about the theory of hemochromatosis?,129239,House M.D.,0-9.11,house_s02e23_seg02_clip_21,He was walking in a circle. 7201,A glass of milk.,A single rose.,A tablet.,A gun.,A snake.,0,What is in Joey's hand when Chandler speaks to him?,129240,Friends,16.63-29.7,friends_s04e07_seg02_clip_20,A glass of milk. 7202,Her hands. ,Her necklace. ,Her coat. ,Her earring. ,Her blouse. ,3,What is Rachel fiddling with when she is sitting down for dinner with a man?,129241,Friends,63.37-67.22,friends_s10e14_seg02_clip_03,Her earring. 7203,Standing in the hall getting ready to head into her apartment,Sitting on her bed in her room so they wouldn't know she was home,Out on the balcony watching from the window,Across the hall at Joey and Chandler's apartment,Standing in the kitchen with rubber gloves on,4,Where was Monica when Ross and Rachel were arguing?,129242,Friends,0-35.27,friends_s04e01_seg02_clip_19,Standing in the kitchen with rubber gloves on 7204,A devil costume.,A pink bow in her hair.,A polka dot shirt.,A flower necklace.,A black sweater.,3,What is Phoebe wearing when talking to the receptionist about someone filling in for her?,129243,Friends,0-10.03,friends_s09e21_seg02_clip_06,A flower necklace. 7205,he sleeping outside,he sleeping on the bed,He sleeping on the couch,he sleeping in the garage,nothing ,2,What did House's girlfirend tell House when he was walking out? ,129244,House M.D.,0-12.32,house_s08e14_seg02_clip_05,He sleeping on the couch 7206,His stomach,His eye,HIs arm,His crotch,His foot,1,What does Ryan grab when is punched in the video that he and Esposito are watching?,129245,Castle,0-53.26,castle_s05e02_seg02_clip_26,His eye 7207,At the bar where Ana was photographed at.,In a jail cell.,In an office in the police station.,At Vega's office.,In Cuba.,2,Where are Castle and Beckett when they are talking to Ana?,129246,Castle,49.89-63.67,castle_s02e15_seg02_clip_17,In an office in the police station. 7208,she slipped on the floor,She went to make coffee,she offered Paul food,she went to go change,she smacked Paul in the face,3,What did Monica go do after Paul arrived?,129247,Friends,10.85-20.49,friends_s01e01_seg02_clip_09,she went to go change 7209,She was crying,She was sad,She was angry,She was surprised,She was laughing,3,How did Cuddy reacted when she came in to saw House getting a massage,129248,House M.D.,0-3.78,house_s06e13_seg02_clip_19,She was surprised 7210,A large window. ,A flat screen television. ,A large aquairum. ,A fountain wall garden.. ,A stock market ticker. ,4,What is behind Jamie Burman when he is standing and talking? ,129249,Castle,15.75-25.21,castle_s06e19_seg02_clip_03,A stock market ticker. 7211,working,standing,eating,drinking,kneeling,4,What was Amy doing before she started talking?,129250,The Big Bang Theory,6.78-11.86,s06e04_seg02_clip_13,kneeling 7212,A key,A folder,A phone,A paper,A laptop,3,What did Brenda show to Cuddy after she entered the room?,129251,House M.D.,60.52-70.52,house_s02e12_seg02_clip_01,A paper 7213,He was also on the phone,Eating a sandwich,Drinking coffee,Drinking wine,Thinking to himself,4,What was Chandler doing when Jill was making a phone call?,129252,Friends,4.34-10.54,friends_s01e07_seg02_clip_01,Thinking to himself 7214,a guinea pig,a snake,a hamster,a kitten,A puppy,4,what is barney holding when he is at the pet store trying to scam on women?,129253,How I Met You Mother,11.88-20.78,met_s03e14_seg01_clip_02,A puppy 7215,Oil,Clorox,Gasoline,Detergent,Copier fluid,4,What did the bald male patient in the bed drink before landing in the hospital,129254,House M.D.,11.27-17.65,house_s02e01_seg02_clip_14,Copier fluid 7216,A bunch of fives,back stabber ,a trap,Et Tu,A diamond in the rough,3,What famous phase did Castle use when his mother tricked him? ,129255,Castle,65.95-80.43,castle_s04e22_seg02_clip_07,Et Tu 7217,Wanting to make a girl ,That she secretly wants twins,Doesn't want to get pregnant ,Is already pregnant ,Wants to make a boy too,0,What does Marshall accuse Lily of doing after she accuses him of wanting to make a boy? ,129256,How I Met You Mother,25.53-45.26,met_s06e06_seg02_clip_14,Wanting to make a girl 7218,over the phone,through facetime,through email,snail mail,texting,2,How did deedee say she and house talked when talking to kutner and taub on the elevator?,129257,House M.D.,75.83-82.14,house_s05e10_seg02_clip_11,through email 7219,Continue clapping.,Thank you so much.,More applauses.,Love the applauses.,Stop it. Stop Celebrating me!,4,What said Sheldon after people applud him?,129258,The Big Bang Theory,1.22-61.02,s07e06_seg02_clip_09,Stop it. Stop Celebrating me! 7220,the living room,the fridge,the bathroom,his bedroom,an empty box on the foosball table,4,what is the first thing that joey goes to when he enters his apartment?,129259,Friends,37.82-45.38,friends_s10e17-18_seg02_clip_23,an empty box on the foosball table 7221,She is klutzy. ,She is dramatic. ,She is allergic to peanuts. ,She is wanting attention. ,She is allergic to tomatoes. ,2,Why did Stella fall over after she took a bite of pesto sauce?,129260,How I Met You Mother,31.17-36.92,met_s04e01_seg02_clip_05,She is allergic to peanuts. 7222,used to clean the ears,used to clean the throat,used to clear the sinuses ,used for sexual purposes,used for tea,2,why did house say the patient used the neti pot their ex gave them when informing the group of the diagnosis?,129261,House M.D.,64.19-69.77,house_s08e17_seg02_clip_22,used to clear the sinuses 7223,Stuart.,Amy.,Raj.,Leonard.,Arthur.,4,Who was in a stretcher when paramedics were transporting it?,129262,The Big Bang Theory,3.97-61.02,s06e22_seg02_clip_15,Arthur. 7224,The father.,The uncle.,The brother.,The cousin.,The idiot.,0,What did the man ask if one of them were when they asked about the baby? ,129263,Friends,39.7-51.54,friends_s02e06_seg02_clip_12,The father. 7225,he punches Hunt ,he gets a drink ,he gets an award ,he hands Hunt money ,he's arrested ,4,What happens to Wyndham after Hunt meets with him? ,129264,Castle,39.96-48.2,castle_s04e20_seg02_clip_25,he's arrested 7226,They are in a high school. ,They are out on the street. ,They are in their apartment. ,They are in the mall. ,They are at the university. ,0,Where are the guys when they are giving speeches?,129265,The Big Bang Theory,0-3.62,s06e18_seg02_clip_09,They are in a high school. 7227,Black,green,grey,blue,silver,0,"What color is the jackt Castle is wearing when he say's ""Then it's a very...""?",129266,Castle,82.36-92.03,castle_s05e09_seg02_clip_20,Black 7228,Phoebe gave the fan a picture.,Phoebe shook the fan's hand.,Phoebe gave the fan her phone number.,Phoebe gave her autograph to the fan.,Phoebe gave the fan a concert ticket.,3,What did Phoebe do for the fan after she shook his hand?,129267,Friends,6-11.71,friends_s06e14_seg02_clip_05,Phoebe gave her autograph to the fan. 7229,Death of a family member,Death of a close friend,Death of a spouse,Death of her boss,Death of a pet,0,Why did the girl say she was going to take time off from an internship after having dinner with the couple?,129268,Castle,22.46-36.56,castle_s07e07_seg02_clip_02,Death of a family member 7230,bored,happy,joyful,sad,afraid,4,What did Penny feel when the machine came out of the door?,129269,The Big Bang Theory,58.76-66.02,s02e12_seg01_clip_01,afraid 7231,Beckett say hello and goodbye to The police chief,Beckett say hello and goodbye to The reverend,Beckett say hello and goodbye to The doctor,Beckett say hello and goodbye to The lawyer,Beckett say hello and goodbye to The little girl,1,Who does Beckett say hello and goodbye to before talking with Esposito about the guy hassling Buckley?,129270,Castle,19.66-31.28,castle_s02e09_seg02_clip_04,Beckett say hello and goodbye to The reverend 7232,That he wanted to go out on a date ,About how women don't like him,How he will just stay single,About what he was going to do for the night,The gift that Joey gave him ,4,What was Chandler talking about after Gail left?,129271,Friends,16.02-22.25,friends_s02e14_seg02_clip_06,The gift that Joey gave him 7233,Castle says 4 years.,Castle says 8 years.,Castle says 5 years.,Castle says 14 years.,Castle says 24 years.,0,How many years does Castle say that Tyson spent in Sing Sing when Castle talks about looking through the reports on Tyson?,129272,Castle,0-7.12,castle_s04e04_seg02_clip_16,Castle says 4 years. 7234,Face.,Toes.,Feet.,Legs.,Fingers.,4,What part of his body does Brandon say he cannot feel when he is having the procedure.,129273,House M.D.,13.63-17.87,house_s01e03_seg02_clip_21,Fingers. 7235,I'll find your lead.,It's Latin for black lead,You putting a hex on someone?,Well well look at what we have here. ,It's not poison is it?,2,"What did Chase say when House said ""Plumbum Nigrim""",129274,House M.D.,30.56-32.91,house_s06e17_seg02_clip_16,You putting a hex on someone? 7236,3 cups of coffee,His briefcase,The newspaper,Monica's purse,A tray full of food,0,What was in Ross' hands when Rachel asked him to sit down ,129275,Friends,9.15-16.53,friends_s06e15-16_seg02_clip_38,3 cups of coffee 7237,Playing with his shirt collar,Drinking a glass of wine,Rubbing his back,Rubbing her fingers through his hair,Kissing him,3,What was the woman in the red dress doing when Ted was giving the woman in the blue dress a foot massage?,129276,How I Met You Mother,49.11-58.15,met_s03e03_seg02_clip_13,Rubbing her fingers through his hair 7238,Barney is getting in touch his brother James,Barney is getting in touch with his feminine side,Barney is getting in touch with his father,Barney is getting in touch his college professor,Barney is getting in touch his childhood friend,2,Who is Honey say Barney is getting in touch with when she is on the phone,129277,How I Met You Mother,1.16-7.85,met_s06e15_seg02_clip_14,Barney is getting in touch with his father 7239,Counter,Chair,Floor,Couch,Bed,3,Where are Mike and Sheldon sitting when they are burping?,129278,The Big Bang Theory,28.99-43.63,s07e09_seg02_clip_13,Couch 7240,Derek eats a hot dog.,Derek cries.,Derek stands up.,Derek shakes hands with the doctor.,Derek cuts a paper.,3,What does Derek do after the another male doctor says may the best man win?,129279,Grey's Anatomy,70.09-75.55,grey_s03e13_seg02_clip_22,Derek shakes hands with the doctor. 7241,a dog,An old man,Laurie Hill,Castle,Beckett,2,Who is the third person that Esposito and Ryan question after they go into their office?,129280,Castle,27.82-45.15,castle_s02e12_seg02_clip_21,Laurie Hill 7242,Gets arrested.,Trips over his shoelaces.,Yells for Rachel.,Knocks over a cart of cleaning supplies.,Goes to the restroom.,2,What does Ross do after running through the airport?,129281,Friends,10.15-19.73,friends_s10e17-18_seg02_clip_38,Yells for Rachel. 7243,The monkey was wearing a tuxedo ,The monkey was wearing a disco jacket,The monkey was wearing sunglasses,The monkey was wearing a wig,The monkey was wearing a pink dress,4,What was the monkey wearing when Ross and the old man were trying to get the monkey to come to them,129282,Friends,5.39-15.22,friends_s01e19_seg02_clip_18,The monkey was wearing a pink dress 7244,She was too pushy,He's not interested in her,She was drunk,She had bad breath,He didn't like her costume,2,What was the reason Leonard felt uncomfortable when penny kissed him?,129283,The Big Bang Theory,0-34.26,s01e06_seg02_clip_15,She was drunk 7245,The communications office,The parking lot,Sergei's office,The administrative assistants desk,The IT room,0,Where did Vasily and Esposito go when they left the conference room with Beckett?,129284,Castle,45.97-67.81,castle_s08e11_seg02_clip_10,The communications office 7246,Hang out with Phoebe,Smoke pot,Go to dinner on his own,Watch Baywatch,Beat up Ross,0,What is Joey doing tonight when asked by Chandler?,129285,Friends,8.24-14.95,friends_s07e11_seg02_clip_10,Hang out with Phoebe 7247,She is sitting on bed. ,She is sitting on the floor. ,She is on the counter. ,She is sitting on the coffee table. ,She is kneeling in front of him. ,4,Where is Monica when she is talking to Chandler?,129286,Friends,1.23-5.74,friends_s09e22_seg02_clip_21,She is kneeling in front of him. 7248,blows his nose,picks up his cane,coughs,yawns,picks up his coffee mug,1,What does House do right before Cameron asks if the problem is birth control pills?,129287,House M.D.,11.96-18.41,house_s02e11_seg02_clip_19,picks up his cane 7249,a tear,a tumor,cancer,cause of rupture,another rupture,3,What did Burke find when he was in surgery?,129288,Grey's Anatomy,0-22.27,grey_s01e02_seg02_clip_03,cause of rupture 7250,A cup of ice cream,A painting,A couch,A napkin holder,A purse,3,What was behind Penny when she was talking to Sheldon about him being afraid to do something like his dad did?,129289,The Big Bang Theory,31.97-38.66,s10e05_seg02_clip_13,A napkin holder 7251,Do you think he is going to tell you he is gay?,Oh is he going to pop the question?,You getting married?,Does he love you?,"Oh my, he is going to ask you to move in.",0,What does Phoebe say to Rachel after Rachel tells them that Paul is taking her to dinner and has a big surprise planned?,129290,Friends,29.42-38.92,friends_s06e22_seg02_clip_01,Do you think he is going to tell you he is gay? 7252,Leonard wants to take Penny to dinner at 6:30.,Leonard wants to take Penny to dinner at 9:00.,Leonard wants to take Penny to dinner at 8:30.,Leonard wants to take Penny to dinner at 8:00.,Leonard wants to take Penny to dinner at 10:00.,0,What time Leonard plans to take Penny to dinner before Penny accepted the invitation?,129291,The Big Bang Theory,8.7-36.26,s01e03_seg02_clip_10,Leonard wants to take Penny to dinner at 6:30. 7253,showed her around,gave her a dirty look,handed her a phone number,slapped Rachel,slammed the door in Rachel and Ross' face,1,What did Mrs. Verhoeven's daughter do after Rachel asked how many bedrooms the apartment is?,129292,Friends,57.45-66.03,friends_s08e07_seg02_clip_03,gave her a dirty look 7254,A remote control.,An earring.,A tablet.,A mug.,A candle.,3,What does Martha have in her hand when she is talking to Castle about Katherine interviewing for a job?,129293,Castle,0-9.28,castle_s05e24_seg02_clip_21,A mug. 7255,Sheldon says that was put in there to take care of his needs. ,Sheldon says it was put there to make Amy feel good. ,Sheldon says that agreement is not needed anymore. ,Sheldon says he doesn't want to get sick. ,Sheldon says he will not take care of her. ,0,How does Sheldon respond when Amy brings up the clause in the relationship agreement?,129294,The Big Bang Theory,36.06-47.27,s06e10_seg02_clip_00,Sheldon says that was put in there to take care of his needs. 7256,The head of the cartel.,An unknown person on the phone.,"No one, the object sent him.",A woman who told him he was needed there.,A little boy who was crying.,2,Who did Castle say sent him after Maria put a knife to his throat?,129295,Castle,11.1-14.08,castle_s07e06_seg02_clip_14,"No one, the object sent him." 7257,Rachel's hair was in a side braid.,Rachel's hair was up in a bun.,Rachel's hair was in a ponytail.,Rachel's hair was straight and down.,Rachel's hair was in twisty curls.,3,How was Rachel's hair done when she walked into the room?,129296,Friends,32.26-44.66,friends_s05e07_seg02_clip_16,Rachel's hair was straight and down. 7258,A fast food container,Her drink,Her bag,A book,Her cell phone,2,What does the women in the red dress drop when she is being abducted by the men in masks? ,129297,Castle,71.83-81.44,castle_s04e08_seg02_clip_14,Her bag 7259,Kutner and 13 still had time in their contract,Kutner and 13 came up with a drug diagnosis for the patient,Kutner and 13 are not part of his department,Kutner and 13 plead not to be fired,Kutner and 13 fight back,1,Why does House take back firing Kutner and 13 after he gave them orders to investigate the patient?,129298,House M.D.,64.88-79.45,house_s04e09_seg02_clip_18,Kutner and 13 came up with a drug diagnosis for the patient 7260,crown,cowboy hat,toboggan,baseball cap,sunglasses,0,What is Miles wearing on his head when he speaks to Foreman and Thirteen?,129299,House M.D.,0-7.14,house_s06e17_seg02_clip_04,crown 7261,I'd sooner seek the Pope's blessing,House can pound sand for all I care,I don't need House's blessing,I don't need anyone's blessing,You maybe but House is incapable of blessings,2,What did Cuddy say after Wilson accused her of seeking his and House's blessing?,129300,House M.D.,14.03-19.46,house_s06e09_seg02_clip_05,I don't need House's blessing 7262,Beckett dances,Beckett sings,Beckett sits down,Beckett yells,Beckett talks to Castle,2,What does Beckett do after she enters the room with Mrs. Castle in it?,129301,Castle,21.13-35.96,castle_s04e03_seg02_clip_24,Beckett sits down 7263,5 hours,4 hours,3 hours,2 hours,6 hours,1,How many hours of memory did house say he lost when he was talking to taub in his office?,129302,House M.D.,58.61-62.79,house_s04e16_seg02_clip_01,4 hours 7264,facegram,facebook,facealbum,facestop,faceplace,4,What was Chase looking at when he was rubbing his head?,129303,House M.D.,19.28-24.45,house_s07e10_seg02_clip_03,faceplace 7265,House stated that he doesn't care much about anyone or anything that doesn't directly benefit him.,House said that he didn't care much for Foreman's aftershave.,House told Foreman he doesn't care much for other people's opinions.,House said that he didn't care much for apologies.,House let Foreman know that he doesn't care much for his sudden righteous attitude.,3,What did House tell Foreman that he didn't care much for when Foreman was in his office explaining himself?,129304,House M.D.,20.45-22.63,house_s01e09_seg02_clip_20,House said that he didn't care much for apologies. 7266,Penny is wearing a blue dress.,Penny is wearing a red dress.,Penny is wearing a black dress.,Penny is wearing a yellow dress.,Penny is wearing a orange dress.,1,What color dress is Penny wearing when she is at the restaurant?,129305,The Big Bang Theory,0-7.36,s09e15_seg02_clip_07,Penny is wearing a red dress. 7267,pencils,Toys,A phone,The computer,Papers,4,What falls off the counter when Joey and Chandler run into the doctors office?,129306,Friends,33.3-36.82,friends_s02e06_seg02_clip_12,Papers 7268,Rachel starts wiping down the tables.,Rachel goes to start clearing off the bar.,Rachel goes to sit on the couch.,Rachel goes to load the dishwasher.,Rachel grabs her coat and purse and goes home.,2,What does Rachel do after she hands Ross the broom?,129307,Friends,0-5.22,friends_s01e02_seg02_clip_12,Rachel goes to sit on the couch. 7269,To take a shower.,Out for coffee.,To bed.,To a movie.,Back to the hospital.,2,Where was Dr. House going when he left the three other doctors at the door?,129308,House M.D.,27.15-29.91,house_s03e15_seg02_clip_24,To bed. 7270,I'm really bored at work.,It's a good blog.,I can't help but read.,I didn't read your blog.,What's a blog?,0,Why does Ted say after Barney says he is reading his blog?,129309,How I Met You Mother,7.13-14.85,met_s03e14_seg01_clip_02,I'm really bored at work. 7271,A storage unit.,A Boat.,A cabin in the forest.,A security box in the bank.,A plane.,0,What has the murder victim said Montgomery when talking about the murder?,129310,Castle,6.46-10.77,castle_s03e16_seg02_clip_11,A storage unit. 7272,A shirt.,A glass of milk.,The syrup.,A five dollar bill.,The keys to Leonard's car.,2,What did Sheldon take away from Leonard before he marched to his room?,129311,The Big Bang Theory,17.06-40.62,s05e06_seg02_clip_10,The syrup. 7273,Dan turns on the tv,Dan sits in the chair,Dan gets a magazine,Touch his face,Dan reads a book. ,3,What does Dan do after House leaves?,129312,House M.D.,87.45-94.03,house_s02e16_seg02_clip_05,Touch his face 7274,C plus.,A plus.,B plus.,D plus.,B minus.,2,What grade did Ross say he was giving the paper before he put it down? ,129313,Friends,0-3.15,friends_s08e11_seg02_clip_04,B plus. 7275,Rachel had a headache and could not hear properly,Rachel had an ear infection,Rachel had recently been ill and lost her hearing,Rachel had amnesia and did not remember where the ring came from,Rachel was embarrassed that Ross had found out about the engagement,4,Why did Rachel pretend to not hear when Ross was talking to her about the ring?,129314,Friends,0-35.12,friends_s09e01_seg02_clip_21,Rachel was embarrassed that Ross had found out about the engagement 7276,To announce a sandwich eating contest,To welcome a new puppy,To welcome the new baby,To welcome Phoebe,To welcome Rachel,2,Why did Joey make a sign before Monica and Chandler are meant to come home,129315,Friends,0-38.71,friends_s10e17-18_seg02_clip_15,To welcome the new baby 7277,She is upset because her father is divorcing her mother.,She is upset because he cheated on her.,She is upset because he is making up lies about her,She is upset because she wanted to go to a restaurant,She is upset that they are laughing at her,4,Why is Rachel so upset with Ross when he is getting along so well with her father?,129316,Friends,0.9-50.06,friends_s03e07_seg02_clip_18,She is upset that they are laughing at her 7278,Eating in the cafeteria.,Sitting in a waiting room.,Taking a nap.,Meeting with his team.,Treating a patient.,1,What was House doing after Wilson and Cuddy spoke?,129317,House M.D.,4.06-14.45,house_s03e04_seg02_clip_25,Sitting in a waiting room. 7279,Crime scene clues.,A sample of drugs.,A dead body.,A blood sample.,Medical records.,2,"What are Lanie, Castle and Beckett looking at when they are talking about drug usage?",129318,Castle,10.06-11.43,castle_s02e03_seg02_clip_08,A dead body. 7280,He's a well groomed ventriloquist doll.,He's handsome.,His style is outdated.,He really needs a new look.,He looks fine the way he is.,0,What did Leonard say to Sheldon about his old look when he wanted a new look?,129319,The Big Bang Theory,52.31-55.77,s07e20_seg02_clip_04,He's a well groomed ventriloquist doll. 7281,Her social skills. ,Her sympathy for Leonard. ,Her feelings towards Leonard. ,Her feelings towards Howard.,Her initial impression of Leonard.,4,What did Sheldon say who improve when he was texting Amy?,129320,The Big Bang Theory,19.02-26.69,s04e05_seg01_clip_00,Her initial impression of Leonard. 7282,studying,dancing,sleeping,eating,watching tv,3,What are Raj and Penny and Howard doing when Preya and Leonard come through the door.?,129321,The Big Bang Theory,1.55-11.47,s04e18_seg02_clip_01,eating 7283,opens a food container,closes a food container,smells the food he is holding,opens a bag of chips,closes Izzie's locker,0,What does George do right before he says Izzie will never be the same?,129322,Grey's Anatomy,8.74-17.02,grey_s03e01_seg02_clip_17,opens a food container 7284,Alex kiss Izzie cheek,Alex kiss her hand,Alex kiss her forehead,Alex did nothing,Alex took her tea,0,What did Alex do before walking away from Izzie?,129323,Grey's Anatomy,41.41-45.91,grey_s03e18_seg02_clip_21,Alex kiss Izzie cheek 7285,Ross is at a tanning salon.,Ross is in surgery.,Ross is at a baseball game.,Ross is at a birthday party.,Ross is at his house.,0,Where is Ross when he is wearing a cap on his head?,129324,Friends,NaN-NaN,friends_s10e03_seg02_clip_02,Ross is at a tanning salon. 7286,Several scoops of kitty litter.,A lizard.,A plastic spider.,A snake.,"Nothing, he glues the desk shut.",3,What does Sheldon put into Raj's desk before sitting down?,129325,The Big Bang Theory,0-6.47,s05e07_seg02_clip_05,A snake. 7287,A sock,A pen,A pencil,A banana,A phone,4,What does Agent Napier pull out of his pocket before telling someone to turn around Alonzo's plane?,129326,Castle,32.64-43.06,castle_s08e13_seg02_clip_23,A phone 7288,Taub was siting on bed in their bedroom.,Taub was siting on a chair in their bedroom.,Taub was siting in the sitting room.,Taub was siting was standing.,Taub was not talking to his wife,0,Where was Taub siting when he was talking to his wife?,129327,House M.D.,0-7.92,house_s07e18_seg02_clip_25,Taub was siting on bed in their bedroom. 7289,He says they are very hot.,He says they are delicious,He says that they are cold.,He says that they are spicy,He says that they are gross. ,0,What does Ross say about the fajitas when he brings them into the room?,129328,Friends,0-18.89,friends_s10e02_seg02_clip_12,He says they are very hot. 7290,Phoebe and Ross were making out. ,Phoebe was reciting poetry. ,Phoebe was waiting tables. ,Rachel was dancing and Phoebe was attempting to draw her. ,Phoebe was playing her guitar on the stage. ,4,What was Phoebe doing when she was in the coffee shop? ,129329,Friends,49.52-57.93,friends_s05e05_seg02_clip_04,Phoebe was playing her guitar on the stage. 7291,5 months ago charges go up,2 months ago charges go up,3 months ago charges go up,4 months ago charges go up,1 month ago charges go up,4,When do Odette's credit card charges go up according to Beckett when she discusses with Castle how the charges formerly were steady?,129330,Castle,0-10.1,castle_s04e18_seg02_clip_06,1 month ago charges go up 7292,Because he wants the chair for himself. ,"Because he is a clean freak, and fears second had things are not clean. ",Sheldon is now very sick. ,The chair is ugly and not very nice.,Other residents of the building are complaing,1,Why is Sheldon needing Amy's help after Penny brings in furniture? ,129331,The Big Bang Theory,22.21-60.02,s05e02_seg02_clip_09,"Because he is a clean freak, and fears second had things are not clean. " 7293,Grey,Pink,Yellow,Blue,Red,0,What color shirt is Racheal watching when Joey is talking about the movie he was in?,129332,Friends,41.74-43.14,friends_s08e19_seg02_clip_02,Grey 7294,He says so what?,He tells her to shut up,He says big deal,He says his girlfriend doesnt pick out his clothes his mother does,He says its not her business,3,How does Howard respond after Penney's comment about his clothes,129333,The Big Bang Theory,31.01-62.02,s04e15_seg02_clip_00,He says his girlfriend doesnt pick out his clothes his mother does 7295,Hits her gavel,Finds him in contempt and orders him to be thrown into jail.,Stands up,Points to the door,Orders a recess,1,What does the female judge do after Castle asked for the names of alumni in the Tristate area?,129334,Castle,0-7.48,castle_s08e10_seg02_clip_15,Finds him in contempt and orders him to be thrown into jail. 7296,A yellow bowl.,A blue bowl.,A yellow plate.,A blue plate.,A cup of coffee.,1,"What was on the table in front of Amy when she said ""I'm drunk""?",129335,The Big Bang Theory,0-5.9,s04e19_seg02_clip_03,A blue bowl. 7297,Penny is eat pizza.,Penny is eating corn on the cobb.,Penny is eating a french fry.,Penny is eating grapes.,Penny is eating chicken tenders.,2,What is Penny eating when talking to Sheldon about Relationships?,129336,The Big Bang Theory,0.3-28.31,s08e03_seg02_clip_08,Penny is eating a french fry. 7298,I received messages,Nothing,Perfect,She did not get that message So this does not count,I do'nt see that ,3,what about message did Phoebe say when Phoebe said with Jack ?,129337,Friends,0-51.05,friends_s06e15-16_seg02_clip_36,She did not get that message So this does not count 7299,Cuddy said Charles cares,Cuddy said House cares,Cuddy said Chase cares,Cuddy said Larry cares,Cuddy said Megan cares,1,Who did Cuddy say really cares about his patients when talking to Vogler?,129338,House M.D.,0-8.13,house_s01e15_seg02_clip_06,Cuddy said House cares 7300,Valentines Day,Christmas,New Years Eve,Halloween,Thanksgiving,1,What holiday is the coffee shop decorated for when Rachel is talking to Chandler and Joey?,129339,Friends,0.29-21.63,friends_s03e10_seg02_clip_09,Christmas 7301,Because they wanted to get married first.,Because there were drawings on Ross' face.,Because Ross and Rachel got married.,Because they were getting married in secret.,Because Rachel was yelling.,2,Why were Monica and Chandler shocked when Ross and Rachel came out of the chapel?,129340,Friends,54.08-62.92,friends_s05e23-24_seg02_clip_41,Because Ross and Rachel got married. 7302,House had told Cuddy he could do a backflip after getting his meds refilled.,House had replied to Cuddy that she can't pee standing up.,House informed Cuddy that she can't manipulate him again.,House let Cuddy know that he could do his job with his eyes closed.,House told Cuddy that she could and will bring sexy back.,1,How did House reply to Cuddy right after she told him that he couldn't lift his arm?,129341,House M.D.,7.55-9.77,house_s03e08_seg02_clip_18,House had replied to Cuddy that she can't pee standing up. 7303,A knife,A cup,A phone,A pen,A torch,4,What did Thirteen had in her Hand when Eddie asked if he called the cops?,129342,House M.D.,0-8.9,house_s06e10_seg02_clip_18,A torch 7304,Raj and Penny,Penny and Leonard,Leonard and Raj,Penny and Sheldon,Sheldon and Leonard,2,Who is looking on when Howard introduces himself to Ester?,129343,The Big Bang Theory,0-47.86,s02e21_seg02_clip_14,Leonard and Raj 7305,Where did you learn all this?,I get it,Whats a particle accelerator?,I have a question,Makes sense to me,3,What does Phoebe say when David explains the particle accelerator to her?,129344,Friends,45.55-58.03,friends_s01e10_seg02_clip_06,I have a question 7306,grey,black,Blue,orange,red,2,"What color is Ted's sweater when he say's ""Nothing in this life...""?",129345,How I Met You Mother,0-9.51,met_s06e01_seg02_clip_16,Blue 7307,black,red,green,blue,white,0,What color is Castle's coat when talking to Beckett?,129346,Castle,0-10.48,castle_s07e13_seg02_clip_15,black 7308,tacekes the coffe to his offi,sends them over a cup,spills i so they can't get none,Refuses to share,cries when he takes them a cup. ,3,What was Esposito rebuttal to giving Beckett and Mccord coffee after Castle's sugesstion?,129347,Castle,29.05-34.5,castle_s06e03_seg02_clip_07,Refuses to share 7309,Bread,Pizza,Salads,Soup,Drinks,4,What is Bernadette serving before Sheldon comes and sits at the table?,129348,The Big Bang Theory,6.4-12.48,s04e23_seg02_clip_00,Drinks 7310,Joey got very upset.,Joey did a slow clap.,Joey looked pleased with himself.,Joey looked confused and slightly unhappy.,Joey walked out of the room.,3,How did Joey react to Chandler after the call had ended?,129349,Friends,0-27.91,friends_s05e07_seg02_clip_16,Joey looked confused and slightly unhappy. 7311,potatoes,cheese,burger,tomatoes,A cake,4,What food did Rachel eat when a man looked at her from outdoor,129350,Friends,0-48.94,friends_s02e08_seg02_clip_14,A cake 7312,Joey asked if Rachel wanted a job with his dad,Joey asked if Rachel wanted to help with the plumbing at Fortunata Fashions,Joey asked if Rachel wanted to visit Fortunata Fashions,Joey asked if Rachel wanted a job as a plumber,Joey asked if Rachel wanted help getting an interview at Fortunata Fashions,4,What did Joey suggest when he was talking to Rachel?,129351,Friends,9.84-24.45,friends_s03e10_seg02_clip_13,Joey asked if Rachel wanted help getting an interview at Fortunata Fashions 7313,Joey picked out the meat and just ate the jam and custard.,"Joey thought the meat, jam, and custard all tasted good.",Joey was eating something different than Ross.,Joey only ate the custard and not the jam and meat.,Joey only ate the meat and not the jam and custard.,1,Why did Joey tell Ross he liked the food after Ross said it tasted like feet?,129352,Friends,28.53-46.83,friends_s06e09_seg02_clip_17,"Joey thought the meat, jam, and custard all tasted good." 7314,Park,House,Chase,Cuddy,Wilson,0,Who was Foreman talking to when he was sitting down?,129353,House M.D.,0-8.25,house_s08e04_seg02_clip_20,Park 7315,Marshall pretended to punch someone.,Marshall pretended to swing a baseball bat.,Marshall pretended to slap someone.,Marshall pretended to throw an item.,Marshall pretended to brush his teeth.,4,What did Marshall pretend to do with his hand when he was sitting at the table with only Lily?,129354,How I Met You Mother,51.35-53.42,met_s02e09_seg02_clip_01,Marshall pretended to brush his teeth. 7316,In an exam room,In a hospital bed,In a surgical suite,Under debris,Stuck under a car,3,Where is Hanna when she is talking to Cuddy?,129355,House M.D.,58.97-68.57,house_s06e21_seg02_clip_18,Under debris 7317,Amy does not get to listen to music in the car with Sheldon because Sheldon hates all music.,Amy does not get to listen to music in the car with Sheldon because Sheldon doesn't want to look like a gang member.,Amy does not get to listen to music in the car with Sheldon because Sheldon just likes to talk.,Amy does not get to listen to music in the car with Sheldon because Sheldon only likes listening to podcasts.,Amy does not get to listen to music in the car with Sheldon because Sheldon is deaf.,1,Why does Amy not get to listen to music in the car when she is with Sheldon?,129356,The Big Bang Theory,37.83-47.45,s07e03_seg02_clip_06,Amy does not get to listen to music in the car with Sheldon because Sheldon doesn't want to look like a gang member. 7318,Sitting to the left of Castle,Sitting across from Castle,Sitting to the right of Castle,Sitting behind Matha,Sitting behind Castle.,1,Where was Beckett when Martha said she was going to look for her own place to live.,129357,Castle,19.89-31.54,castle_s07e16_seg02_clip_26,Sitting across from Castle 7319,Monica's apartment. ,Joey's apartment. ,Ross's apartment. ,The coffee shop. ,The restaurant. ,1,Where is Ross when he is talking to Joey and Monica about his date with Elizabeth?,129358,Friends,48.02-51.02,friends_s06e18_seg02_clip_10,Joey's apartment. 7320,A pack of cigarettes ,A knife,A cell phone,A suicide note,A bottle of aspirin,4,What did Cuddy say was found by the body when talking to House?,129359,House M.D.,51.89-57.74,house_s03e07_seg02_clip_24,A bottle of aspirin 7321,Rachel plays for Monica,Phoebe plays for Monica,Joey plays for Monica,Ross plays for Monica,Chandler plays for Monica,4,Who plays ping pong for Monica after she get injured,129360,Friends,23.93-31.73,friends_s09e23-24_seg02_clip_47,Chandler plays for Monica 7322,A bathrobe.,A nightgown.,A towel.,A sheet.,A sweater dress.,0,What was Rachel wearing when she walked in to the room where Joey was talking to Ross?,129361,Friends,22.63-28.64,friends_s07e18_seg02_clip_06,A bathrobe. 7323,She puts hand cuffs on him.,She leans in towards him.,She pulls him out of his chair.,She puts her hands on his shoulders.,She doesn't do anything to Brent.,1,What does Beckett do to Brent after he tells her he wasn't trying to hide anything?,129362,Castle,39.18-49.09,castle_s01e02_seg02_clip_09,She leans in towards him. 7324,A window.,A water fountain.,A wheel chair.,A black board.,A tv.,0,What is behind Connie when she told Irene he'll be right back?,129363,House M.D.,30.88-39.91,house_s04e04_seg02_clip_14,A window. 7325,Gates thinks it's funny Esposito and Castle are watching the video.,Gates says it is inappropriate work behavior to view the video.,Gates immediately thinks the video is solid evidence.,Gates notices that the time-stamp has been altered.,Gates wants a copy of the video.,1,How does Gates react after approaching Esposito and Castle when they are viewing the video?,129364,Castle,30.81-51.49,castle_s05e07_seg02_clip_15,Gates says it is inappropriate work behavior to view the video. 7326,Curtains,Window,Door,Books ,Table,3,What is behind Penny when she asks how the potato clock works?,129365,The Big Bang Theory,3.54-8.56,s06e22_seg02_clip_12,Books 7327,kissing penny,making tea,looking at the computer,looking through his phone,sitting on the couch,2,what is leonard doing when amy tells sheldon that he is going with her to a party?,129366,The Big Bang Theory,73.65-83.15,s05e19_seg01_clip_01,looking at the computer 7328,Amy is at the front door,Amy is behind the camera,Amy is in the bathroom,Amy is in her car,Amy is in the bedroom,1,Where is Amy when Sheldon stops taping,129367,The Big Bang Theory,55.14-63.02,s06e07_seg01_clip_00,Amy is behind the camera 7329,Happy and jovial. ,Helpful and attentive. ,Upset and crying. ,Angry and yelling.,Irritated. ,4,What is Rachel's attitude when Ross is talking? ,129368,Friends,16.82-26.86,friends_s01e05_seg02_clip_01,Irritated. 7330,he wants Chase scared so that he would stop helping Dr. Zaius with the Man/Ape hybrid project,He wants Chase scared so that he would comply with the money laundering scheme,He wants Chase scared so that he would continue worshiping the dark god Cthulhu,He wants Chase scared so that he would perform well in order to keep his job,He wants Chase scared so that the facility would be spared from the assault from the magical girls,3,"Why does House want Chase be scared, as indicated when he was discussing the issue with Cameron?",129369,House M.D.,38.42-47.74,house_s01e14_seg02_clip_21,He wants Chase scared so that he would perform well in order to keep his job 7331,He wanted to break up with her,He left her at the alter,He loved Rachel instead of her,Ross said Rachel's name instead of hers at their wedding,He wanted to come over,3,What was Emily upset about when talking to Ross on the phone?,129370,Friends,0-32.85,friends_s05e04_seg02_clip_09,Ross said Rachel's name instead of hers at their wedding 7332,The subway,Their apartment,The park,The coffee shop,The bathroom,3,Where are Monica and Chandler when they are talking about beating Phoebe and Gary,129371,Friends,4.8-8.64,friends_s05e17_seg02_clip_11,The coffee shop 7333,Marshall will be out of her hair.,She hopes they'll be friends.,She thinks the guy's cute.,Her and Robin got into an argument and she wants to make her jealous.,She wants someone to drink with.,1,Why is Lily so excited when they get new neighbors?,129372,How I Met You Mother,24.66-34.28,met_s03e11_seg01_clip_02,She hopes they'll be friends. 7334,A bookshelf,A clock,A desk,A phone,A vase of flowers,3,What was behind Mindy when she was talking to Rachel about how she is still going to marry him?,129373,Friends,5.4-15.01,friends_s01e20_seg02_clip_19,A phone 7335,Because Barney needs to ask for a match.,Because Barney wants to ask a question.,Because Barney want to ask for a drink.,Because Barney pretend that the person is his friend.,Because Barney is pushing the person.,3,Why Barney pocked to a person next to him after he turned?,129374,How I Met You Mother,16.51-60.03,met_s02e10_seg02_clip_14,Because Barney pretend that the person is his friend. 7336,Failing a patient by giving them the wrong medicine. ,Death. Killing a patient. ,Getting sued by a patient for bad practice.,Equal access to health insurance for all people.,Medicine theft by patients trying to avoid costs.,1,Which controversial topic in the medical healthcare industry does House ask Foreman about after he tells Chase the patient could die?,129375,House M.D.,74.23-82.02,house_s03e22_seg02_clip_12,Death. Killing a patient. 7337,The tea was about to expire. ,Leonard asked him to make it for him. ,Leonard was sick. ,Because you bring guests a hot beverage when they're upset. ,Sheldon wanted to have a tea party.,3,Why did Sheldon bring Leonard tea after the Halloween party?,129376,The Big Bang Theory,31.12-42.72,s01e06_seg02_clip_13,Because you bring guests a hot beverage when they're upset. 7338,He stands up,He makes a phone call,He opens a drawer,He buzzes for his secretary,He turns on his computer,0,What did the man in the office do after telling the detectives he will get a disk?,129377,Castle,66.17-72.47,castle_s01e03_seg02_clip_16,He stands up 7339,Raj raises his hands up.,Raj dances to music.,Raj hugs Howard.,Raj runs out of the room.,Raj kisses Penny.,0,What does Raj do when he tells Penny he tells everybody?,129378,The Big Bang Theory,0-3.88,s08e04_seg02_clip_07,Raj raises his hands up. 7340,Ross told Rachel to stop what she was doing.,Ross walked away.,Ross kissed Rachel back.,Ross tried to escape the kisses then he hugged Rachel.,Rachel did not try to kiss Ross.,3,What did Ross do when he realized that Rachel was trying to kiss him?,129379,Friends,49.1-54.36,friends_s10e13_seg02_clip_09,Ross tried to escape the kisses then he hugged Rachel. 7341,His cell phone. ,His keyboard. ,His coat. ,A bottle of water. ,A beer bottle. ,2,What does Ross have in his hands when he leaves the apartment?,129380,Friends,21.47-27.77,friends_s04e07_seg02_clip_06,His coat. 7342,"House told Hamilton they weren't tight like that, so just stop, before his cane will have to be surgically removed from Hamilton's better side.","After Hamilton said, ""Congratulations, Greg,"" House said, ""Why, Marty?""","House instructed Hamilton to call him ""Sir Gregory"" if he insisted on calling him by his first name.","House asked Hamilton did that mean they were now real BFF buddies, forever and always?!","House said that since only his parents call him by his first name, should he start calling Hamilton, ""Daddy.""",1,How did House respond to Hamilton after Hamilton congratulated House by his first name?,129381,House M.D.,73.54-75.71,house_s01e09_seg02_clip_20,"After Hamilton said, ""Congratulations, Greg,"" House said, ""Why, Marty?""" 7343,a lab coat,a tie,a suit coat,an oxygen mask,pajamas,3,What is George wearing when he tells Callie the patient's blood was toxic?,129382,Grey's Anatomy,6.91-13.37,grey_s03e14_seg02_clip_14,an oxygen mask 7344,She was afraid for his safety.,She was jealous.,She was afraid he would put his career as an astronaut ahead of her.,"She wasn't upset about it, she was happy.",She didn't think he would make a good astronaut.,0,Why was Bernadette upset when thinking about Howard going to space?,129383,The Big Bang Theory,25.12-37.28,s05e05_seg02_clip_07,She was afraid for his safety. 7345,Brandon,Castle,Ryan,Esposito,Montgomery,0,Who runs toward the door after pushing his lever down?,129384,Castle,63.04-72.24,castle_s08e12_seg02_clip_23,Brandon 7346,He drank some wine.,He was crying.,He sat down.,He made a phone call.,He was laughing.,4,What was James doing before Barney said something about arts and craft fair?,129385,How I Met You Mother,0-6.91,met_s02e10_seg02_clip_14,He was laughing. 7347,Ross puke blood from the table.,Frank sees the childs head come out.,Frank is too busy looking at the clock.,Frank is in the batroom passsed out.,Frank is tired asleep in the breakroom.,1,What did Frank see before he waves his hands in the air?,129386,Friends,18.3-27.45,friends_s05e03_seg02_clip_13,Frank sees the childs head come out. 7348,Sheldon is wearing dockers pants.,Sheldon is wearing khaki pants.,Sheldon is wearing jean pants.,Sheldon is wearing velvet pants.,Sheldon is wearing polyester pants.,2,What kind of pants is Sheldon wearing when he is walking with Leonard?,129387,The Big Bang Theory,0-7.84,s07e02_seg02_clip_14,Sheldon is wearing jean pants. 7349,flashlights,their guns,batons,flares,tasers ,1,what do ryan and esposito have out when they are head to head with ruth and her boys?,129388,Castle,0-7.19,castle_s04e10_seg02_clip_25,their guns 7350,He slit his throat.,He hung himself.,He used a wire to electrocute himself.,He poisoned himself.,He got someone else to kill him.,2,How does Mark say David Collier died when he couldn't take what people were saying?,129389,Castle,56.35-74.53,castle_s05e17_seg02_clip_24,He used a wire to electrocute himself. 7351,Do nothing,Call 911, Yell at the ugly naked guy,Throw a ball at the ugly naked guy,Poke the ugly naked guy,4,What is Joeys suggest when everyone wants to see if the ugly naked guy is alive?,129390,Friends,40.82-44.15,friends_s03e08_seg02_clip_11,Poke the ugly naked guy 7352,"Gum, mints and mouthwash","Cigarettes, alcohol and firecrackers","Toothpicks, kleenex and eye drops","Sleeping pills, bottled water and a napkin","A pen, notepad and dictionary",1,What are the three items in Robin's purse when she talks about vices for Marshall?,129391,How I Met You Mother,29.23-47.89,met_s06e14_seg02_clip_00,"Cigarettes, alcohol and firecrackers" 7353,Filling out thank you cards at the table,Mopping the floor in the kitchen,Wrapping Ross' birthday gift in the living room,Folding laundry at the kitchen table,Painting her nails in the living room,3,What was Rachel doing before Monica started complaining about Ross,129392,Friends,0-19.36,friends_s02e17_seg02_clip_02,Folding laundry at the kitchen table 7354,The people near El Toro won't let police officers get close to the building,"El Toro is in Spanish Harlem, and the officers are likely not to come back alive",El Toro burned down a year ago,Hammerhead will come after her if he finds out Sonia ratted him out,El Toro is in Spanish Harlem and no one there talks to the police,4,Why does Sonia say Beckett cannot send officers to El Toro when the two of them are talking?,129393,Castle,20.36-35.3,castle_s08e16_seg02_clip_04,El Toro is in Spanish Harlem and no one there talks to the police 7355,A book.,A napkin.,A pen.,A research paper.,A box. ,1,What did Sheldon put under his hand when he was sitting at the table with the guys?,129394,The Big Bang Theory,0-10.68,s04e19_seg02_clip_09,A napkin. 7356,She asks to put Burke on the phone,She tells him to stop the surgery,She tells him to let her in the surgery,She tells him to go to her supervisor,She threatens to report him to the board,0,What does Izzie do after she issues the statistics on the patient's sat levels?,129395,Grey's Anatomy,26.15-30.21,grey_s02e25_seg02_clip_11,She asks to put Burke on the phone 7357,They got hurt,The were healed,They died,They fainted,They got sick,2,What does Ryan say happened to the people who got a copy when he's talking to Castle?,129396,Castle,1.35-6.75,castle_s05e17_seg02_clip_09,They died 7358,He picked up a silver knight,He picked up a broom,He looked at his watch,He looked down at the table,He put down his lead pencil,0,What did House do when one of the physicians talked about tumors. ,129397,House M.D.,28.68-30.56,house_s06e17_seg02_clip_16,He picked up a silver knight 7359,Martha.,Scarlett O'Hara.,Benny.,Madge.,Police.,2,Who is sitting in the chair when Castle and Beckett enter the room?,129398,Castle,21.33-34.95,castle_s02e23_seg02_clip_19,Benny. 7360,Chandler gets up from the kitchen table ,Monica gets up from the kitchen table ,Phoebe gets up from the kitchen table ,Joey gets up from the kitchen table ,Ross gets up from the kitchen table ,2,Who gets up from the kitchen table when they are in the kitchen?,129399,Friends,27.91-34.22,friends_s04e09_seg02_clip_06,Phoebe gets up from the kitchen table 7361,Last night.,Last week.,Last month.,Two weeks ago.,A year ago.,0,"How long ago did Benjamin say he had Charlies name tattooed on his shoulder before Ross said ""Seriously""? ",129400,Friends,14.65-24.72,friends_s10e06_seg02_clip_12,Last night. 7362,TV,Wall,Bench,Recliner,Couch,2,What did Joey run in to when he came out of the bedroom in the dark? ,129401,Friends,6.79-13.58,friends_s03e18_seg02_clip_18,Bench 7363,Prostitution,Heroin processing,Sex trafficking,Child abuse,Murders,1,What do the police and Castle think the basement was being used for when it was occupied?,129402,Castle,30.04-40.51,castle_s03e20_seg02_clip_18,Heroin processing 7364,Foreman's look of despair,Foreman's new haircut,Foreman's new outfit,The wetness of Foreman's shoes,The stain on Foreman's shirt,3,What is the first thing House notices about Foreman when Foreman approaches House in the hallway? ,129403,House M.D.,50.46-64.04,house_s08e21_seg02_clip_09,The wetness of Foreman's shoes 7365,Ted cries.,Ted kisses Robin.,Ted walks to the bathroom.,Ted screams.,Ted points to the TV.,4,What does Ted do when he mentions Frankenstein's monster?,129404,How I Met You Mother,2.42-5.45,met_s03e08_seg02_clip_12,Ted points to the TV. 7366,A clock.,His cane.,A book.,A coat.,A key.,2,What did House put on the table before he said something about cooking pork?,129405,House M.D.,82.19-89.82,house_s01e01_seg02_clip_18,A book. 7367,Stuart dated one person.,Stuart dated two people.,Stuart dated three people.,Stuart dated four people.,Stuart dated five people.,0,How many women at a time does Stuart say he has dated when he talking to everyone?,129406,The Big Bang Theory,0-7.93,s09e21_seg02_clip_10,Stuart dated one person. 7368,Leonard took the jar to Stephanie. ,Leonard dropped it. ,Sheldon went and sat with Stephanie on the couch. ,Leonard couldn't get it open. ,Leonard sat the jar on the table. ,3,What happened after Sheldon gave Leonard the jar? ,129407,The Big Bang Theory,49.01-58.32,s02e09_seg02_clip_12,Leonard couldn't get it open. 7369,Joey walks in after Phoebe was in the kitchen ,Rachel walks in after Phoebe was in the kitchen ,Monica walks in after Phoebe was in the kitchen ,Chandler walks in after Phoebe was in the kitchen ,Ross walks in after Phoebe was in the kitchen ,2,Who walks in after Phoebe was in the kitchen at the apartment?,129408,Friends,0-1.2,friends_s04e09_seg02_clip_06,Monica walks in after Phoebe was in the kitchen 7370,Phoebe is holding a book,Phoebe is holding a tambourine,Phoebe is holding a microphone,Phoebe is holding a guitar,Phoebe is holding a clipboard,3,What is Phoebe holding in her hands when Monica come through the door,129409,Friends,0-8.64,friends_s09e19_seg02_clip_17,Phoebe is holding a guitar 7371,Looks at his watch,Takes off his jacket,Takes off his glasses,Puts his arm around her,Ties his shoe,2,What does Dr. Burke do right before he asks Monica if they're nuts,129410,Friends,7.7-15.97,friends_s02e15_seg02_clip_16,Takes off his glasses 7372,Because Monica ran the touchdown in the wrong direction.,Because Monica's elbow to his face was illegal.,Because Monica was tagged before she could score.,Because Monica's mother didn't like that she broke Ross' nose.,Because Monica dropped the football before she could score.,1,Why does Ross say Monica's touchdown didn't count when they were playing Geller Bowl VI?,129411,Friends,49.22-58.23,friends_s03e09_seg02_clip_01,Because Monica's elbow to his face was illegal. 7373,Raj turns his head towards Howard.,Raj jumps up and down.,Raj sits on the couch.,Raj walks out the door.,Raj plays chess.,0,What does Raj do when he says how so?,129412,The Big Bang Theory,13.54-18.46,s08e01_seg02_clip_02,Raj turns his head towards Howard. 7374,Told her he was in the neighborhood.,He asked to view the victims body.,He kissed her.,He told her he came to pickup the bullets to take them over to Ballistics.,Yelled at her for not working on the victims body yet.,0,What is the first thing Esposito did after Lanie asked what are you doing here?,129413,Castle,75.55-80.1,castle_s03e22_seg02_clip_08,Told her he was in the neighborhood. 7375,He went over to the phone and started calling someone,"He went into his room, angrily",He began picking up all his belongings in the living room,He went into the kitchen and separated his stuff from Chandler's,He sat down and pretended to read a magazine,1,What did Joey do after he was finished arguing with Chandler?,129414,Friends,57.53-60.02,friends_s04e07_seg02_clip_21,"He went into his room, angrily" 7376,Because her arm pits are showing.,Because her butt is showing.,Because her nipples are showing.,Because her hair is showing.,Because her stomach is showing.,2,Why are the people loving Monica's singing when she is on stage?,129415,Friends,34.9-39.38,friends_s09e13_seg02_clip_22,Because her nipples are showing. 7377,Its the urinary tract ,Its the heart,Its the respitory system,Its the intestines ,Its the brain,4,What did Cameron tell Kutner and House they had to assume after telling them to stop?,129416,House M.D.,11.63-18.61,house_s05e13_seg02_clip_13,Its the brain 7378,tired,happy,nervous,bored,angry,2,How did Sheldon feel when Amy tried to move in with him?,129417,The Big Bang Theory,28.21-39.01,s06e15_seg02_clip_08,nervous 7379,She is reading a book,She is drinking coffee,She is crying,She is on her phone,She is on her laptop ,0,What is Phoebe doing when Tim comes up to her?,129418,Friends,25.51-33.31,friends_s08e05_seg02_clip_10,She is reading a book 7380,Sheldon's mother is with Sheldon.,Penny is with Sheldon.,Raj is with Sheldon.,Amy is with Sheldon.,Howard is with Sheldon.,3,Who is with Sheldon when he is sitting in the storage locker?,129419,The Big Bang Theory,0-18.61,s09e19_seg02_clip_16,Amy is with Sheldon. 7381,cole,Barry,Back,Bang,Ben,4,whose name of doll did Ross told when Ross said with Janine ?,129420,Friends,0-43.19,friends_s06e15-16_seg02_clip_20,Ben 7382,He's looking at some new data for his job,Reading a cookbook,He's reading a novel,Reading a magazine ,"Nothing, he's just listening to Joey talk",3,What is Chandler doing when he's sitting at the kitchen table?,129421,Friends,11.29-19.53,friends_s08e21_seg02_clip_02,Reading a magazine 7383,Cry about them,Ignore them,Rip off the bandaid,Go to the hospital for treatment,Pour salt in them,2,What does the Narrator say you Have to do with some wounds when they need time to heal?,129422,Grey's Anatomy,110.43-122.02,grey_s02e20_seg02_clip_25,Rip off the bandaid 7384,Chandler runs out of the room,"Chandler says ""hello"" and begins having a conversation with Petes mom ",Chandler hides on the couch,Chandler pretends to be a statue in the corner of the room. ,Chandler quickly tells the television phone to hang up the call. ,2,What does Chandler do when Petes mom comes on the television phone,129423,Friends,38.16-44.72,friends_s03e23_seg02_clip_08,Chandler hides on the couch 7385,gloomy,bored,happy,tired,irritated,4,How did Howard feel when Sheldon sang?,129424,The Big Bang Theory,43.22-58.8,s06e11_seg02_clip_10,irritated 7386,Because it doesn't really matter to him.,Because he wants her to stay.,Because he isn't in a hurry.,Because it is not his issue.,Because she wants to stay.,3,Why does Chase say he not worried about when Popo will leave?,129425,House M.D.,30.5-39.33,house_s08e16_seg02_clip_08,Because it is not his issue. 7387,Ian had pain in both feet and couldn't walk very easily.,Ian had pain in his right ear.,Ian had pain in his stomach right below the rib cage.,Ian had pain in his right upper quadrant.,Ian had pain in one arm and both legs.,4,Where was Ian having pain when he and House were discussing his physical symptoms?,129426,House M.D.,25.12-33.95,house_s05e16_seg02_clip_06,Ian had pain in one arm and both legs. 7388,Ted goes on the stage after Marshall finishes his presentation,Barney goes on the stage after Marshall finishes his presentation,Robin goes on the stage after Marshall finishes his presentation,Lily goes on the stage after Marshall finishes his presentation,Will goes on the stage after Marshall finishes his presentation,0,Who goes on the stage after Marshall finishes his presentation,129427,How I Met You Mother,10.76-20.22,met_s06e23_seg01_clip_01,Ted goes on the stage after Marshall finishes his presentation 7389,He wanted to kiss her.,Choke her,Tickle her,Run her,Nothing,0,When did Castle want to do to Beckett when they finished looking at the pictures?,129428,Castle,55.79-83.93,castle_s05e03_seg02_clip_19,He wanted to kiss her. 7390,Phoebe knows Chandler will be upset.,Phoebe spills her drink.,Phoebe tries to get an extra blanket.,Phoebe is hungry.,Phoebe is looking for Joey.,0,Why does Phoebe look away from Chandler after he asks a question?,129429,Friends,0-3.12,friends_s05e23-24_seg02_clip_05,Phoebe knows Chandler will be upset. 7391,Cut the cake,Set up a table for gifts,Sing happy birthday,Blow out the candles,Pick up a new cake,1,What does Rachel want Joey to do after he records a message to Emma? ,129430,Friends,32.66-39.38,friends_s10e04_seg02_clip_01,Set up a table for gifts 7392,Raj says that leaving India for America was the scariest moment of his life.,Raj says that leaving India for America was the happiest moment of his life.,Raj says that leaving India for America was the most frustrating moment of his life.,Raj says that leaving India for America was the most depressing moment of his life.,Raj says that leaving India for America was the saddest moment of his life.,0,How does Raj say he felt after he left India for America?,129431,The Big Bang Theory,34.38-58.77,s08e06_seg02_clip_16,Raj says that leaving India for America was the scariest moment of his life. 7393,Ted is doing yoga,Ted is reading,Ted is dancing,Ted is sleeping,Ted is eating,1,What is Ted doing when Robin enters the apartment?,129432,How I Met You Mother,36.02-42.62,met_s06e13_seg02_clip_15,Ted is reading 7394,field cricket,green cricket,grass cricket,snow cricket,old cricket,0,What kind of cricket was the one Sheldon had when they visited?,129433,The Big Bang Theory,12.83-23.09,s03e02_seg02_clip_14,field cricket 7395,Sheldon was at the attorney's office.,Sheldon was in Howard's workshop.,Sheldon was in the courtroom.,Sheldon was at the jail holding cell.,Sheldon was at the scene of the collision.,1,Where was Sheldon when he said he would represent someone?,129434,The Big Bang Theory,0.6-3.9,s10e02_seg02_clip_05,Sheldon was in Howard's workshop. 7396,A candy bar,A popsicle,A newspaper ,Her purse and coat,A slice of pizza ,3,What does Rachel grab before leaving out of the house with Kash?,129435,Friends,11.41-16.81,friends_s08e05_seg02_clip_10,Her purse and coat 7397,Gus is approximately 6 months old.,Gus is approximately 3 years old.,Gus is approximately 6 years old.,Gus is approximately 10 years old.,Gus is approximately 15 years old.,0,"How old approximately is Gus, the child Mr. Niles is with when he talks to Bailey about his wife?",129436,Grey's Anatomy,32.15-61.18,grey_s03e05_seg02_clip_12,Gus is approximately 6 months old. 7398,Thanksgiving,Halloween,Valentine's Day,St. Patrick's Day,Christmas,4,What holiday are the decorations celebrating when Phoebe is playing her guitar for everyone?,129437,Friends,43.91-47.69,friends_s01e10_seg02_clip_02,Christmas 7399,Monster,Vampire,Werewolf,ZOmbie,Occult,3,What subculture was Tom a part of before he got caught?,129438,Castle,5.85-11.25,castle_s04e22_seg02_clip_20,ZOmbie 7400,sad,happy,irritated,bored,angry,1,How did Penny feel about Leonard meeting her friends after they spoke?,129439,The Big Bang Theory,28.01-59.59,s03e06_seg02_clip_03,happy 7401,"Smith, Castle, and Beckett were in a grocery store. ","Smith, Castle, and Beckett were in a coffee shop.","Smith, Castle, and Beckett were in a library.","Smith, Castle, and Beckett were in a studio.","Smith, Castle, and Beckett were in an empty warehouse.",4,"Where was Smith, Castle ,and Beckett when talking to each other?",129440,Castle,7.74-14.11,castle_s06e22_seg02_clip_15,"Smith, Castle, and Beckett were in an empty warehouse." 7402,Ted is mispronouncing the word chandelier.,Ted is mispronouncing the word chameleon. ,Ted is mispronouncing the word karma.,Ted is mispronouncing the word connoisseur. ,Ted is mispronouncing the word caviar. ,1,What word is Ted mispronouncing when speaking to his class?,129441,How I Met You Mother,33.51-67.02,met_s06e19_seg02_clip_00,Ted is mispronouncing the word chameleon. 7403,A neck tie,A necklace,A ring,Earrings,A watch,4,What accessory does Ethan have on when they are laying in bed?,129442,Friends,30.95-37.75,friends_s01e22_seg02_clip_10,A watch 7404,Money was stolen,He wanted to be reelected,There was a recording of him admitting to murder,He was being framed,He was being balckmailed.,2,Why was Senator Braken afraid after his associate left?,129443,Castle,25.54-38.49,castle_s06e22_seg02_clip_20,There was a recording of him admitting to murder 7405,She was at her desk.,She was laying down.,She was walking.,She was looking out a window.,She was driving.,2,What was Beckett doing when she was talking on the phone?,129444,Castle,4.56-6.84,castle_s04e07_seg02_clip_13,She was walking. 7406,The operating room.,The bathroom.,Chase walked over toward the coffee pot.,The streets.,No where.,2,Where did Chase go when he got up from the table?,129445,House M.D.,61.19-66.22,house_s06e04_seg02_clip_02,Chase walked over toward the coffee pot. 7407,Clown nose,Monster mask,Dinosaur mask,Turkey,Rabbit ears ,3,What was Monica wearing when Chandler told her he loved her? ,129446,Friends,0-3.69,friends_s07e21_seg02_clip_05,Turkey 7408,A bear.,A pig.,A horse.,A dog.,A deer.,4,What animal did Emily claim was eating fruit from the orchard after she enters the room?,129447,Friends,37.19-42.79,friends_s04e14_seg02_clip_08,A deer. 7409,A piece of paper.,His medicine.,A picture of Penny.,Money.,His car keys.,0,What did Leonard put in his pocket before he approached the receptionist?,129448,The Big Bang Theory,17.09-26.54,s01e01_seg01_clip_00,A piece of paper. 7410,A telephone,A game board,A pillow,A stuffed toy dog,A toy robot,1,What does Marshall pick up from the bed and lay back down when he yells for his mom?,129449,How I Met You Mother,35.7-38.75,met_s06e15_seg02_clip_15,A game board 7411,Penny said that she hopes that Leonard starts dating Sheldon's assistant.,Penny said that she doesn't care because she doesn't know where her relationship with Leonard is right now.,Penny said that she doubts that anything will happen with Sheldon's assistant and Leonard.,Penny said that doesn't even like Leonard anymore.,Penny said that she would prefer to date someone else anyway.,1,What did Penny say after admitting that Sheldon's assistant may have been flirting with Leonard?,129450,The Big Bang Theory,43.02-49.43,s06e03_seg02_clip_10,Penny said that she doesn't care because she doesn't know where her relationship with Leonard is right now. 7412,In about an hour.,Tomorrow.,Next week.,In about half an hour.,In two hours.,0,When does Leonard say he and Penny leaving for their trip after he brings his suit case into the living room?,129451,The Big Bang Theory,13.76-27.1,s08e22_seg01_clip_00,In about an hour. 7413,It was probably House.,I totally did it.,Maybe you did it!,It wasn't me.,Cuddy did it.,3,What is Dr. Chase's response after Cameron accuses him of sabotaging Foreman?,129452,House M.D.,43.95-54.39,house_s03e23_seg02_clip_16,It wasn't me. 7414,He fell asleep.,He ate something.,He took off his jacket.,He made a phone call.,He looked at his beer.,4,What did Raj do after he sat down?,129453,The Big Bang Theory,1.86-7.2,s05e19_seg02_clip_16,He looked at his beer. 7415,Foreman stands up and leaves the room.,Foreman pats Taub on the back.,Foreman gives Taub a gift.,Foreman leans back on the couch and covers his head with his hands.,Foreman grabs his controller and turns the game back on.,4,What does Foreman do after Taub and him finish talking?,129454,House M.D.,86.43-96.03,house_s07e12_seg02_clip_15,Foreman grabs his controller and turns the game back on. 7416,joyful,irritated,happy,peaceful,angry,4,How did Raj feel about his parents when he spoke to Penny?,129455,The Big Bang Theory,28.07-46.07,s01e08_seg02_clip_05,angry 7417,Monica's mom was in the kitchen,No one was in the kitchen,Phoebe was in the kitchen,Rachel was in the kitchen,Chandler was in the kitchen,0,"Who is in the kitchen when Ross, Monica, and her dad were at her kitchen table?",129456,Friends,48.62-53.42,friends_s01e02_seg02_clip_09,Monica's mom was in the kitchen 7418,Raj went to hug Penny,Sheldon went to hug Penny,Howard went to hug Penny,Leonard went to hug Penny,No one went to go hug Penny,2,Who went to hug Penny first when she walked in?,129457,The Big Bang Theory,49.37-57.65,s09e16_seg02_clip_11,Howard went to hug Penny 7419,House said the key to a long life was money.,House said the key to a long life was exercise.,House said the key to a long life was eating healthy.,House said the key to a long life was drinking liquor.,House said the key to a long life was exotic women and boring cheese.,4,What did House say was key to a long life when he talking to a patient about sheep cheese?,129458,House M.D.,16.2-20.26,house_s02e14_seg02_clip_07,House said the key to a long life was exotic women and boring cheese. 7420,Go to the next window ,"Does it say, "" I give a damn""?",this line is closed ,Why are you still standing here?,where are your papers?,1,What did the dmv lady say after she pointed at the sign?,129459,The Big Bang Theory,0-22.88,s02e05_seg02_clip_09,"Does it say, "" I give a damn""?" 7421,He's helping with Leonard's neurosis.,He's repaying a debt,He's not really helping.,He wants something in return.,He wants a date with Penny and Leonard can help him.,0,Why is Sheldon helping Leonard when they walk down the stairs?,129460,The Big Bang Theory,6.72-64.02,s01e04_seg01_clip_01,He's helping with Leonard's neurosis. 7422,Marshall was sitting on the couch.,Marshall was sitting at a table.,Marshall was sitting on the floor.,Marshall was sitting on the washing machine.,Marshall was sitting outside.,1,Where was Marshall sitting before he stood up?,129461,How I Met You Mother,0-2.16,met_s04e03_seg02_clip_14,Marshall was sitting at a table. 7423,"Because Leonard, Wolowitz, and Koothrappali fed him false data.",Because his car had been towed.,Because Leonard and Penny didn't invite him to dinner.,Because he lost his wallet.,Because Penny took too long to answer the door.,0,Why is Sheldon angry when he enters Penny's apartment?,129462,The Big Bang Theory,47.12-59.42,s03e01_seg02_clip_03,"Because Leonard, Wolowitz, and Koothrappali fed him false data." 7424,Wesley ,Willis ,Wendy,Whitney,Weston ,3,Who's medical card was shown before talking to the emergency contacts? ,129463,Castle,0-10.13,castle_s07e07_seg02_clip_02,Whitney 7425,Meredith asked Derek to say something friendly,Meredith asked Derek to say what he would do,Meredith asked Derek to say what was on his mind,Meredith asked Derek to say the worst that could happen,Meredith asked Derek to say what he would do if you love me,0,What did Meredith ask Derek to say after she told him her personal information,129464,Grey's Anatomy,30.2-44.23,grey_s02e20_seg02_clip_23,Meredith asked Derek to say something friendly 7426,House is getting crumbs on the floor.,House is getting crumbs on the patient.,House is not using a napkin.,House is making a mess.,House is eating very loudly.,1,Why does Wilson get upset when he sees House eating a sandwich?,129465,House M.D.,26.33-40.43,house_s02e01_seg02_clip_10,House is getting crumbs on the patient. 7427,The suspect pushed Beckett down.,The suspect obeyed and stepped away from the bar.,The suspect turned and ran away.,The suspect took a hostage.,The suspect showed her his police badge.,2,How did the suspect react when Beckett announced she was from NYPD and told him to step away from the bar?,129466,Castle,15.03-18.56,castle_s07e06_seg02_clip_19,The suspect turned and ran away. 7428,ten,one,two,eight,five,4,How many people hold there hands up when Monica asks how many were bothered by Phoebe's singing?,129467,Friends,34.31-38.9,friends_s09e19_seg02_clip_17,five 7429,Perfumes are behind Stacy.,Couches are behind Stacy,Jewelry is behind Stacy,Mixing bowls are behind Stacy,Books are behind Stacy,4,Which items are behind Stacy when she talks to House about spending months chasing her?,129468,House M.D.,15.08-23.69,house_s02e11_seg02_clip_24,Books are behind Stacy 7430,asprin,joint,weed,speed,crack,3,What type of drug was found in the victum when Lanie was describing it to Castle? ,129469,Castle,0-15.09,castle_s02e03_seg02_clip_08,speed 7431,Ross admits to making $100.,Ross admits to making $20.,"Ross admits to making ""at least a dollar"".",Ross admits to making $5.,Ross admits to making $10.,4,How much money does Ross jokingly admit to making from his relationship when teasing Rachel?,129470,Friends,32.78-35.98,friends_s04e05_seg02_clip_19,Ross admits to making $10. 7432,nothing ,grabbed her butt,grabbed her leg ,grabbed her chest,grabbed her neck,4,What did Driscoll do when Masters was tying to get some blood?,129471,House M.D.,72.4-78.04,house_s07e10_seg02_clip_03,grabbed her neck 7433,Singing,Watching TV,Drinking coffee,Playing guitar,Reading,4,What is Phoebe doing when Rachel asks her to see a movie?,129472,Friends,44.63-51.18,friends_s06e01_seg02_clip_19,Reading 7434,Castle,Esposito,Goldman,Neal,Berman,4,Who do detectives say is Peter Cordero's boss when the detectives ask to see him?,129473,Castle,10.35-13.5,castle_s06e19_seg02_clip_03,Berman 7435,Kim,Courtney,Daria,Carly,Helga,0,"Who does Alexis tell Lyle said that Lyle was kind and caring, when Alexis is talking to him at Lyle's front door?",129474,Castle,2.94-9.68,castle_s06e07_seg02_clip_12,Kim 7436,A cat,A hair dryer ,A rug,The purple chair,A toaster,3,What does Rachel say Phoebe's grandma wanted her to have when she is talking?,129475,Friends,34.74-43.11,friends_s07e10_seg02_clip_18,The purple chair 7437,No. I slept with someone else.,I do have it. Its just boring now.,Well its complicated.,He doesn't respond.,I messed up really bad.,0,"What did Ross say to the man after the chair after he ask's ""you don't have it anymore""?",129476,Friends,51.54-63.07,friends_s03e18_seg02_clip_09,No. I slept with someone else. 7438,A hat,His suit jacket,Mittens,Pants,A dress,1,What article of clothing does Wilson put on when he is arguing with Sam?,129477,House M.D.,34.72-43.18,house_s06e18_seg02_clip_13,His suit jacket 7439,a napkin container,a bottle of soda,a box ,a bag of chips,a bottle of salad dressing ,0,Whats n the table between Howard and Sheldon when Howard asks him a question? ,129478,The Big Bang Theory,51.57-54.63,s03e21_seg01_clip_01,a napkin container 7440,In Bed,In the bathroom,In the living Room,In the car,On the couch,0,Where are Leonard and Penny when she blows her nose?,129479,The Big Bang Theory,14.88-20.24,s03e15_seg02_clip_14,In Bed 7441,to the bathroom,to bed,to the roof,to the kitchen,to the computer,4,Where does Leonard go after they discuss profit margin,129480,The Big Bang Theory,45.9-62.02,s02e18_seg02_clip_11,to the computer 7442,That it was at home.,That he couldn't give it out.,That he forgot it.,That he didn't have his phone number.,That he would give it to her later.,3,What did Stuart say after Penny asked for Stan Lee's phone number?,129481,The Big Bang Theory,8.17-18.67,s03e16_seg02_clip_15,That he didn't have his phone number. 7443,Izzie asked a kiss.,Izzie asked for an autoghraph.,Izzie asked to Mr. Duff to sign consent forms.,Izzie asked for money.,Izzie asked Mr. Duff's hand.,2,What was asking Izzie to Mr. Duff after she enter in the room?,129482,Grey's Anatomy,1.52-4.94,grey_s01e09_seg02_clip_13,Izzie asked to Mr. Duff to sign consent forms. 7444,Takes off bubble wrap around his head.,Picks up a box.,Puts his hear do the door.,Looks for ringing.,Bends over. ,0,What does Joey do before he ask Joey and Chandler if they hear ringing?,129483,Friends,46.36-51.93,friends_s10e16_seg02_clip_02,Takes off bubble wrap around his head. 7445,Penny sits on the floor.,Penny punches Raj.,Penny kisses Leonard.,Penny looks to the side.,Penny runs from a bird.,3,What does Penny do after Raj says he would never leave her off his list?,129484,The Big Bang Theory,15.53-24.5,s08e04_seg02_clip_07,Penny looks to the side. 7446,Robin says it's been 10 years since Barney's seen his dad.,Robin says it's been 3 years since Barney's seen his dad.,Robin says it's been 13 decades since Barney's seen his dad.,Robin says it's been 20 years since Barney's seen his dad.,Robin says it's been 3 decades since Barney's seen his dad.,4,How long does Robin say it's been since Barney's last seen his dad when talking with the group?,129485,How I Met You Mother,0-20.44,met_s06e19_seg02_clip_00,Robin says it's been 3 decades since Barney's seen his dad. 7447,Reading a magazine.,Organizing his shoes.,Peeling a potato.,Watching the news,Writing a note.,0,What was Ross doing when Chandler knocked on the door?,129486,Friends,49.02-53.57,friends_s10e03_seg02_clip_22,Reading a magazine. 7448,A framed sports jersey. ,A fish tank.,Framed degrees. ,Trophies and a teddy bear. ,A fireplace. ,3,What is behind Dr. House's desk when Wilson walks into the room? ,129487,House M.D.,76.1-85.73,house_s07e08_seg02_clip_01,Trophies and a teddy bear. 7449,Lucy nods her had.,Lucy slaps Raj.,Lucy walks out the door.,Lucy jumps out of her seat.,Lucy punche Raj.,0,What does Lucy do after she reads the text from Raj?,129488,The Big Bang Theory,0-4.99,s06e18_seg02_clip_13,Lucy nods her had. 7450,Because she was wearing a tracking device. ,Because Hannah used to tweet where she was going all the time. ,Because Hannah's phone has GPS. ,Because there are alerts sent when there is a new post on the Wives of Wall Street website. ,"Because she was afraid for her life, so she would tell at least one person where she was. ",3,How would people have known that Hannah was in Margo's building when she was there to see Margo?,129489,Castle,81.1-89.25,castle_s05e14_seg02_clip_07,Because there are alerts sent when there is a new post on the Wives of Wall Street website. 7451,the suspect,kate,castle,rick,Tory,4,who do they give the tape to be worked on after they got the little piece out?,129490,Castle,35.39-89.59,castle_s06e21_seg02_clip_21,Tory 7452,Burke looked like he was about to faint.,Burke was sweating a lot during the operation.,Burke was crying during the operation.,Burke kept moving his hand during the operation.,Burke was making a lot of mistakes during the operation.,3,Why did one of the doctor ask Burke if he was fine when he was performing an operation?,129491,Grey's Anatomy,56.94-60.74,grey_s03e09_seg02_clip_23,Burke kept moving his hand during the operation. 7453,Stretching his fingers,Organizing the flowers,Looking in the fridge,Scratching his head,Leaning on the kitchen island,4,What is Castle doing with his left hand when he is talking about the best cops?,129492,Castle,0.91-7.24,castle_s03e13_seg02_clip_11,Leaning on the kitchen island 7454,A set of mismatched leg warmers. ,A set of mismatched socks. ,A set of mismatched bracelets. ,A set of mismatched wrist cuffs. ,A set of mismatched dangly earings. ,4,"What mismatched set of items is Angelica wearing when she says,""It would solve all my problems?""",129493,Castle,8.25-12.13,castle_s05e03_seg02_clip_19,A set of mismatched dangly earings. 7455,A drill.,A pencil sharpener.,A tennis ball.,A coat.,A backpack.,4,What did House put on the desk when Chase said something about enzymes?,129494,House M.D.,73.54-81.8,house_s03e23_seg02_clip_16,A backpack. 7456,McDreamy,McSteamy,a sperm donor,Derek,the handsome new doctor,2,Who does Addison suggest she have a baby by when speaking with Naomi?,129495,Grey's Anatomy,56.54-72.27,grey_s03e22_seg02_clip_06,a sperm donor 7457,building a house,Pitbull death,the big bang theory ,book ,a movie ,1,What was Ryan and Kate talking to Derek about when they showed him the photo? ,129496,Castle,0-7.28,castle_s07e19_seg02_clip_07,Pitbull death 7458,A comic book store.,A gym.,A mall.,A grocery store.,The lab.,0,Where are the guys at when they are scouting for someone to play Superman?,129497,The Big Bang Theory,0-58.78,s04e11_seg02_clip_04,A comic book store. 7459,A plate of food,A stiff drink,A flask,A Coffee Mug,Castle's Book,4,What was Beckette holding in her hands before Castle approached her,129498,Castle,13.82-22.57,castle_s02e05_seg02_clip_17,Castle's Book 7460,A bottle of soda,A glass of wine,A bottle of champagne ,A bottle of beer,A cup of water,3,What is Barney drinking when he's in the living room talking to his friends?,129499,How I Met You Mother,29.97-34.51,met_s03e07_seg02_clip_14,A bottle of beer 7461,He ask for Monica's hand in marriage.,He asks for a hand in making lemonade.,He asks for Chandler to help him get a date.,He ask for a roll of candy.,He asks if he is alright.,4,What does Joey ask Chandler before he walks in?,129500,Friends,0-8.37,friends_s05e20_seg02_clip_13,He asks if he is alright. 7462,House rest his hand on a chair.,House rest his hand on his white board.,House rest his hand on a desk.,House rest his hands on Cuddy.,House rest his hand a bike.,1,What did House rest his hand on when he is talking to his team about a patient ?,129501,House M.D.,75-80.2,house_s04e13_seg02_clip_01,House rest his hand on his white board. 7463,walks in cirlces,moves a chair,pats Joeys head,takes his tie off,shoves Joey,4,What did Chandler do before shutting the door?,129502,Friends,3.97-5.49,friends_s02e23_seg02_clip_13,shoves Joey 7464,Shorts,A thong,A police uniform,A robe,Sweat pants,3,What is Hans wearing when Beckett and Castle are questioning him in the dressing room?,129503,Castle,56.94-60.88,castle_s03e07_seg02_clip_12,A robe 7465,Call the president,Call the cops,Run,Hide,Call the fire department,4,What does Jason suggest Phoebe and him do when the car catches fire?,129504,Friends,7.67-10.62,friends_s03e23_seg02_clip_03,Call the fire department 7466,A coffee cup on a tray,A bunny,A newspaper,A pill bottle,A waffle,0,What does Rachel have on her lap when talking on the couch?,129505,Friends,31.52-35.3,friends_s03e10_seg01_clip_00,A coffee cup on a tray 7467,Mia gives Castle a thumbs up.,Mia gives Castle a kiss.,Mia gives Castle a wink.,Mia gives Castle a sad face.,Mia sticks her tongue out at Castle.,0,What signal does Mia give Castle after she smells Beckett?,129506,Castle,20.56-23.32,castle_s08e05_seg02_clip_10,Mia gives Castle a thumbs up. 7468,A coke.,His phone.,The TV remote.,A bottle water.,His keys.,3,What did Leonard pick up when he asked Sheldon if he was still texting and emailing Amy?,129507,The Big Bang Theory,37.43-43.57,s04e05_seg01_clip_00,A bottle water. 7469,Oven Mitts,Pants,Shoes,Socks,Mittens,0,What does Rachel tell Ross he isn't wearing when he comes into the room?,129508,Friends,7.38-19.77,friends_s10e02_seg02_clip_12,Oven Mitts 7470,Martian History,Martian Math,Martian English,Martian Science,Martian Culture,0,What did Sheldon say they could teach their kids about when talking to Amy?,129509,The Big Bang Theory,0-48.65,s08e17_seg02_clip_15,Martian History 7471,I'm not Howard.,Maybe for you.,I hardly think so.,"My word, who would do that.",No thank you.,2,What does Sheldon say after he says the drink Sex on the Beach?,129510,The Big Bang Theory,5.4-10.2,s04e07_seg02_clip_14,I hardly think so. 7472,The others were disrespectful and non responsive and knows it.,He wasn't apologetic.,He farted.,He was being a jerk.,He was just saying sorry to make Monica happy.,0,"Why does the ""new guy"" seem so apologetic when the others leave the kitchen?",129511,Friends,28.12-61.13,friends_s04e10_seg02_clip_11,The others were disrespectful and non responsive and knows it. 7473,The cafeteria,Sheldons apartment,The comic book store,The cheesecake factory,Their lab,0,"Where are Howard, Sheldon, Raj and Leonard when they are discussing Superman?",129512,The Big Bang Theory,7.38-14.76,s02e11_seg01_clip_01,The cafeteria 7474,Jason said Barbra had always kept in touch.,Jason said Barbra needed some fast money.,Jason said Barbra missed him.,Jason said Barbra was tired of her latest beau.,Jason said Barbra need some advice.,2,Why did Jason say Barbra contacted him when she had everything she could want already?,129513,Castle,9.73-12.38,castle_s04e18_seg02_clip_18,Jason said Barbra missed him. 7475,Wilson's brother died of cancer.,Wilson's mom died of cancer.,Wilson's dad died of cancer.,Wilson's uncle died of cancer.,Wilson's sister died of cancer.,3,Who does House say he thought died of cancer when Wilson discusses a brain tumor in his cousin being highly unlikely?,129514,House M.D.,40.48-59.65,house_s01e01_seg02_clip_00,Wilson's uncle died of cancer. 7476,A cell phone.,Test results on a tablet,A file on a clipboard.,A paper with test results,A cup of coffee.,3,What was Cameraon holding when she walked up behind Foreman? ,129515,House M.D.,62.32-66.32,house_s02e22_seg02_clip_14,A paper with test results 7477,Joey does not believe Ross is alright.,Joey is mad at Ross.,Ross took Joey's food.,Ross broke Joey's chair.,Joey is hungry.,0,Why does Joey question Ross after he walks away?,129516,Friends,2.8-7.8,friends_s09e14_seg01_clip_01,Joey does not believe Ross is alright. 7478,A baseball cap,A headband with bunny ears,A crown,A headband with cat ears,A headband with stars,3,What does Penny have on her head when she is sitting on the couch with Leonard?,129517,The Big Bang Theory,48.08-51.82,s01e06_seg02_clip_15,A headband with cat ears 7479,drinks.,Wrapped baskets.,ice cream.,shopping bags.,stacks of comic books. ,1,"What is Raj holding after Leonard says, ""Thanks for asking""?",129518,The Big Bang Theory,52.08-61.97,s02e11_seg02_clip_09,Wrapped baskets. 7480,drank coffee,shot someone,punched someone,called for backup,walked off,4,what did the white female agent do after she said see if the captain can tell us something else,129519,Castle,33.31-42.76,castle_s07e01_seg02_clip_16,walked off 7481,a man wearing a gold crown,a woman in yellow,a naked woman,a kite,a spider,0,What is behind Sheldon when he says Leonard should send a text?,129520,The Big Bang Theory,0-5.49,s01e06_seg02_clip_10,a man wearing a gold crown 7482,picture of a case,pictures of 2 women,picture of a park,a coat,a tie ,1,What was hanging on the wall behind Castle when they were talking about Thorian Blaster?,129521,Castle,23.21-31.4,castle_s05e06_seg02_clip_06,pictures of 2 women 7483,On a park bench,Sitting at a bar,Sitting by a patient,At a restaurant ,Sitting at a desk,4,Where was Kutner when House got up and left? ,129522,House M.D.,0-5.1,house_s05e12_seg02_clip_13,Sitting at a desk 7484,Trying to escape.,Eating.,Writing.,Walking.,Sleeping.,4,What was Benny doing when Beckett and Castle walked into the office?,129523,Castle,29.51-32.68,castle_s02e23_seg02_clip_19,Sleeping. 7485,The color shirt House is wearing is yellow,The color shirt House is wearing is beige,The color shirt House is wearing is blue,The color shirt House is wearing is pink,The color shirt House is wearing is green,2,What color shirt is House wearing when he is standing and his patient's bedside,129524,House M.D.,60.98-70.77,house_s01e14_seg02_clip_17,The color shirt House is wearing is blue 7486,A glove,Cane,Fake bird,A hat,Flowers,4,What was Jack holding when he performed a magic trick?,129525,Friends,32.79-44.76,friends_s09e01_seg01_clip_01,Flowers 7487,A soda. ,A cookie. ,A donut. ,A water bottle. ,A coffee mug. ,4,What does Phoebe have in her hand when she turns around from th counter?,129526,Friends,4.88-8.54,friends_s08e08_seg01_clip_00,A coffee mug. 7488,His mom.,Nobody.,Ryan.,A woman. ,A ancient Indian.,2,Who was Castle talking to after he hung up the phone?,129527,Castle,3.6-19.81,castle_s08e07_seg02_clip_21,Ryan. 7489,No thank you ,"Yes, please ","I doubt it, but if anyone has a chance it's probably you. ",sounds good ,water please,2,What did Beverley say after Sheldon asked to make her a cup of tea?,129528,The Big Bang Theory,0-43.4,s02e15_seg02_clip_12,"I doubt it, but if anyone has a chance it's probably you. " 7490,Adams said they double checked the house address twice.,Adamssaid there were photos of her children everywhere.,Adams said they checked her home phone number by calling from their phones.,Adams said they talked to her neighbors before they entered her house.,Adams said Olivia's mother-in-law was in her house when they went in.,1,Why did Adams say there was no mistake after Olivia said they broke into the wrong house?,129529,House M.D.,3.22-10.57,house_s08e08_seg02_clip_05,Adamssaid there were photos of her children everywhere. 7491,Ross was arguing about his job.,Ross was arguing about whether he should ask Rachel out.,Ross was arguing about what kind of dinosaur Dino was. ,Ross was fighting with Joey about whether he should buy a pool table.,Ross was arguing with his mother.,2,What was Ross arguing about with Tony before Monica appears in the doorway?,129530,Friends,3.05-9.76,friends_s02e17_seg02_clip_08,Ross was arguing about what kind of dinosaur Dino was. 7492,A box.,A paper bag.,A briefcase.,A makeup bag.,A duffle bag.,3,What was Rachel holding after Ross told her a kid had a crush on him?,129531,Friends,32.94-36.37,friends_s07e18_seg02_clip_06,A makeup bag. 7493,He is holding a marker.,He is holding a gun.,He is holding a knife.,He is holding a bat.,He is holding a taser.,1,What is the man holding in his hand when House is on the phone with Wislon?,129532,House M.D.,45.4-62.76,house_s05e09_seg02_clip_15,He is holding a gun. 7494,Sheldon says he doesn't care. ,Sheldon says neither is the rule that you have to hold your girlfriend's hand at the movies. ,Sheldon asks them to leave. ,Sheldon requests back up. ,Sheldon runs away. ,1,What is Sheldon't response when Amy tells him it's not a real rule?,129533,The Big Bang Theory,28.95-34.68,s06e19_seg02_clip_06,Sheldon says neither is the rule that you have to hold your girlfriend's hand at the movies. 7495,"Howard, Raj, Leslie, and Leonard. ","Howard, Ray, and Amy. ","Howard, Raj, and Bernadette. ","Howard, Raj, and Leonard. ","Howard, Raj, and Penny. ",3,Who is eating lunch together in the cafeteria when they are work?,129534,The Big Bang Theory,2.79-4.66,s05e15_seg02_clip_00,"Howard, Raj, and Leonard. " 7496,Harp,Cello,Flute,Guitar,Violin,4,What instrument does Nora play when Barney is sick?,129535,How I Met You Mother,49.13-57.37,met_s06e18_seg02_clip_00,Violin 7497,a design of ted next building,a statue of a dog,a line of clothes,lillys graduation picture,a chalk board,4,what is behind the sofa that lilly and marshall are sitting on when they are answering barneys identity question?,129536,How I Met You Mother,42.16-48.39,met_s03e14_seg01_clip_02,a chalk board 7498,You looked too happy,You are too nervous,You are off your game,I don't know,You came across as shy,3,"How did Ted respond to Barney after Barney said ""whats the matter with me""?",129537,How I Met You Mother,0-57.48,met_s03e10_seg02_clip_08,I don't know 7499,Second,First,Third,Fourth,Fifth,1,"What round did Esposito say he drafted Cano Vega in, in his fantasy baseball league for the last 3 years when telling Castle and Beckett how much of a fan he was?",129538,Castle,17.84-21.86,castle_s02e15_seg02_clip_01,First 7500,Sheldon and Leonard,Penny and Bernadette,Penny and Amy,Kripke ,The enemy.,0,Who ran into the shed after Raj and Howard?,129539,The Big Bang Theory,12.84-19.26,s02e16_seg01_clip_00,Sheldon and Leonard 7501,happy,reluctant,excited,bored,tired,1,How did Penny feel when Leonard asked her to do him a favor?,129540,The Big Bang Theory,15.2-27.12,s02e12_seg02_clip_08,reluctant 7502,Estelle asks if her hair looks okay.,Estelle tells Joey she is very angry.,Estelle tells Joey to leave her office.,Estelle asks Joey what he wants for dinner.,Estelle asks Joey if she has lipstick on her teeth.,4,What does Estelle do when Joey asks about how she feels about him getting fired?,129541,Friends,37.14-47,friends_s02e19_seg02_clip_02,Estelle asks Joey if she has lipstick on her teeth. 7503,three ring binders,spock back packs,color coded folders,leather briefcases, Scooby-Doo trapper Keepers,4,What does Sheldon say was a fun and practical way of organizing school work when Raj says he had one of those?,129542,The Big Bang Theory,3.9-15.01,s04e19_seg02_clip_08, Scooby-Doo trapper Keepers 7504,It was stuck in her head.,She knew how much everyone loved music.,She was nervous and singing calms her down.,She didn't know what else to say.,No one had spoken in 17 minutes,4,Why did Phoebe say she started singing when she is sitting at the dinner table?,129543,Friends,17.2-30.09,friends_s09e07_seg02_clip_15,No one had spoken in 17 minutes 7505,Beckett is wearing a gray scarf.,Beckett is wearing a necklace.,Beckett has a snake.,Beckett has a medal.,Beckett has a badge.,0,What does Beckett have around her neck when she talks to Fallon about violating someone's rights?,129544,Castle,6.96-13.92,castle_s03e17_seg02_clip_18,Beckett is wearing a gray scarf. 7506,Beckett draws a gun to practice Beckett's target range for re-certification.,Beckett draws a gun to clean the weapon before discharging it in the boiler room.,Beckett draws a gun because Beckett is cautious Acosta may jump out of nowhere.,Beckett draws a gun because Tyson jumps out of the door and chases Beckett.,Beckett draws a gun because Acosta is holding Castle hostage in the stairway.,2,Why does Beckett draw a gun after running after Acosta?,129545,Castle,31.23-46.28,castle_s08e08_seg02_clip_12,Beckett draws a gun because Beckett is cautious Acosta may jump out of nowhere. 7507,Chandler and Monica went on the fire escape,Chandler and Monica went to the windows,Chandler and Monica went to the movies,Chandler and Monica got on the computer,Chandler and Monica went look in the mirror,1,Where did Chandler and Monica go when they were talking about conception,129546,Friends,40.6-52.5,friends_s09e22_seg02_clip_21,Chandler and Monica went to the windows 7508,Dick Smith,Dick Coonan,Harry Smith,Harry Jones,Sam Smith,1,Who does Beckett say was hired to kill all of them when she talks to Montgomery,129547,Castle,21.46-39.27,castle_s03e13_seg02_clip_19,Dick Coonan 7509,arms folded,arms by his side,arms flexed,arms over his head,arms behind his back,0,What is Joey doing with his arms when standing next to Phoebe?,129548,Friends,4.34-8.99,friends_s08e03_seg02_clip_11,arms folded 7510,Her mole.,Her lipstick.,Her glasses.,A peanut.,Her eyelashes. ,2,What did Beth take off her face when she asked Penny a question about the busboy?,129549,The Big Bang Theory,36.69-47.62,s03e11_seg02_clip_13,Her glasses. 7511,Ryan holds up his ID card.,Ryan holds up receipt.,Ryan holds up a painting.,Ryan holds up a photograph.,Ryan holds up an evidence bag.,3,What does Ryan hold up for Beckett to see when talking to her?,129550,Castle,6.75-10.35,castle_s06e21_seg02_clip_22,Ryan holds up a photograph. 7512,A beer bottle.,A bowl of popcorn.,A remote control.,A glass of water.,A sandwich.,2,What was in Raj's hand when he told Emily he had to tell her something?,129551,The Big Bang Theory,3.08-10.01,s07e21_seg02_clip_15,A remote control. 7513,green,blue,black,White,grey,3,"What color is the shirt Castle is wearing when he say's ""Yeah, and you've...""?",129552,Castle,86.43-96.03,castle_s07e04_seg02_clip_26,White 7514,Ochoa shook Castle's hand.,Ochoa bowed to Castle.,Ochoa saluted Castle.,Ochoa ask for his autograph.,Ochoa high five him.,0,What did Ochoa do when he met Castle ?,129553,Castle,24.58-31.4,castle_s03e22_seg02_clip_08,Ochoa shook Castle's hand. 7515,The picture was mailed to her,She pulled the picture from their HR file,The picture was left in the employees desk,The picture was left in the victim's desk,She got the picture from the security video,4,Where did Joyce get the picture when trying to describe suspect to Castle,129554,Castle,5.01-17.29,castle_s08e11_seg02_clip_10,She got the picture from the security video 7516,"Mia told the reporters that Alex was discharged earlier that day, and quietly recuperating at home.","Mia said that Alex would be discharged in the coming months, after he's well enough.",Mia said that Alex would be discharged later today.,"Mia let the reporters know that she would not share, for Alex's own privacy, exactly the day or time he'd be discharged.",Mia told the reporters that Alex would be joining her in a few seconds to give a press release.,2,"When Mia was giving her statement to the reporters, when Alex was still in the hospital, when did she say that he would be discharged? ",129555,Castle,48.2-50.39,castle_s07e18_seg02_clip_23,Mia said that Alex would be discharged later today. 7517,half eaten sandwich,hairdryer,old socks,Rollerblades,Monicas purse,3,What does rachel find when she is cleaning out the bedroom?,129556,Friends,40.58-43.33,friends_s06e06_seg02_clip_04,Rollerblades 7518,Joey,Ross,Monica,Rachael ,Phoebe,4,Who was Chandler sitting next to on the courch when was watching the television? ,129557,Friends,15.12-23.95,friends_s05e19_seg02_clip_19,Phoebe 7519,A dart board.,A mirror.,A shelf of whisky bottles.,A pay phone.,People playing pool.,3,What is behind the bartender when Beckett is questioning him?,129558,Castle,1.38-11.04,castle_s04e04_seg02_clip_07,A pay phone. 7520,He performed cpr.,He lowered the guard rail.,He gave her a shot.,He rolled her to the operating room.,He took off his coat.,1,What did Chase do when he said she's not getting air?,129559,House M.D.,59.46-66.38,house_s02e23_seg02_clip_20,He lowered the guard rail. 7521,Sara had been gone for one week.,Sara had been gone for 1 hour.,Sara had been gone for 4 hours.,Sara had been gone for two day,Sara had been gone for 10 minutes.,4,How long had Sara been gone before chloe got back?,129560,Castle,55.69-60.79,castle_s01e02_seg02_clip_19,Sara had been gone for 10 minutes. 7522,She is holding a pile of laundry.,She is holding a baby.,She is holding a bag of makeup.,She is holding chop sticks.,She is holding Howard's baby.,3,What is Penny holding when she asks Howard what he is saying?,129561,The Big Bang Theory,7.25-13.55,s02e14_seg02_clip_06,She is holding chop sticks. 7523,Hot and Bothered,Sweet and Sassy,Smooth and Smart,Strong and Fast,Sexy and Smart,4,What did House call Cuddy after she confronted him about his agenda?,129562,House M.D.,66.82-74.42,house_s06e08_seg02_clip_07,Sexy and Smart 7524,George and Alex start shoving one another.,George and Alex become trapped in the elevator.,George and Alex both pass out.,George and Alex laugh together hysterically.,George and Alex begin hearing a loud buzzing sound.,1,What happens to George and Alex after George mentions he didn't get any sleep?,129563,Grey's Anatomy,62.63-71.22,grey_s02e05_seg02_clip_04,George and Alex become trapped in the elevator. 7525,FOur,Five,Six,One,Two.,0,How many drinks did Jerry drink when he was slamming the glasses on the table?,129564,How I Met You Mother,10.4-20.19,met_s06e21_seg02_clip_04,FOur 7526,Beth Lemaine ,Richard Lemaine ,John Lemaine ,Drew Lemaine the grandson,Seth Lemaine ,3,Who did House ask the grandfather about when he visited the old man?,129565,House M.D.,22.06-39.62,house_s08e07_seg02_clip_19,Drew Lemaine the grandson 7527,On her mouth,On his head,On his hips,On the turkey leg,On his plate,1,Where does Chandler put his hand after Monica demonstrates how to cut the food?,129566,Friends,23.69-31.49,friends_s09e08_seg02_clip_11,On his head 7528,If the camera needs lunch.,If the camera needs food.,If the camera needs lens cleaner.,If the camera needs batteries.,If the camera needs to be washed.,2,What does Ross ask the camera when Rachel interrupts?,129567,Friends,0-7.71,friends_s08e04_seg02_clip_10,If the camera needs lens cleaner. 7529,Wilson asks if the woman was really Darlene.,Wilson asks if the woman was really Jasmine.,Wilson asks if the woman was really Butterscotch.,Wilson asks if the woman was really Beth.,Wilson asks if the woman was really Angelica.,3,Who does Wilson ask if he spoke to when questioning House about the woman he spoke with?,129568,House M.D.,71.32-92.03,house_s08e16_seg02_clip_26,Wilson asks if the woman was really Beth. 7530,She brought up another subject.,She agreed with Chandler,She agreed with Monica.,She ignored them and kept reading the newspaper.,She got up and left.,0,What did Phoebe first do when Monica and Chandler asked for her opinion about checking the new house?,129569,Friends,31.48-39.43,friends_s10e15_seg02_clip_00,She brought up another subject. 7531,a notebook,An egg,nothing,Her laptop,an envelope,3,What does Penney have in her hands after she enters the apartment?,129570,The Big Bang Theory,29.89-83.03,s02e03_seg02_clip_16,Her laptop 7532,His brother,Irene's mom,His father,Irene's dad,His grandfather,4,Who does House ask about when he enters Irene's room?,129571,House M.D.,29.93-45.14,house_s04e04_seg02_clip_14,His grandfather 7533,A briefcase.,A possum.,A puppy.,A baby.,A raccoon.,1,What is Marshall carrying in his arms when he approaches his friends in the pub?,129572,How I Met You Mother,16.21-22.51,met_s06e19_seg02_clip_12,A possum. 7534,Anna.,Sandra.,Jill.,Amy,Ella.,3,What is the name of Rachel's sister who enters the cafe after Chandler and Monica are talking on the couch?,129573,Friends,49.15-51.16,friends_s10e05_seg02_clip_15,Amy 7535,Thirteen,Cameron,Cuddy,Foreman,A patient,0,Who interrupts House and Wilson when the door opens?,129574,House M.D.,15.02-21.39,house_s05e01_seg02_clip_04,Thirteen 7536,Dodge,Toyota,Ford,Chevy,BMW,0,What brand of car was Thirteen driving when House was riding with her?,129575,House M.D.,68.87-76.07,house_s07e18_seg02_clip_08,Dodge 7537,Montgomery,Ryan,Esposito,Sophia,Danberg,0,Who does Beckett say she can't forget seeing lying on the hangar floor before she was hurt?,129576,Castle,18.34-27.27,castle_s04e01_seg02_clip_06,Montgomery 7538,She is getting paint samples for the dining room. ,She is getting paint samples for the kitchen. ,She is getting paint samples for the bathroom. ,She is getting paint samples for the bedroom. ,She is getting paint samples for the guest bedroom. ,0,What room is Bernadette getting paint samples for when she is on her way out?,129577,The Big Bang Theory,16.81-45.02,s09e07_seg02_clip_02,She is getting paint samples for the dining room. 7539,Truck was damaged.,Truck was smashed.,Truck was trashed.,Truck was turned over.,Truck was stopped.,2,What said Pete happened with his truck when talking about the incident.,129578,Castle,2.29-6.87,castle_s03e10_seg02_clip_13,Truck was trashed. 7540,he was never drinking again,He was hungry,He was tired ,He was ready to get to work,Zhang had a lead that could crack the case,4,What did Ryan say to Beckett and Castle after he walked in?,129579,Castle,7.13-13.38,castle_s07e17_seg02_clip_14,Zhang had a lead that could crack the case 7541,A pistol.,His water gun.,His laser gun.,A firecracker.,A bb gun.,2,What did Castle shoot after he heard Alexis scream?,129580,Castle,53.95-61.79,castle_s04e22_seg02_clip_26,His laser gun. 7542,Penny doesn't really want Raj at the house.,Raj has no fashion sense.,That Raj isn't a guy.,Raj is drinking a girly drink.,Raj is a coward.,2,What does Howard insinuate about Raj before Raj scowls?,129581,The Big Bang Theory,9.15-17.7,s07e07_seg02_clip_09,That Raj isn't a guy. 7543,Phoebe is sitting at the dining table,Phoebe is sitting on the couch,Phoebe is sitting in the chair,Phoebe is sitting on the kitchen counter,Phoebe is sitting on the floor,4,Where is Phoebe sitting before Chandler leaves the apartment,129582,Friends,35.09-43.94,friends_s07e16_seg02_clip_19,Phoebe is sitting on the floor 7544,Lily was on stage ending a presentation,Robin was on stage ending a presentation,Marshall was on stage ending a presentation,Barney was on stage ending a presentation,Will was on stage ending a presentation,2,Who was on stage ending a presentation before the audience clapped,129583,How I Met You Mother,0-7.74,met_s06e23_seg01_clip_01,Marshall was on stage ending a presentation 7545,hugs beckett,puts his coat on,gives beckett a kiss,takes his coffee,takes a file,1,what does castle do before leaving becketts desk at the precinct?,129584,Castle,56.09-64.54,castle_s02e22_seg02_clip_25,puts his coat on 7546,On the couch,on the floor,in the kitchen,in the bathroom,i the bedroom,0,Where was Raj when Penny came to the apartment?,129585,The Big Bang Theory,3.88-8.96,s08e04_seg02_clip_07,On the couch 7547,Monica,Ross,Joey,Rachael,Phoebe,1,Who was Chandler talking to when he was in apartment?,129586,Friends,45.77-54.01,friends_s09e11_seg02_clip_11,Ross 7548,If he was talking to himself.,If he was yelling to himself.,If he was singing to himself.,If he was snoring to himself.,If he was laughing to himself.,0,What does Rachel ask Ross when she comes in?,129587,Friends,9.49-13.35,friends_s08e04_seg02_clip_10,If he was talking to himself. 7549,He started to cry.,"He silently took it, knowing it wasn't a big deal.",He tried to reason with the patient.,He told the patient he was upset.,"He said, ""I don't even know who you are anymore,"" and left the room.",4,How did Alex react after he was told it would be the patient's words against his?,129588,Grey's Anatomy,0-12.5,grey_s03e24_seg02_clip_20,"He said, ""I don't even know who you are anymore,"" and left the room." 7550,Leonard is lying down on the floor.,Leonard is standing in the middle of the living room.,Leonard is sitting on a sofa chair.,Leonard is sitting at the kitchen table.,Leonard is standing next to Raj.,2,Where is Leonard when Raj is pointing around using his fingers?,129589,The Big Bang Theory,2.59-5.19,s08e21_seg02_clip_10,Leonard is sitting on a sofa chair. 7551,Castle agrees solemnly.,Castle laughs and walks away from Gates.,Castle hugs Gates.,Castle throws food at Gates.,Castle kisses Gates.,0,What does Castle do after Gates demands respect?,129590,Castle,39.33-48.72,castle_s05e14_seg02_clip_26,Castle agrees solemnly. 7552,Officer,Soldier,Lock,Blockade ,Vault ,0,Who is stopping the couple from getting into the room before they find another way in?,129591,Castle,16.1-30.37,castle_s07e19_seg02_clip_14,Officer 7553,bagel,sandwich,donut,cruller,muffin,0,What did House start to eat after sitting down at the table?,129592,House M.D.,59.85-70.36,house_s03e15_seg02_clip_00,bagel 7554,Pizza,An empty box.,A cake.,Beer.,Donuts.,0,What does Joey put on the counter when Chandler says he had an idea for what to do on their last night?,129593,Friends,0-3.97,friends_s06e06_seg02_clip_04,Pizza 7555,A pager,His wallet,A pack of gum,His pills,A candy bar,0,What does House pull out of his pocket right before he and Foreman leave his office?,129594,House M.D.,55.26-62.22,house_s01e09_seg02_clip_20,A pager 7556,a kid,His mom,his dad,dog,Sheldon,4,Who goes in the apartment when Penny and Leonard kiss?,129595,The Big Bang Theory,34.1-43.08,s05e15_seg02_clip_12,Sheldon 7557,Foggy.,Sunny.,Raining. ,Snowing. ,Windy with no rain. ,2,What is the weather condition outside when Rachel is looking out of the window?,129596,Friends,52.46-62.08,friends_s02e08_seg02_clip_18,Raining. 7558,Put it into a folder,Crumpled it up,Threw it away,Stomped on it,Flew it into Cuddy,4,What did House do with the paper airplane after the meeting was over?,129597,House M.D.,83.74-91.03,house_s03e17_seg02_clip_15,Flew it into Cuddy 7559,talking on the phone,sitting at the kitchen table,crawling behind the couch,cooking dinner,reading a magazine,2,What is Rachel doing when everyone else is watching tv? ,129598,Friends,18.92-28.22,friends_s05e19_seg02_clip_04,crawling behind the couch 7560,Sheriff.,Alexis.,Martha.,Castle.,Cop.,3,Who was on the front seat when Beckett was driving?,129599,Castle,18-23.41,castle_s01e05_seg02_clip_08,Castle. 7561,His lungs,His brain,his feet,his eyes,his stomach,1,What part of the patients body did 'that other doctor' look at before Cameron began assessing his heart?,129600,House M.D.,30.61-53.11,house_s03e08_seg02_clip_04,His brain 7562,He gave two thumbs up.,He frowned.,He walked away.,He covered his face.,He shrugged his shoulders.,0,How did Raj react after Howard said it would hurt Leonard's feelings?,129601,The Big Bang Theory,4.06-9.47,s02e18_seg02_clip_05,He gave two thumbs up. 7563,Yells about his skills,Tells him to get out,Cusses him out again,Allows him to treat her,Reminds him who's boss,3,How does Cameron surprise House after he comes to her for a patient? ,129602,House M.D.,44.15-62.35,house_s05e13_seg02_clip_04,Allows him to treat her 7564,He felt like he was going to fall asleep,He thought he saw a bee,He thought the waiter picked his nose,He felt like he was falling.,He thought Monica was being nosy,3,What does Joey say to distract Monica when they are on a double date?,129603,Friends,45.47-61.03,friends_s01e05_seg02_clip_12,He felt like he was falling. 7565,smacked Sheldon,stopped the car,looked at Sheldon,rolled her eyes,looked out the window,3,What did Penny do when Sheldon said he didn't want a flip-flop fatality?,129604,The Big Bang Theory,16.06-23.78,s04e01_seg02_clip_06,rolled her eyes 7566,His underwear,His shirt,His pants,His hat,His glasses,2,What article of clothing did Ross put on last after getting out of bed?,129605,Friends,28.14-38.3,friends_s04e01_seg02_clip_18,His pants 7567,Ross wanted to make a home video to give her when she was out of preschool.,Ross was recording a message from them to give her when she was out of high school.,Ross just liked making family home videos.,Ross wanted to make a home video to give her when she was out of elementary school.,Ross wanted to make a home video to give her when she was out of middle school,1,Why was Ross recording his parents when celebrating Emma's birthday?,129606,Friends,19.78-35.33,friends_s10e04_seg02_clip_07,Ross was recording a message from them to give her when she was out of high school. 7568,Meredith is standing up.,Meredith is in the kitchen.,Meredith is in the bathroom.,Meredith is in the hallway.,Meredith is laying in bed.,4,Where is Meredith when talking to Derek?,129607,Grey's Anatomy,2.42-70.8,grey_s03e09_seg02_clip_30,Meredith is laying in bed. 7569,That Wilson must have gone home,That Wilson was not home,That Wilson was not kicked out of his house,That Wilson hasn't told his wife,House didn't say anything,3,What does House tell Wilson after he tells him that his shirt is ironed?,129608,House M.D.,10.58-15.18,house_s02e14_seg02_clip_19,That Wilson hasn't told his wife 7570,a baseball bat,a gun,a knife,a bomb,a rocket,0,what weapon did house have in the back of his car when threatening to kill the woman,129609,House M.D.,151.38-160.18,house_s07e18_seg02_clip_25,a baseball bat 7571,Checked Benjamin's temperature ,Checked Benjamin's pulse,Adjusted the blinds,Held Benjamin's hand,Hung an IV bag,4,What did House do when he said something about helping people?,129610,House M.D.,68.55-75.67,house_s08e03_seg02_clip_08,Hung an IV bag 7572,blood bag,a baseball hat,a syringe ,a picture,an IV bag,4,what does house hang up next to john after he enters johns hospital room?,129611,House M.D.,65.99-76.01,house_s01e09_seg02_clip_11,an IV bag 7573,Sheldon points out Amy's life is not desirable to other people,Sheldon says Amy is fat,Sheldon makes fun of Amy's hair,Sheldon repeats something mean someone said about Amy,Sheldon calls Amy a slut,0,How does Sheldon insult Amy after she tries to comfort him?,129612,The Big Bang Theory,0-23.05,s10e09_seg02_clip_07,Sheldon points out Amy's life is not desirable to other people 7574,Monica and Rachel fogged the neighbor accidentally.,Monica and Rachel thought the neighbor was going to rob them.,Monica and Rachel thought the neighbor was going to hurt them.,Monica and Rachel thought the neighbor was someone else.,Monica and Rachel thought the neighbor was a Yeti.,4,What reason did Monica and Rachel have when they fogged their neighbor?,129613,Friends,52.5-59.1,friends_s05e06_seg02_clip_06,Monica and Rachel thought the neighbor was a Yeti. 7575,Go to Gates and stay there.,Go to a hotel where she has purchased a room and stay there.,Go to a friend's house and stay there.,Go back to loft and stay there.,Go to Esposito's house and stay there.,3,What does Beckett tell Castle to do when she is talking to him about his security detail?,129614,Castle,13.2-25.97,castle_s07e20_seg02_clip_16,Go back to loft and stay there. 7576,Alex hug George.,Alex slap George.,Alex said bad words to George.,Alex fired George.,Alex gave papers to George.,0,What dis Alex when George approached him?,129615,Grey's Anatomy,33.21-34.45,grey_s02e01_seg02_clip_23,Alex hug George. 7577,Something of himself,His car,His apartment lease,His Frank Sinatra collection,Great memories,0,What did Castle say he'll be leaving behind when he leaves?,129616,Castle,66.62-71.57,castle_s02e05_seg02_clip_20,Something of himself 7578,Joey,Rachel,Ross,Phoebe,Their parents,0,Who is visiting Monica and Chandler when they are in the apartment?,129617,Friends,0-12.61,friends_s10e17-18_seg02_clip_23,Joey 7579,Joey,Monica,Mayor West,Tim Burton,Forrest Gump,0,Who walked in when Rachel got all excited?,129618,Friends,52-59.25,friends_s06e15-16_seg02_clip_04,Joey 7580,The number 5,The number 1.,The number 85.,The number 8.,The number 58.,4,What number was on the van door when the man closed it?,129619,Castle,2.25-6.75,castle_s04e09_seg02_clip_03,The number 58. 7581,She gets up and leaves. ,She lays on top of him. ,She gets something from the fridge. ,She spills something on her shirt. ,She dances on the couch. ,1,What does Penny do when she and Leonard are on the couch?,129620,The Big Bang Theory,14.22-17.62,s03e04_seg02_clip_10,She lays on top of him. 7582,Bernadette punched Howard.,Bernadette slapped Howard.,Bernadette kicked Howard.,Bernadette pushed Howard.,Bernadette yelled at Howard.,2,How did Bernadette react after Howard asked her if they are in a good school?,129621,The Big Bang Theory,11.2-16.65,s10e06_seg02_clip_02,Bernadette kicked Howard. 7583,Phoebe comes into Chandler's room.,Ross comes into Chandler's room.,Monica comes into Chandler's room.,Frank comes into Chandler's room.,Joey comes into Chandler's room.,4,Who comes into Chandler's room after his date starts screaming?,129622,Friends,43.12-51.02,friends_s04e20_seg02_clip_20,Joey comes into Chandler's room. 7584,A sock.,A leather glove.,A latex glove.,A cast.,A bandage.,4,What did Danny have on his right hand when Master said they think he has pica?,129623,House M.D.,23.36-25.65,house_s07e17_seg02_clip_09,A bandage. 7585,an address ,a photo of a man,a map,a confession note,footprints,1,what does beckett place on the white board when talking to castle and gates?,129624,Castle,53.7-63.72,castle_s06e10_seg02_clip_23,a photo of a man 7586,Watching TV.,Eating breakfast.,Cooking a meal.,Lying in bed.,Playing video games.,1,What are Bernadette and Howard doing when the doorbell rings?,129625,The Big Bang Theory,0-4.16,s10e01_seg02_clip_02,Eating breakfast. 7587,A computer.,A cell phone.,A camera.,A tablet.,A thumb drive.,2,What did Castle find at Pam's apartment before he had Tori check it out back at the precinct?,129626,Castle,41.18-48.42,castle_s06e09_seg02_clip_03,A camera. 7588,two waitresses,a band,a woman with straight blonde hair,a clown with two balloons,a man with a guitar,2,What is behind Barney when Jerry says he doesn't know how to start the explanation?,129627,How I Met You Mother,6.27-11.69,met_s06e19_seg02_clip_06,a woman with straight blonde hair 7589,Rachel joins the conversation.,Phoebe joins the conversation.,Gunther joins the conversation.,Chandler joins the conversation.,Joey joins the conversation.,0,Who joins the conversation after Paul apologizes to Ross?,129628,Friends,27.91-60.03,friends_s06e21_seg02_clip_15,Rachel joins the conversation. 7590,The actor has a new girlfriend.,The actor has stage fright.,The actor has new clothes.,The actor has a new agent.,The actor has a two-year contract opposite Susan Lucci.,4,What does a fellow actor have after taking Joey's advice?,129629,Friends,40.34-48.02,friends_s03e07_seg02_clip_19,The actor has a two-year contract opposite Susan Lucci. 7591,A visiting doctor. ,A nurse. ,Dr. Terzi,Chase,Cuddy,2,Who asked if he was offering them a job after House screwed up a joke? ,129630,House M.D.,34.07-40.98,house_s04e06_seg02_clip_15,Dr. Terzi 7592,A hairbrush,A bagel,Her earrings,A cup of coffee,A baby gift,3,What is Rachel holding when she is talking with Dr. Franzblau?,129631,Friends,5.67-26.47,friends_s01e23_seg02_clip_11,A cup of coffee 7593,Leaning over,Cooking an egg,Standing up,Combing her hair,Hugging Ross,0,What was Phobe doing when she said something about an early bird dinner?,129632,Friends,15.7-20.64,friends_s08e09_seg02_clip_15,Leaning over 7594,The Biology Department.,The Pharmacology Department.,The Geology Department.,The Astronomy Department.,The Math Department.,1,Who did Sheldon say had the creek bed after Howard asked about it?,129633,The Big Bang Theory,19.26-24.76,s02e16_seg01_clip_00,The Pharmacology Department. 7595,On his hands,On the floor,On the car bed,On the wall,On a chair,2,Where was Chandler sitting when Rachel walked into the room?,129634,Friends,71.74-88.02,friends_s03e07_seg02_clip_20,On the car bed 7596,Because Mikayla has a disease.,Because Mikayla is crazy.,Because Mikayla has poison in a bottle.,Because Mikayla is crying.,Because Mikayla did not had good intentions with Raj.,4,Why Leonard is worry after Mikayla invited Raj to a party?,129635,The Big Bang Theory,0-48.51,s02e21_seg02_clip_07,Because Mikayla did not had good intentions with Raj. 7597,Love,Anger,Emotion,Shame,Sadness,3,What does Barney say he does not have after claiming Marshall does?,129636,How I Met You Mother,6.23-9.79,met_s02e13_seg02_clip_13,Shame 7598,Sheldon decided to take Amy on a date.,Sheldon decided to call Amy.,Sheldon decided to never talk to Amy again.,Sheldon decided to skip the date he had with Amy.,Sheldon decided to stop being friends with Penny.,0,What did Sheldon decide to do after Penny gave him advice?,129637,The Big Bang Theory,32.22-34.93,s04e01_seg02_clip_04,Sheldon decided to take Amy on a date. 7599,Thirteen asked Darrien no to stress herself out.,Thirteen asked Darrien to lie down and to elevate her shoulders.,Thirteen asked Darrien to take some sleep,Thirteen asked Darrien to take her medication,Thirteen did not ask Darrien to do anything.,1,What did Thirteen ask Darrien to do when she put her to bed?,129638,House M.D.,0-8.6,house_s07e22_seg02_clip_08,Thirteen asked Darrien to lie down and to elevate her shoulders. 7600,The man,A van,A girl,A dog,A building,1,What does Dwight see that is familiar when he looks at the pictures?,129639,Castle,46.62-55.67,castle_s06e16_seg02_clip_13,A van 7601,dropped Sparkles off with Jeremy,Gave Sparkles away,Fed Sparkles food,Walked Sparkles,Put Sparkles to bed,0,What did Shana do with Sparkles before she left town?,129640,Castle,23.32-26.91,castle_s07e11_seg02_clip_08,dropped Sparkles off with Jeremy 7602,If it was rat infested,She said she wouldn't move in if it didn't have a pool,If it was uptown,If it only had one bathroom,She said she wouldn't move next to an auto shop,1,Why did Phoebe say she wouldn't move into a new place when Gary asked her if she had been looking for one?,129641,Friends,9.99-15.94,friends_s05e21_seg02_clip_12,She said she wouldn't move in if it didn't have a pool 7603,Castle is in Gates office.,Castle is on a train.,Castle is at an inn.,Castle is at a party.,Castle is at his apartment.,0,Where is Castle when Gates puts on her glasses?,129642,Castle,0-6.26,castle_s05e14_seg02_clip_26,Castle is in Gates office. 7604,Joey and Chandler are at the coffee house.,Joey and Chandler are in a bar.,Joey and Chandler are home.,Joey and Chandler are in a park.,Joey and Chandler are on the subway.,1,Where are Joey and Chandler when they discuss Kathy?,129643,Friends,28.49-39.71,friends_s04e05_seg02_clip_17,Joey and Chandler are in a bar. 7605,An office window.,A man with a knife.,Her commanding officer,A dark tunnel.,A picture of dogs playing cards.,0,"What is behind Serena after Beckett talks about her ""date"" with Castle?",129644,Castle,6.58-14.57,castle_s04e05_seg02_clip_26,An office window. 7606,Beckett says that Duke's assistant Chloe is actually Greta Morgan.,Beckett says that Duke's assistant Chloe is actually Greta Gerwig.,Beckett says that Duke's assistant Chloe is actually Morgan Smith.,Beckett says that Duke's assistant Chloe is actually Greta Mitchell.,Beckett says that Duke's assistant Chloe is actually Georgia Morgan.,0,Who does Beckett say Duke's assistant Chloe turned out to really be after she shows Castle the picture?,129645,Castle,75.62-90.02,castle_s03e11_seg02_clip_17,Beckett says that Duke's assistant Chloe is actually Greta Morgan. 7607,He is accepting and depressed,He is calm and collected,He is rational and understanding,He is furious and destructive,He is frantic and concerned,4,How does Raj react to what Howard is doing when he enters the room?,129646,The Big Bang Theory,0-44.75,s08e22_seg02_clip_06,He is frantic and concerned 7608,Ted poured a drink on him.,Ted hit him,He had a cramp in his leg.,Ted stepped on his foot.,He was startled.,4,Why did Barney squeal and bend down when Ted touched him?,129647,How I Met You Mother,40.36-46.98,met_s03e17_seg02_clip_01,He was startled. 7609,A murder.,A robbery.,A fire.,A fight.,A bomb explosion.,2,What happened at Phoebe and Rachel's apartment before they came to Monica's apartment?,129648,Friends,0-19.22,friends_s06e18_seg02_clip_07,A fire. 7610,Reaper,cup,nothing,rainbow,Magazine,4,What is leonard holding when he says What are you doing,129649,The Big Bang Theory,53.43-60.03,s04e11_seg02_clip_06,Magazine 7611,Penny said that Leonard peed his pants.,Penny said that Leonard threw up.,Penny said that Leonard passed out.,Penny said that Leonard ran away.,Penny said that Leonard cried.,0,What did Penny say that Leonard did when he choked at asking her out?,129650,The Big Bang Theory,48.02-59.12,s07e11_seg02_clip_04,Penny said that Leonard peed his pants. 7612,amused,happy,irritated,angry,tired,0,How did Penny feel when Beverley told her what she wanted to do to the busboy?,129651,The Big Bang Theory,49.12-61.02,s03e11_seg02_clip_12,amused 7613,by cutting her off from money,by eating her baby,by telling everyone she is a slut,by telling her mother,by yelling at her. ,1,How does Pheobe think Rachel's dad would punish her after rachel ask her to join her for dinner?,129652,Friends,34.79-43.64,friends_s08e08_seg01_clip_00,by eating her baby 7614,Because Sarah thinks Detective Beckett is considering her the murderer.,Because Detective Beckett is asking her about the murder of a co-worker.,Because Sarah was related a co-worker that was killed and Detective Beckett asked her personal questions.,Because Sarah feels guilty because she coudl not save her co-worker from death.,Because Sarah did not take her mediation that day and her mood was totally thrown off. ,1,Why does Sarah begin to cry when Detective Beckett askes her questions?,129653,Castle,72.96-91.19,castle_s04e12_seg02_clip_08,Because Detective Beckett is asking her about the murder of a co-worker. 7615,Belligerent.,Paranoid.,Happy.,Frustrated.,Nervous.,4,How is Chandler when he is speaking to Joey?,129654,Friends,0-24.65,friends_s04e07_seg02_clip_20,Nervous. 7616,Racheal,Monica,Chandler,Jessica,Phoebe,3,Who's brain is Joey's character's body rejecting when he is acting in the scene?,129655,Friends,54.13-58.41,friends_s08e05_seg02_clip_01,Jessica 7617,He said he is late for his niece's Christening.,He says he is going to his car.,He says they should all pray first.,He says he thought Joey did not want them there.,He says he want to visit his mother.,3,What does Chandler say before Monica says that Joey did not want anyone making a fuss over him?q,129656,Friends,0-9.14,friends_s05e23-24_seg02_clip_02,He says he thought Joey did not want them there. 7618,A bowl of ice cream,cookies,lemons,Salt and pepper shakers,An apple,3,What is sitting next to Lesley's bottle of water after the guys approached her,129657,The Big Bang Theory,36.92-56.14,s01e13_seg02_clip_07,Salt and pepper shakers 7619,Go shopping.,Discuss who pays.,Call Emily.,Go over ground rules about Emily.,Make reservation.,3,What did Raj tell Howard they must do before double dating?,129658,The Big Bang Theory,0-5.67,s07e20_seg02_clip_04,Go over ground rules about Emily. 7620,She pushed her glass.,She raised her hand.,She tapped on the bar.,She pulled out a lot of money.,She put her head on the bar.,2,What did Penny do when she told the bartender to hit them again?,129659,The Big Bang Theory,5.6-11.2,s03e11_seg02_clip_13,She tapped on the bar. 7621,He wanted her to rub his back,He wanted her to get him some water.,He wanted to ask a quick question.,He want her to make him a sandwich.,He wanted to kiss her.,2,Why did Chandler call Monica after she was in bed?,129660,Friends,43.16-53.28,friends_s07e12_seg02_clip_01,He wanted to ask a quick question. 7622,The incident took place in the school parking lot,The incident took place in a locker room shower,The incident took place at Lane's house,The incident took place at Lane's girlfriend's house,The incident took place in a movie theater,1,Where did Garrett say the incident with Lane took place when he first was involved with Lane?,129661,Castle,59.17-70.09,castle_s07e05_seg02_clip_17,The incident took place in a locker room shower 7623,mike pinto,wilsons ,cuddys,foremans ,taubs ,0,whose office do park and house go into after the doctor leaves his office,129662,House M.D.,45.51-55.07,house_s08e02_seg02_clip_15,mike pinto 7624,the pope,a murderer ,a killer,an artist,a joke,3,How was the arsonist described by Ferguson after the detectives accused Ferguson of starting the fire?,129663,Castle,82.13-92.29,castle_s06e11_seg02_clip_07,an artist 7625,The door was opened,They left,They heard a stange noise,Someone walked up to them from outside,A car drove by and honked,0,What happened after Castle and Alexis rang the doorbell?,129664,Castle,55.35-61.15,castle_s06e07_seg02_clip_16,The door was opened 7626,youtube clips,halloween costume,a brain scan,his hand,his dog,2,what was teh black male doctor looking at when he was talking about bleeds,129665,House M.D.,0-9,house_s03e01_seg02_clip_18,a brain scan 7627,California.,Maryland.,Montana.,New Jersey.,Florida.,3,What state was Estella talking when sat on front Ted.,129666,How I Met You Mother,0-50.19,met_s04e03_seg02_clip_12,New Jersey. 7628,He said she must be crazy because he did die. ,He said she was totally right.,He said she was fired for insubordination.,He said she didn't know what she was talking about.,He said the patient was the lucky one.,4,What did House say to Cameron when she said he was lucky the patient didn't die?,129667,House M.D.,33.06-38.04,house_s03e01_seg02_clip_18,He said the patient was the lucky one. 7629,Ted calls Zoey a consumer activist.,Ted calls Zoey a bored trophy wife.,Ted calls Zoey a half-jewish trophy wife.,Ted calls Zoey an elitist and boring activist.,Ted calls Zoey uninspired and boring.,1,What does Ted call Zoey when they are having their dispute?,129668,How I Met You Mother,33.52-62.07,met_s06e08_seg02_clip_03,Ted calls Zoey a bored trophy wife. 7630,Wilde,Cuddy,Cameron,Kutner,Amber,4,Who had been home to take the call and after that went to pick up House at the bar?,129669,House M.D.,65.1-91.05,house_s04e16_seg02_clip_15,Amber 7631,A police force,A messy house,A New Pet,His sister and her boyfriend,His Father with another woman,4,What does Sheldon say he saw after opening the door?,129670,The Big Bang Theory,0-6.98,s10e05_seg02_clip_13,His Father with another woman 7632,lean on the bed,sat down,hugged her,shook her hand,yelled at her,0,What did Ross do after the doctor walked in?,129671,Friends,1.83-4.58,friends_s08e22_seg02_clip_08,lean on the bed 7633,They misdiagnosed her based on a blood test ,There was cross-contamination in the lab,There is a bacterial outbreak in that wing of the hospital,House and his team gave them to her through treatment,The patient was infected by her parents ,3,What conclusion does House reach about the cause of the sores after the patient has developed them?,129672,House M.D.,0-9.57,house_s01e16_seg02_clip_14,House and his team gave them to her through treatment 7634,The stripper squats on the floor in front of Chandler.,"The stripper squats on the part of the stage that Monica, Chandler, and Phoebe are sitting behind.",The stripper squats on the bar.,The stripper does not squat at the end of her performance.,The stripper squats on Phoebe's lap.,1,Where does the stripper squat when Monica and Phoebe give her money?,129673,Friends,0-10.01,friends_s04e14_seg02_clip_12,"The stripper squats on the part of the stage that Monica, Chandler, and Phoebe are sitting behind." 7635,Made a fish,Clenched her fists,Put her hands up,Counted on her fingers,Put her hands in her pockets,3,What did Beckett do when mentioning the feds and NYPD?,129674,Castle,45.63-49.66,castle_s07e17_seg02_clip_19,Counted on her fingers 7636,taubs,foremans,chases,camerons,cuddys,0,whose pager number did house want thirteen to call when he realized what was wrong with the patient?,129675,House M.D.,0-8.72,house_s05e04_seg02_clip_24,taubs 7637,Frances,Cuddy,Wilson,James,Cameron,2,Who is annoyed with House when House is eating on the couch?,129676,House M.D.,11.49-28.49,house_s06e15_seg02_clip_00,Wilson 7638,She is holding the baby. ,She is sleeping. ,She is smiling. ,She is feeding the baby. ,She is wiping her eyes. ,4,What is Rachel doing when she is in the hospital bed?,129677,Friends,7.09-8.33,friends_s09e01_seg01_clip_00,She is wiping her eyes. 7639,Penny said it was too long.,Penny said it wasn't a real proposal.,Penny said it was too short.,Penny said it was not going to work.,Penny said it was for someone else actually.,1,What did Penny say was wrong with the proposal after receiving it from Leonard.,129678,The Big Bang Theory,32.51-47.86,s05e24_seg02_clip_04,Penny said it wasn't a real proposal. 7640,He continues to walk out of room.,He stops and then slowly turns around.,He grabs Becket and demands the file.,He chases Becket for the file.,He runs out of the room.,1,What does Bracken do after Becket says she has the file?,129679,Castle,20.92-30.72,castle_s05e01_seg02_clip_25,He stops and then slowly turns around. 7641,bowed his head,waved at penny,closed the door behind him,looked in the mirror,grabbed a beer,2,what did raj do after entering leonard and sheldons apartment with howard?,129680,The Big Bang Theory,19.54-28.54,s04e15_seg02_clip_00,closed the door behind him 7642,Hannah,Madison,Rachel,Claire ,Jesse,2,Who inquires about what happened in Atlantic City when talking in the kitchen?,129681,Friends,0-9.6,friends_s07e04_seg02_clip_11,Rachel 7643,"Taub asked ""Do you want suction?""","Taub asked "" Are you going to hire him instead of us?""","Taub asked ""Now he is in the running?""","Taub asked "" Who is he?""","Taub asked "" Is he goingto scrub in?""",1,"When Taub noticies House's reaction after hearing Chase in the gallery, what does Taub ask House?",129682,House M.D.,0-20.69,house_s04e02_seg02_clip_23,"Taub asked "" Are you going to hire him instead of us?""" 7644,Brooklyn.,Scotland.,Ireland and Cuba.,Wales.,China.,2,What two places of origin were revealed before Ryan/Moxie and Esposito/Cuchillo walked toward Castle?,129683,Castle,12.53-17.46,castle_s04e14_seg02_clip_05,Ireland and Cuba. 7645,He is upset because he is hungry. ,He is upset because he won't be able to celebrate Howard's accomplishments tonight. ,He is upset because he is tired. ,He is upset because he cares about Howard. ,He is upset because he is thirsty. ,1,Why is Sheldon upset when he is setting up for Pictionary?,129684,The Big Bang Theory,39.68-43.29,s06e04_seg02_clip_01,He is upset because he won't be able to celebrate Howard's accomplishments tonight. 7646,she wants to new start,she needs a change,her husband has been relocated,she wants to get away from her family,she got fired,2,Why did Monica say she is looking for a job in Tulsa when she was on the phone with Nancy?,129685,Friends,31.81-47.42,friends_s09e03_seg02_clip_10,her husband has been relocated 7647,In the kitchen near the refrigerator. ,In a restaurant at a table. ,At the movies. ,In a bar. ,Standing in the living room near the window.,4,Where are Chandler and Monica when they are having their conversation?,129686,Friends,0-27.4,friends_s03e06_seg02_clip_18,Standing in the living room near the window. 7648,6 men have guns.,3 men have guns,4 men have guns,5 men have guns,2 men have guns,4,How many men have guns in the room when Bracken talks about evidence and then leaves Beckett?,129687,Castle,0-40.79,castle_s06e22_seg02_clip_18,2 men have guns 7649,He is patting her chest. ,He is dancing. ,He is eating spaghetti. ,He is drinking water. ,He is drinking wine. ,0,What is Joey doing when Monica is in her uniform for work?,129688,Friends,2.56-4.8,friends_s04e10_seg02_clip_09,He is patting her chest. 7650,One dollar,20 cents,50 cents,75 cents,10 cents,1,How much was Penny's profit margin on her Penny Blossoms after they finished packaging them,129689,The Big Bang Theory,40.31-54.27,s02e18_seg02_clip_11,20 cents 7651,Bernadette runs over for a closer look.,Bernadette jumps up .,Bernadette falls off her seat.,Bernadette drinks from her mug.,Bernadette closes her computer.,3,What does Bernadette do after she asks who is it?,129690,The Big Bang Theory,10.38-17.7,s10e09_seg02_clip_01,Bernadette drinks from her mug. 7652,Meredith thinks they are talking about her.,Meredith is nervous because she has her hand on a bomb.,Meredith thinks they are looking at her like she is a patient.,Meredith thinks they aren't sharing enough information with her.,Meredith doesn't like to be stared at.,2,"Why does Meredith tell the others to ""stop it"" when they are looking at her?",129691,Grey's Anatomy,13.03-32.8,grey_s02e17_seg02_clip_08,Meredith thinks they are looking at her like she is a patient. 7653,"That's not nice, I'm leaving. ",You are mean and I have to go watch TV.,I have to go to the bathroom to get away from you.,Please get acquainted with Penny since you can't stand me. ,I am not longer a child and I will not be spoke to as one.,4,What did Raj say scolding his parents before he left?,129692,The Big Bang Theory,15.19-21.27,s02e04_seg02_clip_15,I am not longer a child and I will not be spoke to as one. 7654,Next to the couch.,Behind the bedroom bed.,Aside the kitty litter bag.,Walking the dog.,Closing the car door.,0,Where is Cecilia when she is talking to Joey?,129693,Friends,57.81-61.5,friends_s07e15_seg02_clip_12,Next to the couch. 7655,It honks its horn,It crashes,It turns off,It catches on fire,It talks,3,What happens to the car that is in front of Jason and Phoebe when they walk by it,129694,Friends,0-9.44,friends_s03e23_seg02_clip_03,It catches on fire 7656,a sliderule,a hammer,a keyboard,a mouse,his nose,2,What does Howard touch right before he calls Sheldon a condescending jerk?,129695,The Big Bang Theory,20.14-24.41,s05e21_seg02_clip_00,a keyboard 7657,silver,gold,titanium centrifuge,platinum,a baseball,2,What gift did Sheldon want when he was a child?,129696,The Big Bang Theory,43.94-60.2,s01e16_seg02_clip_08,titanium centrifuge 7658,White,Blue,Black,Red,Pink,3,What color is Ross' car when he and Joey are in it?,129697,Friends,16.01-21.01,friends_s07e14_seg02_clip_20,Red 7659,Jolt-mobile.,Derek-mobile.,Lightning-mobile.,Bolt-mobile.,Strain-mobile.,3,What does Derek call his car when he is speaking with detectives?,129698,Castle,72.73-80.91,castle_s07e19_seg02_clip_06,Bolt-mobile. 7660,Rachel is carrying her purse.,Rachel is carrying an apron.,Rachel is carrying a plate.,Rachel is carrying a book.,Rachel is carrying a coffee mug.,2,What is Rachel carrying when Monica and Phoebe walk into the coffee shop?,129699,Friends,7.48-9.43,friends_s01e14_seg02_clip_00,Rachel is carrying a plate. 7661,Foreman was looking at Driscoll's swollen chest.,Foreman was looking at his stethoscope.,Foreman was looking at his stop watch.,Foreman was looking at Driscoll's eyes.,Foreman was looking at the heart monitor above Driscoll.,4,Where was Foreman looking when he was checking Driscoll's heart rate?,129700,House M.D.,53.98-58.4,house_s07e10_seg02_clip_07,Foreman was looking at the heart monitor above Driscoll. 7662,In her bag.,Around her neck.,In her ears.,Back into the locker.,In the trash.,2,Where did Izzie but the stethoscope after she took it out of her locker?,129701,Grey's Anatomy,50.72-60.68,grey_s03e05_seg02_clip_03,In her ears. 7663,He is standing up.,He is sitting on his desk.,He sitting on the table.,He is sitting on the couch.,He is in a wooden chair.,3,Where is Castle sitting down when Beckett is talking to him about Damian?,129702,Castle,0-5.82,castle_s03e15_seg02_clip_05,He is sitting on the couch. 7664,Howard is on the phone with his mother,Howard is on the phone with Raj,Howard is on the phone with Sheldon,Howard is on the phone with Penny,Howard is on the phone with Wil,0,Who is Howard on the phone with before Bernadette unloads the groceries,129703,The Big Bang Theory,0-7.97,s08e15_seg02_clip_00,Howard is on the phone with his mother 7665,She is talking on the phone.,She is looking at her apartment.,She is going through a box in the garage,She is crying.,She is watching Ross go through a box.,2,What is Monica doing before she tells Ross everything is destroyed?,129704,Friends,55.21-62.03,friends_s07e13_seg02_clip_22,She is going through a box in the garage 7666,A heart shaped pillow,A round pillow,A rectangle pillow with lace,An neck pillow,A square crocheted covered pillow,4,What kind of pillow is on the couch next to Monica before Chandler shows her a photo of a girl from camp?,129705,Friends,4.35-11.02,friends_s07e06_seg02_clip_04,A square crocheted covered pillow 7667,Wilson is sitting at his desk,Wilson is at home,Wilson is at the park,Wilson is in the break room,Wilson is at a party,0,Where is Wilson when House stick him with a needle?,129706,House M.D.,0-9.35,house_s08e21_seg02_clip_02,Wilson is sitting at his desk 7668,He yelled at her and then left.,He said goodbye and left.,He didn't say anything and left.,He came in the apartment anyways.,He punched her and ran away.,3,What did Dr Green do when she told him goodbye?,129707,Friends,32.71-37.22,friends_s02e22_seg02_clip_02,He came in the apartment anyways. 7669,On the floor ,In a chair ,In a hospital bed,At a table ,In an oxygen chamber,2,"Where is Greta sitting when she says ""You said you got all the cysts""?",129708,House M.D.,83.62-85.82,house_s04e02_seg02_clip_23,In a hospital bed 7670,He missed his flight,He wanted to be with Phoebe,He got into a fight with a cab driver,Rachel broke up with him,He was arrested for indecent conduct,0,Why wasn't Palo with Rachel after she came back from the airport?,129709,Friends,27.1-35.73,friends_s01e10_seg02_clip_14,He missed his flight 7671,Falcon,Alexis,Gates,Mason,Hayley,4,Who enters the precinct when mia and castle are entering the elevator?,129710,Castle,44.08-47.76,castle_s08e05_seg02_clip_05,Hayley 7672,Pole Dancers,Jedi Knights,Medieval Knights,The Rockettes,Sheldon on a bad day,3,What does Raj liken the boys to when they're fencing?,129711,The Big Bang Theory,0-4.8,s09e05_seg02_clip_07,The Rockettes 7673,Chandler is holding his Jacket.,Chandler is holding Monica's hand.,Chandler is holding a pillow.,Chandler is holding his phone.,Chandler is holding a wheel chair.,2,What is Chandler holding when he is talking about a heart attack ?,129712,Friends,19.15-23.11,friends_s06e15-16_seg02_clip_22,Chandler is holding a pillow. 7674,George kisses Izzie.,George cries.,George sits on the stairs.,George punches Alex.,George turns to follow Cristina.,4,What does George do when Cristina asks if he knows about Derek and Meredith?,129713,Grey's Anatomy,11.7-16.2,grey_s01e07_seg02_clip_10,George turns to follow Cristina. 7675,Balloons,Flowers,Candy,Book,Cupcakes ,1,What was with the bear when House came into the patient's room? ,129714,House M.D.,49.34-58.03,house_s01e22_seg02_clip_15,Flowers 7676,Zoe runs to the door.,Zoey kicks Barney.,Zoey passes out.,Zoe cries.,Zoey lowers her hand from Ted's shoulder.,4,What does Zoey do after Ted says he wants to go slow?,129715,How I Met You Mother,18.75-21.87,met_s06e16_seg01_clip_00,Zoey lowers her hand from Ted's shoulder. 7677,His dad,The cops,Alexis,Beckett,Esposito,1,Who tried to front Scott before his argument with Castle?,129716,Castle,34.67-41.98,castle_s08e03_seg02_clip_09,The cops 7678,There isn't residual damage on the CT scan,The patient is too young to have a stroke,There is a stronger possibility it was a heart attack,There is no family history of strokes,Tests show the patient got enough oxygen,0,Why is Foreman dubious about a mini stroke after Taub suggests it is what happened to the patient?,129717,House M.D.,48.52-65.88,house_s05e06_seg02_clip_01,There isn't residual damage on the CT scan 7679,So good you could die,So good the President wants them,Like a snow day in high school good,First kiss good,First night of sleep in 3 months good,0,"How good are the tickets, according to House, when he tries to convince Wilson to join him?",129718,House M.D.,25.86-41.29,house_s01e12_seg02_clip_11,So good you could die 7680,Joey gave the patient too many medications.,Joey was pretending to be a doctor.,Joey told the patient that the television did not work.,The patient is delusional.,Joey was in the room at the same time he was on television.,1,Why is Cliff worried when he sees Joey on the television?,129719,Friends,5.49-12.21,friends_s08e23-24_seg02_clip_28,Joey was pretending to be a doctor. 7681,Raj is carrying chinese takeout.,Raj is holding a DVD.,Raj is holding a new board game.,Raj is holding the Warcraft Xbox game.,Raj is holding a pizza.,1,What is Raj holding when he comes into the apartment while Howard and Leonard prepare for their dates?,129720,The Big Bang Theory,53.96-62.02,s03e12_seg01_clip_00,Raj is holding a DVD. 7682,Her dress,Her hair,Her necklace,Her boots,Her coat,3,"What was Monica pulling on before Chandler said something about a haircut, necklace and dress?",129721,Friends,1.7-11.56,friends_s08e10_seg01_clip_00,Her boots 7683,Raj tells Sheldon he is afraid the pills will make him sleepy.,Raj tells Sheldon he is afraid the pills will make him bad at his job.,Raj tells Sheldon he is afraid the pills will make him angry.,Raj tells Sheldon he is afraid the pills will make him happier.,Raj tells Sheldon he is afraid the pills will make him upset.,1,What does Raj tell Sheldon is the reason he is afraid to take the pills when he is talking to Sheldon?,129722,The Big Bang Theory,0-49.23,s04e22_seg02_clip_09,Raj tells Sheldon he is afraid the pills will make him bad at his job. 7684,Call Howard,Knock on Penny's door,Go up the stairs,Call Amy,Go down the stairs,4,What do Leonard and Sheldon do after leaving the apartment?,129723,The Big Bang Theory,31.83-38.32,s01e04_seg01_clip_00,Go down the stairs 7685,Super Max Prison,Central Booking,Down the river,To the ssanitarium,To jail,1,Where does Tyson say that Castle will be sent when the DA presses charges when he and Castle are talking in the jail cell?,129724,Castle,32.27-54.54,castle_s05e05_seg02_clip_16,Central Booking 7686,Joey said he was with the building manager.,Joey said he was off with his bridesmaid.,Joey said he was with his co-star.,Joey said he was at the bar.,Joey said he was on a date.,1,Where did Joey say he was when he said it wasn't his fault?,129725,Friends,4.27-9.46,friends_s07e16_seg02_clip_19,Joey said he was off with his bridesmaid. 7687,Mia is holding on to castle.,Mia is holding on her phone.,Mia is holding on to her purse strap.,Mia is holding on Beckett's arm.,Mia is holding on to her hair.,2,What is Mia holding when she is standing talking?,129726,Castle,0-6.14,castle_s08e05_seg02_clip_10,Mia is holding on to her purse strap. 7688,Ellis,Edwardo,Edward,Edmund,Elliot,3,Who did the neighbor give as the person who lives in the apartment that Castle and Beckett were knocking on when she was bringing the key?,129727,Castle,17.55-33.76,castle_s05e09_seg02_clip_04,Edmund 7689,Ted honestly thought the toupee looked great.,Ted was lying about the toupee looking great in order to assure Marshall that he looked great.,Ted felt that some improvements could be made.,Ted told Marshall the toupee was ridiculous and that he should not wear it.,Ted was jealous about how well Marshall looked with his toupee ,1,What was Ted's underlying reaction towards Marshall when he wore the toupee?,129728,How I Met You Mother,41.95-51.05,met_s02e21_seg02_clip_11,Ted was lying about the toupee looking great in order to assure Marshall that he looked great. 7690,Penny is living up each moment of this. ,Penny is not surprised at all. ,Penny has fallen over in her seat. ,Penny is laughing. ,Penny is shocked. ,4,How does Penny react when Sheldon is mouthing off to the judge?,129729,The Big Bang Theory,52.22-53.12,s03e16_seg02_clip_09,Penny is shocked. 7691,Near the gas station,near the bathroom,Near the garden,Near the coffee vending machine,Near the parking lot,3,Where was Wardell 14 minutes before Joe the jurors died?,129730,Castle,46.89-53.2,castle_s03e19_seg02_clip_05,Near the coffee vending machine 7692,shows Castle a paper,stands up,sits down,shows Vincent Powers a paper,point at Vincent Powers,4,"what did Beckett do when she said ""you know, there's another version of this story where your wife..."" ?",129731,Castle,69.18-76.58,castle_s03e18_seg02_clip_08,point at Vincent Powers 7693,"Nina, Cathy's daughter. ","Izzie, Cathy's doctor. ","Callie, Cathy's doctor. ","Bailey, the interns' instructor. ","Dr. Webber, the interns' boss. ",0,Who is overprotective of Cathy when she is in the patient room?,129732,Grey's Anatomy,81.29-86.02,grey_s03e19_seg02_clip_04,"Nina, Cathy's daughter. " 7694,Glucagonoma.,Gastrinoma.,Insulinoma. ,Vasoactive intestinal polypeptide.,Nesidioblastoma.,4,"What is the diagnosis solution that House comes up with after Cameron, Chase and Foreman were trying to figure it out?",129733,House M.D.,37.95-39.32,house_s02e04_seg02_clip_21,Nesidioblastoma. 7695,to make the woman faint,to give the woman a heart attack ,to make the woman laugh,to make the woman cry,to cure the womans hiccups,4,why did house say he told the 79 year old woman she was pregnant when talking about the story with wilson at the restaurant? ,129734,House M.D.,58.1-63.38,house_s08e21_seg02_clip_15,to cure the womans hiccups 7696,Suits,Superhero costumes,Lord of the Rings costumes,Astronauts,Bathing suits,0,What are Leonard are Sheldon wearing when they leave the apartment?,129735,The Big Bang Theory,34.61-39.87,s01e04_seg01_clip_00,Suits 7697,No ,I was on my way,I'm staying here,I have a patient,I forgot something,1,What was Dereks reply after Addison asked if he was ready to go?,129736,Grey's Anatomy,13.63-29.08,grey_s02e08_seg02_clip_18,I was on my way 7698,Amy.,Penny.,Howard's mom.,Leonard.,Raj.,2,Who does Leslie yell at when she was in Howard's bed?,129737,The Big Bang Theory,13.87-41.02,s02e16_seg02_clip_05,Howard's mom. 7699,Ross drinks his beer. ,Ross stands up. ,Ross eats cake. ,Ross hugs Rachel. ,Ross kisses Rachel. ,1,What does Ross do after the man with the champagne glass sits down?,129738,Friends,35.4-43.02,friends_s02e24_seg02_clip_14,Ross stands up. 7700,Shirt ,Hand,Eraser,Underwear,Used Underwear,1,What does Sheldon use to wipe the board when he argues with Raj?,129739,The Big Bang Theory,19.51-60.02,s03e04_seg02_clip_16,Hand 7701,Church,Outside,To the store.,To the doctor.,Chandler and Monica left to go upstaits to have sex over and over.,4,Where were Chandler and Monica going when they left out the door?,129740,Friends,17.61-33.62,friends_s05e17_seg02_clip_11,Chandler and Monica left to go upstaits to have sex over and over. 7702,He picks up his laundry.,Ted pretends to talk to Stella so that Lily doesn't know that Marshall is on the line and in trouble.,He gives his wife a ride home.,He retrieves a package from the post office.,He tells him the answer to a trivia question.,1,How does Ted help Marshall when Marshall calls?,129741,How I Met You Mother,19.23-58.31,met_s03e15_seg02_clip_07,Ted pretends to talk to Stella so that Lily doesn't know that Marshall is on the line and in trouble. 7703,She found out his company was corrupt.,They dated and he found out she was cheating.,She has stumbled onto something in her research that could be used against him.,Someone hired him to do it.,She was the wife of his business partner who embezzled from him.,3,Why does Beckett say she thinks Hawke killed Alice before she goes in to interrogate him?,129742,Castle,2.73-6.37,castle_s06e08_seg02_clip_06,Someone hired him to do it. 7704,"Sheldon said, I thought that was my helmet. ","Sheldon said, he did not know what Howard was talking about.","Sheldon said, Penny has your helmet. ","Sheldon said, he wanted it and Howard was not using it so he took it. ","Sheldon said, I did not know you had an helmet. ",3,How did Sheldon respond after Howard demanded his helmet back? ,129743,The Big Bang Theory,32.26-51.31,s06e09_seg02_clip_01,"Sheldon said, he wanted it and Howard was not using it so he took it. " 7705,Monica tells Ethan she's devoted to him.,Monica tells Ethan she's not that into him.,Monica tells Ethan she's no longer attracted to him.,Monica tells Ethan she's head over heels for him.,Monica tells Ethan she's nuts about him.,4,How does Monica tell Ethan she feels about him when lying in bed?,129744,Friends,15.99-24.49,friends_s01e22_seg02_clip_10,Monica tells Ethan she's nuts about him. 7706,Chandler drops a fork.,Chandler drops a basket.,Chandler drops a napkin.,Chandler drops his plate.,Chandler drops a glass.,1,What does Chandler drop on the table shortly after picking it up?,129745,Friends,22.44-24.71,friends_s05e17_seg02_clip_17,Chandler drops a basket. 7707,He had many bite marks around his body.,No he did not.,He had it on his arm.,He had it on his neck.,Yes he did.,4,Where and when was there bite marks on his thigh?,129746,Castle,11.64-86.22,castle_s02e06_seg02_clip_02,Yes he did. 7708,She calls him ugly. ,She calls him a catch. ,She calls him a loser. ,She calls him a dream man. ,She calls him a scrub. ,4,What does Michelle call Simon when she is talking with Robin?,129747,How I Met You Mother,35.97-45.67,met_s03e16_seg02_clip_10,She calls him a scrub. 7709,Sheldon picked a book from the table.,Sheldon picked a pen from the table.,Sheldon did not pick anything from the table.,Sheldon picked a solution from the table.,Sheldon picked his mobile phone from the table.,0,What did Sheldon pick on the table after he entered the room where Leonard was doing some experiment?,129748,The Big Bang Theory,46.04-51.98,s03e22_seg02_clip_14,Sheldon picked a book from the table. 7710,Sheldon says he got in an accident,Sheldon says he drove off the bridge,Sheldon says he missed his exit and flew over the overpass,Sheldon says he hit a pedestrian,Sheldon says he missed his exit,2,What does Sheldon tell Howard happened to him on the Passadena Freeway when playing his video game?,129749,The Big Bang Theory,0-7.61,s02e05_seg02_clip_13,Sheldon says he missed his exit and flew over the overpass 7711,4,2,3,1,none,3,How many nurses were with the little boy when he was getting ready to leave? ,129750,House M.D.,45.6-49.66,house_s03e04_seg02_clip_25,1 7712,Meredith is in the conference room.,Meredith is in the bathroom.,Meredith is in the locker room.,Meredith is on the elevator.,Meredith is in a patient's room.,2,Where is Meredith when she confronted Jeff about breaking up with her?,129751,Grey's Anatomy,68.55-74.34,grey_s03e25_seg02_clip_23,Meredith is in the locker room. 7713,Slapped Rachel,Answered the phone,Break the phone,Leave the room,Throw away the phone,1,What did Phoebe do after Rachel hesitated about answering the phone,129752,Friends,0-9.38,friends_s07e15_seg02_clip_08,Answered the phone 7714,A monkey was messing up the kitchen. ,A bear was in the bedroom. ,A bat was flying around the apartment. ,A mouse was in Monica's shoe. ,Two cats were in the living room. ,0,Why was Monica angry when she was talking to Ross? ,129753,Friends,50.5-58.05,friends_s01e10_seg02_clip_05,A monkey was messing up the kitchen. 7715,Sticky purple powder.,Sticky green powder.,Sticky yellow powder.,Sticky yellow solution.,Sticky green solution.,2,What did Lanie find on Richie's pant leg after she examines his clothes?,129754,Castle,83.89-87.84,castle_s07e19_seg02_clip_03,Sticky yellow powder. 7716,Joey and Chandler are shopping for dining room chairs.,Joey and Chandler are shopping for patio furniture. ,Joey and Chandler are shopping for a sofa.,Joey and Chandler are shopping for arm chairs.,Joey and Chandler are shopping for barstools.,0,What are Chandler and Joey shopping for when in the store?,129755,Friends,11.69-18.82,friends_s01e12_seg02_clip_11,Joey and Chandler are shopping for dining room chairs. 7717,Alexis lives there,Lyle thinks Alexis is cute,Lyle wants to be liked,Alexis will tell him more about what was in Kim's diary,Alexis has a key,3,Why does Lyle let Alexis in Lyle's house after first refusing to?,129756,Castle,0-23.98,castle_s06e07_seg02_clip_12,Alexis will tell him more about what was in Kim's diary 7718,Ryan ,Jane,Dino,Luca Tessaro,The waitress from the pizza place.,3,Who is Castle surprised to see alive when he walks through the metal door?,129757,Castle,77.92-88.79,castle_s07e10_seg02_clip_21,Luca Tessaro 7719,She said she had to sleep in the lobby.,She says that she misses her shitzu dog.,She says that she had to sleep in the hotel bathroom.,She said that she had to stay in a suite with Ross .,She says she had to sleep in a gas station.,3,What does Rachel tell Monica happened after she could not catch her plane?,129758,Friends,0.31-8.03,friends_s05e02_seg02_clip_03,She said that she had to stay in a suite with Ross . 7720,No one,Alexis,Hayely,Ryan,Esposito,4,Who walks in after with new info on the case of Zane?,129759,Castle,3.17-8.61,castle_s08e20_seg02_clip_20,Esposito 7721,"Nothing, the file in intact.",The witnesses all went missing or died.,The entire file was lost.,The witness statements and the list of people who gave them went missing.,The first few pages are missing.,3,What does Ryan say happened to the file when he looked at it since it has been in circulation?,129760,Castle,56.67-72.21,castle_s07e11_seg02_clip_17,The witness statements and the list of people who gave them went missing. 7722,i saw 1 woman on the couch,I saw 2 women on the couch,i saw 4 women on the couch,i saw four ladies on the couch,i saw 5 men on the couch,1,How many people when Joey was sitting on the couch was women?,129761,Friends,0-21.43,friends_s03e18_seg01_clip_00,I saw 2 women on the couch 7723,Dr.Hamilton flying in from New York,Dr.Hamilton flying in from Seattle,Dr.Hamilton flying in from Houston,Dr.Hamilton flying in from L.A.,Dr.Hamilton flying in from Miami,3,Where is Dr.Hamilton flying in from when Cuddy tellls House about it?,129762,House M.D.,56.07-61.84,house_s01e09_seg02_clip_08,Dr.Hamilton flying in from L.A. 7724,She lauged,She hugged him.,She sat down.,She walked away.,She took a drink.,1,What did Rachel do after Joey asked if his show was good?,129763,Friends,1.92-12.17,friends_s07e04_seg02_clip_13,She hugged him. 7725,King.,Knight.,Prince.,Jester.,Monk.,1,What rold did Miles say William took very seriously when Thirteen and Foreman found something unusual in the tent?,129764,House M.D.,58-62.01,house_s06e17_seg02_clip_04,Knight. 7726,Because Marshall did not have to pay his tab at the bar.,Because Barney helped Marshall get a phone number of a girl in a bar. ,Because Marshall and Barney were going to the movies.,Because Marshall saw a famous actress.,Because Marshall was thinking about going home and watching his favorite movie. ,1,Why is Marshall so excited when he is in the cab with Barney?,129765,How I Met You Mother,43.79-57.77,met_s02e02_seg02_clip_08,Because Barney helped Marshall get a phone number of a girl in a bar. 7727,Ted,Barney,A homeless man,A doctor,Robin,1,Who does Marshall's daughter marry when Marshall imagines his daughter's future?,129766,How I Met You Mother,39.02-45.92,met_s06e06_seg02_clip_10,Barney 7728,Christmas lights and garland. ,A Santa Claus statue. ,A reindeer. ,A manger with animals and a baby. ,A big teddy bear with a Christmas bow. ,0,"What kind of decorations are behind the couch when Rachel, Joey and Ross are talking? ",129767,Friends,11.1-14.03,friends_s03e10_seg02_clip_09,Christmas lights and garland. 7729,He tasted it.,He smashed it.,He rubbed it in Beckett's face.,He put it on a plate.,He put it back on the cake.,1,What did Castle do after he picked a heart off the cake?,129768,Castle,51.66-57.84,castle_s02e22_seg02_clip_20,He smashed it. 7730,Beckett is holding her coat.,Beckett is holding a photo.,Beckett is holding her gun.,Beckett is holding handcuffs.,Beckett is holding her gloves.,4,What is Beckett holding when questioning the parents of the victim?,129769,Castle,63.35-64.68,castle_s01e04_seg02_clip_01,Beckett is holding her gloves. 7731,France ,USA ,Germany,Canada,Mexico,1,What flag is in the room when Mia and Castle discuss olfactory senses?,129770,Castle,0-8.72,castle_s08e05_seg02_clip_05,USA 7732,Cameron is jealous that Chase has a new job offer ,Chase did not call Cameron last weekend like he said he would,Cameron covered for Chase and expected him to lie for her in return,Cameron thinks Chase and Foreman ganged up on her in the discussion,Cameron thinks Chase is trying to throw her under the bus,4,Why is Cameron upset with Chase after they leave the office?,129771,House M.D.,14.36-61.35,house_s01e16_seg02_clip_14,Cameron thinks Chase is trying to throw her under the bus 7733,Pink,Black,Blue,Yellow,Purple,2,What color dress was Cuddy wearing when she was dancing with House?,129772,House M.D.,0-4.6,house_s07e08_seg02_clip_17,Blue 7734,In the bathroom,In a chair in front of Beckett and Agent Napier,In the hallway,In the conference room,In the library,1,Where is Alonzo sitting when Beckett and Agent Napier interrogate him?,129773,Castle,43.97-90.66,castle_s08e13_seg02_clip_23,In a chair in front of Beckett and Agent Napier 7735,He starts to swim to the shore.,He makes his way to the nose of the boat.,He jumps of the boat.,He screams at the girls on the other boat.,He paddles to the other boat.,3,What does Ross do before Rachel sarcastically jousts at him?,129774,Friends,0-10.37,friends_s07e03_seg02_clip_05,He screams at the girls on the other boat. 7736,His briefcase.,A USB stick with research files.,A patient file folder.,A pen to take notes.,His cane.,4,What does House pick up right before he stands up to go make sure he is right?,129775,House M.D.,84.26-88.23,house_s03e22_seg02_clip_18,His cane. 7737,Chandler,Ross,Racheal,Joey,Monica,0,Who closed the door to the apartment after entering the apartment?,129776,Friends,0-2.88,friends_s07e03_seg02_clip_07,Chandler 7738,Amy walks to the door.,Amy takes off her coat.,Amy orders food.,Amy puts her hands over her face.,Amy gives Bernadette flowers.,1,What does Amy do after Howard asks about Sheldon?,129777,The Big Bang Theory,6.93-10.4,s07e12_seg02_clip_12,Amy takes off her coat. 7739,unscathed,untreated,unstopped,untreated,uncurable,2,How did Chase say the infection would rampage through the body before House said like the cop and like Foreman?,129778,House M.D.,3.14-12.13,house_s02e21_seg02_clip_14,unstopped 7740,chicken sandwich,cheeseburger,steak and potatoes,seafood,fried chicken,0,What food item did Boyd tell Foreman he ate after Foreman asked him what he had eaten?,129779,House M.D.,50.06-69.63,house_s02e19_seg02_clip_00,chicken sandwich 7741,In front.,In the corner.,Middle of the dance floor.,On stage.,On one of the platforms.,4,Where did Monica tell Ross they have to be for taping when they are on the floor dancing?,129780,Friends,3.18-8.22,friends_s06e10_seg02_clip_07,On one of the platforms. 7742,A coffee mug,A Jenga piece,Her eyeglasses,A notebook,A napkin,0,What is Bernadette holding in her hand when Leonard is talking about Penny getting a movie part?,129781,The Big Bang Theory,33.35-37.19,s04e22_seg02_clip_10,A coffee mug 7743,Castle is holding Otis Williams' picture.,Castle is holding the police report.,Castle is holding his cell phone.,Castle is holding a marker.,Castle is holding coffee mugs.,4,What is Castle holding when Beckett says she agrees with him?,129782,Castle,0-9.35,castle_s03e19_seg02_clip_18,Castle is holding coffee mugs. 7744,He is feeling happy.,He is feeling sorry.,He is feeling excited.,He is feeling angry.,He is feeling goofy.,1,How is Howard feeling when he speaks to Penny?,129783,The Big Bang Theory,6.79-10.62,s05e22_seg02_clip_15,He is feeling sorry. 7745,He never said anything to Emma.,He said nothing.,"He said, ""good job!""",He was happy for her.,"Eighteen, huh? as in she is an adult.",4,Where and when did Joey say to Emma?,129784,Friends,16.01-64.03,friends_s10e04_seg02_clip_01,"Eighteen, huh? as in she is an adult." 7746,that rachel is pregnant. ,that she can't be there,that she broke up with her boyfriend,that monica can't get married,that she is pregnant. ,4,What does pheobe try and tell her friends when they are preparing for monica's wedding?,129785,Friends,0-11.48,friends_s08e01_seg02_clip_01,that she is pregnant. 7747,checks his breath,cleans his room,fixes his hair,takes his foot off his desk, takes his robe off,3,what does howard do before penny shows up at his bedroom door?,129786,The Big Bang Theory,55.43-59.61,s02e12_seg02_clip_08,takes his foot off his desk 7748,Well done,Medium rare,Medium,Medium Well,Rare,1,How does House order his steak when he is on the plane?,129787,House M.D.,61.72-90.1,house_s03e18_seg02_clip_02,Medium rare 7749,A gun is seen and shots are fired,Suspects surrender and lay down,Suspects run and the truck explodes,Police chase and stun the suspects,Cops attack the suspects and cuff them,0,What happens after the NYPD identify the suspects after exiting the truck?,129788,Castle,30.83-50.61,castle_s08e17_seg02_clip_22,A gun is seen and shots are fired 7750,He wants her to cherish her life and be grateful.,He wants her to give up and die.,He wants her to commit suicide and give up.,He wants her to tell him her life is important because he doesn't know.,He wants to give her another chance but he doesn't make those decisions and he thinks she sucks as a person.,3,What does House say he wants to hear his patient say when he is speaking with her?,129789,House M.D.,40.51-50.3,house_s01e14_seg02_clip_17,He wants her to tell him her life is important because he doesn't know. 7751,White,blue,brown,black,green,0,what color coat are the doctors wearing when the man in the red shirt is writing on the white board?,129790,House M.D.,0-27.01,house_s02e01_seg02_clip_21,White 7752,She grabbed a bottle of water.,She gave him a note.,She looked at his laptop.,She kissed him.,She put her purse on the table.,3,What did Alexis do after she walked up to Castle?,129791,Castle,53.25-55.98,castle_s03e20_seg02_clip_18,She kissed him. 7753,Chandler ,Ross,Rachel,Monica,Gunther ,2,Who is Joey giving a tour to when behind the scenes of his set? ,129792,Friends,13.87-15.44,friends_s06e15-16_seg02_clip_10,Rachel 7754,Rachel is sad,Rachel is mad,Rachel is excited,Rachel is disgusted,Rachel is quiet,2,How does Rachel react when she finds out Chandler kissed a guy?,129793,Friends,26.71-33.92,friends_s07e04_seg02_clip_11,Rachel is excited 7755,Sing 'Soft Kitty' over and over again.,Tell Sheldon and Howard a lie about them.,Beat them both with a bag of potatoes.,Tell Sheldon and Howard to break up with them.,Beat them both with a bag of oranges.,4,What does Penny threaten to do to Amy and Bernadette if they tell Leonard anything when discussing Penny's school paper?,129794,The Big Bang Theory,0-34.23,s06e06_seg02_clip_16,Beat them both with a bag of oranges. 7756,He picks up the phone to call Beckett to ask her about the case.,He comes running into the office and take a seat next to Beckett.,He searches through his case notes.,He makes a phone call to officer Esposito.,He sends a text message to officer Esposito.,1,What does Castle do before he ask Beckett who cleaned the pillow case?,129795,Castle,12-17.34,castle_s02e16_seg02_clip_24,He comes running into the office and take a seat next to Beckett. 7757,They are in Howard's mom's bedroom. ,They are in Bernadette'd bedroom. ,They are in Howard's bedroom. ,They are in Sheldon's bedroom. ,They are in Leonard's kitchen. ,2,Where are Howard and Bernadette when they are talking?,129796,The Big Bang Theory,0-3.54,s05e21_seg02_clip_10,They are in Howard's bedroom. 7758,Three PP,Two PP,One PP,Fourth Floor,One Fifteen Rose Ave,2,Where did Beckett say that she has a meeting after thanking Castle for the bracelet?,129797,Castle,17.56-26.56,castle_s08e02_seg02_clip_02,One PP 7759,Susan and Carol,Chandler and Ross,Monica and Rachel,Monica and Ross,Rachel and Paolo,2,Who is behind Joey when he asks for help?,129798,Friends,13.26-17.69,friends_s02e12-13_seg02_clip_16,Monica and Rachel 7760,Castle asked Becket about the Desmond case,Castle asked Becket about the Microtron case,Castle asked Becket about the Simpson case,Castle asked Becket about the Pine Grove case,Castle asked Becket about the LokSat case,4,Which case did Castle ask Beckett about when they were drinking champagne,129799,Castle,82.1-89.78,castle_s08e10_seg02_clip_26,Castle asked Becket about the LokSat case 7761,Fred,Daniel,Mark,Tim,Burke,4,Who does Christina see after she opens the door?,129800,Grey's Anatomy,0-6.02,grey_s03e04_seg02_clip_25,Burke 7762,Serena is wearing a white pant suit,Serena is wearing handcuffs.,Serena is wearing a blue dress.,Serena is wearing a hat.,Serena is wearing a polka dot bathing suit,2,What is Serena wearing when she discusses the thief with Beckett?,129801,Castle,0-8.21,castle_s04e05_seg02_clip_05,Serena is wearing a blue dress. 7763,Castle was getting out of a cab with Hayley.,Castle was in a swimming pool with Hayley.,Castle was at a bar with Hayley.,Castle was riding a bike with Hayley.,Castle was sitting at a table with Hayley.,4,Where was Castle before he walked away from Hayley ? ,129802,Castle,36.94-43.18,castle_s08e14_seg02_clip_22,Castle was sitting at a table with Hayley. 7764,hugged him,smacked him,left on the elevator,sat down,cried,2,What did Derek do after George stopped talking?,129803,Grey's Anatomy,0-7.1,grey_s01e07_seg02_clip_04,left on the elevator 7765,Castle didn't bet anything ,Castle bet a lot of money,Castle bet that he would put them in a dedication of his book,Castle bet that he would do their routine,Castle but he would listen to their requests,2,What did Castle bet with Ryan and Espostio before they won their award?,129804,Castle,34.87-45.74,castle_s07e19_seg02_clip_26,Castle bet that he would put them in a dedication of his book 7766,Phoebe tells Rachel that she bought tank tops.,Phoebe tells Rachel that she bought panties.,Phoebe tells Rachel that she bought dresses.,Phoebe tells Rachel that she bought nightgowns.,Phoebe tells Rachel that she bought bras.,4,What does Phoebe tell Rachel they bought when talking with Monica?,129805,Friends,0-15.56,friends_s02e02_seg02_clip_04,Phoebe tells Rachel that she bought bras. 7767,Ken told Carnell to man up and tell the doctor everything she wants to know.,Ken said Carnell needs to tell the truth or he wouldn't be able to help the doctors.,"Ken said Carnell shouldn't be ashamed of anything he's done, just tell the truth.","Ken said he wouldn't get mad at Carnell for getting stoned, not there and not that day.",Ken told Carnell he would support him no matter what answers he gives.,3,How did Ken respond when Carnell didn't want to answer drug questions?,129806,House M.D.,35.11-42.5,house_s02e05_seg02_clip_01,"Ken said he wouldn't get mad at Carnell for getting stoned, not there and not that day." 7768,To give him good news,To make him feel proud,To give him encouragement,To make him feel sad,To make him feel confused,2,Why does Monica mention a horse after Chandler mentions Jaws?,129807,Friends,40.96-46.01,friends_s08e15_seg02_clip_06,To give him encouragement 7769,Castle asks about Esposito's clothong,Castle asks about lunch,Castle asks about dinner,Castle asks Beckett's relationship status,Castle asks how much the drug dealer said she paid for the roofies. ,4,What does Castle ask about when Esposito and Beckett are talking about Sophie's finances?,129808,Castle,78.89-91.21,castle_s02e12_seg02_clip_21,Castle asks how much the drug dealer said she paid for the roofies. 7770,Because he has an American Standard accent.,Because he has an Irish accent.,Because he has a Scottish accent.,Because he has a British accent.,Because he has an Australian accent.,3,Why does Cecilia seem surprised by Joey's performance when they are on set?,129809,Friends,47.7-54.11,friends_s07e15_seg02_clip_10,Because he has a British accent. 7771,he leaves clues.,he skates around it. ,he is very direct.,he draws a map.,he shows suggestions. ,2,How does Chandler get Monica to understand after he talks about having his stuff there?,129810,Friends,30.83-46.58,friends_s07e21_seg02_clip_05,he is very direct. 7772,He was worried about Priya going back to India.,He was confused about Penny saying it was not what it looks like.,He was happy because he thought Raj and Penny were a couple.,He was mad because everyone was keeping secrets.,He was upset because Penny stayed at their apartment that night. ,1,How was Sheldon acting when Leonard and him were eating lunch?,129811,The Big Bang Theory,28.68-39.39,s05e01_seg01_clip_00,He was confused about Penny saying it was not what it looks like. 7773,blue,green,yellow,orange ,White,4,What color shirt does Penny have on under her yellow vest when Stuart shows her the comic book?,129812,The Big Bang Theory,0-51.62,s02e20_seg02_clip_04,White 7774,Make funny faces.,Laugh at her.,Leave the room.,Spit on the mirror.,Call her a liar?,3,What did Leonard do after the lady behind him rubbing her hands said her brother had a crush on Bernadette?,129813,The Big Bang Theory,3.78-7.88,s05e01_seg01_clip_00,Spit on the mirror. 7775,Gabriel.,Captain Max.,Anabelle.,Alexis.,Esposito.,3,Who does Castle see after Beckett hangs up?,129814,Castle,24.97-34.34,castle_s05e06_seg02_clip_09,Alexis. 7776,Because House suspected both the boy and his father were color blind.,Because the child looked just like his father.,Because House thought the child was imitating his father snorting cocaine.,Because House wanted to run genetic tests on the child for inherited diseases.,Because the father said his boy was not too smart and House didn't think the father was either.,4,Why did House say genetics was a powerful force after he removed the fire engine from the child's nose?,129815,House M.D.,54.62-60.47,house_s01e15_seg02_clip_18,Because the father said his boy was not too smart and House didn't think the father was either. 7777,Esposito explains the location isn't random because the location was really far away.,Esposito explains the location isn't random because the location was actually the killer's favorite coffee shop.,Esposito explains the location isn't random because the location was where the killer walked by every day.,Esposito explains the location isn't random because the location made for a far away target and they had conditions to factor in.,Esposito explains the location isn't random because the location is the most important part to any murder.,3,"Why does Esposito tell Castle, Beckett, and Lanie the location isn't random when the team is discussing the murder?",129816,Castle,40.96-59.42,castle_s04e09_seg02_clip_03,Esposito explains the location isn't random because the location made for a far away target and they had conditions to factor in. 7778,A basketball,Her coat,A book,A coffee mug,Her blue duffel bag,4,What does Phoebe put on the floor after she approaches the couch?,129817,Friends,28.68-33.41,friends_s03e13_seg02_clip_08,Her blue duffel bag 7779,Dr. Gablehouser and Dennis.,Raj.,Howard.,A dog.,A boy.,0,Who enters in the restaurant when Sheldon and Leonard are eating.,129818,The Big Bang Theory,0-56.44,s01e12_seg01_clip_00,Dr. Gablehouser and Dennis. 7780,She is leaving. ,She is getting coffee. ,She is getting food. ,She is getting tea. ,She is grabbing her coat. ,3,What is Rachel doing when she is at the counter?,129819,Friends,28.32-36.23,friends_s04e17_seg02_clip_08,She is getting tea. 7781,Louder music to listen to.,A phone call to his girlfriend.,A visit from Dr. House.,A turkey and cheese sandwich.,A foot massage from the hot nurse.,0,What John requests when the team injects contrast material?,129820,House M.D.,65.99-91.03,house_s03e16_seg02_clip_11,Louder music to listen to. 7782,Monica was sitting on the arm of the chair.,Joey ,Mickey Mouse,Minnie Mouse,Pluto,0,Who were sitting in on the arm of the chair when Ross was talking?,129821,Friends,2.48-11.17,friends_s08e11_seg02_clip_15,Monica was sitting on the arm of the chair. 7783,"""The vegetation broke off in his main coronary artery and caused an infarction.""","""The patient consumed unpasteurized milk, infecting him with Brucellosis leading to a severe heart attack.""","""The patient consumed uncooked meat, infecting him with Brucellosis leading to a severe heart attack.""","""The patient works at a slaughterhouse and became infected after being exposed to the bacteria.""","""The patient is a veterinarian that got exposed to the bacteria through an infected animal and immediately started to have convulsions."" ",0,How does Cameron explain to House how Brucellosis affected the patient after his emergency?,129822,House M.D.,58.61-65.12,house_s02e14_seg02_clip_08,"""The vegetation broke off in his main coronary artery and caused an infarction.""" 7784,They smashed the toaster oven and cut through it.,They washed it.,They dried it.,They turned the oven on.,They put dinner in it.,0,"What happened to the toaster oven when Raj, Howard and Leonard tested it?",129823,The Big Bang Theory,35.65-47.54,s02e12_seg01_clip_01,They smashed the toaster oven and cut through it. 7785,Joey is wearing glasses.,Stuart is wearing glasses.,Ross is wearing glasses.,Chandler is wearing glasses.,Stanley is wearing glasses.,2,Who is wearing glasses when he is talking to Mr. Green?,129824,Friends,0-8.34,friends_s02e22_seg02_clip_13,Ross is wearing glasses. 7786,gives helen pills,walks away,sits on the bed with her,gives helen a shot,cries,2,what does derek do after helen tells him that this is her last treatment?,129825,Grey's Anatomy,5.44-15.4,grey_s03e18_seg02_clip_03,sits on the bed with her 7787,threw her file at it,pushed it over to him,sat down on it,turned it over,kicked it,3,What did Beckett do to the table after Bob jumped back from it?,129826,Castle,11.04-24.85,castle_s05e14_seg02_clip_16,turned it over 7788,Cuddy was the one who told the parents ,Cameron was the one who told the parents ,Chase was the one who told the parents ,Foreman was the one who told the parents ,Wilson was the one who told the parents ,2,Which doctor was the one who told the parents when they found out their daughter had gallstones?,129827,House M.D.,75.28-86.55,house_s03e09_seg02_clip_02,Chase was the one who told the parents 7789,Yeah my parents felt that naming me Leonard and putting me in advanced placement classes wasn't getting me beat up enough,I really play the violin,I don't play any instrument but I like Lesley,I play the drums,I am a singer but I will try to play the cello,0,What does Leonard say after Penny smiles and says she didn't know he played the cello?,129828,The Big Bang Theory,29.51-44.86,s01e05_seg01_clip_02,Yeah my parents felt that naming me Leonard and putting me in advanced placement classes wasn't getting me beat up enough 7790,Left the room.,House bumped into the table. ,Made an angry face.,Glared at the parents.,Stormed out of the room.,1,What happened to House after he said how messed up the kid was?,129829,House M.D.,10.35-13.5,house_s03e04_seg02_clip_10,House bumped into the table. 7791,He has an emergency and needs to take her with him.,He realizes she is stressed during a phone call.,He has bad news to tell Alexis.,Alexis appears to be very sick.,Alexis has not eaten in weeks.,1,Why is Castle concerned when he approaches Alexis?,129830,Castle,10.2-20.41,castle_s04e07_seg02_clip_27,He realizes she is stressed during a phone call. 7792,Her sister.,Her uncle.,Her teacher.,Her bestfriend.,Her boyfriend.,1,Who helped Saya when the explosion was over?,129831,Castle,0-9.78,castle_s06e18_seg02_clip_23,Her uncle. 7793,Angry,Happy,Upset,Excited ,Scared,2,How is Ross feeling when he is hugging and talking to Phoebe?,129832,Friends,38.81-57.08,friends_s03e06_seg02_clip_18,Upset 7794,Too much. ,Everyday. ,Once a week. ,Rarely. ,Twice a day. ,1,How often does Cuddy say she sees House when she was talking to Wilson? ,129833,House M.D.,39.41-42.79,house_s03e01_seg02_clip_26,Everyday. 7795,Penny was standing behind Leonard and Sheldon's couch.,Penny was sitting on the stairs in their apartment building.,Penny was standing by the door in front of Leonard and Sheldon's apartment.,"Penny was standing in front of Leonard and Sheldon, about to go out the apartment building's front door.",Penny was sitting on the couch in her apartment.,3,Where was Penny when she told Leonard and Sheldon she had gotten a role?,129834,The Big Bang Theory,0-29.46,s01e10_seg01_clip_02,"Penny was standing in front of Leonard and Sheldon, about to go out the apartment building's front door." 7796,Takes a sip of coffee.,Walks off.,Sets her wine glass down.,Takes a drink of wine.,Sets a plate down on the table. ,3,"What does Monica do after she tells her mom, ""That is a wonder""?",129835,Friends,21.45-25.61,friends_s01e08_seg02_clip_18,Takes a drink of wine. 7797,In the garbage,In the refridgerator,In the operating room,On the table,On the floor.,3,Where did Alex put his tray before Cristina said Awesome?,129836,Grey's Anatomy,35.95-43.24,grey_s02e20_seg02_clip_13,On the table 7798,Bernadette called Penny and talked to her about Howard's stubborn ways. ,Bernadette ran out of the room crying. ,Bernadette put her foot down and said she was going ahead with the redecorating. ,Bernadette packed her bags and left Howard. ,Bernadette said she'd never forgive Howard for being so mean. ,2,How did Bernadette respond when Howard yet again wouldn't talk about redecorating? ,129837,The Big Bang Theory,44.29-56.85,s09e07_seg02_clip_00,Bernadette put her foot down and said she was going ahead with the redecorating. 7799,She is eating ice cream.,She is eating chocolate raspberry souffle cake.,She is eating a vanilla cake.,She is eating a salad.,She is eating candy.,1,What is Ms. Seabury eating when Chief enters the room?,129838,Grey's Anatomy,20.48-24.12,grey_s03e02_seg02_clip_02,She is eating chocolate raspberry souffle cake. 7800,Through his saliva,Through his blood,Through his pee,Through his nose,Through his sweat,2,How is the copier fluid going to be removed from the bald black male patient after he injested it?,129839,House M.D.,12.74-44.11,house_s02e01_seg02_clip_14,Through his pee 7801,A gun,A phone,A notepad,A file,A book,1,What did the man take from his desk drawer after looking at the newpapers about the shooting?,129840,Castle,74.28-94.03,castle_s04e01_seg02_clip_06,A phone 7802,dancing after work ,going to dinner ,hanging out with the parents,drinking after work,auguring with the parents,4,What did House say was a waste of time when he was talking to Kutner?,129841,House M.D.,9.57-14.58,house_s05e16_seg02_clip_02,auguring with the parents 7803,The man starts bleeding from the ear,The man starts playing with the equipment,The man starts to get ill,The man breaks out in hives,The man gets a massive headache,2,What happens to the man standing next to Foreman in the lab when the lady is on the treadmill,129842,House M.D.,43.62-52.8,house_s03e05_seg02_clip_05,The man starts to get ill 7804,Ross' shirt is red.,Ross' shirt is blue.,Ross' shirt is white.,Ross' shirt is black.,Ross' shirt is green.,0,What color is Ross' shirt when he is at Rachel's?,129843,Friends,9.66-12.88,friends_s04e13_seg02_clip_08,Ross' shirt is red. 7805,He taught me about writing; he taught me about life,He is the father figure I never had,He is truly my mentor,"Without him, I'm not me",I love him like a dad,3,What tribute does Castle pay to Damian when he is talking to Beckett about him?,129844,Castle,73.48-78.4,castle_s03e15_seg02_clip_05,"Without him, I'm not me" 7806,Castle is too wealthy to be a detective,Castle is not a real detective,Castle is annoying,Castle should work with Beckett,Castle is a showman,1,What was Ryan implying toward Castle after Castle asked Esposito and Ryan how the body was found,129845,Castle,46.75-69.29,castle_s02e02_seg02_clip_03,Castle is not a real detective 7807,Fearfully.,Happily.,Sadly.,Aggressively.,Joyfully.,3,How does Justin react after told he's getting a new heart?,129846,Grey's Anatomy,70.1-96.03,grey_s02e12_seg02_clip_03,Aggressively. 7808,She gave him a napkin.,She choked.,She cried.,She laughed.,She stood up.,3,What did Alexis do after Castle put his finger to his chin?,129847,Castle,41.82-45.49,castle_s01e04_seg02_clip_09,She laughed. 7809,Dax,Marvin,Max,Tax,Baxter,2,Who did David Hernand say deserved best in show when he was being interviewed by Castle and Beckett?,129848,Castle,20.86-30.84,castle_s04e13_seg02_clip_02,Max 7810,Beckett answers that she is angry that her mailman keeps putting her neighbor's mail into her mailbox.,Beckett answers that she is doing okay.,Beckett answers that the body identification process is never easy no matter how much experience you have.,Beckett answers that Castle is a stupid man and should be able to tell that she is not okay.,Beckett ignores Castle's question and remains silent.,2,How does Beckett answer when Castle asks if she's okay?,129849,Castle,14.42-25.23,castle_s02e10_seg02_clip_03,Beckett answers that the body identification process is never easy no matter how much experience you have. 7811,Rachel is most likely hesitant to tell Chandler the whole story because she told Joey that Monica was planning to steal her purse.,Rachel is most likely hesitant to tell Chandler the whole story because she told Joey that her boss wanted to murder her.,Rachel is most likely hesitant to tell Chandler the whole story because she told Joey that her boss wanted to buy her baby.,Rachel is most likely hesitant to tell Chandler the whole story because she told Joey that Chandler was planning on stealing all of her money.,Rachel is most likely hesitant to tell Chandler the whole story because she told Joey that Chandler was gay.,2,Why is Rachel most likely hesitant to tell Chandler what problem she told Joey she had when Chandler asks for the specifics?,129850,Friends,23.8-54.31,friends_s08e17_seg02_clip_09,Rachel is most likely hesitant to tell Chandler the whole story because she told Joey that her boss wanted to buy her baby. 7812,Pray,Play with himself,Sing ,Scream,Watch porn for study,1,What does Rachel's fiance do before going to sleep?,129851,Friends,38.88-57.44,friends_s09e01_seg02_clip_04,Play with himself 7813,She falls out the window.,She gets shot.,"She suddenly lifts up to the ceiling, like something in a horror movie.",She falls asleep.,She sees a bunny.,2,What happens to the girl in the school uniform when Lucas explains she did this to freak her out?,129852,Castle,13.15-20.19,castle_s06e15_seg02_clip_23,"She suddenly lifts up to the ceiling, like something in a horror movie." 7814,They are at a The Cheescake Factory,They are at a juice bar,They are at the gym,They are at a dance club,They are at Jamba Juice,0,Where are Bernadette and Amy when they tell what tasks they performed at work,129853,The Big Bang Theory,9.28-19.73,s07e08_seg02_clip_02,They are at a The Cheescake Factory 7815,Churg-Strauss syndrome.,Kawasaki disease.,Takayasu's arteritis.,Wegener's granulomatosis.,Polyarteritis nodosa.,3,What is the diagnosis that House comes up with after all the back and forth disagreement between Foreman and Cameron?,129854,House M.D.,59.94-65.43,house_s02e18_seg02_clip_06,Wegener's granulomatosis. 7816,A time he wrecked his car and killed someone,When he lost his first patient in school,How his parent died when he was a kid,The way the heart shuts down and kills,About his grandma having lung cancer,2,How does Lawrence explain death to intern thirteen when she is working on a patient?,129855,House M.D.,19.76-43.17,house_s04e16_seg02_clip_08,How his parent died when he was a kid 7817,Their friendship,Her suit,Her sex life,Her career,Her shoes,3,What does Rachel say Chandler is jeopardizing after he says her boss took it well?,129856,Friends,24.03-29.37,friends_s04e03_seg02_clip_10,Her career 7818,Ann is angered and frustrated.,Ann runs out the door.,Ann hugs Beckett.,Ann dances with Castle.,Ann cries and lays on the table.,0,How does Ann respond after Beckett discusses career and choice limitations?,129857,Castle,25.38-34.28,castle_s04e02_seg02_clip_22,Ann is angered and frustrated. 7819,house,wilson,cameron,thirteen,cuddy,0,who did deedee say she was meeting with when she was in the elevator with kutner and taub?,129858,House M.D.,68.6-79.44,house_s05e10_seg02_clip_11,house 7820,Because he lost his watch during surgery,Because he didn't speak english,Because he thought Rachel was deaf,Because Rachel was flirting with him,Because Rachel ate his cupcake,3,Why did Dr. Schiff seem confused after he asked Rachel if she'd like to lie down?,129859,Friends,36.66-48.58,friends_s08e11_seg02_clip_07,Because Rachel was flirting with him 7821,Barney.,Marshall.,Robin.,James,Hamond.,1,Who was next to Lily when she sat on the couch?,129860,How I Met You Mother,12.48-58.02,met_s03e11_seg02_clip_01,Marshall. 7822,Joey is upset and disappointed.,Joey is happy.,Joey is extremely angered.,Joey is contempted.,Joey is depressed.,0,How did Joey feel about Ross asking Chandler to be his best man before Joey said Chandler was best man at his first wedding?,129861,Friends,14.5-29.94,friends_s04e22_seg02_clip_00,Joey is upset and disappointed. 7823,Amy.,His cupcake.,His sugarplum.,Dr. Fowler.,His sweetpea.,3,Who does Sheldon refer to Amy as when he comes in her lab?,129862,The Big Bang Theory,43.14-56.02,s07e05_seg02_clip_08,Dr. Fowler. 7824,Sat at the kitchen table,Sat on the couch,Patted Chandler on the back,Picked up a drink,Shook Monica's hand,4,What did Paolo do after Rachel said to meet her friends?,129863,Friends,2.66-9.15,friends_s01e07_seg02_clip_16,Shook Monica's hand 7825,His hand. ,A sea shell. ,A pack of ice. ,A phone. ,His desk. ,3,What does Chandler put up to his ear when he is in his office?,129864,Friends,38.45-39.39,friends_s09e09_seg01_clip_00,A phone. 7826,Grabbed a beer,Walked out the door,Took off his shoes,Turned on the radio,Made a sandwich,3,What did the man in coveralls do when he told Joey to follow his lead?,129865,Friends,36.62-40.82,friends_s04e04_seg02_clip_11,Turned on the radio 7827,He will be leaving the city.,He has his own funeral to attend.,He'll be getting married.,"Nothing, he is free.",He will quit his job.,3,What is Chandler doing 30 days after this day?,129866,Friends,1.73-13.8,friends_s04e20_seg02_clip_09,"Nothing, he is free." 7828,two,one,three,four,six,0,How many coffee cups are sitting on House's desk when Wilson comes in to talk to him?,129867,House M.D.,0-3.67,house_s03e22_seg02_clip_09,two 7829,playing cards,eating,working,calling his mom,singing,4,What was Sheldon doing when he was in his living room with friends? ,129868,The Big Bang Theory,28.52-42.63,s06e11_seg02_clip_10,singing 7830,Unload the luggage,Eat from a metal tin,Open a letter,Put makeup on,Take her jacket off,1,What does Hayley start doing while she sits down after the Bellboy walks in? ,129869,Castle,57.61-67.29,castle_s08e14_seg02_clip_00,Eat from a metal tin 7831,On the way to Cuddy's. ,Home. ,None of his business. ,In his office. ,CIA headquarters. ,4,Where did House say he was when Wilson asked? ,129870,House M.D.,0-3.68,house_s04e06_seg02_clip_15,CIA headquarters. 7832,"The balloons are red, white and blue.","The balloons are purple, green and pink.","The balloons are purple, blue and yellow.","The balloons are orange, green and white.","The balloons are silver, gold and black.",2,What color are the balloons that can be seen in Jessica's room just before the medical team leave her mother.,129871,House M.D.,80-84.57,house_s01e16_seg02_clip_06,"The balloons are purple, blue and yellow." 7833,"Hello, buddies.","Namaste, white people.","What's up, peeps?",Howdy partners.,Hola mis amigos.,1,"How did Raj greet Leonard, Howard and Sheldon when he opened the door?",129872,The Big Bang Theory,54.58-57.68,s03e12_seg01_clip_00,"Namaste, white people." 7834,"St. Cloud, Minnesota","Minneapolis, Minnesota","Cincinnati, Ohio","St. Louis, Missouri","Milwaukee, Wisconsin",0,Where was the home where Marshall's friends gathered after his father's death?,129873,How I Met You Mother,9.64-12.75,met_s06e14_seg02_clip_00,"St. Cloud, Minnesota" 7835,Two,,Three,One,Four,3,How many cabs were driving when the scene changed?,129874,Friends,13.27-17.35,friends_s04e17_seg02_clip_08,One 7836,Fraiser,Sam,Zack,Michael,John,2,Who did Chandler bring to his and Monica's apartment when he walked in?,129875,Friends,53.82-58.17,friends_s09e22_seg02_clip_07,Zack 7837,Taub,Cameron,13,Foreman,Wilson,1,Who does Chase walk up to when they are using a micoscope?,129876,House M.D.,115.82-120.02,house_s06e03_seg02_clip_13,Cameron 7838,Nausea.,Dizziness.,Back pain.,A migraine.,Vertigo.,0,What ailment does Alex question Izzie about when she's sitting down?,129877,Grey's Anatomy,10.88-21.76,grey_s02e12_seg02_clip_24,Nausea. 7839,Brown,black,grey,blue,white,0,"What color is Marshall's sweater when he say's ""Obviously, this goes without saying...""?",129878,How I Met You Mother,136.83-146.34,met_s06e01_seg02_clip_16,Brown 7840,Hope,Despair,Anger,Free Will,Ambivalence,0,What does the woman tell House he will run out of after he runs out of questions and answers?,129879,House M.D.,32.57-38.03,house_s04e08_seg02_clip_26,Hope 7841,She needed to figure that out herself.,She wanted employee of the year.,She was going to get a lot of money.,She was trying to keep the patient alive.,She was tired of sitting around.,3,Why did Cameron say she was doing all that stuff when chase asked her why?,129880,House M.D.,22.8-39.78,house_s06e03_seg02_clip_20,She was trying to keep the patient alive. 7842,He moaned,He cried,He smiled,He laughed,He scremed ,0,How did the patient reacted when Kurtner drew blood from him,129881,House M.D.,53.25-61.9,house_s05e06_seg02_clip_16,He moaned 7843,Preeclampsia,Hypertension,Cancer,Lupis,Kidney Disease,0,What disease did Foreman say was a possibility after Sean's wife was worried she was going to miscarry?,129882,House M.D.,18.61-22.33,house_s01e18_seg02_clip_00,Preeclampsia 7844,Alexis.,Lanie's grandma.,Beckett.,Castle's brother.,Another coroner.,2,Who did Lanie see after the door opened?,129883,Castle,0-4.91,castle_s06e07_seg02_clip_16,Beckett. 7845,He was looking out the window.,Sitting on the couch.,Opening his pill bottle.,Pouring coffee.,He was writing on the white board.,4,What was House doing when he talked about retribution?,129884,House M.D.,4.05-13.05,house_s02e01_seg02_clip_21,He was writing on the white board. 7846,Beckett gave Castle a hug ,Beckett kissed Castle,She slapped Castle ,She gave him a cell phone ,She gave him some paperwork. ,2,What did Beckett do before Ryan and Esposito walked in? ,129885,Castle,50.49-56.86,castle_s08e09_seg02_clip_04,She slapped Castle 7847,Her coat.,A bottle of wine.,A box of candy.,A book.,A phone.,1,What does Zoey hand Ted after she enters the room?,129886,How I Met You Mother,23.01-25.53,met_s06e15_seg02_clip_08,A bottle of wine. 7848,head chef,head receptionist,head teacher,head banker,head waiter,0,What did Monica get offer a job as when talking with Rachel?,129887,Friends,19.97-25.71,friends_s04e09_seg02_clip_12,head chef 7849, Penny stared at the wall.,Penny sat on the floor.,Penny started singing., Penny ordered pizza., Penny gulped her drink.,4,What did Penny do after Bernadette said Leonard was going to India?,129888,The Big Bang Theory,9.07-13.3,s04e22_seg02_clip_12, Penny gulped her drink. 7850,A folder.,A watch.,A needle.,A camera.,A cup.,3,What is House holding in his hands when Foreman said looks like a massive tissue death?,129889,House M.D.,0-7.79,house_s03e22_seg02_clip_12,A camera. 7851,Jeans and a tee shirt,A black dress,A long brown coat,A police uniform,A wedding dress,3,What is Beckett wearing when she runs into Montgomery in the archives?,129890,Castle,51.82-57,castle_s06e22_seg02_clip_20,A police uniform 7852,Brain hemorrhaging.,Massive tissue death.,Brain tumor.,Rectal bleeding.,Scarring.,1,What does Foreman see happening to the patient when in the operation room?,129891,House M.D.,0-3.69,house_s03e22_seg02_clip_12,Massive tissue death. 7853,Because celebrities don't want paparazzi. ,Because celebrities are strange. ,Because celebrities like the attention of the paparazzi. ,Because different celebrities like different things. ,Because Tyrese is an exception to the rule. ,0,Why is the entrance to Tyrese's studio in an alley when he is so big time?,129892,Castle,20.54-22.73,castle_s05e11_seg02_clip_03,Because celebrities don't want paparazzi. 7854,Fowler says cops.,Fowler says lawyers.,Fowler says members of a drug ring.,Fowler says Mary Johnson.,Fowler says Harvey Simms.,2,Who does Fowler say wants Potter dead when he was interviewing him in the police station?,129893,Castle,29.16-43.44,castle_s06e17_seg02_clip_17,Fowler says members of a drug ring. 7855,Sitting across from them at the coffee house,Sitting at the kitchen table in front of them,Out on the balcony smoking a cigarette,At work on the phone with Ross,On the couch at the coffee house,1, Where was Chandler when Ross and Rachel were giving him advice,129894,Friends,0-12.01,friends_s03e03_seg02_clip_05,Sitting at the kitchen table in front of them 7856,foreman,thirteen,taub,kutner,cuddy,2,who goes in houses office after house dismisses everyone to do what they were told in the conference room?,129895,House M.D.,31.63-42.33,house_s04e16_seg02_clip_01,taub 7857,A packet of papers,A binder,Some food,Pills,Coffee,0,What does Wilson hand House when he walks in?,129896,House M.D.,0.74-5.15,house_s02e22_seg02_clip_21,A packet of papers 7858,a picture,a book,a map ,files,the fireplace,2,what is beckett looking at when she is sitting on the bed and castle is pacing in the room?,129897,Castle,61.59-71.48,castle_s07e07_seg02_clip_19,a map 7859,Because she wants to see more of the world.,Because she wants to go on a trip.,Because she wants to quit her job.,Because she wants to talk to Ross.,Because she wants to drive home.,2,Why is Rachel upset when she is leaving Monica a message?,129898,Friends,23.31-28.53,friends_s04e13_seg02_clip_04,Because she wants to quit her job. 7860,House told him that he was o.k.,House looked at him angrily?,House put his cup of coffee on the table and walked out of the room to smell a bus.,House did not do anything.,House asked them to follow him.,2,What did House do after Kuter asked him if he was feeling O.K?,129899,House M.D.,2.91-8.3,house_s04e15_seg02_clip_07,House put his cup of coffee on the table and walked out of the room to smell a bus. 7861,Drinking coffee,Reading a book,Writing in a chart,Drinking a water bottle,Making a phone call,2,What is Cuddy doing when she is talking to House?,129900,House M.D.,59.36-69.1,house_s01e03_seg02_clip_01,Writing in a chart 7862,An earthquake,A fire alarm,Someone walks into the room,Nothing,Something drops from one of the desks,2,What interrupts them when Becket and Castle are talking?,129901,Castle,49.3-54.43,castle_s08e07_seg02_clip_06,Someone walks into the room 7863,Raul says this.,Stuart says this.,Monica says this.,Paul says this.,Phoebe says this.,4,Who says that Rachel has a new doll when they are at Rachel's apartment?,129902,Friends,0-4.68,friends_s04e13_seg02_clip_08,Phoebe says this. 7864,she showed the patient a picture,she showed the patient her blood test,she showed the patient her x-rays,she showed the patient a surgical video,she didn't show the patient anything,2,What did Bailey show the patient after she walked into her room with the other doctors already there?,129903,Grey's Anatomy,0-8.27,grey_s03e09_seg02_clip_08,she showed the patient her x-rays 7865,The Clippers,The Jazz,The Nuggets,The Lakers,The Celtics,4,What was the woman's reply when Joey asked her whose fan she was?,129904,Friends,47.22-50.76,friends_s01e23_seg02_clip_01,The Celtics 7866,an iv bag,pictures,books,coat,bag,0,What did Monk take down before wheeling the patient out of the room?,129905,House M.D.,0-9.27,house_s01e09_seg02_clip_17,an iv bag 7867,Kutner and 13,13 and Foreman,13 and Taub,Kutner and Taub,Foreman and Taub,3,Who were the doctors preforming a scan on a patient when they were talking about the patient?,129906,House M.D.,9.1-20.81,house_s05e04_seg02_clip_10,Kutner and Taub 7868,Beckett was impressed by Sorenson's compassionate answer to Alfred's question.,Beckett was impressed by Sorenson's extensive knowledge about kidnappings in NYC.,Beckett was impressed by Sorenson's belief that the little girl would definitely be found.,Beckett was impressed by Sorenson's offer of round-the-clock resources for the family.,Beckett was impressed by Sorenson's experience with past kidnapping cases.,0,What was Beckett impressed by when Sorenson was talking to the family?,129907,Castle,0-16.78,castle_s01e09_seg02_clip_05,Beckett was impressed by Sorenson's compassionate answer to Alfred's question. 7869,Front End,North Shore,South Shore,The Beach,Jasper Grove,4,Where did Kim want Lyle to pick her up from when Kim called Lyle?,129908,Castle,40.39-50.06,castle_s06e07_seg02_clip_12,Jasper Grove 7870,black,blue,purple,white,yellow,2,What color is the comforter on Barney's bed when he's laying in it?,129909,How I Met You Mother,14.31-18.27,met_s03e19_seg02_clip_07,purple 7871,Hyde said she notice some false discrepancies ,Hyde said she notice some alarming discrepancies ,Hyde said she notice some accurate discrepancies ,Hyde said she notice some many discrepancies ,Hyde said she notice some bad discrepancies ,1,What did Hyde say she noticed when talking to Castle?,129910,Castle,4.8-11.52,castle_s08e02_seg02_clip_13,Hyde said she notice some alarming discrepancies 7872,Zoey doesn't understand what Barney is saying. ,Zoey wanted Barney and Honey to hit it off. ,Zoey is in love with Ted. ,"Zoey doesn't hug Barney, she hugs Ted. ",Zoey is in love with Barney. ,2,Why does Zoey hug Barney after he tells her that he slept with Zoey's cousin Honey? ,129911,How I Met You Mother,12.61-46.33,met_s06e15_seg02_clip_08,Zoey is in love with Ted. 7873,Sitting on the floor,Sitting on the couch ,In his recliner,At the table,In bed,4,Where was Joey when Rachel came through the door? ,129912,Friends,42.23-47.25,friends_s08e14_seg02_clip_00,In bed 7874,Isaac Newton,Albert Einstien,Howard,Stephen Hawking,Carl Sagan,3,Who does Sheldon say may be his only intellectual equal after Howard says he lifes in Jewish hell?,129913,The Big Bang Theory,34.48-45.77,s05e21_seg02_clip_00,Stephen Hawking 7875,He got her a turtle. ,He got her flowers. ,He got her a sweater. ,He didn't get her anything. ,He got her a nice night out. ,3,What does Sheldon say that he got Amy for Christmas after Bernadette asks?,129914,The Big Bang Theory,35.11-38.71,s08e11_seg02_clip_03,He didn't get her anything. 7876,A briefcase,A bag,A camera,A book,A puppy,2,What was Ryan carrying when he walked into the room?,129915,Castle,40.96-61.44,castle_s03e14_seg02_clip_08,A camera 7877,Howard put his bag on the chair.,Howard put his jacket on the chair.,Howard put his his keys on the chair.,Howard put his his shoes on the chair,Howard put his hat on the chair. ,1,What did Howard put on the chair when Bernadette was talking to him?,129916,The Big Bang Theory,0-7.75,s06e18_seg02_clip_16,Howard put his jacket on the chair. 7878,at the dinning table ,at the working table ,at the cabinet ,at the garage ,at the window ,1,where was cuddy sitting when house entered ,129917,House M.D.,61.42-70,house_s05e06_seg02_clip_12,at the working table 7879,At his leg,At his neck,At his hand,At his back,At his head,3,Where on Ted did House Pricked him when he wanted to test is he was faking?,129918,House M.D.,7.24-13.12,house_s06e19_seg02_clip_02,At his back 7880,cellhpone ,termometer ,stetoscope ,broom ,key ,2,What was lawrence holding when he sat at the table ,129919,House M.D.,15.18-23.01,house_s04e06_seg02_clip_11,stetoscope 7881,Joey doesn't want to check out the apartment,Chandler doesn't want to check out the apartment,They both don't want to check out the apartment,They don't mention who doesn't want to check out he apartment,They each want to check a different apartment,0,Who doesn't want to check out the apartment when it is brought up by one of them?,129920,Friends,57.99-63.03,friends_s02e16_seg02_clip_08,Joey doesn't want to check out the apartment 7882,in an office ,to the kitchen,in a bathroom ,on the roof ,in the elevator ,0,Where does Ryan take his wife when she enters the precinct? ,129921,Castle,45.32-50.3,castle_s08e20_seg02_clip_20,in an office 7883,A white spot on the couch.,A green spot on the couch.,A hole in the couch.,A scratch on the couch.,A red spot on the couch. ,1,What is Leonard and Penny looking at when she asks if Sheldon will notice?,129922,The Big Bang Theory,49.59-53.72,s02e16_seg02_clip_05,A green spot on the couch. 7884,150 Nicholas Street,144 Nicholas Street,143 Nicholas Street,151 Nicholas Street,180 Nicholas Street,2,Where is Castle when he is talking to Beckett about Stephen and there is a sign that says the location?,129923,Castle,71.61-95.48,castle_s08e12_seg02_clip_01,143 Nicholas Street 7885,Her sister is more attractive,She gained weight,She has bad fashion sense,She's never been in a serious relationship,She plays bad music in the car,3,What did Ross say that made Phoebe feel irritated after already hearing it before her failed date?,129924,Friends,27.18-41.22,friends_s09e04_seg02_clip_03,She's never been in a serious relationship 7886,Thirteen suggests the patient has severe retrograde amnesia.,Thirteen suggests the patient has nerve damage.,Thirteen suggests the patient has some form of psychosis.,Thirteen suggests the patient has deteriorating brain cells.,Thirteen suggests the patient has brain involvement. ,4,What does Thirteen suggest is wrong with the new patient when showing House video of the patient's behavior?,129925,House M.D.,70.14-76.56,house_s06e12_seg02_clip_00,Thirteen suggests the patient has brain involvement. 7887,Had to go to work.,In the hall behind me.,In the bathtub.,Putting Emma down.,Went to get coffee.,3,Where did Joey say Rachel was after Ross asked? ,129926,Friends,29.85-34.46,friends_s10e16_seg02_clip_04,Putting Emma down. 7888,The wedding.,The engagement.,Their new jobs.,Their promotions.,On having twins.,0,What does the woman congratulate Rachel and Ross on when they are at his parents party?,129927,Friends,0.29-9.28,friends_s08e18_seg02_clip_04,The wedding. 7889,His large colon.,His Grandma.,His crazy dog.,Himself.,His ex girlfriend.,0,What did house say he was negotiating the release of when he was on the phone?,129928,House M.D.,0-7.58,house_s04e15_seg02_clip_16,His large colon. 7890,The markers smell like cherry.,The markers smelled like strawberries.,The formula on the whiteboard is wrong.,The blueberry scent of the markers.,The markers smell like licorice.,3,What did Sheldon complain about after Leonard showed him the whiteboard?,129929,The Big Bang Theory,6.9-17.1,s08e14_seg01_clip_02,The blueberry scent of the markers. 7891,Mccord saw Beckett's notes.,Mccord begins to understand Beckett's approach after she views other evidence in the case.,She listened to Beckett's recording of a witness exposing the setup. ,Beckett patiently repeated her points over and over.,She realizes the suspect wanted them to think that they were after the encryption system.,4,How does Mccord start to see the setup after Beckett explains her side?,129930,Castle,75.01-83.63,castle_s06e01_seg02_clip_24,She realizes the suspect wanted them to think that they were after the encryption system. 7892,Beckett brings Martha into the office.,Beckett pushes Castle.,Beckett offers ice cream to Castle.,Beckett consoles Castle into discussing why the mask is an issue for Castle.,Beckett kisses Castle.,3,What does Beckett do after Castle views the drawing of the mask Mr. Walters saw in the woods?,129931,Castle,58.52-72.02,castle_s07e23_seg02_clip_02,Beckett consoles Castle into discussing why the mask is an issue for Castle. 7893,Stand-up comedy,Dancing,Cooking,Cleaning,Acting,1,What does Joey say he is enjoying after Monica and Rachel are laughing at him?,129932,Friends,22.63-27.27,friends_s04e04_seg02_clip_13,Dancing 7894,Captain Montgomery liked pissing off the FBI and Castle thought outside the box.,Captain Montgomery needed Castle's deduction skills.,Captain Montgomery wanted to do less work by giving half to Castle.,Captain Montgomery wanted Castle to take over the case for him.,Captain Montgomery wanted to annoy Castle on his off day.,0,Why did Captain Montgomery call Castle when he was working on a abduction case?,129933,Castle,20.07-24.53,castle_s01e09_seg02_clip_01,Captain Montgomery liked pissing off the FBI and Castle thought outside the box. 7895,A spider web.,Her hair.,Her glasses.,Her hat.,A hijab.,1,What does Rachel move out of her face when she's talking?,129934,Friends,50.47-59.03,friends_s02e04_seg02_clip_18,Her hair. 7896,A rubber band.,A pen.,His cane.,The Patient's file.,A drink. ,0,What is in House's hand when Adam says that the patient will be dead by the time they get the cultures back?,129935,House M.D.,0-4.19,house_s08e17_seg02_clip_22,A rubber band. 7897,Priya is in the kitchen.,Stuart is in the kitchen.,Howard is in the kitchen.,Amy is in the kitchen.,Penny is in the kitchen.,2,Who is in the kitchen when Raj and Bernadette are talking?,129936,The Big Bang Theory,18.75-26.42,s09e14_seg02_clip_10,Howard is in the kitchen. 7898,Did her nails.,Ate popcorn.,Started to makeup with him.,Pushed Ted away. ,Turned off the TV. ,2,What did Stella do after Ted said she was beautiful?,129937,How I Met You Mother,25.95-34.5,met_s04e01_seg02_clip_12,Started to makeup with him. 7899,A fork,A spoon,A bottle of water,A sandwich,A cup,0,What is Raj holding in his hand when they are talking about Lesley,129938,The Big Bang Theory,0-12.51,s01e13_seg02_clip_07,A fork 7900,slam the door ,throw the phone ,walk out of the room ,point his finger at House ,sit on the hospital bed ,3,What does Jeffrey do after hanging up the phone ?,129939,House M.D.,32.38-42.55,house_s01e13_seg02_clip_21,point his finger at House 7901,Chandler stopped the arguing.,Joey stopped the arguing.,Monica stopped the arguing.,Phoebe stopped the arguing.,No one stopped the arguing.,3,Who stopped the arguing when everyone was being loud?,129940,Friends,44.89-52.27,friends_s03e17_seg02_clip_16,Phoebe stopped the arguing. 7902,Taub,House,Cuddy,Chase,Wilson,0,Who did Foreman say was so friendy when he was talking to Ruby?,129941,House M.D.,83.27-90.02,house_s07e18_seg02_clip_08,Taub 7903,Ross,Monica,Phoebe,Chandler,Joey,0,Who walks into the living room when Rachel is on the phone?,129942,Friends,45.47-48.52,friends_s09e03_seg02_clip_02,Ross 7904,It's not funny.,Hello.,Can I get you a drink?,Do you want to sit down?,How have you been?,0,What does Ross say before Paul says he does not like him dating his daughter?,129943,Friends,18.92-27.46,friends_s06e21_seg02_clip_03,It's not funny. 7905,So Chandler would have cab fare.,So he would not lose it.,The credit card was Chandler's. ,To pay for dinner.,Joey did not want to lose the credit card. ,3,Why did Joey give Chandler his credit card before he left?,129944,Friends,16.51-23.71,friends_s01e14_seg02_clip_06,To pay for dinner. 7906,Monica asks Ross and Rachel to bring her some soup.,Monica asks Ross and Rachel to give her the remote.,Monica asks Ross and Rachel to give her the ring back.,Monica asks Ross and Rachel to give her the cough drops.,Monica asks Ross and Rachel to give her the box of tissues off the table.,3,What does Monica ask Ross and Rachel to give her when she's on the couch?,129945,Friends,20.02-27.85,friends_s04e05_seg02_clip_19,Monica asks Ross and Rachel to give her the cough drops. 7907,She broker her toe,He was squeezing her hand.,She hurt her leg.,She had a headache.,She was in labor.,4,Why was Rachel wincing when joey was holding her hand? ,129946,Friends,13.4-26.14,friends_s08e14_seg02_clip_00,She was in labor. 7908,Lanie,Castle,Beckett,Esposito,Gallagher,2,Who is carrying the warrant when they are speaking with Dr. Weiss?,129947,Castle,62.39-70.13,castle_s04e03_seg02_clip_18,Beckett 7909,box of money,box of files,box with lamps,box of ducks,Box of books,4,What does diane leave on castles desk before walking away?,129948,Castle,0-3.81,castle_s08e17_seg02_clip_07,Box of books 7910,She tells Frank they just want to keep them apart. ,She says that Phoebe's wrong. ,She says tells Frank to run away with her. ,She says that Phoebe's right and it would've been wrong to go through with it. ,She tells Frank that she never loved him. ,3,What does Alice say to Frank when she is in Phoebe's apartment?,129949,Friends,49.88-59.03,friends_s03e18_seg02_clip_18,She says that Phoebe's right and it would've been wrong to go through with it. 7911,Drinking coffee`,Eating a burger and fries,Put a matchstick in his mouth,Pretending not to care,Looking at his cellphone,2,What did Morris do when he was being questioned by Beckett and Castle?,129950,Castle,62.08-68.56,castle_s03e15_seg02_clip_04,Put a matchstick in his mouth 7912,A flyer. ,A cell phone. ,A newspaper. ,His hand. ,His watch. ,1,What does Castle hold up in his hand when he is talking to a woman with brown curly hair?,129951,Castle,5.83-8.52,castle_s08e01_seg02_clip_09,A cell phone. 7913,Foreman thinks its because a new puppy House got,Foreman thinks its because he lost a bet to House,Foreman thinks its because he owes house money,Foreman thinks its because House won the lottery,Foreman thinks its because hes quitting,4,Why does Foreman think House seems Happier after talking with Cameron?,129952,House M.D.,3.01-14.19,house_s03e22_seg02_clip_11,Foreman thinks its because hes quitting 7914,Trying to impress a worker ,Crying,Staring at the parking meter,Laughing uncontrollably,Talking to a homeless man,2,What was Monica doing when she was standing outside the Szechuan Dragon?,129953,Friends,6.16-22.13,friends_s03e01_seg02_clip_08,Staring at the parking meter 7915,Monica tries to pretend that she thinks the contents of the tape are mesmerizing. ,Monica tries to pretend that she thinks the contents of the tape are beautiful.,Monica tries to pretend that she thinks the contents of the tape are funny.,Monica tries to pretend that she thinks the contents of the tape are amusing.,Monica tries to pretend that she thinks the contents of the tape are groundbreaking.,1,What does Monica try to pretend she thinks about the tape when she watches it with Rachel and Chandler?,129954,Friends,39.62-55.02,friends_s08e15_seg02_clip_17,Monica tries to pretend that she thinks the contents of the tape are beautiful. 7916,Joey laughs awkwardly for a short while.,Joey feeds Mary Ellen some shrimp.,Joey tells Mary Ellen his mother is fine.,Joey pretends not to hear Mary Ellen.,Joey pushes a drink toward Mary Ellen.,4,What does Joey do when Mary Ellen asks if his mother is okay at the dinner table?,129955,Friends,6.54-12.45,friends_s09e03_seg02_clip_12,Joey pushes a drink toward Mary Ellen. 7917,laptop,phone,pen and paper,coat,keys,2,What was Amy holding before she started talking?,129956,The Big Bang Theory,0-9.92,s06e15_seg02_clip_06,pen and paper 7918,"House used the man, woman and boy to be stand ins for Cameron, Chase and Foreman.","House planned to involve the man, woman and boy to reduce panic and mayhem on the flight.","House believed either the man, woman or the boy were responsible for Peng's condition.","House used the man, woman and boy to reenact the series of events that led to Peng's malady.","House used the man, woman and boy for amusement and distractions from Peng's illness.",0,"How did House plan to use the man, woman and boy when working out Peng's illness?",129957,House M.D.,58.65-63.04,house_s03e18_seg02_clip_19,"House used the man, woman and boy to be stand ins for Cameron, Chase and Foreman." 7919,She ran into Shania Twain.,She ran into Oprah.,She ran into Beyonce.,She ran into Susan Lucci.,She ran into Cher.,3,Who did Rachel run into when she was in the bathroom.,129958,Friends,46.19-55.6,friends_s07e18_seg02_clip_08,She ran into Susan Lucci. 7920,Alex dances with Izzie.,Alex hugs Izzie.,Alex looks at Izzie.,Alex kisses Izzie.,Alex walks out the door.,2,What does Alex do after Izzie says she can't?,129959,Grey's Anatomy,39.83-42.93,grey_s03e08_seg02_clip_25,Alex looks at Izzie. 7921,sadness,He was angry.,He felt happy and enjoyed it.,fear,anxious,2,What did Richard feel when he was talking with Monica?,129960,Friends,21.05-24.41,friends_s03e13_seg02_clip_00,He felt happy and enjoyed it. 7922,Burke was holding a newspaper.,Burke was holding a scapel.,Burke was holding a fishing pole.,Burke was holding a menu.,Burke was holding a baseball cap.,3,What was Burke holding before the waiter said something about a sommelier?,129961,Grey's Anatomy,31.25-33.89,grey_s02e08_seg02_clip_10,Burke was holding a menu. 7923,Covered his face,Hugged her,Took a drink,Played a harmonica,Opened his backpack,0,What did the guy with the blue backpack do before Meredith asked what happened to them?,129962,Grey's Anatomy,22.3-27.31,grey_s03e06_seg02_clip_03,Covered his face 7924,A blue mug,A red mug,A piece of pizza,A hotdog,A rainbow colored cup,0,What is Leonard holding in his hands when he's talking to Sheldon on the couch?,129963,The Big Bang Theory,13.03-22.64,s10e13_seg02_clip_08,A blue mug 7925,Chandler is feeling hopeless and depressed.,Chandler is feeling calm.,Chandler is feeling tired.,Chandler is feeling jealous of Ross.,Chandler is feeling anxious.,4,How is Chandler feeling when sitting next to Monica at the restaurant?,129964,Friends,35.69-58.03,friends_s06e24-25_seg02_clip_06,Chandler is feeling anxious. 7926,Pac Man.,Spiderman.,Flowers.,A spaceship.,The periodic table.,0,What did Howard have on his belt when Raj talks about ningas and cat burglars? ,129965,The Big Bang Theory,0-9.72,s06e08_seg02_clip_07,Pac Man. 7927,Hilton Hotel,Trump Hotel,Le Grand Inn,Best Inn Hotel,"Paradise Hotel, Golf Resort and Spa",4,"What did Phoebe say the name of the Hotel was, after Ross, asked her what she is doing standing near the wall?",129966,Friends,35.61-54.84,friends_s10e01_seg02_clip_02,"Paradise Hotel, Golf Resort and Spa" 7928,Mitzi was in her cage.,Mitzi was lost.,Mitzi was in Cheryl's bed.,Mitzi was on the dining room table.,Mitzi was in Ross's shoe.,1,Where was Mitzi when Ross was visiting Cheryl?,129967,Friends,0-12.91,friends_s04e06_seg02_clip_05,Mitzi was lost. 7929,A raise.,An assignment so she can be helpful.,Time off.,A break.,A slot in the OR.,1,What does Izzie ask the chief for when she sees him?,129968,Grey's Anatomy,74.58-87.16,grey_s02e17_seg02_clip_08,An assignment so she can be helpful. 7930,Gold earrings.,His watch.,A new wallet.,Leather shoes.,A man purse.,1,What accessory does Howard show off when beatboxing?,129969,The Big Bang Theory,43.98-53.72,s01e05_seg01_clip_02,His watch. 7931,A pencil,A stapler,A pen,A phone,A shoe,3,What did Ryan slam down before turning around Alonzo's friend?,129970,Castle,10.43-15.86,castle_s08e13_seg02_clip_23,A phone 7932,Where are you going?,And wisdom is knowing the difference.,I was winning.,No you want to blame this on the booze but that's easy. Change is hard.,Anyone can blame that on you.,3,What did Wilson say when he was telling House about change.,129971,House M.D.,0.46-5.06,house_s06e19_seg02_clip_22,No you want to blame this on the booze but that's easy. Change is hard. 7933,Burke is performing surgery,Derek is performing surgery,Bailey is performing surgery,Webber is performing surgery,Alex is performing surgery,1,Who is preforming surgery when the patient's is on the operating table?,129972,Grey's Anatomy,56.79-60.34,grey_s03e23_seg02_clip_06,Derek is performing surgery 7934,Amy kissed Sheldon.,Amy drew a picture.,Amy smiled at Penny.,Amy sat on Leonard.,Amy danced on the table.,2,What did Amy do before asking Bernadette what is the problem?,129973,The Big Bang Theory,0-3.02,s04e22_seg02_clip_12,Amy smiled at Penny. 7935,Jackson asked if they knew what was wrong with him yet.,Jackson asked if he's got an I.V. why does he need a shot too.,Jackson wanted to know where his parents were.,Jackson asked if the shot was going to sting.,Jackson wanted to know when he was going to get to go home.,1,What did Jackson say to Thirteen before she gave him a shot?,129974,House M.D.,87.91-93.03,house_s05e16_seg02_clip_06,Jackson asked if he's got an I.V. why does he need a shot too. 7936,The first test for Hep C was negative ,He refused to be tested,He couldn't afford any more treatment,He wanted to talk to a lawyer,Dugan refused further treatment,0,Why was diagnosis confusing when House was talking to Dugan?,129975,House M.D.,14.26-77.06,house_s07e06_seg02_clip_17,The first test for Hep C was negative 7937,move in with Howard,hire a showgirl,get a date for Howard of Penny's friends,have Howard go on vacation with them,have Penny call Howard,2,What did Leonard ask Penny to do when he explained the pact?,129976,The Big Bang Theory,33.01-42.02,s03e05_seg02_clip_03,get a date for Howard of Penny's friends 7938,He introduces Chandler as the lead singer of his band,He introduces Joey as the star of a soap opera,He introduces Chandler as a grudge cult leader,He introduces Joey as a Priest ,He introduces Chandler as a truck driver,0,Who does Ross introduce when he comes into the house,129977,Friends,37.92-56.74,friends_s05e08_seg02_clip_06,He introduces Chandler as the lead singer of his band 7939,He had to be home at Six.,He does not like grave yards.,He did not like Houses idea.,He was going to throw up.,He was going to pick up a date.,0,"Why did Cole say he couldn't do it, when House gave his proposal to dog up the dead man?",129978,House M.D.,51.05-61.62,house_s04e04_seg02_clip_04,He had to be home at Six. 7940,In a cardboard box,On the leather chair,Under a heatlamp,inside an old hat,In one of Monica's pots,1,Where is the chick sitting when chandler is watching tv?,129979,Friends,0.27-10.01,friends_s03e21_seg02_clip_16,On the leather chair 7941,House wants her to leave the hospital,House wants to throw how he was right in her face,House wants to apologize to Stacy ,House wants her to leave him alone,House doesn't go to see Stacy,2,Why does House goes to see Stacy when she asks him what he wanted to know ?,129980,House M.D.,30.41-36.41,house_s02e06_seg02_clip_23,House wants to apologize to Stacy 7942,Castle jumped on one of the suspects.,Castle dropped and broke the object.,Castle ran from the room.,Castle hit the ground.,Castle told the cops to relax.,1,What did Castle do after the detectives rushed into the room?,129981,Castle,20.06-21.77,castle_s07e06_seg02_clip_14,Castle dropped and broke the object. 7943,Behind a stack of boxes.,Behind a wall.,Behind Castle.,On the floor.,Ducked behind a table.,0,Where was Beckett when Luca had his gun drawn?,129982,Castle,0-0.46,castle_s07e10_seg02_clip_22,Behind a stack of boxes. 7944,"Sheldon, Howard, and Leonard are feeling relaxed and confident.","Sheldon, Howard, and Leonard are feeling nervous and fearful.","Sheldon, Howard, and Leonard are feeling neutral and apathetic. ","Sheldon, Howard, and Leonard are feeling excited and enthused.","Sheldon, Howard, and Leonard are feeling angry and jealous.",1,"How are Sheldon, Howard, and Leonard most likely feeling when they begin their conversation with the military man?",129983,The Big Bang Theory,0-40.47,s10e03_seg02_clip_17,"Sheldon, Howard, and Leonard are feeling nervous and fearful." 7945,The couch,The kitchen,The patio,The Armchair by Monica's bedroom ,"Rachel isn't sitting, she is standing. ",0,"Where is Rachel sitting when her sister, Amy comes up to talk to her?",129984,Friends,9.76-18.61,friends_s09e08_seg02_clip_16,The couch 7946,Barney was at the bar with Ted and Marshall,Barney was at the church with Ted and Marshall,Barney was at the school with Ted and Marshall,Barney was at the office with Ted and Marshall,Barney was at the park with Ted and Marshall,0,Where was Barney when he called Wendy,129985,How I Met You Mother,47.6-61.03,met_s03e11_seg02_clip_04,Barney was at the bar with Ted and Marshall 7947,Foreman,House ,Cuddy,Taub,Chase,1,Who is Wilson with when they are getting lunch together?,129986,House M.D.,49.03-56.35,house_s06e12_seg02_clip_10,House 7948,Sheldon was reciting a poem.,Sheldon was reading a book.,Sheldon was playing a game.,Sheldon was taking a shower.,Sheldon was typing on his laptop.,4,What was Sheldon doing before Leonard entered the room?,129987,The Big Bang Theory,38.38-41.46,s01e13_seg02_clip_03,Sheldon was typing on his laptop. 7949,Lucas ID card,A piece of glass,A bloody gold chain,A rock ,A used condom,2,What did Ryan pick up before saying he found something? ,129988,Castle,37.57-46.97,castle_s07e10_seg02_clip_17,A bloody gold chain 7950,Stephen Hawking.,The dean.,Amy.,A campus police officer.,Penny.,2,"Who greets Sheldon, Raj, Howard, and Leonard after Sheldon says this is fun?",129989,The Big Bang Theory,17.7-23.5,s07e05_seg02_clip_06,Amy. 7951,Raj does not want a hussy near his girl. ,Raj says he doesn't like her. ,Raj says to give it up already. ,Raj says he wants someone closer to him meeting her first. ,Raj says that Penny is too pretty. ,4,What is Raj's explanation after he does not pick Penny to meet Lucy first?,129990,The Big Bang Theory,6.72-11.68,s06e24_seg02_clip_05,Raj says that Penny is too pretty. 7952,George's father was happy.,George's father was unconscious and therefore was unable to react.,George's father cried.,George's father was sad.,George's father hit George.,1,What was George's father's reaction after George's apology and confession?,129991,Grey's Anatomy,75.86-79.02,grey_s03e12_seg02_clip_16,George's father was unconscious and therefore was unable to react. 7953,nothing,A ribbon,A piece of tape,A piece of twine,A wax stamp,4,How is the letter sealed that the bellboy hands Castle after dropping off the luggage? ,129992,Castle,65.44-73.74,castle_s08e14_seg02_clip_00,A wax stamp 7954,He starts to yell,He starts to cry,He pours some shots,He gets up to grab more drinks,He asks the waitress to grab them a bottle of champagne,2,What does Barney do when Lily and Marshall start fighting?,129993,How I Met You Mother,28.4-37.57,met_s06e21_seg02_clip_03,He pours some shots 7955,There are 2 shopping bags sitting on the floor,There is 1 shopping bag sitting on the floor,There are 3 shopping bags sitting on the floor,There are 4 shopping bags sitting on the floor,There are 5 shopping bags sitting on the floor,1,How many shopping bags are sitting on the floor when Sheldon tells them the date is approaching ,129994,The Big Bang Theory,0-8.99,s07e22_seg01_clip_00,There is 1 shopping bag sitting on the floor 7956,Sam,Daniel,Stuart,Clarence,John,2,What was the name of the groom when Monica found out who he was?,129995,Friends,33.92-40.82,friends_s07e11_seg02_clip_17,Stuart 7957,Chandler is sitting at the table.,Chandler is lying in bed.,Chandler is sitting on the couch.,Chandler is in the bathroom.,Chandler is in the kitchen cooking.,0,Where is Chandler when Rachel walks into the room?,129996,Friends,0-4.55,friends_s07e11_seg01_clip_00,Chandler is sitting at the table. 7958,Red wine,White wine,Some beer,Some cans of soda,They're not drinking anything,0,"What is Penny, Bernadette, and Amy drinking when they're in Penny's living room?",129997,The Big Bang Theory,29-35.62,s09e03_seg02_clip_03,Red wine 7959,Castle is at Tony's.,Castle is in his office.,Castle is at a crime scene.,Castle is at Beckett's.,Castle is on a TV set.,4,Where is Castle when he is walking with Tony ?,129998,Castle,4.1-9.1,castle_s03e22_seg02_clip_08,Castle is on a TV set. 7960,throws it out the window,hangs up,gives the phone to Castle,smashes it,nothing,2,What does the man do when he's talking on the phone with Beckett?,129999,Castle,23.44-32.01,castle_s05e08_seg02_clip_24,gives the phone to Castle 7961,Penny dances to music.,Penny hugs Sheldon.,Penny walks out the door.,Penny proposes to Leonard.,Penny runs to the bathroom.,2,"What does Penny do after she says ""she hates me""?",130000,The Big Bang Theory,29.27-32.86,s08e04_seg02_clip_07,Penny walks out the door. 7962,blue,red,white,Black,grey,3,"What color is the pants Ted is wearing when Robin say's ""I was trying...""?",130001,How I Met You Mother,48.79-58.79,met_s03e01_seg02_clip_16,Black 7963,Modeling a European carryall.,Flapping them like wings on a T-Rex.,Crossing them behind his head.,Showing his muscles.,Crossing them in front of him.,4,What is Ross doing with his arms when he is in the coffeehouse?,130002,Friends,23.79-26.69,friends_s08e19_seg02_clip_13,Crossing them in front of him. 7964,"Castle notices the word ""behold"" is tattooed on the victim's arm.","Castle notices the word ""obsess"" is tattooed on the victim's arm.","Castle notices the word ""excess"" is tattooed on the victim's arm.","Castle notices the word ""observe"" is tattooed on the victim's arm.","Castle notices the word ""breakdown"" is tattooed on the victim's arm.",3,What word does Castle notice is tattooed on the victim's arm when surveying the body with Lanie?,130003,Castle,78.98-83.21,castle_s05e07_seg02_clip_00,"Castle notices the word ""observe"" is tattooed on the victim's arm." 7965,A guitar ,A scalpel,A fork.,A motorcycle helmet,A globe,2,What is Chandler holding when Rachel says hey?,130004,Friends,0-4.9,friends_s07e11_seg01_clip_00,A fork. 7966,He yells at them. ,He does push ups. ,He cries. ,He lays on his bed. ,He jumps out fo the window. ,3,What does the man do after his friends walk into the bedroom? ,130005,The Big Bang Theory,45.32-55.23,s03e09_seg02_clip_08,He lays on his bed. 7967,Downwards,Upwards,Sideways,He puts it down,He picks it up,2,How is Castle holding the object when Kapowski tells him she was paid up until friday?,130006,Castle,30.2-39.66,castle_s02e05_seg02_clip_19,Sideways 7968,It is snowy and there are skyscrapers in the distance,The sun is shining and there is traffic in the street,It is snowing and the wind is blowing,It is sunny and Monica is out on the balcony,It is raining and there is a window with light shining through it,4,What is visible outside the window when Rachel is sitting in the window seat?,130007,Friends,0-6.34,friends_s02e08_seg02_clip_19,It is raining and there is a window with light shining through it 7969,bored,ugly,queenly,happy,beautiful,4,How did Penny feel Amy looked when Amy put it on?,130008,The Big Bang Theory,16.27-32.53,s05e12_seg02_clip_15,beautiful 7970,Soothing the baby.,Hanging the banner.,Eating the entire burger.,Clipping her toenails.,Calling the vendors.,0,What is Rachel having difficulty with when with Phoebe and Monica?,130009,Friends,59.55-62.03,friends_s09e02_seg02_clip_16,Soothing the baby. 7971,Newspaper,Coffee mug,A plastic cup,eye glasses,a pen,2,What was Ryan holding when he started his toast,130010,Castle,0-1.53,castle_s04e04_seg02_clip_27,A plastic cup 7972,Greece,Caracas,Paris,Montana,NYC,1,Where did Fran said she visited before she got sick?,130011,House M.D.,8.11-27.93,house_s03e18_seg02_clip_02,Caracas 7973,Ross is disappointed because she doesn't want to have kids,Ross is disappointed because he and Carol can't be together,Ross is disappointed because she doesn't believe in marriage,Ross is disappointed because she doesn't like sushi,Ross is disappointed because they missing the beginning of a concert,1,Why is Ross disappointed when he is talking to Carol,130012,Friends,0-13.24,friends_s01e14_seg02_clip_21,Ross is disappointed because he and Carol can't be together 7974,Ross says a box of ice cream,Ross says a box of canidies,Ross says a box of cookies,Ross says a box of cake,Ross says A box of thin mints.,4,What does Ross say he will take one box of when he talks to Elizabeth?,130013,Friends,6.3-11.66,friends_s06e19_seg02_clip_06,Ross says A box of thin mints. 7975,"Marshall, Lily, Barney and Ted are watching the Super Bowl game in the hotel lobby.","Marshall, Lily, Barney, and Ted are watching the Super Bowl game in the bedroom.","Marshall, Lily, Barney and Ted are watching the Super Bowl game in the kitchen.","Marshall, Lily, Barney, and Ted are watching the Super Bowl game in the living room.","Marshall, Lily, Barney, and Ted are watching the Super Bowl game in a hotel room.",3,"Where are Marshall, Lily, Barney, and Ted when they are watching the Super Bowl game?",130014,How I Met You Mother,10.28-11.19,met_s02e14_seg02_clip_03,"Marshall, Lily, Barney, and Ted are watching the Super Bowl game in the living room." 7976,His finger,A pencil,Candy,Gum,A cigarette,1,What does House have in his mouth when Foreman is talking?,130015,House M.D.,7.05-11.28,house_s06e17_seg02_clip_16,A pencil 7977,House is waiting for Chase,House is waiting for Stacy,House is waiting for Cameron,House is waiting for Wilson,House is waiting for Cuddy,4,Who is House waiting for when he is in an examination room,130016,House M.D.,81.09-87.47,house_s02e23_seg02_clip_21,House is waiting for Cuddy 7978,Reading a newspaper ,Playing Yatzhee.,Playing Mahjong,Speaking Mandarin Chinese,Cooking dinner.,0,What is Chandler doing when the scene starts?,130017,Friends,9.01-18.89,friends_s09e17_seg02_clip_05,Reading a newspaper 7979,Knock three times,Take a deep breath ,Ask if its ok to come in,Slip a note underneath it,Look through the peephole,0,What did Sheldon say he did before opening a door?,130018,The Big Bang Theory,8.72-16.28,s10e05_seg02_clip_13,Knock three times 7980,The kitchen counter.,The refrigerator.,The bathroom.,The bedroom.,The opposite chair.,0,Where did Chandler walk to after he got off the chair with Monica?,130019,Friends,2.79-8.99,friends_s05e15_seg02_clip_07,The kitchen counter. 7981,Hooks him up to an IV drip machine,runs out the door,starts screaming,draws on his face,makes a telephone call,0,What does House do after Wilson passes out?,130020,House M.D.,2.67-11.13,house_s08e21_seg02_clip_02,Hooks him up to an IV drip machine 7982,In the air on an airplane,On a bus on a desolate highway,On a train on the way to Washington D.C.,In the hospital cafeteria,In a school auditorium,0,Where was House when he told the audience that one of them has a confirmed case of meningistis,130021,House M.D.,27.61-38.72,house_s03e18_seg02_clip_17,In the air on an airplane 7983,Patrice was sad.,Patrice was happy.,Patrice was upset.,Patrice was scared.,Patrice was heartbroken.,2,What was Patrice's reaction when she opened the door to Castle and Alexis?,130022,Castle,56.69-65.61,castle_s06e07_seg02_clip_16,Patrice was upset. 7984,Talk about Sheldon's difficulty in dealing with people.,Talking about Sheldon's past.,Discussing an emotional episode of Firefly.,Talking about pets they had when they were younger.,Rehearsing a play.,4,What are Sheldon and Penny doing before Sheldon has an emotional breakdown?,130023,The Big Bang Theory,0-18.59,s04e14_seg02_clip_15,Rehearsing a play. 7985,Castle throws something at Lorenzo,Castle pulls the gun from Lorenzo,Castle punches Lorenzo and disarms him,Castle jumps Lorenzo and tackles him,Castle doesn't do anything to Lorenzo,2,What does Castle do to Lorenzo when he is pointing a gun at him?,130024,Castle,79.21-87.81,castle_s08e05_seg02_clip_20,Castle punches Lorenzo and disarms him 7986,One more time.,Two more big pushes.,Three more.,Four more.,A handful more.,0,How many more pushes did Ross say Rachel had after she asked him to do it for her? ,130025,Friends,4.5-13.21,friends_s08e23-24_seg02_clip_32,One more time. 7987,He said the pictures were probably taken about a year earlier,Amber was in the city for a photo shoot about six months ago,He said the pictures were probably taken around the time she died,He said the pictures were probably taken about a week before she died,He said the pictures were probably taken two or three years before she died,1,When did the pageant consultant say the pictures were probably taken when he talked to Esposito?,130026,Castle,26.23-33.01,castle_s03e23_seg02_clip_14,Amber was in the city for a photo shoot about six months ago 7988,A guy that won MacArthur genus grant.,Spiderman.,Penny.,Leslie.,Alicia.,0,Who is the person that is mentioned when they are eating?,130027,The Big Bang Theory,21.54-23.02,s02e11_seg01_clip_01,A guy that won MacArthur genus grant. 7989,Black,Blue,Green,Grey,Orange,3,"What color is the shirt that Rachel is wearing when she say's ""Really sort of soft at first.""?",130028,Friends,48.99-59.03,friends_s02e04_seg02_clip_18,Grey 7990,In the bedroom.,In the van.,In the living room.,On the car door.,On the light pole.,1,Where did Castle say there were prints left after Beckett said hasim was the shooter? ,130029,Castle,0-8.19,castle_s05e15_seg02_clip_17,In the van. 7991,He stands up. ,He shifts on the couch. ,He takes a drink of coffee. ,He puts his head on Julie. ,He puts his head on Rachel. ,1,What does Ross do after Rachel sits down on the foot rest?,130030,Friends,31.87-35.71,friends_s02e04_seg02_clip_14,He shifts on the couch. 7992,Cake in box,Stack of plates.,Box of donuts.,Bag of groceries.,Stack of Newspapers,4,what was Monica holding when she came in the room? ,130031,Friends,0-3,friends_s04e09_seg02_clip_06,Stack of Newspapers 7993,What did she do to deserve this?,Could I have saved her?,Why not me?,Why target Sarah?,Who did she cross?,3,What is the question haunting Beckett after Sarah is instantly killed?,130032,Castle,3.6-15.31,castle_s04e09_seg02_clip_02,Why target Sarah? 7994,A knife and masking tape.,An eight ball of cocaine.,An ounce of marijuana and a mini drone.,VapoRub and lunch receipts.,A gun and a cigar.,3,What does House find the patient had in his trunk and glove box after Cole presents him with the contents of the patients glove box and trunk?,130033,House M.D.,0-21.65,house_s04e05_seg02_clip_20,VapoRub and lunch receipts. 7995,Looking at the stereo,Looking out the window,Playing with a zen garden,Getting ready to leave,Getting two new glasses,1,What was Taub doing when Neil picked up a different bottle of liquor?,130034,House M.D.,65.72-68.87,house_s05e18_seg02_clip_12,Looking out the window 7996,Red and green,Blue and white.,there are no vases,Two blue vases.,Two white vases,1,"What color are the little vases that show behind Tim after Phoebe says ""Tim, you're a really great guy""?",130035,Friends,42.62-45.62,friends_s08e05_seg02_clip_10,Blue and white. 7997,She wants to know about Meredith and what happened. ,she wants to know about a patient.,she wants to know about addison.,she wants to know what her brother's plans are. ,she wants to know when he is coming home. ,0,What is Derek's sister wanting to know when they are talking?,130036,Grey's Anatomy,72.45-88.35,grey_s03e06_seg02_clip_07,She wants to know about Meredith and what happened. 7998,Ross walks away from Chandler.,Ross punches Chandler.,Ross hugs Rachel.,Ross chastises Chandler.,Ross cries on Monica.,3,What does Ross do after Chandler teases him?,130037,Friends,29.77-44.82,friends_s09e17_seg02_clip_02,Ross chastises Chandler. 7999,Fallon thinks Beckett loves him.,Fallon thinks Beckett hates him.,Fallon thinks Beckett is indifferent toward him.,Fallon thinks Beckett is mad at him.,Fallon thinks Beckett is understanding toward him.,1,How does Fallon think that Beckett feels about him when he talks to her about a possible terrorist event?,130038,Castle,27.41-44.38,castle_s03e17_seg02_clip_18,Fallon thinks Beckett hates him. 8000,So the Yakuza would not find them.,So they would not be proven guilty.,So they could gain money.,So they could pretend for the local news.,So they are able to be on the plane.,0,Why did Saya say they falsified the report after the explosion?,130039,Castle,0-18.23,castle_s06e18_seg02_clip_23,So the Yakuza would not find them. 8001,The OR.,The clinic.,The ER.,The NICU.,The supply room.,1,Where did Addison tell Alex he should get back to after he talked to the patient he gave a pep talk to?,130040,Grey's Anatomy,81.51-97.03,grey_s03e15_seg02_clip_24,The clinic. 8002,twelve,three,six,ten,three,2,how many seconds of footage was Tory able to recover from the tape after working wit it?,130041,Castle,35.84-89.59,castle_s06e21_seg02_clip_21,six 8003,Alex tells her that she is blushing,Alex tells her she is beautiful,Alex tells her she looks ugly,Alex tells her she has something stuck in her teeth,Alex tells her that he thinks she should smile,4,What does Alex tell the patient before he takes her picture?,130042,Grey's Anatomy,0-2.4,grey_s03e20_seg02_clip_03,Alex tells her that he thinks she should smile 8004,She stops to smooth the couch cushions,She continues on to the kitchen,She stops and turns around,She tosses Ross a notepad and pen,She tidies her hair,2,What does Monica do when she overhears Ross taking a call meant for her,130043,Friends,18.61-23.8,friends_s02e17_seg02_clip_08,She stops and turns around 8005,He starts eating a sandwich,Walk out,Tell Cuddy to leave,He grabs a cigar,Trick Cuddy into think it is,4,What does House do after he tells Cuddy that he doesn't think his leg is deteriorating?,130044,House M.D.,30.56-55.48,house_s03e02_seg02_clip_12,Trick Cuddy into think it is 8006,tired,bored,happy,sleepy,angry,2,How did Howard feel when he was visiting with Leslie?,130045,The Big Bang Theory,0-13.53,s02e16_seg02_clip_04,happy 8007,They were talking about Chandler.,They were talking about Ross.,They were talking about getting drinks.,They were talking about Ross' monkey.,They were talking about their love lives.,2,What were the girls talking about before Ross came back from his call?,130046,Friends,0-22.51,friends_s02e12-13_seg02_clip_28,They were talking about getting drinks. 8008,Because everybody laughs at him.,Because someone spills hot coffee in his lap.,Because his wallet gets stolen.,Because another man flirts with Robin.,Because Robin's not paying attention to him.,0,Why does Tedd get angry when he's talking to Robin in the coffee shop?,130047,How I Met You Mother,8.83-13.7,met_s03e19_seg02_clip_07,Because everybody laughs at him. 8009,In the hallway of the apartment building. ,On the couch in Monica and Rachel's place. ,On the balcony at Monica and Rachel's place. ,In the bathroom at Monica and Rachel's place. ,Next to the table in the kitchen at Monica and Rachel's place. ,4,Where are Phoebe and Joey when they are talking about guitars?,130048,Friends,0-2.9,friends_s05e11_seg02_clip_06,Next to the table in the kitchen at Monica and Rachel's place. 8010,University,Prison,Fast Food,Psych Ward,Hospital,1,Where did Adams work before she joined House's team?,130049,House M.D.,28.49-39.62,house_s08e08_seg02_clip_09,Prison 8011,Flowers,Rose Petals,Balloons ,Candles ,Bubbles,3,What was all over Monica's apartment when Joey came in with Chandler? ,130050,Friends,47.59-56.3,friends_s07e21_seg02_clip_05,Candles 8012,Martians,U.S. citizens,Saturnians,Urasians,Mars people,0,What did Amy say their kids would be when talking to Sheldon?,130051,The Big Bang Theory,0-38.92,s08e17_seg02_clip_15,Martians 8013,Playing guitar. ,Eating the cake. ,Drinking wine. ,Putting candles on the cake. ,Eating salad. ,3,What is Phoebe doing when she is standing at the table in Monica's place?,130052,Friends,9-12.61,friends_s02e22_seg02_clip_02,Putting candles on the cake. 8014,Herman Melville ,Philip K. Dick,Charles Dickens,Jane Austen,Virginia Woolf,1,What kind of novel did Castle mention after Hayley fully explained why she stuck around Castle and his daughter? ,130053,Castle,27.15-40.95,castle_s08e14_seg02_clip_22,Philip K. Dick 8015,She ruined his evening.,She kicked him out of the apartment.,He made a fool of himself.,She invited him to a fake party.,She made a fool of herself.,0,Why did Rachel apologize to Ross when talking to him?,130054,Friends,38.96-49.58,friends_s04e16_seg02_clip_18,She ruined his evening. 8016,To the bathroom,To talk to women in the coffee shop,Out of the coffee shop,The counter to get more coffee,To the stage to play music,1,Where does Phoebe take Ross after pulling him up?,130055,Friends,17.93-23.05,friends_s06e02_seg02_clip_04,To talk to women in the coffee shop 8017,Foreman and Cameron,Foreman and Cuddy,13 and Foreman,Chase and 13,Chase and Cameron,2,Who is talking to House about a patient when he blames their relationship for every response?,130056,House M.D.,69.85-75.05,house_s05e13_seg02_clip_03,13 and Foreman 8018,Martha is standing by the window.,Martha is sitting in the living room.,Martha is standing at the kitchen island.,Martha is on her way out the front door.,Martha is still in bed.,2,Where is Martha when she is talking to Castle?,130057,Castle,71.44-92.31,castle_s03e15_seg02_clip_15,Martha is standing at the kitchen island. 8019,Step on his feet,Dip him down too far,Lift him up,Twirl him so that he hits the door,Throw him out the window,3,What does the man in the apartment accidentally do to Joey after they start dancing?,130058,Friends,52.52-59.73,friends_s04e04_seg02_clip_11,Twirl him so that he hits the door 8020,I don't know any one with that name.,Who wants to know?,Do I look like Dr. Cooper?,No. You want the crazy guy across the hall.,Try across the hall. I think he lives there. ,3,What did the person say after Leonard asked him if he was Dr. Cooper?,130059,The Big Bang Theory,32.87-46.52,s03e22_seg02_clip_00,No. You want the crazy guy across the hall. 8021,Sheldon was talking to Raj.,Sheldon was talking to his mother.,Sheldon was talking to Penny.,Sheldon was talking to some women.,Sheldon was talking to Howard. ,3,Who was Sheldon talking to when he was standing at the table?,130060,The Big Bang Theory,0-13.02,s09e05_seg02_clip_13,Sheldon was talking to some women. 8022,And may fortune guide your journey.,And may the future guide your journey.,And may the stars guide your journey.,And may this planet guide your journey.,And may Love guide your journey.,0,What did Castle say after he folded his arms? ,130061,Castle,73.89-83.92,castle_s05e06_seg02_clip_24,And may fortune guide your journey. 8023,Derek suggests frightening her and robbing her.,Derek suggests hitting her and blindfolding her.,Derek suggests drugging her and spinning her around.,Derek suggests using a strobe light and getting her drunk.,Derek suggests performing surgery on her and shaving her head.,3,What two things does Derek first suggest they do to force a seizure from Ms. Graber after they've left her room?,130062,Grey's Anatomy,56.12-59.94,grey_s02e23_seg02_clip_06,Derek suggests using a strobe light and getting her drunk. 8024,She tapped her foot against the floorboard.,She called the police.,She tried to open the door.,She tapped her hand against the wall.,She screamed for help. ,0,What did Alexis do when she was trying to figure out where they are?,130063,Castle,62.35-66.9,castle_s05e15_seg02_clip_17,She tapped her foot against the floorboard. 8025,that they burned the victims body ,that it happened in space ,theat all the camaras failed ,they could alibi each other because they are in on it,that the never got rid of the murder weapon,3,What does Beckett say makes this crime clever when talking to the crew? ,130064,Castle,58.8-68.82,castle_s07e16_seg02_clip_24,they could alibi each other because they are in on it 8026,Esposito,Castle,Gates,Ryan,Lanie,1,Who walked into the room when Beckett was talking on the cellphone?,130065,Castle,0-8.1,castle_s08e02_seg02_clip_02,Castle 8027,Dress Shirt,Graphic t-shirt,Body Armor,Samurai Outfit,Wedding Dress,4,What did Monica change into when she was washing dishes?,130066,Friends,2.32-12.19,friends_s04e20_seg02_clip_07,Wedding Dress 8028,Her to undress for his benifit,Asks her to preform oral sex,For a big monetary promotion ,For her to take of her shirt ,Permission to date Dr. Cuddy,1,What request does House make before Cameron returns to her phone call?,130067,House M.D.,66.9-84.2,house_s05e13_seg02_clip_04,Asks her to preform oral sex 8029,He falls down.,"He hesitates, then stops.",He keeps walking.,He laughs at her.,He steps backward.,1,What does Simmons do when Beckett warns him to take another step?,130068,Castle,12.24-18.03,castle_s06e22_seg02_clip_06,"He hesitates, then stops." 8030,House,Taub,Foreman,Masters,Chase,1,"Who's pager went off before House said ""this counts as my time?""",130069,House M.D.,12.74-20.94,house_s07e09_seg02_clip_12,Taub 8031,Wilson wanted House to know that he is his best friend,Wilson wanted House to know that he loves him,Wilson wanted House to know that he cares for him,Wilson wanted House to know that he appreciate the risk he is taking,Wilson wanted House to know that he is the best person ever,3,What did Wilson want House to know when he say's if things go wrong?,130070,House M.D.,10.47-25.49,house_s08e19_seg02_clip_12,Wilson wanted House to know that he appreciate the risk he is taking 8032,Dr. Grey told her that she would need another opinion before deciding on it.,Dr. Grey told her that she wants the surgery.,Dr. Grey told her that she could elect not to treat it at all.,Dr. Grey told her that it was too expensive to perform.,Dr. Grey told her that it was too risky to perform.,2,What did Dr. Grey tell Cristina about the surgery after Cristina told her she was a particularly difficult patient?,130071,Grey's Anatomy,44.71-58.54,grey_s03e14_seg02_clip_14,Dr. Grey told her that she could elect not to treat it at all. 8033,irritated,happy,angry,sorry,tired,3,How did Mrs. Latham feel when she made Leonard uncomfortable?,130072,The Big Bang Theory,0-9.29,s04e15_seg02_clip_13,sorry 8034,Sheldon objects. ,Sheldon congratulates the judge on a job well done. ,Sheldon tells the judge he admires him. ,Sheldon tells the jury that the judge is wrong. ,Sheldon tells Penny that it's all her fault. ,0,What does Sheldon do after the judge's ruling?,130073,The Big Bang Theory,36.61-40.21,s03e16_seg02_clip_09,Sheldon objects. 8035,She was doing her hair in the female bathroom.,She ran into her car.,She was runnning on the joggig machine.,She was on the roof looking at the sky.,She climbed up the stairs quickly.,4,What did the Chief Nurse on the stairwell after her last line?,130074,Grey's Anatomy,0.46-6.44,grey_s01e03_seg02_clip_09,She climbed up the stairs quickly. 8036,make a fist,cough and turn the head,point at the noise,squeeze taubs hand,give taub emmys arm,4,what does taub ask emmy to do before running a test on her in the room?,130075,House M.D.,23.02-26.18,house_s05e10_seg02_clip_11,give taub emmys arm 8037,Raj does no go anywhere.,Raj goes into the bedroom.,Raj goes into the bathroom.,Raj goes into the hallway.,Raj goes into the kitchen.,4,Where does Raj go after Amy asks about the book?,130076,The Big Bang Theory,50.3-57.35,s07e17_seg01_clip_00,Raj goes into the kitchen. 8038,Monica was at the couch watching TV.,"Monica was at the counter, making food.",Monica was sitting at the table.,Monica was sitting by the window.,Monica was standing in front of the TV.,2,Where was Monica when Rachel walked into the room?,130077,Friends,29.46-44.04,friends_s05e07_seg02_clip_16,Monica was sitting at the table. 8039,No one got the trip ,Monica got the trip ,They guy in the corner got the trip,Nancy got the trip ,Rachel got the trip ,3,Who got this Paris trip after Rachel was blown off?,130078,Friends,50.17-59.03,friends_s05e18_seg02_clip_18,Nancy got the trip 8040,Denny had died before they could even do the transplant. ,Denny was recuperating and making progress. ,Denny had died at some point after the transplant. ,Denny lost his insurance and died at home. ,Izzie said she couldn't remember what happened to Denny. ,2,How had things apparently gone for Denny when Izzie and Mr. Duquette spoke? ,130079,Grey's Anatomy,35.29-62.31,grey_s03e04_seg02_clip_12,Denny had died at some point after the transplant. 8041,A new student.,Dr Patch Adams.,A golden retriever.,Dr Lisa Cuddy.,The patient's son.,3,"Who enters the room with the man in the white lab coat after Dr House says ""our little secret""?",130080,House M.D.,29.05-36.53,house_s07e02_seg02_clip_14,Dr Lisa Cuddy. 8042,Howard's mom is the maid of honor. ,Leslie is the maid of honor. ,Priya is the maid of honor. ,Penny is the maid of honor. ,Amy is the maid of honor. ,4,Who is Bernadette's maid of honor when she gets married?,130081,The Big Bang Theory,27.61-29.91,s05e08_seg02_clip_16,Amy is the maid of honor. 8043,Outside the apartment building sneaking a cigarette,Sitting on the couch in Monica's apartment,Walking away from the counter In the coffee house,In the shower at Chandler's apartment,Having a family dinner with Susan and Ben.,2,Where was Ross when Rachel came in mad at men,130082,Friends,0-17.12,friends_s06e15-16_seg02_clip_38,Walking away from the counter In the coffee house 8044,Raj told her he wanted to marry her.,Raj told her he was going to pay her to clean his apartment.,Raj told her he has a surprise for her and told her to cover her eyes.,Raj told her he wanted to break up with her.,Raj told her she had to leave the apartment because he had company coming.,2,What did Raj tell the woman on the couch before he gave her a present?,130083,The Big Bang Theory,18.3-35.35,s05e04_seg02_clip_13,Raj told her he has a surprise for her and told her to cover her eyes. 8045,Rachel dismisses Ross to follow Monica and continue their argument.,Rachel dismisses Ross to get food.,Rachel dismisses Ross to drink a beer.,Rachel dismisses Ross to go to Ralph Lauren.,Rachel dismisses Ross to kiss Joey.,0,Why does Rachel dismiss Ross after he tries to talk to her?,130084,Friends,46.34-59.03,friends_s07e01_seg02_clip_17,Rachel dismisses Ross to follow Monica and continue their argument. 8046,Eddie.,Alexis.,Hayley.,Beckett.,Slaughter.,4,Who was hiding behind the door that Castle was keeping a secret when Ryan and Esposito were talking to him?,130085,Castle,3.72-20.47,castle_s08e06_seg02_clip_07,Slaughter. 8047,She is trying to explain to him how Sheldon doesn't know when he's being mean. ,She is trying to explain the birds and the bees. ,She is trying to explain to him that she wants more romance. ,She is trying to explain to him that she wants to move away from his mother. ,She is trying to explain to him that he needs to do nice things for her. ,0,What is Bernadette trying to explain to Howard when they are in bed?,130086,The Big Bang Theory,5.9-7.67,s05e21_seg02_clip_10,She is trying to explain to him how Sheldon doesn't know when he's being mean. 8048,Steve lost a wife on 9/11,Ryan lost a wife on 9/11.,Sam lost a wife on 9/11.,Joe lost a wife on 9/11,Fallon lost a wife on 9/11.,4,Who does Ryan say lost a wife on 9/11 when he discusses the personality of an agent with Beckett and Castle?,130087,Castle,50.04-87.02,castle_s03e17_seg02_clip_18,Fallon lost a wife on 9/11. 8049,Raj is drinking a glass of water,Raj is making himself a bowl of cereal ,Raj is making himself a cup of coffee,Raj is talking on his cell phone,Raj is texting his girlfriend,1,What is Raj doing when he is in the kitchen?,130088,The Big Bang Theory,23.76-95.03,s05e19_seg01_clip_01,Raj is making himself a bowl of cereal 8050,Joey thought the baby was a boy but it was a girl.,Joey thought he counted six fingers but one was from the other hand.,Joey thought he was holding the baby wrong.,The baby started screaming when he was looking at her.,Joey thought the baby was too little.,1,Why did Joey become worried when he was holding the baby?,130089,Friends,10.22-14.13,friends_s08e23-24_seg02_clip_35,Joey thought he counted six fingers but one was from the other hand. 8051,Beckett is pointing a gun,Hayley is pointing a gun,Ryan is pointing a gun,Esposito is pointing a gun,Gates is pointing a gun,1,Who walks in pointing a gun when Castle and Caldwell are looking for an elevator?,130090,Castle,13.29-16.29,castle_s08e13_seg02_clip_21,Hayley is pointing a gun 8052,Because Cinnamon has a broken leg.,Because Cinnamon is sleeping.,Because Cinnamon had an accident.,Because Cinnamon is sleeping.,Because Cinnamon is lost.,4,Why Howard lie about Cinnamon when Bernadette walked away?,130091,The Big Bang Theory,0-60.11,s06e22_seg02_clip_15,Because Cinnamon is lost. 8053,She starts looking around.,She drops the gun.,She walks toward him.,She stands still.,She turns around.,2,What does Beckett do after she lets Simmons know she won't leave until she gets some answers?,130092,Castle,59.86-65.98,castle_s06e22_seg02_clip_06,She walks toward him. 8054,Marshall went to sleep.,Marshall kissed Lily.,Marshall took a drink or water.,Marshall gave Lily a flower.,Marshall turned on the tv.,1,What did Marshall do after he jumped in bed?,130093,How I Met You Mother,5.85-11.12,met_s06e06_seg02_clip_14,Marshall kissed Lily. 8055, Sheldon and Leonard's apartment.,The Cheesecake Factory,The cafeteria.,Penny's apartment,Howard and Bernadette's house,2,Where was Raj and Howard eating lunch when they were talking?,130094,The Big Bang Theory,0-10.98,s07e07_seg02_clip_00,The cafeteria. 8056,Why me?,We're friends.,I'm your hand twin!,What did I do?,No!,2,What did Joey say to the dealer after the security guard escorted him out?,130095,Friends,11.56-14.29,friends_s05e23-24_seg02_clip_41,I'm your hand twin! 8057,A hair net. ,A beanie. ,A baseball cap. ,A mask. ,A crown. ,4,What is Rachel wearing on her head when she is in the hallway with Tad?,130096,Friends,0.98-2.6,friends_s07e14_seg02_clip_19,A crown. 8058,A magazine,A pen,A napkin,A glass,A shirt,1,"What object does Rachel take from Phoebe's hand after Phoebe mentions the $1,000?",130097,Friends,14.22-21.47,friends_s10e08_seg02_clip_01,A pen 8059,Having sex with Ross,Being helpful,Letting her have Chandler,The big burrito she bought her,Getting rid of that monkey Ross used to have.,1,What did Monica thank Rachel for when she offered to help Monica with the dress?,130098,Friends,32.14-42.95,friends_s07e23-24_seg02_clip_10,Being helpful 8060,Hug,Kiss,Shake hands,High five,Fist pound,2,What do Joey and Rachel do before Joey leaves the room?,130099,Friends,9.61-14.27,friends_s09e23-24_seg02_clip_41,Shake hands 8061,So Phoebe can have alone time with her date.,So Phoebe doesn't have to.,So Phoebe can go home early.,So Phoebe can see what he's like before she dates him.,So Phoebe can go to the movies.,0,What reason does Phoebe give after she asks Monica to be the translator's date?,130100,Friends,2.14-7.32,friends_s03e15_seg02_clip_04,So Phoebe can have alone time with her date. 8062,Taub thought House needed to get more invitation letters.,Taub thought House did not have enough room at the wedding for him.,"Taub thought House did not like him, or that he had not been at the hospital longer than other doctors, or that House was screwing with him.",Taub thought House's fiancee did not like him.,Taub thought House was pulling a prank on him.,2,Why did Taub think House did not invite him to his wedding when House invited others?,130101,House M.D.,45.02-51.02,house_s07e17_seg02_clip_15,"Taub thought House did not like him, or that he had not been at the hospital longer than other doctors, or that House was screwing with him." 8063,Because the interns like to stare at everyone. ,Because the patient has a rare condition and she doesn't want them to stare. ,Because she is overprotective. ,Because she isn't making any sense. ,Because she is nervous about her job stability. ,1,Why does Callie warn the interns before they go into their next patient room?,130102,Grey's Anatomy,63.23-72.69,grey_s03e19_seg02_clip_04,Because the patient has a rare condition and she doesn't want them to stare. 8064,Go to lunch,Ask her to go shopping,Talk to Chandler ,Pop by her flat,Talk about work,3,How did Amanda want to do when she called Monica?,130103,Friends,27.04-30.22,friends_s10e03_seg02_clip_07,Pop by her flat 8065,Castle and Beckett go to a Starbucks,Castle and Beckett go to Jessup's house,Castle and Beckett go to a McDonald's,Castle and Beckett go to a bar,Castle and Beckett go to a park,3,Where do Castle and Beckett go when they try to speak with Jessup about crime?,130104,Castle,77.75-89.37,castle_s02e09_seg02_clip_04,Castle and Beckett go to a bar 8066,Penny,Leonard,Howard,Raj,No one,4,Who was sitting on the couch when Amy and Sheldon walked in? ,130105,The Big Bang Theory,38.61-45.91,s08e17_seg02_clip_15,No one 8067,Because Barney refuses to eat. ,Because Barney dropped the spoon on the ground. ,Because Robin insists that Barney shouldn't have to move. ,Because Robin says she misses feeding her little cousin. ,Because Barney says he's too weak to hold the bowl. ,4,Why does Robin have to feed Barney when he's laying in bed?,130106,How I Met You Mother,23.57-31.32,met_s02e11_seg02_clip_09,Because Barney says he's too weak to hold the bowl. 8068,In a bar,In the office,On the street,In the car,At a restaurant,1,Where are House and Wilson when discussing the Monster Truck show tickets?,130107,House M.D.,13.61-22.68,house_s01e12_seg02_clip_11,In the office 8069,a fork,a knife,a gun,a book,a cellphone,0,"What was Danny holding when House told him ""or I did the test wrong"" ?",130108,House M.D.,0-9.12,house_s07e17_seg02_clip_17,a fork 8070,A pair of keys.,A couple of folders.,A phone.,A gift box.,A tablet.,1,What did House drop on Cuddy's desk before he sat on the chair?,130109,House M.D.,41.07-46.69,house_s02e23_seg02_clip_06,A couple of folders. 8071,in the hallway,on the fire escape,on the roof,in the living room,in the window,4,where was Joey when he was talking to Tag and Rachel?,130110,Friends,0-9.47,friends_s07e08_seg02_clip_11,in the window 8072,Yellow,Blue,Red,White,Green,0,What color shirt was the pregnant woman wearing when police escorted her out of the area?,130111,House M.D.,12.9-15.48,house_s05e09_seg02_clip_16,Yellow 8073,Powell had told Cameron that Williams died parasailing.,Powell said Williams died while scuba-diving.,Powell informed Cameron that Williams died on a treadmill.,Powell said that Williams died in his sleep.,Powell let Cameron know that Williams died of a broken heart.,0,"How did Powell say that his co-worker, Williams died when Powell was on the treadmill talking to Cameron?",130112,House M.D.,40.47-42.79,house_s03e03_seg02_clip_01,Powell had told Cameron that Williams died parasailing. 8074,Shaving cream,Mayonnaise ,butter,peanut butter,olive oil,0,what did mia say castle washed his hair with when confronting him?,130113,Castle,0-4.59,castle_s08e05_seg02_clip_05,Shaving cream 8075,A beer,a soda,an energy drink,a cup of coffee,a bottle of liquor,0,What was in front of Marshall when Robin said there's bob?,130114,How I Met You Mother,48.76-58.4,met_s03e09_seg02_clip_02,A beer 8076,Amy's apartment. ,Penny's apartment. ,Leonard's apartment. ,Raj's apartment. ,Howard's apartment. ,2,Where are Leonard and Penny when they are talking?,130115,The Big Bang Theory,0-9.61,s08e17_seg02_clip_03,Leonard's apartment. 8077,Sneak into Alexis's classes and see if she is studying,Listen to waht Beckett's father really thought of him.,Listen in when his mother talks about him,Listen to what Espo and Ryan really think about him.,Go to the opera without paying,1,What would Castle do when he is invisible?,130116,Castle,7.38-13.53,castle_s07e03_seg02_clip_26,Listen to waht Beckett's father really thought of him. 8078,Eat at a better restaurant,There was a murder,Visit a relative,They got upset with their parents,They got into a heated argument,1,Why did Castle and Beckett need to leave before finishing dinner?,130117,Castle,15.13-21.81,castle_s05e08_seg02_clip_01,There was a murder 8079,He immediately got out his black book to call an old girlfriend for a date. ,He tried to call his mom to tell her how sad he was that he and Rachel had broken up. ,He turned and knocked on the window as hard as he could to get the other roommates' attention. ,"He began to sing ""My Way"" in his best Frank Sinatra impression. ",He tried to jump off the balcony. ,4,What did Joey try to do right after he finished talking to Rachel on the balcony?,130118,Friends,13.13-24.01,friends_s10e16_seg02_clip_13,He tried to jump off the balcony. 8080,Howard was sitting in the chair when Raj moved the chess piece.,Howard was standing beside Raj when Raj moved the chess piece.,Howard was sitting on the arm of the couch when Raj moved the chess piece.,Howard was standing behind the couch when Raj moved the chess piece.,Howard was sitting on the floor when Raj moved the chess piece.,2,Where was Howard when Raj moved the chess piece?,130119,The Big Bang Theory,2.28-6.18,s02e18_seg01_clip_00,Howard was sitting on the arm of the couch when Raj moved the chess piece. 8081,Steven.,The mysterious women.,Amber.,Wilson.,The bus driver.,4,Who did House first talk to when he was on the bus?,130120,House M.D.,0-7.92,house_s04e15_seg02_clip_08,The bus driver. 8082,Ross talks to a woman,Ross walks over to the man,Ross sits down,Ross runs over to the man,Ross decides to leave,3,What does Ross do after he enters?,130121,Friends,5.24-10.75,friends_s06e17_seg02_clip_16,Ross runs over to the man 8083,Standing in on his patio.,Standing in his kitchen.,Standing in his living room.,Standing in his dining room.,Standing in his office.,2,Where was Randall when Dean asked him if it was true? ,130122,Castle,16.84-24.58,castle_s06e18_seg02_clip_24,Standing in his living room. 8084,Rebecca was calling someone,Rebecca was packing her clothes,Rebecca was crying,Rebecca was sitting in a chair,Rebecca was looking out a window,2,What was Rebecca doing when Alex walked out of the room?,130123,Grey's Anatomy,61.87-67.66,grey_s03e25_seg02_clip_23,Rebecca was crying 8085,A medical student,Wilson's ex-wife,Amber,A little girl,A pregnant woman,2,Who was the patient being worked on when Wilson was yelling at House and Cuddy?,130124,House M.D.,0-5.54,house_s04e16_seg02_clip_13,Amber 8086,Phoebe told me all about what happened are you ok?,Where have you been all day?,How can I be of assistance?,How was the Movies?,I hear you and Joshua are going out with Ross and Emily?,4,What does Chandler say to Rachel after she enters the room?,130125,Friends,0-7.5,friends_s04e20_seg02_clip_08,I hear you and Joshua are going out with Ross and Emily? 8087,Chandler told Monica that she should leave the dream.,Chandler told Monica to stop wasting time.,Chandler told Monica to please pay attention because he can wake up at any moment.,Chandler told Monica that she should follow Phoebe's lead.,Chandler told Monica that he finds her very annoying.,2,What did Chandler say after Monica asked what she is supposed to do?,130126,Friends,16.39-21.22,friends_s04e14_seg02_clip_19,Chandler told Monica to please pay attention because he can wake up at any moment. 8088,the mens bathroom,the break room,the cafeteria,the nurses station,houses office,0,where does taub go before heading to the lab to check on results with the team?,130127,House M.D.,13.64-23.33,house_s08e15_seg02_clip_12,the mens bathroom 8089,Three,Two,Five,Seven,Six,2,How many people were in the room behind Castle when Beckett told him he can watch?,130128,Castle,15.89-23.15,castle_s02e21_seg02_clip_04,Five 8090,Marketing,A firefighter,A waitress in a classier restaurant,A designer or buyer in fashion,The musuem with Ross,3,What kind of job does Rachel say she really wants when she is talking to Chandler?,130129,Friends,16.95-32.15,friends_s03e10_seg02_clip_09,A designer or buyer in fashion 8091,Coats.,Gifts.,Wine bottles.,Flowers.,Wine glasses.,3,What are Rachel and Phoebe holding when hugging the couple?,130130,Friends,29.53-38.96,friends_s08e01_seg01_clip_00,Flowers. 8092,House told them the interview would be their worst nightmare for awhile.,House told the applicants to bring a lunch because they were just getting started.,House told the applicants it will be the longest job interview of their lives.,House told the applicants that the interview would weed out the weak.,House told the applicants he was going to make their lives miserable for the better.,2,How did House describe the interview when he was speaking to all the applicants?,130131,House M.D.,143.52-147.9,house_s04e01_seg02_clip_25,House told the applicants it will be the longest job interview of their lives. 8093,Sheldon is wearing a headband.,Sheldon is wearing a top hat.,Sheldon is wearing headphones.,Sheldon is wearing a scarf.,Sheldon is wearing a bird's nest.,2,What is Sheldon wearing on his head when Ira Flatow interviews him?,130132,The Big Bang Theory,18.89-40.65,s07e10_seg01_clip_01,Sheldon is wearing headphones. 8094,She starts cooking.,She answers the phone. ,She goes to the bathroom.,She yells at Phoebe.,She leaves the apartment. ,2,What does Rachel do after she looks in the fridge?,130133,Friends,34.24-46.24,friends_s07e17_seg02_clip_10,She goes to the bathroom. 8095,A symbol othe back of his hand,A birthmark on his plam,A scar on his wrist,A bandage on his finger,A ring on his finger,0,What does Castle and Beckett see when the man was rubbing his fingers?,130134,Castle,34.4-40.28,castle_s06e16_seg02_clip_13,A symbol othe back of his hand 8096,Big Ben,London Eye,Westminster Abbey,Tower of London,Buckingham Palace,2,Where was Joey's first stop when he opened up his map?,130135,Friends,10.35-16.07,friends_s04e23-24_seg02_clip_02,Westminster Abbey 8097,Lily.,Abby.,Barney.,Marshall.,Robin.,4,Who is holding clothes when talking with Ted.,130136,How I Met You Mother,0-56.75,met_s03e19_seg02_clip_02,Robin. 8098,Monica had a low ponytail.,Monica's hair was twisted into a bun.,Monica's hair was down.,Monica's hair was clipped up in a hair barrette.,Monica's hair was in a hat.,3,How was Monica's hair done when she was talking to Chandler?,130137,Friends,0-22.89,friends_s03e25_seg02_clip_01,Monica's hair was clipped up in a hair barrette. 8099,House and Wilson were at an amusement park.,House and Wilson were at House's apartment.,House and Wilson were in Alaska.,House and Wilson were in Taub's apartment.,House and Wilson were on a road trip.,4,Where were House and Wilson when they were skipping work?,130138,House M.D.,66.46-88.02,house_s08e20_seg02_clip_05,House and Wilson were on a road trip. 8100,Stuart comes in.,Monica comes in.,Chandler comes in.,Rachel comes in.,Joey comes in.,4,Who comes in the door when Ross and Rachel are drunk in the hotel room?,130139,Friends,32.76-36.6,friends_s05e23-24_seg02_clip_35,Joey comes in. 8101,Couch.,Rocking chair.,Armchair.,Floor.,Bed.,0,Where did Beckett sit after walking into the room?,130140,Castle,0-25.54,castle_s06e14_seg02_clip_26,Couch. 8102,Derek was the doctor of the patient,Izzie was the doctor of the patient,Meredith was the doctorb of the patient,George was the doctor of the patient,Addison was the doctor of the patient,4,Who was the doctor of the patients when she was having complications? ,130141,Grey's Anatomy,0-9.1,grey_s03e04_seg02_clip_16,Addison was the doctor of the patient 8103,He reaches into his jacket pocket for a pen.,He writes some notes in brown notebook.,He types some notes on his tablet.,He writes some notes in his short black notebook.,He motions to officer Espositio for a pen.,3,What does officer Ryan do before he asks Ms. Taylor did know about the party?,130142,Castle,1.37-7.28,castle_s03e11_seg02_clip_06,He writes some notes in his short black notebook. 8104,Alex.,Meredith.,Burke,Nurse.,Patient.,2,Who was talking Cristina when stand inthe hallway?,130143,Grey's Anatomy,75.1-79.65,grey_s01e04_seg02_clip_08,Burke 8105,Meredith is talking to Miranda,Meredith is talking to Izzie,Meredith is talking to George,Meredith is talking to Derek,Meredith is talking to Alex,2,Who is Meredith talking to when she says she is tired,130144,Grey's Anatomy,0-6.51,grey_s01e02_seg02_clip_07,Meredith is talking to George 8106,through case commerce,through the hospital,behind the station,above the office,down market street,0,where did Beckett say the only access to the helipad was when walking with Castle through the office?,130145,Castle,0-9.2,castle_s05e09_seg02_clip_20,through case commerce 8107,House is irritated that the parents would have the audacity to question their expertise. ,He expresses that time is running out and their son's life is slipping away.,He thinks the parents are asking questions they know the answers to.,He expresses that time is on their side but they keep ignoring him.,He thinks they are asking stupid questions to trick them.,1,Why is House irritated when the parents are asking questions about the medical procedures for their son?,130146,House M.D.,42.22-45.7,house_s03e21_seg02_clip_02,He expresses that time is running out and their son's life is slipping away. 8108,Someone walks in and tells them that their Lyft is here.,Someone walks in with chicken nuggets for everyone.,Someone shoots at Castle and shatters a glass tank.,Castle tells everyone to just go home.,Beckett says that this night was a waste of time.,2,What happens after Esposito says that the room is all clear?,130147,Castle,24.21-34.91,castle_s02e14_seg02_clip_23,Someone shoots at Castle and shatters a glass tank. 8109,Anaphylaxis.,Dermatitis.,Hives.,Eczema.,Flatulence.,0,What condition did House ask Wilson tied with Heart Failure when he was sitting on the sofa?,130148,House M.D.,0-4.55,house_s02e16_seg02_clip_10,Anaphylaxis. 8110,Because Curt missed Robin but she didn't show up last night,Because Curt missed Robin but she didn't call last night,Because Curt missed Robin but she didn't texted him,Because Curt missed Robin but she didn't know,Because Curt missed Robin but she didn't care,1,Why was Curt really hurt after Robin said what are you talking about,130149,How I Met You Mother,23.19-32.96,met_s03e11_seg02_clip_04,Because Curt missed Robin but she didn't call last night 8111,a jerk,a hero,a coward,a terrorist ,nothing,2,what did park call the patient after watching the video they uploaded?,130150,House M.D.,72.87-79.92,house_s08e15_seg02_clip_00,a coward 8112,Ted found a dog.,Ted found a box of chocolates.,Ted found a fedora and a whip.,Ted found a book.,Ted found a model of a building.,2,What did Ted found after opening the gift?,130151,How I Met You Mother,10.28-79.05,met_s05e01_seg01_clip_02,Ted found a fedora and a whip. 8113,Because he hates the guitar,Because they are playing a sad song, Because he is concentrating on the video game,Because he would rather be singing,Because he is nervous that Leonard will be mad,2,Why does Sheldon look serious when he is playing the guitar? ,130152,The Big Bang Theory,9.06-18.74,s02e15_seg01_clip_00, Because he is concentrating on the video game 8114,The apartment complex,The Office,The facility ,The Plaza,The Police Department ,2,Where did Castle say Sophia should have left Castle and Beckett after she pulled a gun on them,130153,Castle,47.32-83.76,castle_s04e16_seg02_clip_23,The facility 8115,Thirteen,Taub,Chase,Foreman,Masters,4,What was checking Ramon's heartbeat when he was in bed? ,130154,House M.D.,44.63-50.61,house_s07e08_seg02_clip_17,Masters 8116,because he didn't want to be a doctor anymore,because he was stealing sleep in the bathroom,because he had better surgeries than she did,because he lost one of the patient's charts,because he had been doing it without her,4,Why is Meredith shocked at George after she told him she was tired,130155,Grey's Anatomy,7.91-26.05,grey_s01e02_seg02_clip_07,because he had been doing it without her 8117,Can of soda,thermos,Spare change,Book,Camera,0,What is in front of Raj's lunch tray when he's sitting with Howard and Leonard?,130156,The Big Bang Theory,0-4.88,s01e13_seg02_clip_07,Can of soda 8118,Castle has copies of Amir's plane tickets,Castle got a detective to follow him ,Amir's girlfriend is a double agent who reports his whereabouts back to Castle,Castle has his driving data,Castle has hacked into the location finder on Amir's computer.,3,How has Castle managed to track Amir when he shows Beckett the evidence on his computer.,130157,Castle,75.42-80.38,castle_s03e16_seg02_clip_23,Castle has his driving data 8119,the cafateria ,Leonards lab ,Sheldon's office ,the comic book shop ,Pennys apartment,1,What room does Howard go to when looking for Leonard?,130158,The Big Bang Theory,10.44-15.8,s07e04_seg02_clip_09,Leonards lab 8120,Thirteen was killing irene,Kutner was trying to kill irene,Kutner and thirteen were trying to stick a needle in her arm in a rough manner,Bugs were all over irene,Irene was on fire,2,What was irene dreaming of before thirteen woke her up in her room?,130159,House M.D.,26.69-42.52,house_s04e04_seg02_clip_16,Kutner and thirteen were trying to stick a needle in her arm in a rough manner 8121,Circle,Square,Oval,Triangle,Star,1,What shape were the lights in the ceiling when the team was walking down the hallway?,130160,Castle,18.68-28.64,castle_s04e16_seg02_clip_23,Square 8122,Red,Blue,Green,Grey,Yellow,3,"What color is the shirt Castle is wearing when he say's ""Everyone, I have some...""?",130161,Castle,0-9.53,castle_s08e13_seg02_clip_26,Grey 8123,A cooler.,His shoes.,A towel.,A can of beer.,A radio. ,3,What was Joey holding when Rachel blew a horn?,130162,Friends,36.01-40.58,friends_s07e03_seg02_clip_05,A can of beer. 8124,Tanner says Beckett can go.,Esposito says Beckett can go.,Smith says Beckett can go.,Kaufman says Beckett can go.,Nannim says Beckett can go.,3,Who tells Beckett she can go before she says Collins is wrong about the cases he referenced?,130163,Castle,0-27.34,castle_s07e23_seg02_clip_14,Kaufman says Beckett can go. 8125,Emery,Alice,Evelyn,Ellis,Allison,3,What is the name of the patient Cristina is working on when doing the test?,130164,Grey's Anatomy,19.72-31.65,grey_s03e14_seg02_clip_06,Ellis 8126,In the cafeteria,In an office,In the elevator,In the operating room,In a Taco Bell,1,Where are Wilson and House when they are discussing pain?,130165,House M.D.,0-9.56,house_s05e01_seg02_clip_04,In an office 8127,Princess Leia ,Wonder Woman,Harley Quin,Xena Warrior Princess,Lieutenant Chloe,4,Who does Beckett tell Castle she liked to dress up as before she tells him not to make fun of her,130166,Castle,9.04-12.66,castle_s05e06_seg02_clip_21,Lieutenant Chloe 8128,She puts on lipstick.,She puts on glasses.,She ties back her hair.,She changes into a skirt.,She zips up her jacket.,4,What adjustment does Beckett make before going to talk with Mr caraway?,130167,Castle,49.51-56.27,castle_s02e16_seg02_clip_16,She zips up her jacket. 8129,Raj clasps his hands together and places them on the table.,Raj kisses Bernadette.,Raj calls Howard crazy.,Raj leaves the table.,Raj begins to stand.,0,What does Raj do after Bernadette puts his lemonade in front of him?,130168,The Big Bang Theory,4.48-8.96,s04e23_seg02_clip_00,Raj clasps his hands together and places them on the table. 8130,Amy is upset because Sheldon breaks up with her,"Amy is upset because she followed all of the protocols set forth in their relationship agreement, and Sheldon still is not cooperating. ",Amy is upset because Sheldon forgot her birthday,Amy is upset because Sheldon steps on her toe,Amy is upset because Sheldon cheated on her with another woman,1,Why does Amy get upset after Sheldon stands up from his seat and walks to his desk?,130169,The Big Bang Theory,36.59-57.02,s05e19_seg01_clip_01,"Amy is upset because she followed all of the protocols set forth in their relationship agreement, and Sheldon still is not cooperating. " 8131,Barney was in the kitchen.,Barney was standing in his room,Barney was walking outside.,Barney was sitting on the bed.,Barney was laying on the bed. ,3,Where was Barney when Loretta was holding his hand?,130170,How I Met You Mother,0-5.76,met_s06e02_seg02_clip_17,Barney was sitting on the bed. 8132,Chandler said there was no Statue of food.,Chandler said there was no Dracula.,Chandler said there was no Blue House.,Chandler said there was no Count Rushmore.,Chandler said there was no Leaning Tower of Pizza.,3,What did Chandler say there wasn't when he was talking to Joey?,130171,Friends,0-4.8,friends_s03e01_seg02_clip_11,Chandler said there was no Count Rushmore. 8133,Leonard and Raj.,Penny and Amy.,Penny and her mom,The pizza man,Sheldons boss.,0,Who is sitting at the table when Sheldon walks away ?,130172,The Big Bang Theory,67.75-73.03,s05e12_seg01_clip_01,Leonard and Raj. 8134,Travis wanted to see what a dying human looked like.,Travis's wife cheated on Travis and he wanted to make her suffer.,Travis stabbed his wife by mistake when he was playing with a knife.,Travis thought his wife was going to leave him and he did not want her to.,Travis was a psychopath and murdered people for fun.,3,Why did Travis stab his wife when he was with her?,130173,Castle,83.87-87.09,castle_s02e03_seg02_clip_23,Travis thought his wife was going to leave him and he did not want her to. 8135,She was attacked by gang members.,She was in a head on collision.,Her husband beat her.,She was crushed underneath a cement pylon.,She fell down an elevator shaft.,3,How did Alex's pregnant patient get injured before she came to the ER?,130174,Grey's Anatomy,34.45-42.21,grey_s03e15_seg02_clip_24,She was crushed underneath a cement pylon. 8136,brown,blue,yellow,green,white,4,What color is the tablecloth at the table when the man keeps his hand for Monica?,130175,Friends,39.98-43.76,friends_s09e19_seg02_clip_17,white 8137,Lily wants to save for a house and not an apartment. ,Lily has a gambling addiction. ,Lily has a child to support. ,Lily is paying back her student loans. ,Lily has too much credit card debt. ,4,Why does Lily say that her and Marshall can't afford an apartment when she apologizes to Marshall?,130176,How I Met You Mother,0-11.14,met_s03e07_seg02_clip_03,Lily has too much credit card debt. 8138,Mia has hyperosmia ,Mia is psychic ,Mia is a wizard ,Mia guesses,Mia can't tell,0,How does mia say she knows how beckett feels about castle just by smelling her when talking to castle?,130177,Castle,12.4-16.99,castle_s08e05_seg02_clip_05,Mia has hyperosmia 8139,The phone rings,Joey stops by,She leaves,Monica stops by,Rachel trips,0,What happens after Jo Lynn picks up her pictures?,130178,Friends,15.76-22.06,friends_s09e09_seg01_clip_00,The phone rings 8140,About equations.,If it is his first date.,Superman.,Science.,Leonard..,1,What does Penny ask Sheldon when they are driving?,130179,The Big Bang Theory,31.19-46.94,s04e01_seg02_clip_06,If it is his first date. 8141,Popo.,Park.,Park's Father.,Park's Brother.,Park's neighbor.,0,Who does Chase first encounter when he enters?,130180,House M.D.,0-8.82,house_s08e16_seg02_clip_08,Popo. 8142,One hour.,Only 2 days.,Just a half hour.,Just 3 hours.,25 minutes.,3,How long did Raj say it took to make the whistle before Howard blows it?,130181,The Big Bang Theory,0-5.03,s06e14_seg02_clip_10,Just 3 hours. 8143,As N,As J,As L,As M,As A,3,How were the irregular appointments scheduled after checking the calendar?,130182,Castle,9.57-12.18,castle_s03e18_seg02_clip_08,As M 8144,The wrong medical chart,A skin rash on the patient ,A tumor on the new x-rays,A mistake never made ,The patient smoking again,1,Which symptom does Wilson think House may have seen before diagnosing to make a decision too early?,130183,House M.D.,20.92-32.49,house_s04e16_seg02_clip_14,A skin rash on the patient 8145,Rachael,Chandler,Phoebe,Ross,Joey,2,Who walked into the door when Monica answered the door?,130184,Friends,41.78-47.87,friends_s04e20_seg02_clip_07,Phoebe 8146,A whiteboard.,A lamp.,An x-ray.,A model brain.,A poster.,2,What was to the right of Cameron after House asked what flavor?,130185,House M.D.,0-3.67,house_s03e05_seg02_clip_12,An x-ray. 8147,A book,An hammer,A cane,A box,A syringe,4,What did House picked when he wanted to test for faking?,130186,House M.D.,3.62-16.29,house_s06e19_seg02_clip_02,A syringe 8148,Stacy thinks House feels like it is wonderful.,Stacy thinks House feels like it is serious.,Stacy thinks House feels like it is nice.,Stacy thinks House feels like it is funny.,Stacy thinks House feels like it is terrible.,3,How does Stacy think House feels when she discusses staying and talking to Mark?,130187,House M.D.,0-11.63,house_s02e11_seg02_clip_24,Stacy thinks House feels like it is funny. 8149,Standing in line,Driving in the car,Sitting at the kitchen table,Laying on the couch,Laying in bed,4,Where is Castle when he is talking to Beckett?,130188,Castle,81.02-90.02,castle_s07e02_seg02_clip_25,Laying in bed 8150,Sad.,Celebratory.,Scary.,Happy.,Playful.,1,What type of bells does House say he is guessing they are when he hears the sounds on the monitor?,130189,House M.D.,0-10.92,house_s02e08_seg02_clip_09,Celebratory. 8151,Robin,Lily,Marshall,Ted,Hannah,0,Who brings Barney soup when he's lying in bed?,130190,How I Met You Mother,3.41-27.91,met_s02e11_seg02_clip_09,Robin 8152,Dave,Tim,Tom,George,Joe,3,What person says Melanie had two co-workers when Ryan speaks with him?,130191,Castle,77.48-83.82,castle_s04e06_seg02_clip_22,George 8153,He slapped his knee,He gave him a hug,He pushed him,He gave him a little punch,He patted his shoulder,4,"What did Joey do after Chandler said ""Oh she's sorry, I feel better""",130192,Friends,38.72-42.71,friends_s01e03_seg02_clip_19,He patted his shoulder 8154,Prada has four years to start making maternity clothes.,Prada has two years to start making maternity clothes.,Prada has three years to start making maternity clothes.,Prada has ten years to start making maternity clothes.,Prada has seven years to start making maternity clothes.,0,How long does Prada have to start making maternity clothes when Rachel is making her plans.,130193,Friends,19.89-24.37,friends_s07e14_seg02_clip_11,Prada has four years to start making maternity clothes. 8155,Reminding Sheldon to appreciate the good things in his life,Kissing Sheldon,Giving Sheldon a hug,Asking if Sheldon wants to go get some coffee with her,Saying bad things about Sheldon's enemy,0,What does Amy do to try to comfort Sheldon before giving up and leaving?,130194,The Big Bang Theory,0-22.41,s10e09_seg02_clip_07,Reminding Sheldon to appreciate the good things in his life 8156,High blood pressure could be the cause of vasculitis,There was no mention of any condition,House said that elevated eosinophil count could cause the disease,Lung disease would cause elevated blood levels,HIV is the cause of CSV.,2,What did House say would cause a condition named Churg-Strauss vasculitis when talking to his co-worker,130195,House M.D.,0-3.56,house_s01e05_seg02_clip_01,House said that elevated eosinophil count could cause the disease 8157,A baseball,A tree,A bartender,A parked car,A mannequin,4,What did Jerry grab after Barney said something about a drunk audience?,130196,How I Met You Mother,24.64-34.37,met_s06e21_seg02_clip_09,A mannequin 8158,Monica,Ross,Rachel,Chandler,Phoebe,2,Who puts their hands over their mouth when they look at Julie?,130197,Friends,18.92-26.36,friends_s02e01_seg02_clip_03,Rachel 8159,Serena places the coffee on the table.,Serena walks out of the precinct with the coffee.,Serena hands her coffee back to Castle.,Serena hands her cup to Beckett.,Serena hands her cup to another passing detective.,2,Where does Serena put her cup of coffee after Beckett leaves the room?,130198,Castle,41.37-44.66,castle_s04e05_seg02_clip_26,Serena hands her coffee back to Castle. 8160,Looks out the window at her dad's house. ,Gives Joey and Chandler a hug.,Puts the car in drive and drives off.,Gets out of the car to meet her dad. ,Sticks her hand through a window in the Partition.,4,What does Phoebe do after Joey tells her that her dad will be lucky to have her?,130199,Friends,44.56-50.76,friends_s02e09_seg02_clip_17,Sticks her hand through a window in the Partition. 8161,He said he saw him just the day before,He said he saw him about a month ago,He said their last contact was six years ago,He said he saw him last year,He said he saw him about four years ago,2,"When did Garrett say he last had contact with the suspect when he was talking to Beckett, Castle and Gates?",130200,Castle,32.31-35.04,castle_s07e05_seg02_clip_17,He said their last contact was six years ago 8162,For what happened in new york before mark,For being absent,For being partly responsible for what happened to their marraige,For being indifferent,All of the above,4,"Why does Derek apologize after he walks in the door and finds the woman he married, reading?",130201,Grey's Anatomy,40.88-102.5,grey_s02e20_seg02_clip_25,All of the above 8163,calls Monica,orders coffee ,starts reading a book,ansewers the phone,leaves,4,What does Rachel do after talking to Ross and Joey at the coffee shop,130202,Friends,9.38-18.77,friends_s06e03_seg02_clip_19,leaves 8164,Zack Lindsey,Jack Lindey,Zack Zinger,Jack Bindie,Mike Lennon,0,Who did Beckett tell Jimmy she needs to know about after she put him in cuffs?,130203,Castle,49.57-66.38,castle_s03e21_seg02_clip_14,Zack Lindsey 8165,making fun of her,mocking her,being rude ,being annoying,being gross,1,What does Monica accuse chandler of doing before he leaves the room? ,130204,Friends,0-20.78,friends_s06e03_seg02_clip_03,mocking her 8166,Tech Agent Bob. ,Tech Agent Tory. ,Tech Agent Corey. ,Tech Agent Robin. ,Tech Agent Beckett. ,1,Who is helping Esposito when he is working on identifying someone?,130205,Castle,86.04-87.42,castle_s05e21_seg02_clip_16,Tech Agent Tory. 8167,Sheldon was hit with a hockey puck.,Sheldon was hit with a golf club. ,Sheldon was hit with a baseball.,Sheldon was hit with a tennis racket.,Sheldon was hit a baseball bat. ,0,What other sporting equipment did Sheldon tell Amy he was hit with as a kid after showing her clock radio's and calculators?,130206,The Big Bang Theory,0-50.31,s09e19_seg02_clip_12,Sheldon was hit with a hockey puck. 8168,house,chase,Cameron,no one,deran,2,who does jasper want to come and do medical tests on him when he is talking to foreman?,130207,House M.D.,54.3-60.09,house_s03e19_seg02_clip_19,Cameron 8169,Painting her toenails.,Sitting on the couch.,Washing dishes.,Making spaghetti.,Kneeling on the coach.,4,"What was Rachel doing when she said ""hey"" to Chandler?",130208,Friends,0-1.86,friends_s03e03_seg02_clip_04,Kneeling on the coach. 8170,A cell phone.,A blue pen.,Medical records.,A note pad. ,Nothing.,0,What did Cameron have in her hand when Chase said Einthoven was dead?,130209,House M.D.,31.51-35.01,house_s02e12_seg02_clip_01,A cell phone. 8171,Because Sheldon Interfered by opening the door ,Because his date lost interest,Because his mother called him,Because an earthquake had started,Because he needed to go to the bathroom.,0,Why did Leonard get irritated after he started kissing his date?,130210,The Big Bang Theory,36.2-59.83,s05e15_seg02_clip_12,Because Sheldon Interfered by opening the door 8172,Pushes him into the street,Ignores him,Turns around to talk to him,points a gun at him,runs away from him,2,WHat does Beckett do when Leo is panicking?,130211,Castle,55.42-65.78,castle_s05e08_seg02_clip_07,Turns around to talk to him 8173,a file folder,a drink,a book,nothing ,her jacket,0,what does gates have in her hand when she is talking to castle and beckett?,130212,Castle,78.28-86.02,castle_s06e10_seg02_clip_23,a file folder 8174,Joey,Phoebe,Emily,Rachel,Monica,4,Who is the first person to talk after the group walks into the museum?,130213,Friends,18.39-26.36,friends_s06e22_seg02_clip_01,Monica 8175,Monica is surprised because she finds out Ethan is in high school.,Monica is surprised because she finds out Ethan has been watching her for weeks at her restaurant.,Monica is surprised because she finds out Ethan wants to marry her.,Monica is surprised because she finds out Ethan is only sleeping with her as part of a bet.,Monica is surprised because she finds out Ethan is really Chandler's younger brother.,0,Why is Monica surprised when lying in bed with Ethan?,130214,Friends,52.72-62.24,friends_s01e22_seg02_clip_10,Monica is surprised because she finds out Ethan is in high school. 8176,On the couch,Laying in bed,Sitting in the kitchen,Walking out the front door,In the bathroom,1,Where is Bernadette and Howard talking when she kicks him?,130215,The Big Bang Theory,9.6-18.89,s10e06_seg02_clip_02,Laying in bed 8177,turn around,punch him,kiss the girl,walk off,dance,3,what did foreman do after tapping him on the shoulder,130216,House M.D.,40.49-48.31,house_s07e08_seg02_clip_17,walk off 8178,Stuart puts on a hat.,Stuart jumps up and out of the Hot Tub.,Stuart drinks a beer.,Stuart spreads his arms in the water.,Stuart stands up in the Hot Tub.,3,What does Stuart do when Howard looks out the window?,130217,The Big Bang Theory,33.91-36.61,s10e05_seg02_clip_05,Stuart spreads his arms in the water. 8179,Lanie thinks its a knife,lanie is dumb,Lanie doesn't work with guns,Lanie has never seen a bullet like it,Lanie isn't in charge of finding the bullet,3,Why can't lanie identify the bullet found in the victim after he was shot?,130218,Castle,76.11-84.08,castle_s03e04_seg02_clip_04,Lanie has never seen a bullet like it 8180,Penny ignored Raj like she hadn't heard the question. ,"Penny said no, Raj could not tell people he ruined her for white men. ",Raj kept asking until Penny got up and left. ,Penny told Raj he was being ridiculous. ,Penny agreed that Raj had indeed ruined her for white men. ,1,"What was Penny's response after Raj wanted to tell people he ""ruined her for white men""? ",130219,The Big Bang Theory,41.28-48.53,s05e01_seg02_clip_11,"Penny said no, Raj could not tell people he ruined her for white men. " 8181,At a strip club,At his house,At the skating rink,At a massage parlor,In the basement of a Pizza Hut,4,Where did Ross say the bachelor party wouldn't be when he was talking to Chandler?,130220,Friends,38.74-49.94,friends_s04e22_seg02_clip_03,In the basement of a Pizza Hut 8182,A boat,A car,A restaurant ,The couch,In bed,4,Where are Castle and Becket when they are talking ,130221,Castle,0.46-8.65,castle_s06e04_seg02_clip_00,In bed 8183,She was crying.,She was standing up.,She was laying down on the sick bed.,She was eating.,She was sitting down.,2,What was Arlene doing when said something about liking her more than you?,130222,House M.D.,67.52-77.42,house_s07e11_seg02_clip_17,She was laying down on the sick bed. 8184,She was making coffee.,She was looking at files.,She was putting clothes on.,She was searching for keys.,She was pointing her finger while talking.,4,What did Hayley Shipton do when she mentioned Castle was chickening out?,130223,Castle,34.8-39.32,castle_s08e15_seg02_clip_03,She was pointing her finger while talking. 8185,Two of them would push their thoughts on him and one would ask him what he wanted to do. ,They would get up and leave. ,They would try and copy his idea. ,They would try to sell his idea to the highest bidder. ,They would laugh at him. ,0,What does Raj say he predicted would happen when he told the guys about his wor?,130224,The Big Bang Theory,59.58-65.42,s08e21_seg01_clip_01,Two of them would push their thoughts on him and one would ask him what he wanted to do. 8186,Ross has to take off his hat.,Ross has to take off his shoes.,Ross has to take off his coat.,Ross has to take off his backpack.,Ross has to take off his glasses.,3,What does Ross have to take off when he ask Rachel to hold Ben?,130225,Friends,50.04-59.5,friends_s02e20_seg02_clip_07,Ross has to take off his backpack. 8187,Ross is a clown,Ross is an armadillo,Ross is a bunny,Ross is a cat,Ross is a raccoon ,1,What is Ross dressed as when he is with the kids?,130226,Friends,57.69-62.03,friends_s07e10_seg02_clip_18,Ross is an armadillo 8188,He stops the music and dancing.,He continues to get naked.,He takes off his police badge.,He leaves the party.,He sings.,0,What does Roy do after he has exposed his upper chest to Phoebe?,130227,Friends,83.24-89.02,friends_s10e11_seg02_clip_11,He stops the music and dancing. 8189,Jerry starts dancing on the table. ,Jerry orders a drink. ,Jerry does 4 consecutive shots. ,Jerry punches someone. ,Jerry just decides to go home. ,2,What does Jerry do to appease Barney after he requests Crazy Jerry? ,130228,How I Met You Mother,7.95-31.21,met_s06e21_seg02_clip_04,Jerry does 4 consecutive shots. 8190,Feeding Barney soup.,Making dinner for Barney.,Playing the violin for Barney.,Finding the television remote.,Cleaning up Barney's used tissues.,2,What is Nora doing when Barney is lying down on the couch holding a box of tissues?,130229,How I Met You Mother,48.82-54.31,met_s06e18_seg02_clip_00,Playing the violin for Barney. 8191,Joey,A cat,A wedding dress.,A mouse,The TV,2,What are Monica and Phoebe admiring when they are sitting on the sofa?,130230,Friends,27.85-35.77,friends_s07e17_seg02_clip_10,A wedding dress. 8192,Ryan,The king,Lanie,Lars,The victims sister.,0,"Who was saying, ""the victim's sister is meeting me at the precinct,"" when Castle is walking out?",130231,Castle,56.08-64.16,castle_s08e17_seg02_clip_02,Ryan 8193,Beckett told Castle she got his voice mail message.,Beckett told Castle she got his email message.,Beckett told Castle she got his Facebook message.,Beckett told Castle she got his text.,Beckett told Castle she got a notification about his Tweet.,3,How did Beckett approach Castle when she met up with him in the break room?,130232,Castle,0-2.71,castle_s06e03_seg02_clip_14,Beckett told Castle she got his text. 8194,He becomes visibly upset,he throws it in the trash,he looks guilty,he chokes on his coffee,he laughs,0,What happens when Castle sees the article in the paper,130233,Castle,85.74-87.77,castle_s06e13_seg02_clip_26,He becomes visibly upset 8195,"What her ex boyfriend was really being ""tutored"" on.",A letter from a famous celebrity.,What Leonard really meant in their last conversation.,A reaction from the medicine she's taking.,A physicist's joke.,4,"What does Penny say she ""got"" after Sheldon turns on the TV?",130234,The Big Bang Theory,15.98-18.94,s02e19_seg02_clip_11,A physicist's joke. 8196,Cristina,Meredith,Derek ,Hannah,Violet,4,Who is Sam talking to when drinking his coffee?,130235,Grey's Anatomy,54.11-67.32,grey_s03e23_seg02_clip_02,Violet 8197,"Mrs. Wolowitz says, the chain is not on the door.","Mrs. Wolowitz says, I'll be down immeditely to open the door.","Mrs. Wolowitz says, I thought you wouldn't be home until tomorrow.","Mrs. Wolowitz says, who are you?","Mrs. Wolowitz says, I'm not opening it. ",2,What does Mrs. Wolowitz say after Howard informs her the chain is on the door?,130236,The Big Bang Theory,34.4-42.11,s06e04_seg02_clip_10,"Mrs. Wolowitz says, I thought you wouldn't be home until tomorrow." 8198,Potter has stripes on his shirt.,Potter has a stain on his shirt.,Potter has polka dots on his shirt.,Potter has a pin on his shirt.,Potter has a badge on his shirt.,1,What does Potter have on his shirt when he is being interviewed by Gates?,130237,Castle,4.17-19.04,castle_s06e17_seg02_clip_17,Potter has a stain on his shirt. 8199,Simmons tells Detective Beckett that she is harrassing him because he was convicted of raping her friend.,Simmons suggests that Detective Beckett is attracted to him and had taken to stalking him.,Simmons says that Detective Beckett has a grudge against him he got her fired from a previous job.,Simmons says Detective Beckett is upset because he got her hair wet. ,Simmons suggests that Detective Beckett is after him because she is a jilted ex-lover. ,3,Why does Simmons suggest Detective Beckett was investigating him when he finds her peeking in her car?,130238,Castle,0-7.14,castle_s06e22_seg02_clip_06,Simmons says Detective Beckett is upset because he got her hair wet. 8200,Video games,Basketball,Darts,Foosball ,cards,2,What is chandler playing when Joey walks into the room?,130239,Friends,48.08-60.48,friends_s03e08_seg02_clip_11,Darts 8201,lasagna,chocolate,pie,cheesecake,pasta,3,What did Ted's date eat when he took her to the table?,130240,How I Met You Mother,46.83-61.72,met_s03e13_seg02_clip_16,cheesecake 8202,Jeremy,Ryan,Beckett,Castle,Esposito,3,Who is in the medical room before Perlmutter walks in?,130241,Castle,59.21-63.24,castle_s07e11_seg02_clip_08,Castle 8203,A Bird,A Dog ,A Wolf,A Cat,A Horse,3,What does Ross say Phoebe's mom reminds him of after she leaves the room?,130242,Friends,24.11-31.12,friends_s04e02_seg02_clip_08,A Cat 8204,Because Marshall said he kidnapped him.,Because Marshall said it was his fault.,Because Marshall look at his food.,Because Marshall said they left Lilly.,Because Marshall kidnapped Ted.,1,Why is Ted surprised after Marshall speaks?,130243,How I Met You Mother,44.3-47.62,met_s05e05_seg02_clip_12,Because Marshall said it was his fault. 8205,A meatball sub.,Three chocolate mousses to go. ,A bottle of wine.,A doggie bag.,French fries. ,1,What did Lorraine ask for before Joey decided to leave the restaurant?,130244,Friends,10.8-18.61,friends_s01e14_seg02_clip_06,Three chocolate mousses to go. 8206,He cuts a piece of paper with the groups goals on it.,He takes removes a picture from the brown bulletin board and cuts it. ,He cuts a red ribbon from the brown bulletin board in front of him.,He picks up a piece of a pair of scissors and cuts the gift wrap bow from their anniversary present.,He picks up a pair of scissors and cuts their happy anniversary card that everyone had been sigining. ,2,What does Marshall do before he says Zoey and the captain are getting divorced?,130245,How I Met You Mother,4.8-10.89,met_s06e15_seg02_clip_17,He cuts a red ribbon from the brown bulletin board in front of him. 8207,The TV remote.,A new pen.,A new tie for Leonard.,A cake.,A friendship bracelet. ,0,What was Sheldon holding when he told Leonard that he was his best friend?,130246,The Big Bang Theory,45.1-55.84,s04e05_seg01_clip_00,The TV remote. 8208,Ross,Joey,Monica,Their neighbor,Phoebe,1,Who spots Rachel and Chandler when they're on the floor?,130247,Friends,20.59-33.61,friends_s07e11_seg02_clip_20,Joey 8209,Raj should be wearing the pajamas his mom sent,Raj should be wearing the boxers his mom sent,Raj should be wearing the socks his mom sent,Raj should be wear the jeans his mom sent,Raj should be wearing the t-shirt his mom sent,1,What should Raj be wearing when his mom talked to him?,130248,The Big Bang Theory,33.87-45.46,s01e08_seg02_clip_12,Raj should be wearing the boxers his mom sent 8210,the couch,Monica,Phoebe,the refrigerator,the television,3,What is behind Chandler when Joey tells him to name one error he has made?,130249,Friends,0-5.05,friends_s06e20_seg02_clip_10,the refrigerator 8211,A pair of tweezers from Becket'ts desk.,His fingers.,A pair of scissors.,He attaches a piece of tape and pulls it.,Castle hols the camera while Beckett gently pulls the tape out with her hands.,0,What does Castle uses to pull out a piece of film tape when he sees it and realizes it can be used for evidence?,130250,Castle,15.68-25.98,castle_s06e21_seg02_clip_21,A pair of tweezers from Becket'ts desk. 8212,Sheldon saw a new Costco being built.,Sheldon saw a new Putt-Putt being built.,Sheldon saw a new Walmart being built.,Sheldon saw a new comic book store being built.,Sheldon saw a new venue for Comic-Con being built.,1,What did Sheldon see being built after he talked to Penny about getting into a deadly car accident?,130251,The Big Bang Theory,33.38-39.09,s01e04_seg02_clip_03,Sheldon saw a new Putt-Putt being built. 8213,Going over an x-ray,Taking a break,Working at her computer ,Looking at some bloodwork,Performing an autopsy,4,What was the medical examiner doing when Beckett came to thank to her? ,130252,Castle,83.32-92.58,castle_s06e07_seg02_clip_15,Performing an autopsy 8214,A lamp,Flowers,Cup,A sandwich,A jar of pens,2,What is in front of Cuddy's laptop when she's sitting at her desk?,130253,House M.D.,44.74-52.02,house_s07e13_seg02_clip_26,Cup 8215,black and white,green and white,blue and white,red and black,brown and white,2,What color is Raj sweater when he was talking to Bernadette?,130254,The Big Bang Theory,19.24-22.79,s09e19_seg02_clip_12,blue and white 8216,A coffee maker.,A portable vacuum.,A television.,A radio.,The faucet.,1,What did the mom turn on when she was standing by the counter?,130255,Friends,47.42-53.12,friends_s01e02_seg02_clip_09,A portable vacuum. 8217,Lara said her father dropped her off at the market.,Lara said she left and never went back.,Lara said the government agents knocked on the door.,Lara said her father told her to hide in the closet.,Lara said she never saw her father again.,4,What did Lara say happened after her father gave her money to buy food?,130256,Castle,33.3-38.31,castle_s02e15_seg02_clip_23,Lara said she never saw her father again. 8218,A file,A bottle,A jacket,A bucket,An IV fluid,4,What did House had in his hand before he hanged it on the stand,130257,House M.D.,64.99-77.45,house_s08e03_seg02_clip_08,An IV fluid 8219,Ali found Chase in her bedroom.,Ali found Chase in her bathroom.,Ali found Chase in her office.,Ali found Chase in her apartment.,Ali found Chase in her car.,1,Where did Ali say she found Chase when she came by to change her shoes?,130258,House M.D.,26.56-32.41,house_s07e10_seg02_clip_24,Ali found Chase in her bathroom. 8220,His new mixtape,His male sex organ,The middle finger,The surgical textbook,Their lunch,3,What does Alvie show House when he's waiting in the car for him?,130259,House M.D.,72.02-79.22,house_s06e20_seg02_clip_19,The surgical textbook 8221,she is at a hotel,she is at the cafe,she is at Ross's apartment,She is at Monica's apartment ,she is at a club,3,Where is Pheobe when she is standing with two women and a man at a party?,130260,Friends,47.06-50.64,friends_s02e22_seg02_clip_13,She is at Monica's apartment 8222,Rachel's hair was done as pigtails.,Rachel's hair was done in a bun on the back of her head.,Rachel's hair was done as a ponytail.,Rachel's hair was done as a single french braid.,Rachel's hair was down.,1,How was Rachel's hair done when the monkey was caged?,130261,Friends,0-25.68,friends_s01e19_seg02_clip_18,Rachel's hair was done in a bun on the back of her head. 8223,Odette's grandfather died 3 years ago,Odette's grandfather died 4 years ago,Odette's grandfather died 5 years ago,Odette's grandfather died 6 years ago,Odette's grandfather died 7 years ago,0,Who does Lynchberg say died 3 years ago and caused Odette's spending to increase when he discusses credit card charges with Beckett?,130262,Castle,36.74-51.9,castle_s04e18_seg02_clip_06,Odette's grandfather died 3 years ago 8224,Rachel said what to Chandler.,Rachel said what to Phoebe.,Rachel said what to Joey.,Rachel said what to Monica.,Rachel said what to herself.,3,Who did Rachel say what to when she was arguing with Ross?,130263,Friends,0-4.73,friends_s03e17_seg02_clip_16,Rachel said what to Monica. 8225,Distract him.,Give him pain pills,Give him moral support,Give him a prescription to stop him throwing up,Tell Cuddy he is all done detoxing,3,What does House want Wilson to do to help him when he is detoxing,130264,House M.D.,70.77-89.02,house_s03e10_seg02_clip_14,Give him a prescription to stop him throwing up 8226,Ted pointed at the television screen and said great scene.,Ted pushed Stella away.,Ted told Stella that he wasn't interested in kissing her.,Ted told Stella that he would prefer to watch the movie.,Ted told Stella that they should go somewhere more private.,0,What did Ted do when Stella began to kiss him?,130265,How I Met You Mother,30.79-37.07,met_s04e01_seg02_clip_12,Ted pointed at the television screen and said great scene. 8227,That she hoped he cleaned his hair out of the drain,That she hoped he flushed the toilet,That she wished Rachel had never started dating him,That he was inconsiderate,That she was telling their parents on him,0,What did Monica tell Ross after he walked out of the bathroom,130266,Friends,24.1-47.41,friends_s02e17_seg02_clip_02,That she hoped he cleaned his hair out of the drain 8228,In the hallway,On the floor ,in the crib,At home,On the desk,4,Where is rachels baby when she is in the office with gavin?,130267,Friends,32.11-37.22,friends_s09e11_seg02_clip_18,On the desk 8229,Julie is sitting on the couch between Ross and Chandler,Julie is sitting on the dining room chair.,Julie is sitting on the floor.,Julie is sitting on the ottoman.,Julie is sitting on the table.,0,Where is Julie sitting when they are in the apartment?,130268,Friends,1.18-59.03,friends_s02e04_seg02_clip_14,Julie is sitting on the couch between Ross and Chandler 8230,Sexual transmitted disease,Urinary tract infection,Yeast infection,Having great skin,Getting someone pregnant ,1,What did Taub say it could lead to when having lots of sex?,130269,House M.D.,0-6.75,house_s04e11_seg02_clip_01,Urinary tract infection 8231,Will says his eyes feel like they're on fire.,Will says his eyes feel like they're submerged in water.,Will says his eyes feel like they're covered in ice.,Will says his eyes feel like they're being stabbed.,Will says his eyes feel like they're about to explode.,0,How does Will tell the team his eyes feel when they rush into the exam room?,130270,House M.D.,62.88-72.52,house_s08e14_seg02_clip_21,Will says his eyes feel like they're on fire. 8232,House takes out paper,House takes out a book,House takes out pills,House takes out a key,House takes out a cup,2,What does House take out of his clothing after he talks to the prisoner?,130271,House M.D.,20.78-25.97,house_s08e01_seg02_clip_15,House takes out pills 8233,Raj laughed out loud.,Raj called Howard on the phone.,Raj put the bottle down and got cake to eat from the refrigerator.,Raj ran in a circle., Raj went to the bathroom.,2,What did Raj do after he discovered the wine bottle was empty?,130272,The Big Bang Theory,48.21-55.53,s04e07_seg02_clip_00,Raj put the bottle down and got cake to eat from the refrigerator. 8234,Controls the toy plane.,Holds Bernadette's hand.,Holds the control.,Drank coffee.,Walk away.,2,What did Sheldon do when the toy plane was flying?,130273,The Big Bang Theory,8.64-52.38,s08e22_seg02_clip_16,Holds the control. 8235,A doll.,A teddy bear.,An anvil.,Boots.,The diaper bag.,1,What was Joey carrying in the baby carrier when he was Joey were walking down the sidewalk?,130274,Friends,48.74-54.25,friends_s02e06_seg02_clip_03,A teddy bear. 8236,On the coffee table ,Shoe box,Trampoline ,Under the couch,in the toilet,0,Where did Marshall announce her keys were when she explained that she couldnt find her keys ?,130275,How I Met You Mother,14.26-15.4,met_s02e07_seg02_clip_18,On the coffee table 8237,Grey,red,blue,white,black,0,"What color is the shrt Ted is wearing when he say's ""Maybe in the winter...""?",130276,How I Met You Mother,0-9.99,met_s03e01_seg02_clip_16,Grey 8238,she would kill her brother,she would die ,he would die,the other child would die ,she would kill her sister,3,What did House say would happen after his patient refuses her parents bone marrow?,130277,House M.D.,33.12-40.49,house_s05e08_seg02_clip_24,the other child would die 8239,Three hours,A week,Two days,Half a day,An hour ,2,"How long past his ""bedtime"" does House say it is before he leaves his team in his office?",130278,House M.D.,25.21-42.02,house_s03e16_seg02_clip_17,Two days 8240,He was watching a movie,He was writing ,He was reviewing an x-ray,He was playing with a rubber band,He was stirring a cup of coffee,3,What was House doing when the janitor opened the door?,130279,House M.D.,55.13-64.76,house_s04e01_seg02_clip_25,He was playing with a rubber band 8241,The Easter Bunny,Anne Frank,Eli Manning,Mrs. Klaus,A teacher,1,Who does Penny say she would be playing in the theater before she realized she was talking to Sheldon?,130280,The Big Bang Theory,0-52.96,s02e17_seg02_clip_09,Anne Frank 8242,It took her 7 minutes. ,It took her 5 minutes. ,It took her 10 minutes. ,It took her 3 minutes. ,It took her 2 minutes. ,4,How long did it take for Penny to fall asleep when she was at the seminar?,130281,The Big Bang Theory,10.8-15.91,s10e02_seg02_clip_05,It took her 2 minutes. 8243,cookies,gummie bears,bread sticks,pizza slices,popcorn,4,What food item was on the floor beside Rachel when House asked her about eating coins?,130282,House M.D.,6.21-25.29,house_s07e05_seg02_clip_06,popcorn 8244,He patted Chandler on the back.,He sat down.,He walked out.,He slammed the door.,He stood up.,4,What did Joey do after Ross said he already asked Chandler?,130283,Friends,23.64-29.31,friends_s04e22_seg02_clip_00,He stood up. 8245,A new dinner recipe,A big work assignment,A movie scene ,A new business idea,A new invention,2,What does Penny mention she is working on when she is talking to Leonard?,130284,The Big Bang Theory,0-7.32,s07e21_seg01_clip_00,A movie scene 8246,Sad.,Angry.,Fearful.,Aroused.,Excited.,1,How does Leonard feel after Sheldon yells at him to find Waldo?,130285,The Big Bang Theory,15.13-35.61,s06e04_seg02_clip_12,Angry. 8247,Mike and Phoebe feel sad and conflicted.,Mike and Phoebe feel hatred towards each other.,Mike and Phoebe feel annoyed with Chandler.,Mike and Phoebe feel annoyed with Monica.,Mike and Phoebe feel like they don't love each other anymore.,0,How do Mike and Phoebe feel when they are having their argument about marriage?,130286,Friends,0-36.98,friends_s09e16_seg02_clip_22,Mike and Phoebe feel sad and conflicted. 8248,Patients ,Older cougars ,Poets ,Gold-diggers ,Chicks with no teeth,4,Who does House say turns him on after Wilson recites a love poem for him? ,130287,House M.D.,29.63-37.48,house_s01e08_seg02_clip_08,Chicks with no teeth 8249,Wilson is in the break room,Wilson is cooking,Wilson is looking over at the doctors performing surgery,Wilson is taking a nap,Wilson is fixing up some food,2,"Where is Wilson, when there is surgery going on?",130288,House M.D.,69.63-80.94,house_s02e02_seg02_clip_11,Wilson is looking over at the doctors performing surgery 8250,Shut up and give me the paperwork.,I want more money.,Okay.,No.,I get to keep Rosko(their dog).,3,What did Rebeca say she told Sam right after he begged her to sign divorce papers?,130289,Castle,66.73-76.33,castle_s04e08_seg02_clip_25,No. 8251,She drinks some water.,She helps him out of the chair.,She holds her hand out to shake his.,She starts texting on her phone.,She takes a bite of her pickle.,4,What does Mandy do after she asks Leonard what can I do for you?,130290,The Big Bang Theory,4.38-11.09,s09e02_seg02_clip_11,She takes a bite of her pickle. 8252,Raj sat on the couch.,Raj was eating.,Raj was sleeping.,Raj was holding a pillow.,Raj was calling a Howard.,0,What was doing Raj when Penny holded a dish with food?,130291,The Big Bang Theory,3.91-71.03,s07e18_seg02_clip_17,Raj sat on the couch. 8253,The couch.,The bathroom door.,The table.,The hospital bed.,The computer.,3,What was Meredith standing next to when she said something to Esme about chemo?,130292,Grey's Anatomy,57.24-65.88,grey_s02e08_seg02_clip_18,The hospital bed. 8254,Stuart said the food was cake.,Stuart said the food was molded bread.,Stuart said the food was old cheese.,Stuart said the food was carrots.,Stuart said the food was ham.,3,What did Stuart say the food was when Raj was holding it?,130293,The Big Bang Theory,12.4-16.13,s08e23_seg02_clip_11,Stuart said the food was carrots. 8255,They were all involved in a government cover up together.,From gradeschool,They were cousins,They worked together,From highschool,4,How did the older Phoebe say she knew Lily and Frank when she's in the kitchen?,130294,Friends,34.01-60,friends_s03e25_seg02_clip_04,From highschool 8256,Sheldon put nothing in the fridgw,Sheldon put the soda in the fridge,Sheldon put the leftovers in the fridge,Sheldon put the veggies in the fridge,Sheldon put the milk in the fridge,4,What did Sheldon put in the fridge when he was talking to Leonard,130295,The Big Bang Theory,0-7.24,s01e10_seg02_clip_01,Sheldon put the milk in the fridge 8257,Ryan,Castle,Eric,the girl,Tiffany,0,Who made a toast when the people were together?,130296,Castle,1.19-17.02,castle_s04e04_seg02_clip_27,Ryan 8258,They are over loaded with cases,He did not agree to accept a new patient,Wilson knows House is going on vacation tomorrow,Wilson knows that house is leaving for a conference,There are budget issues,1,Why does House feel seem surprised when Wilson is telling him about a new patient?,130297,House M.D.,35.63-48.59,house_s02e05_seg02_clip_00,He did not agree to accept a new patient 8259,"Ali said she went to dinner with her sister, too.","Ali said she went to church with her sister, too.","Ali said she shared a room with her sister, too.","Ali said she went to rehearsal with her sister, too.","Ali said she ate breakfast with her sister, too.",2,What did Ali say she also did with her sister when Chase said she was at the wedding with her sister?,130298,House M.D.,23.86-27.01,house_s07e10_seg02_clip_24,"Ali said she shared a room with her sister, too." 8260,Dead Poet's Society,Casablanca,Old Yeller,It's a Wonderful Life,Top Gun,0,What movie does Fake Monica say Changed her life when she is sitting at the table?,130299,Friends,36.92-52.22,friends_s01e21_seg02_clip_11,Dead Poet's Society 8261,Marsha,Alexis,Beckett,Tim,Vikram,1,"Who is standing next to Castle when AJ attacks the policemen and starts shooting at Castle, Ryan, and Esposito?",130300,Castle,75.86-96.03,castle_s08e01_seg02_clip_25,Alexis 8262,House,Cuddy,Thirteen,Cameron,Taub,1,Who did Wilson join when he sat down?,130301,House M.D.,77.45-83.68,house_s05e07_seg02_clip_07,Cuddy 8263,Because Barney has a stomacache,Because the play ended.,Because the play is long.,Because the play is boring.,Because Barney is sleepy.,3,Why Barney wanted to leave the theater when he sat next to Marshall?,130302,How I Met You Mother,26.53-51.02,met_s02e16_seg02_clip_07,Because the play is boring. 8264,Howard's bad breath,noisy neighbors,A rigged card deck,the food,having a bad cold,2,What does Sheldon complain about after Preya and Leonard leave the room?,130303,The Big Bang Theory,38.76-49.62,s04e18_seg02_clip_01,A rigged card deck 8265,Reviewing a document,Reviewing the file,Reviewing a letter,Reviewing the paperwork,Reviewing the incident,1,"What is Beckett doing when Esposito says ""she was very cooperative and left quietly""?",130304,Castle,2.7-12.17,castle_s02e05_seg02_clip_19,Reviewing the file 8266,Shakes his head,Puts something in Henry's mouth,Turns around to leave,Shows him a picture,Checks Henry's pulse,1,What does House do after Henry said it tasted bitter?,130305,House M.D.,81.37-87.02,house_s02e14_seg02_clip_06,Puts something in Henry's mouth 8267,Howard rolls his eyes.,Howard cries.,Howard laughs.,Howard stands up.,Howard screams.,0,What does Howard do before Sheldon stands up?,130306,The Big Bang Theory,22.62-27.91,s06e18_seg02_clip_13,Howard rolls his eyes. 8268,Esposito,Ryan,Castle,Beckett,Gates,1,"Who threatens to look into Elodie's unpaid parking tickets after she doesn't ""think out of the box"" for the dance?",130307,Castle,77.56-89.67,castle_s08e20_seg02_clip_10,Ryan 8269,She was heavily pregnant.,She was Monica's friend.,She was Ursula.,She was a doctor.,She was dressed like a clown.,0,What did Joey notice about the woman after he looked at her?,130308,Friends,38.07-41.61,friends_s01e23_seg02_clip_01,She was heavily pregnant. 8270,He buy a circus if he had talking dogs.,He got a whole litter of pure breeds and sold them all.,He just found a talking puppy.,Because he bought stock in dog food.,Because he'd get the dog a role in a movie.,2,Why does Chandler say he's rich when Joey tells him about a puppy picking getting picked on?,130309,Friends,8.7-13.51,friends_s06e14_seg02_clip_04,He just found a talking puppy. 8271,That she's slept with 31 people. ,That she's slept with 13 people. ,That she's slept with 10 people. ,That she's slept with 40 people. ,That she's slept with 50 people. ,0,What does Penny deny when she is having dinner with Amy and Sheldon?,130310,The Big Bang Theory,23.41-29.11,s04e01_seg02_clip_14,That she's slept with 31 people. 8272,He toasts them,He shakes their hands,He gives them money,He high fives them,He eats their food,1,What does Cole do to Scott and Robert after they all agree not to sell the company?,130311,Castle,29.97-39.66,castle_s07e13_seg02_clip_02,He shakes their hands 8273,Poker,Jenga,Monopoly,Osmos,Perfection,1,What game is being played when Penny meeting an astronaut is being discussed?,130312,The Big Bang Theory,16.53-22.14,s04e22_seg02_clip_10,Jenga 8274,Elenor,Laine,Ashley,Alexis,Maria,1,Who is the woman Richard and Beckett see when they get to the park crime scene?,130313,Castle,67.36-70.09,castle_s03e08_seg02_clip_00,Laine 8275,he thinks an allergic reaction reminds a body that it's alive,he is sadistically trying to torture her,He thinks an allergic reaction might help her condition improve,when she reacts to something they'll know what's killing her,he's trying to compile a list of what she is not allergic to,3,Why does House suggest introducing sister Augustine to know allergens when she is already gravely ill? ,130314,House M.D.,55.59-69.37,house_s01e05_seg02_clip_16,when she reacts to something they'll know what's killing her 8276,The roommate is sleeping,The roommate is singing,The roommate is dancing,The roommate is smoking,The roommate is reading,3,"What is the roommate doing when Adams, and Taub entered the room?",130315,House M.D.,50.74-56.98,house_s08e21_seg02_clip_02,The roommate is smoking 8277,He doesn't have another offer on the table,He doesn't have the resume others do,He doesn't toot his own horn enough,He doesn't play his cards right,He doesn't have the recommendations,0,Why does Cuddy say Foreman doesn't have much leverage when he comes to her office?,130316,House M.D.,44.47-51.73,house_s06e10_seg02_clip_05,He doesn't have another offer on the table 8278,he was talking to Bobby,he was talking to himself,he was talking to Chandler,he was talking to Tyler,he was talking to Raymond,2,"Who was Joey talking to when he said ""yeah i guess""",130317,Friends,0-12.25,friends_s03e15_seg02_clip_06,he was talking to Chandler 8279,Because she was more needed elsewhere.,Because she's lying and he knows it.,Because he's getting back at her for something.,Because she's being pranked.,Because she's awful at her job.,0,Why did Burke reassign Cristina after she mentioned she was already assigned?,130318,Grey's Anatomy,0-23.86,grey_s03e15_seg02_clip_21,Because she was more needed elsewhere. 8280,she looks at the buttons on the suit,she looks at the hanger on the suit,she doesn't look at the suits,she looks at the tag on the suits,she looks at a mark on the suit,3,What does Rachel look at when she is going through the rack of suits?,130319,Friends,49.22-58.53,friends_s07e20_seg02_clip_02,she looks at the tag on the suits 8281,a hot air balloon,a buss,a vacation,a plane,a boat,4,What does Ross not remember being on when talking with Chandler and Joey?,130320,Friends,0-2.42,friends_s04e09_seg02_clip_12,a boat 8282,He got lost,He was scared,He thought it was too small,He was trying to make a sale,Everything else was gone,3,What reason does Joey give for getting locked in the cabinet after trying to talking to a potential buyer?,130321,Friends,22.57-29.4,friends_s06e20_seg02_clip_10,He was trying to make a sale 8283,Sheldon was at the restaurant.,Raj was at the restaurant.,Howard and Raj.,Two men.,A dog.,0,Who was at the restaurant when Penny called to Leonard?,130322,The Big Bang Theory,0-45.46,s01e11_seg02_clip_08,Sheldon was at the restaurant. 8284,Six,Five,One,Three,Seven,3,How many wine bottles were on the top shelf of the cooler after Beckett sat at the counter?,130323,Castle,0-3.88,castle_s07e16_seg02_clip_26,Three 8285,She crosses her legs when she sat,She bends one leg and sits down on it on the sofa,She knelt down beside the sofa,She sat in Castle's lap on the sofa,She sat on the handle of the sofa,1,How does Beckett sit before she tells Castle what was bothering her?,130324,Castle,19.43-27.2,castle_s06e14_seg02_clip_26,She bends one leg and sits down on it on the sofa 8286,He said sometime after the first snickers. ,He said sometime around the third almond joy. ,He said sometime during the fourth peanut. ,He said sometime around the fourth almond joy. ,He said sometime after the third peanut butter cup. ,1,What answer does Howard give after he is asked when he figured out he was allergic to nuts?,130325,The Big Bang Theory,12.82-15.01,s06e07_seg02_clip_08,He said sometime around the third almond joy. 8287,On his shoulder.,His bicep.,His chest.,His leg.,His back.,0,Where did Benjamin say he had Charlies name tattooed after saying it was a mistake? ,130326,Friends,14.95-19.22,friends_s10e06_seg02_clip_12,On his shoulder. 8288,scared,sad,worried,joyous,Proud,4,How does Leonard feel initially when he shows his computer page to his friends?,130327,The Big Bang Theory,0-41.13,s02e18_seg02_clip_05,Proud 8289,Because he interrupted Penny and Leonard fighting. ,Because he intterupted Leonard and Penny making out. ,Because he interrupted Penny and Leonard watching TV.,Because he interrupted Penny and Leonard sleeping.,Because he interrupted Penny and Leonard arguing. ,1,How come Howard felt awkward after walking into Leonard's apartment?,130328,The Big Bang Theory,23.18-36.47,s03e04_seg02_clip_10,Because he intterupted Leonard and Penny making out. 8290,Clothes.,Jewelry.,Money.,Weapons.,Gold. ,2,What is shown to be stored in the jukebox after Beckett pulls it out.,130329,Castle,39.05-52.96,castle_s03e11_seg02_clip_11,Money. 8291,What is your name?,Are you ready?,You sure you want to do this?,Are you chandler?,Are you scared?,3,What does the rabbi ask chandler after chandler stands at the alter?,130330,Friends,22.05-25.24,friends_s07e23-24_seg02_clip_38,Are you chandler? 8292,How he disliked the bathroom.,How much he was enjoying himself.,How hungry he was.,How good the food smelled.,How his day went at work.,0,What was Sheldon talking about before he sat down in the chair?,130331,The Big Bang Theory,0-46.52,s07e09_seg02_clip_08,How he disliked the bathroom. 8293,"""Thats it?""",Said nothing,"""Thats not good""","""I'm surprised""","""That's alright""",1,"What did Izzie say after Burke said ""Those vows are for optimistic couples, full of hope""?",130332,Grey's Anatomy,46.76-56.97,grey_s03e25_seg02_clip_12,Said nothing 8294,He puts his cell phone on the table.,He throws his jacket down.,He closes the blinds to the office..,He walks closer to her and looks her in the eyes.,He puts his hands on her shoulders and takes them back.,2,What does Castle do before Beckett asks him why couldn't he just trust her?,130333,Castle,43.58-53.6,castle_s08e08_seg02_clip_22,He closes the blinds to the office.. 8295,That she is seeing someone else and he should move on.,That a relationship between them is going to happen.,That a relationship between the two of them is not going to happen.,That she is a lesbian and is not attracted to men.,That she is not attracted to him because he is too ugly for her.,2,"What is Rachael referring to when she tells Ross to ""accept it""?",130334,Friends,0.29-21.38,friends_s02e14_seg02_clip_09,That a relationship between the two of them is not going to happen. 8296,He was paid by the Russians to kidnap her. ,Because he is her grandfather. ,He is in love with her. ,She is his daughter. ,She is the daughter of his best friend and he promised to take care of her. ,1,"Why does Hunt tell Castel he would come for ""Her"" after Castle asks him why he would?",130335,Castle,0-20.26,castle_s05e16_seg02_clip_21,Because he is her grandfather. 8297,Monica says that they should have brought up the smaller stuff first.,Monica says that they should have brought up the cushions first.,Monica says that they should have brought up the lamps first.,Monica says that they should have brought up the rugs first.,Monica says that they should have brought up the fragile items first.,1,What does Monica say they should have brought up first when she is helping to carry a couch?,130336,Friends,24.93-31.93,friends_s09e16_seg02_clip_22,Monica says that they should have brought up the cushions first. 8298,A Dr's Appointment.,Castle's birthday.,Her and Castle's wedding aniversary.,The anniversary of her mothers death.,Her hair appointment.,2,What reminder came up on Beckett's phone before Esposito and Ryan came in to her office to give her news on Scott?,130337,Castle,23.01-28.53,castle_s08e07_seg02_clip_02,Her and Castle's wedding aniversary. 8299,Amy put a drink on the table.,Amy put her bag on the table.,Amy put her phone on the table.,Amy put her glasses on the table.,Amy her head on the table. ,0,What did Amy put on the table when she walked in the apartment?,130338,The Big Bang Theory,34.73-55.51,s09e05_seg02_clip_13,Amy put a drink on the table. 8300,Arthur's is blue and Randy's is green.,Both blue.,Both green.,Arthur's is green and Randy's is blue.,Arthur's is blue and Randy is not wearing a tie.,2,What color ties are Arthur and Randy wearing when they are in Marshall's office?,130339,How I Met You Mother,18.13-22.43,met_s06e07_seg02_clip_13,Both green. 8301,A container of detergent.,The refrigerator.,A mouse trap.,Some cheese.,Her couch. ,0,What does Phoebe move when she is looking for Bob?,130340,Friends,35.02-43.02,friends_s09e12_seg02_clip_06,A container of detergent. 8302,rubber gloves,magnifying glasses,a paper suit,colonge,a blindfold,1,What does Sheldon put on before attempting to cut into the brain on the tray?,130341,The Big Bang Theory,22.02-32.87,s05e16_seg02_clip_12,magnifying glasses 8303,Ross's museum ,The coffee shop,The park,The street corner,The apartment,4,Where is Phoebe when she tells Rachel and Monica to keep running?,130342,Friends,24.11-32.96,friends_s06e06_seg02_clip_12,The apartment 8304,The DA told him.,He called the DA's campaign manager.,The bank.,The internet.,Randolph Addison told him.,3,Where did Castle get the information about who contributed to the DA's campaign when he was doing research?,130343,Castle,11.57-23.15,castle_s03e19_seg02_clip_18,The internet. 8305,A Thai place.,A Chinese place.,An India place.,A Japanese place.,A burger place.,3,Where did Rachel suggest they go for lunch after the left the apartment?,130344,Friends,13.58-21.84,friends_s06e12_seg02_clip_07,A Japanese place. 8306,House wants Cuddy to fire Chase and rehire Cameron.,House wants Cuddy to approve more interns for his work.,House wants Cuddy to restore his normal operating budget.,House wants Cuddy to spring Chase from NICU.,House wants Cuddy to steal the keys to Wilson's office.,3,What does House want Cuddy to do before he'll stop talking about her date with Wilson?,130345,House M.D.,22.64-29.57,house_s02e22_seg02_clip_03,House wants Cuddy to spring Chase from NICU. 8307,Alan was.,John was.,Jake was.,Robert was.,Rick was.,4,Who was on the table when Phoebe was at work?,130346,Friends,18.98-27.61,friends_s04e04_seg02_clip_06,Rick was. 8308,talking on the phone,asleep in a chair,in the waiting room,asleep in the chair in his room,at home,3,Where was Masters when Lane woke up,130347,House M.D.,36.97-55.9,house_s07e16_seg02_clip_21,asleep in the chair in his room 8309,A plastic bag.,A photograph.,A watch.,A record.,A wine bottle.,0,What was Castle holding to his chest before Esposito said he would grab Sully?,130348,Castle,0.91-5.01,castle_s06e04_seg02_clip_19,A plastic bag. 8310,testosterone,a weenie roast,a sausage-fest,lunch from the cafeteria,a big liar,2,What did Cuddy say the smell was after asking if it was onions or peppers?,130349,House M.D.,8.21-19.61,house_s07e06_seg02_clip_00,a sausage-fest 8311,Laying in a hospital bed,Sitting on a stool,Standing on a ladder,Swimming in a pool,Sitting at a desk,2,Where is Fernando when he and House are talking?,130350,House M.D.,62.84-73.15,house_s05e12_seg02_clip_20,Standing on a ladder 8312,A lamp,A camera,A calculator,A laptop,A plate,2,What is sitting on the edge of the desk before Leonard enters the room,130351,The Big Bang Theory,0-15.97,s03e19_seg02_clip_00,A calculator 8313,Joey says pass.,Joey tells his neighbor he was never in a band.,Joey finds Adrienne.,Joey thinks the neighbor broke the pact.,Joey calls Ross for help.,0,How does Joey respond when his neighbor is staring at him?,130352,Friends,0-3.84,friends_s10e11_seg02_clip_15,Joey says pass. 8314,House doesn't need anything,House needs a new doctor,House needs a new office,House needs new interns,House needs a lawyer,4,What does House need from Cuddy when he is talking to her about what he did?,130353,House M.D.,23.91-28.86,house_s01e09_seg02_clip_08,House needs a lawyer 8315,A sea shell. ,A phone. ,An ice pack. ,His hand. ,A bag of veggies. ,1,What is Chandler holding up to his ear when he is in his apartment?,130354,Friends,0-2.48,friends_s05e07_seg02_clip_16,A phone. 8316,Wilson says Cameron had a 4.0,Wilson says he had a 4.0,Wilson says Cuddy had a 4.0,Wilson says half the staff had a 4.0,Wilson says Foreman had a 4.0,4,Who does Wilson say had a 4.0 GPA when he and House are talking?,130355,House M.D.,33.45-58.1,house_s01e10_seg02_clip_11,Wilson says Foreman had a 4.0 8317,A hole puncher.,A tooth pick.,A marker.,A file folder.,A pool stick.,3,What was Ryan holding when Beckett was talking about withdrawals?,130356,Castle,49.77-58.14,castle_s03e07_seg02_clip_19,A file folder. 8318,Some papers,A phone,A PC,A TV,A console,0,What's in the desk when Becket interrogates Anya?,130357,Castle,23.93-28.99,castle_s08e11_seg02_clip_24,Some papers 8319,Emily is hold a bloody head,Emily is holding a pink statue,Emily is holding a bucket,Emily is holding a magazine,Emily is not holding anything,0,What is Emily holding in her hand when talking to Raj,130358,The Big Bang Theory,20.37-29.63,s08e24_seg02_clip_00,Emily is hold a bloody head 8320,One hundred kilos,A magic carpet roll,The final twelfth crate,A box of diamonds ,The body of the president ,2,Which item is missing from the truck after the NYPD police search it?,130359,Castle,42.79-65.34,castle_s08e17_seg02_clip_22,The final twelfth crate 8321,A month,Forever,A week,He says he won't last a night,Two years,3,How long does Tyson say Castle will last in prison when the two of them are talking in the jail cell?,130360,Castle,30.45-67.26,castle_s05e05_seg02_clip_16,He says he won't last a night 8322,First-class tickets and a free spa treatment,Business-class tickets and the lounge,Economy-class tickets and the lounge,First-class tickets and free concert tickets,First-class tickets and the lounge,4,What two things have the couple gotten before getting offered the suite?,130361,Friends,39.67-42.72,friends_s08e03_seg02_clip_12,First-class tickets and the lounge 8323,Children,Rape Victims ,Burn Victims ,Alcoholics ,Drug Addicts ,0,Who does the couple being questioned sponsor before learning someone was poisoned?,130362,Castle,10.13-22.46,castle_s07e07_seg02_clip_02,Children 8324,a $100 bill,a piece of paper,a his pen,a patient chart,a patient's xrays,0,what does the nurse had foreman after she slaps him?,130363,House M.D.,74.89-83.72,house_s07e20_seg02_clip_17,a $100 bill 8325,Australia ,Chile,Norway,Denmark,Hungary,0,Where does Chase say he is from after House calls him British?,130364,House M.D.,61.67-67.4,house_s01e08_seg02_clip_06,Australia 8326,A child,A dog,A new house,Money,A cat,0,What do monica and chandler realize they both want when they are babysitting emma?,130365,Friends,42.49-47.76,friends_s10e04_seg02_clip_18,A child 8327,in the patient's food,in the medicine room,in the patient's chart,in the patient's IV,in the patient's routine medicine regimen,2,Where did Chase tell Foreman to say that Chase forgot to put the statins when someone asks about the statins?,130366,House M.D.,27.27-44.54,house_s06e04_seg02_clip_13,in the patient's chart 8328,Seven hours.,Three hours.,Five hours.,Two hours.,Ten hours.,1,How many hours has Ross thrown the ball to Monica and Joey when Rachel entered the apartment?,130367,Friends,0-9.57,friends_s05e21_seg02_clip_06,Three hours. 8329,A book,A coffee mug,A folder,Drugs,A bag ,2,What is Ryan holding when he walks up to Beckett and Castle,130368,Castle,8.61-17.68,castle_s04e22_seg02_clip_19,A folder 8330,Ross.,Richard.,Mark.,Her boss.,A coworker.,2,Who does Rachel suggest Ross wanted her to avoid before their argument?,130369,Friends,54.59-59.24,friends_s03e14_seg02_clip_15,Mark. 8331,He thinks the patient just looks like he is sick and has cancer. The spit test was just to convince the patient he was doing a test.,He looks at the patient spit and sees that he has dry mouth. Based on information he receives from Wilson his condition is caused by swelling which means a cancerous tumor.,House sees the patient spit up blood when he spits and coughs. It a lot of blood which means he has lung cancer.,House see a lump on the patient's throat and on closer examination he discovers lump is very hard and he breathing heavy.,He thinks the patient has cancer after he gets him to spit on the floor because he sees multiple cancerous lumps all over his body.,1,Why does House think the patient has cancer after he gets him to spit on the floor?,130370,House M.D.,54.3-63.21,house_s05e09_seg02_clip_15,He looks at the patient spit and sees that he has dry mouth. Based on information he receives from Wilson his condition is caused by swelling which means a cancerous tumor. 8332,because he is the man from her bachelorette party. ,because she use to date him,because she thinks he's hot,because she is embarrassed to know him. ,because chandler will get mad. ,0,Why does monica tell Pheobe she don't recognize that man that walks into the cafe when they are sitting around the couch?,130371,Friends,50.04-61.03,friends_s08e08_seg01_clip_00,because he is the man from her bachelorette party. 8333,He lost his hearing. ,They are talking too quietly.,He's got something in his ear.,Because his ears are ringing.,He has an ear infection.,3,Why does Joey say he can't hear a word they are saying when he's talking to his friends?,130372,Friends,13.12-15.88,friends_s04e09_seg02_clip_15,Because his ears are ringing. 8334,They're standing right there.,They're in bleachers.,They're watching via video.,They're behind glass.,They're watching on their phones.,3,Where are students observing the procedure from when the operation is taking place?,130373,Grey's Anatomy,33.18-39.12,grey_s01e06_seg02_clip_20,They're behind glass. 8335,Because the talent manager got dumped,Because the talent manager is hungry,Because the talent manager feels all her former clients betray her and then come crawling back,Because the talent manager just got fired,Because the talent manager is pregnant,2,Why does the talent agent give Joey attitude after he enters her office?,130374,Friends,29.62-56.41,friends_s06e04_seg02_clip_05,Because the talent manager feels all her former clients betray her and then come crawling back 8336,Cried,Put his hands in the air,Walked over to him,Ran,Screamed,3,What did Stuckey do when Esposito approached him?,130375,Castle,89.06-95.42,castle_s03e03_seg02_clip_16,Ran 8337,Bernadette explained that her money is invested in stocks and bonds.,Bernadette lost her money.,Bernadette doesn't has any money.,Bernadette hide her money under her mattress.,Bernadette invested her money in real state.,0,What Penny said when Leonard asked where is her money?,130376,The Big Bang Theory,0-31,s08e20_seg02_clip_13,Bernadette explained that her money is invested in stocks and bonds. 8338,Dana Lecture,Daniel lecture,Danny lecture ,Doom lecture,DR lecture,0,What lecture did hamilton say he was doing again when he was talking to foreman?,130377,House M.D.,18.54-28.74,house_s01e09_seg02_clip_17,Dana Lecture 8339,Desk,Laptop,Door,Headphone,Box,2,What was Esposito close before talking with Ryan?,130378,Castle,12.15-20.26,castle_s03e09_seg02_clip_04,Door 8340,She is secure about her job. ,She is secure about her back. ,She is insecure about her back. ,She is secure about money. ,She is secure about love. ,2,What does Rachel try to say that Joey was talking about when she is avoiding letting Tag know how she feels?,130379,Friends,23.22-25.36,friends_s07e08_seg02_clip_11,She is insecure about her back. 8341,2010,2003,2015,2000,1999,1,What year did Penny start doing her own buzz when she spoke to Beverley?,130380,The Big Bang Theory,18.92-29.6,s03e11_seg02_clip_12,2003 8342,assualted when leaving work,two got shot and the others died in a crash,drug overdoses,one stabbed in a bar and the others in a car crash,home invasions,3,How did Vikram say the others had died after telling Beckett her entire former team was dead?,130381,Castle,65.28-82.84,castle_s08e02_seg02_clip_02,one stabbed in a bar and the others in a car crash 8343,Castle is in a freezer.,Beckett is in a closet,Beckett is in a car in water.,Castle is in jail.,Castle is in an avalanche.,2,Where is Beckett trapped when Castle uses a flashlight to try to see things?,130382,Castle,0-15.81,castle_s04e16_seg02_clip_01,Beckett is in a car in water. 8344,He closed the closet door.,He opened the door and left.,He went and sat on the toilet.,He brushed his teeth.,He turned on the t.v.,1,What did Howard do after Stuart said yeah?,130383,The Big Bang Theory,0-7,s06e04_seg02_clip_16,He opened the door and left. 8345,a bathroom,a towel,a raincoat,a batman costume,fishnet stockings,0,What is Sheldon wearing when he knocks on Leonards bedroom door?,130384,The Big Bang Theory,39.22-43.42,s06e02_seg02_clip_08,a bathroom 8346,Sheldon is sitting across from Leonard.,Priya is sitting across from Leonard.,Stuart is sitting across from Leonard.,Raj is sitting across from Leonard.,Barry is sitting across from Leonard.,0,Who is sitting across from Leonard when he is eating in his kitchen?,130385,The Big Bang Theory,36.77-43.54,s09e10_seg02_clip_11,Sheldon is sitting across from Leonard. 8347,Killing Me Softly.,Isn't she Lovely.,For He's a Jolly Good Fellow.,Blowing in the Wind.,Bridge Over Troubled Waters>,0,What song does Chandler tell the waiter he would like a verse of after the waiter asks if there is anything else?,130386,Friends,45.89-50.19,friends_s02e05_seg02_clip_07,Killing Me Softly. 8348,House points at them with a laser pointer.,House points at them with his cane.,House points at them with a ruler.,House points at them with an umbrella.,House points at them with his finger.,1,What does House use to point at his colleagues when he is reprimanding them?,130387,House M.D.,3.32-7.89,house_s04e05_seg02_clip_26,House points at them with his cane. 8349,Stood up,Fell asleep,Leaned forward,Ate a hot dog,Picked up a book,2,What did Marshall do after Barney said as a third year law student Marshall would appear more smarter?,130388,How I Met You Mother,57.55-63.41,met_s02e02_seg02_clip_05,Leaned forward 8350,Beckett and Serena are at McDonald's.,Beckett and Serena are at a school.,Beckett and Serena are at the police station.,Beckett and Serena are at a client's house.,Beckett and Serena are at a coffee shop.,2,Where are Beckett and Serena when they are discussing the thief and merger?,130389,Castle,0-15.98,castle_s04e05_seg02_clip_05,Beckett and Serena are at the police station. 8351,"Phoebe said, ""he wants to marry you soon""","Phoebe said, ""he just got a divorce, he's probably nervous around woman, you know?""","Phoebe said, wher ave you been?","Phoebe said, ""had you fun?"".","Phoebe said, ""are you hungry?""",1,What said Phoebe to Rachel after she finish to serve food?,130390,Friends,46.19-50.75,friends_s04e13_seg02_clip_11,"Phoebe said, ""he just got a divorce, he's probably nervous around woman, you know?""" 8352,She complained on her headache. ,She said she doesn't care about becoming rich and famous. ,She said she changed her mind about acting career.,She agreed with Leonard that Kevin Smith's movie is no good.,She said she could live an incredible wonderful life. ,4,What did Penny say about her desire to audition for a movie when Leonard asked her about it?,130391,The Big Bang Theory,0-29.82,s08e20_seg02_clip_10,She said she could live an incredible wonderful life. 8353,a glove,a hand ,a stamp,a tattoo,nothing ,1,What was placed on House cheek when House said he is not ok?,130392,House M.D.,25.27-27.02,house_s05e24_seg02_clip_25,a hand 8354,a bag of chips,the door,laptop,cookies,book,1,What did Chandler open before he told Joey there is no count rushmore?,130393,Friends,0-6.3,friends_s03e01_seg02_clip_11,the door 8355,wilson,Cuddy,cameron,foreman,volger,3,Who is in the lab with chase looking at the patients blood before house enters?,130394,House M.D.,45.51-49.61,house_s01e19_seg02_clip_20,foreman 8356,Nephew.,Cousin.,Old friend.,He wasn't related.,Brother in law.,3,How was the defendant related to Joe when Joe was on the jury?,130395,Castle,36.09-43.13,castle_s03e19_seg02_clip_15,He wasn't related. 8357,Raj said he was going to wander the streets alone.,Raj said he was going to his mailbox.,Raj said he was going out to find a girlfriend.,Raj said he was going out to find a quiet place to cry.,Raj said he was going to his office to study.,0,Where did Raj say he was going when he headed towards his apartment door?,130396,The Big Bang Theory,23.14-26.18,s04e22_seg02_clip_03,Raj said he was going to wander the streets alone. 8358,Rachel,Ross,Amy,Joey,Phoebe,2,Who calls Monica crazy plate lady after she demonstrates how to cut the food?,130397,Friends,14.45-36.98,friends_s09e08_seg02_clip_11,Amy 8359,blue,red,white,brown,purple,0,what color dress does penny wear when talking to leonard,130398,The Big Bang Theory,48.83-54.32,s07e06_seg02_clip_09,blue 8360,Updating the phone book,Playing crosswords,Nothing,Finding a new job,Looking for a new car.,0,What does Grandmother claim to be doing when Phoebe walks in?,130399,Friends,0-13.28,friends_s02e09_seg02_clip_03,Updating the phone book 8361,House was sleeping on top of the conference table,House was in the cafeteria,House was sleeping in the lobby,House was in the supply closet,House was sitting in his office,4,Where is House when he is notified his patient was getting a heart,130400,House M.D.,8.56-20.87,house_s01e14_seg02_clip_20,House was sitting in his office 8362,She says she asked him to marry her after four dates.,She says that she accidentally beat him up.,She says that she insulted his family.,She says that she spied on him.,She says that she put him in the hospital.,0,What does Rachel say after she gave an example of her bad decision making with Joshua?,130401,Friends,44.76-60.51,friends_s05e02_seg02_clip_03,She says she asked him to marry her after four dates. 8363,The monkey climbed on his head.,The monkey grabbed a lady's purse.,The monkey put on a hat.,The monkey took someone's drink.,The monkey jumped off his shoulder.,4,What happened after Ross told the monkey to come on and do some mingling?,130402,Friends,6.25-12.21,friends_s01e10_seg02_clip_14,The monkey jumped off his shoulder. 8364,a battery,a rock,a coin,a toy car,dice,2,what does wilson pull out from rachels mouth when he is with house?,130403,House M.D.,0-9.32,house_s07e05_seg02_clip_06,a coin 8365,He eats a muffin. ,He puts his feet up. ,He lays down to hide. ,He smiles. ,He drinks a beer. ,3,What does Chandler do after Ross walks into the apartment?,130404,Friends,9.01-15.11,friends_s09e17_seg02_clip_05,He smiles. 8366,Joey is late to a job,He beat up a lady,He kicked the dog,He lost his wallet,He lost a baby on the bus,4,Why is Joey nervous when he is on the phone,130405,Friends,0-49.9,friends_s02e06_seg02_clip_11,He lost a baby on the bus 8367,To try to convince him to run for President.,To try to convince him to go home.,To try to convince him to quit his job.,To try to convince him to cheat on his girlfriend.,To try to convince him to leave the country,3,Why does Barney bring up Star war when talking with Ted and Marshall.,130406,How I Met You Mother,0-38.41,met_s03e05_seg02_clip_14,To try to convince him to cheat on his girlfriend. 8368,Ribs,Foot,Back,Leg,Arm,0,Where was Castle shot before it healed weeks later?,130407,Castle,36.09-47.53,castle_s07e01_seg02_clip_18,Ribs 8369,A rubber duck.,He gets scotch.,Fishing poles.,Something to eat.,A sweater.,1,What does the Captain go get after he goes below deck on the boat?,130408,How I Met You Mother,0-22.21,met_s06e11_seg02_clip_13,He gets scotch. 8370,Cuddy comes in and initiates the oreo toast.,Wilson initiates the oreo toast.,The server initiates the oreo toast.,The hostess initiates the oreo toast.,House initiates the oreo toast.,4,Who initiates the oreo toast when Wilson and House are having dinner?,130409,House M.D.,13.3-18.06,house_s08e21_seg02_clip_16,House initiates the oreo toast. 8371,emmas stroller ,On chandlers lap,emmas crib,emmas walker,on monicas lap,4,Where is emma when chandler and monica are watching her?,130410,Friends,11.17-18.61,friends_s10e04_seg02_clip_18,on monicas lap 8372,Phoebe and Mike are in the back of a moving van.,Phoebe and Mike are outside on the sidewalk.,Phoebe and Mike are in the living room of Phoebe's apartment.,Phoebe and Mike are in a parking garage.,Phoebe and Mike are at a truck rental center.,2,Where are Phoebe and Mike when they have their argument about getting married?,130411,Friends,0-33.33,friends_s09e16_seg02_clip_22,Phoebe and Mike are in the living room of Phoebe's apartment. 8373,He has a question about the car. ,He misses Phoebe. ,He has something to tell her. ,He wants to hear her voice. ,He has a question about food. ,0,Why does Joey need to speak with Phoebe when he is on the phone?,130412,Friends,21.46-24.44,friends_s05e22_seg02_clip_15,He has a question about the car. 8374,Behind the library door. ,Behind a shelf of books. ,Behind the water fountain. ,Behind the librarians desk. ,Behind the card catalog. ,4,Where does Rachel claim she saw Ross when he made out with their 50 year old librarian in high school?,130413,Friends,37.46-41.94,friends_s08e09_seg02_clip_14,Behind the card catalog. 8375,Cross her arm over her chest,Lifted her arm up,Put her arm behind her back,Put her arm down by her side,Put a drip into her arm,1,What did the doctors do with the patient's arm when they were scanning her?,130414,House M.D.,53.07-56.5,house_s07e22_seg02_clip_04,Lifted her arm up 8376,Tom Lee,Andrew lee,Philip Lee,Jamie lee,No one,2,Who did castle say is the only one that knows what happened that night when talking to ryan at his desk?,130415,Castle,76.17-81.02,castle_s04e04_seg02_clip_19,Philip Lee 8377,A pizza,A chicken dinner,A steak,A candy bar,A tub of ice cream ,0,What are George and Izzy sitting on the floor eating when Meredith comes in the bathroom?,130416,Grey's Anatomy,39.97-47.02,grey_s02e13_seg02_clip_20,A pizza 8378,Phoebe is watching a romantic comedy.,Phoebe is watching a sitcom.,Phoebe is watching a football game.,Phoebe is watching a scary movie.,Phoebe is watching animals eat eachother.,4,What is Phoebe watching when she is sitting in front of the TV?,130417,Friends,23.91-43.97,friends_s09e16_seg02_clip_01,Phoebe is watching animals eat eachother. 8379,A plate.,A can of soda.,A radio.,A bottle of beer.,A set of keys.,3,What was on the counter next to the girl when she was talking to Marshall?,130418,How I Met You Mother,1.24-9.94,met_s02e02_seg02_clip_08,A bottle of beer. 8380,Beckett glares at Castle.,Beckett begins talking over Castle.,Beckett motions with her hand.,Beckett tells Castle to stop talking.,Brent interrupts.,0,How did Beckett quiet Castle after he begins talking about his dating life.,130419,Castle,45.49-60.8,castle_s01e02_seg02_clip_09,Beckett glares at Castle. 8381,Let's play poker!,Let's play rummy!,Let;s play cards!,Let's take a break!,Let's take a vote!,0,What did Monica say after she interrupted Rachel?,130420,Friends,11.1-15.31,friends_s01e18_seg02_clip_11,Let's play poker! 8382,a Star Trek ensign's uniform.,A fast food uniform,A Wolverine costume,Overalls and a checkered shirt,A Star Wars trucker hat,0,What did Sheldon say you don't want to wear when at the Texas State Fair?,130421,The Big Bang Theory,9.32-16.52,s04e15_seg01_clip_02,a Star Trek ensign's uniform. 8383,Sitting on the couch with Chandler and Ross.,Sitting at a bar.,Riding a bike through a park.,Standing in front of the television set.,At the kitchen table.,3,Where is Monica when she is talking with Ross and Chandler?,130422,Friends,5.86-12.94,friends_s06e12_seg02_clip_14,Standing in front of the television set. 8384,He yells at him. ,He raises his eyebrows. ,He leaves. ,He runs into his room. ,He uses the bathroom. ,1,What does Joey do after Ross picks up the coffee mug?,130423,Friends,37.62-40.02,friends_s09e14_seg01_clip_01,He raises his eyebrows. 8385,A poster of a skeleton,A painting,A shelf with a candle,A clock,A phone,3,What was on the wall after Sandford said that they had to have a contract with AtlanticNet in order to have a contract with them?,130424,House M.D.,21.1-30.57,house_s06e13_seg02_clip_07,A clock 8386,5,2,1,4,3,4,How many times does the Fire Captain want the trapped person to tap if they can hear him when they are trying to figure out if the person is conscious?,130425,House M.D.,0-16.74,house_s06e21_seg02_clip_04,3 8387,Rachel needed to get some rest.,Rachel had to go out of town.,Amy took Ella without permission.,Amy did not have Ella.,Rachel is working in the cafe.,4,Why is Rachel's sister Amy with Ella when she enters the cafe?,130426,Friends,45.99-49.15,friends_s10e05_seg02_clip_15,Rachel is working in the cafe. 8388,Because Stevie's parents frequently forget to take their phones with them.,Because Stevie's parents are in a remote location outside the phone service area.,Because Stevie's parents are in a conference and had to turn their cellphones off.,Because Stevie's parents are on vacation and don't want to be interrupted.,Because Stevie's parents are busy and don't check their phones often enough.,2,Why hasn't Foreman been able to reach Stevie's parents when he calls their cellphones?,130427,House M.D.,34.13-40.96,house_s03e13_seg02_clip_02,Because Stevie's parents are in a conference and had to turn their cellphones off. 8389,Riding a bicycle,Jogging,Sleeping,Working,In bed with a woman.,4,Where was Dr.Karev when he was being paged?,130428,Grey's Anatomy,10.5-53.38,grey_s02e10_seg02_clip_20,In bed with a woman. 8390,Richie was humbled.,Richie was dedicated to his profession.,Richie was a hard worker.,Richie was neglecting his clients.,Richie was really caring.,4,How was Richie different from other personal injury lawyers before his murder?,130429,Castle,10.98-14.49,castle_s07e19_seg02_clip_03,Richie was really caring. 8391,He almost had to repeat the 5th grade,He hated his math teacher,He always went into detention,He graduated with a 4.0,He was so popular in school,0,What does Castle say about school when talking to Martha?,130430,Castle,58.77-68.78,castle_s01e06_seg02_clip_11,He almost had to repeat the 5th grade 8392,Marshall was not going to be able to look Max in the eyes.,Marshall was not going to be able to look at Max's clothes.,Marshall was not going to be able to look at himself in the mirror when he saw Max.,Marshall was not going to be able to look at Max's face.,Marshall was not going to be able to look at Max's lower body.,0,Where was Marshall not going to be able to look when he saw Max?,130431,How I Met You Mother,7.44-11.91,met_s06e05_seg02_clip_01,Marshall was not going to be able to look Max in the eyes. 8393,He cried.,He said hello.,He sat down.,He ran.,He asked what they wanted.,3,What did Jimmy Lennon do after Beckett called out his name?,130432,Castle,37.93-45.69,castle_s03e21_seg02_clip_14,He ran. 8394,Matthew,Theodore,George,Eugene,Gregory,1,What does Alexis say the rat's name is when Richard walks in?,130433,Castle,4.55-9.56,castle_s03e08_seg02_clip_00,Theodore 8395,"Howard yells, Hey Ma, twinkle, twinkle, your little star is home.","Howard yells, open the door I'm so tired.","Howard yells, hey what's cooking? It smells great. ","Howard yells, How are you doing Ma?","Howard yells, Ma are you home?",0,What does Howard yell out to Mrs. Wolowitz when he runs up on the porch?,130434,The Big Bang Theory,29.06-33.8,s06e04_seg02_clip_10,"Howard yells, Hey Ma, twinkle, twinkle, your little star is home." 8396,Joey,Monica,Ross,Chandler,Pheobee,4,Who screams after Rachel walks on the plane?,130435,Friends,28.43-35.11,friends_s10e17-18_seg02_clip_38,Pheobee 8397,A gun,A knife,A taser,An axe,A grenade,0,What is Stephanie holding in her hand when she is talking about becoming a real actress?,130436,Castle,21.44-31.01,castle_s05e06_seg02_clip_24,A gun 8398,Lanie wants Ryan to tell Esposito everything.,Lanie wants Ryan to do a favor for her.,Lanie needs an opinion on her rash.,Lanie wants to accompany Ryan to see Veronica.,Lanie wonders where Castle is.,1,Why does Lanie approach Ryan after Ryan says he will interview Veronica?,130437,Castle,20-30.7,castle_s08e14_seg02_clip_02,Lanie wants Ryan to do a favor for her. 8399,The color of the marker blue,The color of the marker is black,The color of the marker is silver,The color of the marker is red,The color of the marker is yellow,2,What color is the marker that House is using when he is writing?,130438,House M.D.,51.91-61.09,house_s01e08_seg02_clip_00,The color of the marker is silver 8400,They push each other. ,They hold each other. ,They laugh. ,They run to the bedroom. ,They run into the bathroom. ,1,What do Monica and Chandler do after they look out the window?,130439,Friends,47.57-52.09,friends_s09e22_seg02_clip_21,They hold each other. 8401,Dr. Foreman was feeling anxious.,Dr. Foreman was feeling relaxed.,Dr. Foreman was angry.,Dr. Foreman was feeling curious.,Dr. Foreman was depressed.,3,How was feeling Dr. Foreman before Dr. Cameron stared at him?,130440,House M.D.,2.23-7.57,house_s02e19_seg02_clip_08,Dr. Foreman was feeling curious. 8402,a winter coat,a dress,a pair of pants,a purse,a suit,4,What does Rachel hold up in front of Monica when she enter the room?,130441,Friends,16.03-19.97,friends_s04e09_seg02_clip_12,a suit 8403,White tiles on grey wall,White wall,Grey wall with black spots,Grey tiles on the wall,White tiles with grey spots on the wall,4,What was behind Zach when he was being interrogated?,130442,Castle,9-11.25,castle_s02e20_seg02_clip_21,White tiles with grey spots on the wall 8404,Got a drink,Walked out,Sat down,Turned on the TV,Opened a window,2,What did Chandler do after Phobe hung up the phone?,130443,Friends,46.5-54.55,friends_s05e22_seg02_clip_15,Sat down 8405,I sent Esposito to look into it.,I don't know how I could possibly know that.,Castle will tell you.,Ryan is looking into it.,I'm gonna find out.,4,What does Beckett say when Gates asks her the connection between the man in the photo and Mr. Carruthers?,130444,Castle,2.72-19.01,castle_s06e16_seg02_clip_13,I'm gonna find out. 8406,gets her a hot beverage,the chair,a stool,he leaves,on the couch,4,Where does Leonard sit after Penny cries?,130445,The Big Bang Theory,18.01-26.86,s01e17_seg02_clip_07,on the couch 8407,Because she couldn't stand him,Because she was interviewing for another job,She didn't want to have her night disrupted.,She called in sick and did not want him to see her. ,She was on a date with his brother.,1,Why did Rachel say Mr. Zellner could not see her when she spotted him at the restaurant?,130446,Friends,0-21.71,friends_s10e14_seg02_clip_03,Because she was interviewing for another job 8408,Pray to god.,He tried to marry his sister and her boyfriend.,Eat a Sandwich,Argue with his sister.,Hit Bobby with a shoe.,1,What did Joey do after Rachel questioned him?,130447,Friends,6.79-14.17,friends_s08e10_seg02_clip_13,He tried to marry his sister and her boyfriend. 8409,Ross is sad because it's cold in the hallway. ,Ross is sad because Rachel is hurt. ,Ross is sad because he doesn't remember where he put the keys to his apartment. ,Ross is sad because he didn't want Rachel to sit with him. ,Ross is sad because a relationship he had has ended after two weeks. ,4,Why is Ross sad when he's talking to Rachel?,130448,Friends,0-38.77,friends_s04e16_seg02_clip_19,Ross is sad because a relationship he had has ended after two weeks. 8410,Claims to love music too,Says he plays the cello too,Says he is a drummer,He tells Penny that he is a human Beatbox and then starts beatboxing.,Sings to Penny,3,What does Howard do after Penny seems excited that how plays the cello?,130449,The Big Bang Theory,40.13-59.02,s01e05_seg01_clip_02,He tells Penny that he is a human Beatbox and then starts beatboxing. 8411,Anita,Castle,Fred,Sarah,Lisa,1,Who will finish teaching them after the outcome?,130450,Castle,36.2-127.03,castle_s08e13_seg02_clip_26,Castle 8412,To report a mistake,To switch a shift,To get on the trauma case,To allow Meredith to take the test on a different day,To say happy birthday,3,Why does Christina suggest talking to the chief when talking to Meredith?,130451,Grey's Anatomy,65.81-78.35,grey_s03e24_seg02_clip_04,To allow Meredith to take the test on a different day 8413,angry,bored,tired,happy,worried,3,How did Robin feel when she figured out Barney liked Nora?,130452,How I Met You Mother,32.46-47.27,met_s06e16_seg02_clip_14,happy 8414,They had grown apart and wanted to both serve at the same post.,They needed to keep the appearance of a good marriage for his career.,The led separate lives but stayed married for the children.,They led separate lives but stayed married because a divorce would be too complicated.,"They just drifted apart before they knew it, who knows why.",0,"Why did Sergei tell Beckett They that he and his wife led separate lives when answering her question,",130453,Castle,33.68-51.43,castle_s08e11_seg02_clip_10,They had grown apart and wanted to both serve at the same post. 8415,House drops them and breaks things,House didn't ask Emily's permission first,House threw out his back and needs to see a doctor,House dropped them on his foot and says a bad word,Emily kept telling House to stop and he didn't,0,Why does House apologize after he lifts the amp stack?,130454,House M.D.,64.78-91.24,house_s07e22_seg02_clip_00,House drops them and breaks things 8416,Castle said Jane deserved a swift kick in the butt.,Castle said Jane deserved revenge.,Castle said Jane deserved a award.,Castle said Jane deserved Justice.,Castle said Jane deserved punishment.,3,What did Castle say Jane Herzfeld deserved after he told Beckett about a setup?,130455,Castle,47.62-49.93,castle_s04e04_seg02_clip_25,Castle said Jane deserved Justice. 8417,The stairs,The store,The elevator,An office,The parking lot ,2,Where did Ryan and Esposito come from before running into Martha?,130456,Castle,9.96-25.99,castle_s06e02_seg02_clip_15,The elevator 8418,Shoes,Knick nacks,Paintings,Books,Shirts,3,What does Castle pull out of the box after he set's it down?,130457,Castle,0-8.46,castle_s08e17_seg02_clip_07,Books 8419,watching tv,sleeping on the floor,eating food,looking out the window,working at his desk,4,what is house doing when taub enters his office after talking to ben?,130458,House M.D.,82.79-90.24,house_s08e06_seg02_clip_24,working at his desk 8420,A tennis racquet.,A folder.,A patient's file.,A hand paddle.,A cell phone.,3,What is Chase holding when discussing panic attacks?,130459,House M.D.,0-9.35,house_s07e17_seg02_clip_12,A hand paddle. 8421,Sheldon suggested that Leonard drive over to Priya's home.,Sheldon suggested that Leonard turn off the computer.,Sheldon suggested that Leonard use on the video chat on his cell phone.,Sheldon suggested that Leonard try resetting the TCP/IP stack.,Sheldon suggested that Leonard do the video chat with Priya in the morning.,3,What did Sheldon suggest after Leonard's computer screen froze?,130460,The Big Bang Theory,48.88-59.25,s05e02_seg02_clip_07,Sheldon suggested that Leonard try resetting the TCP/IP stack. 8422,Booked a cancer lecture a year ago,Booked a prostate cancer lecture a year ago,Booked a brain cancer lecture a year ago,Booked a lung cancer lecture a year ago,Booked a rectal cancer lecture a year ago,4,What did Wilson do before House got the tickets that makes it impossible for him to go?,130461,House M.D.,35.84-46.73,house_s01e12_seg02_clip_11,Booked a rectal cancer lecture a year ago 8423,Sheldon feels he is poisoning the critical thinking of children. ,"Sheldon thinks what he is doing is great, but will never let Howard know that. ",Sheldon is jealous. ,Sheldon is just sick and cranky. ,Sheldon is just in a bad mood after a fight with Amy. ,0,Why isn't Sheldon enjoying it when Howard is doing magic tricks?,130462,The Big Bang Theory,21.91-24.34,s05e12_seg01_clip_01,Sheldon feels he is poisoning the critical thinking of children. 8424,Red,Orange,Blue,White ,Brown,0,What color shoes is Ben wearing when Ross is changing his diaper?,130463,Friends,2.23-11.13,friends_s02e06_seg02_clip_21,Red 8425,a fork,his tea cup,a beer,a pen,a sword,3,What is Ross holding in his hand when he tells Emily to invite whomever she wants?,130464,Friends,12.48-18.12,friends_s04e21_seg02_clip_01,a pen 8426,Castle felt very sad when Alexis left the room.,Castle felt happy.,Castle felt angry.,Castle felt very hungry.,Castle felt sleepy.,0,How did Castle feel after Alexis left the room?,130465,Castle,54.76-61.2,castle_s03e17_seg02_clip_10,Castle felt very sad when Alexis left the room. 8427,Castle's uncle moved Ted's body,Tony moved Ted's body,An unknown accomplice moved Ted's body,Tony's partner moved Ted's body,Castle's father moved Ted's body,4,Who moved Ted's body back to his apartment after he was killed?,130466,Castle,50.06-58.53,castle_s06e12_seg02_clip_26,Castle's father moved Ted's body 8428,Emily's apartment.,Rachel's apartment.,Ross' apartment.,The hallway.,Rachel's bedroom.,3,Where are Ross and Rachel when they are talking?,130467,Friends,22.73-30.99,friends_s04e16_seg02_clip_18,The hallway. 8429,No one invited him to dinner.,He doesn't think he's allowed to be slapped on thanksgiving.,He doesn't like turkey.,Barney insists Marshall wear a suit on thanksgiving.,He doesn't feel like celebrating this year.,1,Why is Barney upset when talking to Marshall about thanksgiving?,130468,How I Met You Mother,9.05-18.98,met_s03e09_seg02_clip_02,He doesn't think he's allowed to be slapped on thanksgiving. 8430,To raid the medicine cabinets,To see Wilson,To see Cuddy,To the cafeteria,To see the patient,4,Where does House go after he leaves the team in his office?,130469,House M.D.,17-29.08,house_s03e24_seg02_clip_20,To see the patient 8431,For not being at her birthday party,For letting the patient die,For being indifferent and being partly responsible to what happened in their marraige,For saying something mean to her mother,For going crazy for a couple hours,2,Why does Derek apologize after walking in the door and interrupting reading?,130470,Grey's Anatomy,40.27-94.57,grey_s02e20_seg02_clip_25,For being indifferent and being partly responsible to what happened in their marraige 8432,A can of pepsi,Plates,A candle,A stack of magazines,A bookshelf,1,What was behind Mrs. Cooper when she told Sheldon to just pretend he is Chinese?,130471,The Big Bang Theory,0-9.46,s03e01_seg02_clip_14,Plates 8433,Raj,Leonard,Penny,Howard,Amy,2,Who was Sheldon talking to when he was standing in the doorway?,130472,The Big Bang Theory,0-5.27,s04e14_seg02_clip_03,Penny 8434,Author,Blackmailer,Killer,Singer,Blackmailer and killer,4,What did castle say jeremy made himself into when he moved to new york?,130473,Castle,64.63-72.82,castle_s03e23_seg02_clip_16,Blackmailer and killer 8435,He asks him because he genuinely cares about her. ,He asks him because he doesn't know what she's talking about. ,He asks him because he wants to know about their relationship. ,He asks him because she doesn't understand how the clock works. ,He asks him because he genuinely cares about him. ,3,Why does Arthur ask Leonard what him and Penny talk about after Penny asks if it's a trick clock?,130474,The Big Bang Theory,18.3-20.95,s06e22_seg02_clip_12,He asks him because she doesn't understand how the clock works. 8436,opened the window,walked outside,put their coats on,walked to the window,made snow angles,3,What did everyone do when it started snowing?,130475,Friends,0-3.92,friends_s09e10_seg02_clip_18,walked to the window 8437,they are going to a party,they are going to a funeral,it is monica and chandler's wedding.,they are going out to dinner,they are going to a play. ,2,"why is chandler, monica, pheobe, and rachel all dressed up when they are talking about pheobe being pregnant?",130476,Friends,9.8-15.69,friends_s08e01_seg02_clip_01,it is monica and chandler's wedding. 8438,She touches the game board,She bumps into him,She gives him a hug,She makes too much noise,She knocks the game board over,0,Why does Ross get aggravated with Monica when she first comes in the room where he is?,130477,Friends,25.41-32.67,friends_s04e12_seg02_clip_05,She touches the game board 8439,Amy throws the harp,Amy keeps playing,Amy goes to sleep,Amy starts running,Amy stands up,4,What does Amy do after she notices that Sheldon does not want to hear her harp playing?,130478,The Big Bang Theory,9.3-14.41,s05e02_seg02_clip_09,Amy stands up 8440,He doesn't taste the rum.,He doesn't taste the bitters.,He doesn't taste the Rosewater.,He doesn't taste the cherries.,He doesn't taste the gin.,3,What does Sheldon say he doesnt taste after trying the drink?,130479,The Big Bang Theory,41.42-60.02,s04e07_seg02_clip_14,He doesn't taste the cherries. 8441,grey,black,brown,white,Blue,4,"What color is Castle's shirt when Beckett say's ""Castle wait...""?",130480,Castle,0-9.59,castle_s07e15_seg02_clip_11,Blue 8442,A delivery boy.,Howard's mother.,Sheldon.,The mailman.,An Air Force officer.,4,Who does Raj see when he open the door to the house?,130481,The Big Bang Theory,17.29-24.97,s10e01_seg02_clip_02,An Air Force officer. 8443,Eating a sandwich ,Holding a wine bottle,Holding his phone,Writing a letter,Holding a cup,4,What was Barney doing right before Honey asked him a question?,130482,How I Met You Mother,2.14-61.03,met_s06e15_seg02_clip_15,Holding a cup 8444,The annoying neighbor who lives above them saved him. ,Ross and Chandler ran out to save him. ,Phoebe saved him. ,Monica saved him. ,Rachel saved Joey from jumping off the balcony ,4,Who saved Joey after he tried to jump off the balcony?,130483,Friends,17.29-24.33,friends_s10e16_seg02_clip_13,Rachel saved Joey from jumping off the balcony 8445,Sarah,Beckett,Cathy,Virginia ,Naomi,1,Who was Castle talking to when Keith was walking away?,130484,Castle,11.98-26.27,castle_s05e07_seg02_clip_14,Beckett 8446,He wants Penny to quit her job. ,He wants Penny to sit down and eat with them. ,He wants Penny to hang out with them when she leaves work. ,He wants Penny to get fired. ,He wants Penny to go away. ,4,Why does Howard ask if Penny has any other tables to wait on when they are talking?,130485,The Big Bang Theory,24.55-26.86,s06e07_seg02_clip_05,He wants Penny to go away. 8447,Castle and Beckett are sitting in a coffee shop.,Castle and Beckett are sitting at an office table in the police station.,Castle and Beckett are laying on the sofa in the station's waiting room.,Castle and Beckett are sitting on the kitchen counter of the break room.,Castle and Beckett are sitting in Beckett's car.,1,Where are Castle and Beckett when they review the letters between Greg and Amy?,130486,Castle,33.68-91.03,castle_s03e05_seg02_clip_18,Castle and Beckett are sitting at an office table in the police station. 8448,She was worried he was hurt.,She thought he should have helped more to catch the suspect.,She told him to stay in the car.,She didn't want anything to happen to him. ,Castle lost his gun. ,2,Why was Beckett upset with Castle after Nadir is caught outside?,130487,Castle,81.14-86.87,castle_s01e07_seg02_clip_25,She told him to stay in the car. 8449,The Wonder Element.,The Wonder Blunder.,The Cooper Blunder.,The Cooper Element.,Sheldon's Blunder.,1,What is the name some people call Sheldon's discovery after he found the first stable super-heavy element by mistake?,130488,The Big Bang Theory,18.48-49.27,s07e10_seg01_clip_01,The Wonder Blunder. 8450,Derek Jeter,Castle,Esposito,Cano Vega,Shawn Caldwell,3,Who was revealed to be the deceased party when the cops arrived to investigate the scene on the baseball field?,130489,Castle,12.04-16.06,castle_s02e15_seg02_clip_01,Cano Vega 8451,Ryan puts up photographs.,Ryan puts up a painting.,Ryan puts up a book review.,Ryan puts up a coupon.,Ryan puts up a centerfold.,0,What does Ryan put up on the white board before Castle walks into the room?,130490,Castle,24.68-29.61,castle_s08e21_seg02_clip_07,Ryan puts up photographs. 8452,4,1,3,2,5,3,How many diseases did Rowan say Gabriel have after Chase and Rowan discovered a wound on Gabriel?,130491,House M.D.,58.03-64.48,house_s01e13_seg02_clip_10,2 8453,House doesn't want to know anything,House wants to know how long she is staying,House wants to know why she is acting strange,House wants to know where she is going next,House wants to know if Stacy loves or hates him,4,What does House need to know when he asks Stacy so they could work together?,130492,House M.D.,54.02-61.22,house_s02e06_seg02_clip_23,House wants to know if Stacy loves or hates him 8454,Rachel,Monica,He does not believe in soul mates,Someone else,Phoebe,2,"Who does Chandler believe is his soul mate, after Phoebe asks?",130493,Friends,22.73-32.02,friends_s08e16_seg02_clip_00,He does not believe in soul mates 8455,Chandler.,Rachel.,Ross.,Phoebe.,Monica.,3,Who is Joey playing blackjack with before the guard walks up?,130494,Friends,0-53.42,friends_s05e23-24_seg02_clip_40,Phoebe. 8456,Phoebe puts her purse on the floor,Phoebe puts her purse on the table,Phoebe puts her purse on the chair,Phoebe puts her purse on the couch,Phoebe puts her purse on a stool,0,Where does Phoebe put her purse after she sits down,130495,Friends,5.76-14.73,friends_s08e16_seg02_clip_00,Phoebe puts her purse on the floor 8457,Working on the computer`,Talking on the phone,Writing on some paperwork,Cleaning his desk,Standing by the water machine,2,What was Gablehauser doing when Sheldon and Leslie were standing in front of the desk?,130496,The Big Bang Theory,27.01-30.96,s02e03_seg02_clip_06,Writing on some paperwork 8458,10,7,6,9,8,4,How high did Cameron say Roy's son's intracranial pressure was when Chase asked her after he started having a seizure?,130497,House M.D.,17.35-24.2,house_s06e04_seg02_clip_12,8 8459,House is sitting on a bench,House is sitting on a stool,House is sitting on a table,House is sitting in a chair,House is sitting on a sofa,3,Where is House sitting after they installed the flat screen TV?,130498,House M.D.,38.71-45.46,house_s04e14_seg02_clip_14,House is sitting in a chair 8460,He is sitting on the floor,He's sitting in a recliner,He's sitting at the kitchen table,He is sitting on the couch,He is sitting on a bench,4,Where is Ross sitting when Chandler is pacing around?,130499,Friends,0-22.34,friends_s04e13_seg02_clip_06,He is sitting on a bench 8461,Sheldon is sitting in the chair,Sheldon is sitting on the couch,Sheldon is sitting on the floor,Sheldon is sitting in the kitchen,Sheldon is sitting at the desk,1,Where is Sheldon sitting after Leonard tells Penny about the wi-fi,130500,The Big Bang Theory,12.29-28.99,s05e11_seg01_clip_00,Sheldon is sitting on the couch 8462,wine glass,mug,can of beer,umbrella,nothing,1,What was the lady in gray jacket holding when she was talking to Rachel ?,130501,Friends,51.57-57.98,friends_s10e05_seg02_clip_17,mug 8463,Pats her leg.,Winks at her.,Kisses is lips at her.,Puts his arm around her.,Touches her shoulder. ,2,What does Joey do after he tells Phoebe he same charm saved for her?,130502,Friends,18.31-21.97,friends_s06e21_seg02_clip_12,Kisses is lips at her. 8464,Lily dances with Marshall.,Lily walks to the door.,Lily proposes to Marshall.,Lily closes her eyes and smiles at Ted.,Lily kisses Ted.,3,What does Lily do after Barney tells Ted he is doing this wrong?,130503,How I Met You Mother,26.56-28.75,met_s06e16_seg01_clip_00,Lily closes her eyes and smiles at Ted. 8465,He found Chandler's secret stash. ,He stole something from Chandler. ,He slept in Chandler's bed. ,He heard the hypnosis tape that Chandler is listening to says he is a woman. ,He found out why Chandler is snoring. ,3,Why does Joey have a smirk on his face when he is leaving Chandler's room?,130504,Friends,0.59-6.79,friends_s03e18_seg02_clip_18,He heard the hypnosis tape that Chandler is listening to says he is a woman. 8466,She told Dr Green he had to leave.,She introduced her friends to the Dr. Green.,She started eating cake and left the room.,She jumped out of the window.,She didn't talk to anyone.,1,What did she do when she closed the doo?,130505,Friends,40.22-45.62,friends_s02e22_seg02_clip_02,She introduced her friends to the Dr. Green. 8467,He went down the stairs.,He walked down the hall to Wilson's office.,He walked to the next room.,He hopped over the banister in front of Wilson's office.,He got on the elevator.,3,How did House get to Wilson's office after he said he'll consult a specialist?,130506,House M.D.,66.6-77.16,house_s03e05_seg02_clip_12,He hopped over the banister in front of Wilson's office. 8468,"He said she was not his type, that he preferred brunettes","He said she asked specifically for head shots, nothing else",He said she was too sweet and innocent for him to have thought about doing that with her,"He said she was not that type, that she was all about the glamour.",He said there was just something too fragile about her.,3,Why did Lattimer say he wouldn't have taken the nude shots of Amber when he was talking to the officers?,130507,Castle,55.63-61.06,castle_s03e23_seg02_clip_14,"He said she was not that type, that she was all about the glamour." 8469,A mouse.,A bird.,A puppy.,A coffee mug.,A book.,2,What is the man holding when talking to Phoebe?,130508,Friends,12.17-20.5,friends_s04e11_seg02_clip_19,A puppy. 8470,Amy is at the Cheesecake Factory,Amy is is in her lab,Amy is at a bridal shop,Amy is at Sheldon's apartment,Amy is at the movie theatre,2,Where is Amy when she is taking a video of herself,130509,The Big Bang Theory,23.93-33.59,s05e08_seg02_clip_16,Amy is at a bridal shop 8471,She put her leg in the door.,She stayed out there.,She gave something to Rachael.,She gave Monica a prize.,She pulled Rachael's hair.,3,What did Phoebe do after she stuck her head out the door?,130510,Friends,9.51-14.27,friends_s10e08_seg02_clip_15,She gave Monica a prize. 8472,Cindy.,Ted.,Marshall's dad.,Robin.,Barney's mom.,2,Who do Lily and Barney talk about after Ted leaves?,130511,How I Met You Mother,44.1-58.03,met_s06e01_seg02_clip_11,Marshall's dad. 8473,A couch,File cabinets,A computer,Cardboard boxes,Plastic bins,3,What was behind Esposito when he was sitting at his desk and talking with Castle and Esposito?,130512,Castle,5.01-11.83,castle_s03e14_seg02_clip_08,Cardboard boxes 8474,Ted smiles and tilts his head at Zoey.,Ted lays on the floor.,Ted dances with Lily.,Ted plays ball with Barney.,Ted kisses Robin.,0,What does Ted do after Zoey says he knows how to set a mood?,130513,How I Met You Mother,14.69-17.5,met_s06e16_seg01_clip_00,Ted smiles and tilts his head at Zoey. 8475,Phoebe feels bad for hurting the strands of hair with her scissors.,Phoebe is nervous because she isn't a hairdresser.,Phoebe is playing a practical joke on Monica.,"Monica keeps cringing in the mirror, and Phoebe thinks she doesn't trust her.",Phoebe doesn't trust Monica to like her new haircut.,3,Why does Phoebe say she quits when she is giving Monica a haircut?,130514,Friends,7.63-29.9,friends_s02e01_seg02_clip_13,"Monica keeps cringing in the mirror, and Phoebe thinks she doesn't trust her." 8476,She started surgery on a patient.,She went somewhere isolated to cry.,She went home.,She went to have a talk with Meredith.,She went to sanitize her hands.,1,What did Izzie do after she walked away from George?,130515,Grey's Anatomy,72.52-100.03,grey_s03e24_seg02_clip_20,She went somewhere isolated to cry. 8477,Priya kissed Raj.,Priya requested a lemonade.,Priya looked at Howard.,Priya read a book.,Priya walked from the room.,2,What does Priya do after Leonard asks Howard what his mother said about their getting married?,130516,The Big Bang Theory,32.01-33.61,s04e23_seg02_clip_00,Priya looked at Howard. 8478,Laying on a couch.,On the subway.,In a train.,Walking down the street.,In a tree.,4,Where was Ryan when he called for Beckett?,130517,Castle,49.79-54.16,castle_s03e04_seg02_clip_23,In a tree. 8479,Leonard,Howard,Raj ,Sheldon ,Amy,2,Who was with Bernadette when she was in the car?,130518,The Big Bang Theory,0-51.62,s10e03_seg02_clip_16,Raj 8480,Because she drinks too much thinking about Ted.,Because Ted makes her so mad.,Because Ted is a figment of her imagination.,Because she stresses too much over whether or not Ted loved her.,Because she is grieving for Ted.,4,Why does Izzie say Verna's heart stops after they discuss Ted?,130519,Grey's Anatomy,43.75-64.81,grey_s02e05_seg02_clip_18,Because she is grieving for Ted. 8481,A piece of pie,Popcorn,A donut,A bread roll,A slice of pizza,3,What is Joey eating when Chandler is on the phone with the guy from his old job?,130520,Friends,37.55-44.03,friends_s01e15_seg02_clip_13,A bread roll 8482,I have a meeting at work.,Your mother got sick.,I got sick.,They lost our reservations.,France sucks.,4,Why did Joshua's dad say they cut their trip short after they came through the door? ,130521,Friends,31.58-39.67,friends_s04e18_seg02_clip_12,France sucks. 8483,Lee wanted 3 years.,Lee wanted 8 years.,Lee wanted 11 months.,Lee wanted 10 years.,Lee wanted 5 years.,3,How many years did Lee say he wanted before he could be given parole?,130522,Castle,13.87-14.79,castle_s04e04_seg02_clip_25,Lee wanted 10 years. 8484,emergency room,class room,cafeteria,sleep lab,maintenance closet,3,Where did Chase say Cameron did not keep her volume down after she told him she did not want to get caught either?,130523,House M.D.,30.81-37.41,house_s03e16_seg02_clip_10,sleep lab 8485,In the closet,On the floor,On the bed,On the table,On the couch.,3,Where does Wilson drop his stuff after the door closes?,130524,House M.D.,52.19-57.83,house_s06e17_seg02_clip_16,On the table 8486,Madison Square Gadrens.,The Harlem Youth Center.,Central Park.,The Harlem Globe Trotters.,The zoo.,1,Where did Dunne say he had been at 9:30 the previous night when Beckett asked him?,130525,Castle,5.36-9.39,castle_s05e09_seg02_clip_06,The Harlem Youth Center. 8487,Her parents.,Chandler and Monica's.,The Ralph Lauren party..,Ross's work party.,His parents.,4,Who's party are Rachel and Ross at when the woman congratulates them?,130526,Friends,23.21-27.56,friends_s08e18_seg02_clip_04,His parents. 8488,Michael,Matt,Max,Milo,Tate,1,What person was suspicious of Melanie cheating when they were together?,130527,Castle,66.15-71.14,castle_s04e06_seg02_clip_22,Matt 8489,That her parents don't want her to date.,That she really didn't think that would be a good idea.,That her friend was coming to visit.,That the manager hadn't posted the work schedule so she didn't know.,That she wasn't feeling well. ,3,What did Penny say when Leonard asked if she could go to a movie on Saturday?,130528,The Big Bang Theory,35.35-43.42,s02e01_seg02_clip_04,That the manager hadn't posted the work schedule so she didn't know. 8490,That he would take care of it himself,That he would move out,That he would go bankrupt ,That he needs a new roommate ,That he is getting another apartment ,0,What was Joey's reaction after talking with Chandler about the rent?,130529,Friends,43.9-48.13,friends_s06e06_seg01_clip_00,That he would take care of it himself 8491,Tim Bolt.,Henry Bolt.,Tom Bolt.,Derek Bolt.,Dave Bolt.,3,What man are the detectives looking at a picture of when the video starts?,130530,Castle,1.36-5,castle_s07e19_seg02_clip_06,Derek Bolt. 8492,Marshall was adjusting his collar.,Marshall was adjusting his tie.,Marshall was adjusting his belt.,Marshall was adjusting his jacket.,Marshall was adjusting his hair.,4,What was Marshall adjusting when he was looking in the mirror?,130531,How I Met You Mother,29.91-39.02,met_s02e21_seg02_clip_11,Marshall was adjusting his hair. 8493,A bowl.,A bag of groceries.,A pitcher of water.,A vase of flowers.,A pile of papers.,0,"What does Pheobe set on the table after Ross says, ""You don't even know this guy?""",130532,Friends,19.34-23.27,friends_s01e11_seg02_clip_01,A bowl. 8494,Making new friends is a good idea. ,In New York City you don't get close to the neighbors.,The new neighbors are not nice. ,There are better neighbors to make friends with. ,In New York City it's best to have more friends. ,1,What did Ted tell Lily when she said she liked her new neighbors? ,130533,How I Met You Mother,28.86-38.38,met_s03e11_seg01_clip_03,In New York City you don't get close to the neighbors. 8495,Chutes and ladders,Monopoly,Candy land,Jenga,Operation,3,What game is everyone playing when they are together?,130534,The Big Bang Theory,0.89-5.02,s04e22_seg02_clip_10,Jenga 8496,Mr. D (Mr. Douglas),Ross,Rachel,Mr. C (Mr. Clark),His assistant ,0,Who knocks and opens Chandler's the door when Chandler is in his office?,130535,Friends,40.06-47.34,friends_s01e16-17_seg02_clip_08,Mr. D (Mr. Douglas) 8497,her mom,Monica,Ross,Phoebe,Chandler,0,Who gives Rachel a hug when walking into the coffee shop?,130536,Friends,24.05-31.35,friends_s02e11_seg02_clip_05,her mom 8498,Primitive Indiains,Brazil,African villagers,Austrialians,Medicans,2,Where does Cameron suggest people are dying after not receiving help or attention?,130537,House M.D.,43.51-50.84,house_s02e04_seg02_clip_13,African villagers 8499,Ross tells Rachel to stop the noise.,Ross tells Rachel to let it all out.,Ross tells Rachel the doctor says it's from all the hormones plus she's sleep deprived.,Ross tells Rachel he's going home.,Ross tells Rachel he loves her.,2,Why does Ross tell Rachel it's normal when she keeps crying?,130538,Friends,37.58-41.79,friends_s08e23-24_seg02_clip_35,Ross tells Rachel the doctor says it's from all the hormones plus she's sleep deprived. 8500,Looking for an apartment for Rachel and the baby.,Reading Nancy Drew,Looking for Jobs,Drawing,Informing himself on the political situation,0,What is Ross doing when he's looking through the book?,130539,Friends,2.79-13.03,friends_s08e07_seg02_clip_09,Looking for an apartment for Rachel and the baby. 8501,A harp,A banjo,A keyboard,A flute,Another guitar,4,What was beside Leslie when she was playing the guitar and singing?,130540,Friends,39.99-44.22,friends_s03e14_seg02_clip_10,Another guitar 8502,Ted dances with Robin.,Ted screams.,Ted jumps up on the table.,Ted runs to the door.,Ted sighs.,4,What does Ted do after he says figuratively?,130541,How I Met You Mother,11.2-13.32,met_s03e08_seg02_clip_12,Ted sighs. 8503,He was making a phone call.,He was entering into a car.,He was exiting a building.,He was laughing.,He was starring at a computer screen.,4,What was Castle doing before Hayley said something about clasps and buckles?,130542,Castle,0-7.92,castle_s08e18_seg02_clip_12,He was starring at a computer screen. 8504,A book.,A briefcase.,A dog.,A backpack.,A box of candy.,1,What is Barney holding when Zoey hugs him ?,130543,How I Met You Mother,12.61-15.13,met_s06e15_seg02_clip_08,A briefcase. 8505,She said he was a fool.,She said it was crazy.,She said it was perfect.,She said she would do it.,She said she wasn't sure if she could do it.,2,How did Vera respond after hearing Joe's plan?,130544,Castle,54.68-61.24,castle_s04e14_seg02_clip_14,She said it was perfect. 8506,Low platelets,Low HCT,It's normal,High white count,High cholesterol ,1,What does House say is the only constant thing with the patients blood work after walking away?,130545,House M.D.,39.62-60.54,house_s02e09_seg02_clip_14,Low HCT 8507,pulls him to her room,hugs him,pushes him out the door,grabs his hand,kisses him,4,What does Rachel do to Ross when she walks over to him at the door?,130546,Friends,9.46-18.64,friends_s04e21_seg02_clip_18,kisses him 8508,He was in his bedroom,He was sitting on the couch,He was sitting on the kitchen table,He was on the kitchen floor by the fridge,He was in the hallway,3,Where was Raj after he said he wondered where the nonpathetic people were doing?,130547,The Big Bang Theory,0-4.88,s03e02_seg02_clip_06,He was on the kitchen floor by the fridge 8509,Castle was supposed to meet a woman from Craig's List. ,Castle had waited up to make sure Alexis got home. ,Castle was waiting for a pizza to be delivered. ,Castle had a nightmare about Beckett. ,Castle had drank too much coffee. ,1,Why was Castle still up when Alexis came in? ,130548,Castle,0-11.52,castle_s01e10_seg02_clip_21,Castle had waited up to make sure Alexis got home. 8510,A fork/,A beer can.,A furniture ad.,A blanket.,A bottle of mustard.,0,What is Leonard clutching in his fist when he imitates a baby crying?,130549,The Big Bang Theory,36.14-43.02,s07e16_seg01_clip_01,A fork/ 8511,Go away Leonard.,Ignore him.,"If anyone should offer her anything, it should be me. ",I'll put on some coffee. ,You must be tired from your long trip. ,2,What did Sheldon say after Leonard asked Elizabeth if he could offer her anything?,130550,The Big Bang Theory,4.25-10.62,s03e21_seg02_clip_03,"If anyone should offer her anything, it should be me. " 8512,clothes,beer,groceries,water,drum set,4,What does Simon say Robin forgot to load when she is about to leave?,130551,How I Met You Mother,26.28-33,met_s03e16_seg01_clip_03,drum set 8513,Derek was going to bed,Derek was going into another surgery,Derek wasn't going anywhere,Derek was going into another room,Derek was going to the restroom,0,Where was Derek going to after he finished the surgery?,130552,Grey's Anatomy,11.95-16.73,grey_s01e07_seg02_clip_19,Derek was going to bed 8514,She pointst at her leg.,She punches Ross.,She throws the football at Ross.,She points at Ross.,She kicks Ross.,4,"What does Monica do when she shouts ""Dead Leg"" ?",130553,Friends,27.27-29.3,friends_s03e09_seg02_clip_10,She kicks Ross. 8515,chair,nothing,he doesnt say that,light,map,3,What is behind sheldon when he says Complete with bulletproof bracelets and lasso of truth,130554,The Big Bang Theory,0-6.9,s04e11_seg02_clip_06,light 8516,Chase.,House.,Park.,Foreman.,Wilson.,2,Who suggests T-Cell Lymphoma when brainstorming a patient's diagnosis?,130555,House M.D.,18.91-30.16,house_s08e12_seg02_clip_20,Park. 8517,48 hours,24 hours,12 hours,72 hours,96 hours,0,How many hours worth of surveillance tapes does Rollins tell Ryan and Esposito he has burned for them before they thank him?,130556,Castle,0-12.77,castle_s08e21_seg02_clip_15,48 hours 8518,He is making the bed.,He is eating.,He is brushing his teeth.,He is laying in bed.,He is petting a dog.,3,What is Derek doing when he talks to Meridith?,130557,Grey's Anatomy,0-87.74,grey_s03e09_seg02_clip_30,He is laying in bed. 8519,a white bow,a bird,a barette,a beret,a brush,0,What does Robin have in her hair when she tells Simon about a sprinkler she had?,130558,How I Met You Mother,14.31-17.23,met_s03e16_seg01_clip_03,a white bow 8520,Penny was angry at Sheldon and wanted him to leave. ,Penny felt that there was nothing out of the ordinary about Sheldon's behavior. ,Penny felt weirded out and surprised by Sheldon's behavior. ,Penny felt that Sheldon was insulting her home. ,Penny was sympathetic to Sheldon's dilemma. ,2,How did Penny feel when Sheldon insisted on finding the perfect spot to sit?,130559,The Big Bang Theory,7.36-17.29,s01e17_seg02_clip_11,Penny felt weirded out and surprised by Sheldon's behavior. 8521,Phoebe has a photo album in her hand,Phoebe has a cup of coffee in her hand,Phoebe has her guitar in her hand,Phoebe has a scarf in her hand,Phoebe has a magazine in her hand,4,What does Phoebe have in her hand when she is sitting on the couch,130560,Friends,5.58-14.98,friends_s08e10_seg02_clip_01,Phoebe has a magazine in her hand 8522,A bag,A toilet paper,A towel,A stick,A cup,0,What did the lady in blue cardigan picked up when leaving for the bathroom. ,130561,House M.D.,2.81-11.58,house_s05e22_seg02_clip_16,A bag 8523,He says that Chandler hates Ross.,He says that they should go watch a movie.,He says that they need a new refridgerator.,He says that he got a new girlfriend.,He says that Ross is dating Rachel.,0,What is Joey's response after Chandler tells him he dove in front of Ross.,130562,Friends,9.3-18.92,friends_s05e20_seg02_clip_13,He says that Chandler hates Ross. 8524,Mirror,A patient,A microscope,a refrigerator,A restaurant worker,0,What is House standing in front of when talking to Kutner on the phone?,130563,House M.D.,8.92-16.95,house_s04e15_seg02_clip_16,Mirror 8525,Drinking whiskey alone,Sitting outside the room,Strapped down to a chair,Talking to a patient's mom,Writing an apology letter ,2,Where is House at when Chase and Wilson are preparing to operate?,130564,House M.D.,57.42-70.77,house_s04e16_seg02_clip_14,Strapped down to a chair 8526,She is carrying a bag of salad.,She is carrying a book.,She is carrying a cup of coffee.,She is carrying a phone receiver. ,She is carrying a plate of food.,4,What is Monica carrying when she leaves from the table? ,130565,Friends,0-9.92,friends_s06e09_seg02_clip_17,She is carrying a plate of food. 8527,Eats candy.,Smokes a pipe.,Laughter.,Gets out the car.,Smokes a cigar.,4,How is Barney acting in the car after he tries to give Marshall advice?,130566,How I Met You Mother,39.92-43.82,met_s03e15_seg02_clip_13,Smokes a cigar. 8528,They will get into a fight.,They will fall in love together.,They will get sick of each other.,She will turn into a mermaid.,They will get married. ,3,What does Marshall tell Robin will happen to her after they spend time together?,130567,How I Met You Mother,0-43.22,met_s06e11_seg02_clip_13,She will turn into a mermaid. 8529,Between 3 and 5,Between 9 and 11,Between 4 and 5,Between 8 and 10,Between 9 and 12,3,When did Cuddy say the man comes in every day when she's asked?,130568,House M.D.,9.12-14.4,house_s03e06_seg02_clip_00,Between 8 and 10 8530,Accountant,Car salesman,Phone salesman,Lingerie salesman,Lawyer,3,What did flanagan say bardot did for him when talking to beckett about his duties?,130569,Castle,3.19-10.92,castle_s08e15_seg02_clip_17,Lingerie salesman 8531,"Because Howard says, he has had that helmet since he was in high school. ",Because Howard's mother gave him the helmet and he cherishes it. ,Because Howard's helmet is a limited edition helmet. ,"Because Howard says, Sheldon will ruin his helmet.",Because Howard tells Sheldon the color of the helmet is unique. ,2,Why is Howard upset after Sheldon admits to taking his helmet?,130570,The Big Bang Theory,56.54-61.45,s06e09_seg02_clip_01,Because Howard's helmet is a limited edition helmet. 8532,With a theory on aliens,With a fact about elephants,With a fact about zebras,With a knock knock joke,With a fact about barnacles,4,How does House respond to Wilson when asked if he would call?,130571,House M.D.,0-6.78,house_s02e17_seg02_clip_27,With a fact about barnacles 8533,Raj,Bernadette,Leonard,Penny,Amy ,1,Who is Howard standing next to when Shelton gives his speech? ,130572,The Big Bang Theory,15.65-23.34,s05e24_seg02_clip_14,Bernadette 8534,a surprise party,an empty bed,two women,two men,a dead body,1,What does Taub find when he walks into the patient's room?,130573,House M.D.,41.16-51.45,house_s08e16_seg02_clip_08,an empty bed 8535,skinny rugs,rugless,big rugs,pro rugs,bear rugs,3,What was Alicia's response when Sheldon asked her about rugs? ,130574,The Big Bang Theory,21.25-31.58,s02e19_seg02_clip_03,pro rugs 8536,Rachel.,Monica.,His boss.,Joey.,Chandler.,0,Who is Ross on the phone with when he is at his desk? ,130575,Friends,1.77-6.49,friends_s03e12_seg02_clip_02,Rachel. 8537,They're small,They're closed,They're very red and bleeding,Pupils are dialted,Pupils are tiny,2,What's wrong with Maggie's eyes when she has the scope removed?,130576,House M.D.,16.67-30.81,house_s04e10_seg02_clip_15,They're very red and bleeding 8538,A gift ,A bloody death,A black eye,Rigorous touching,The end of his relationship,3,What should Leonard prepare himself for when Sheldon taunts him?,130577,The Big Bang Theory,5.4-11.7,s09e05_seg02_clip_07,Rigorous touching 8539,A Refrigerator ,A chair,A Plushie,A Vacuum,A trash can,4,What does Raj pass by when he walks across the hall?,130578,The Big Bang Theory,0-3,s05e20_seg02_clip_14,A trash can 8540,aunt,dad,Mom,cousin,co worker,2,Who does Castle speak to when he picks up the phone in his car?,130579,Castle,0-9.05,castle_s01e03_seg02_clip_03,Mom 8541,Penny went to sit beside Sheldon in the lawn chair.,Penny went to sit on the stool in the kitchen.,Penny went sit in the bed.,Penny went to sit on the table.,"Penny went to sit on the rug,",0,Where did Penny sit after taking water out of the fridge?,130580,The Big Bang Theory,11.98-24.84,s09e04_seg02_clip_14,Penny went to sit beside Sheldon in the lawn chair. 8542,Castle says it doesn't sound crazy because worrying is what children do.,Castle says it doesn't sound crazy because it's how he felt about Alexis after Paris.,Castle says it doesn't sound crazy because that's how he knows Alexis is thinking about him.,Castle says it doesn't sound crazy because everyone feels that way.,Castle says it doesn't sound crazy because he's heard other people say the same thing in his lifetime.,1,Why does Castle tell Alexis that she doesn't sound crazy when talking about her feelings of worry?,130581,Castle,39.37-52.34,castle_s07e04_seg02_clip_26,Castle says it doesn't sound crazy because it's how he felt about Alexis after Paris. 8543,He was a poker player,He was in juvenile before,He is just a common liar,He didn't tell his parents,He is parents smoked,0,Why does House think that the kid was a smoker after Park told him that he said he never smoked?,130582,House M.D.,18.63-34.21,house_s08e02_seg02_clip_23,He was a poker player 8544,Rang a doorbell,Hung up the phone,Got a drink,Opened a cabinet,Sat down,4,What did Ross do before Emily said something about being humiliated?,130583,Friends,0.31-6.88,friends_s05e04_seg02_clip_09,Sat down 8545,Monica hugs Rachel.,Monica kisses Chandler.,Monica hugs Ross.,Monica cries.,Monica smiles and turns her head to the side.,4,What does Monica do after Mrs. Geller calls herself positive and life-affirming?,130584,Friends,17.61-22.09,friends_s01e08_seg02_clip_18,Monica smiles and turns her head to the side. 8546,he's always right,He's Mr. Corrector,he voice is shrill,he's afraid of everything,he is always trying to teavh people lessons,1,What did Lilly say that Ted's problem was when she was at the bar,130585,How I Met You Mother,30.59-48.94,met_s03e08_seg02_clip_11,He's Mr. Corrector 8547,He is laughing with Gary.,He is cooking.,He is talking about his relationship with Monica.,He is watching television.,He is throwing a ball.,4,What is Ross doing after the scene shifts away from the office?,130586,Friends,50.47-59.03,friends_s05e21_seg02_clip_04,He is throwing a ball. 8548,A beeper ,Records ,A pen ,A x-ray ,A cell phone ,4,What did House set on the desk when he was in Wilson office? ,130587,House M.D.,36.01-41.41,house_s05e01_seg02_clip_11,A cell phone 8549,The germs on her hands,The man who killed this guy,Leaving any evidence that could tie her to the scene of the crime,Not making it back home in time for dinner,Her father,1,What does Alexis say she's worried about after Lanie tries to comfort her?,130588,Castle,41.41-52.67,castle_s07e21_seg02_clip_08,The man who killed this guy 8550,Chandler was wearing a hoodie.,Chandler was wearing a cotton sports jacket.,Chandler was wearing a sweater and a hat.,Chandler was wearing a t-shirt.,Chandler was wearing a windbreaker jacket.,0,What was Chandler wearing when he met Margha?,130589,Friends,0-23.16,friends_s03e09_seg02_clip_07,Chandler was wearing a hoodie. 8551,He holds up what looks like a check.,He holds up what looks like a rare antique gold coin.,He holds up what looks like a wad of cash.,He holds up what looks like an uncut diamond.,"He holds up what looks like a silver necklace encrusted with rubies, pearls and other gems.",0,What does Ted hold up in his right hand before he asks Barney if he's thought about giving to charity?,130590,How I Met You Mother,6.3-9.9,met_s06e12_seg02_clip_07,He holds up what looks like a check. 8552,Her cousin. ,Her mom. ,Her father. ,Her grandfather. ,Her grandmother. ,4,What's inside the wooden box that is in Phoebe's car when Joey is using it?,130591,Friends,29.81-33.09,friends_s05e22_seg02_clip_15,Her grandmother. 8553,she was Palo's wife,she thought it was her cab,she was trying to rob her,Rachel was mean to her in high school,Rachel stepped on her foot,1,Why did the blonde women attack Rachel when she was getting into a cab?,130592,Friends,40.8-49.73,friends_s01e10_seg02_clip_14,she thought it was her cab 8554,She says they are only friends,She says she is silly,She says they are not in a relationship,She say Thank you,She says they love mothers,3,What does Penney say after Leonard's mother hugs her?,130593,The Big Bang Theory,11.59-61.02,s03e11_seg02_clip_15,She say Thank you 8555,He seemed dumbfounded that she even thought about it.,He thought it was stupid.,He laughed at it.,He was annoyed she wasn't completely honest about it.,He thought it sounded fun.,4,What was Castle's reaction to the article saying that him and Beckett were getting married on space when talking to her?,130594,Castle,112.75-135.02,castle_s06e13_seg02_clip_26,He thought it sounded fun. 8556,Cristina looks up at Tyler.,Cristina hugs Burke.,Cristina dances with Burke.,Cristina kisses Burke.,Cristina cries.,0,What does Cristina do after Tyler says he is awake?,130595,Grey's Anatomy,16.84-20.03,grey_s03e12_seg02_clip_08,Cristina looks up at Tyler. 8557,do you have any power cards?,put down any card ,put down the elf ,"It doesn't matter, you can't possibly win",you don't know how to play?,3,What did Sheldon say after Penny asked Which one? ,130596,The Big Bang Theory,0-55.02,s03e05_seg01_clip_00,"It doesn't matter, you can't possibly win" 8558,Jeff went further into the room.,Jeff went to the bathroom.,Jeff went to the cafeteria.,Jeff went to the nurses.,Jeff went to the elevators.,0,Where did Jeff go when Rebecca turned and greeted him?,130597,Grey's Anatomy,10.01-23.47,grey_s03e25_seg02_clip_05,Jeff went further into the room. 8559,sleeping,reading,eating,watching TV,drawing,1,What is Addison doing when Derek walks into the bedroom?,130598,Grey's Anatomy,39.66-46.98,grey_s02e20_seg02_clip_25,reading 8560,The King,Ryan,Lanie,Oprah's assistant,Lars,2,Who told Castle they weren't nerds in high school when he said he was shocked?,130599,Castle,8.52-14.36,castle_s08e17_seg02_clip_02,Lanie 8561,In the hall,In the door way,At the end of the bed,At a desk,By the window,2,"Where was Foreman Standing when he said "" We got your blood work back. Some things are a little off.""",130600,House M.D.,10.7-14.42,house_s01e18_seg02_clip_00,At the end of the bed 8562,"House said ""Love you""","House said ""Bye""","House said ""Carry on""","House said ""Move""",House did not say anything,2,What did House say before he exited the room?,130601,House M.D.,0-4.07,house_s01e15_seg02_clip_06,"House said ""Carry on""" 8563,Puss in Boots,Anakin Skywalker,Inigo Montoya,Darth Vader,Barrack Obama,0,Who does Howard think Raj was supposed to be when they were fencing?,130602,The Big Bang Theory,23.11-31.51,s09e05_seg02_clip_07,Puss in Boots 8564,Spectated,Followed,Watched,Ignored,Forced,3,Which option was the guy given to get better after getting two options?,130603,House M.D.,13.64-26.41,house_s01e03_seg02_clip_22,Ignored 8565,Her missing child,Robin,Barney,Her Husband,The pizza delivery guy,4,Who was Lily expecting before she opened the door and seen Ted?,130604,How I Met You Mother,0-8.79,met_s02e11_seg02_clip_10,The pizza delivery guy 8566,Jerry was near ross when he was sitting down,Derrick was near ross when he was sitting down,Molly was near ross when he was sitting down,Joey and Rachel was near ross when he was sitting down,Emily was near ross when he was sitting down,3,who was near ross when he was sitting down,130605,Friends,37.84-61.03,friends_s10e10_seg02_clip_07,Joey and Rachel was near ross when he was sitting down 8567,Jane,Castle,Beckett,Howard,Kevin,2,Who interrogated Keith when he was in the interrogation room?,130606,Castle,38.72-53.47,castle_s05e07_seg02_clip_14,Beckett 8568,The store,An auction,A ballet,A library,A park,1,Where do Beckett and Castle go after they go over the evidence?,130607,Castle,64.42-92.03,castle_s03e10_seg02_clip_24,An auction 8569,Fortune Teller,Song,Magic Ball,Dream,Note,1,What does Beckett say told her they would meet again before talking to a doctor?,130608,Castle,73.58-82.21,castle_s07e14_seg02_clip_06,Song 8570,Feeding Justin breakfast.,Giving her son a hug.,Reading her son a book.,Cleaning the room.,Crying.,2,What is the Marion doing when Burke comes in?,130609,Grey's Anatomy,57.62-68.18,grey_s02e12_seg02_clip_03,Reading her son a book. 8571,to see her mom,to get food,to a bar,to see Sam,to the ATM,3,Where did Mandy say she was going after Sam didn't answer his phone?,130610,Castle,7.74-18.66,castle_s06e13_seg02_clip_16,to see Sam 8572,Marshall and Lily are in town.,Marshall and Lily are in bed.,Marshall and Lily are in her office.,Marshall and Lily are in the living room.,Marshall and Lily are in the game room.,1,Where are Marshall and Lily when they are talking about a girl?,130611,How I Met You Mother,48.57-58.52,met_s06e06_seg02_clip_14,Marshall and Lily are in bed. 8573,XRay machines.,Ultrasound machines.,Vending machines.,Gambling machines.,Washing machines.,2,What machines are on the wall behind the doctors when they are walking down the hall?,130612,House M.D.,80.12-90.02,house_s07e12_seg02_clip_13,Vending machines. 8574,The One Child Policy in 1981,The One Child Policy in 1978,The One Child Policy in 1979,The One Child Policy in 1980,The One Child Policy in 1969,2,What does Wilson say China did after he mentions the patient shouldn't be alive?,130613,House M.D.,9.82-20.53,house_s05e04_seg02_clip_23,The One Child Policy in 1979 8575,She says no way!,"She laughs and says ""okay""",She asks why it can't be a woman cave,"She says, that's a pretty good idea!",She says it should be a lab. ,2,What does Bernadette respond after Howard's suggestions about the room?,130614,The Big Bang Theory,8.7-12.91,s09e12_seg02_clip_09,She asks why it can't be a woman cave 8576,She is a known liar,He asked her to,She didn't think we could handle the truth,She thought she was telling the truth,He didn't know for sure,1,How did Castle respond when his daughter asked why Hayley lied to them?,130615,Castle,72.11-75.23,castle_s08e14_seg02_clip_22,He asked her to 8577,Wipe his hands on his pants.,Take off his gloves.,Rub in Purell/hand sanitizer,Check outside the door to see if Raj is coming.,Page Raj over the intercom.,2,What does Sheldon do with his hands after putting the snake into Raj's desk?,130616,The Big Bang Theory,0-11.24,s05e07_seg02_clip_05,Rub in Purell/hand sanitizer 8578,I remember everything.,I know was you.,I don't remember it.,I have a very good memory.,My memory is lucid.,2,What said Chandler when holding a match on.,130617,Friends,0.29-2,friends_s04e13_seg02_clip_11,I don't remember it. 8579,blue,White,grey,green,black,1,"What color is Pete Benton's shirt when he say's ""My brother sent me...""?",130618,Castle,0-9.97,castle_s04e06_seg02_clip_22,White 8580,i'm not a preschooler ,Gee thanks sheldon ,wow how nice of you ,I never though this day would come ,I didn't see that one coming ,0,What did leonard say after sheldon gave him the sticker? ,130619,The Big Bang Theory,42.01-52.21,s08e14_seg01_clip_02,i'm not a preschooler 8581,Leonard is in the very back.,Raj is in the very back.,Howard is in the very back.,Sheldon is in the very back.,Priya is in the very back.,3,Who is sitting in the very back when everyone is in the van?,130620,The Big Bang Theory,0-10.71,s09e03_seg02_clip_03,Sheldon is in the very back. 8582,Because the crowd is throwing tomatoes.,Because the crowd is leaving soon.,Because the crowd is yelling.,Because the crowd is happy to listen to her.,Because the crowd is singing too.,3,Why is Chandler excited for Monica when she is doing karaoke?,130621,Friends,8.96-13.77,friends_s09e13_seg02_clip_22,Because the crowd is happy to listen to her. 8583,Parks says they learned the patient didn't have a stroke.,Parks says they learned the patient didn't have a tumor.,Parks says they learned the patient didn't have an aneurysm.,Parks says they learned the patient didn't have a migraine.,Parks says they learned the patient didn't have a seizure.,3,What does Park tell House the team learned before the MRI drowned?,130622,House M.D.,29.96-36.32,house_s08e21_seg02_clip_19,Parks says they learned the patient didn't have a migraine. 8584,Dr. Burke is reading a patient file.,Dr. Burke leans across the stair case while he tries not to fall asleep.,Dr. Burke is leaning against the stair case and rubbing his fingers across the front of his face.,Dr. Burke is texting on his cell phone.,Dr. Burke is drinking a cup of coffee.,2,What is Dr. Burke doing when Derek walks down the stairs and tells him it's a mess?,130623,Grey's Anatomy,19.29-25.57,grey_s02e02_seg02_clip_12,Dr. Burke is leaning against the stair case and rubbing his fingers across the front of his face. 8585,A sweet girl ,An unlucky girl ,A sick girl,A healthy girl ,A lucky girl,4,How does Izzie describe Heather when speaking in her room? ,130624,Grey's Anatomy,13.1-22.28,grey_s03e12_seg02_clip_03,A lucky girl 8586,They were walking to the store.,They were going to the elevator.,The were walking to the suspect board in the office.,They were going to Beckett's office.,They were walking to meet with more detectives.,2,Where were the group of detectives walking to when talking about the suspects?,130625,Castle,21.61-30.16,castle_s05e17_seg02_clip_09,The were walking to the suspect board in the office. 8587,6:00,8:00,11:30,3:30,10:00,4,When was the exam going to post results after Marshall spoke to Lily?,130626,How I Met You Mother,0-14.54,met_s03e08_seg02_clip_01,10:00 8588,at a television ,at a fine lady ,at the whiteboard ,at a picture ,at a cellphone ,2,what was Travis Brennan looking at before turning back ,130627,House M.D.,84.66-92.03,house_s04e06_seg02_clip_11,at the whiteboard 8589,I am visiting africa,NASA is putting me on an earlier Launch,Im going on a camping trip,Im going to visit my great grandpa,Im going to Paris for the weekend,1,What does Howard say about his plans for the weekend when talking to Bernadette?,130628,The Big Bang Theory,16.41-28.71,s05e24_seg01_clip_00,NASA is putting me on an earlier Launch 8590,He let Ted take the lead,He ran,He fainted,He froze,He got one of the model's phone numbers.,3,"What happened to Barney after he said ""This party is legend""?",130629,How I Met You Mother,0-42.35,met_s03e10_seg02_clip_08,He froze 8591,Paolo is on the other side of the door.,Joshua is on the other side of the door.,Chandler is on the other side of the door.,Joey is on the other side of the door.,Pete is on the other side of the door.,1,Who is on the other side of the door when Rachel opens it?,130630,Friends,5.36-10.72,friends_s04e20_seg02_clip_20,Joshua is on the other side of the door. 8592,He gives Raj a smile and then a fist pump.,He gives Raj a smile and a pat on the shoulder.,He gives Raj a smile then rubs his hands together.,He gives Raj a smile and then a friendly jab in the shoulder.,He gives Raj a smilel and they both go sit on the sofa.,2,What does Leonard do after he tells Raj his mom stopped calling him slum dog millionaire?,130631,The Big Bang Theory,22.5-28.92,s04e09_seg02_clip_06,He gives Raj a smile then rubs his hands together. 8593,At her home. ,On the street. ,The jail cell. ,In the parking lot. ,In a van. ,2,Where is the woman found when she is dead?,130632,Castle,58.96-64.86,castle_s04e03_seg02_clip_26,The jail cell. 8594,A mirror.,Caution tape.,A reef.,A door knocker.,Spray paint.,1,What was on the door that Leonard and Penny walked after they got upstairs?,130633,The Big Bang Theory,50.6-59.14,s05e14_seg02_clip_00,Caution tape. 8595,She doesn't like him,Because she's a woman,Her mind isn't right,It's breaking the rules,She arrested him before,3,Why doesn't Brandon want Beckett to stay after she agrees to?,130634,Castle,28.53-40.95,castle_s08e12_seg02_clip_23,It's breaking the rules 8596,House sets down his coffee mug.,House sets down his cane.,House sets down his keys.,House sets down his backpack.,House sets down a folder.,0,What does House set down on the table before leaving the room?,130635,House M.D.,1.66-2.91,house_s04e15_seg02_clip_07,House sets down his coffee mug. 8597,"Marilyn laughs and tells Castle of course not, look around and see where you are. ",Marilyn says they turn creepy people over to the police immediately.,Marilyn says she was not aware of any obsessed clients. ,Marilyn thinks Castle is trying to trap her and tells him false information about an obsessed client.,Marilyn tells Castle that's how they pay the bills.,4,How does Marilyn respond after Castle questions her about obsessed clients?,130636,Castle,16.41-21.43,castle_s04e12_seg02_clip_08,Marilyn tells Castle that's how they pay the bills. 8598,Chandler is at a circus,Chandler is in his apartment,Chandler is at the store,Chandler is at the bank,Chandler is at a park,1,Where is Chandler after Monica leaves the coffee shop?,130637,Friends,60.42-66.03,friends_s03e21_seg02_clip_15,Chandler is in his apartment 8599,Tap into her subconscious memory,Make her forget all about Wilson,Make the patient remember what she ate,Make the patient remember to take her meds,Make the patient remember her guilt,0,What does House say he thinks he can do when he's talking to Wilson about the patient's memory?,130638,House M.D.,0-10.93,house_s04e04_seg02_clip_14,Tap into her subconscious memory 8600,Blue,Black,Grey,Red,Orange,1,"What color is shirt Howard is wearing when he say's ""Well, okay, if you like space stuff...""?",130639,The Big Bang Theory,50.75-59.7,s03e03_seg02_clip_08,Black 8601,Marshall is wearing a blue shirt,Marshall is wearing a red shirt,Marshall is wearing a green shirt,Marshall is wearing a purple shirt,Marshall is wearing a yellow shirt,1,What color shirt is Marshall wearing after he walks into the room?,130640,How I Met You Mother,28.51-32.71,met_s06e12_seg02_clip_07,Marshall is wearing a red shirt 8602,Putting quarters in a vending machine,Playing ms pac man ,Making coffee,Kissing Cuddy,Doing paperwork ,0,What was Wilson doing before House walked up and talked to him?,130641,House M.D.,36.5-44.96,house_s05e21_seg02_clip_20,Putting quarters in a vending machine 8603,Black,Red,Blue,White,Grey,3,"What color is the shirt that Ryan is wearing when he say's ""He's a male...""?",130642,Castle,0-9.73,castle_s05e15_seg02_clip_05,White 8604,Kicked his leg.,Kicked his cane.,Punched him in the face.,Shoved him up against the door.,Stepped in front of him so he couldn't leave.,1,What did Tritter do to House to get back at him when House was leaving after he examined him?,130643,House M.D.,78.32-87.02,house_s03e05_seg02_clip_02,Kicked his cane. 8605,He sat down.,He stood up.,He took off his hat.,He took a drink of wine.,He turned the light off.,0,What did Mike do when he asked about someone proposing?,130644,Friends,28.29-31.09,friends_s09e23-24_seg02_clip_15,He sat down. 8606,What is the name of the boom he is reading.,The Need for Speed.,The bagpipes will sound better as he gets better at playing.,What cologne he wears.,When is the next Bus.,2,What were they talking about after Chandler was talking?,130645,Friends,7.38-12.3,friends_s07e15_seg02_clip_12,The bagpipes will sound better as he gets better at playing. 8607,Thirteen hands him an envelope.,Thirteen hands him a microscope slide.,Thirteen hands him a blood sample.,Thirteen hands him a folder.,Thirteen hands him a sandwich.,4,What does Thirteen hand to Taub when talking to him?,130646,House M.D.,0-3.29,house_s06e08_seg02_clip_11,Thirteen hands him a sandwich. 8608,you shouldnt use profanity,you dont look good in that shirt,you should get a new job,you should go clean my car,the girl is too young for you,4,What does Martha say after Castle gets off the phone?,130647,Castle,0-19.07,castle_s02e03_seg02_clip_20,the girl is too young for you 8609,yellow,grey,blue,red,orange,2,"What color is the shirt Ross is wearing when he say's ""Why do...""?",130648,Friends,0-9.93,friends_s04e17_seg02_clip_02,blue 8610,Chanler gave Monica a ring,Chanler gave Monica a kiss,Chanler has been taking dance lessons,Chanler bought Monica a new car,Chanler bought a new house,2,What present did Chanler have for Monica after they walked out to the dance floor?,130649,Friends,50.39-53.01,friends_s08e01_seg02_clip_03,Chanler has been taking dance lessons 8611,His advice,His text,His emails,Standard procedure,Dr. Foreman's advice to order a second CT,1,What does Dr. House tell Dr.Wilson he is ignoring when he enters the patient's room?,130650,House M.D.,59.06-67.22,house_s06e11_seg02_clip_09,His text 8612,Five minutes,Two minutes,Ten minutes,Twenty minutes,Fifteen minutes,0,How much time is left in the break when Foreman pauses the game?,130651,House M.D.,19.69-45.13,house_s07e12_seg02_clip_15,Five minutes 8613,16,15,14,18,17,2,What did Ali say the age of consent was in Iceland when she was talking to House? ,130652,House M.D.,5.12-7.44,house_s03e04_seg02_clip_16,14 8614,Setting up a surprise party.,Setting up a new TV for him.,Setting him up on a date.,Setting him up for a crime.,Taking him to the carnival.,0,What did Leonard think Howard was doing when they were out of the apartment?,130653,The Big Bang Theory,11.4-60.02,s01e16_seg02_clip_14,Setting up a surprise party. 8615,Visiting her doctor,Drinking at the bar.,Showering her problems away.,Auditioning,"Sleeping in a hotel, because she gets anxiety sleeping at home.",3,Where was Penny all morning when Leonard was with his mother?,130654,The Big Bang Theory,0-54.31,s02e15_seg02_clip_10,Auditioning 8616,Eric was Dave's cousin,Eric was Dave's brother,Eric was Dave's sponsor,Eric was Dave's co worker,Eric was Dave's roommate,2,"Who was Dave to Eric when Castle, Esposito, and Ryan were asking about his death?",130655,Castle,36.59-43.99,castle_s08e04_seg02_clip_12,Eric was Dave's sponsor 8617,Sitting on the bed. ,Sitting in the living room.,Standing in the hall.,Standing in the kitchen.,Sitting on the floor.,3,Where was Chandler when he told Joey he kissed Kathy?,130656,Friends,46.03-54.34,friends_s04e07_seg02_clip_20,Standing in the kitchen. 8618,Castle has been kidnapped,Jenny is going into labor ,Beckett is flirting with him,The team is angry with him,The suspects spotted him,1,Why does Ryan have to leave before catching the suspects?,130657,Castle,9.66-30.37,castle_s08e17_seg02_clip_22,Jenny is going into labor 8619,Joey asks her what is wrong with that.,Joey tells her he gives the kids candy.,Joey compares it to being a role model.,Joey tells the interviewer that it is his proudest achievement.,Joey asks the interviewer out on a date.,2,What does Joey do after the interviewer questions him stating he is a mento for kids?,130658,Friends,20.81-30.32,friends_s08e19_seg02_clip_05,Joey compares it to being a role model. 8620,He picks up a blanket. ,He picks up a penny. ,He picks up a ring box and opens it. ,He picks up a dollar. ,He picks up a small pouch. ,2,What does Joey do after he kneels down?,130659,Friends,2.78-6.48,friends_s09e01_seg01_clip_00,He picks up a ring box and opens it. 8621,In front of the television. ,In front of a dryer. ,In front of the door. ,In front of the table. ,In front of a washer. ,4,Where is Ross standing when he is standing next to Rachel?,130660,Friends,17.39-20.14,friends_s01e05_seg02_clip_12,In front of a washer. 8622,Liz wanted to see how Beckett solved crimes.,Liz wanted Beckett's autograph.,Liz wanted Beckett's to star in one of her plays.,Liz followed Beckett's career.,Liz wanted to give Beckett a gift.,3,Why did Liz want to meet Beckett when she arrived to ask questions?,130661,Castle,30.95-33.68,castle_s07e22_seg02_clip_03,Liz followed Beckett's career. 8623,Castle sees Lanie.,Castle see Esposito.,Castle sees Beckett.,Castle sees Martha.,Castle sees Paul.,4,Who does Castle see after walking through the door?,130662,Castle,36.51-44.08,castle_s04e02_seg02_clip_22,Castle sees Paul. 8624,On his computer desk. ,On the counter in the kitchen. ,On the coffee table. ,On a chair. ,On the couch. ,2,Where does Sheldon put the blue bowl when he is carrying with a bag of chips in it?,130663,The Big Bang Theory,0.61-2.42,s04e17_seg02_clip_05,On the coffee table. 8625,angry,happy,bored,tired,offended,4,How did Amy feel when Raj said he never liked her?,130664,The Big Bang Theory,0-15.58,s06e11_seg02_clip_10,offended 8626,Two people,Three people,Four people.,Just Val alone,Five people,2,How many people were in the room when Ryan was questioning Val Brookstone?,130665,Castle,17.83-22.4,castle_s04e19_seg02_clip_02,Four people. 8627,Ted not leaving without getting what he wants.,Ted not eating the last slice of cake.,Ted not closing the T.V.,Ted not shopping at Zoe's favorite store.,Ted not hanging up the phone.,4,What does Ted do when he wants to challenge Zoey?,130666,How I Met You Mother,0-46.38,met_s06e20_seg01_clip_01,Ted not hanging up the phone. 8628,"Nice to see you too, pal",Get out,"Leave us alone, loverboy","Give me a break, Joey",You're weird today,4,What does Ross tell Joey when he's acting oddly?,130667,Friends,37.01-56.13,friends_s09e01_seg01_clip_00,You're weird today 8629,playing cards,playing a game,reading a book,sewing,folding clothes,1,"What were Howard, Penny and Sheldon doing when they were at the table?",130668,The Big Bang Theory,0-18.16,s03e07_seg01_clip_00,playing a game 8630,Castle is carrying a folder.,Castle is carrying Chinese food.,Castle is carrying a hat.,Castle is carrying a movie.,Castle is carrying a bag of groceries.,1,What is Castle carrying when he finds Scarlett sitting on the floor?,130669,Castle,28.44-32.95,castle_s02e09_seg02_clip_19,Castle is carrying Chinese food. 8631,Mary,Ryan,Beth,Alexis,Sam,3,Who is in the passenger seat when Castle is driving?,130670,Castle,0-4.17,castle_s06e07_seg02_clip_15,Alexis 8632,Salad,Pizza,Bread,Diet soda,Myjapchae,4,What causes Castle to have flashbacks when eating?,130671,Castle,78.14-93.03,castle_s08e13_seg02_clip_13,Myjapchae 8633,He listens to her voicemail message,He calls her mother,He will leave her a vociemail message,He will just hang up,He will just call her brother,0,What does the patient do when he cannot get the woman on the phone?,130672,House M.D.,12.31-23.55,house_s06e16_seg02_clip_22,He listens to her voicemail message 8634,He cried.,He laughed.,He coughed.,He sat down.,He stood up.,2,What did Kalvin do after he said something about having any regrets?,130673,House M.D.,13.61-23.14,house_s02e07_seg02_clip_06,He coughed. 8635,"""no backsies""",finders keepers,that he was lying,to call later,to submit it in writing,0,What did Sheldon say he didn't recall Page saying when she told him he can't withdraw his statement?,130674,The Big Bang Theory,0-8.86,s04e07_seg02_clip_10,"""no backsies""" 8636,A watch,A tie,A coat,A bracelet ,A ring,4,What does Ryan accidentally drop when taking it off,130675,Castle,9.3-18.6,castle_s04e18_seg02_clip_26,A ring 8637,Stacy tells the man that morphine will help him.,Stacy tells the man to push the button on his I.V..,Stacy tells the man he cannot have morphine because it will make him throw up.,Stacy tells the man that he can have as much morphine as he needs.,Stacy tells the man that morphine will kill him.,4,What does Stacy tell the man who just had surgery when he asks for more morhpine?,130676,House M.D.,28.5-43.52,house_s01e21_seg02_clip_19,Stacy tells the man that morphine will kill him. 8638,Monica is hiding in the shower,Phoebe is hiding in the shower,Rachel is hiding in the shower,Ross is hiding in the shower,No one is hiding in the shower,0,Who is hiding in the shower after their parents were talking in the bathroom?,130677,Friends,0-4.1,friends_s02e16_seg02_clip_08,Monica is hiding in the shower 8639,He sits on the floor.,He sits on a chair.,He sits on Chandler's chair.,He sits on a sofa.,Chandler's desk,4,Where does Mr Douglas sit when he's in Chander's office?,130678,Friends,11.23-16.18,friends_s01e16-17_seg02_clip_09,Chandler's desk 8640,Rebecca was drinking coffee. ,Rebecca was pretending to be asleep.,Rebecca was crying and facing away from Jeff.,Rebecca was watching television.,Rebecca was on her phone.,2,What was Rebecca doing when Jeff called her name?,130679,Grey's Anatomy,0-10.01,grey_s03e25_seg02_clip_05,Rebecca was crying and facing away from Jeff. 8641,Rachel starts to feel nervous because can never live up to Ed McMahon's sexual magnetism.,Rachel starts to feel nervous because she has to make a speech on pregnancy tomorrow.,Rachel starts to feel nervous because she has a job interview later that day.,Rachel starts to feel nervous because she realizes that it will change his life.,Rachel starts to feel nervous because she doesn't like talking to the baby's father.,3,Why does Rachel start to feel nervous after Phoebe talks about the baby's father?,130680,Friends,3.1-46.21,friends_s08e02_seg02_clip_03,Rachel starts to feel nervous because she realizes that it will change his life. 8642,Chandler wants to make an poloroid picture.,Monica wants to hug the baby.,Rachael asked how does the baby look.,Rachael asks time it happened.,Rachael wants to come in and see the baby.,2,What were they talking about before Frank ran out of the hallway?,130681,Friends,50.76-59.03,friends_s05e03_seg02_clip_13,Rachael asked how does the baby look. 8643,A manila folder.,A black leather folder.,A coffee cup.,Her jacket.,A stack of papers.,1,What did Beckett pick up after Tom pointed towards the door?,130682,Castle,16.95-21.99,castle_s04e22_seg02_clip_11,A black leather folder. 8644,He threatened to kill him.,He threatened to knock him out.,He threatened to find him.,He promised to make his day better.,He threatened him.,0,What did Beckett say Dunne had threatened to do to Edmund when she was questioning him?,130683,Castle,20.11-26.82,castle_s05e09_seg02_clip_06,He threatened to kill him. 8645,Punching each other.,Playing video games.,Eating dinner.,Slapping each other.,Singing a song.,1,What were Leonard and Howard doing when Sheldon walked into the room?,130684,The Big Bang Theory,34.39-39.68,s01e15_seg02_clip_13,Playing video games. 8646,A statue,A dog,A door,A toilet,A man,0,What is behind Ross when he says it became easier to be apart from you?,130685,Friends,17.37-22.95,friends_s09e05_seg02_clip_14,A statue 8647,They kissed. ,They shoved each other. ,They danced in the living room. ,They played cards.,They got in the car. ,0,What does Beckett and Castle do after she said you?,130686,Castle,64.65-73.03,castle_s04e23_seg02_clip_25,They kissed. 8648,Ballistics was checking Marino's apartment.,Ballistics was checking Marino's power tools.,Ballistics was checking Marino's nine.,Ballistics was checking Marino's car.,Ballistics was checking Marino's alibi.,2,What was ballistics checking when Marino was being interrogated?,130687,Castle,2.3-4.6,castle_s04e08_seg02_clip_10,Ballistics was checking Marino's nine. 8649,Castle says he is bored,Castle says he is mad,Castle says Tyson's birth certificate is missing,Castle says nothing,Castle says he likes Beckett,2,What does Castle say ius missing after Beckett asks about Tyson's mom?,130688,Castle,2.28-7.74,castle_s07e14_seg02_clip_20,Castle says Tyson's birth certificate is missing 8650,A bottle of wine.,A glass of beer.,A can of beens.,A laptop.,A phone.,1,What was holding Marshall when arrived Neil?,130689,How I Met You Mother,0-39.08,met_s02e09_seg01_clip_00,A glass of beer. 8651,on the floor,at her desk,on the couch,on the recliner,on the counter,1,Where is Beckett sitting when Castle is talking about being the witness?,130690,Castle,17.47-27.08,castle_s07e13_seg02_clip_15,at her desk 8652,Orange,Red,blue,black ,yellow,2,What color was Sheldon shirt when he was in the car?,130691,The Big Bang Theory,0-12.18,s10e12_seg02_clip_06,blue 8653,It's where the canned goods are,It's where her pans are,She doesn't like it,It's where Rachel stores her shoes,It's where he stash of junk food is,0,Why does Monica say the bowl cannot go in the cabinet after Chandler suggests the kitchen cabinet?,130692,Friends,7.44-15.51,friends_s08e14_seg02_clip_02,It's where the canned goods are 8654,card,cookies,toys,scarf,flowers,4,What does Jack pull out of his sleeve after he asks when does he get to meet Emma?,130693,Friends,31.08-39.35,friends_s09e01_seg01_clip_01,flowers 8655,He was in an investment meeting with his partners.,"On an investment call to Los Angeles, California.",On an investment call to Germany.,On a investment call to Hong Kong,On an investment call with Canada.,3,What place was Whitman when Shana was killed?,130694,Castle,70.97-83.79,castle_s07e11_seg02_clip_07,On a investment call to Hong Kong 8656,inside a store,Behind a car,behind a building,Behind trash bins,behind newspapers,3,Where are Castle and Beckett hiding when the car drives by?,130695,Castle,18.02-27.93,castle_s05e08_seg02_clip_07,Behind trash bins 8657,Bernadette shows up. ,Leonard shows up. ,Penny shows up. ,Raj shows up. ,Amy shows up. ,4,Who shows up at Sheldon's door when he is home?,130696,The Big Bang Theory,45.05-48.9,s07e21_seg02_clip_15,Amy shows up. 8658,basketball,baseball,Golf ball,Soccer ball,Volleyball,2,What ball did Sheldon show Amy when they were in a storage room?,130697,The Big Bang Theory,42.32-44.68,s09e19_seg02_clip_12,Golf ball 8659,Psychotic ,Academic ,Sports,Theft,Violent,4,What kind of record does Emma have before it was sealed?,130698,Castle,17.75-29.58,castle_s06e04_seg02_clip_19,Violent 8660,He pulled on his ear.,He pulled on a book.,He pulled on rope.,He pulled on her hair.,He pulled on his button.,1,What did Castle pull on when he turned away from Hayley?,130699,Castle,38.42-42.94,castle_s08e15_seg02_clip_03,He pulled on a book. 8661,The Arabian Nights,"1,001 Arabian Nights",Nerds in high school,"The killer, like the king, wanted something.",Actually its not about one of my books.,1,What did Castle say when he was holding the book?,130700,Castle,0-6.28,castle_s08e17_seg02_clip_02,"1,001 Arabian Nights" 8662,Having a food fight ,Playing fooze ball ,Drinking coffee,Cleaning the apartment,Listening to music,1,What were Joey and Chandler doing just before phoebe came in the room? ,130701,Friends,44.86-50.04,friends_s04e18_seg02_clip_01,Playing fooze ball 8663,Kiss a few butts.,Tell a few lies.,Do a little dance.,Work extra hours.,Take some more time to rest,0,What did Seibert tell Sheldon they have to do after he said they have to shake a few hands to raise money?,130702,The Big Bang Theory,0-5.33,s04e15_seg01_clip_02,Kiss a few butts. 8664,He was not actually going .,He got borred.,It was a courtesy flush.,He was annoying Foreman,He did not actually flush.,2,Why did House flush when he was still going to the bathroom?,130703,House M.D.,63.5-72.7,house_s04e05_seg02_clip_16,It was a courtesy flush. 8665,eat a frenchfry,pick up his beer,sit down,order a sandwich,walk to the door,2,What does Ted to right before Marshall asks about the chumbawamba song?,130704,How I Met You Mother,0-9.58,met_s03e04_seg02_clip_15,sit down 8666,Are you here to take me to surgery?,Get out,Where is Miss Larson,Did my daughter finish the pink room?,Irish! what a wonderful surprise,4,What does Sophie say to george after he enters the room?,130705,Grey's Anatomy,31.16-42.29,grey_s02e14_seg02_clip_19,Irish! what a wonderful surprise 8667,A toy,A magazine ,A sock,A shoe,A book,1,What does Rachel have in her hands when Molly enters?,130706,Friends,0-2.21,friends_s09e13_seg02_clip_10,A magazine 8668,Licking crumbs on the floor.,Sweeping the floor.,Eating food on the floor.,Rolling over cookie dough on the floor.,Smearing food on the floor.,2,What are Rachel and Chandler doing when Joey arrives?,130707,Friends,13.86-23.11,friends_s07e11_seg02_clip_20,Eating food on the floor. 8669,gameboy,playstation,laptops,lab equipment ,a checkerboard ,2,What devices are both Raj and Sheldon using when the are sitting at Sheldon's desk? ,130708,The Big Bang Theory,10.95-14.8,s03e12_seg02_clip_01,laptops 8670,her job,his work,his boss,the next project,the prototyper she gave him,4,What did Leslie mention when she spoke to him about work?,130709,The Big Bang Theory,21.69-29.35,s02e16_seg02_clip_04,the prototyper she gave him 8671,Acosta throws a wrench at Beckett to distract Beckett and escape,Acosta walks over to Beckett and hugs Beckett fondly.,Acosta screams at Beckett for police brutality to draw attention from a crowd.,Acosta falls on the ground crying and rolling from side to side.,Acosta knocks Beckett out and drags Beckett into a closet.,0,What does Acosta do after Beckett approaches to question Acosta?,130710,Castle,0-9.78,castle_s08e08_seg02_clip_12,Acosta throws a wrench at Beckett to distract Beckett and escape 8672,Why put on a raincoat if you're already dry?,Why put on a raincoat if you're already wet?,Why put on a raincoat if you're already sick?,Why put on a raincoat if he's already positive?,Why put on a raincoat if you're already negative?,1,"What did Calvin say about a raincoat when Cameron asks, ""Does the sex include condoms?""",130711,House M.D.,0-9.98,house_s02e07_seg02_clip_06,Why put on a raincoat if you're already wet? 8673,Because he misses Beckett,Because tomorrow is Beckett's birthday,Because tomorrow is Castle's birthday,Because tomorrow is their anniversery,Because he has an important ceremony to attend,3,Why does Castle want to spend tomorrow with Beckett when he tells Beckett he can't imagine without her?,130712,Castle,13.77-16.65,castle_s08e07_seg02_clip_06,Because tomorrow is their anniversery 8674,Robes ,Old clothing,Construction hat,Ski masks,Gloves ,3,What does Colette say the men that took Michael were wearing when questioned about Michael by Castle and Beckett?,130713,Castle,65.26-73.02,castle_s04e11_seg02_clip_10,Ski masks 8675,Rachel tells Emma that she looks nice,Rachel tells Emma that Emma will never babysit their child again,Rachel tells Emma that she is cool,Rachel tells Emma that she is mean,Rachel tells Emma that she needs to diet,1,What does Rachel tell Emma after Ross gets mad?,130714,Friends,50.04-57.06,friends_s10e05_seg02_clip_17,Rachel tells Emma that Emma will never babysit their child again 8676,spa certificates,concert tickets,movie pass,money,a resume,0,What did Thirteen leave as a thank you for Foreman when she left without her clipboard?,130715,House M.D.,27.15-35.43,house_s05e11_seg02_clip_02,spa certificates 8677,Amy.,Raj.,Howard.,Leonard?,Bernadette.,4,Who is going to arrive after the band is ready?,130716,The Big Bang Theory,0-46.38,s07e06_seg02_clip_09,Bernadette. 8678,tired,bored,angry,encouraging,frustrated,3,How did Raj feel when he was trying to help Bernadette?,130717,The Big Bang Theory,17.7-46.68,s10e03_seg02_clip_12,encouraging 8679,drinking coffee,walking down stairs,carrying groceries,fixing the doorknob,walking up the stairs,4,What was Amy and Sheldon doing when they were talking about Sheldon's trip?,130718,The Big Bang Theory,57.63-61.31,s08e01_seg02_clip_15,walking up the stairs 8680,George was with Mr. Duquette ,Izzie was with Mr. Duquette ,Cristina was with Mr. Duquette ,Bailey was with Mr. Duquette ,No one was with Mr. Duquette ,1,Who was in the resturant with Mr. Duquette when he was talking about Denny?,130719,Grey's Anatomy,18.21-31.86,grey_s03e04_seg02_clip_16,Izzie was with Mr. Duquette 8681,shirt,toes,belly button,pants,hat,2,Where does House say he wasn't picking lint from before Wilson says he needed Tuesdays for animal sacrifices?,130720,House M.D.,0-22.77,house_s06e05_seg02_clip_01,belly button 8682,Phoebe really wants to date Ross,Ross set her up to fail,Ross made fun of her,Ross farted,She thinks the date could have led to a serious relationship,4,Why is Phoebe really mad at Ross after her failed date?,130721,Friends,47.64-61.07,friends_s09e04_seg02_clip_03,She thinks the date could have led to a serious relationship 8683,She is planning dinner. ,She is planning on getting Barbara back. ,She is planning lunch. ,She is planning a wedding. ,She is planning a baby shower. ,1,What does Bernadette say she is planning on doing when she is talking to Penny?,130722,The Big Bang Theory,38.71-51.92,s10e02_seg02_clip_05,She is planning on getting Barbara back. 8684,At Howard.,At Leonard.,A Penny.,At the Vet.,At Sheldon.,3,Where was Raj pointing when he said you do what ever it takes?,130723,The Big Bang Theory,27.74-29.81,s07e15_seg02_clip_07,At the Vet. 8685,A pen,A paper envelope,Two cups of coffee,Nothing at all,Scissors ,2,What was Castle holding when he walked in Becketts office?,130724,Castle,81.47-90.02,castle_s05e11_seg02_clip_07,Two cups of coffee 8686,A hot dog and funnel cake,Clams and ice cream,Deep fried Oreos,Clams and funnel cake,Popcorn,3,What did Lanie discover that Ted ate before he died?,130725,Castle,61.79-72.09,castle_s06e12_seg02_clip_07,Clams and funnel cake 8687,Sheldon ,Raj ,Howard ,Amy ,Bernadette ,0,Who turns on the light in Penny and Leonard's room when they are talking? ,130726,The Big Bang Theory,30.46-32.79,s04e13_seg02_clip_11,Sheldon 8688,"Bernadette told Howard, ""Good night.""","Bernadette told Howard, ""Hello!""","Bernadette told Howard, ""Go to Sleep.""",Bernadette told Howard to stop kicking her.,"Bernadett told Leonard, ""Good night""",0,What did Bernadette say to Howard after she told him that the next person to kick him will be her?,130727,The Big Bang Theory,0.96-4.48,s10e06_seg02_clip_02,"Bernadette told Howard, ""Good night.""" 8689,A bar in Soho.,A bar in Midtown.,A bar in Chelsea.,A bar in Chinatown.,A bar in Hamilton Heights.,1,Where did Esposito say Scott was a regular when he and Ryan were giving Beckett the info that had on him?,130728,Castle,37.27-41.87,castle_s08e07_seg02_clip_02,A bar in Midtown. 8690,no pattern,plaid,striped,polka dots,stars,2,"What pattern is Castles Robe when he says ""you remember where i live?""?",130729,Castle,4.24-13.98,castle_s02e03_seg02_clip_20,striped 8691,Robin and Marshall were eating without her. ,Robin and Marshall were hooking up. ,Robin and Marshall saw a ghost. ,Robin and Marshall were drinking alcohol without her. ,Robin and Marshall were playing a game without her. ,2,What is Lily so upset about when she is in the new place with Marshall and Robin?,130730,How I Met You Mother,36.96-43.17,met_s03e12_seg02_clip_08,Robin and Marshall saw a ghost. 8692,He says he doesn't believe her.,He doesn't.,He stands up to leave.,He says he didn't need to know that.,He remembers when he peed in the pool too.,3,How does the man in black respond after Monica says she once peed in his pool?,130731,Friends,15.68-24.81,friends_s02e15_seg02_clip_16,He says he didn't need to know that. 8693,House pleasantly asked Carnell why he didn't meet him six months ago.,House told Carnell he wouldn't clean up his own mess.,House told Carnell to put a note in to the maid service to bring extra garbage bags.,House told Carnell to bring back some extra towels.,House told Carnell to bring him a surge protector so he can safely use his power tools.,0,How did House respond after Carnell asked House if he would like the maid service to clean up later when they come to turn down the bed?,130732,House M.D.,10.42-16.31,house_s07e16_seg02_clip_01,House pleasantly asked Carnell why he didn't meet him six months ago. 8694,he asked where the evidence was,He asks where bobby took the backpack,He asks if the bomb was in the backpack,He asked why there was a bomb there,Castle asks why Jessee would set off the bomb if he didn't want anyone to get hurt,4,What happens when beckett mentions bobby stole the backpack?,130733,Castle,19.81-24.76,castle_s04e19_seg02_clip_23,Castle asks why Jessee would set off the bomb if he didn't want anyone to get hurt 8695,Howard still believes in santa.,Howard still wore the same socks everyday no wash.,Howard still pinky swears.,Howard still sleeps with his mom.,Howard over ate jelly beans,4,Why did Raj tell Howard there is a time to stop doing things when talking in the living room?,130734,The Big Bang Theory,0-34.82,s07e10_seg02_clip_05,Howard over ate jelly beans 8696,Poison Ivy.,Crabgrass.,Ragweed.,Hemlock.,A dandelion.,4,What plant did House use as a metaphor to explain his idea to treat Matty and Nick when he and all the other doctors were trying to figure out how to diagnose and treat the brothers?,130735,House M.D.,34.82-39.73,house_s03e21_seg02_clip_18,A dandelion. 8697,Pete said they needed a new GYN. ,Pete said they needed a new heart doctor. ,A new family therapist is what Pete thought they needed. ,An addiction specialist is what Pete thought they could use. ,Pete said they needed a new dentist. ,0,What type of doctor did Pete say the practice needed when he and Sam were walking? ,130736,Grey's Anatomy,55.11-64.45,grey_s03e22_seg02_clip_14,Pete said they needed a new GYN. 8698,The food is taking forever.,They both have hangovers.,They're dating the same girl.,Chandler's late again.,Their drinks are watered down.,2,Why are Joey and Ross annoyed when thinking?,130737,Friends,48.16-58.03,friends_s07e17_seg02_clip_08,They're dating the same girl. 8699,At the gym lifting waits,Walking on a treadmill ,In the lab taking samples,Sitting in a chair,Sitting on the desk in Wilson's office,3,Where was House when he was talking with 13?,130738,House M.D.,74.19-82.38,house_s04e08_seg02_clip_18,Sitting in a chair 8700,Where George went last night.,How to properly give an IV.,That Izzie takes issue with Addison's salmon colored scrubs.,Why Meredith was late to work.,The patient in the next room.,2,What were they talking about right before Izzie left the room?,130739,Grey's Anatomy,59.88-69.5,grey_s02e06_seg02_clip_03,That Izzie takes issue with Addison's salmon colored scrubs. 8701,The two women called Sam Doctor Feelbad. ,The two women called Sam Doctor Feelgood. ,Sam was called Doctor Love by the women. ,Sam was referred to as the Best Doc in the West by the women. ,The women called Sam the Doctor with the baldest head. ,1,How did the two young women refer to Sam when he and Pete were walking? ,130740,Grey's Anatomy,75.66-87.81,grey_s03e22_seg02_clip_14,The two women called Sam Doctor Feelgood. 8702,He was about to leave her,They had a poor relationship,She was about to leave him,They were committed in the important ways,He wished they hadn't gotten married,3,How did Hank describe his own marital relationship when he was talking to Chase?,130741,House M.D.,41.31-90.79,house_s06e07_seg02_clip_07,They were committed in the important ways 8703,Bubbles,Balloons,Confetti ,Dollar bills,Cigar smoke,4,What filled the room when the stripper was dancing? ,130742,How I Met You Mother,0-7.41,met_s02e19_seg01_clip_01,Cigar smoke 8704,Sheldon was concerned that Leonard would burn himself.,Sheldon was concerned he would get cancer from the burning food.,Sheldon was concerned the flames would damage the van.,Sheldon was concerned the burning food would attract animals.,Sheldon was concerned that the light would damage his eyes.,3,What was Sheldon concerned would happen when they burned the tortilla chip?,130743,The Big Bang Theory,0-18.17,s09e03_seg02_clip_15,Sheldon was concerned the burning food would attract animals. 8705,How good the meal was going to be.,When Leonard was going to college.,Why Penny invited Zack.,If Raj needed help in the kitchen.,How clean the living room was.,2,What was Leonard and Penny talking about before Raj came out the kitchen?,130744,The Big Bang Theory,15.2-62.02,s07e09_seg02_clip_08,Why Penny invited Zack. 8706,Work hard,Congratulations,Pray,Cross your fingers,Keep me updated,1,What did Richard stop Cristina to tell her after she walked away?,130745,Grey's Anatomy,46.99-61.35,grey_s03e15_seg02_clip_12,Congratulations 8707,Sam is dating the nurse.,Billy is dating the nurse.,Richard is dating the nurse.,Ross is dating the nurse.,Monica is dating the nurse.,4,Who does Chandler say is dating the nurse when he talks to Monica?,130746,Friends,9.6-30.01,friends_s05e03_seg02_clip_05,Monica is dating the nurse. 8708,putting things down on her desk,Looking through fabric,Stacking boxes,Writing on a journal,Hanging up decorations,0,What was Rachel doing when Joey and his sister Dina came into her office?,130747,Friends,17.68-23.09,friends_s08e10_seg02_clip_04,putting things down on her desk 8709,Pizza,Ketchup,Dinner Leftovers,A Drink,Cake,3,What does Rachel take out the refrigerator when she is in the kitchen?,130748,Friends,6-16.51,friends_s04e20_seg02_clip_08,A Drink 8710,She says she told him that she would do her best. ,She says she told him to go to hell. ,She told House that WIlson had his own brain and could do what he wanted. ,She told House that maybe he should be the one that asks WIlson to stay since it is his fault that Wilson wants to leave in th first place. ,She tells House that she is leaving with Wilson. ,1,How does Cameron say that she responded when House told her to get Wilson to stay? ,130749,House M.D.,73.16-92.03,house_s05e01_seg02_clip_18,She says she told him to go to hell. 8711,She is sitting down.,She is calling for backup.,She is pointing a gun at him.,She is crying.,She is talking to the police. ,2,What is Beckett doing before Mason bent down?,130750,Castle,0.92-5.08,castle_s08e22_seg02_clip_24,She is pointing a gun at him. 8712,Rachel was wearing a green tunic.,Rachel was wearing a black t-shirt.,Rachel was wearing a blue sweater.,Rachel was wearing a lavender peasant top.,Rachel was wearing a black wool coat.,3,What was Rachel wearing when Phoebe tried to read her pink book?,130751,Friends,0-13.28,friends_s10e04_seg02_clip_07,Rachel was wearing a lavender peasant top. 8713,Marshall,Barney,Lily,Robin,Honey,2,Who did Ted say hates Zoey before Zoey accused Ted of hating her?,130752,How I Met You Mother,0-46.69,met_s06e15_seg02_clip_15,Lily 8714,New York times,Playboy magazine,Sport illustrated ,Swimsuit edition,round and brown eggs,2,what words was displayed on the magazine Joey was reading when he was sitting on the sofa?,130753,Friends,15.44-27.1,friends_s03e18_seg01_clip_00,Sport illustrated 8715,Sheldon wanted Penny to take Leonard on a date far away from him.,Sheldon wanted Penny to stay at home and not interfere with his date.,Sheldon wanted Penny to go with him and Amy on his date to be the driver.,Sheldon wanted Penny to be at his apartment.,Sheldon wanted Penny to be with her friends.,2,Where did Sheldon want Penny to be when took Amy on a date?,130754,The Big Bang Theory,36.73-39.14,s04e01_seg02_clip_04,Sheldon wanted Penny to go with him and Amy on his date to be the driver. 8716,The interviewer's readers,The interviewer,A celebrity guest,Joey's boss,Monica,0,"Who does the interview say wants to know how soap stars stay in such great shape, when she is asking Joey about his health routine?",130755,Friends,40.13-53.8,friends_s08e19_seg02_clip_05,The interviewer's readers 8717,Beach,Motel,Movies,Car,Hotel,4,Where was Vincent on the night of the murder after lying about his marriage status?,130756,Castle,81.37-85.72,castle_s03e18_seg02_clip_08,Hotel 8718,blue,purple,pink,green,black,2,What color dress was Rachel wearing when she was seated at the reception table?,130757,Friends,0-8.54,friends_s02e24_seg02_clip_14,pink 8719,Foreman was talking to himself,Foreman was talking to House,Foreman was talking to Chase,Foreman was talking to his dad,Foreman was not talking to anyone,1,Who was Foreman talking to when he said it was great seeing him back in the office?,130758,House M.D.,38.13-44.94,house_s01e18_seg02_clip_05,Foreman was talking to House 8720,A picture.,Cristina's chart.,A cup of coffee.,His measurements.,A pillow.,1,What did Burke take after coming in the room?,130759,Grey's Anatomy,11.16-14.88,grey_s02e04_seg02_clip_00,Cristina's chart. 8721,House was sitting next to a patient's bed.,House was standing in the doorway.,House was standing next to Wilson.,House was sitting by the window.,House was lying on the floor.,0,Where is House when he is eating a sandwich?,130760,House M.D.,19.28-35.73,house_s02e01_seg02_clip_10,House was sitting next to a patient's bed. 8722,She said that taking a short nap helps her.,She said city maps work best for her.,She said paid informants work best for her.,Beckett said that the white board has always worked for her.,She said discussing it with the task force works best for her.,3,What did Beckett say always works for her when Castle asked if she's kicking it old school?,130761,Castle,11.59-17.6,castle_s02e17_seg02_clip_13,Beckett said that the white board has always worked for her. 8723,Masters said she felt awkward about working with him ,Masters spilled her coffee on Taub,She accidentally ate Taub's donut,Masters lost her gift for Taub,Masters sneezed on Taub,0,Why does Taub say don't worry about it when Masters asks him a question?,130762,House M.D.,56.27-63.02,house_s07e06_seg02_clip_25,Masters said she felt awkward about working with him 8724,irritated,happy,angry,upset,bored,3,How did Penny feel when Leonard dated Priya now?,130763,The Big Bang Theory,44.04-62.02,s04e17_seg02_clip_03,upset 8725,Rachel wanted to use the bathroom first.,Rachel was begging Ross to write out his mom a birthday card.,Rachel wants Ross to mail a Christmas card.,Rachel wants Ross to throw a cars away.,Rachel was begging for a drink.,1,Why did Rachel put her hands in a praying position when she was talking to Ross about a card?,130764,Friends,58.59-61.15,friends_s10e16_seg02_clip_13,Rachel was begging Ross to write out his mom a birthday card. 8726,In front of the whiteboard.,Behind the whiteboard.,Sitting in a chair.,Sitting behind Sheldon,Sitting in front of Sheldon.,0,Where is Leonard when he talked to Sheldon?,130765,The Big Bang Theory,4.8-14.7,s08e14_seg01_clip_02,In front of the whiteboard. 8727,He needed to beat all the elite spoiled kids around him.,He didn't like Taub.,He likes men.,He was hungry.,He was actually the janitor.,0,What was Foreman's explanation to Taub when he was discussing his issue?,130766,House M.D.,12.96-24.57,house_s06e16_seg02_clip_12,He needed to beat all the elite spoiled kids around him. 8728,Chandler sees Janice.,Chandler is hungry.,Chandler realizes Ross posted a fake page for him.,Chandler falls on the couch.,Chandler misses Joey.,2,Why does Chandler get upset after talking to Ross?,130767,Friends,47.38-57.31,friends_s09e17_seg02_clip_02,Chandler realizes Ross posted a fake page for him. 8729,Castle. ,Ryan. ,Esposito.,Beckett. ,No one. They all just stare at them. ,2, Who is the first employee of the 12th Precinct to welcome the camera crew after Gates welcomes them? ,130768,Castle,29.97-66.3,castle_s05e07_seg02_clip_04,Esposito. 8730,They run in different directions,They tie themselves together ,They untie all their ropes,They tie their clothes together,They duct tape themselves together,1,How does Jason make sure the hostages stay together surrounding him before they leave the room?,130769,House M.D.,25.38-47.31,house_s05e09_seg02_clip_16,They tie themselves together 8731,At 5 PM.,When the ball drops.,"At noon, sharp.",3:01 PM.,At 8 AM.,3,What time does Marshall reveal after Barney's poker reference?,130770,How I Met You Mother,41.76-51.68,met_s03e09_seg02_clip_02,3:01 PM. 8732,A PC,A TV,A Pen,Magazines,A Phone,3,What is next to the door when House is leaving the room?,130771,House M.D.,5.01-8.86,house_s07e06_seg02_clip_17,Magazines 8733,Joey,Rachel,Chandler,Phoebe,Monica,3,Who is Ross talking to before he stands up.,130772,Friends,0-18.92,friends_s02e14_seg02_clip_07,Phoebe 8734,Taub called for a priest,Taub turned around and left,Taub called the police,Taub held the patient,Taub quit his job,3,What did Taub do when he walked towards the patient?,130773,House M.D.,18.7-28.25,house_s08e18_seg02_clip_12,Taub held the patient 8735,A tie.,A book.,A ring.,A cigarette.,A candle.,2,What does Monica pick off the ground after Chandler loses it?,130774,Friends,4.92-14.76,friends_s08e01_seg01_clip_00,A ring. 8736,Phoebe's brother ,Rich Morton,Kori Horton,Rachel,Tom Gordon ,4,Who does Chandler say is in the apartment when he walks into the room with Ross?,130775,Friends,0-10.08,friends_s09e17_seg02_clip_19,Tom Gordon 8737,She kicks him.,She sits on him.,She sits in front of him.,She roasts a chicken using the flames in the background.,She takes off her pants.,2,What does the blonde do after showing up in front of the man?,130776,House M.D.,5.14-11.85,house_s08e22_seg02_clip_17,She sits in front of him. 8738,Phoebe and Rachael,,Joey,Chander,"Joey, Chandler and Monica",0,Who was standing at the reception desk after the scene opened?,130777,Friends,0-3.7,friends_s08e02_seg01_clip_00,Phoebe and Rachael 8739,White.,Blue.,Gray.,Orange ,Red.,1,What color was teh pillow the girl was laying on when Crandall said he was her father?,130778,House M.D.,32.45-36.96,house_s02e23_seg02_clip_02,Blue. 8740,A pile of books,A dog,A cat,A baby,A mug of coffee,3,What is Ross holding when he is talking to Rachel?,130779,Friends,0-3.68,friends_s09e07_seg02_clip_15,A baby 8741,I'm not sure. Was she the mail lady?,Never heard of her.,Sounds familiar... What does she look like?,I knew Lorretta.,I think so but she doesn't look like you.,3,What did Sam say after James suggested that he may have known his mother?,130780,How I Met You Mother,12.73-24.39,met_s06e02_seg02_clip_11,I knew Lorretta. 8742,Sonia tells Beckett she can find him in the cemetery,Sonia tells Beckett she can find him back in the old neighborhood,Sonia tells Beckett she can find him in the state penitentiary,Sonia tells Beckett she can find him at a halfway house,Sonia tells Beckett she can find him in Spanish Harlem,0,Where does Sonia tell Beckett she can find Great White when she asks?,130781,Castle,3.62-11.31,castle_s08e16_seg02_clip_04,Sonia tells Beckett she can find him in the cemetery 8743,The washer,The dishwasher,The refrigerator ,The dryer,The oven,2,What appliance is behind Barney when he stands up?,130782,How I Met You Mother,42.92-48.62,met_s06e12_seg02_clip_07,The refrigerator 8744,A sweater,A scarf,A necktie,A stethoscope,A gold chain,3,What does Dr. Franzblau have around his nick when he is talking to Rachel?,130783,Friends,1.26-10.72,friends_s01e23_seg02_clip_11,A stethoscope 8745,Penny's photography session.,Penny's autograph session.,Penny's audition session.,Penny's singing session.,Penny's dancing session.,1,Why is Leonard getting head shots of Penny and markers when she enters the living room?,130784,The Big Bang Theory,22.73-28.17,s10e06_seg02_clip_02,Penny's autograph session. 8746,Cristina doesn't like to trade on her parent's celebrity,Cristina uses her grandmother's name,Helen is remarried,Helen kept her maiden name,Cristina was adopted when she was three.,2,Why does Helen say her last name is different from Cristina's when she is speaking to Dr. Burke?,130785,Grey's Anatomy,48.84-71.63,grey_s02e04_seg02_clip_00,Helen is remarried 8747,A laptop. ,A sleeping dog.,A long bench. ,A coffee table. ,A desk with a lamp. ,2,"What is in front of the elederly man with a vest and spectacles when he is told by Foreman,""...under the meninges, against the brain?",130786,House M.D.,44.17-49.94,house_s03e15_seg02_clip_15,A long bench. 8748,Violet wanted Paul to do some cleaning around the office. ,Violet told Paul he should meet another woman before their next session. ,Violet gave Paul the homework of having sex with his wife.,Paul was ordered by Violet to learn about computers. ,Violet assigned Paul a summer reading list. ,2,What assignment did Violet give Paul when she spoke to him? ,130787,Grey's Anatomy,32.69-41.1,grey_s03e22_seg02_clip_14,Violet gave Paul the homework of having sex with his wife. 8749,Red.,Purple.,Blue.,Black.,White.,2,What color dress was Amy wearing when Sheldon said I love you?,130788,The Big Bang Theory,0-7.68,s08e08_seg02_clip_16,Blue. 8750,On a red chair across the room from Gabe.,On the moon.,In a submarine.,In a bar.,On the beach.,0,Where is House when he is talking to Gabe about options for Gabe's death?,130789,House M.D.,0-15.66,house_s03e07_seg02_clip_22,On a red chair across the room from Gabe. 8751,A bus,A taxi,A truck,A motorcycle,A car,1,What vehicle is Phoebe driving when she is with Ross?,130790,Friends,60.19-63.03,friends_s10e17-18_seg02_clip_23,A taxi 8752,Small green paint balls ,Assorted pack of markers,Random yellow crayons ,9mm pistol ammo,Sharpened pencils ,2,Which item is House holding a handful of when talking to a class of students?,130791,House M.D.,64.74-78.16,house_s01e21_seg02_clip_11,Random yellow crayons 8753,A small sample jar.,A computer.,A bottle of water.,A spoon.,A pizza.,0,What was Sheldon holding in his hand when Professor Crawley was yelling at the about the cricket?,130792,The Big Bang Theory,22.52-27.09,s03e02_seg02_clip_14,A small sample jar. 8754,closed it,slammed it,looked in,yelled,Walked in,4,What did Raj do after the professor opened the door?,130793,The Big Bang Theory,10.4-14.18,s03e04_seg02_clip_04,Walked in 8755,She's psycho. What's normal?,She's crazy. What's normal?,She's an actor. What's normal?,She's got problems. What's normal?,She plays insanity well. What's normal?,2,What does Castle say when Beckett asks if this is normal?,130794,Castle,39.93-46.81,castle_s07e22_seg02_clip_00,She's an actor. What's normal? 8756,A bunny,Santa and kids,A cat,A dog,Monica,1,Who is Ross with when he is dressed as an armadillo?,130795,Friends,57.07-62.03,friends_s07e10_seg02_clip_18,Santa and kids 8757,We got lost.,"We are busy, go out.",This room is occupied.,"Yes, 98.6. You're gonna be fine.",Where is the bathroom?,3,"What did Chandler say to Monica, after the nurse walked into the room before they were about to have sex?",130796,Friends,20.95-29.22,friends_s08e23-24_seg02_clip_16,"Yes, 98.6. You're gonna be fine." 8758,Chandler,Monica,Joey,Phoebe ,Ross,1,Who is the only one not sitting at the table when all the others are?,130797,Friends,48.16-54.25,friends_s03e25_seg02_clip_07,Monica 8759,Anti inflammatory.,Anti biotic.,Anti viral.,Anti convulsant.,Immunosuppressant.,0,What kind of medicine did Foreman say methotrexate was when he hung it on Gabriel's IV tree?,130798,House M.D.,33.16-39.15,house_s01e13_seg02_clip_10,Anti inflammatory. 8760,A time machine.,A new refrigerator.,A new sofa.,A new television.,A new washing machine.,0,What did Leonard tell Penny they were moving upstairs after she asked what it was?,130799,The Big Bang Theory,48.16-57.56,s01e14_seg02_clip_01,A time machine. 8761,Lady Irena.,Stewart.,William Caraway.,Beckett.,Esposito.,2,Who is being interrogated when Castle makes a rhyme?,130800,Castle,38.71-65.72,castle_s02e16_seg02_clip_16,William Caraway. 8762,Punchy.,Robin.,Marshall.,Barney.,Sam.,0,Who asks Ted about a bird when he is at the bar?,130801,How I Met You Mother,16.01-20.17,met_s06e09_seg02_clip_12,Punchy. 8763,By yanking the fork from her neck himself.,By proving to the police that Sylvia's injuries was an accident. ,By prescribing her antidepressants. ,By immediately having the fork removed.,By having an MRI performed on her.,4,How does Derek plan to treat Sylvia after he learns she has a brain aneurysm?,130802,Grey's Anatomy,34.33-73.94,grey_s02e20_seg02_clip_03,By having an MRI performed on her. 8764,black,blue,green,red,grey,4,"What color is the shirt Rachel is wearing when she say's ""I get...""?",130803,Friends,0-9.98,friends_s02e14_seg02_clip_09,grey 8765,Monica,Carol,Rachel,Janice,Phoebe,3,Who does Joey say is the last woman Chandler has been out with when trying to convince him to go on their double date?,130804,Friends,38.69-65.03,friends_s01e14_seg02_clip_00,Janice 8766,The monitor,The keyboard,The mouse,The empty hard drive from the cpu,The USB Cable,3,What does Ryan grab after looking at the computer?,130805,Castle,28.21-29.13,castle_s06e12_seg02_clip_19,The empty hard drive from the cpu 8767,He is surprised it's 50 calories. ,He is surprised it's only 64 calories. ,He is surprised it is 20 calories. ,He is surprised it's 40 calories. ,He is surprised it's 0 calories. ,1,Why is Raj surprised when he looks at the bottle of beer?,130806,The Big Bang Theory,0-4.88,s05e19_seg02_clip_16,He is surprised it's only 64 calories. 8768,Rachel Green.,Kristen Leigh.,Monica Geller.,Chandler's mom.,Hilary Clinton.,1,What female name is mentioned before Chandler leaves?,130807,Friends,31.91-41.78,friends_s07e17_seg02_clip_08,Kristen Leigh. 8769,Burke was agreeing.,Burke was furious.,Burke was laughing.,Burke thought Cristina was lying.,Burke was disappointed.,2,What was Burke's reaction after Cristina told him about what his mother thought of her?,130808,Grey's Anatomy,2.94-10.28,grey_s03e02_seg02_clip_07,Burke was laughing. 8770,Cameron said she would call Foreman's sister.,Cameron said she would call Foreman's father.,Cameron said she would call Foreman's mother.,Cameron said she would call that lawyer.,Cameron said she would call Foreman's brother.,3,Who did Cameron say she would call for Foreman after she said he could apologize when he was better if he still wanted to?,130809,House M.D.,64.03-74.48,house_s02e21_seg02_clip_17,Cameron said she would call that lawyer. 8771,An air tube in his nose.,A knit hat.,A stripped shirt.,A dress shirt and tie.,A face mask.,0,What is on Matty when he is listening to House?,130810,House M.D.,1.71-11.54,house_s03e21_seg02_clip_21,An air tube in his nose. 8772,Playfully pushed Ryan,Punched Ryan,Picked Ryan up and spun him around,Put his hand on Ryan's shoulder,Gave Ryan a hug,3,What did Castle do to Ryan after Ryan gave him an engagement ring?,130811,Castle,78.29-87.04,castle_s03e11_seg02_clip_00,Put his hand on Ryan's shoulder 8773,Raj,Zack.,Leonard.,Leonard,Another resident of the apartment complex.,2,Who is last in the procession when the gang is going up the stairs?,130812,The Big Bang Theory,26.85-49.12,s04e11_seg02_clip_05,Leonard. 8774,Because he doesn't like her anymore.,Because he never wanted to marry her.,Because he has another wife already.,Because he has a secret child.,Because he didn't have reservations about her.,4,Why is Howard upset when Bernadette says she had reservations about him?,130813,The Big Bang Theory,35.79-44.03,s09e14_seg02_clip_10,Because he didn't have reservations about her. 8775,the flintstones,star trek characters,women,babys,hobbits,1,"What are Howard, Raj, Leonard, and Sheldon dressed as when Sheldon asks for four glasses of water?",130814,The Big Bang Theory,0-3.93,s06e13_seg02_clip_13,star trek characters 8776,He said he doesn't believe Wil's compliment. ,He said that he has a part for Wil.,He said he doesn't think he is that awesome.,"He said: I don't have a part for you, Wheaton.",He said he will think about making a part for Wil in his movie.,3,What did Kevin Smith say to Wil when he said that Kevin Smith is awesome?,130815,The Big Bang Theory,0-43.39,s08e20_seg02_clip_10,"He said: I don't have a part for you, Wheaton." 8777,Chandler put his wedding ring back on. ,Chandler just held the ring. ,Chandler put the ring in his pocket. ,Chandler put his ring on the wrong finger. ,Chandler yawned while putting his ring back on. ,0,What did Chandler do when Monica handed him back his ring?,130816,Friends,12.71-82.02,friends_s08e01_seg01_clip_00,Chandler put his wedding ring back on. 8778,at the hospital's cafeteria,in Wilson's office,in House's office,in the lab,in the waiting room,0,Where are Wilson and House when they are standing next to each other waiting?,130817,House M.D.,24.88-34.48,house_s06e07_seg02_clip_04,at the hospital's cafeteria 8779,The conference room,The bedroom,The hallway,The interrogation room,The garden,3,"Where does Castle interrogate Hector after he debriefs Ryan, Beckett, and Espocito?",130818,Castle,65.03-89.08,castle_s08e20_seg02_clip_22,The interrogation room 8780,Chandler means he's going play basket ball.,Chandler is gonna let the really good guys use his ball while he begs to play.,Chandler is gonna go to a friends house and relax.,Chandler is going to go cheat on his diet.,Chandler didn't say he was gonna go play basketball.,1,What does Chandler really mean after he says he's gonna go play basketball?,130819,Friends,2.88-12.81,friends_s03e18_seg02_clip_09,Chandler is gonna let the really good guys use his ball while he begs to play. 8781,the stove,a cupboard,the microwave ,the bathroom,The refigerator,4,What does Rachel open when she comes in the room?,130820,Friends,4.2-9.9,friends_s04e20_seg02_clip_08,The refigerator 8782,Only way he will agree to go,For the pain in his brain ,So he will not rat her out again,As a bribe for the donation ,It helps him to function better,4,Why does Cuddy give House a prescription for Vicodin before he is leaving to meet Tritter?,130821,House M.D.,62.14-71.08,house_s03e11_seg02_clip_02,It helps him to function better 8783,She looked at Wilson.,She told House that she ate two.,She started crying.,She started laughing.,She told House that it was a secret.,0,How did Rachel respond after House asked Rachel how many coins she ate?,130822,House M.D.,0-20.85,house_s07e05_seg02_clip_06,She looked at Wilson. 8784,Because they are good doctor's.,Because they needed them.,Because he wants to teach them and make them good doctors.,Because he wanted Foreman to lose the bet.,Because he'd get in trouble if he fired them all.,0,Why did House say he didn't fire anyone when Foreman was asking him about it?,130823,House M.D.,46.95-51.11,house_s04e05_seg02_clip_26,Because they are good doctor's. 8785,He gets some food.,He grabs coffee.,He looks at the dog.,He walks away?,He sits down. ,3,What does Castle do after Beckett's cell phone rings?,130824,Castle,8.72-13.77,castle_s04e13_seg02_clip_08,He walks away? 8786,Penny hugs Dr. Hofstadter.,Penny looks out the side of her eyes at Dr. Hofstadter.,Penny cries.,Penny runs from the room.,Penny dances with Leonard.,1,What does Penny do when Dr. Hofstadter says Uch?,130825,The Big Bang Theory,8.68-10.54,s08e23_seg02_clip_09,Penny looks out the side of her eyes at Dr. Hofstadter. 8787,A computer engineer,Esposito,Castle,A police officer ,A mailman,2,Who speaks up after Beckett?,130826,Castle,36.39-49.49,castle_s04e16_seg02_clip_22,Castle 8788,The suspect was in the garage,The suspect was in the hangar,The suspect had run out of the hangar,The was no one in the hangar,She would have been killed,4,Why didn't Castle let Beckett go into the hangar before?,130827,Castle,25.86-31.5,castle_s04e01_seg02_clip_06,She would have been killed 8789,Chandler walks away.,Chandler is sad.,Chandler is skeptical because he knows Joey.,Chandler sits on the floor.,Chandler kisses Monica.,2,When Monica checks the basket how does Chandler respond after she advises it was the neighbors?,130828,Friends,38.37-49.58,friends_s07e09_seg02_clip_02,Chandler is skeptical because he knows Joey. 8790,The surgery began.,Stewart's bed was moved.,Stewart was given an injection.,Everyone sat down.,Chase checked his watch.,1,"What happened after Chase said ""let's go?""",130829,House M.D.,63.21-71.22,house_s05e07_seg02_clip_07,Stewart's bed was moved. 8791,Leonard says he loves Penny and not her. ,He says he is not ready. ,Leonard is very hesitant. ,Leonard says he doesn't want her there anymore. ,Leonard asks Priya to move out. ,2,How does Leonard feel when Priya says that he needs to cut the cord with Penny?,130830,The Big Bang Theory,7.26-10.59,s04e18_seg02_clip_03,Leonard is very hesitant. 8792,The day of the javelin contest.,The night after the tournament.,The night before the tournament.,The day of the feast.,The last day of the Renaissance Fair.,2,When did Miles say William ate something unusual when Foreman found vomit?,130831,House M.D.,46.84-49.52,house_s06e17_seg02_clip_04,The night before the tournament. 8793,Peanut-butter and jelly sandwich. ,Candy. ,Ice-cream. ,A milkshake. ,A smoothie. ,2,What does Barney ask Robin to get him for dinner after he says he doesn't want the soup?,130832,How I Met You Mother,40.63-48.38,met_s02e11_seg02_clip_09,Ice-cream. 8794,Ryan went to pee.,Ryan went to call his wife.,Ryan stand and went to make a call.,Ryan stand and went to grab a coffee.,Ryan went to call Beckett.,2,What did Ryan do after listen Pete about the problem with his truck?,130833,Castle,35.28-38.48,castle_s03e10_seg02_clip_13,Ryan stand and went to make a call. 8795,Shook his head,Licked his lips,Tossed his hair,Ate a carrot,Left the room,0,What did Raj do when Sheldon spoke after Penny?,130834,The Big Bang Theory,5.89-18.3,s06e19_seg02_clip_14,Shook his head 8796,Who won the Super Bowl?,Who won the racing cup?,Who won the Olympics?,Who is playing football next year?,Who is Emmitt's favorite coach?,0,What did Barney ask Emmitt when he was walking down the street?,130835,How I Met You Mother,0-19.18,met_s02e14_seg02_clip_14,Who won the Super Bowl? 8797,Candle.,Phoebe.,Monica.,Rachel.,Joey.,3,Who was looking the guys when they were discussing?,130836,Friends,19.15-21.46,friends_s02e10_seg02_clip_17,Rachel. 8798,To listen to Kate.,To listen to Hayley more often.,To take his own advice.,To lie more often.,To stop doing stupid things. ,2,Why does Beckett he received a sign from the universe when talking to Hayley?,130837,Castle,43.39-53.78,castle_s08e15_seg02_clip_03,To take his own advice. 8799,Not really.,"Yep. Come for the breasts, stay for the brains.",Maybe some day I will be one.,In due time I will be.,You got it.,1,"What does Lesley say after Penny says ""Oh Wow a girl scientist""?",130838,The Big Bang Theory,5.31-11.21,s01e05_seg01_clip_02,"Yep. Come for the breasts, stay for the brains." 8800,Because Barbra knew when some big shipment of drugs were coming in.,Because Barbra felt she was being watched all the time.,Because Barbra was using people to get what she wanted.,Because Barbra was hanging around the wrong kind of people.,"Because Barbra discovered some secrets about Odette's past and if anyone found out, it would be all over for her.",4,Why did Barbra seemed concerned when she talked to Jason?,130839,Castle,21.67-31.39,castle_s04e18_seg02_clip_18,"Because Barbra discovered some secrets about Odette's past and if anyone found out, it would be all over for her." 8801,Stacy lies and says that she doesn't smoke. ,Stacy blows her smoke in the vent. ,Stacy smokes while watching television with her husband. ,Stacy smokes on the roof. ,Stacy smokes in her car driving home. ,1,"Where does Stacy say she blows her smoke, after House calls the husband's smoking stupid?",130840,House M.D.,84.66-91.11,house_s02e07_seg02_clip_14,Stacy blows her smoke in the vent. 8802,Lily,Marshall,Robin,Zoey,Braney ,3,Who was out with Ted when he was at a art gallery? ,130841,How I Met You Mother,27.53-35.39,met_s06e11_seg02_clip_02,Zoey 8803,April traps George on the elevator,Cristina traps George on the elevator,Addison traps George on the elevator,Mr. Griswold traps George on the elevator,Meredith traps George on the elevator,4,Who traps George on the elevator when he is leaving for the day,130842,Grey's Anatomy,76.13-85.06,grey_s02e20_seg02_clip_23,Meredith traps George on the elevator 8804,Superman.,Science.,Math.,X-Men.,Wonderwoman.,0,What are the guys talking about when they are eating?,130843,The Big Bang Theory,0-21.25,s02e11_seg01_clip_01,Superman. 8805,To Monica's apartment to complain about Rachel.,To his office.,To a museum exhibit.,To Rachel's work.,To Rachel's apartment.,3,Where did Ross go this morning before arguing with Rachel?,130844,Friends,48.38-54.59,friends_s03e14_seg02_clip_15,To Rachel's work. 8806,The cop and the girl walk away.,The cop sat on a chair.,The cop was upset,The cop was afraid,The cop asked for a glass of water.,0,what did the cop do after he was bleeding?,130845,How I Met You Mother,0-35.4,met_s03e18_seg02_clip_13,The cop and the girl walk away. 8807,Bernadette yells that she loves Sheldon. ,Bernadette yells that she told Sheldon no Klingon. ,Bernadette yells that she doesn't want to marry Leonard. ,Bernadette yells that she hates Sheldon. ,Bernadette kicks Sheldon out. ,1,What happens right after Sheldon starts his speech?,130846,The Big Bang Theory,13.26-20.94,s05e24_seg02_clip_14,Bernadette yells that she told Sheldon no Klingon. 8808,a book,a lamp,a stack of mail,a bottle of wine,a birthday cake,0,What was behind Phoebe when she was saying that they can't say anything because it's a birthday thing?,130847,Friends,0-9.9,friends_s02e05_seg02_clip_03,a book 8809,A Teacher,A Soccer Mom,A Dominatrix,A Man,A Politician,2,Who is Esposito interrogating when he's at the Dungeon investigating the murder?,130848,Castle,13.52-27.95,castle_s02e16_seg02_clip_18,A Dominatrix 8810,There is no pin.,The left side.,The right side. ,The middle of her head.,The back of her head.,2,Which side of the head is Monica's hair pin on when she is talking to the other people in the kitchen?,130849,Friends,0-23.84,friends_s04e10_seg02_clip_11,The right side. 8811,Steven,Kevin,Ethan,John,Chase,4,What is name of the male doctor that was walking behind House and Foreman when they were talking?,130850,House M.D.,77.59-91.83,house_s03e05_seg02_clip_05,Chase 8812,Sheldon draws the two of hearts.,The four of clubs.,The queen of diamonds.,The ace of spades.,The three of hearts.,0,Which card does Sheldon draw after Howard begins the card trick?,130851,The Big Bang Theory,50.51-56.49,s04e18_seg02_clip_16,Sheldon draws the two of hearts. 8813,Leonard is driving to a huge party.,Leonard is driving to the comic store.,"Leonard is taking Penny, Sheldon, and Amy on their double date.",Leonard is driving to the movie theater to see Star Trek.,Leonard is taking Penny to get an annulment.,4,Where is Leonard when he's driving?,130852,The Big Bang Theory,24.37-47.58,s07e09_seg02_clip_03,Leonard is taking Penny to get an annulment. 8814,the key,the door,his hand,Monica,the hallway,0,What did Chandler break when he was talking to Monica?,130853,Friends,0-8.33,friends_s06e01_seg02_clip_19,the key 8815,Play hide and seek,Play tag,Play foosball for money,Play beer pong,see who can eat the pizza the fastest,2,What does chandler suggest him and Joey should do after joey places the pizza on the counter? ,130854,Friends,0-5.49,friends_s06e06_seg02_clip_04,Play foosball for money 8816,Because Barney is terrible at basketball.,Because Barney is too short.,Because Barney is too young.,Because Barney is too old.,Because Barney is much better than the other players.,0,Why did the coach say Barney couldn't be on the team when he was talking to Loretta?,130855,How I Met You Mother,8.32-14.41,met_s06e02_seg02_clip_17,Because Barney is terrible at basketball. 8817,A lab coat.,Gloves,Goggles,A hat.,A mask.,2,What does Sheldon put on after he receives the scalpel from Amy?,130856,The Big Bang Theory,25.44-35.05,s05e16_seg02_clip_12,Goggles 8818,she is concerned ,she is sad,she is angry,she is confused,he is excitedly happy. ,4,How does Monica feel about Chandler's purpossal after she figures out what he is talking about?,130857,Friends,43.23-48.26,friends_s07e21_seg02_clip_05,he is excitedly happy. 8819,Phone,Flashlight,Journal,Coffee Mug,Badge,1,What was Ryan holding when he was talking to Esposito?,130858,Castle,0-8.99,castle_s06e11_seg02_clip_10,Flashlight 8820,He tells him he has a bracelet with his own address on it. ,He tells him he remembers everyone who writes him. ,He tells him he has a bracelet on so people know where to write him. ,He tells him he only remembers his letter. ,He tells him he has a medical alert bracelet. ,0,What hint does Arthur give to Sheldon after Sheldon asks him if he remembers something years and years ago?,130859,The Big Bang Theory,37.77-41.02,s06e22_seg02_clip_12,He tells him he has a bracelet with his own address on it. 8821,A bag of candy. ,A shopping bag. ,A laundry bag. ,A gym bag. ,A bag of groceries. ,4,What is Eddie carrying when he walks into the door?,130860,Friends,19.73-24.95,friends_s02e18_seg02_clip_04,A bag of groceries. 8822,2,7,1,5,12,0,How man waitresses are serving coffee in the Perk after Phoebe enters?,130861,Friends,0-10.24,friends_s08e16_seg02_clip_00,2 8823,An electric guitar.,A briefcase.,A blanket.,A microphone.,A speaker.,0,What did Sheldon put on the floor when he was saying to Penny that Leonard is holding the phone to his left ear?,130862,The Big Bang Theory,57.48-62.48,s02e15_seg01_clip_00,An electric guitar. 8824,His coworkers,The universe,His wife,Phoebe,Everyone in Philadelphia,1,Who does Phoebe say cares about Earl after she asks where he's from?,130863,Friends,19.54-26.05,friends_s07e13_seg02_clip_22,The universe 8825,Travis said she had a problems with Mr. Farrow,Travis said she had a problem with some of the other models,Travis said she had a problem with the photographer,Travis said she had a problem with Mr. Farrow's assistant,Travis said she had a problem with the person who did the scheduling,2,Who did Travis say was the only person at work Jenna had a problem with before she died?,130864,Castle,26.32-42.29,castle_s02e03_seg02_clip_11,Travis said she had a problem with the photographer 8826,A smartphone,A tablet,A syringe,A piece of paper,An ultrasound machine,2,What did Lanie pull up after showing the needle mark on the victim's neck?,130865,Castle,51.93-59.86,castle_s03e05_seg02_clip_03,A syringe 8827,Money,key chain,Phone number,Book of matches,Wallet,3,"What did Chandler get out of his pocket when he was talking to Monica, Rachel, Chandler and Phoebe ?",130866,Friends,48.85-57.4,friends_s04e13_seg02_clip_10,Book of matches 8828,Because Ted dumped Barney as his wing man.,Because Ted stole money form Barney.,Because Ted doesn't want have some drinks with Barney.,Because Ted is moving to another state.,Because Ted is blocking Barnery's Facebook account. ,0,Why Barney is shouting about Ted when talking with Abby?,130867,How I Met You Mother,19.21-60.03,met_s03e19_seg02_clip_02,Because Ted dumped Barney as his wing man. 8829,Castle enters the apartment riding a scooter.,Castle enters the apartment juggling fruit.,Castle enters the apartment talking on his cell phone.,Castle enters the apartment in a wig and costume.,Castle enters the apartment singing and dancing.,0,How does Castle enter the apartment when returning home to speak with Alexis?,130868,Castle,10.56-17.29,castle_s07e04_seg02_clip_26,Castle enters the apartment riding a scooter. 8830,"Sheldon, Leonard, and Howard feel relieved.","Sheldon, Leonard, and Howard feel angry.","Sheldon, Leonard, and Howard feel sad.","Sheldon, Leonard, and Howard feel jealous of Colonel Williams.","Sheldon, Leonard, and Howard feel confused.",0,"How do Sheldon, Leonard, and Howard feel after meeting with Colonel Williams?",130869,The Big Bang Theory,63.9-106.5,s10e03_seg02_clip_17,"Sheldon, Leonard, and Howard feel relieved." 8831,That Joey is jealous that Chandler is the apartment stud.,That everybody is jealous of Joey.,That Joey should take an Advil.,That he should get a cup of coffee.,That he should check himself into a psychiatric ward.,0,What is Chandler's response after Joey's dream explanation..,130870,Friends,42.2-47.81,friends_s05e16_seg02_clip_08,That Joey is jealous that Chandler is the apartment stud. 8832,Amy needs money.,Amy needs a baby.,Amy needs a tooth brush.,Amy needs dinner.,Amy needs a hair straightener .,4,What does Amy need before she goes on a date.,130871,Friends,9.92-64.03,friends_s09e08_seg02_clip_01,Amy needs a hair straightener . 8833,penny's apartment,the kitchen,at the university,at the comic book store,the laundry room,4,where is penny flirting with sheldon when amy is telling them a story?,130872,The Big Bang Theory,13.87-23.64,s07e11_seg02_clip_09,the laundry room 8834,deer,squirrel,rabbit,possum,pig,3,What animal did Marshall find in the trash when he talked to Lily?,130873,How I Met You Mother,16.51-30.01,met_s06e19_seg02_clip_12,possum 8835,Ice Cream,Corn,Potatoes,Green Beans,Gravy,3,What is Monica scooping out of a bowl before Amy starts scratching the plate with her knife?,130874,Friends,2.6-8.67,friends_s09e08_seg02_clip_11,Green Beans 8836,Raj,Leonard,Amy,Penny,Bernadette ,2,Who asks Sheldon a question after he stands up?,130875,The Big Bang Theory,77.87-90.02,s07e11_seg01_clip_00,Amy 8837,black,white,grey,blue,red,3,"What color is Wilson's shirt when he say's ""...in swedish...""?",130876,House M.D.,78.34-88.02,house_s01e10_seg02_clip_11,blue 8838,A pill bottle,A briefcase,A file,A phone,A newspaper ,3,What does House hand Nash after talking to him,130877,House M.D.,38.53-48.16,house_s06e16_seg02_clip_22,A phone 8839,She suggests checking surveillance cameras in the neighborhood for matches,She suggests distributing fliers with his picture around the neighborhood where the crime occurred.,She suggests going door to door with his pictue in the area where the crime happened,She suggests releasing it to the press and social media,She suggests consulting the victim's friends and family members as to whether or not they know him,3,How does Beckett propose identifying the suspect's picture before Garrett comes in with his announcement?,130878,Castle,8.19-12.29,castle_s07e05_seg02_clip_17,She suggests releasing it to the press and social media 8840,Leonard asked Penny if she had the time to tell him where the bathroom was.,Leonard asked Penny if she wanted to go to Comic-Con with him.,Leonard asked Penny if she would go out to dinner with him.,Leonard asked Penny if she would give him her phone number.,Leonard asked Penny if she would go to a movie with him sometime.,0,What question did Leonard finally ask Penny after he introduced himself to her?,130879,The Big Bang Theory,36.31-36.31,s07e11_seg02_clip_04,Leonard asked Penny if she had the time to tell him where the bathroom was. 8841,Robin kissed Ted.,Robin gave a cup of coffee to Ted.,Robin washed a dish.,Robin opened the microwave.,Robin sat on a stool.,0,What did Robin after giving crepes to ted?,130880,How I Met You Mother,15.51-62.03,met_s02e09_seg01_clip_00,Robin kissed Ted. 8842,Because she calls him a snake.,Because she calls him a jerk.,Because she calls him a pervert.,Because she calls him a loser.,Because she calls him a winner.,2,Why does Ross get upset when Phoebe talks to him?,130881,Friends,9.92-14.58,friends_s08e04_seg02_clip_04,Because she calls him a pervert. 8843,Joey says he sleeps on his side.,Joey says he sleeps just fine.,Joey says he has insomnia anyway.,Joey says he's pretty tired from lugging the trees around.,Joey says he goes to bed at midnight.,3,How does Joey replay when Phoebe asks him how he sleeps at night?,130882,Friends,41.56-48.07,friends_s03e10_seg02_clip_01,Joey says he's pretty tired from lugging the trees around. 8844,He was embracing the mother.,He was sitting with a patient.,He was behind House.,He was not there.,He was behind the mom.,4,Where was Chase when the mom asked House who he was?,130883,House M.D.,58.52-67.66,house_s01e16_seg02_clip_06,He was behind the mom. 8845,A plate of food,A cup of coffee,A bottle of water,A magazine,A book,3,What is Carol holding on top of the pillow when Susan walks in?,130884,Friends,4.8-10.8,friends_s01e09_seg02_clip_15,A magazine 8846,13 takes the patient's temperature,13 gets into bed with the patient,13 reads the patient's chart,13 leave the room crying,13 checks the breathing machine,1,What does 13 do after she holds the patients hand ,130885,House M.D.,78.05-91.31,house_s05e05_seg02_clip_20,13 gets into bed with the patient 8847,The recording shows Brent making lewd comments.,The recording was fake.,The recording made the other two seem guilty.,The recording did not have any sound.,The recording was of his friend.,0,Why does Brent get nervous after the recording is played?,130886,Castle,11.26-30.63,castle_s01e02_seg02_clip_09,The recording shows Brent making lewd comments. 8848,She is holding a pitcher and a beer,She is holding two bottles of water,She is holding a can of coke cola and a can of sprite,She is holding a glass of orange juice and a bottle of water,She is holding a beer and a glass of orange juice,0,What is Bernadette holding in her hands after she walks up to the guys' table,130887,The Big Bang Theory,29.22-39.67,s04e14_seg02_clip_00,She is holding a pitcher and a beer 8849,She's not supposed to be alive,She's too young for this disease,She's lying about her age,The disease is metabolic,She has autoimmune,0,What does Wilson say about the patient after he asks what year the patient was born?,130888,House M.D.,0-13.84,house_s05e04_seg02_clip_23,She's not supposed to be alive 8850,Ted,Marshall,Robin,Zoey,Barney,2,Who was Lily talking to when she was on the phone?,130889,How I Met You Mother,24.79-46.04,met_s06e05_seg02_clip_17,Robin 8851,She threw something at the window.,She slapped House.,She closed the drawer.,She ripped up the paper.,She opened up an umbrella.,2,What does Cuddy do before she told House to get him out of here?,130890,House M.D.,10.6-18.9,house_s02e23_seg02_clip_20,She closed the drawer. 8852,Goes outside to call Ryan,Goes outside to call Castle,Goes outside to smoke,Drives to the bank ,Goes home to eat dinner.,0,What does Beckett do after talking to Hicks?,130891,Castle,27.74-32.21,castle_s07e17_seg02_clip_19,Goes outside to call Ryan 8853,Leonard is standing in the kitchen. ,Leonard is standing in the living room.,Leonard is standing in the bedroom.,Leonard is standing in the bathroom.,Leonard is standing outside. ,0,Where is Leonard standing when taking food out of the bag?,130892,The Big Bang Theory,11.69-16.37,s09e04_seg02_clip_14,Leonard is standing in the kitchen. 8854,The window,The tub,The bed,Kitchen table set,The closet,3,What was Phoebe and the guy with the grey sweater standing next to after Ross says he has to find her?,130893,Friends,45.9-55.21,friends_s08e03_seg02_clip_11,Kitchen table set 8855,on a rug ,on a couch ,on a table ,on the floor ,on a bed ,4,where was hank lying when he was rubbing his head,130894,House M.D.,39.07-46.7,house_s06e07_seg02_clip_15,on a bed 8856,reading a magazine.,looking at his phone,reading the chart,he is sleeping,he is mocking foreman.,0,what is house doing when foreman is trying to figure out what is wrong with the patient?,130895,House M.D.,14.4-29.26,house_s02e13_seg02_clip_08,reading a magazine. 8857,He starts fainting,He starts seizing up,He dies,He goes into cardiac arrest.,He starts foaming at the mouth,2,What happens to the patient after he talks on the phone?,130896,House M.D.,56.19-89.9,house_s06e16_seg02_clip_22,He dies 8858,Amy and Sheldon were watching Leonard play guitar on the stage. ,The stage Amy and Sheldon were looking at had a man doing magic on it. ,Raj was performing karaoke on the stage in front of Sheldon and Amy. ,Leonard was dancing on the stage as Amy and Sheldon watched. ,The stage before Amy and Sheldon was empty. ,2,What was happening on the stage when Sheldon and Amy were sitting together. ,130897,The Big Bang Theory,9.97-17.22,s09e16_seg02_clip_12,Raj was performing karaoke on the stage in front of Sheldon and Amy. 8859,The beakseat of the car.,On his couch.,At the Cheesecake Factory.,At the comic book shop.,In the doorway of Penny's apartment.,0,"Where is Sheldon when he tells Penny ""Thank You""?",130898,The Big Bang Theory,6.51-11.79,s04e19_seg02_clip_15,The beakseat of the car. 8860,Knock on the door,Put his jacket on,Look in the peep hole,Puts his shoes on,Tucks his shirt in,1,What does Leonard do after he gets kicked out of a girls apartment?,130899,The Big Bang Theory,20.7-28.09,s05e07_seg02_clip_14,Put his jacket on 8861,Sheldon says he will always have the memories of when he first met Amy.,Sheldon says he will always have the original packaging.,Sheldon says he will always have the dent to remember the golf ball by.,Sheldon says he will always have the nightmares from his childhood.,Sheldon says he will always have the awards he won in high school.,2,What does Sheldon say he will have to remember when he removes the golf ball from its box?,130900,The Big Bang Theory,42.11-61.02,s09e19_seg02_clip_16,Sheldon says he will always have the dent to remember the golf ball by. 8862,reading medical charts,eating his lunch,crossing out items on a whiteboard,sleeping,texting on his phone,2,What is Chase doing when the team is trying to diagnose the patient?,130901,House M.D.,58.71-66.45,house_s06e18_seg02_clip_22,crossing out items on a whiteboard 8863,Lily cried,Lily drank alcohol,Lily talked to Jasmine,Lily threw money,Lily ordered a drink,3,What did Lily do when Jasmine walked on the stage?,130902,How I Met You Mother,14.78-24.43,met_s05e02_seg02_clip_16,Lily threw money 8864,gun,wallet,purse,a key ,book,3,What was the killer looking for when he trashed the apartment?,130903,Castle,9.58-14.59,castle_s04e07_seg02_clip_13,a key 8865,"He said: ""you are awesome"". ",He said that none of his movies are good. ,Wil said that he would like to play in his movie. ,He said that the interview is pointless.,He just hung up the phone without saying anything.,0,What did Wil say to Kevin Smith when Leonard didn't believe that Penny can get famous from playing Kevin Smith''s movie? ,130904,The Big Bang Theory,39.56-59.04,s08e20_seg02_clip_10,"He said: ""you are awesome"". " 8866,Joey said his character is from Greece,Joey said his character is from Paris,Joey said his character is from Naples,Joey said his character is from Germany,Joey said his character is from Sweden,2,Where did Joey say his character is from when he is standing in front of the table,130905,Friends,7.88-14.18,friends_s07e19_seg02_clip_18,Joey said his character is from Naples 8867,A drink,A compliment,An insult,Food,Berries,3,What did Bernadette not want to sway Howard after he sat down?,130906,The Big Bang Theory,0-7.2,s08e24_seg02_clip_11,Food 8868,pink,blue,green,purple,red,4,What color tie is Ross wearing when he and Joey are talking?,130907,Friends,35.3-38.45,friends_s08e15_seg02_clip_18,red 8869,Melanie handed the clipboard back to Thirteen and said she wasn't signing anything.,Melanie stormed out of the room with her husband close behind.,Melanie got on her phone to call her attorney.,Melanie looked at her husband and asked him what their next step was.,Melanie signed the paperwork and told Thirteen to just give him the meds.,4,What did Melanie do after letting Thirteen know that she wasn't telling her son he's not a boy?,130908,House M.D.,13.49-22.79,house_s05e16_seg02_clip_06,Melanie signed the paperwork and told Thirteen to just give him the meds. 8870,A CD,A flower,A phone,A TV,A christmas tree,4,What does Phoebe show Monica when they are talking?,130909,Friends,34.57-44.49,friends_s03e10_seg02_clip_14,A christmas tree 8871,Quarters. ,A dirty sock. ,A laundry basket. ,A bag of laundry. ,A shoe. ,2,What is Ross holding when he is standing next to Rachel?,130910,Friends,0-1.53,friends_s01e05_seg02_clip_12,A laundry basket. 8872,Ross doesn't get Joey ,Ross doesn't get Monica and Chandlers apartment ,Ross doesn't get Chandlers little black book ,Ross doesn't get Chandlers inheritance ,Ross doesn't get Chandlers CD collection,0,What does Chandler say Ross doesn't get when Chandler dies?,130911,Friends,0-7.63,friends_s09e08_seg02_clip_16,Ross doesn't get Joey 8873,Because he was having an allergic reaction to shellfish ,Because he was about to choke on his food,Because he thought the food was gross,To tell her that he was Cuddy's boyfriend,To inform the waiter than he needed another beer,3,Why did House put down his food after Thirteen mentioned Cuddy's boyfriend,130912,House M.D.,16.84-26.4,house_s07e18_seg02_clip_07,To tell her that he was Cuddy's boyfriend 8874,The brain,The heart,The liver,The kidney,The lung,4,Where did Cameron pull the tissue when she did the biopsy?,130913,House M.D.,22.71-38.29,house_s02e07_seg02_clip_09,The lung 8875,They're short staff,There's not enough supplies,Kids don't have enough blood,They exhausted the budget,The kids are needed to be transported to another facility ,2,Why isn't running a thousand tests being considered before narrowing down the options?,130914,House M.D.,69.72-72.27,house_s01e04_seg02_clip_17,Kids don't have enough blood 8876,Sheldon said they are going to move into a house.,Sheldon said they are going to move in with their parents.,Sheldon said they are going to move into another apartment.,Sheldon said they are going to move into a condo.,Sheldon said they are going to move into their cars.,0,Where did Sheldon say Leonard and Penny are going to move after they want more space?,130915,The Big Bang Theory,21.92-28.94,s09e04_seg02_clip_14,Sheldon said they are going to move into a house. 8877,Joey suggest Victor kiss Adrianne on the forehead.,Joey suggest Victor hug Adrianne.,Joey suggest Victor cuddle with Adrianne.,Joey suggest Victor slip Adrianne the tongue.,Joey suggest Victor kiss Adrianne on the cheek.,3,What does Joey suggest Victor do when Joey and Kate are looking for a reason for Adrianne to stay?,130916,Friends,19.92-31.63,friends_s03e20_seg02_clip_10,Joey suggest Victor slip Adrianne the tongue. 8878,She found a lamp,She likes Castle,She got away with murder,She knows who committed a murder,She is a Genie,4,What reference is given to the woman beside Hashian when they depart from Castle and Beckett,130917,Castle,18.61-27.91,castle_s08e17_seg02_clip_25,She is a Genie 8879,to lie down ,back to work ,to have a sonogram,home ,to operate on the next patient ,2,Where does Dr.Bailey go after she has a contraction ? ,130918,Grey's Anatomy,59.03-68.72,grey_s02e14_seg02_clip_04,to have a sonogram 8880,They said House wasn't asking a relevant question. ,They all answered differently and couldn't be heard.,They each said that the elderly don't have the circulatory strength. ,"They were silent, implying that they didn't know. ","Appearing intimidated, they each gave halfhearted answers.",3,"How do Cameron, Chase, Foreman and Wilson respond after House asks them why Kawasaki's doesn't affect the elderly?",130919,House M.D.,58.44-68.42,house_s02e17_seg02_clip_16,"They were silent, implying that they didn't know. " 8881,Pink. ,Orange. ,Gray. ,Green. ,Blue. ,0,What color is House's shirt when he is laying down and talking on the phone? ,130920,House M.D.,0-3.68,house_s08e08_seg02_clip_05,Pink. 8882,Four.,Three.,Two.,Six.,One,2,How many Police men took Sonia away after Esposito said he would see her soon?,130921,Castle,31-38.76,castle_s08e16_seg02_clip_26,Two. 8883,Her scarf. ,Her purse. ,Her umbrella. ,Her jacket. ,Her coffee cup. ,3,What does Mona have in her hand when she is standing in Ross's apartment?,130922,Friends,12.91-14.71,friends_s08e08_seg02_clip_16,Her jacket. 8884,Because his father beat his mother.,Because women have always done him wrong.,Because he's a sick and twisted man.,Because he hates his mother for abandoning him.,Because his mother beat him.,3,Why does Castle say Jerry kills women when Jerry is holding him captive?,130923,Castle,0-4.48,castle_s03e06_seg02_clip_25,Because he hates his mother for abandoning him. 8885,Will you let me have this case?,Were any of his belongings stolen?,Is there a missing person's report out on the victim yet?,Does the victim recall what the mugger wanted to take from him?,Has he really got amnesia?,4,What question does Castle quietly ask Ryan after he walks into the room with the mugging victim?,130924,Castle,77.45-87.02,castle_s02e11_seg02_clip_03,Has he really got amnesia? 8886,His mom comes over.,Takeout food.,Joey enters the room.,A mannequin hand.,A radio.,3,What appears when Ross is holding the papers?,130925,Friends,48.4-59.03,friends_s06e05_seg02_clip_17,A mannequin hand. 8887,Green,Red,Blue,Yellow,Black,2,What color dress is Beckett wearing when she is reading Castle's book?,130926,Castle,13.36-27.18,castle_s02e05_seg02_clip_17,Blue 8888,His leg.,His head.,His arm.,His back.,His stomach.,2,Where did Joey hit Chandler when saying he was beat?,130927,Friends,51.41-54.58,friends_s01e21_seg02_clip_07,His arm. 8889,She uncovers the patient's leg.,She covers up the leg on the cart.,She leaves the operating table.,She drops her scalpel.,She picks up the leg on the cart.,0,What does Cristina do after Richard asks her what about his legs?,130928,Grey's Anatomy,71.78-77.76,grey_s02e06_seg02_clip_04,She uncovers the patient's leg. 8890,Ted closes his eyes.,Ted screams and runs away.,Ted proposes to Robin.,Ted dances on his seat.,Ted runs to the door.,0,What does Ted do after Robin says don't be so hard on yourself?,130929,How I Met You Mother,0-2.42,met_s02e15_seg02_clip_01,Ted closes his eyes. 8891,A police officer sounded his sirens at Wilson,WIlson got into an accident,Wilson couldn't stand House and kicked him out,A police officer gave WIlson a ticket,Nothing happened to Wilson,0,What happened to Wilson when he was driving with House as his passenger?,130930,House M.D.,2.17-4.77,house_s05e04_seg02_clip_10,A police officer sounded his sirens at Wilson 8892,Beckett feels Castle is a lazy partner.,Beckett feels Castle is a lousy partner.,Beckett feels Castle is a dumb partner.,Beckett feels Castle is a silly partner.,Beckett feels Castle is a brilliant partner.,4,How does Beckett feel about her relationship with Castle when she tells Collins about her partner?,130931,Castle,31.44-51.95,castle_s07e23_seg02_clip_14,Beckett feels Castle is a brilliant partner. 8893,phone,coat,drink,plate,box,4,What was Sheldon holding before he started talking?,130932,The Big Bang Theory,0-7.04,s06e15_seg02_clip_06,box 8894,kneeled down,shook his hand,took his coat,Closed the door,took off his hat,3,What did the professor do after Raj walked in?,130933,The Big Bang Theory,15.44-18.6,s03e04_seg02_clip_04,Closed the door 8895,Because he realized he was late for something.,Because he was angry with her.,Because he just wanted to be alone.,Because Penny convinced him that Sheldon misses him.,Because he realized he'd forgotten something.,3,Why does Leonard decide to leave the room after talking to Penny?,130934,The Big Bang Theory,39.61-50.12,s05e15_seg02_clip_13,Because Penny convinced him that Sheldon misses him. 8896,Chandler said he is going to be with that woman.,Chandler said that he would prefer if she was with a different woman.,Chandler said that's okay and to go with her instincts.,Chandler said that he likes that Phoebe is cooperating.,Chandler said the enjoys many of Phoebe's ideas.,2,What did Chandler say after Phoebe said that she wanted to be with a specific woman?,130935,Friends,9.03-16.39,friends_s04e14_seg02_clip_19,Chandler said that's okay and to go with her instincts. 8897,Find out how many times he has been told he is wrong,Solve the equations ,Find the answer to a algebra problem,Run the numbers,To make a graph for the group,3,How is the doctor told to use the calculator before another talks about running tests?,130936,House M.D.,11.44-24.21,house_s01e03_seg02_clip_06,Run the numbers 8898,Reading the rights,Warrant ,Police Approval,Calling for backup ,Subpoena,4,Which step was skipped in opening sealed records after checking the data base?,130937,Castle,29.58-39.14,castle_s06e04_seg02_clip_19,Subpoena 8899,Two months,Six months,Three months,Two years,A year and a half,4,How long does Rachel say she needs when she's planning her wedding.,130938,Friends,47.62-52.94,friends_s07e14_seg02_clip_11,A year and a half 8900,A boxing glove,A baseball bat,A pillow,A cup,A blackjack table,4,What was Phobe holding on to before Joey said hit me?,130939,Friends,5.9-12.99,friends_s05e23-24_seg02_clip_40,A blackjack table 8901,Castle and Beckett feel jovial.,Castle and Beckett feel amused.,Castle and Beckett feel happy.,Castle and Beckett feel confused.,Castle and Beckett feel indifferent.,3,How do Castle and Beckett feel after Hans asks if this is all part of the experience?,130940,Castle,36.11-63.65,castle_s02e24_seg02_clip_09,Castle and Beckett feel confused. 8902,Towel,Tissue Paper,His shirt,Someone else's shirt,His jeans,1,What does Castle use to clean his hands when he walks up to Beckett?,130941,Castle,80-83.72,castle_s03e13_seg02_clip_03,Tissue Paper 8903,a broken crate,a tree trunk,a pole,a beam,a bookshelf,3,what does esposito leverage off ryan when ryan gets pinned down?,130942,Castle,26.85-36.41,castle_s06e11_seg02_clip_17,a beam 8904,They wanted to know where she last saw him,They wanted to hear how healthy Eddie,Eddie had left a note with her name,They wanted to hear how Eddie was helping her,They wanted to know how Eddie was arrested,3,Why was Aida being question by the police before shes stated she doesn't think it was what got him killed?,130943,Castle,54.89-61.86,castle_s08e13_seg02_clip_13,They wanted to hear how Eddie was helping her 8905,On the keyboard,In his shirt pocket,In the desk drawer,He eats it,In the pencil holder,2,Where does Sheldon put the card he was looking at after he hangs up the phone?,130944,The Big Bang Theory,28.17-35.53,s01e08_seg02_clip_00,In the desk drawer 8906,Scrabble.,Charades.,Monopoly.,Blackjack.,Pictionary.,4,What game did Chandler suggest before they started playing?,130945,Friends,21.31-28.51,friends_s01e18_seg02_clip_11,Pictionary. 8907,Starting the microwave,Pouring himself a drink,Trying to open a window,Turning on the TV,Shaking his hands,4,What was Chandler doing before Monica asked if he lost his mind?,130946,Friends,45.59-53.34,friends_s05e15_seg02_clip_07,Shaking his hands 8908,Taste it herself to see if it really tasted bad,Go downstairs to put ice in it,Blow on it to cool it off,Rinse the spoon off,Get a spoonful with more noodles on it,2,What did Robin have to do after feeding Barney his first spoonful of soup?,130947,How I Met You Mother,37.53-44.97,met_s02e11_seg02_clip_09,Blow on it to cool it off 8909,His shirt pocket,His back pocket,The coffee table,The table by the door,In the kitchen,1,"Where was Howard's phone when he got a message while him, Leonard, Sheldon and Raj were in the living room?",130948,The Big Bang Theory,49.75-57.18,s04e23_seg02_clip_01,His back pocket 8910,Chase,Cameron,Foreman,Cuddy,Wilson,3,Who does House yell across to talk to when he is in the room?,130949,House M.D.,0-4.95,house_s01e09_seg02_clip_08,Cuddy 8911,Lily doesn't want to live in New Jersey.,Lily didn't want to buy the giant jar of olives.,Lily is missing an art class she was looking forward to.,Marshall interrupted Lily mid-sentence.,Marshall refuses to change his shirt.,0,Why does Lily frown at Marshall when he is talking in the basement?,130950,How I Met You Mother,17.65-45.38,met_s04e03_seg02_clip_14,Lily doesn't want to live in New Jersey. 8912,Ross enters the apartment when Rachel is packing.,Phoebe enters the apartment when Rachel is packing.,Julie enters the apartment when Rachel is packing.,Monica enters the apartment when Rachel is packing.,Paolo enters the apartment when Rachel is packing.,1,Who enters the apartment when Rachel is packing for the weekend?,130951,Friends,33.93-41.06,friends_s01e12_seg02_clip_11,Phoebe enters the apartment when Rachel is packing. 8913,Asia,America,Africa,China,Russia,1,Where does Peters conclude the diamond is not from after he examines it?,130952,Castle,37.89-55.2,castle_s06e08_seg02_clip_11,America 8914,Phoebe has been up for 12 hours.,Phoebe has been up for 24 hours.,Phoebe has been up for 5 hours.,Phoebe has been up for 2-4 hours.,Phoebe has been up for 48 hours.,1,How long has Phoebe been up when Monica comes out of her room?,130953,Friends,25.59-29.44,friends_s03e22_seg02_clip_10,Phoebe has been up for 24 hours. 8915,ipad,laptop,kindle,phone,the car's on screen display,3,What type of device does Bernadette use to talk to Raj's dad when she is sitting in the driver's seat?,130954,The Big Bang Theory,0-6.6,s10e03_seg02_clip_16,phone 8916,He's heading to you guys!,Get this scumbag.,Don't let him get away!,He's on the move!,We did our part.,3,"What was said over the radio after ""Back alley""? ",130955,Castle,69.48-75.92,castle_s04e04_seg02_clip_07,He's on the move! 8917,4,2,1,8,10,0,How many people are listening when Miranda gives her speech?,130956,Grey's Anatomy,24.58-91.03,grey_s03e13_seg02_clip_22,4 8918,Tory,Terry,Timmy,Teresa ,Tammy,0,Who interrupts the couple watching two men in another room before saying she had something?,130957,Castle,65.34-80.52,castle_s07e19_seg02_clip_14,Tory 8919,for her period,for cramps,for a fever,for pain,for a headache,0,Why did the father bring his girl in for when he saw Izzy?,130958,Grey's Anatomy,21.16-34.38,grey_s03e14_seg02_clip_15,for her period 8920,She drinks coffee. ,She rolls her eyes. ,She eats a donut. ,She nods her head. ,She drinks water. ,3,What does Phoebe do after her boyfriend points at her in the interrogation room?,130959,Friends,38.09-43.22,friends_s05e21_seg02_clip_12,She nods her head. 8921,Missy Goldberg.,Joey.,Monica.,Adrienne.,Ross.,4,Who finds Chandler after he tells his table mates that he has never been in a band?,130960,Friends,5.31-15.94,friends_s10e11_seg02_clip_15,Ross. 8922,kates office ,mcdonalds ,to the suspects cabin,school ,home ,2,Where does Castle go after he leaves the prison,130961,Castle,82.39-90.05,castle_s07e15_seg02_clip_14,to the suspects cabin 8923,A jacket.,Shoes.,Glasses.,A cape.,Boots.,4,What does Leonard say he has this year when they guys are looking at comics?,130962,The Big Bang Theory,6.47-11.17,s04e11_seg02_clip_04,Boots. 8924,"Stuart yells, ""I love you too!""","Stuart yells, ""That's right sucka!""","Stuart yells, ""I love your mom too!""","Stuart yells, ""I hate you Howard!""","Stuart yells, ""We're not friends anymore pal!""",1,What does Stuart yell back to Howard after he leaves the apartment?,130963,The Big Bang Theory,40.47-61.31,s08e01_seg02_clip_15,"Stuart yells, ""That's right sucka!""" 8925,through a cell phone call,through a web cam,through a video recording,beckett was there,through a speaker under the chair.,4,how did the kill get becketts voice to transmitt before the victim was shoot?,130964,Castle,68.78-83.37,castle_s07e15_seg02_clip_11,through a speaker under the chair. 8926,Heisenberg's uncertainty principle,The Theory of Relativity,The Doppler Effect,Faraday's law of induction,The Chaos theory,4,What theory does Sheldon use as a reason when Penny ask him why not get a table?,130965,The Big Bang Theory,16.56-26.46,s07e16_seg01_clip_01,The Chaos theory 8927,Ross is talking to Kim,Ross is talking to Carol,Ross is talking to Kiki,Ross is talking to Joanne,Ross is talking to Melissa,1,Who is Ross talking to at the restaurant when they start discussing relationships,130966,Friends,0-16.7,friends_s01e14_seg02_clip_21,Ross is talking to Carol 8928,Closes his office door.,Motions for her to sit down.,Waves his hand at her.,Turns his back to speak privately on the phone.,Pours her a cup of coffee.,2,What does Castle do after Beckett thanks Miss Monroe for coming by?,130967,Castle,36.2-45.6,castle_s02e20_seg02_clip_23,Waves his hand at her. 8929,Chandler tells Joey to call an ambulance.,Chandler slaps Joey.,Chandler ignores Joey and walks away.,Chandler changes the subject.,Chandler is surprised Joey noticed.,1,How does Chandler respond when Joey tells Chandler he can't believe Chandler fell asleep?,130968,Friends,0-22.05,friends_s08e22_seg02_clip_10,Chandler slaps Joey. 8930,A dry cleaners,A deli,A book store,A strip club,A restaurant,0,What does Hastings say her father owned when she's talking to Beckett?,130969,Castle,12.47-16.92,castle_s04e02_seg02_clip_22,A dry cleaners 8931,He was on a computer.,He was writing on a notepad.,He was eating a sandwich.,He was performing surgery.,He was checking his own pulse.,0,What was House doing when Wilson entered the room?,130970,House M.D.,0-9.68,house_s04e01_seg02_clip_15,He was on a computer. 8932,Rachel thinks Ross is cheating on Rachel,Rachel is worried Ross will marry Jill,Jill has a husband,Ross is a three time divorcee,Phoebe is Ross' fiancee,1,"Why does Rachel exclaim ""oh, no!"" after Phoebe tell's Rachel about the spark between Jill and Ross?",130971,Friends,12.7-56.7,friends_s06e13_seg02_clip_10,Rachel is worried Ross will marry Jill 8933,Monica is sitting at the kitchen table.,Monica is sitting on the sofa next to Chandler.,Monica is standing in front of the window.,Monica is sitting at her computer desk.,Monica is lying on the floor.,1,Where is Monica when she begins to write about Phoebe?,130972,Friends,39.67-61.03,friends_s06e21_seg02_clip_12,Monica is sitting on the sofa next to Chandler. 8934,Home,pizzaria,Bookstore,Mall,Bakery,2,Where was Castle's mom when he was talking to her on the phone?,130973,Castle,11.63-21.54,castle_s01e03_seg02_clip_03,Bookstore 8935,Rachel tells Danny something came up ,Rachel tells Danny she doesn't have time the day of the date,Rachel tells Danny she is not comfortable with his special realtionship with his sister,Rachel doesn't cancel her date with Danny,Rachel tells Danny she is not ready to date him yet,2,Why does Rachel want to cancel her date with Danny after Danny asks her why?,130974,Friends,6.84-15.97,friends_s05e10_seg02_clip_16,Rachel tells Danny she is not comfortable with his special realtionship with his sister 8936,Waiting in the cafeteria line. ,Standing outside Robert's hospital room. ,"Walking to their respective cars, in the parking lot. ",Waiting for the elevator at the hospital main entrance. ,In front of the double doors to the hospital's rehab unit. ,1,"Where are Doyle and Alex when Doyle says, ""Anything I can do??""",130975,Grey's Anatomy,32.21-40.83,grey_s02e10_seg02_clip_08,Standing outside Robert's hospital room. 8937,Her other patients,Back to her private practice,Her home,Her date with Chase,Her shift at the ER,4,Where does House tell Cameron to go after she manages to get him to look at a patient?,130976,House M.D.,33.49-40.47,house_s05e21_seg02_clip_04,Her shift at the ER 8938,The doctors recommended a second surgery.,The doctors recommended morphine.,The doctors recommended amputating his leg.,The doctors recommended best rest and antibiotics.,The doctors recommended oxycotin.,3,What did the doctors recommend for the patient that was in extreme pain after a surgery to remove a mass from a vein?,130977,House M.D.,7.7-36.97,house_s01e21_seg02_clip_19,The doctors recommended best rest and antibiotics. 8939,Chandler gets anxious meeting new people.,Chandler has a fear of women,Chandler is afraid that Eddie is going to move out and leave him just like Joey did.,Chandler is afraid Eddie will find out about him and Tilly.,Eddie is intense,4,Why does Chandler say he was terrified when Eddie was talking about Tilly?,130978,Friends,0.87-29.3,friends_s02e18_seg02_clip_04,Eddie is intense 8940,Castle's Daughter,Ice cream,A more likely suspect,A news Cast,A weird structure.,2,What draws Beckett's and Castle's attention away when they are visiting the first room?,130979,Castle,28.17-40.05,castle_s01e02_seg02_clip_17,A more likely suspect 8941,Rachel is feeling aroused.,Rachel is feeling happy and excited.,Rachel is feeling upset and confused.,Rachel is feeling jealous of the strippers.,Rachel is feeling depressed and anxious.,2,"How is Rachel feeling when she sits down to talk to Monica, Phoebe, and Chandler?",130980,Friends,8.86-22.34,friends_s04e14_seg02_clip_12,Rachel is feeling upset and confused. 8942,Checked his phone,Sat down,Drank some water,Drank some coffee,Walk away,4,What did Keith do when he was talking to Castle?,130981,Castle,0-14.29,castle_s05e07_seg02_clip_14,Walk away 8943,Talks to some people in a car.,Runs away.,Shoots him in the back.,Gets on a bus.,Walks away with a woman.,0,What does McMurtry do after Dolan leaves?,130982,Castle,74.38-84.01,castle_s05e08_seg02_clip_18,Talks to some people in a car. 8944,Ryan was eating a sandwich,Ryan was drinking a bottle of water,Ryan was drinking from a mug,Ryan was eating a candy bar,Ryan was eating a slice of pizza,2,What was Ryan doing when Esposito started to give him an update?,130983,Castle,47.26-53.11,castle_s08e14_seg02_clip_17,Ryan was drinking from a mug 8945,Marshall's beer,A bottle of wine,The blue horn,Some puppies,Chinese food,4,What was Lilly holding when Barney looked at his watch?,130984,How I Met You Mother,9.07-10.59,met_s06e11_seg02_clip_02,Chinese food 8946,She picks up a box of old comics in the garage.,She takes out the darts board from a box.,She walks over to a big blue container with two large doors,She goes and stands next to Howard.,She starts playing for Penny.,2,What does Bernadette do after she talks to Raj about the TARDIS?,130985,The Big Bang Theory,12.22-21.99,s08e19_seg02_clip_11,She walks over to a big blue container with two large doors 8947,Fixing his hair.,He's doing dishes.,Calling Marshall.,Changing his shirt.,Talking to a lady.,0,What is Ted doing when Barney talks about attraction?,130986,How I Met You Mother,0-6.62,met_s03e11_seg01_clip_02,Fixing his hair. 8948,The Lab,The Morgue,The Park,The Grocery Store,The Doctor,2,Where is Richard going when he leaves the house?,130987,Castle,42.78-46.42,castle_s03e08_seg02_clip_00,The Park 8949,The police detective,The nurse,The private detective,The doctor,His wife,0,Who must Ricky really like after Ricky mentions his idea?,130988,Castle,20.91-24.71,castle_s02e01_seg02_clip_16,The police detective 8950,indignant,happy,bored,angry,tired,0,How did Sheldon feel when he wore the dress?,130989,The Big Bang Theory,0-30.5,s05e21_seg02_clip_07,indignant 8951,So Ross won't hear the message Chandler left for him,So Ross doesn't listen to the message Rachel left for him,Because Ross isn't paying attention to Rachel,Because Ross is supposed to be at work,So Ross won't tell Joey that Rachel likes him,1,Why does Rachel jump on Ross when he's on the phone?,130990,Friends,15.05-28.63,friends_s04e21_seg02_clip_13,So Ross doesn't listen to the message Rachel left for him 8952,He was arguing with the janitor.,He was arguing with Foreman,He was arguing with the mail man.,He was arguing with himself.,He was arguing with Cuddy.,4,Who was House arguing with when he was done in the bathroom?,130991,House M.D.,73.16-92.03,house_s04e05_seg02_clip_16,He was arguing with Cuddy. 8953,Show him a picture on his camera.,Give him a drink.,Show him a really cool building.,Take a picture of themselves.,Give Chandler his camera.,3,What was Joey trying to do after Chandler stopped him from pointing everywhere?,130992,Friends,61.54-92.58,friends_s04e23-24_seg02_clip_04,Take a picture of themselves. 8954,Underneath a bench.,Behind a bush.,Under a stone.,Close to a trash can.,Below a bridge.,0,Where Tommy found the money after blackmail Brian?,130993,Castle,18.97-26.2,castle_s03e21_seg02_clip_19,Underneath a bench. 8955,The DMV lady quit her job,The DMV lady stamped Sheldons papers and told him to go away,The DMV lady rolled her eyes,The DMV lady ran away in fear of Sheldon,The DMV lady pointed to the sign above her,4,What did the DMV lady do after Sheldon mentioned that he had some concerns about the exam questions,130994,The Big Bang Theory,15.26-25.02,s02e05_seg02_clip_09,The DMV lady pointed to the sign above her 8956,Not to ever see Rachel again,Come get her,Buy her a plane ticket,apologize to her,live with her instead,0,What did Emily ask Ross to do before she came to New York?,130995,Friends,44.43-53.82,friends_s05e04_seg02_clip_09,Not to ever see Rachel again 8957,Deck.,Garden.,Garage.,Closet.,Porch.,3,Where was Alexis looking for when figuring out where he can be?,130996,Castle,0.46-8.24,castle_s03e08_seg02_clip_10,Closet. 8958,Blue,green,purple,red,brown,0,"What color sweater is Cuddy wearing when she says ""That is what I will do""?",130997,House M.D.,79.23-89.02,house_s06e10_seg02_clip_22,Blue 8959,a live ferret,a live chicken,a live duck,a bowling pin,a baby hamster,1,what does wilson have on his desk when he is talking to masters about house?,130998,House M.D.,0-8.46,house_s07e19_seg02_clip_21,a live chicken 8960,He did pushups,He said I am ready to go.,He ran in the door.,"Ted said, I am ready to hit the road.",He called his friend.,3,What did Ted say before he told Barney what he had for his trip?,130999,How I Met You Mother,3.99-61.38,met_s05e05_seg02_clip_00,"Ted said, I am ready to hit the road." 8961,Raj stated what he was cooking.,Raj needed help in the kitchen.,Raj was trying to cook.,Raj said he washed dishes.,Raj said he mopped the floor.,2,What did Raj say after he walked out of the kitchen?,131000,The Big Bang Theory,0-22.95,s07e09_seg02_clip_08,Raj was trying to cook. 8962,cried,left with them,hugged them,kissed them,closed the door,4,What did the girls do after they were done talking?,131001,Friends,26.23-29.65,friends_s01e19_seg02_clip_14,closed the door 8963,A needle,A book,A finger,A syringe,A torchpen,4,What did Foreman point to the patient's eyes when he could not see clearly.,131002,House M.D.,66.87-72.83,house_s07e17_seg02_clip_09,A torchpen 8964,House tells Foreman that it means he needs to go tell Patrick's family to tell him goodbye. ,House tells Foreman that it means that Patrick is just really stupid. ,House says that it means that Patrick is dying faster than they thought he was. ,House tells Foreman that it means that there is nothing they can do to help Patrick. ,House says that it means that the right side of Partick's brain has always sucked. ,4,How does House answer when Foreman asks him what it means? ,131003,House M.D.,68.42-90.02,house_s03e15_seg02_clip_17,House says that it means that the right side of Partick's brain has always sucked. 8965,Sheldon was suffering from a nervous tic.,Sheldon believes Howard is flirting with Siri.,"Raj asked Sheldon, ""Would you please wink at me?""","Raj winked at Sheldon, so Sheldon winked back.",Something was stuck in Sheldon's eye.,1,Why did Sheldon wink at Raj after Raj asked Siri a question?,131004,The Big Bang Theory,0.6-42.11,s05e14_seg02_clip_08,Sheldon believes Howard is flirting with Siri. 8966,Because Robin likes alcohol,Because Robin wants to relax,Because Robin wants to be drunk.,Because Robin is happy,Because Robin is high.,1,Why Lily gave the bottle to Robin when she feels bad,131005,How I Met You Mother,43.24-46.24,met_s06e14_seg02_clip_12,Because Robin wants to relax 8967,Standing by the patients head.,Sitting to the right of the patient.,Sitting to the left of the patient.,Standing in the observation room.,Standing at the patients feet.,1,Where was Adams when Chase said the patients heart should start soon?,131006,House M.D.,16.38-19.12,house_s08e09_seg02_clip_13,Sitting to the right of the patient. 8968,open the door,hide under the exam table,sit down,fall on the floor,hang up the phone,4,What does House do after Taub says he knows House is in the exam room?,131007,House M.D.,34.79-39.49,house_s07e05_seg02_clip_14,hang up the phone 8969,Back into the elevator,Into an empty room,To the bathroom,To an open window,Into a doctor's office,0,Where does Gretchen go after she realizes she is on the psych floor?,131008,Grey's Anatomy,48.32-52.31,grey_s03e06_seg02_clip_23,Back into the elevator 8970,They are in the car. ,They are in Sheldon's apartment. ,They are at a restaurant. ,They are at Howard's mom's house. ,They are at Penny's. ,0,Where are Sheldon and Bernadette when they are together?,131009,The Big Bang Theory,0-10.2,s08e11_seg02_clip_03,They are in the car. 8971,Montgomery,Esposito,Ryan,Lanie,Her father,0,Who is with Castle when Beckett arrives at the crime scene?,131010,Castle,0-22.73,castle_s03e22_seg02_clip_00,Montgomery 8972,Borg.,Kligon.,Andorian.,Martian.,Vulcan.,2,Where did Stephanie say the Empath was from that brought Winters back from the dead before he elbowed here?,131011,Castle,32.84-43.33,castle_s05e06_seg02_clip_24,Andorian. 8973,Ted opened the box.,Ted put the box on the floor.,Ted gave the box to Barney.,Ted put glue on the box,Ted cut the box.,0,What did Ted after Marshall gave him the gift?,131012,How I Met You Mother,6.72-79.05,met_s05e01_seg01_clip_02,Ted opened the box. 8974,to look for cysts,to looks for tumors,to check for foreign objects,to confirm she is pregnant,To make the patient happy,3,Why is house running an ultra sound test on the patient after looking at her blood results?,131013,House M.D.,82.38-91.03,house_s01e19_seg02_clip_20,to confirm she is pregnant 8975,because he wrote his father a letter and he didn't respond,because he missed Bob Barker,because he really wants a committed relationship,because he is losing his airline he doesn't really own,because he is going to get arrested for lying to the police,0,Why is Barney so upset when he sitting talking to Honey,131014,How I Met You Mother,5.82-18.03,met_s06e15_seg02_clip_14,because he wrote his father a letter and he didn't respond 8976,she is off to the left of the patient,she is next to meredith. ,she is behind them. ,she is in front of meredith. ,she is not there.,0,Where is Izzy when Meredith is doing a procedure? ,131015,Grey's Anatomy,34.02-42.85,grey_s03e06_seg02_clip_07,she is off to the left of the patient 8977,everything,just the house,the car,the kids,the boat,0,What did the wife take when she left the Professor?,131016,The Big Bang Theory,15.68-29.65,s03e02_seg02_clip_14,everything 8978,Cameron,Cuddy,Wilson,Vogel,Stacy ,3,Who approaches Foreman when he is providing treatment to the patient?,131017,House M.D.,67.88-87.02,house_s01e16_seg02_clip_14,Vogel 8979,his hat,his phone,his coat,his drink,His pistol,4,What does the first guy reach for after he asks the other guy a question?,131018,Castle,0-6.11,castle_s07e07_seg02_clip_25,His pistol 8980,Reading magazines.,Telling jokes.,Sipping coffee.,Taking shots.,Flirting with a waiter.,3,What were Penny and Beverly when they were at the bar?,131019,The Big Bang Theory,0.61-7.63,s03e11_seg02_clip_12,Taking shots. 8981,7 years,10 years,2 years,A year,4 years,4,How long does the doctor say they was treating Lewis before he got stable?,131020,Castle,0-15.68,castle_s07e23_seg02_clip_19,4 years 8982,Teaching off of a whiteboard,Driving to work,Doing his laundry,Sitting silently ,Walking his dog,0,What is David doing when he talks to Phoebe?,131021,Friends,44.1-58.03,friends_s01e10_seg02_clip_06,Teaching off of a whiteboard 8983,A tray of plates.,A bottle of water.,A plant.,A box of silverware.,A stack of napkins.,0,What did the waitress drop when she fell?,131022,How I Met You Mother,5.44-10.24,met_s02e03_seg02_clip_14,A tray of plates. 8984,She slapped him.,She frowned.,She rolled her eyes.,She stared at him.,She covered her face.,3,What did Monica do when Joey suggested she bring her black teddy?,131023,Friends,58.84-68.02,friends_s09e04_seg02_clip_00,She stared at him. 8985,It's his mother's name,His parents wanted a girl,He was joking,It's a family name,It's his father's name,3,"What reason does Chandler provide to Ross, when they are in front of the elevators, for his abnormal middle name?",131024,Friends,33.33-41.59,friends_s08e05_seg02_clip_01,It's a family name 8986,That Lily is pregnant. ,That the apartment smelt bad. ,That the apartment was the prettiest place ever. ,That Lily hates it. ,That Lily loves it and that they should get it. ,4,What does the narrator suggest Lily should have actually said when Marshall and her were about to get an apartment?,131025,How I Met You Mother,12.34-25.58,met_s03e07_seg02_clip_03,That Lily loves it and that they should get it. 8987,Lily is taking pictures.,Lily sat next to Marshall.,Lily is not in the theater.,Lily is acting on stage.,Lily is at home.,3,What is doing Lily when Marshall sat in the teather?,131026,How I Met You Mother,21.94-51.02,met_s02e16_seg02_clip_07,Lily is acting on stage. 8988,2,5,15,20,10,4,How many more pounds did the pharamacy technician want to lose before she stopped stealing?,131027,House M.D.,43.71-61.66,house_s06e13_seg02_clip_10,10 8989,Tyson broke his foot.,Tyson broke his arm.,Tyson broke his leg.,Tyson broke his nose.,Tyson broke his jaw.,4,What does Castle say happened to Tyson when he got in a fight at Sing Sing in the weight yard?,131028,Castle,5.34-12.46,castle_s04e04_seg02_clip_16,Tyson broke his jaw. 8990,Because Barney is worried that Robin is more in love with Brad.,Because Barney is worried that Robin will go out with Brad. ,Because Barney is worried that Robin doesn't share his feelings for her.,Because Barney is worried that Robin likes Brad more than him.,Because Barney is worried that Robin is in love with him and he doesn't feel the same.,1,Why does Barney look concerned when Brad approaches Robin at the table?,131029,How I Met You Mother,28.3-47.28,met_s05e01_seg02_clip_03,Because Barney is worried that Robin will go out with Brad. 8991,Raj is writing a song with Howard.,Priya is writing a song with Howard.,Stuart is writing a song with Howard.,Sheldon is writing a song with Howard.,Leonard is writing a song with Howard.,0,Who is writing a song with Howard when they are playing guitars?,131030,The Big Bang Theory,34.43-40.28,s09e04_seg02_clip_04,Raj is writing a song with Howard. 8992,kiss his coworker,scream,look at the board,Talk about his morning,take a drink of coffee,2,What did House do right before he left the room?,131031,House M.D.,15.66-21.92,house_s03e24_seg02_clip_20,look at the board 8993,In a chair,On the couch with her legs crossed,On the table,In a booth ,She is standing on the table,1,How is Dr. Nieman sitting when Beckett walks in ,131032,Castle,0-6.31,castle_s07e14_seg02_clip_22,On the couch with her legs crossed 8994,Phoebe.,Chandler.,Monica.,Charlie.,Rachel.,2,Who rolls dice before walking around the table?,131033,Friends,54.83-58.03,friends_s03e25_seg02_clip_07,Monica. 8995,Brown and white,Clear,Yellow and orange,Pink and purple,Blue and green,4,What color where the bottles on the table next to the glasses when Ted and a coworker placed a covered stature on the table in front of Mr. Druthers?,131034,How I Met You Mother,29.3-32.55,met_s02e06_seg02_clip_15,Blue and green 8996,A pair of high heels ,Penny's Robe.,His underwear.,One of Penny's dresses.,A cap and gown.,4,What is Leonard wearing when he says that it's very freeing?,131035,The Big Bang Theory,10.93-14.58,s08e22_seg02_clip_09,A cap and gown. 8997,A sandwich,A suitcase,A comic book,A handshake,A hug,1,What did Raj give Howard when Howard said to come in?,131036,The Big Bang Theory,5.96-9.41,s06e15_seg02_clip_00,A suitcase 8998,cookies,a cake,a pie,it was empty,donuts,4,What was in the covered glass display dish behind Rachel when she was arguing with Ross?,131037,Friends,24.05-27.06,friends_s02e07_seg02_clip_18,donuts 8999,Bernadette laughs,Howard storms in and throws the towel on the table,"Howard walks up to the table and states to Bernadette that she was not there, and that Raj was really flirting.",Raj laughs at Howard,Bernadette turns around and states that dinner is ready,2,How does howard react after bernadette states her approval?,131038,The Big Bang Theory,6.82-8.52,s09e14_seg02_clip_10,"Howard walks up to the table and states to Bernadette that she was not there, and that Raj was really flirting." 9000,Petting her husband,Reading,Watching TV,Packing,Dressing her husband,3,What is Arlene doing when she thanks House for helping her husband?,131039,House M.D.,0-15.18,house_s03e01_seg02_clip_11,Packing 9001,Burke was making potatoes,Burke was making Gumbo,Burke was making chicken,Burke was making pork chops,Burke was making shrimps,2,What was Burke making when Cristina came into the apartment,131040,Grey's Anatomy,0-10.32,grey_s03e04_seg02_clip_25,Burke was making chicken 9002,Joey is somber and surprised.,Joey is elated.,Joey cries.,Joey hugs Ross.,Joey dances out the door.,0,What does Joey do after Ross mentions dating other people?,131041,Friends,25.22-30.62,friends_s09e14_seg01_clip_01,Joey is somber and surprised. 9003,The cafe,The auditorium ,The park,Howard's garage,Tuesdays at his place,4,Where and when is Leonard told practice will be after he accepts Lesley's offer?,131042,The Big Bang Theory,23.61-32.46,s01e05_seg01_clip_02,Tuesdays at his place 9004,McCord spilled the coffee,McCord hit Castle,McCord arrested Castle,McCord got a cup of coffee,McCord threw coffee at Castle,3,"What did McCord do after Castle said, ""too soon?""",131043,Castle,74.49-83.59,castle_s06e02_seg02_clip_15,McCord got a cup of coffee 9005,Marshall has a hat on.,Marshall has a tie on.,Marshall has a shoe on.,Marshall has a bib on.,Marshall has a clip on.,1,What does Marshall have on that is striped when he is at the bar?,131044,How I Met You Mother,0-8.68,met_s06e20_seg02_clip_06,Marshall has a tie on. 9006,Fart smells,Crying babies,Awkward silence,Cheating,Crying women,4,What makes gavin uncomfortable when he is talking to rachel in the office? ,131045,Friends,2.1-6.3,friends_s09e11_seg02_clip_18,Crying women 9007,Lily was working out at the gym.,Lily was standing next to the dresser in her room.,Lily was reading a book about divorce in the living room.,Lily was running wildly around her apartment.,Lily was lying down in her bed.,4,What was Lily doing after her argument with Mr. Stinson?,131046,How I Met You Mother,6-12.75,met_s02e05_seg02_clip_19,Lily was lying down in her bed. 9008,The evidence was destroyed,Cyberbullying laws were too weak,No one would testify against the perpetrator,The perpetrator's dad paid Lane off not to press charges,The district attorney and the perpetrator's dad were golfing buddies,1,Why was no one held accountable when the incident was reported?,131047,Castle,85.56-91.03,castle_s07e05_seg02_clip_17,Cyberbullying laws were too weak 9009,Lily. ,Barney.,Santa Claus. ,Ted.,Robin.,1,What person comes through the door when Marshall is standing in the kitchen? ,131048,How I Met You Mother,23.91-31.48,met_s03e08_seg02_clip_12,Barney. 9010,He thinks the kid will die soon,He is sleeping with the owner,He thinks he is the only case,He gives money to the hospital ,He is tired and needs to get some rest,3,Why does House say the father is mad when the son asks about it?,131049,House M.D.,22.2-32.84,house_s01e13_seg02_clip_21,He gives money to the hospital 9011,The newspaper,Her phone,The television,The fireplace ,The sky,1,What does Beckett look at before announcing there has been a murder,131050,Castle,12.91-21.81,castle_s05e08_seg02_clip_01,Her phone 9012,Joint implants Mark talks about.,Corneal implants Mark talks about.,Brain stimulation implants Mark talks about.,Pacemaker implants Mark talks about.,Saline and silicone breast implants Mark talks about.,4,What kind of implants does Mark show Mrs. Niles when he talks to her with her husband?,131051,Grey's Anatomy,0.89-14.74,grey_s03e05_seg02_clip_12,Saline and silicone breast implants Mark talks about. 9013,Bernadette is in her kitchen when Howard knocks,Bernadette is in her bathroom when Howard knocks,Bernadette is in the bedroom when Howard knocks,Bernadette is in her office when Howard knocks,Bernadette is in her lab when Howard knocks,0,Where is Bernadette when Howard knocks to get her attention,131052,The Big Bang Theory,5.8-13.73,s10e09_seg02_clip_01,Bernadette is in her kitchen when Howard knocks 9014,Yells back at the teacher,Quickly wakes up,Drops a book on the floor,Answers the question on the board,Walks out of the classroom,1,What does Barney do after the teacher shouts his name?,131053,How I Met You Mother,7.57-13.63,met_s05e03_seg02_clip_07,Quickly wakes up 9015,Mr. Harris was going to face a murder charge.,Mr. Harris was going to face rape charges.,Mr. Harris was going to prison.,Mr. Harris was going to court.,Mr. Harris was going to be sued.,0,What was going to happen to Mr. Harris after the spermicide matched him?,131054,Castle,19.13-22.53,castle_s01e02_seg02_clip_19,Mr. Harris was going to face a murder charge. 9016,Coffee,Soda,Water,Tea,Donuts,3,What does Mary offer to Parker after he enters the room?,131055,Castle,12.25-25.29,castle_s06e02_seg02_clip_23,Tea 9017,Emily could have a ruptured lung.,Emily could start crying. ,Emily could fall and hurt herself. ,Emily can have intracranial hemorrhaging.,Emily could stop feeding.,3,"What could happen to the newborn, Emily, after Izzie administers the ECMO?",131056,Grey's Anatomy,22.06-31.51,grey_s02e11_seg02_clip_21,Emily can have intracranial hemorrhaging. 9018,10 minutes,20 minutes,40 minutes,13 minutes,70 minutes,3,How much time was left when Marshall got his toupee back?,131057,How I Met You Mother,29.26-31.54,met_s02e21_seg02_clip_11,13 minutes 9019,Taub.,Parks.,Foreman.,Bob.,Chase.,4,Who did House say was staring at Adam's breasts when he interupted her conversation about telling the truth?,131058,House M.D.,58.52-65.27,house_s08e05_seg02_clip_15,Chase. 9020,With him to play poker,With him to see a movie,With him to his fathers grave site,With him to get his painting,With him to the shooting range ,3,Where did Lorenzo say Castle had to go after walked in with his gun pointing?,131059,Castle,35.76-44.36,castle_s08e05_seg02_clip_20,With him to get his painting 9021,In their sleep,After living a full live,After traveling,After the age of 80,At the hospital,0,How do people want to die according to Castle when seeing the crime scene?,131060,Castle,0-2.46,castle_s02e23_seg02_clip_01,In their sleep 9022,Going to movies.,Study.,Exercising.,Walking a dog.,Going to dinner.,1,What does Alexis say her and Max are going to do when Castle asks?,131061,Castle,17.88-23.84,castle_s05e14_seg02_clip_11,Study. 9023,House told Emily she needs to tell the new doctors that he needs total body radiation,House told Emily she needs to tell the new doctors that he needs total leg radiation,House told Emily she needs to tell the new doctors that he needs total arm radiation,House told Emily she needs to tell the new doctors that he needs total stomach radiation,House told Emily she needs to tell the new doctors that he needs total heartradiation,0,What did House tell Emily she needs to tell the new doctors when she is in the elevator?,131062,House M.D.,35.8-47.44,house_s08e11_seg02_clip_23,House told Emily she needs to tell the new doctors that he needs total body radiation 9024,He screamed for one minute. ,He screamed for ten minutes. ,He screamed for twelve minutes. ,He screamed for nine minutes. ,He screamed for seven minutes. ,3,How long did Howard scream for when the other astronauts taped an alien mask to his window?,131063,The Big Bang Theory,28.81-37.13,s06e02_seg02_clip_13,He screamed for nine minutes. 9025,Weber is implying that the sample size is too small for conclusions to be drawn. ,Weber is trying to get House to peer-review his paper.,Weber is making small talk. ,"Weber wants to know the condition of the patient, and he diagnosis. ","Weber isn't following House's words, and just says something random. ",0,Why does Weber ask House if it was one patient after House says he's tested the drug?,131064,House M.D.,72.23-80.93,house_s02e12_seg02_clip_09,Weber is implying that the sample size is too small for conclusions to be drawn. 9026,chocking,Crying,Cussing,Phone call,explosion ,3,What causes House to interrupt his speaking to the doctors after they discuss the rats?,131065,House M.D.,22.33-25.13,house_s03e03_seg02_clip_09,Phone call 9027,Because Foreman assumed that House advised Chase to flee the country.,Because Foreman assumed that House advised Chase to cheat on Cameron.,Because Foreman assumed that House advised Chase to give up on his marriage.,Because Foreman assumed that House advised Chase say something insensitive to Cameron.,Because Foreman assumed that House advised Chase to ask Cameron for an open marriage.,2,Why did Foreman tell Chase not to listen to House after Chase said that Foreman had no idea what House even said?,131066,House M.D.,48.05-63.32,house_s06e07_seg02_clip_15,Because Foreman assumed that House advised Chase to give up on his marriage. 9028,Penny laugh,Penny turn around and left,Penny shout at Leonard,"Penny hold the knob staring at Raj,Howard, Sheldon and Leonard dancing",Penny cry,3,What did Penny do when she open the door to the apartment?,131067,The Big Bang Theory,58.96-62.43,s01e09_seg01_clip_00,"Penny hold the knob staring at Raj,Howard, Sheldon and Leonard dancing" 9029,goes out the window,makes a call,opens the window,puts a chip in a drawer,hides a camera,1,What does Becket do after Harden closes the door?,131068,Castle,2.59-10.78,castle_s06e17_seg02_clip_10,makes a call 9030,Her keys,A list of names for a prayer chain,A bank floor plan,Her wallet,Her phone,2,What does Phoebe pull out of Ursula's purse when she wants to prove she is a liar?,131069,Friends,47.9-62.71,friends_s08e06_seg02_clip_16,A bank floor plan 9031,red,purple,pink,blue,teal,1,What color is Castle's shirt after the guy grabs the cops gun?,131070,Castle,50.04-59.89,castle_s02e13_seg02_clip_24,purple 9032,House asks the team if they got any good pictures before the MRI went down.,House asks the team if they got a good diagnosis before the MRI went down.,House asks the team if they got any good x-rays before the MRI went down.,House asks the team if they got any good news before the MRI went down.,House asks the team if they got any good results before the MRI went down.,0,What does House ask the team if they got before the MRI machine malfunctioned?,131071,House M.D.,30.75-33.14,house_s08e21_seg02_clip_19,House asks the team if they got any good pictures before the MRI went down. 9033,He feels loving.,He feels happy.,He feels lazy.,He feels upset.,He feels hungry.,3,How did Raj feel after seeing his Dads helicopter?,131072,The Big Bang Theory,44.13-46.65,s08e22_seg02_clip_06,He feels upset. 9034,Sitting behind the desk.,Sitting on the edge of the desk.,Standing in front of the whiteboard.,Standing by the window.,Standing next to Beckett.,1,Where was Castle after Beckett hung the phone up?,131073,Castle,25.19-29.32,castle_s04e22_seg02_clip_11,Sitting on the edge of the desk. 9035,Paperwork.,A puppy.,Snacks.,A bottle of wine.,Money.,0,What was sitting on Esposito's desk when he was sitting down?,131074,Castle,4.1-23.67,castle_s03e14_seg02_clip_08,Paperwork. 9036,Nothing,Ice cream,Chinese food,Beer and wine,Pizza,4,"What is Joey, Ross, and Chandler eating when they're at Ross' apartment?",131075,Friends,30.39-35.36,friends_s01e18_seg02_clip_07,Pizza 9037,because she might catch a cold,because she is not a real amazon,because she rather be Jean Gray,because she is afraid it makes her look fat,because she really hates Halloween ,3,Why does Sheldon think Penny is upset when she answered her door,131076,The Big Bang Theory,25.43-38.45,s04e11_seg02_clip_09,because she is afraid it makes her look fat 9038,Saks fifth Ave,Macys,Bloomingdales,Nordstrom,Walmart,2,Where did Rachel get an assistant buyer job when talking with Phoebe?,131077,Friends,40.54-45.98,friends_s04e09_seg02_clip_12,Bloomingdales 9039,Beckett is showing him a video.,Beckett is showing him a hair sample.,Beckett is showing him a photo.,Beckett is showing him a fingernail.,Beckett is showing him blood.,1,What is Beckett showing to Castle when he says they have the killer's DNA?,131078,Castle,0-2.82,castle_s08e05_seg02_clip_23,Beckett is showing him a hair sample. 9040,lymphodema,Lupus,Harishimo's,Tumor,Legionnaire's,4,What did House say was helping the patient before the patient said that the medicine would put an end to that?,131079,House M.D.,34.14-44.93,house_s02e21_seg02_clip_14,Legionnaire's 9041,A seat cushion,A jacket,A stack of files,A legal pad,A briefcase,4,What was sitting on the chair before Ross sat at the table?,131080,Friends,34.18-39.06,friends_s10e06_seg02_clip_12,A briefcase 9042,Decorations the voice says.,A cake the voice says.,A gown the voice says.,A groom the voice says.,A cancellation the voice says.,4,What does the person on the answering machine say there was when she calls about a wedding?,131081,Friends,0-10.54,friends_s06e22_seg02_clip_10,A cancellation the voice says. 9043,Monsters ,FBI ,Police,CIA,Clowns,4,Who came out of the suv after it hit the car the Ryan and Esposito was in? ,131082,Castle,19.18-42.47,castle_s06e08_seg02_clip_13,Clowns 9044,Ross says they would talk all the time in the laundry room.,Ross says they would talk on the phone.,Ross says they would talk in the elevator.,Ross says they would talk at the coffee shop.,Ross never said they talked.,0,Where does Ross say he and Mrs. Verhoeven would talk after her daughter asks if they were close?,131083,Friends,26.08-35.99,friends_s08e07_seg02_clip_03,Ross says they would talk all the time in the laundry room. 9045,The temperature in the room ,A world map,A compass,His teeth in the mirror,His cell phone,2,What does Marshall check before he repositions Lily on the bed? ,131084,How I Met You Mother,17.41-20.31,met_s06e06_seg02_clip_14,A compass 9046,He combs his hair. ,He shakes his head to shake his hair. ,He puts his hair down. ,He runs his hand through his hair. ,He puts his hair up. ,3,What does Ryan do right before he is about to meet a celebrity or a pretty girl?,131085,Castle,26.66-32.35,castle_s05e11_seg02_clip_03,He runs his hand through his hair. 9047,Leslie tells him this is the awkward part,Cheryl tells him this is the awkward part,Aileen tells him this is the awkward part,Gail tells him this is the awkward part,Honey tells him this is the awkward part,0,Who tell Joey about the awkward part of his audition after he talks about his family,131086,Friends,21.12-32.78,friends_s07e19_seg02_clip_18,Leslie tells him this is the awkward part 9048,Rita gave her pizza,Rita gave her ice cream,Rita gave her a number to dial,Rita gave her a drink,Rita did not give her anything,2,What did Rita give Beckett if she needed her when talking to Beckett?,131087,Castle,75.38-84.03,castle_s08e02_seg02_clip_13,Rita gave her a number to dial 9049,Sebastian works for a company that sends doctors all over the world to treat people,Sebastian works for a company that makes cologne,Sebastian works for a pharmaceutical company,Sebastian works for a company that makes shoes,Sebastian works for a company that makes soft drinks,3,What kind of company does House say Sebastian works for when he mentions his backers?,131088,House M.D.,68.87-74.27,house_s02e04_seg02_clip_01,Sebastian works for a company that makes shoes 9050,put them into his pants pocket,put them into his coat pocket,folded arms,put them on the table,put them on his shoulders,2,"What did Leonard do with his hands after he said ""should we see what we got"" ?",131089,The Big Bang Theory,13.88-22.71,s05e02_seg02_clip_00,folded arms 9051,The floor,The couch,The stool,A bike,Her knees,2,What does Stephanie sit on after Rachel introduces her?,131090,Friends,7.68-14.41,friends_s02e06_seg02_clip_12,The stool 9052,Because Alexis missed being away from home.,Because Alexis' friend was home.,Because Alexis' friend had other plans.,Because Alexis wanted to be with Castle.,Because Alexis wasn't feeling well.,3,Why didn't Alexis stay with a friend when Castle told her to?,131091,Castle,81.3-83.57,castle_s07e20_seg02_clip_17,Because Alexis wanted to be with Castle. 9053,playing computer games,drawing on a dry erase board,working on his computer,writing on a a dry erase board,making tea,3,what is sheldon doing when penny and leonard are in the kitchen talking about the movie she is doing ,131092,The Big Bang Theory,0-5.49,s07e21_seg01_clip_00,writing on a a dry erase board 9054,Park assumes Chase is jealous of her because of her IQ.,Park assumes Chase is jealous of her because of her family.,Park assumes Chase is jealous of her because of her ability to play guitar.,Park assumes Chase is jealous of her because of her memorization skills.,Park assumes Chase is jealous of her because of her credentials.,1,Why does Park assume Chase is jealous of her when they are riding the elevator?,131093,House M.D.,18.41-34.97,house_s08e16_seg02_clip_26,Park assumes Chase is jealous of her because of her family. 9055,Lettuce,Cucumbers,Tomatoes ,Green peppers,Pickles,2,What is on the sandwiches when Chase is shaking salt on them?,131094,House M.D.,2.4-7.2,house_s03e06_seg02_clip_00,Tomatoes 9056,"Marshall describes it as smelling like lavander, shellshells and hope",Marshall describes the shampoo smelling like bubble gum,Marshall describes the shampoo as smelling like oatmeal cookies,Marshall escribes the scent as smelling like lemongrass and cucumbers,MArshall describes the scent to smell like rain on wet pavement,0,How does Marshall describe Lilly's shampoo scent after he finds it in the bathroom?,131095,How I Met You Mother,31.01-47.76,met_s02e01_seg02_clip_02,"Marshall describes it as smelling like lavander, shellshells and hope" 9057,A magnifying glass.,A microscope.,A bag of brown urine.,A cheap microscope.,Nothing.,1,What is Cameron looking into before she said Chase was correct?,131096,House M.D.,0-15.2,house_s02e17_seg02_clip_06,A microscope. 9058,Cell phone.,Laptop.,Office phone.,Remote control.,Karaoke machine.,1,What was Sheldon using when he was sitting at the table?,131097,The Big Bang Theory,51.88-54.63,s10e03_seg02_clip_12,Laptop. 9059,Hugged them.,Attacked them.,Insulted them.,Yelled at them.,Drank water.,0,What did Phoebe do after she thanked the women?,131098,Friends,35.12-52.22,friends_s04e22_seg02_clip_09,Hugged them. 9060,Howard opens it. ,Raj opens it. ,Leonard opens it. ,Sheldon opens it. ,Penny opens it. ,0,Who is able to pick the lock and open the door when Howard and Raj need to get inside a locked room?,131099,The Big Bang Theory,38.56-58.9,s06e08_seg02_clip_07,Howard opens it. 9061,A board game. ,A tennis ball. ,A crossword puzzle. ,A puzzle maze ball. ,Molding clay. ,3,What is Castle playing with when Beckett is talking to Principal Silva?,131100,Castle,0.91-6.83,castle_s07e04_seg02_clip_04,A puzzle maze ball. 9062,He wanted to pull a prank on her.,He liked her.,He wanted her to be his assistant.,He wanted her to sing for him.,He needed to borrow money from her.,1,"Why did Barney say ""Oh Honey"" when she was talking?",131101,How I Met You Mother,0-12.91,met_s06e15_seg02_clip_02,He liked her. 9063,Joey is wearing a nice watch.,Joey is wearing a hat.,Joey is wearing a large coat.,Joey is wearing glasses.,Joey is wearing a suit.,1,What is Joey wearing when he was flirting with the Duchess of York?,131102,Friends,0.92-13.49,friends_s04e23-24_seg02_clip_16,Joey is wearing a hat. 9064,Chase thought it was weird House knew the patient's blood pressure before evaluation,Chase thought it was weird House knew the patient's blood type before testing,Chase thought it was weird House knew the patient needed a transplants before testing,Chase thought it was weird House didn't want to be included in any diagnosis,Chase thought it was weird House wasn't available when the patient requested him,2,What did Chase think was weird when they were discussing the heart transplant,131103,House M.D.,53.51-63.68,house_s01e14_seg02_clip_20,Chase thought it was weird House knew the patient needed a transplants before testing 9065,Raj appears silly to Sheldon.,Raj appears drunk to Sheldon.,Raj appears angry to Sheldon.,Raj appears obnoxious to Sheldon.,Raj appears unhappy to Sheldon.,3,How does Raj appear to Sheldon after he tells Lalita there are more dentists than air traffic controllers?,131104,The Big Bang Theory,0-16.17,s01e08_seg02_clip_08,Raj appears obnoxious to Sheldon. 9066,straightening Howard's shirt collar,trying to grab a cup,giving a thumbs up,Giving a massage,trying to open a jar,3,What the robot arm doing when Howard was sitting down?,131105,The Big Bang Theory,0-4.32,s04e01_seg02_clip_06,Giving a massage 9067,Monica was cutting fruit,Monica was decorating a cake,Monica was getting ice,Monica was washing dishes,Monica was looking out the window,1,What was Monica doing when her mother's friend mentioned Dr. Burke,131106,Friends,7.5-20.41,friends_s02e16_seg02_clip_03,Monica was decorating a cake 9068,There is chicken in the soup. ,The soup is too salty. ,The soup is too hot. ,There are clams in the soup. ,The soup is cold. ,2,Why doesn't Barney want to eat the soup when Robin brings it to him?,131107,How I Met You Mother,23.26-39.39,met_s02e11_seg02_clip_09,The soup is too hot. 9069,Monica was wearing a wedding gown. ,Monica was wearing a white dress. ,Monica wasn't wearing anything. ,Monica was wearing a dress. ,Monica was wearing a jumper. ,0,What was Monica wearing when Monica and Chandler were kissing?,131108,Friends,0.82-82.02,friends_s08e01_seg01_clip_00,Monica was wearing a wedding gown. 9070,nervous,happy,angry,bored,tired,2,How did Penny and Bernadette feel when Raj insulted Amy?,131109,The Big Bang Theory,8.82-28.22,s06e11_seg02_clip_10,angry 9071,A magazine. ,A book. ,A blanket. ,A pillow. ,Headphones. ,0,What is on Rachel's lap when she is sitting on a plane with a man?,131110,Friends,5.89-7.75,friends_s04e23-24_seg02_clip_35,A magazine. 9072,Gave her a kiss,Answered the phone,Stood up,Drank some wine,Opened a window,2,What did Chandler do before Monica asked if he was ok?,131111,Friends,0-6.51,friends_s05e15_seg02_clip_07,Stood up 9073,Rhode Island.,New York.,New Jersey.,Texas.,Michigan.,2,What place does Castle say Hans is 'starting to show' when they are talking with him.,131112,Castle,4.82-15.33,castle_s03e07_seg02_clip_12,New Jersey. 9074,Phoebe is talking about Herman,Phoebe is talking about Sherman,Phoebe is talking about Ameer,Phoebe is talking about Jamie,Phoebe is talking about Vikram,4,Who is Phoebe talking about when she said Ross made him up,131113,Friends,0-5.49,friends_s09e04_seg02_clip_18,Phoebe is talking about Vikram 9075,Back with the other toys.,In his lap.,On the Principal's desk.,On the shelf.,He started tossing it in the air.,2,Where did Castle put the puzzle ball after he solved it?,131114,Castle,28.67-32.31,castle_s07e04_seg02_clip_04,On the Principal's desk. 9076,He ignored Leonard.,He laughed at the comment.,He walked out of the room.,"He said, ""There's no switch. Just listen and learn.""",He cried and ran away.,3,What does Sheldon say after Leanord asked someone to turn off the Sheldon commentary track?,131115,The Big Bang Theory,0-10.38,s04e08_seg01_clip_01,"He said, ""There's no switch. Just listen and learn.""" 9077,1 and a half hours.,2 hours.,Half an hour.,3 hours.,1 hour.,4,How far did Ross say Newark was when he told Phoebe they weren't going to make it?,131116,Friends,8.54-12.51,friends_s10e17-18_seg02_clip_33,1 hour. 9078,House is spying on him,House is talking about Foreman behind his back,House is calling people names,House is spreading rumors,House is eating with his mouth full,0,Why does Wilson indirectly call House rude when the two of them are talking?,131117,House M.D.,73.5-78.78,house_s01e10_seg02_clip_11,House is spying on him 9079,To say thank you for being a great room mate.,Because he knows Chandler loves it.,Because Joey hates it.,Because he know Monica would want it.,Because he knows it belongs to Chandler.,0,"Why did Joey say he wanted to give Chandler the big, white dog before Chandler moves out?",131118,Friends,14.02-18.16,friends_s06e06_seg02_clip_17,To say thank you for being a great room mate. 9080,chase,cameron,wilson,foreman,no one,2,Who else is in houses office after he tells cuddy the patients neurological sysmptom was her height?,131119,House M.D.,0-5.84,house_s03e10_seg02_clip_21,wilson 9081,Floor,Box,Piano,Coffee Table,Foosball table,4,What were Ross and Phoebe eating off of when Rachel came in? ,131120,Friends,29.4-35.4,friends_s04e13_seg02_clip_11,Foosball table 9082,Rachel was talking to her aunt.,Rachel was talking to her mom.,Rachel was talking to her nurse.,Rachel was talking to Rome.,Rachel was talking to her grandfather.,3,Why did Rachel want Monica to make the call quick after handing over the phone?,131121,Friends,9.8-17.09,friends_s01e08_seg02_clip_02,Rachel was talking to Rome. 9083,Foreman tells House to find new interns,Foreman tells House to hire who he wants and to get it over with,Foreman tells House to let all of the doctors go,Foreman tells House to give them more time,Foreman doesn't say anything,1,What does Foreman tell House to do after his doctors are not helping at all?,131122,House M.D.,27.27-33.85,house_s04e09_seg02_clip_18,Foreman tells House to hire who he wants and to get it over with 9084,She cannot open her eyes so she is imagining.,Jesus is standing in the room.,She thinks Chase looks like Jesus.,Her body is burning from the inside and she is having a seizure. ,She doesn't think Jesus is in the room,3,Why does Sister Augustine think Jesus is coming after she leaves the scan?,131123,House M.D.,58.3-91.21,house_s01e05_seg02_clip_05,Her body is burning from the inside and she is having a seizure. 9085,He listens to Sheldon's story. ,He waits for her to answer. ,He tells Sheldon a story. ,He turns around and takes off. ,He tells Carrie a story. ,3,What does James do after he rings the door bell?,131124,The Big Bang Theory,8.96-16.25,s07e14_seg02_clip_16,He turns around and takes off. 9086,He pushes the camera down. ,He punches Joey. ,He hugs Joey. ,He pushes Joey into the water. ,He rolls his eyes. ,0,What does Chandler do when Joey tries to film him?,131125,Friends,81.34-87.22,friends_s04e23-24_seg02_clip_04,He pushes the camera down. 9087,He was wearing a white suit.,He was wearing a green suit.,He was wearing a blue suit.,He was wearing a pink suit.,He was wearing a orange suit.,2,what color suit was Ben wearing when he was at Marshall's wedding ceremony?,131126,How I Met You Mother,0-29.91,met_s02e21_seg02_clip_11,He was wearing a blue suit. 9088,Ted is at the bathroom.,Ted is at the store.,Ted is at the mall.,Ted is at the bar.,Ted is at the bedroom.,3,Where is Ted when he is talking about Chumbawumba?,131127,How I Met You Mother,8.03-12.36,met_s03e04_seg02_clip_15,Ted is at the bar. 9089,Ready for some action Wilson?,"Cuddy, do you want to see something gross?",Want to have dinner?,We good to go?,Let's go make a patient bleed...,3,What question did House ask before Cuddy gave House a disapproving look and stormed off?,131128,House M.D.,21.61-31.06,house_s04e03_seg02_clip_17,We good to go? 9090,Sheldon grabbed the door knob,Sheldon grabbed his laundry basket,Sheldon grabbed the soap ,Sheldon was not in the laundry room,Sheldon grabbed a towel to cover his eyes,1,What did Sheldon grab before he left the laundry room?,131129,The Big Bang Theory,3.93-8.42,s10e10_seg02_clip_10,Sheldon grabbed his laundry basket 9091,That the two were firefighters,That the two were chuckleheads.,That the two were policemen,That the two were clergy members,That the two were clerical workers,1,What did the landlord deduce when talking to the detectives?,131130,Castle,0-7.2,castle_s04e12_seg02_clip_05,That the two were chuckleheads. 9092,Chase reminded House that the patient is only a 2 day old newborn.,Chase told House that the patient is 71 years old.,Chase said the patient is only an 13 year old adolescent kid.,Chase informed House their patient is 38 years old.,Chase told House that the patient is 16 years old.,1,"What did did Chase say that the patient's age, (Powell) is before House reminded him they were in the hospital?",131131,House M.D.,5.58-6.51,house_s03e03_seg02_clip_01,Chase told House that the patient is 71 years old. 9093,A whiteboard.,A desk.,A plant.,A picture.,A computer. ,0,What is behind Ray after he sits down?,131132,Friends,43.26-46.69,friends_s08e20_seg02_clip_14,A whiteboard. 9094,Bikini.,Shorts.,T-shirt.,A party dress.,Coat.,3,What dress Amy when talking to Sheldon,131133,The Big Bang Theory,4.48-64.02,s08e08_seg02_clip_16,A party dress. 9095,10 grand.,15 grand.,25 grand.,30 grand.,20 grand.,4,How much did Beckett say the coats were worth when they were at Pam's apartment?,131134,Castle,11.77-14.93,castle_s06e09_seg02_clip_03,20 grand. 9096,They are in a shelter. ,They are at a restaurant. ,They are in a pet store. ,They are at the comic book store. ,They are in Sheldon's apartment. ,2,Where are Amy and Sheldon when they are together?,131135,The Big Bang Theory,0-9.69,s08e17_seg02_clip_01,They are in a pet store. 9097,He is followed by Cuddy. ,He is attacked by a disgruntled patient. ,"He is followed by Chase, Cameron, and Foreman. ",He is followed by Wilson. ,He is followed by Cuddy and Wilson. ,2,What happens after House steps off of the elevator?,131136,House M.D.,61.08-69.1,house_s02e11_seg02_clip_13,"He is followed by Chase, Cameron, and Foreman. " 9098,She was reading,She was walking,She was eating,She was running,She was sitting,4,What was Thirteen doing when she told House she was going to Thailand,131137,House M.D.,0-12.99,house_s06e04_seg02_clip_04,She was sitting 9099,The newspaper. ,A piece of paper. ,A laptop. ,A lasagna. ,A placemat. ,2,What is on the table in front of Chandler when he is sitting at the table?,131138,Friends,10.5-12.91,friends_s09e03_seg02_clip_10,A laptop. 9100,Candy. ,Flowers.,A paper for an autograph. ,A letter. ,He did not bring her anything. ,1,[What/...] did Jasper bring Dr. Cameron [/after] Jasper's sister was admitted into the hospital?,131139,House M.D.,80.06-85.28,house_s03e19_seg02_clip_05,Flowers. 9101,Sight seeing,Strippers,Hookers,Petty cash,Hooters,3,What does House refer to when he says Hookers?,131140,House M.D.,56.53-64.54,house_s08e06_seg02_clip_08,Petty cash 9102,George closes the door behind him,George calls for a friend,George takes out a clipboard,George starts dancing,George throws his clipboard down,0,What does George do after he enters the room where Sophie is?,131141,Grey's Anatomy,33.38-42.29,grey_s02e14_seg02_clip_19,George closes the door behind him 9103,Cramped seats,Long stories,Children,Peace and quiet,Guns,1,What does Castle say he loves when he is on the plane?,131142,Castle,0-4.5,castle_s07e21_seg02_clip_08,Long stories 9104,blue,green ,red,yellow,purple,2,what color is parks shirt when house and her were talking,131143,House M.D.,10.47-17.3,house_s08e02_seg02_clip_15,red 9105,They are visiting Cameron's parent's home,They are visiting a foster parent facility,They are visiting an animal sanctuary ,They are visiting a group home,They are at the Kutner's parents home,4,Where are the visiting when Foreman mentions being handed off to a new family,131144,House M.D.,0-12.06,house_s05e20_seg02_clip_07,They are at the Kutner's parents home 9106,He wants to stay up all night and watch movies. ,He wants to annoy her. ,He wants to scare her away. ,He wants to show her how much he loves her. ,He wants to know more about her. ,4,Why won't Ted let Stella go to sleep when they are at the apartment?,131145,How I Met You Mother,45.99-60.52,met_s04e01_seg02_clip_05,He wants to know more about her. 9107,Who was killed? ,where is the leak?,Who is selling information? ,Who is the traitor? ,She's from the State Department? ,4,What did Castle ask after Rita spoke to Vasiliy ,131146,Castle,65.99-91.03,castle_s08e11_seg02_clip_20,She's from the State Department? 9108,At home,Down the block,At the station,In another country,At the location of the event,1,Where does Detective Javier Esposito say he was when the event happened?,131147,Castle,0-3.26,castle_s03e13_seg02_clip_03,Down the block 9109,he punches Barney in the face,he slaps Barney's hand,he pushes Barney so that Barney falls backwards,he doesn't do anything,he kisses Barney's hand,1,What did Marshall do when Barney tries to touch his computer after he tells him to get away from it?,131148,How I Met You Mother,51.33-56.08,met_s03e08_seg02_clip_01,he slaps Barney's hand 9110,Ross throws a punch at Joey. ,Ross gets upset. ,Ross is deeply skeptical. ,Ross laughs in disdain. ,Ross displays reserved optimism and relief. ,4,How does Ross react when Joey extends an olive branch to him regarding their friendship?,131149,Friends,24.1-52.83,friends_s08e16_seg02_clip_06,Ross displays reserved optimism and relief. 9111,A new video game.,A beautiful woman.,A drone.,A vintage comic book.,A new iPhone.,2,What are Raj and Howard admiring before they start eating?,131150,The Big Bang Theory,2.15-57.2,s08e22_seg01_clip_00,A drone. 9112,He is wearing a bag of groceries,He is wearing a guitar,He is wearing a tennis racket,He is wearing a pile of books,He is wearing a teddy bear,4,What is Joey wearing strapped to his chest when Chandler is on the phone?,131151,Friends,26.43-31.19,friends_s02e06_seg02_clip_11,He is wearing a teddy bear 9113,Stuart invites Raj into the house. ,Stuart tells Raj to go away. ,Stuart tells Raj that they can both be Howard and Bernadette's extra wheels. ,Stuart asks Raj to help him build the baby swing. ,Stuart asks Raj to help him fix the crib. ,3,What does Stuart suggest to Raj they do after he has told Raj that he already built the crib? ,131152,The Big Bang Theory,44.89-56.11,s10e10_seg02_clip_10,Stuart asks Raj to help him build the baby swing. 9114,air lock,safety deposit box,in the cup,in the patient's hand,on the beside table,0,Where did House put the antibiotics after telling the patient to stop asking questions based on the premise that House is wrong?,131153,House M.D.,50.77-64.69,house_s02e21_seg02_clip_14,air lock 9115,Wilson,Cuddy,House,Chase,Cameron,2,Who is Foreman talking to when he tells them he did the biopsy?,131154,House M.D.,0-3.8,house_s02e17_seg02_clip_06,House 9116,Raj lays on the couch.,Raj begins to cough.,Raj laughs at Penny.,Raj reads a book.,Raj orders a pizza.,1,What does Raj do after he walks through the smoke?,131155,The Big Bang Theory,7.2-12,s07e03_seg02_clip_01,Raj begins to cough. 9117,Chandler.,Joey.,Phoebe,Monica.,Ross.,0,Who did Rachel pick to punch after Joey asked her?,131156,Friends,39.75-45.84,friends_s08e12_seg02_clip_10,Chandler. 9118,Because he believes Sheldon brought it on himself.,Because he's mad at her.,Because he has a headache.,Because he just finds it annoying.,Because he needs absolute silence.,0,"Why did Leonard tell Penny not to ""Aw"" after Sheldon leaves?",131157,The Big Bang Theory,27.61-31.21,s05e15_seg02_clip_13,Because he believes Sheldon brought it on himself. 9119,Playing with a pencil,Wringing her hands,Crossed in front of body,Holding a cup of coffee,Writing notes,2,What is Rachel doing with her hands when she is talking with Ross?,131158,Friends,8.51-16.39,friends_s05e05_seg02_clip_17,Crossed in front of body 9120,Amy sang a song.,Amy called Raj on the phone.,Amy called Sheldon on the phone.,Amy ordered pizza.,Amy turned to look at Penny.,4,What did Amy do after Bernadette said she texted her Penny was dating an astronaut?,131159,The Big Bang Theory,25.69-30.83,s04e22_seg02_clip_12,Amy turned to look at Penny. 9121,impress Barney's friends,fix the bike,work on stress,get on the spinoff,fix the tire,3,What was Barney trying to do when he was practicing with the bike?,131160,How I Met You Mother,28.94-45.78,met_s02e20_seg02_clip_07,get on the spinoff 9122,The medical crew gives Beckett the used bullet.,Esposito gives Beckett the used bullet.,Castle gives Beckett the used bullet.,"No one gives Beckett the used bullet, she grabs it from the ground herself.",Lanie gives Beckett the used bullet.,4,Who gives Beckett the bullet used at the crime scene after Beckett approaches the dead body?,131161,Castle,18-24.76,castle_s04e09_seg02_clip_03,Lanie gives Beckett the used bullet. 9123,For House's cereal,For House's jelly toast,For House's coffee,For House's spaghetti,For House's crab,1,Why does Wilson want House to use a napkin when House is sitting on the table?,131162,House M.D.,12.41-22.06,house_s06e15_seg02_clip_00,For House's jelly toast 9124,He grabs napkins from the counter.,He is pouring juice into a cup.,He is pouring water into a cup.,He grabs paper plates from the cabinet.,He is opening the refrigerator.,4,What is Sheldon doing when Howard says thanks for buying us dinner?,131163,The Big Bang Theory,21.31-27.22,s02e19_seg02_clip_11,He is opening the refrigerator. 9125,A stack of medical books.,A red cooler.,A duffel bag.,A medical practice dummy.,A medical machine with lights.,1,What is on top of the lockers behind Sydney when talking to Izzie? ,131164,Grey's Anatomy,7.14-16.95,grey_s03e07_seg02_clip_25,A red cooler. 9126,If I don't answer he will go away.,Do not make a sound.,shhhh,what do you want Sheldon?,who is it?,1,What did Leonard say after Sheldon knock on the door calling him?,131165,The Big Bang Theory,0-50.19,s03e01_seg02_clip_02,Do not make a sound. 9127,She asks he can anchor the boat.,She asks if he can catch some fish.,She asks if he is understanding why boating knowledge is important.,She asks if he needs her panties.,She asks if he can bait a fish.,2,What does Rachel ask Joey after he incorrectly answers her questions?,131166,Friends,36.92-47.6,friends_s07e03_seg02_clip_05,She asks if he is understanding why boating knowledge is important. 9128,Penny.,Leonard.,Sheldon.,Wil Wheaton.,Adam Nimoy.,1,Who takes credit for the term Spockumentary after Sheldon tells Amy that's what he calls a documentary on Spock?,131167,The Big Bang Theory,31.51-34.03,s09e07_seg02_clip_01,Leonard. 9129,Ray is holding can of Coke-cola,Ray is holding a bottle of water,Ray is holding bottle of Orange Juice,Ray is holding a calendar,Ray is holding a notebook,1,What is Raj holding in his hand when they are trying to get Penny to understand what day is Star Wars day,131168,The Big Bang Theory,26.25-36.95,s07e22_seg01_clip_00,Ray is holding a bottle of water 9130,Orange,Green,Yellow,Purple,White,4,"What color is the shirt that Ryan is wearing when he say's ""Check the passenger rear side.""?",131169,Castle,71.3-81.02,castle_s07e01_seg02_clip_01,White 9131,Ryan was in the room with Gates,Castle was in the room with Gates,Montgomery was in the room with Gates,Beckett was in the room with Gates,Esposito was in the room with Gates,3,Who is in the interrogation room when Gates in sitting looking at the evidence?,131170,Castle,0-7.31,castle_s03e06_seg02_clip_14,Beckett was in the room with Gates 9132,A purple bathrobe,A white bathrobe,Blue bathrobe,Only boxers,A tuxedo,1,What is Marshall wearing when he greets Ted at the door?,131171,How I Met You Mother,28.21-32.41,met_s05e05_seg02_clip_08,A white bathrobe 9133,Raj told him he isn't crazy. ,Sheldon't mother told him so. ,Leonard told Sheldon years ago he isn't crazy. ,Sheldon's mother had him tested. ,Ray told him he is crazy but Sheldon never believed him. ,3,How does Sheldon know he's not crazy when he says he isn't?,131172,The Big Bang Theory,18.1-19.1,s03e13_seg02_clip_01,Sheldon's mother had him tested. 9134,She put it in a bag.,She threw it in the garbage.,She put it on and listened to her heart.,She started crying.,She put it back in the locker.,2,What did the woman do when she pulled the stethoscope out of the locker?,131173,Grey's Anatomy,54.34-64.3,grey_s03e05_seg02_clip_03,She put it on and listened to her heart. 9135,Castle shot Tommy,Castle hit Tommy,Castle shot Beckett,Castle shook his head,Castle kissed Tommy,3,What did Castle do after Tommy talked about the last time he saw Sam?,131174,Castle,8.68-14.17,castle_s04e08_seg02_clip_25,Castle shook his head 9136,Scott calls his books treadmill fiction,Scott grabs Alexis and feels her up,Scott marches toward Castle,Scott insults the intelligence of the class,Scott starts throwing up from all that drinking he did,0,What causes Castle to lose his cool when he's arguing with Scott?,131175,Castle,15.06-27.38,castle_s08e03_seg02_clip_09,Scott calls his books treadmill fiction 9137,Rachel's neck,The heater,A chair, The back of a stone turtle,The living room table,4,What did Monica have her foot on when she was tussling with Rachel over the candlestick holders?,131176,Friends,45.29-49.94,friends_s06e04_seg02_clip_10,The living room table 9138,Pencils.,A coffee mug.,A book.,A folder.,A rubix cube.,4,What object is not displayed when Sheldon sits at his desk?,131177,The Big Bang Theory,43.49-49.41,s06e14_seg02_clip_10,A rubix cube. 9139,House and wilson were talking at a patients apartment,House and wilson were in a restaurant,House and wilson were having a conversation outside,House and wilson were just staring at each other and not talking,House was talking to himself,1,Where were house and wilson when they were having a conversation,131178,House M.D.,0-35.95,house_s08e08_seg02_clip_08,House and wilson were in a restaurant 9140,Turn them into sea creatures,Turn them into money,Turn them into woodland creatures,Turn them into balls,Turn them into mystical creatures ,2,What did ross say he can do with phallic cakes when he is talking to rachel in the car?,131179,Friends,0-4.96,friends_s10e04_seg02_clip_18,Turn them into woodland creatures 9141,Crandall says Leona is his sister.,Crandall says Leona is his niece.,Crandall says Leona is his daughter.,Crandall says Leona is his step-mom.,Crandall says Leona is his sister-in-law,2,Who does Crandall say Leona is after he talks about her losing her mom?,131180,House M.D.,16.68-42.82,house_s02e23_seg02_clip_02,Crandall says Leona is his daughter. 9142,To ask his dad for advice on pregnant ladies.,To get out of the car.,They were at their destination.,So he could vomit.,He wanted to Use the bathroom.,0,?Why did Raj tell Bernadette to pull over when she was driving.,131181,The Big Bang Theory,25.87-40.04,s10e03_seg02_clip_15,To ask his dad for advice on pregnant ladies. 9143,The patient asks for Dr. House,The patient asks for Dr. Cameron,The patient asks for Dr. Cuddy,The patient asks for Dr. Volakis,The patient asks for Dr. Wilson,3,Who does the patient ask for when another doctor is preforming an ultrasound?,131182,House M.D.,0-4.53,house_s04e05_seg02_clip_08,The patient asks for Dr. Volakis 9144,A scarf.,A champagne glass.,A purse.,A jacket.,A pen.,2,What was Lily holding when she said she lied? ,131183,How I Met You Mother,40.5-46.91,met_s04e01_seg02_clip_09,A purse. 9145,starts giving her meds,makes a phone call,calls for a nurse,he leaves the room to see house,starts to freak out,3,what does chase do when his girlfriend starts to have trouble talking,131184,House M.D.,66.62-75.62,house_s08e12_seg02_clip_21,he leaves the room to see house 9146,"""EVIDENCE NEEDED""","""CAUSE OF DEATH""","""AUTOPSY PROCEDURE""","""PROOF OF MURDER""","""DEAD MAN DRYING""",4,What does the man in the red shirt write on top of the white board when he is talking to the doctors?,131185,House M.D.,0-19.81,house_s02e01_seg02_clip_21,"""DEAD MAN DRYING""" 9147,kidnapping,theft,rape,accident,murder,4,What crime did Beckett call Castle about before he left his house?,131186,Castle,0-70.62,castle_s03e18_seg02_clip_00,murder 9148,Amy says candy corn keeps Sheldon quiet,Amy says licorice keeps Sheldon quiet,Amy says taffy keeps Sheldon quiet,Amy says caramel keeps Sheldon quiet,Amy says Bazooka gum keeps Sheldon quiet,2,What does Amy says keeps Sheldon quiet when they are talking,131187,The Big Bang Theory,0-6.1,s10e09_seg02_clip_01,Amy says taffy keeps Sheldon quiet 9149,a hearing aid,a coat,her watch,her glasses,perfume,3,what does gates put on before reading the note that she received from castle?,131188,Castle,3.58-13.41,castle_s05e14_seg02_clip_26,her glasses 9150,Brian the Brain.,Sneezy.,Punchy,his high school football coach.,his high school girlfriend.,2,Who does Ted call when he wants to prove to everyone that you can still be good friends with your high school friends?,131189,How I Met You Mother,23.62-32.48,met_s06e09_seg02_clip_04,Punchy 9151,His personal trainer,His secretary,His personal chef,His best commodities trader,His partner,3,Who did Mr. Berman say Peter Cordero was in when talking to the detectives?,131190,Castle,74.72-79.22,castle_s06e19_seg02_clip_03,His best commodities trader 9152,Through the victim's left ear.,"Top of the chest, right side.","Top of thigh, right side.","Top of head, right side.","Top of chest, on the left side.",4,Where does Lanie say the victim's exit wound is located when she points to the victim?,131191,Castle,6.66-13.88,castle_s08e12_seg02_clip_01,"Top of chest, on the left side." 9153,her ear was clogged up,the volume,the phone was messed up,her hair,he wasn't talking loud enough,3,What was causing Monica to have difficulty hearing Mike when they were talking on the phone?,131192,Friends,27.45-36.42,friends_s09e23-24_seg02_clip_15,her hair 9154,zombie,vampire,cats,dog,mice ,0,What was the one word that Castle had to tell his mother when she was asking about his last case. ,131193,Castle,8.04-19.7,castle_s04e22_seg02_clip_07,zombie 9155,Janice told Chandler his zipper was down.,To get another chair. ,To pay the bill.,To go to the bathroom.,To find Joey. ,0,Why did Chandler walk away from the table after speaking to Janice?,131194,Friends,34.22-57.63,friends_s01e14_seg02_clip_06,Janice told Chandler his zipper was down. 9156,Navy,Black,Maroon,Gold,White,1,What color does Tabu mention when discussing the clothing for the event he is planning to attend?,131195,House M.D.,60.5-66.5,house_s05e24_seg02_clip_00,Black 9157,She started crying,She was really exited and happy and huged Phoebe.,She was shocked and confused,She was really sad,She was nervous. ,1,What was Alice's reaction after Phoebe agreed to carry their baby?,131196,Friends,45.14-61.15,friends_s04e11_seg02_clip_19,She was really exited and happy and huged Phoebe. 9158,A bracelet.,A necklace.,A teddy bear.,A sweater.,A tiara.,4,What did Amy pull out of the bag after she called Sheldon self-centered?,131197,The Big Bang Theory,12.95-18.38,s05e12_seg02_clip_15,A tiara. 9159,A laptop,A pen,A tablet,A phone,A pencil,4,What was Leonard holding in his hand when he was talking to Penny about meeting Jimmy Speckerman?,131198,The Big Bang Theory,51.38-56.42,s05e11_seg01_clip_00,A pencil 9160,He stood up.,He shook his finger.,He checked his watch.,He grabbed a cup.,He scratched his head.,1,What did Sheldon do after Amy pointed at him?,131199,The Big Bang Theory,21.75-25.85,s06e12_seg02_clip_03,He shook his finger. 9161,Blood tests.,Post exposure prophylaxis.,Skin tests.,Six HIV tests.,Cell tests.,1,What did the doctor reccommend when he was talking to Cameron?,131200,House M.D.,48.09-90.74,house_s02e07_seg02_clip_06,Post exposure prophylaxis. 9162,She punches him. ,She falls asleep. ,She grabs her coat. ,She fixes her hair. ,She fixes her necklace. ,2,What does Phoebe do after the man climbs off of her?,131201,Friends,52.32-59.53,friends_s08e07_seg02_clip_12,She grabs her coat. 9163,Briefcase.,Bottle.,Baby.,Cup.,Suitcase.,3,What holds Leonard when talking to Sheldon?,131202,The Big Bang Theory,7.44-62.02,s10e13_seg02_clip_08,Cup. 9164,a tray,An hammer,A knife,A cup,A bottle,3,What did House pick up when Foreman talked about the drugs not working,131203,House M.D.,81.02-86.42,house_s08e15_seg02_clip_22,A cup 9165,The Dean's waiting room.,Howard's Office,Leonard's Office,The Cafeteria.,Sheldon's apartment. ,3,Where is Sheldon and Howard when Howard tells Sheldon that none of this would've happened if he hadn't tried to help him?,131204,The Big Bang Theory,6.67-12.77,s07e05_seg02_clip_06,The Cafeteria. 9166,Yellow,White,Pink,Purple ,Blue,0,What color shirt was Penny wearing when she was talking to Sheldon?,131205,The Big Bang Theory,0-3.1,s04e14_seg02_clip_03,Yellow 9167,Castle's room ,Castle's office,Behind Castle,Beside Castle,Castle's car,2,Where did Harley went to stand when she wanted to see what was on Castle's laptop screen?,131206,Castle,4.84-27.73,castle_s08e18_seg02_clip_12,Behind Castle 9168,I can't believe you did this.,You're a coward.,She's dead because of you.,You have a real problem.,You could have saved her.,2,What did Dean say after he pushed his father? ,131207,Castle,80.56-91.03,castle_s06e18_seg02_clip_24,She's dead because of you. 9169,Jessup asked them to lend them him some money,Jessup asked them to let him loose,Jessup asked them to unlock his cuffs,Jessup didn't ask them anything,Jessup asked them to tighten his cuffs,2,What did Jessup ask Beckett and Castle to do when he was holding up his hands?,131208,Castle,54.07-63.47,castle_s02e09_seg02_clip_06,Jessup asked them to unlock his cuffs 9170,Twirling her pen,Chewing on her pen,Writing down ideas,Texting on her phone,sitting with her hands in her lap ,0,What is Thirteen doing before House says that they need ideas and he doesn't care where they come from?,131209,House M.D.,19.28-28.68,house_s04e09_seg02_clip_18,Twirling her pen 9171,They are not wearing helmets.,A bumper sticker.,A kick me sign.,There is nothing on their helmets.,A light is strapped to their helmets.,4,What is connected to Sheldon and Raj's helmets when they are in the tunnel?,131210,The Big Bang Theory,50.84-58.77,s08e06_seg02_clip_16,A light is strapped to their helmets. 9172,the right way,fast,slow,Sheldon would decide later.,Sheldon gave up.,0,What way did Sheldon want to pick the present out when he argued with Penny?,131211,The Big Bang Theory,25.28-43.94,s01e16_seg02_clip_08,the right way 9173,A pen,A letter,A tape recorder,A cell phone,A cup of water,4,What is sitting on the table in front of Mrs. Parker when Castle and Beckett are interviewing her?,131212,Castle,47.67-53.57,castle_s02e10_seg02_clip_05,A cup of water 9174,He pick up a bag,He sat next to foreman,He put the file in his hand on a desk,He clap his hand,He pick up a maker,2,What did House do when he walk through the door?,131213,House M.D.,70.68-79.34,house_s07e06_seg02_clip_00,He put the file in his hand on a desk 9175,The car was going to fast.,He was lost.,Phoebe was dozing off.,Phoebe was eating while driving.,Phoebe didn't know where she was going.,0,Why was Ross scared when he was in the taxi cab with Phoebe?,131214,Friends,3.36-8.54,friends_s10e17-18_seg02_clip_33,The car was going to fast. 9176,Penny was leaving after she and Raj spoke. ,Raj got up to leave after he and Penny finished speaking. ,"It was Sheldon, who came out of the back room and exited the apartment. ","No one made a sign of leaving, Penny and Raj embraced. ",Howard got up to leave the room. ,1,Who got up to leave after Penny and Raj finished their discussion? ,131215,The Big Bang Theory,58.3-63.02,s05e01_seg02_clip_11,Raj got up to leave after he and Penny finished speaking. 9177,She opened her purse. ,She kissed Barney.,She started to dance.,She signaled to the waiter. ,She kissed him on the mouth.,4,What did the girl sitting next to Ted do after telling him she was married?,131216,How I Met You Mother,30.16-33.41,met_s03e12_seg02_clip_08,She kissed him on the mouth. 9178,Behind his desk,In front of a lobby desk,In front of a vending machine,On the side of a operating table,The side of a pool table ,2,Where was House pacing back and forth when he was ranting about Cuddy?,131217,House M.D.,6.24-12,house_s05e10_seg02_clip_14,In front of a vending machine 9179,Meredith is talking to Addison,Meredith is talking to Chief Webber,Meredith is talking to Derek,Meredith is talking to Cristina,Meredith is talking to Dr. Burke,2,Who is Meredith talking to in the scrub room when she is telling him some personal information,131218,Grey's Anatomy,0-8.51,grey_s02e20_seg02_clip_23,Meredith is talking to Derek 9180,A red chair,A green chair.,A white chair,A black chair.,A yellow chair.,4,What was on the roof behind Joey and Ross when they got locked out?,131219,Friends,36.5-40.76,friends_s07e12_seg02_clip_01,A yellow chair. 9181,The victim's brother. ,The victim's sister. ,The victim's mother. ,The victim's father. ,The victim's cousin. ,1,Who is Beckett questioning when she is working a case?,131220,Castle,12.32-15.06,castle_s04e17_seg02_clip_03,The victim's sister. 9182,Sloan is standing next to the monitor,Sloan is standing at the foot of the patient's bed,Sloan is standing on the other side of the patient's bed,Sloan is standing behind the sitting chair,Sloan is next to the food tray,1,Where is Sloan standing when Derek is talking to the patient with the bandaged face,131221,Grey's Anatomy,77.99-87.14,grey_s03e04_seg02_clip_12,Sloan is standing at the foot of the patient's bed 9183,On a side table between two chairs.,In her purse on a chair.,On a night stand next to the bed.,On the bed.,On the dresser.,0,Where was Beckett's cell phone when she went to answer it? ,131222,Castle,70.77-78.93,castle_s06e23_seg02_clip_26,On a side table between two chairs. 9184,Taub was the first one to enter,Adams was the first one to enter,Park was the first one to enter,Chase was the first one to enter,Foreman was the first one to enter,0,Who was the first one to enter House office when House is reading a magazine?,131223,House M.D.,18.7-24.48,house_s08e21_seg02_clip_02,Taub was the first one to enter 9185,The hotel manager.,Penny.,Bernadette.,Room service.,Her mom. ,2,Who was Amy on the phone with when she was in the hotel room?,131224,The Big Bang Theory,0-12.2,s07e01_seg02_clip_02,Bernadette. 9186,Because Brian is rich.,Because Brian is a good guy.,Because Brian is a minor.,Because Brian is a celebrity.,Because Montgomery said they don't have evidence.,4,What said Montgomery when Miss DiNovi asked why Brian is not arrested?,131225,Castle,61.89-77.7,castle_s03e21_seg02_clip_19,Because Montgomery said they don't have evidence. 9187,They have to dance.,They have to sing a song.,They have to come up with something fun to do.,They have to go get more beer.,They have to cook dinner.,2,What does Phoebe say someone has to do after she points to them?,131226,Friends,14.22-20.89,friends_s03e25_seg02_clip_07,They have to come up with something fun to do. 9188,The doctors have a badge on their chest with red numbers on them.,"There are no numbers, their last names are written on a badge on their chest.",The doctors have a badge on their chest with roman numerals on them,The doctors have a badge on their chest with the numbers on them,The doctors have folders with numbers on them,3,How are the numbers displayed when the doctors are walking the hallway with House,131227,House M.D.,70.92-80.5,house_s04e02_seg02_clip_09,The doctors have a badge on their chest with the numbers on them 9189,He was reading a comic book.,He was clipping his toe nails.,He was sleeping.,He was also playing a video game.,He was eating.,0,What did the man in the white t-shirt and jeans do when Raj and Howard were playing a video game?,131228,The Big Bang Theory,46.62-50.23,s08e23_seg02_clip_05,He was reading a comic book. 9190,He passed out,He tapped his cane on the desk,He hugged Cuddy,He got some files off of the desk,He almost fell down,4,What did House do after he started to walk away?,131229,House M.D.,48.89-57.36,house_s03e02_seg02_clip_12,He almost fell down 9191,blue,red,white,black,green,3,"What color is Beckett's shirt when she say's ""come on...""?",131230,Castle,80.12-90.02,castle_s07e22_seg02_clip_15,black 9192,Jane said she was sick.,Jane said that was gross.,Jane said no way!,Jane said she was going to throw up.,Jane said milk? Ew!,4,How did Jane react when House sprayed breast milk in her mouth?,131231,House M.D.,118.59-124.79,house_s04e10_seg02_clip_24,Jane said milk? Ew! 9193,Derek said that he has a surgery.,Derek said that he was hungry.,Derek said that he was going to pee.,Derek said that he needed to catch a game.,Derek said that he was going out.,0,What did Derek say when Meredith tried to talk to him?,131232,Grey's Anatomy,49.35-51.77,grey_s03e25_seg02_clip_05,Derek said that he has a surgery. 9194,grey,white,blue,green,red,1,"What color is the shirt Ryan is wearing when he say's ""At least...""?",131233,Castle,19.64-29.16,castle_s06e17_seg02_clip_17,white 9195,A dog.,Shaving cream.,A beer.,A box.,A fan.,3,What did Ryan pick up after he said something about the bar?,131234,Castle,41.26-51.01,castle_s05e02_seg02_clip_26,A box. 9196,Howard grabbed two big bottles.,Howard drank water.,Howard stood up.,Howard eat pizza.,Howard left.,0,What did Howard after Sheldon moved the small bottles?,131235,The Big Bang Theory,19.23-62.02,s01e05_seg01_clip_00,Howard grabbed two big bottles. 9197,Drinking coffee,Driving,Reading a book.,Taking Raj's phone.,Being wheeled into the hospital ,1,What is Bernadette doing when she says she doesn't like Raj?,131236,The Big Bang Theory,31.11-33.26,s10e03_seg02_clip_15,Driving 9198,Cats,Ducks,Dogs,Stripes,Polka Dots,3,What pattern is on Dr. Weiss's tie when he is speaking with detectives?,131237,Castle,71.95-87.43,castle_s04e03_seg02_clip_18,Stripes 9199,Snapped his fingers.,Stomped his foot.,Smacked the wall.,Clapped his hands.,Screamed.,0,What did Sheldon do when he was telling Amy to get out of his room?,131238,The Big Bang Theory,49.62-57.62,s08e08_seg02_clip_16,Snapped his fingers. 9200,House puts a thermometer in his mouth.,House puts a pill in his mouth.,House puts a toothpick in his mouth.,House puts a toothbrush in his mouth.,House puts a bagel in his mouth.,1,What does House put in his mouth when talking to Spain?,131239,House M.D.,1.34-3.12,house_s01e19_seg02_clip_12,House puts a pill in his mouth. 9201,Driving the car.,Sitting to the left of her in the car. ,Sitting in the front seat. ,Sitting to the right of her in the car.,Sitting behind her in the car. ,3,Where was Leonard when Mrs.Latham was talking to him? ,131240,The Big Bang Theory,0-2.61,s04e15_seg02_clip_13,Sitting to the right of her in the car. 9202,Lupus,Dyspnea,Bladder Control,Bloody Urine,Orthostatic Disease,3,What is the first thing written on the board before Amber sits down?,131241,House M.D.,0-14.03,house_s04e12_seg02_clip_22,Bloody Urine 9203,Castle,Genie,No one,Beckett,Lars,4,Who is the owner of the books when castle begins telling esposito and ryan about them?,131242,Castle,7.19-12.69,castle_s08e17_seg02_clip_07,Lars 9204,They meet at Foreman's apartment,They meet in her office,They meet in the park,They meet on a bench outside the hospital,They meet a restaurant,4,Where does Cuddy meet with Foreman when she asks him to come back to the hospital?,131243,House M.D.,60.98-66.77,house_s04e04_seg02_clip_10,They meet a restaurant 9205,Nadine's supervisor said she left 35 minutes ago,Nadine's supervisor said she left 20 minutes ago,Nadine's supervisor said she left 15 minutes ago,Nadine's supervisor said she left 10 minutes ago,Nadine's supervisor said she left 40 minutes ago,3,How long did Nadine's supervisor say she had just left when he was talking to Ryan,131244,Castle,55.82-65.88,castle_s04e08_seg02_clip_14,Nadine's supervisor said she left 10 minutes ago 9206,Shes getting a promotion,Shes quitting her job,Shes getting a raise,Shes calling off the wedding,She loves Ross,3,What does Carol say after she walks into the apartment?,131245,Friends,43.33-61.03,friends_s02e11_seg02_clip_15,Shes calling off the wedding 9207,Dr. Tats,Dr. Schlong,Dr. Phil,Dr. Wiener ,Dr. Saint,3,Who does Rachel say she was on the phone with when Ross asks?,131246,Friends,46.08-53.4,friends_s09e03_seg02_clip_02,Dr. Wiener 9208,He quickly slapped the gun,He told her someone is behind you,He threw the USB,He tackled her suddenly,He let her shoot him once,2,How did Castle get the gun from Sofia when she was pointing it at him?,131247,Castle,29.5-37.67,castle_s07e12_seg02_clip_23,He threw the USB 9209,A woman yelling.,A man killing her.,A man hitting her with a bat.,A man yelling obscenities,A person laughing.,3,What did neighbors see at Shana's when a man was at outside her apartment?,131248,Castle,20.15-31.59,castle_s07e11_seg02_clip_07,A man yelling obscenities 9210,Rachel is next to Ross.,Phoebe is next to Ross.,Monica is next to Ross.,Chandler is next to Ross.,Joey is next to Ross.,2,Who is sitting next to Ross when he is on the couch?,131249,Friends,0-6.4,friends_s01e10_seg02_clip_02,Monica is next to Ross. 9211,Talking about sex.,Having lunch.,Having sex.,Girlfriend comforting him.,In a meeting.,2,What did Leonard admit he and his girlfriend were doing before she left his job?,131250,The Big Bang Theory,31.31-38.17,s07e04_seg02_clip_09,Having sex. 9212,Cuddy tells Stacy that the man could be in pain for another year.,Cuddy tells Stacy that the man would only be in pain like that for a few weeks at the most.ss,Cuddy tells Stacy that the man could be in pain for the rest of his life.,Cuddy tells Stacy that the man would only be in pain like that until they could get him morphine.,Cuddy tells Stacy that the man would not be in pain much longer.,2,How long does Cuddy tell Stacy the man could be in pain after the surgery?,131251,House M.D.,50.45-66.63,house_s01e21_seg02_clip_19,Cuddy tells Stacy that the man could be in pain for the rest of his life. 9213,A person to set-up.,A candidate they can believe in.,A loser.,A fall guy.,The best runner.,1,What are all the major donors looking for when Megan is explaining it?,131252,Castle,8.59-14.14,castle_s07e18_seg02_clip_02,A candidate they can believe in. 9214,because of his friendship with Leonard,because of his relationship with Amy,because of getting older,because of learning to hug people,because of meeting new people,1,Why does Leonard think Sheldon is changing after he compares Sheldon to an emotionless robot?,131253,The Big Bang Theory,8.12-19.61,s06e02_seg02_clip_08,because of his relationship with Amy 9215,How long as that been a though for you? ,Why are you smelling them anyway ,I'm not even gonna ask how you knew that ,No one told you to taste them ,I guess you did enjoy some aspects of your childhood afterall ,3,What did Leonard say when sheldon said that he can't stand the blue scented markers?,131254,The Big Bang Theory,6.3-16.2,s08e14_seg01_clip_02,No one told you to taste them 9216,Outside of Phoenix,In the desert,Near a stream,Under a cavern,in a cave ,2,Where did Castle say the gold may have been stashed when reviewing the story of the Peacock boys?,131255,Castle,69.24-80.03,castle_s07e07_seg02_clip_19,Near a stream 9217,tiramisu,apple pie,flan,jello,caramel apple,0,what did house say was great at the restaurant he and wilson were at when talking to wilson at the table?,131256,House M.D.,65.58-72.62,house_s08e21_seg02_clip_15,tiramisu 9218,Castle has a big snake on his shoulder.,Castle has a big hairy spider on his shoulder.,Castle has a cricket on his shoulder.,Castle has a cute little kitten on his shoulder.,Castle has a drop of blood on his shoulder.,1,What does Castle have on his shoulder after he is shot at?,131257,Castle,40.03-54,castle_s02e14_seg02_clip_23,Castle has a big hairy spider on his shoulder. 9219,death certificate,mental health records,school records,Medical records,dental records,3,"What does house want cameron, chase, and foreman to pull when looking into lucy and jaspers moms history?",131258,House M.D.,40.06-44.96,house_s03e19_seg02_clip_19,Medical records 9220,A keyboard.,A touchscreen.,A coffee cup.,A handbag.,A chair.,0,What was Tori touching before she was discussing Anderson Cross?,131259,Castle,76.37-81.46,castle_s06e12_seg02_clip_04,A keyboard. 9221,Dr. Chase,Cuddy,Dr. Foreman,Wilson,A nurse. ,3,Who came over to talk to House when he was sitting down holding his cane? ,131260,House M.D.,23.02-27.99,house_s03e04_seg02_clip_25,Wilson 9222,Amy.,Stuart.,Howard.,Alex.,Dr. Cooper.,3,Who approached Raj after giving a speach?,131261,The Big Bang Theory,20.49-64.02,s06e16_seg02_clip_17,Alex. 9223,Castle jumps in the car and drives away from Ryan and Esposito.,Castle sits on the ground.,Castle plays chess.,Castle orders body guards.,Castle profiles the scene to try and estimate what happened to Beckett.,4,What does Castle do when Esposito and Ryan direct police to canvas for witnesses to the abduction of Beckett?,131262,Castle,27.11-43.94,castle_s07e15_seg02_clip_00,Castle profiles the scene to try and estimate what happened to Beckett. 9224,Rachel's bedroom,The bathroom,Her bedroom,Into the kitchen,Into the hallway,2,Where does Monica go after walking Paul to the living room?,131263,Friends,28.03-32.55,friends_s01e01_seg02_clip_09,Her bedroom 9225,Phoebe's hair was down.,Phoebe had a ponytail.,Phoebe had a bun.,Phoebe had a french braid.,Phoebe was wearing a hat and her hair was in it.,0,How was Phoebe's hair done when she was hanging out with her friends?,131264,Friends,0-24.37,friends_s02e19_seg02_clip_02,Phoebe's hair was down. 9226,Athlete's foot,The impression of a coin,A dollar bill,A rash,Writing,1,What did Lanie find when she looked at the bottom of the victim's foot?,131265,Castle,4.93-14.78,castle_s06e12_seg02_clip_07,The impression of a coin 9227,Wilson thinks House doesn't want the story of his family to repeat itself,Wilson thinks House doesn't want the same thing to happen to Foreman,Wilson thinks House doesn't want Foreman to not focus on his job,Wilson thinks House doesn't want to be found out that he cares about Foreman,Wilson doesn't think anything of House's intentions,1,"What does Wilson think is House's intentions when he tells House, he regrets not having a realtionship with his family?",131266,House M.D.,16.21-31.53,house_s06e12_seg02_clip_08,Wilson thinks House doesn't want the same thing to happen to Foreman 9228,a tv screen of joeys scene,a magazine,a book,The refreshment table,the script,0,What is rachel looking at when she is at the studio with Joey?,131267,Friends,0.3-5.44,friends_s08e05_seg02_clip_02,a tv screen of joeys scene 9229,Red,Yellow,Blue,Green,Black,1,What color is the patient coat that Phoebe uses when she is talking to Frank and Alice?,131268,Friends,25.82-35.69,friends_s04e12_seg02_clip_04,Yellow 9230,Chandler told Cathy that it is weird that she thinks that she needs to go to the restroom in Joey's apartment.,Chandler told Cathy that he is sorry that Joey doesn't understand that she is uncomfortable.,Chandler told Cathy that she should find a more understanding boyfriend.,Chandler told Cathy that the bathroom in this apartment is cleaner than Joey's anyway.,Chandler told Cathy that it is okay because the duck is using their bathroom anyway.,4,What did Chandler tell Cathy after Joey told her that she can pee here and she appeared to be nervous?,131269,Friends,34.52-47.42,friends_s04e06_seg02_clip_02,Chandler told Cathy that it is okay because the duck is using their bathroom anyway. 9231,Bernadette is in bed in the bedroom.,Bernadette is in the living room on the sofa.,Bernadette is in bed in a hotel.,Bernadette is in the kitchen near the range.,Bernadette is in the bedroom beside the bed.,0,Where is Bernadette when she kicked Howard?,131270,The Big Bang Theory,12.8-19.21,s10e06_seg02_clip_02,Bernadette is in bed in the bedroom. 9232,Outside,Cafateria,Hallway,Loby,Patient's room,4,Where were Janice and Bob when they asked Kutner not to tell the patient about removing the pins? ,131271,House M.D.,71.57-80.29,house_s05e04_seg02_clip_24,Patient's room 9233,The Devil,Skull and crossbones,Radiation symbol,Yellow and black stripes,Dragons,1,What are the on the three sticker on Kripke's bot when Leonard is squatting and looking at it with him?,131272,The Big Bang Theory,1.01-4.31,s02e12_seg02_clip_14,Skull and crossbones 9234,fell down ,yelled,ran away,opened the door,cried,3,What did House do after he looked in the window?,131273,House M.D.,27.57-31.81,house_s02e04_seg02_clip_15,opened the door 9235,The Dance Director yelled that there was a fire and everyone had to evacuate.,The Dance Director yelled that everyone was making far too much noise,The Dance Director started counting down from 10 seconds to begin the dance.,The Dance Director yelled at Monica and Ross to get off the platform.,The Dance Director yelled that the Dance Contest was postponed until the next night at 7 pm.,2,What did the Dance Director yell after he came onto the dance floor?,131274,Friends,33.88-41.31,friends_s06e10_seg02_clip_15,The Dance Director started counting down from 10 seconds to begin the dance. 9236,Chandler wants Monica to return the boots because they are missing the soles.,Chandler wants Monica to return the boots because they are ugly.,Chandler wants Monica to return the boots because they are torn.,Chandler wants Monica to return the boots because they are missing buckles.,Chandler wants Monica to return the boots because they were extremely expensive.,4,Why does Chandler want Monica to return the boots after she shows them to him?,131275,Friends,30.61-68.02,friends_s08e10_seg01_clip_00,Chandler wants Monica to return the boots because they were extremely expensive. 9237,A basket,Files,His laptop,His keys,Flowers,0,What does Ross put on the desk after he enters the office?,131276,Friends,32.98-38.94,friends_s03e15_seg02_clip_06,A basket 9238,Castle accused Anatoly of stealing food.,Castle accused Anatoly of lying about his alibi.,Castle accused Anatoly of making fake IDs.,Castle accused Anatoly of hacking bank systems.,Castle accused Anatoly of forging signatures.,2,What did Castle accuse Anatoly of doing when he was trying to determine why Anatoly called a catering company?,131277,Castle,77.45-79.68,castle_s08e11_seg02_clip_17,Castle accused Anatoly of making fake IDs. 9239,Blue,Green,Red,Gray,Yellow,4,What color is Sheldon t shirt when calculating the number of Penny sexual partners?,131278,The Big Bang Theory,14.41-18.91,s04e01_seg02_clip_14,Yellow 9240,her purse,a hook,a bowl,her pocket,a bookcase,2,Where does Penny grab keys from before she walks out the door?,131279,The Big Bang Theory,56.76-60.39,s06e13_seg02_clip_13,a bowl 9241,In the OR.,Home.,In the locker room.,In the ER.,At a bar.,2,Where was Izzie when Burke was giving the lecture about the heart transplant patient that died?,131280,Grey's Anatomy,39.85-49.36,grey_s03e05_seg02_clip_03,In the locker room. 9242,Wilson says the patient is his step-sister,Wilson says the patient is his mother,Wilson says the patient is his sister,Wilson says the patient is his aunt,Wilson says the patient is his cousin.,4,Who does Wilson say is the patient who cannot talk before House says she has a brain tumor and will die?,131281,House M.D.,12.07-30.54,house_s01e01_seg02_clip_00,Wilson says the patient is his cousin. 9243,laying down ,singing,texting on phone,standing on her hands,meditating ,3,what is the other girl in houses office doing after adams leaves,131282,House M.D.,28.49-39.17,house_s08e17_seg02_clip_03,standing on her hands 9244,Angry,Sad,Confused,Happy,Enraged,3,How does House say the patient in bed looks after he buttons his shirt?,131283,House M.D.,110.11-123.02,house_s03e15_seg02_clip_25,Happy 9245,Monica punches Ross.,Monica blinks then looks to the side and back.,Monica cries.,Monica kisses Chandler.,Monica hugs Rachel.,1,What does Monica do before she says she can imagine?,131284,Friends,11.85-14.41,friends_s01e08_seg02_clip_18,Monica blinks then looks to the side and back. 9246,LSD pills,Marijuana,Methamphetamine ,Heroin,Cocaine,4,What type of drug did Fran admit to using when she was out of the country?,131285,House M.D.,12.61-40.99,house_s03e18_seg02_clip_02,Cocaine 9247,Howards mother wants him to help her take a bath.,Bernadette is not talking to Howard.,Raj has not returned Howards Call of Duty game.,Howard tried to help Sheldon and it went wrong.,He dropped his lunch plate on the floor.,3,Why is Howard upset before Sheldon says this is fun?,131286,The Big Bang Theory,22.63-30.17,s07e05_seg02_clip_06,Howard tried to help Sheldon and it went wrong. 9248,Her aunt,Her father,Her brother,Her sister,Her mother,4,Whose murder case did Montgomery say is unsolved before Beckett got there?,131287,Castle,63.29-74.02,castle_s06e22_seg02_clip_20,Her mother 9249,Ryan tells Lanie the man does not have a clown fetish.,She just worries to much.,Stop watching scary movies before bed and she wont have nightmares.,She can all him anytime he still feels anxious.,"Relax it was a bad dream, we all get them once in a while.",0,Why does Ryan tell Lanie to relax after she says she had nightmares about sleeping with a clown.,131288,Castle,19.36-27.91,castle_s08e14_seg02_clip_17,Ryan tells Lanie the man does not have a clown fetish. 9250,I want a bigger room.,I want some food.,I need to get a wife too.,My parents need to move in with us.,"Hey if you want me to sleep, you have to stop talking.",4,What did Sheldon say after he heard Leonard and his wife talking?,131289,The Big Bang Theory,0-58.47,s10e01_seg01_clip_01,"Hey if you want me to sleep, you have to stop talking." 9251,Diabetes,Cancer,Hypertension,Lou Gehrig's disease,Early onset dimension,1,What does the patient self-diagnose when talking with Dr. Cuddy?,131290,House M.D.,62.01-74.06,house_s06e13_seg02_clip_07,Cancer 9252,That she hides from the light,That She washes her hands obsessively,That She counts her footsteps,That she turns doorknobs twenty times,That She does puzzles and hoard memories,4,How does Chase explain to Nadia that she has OCD after she denies it?,131291,House M.D.,21.86-31.36,house_s07e12_seg02_clip_23,That She does puzzles and hoard memories 9253,"""Coconutty""",Lavender,Vanilla,Amber,Cinnamon,0,What scent does Ross use when describing the smell of her hair?,131292,Friends,4.58-12.82,friends_s06e03_seg02_clip_01,"""Coconutty""" 9254,Howards sits down and cries. ,Howard bangs loudly on the door.,"Howard stars to sing, open the door. ",Howard gets angry and tells his mother off.,Howard yells to his mother that the chain is on the door. ,4,What happens after Howards tries to open the door?,131293,The Big Bang Theory,30.24-37.36,s06e04_seg02_clip_10,Howard yells to his mother that the chain is on the door. 9255,held her hand,held her,sat down,kissed her,stepped back,4,What did Ross do after Gert tried to put her arms around him?,131294,Friends,22.95-26.67,friends_s08e01_seg02_clip_18,stepped back 9256,They are at forever 21. ,They are at J.C. Penney. ,They are at Sears. ,They are at the tuxedo shop. ,They are at the bridal shop. ,4,"Where are Amy, Penny, and Bernadette when they are trying on dresses?",131295,The Big Bang Theory,34.97-42.79,s05e08_seg02_clip_16,They are at the bridal shop. 9257,Buy him a drink,Punch him in the face,Offer him beer,Offer him water,Slap him in the face,3,What did Justin do before Dwight shot him?,131296,Castle,27.61-33.04,castle_s06e16_seg02_clip_13,Offer him water 9258,A pen and paper,A book,A phone,A drink,An oxygen mask,2,What was the patient Lou holding after she told Thirteen she wouldn't want to spend her life wishing she had wings?,131297,House M.D.,22.55-32.21,house_s05e01_seg02_clip_18,A phone 9259,Foreman,Taub,House,Kutner,Chase,3,Who says the patient has not left United States in many years when they are talking about malaria diagnosis?,131298,House M.D.,7.65-13.05,house_s04e09_seg02_clip_07,Kutner 9260,Dog eat dog,Mouse trap,Genie in a bottle,Castle doesn't use a metaphor,Pig in the blanket,2,What metaphor does castle use when describing how to put tyson behind bars?,131299,Castle,62.73-66.09,castle_s07e14_seg02_clip_22,Genie in a bottle 9261,Because Cameron was trying to relate to Wilson. ,"Because Cameron was afraid that if she wasn't specific, Wilson wouldn't believe her.",Because Cameron was bad at excising unnecessary details from her stories.,Because Cameron wanted to make it clear that her husband wasn't anyone Wilson knew.,Because Cameron was trying to tell Wilson that he couldn't physically run away from his grief.,4,Why did Cameron tell Wilson that she used to live 500 miles away when she told him about being reminded of her loss?,131300,House M.D.,20.69-46.65,house_s05e01_seg02_clip_19,Because Cameron was trying to tell Wilson that he couldn't physically run away from his grief. 9262,Cofield shows House a video on his laptop.,Cofield hands House a copy of Chase's medical records.,Cofield activates an electronic device and puts it on the table.,Cofield apologizes to House and says his interrogation is nothing personal.,Cofield hands House a sealed envelope and tells him to open it.,2,What does Cofield do before speaking to House about Chase's condition?,131301,House M.D.,39.57-46.01,house_s08e11_seg02_clip_21,Cofield activates an electronic device and puts it on the table. 9263,Do you have plans for dinner?,I'm in the middle of something,Can you come back later,Do you want anything to drink?,It's great to see you too. Come on in.,4,What did Penny say to Sheldon after Penny opened the door?,131302,The Big Bang Theory,23.41-25.51,s03e01_seg02_clip_03,It's great to see you too. Come on in. 9264,to a shop,"to a ""movie""",to a mall,home,to a dance,1,Where did Ted take his date when he went out?,131303,How I Met You Mother,0-13.34,met_s03e13_seg02_clip_16,"to a ""movie""" 9265,2 months, a month,6 months,4 months,3 months,0,How many months did wilson say house spent trying to do when talking to house in his office?,131304,House M.D.,44.07-52.52,house_s07e17_seg02_clip_12,2 months 9266,It was risky and permanent,It could cause brain damage,He can go into shck,He may turn into a zombie ,He might die instantly,0,How did Foreman respond after House suggested putting the patient in the defibrillator?,131305,House M.D.,12.46-19.14,house_s05e21_seg02_clip_20,It was risky and permanent 9267,blue,Red ,white,grey,black,1,"Whaat color is Leonard's shirt when he say's ""Oh, damn it....""?",131306,The Big Bang Theory,0-9.92,s03e05_seg02_clip_00,Red 9268,A microphone,A toy gun,A Star Trek flag,A camera,An action figure,4,"What is Sheldon holding when he says ""Set phasers to fun?""",131307,The Big Bang Theory,45.7-50.43,s06e07_seg01_clip_00,An action figure 9269,Turns and leaves.,Hugs Rachel.,Sets down a notebook.,Grabs his dry cleaning.,Tries to get the dry cleaner to give him the stuff.,2,What does Joey do before he says I will bring you a tape?,131308,Friends,0-5.21,friends_s06e22_seg02_clip_01,Sets down a notebook. 9270,Raj's place,the library,Leonard's apartment,Penny's apartment,the comic book store,4,"Where were Sheldon, Howard, Raj and Leonard when they were talking about Howard's achievement?",131309,The Big Bang Theory,0-19.54,s02e22_seg01_clip_00,the comic book store 9271,"Foreman said if Brandon ate bad food, he'll die.","Foreman said if Brandon gets the measles, he'll die.","Foreman said if Brandon gets a small cut, he'll die.","Foreman said if Brandon gets the flu, he'll die.","Foreman said if Brandon gets a cold, he'll die.",4,How sick did Foreman say Brandon had to be to die when Brandon's mother asked about it?,131310,House M.D.,78.32-85.52,house_s01e03_seg02_clip_13,"Foreman said if Brandon gets a cold, he'll die." 9272,A scalpel ,A baby,A motorcycle helmet,A briefcase,A wedding gown,1,What is Cristina holding when Izzy said back to that?,131311,Grey's Anatomy,30.95-32.77,grey_s02e20_seg02_clip_13,A baby 9273,After saying I love you.,Before asking what was for lunch.,After having an argument.,Before she sneezed.,Before she ate her sandwich.,1,When did Howard tell Bernadette he bought a minivan when he was talking to her?,131312,The Big Bang Theory,54.16-60.18,s10e06_seg02_clip_04,Before asking what was for lunch. 9274,disgusted,excited,scared,worried,nonchalant,1,How did Howard feel about the prototyper when he was with Leslie?,131313,The Big Bang Theory,30.11-51.04,s02e16_seg02_clip_04,excited 9275,Points at the door,Points downward,Points at Rachel,Points in the air,Points to his chest,4,"What does Ross do when he says ""Someone took a shot at me""?",131314,Friends,25.64-34.19,friends_s05e20_seg02_clip_16,Points to his chest 9276,To get her to trust him,He secretly loved fairies,He lost a bet with Emily,It was dress like a fairy day at school,Mrs Ruiz made him dress up,0,Why did Castle dress like a fairy when he was speaking to Emily?,131315,Castle,0-38.32,castle_s07e04_seg02_clip_14,To get her to trust him 9277,A day off for Amber and him.,If Amber and House could be friends.,French Toast Tower.,"A big, cold, chocolate milkshake.",A big plate of Chicken Mole.,2,What did Wilson say would be perfect when he was eating a bowl of cereal?,131316,House M.D.,3.76-5.64,house_s06e18_seg02_clip_00,French Toast Tower. 9278,Esposito was stuck to the building wall.,Ryan's and Esposito's legs were broken.,The smoke made it hard for Ryan and Esposito to find an exit.,Ryan did not want to leave until he found his wedding ring.,There was no door for Ryan and Esposito to use.,4,Why were Esposito and Ryan unable to leave when they were trapped in a burning building?,131317,Castle,58.26-60.99,castle_s06e11_seg02_clip_17,There was no door for Ryan and Esposito to use. 9279,a car,a refrigerator,a toaster oven,a phone,a hammer,2,What did Leonard decide to use when he started the test?,131318,The Big Bang Theory,0-8.91,s02e12_seg01_clip_01,a toaster oven 9280,He gave them to Joey.,He threw them away.,He taped them up in the box.,He put them under the table.,He put them under the bed.,2,What did Chandler do with the plates before Monica came back into the room?,131319,Friends,32.81-40.11,friends_s09e08_seg02_clip_22,He taped them up in the box. 9281,George was with Burke,Meredith was with Burke,Cristina was with Burke,A nurse was with Burke,Derek was with Burke,2,Who was in the operating room when Burke was finishing a surgey?,131320,Grey's Anatomy,77.37-91.03,grey_s03e04_seg02_clip_16,Cristina was with Burke 9282,white,blue,grey,yellow,purple,0,"What color is the shirt Ross is wearing when he say's ""Hey...""?",131321,Friends,0-9.77,friends_s06e15-16_seg02_clip_04,white 9283,he falls,Castle gets shot,he dies,Castle catches his gun,he sings,3,What happens when Beckett shoots?,131322,Castle,84.63-94.03,castle_s07e07_seg02_clip_25,Castle catches his gun 9284,the patient is female,the patient is black,the patients test came back clean,the patient has no hair,the patient is jewish,3,why did house rule out typhus as a diagnosis for the patient when chase threw the suggestion at him?,131323,House M.D.,44.19-53.13,house_s08e15_seg02_clip_00,the patient has no hair 9285,Joey was wearing an orange sweater.,Joey was wearing a blue t-shirt.,Joey was wearing a wool coat.,Joey was wearing an orange t-shirt.,Joey was wearing a green sweater.,0,What was Joey wearing when he was talking to Rachel?,131324,Friends,0-24.66,friends_s08e07_seg02_clip_12,Joey was wearing an orange sweater. 9286,She opens it,She goes to sleep,She ask what he wants,She slams the door,She kicks Raj,0,What does Penney do after Raj kicks the door,131325,The Big Bang Theory,0-52.18,s02e04_seg02_clip_07,She opens it 9287,Beckett's shoulders.Beckett's hair.,Beckett's feet.,A magazine.,A wooden spoon.,A bottle of oil.,2,What was Castle holding when Beckett asked him how many people could fit in a roller coaster car?,131326,Castle,28.03-34.47,castle_s06e19_seg02_clip_00,A magazine. 9288,stuffed animal,phone,book,magazine,coffee mug,4,What is Beckett holding when she is talking to Castle?,131327,Castle,0-5.74,castle_s02e13_seg02_clip_24,coffee mug 9289,A medical report,A $50 bill,A $10 bill,A $5 bill,A $100 dollar bill,4,What was House holding when he was talking to Cameron?,131328,House M.D.,0-7.48,house_s04e04_seg02_clip_02,A $100 dollar bill 9290,we going to destroy you ,Hi Sheldon ,we don't like you ,Hee-hee-hee!,I miss you ,3,What did Raj say after Sheldon said gentlemen?,131329,The Big Bang Theory,0-28.53,s01e13_seg02_clip_06,Hee-hee-hee! 9291,Throw a pillow a him.,Scream loudly.,Ask if he is figuring out how to murder someone in their sleep.,Tell him to leave her room.,Go back to sleep,2,What did Alexis do after she caught Castle watching her sleep?,131330,Castle,10.57-18.84,castle_s01e04_seg02_clip_09,Ask if he is figuring out how to murder someone in their sleep. 9292,House is stirring paint.,House is stirring his coffee.,House is stirring soup.,House is stirring eggs.,House is stirring oatmeal.,1,What is House stirring when speaking with Foreman and Cameron?,131331,House M.D.,4.58-5.95,house_s02e18_seg02_clip_06,House is stirring his coffee. 9293,A paper bag.,A plate.,A cup.,A tube.,A towel.,2,What was Gretchen holding when she said she was a good mother?,131332,Castle,35.53-40.99,castle_s07e14_seg02_clip_20,A cup. 9294,Laying across the desk.,Laying on a bench.,In the airplane seat.,In the bathroom stall.,Sitting in the chair.,4,Where is Ross when Rachel walks by?,131333,Friends,44.5-47.06,friends_s05e01_seg02_clip_15,Sitting in the chair. 9295,The way that Lily knocks on doors,Lily dragging her feet while walking,Lily keeping doors open,Lily never putting the milk back in the refrigerator ,Lily's loud chewing,4,What does Ted ask Marshall what he's used to Lily doing when they're sitting in the living room?,131334,How I Met You Mother,19.44-26.81,met_s03e08_seg02_clip_09,Lily's loud chewing 9296,Janice.,Rachel.,Phoebe.,Susan.,Ross.,0,Who enter when Chandler and Joey were talking?,131335,Friends,9.24-12.04,friends_s03e01_seg02_clip_01,Janice. 9297,Wonder Woman,Wheel of Fortune,Seinfeld,E.R.,Law & Order,0,What was playing on the TV when Joey turned if off?,131336,Friends,21.66-28.76,friends_s04e07_seg02_clip_21,Wonder Woman 9298,Happiness,Confusion,Sadness,Anger,Disdain,1,What was Abby's reaction after Barney told her he can't marry her?,131337,How I Met You Mother,22.14-80.5,met_s03e19_seg02_clip_18,Confusion 9299,Her purse.,Her keys.,Her cell phone,The breast cam.,Her drink ,1,"What does Penny put on the table when Bernadette says, ""Stuart took that like rejection like a pro""?",131338,The Big Bang Theory,25.75-28.23,s09e05_seg02_clip_13,Her keys. 9300,The color of Ted's boots was red,The color of Ted's boots was blue,The color of Ted's boots was pink,The color of Ted's boots was purple,The color of Ted's boots was brown,0,What color boots was Ted wearing when he came and stood in front of Marshall,131339,How I Met You Mother,36.33-46,met_s03e19_seg02_clip_14,The color of Ted's boots was red 9301,He asked a question that was unanswerable. ,He asked a hard to answer question.,He asked an easy to answer question.,He asked a general question.,He asked a Rhetorical question.,4,What kind of question did Kripke as Sheldon after Sheldon thanked him?,131340,The Big Bang Theory,13.64-20.89,s03e09_seg02_clip_01,He asked a Rhetorical question. 9302,Taking out the trash?,Saving the world.,Adopting a puppy.,Recycling.,Starting a fight.,4,What did was House accused of doing when he was talking to Nolan?,131341,House M.D.,9.03-22.37,house_s06e20_seg02_clip_24,Starting a fight. 9303,Robin said it at the shop.,Robin said it at their home.,Robin said it at the park.,Robin said it at the car wash. ,Robin said something in the city.,1,What and when did Robin say something to stop Ted and Zoey?,131342,How I Met You Mother,0-50.17,met_s06e20_seg01_clip_01,Robin said it at their home. 9304,That he expected the result,That he needs a kidney transplant,That he needs some vacation time,That he should check into hospice,That he should find a girlfriend,0,What does House note after the patient does not seem surprised?,131343,House M.D.,0-11.77,house_s06e16_seg02_clip_22,That he expected the result 9305,Jen said they learned Lilly has a stripper self,Jen said they only learned tht it was a mistake 7 years ago to go out and it was a mistake tonight.,Jen said they learned ted is still a nerd,Jen said they learned that they have the same taste in food,Jen said they learned that they both hate jazz,1,What is the only thing jen says they have learn tonight after listening to Ted?,131344,How I Met You Mother,50.74-60.05,met_s05e02_seg02_clip_16,Jen said they only learned tht it was a mistake 7 years ago to go out and it was a mistake tonight. 9306,hurt face,happy face,sad face,koala face,jealous face,3,What kind of face did Sheldon use when he spoke to Amy?,131345,The Big Bang Theory,0.9-18.68,s05e12_seg02_clip_15,koala face 9307,black,blue,green,grey,White,4,"What color is Ryan's shirt when he say's ""Melanie's manager at Fly-Wide...""?",131346,Castle,80.65-90.62,castle_s04e06_seg02_clip_22,White 9308,She was talking behind a coworker other than Meredith's back.,She was talking behind Meredith's back.,"She was talking about George, Meredith, and herself.",She was talking solely about George.,She was talking solely about herself.,2,Who was Izzie talking about when she spoke to George?,131347,Grey's Anatomy,15.01-49.52,grey_s03e24_seg02_clip_20,"She was talking about George, Meredith, and herself." 9309,Izzie is angry.,Izzie is disappointed.,Izzie is relieved.,Izzie is confused.,Izzie is fearful.,2,How is Izzie after she read her test scores?,131348,Grey's Anatomy,17.51-27.65,grey_s03e25_seg02_clip_21,Izzie is relieved. 9310,Italy,France,China,Spain,America.,4,Which country did Ross say he hated when he was kneeling on the floor?,131349,Friends,28.05-30.88,friends_s07e08_seg02_clip_16,America. 9311,to the bathroom,to the patients room,to the nurses station,to smoke a cigarette,to talk to cuddy,1,where does cameron go after foreman tells the team what the patient needs done next?,131350,House M.D.,12.27-21.81,house_s06e04_seg02_clip_13,to the patients room 9312,Castle was sitting in front of Mr. Kopek.,Castle was sitting in front of Beckett.,Castle was sitting behind Beckett.,Castle was sitting beside Beckett on her left hand-side..,Castle was standing.,3,Where was Castle sitting when they were questioning Mr. and Mrs. Kopek?,131351,Castle,24.87-32.56,castle_s02e14_seg02_clip_25,Castle was sitting beside Beckett on her left hand-side.. 9313,5 minutes,2 minutes,One minute,Just a couple seconds,Less than 30 seconds,1,How long did Ted say he left the table for when they all were out to dinner?,131352,How I Met You Mother,23.71-28.21,met_s03e08_seg02_clip_04,2 minutes 9314,Howard,Raj,James,Leonard,Stuart,2,Who was with Sheldon when he was in the steam room?,131353,The Big Bang Theory,46.5-54.06,s07e14_seg02_clip_16,James 9315,Ann is surprised and upset.,Ann is happy and relaxed.,Ann walks out the door.,Ann looks out the window.,Ann hugs Castle and Paul.,0,What does Ann do after Beckett shouts about Paul's attempted confession?,131354,Castle,76.14-85.49,castle_s04e02_seg02_clip_22,Ann is surprised and upset. 9316,The remote.,Flowers.,A tv dinner.,Chinese food.,A pen.,4,What is Ross holding after he sits down?,131355,Friends,27.15-39.25,friends_s06e05_seg02_clip_17,A pen. 9317,"That's happy, right?",Who is he calling?,Do you think they will answer?,What is all the excitement about?,Is he mad?,0,What did Sheldon ask Leonard after Raj said he was going to call them?,131356,The Big Bang Theory,0-7.56,s03e04_seg02_clip_04,"That's happy, right?" 9318,Rachel's boss gave Rachel a promotion on the spot,"Rachel's boss ""hated the idea""","Rachel's boss ""loved it""","Rachel's boss wanted to rename them ""condo pants""",Rachel's boss fired Rachael.,2,"How does Rachel say her boss reacted after Rachel pitched ""apartment pants""",131357,Friends,3.25-9.45,friends_s06e13_seg02_clip_10,"Rachel's boss ""loved it""" 9319,Donald,Todd.,Cary.,Zachary.,Ross.,3,What name did Stephanie say when she was singing? ,131358,Friends,14.73-26.25,friends_s02e06_seg02_clip_12,Zachary. 9320,Have fun ,Well then go ,I don't care what the other guys are doing.,What other guys?,They not my son,2,What did Mrs. Koothrappali say after Raj told her that all the other guys going to the north pole?,131359,The Big Bang Theory,0-34.32,s02e23_seg02_clip_11,I don't care what the other guys are doing. 9321,Ducking down at the table.,Ducking and falling onto the floor.,Running out of the room.,Hiding under the table.,Laughing.,0,"What was Chandler, Joey, and Ross' reaction when Chandler mentioned Pictionary?",131360,Friends,19.21-27.91,friends_s01e18_seg02_clip_11,Ducking down at the table. 9322,Castle answered Becketts phone,Becky answered Becketts phone,Larry answered Becketts phone,Mary answered Becketts phone,Timothy answered Becketts phone,0,Who answered Becketts phone when Castle and Beckett are together?,131361,Castle,4.87-12.41,castle_s08e01_seg02_clip_01,Castle answered Becketts phone 9323,howard responds cancer,howard responds irritable bowel syndrome,"howard responds ""suicide""",howard responds car accidents,howard responds old age,2,how does howard respond after raj asks what's the first one?,131362,The Big Bang Theory,56.18-59.22,s08e22_seg02_clip_09,"howard responds ""suicide""" 9324,Ross says he hasn't seen Julie since undergrad.,Ross says he hasn't seen Julie since high school.,Ross says he hasn't seen Julie since middle school.,Ross says he hasn't seen Julie since grad school.,Ross says he hasn't seen Julie since they were children.,3,When was the last time Ross says he's seen Julie when talking with his friends?,131363,Friends,36.6-62.03,friends_s02e01_seg02_clip_03,Ross says he hasn't seen Julie since grad school. 9325,He grabbed the baby.,He put his hand on Phoebe's back.,He kissed Rachael.,He kissed Phoebe's forehead.,He sat down.,1,What did Chandler do when Phoebe was handing the baby to Rachael?,131364,Friends,57.72-59.23,friends_s08e23-24_seg02_clip_35,He put his hand on Phoebe's back. 9326,Use the bathroom,Steam her dress,Take a shower,Cook a meal,Change into her PJs,1,What is Monica going to do when Rachel offers to help?,131365,Friends,17.56-24.31,friends_s07e23-24_seg02_clip_10,Steam her dress 9327,They will be able to save a life,The addict is getting clean now,Drug addict began to pee blood,There is no room for error left,No one is there to stop him,2,What is the good news that House has before leaving the classroom of students?,131366,House M.D.,50.41-63.82,house_s01e21_seg02_clip_11,Drug addict began to pee blood 9328,Penny laughs out loud.,Penny stares forward and pulls her lips in.,Penny grabs Leonard and runs out of the apartment.,Penny hugs Sheldon.,Penny calls a cab.,1,What does Penny do after Mrs. Cooper says crawl back inside your mama?,131367,The Big Bang Theory,58.3-62.02,s08e23_seg02_clip_09,Penny stares forward and pulls her lips in. 9329,She hugs Chandler. ,She puts her hair behind her ears. ,She runs away. ,She drinks coffee. ,She eats a muffin. ,1,What does Rachel do when she faces Chandler in the coffee house?,131368,Friends,32.98-36.5,friends_s04e10_seg02_clip_09,She puts her hair behind her ears. 9330,Because Ted want to look a picture.,Because Ted turned to watch the TV.,Because Ted doesn't like Barney.,Because Ted is sleeping.,Because Ted is looking something.,2,Why Ted turned his head away when Barney entered in the living room?,131369,How I Met You Mother,1.53-61.03,met_s02e10_seg02_clip_11,Because Ted doesn't like Barney. 9331,Castle and Ryan would get a place together. ,Castle would move in with Beckett. ,Castle would live with Alexis and her family. ,Castle had bought a house from Montgomery and he'd stay there. ,Castle would roam the streets. ,2,Where did Castle say he'd live after he lost all his money in a divorce? ,131370,Castle,19.69-27.85,castle_s01e10_seg02_clip_21,Castle would live with Alexis and her family. 9332,George made the baby cry at home,George spilt the milk in the kitchen,George did not throw the trash out,George cut his hair over the bathroom sink,George did not have money so borrowed some from Cristina,3,How did George annoy Cristina this morning when he was at home?,131371,Grey's Anatomy,0-10.01,grey_s02e20_seg02_clip_13,George cut his hair over the bathroom sink 9333,Amy's apartment,The comic book store.,Penny's apartment,A bar.,The cafeteria. ,3,Where is Sheldon when he says that it's a Pokemon reference?,131372,The Big Bang Theory,2.48-5.27,s09e05_seg02_clip_13,A bar. 9334,Adams is dancing,Adams is looking at a medical screen,Adams is reading a book,Adams is yawning,Adams is stretching,1,What is Adams doing when she gets up?,131373,House M.D.,65.99-73.73,house_s08e09_seg02_clip_13,Adams is looking at a medical screen 9335, his hat,his wallet,his phone,his cane ,his shoes ,3,What did House lay down on the table right before he sat down?,131374,House M.D.,7.2-16.2,house_s05e15_seg02_clip_13,his cane 9336,The computer.,The desk.,The conference table.,The whiteboard.,The filing cabinet.,3,Where does House walk up to after he returns to his office.,131375,House M.D.,88.69-91.43,house_s01e16_seg02_clip_06,The whiteboard. 9337,7 minutes,8 mintues,2 minutes,5 minutes,4 minutes,0,How many minutes did caleb say the brain stays alive after dying?,131376,Castle,0.92-9.2,castle_s08e19_seg02_clip_19,7 minutes 9338,In a body,In a wall,In a booth,In the fridge,In the shower,2,Where did the Crime Scene Tech find a bullet when he was giving his report?,131377,Castle,42.79-46.98,castle_s03e13_seg02_clip_03,In a booth 9339,One,Two,Four,Six,Five,2,How many nurses were in the room with the burn victim when Chase asked if he was going to survive the burn?,131378,House M.D.,2-6,house_s02e12_seg02_clip_01,Four 9340,Sheldon is finding Amy.,Sheldon is finding Penny.,Sheldon is finding Priya.,Sheldon is finding Leonard.,Sheldon is finding Howard.,0,Who is Sheldon going to find when he leaves the apartment?,131379,The Big Bang Theory,46.68-54.31,s09e07_seg02_clip_12,Sheldon is finding Amy. 9341,The victim had abbrasians on his forearms and hands,He managed to make it halfway across the gallery,He almost made it down the stairs,He had skin under his fingernails.,His feet were bruised suggesting that he kicked his assailant ,0,Why does Lanie say the victim had some fight in him after Esposito is sent to check with the assistant.,131380,Castle,83.89-93.21,castle_s02e11_seg02_clip_00,The victim had abbrasians on his forearms and hands 9342,I booked dinner reservations would you to like to join me.,Enjoy the movie.,"I would like to see that movie, can I join you?","Have a great time, you guys. And yes, it is too slutty!",Ross said nothing.,3,"What did Ross yell, when Rachel was walking out the door with her date?",131381,Friends,15.61-22.51,friends_s08e05_seg02_clip_10,"Have a great time, you guys. And yes, it is too slutty!" 9343,At Comic Con.,In the comic book shop.,In their apartment.,In Leonard's car.,In Sheldon's Office. ,3,Where are Leonard and Sheldon when Sheldon yells that this is so amazing?,131382,The Big Bang Theory,6.3-12.01,s08e19_seg02_clip_07,In Leonard's car. 9344,House says he Pulled a hamstring playing twister,House says he Pulled a hamstring playing football,House says he Pulled a hamstring playing cricket,House says he Pulled a hamstring playing hopscotch,House says he Pulled a hamstring playing soccer,0,How does House say he got a leg injury after playing a game?,131383,House M.D.,9.02-15.33,house_s02e23_seg02_clip_02,House says he Pulled a hamstring playing twister 9345,Dinner.,Lunch.,Breakfast.,Tomorrow.,Next week.,2,When House suggests patient will be well by after Chase tends to her?,131384,House M.D.,16-31.99,house_s02e23_seg02_clip_06,Breakfast. 9346,Chandler left the scene.,Chandler started arguing as well.,Chandler just stood still and watched.,Chandler sided with Ross.,Chandler started dancing.,4,What did Chandler start doing when everyone was arguing?,131385,Friends,36.32-44.89,friends_s03e17_seg02_clip_16,Chandler started dancing. 9347,Left side,Bright side,Dark side,Right side,Northern half,2,Where on the moon does the man claim the ship was on when talking with Castle?,131386,Castle,38.96-45.52,castle_s07e02_seg02_clip_08,Dark side 9348,Monica opens the door.,Rachel opens the door.,Shelly opens the door.,Phoebe opens the door.,Patti opens the door.,1,Who answers the door when the pizza is being delivered?,131387,Friends,6.47-9.55,friends_s01e04_seg02_clip_13,Rachel opens the door. 9349,Her head,Her Kidney,Her stomach,Her Liver,Her lungs,3,What is wrong with Moira when the doctor is examining her?,131388,House M.D.,74.78-80.57,house_s08e12_seg02_clip_19,Her Liver 9350,His cell phone and wallet.,A small cup of liquid.,Cuddy's purse and shoes.,A vial of blood.,A blanket and pillow.,1,What House holds when opening the curtain?,131389,House M.D.,13.21-22.51,house_s03e18_seg02_clip_17,A small cup of liquid. 9351,beside a window ,Beside a fridge ,Beside a car ,Beside the table ,Beside a television,3,Where was Ross and Emily standing when they were kissing ?,131390,Friends,56.37-59.03,friends_s04e19_seg02_clip_13,Beside the table 9352,She wants to play too,She's happy ,She's upset,She storms out,She's angry,2,What is Monica's reaction after seeing the guys play with bubble wrap,131391,Friends,10.27-25.53,friends_s10e16_seg02_clip_02,She's upset 9353,Swimsuits,Raincoats,Scrubs,Snow gear,Pyjamas,2,What are the doctors wearing when they are in surgery?,131392,Grey's Anatomy,68.58-78.25,grey_s01e07_seg02_clip_11,Scrubs 9354,Serotonin Storm caused heart attacks.,Serotonin Storm could paralyze Adam.,Serotonin Storm caused people to go blind.,Serotonin Storm would require that Adam have dangerous surgery.,Serotonin Storm was deadly.,4,Why was Foreman worried when he heard Adam may have Serotonin Storm?,131393,House M.D.,58.71-61.44,house_s02e12_seg02_clip_21,Serotonin Storm was deadly. 9355,"There were books, magazines and a red car.",The telephone was on the table.,There was food on the table.,There was a lamp on the table.,There was a radio on the table.,0,What was on the table in front of the guy on the phone after he called Monica?,131394,Friends,22.04-23.28,friends_s02e08_seg02_clip_18,"There were books, magazines and a red car." 9356,Ice cream cones.,Picture frames.,Rings.,Coffee mugs.,Cigarettes.,0,What are Ross and Elizabeth holding when she said something about a class?,131395,Friends,45.16-51.26,friends_s06e18_seg02_clip_07,Ice cream cones. 9357,She walked out the room.,She laid down.,She started eating.,She turned a tv on.,She drank some water.,1,What did the patient do after she asks why/,131396,House M.D.,35.05-42.73,house_s02e16_seg02_clip_16,She laid down. 9358,He walls playing with a ball.,He had them in his pockets. ,He was writing.,He was holding a chair.,He was typing. ,1,What was Chase doing with his hands before House threw him a folder?,131397,House M.D.,0-4.05,house_s02e01_seg02_clip_21,He had them in his pockets. 9359,He was taking off his overcoat.,He removed his hat from head.,He look out the window.,He was looking at his tablet.,He was looking at the monitor.,0,What did House do when Chase told him that the patient had no concussion?,131398,House M.D.,84.35-88.93,house_s06e12_seg02_clip_00,He was taking off his overcoat. 9360,Number A482,Number 315,Number 418,Number 627,Number 256,1,What number is next to the second rooms door when Samira Terzi and Greg House pass by it?,131399,House M.D.,20.89-30.46,house_s04e06_seg02_clip_22,Number 315 9361,House is outside on the patio sitting with Wilson.,House is at a ballgame.,House is on a boat.,House is in a coffee shop.,House is at the movies.,0,Where is House when parents of a male patient hover over House?,131400,House M.D.,0-9.8,house_s01e02_seg02_clip_19,House is outside on the patio sitting with Wilson. 9362,None of them had the same shoes on as the killer.,None ate like the same killer.,None walked like the same killer.,None of them had hands like the killer.,None of them smelled liked the same killer.,4,Why does Mia say the men in the lineup were not the killer when she tells Castle her results?,131401,Castle,0.31-4.3,castle_s08e05_seg02_clip_10,None of them smelled liked the same killer. 9363,House left the room after asking the father to calm his child down.,House continued to try to help the child and tolerated the loud crying.,House yelled at the child to stop or he would snap his nose off.,House took a pair of earplugs out of his jacket and put them on.,House asked the father to cover the child's mouth with his hand.,2,What did House do after the child wouldn't stop crying?,131402,House M.D.,38.23-42.91,house_s01e15_seg02_clip_18,House yelled at the child to stop or he would snap his nose off. 9364,Castle is looking for Beckett.,Castle wants to catch Martha's performance in a play. ,Castle is late to marry Beckett.,Esposito and Ryan try to arrest Castle.,Castle is late for Alexis' graduation party.,0,When the car stops why does Castle run away from the car after?,131403,Castle,0-6.08,castle_s07e15_seg02_clip_00,Castle is looking for Beckett. 9365,She tells them to forgive her,She says nothing,She laughs,She walks away,Come on this is huge,4,What does Penney say after Howard speaks?,131404,The Big Bang Theory,5.49-61.02,s02e04_seg02_clip_07,Come on this is huge 9366,Women can sense fear.,Animals can sense fear,Babies can sense fear.,Carry on.,Freaking out won't help.,2,What does Castle say after he tells Ryan to remain calm?,131405,Castle,7.38-14.75,castle_s06e10_seg02_clip_05,Babies can sense fear. 9367,The dog guy,The food guy,The beer guy,The movie guy,The wine guy,4,What nickname does Joey give Paul when he meets him in the kitchen?,131406,Friends,3.31-9.64,friends_s01e01_seg02_clip_09,The wine guy 9368,Scissors.,Picture,Phone.,Medicine.,Termometer.,1,What was Alex showing to Digby when standing nex to him?,131407,Grey's Anatomy,11.5-13.8,grey_s01e07_seg02_clip_11,Picture 9369,Phoebe was being normal.,Phoebe had a weird dress on.,Phoebe was edgy yesterday.,Phoebe looked like she was about to attack them.,They were talking about secretive things.,2,Why were Rachel and Monica acting weird with Phoebe before she hugged them?,131408,Friends,30.61-56.43,friends_s04e22_seg02_clip_09,Phoebe was edgy yesterday. 9370,work,class,bar,park,movies,0,Where did Chase say they were not going to have sex at anymore when he was talking to Cameron about not getting caught?,131409,House M.D.,29.05-45.77,house_s03e16_seg02_clip_10,work 9371,She said he was a weapons dealer.,She said nothing.,She said he had a neck tattoo.,The inmate said that Hammerhead met Jimmy Sanchez at a bar called El Toro.,She said he was from Cuba.,3,What did the female inmate say after the the questioner asked if she remembered anything about Hammerhead?,131410,Castle,33.77-43.67,castle_s08e16_seg02_clip_04,The inmate said that Hammerhead met Jimmy Sanchez at a bar called El Toro. 9372,flowers,A backpack,notebooks,boxes,Bags,4,What was Leonard and Sheldon carrying when they were walking up the stairs?,131411,The Big Bang Theory,16.18-24.1,s10e13_seg02_clip_00,Bags 9373,An umbrella,A glass,A hammer,A football,A Hamburger,1,What is Barney holding when he tells Ted to leave Hell's kitchen?,131412,How I Met You Mother,0-4.8,met_s06e09_seg02_clip_12,A glass 9374,He gets thrown off of the stage. ,He gets thrown out of his own apartment. ,He gets thrown out of town. ,He gets thrown out of the woman's apartment. ,He gets told to get a life. ,3,What happens after Leonard calls himself captain good guy?,131413,The Big Bang Theory,16.85-21.88,s05e07_seg02_clip_14,He gets thrown out of the woman's apartment. 9375,Chandler and Joey are looking for Phoebe.,Chandler and Joey are hungry.,Chandler and Joey want to ask Ross to the movies.,Chandler and Joey are watching Ross to see what he will do when he realizes his car is stuck.,Chandler and Joey have a gift for Ross.,3,Why do Chandler and Joey stare after Ross backs up his car?,131414,Friends,23.39-29.32,friends_s07e14_seg02_clip_02,Chandler and Joey are watching Ross to see what he will do when he realizes his car is stuck. 9376,Alexis is upset because she missed her exams at school.,Alexis is upset because she was worried about where Castle was.,Alexis is upset because she missed her flight to Paris.,Alexis is upset because Castle is going out with Beckett again.,Alexis is upset because Castle is riding a scooter in the apartment.,1,Why is Alexis upset when Castle enters the apartment?,131415,Castle,13.44-23.05,castle_s07e04_seg02_clip_26,Alexis is upset because she was worried about where Castle was. 9377,A gift.,Wine.,Coffee.,His coat.,Balloons.,0,What was Ross holding when he walked in?,131416,Friends,36.85-41.36,friends_s10e17-18_seg02_clip_15,A gift. 9378,She sat down.,She took her coat off.,She walked away.,She grabbed her guitar. ,She opened the refrigerator. ,1,What did Phoebe do after she warned Rachel about Ross and Jill?,131417,Friends,22.15-30.42,friends_s06e13_seg02_clip_10,She took her coat off. 9379,Sitting on the couch in the coffee shop.,Standing beside a handsome guy.,At the counter pouring coffee.,Laying on the floor by the window.,On the stage playing piano.,0,Where was Rachel when Chandler walked into yhe coffee shop?,131418,Friends,66.26-69.02,friends_s04e20_seg02_clip_09,Sitting on the couch in the coffee shop. 9380,"Massive, bloody energy wars",Robots controlling the planet,Massive human trafficking,Full scale corruption,Alien invasion,0,What does Castle say before he points out it is just like Doyle described?,131419,Castle,0-5.4,castle_s06e05_seg02_clip_16,"Massive, bloody energy wars" 9381,She recognizes the voice of the Defense Secretary,She recognizes the voice of the President,She recognizes the voice of the Attorney General,She recognizes the voice of the Secretary of State,She recognizes the voices of the Joint Chiefs of Staff,0,Whose voice does Beckett recognize when she is listening to the audio?,131420,Castle,29.96-34.88,castle_s06e02_seg02_clip_16,She recognizes the voice of the Defense Secretary 9382,Lauren sits on the edge of the stage.,Lauren sits in one of the front row seats.,Lauren sits next to Kate.,Lauren sees Joey and immediately goes back outside.,Lauren goes over to the coffee table.,4,Where does Lauren go after she comes into the auditorium?,131421,Friends,43.52-51.32,friends_s03e20_seg02_clip_16,Lauren goes over to the coffee table. 9383,A hat,A bow,A hairclip,A towel,Headphones,4,What is on Penny's head when she was talking to Leonard?,131422,The Big Bang Theory,25.58-28.89,s08e20_seg02_clip_13,Headphones 9384,A clock.,A stapler.,A pen.,A gun.,A piece of paper.,4,What does Cuddy get off of the desk after she said something to House about staying out of prison?,131423,House M.D.,55.43-62.14,house_s03e11_seg02_clip_02,A piece of paper. 9385,House was alone. ,Dobson.,Wilson.,Chase.,Remy.,4,Who was the other doctor besides House in the room when Jane was talking to her mother?,131424,House M.D.,0-3.97,house_s04e10_seg02_clip_22,Remy. 9386,Castle is laying on the couch,Castle is sitting behind a desk,Castle is in the kitchen making a cup of coffee,Castle is in bed,Castle is in a taxi,3,Where is Castle when he answers his cellphone,131425,Castle,0-9.79,castle_s06e22_seg02_clip_07,Castle is in bed 9387,They confirmed the source of the bleeding.,They couldn't confirm the source of the bleeding.,They did biopsy and found blood blisters.,They did biopsy and found papules.,They did biopsy and found nothing.,1,What did Foreman say after House walked into the room?,131426,House M.D.,0-10.93,house_s02e17_seg02_clip_06,They couldn't confirm the source of the bleeding. 9388,The flowers are orange,The flowers are blue,The flowers are red,The flowers are yellow,The flowers are purple,4,What color are the flowers in the pot sitting on the nurses' station when Alex is standing there,131427,Grey's Anatomy,0.89-7.13,grey_s02e14_seg02_clip_13,The flowers are purple 9389,Dried up bird poop.,Salsa.,Rust and aluminum.,He does not do that.,Sap.,2,What does Sheldon scrape off the van after Howard's work on the lug nut?,131428,The Big Bang Theory,48.27-55.12,s09e03_seg02_clip_15,Rust and aluminum. 9390,Castle calls for a cab.,Castle hugs Meredith.,Castle stares at the purse in concentration.,Castle offers to take Meredith to dinner.,Castle runs from the room.,2,How does Castle react to the purse being fake after Meredith's deduction?,131429,Castle,61.7-67.1,castle_s01e06_seg02_clip_10,Castle stares at the purse in concentration. 9391,Watching football,Playing videogames,Watching basketball,Drinking beer,Eating pizza,1,What are Taub and Foreman doing when sitting on the couch?,131430,House M.D.,21.61-38.41,house_s07e12_seg02_clip_15,Playing videogames 9392,At the floor,At Thirteen,At the door,At the ceiling,At House,4,Where does Jason keep the gun pointed after he and the hostages are on the elevator?,131431,House M.D.,76.13-86.02,house_s05e09_seg02_clip_16,At House 9393,Raj throws his controller.,Raj takes a sip of water.,Raj falls asleep.,Raj eats a piece of pizza.,Raj hugs Sheldon.,1,What does Raj do before Penny walks into the apartment?,131432,The Big Bang Theory,29.37-32.22,s03e10_seg02_clip_02,Raj takes a sip of water. 9394,hungry,angry,sad,nervous,ill,3,How do Amy and Sheldon feel when they are talking in bed?,131433,The Big Bang Theory,8.93-25.39,s09e11_seg02_clip_16,nervous 9395,Raj walked out the door.,Raj asked Agent Page for a date.,Raj asked if Agent Page like Buffy the Vampire Slayer.,Raj gestured for Agent Page to enter the apartment.,Raj called Sheldon on the phone.,3,What did Raj do after Agent Page asked if she could come in?,131434,The Big Bang Theory,28.68-33.56,s04e07_seg02_clip_00,Raj gestured for Agent Page to enter the apartment. 9396,Monica reminds Rachel that she pushed Ross down. ,Monica remembers Rachel started a rumor about Ross. ,Monica admits Rachel got Ross suspended. ,Monica remembers Rachel always calling Ross nasty names. ,Monica recalls Rachel breaking Ross' heart in high school. ,1,Why does Monica disagree with Rachel after Rachel claims she's never done anything to hurt Ross in high school?,131435,Friends,13.13-24.65,friends_s08e09_seg02_clip_14,Monica remembers Rachel started a rumor about Ross. 9397,Beckett is in the trunk,Beckett is in the front passenger seat.,Beckett is in the driver's rear seat.,Beckett is in the passenger rear seat.,Beckett is in the driver's seat.,4,Where is Beckett in the car when it is under water?,131436,Castle,16.35-27.26,castle_s04e16_seg02_clip_01,Beckett is in the driver's seat. 9398,Leonard,Raj,Howard,Sheldon ,Penny,3,Who is still awake when everyone else is passed out?,131437,The Big Bang Theory,17.18-19.97,s05e19_seg02_clip_16,Sheldon 9399,So the can take out the floor for senior swim.,So they can have the intramural basketball championship game.,So they can have their senior cooking class.,So they can have their senior wheelchair exercise class.,So they can have their weekly teen night dance.,0,Why does Monica say they will have to be out by a certain time after Rachel tells her they will have to be married at the rec center?,131438,Friends,14.31-20.49,friends_s07e02_seg02_clip_12,So the can take out the floor for senior swim. 9400,A folder of documents,A box,A bag of food,A coat,A rifle ,3, What was Castle carrying in his left arm when walking in behind Beckett?,131439,Castle,0-6.24,castle_s07e17_seg02_clip_14,A coat 9401,His mother,The police,A stripper,Art critics,Clients,4,Who did Mr. Druthers say would be there at any minute after an object was place in front of him at the table?,131440,How I Met You Mother,28.71-32.55,met_s02e06_seg02_clip_15,Clients 9402,The wedding is soon.,Their wedding is falling apart.,The dress is finished.,Lannie called.,The wedding is beautiful.,1,What did Beckett say to Castle after talking to Lanie?,131441,Castle,38.01-52.74,castle_s06e23_seg02_clip_15,Their wedding is falling apart. 9403,Sitting in a chair in the office,Walking around the cafeteria,Hiding under the operating table,Hailing a cab outside the hospital,Lying on a table for an MRI,4,Where is the patient when he starts to have a seizure?,131442,House M.D.,10.01-18.98,house_s07e14_seg02_clip_16,Lying on a table for an MRI 9404,The bed.,The top of the fridge.,The coffee table.,The couch.,The counter.,4,Where did Phoebe put her handbag before she took of her coat?,131443,Friends,39.63-45.98,friends_s04e09_seg02_clip_12,The counter. 9405,House's cane turns into a sledge hammer,House's cane turns into a sword,House's cane turns into a gun,House's cane turns into baton,House's cane turns into an umbrella,2,What does House's cane turn into before he sees Taub coming down the hall,131444,House M.D.,55.63-65.35,house_s07e15_seg02_clip_11,House's cane turns into a gun 9406,Beckett want to kiss it goodbye.,Beckett wants to put it in the ground.,Beckett wants to have it picked up.,Beckett wants to nail it shut.,Beckett wants to have a party.,3,What did Beckett want to do next after she said they found Nina's coffin?,131445,Castle,37.57-40.25,castle_s08e10_seg02_clip_11,Beckett wants to nail it shut. 9407,He says they will laugh at him,He says they won't respect him,He says they will be jealous of him,He says they will undermine his authority,He says they will try to sabotage his work,1,How does Foreman say his colleagues will relate to him now when he discusses the matter with Cuddy?,131446,House M.D.,33.12-37.21,house_s06e10_seg02_clip_05,He says they won't respect him 9408,Ross goes to the store,Ross goes outside,Ross goes to see Rachel,Ross falls down,Ross jumps up and down,2,What does Ross do after he complains to Monica about not being a big part of the wedding?,131447,Friends,9.81-20.55,friends_s10e12_seg02_clip_12,Ross goes to see Rachel 9409,Her twins.,Her daughter.,Her son.,Her triplets.,He quadruplets.,1,Who did House say had only maternal DNA when he was discussing the patients tests results?,131448,House M.D.,62.12-66.17,house_s05e11_seg02_clip_17,Her daughter. 9410,He cover the food,He put the food in the trash,He put the food in the refrigerator,He put the food in his mouth,He put the food in a box,3,What did Sheldon do after he cut his food?,131449,The Big Bang Theory,16.47-18.24,s09e10_seg02_clip_11,He put the food in his mouth 9411,That Elena donate a kidney to her sister,That Elena visit her sister,That Elena try and be happier,That Elena get more rest,That Elena gets her blood levels checked,0,What does Masters ask of Elena when the two are talking?,131450,House M.D.,0-11.52,house_s07e12_seg02_clip_15,That Elena donate a kidney to her sister 9412,Amnesia.,Syphilis.,Jaundice.,Heart disease.,Diabetes.,0,What disease did Chandler say they could get when he wves his hand? ,131451,Friends,2.43-8.1,friends_s02e10_seg02_clip_05,Amnesia. 9413,Green.,Red.,Blue.,Clear.,Purple.,0,What color is the cleaner that Howard is using when he's cleaning the couch cushion?,131452,The Big Bang Theory,44.56-59.02,s02e16_seg02_clip_05,Green. 9414,Phoebe tells Joey to give it to Monica.,Phoebe says she would like one.,Phoebe asks what a cruller is.,Phoebe compares his question asking if anyone would like a phallic-shapped man-cakes.,Phoebe says she is allergic.,3,What does Phoebe do when Joey asks if anyone would like a cruller?,131453,Friends,4.93-14.22,friends_s02e19_seg02_clip_02,Phoebe compares his question asking if anyone would like a phallic-shapped man-cakes. 9415,Gloria stops Sarah.,Gloria likes Sarah.,Gloria travels with Sarah.,Gloria called Sarah.,Gloria kills Sarah.,4,What was saying Beckett to Castle about Sarah when talking in the hallway?,131454,Castle,0.9-7.63,castle_s03e18_seg02_clip_16,Gloria kills Sarah. 9416,George says he may cut out early to visit his kids.,George says he may cut out early to go fishing.,George says he may cut out early to go to bed.,George says he may cut out early to check up on the boat.,George says he may cut out early because the boat is making him sick.,3,Why does George say he might leave the party early when talking to Zoey and Ted?,131455,How I Met You Mother,0-26.07,met_s06e08_seg02_clip_03,George says he may cut out early to check up on the boat. 9417,hat,jacket,teddy bear,cat,bag,1,What did Sheldon grab off his chair while talking to Penny and Leonard before exiting the apartment?,131456,The Big Bang Theory,26.41-36.31,s09e08_seg01_clip_00,jacket 9418,Penny doesn't love Leonard anymore. ,Penny is embarrassed and doesn't want Leonard to see her in the condition she is in. ,Penny just wants to be single again. ,Penny doesn't want to go on the trip. ,Penny loves Sheldon and not Leonard. ,1,Why doesn't Penny want Leonard in the bathroom after she vomits?,131457,The Big Bang Theory,36.02-38.69,s03e15_seg02_clip_14,Penny is embarrassed and doesn't want Leonard to see her in the condition she is in. 9419,They were at a cafe,They were at Leonard's apartment,They were at Howard's house,They were are at a resturant,They were at a school function,3,"Where are Penny, Leonard, Howard, and Bernadette when Leonard went under the table?",131458,The Big Bang Theory,0-9.44,s06e16_seg02_clip_08,They were are at a resturant 9420,Ross is working on the native american exhibit.,Ross is working on the paleo age exhibit.,Ross is working on the viking exhibit.,Ross is working on the stone age exhibit.,Ross is working on the ice age exhibit.,3,What exhibit is Ross working on when Carol comes to see him?,131459,Friends,10.68-16.78,friends_s01e02_seg02_clip_01,Ross is working on the stone age exhibit. 9421,The Whiteboard,The Table,A chair ,The Glass window,The Sink,0,What did House briefly lean up against before he asked Wilson for his keys ,131460,House M.D.,0-9.73,house_s03e16_seg02_clip_17,The Whiteboard 9422,On the bar behind Rachel,On the table in front of Phoebe,On the table in front of Ross,On the accent table by the front door,There was no black and white polka dot mug,2,Where was the black and white polka dot mug sitting when Ross and Phoebe were talking?,131461,Friends,7.64-9.4,friends_s08e10_seg02_clip_01,On the table in front of Ross 9423,Everyone is celebrating the Thanksgiving holiday.,Everyone is celebrating the Christmas holiday.,Everyone is celebrating the Easter holiday.,Everyone is celebrating the Fourth of July holiday.,Everyone is celebrating the Labor Day holiday.,0,What holiday is everyone celebrating when gathered at Monica's apartment?,131462,Friends,5.6-9.63,friends_s03e09_seg01_clip_00,Everyone is celebrating the Thanksgiving holiday. 9424,She gets into the elevator with Chase.,She tells him that she won't do it.,She goes to grab a sandwich.,She gets in her car.,She waves down a taxi.,0,What does Dr. Cameron do after House tells her to check the girl's house?,131463,House M.D.,66.14-67.44,house_s03e19_seg02_clip_05,She gets into the elevator with Chase. 9425,I'm very likeable ,That doesn't surprise me,I feel very comfortable around you too. ,of course you do it's me,That's weird,2,What did Beverley say after Sheldon told her he feel comfortable around her?,131464,The Big Bang Theory,0-53.95,s02e15_seg02_clip_12,I feel very comfortable around you too. 9426,From the table,From the drawer,From the shelf,From her bag,From the bin,1,Where was Cameron picking some thing when House talked to him about Wilson,131465,House M.D.,9.4-20.69,house_s05e01_seg02_clip_09,From the drawer 9427,A bike helmet.,A fireman's helmet.,A baby bonnet.,A baseball cap.,A woman's bonnet.,4,What type of hat does Chandler wear after popping up from the cardboard box?,131466,Friends,35.36-44.04,friends_s08e19_seg02_clip_04,A woman's bonnet. 9428,Castle screams at Beckett.,Castle is relieved the embarrassment is over.,Castle fall on the desk.,Castle cries.,Castle hugs Ryan.,1,When Gates walks out the door after returning the valentine's gift what does Castle do after?,131467,Castle,50.06-63.47,castle_s05e14_seg02_clip_26,Castle is relieved the embarrassment is over. 9429,At a coffee shop,In the kitchen,In the bathroom,Next to the staircase,In a tub,3,Where is Castle standing when he is talking to Becker?,131468,Castle,0-12.82,castle_s02e04_seg02_clip_11,Next to the staircase 9430,He puts his phone up to his ear. ,He gets up and walks to the kitchen. ,He picks up a newspaper. ,He smiles. ,He drinks wine. ,3,What does Castle do after Alexis tilts her head when she is sitting next to him?,131469,Castle,2.99-5.53,castle_s04e13_seg02_clip_27,He smiles. 9431,Sitting down,Talking to his mother,Talking to his father,Talking to his grand mother,Eating a pizza,0,What was Ross doing when was talking to Monica?,131470,Friends,0-6.3,friends_s07e11_seg02_clip_17,Sitting down 9432,Penny.,Leonard.,Howard.,Raj.,Zack.,4,Who did Sheldon pick as a candidate for playing Superman when the guys were looking at comics?,131471,The Big Bang Theory,32.62-47.32,s04e11_seg02_clip_04,Zack. 9433,Monica walks away.,Monica is surprised at Phoebe's suggestion to lie to Chandler.,Monica kisses Chandler.,Monica punches Phoebe.,Monica call for a cab.,1,When Phoebe whispers to Monica how does she react after?,131472,Friends,4.9-9.79,friends_s05e23-24_seg02_clip_05,Monica is surprised at Phoebe's suggestion to lie to Chandler. 9434,The elderly man gives House a $100 bill.,The elderly man gives House his phone number.,The elderly man gives House a picture of his wife.,The elderly man gives House a DVD.,The elderly man gives House a copy of his medication.,0,What does the elderly gentleman in the tan jacket give to house before before he mentions the blood work?,131473,House M.D.,15.1-19.1,house_s07e02_seg02_clip_14,The elderly man gives House a $100 bill. 9435,Joey recalls his own reviews,Joey recalls his childhood,Joey recalls his lunch the other day,Joey recalls his mother,Joey recalls his school days,0,What does Joey recall after he sees the newspaper?,131474,Friends,26.51-36.75,friends_s08e21_seg01_clip_00,Joey recalls his own reviews 9436,He dropped a cup.,He took a shower.,He turned off the light.,He went into the kitchen.,He ate the pickled herring.,4,What did Marshall do after we see the groom saying to baby bump its granddaddy is that guy?,131475,How I Met You Mother,44.42-51.92,met_s06e06_seg02_clip_10,He ate the pickled herring. 9437,The cancellation of Firefly. ,The fact others are stupid.,Not being able to figure out Nuclear fission.,Having his copy of X-Men 1 get accidentally destroyed.,"When other people can't use ""there"", ""their"", and ""they're"" properly.",1,What does Sheldon say makes him sad after Penny starts to cry?,131476,The Big Bang Theory,0-23.11,s03e10_seg02_clip_14,The fact others are stupid. 9438,Rachel gets up from the couch first.,Julie gets up from the couch first.,Ross gets up from the couch first.,Chandler gets up from the couch first,Monica gets up from the couch first.,3,Who gets up from the couch first when the gang is getting ready to leave?,131477,Friends,7.67-59.03,friends_s02e04_seg02_clip_14,Chandler gets up from the couch first 9439,Monica,Phoebe,Julie,Gunther,Susan,2,Who is talking to Rachel when they are on the couch?,131478,Friends,3.33-13.31,friends_s02e02_seg02_clip_19,Julie 9440,Mr. Harris thought Sara forgot about it.,Mr. Harris thought Sara let him have it.,Mr. Harris thought Sara was trying to ditch the phone.,Mr. Harris thought Sara dropped it.,Mr. Harris thought Sara wanted him to look through it.,3,Why did Mr. Harris think Sara's phone was in his room when she came to visit him?,131479,Castle,2.55-5.1,castle_s01e02_seg02_clip_19,Mr. Harris thought Sara dropped it. 9441,Darryl Meeks,Maury Povich,her mom,to a number matched to someone on Tinder,to a pizza place on 5th ave,0,Who was Ann's last phone call to after examining her phone records?,131480,Castle,19.81-40.51,castle_s05e20_seg02_clip_07,Darryl Meeks 9442,Partner of richie,Richie,No one,madonna,Elise resner,4,Who did ryan say claimed to be with an insurance company when they went to talk to jody?,131481,Castle,21.41-25.96,castle_s07e19_seg02_clip_23,Elise resner 9443,It's fake,It's bloody,It's stolen,It's just like hers,It's been fired,0,What does Beckett notice about the gun after pulling it from the gun holster?,131482,Castle,34.66-40.51,castle_s03e07_seg02_clip_01,It's fake 9444,A feather.,The tag from her jacket.,Her shirt collar.,A scarf.,The hood of her sweatshirt. ,4,What was sticking out the top of Beckett's jacket before she left out the interrogation room?,131483,Castle,18.32-23.36,castle_s04e22_seg02_clip_11,The hood of her sweatshirt. 9445,Tray.,Chinese food.,Fork.,Cup of wine.,Sing a song.,2,What holds Sheldon when Howard talks?,131484,The Big Bang Theory,5.55-85.38,s08e05_seg01_clip_01,Fork. 9446,Cry.,Burps.,Blocks Ryan's attack and punches.,Dance.,Laugh.,2,"What does Castle do after Ryan says, first lesson?",131485,Castle,55.05-59.08,castle_s04e14_seg02_clip_05,Blocks Ryan's attack and punches. 9447,muscle relaxer,potassium,saline solution,ergonovine,Adavan,3,What drug did Cameron inject the patient with when she was trying to assess his heart attack?,131486,House M.D.,19.36-36.01,house_s03e08_seg02_clip_04,ergonovine 9448,Rachel got up and walk away,Rachel hug Ross,Rachel agree with Ross,Rachel shake Ross hand,Rachel got up yelling talking to Rachel,4,What did Rachel do when Ross will not listen to her about their marriage?,131487,Friends,37.72-47.47,friends_s06e01_seg02_clip_14,Rachel got up yelling talking to Rachel 9449,His brother.,A random man.,A friend.,A man who he saw a mug shot of who is a person of interest.,Esposito.,3,What person does Ryan see that he remembers when he is looking in the crowd?,131488,Castle,79.81-101.02,castle_s07e18_seg02_clip_02,A man who he saw a mug shot of who is a person of interest. 9450,Classified.,Obituaries.,Front Page.,Comic section,Crossword puzzle.,1,Which section was Phoebe reading when Gunther saw her holding the newspaper?,131489,Friends,3.82-7.63,friends_s10e15_seg02_clip_00,Obituaries. 9451,at the hospital,in his house,in a burning building,at the liquor store,in jail,2,Where is House when Foreman and Wilson are at his house?,131490,House M.D.,18.92-30.08,house_s08e22_seg02_clip_11,in a burning building 9452,His lunch,A cup of coffee,A file,His coat,Nothing,2,What is Vikram holding when he walks into the room,131491,Castle,49.62-59.55,castle_s08e07_seg02_clip_06,A file 9453,60%.,40%.,50%.,30%.,20%.,2,How much did House say was House's cut in the bets on who would be fired when Foreman asked him?,131492,House M.D.,68.98-72.3,house_s04e05_seg02_clip_26,50%. 9454,Joey was eating a cheeseburger.,Joey was eating Chinese Food.,Joey was eating a pop tart.,Joey was eating french fries.,Joey was eating a steak.,1,What was Joey eating when talking to Rachel.,131493,Friends,15.64-59.03,friends_s03e17_seg02_clip_01,Joey was eating Chinese Food. 9455,Foreman read about the technique in a medical journal. ,Foreman had tried everything else and was out of options. ,Foreman had asked Chase and that's what Chase said. ,Foreman remembered House saying something about this technique. ,"Foreman said that because the patient was losing blood, he gave the patient blood. ",4,Why did Foreman say he gave a blood transfusion when House asked if he needed a transfusion?,131494,House M.D.,18-23.41,house_s02e06_seg02_clip_20,"Foreman said that because the patient was losing blood, he gave the patient blood. " 9456,Went to eat,fall down,"asked Heather, what do you like?",stared at Heather,"Leave the room, and wait on Izzy",4,"What did Bailey do, after Heather said ""I like it"" ?",131495,Grey's Anatomy,19.22-27.52,grey_s03e12_seg02_clip_03,"Leave the room, and wait on Izzy" 9457,A cat,A purse,A dummy,An X Ray,A toy,3,What is Sheldon holding when he walks towards the door?,131496,The Big Bang Theory,0-5.12,s02e15_seg02_clip_12,An X Ray 9458,her jaw becomes heavy when she speaks,she falls asleep ,she has a seizure ,she dies ,her foot falls off,0,what happens to chases girlfriend when they are talking,131497,House M.D.,51.76-65.27,house_s08e12_seg02_clip_21,her jaw becomes heavy when she speaks 9459,The mayor,The chief,The husband,The trashman,Uniforms,4,Who did Becket say was bringing in the cellphone after Castle asked if she found the phone?,131498,Castle,43.22-58.9,castle_s02e03_seg02_clip_20,Uniforms 9460,Rachel is holding a magazine.,Rachel is holding a book.,Rachel is holding a coffee mug.,Rachel is holding her purse.,Rachel is holding a pastry. ,1,What is Rachel holding when talking to Monica and Phoebe about her life?,131499,Friends,0-6.4,friends_s02e19_seg02_clip_04,Rachel is holding a book. 9461,Pittance.,Putin.,Putane.,Prutame.,Pitain.,4,What does Ross say the professor's name is when correcting Rachel?,131500,Friends,7.44-12.1,friends_s03e14_seg02_clip_15,Pitain. 9462,90,80,82,78,92,2,How old does Wilson tell House his admirer is after reciting a poem the admirer wrote? ,131501,House M.D.,23.1-32.25,house_s01e08_seg02_clip_08,82 9463,Baby supplies,Furniture to redecorate,Some new books,For some new shoes,Clothes for Ross,0,What is Rachel and Ross shopping for when they're at the store?,131502,Friends,47.91-54.01,friends_s08e21_seg02_clip_02,Baby supplies 9464,He sits on the back of the sofa.,He tells her to get on with it.,He touches her shoulder.,He talks to Howard.,He smiles at her.,2,What does Leonard do after he says Penny's name?,131503,The Big Bang Theory,0.93-3.41,s06e19_seg02_clip_14,He touches her shoulder. 9465,Grabbed his head.,Sat down.,Took off his coat. ,Stood up.,Took off his hat.,1,What did Frank Sr. do when he said oh my God? ,131504,Friends,3.1-6.82,friends_s05e13_seg02_clip_17,Sat down. 9466,She says the guy was a jerk,She says she though the guy was a player,She says the guy was cheap ,She says the guy had bad teeth,She says the guy had bad breath,1,What did Jen do when asked why her date went wrong?,131505,How I Met You Mother,14.9-20.86,met_s05e02_seg02_clip_12,She says she though the guy was a player 9467,Their phone.,The ice cream.,Their microphone.,A baton,Their pants.,3,What did Monica say someone dropped before she tasted her food? ,131506,Friends,46.13-53.67,friends_s10e08_seg02_clip_01,A baton 9468,Have a date,Go out to a restaurant,Go to the hospital,Go to the doctor's office,Meet his sister,0,What does Ross plan to do after he leaves the coffee house,131507,Friends,14.41-36.32,friends_s03e12_seg02_clip_18,Have a date 9469,outstanding,funny,extreme,rough,sad,0,How did House describe Wilson's bedside manner after Taub heard Cuddy's child laughing?,131508,House M.D.,43.25-61.12,house_s07e05_seg02_clip_14,outstanding 9470,Alex's dad says he gave her an herbal detoxifying tea.,Alex's dad says he gave her some oxy.,Alex's dad says he gave her a few tylenol.,Alex's dad says he gave her some of his pain pills.,Alex's dad says he gave her one valium.,4,What does Alex's dad tell House he gave her when House is diagnosing her condition?,131509,House M.D.,14.76-20.58,house_s02e13_seg02_clip_02,Alex's dad says he gave her one valium. 9471,take off her surgery robe,take her cap off,take off her gloves,trips on the floor,hugs alex,0,what does izzie do after leaving a room and finding meredith?,131510,Grey's Anatomy,14.86-24.04,grey_s02e06_seg02_clip_03,take off her surgery robe 9472,Alexis suggested that she could move in to Beckett's home so she could be Beckett's full-time personal assistant.,Alexis promised Beckett that she would take Beckett to get a complete makeover to look like a real State Senator.,"Alexis told Beckett that she would look after her man, Castle.",Alexis said that she would become a surrogate mother for Beckett's baby was too busy to be pregnant.,Alexis told Beckett she would help with her campaign.,4,What did Alexis tell Beckett that she would do for Beckett when the group was discussing the possibility of Beckett running for State Senator?,131511,Castle,35.42-38.7,castle_s07e23_seg02_clip_27,Alexis told Beckett she would help with her campaign. 9473,emails,mugshots,addresses,clipboard,laptop,3,What is Beckett holding in her hand when discussing the difficulty of finding a suspect?,131512,Castle,64.88-73.16,castle_s04e19_seg02_clip_06,clipboard 9474,Beckett is looking at a photgraph.,Beckett is looking at a book.,Beckett is looking at her cell phone.,Beckett is looking at a brochure.,Beckett is looking at a duffel bag.,2,What is Beckett looking at before they head out?,131513,Castle,73.72-76.46,castle_s07e23_seg02_clip_00,Beckett is looking at her cell phone. 9475,Cleaning the oven,Sweeping the floor,Cleaning the windows,Cleaning out the fridge,Eating leftovers ,3,What is Raj doing when he is in Howard's kitchen?,131514,The Big Bang Theory,6.51-12.41,s08e23_seg02_clip_11,Cleaning out the fridge 9476,Howard exit the living room.,Howard cleaned the floor.,Howard cooked a pizza.,Howard took a bottle from the refrigerator.,Howard grab a phone.,3,What did Howard when Leonard is sitting on the couch?,131515,The Big Bang Theory,7.05-58.79,s01e15_seg02_clip_13,Howard took a bottle from the refrigerator. 9477,A medical journal,A coloring book,A dictionary,A brunch menu,A bible ,1,What is House reading when Foreman walks in to the room ,131516,House M.D.,49.29-55.9,house_s01e10_seg02_clip_09,A coloring book 9478,Wealthiness,Love,String Theory,Getting a promotion,Happiness,2,What does Sheldon say he has up on when he is talking to Leonard?,131517,The Big Bang Theory,39.05-61.02,s07e21_seg01_clip_00,String Theory 9479,She wasn't involved even after everything she did.,The blonde woman was a guilty suspect because she had access to the encryption system and overseas contacts.,The blonde was in love with Bronson according to Beckett.,She knows the code for the encrypted system.,The blonde wanted revenge on Bronson.,2,How is the blonde woman connected to Bronson based on what Beckett says when speaking to Mccord?,131518,Castle,5.6-15.95,castle_s06e01_seg02_clip_24,The blonde was in love with Bronson according to Beckett. 9480,He hasn't been to a wedding in 10 years,He doesn't Dance at weddings,Weddings make him feel lonely,Weddings are too expensive,Weddings are too much work,1,What does Chandler say about weddings when he is talking to Rachel?,131519,Friends,38.12-44.72,friends_s04e20_seg02_clip_08,He doesn't Dance at weddings 9481,He saw her shooting one in the alley,He saw it in her locker,He bases his hunch off of her past job,She got an email from the NRA,She's got one tucked behind her waistband,2,How does Chase deduce that Adams owns a gun when he asks her if she owns one?,131520,House M.D.,13.35-37.84,house_s08e08_seg02_clip_09,He bases his hunch off of her past job 9482,muffin,flowers,plate,tissues,coffee mug,4,What is Monica carrying when she walks over to Rachel on the couch?,131521,Friends,31.54-36.71,friends_s04e21_seg02_clip_18,coffee mug 9483,2 nights.,1 night.,A few nights.,A couple of days.,1 days.,1,How long does Rachel say they have to lie about their situation after Ross's mother said she told all their friends they were married?,131522,Friends,52.22-58.03,friends_s08e18_seg02_clip_04,1 night. 9484,He had to pay it back to a loan shark.,He had dropped it in the street.,He lost it gambling.,He gave it to his mistress.,He spent it on a new car. ,2,"How did Bob lose the $10,000 after he took it from the Harvest Scholarship fund?",131523,House M.D.,54.76-68.02,house_s08e05_seg02_clip_14,He lost it gambling. 9485,Lily slaps Barney because he broke Nora's heart.,Lily slaps Barney because he's not really sick.,Lily slaps Barney because he didn't tell her he was sick.,Lily slaps Barney because he was hitting on the doctor.,Lily slaps Barney because she found out he lied to Nora.,4,Why does Lily slap Barney when he's in the hospital?,131524,How I Met You Mother,9.9-44.72,met_s06e18_seg02_clip_04,Lily slaps Barney because she found out he lied to Nora. 9486,Howard is referring to the game Dungeons & Dragons,Howard is talking about Dunkin Doughnuts,Howard is abbreviating the phrase Down & Dirty ,"Howard is referring to the restaurant-arcade, Dave & Buster's. ",Howard is abbreviating the title of the movie Dumb and Dumber. ,0,"What does Howard mean when he says ""D&D?""",131525,The Big Bang Theory,9.9-34.51,s06e23_seg02_clip_06,Howard is referring to the game Dungeons & Dragons 9487,He gets a water bottle. ,He sits down on the floor. ,He lays down on the floor. ,He sits down on the couch with Penny and Leonard. ,He makes something to eat. ,3,What does Howard so after he walks in the front door?,131526,The Big Bang Theory,54.71-59.34,s03e04_seg02_clip_10,He sits down on the couch with Penny and Leonard. 9488,Murder weapon.,A photographic.,Footage.,A sketch of Fulton.,Fulton's fingerprints. ,2,"What does Beckett show to Fulton after Castle asks Fulton where he was on April 27th, 2008?",131527,Castle,24.76-36.01,castle_s06e21_seg02_clip_22,Footage. 9489,That he was so grateful for their friendship.,That there was more he needed to confess.,That he was donating money to a charity.,That he wanted to have a big party.,That he wanted all of them to be as lucky as him. ,1,What did Bob say after Denise thanked everyone for coming?,131528,House M.D.,10.2-28.57,house_s08e05_seg02_clip_14,That there was more he needed to confess. 9490,Lesley says there was no arousal.,Lesley says there was no passion.,There was no kiss.,"Lesley says the kiss lacked ""a certain fire"".",Lesley says there was no excitement in the kiss.,0,What does Lesley say there was none of when Leonard asked about the kiss?,131529,The Big Bang Theory,0-21.31,s01e03_seg02_clip_05,Lesley says there was no arousal. 9491,Barney hasn't slept in weeks.,Barney is bored.,It's five o'clock in the morning.,Barney was just diagnosed with Narcolepsy ,Barney just ate a huge turkey dinner.,1,Why does Barney fall asleep when Ted is teaching him in the classroom.,131530,How I Met You Mother,5.45-19.98,met_s05e03_seg02_clip_07,Barney is bored. 9492,How to build a perpetual motion machine.,How to make nuclear fission a reality.,He's attempting to learn why subatomic particles move the way they do,How to cure pancreatic cancer.,A chemical formula for a brand new adhesive.,2,What does Sheldon say that Leonard does after he sits down on the couch?,131531,The Big Bang Theory,32.11-38.11,s03e10_seg02_clip_14,He's attempting to learn why subatomic particles move the way they do 9493,blue,grey,Black,white,red,2,"What color is the shirt House is wearing when he say's ""You're late.""?",131532,House M.D.,0-9.89,house_s08e05_seg02_clip_01,Black 9494,Six figures,Seven Figures,Twelve million,Eight figures,Four figures ,0,How much did Gilliam say the painting was worth when discussing transport commissions with Ryan and Esposito?,131533,Castle,12.87-21.29,castle_s08e05_seg02_clip_12,Six figures 9495,A funeral home.,At home.,A bar.,A park.,The subway.,2,Where was the gang at 2:36 am when they were listening to Carl speak?,131534,How I Met You Mother,26.6-31.7,met_s02e14_seg02_clip_02,A bar. 9496,Roy says he doesn't need this and that he is out,Roy doesn't say anything ,Roy tells Phoebe he doesn't need her business,Roy just leaves without saying anything,There is no one there named Roy,0,What does Roy say when he is bothered by Phoebe's reaction to him?,131535,Friends,9.14-11.61,friends_s10e11_seg02_clip_12,Roy says he doesn't need this and that he is out 9497,A Vote for Barney sign,A sword,A for rent sign,A blue flag,"A sign that said ""Loser""",3,What did Little Barney stick into Stacy's lip after Ted first saw him?,131536,How I Met You Mother,13.32-18.16,met_s03e04_seg02_clip_12,A blue flag 9498,Foreman tells Cameron that the patient's parents are both negative for hantavirus.,Foreman tells Cameron that the patient's parents are both negative for bronchitis.,Foreman tells Cameron that the patient's parents are both negative for strep.,Foreman tells Cameron that the patient's parents are both negative for small pox.,Foreman tells Cameron that the patient's parents are both negative for malaria.,2,What disease does Foreman tell Cameron the patient's parents are negative for after he enters the MRI examining booth?,131537,House M.D.,59.51-64.26,house_s02e22_seg02_clip_03,Foreman tells Cameron that the patient's parents are both negative for strep. 9499,Like a mechanical snowman.,It looks like something she had nightmares about last night.,It resembles her uncle on her father's side.,Like a hunk of junk taking up room in the apartment.,She said it looked like something Elton John would drive through the Everglades.,4,What did Penny say about the time machine when she came through the door?,131538,The Big Bang Theory,3.54-6.79,s01e14_seg02_clip_07,She said it looked like something Elton John would drive through the Everglades. 9500,Cuddy demanded House do something creative until they land.,House is bored and looking for something to distract himself.,House is trying to impress Cuddy in hopes of a date.,House is trying to figure out what is killing Peng.,Foreman challenged House to a game of poker.,3,Why did House detail out information about Peng after watching Peng?,131539,House M.D.,37.51-50.67,house_s03e18_seg02_clip_19,House is trying to figure out what is killing Peng. 9501,Green,Black,Yellow,Red,Purple,0,What color top was Robin wearing when the waitress put the pitcher of beer on the table?,131540,How I Met You Mother,5.71-11.73,met_s03e11_seg01_clip_02,Green 9502,Gives Sheldon a kiss,Turns out the light,Closes the curtain,Gives Sheldon a hug,Opens the curtains,2,What does Amy do before she leaves the bedroom when Sheldon is sitting on the bed?,131541,The Big Bang Theory,32.16-41.07,s10e04_seg02_clip_09,Closes the curtain 9503,Ross really wanted to pound Big Bully's face in.,Ross worked really hard to have great skin.,"Ross was having flashbacks to when his teeth were punched in as a child, and wants to minimize chances of that happening again.",Ross did not want his face to look black and blue because he had a work presentation the next day.,Ross is very susceptible to nosebleeds.,3,Why did Ross ask whether hitting faces were within fight rules before throwing down?,131542,Friends,47.22-59.03,friends_s02e21_seg02_clip_18,Ross did not want his face to look black and blue because he had a work presentation the next day. 9504,A bunny,A purse,A coat,A rifle,A fur,1,What does the girl have on her arm when talking to Ted in the bar,131543,How I Met You Mother,5.88-12.07,met_s03e18_seg02_clip_13,A purse 9505,leaning over cameron,sitting at the table,over at his desk,over getting coffee,standing at the window. ,3,where is chase after foreman approaches House?,131544,House M.D.,23.86-34.66,house_s02e13_seg02_clip_08,over getting coffee 9506,Leonard is carrying a bag that is white,Leonard is carrying a bag that is black,Leonard is carrying a bag that is blue,Leonard is carrying a bag that is red,Leonard is carrying a bag that is orange,0,What color bag is Leonard carrying when he and Penny are coming up the stairs,131545,The Big Bang Theory,55.26-61.74,s08e24_seg02_clip_00,Leonard is carrying a bag that is white 9507,Rachel smacks Ross. ,Rachel closes the door. ,Rachel throws something at Mona. ,Rachel opens the door. ,Rachel kicks Mona. ,3,What happens after Ross kisses Mona?,131546,Friends,57.33-60.03,friends_s08e08_seg02_clip_16,Rachel opens the door. 9508,A fingerprint,A breath sample,A hair sample,A toenail sample,A blood sample,0,What was sought after when the detectives discuss a taken glass?,131547,Castle,11.4-18.06,castle_s08e10_seg02_clip_20,A fingerprint 9509,Because he asked her if she ever wanted to have kids,Because he asked her if she would babysit Ben while he went to work,Because he asked her to hold him for a minute,Because he finally told her he loved her,Because he asked her if she would support him if he tried to get custody of Ben,2,Why was Rachel uncomfortable after Ross brought Ben into the coffee shop?,131548,Friends,43.94-59.2,friends_s02e20_seg02_clip_07,Because he asked her to hold him for a minute 9510,meredith and goerge go to lunch,meredith and george do a dance,meredith and george do a chest bump,meredith and george do a fist bump,meredith and george sit down and write ,3,how do meredith and george agree after they make a pact?,131549,Grey's Anatomy,32.31-45.06,grey_s03e06_seg02_clip_03,meredith and george do a fist bump 9511,Rachel's hair was in a ponytail.,Rachel's hair was up in a bun.,Rachel's hair was down.,Rachel's hair was in a loose half up do.,Rachel's hair was in pigtails.,2,How was Rachel's hair done when Phoebe started reading her pink book?,131550,Friends,0-13.28,friends_s10e04_seg02_clip_07,Rachel's hair was down. 9512,Chandler put a dounut in his mouth,Chandler put a cigarette in his mouth,Chandler put a lollypop in his mouth,Chandler didn't put anything in his mouth,Chandler put a piece of gum in his mouth,1,What does Chandler put into his mouth after he was with Gunther who was smoking?,131551,Friends,47.59-57.04,friends_s03e18_seg01_clip_00,Chandler put a cigarette in his mouth 9513,At a desk.,At a bar.,On a couch.,At a dining table.,On a recliner.,0,Where was Esposito sitting when he was talking to Castle and Becket?,131552,Castle,2.28-22.3,castle_s03e14_seg02_clip_08,At a desk. 9514,her mother,her sister,her best friend,her boyfriend,her aunt,0,Who did Beckett say she was going to call to get a list of places Mandy likes to go after the police realized Mandy was gone?,131553,Castle,70.09-82.38,castle_s06e13_seg02_clip_16,her mother 9515,Mark was in the 7th grade.,Mark was in the 10th grade.,Mark was in the 11th grade.,Mark was in the 12th grade.,Mark was in the 8th grade.,0,What grade was Bob in when he knew Maria would put out?,131554,House M.D.,42.67-45.44,house_s02e15_seg02_clip_18,Mark was in the 7th grade. 9516,To loan him some money,To take one of his kids,To babysit for him,To bring him to the circus,To give him a ride ,1,What does Frank Jr. ask Phoebe to do for him when they are talking at the coffee house?,131555,Friends,20.36-34.83,friends_s10e02_seg02_clip_12,To take one of his kids 9517,He talks about how Lily and him went on a date,He tells a scenario of how he went to visit Lily's room,He says he got in a car accident,He says he got food poisoning,He says he met a new girl.,1,How does Marshall respond to Robin after he asks his question?,131556,How I Met You Mother,6.29-14.39,met_s02e01_seg02_clip_14,He tells a scenario of how he went to visit Lily's room 9518,Afraid. ,Laughing. ,Crying. ,Despondent.,Angry. ,4,What is Rachel's demeanor when she is talking to Ross? ,131557,Friends,13.28-23.32,friends_s06e05_seg02_clip_17,Angry. 9519,Barney talks to the barman.,Barney talks to a gay.,Barney talks to an African American guy.,Barney talks to a girl.,Barney talks to a group of people.,2,Who is talking Barney when stand in a disco?,131558,How I Met You Mother,3.3-60.05,met_s02e10_seg02_clip_14,Barney talks to an African American guy. 9520,A pizza box and bandages.,A pizza box and a soda can.,A pizza box and a cup.,Two small bottles and bandages.,"A pizza box, soda can, and a cup",4,What was on the table behind Beckett when Castle asked Luca about the credit cards? ,131559,Castle,41.23-45.36,castle_s07e10_seg02_clip_22,"A pizza box, soda can, and a cup" 9521,Rachel is reading,Rachel is mowing a lawn,Rachel is sitting at a table,Rachel is singing,Rachel is dancing,2,What is Rachel doing before Phoebe sits down?,131560,Friends,20.31-26.11,friends_s10e11_seg02_clip_04,Rachel is sitting at a table 9522,Joey tried jumping off the balcony.,Joey tried kissing her.,Joey jumped up and down.,Joey gave her flowers.,Joey went to work.,0,What did Joey do after getting a hug from Rachel ?,131561,Friends,18.89-23.37,friends_s10e16_seg02_clip_13,Joey tried jumping off the balcony. 9523,He tells Adams it will be much easier for her if she chooses to go along with the broad consensus of testimony.,He reminds Adams she will have to take a polygraph test after she finishes answering his questions.,He points out to Adams she has no right of refusal to answer any of his questions.,He says it's understandable given what happened that Adam's opinion might color her testimony.,"He says he admired the guest op/ed piece she had submitted to a local journal regarding his investigation, even though he didn't agree with it.",3,"How does Cofield's questioning of Adams suggest he thinks she might be biased when he asks her to recount all she said, did, and thought at the time?",131562,House M.D.,0-13.23,house_s08e11_seg02_clip_03,He says it's understandable given what happened that Adam's opinion might color her testimony. 9524,Because Carbino is dishonest.,Because maybe Carbino is not telling the true,Because Carbino is a drug dealer.,Because Carbino is insane.,Because Carbino is drunk.,1,Why Beckett did not believe Carbino when he told his version?,131563,Castle,35.5-44.6,castle_s03e01_seg02_clip_15,Because maybe Carbino is not telling the true 9525,Chandler Bing,Ross Geller,Joey Tribiani,Rusty Chakelford,John Rockefeller,1,Who does Ross say his name is when he talks to Rachel,131564,Friends,26.85-32.04,friends_s02e14_seg02_clip_07,Ross Geller 9526,Monica wants to make fun of Ross behind his back.,Monica wants to tell the doctor that Ross has a Ph. D. and knows more about medicine than he does.,Because she wants to tell him about Ross's phobia about needles.,Monica wants to ask for a second opinion.,Monica wants to tell the doctor to be gentle with Ross. ,2,Why does Monica ask to speak to the doctor in private before he gives Ross a shot?,131565,Friends,22.73-40.73,friends_s02e06_seg02_clip_07,Because she wants to tell him about Ross's phobia about needles. 9527,3 firemen,2 police officers,Penny and Raj,A policeman and a fireman,His neighbors,1,Who walks out of Leonard and Sheldon's apartment when Sheldon is worried about his papers being stolen?,131566,The Big Bang Theory,48.93-58.65,s03e13_seg02_clip_01,2 police officers 9528,Their mom doesn't let them anymore,They got too old for that behavior,Ross got too strong for Monica,Ross broke his finger,Monica cheats,2,Why does Ross say he and Monica stopped wrestling when they are talking to Rachel?,131567,Friends,24.97-44.82,friends_s05e10_seg02_clip_11,Ross got too strong for Monica 9529,The suspect's cousin,The suspect's daughter,The suspect's mistress,The suspect's wife,The suspect's landlord,3,What relation to the suspect is discussed when the detectives reference a woman?,131568,Castle,0-6.76,castle_s02e10_seg02_clip_03,The suspect's wife 9530,Two,Zero,Four,Two,Three,3,"How many people are sitting on the couch when Amy says ""Bernadette is a successful microbiologist?""",131569,The Big Bang Theory,41.96-45.95,s08e07_seg01_clip_00,Two 9531,Tom wanted to ask out Monica,Tom thought Monica could do better than Chandler,Tom thought Chandler could do better than Monica,Tom thought Monica was dating Joey,Tom thought Chandler was gay,4,Why does Tom start stuttering after Monica says she is dating Chandler?,131570,Friends,19.22-28.99,friends_s09e17_seg02_clip_19,Tom thought Chandler was gay 9532,Bernadette says yes. ,Bernadette says no. ,Bernadette says it's not a fair comparison. ,Bernadette says never. ,Bernadette says maybe. ,2,How does Bernadette answer after Penny asks her if she feels that way about Howard?,131571,The Big Bang Theory,37.72-40.63,s06e02_seg01_clip_01,Bernadette says it's not a fair comparison. 9533,A cocktail bar,A sports bar,A fancy bar,A dirty bar,A nice bar,1,Where does Ryan say he doesn't want to go with Esposito when they are done watching the video?,131572,Castle,18.75-58.51,castle_s05e02_seg02_clip_26,A sports bar 9534,Raj,Penny,Howard,Amy,Sheldon,1,Who is walking upstairs in the hallway when Ramona leaves the apartment?,131573,The Big Bang Theory,9.28-15.38,s02e06_seg02_clip_16,Penny 9535,25 years old,29 years old,31 years old,27 years old,30 years old,1,How old does Chandler say he is when he's sitting in the coffee shop?,131574,Friends,36.24-38.31,friends_s04e09_seg02_clip_15,29 years old 9536,the ear,the nose,the mouth,the eyes,the butt,1,where did the patient use the neti pot when they used it for health purposes?,131575,House M.D.,55.35-62.79,house_s08e17_seg02_clip_22,the nose 9537,She cut it with an ax.,She cut it while holding it up.,She cut it with a machete.,She ripped it apart with her bare hands.,She cut it on a cutting board.,1,What did Monica do to the drumstick when she told them to cut their food like this?,131576,Friends,16.18-22.82,friends_s09e08_seg02_clip_11,She cut it while holding it up. 9538,Chase says Liver cancer,Chase says Brain cancer ,Chase says Heart attack,Chase says lymphoma,Chase says muscular dystrophy,1,What does Chase say the diagnosis could be before Roy says his luck is getting worse?,131577,House M.D.,35.56-53.11,house_s06e04_seg02_clip_07,Chase says Brain cancer 9539,He straightened his tie.,He stood up.,He ate some pizza.,He took a drink.,He put on his hat.,3,What did Weldon do after he said he would continue being an outstanding mayor for the greatest city on earth?,131578,Castle,66.04-75.98,castle_s04e12_seg02_clip_26,He took a drink. 9540,Penny is sitting on her bed,Penny is sitting on the sofa,Penny is sitting on the stool,Penny is sitting on the bend,Penny is sitting on a cushion on the floor,4,What is Penny sitting on when she is playing her game,131579,The Big Bang Theory,0-14.71,s02e03_seg02_clip_14,Penny is sitting on a cushion on the floor 9541,Take her out to dinner.,Lawyer her.,Buy her a ring.,Buy her a car.,Buy her lunch.,1,How did Marshall say Ted could get a confession from robin before he stepped down into the living room? ,131580,How I Met You Mother,0-8.99,met_s02e09_seg02_clip_09,Lawyer her. 9542,Chase,House,Stacy,Cuddy,Wilson,4,Who walked up behind Cameron when she was reading the test results?,131581,House M.D.,77.92-83.35,house_s02e01_seg02_clip_18,Wilson 9543,she fell down to the floor,she cried,she was angry,she looked up,she left the room,4,"What did Rachel do after she told Monica and Chandler ""you don't have to do it!"" ?",131582,Friends,18.91-26.16,friends_s08e15_seg02_clip_18,she left the room 9544,Locking House in the lab,Testing samples,Giving House a new puzzle,Writing reports,Giving the patient medicine,1,What are Cameron and Wilson doing when House is stoned in the lab?,131583,House M.D.,23.41-33.31,house_s03e04_seg02_clip_10,Testing samples 9545,He grabbed a piece of paper from the board.,He put his cane down.,He sat down.,He opened a drawer.,He sat on the desk.,0,What did House do before Wilson walked in the room?,131584,House M.D.,4.6-8.74,house_s03e08_seg02_clip_06,He grabbed a piece of paper from the board. 9546,hand,foot,head,arm,knee,4,what did castle break after showing off wile skiing with beckett?,131585,Castle,0-20.03,castle_s05e19_seg02_clip_00,knee 9547,She folded her arms.,She sat down,She took off her shirt,She got a cup of coffee,She walked over to the kitchen,0,What does Penny do after telling the guys she won a few wet t-shirt contests drunk?,131586,The Big Bang Theory,7.41-17.2,s06e04_seg02_clip_10,She folded her arms. 9548,Putting paper in her purse.,Reading a magazine.,Drinking coffee.,Eating a bagel.,Reading a book.,0,What was Phoebe doing when Frank Sr. sat on the couch with her?,131587,Friends,41.56-45.59,friends_s05e13_seg02_clip_17,Putting paper in her purse. 9549,Phoebe,Rachel,Monica,Cristina,Anna,0,Who tries to be funny when holding up to rolls to the side of her head when in the coffee shop?,131588,Friends,39.5-47.34,friends_s03e01_seg02_clip_08,Phoebe 9550,House said Margo worked 2 days a week.,House said Margo worked 3 days a week.,House said Margo worked 4 days a week.,House said Margo worked 7 days a week.,House said Margo worked 6 days a week.,3,How many days did House say Margo worked during the week when he was going over her personal life?,131589,House M.D.,40.49-41.87,house_s02e11_seg02_clip_19,House said Margo worked 7 days a week. 9551,facemask,cigar,paint,stickets,food ,0,What was on House face after he enter Nicks hospital room.,131590,House M.D.,56.66-59.06,house_s03e21_seg02_clip_20,facemask 9552,He stared at Wilson,He looked down at his watch,He shook his head and left,He got up and left the room,He opened up his eyes wide,3,What did House do after he said what wisdom is?,131591,House M.D.,12.42-17.02,house_s06e19_seg02_clip_22,He got up and left the room 9553,Alex,Stuart.,Howard.,Amy.,Leonard.,0,Who open the door when Raj exit the store?,131592,The Big Bang Theory,0-41.94,s06e16_seg02_clip_17,Alex 9554,Tell my wife I love her.,Don't worry about me. I'll be fine.,I'm sorry.,Where am I?,My name is Rick.,1,What did Rick say right before he went unconscious?,131593,Grey's Anatomy,0-10.19,grey_s03e15_seg02_clip_24,Don't worry about me. I'll be fine. 9555,Because Monica didn't want her and Ross to look stupid on the dance floor.,Because Monica didn't know how to do the Robot.,Because Ross was a better dancer than Monica and she didn't want him to show her up.,Because Monica got angry that Ross had told Joey she was a clumsy dancer.,Because Ross kept stepping on Monica's toes when he tried to do the Robot.,0,Why did Monica say they should stick to the routine after Ross started dancing the Robot?,131594,Friends,21.1-33.29,friends_s06e10_seg02_clip_15,Because Monica didn't want her and Ross to look stupid on the dance floor. 9556,at the mall,at the threater,out of the country ,at a concert ,he lived alone ,1,Where did Castle say his family was when talking to Scarlott,131595,Castle,58.68-69.97,castle_s02e09_seg02_clip_19,at the threater 9557,he goes to see a patient in his patient's room,he goes to his office,he goes to Wilson's office,he goes to the cafe,he goes to Cuddy's office,0,Where does House go after he was with Kutner and Thirteen in the hospital hallway?,131596,House M.D.,59.65-69.44,house_s04e05_seg02_clip_22,he goes to see a patient in his patient's room 9558,Barney was all the way across the gym from his mother. ,Barney was outside of the gym.,Barney was sitting on the floor of the gym.,Barney was in the middle of the gym.,Barney was standing a short ways away from them in the gym.,4,Where was Barney when his mom was talking to the basketball coach?,131597,How I Met You Mother,8.96-15.69,met_s06e02_seg02_clip_17,Barney was standing a short ways away from them in the gym. 9559,I don't like pancakes.,Are the pancakes good?,You made pancakes?,The pancakes are nice.,The pancakes are delicious.,2,What Joey asked to Candler when enter in the kitchen?,131598,Friends,3.08-7,friends_s03e01_seg02_clip_01,You made pancakes? 9560,Cathy,Foreman,Cuddy ,Chase,Cuddy,4,Who came out and meet with House when he was talking to Ali,131599,House M.D.,60-66.98,house_s03e04_seg02_clip_16,Cuddy 9561,Sniffing under his arm pits. ,An Irish jig. ,Wiping his glasses as his eyes tear up. ,Embracing Howard. ,Opening a door. ,4,"What is Leonard doing when he says,""My first birthday party?""",131600,The Big Bang Theory,46.22-51.93,s01e16_seg02_clip_14,Opening a door. 9562,They were discussing raisin bran.,They were discussing frosted flakes.,They were discussing cheerios.,They were talking about sugar pops.,They were talking about Cap'n Crunch cereal.,4,What kind of cereal was Joey and Chandler talking about when they were eating.,131601,Friends,7.26-66.04,friends_s02e16_seg01_clip_00,They were talking about Cap'n Crunch cereal. 9563,Gives him a cup of coffee,Hands him a chart,Hugs him,Pushes him,Squeezes his shoulder,2,What does Alex do to George after he calls out to him?,131602,Grey's Anatomy,29.06-35.29,grey_s02e01_seg02_clip_23,Hugs him 9564,Sheldon's mom feels scared about it. ,Sheldon's mom feels sad about it. ,Sheldon's mom feels angry about it. ,Sheldon's mom feels excited about it. ,Sheldon's mom feels nervous about it. ,3,How does Sheldon's mother feel after learning that he will be interviewed by NPR?,131603,The Big Bang Theory,49.32-58.02,s03e09_seg02_clip_01,Sheldon's mom feels excited about it. 9565,silver,Gold,bronze,vbs,he has no chain,1,"What color is Eddie""s chain when he says ""I'll swing by tomorrow""?",131604,House M.D.,0-9.79,house_s06e10_seg02_clip_22,Gold 9566,She titled her head sideways,She glared at him,She looked at him with her eyes wide,She shook her head,She looked down,2,"What did Thirteen do when House said ""Dominicka went to AC with her boyfriend.""",131605,House M.D.,4.03-4.48,house_s07e18_seg02_clip_01,She looked at him with her eyes wide 9567,He handed it to him.,He drank a beer.,He threw it at him.,He crumpled it up.,He took off his glasses.,0,What did Chandler do before Ross grabbed the paper?,131606,Friends,2.52-5.6,friends_s07e08_seg02_clip_01,He handed it to him. 9568,Penny laughed that Raj would seek validation from others by bragging about his love life. ,Penny said Raj was a creep for asking. ,Penny agreed that Raj could tell people. ,It was actually Penny who asked Raj if she could talk about it. ,Penny threatened to call the cops if Raj didn't leave. ,2,How did Penny respond after Raj first asked if he could talk about their brief affair? ,131607,The Big Bang Theory,23.95-31.83,s05e01_seg02_clip_11,Penny agreed that Raj could tell people. 9569,They are at the Cheesecake Factory,They are at a bar,They are in the park,They are at the mailboxes,They are at the movies,1,Where is the group when the ladies ask Sheldon about dancing,131608,The Big Bang Theory,0-14.5,s04e21_seg02_clip_09,They are at a bar 9570,nonsense,A ball,Paper airplanes,Jibber jabber ,Crazy theories,4,What did gates say castle likes to throw against the wall when coming up with leads?,131609,Castle,35.25-39.66,castle_s04e08_seg02_clip_13,Crazy theories 9571,Two best friends of Lily and Marshall got together and hope returned to their hearts.,Marshall's two best friends got together and hope returned to his heart.,Lily's two best friends got together and hope returned to his heart.,Two best friends of Lily and Marshall got married and hope returned to their hearts.,Lily and Marshall got together and hope returned to their hearts.,0,What happened when Lily and Marshall were about to give up?,131610,How I Met You Mother,48.65-59.7,met_s05e04_seg01_clip_01,Two best friends of Lily and Marshall got together and hope returned to their hearts. 9572,A pizza,A cake,A menorah ,A bag,A wallet,2,What was Joey holding before he walked into Monica's apartment?,131611,Friends,34.74-40.01,friends_s01e07_seg02_clip_01,A menorah 9573,Rachel's hair was up in a bun.,Rachel's hair was down.,Rachel's hair was in a ponytail.,Rachel's hair was in pigtails.,Rachel's hair was in a side french braid.,1,How was Rachel's hair done when she was talking to Joey?,131612,Friends,0-20.15,friends_s08e07_seg02_clip_12,Rachel's hair was down. 9574,Ryan was anxious,Ryan hadn't slept,Ryan was ill,Ryan needed to clear his head,Ryan was paranoid,3,Why did gates tell ryan to take the rest of the day off when he was in gates's office?,131613,Castle,58.7-63.56,castle_s04e04_seg02_clip_19,Ryan needed to clear his head 9575,anton,antov,gerogolli,ann,Anya,4,who does sergei think is the leak at the russian consulate when talking to beckett?,131614,Castle,45.9-53.62,castle_s08e11_seg02_clip_23,Anya 9576,Down the hall second door on the left.,Down the hall first door on the left.,Down the hall third door on the left.,Down the hall second door on the right,Down the hall first door on the right.,0,Where did Joshua say the bathroom was after Rachel asked to freshen up? ,131615,Friends,21.18-30.81,friends_s04e18_seg02_clip_12,Down the hall second door on the left. 9577,He shakes Chase's hand.,He puts his dress jacket on.,He washes his hands.,He opens a locker.,He wraps a towel around himself.,1,What does Foreman do after telling Chase I'm glad you're back?,131616,House M.D.,83.73-93.4,house_s08e05_seg02_clip_25,He puts his dress jacket on. 9578,killers fingerprint,killers blood,killers dna,killers phone,killers shirt,2,what does beckett and castle believe they have when they are at a crime scene?,131617,Castle,0-4.7,castle_s08e05_seg02_clip_23,killers dna 9579,Rent that she cannot pay right now.,Junk mail.,Bills.,A beret.,A letter from her parents.,3,What did Penny receive in the mail after she got home from work?,131618,The Big Bang Theory,0-32.3,s02e14_seg02_clip_04,A beret. 9580,the news,the weather,a youtube video,results of the bar,an email,3,What was Marshall waiting for when he was at the computer?,131619,How I Met You Mother,0-13.95,met_s03e08_seg02_clip_01,results of the bar 9581,Hammond.,Marshall.,Ted.,James.,Barney.,4,Who is on top of the woman when she lies on the counter of the bar?,131620,How I Met You Mother,10.15-58.02,met_s03e11_seg02_clip_01,Barney. 9582,Joey was wearing a sports jacket.,Joey was wearing a dress-shirt.,Joey was wearing a hoodie.,Joey was wearing a wool coat.,Joey was wearing a sweater.,4,What was Joey wearing when Ross asked Rachel about the trophy?,131621,Friends,0-14.04,friends_s10e08_seg02_clip_08,Joey was wearing a sweater. 9583,At the bar,In a recliner,On the arm of the couch,On a bench near the window,On stage,2,Where is Chandler sitting before the blonde woman comes into the coffee shop?,131622,Friends,3.9-9.6,friends_s04e04_seg02_clip_11,On the arm of the couch 9584,Shaking the change in his hand.,Dancing with Rachel on stage at the coffee shop.,"I don't know, he was in his bedroom.",He was cooking in the kitchen.,Taking a shower,0,"What was Ross doing when he said ""Yeah Baby"".",131623,Friends,0-4.65,friends_s08e22_seg02_clip_13,Shaking the change in his hand. 9585,Red and green grapes.,Red grapes.,Green grapes.,Red apples.,Green apples.,0,What was in the bowl on the counter between Castle and Beckett when Martha said she wanted to talk to them alone?,131624,Castle,0-3.88,castle_s07e16_seg02_clip_26,Red and green grapes. 9586,Lip Smackers,KFC,Lickin' Chicken,Slim Pickins,Pickin Chicken,3,What did Monica say was so cheesy before Chandler said So Cheesy has an opening too?,131625,Friends,0-7.2,friends_s09e03_seg02_clip_10,Slim Pickins 9587,For helping assist the murder of a child. ,For concealing important information on the client. ,For being involved in the murder of a child.,For knowing who murdered a child.,For concealing evidence of a child's murder.,4,How does Beckett threaten to have Zaretsky be disbarred after he tells Fulton to not explain anything?,131626,Castle,63.92-72.47,castle_s06e21_seg02_clip_22,For concealing evidence of a child's murder. 9588,Monica asks Ross to take their parents away,Monica asks Ross to help her,Monica asks Ross what is going on with him to draw attention to him,Moncia doesn't say anything to Ross,Ross wasn't even at dinner,2,What does Monica say to Ross when her parents continue to criticize her?,131627,Friends,57.33-58.53,friends_s01e02_seg02_clip_09,Monica asks Ross what is going on with him to draw attention to him 9589,In a cabinet,sitting in a chair,in his room,in the bathroom,on the floor,0,Where is Joey after Chandler grabs the hockey stick?,131628,Friends,5.64-8.32,friends_s06e20_seg02_clip_10,In a cabinet 9590,a sister friend,a close friend,not a good friend,a sweet friend,a beautiful friend,2,What kind of friend did Leonard suggest when he and Penny were together?,131629,The Big Bang Theory,0-59.12,s03e05_seg02_clip_03,not a good friend 9591,Beckett,Castle,Keven ,Martinez,His wife,1,Who do the police ask about after pointing guns at a man?,131630,Castle,73.06-88.02,castle_s07e01_seg02_clip_18,Castle 9592,Joey had moved the pipe that was to keep the door open.,Joey was smoking a cigarette,Joey had forgotten to bring the coffee.,Joey had not given Ross a turn with the pipe.,Joey had not shared the burger with Ross,0,Why did Ross look angrily at Joey when they were on the roof?,131631,Friends,0-10.12,friends_s07e12_seg02_clip_01,Joey had moved the pipe that was to keep the door open. 9593,Luisa disliked Rachel because they had a high school history together.,Luisa didn't care for Rachel's line of reasoning.,Luisa couldn't believe Rachel would try to appeal for a monkey to be kept in an apartment.,Luisa disliked everyone in the room.,Luisa just really wanted to leave.,0,Why did Luisa respond to Rachel with such disdain after Rachel tried appealing to her?,131632,Friends,22.82-49.77,friends_s01e19_seg02_clip_18,Luisa disliked Rachel because they had a high school history together. 9594,He gets a page on his beeper,He needs to use the bathroom,He has to get something to eat,Wilson tells him it's time to go,He sees the patient wandering the hospital,0,Why does House have to leave when he's talking to Cuddy about his leg?,131633,House M.D.,36.67-51.72,house_s03e02_seg02_clip_12,He gets a page on his beeper 9595,A sandwich,A coffee cup,A pillow,Nothing,A magazine,4,What is Chandler holding when Pheobe walked in the coffee shop?,131634,Friends,0-4.06,friends_s06e04_seg02_clip_10,A magazine 9596,a baby,an idiot,a liar,a muggle,a slime ball,3,What does Howard call Sheldon after he complains about the card deck being rigged?,131635,The Big Bang Theory,43.11-51.48,s04e18_seg02_clip_01,a muggle 9597,Bernadette's mom is standing next to Bernadette.,Bernadette's dad is standing next to Bernadette.,Bernadette's sister is standing next to Bernadette.,Bernadette's brother is standing next to Bernadette.,Bernadette's neighbor is standing next to Bernadette.,1,Who is standing next to Bernadette when she is in her parents' house?,131636,The Big Bang Theory,0-12.4,s09e07_seg02_clip_06,Bernadette's dad is standing next to Bernadette. 9598,A nurse,Stark's mother,A hospital attendant,A Service dog,Stark's sister,3,"Who was sitting in the chair, calmly, when Brennan was standing near Stark?",131637,House M.D.,10.5-12.32,house_s04e03_seg02_clip_04,A Service dog 9599,She didn't want to take it to her new house.,Food she got for free from her restaurant.,The stuff from Joey's house.,The left overs from thanksgiving.,Food she bought to say bye to her friends.,0,Why did Monica say she cooked the food after Phoebe asked? ,131638,Friends,0-10.15,friends_s10e16_seg02_clip_04,She didn't want to take it to her new house. 9600,elated,irritated,angry,worried,peaceful,3,How did Penny feel when Sheldon tried to give her money?,131639,The Big Bang Theory,0-14.73,s02e14_seg02_clip_02,worried 9601,He trusted his gut,He thought it was a false result,He had talked to the Senator,He was being stubborn,He had asked the lab to rerun the test,1,Why did House think it was Hep C when the first test was negative?,131640,House M.D.,12.33-77.06,house_s07e06_seg02_clip_17,He thought it was a false result 9602,She leans in to kiss Joey. ,She touches Joey's lips with her forefinger. ,She slips right off the couch. ,She puts a hand on Joey's knee. ,She starts sneezing violently. ,2,"What does Rachel do right after she says,"" Tell me something, Joey?""",131641,Friends,35.51-40.95,friends_s06e15-16_seg02_clip_27,She slips right off the couch. 9603,Bapstein-King Comet,Burger King Comet,Halley Boop Comet,Super Comet,Star comet,0,What did Joey and Ross go on the roof to see when it was dark?,131642,Friends,25.57-29.57,friends_s07e12_seg02_clip_01,Bapstein-King Comet 9604,On a couch,Hospital bed.,In a conference room,In a waiting room.,In an elevator.,1,Where was Liz when she was talking to Cristina? ,131643,Grey's Anatomy,58.53-63.48,grey_s01e04_seg02_clip_11,Hospital bed. 9605,Barney.,Fred.,"Thirteen, Chase, Foreman, and Taub were in the room with House.",George.,June,2,Who was in the room when House was in the bed?,131644,House M.D.,48.07-77.01,house_s07e23_seg02_clip_11,"Thirteen, Chase, Foreman, and Taub were in the room with House." 9606,Because Ross is a butt-munch.,Because Monica wanted to take a nap.,Because Ross woke her up from her nap.,Because Monica doesn't have Joanna's phone number.,Because Monica is a baby.,3,Why is Monica angry at Ross after he hangs up on Joanna?,131645,Friends,29.6-32.96,friends_s02e17_seg02_clip_08,Because Monica doesn't have Joanna's phone number. 9607,Walked away,Covered her lips with her hand,Put her mouth in her hair,Started crying,Started eating some chips,2,"What did Phoebe do right after she was talking about ""letting your guard down""?",131646,Friends,12.91-19.97,friends_s01e03_seg02_clip_19,Put her mouth in her hair 9608,Using a laptop,Writing on a whiteboard,American Sign Language,Finger spelling in the patient's palm,Using a small notebook and a pencil ,1,What method does Chase employ to communicate with their patient after the patient loses his hearing?,131647,House M.D.,49.1-71.21,house_s03e16_seg02_clip_17,Writing on a whiteboard 9609,Potatoes.,Food.,Fruits.,Vegetables,Liquor.,4,What was putting Monica in her bag when packing to travel?,131648,Friends,56.46-59.1,friends_s02e10_seg02_clip_17,Liquor. 9610,to the spa,hell,home,to bed,No where,0,Where does alexis tell hayley to go after deleting the information she found on malcom,131649,Castle,40.52-45.42,castle_s08e14_seg02_clip_18,to the spa 9611,She slams her fist on the table,She walks out of the apartment,She hugs him,She starts crying,She sits down next to him,2,What does Beverley do after Leonard says he wants a more intimate mother-son relationship?,131650,The Big Bang Theory,32.35-42.42,s03e11_seg02_clip_15,She hugs him 9612,a tattoo,a bandage,nothing,a tracker,a cast,1,what did chase have on his arm when he lifted it up to drink coffee in the conference room?,131651,House M.D.,40.51-44.96,house_s03e19_seg02_clip_19,a bandage 9613,Drinking wine,Reading,Eating,Drinking coffee?,Drinking beer,2,What was Amy doing when she was talking to Dave?,131652,The Big Bang Theory,2.94-6.18,s09e10_seg02_clip_11,Eating 9614,by letting stark walk on his own,by wheeling stark over,by giving stark crutches,by carrying stark,by rolling stark,3,how does brennan get stark to the bathroom after asking him if he can go?,131653,House M.D.,12.32-22.37,house_s04e03_seg02_clip_04,by carrying stark 9615,Howard put his watch in the night stand drawer. ,Howard put his watch on the night stand. ,Howard put his watch in his pocket.,Howard put his watch on the bathroom sink.,Howard put his watch on the dresser.,4,Where did Howard put his watch before getting into bed with Bernadette?,131654,The Big Bang Theory,13.07-29.83,s10e04_seg02_clip_10,Howard put his watch on the dresser. 9616,Izzie yealled at her mom,Izzie yealled at Alex,Izzie yealled at Derek,Izzie yealled at Annie,Izzie yealled at the nurse,1,Who did Izzie yealled at when the video started?,131655,Grey's Anatomy,1.49-99.03,grey_s01e06_seg02_clip_20,Izzie yealled at Alex 9617,Meacarpus.,Phalange.,Radius.,Humerus.,Clavicle.,1,Which bone did Phoebe mention when she was talking about something wrong with the plane to Rachel?,131656,Friends,53.7-61.03,friends_s10e17-18_seg02_clip_33,Phalange. 9618,Thirteen,A crowd of reporters conducting a mass interview of Afsoun.,A small group of Afsoun's family members and friends.,A man in dress shirt and tie who had left Afsoun once before.,A team of hospital staff members preparing Afsoun for radiation.,3,Who does House tell to get out of Afsoun's hospital room when House enters it and closes the door?,131657,House M.D.,18.56-29.01,house_s07e23_seg02_clip_22,A man in dress shirt and tie who had left Afsoun once before. 9619,Because he broke up with Lily.,Because he got a new job.,Because he got a teaching job.,Because he went to the wrong store.,Because he quit his job.,4,Why is Marshall upset when he is in the car with his friends?,131658,How I Met You Mother,41.42-46.52,met_s03e15_seg02_clip_13,Because he quit his job. 9620,back to the Critical Care Unit,back to surgery,back to her hospital room,back to the x-ray room,back to the examination room,2,Where did Foreman say that he was moving the patient when he spoke to the nurse?,131659,House M.D.,34.72-44.96,house_s03e20_seg02_clip_19,back to her hospital room 9621,A dress.,A cowboy hat.,A fireman hat.,A woman's wig.,A bib.,4,What was Wilson wearing before he threw up?,131660,House M.D.,2.48-12.38,house_s08e20_seg02_clip_09,A bib. 9622,Yoga class,Karate class,Climbing class,Dance Class,Speed Reading class,0,What sort of class does the handyman say he has to cancel when it turns out to be an all day job?,131661,Friends,25.77-34.07,friends_s08e03_seg02_clip_10,Yoga class 9623,Meredith,Betty,Nancy,Nina,Norma,2,Who did Monica say she knows that is a restaurant biz headhunter before picking up the phone?,131662,Friends,3.9-14.41,friends_s09e03_seg02_clip_10,Nancy 9624,Bailey is at a grocery store,Bailey is in the NIC unit,Bailey is at a day care center,Bailey is in the operating room observation area,Bailey is at her apartment's laundry room,3,Where is Bailey when she is holding a baby,131663,Grey's Anatomy,41.37-51.25,grey_s02e18_seg02_clip_18,Bailey is in the operating room observation area 9625,A tomato farm,A potato farm,A ranch,A vineyard,A park,0,Where did Dugan go on his campaign trail before getting sick?,131664,House M.D.,65.78-75.38,house_s07e06_seg02_clip_10,A tomato farm 9626,A TV show,The whiteboard,A news report,A movie,A dead body,4,What are Beckett and Castle looking at when discussing nice suburban ladies?,131665,Castle,7.05-16.93,castle_s01e08_seg02_clip_03,A dead body 9627,Monica has a computer.,Monica has a dog.,Monica has a cat.,Monica has a plate,Monica has a book.,4,What does Monica have on her lap when she is talking to Phoebe about a phone call Phoebe received from Amanda?,131666,Friends,4.04-12.42,friends_s10e03_seg02_clip_02,Monica has a book. 9628,Monica had lost her apartment and Chandler was keeping her company. ,"Chandler and Monica were acting as secret agents, spying on another guest. ","Chandler and Monica were working as salesmen, travelling from city to city. ",Chandler and Monica were going to make love. ,Chandler was in a chess tournament and Monica was his manager. ,3,Why were Chandler and Monica originally in the hotel room before they kept being distracted? ,131667,Friends,0-6.3,friends_s05e05_seg02_clip_04,Chandler and Monica were going to make love. 9629,Pediatrics,Oncology,OBGYN,Maternity WArd,Surgery,3,What is the name of the hospital ward Ryan comes out of before addressing his colleagues,131668,Castle,32.09-46.05,castle_s08e17_seg02_clip_25,Maternity WArd 9630,Monica sits down. ,Rachel sits down.,Ross goes out the door.,A monkey jumps through a window.,Joey comes in. ,3,What happens when Phoebe says sorry for making a noise?,131669,Friends,56.76-61.03,friends_s01e19_seg02_clip_12,A monkey jumps through a window. 9631,Phoebe makes cookies.,Raul makes cookies.,Monica makes cookies.,Stuart makes cookies.,John makes cookies.,2,Who makes cookies for everyone when she is across the hall?,131670,Friends,31.03-36.3,friends_s04e13_seg02_clip_08,Monica makes cookies. 9632,I'm sure you have a great excuse.,I'm so glad you made it.,I was worried sick about you where have you been?,What a nice surprise you came home early.,"Oh, hi thanks for showing up thirty minutes late.",4,What did Ross say after Rachel opened the door?,131671,Friends,17.41-21.91,friends_s10e13_seg02_clip_01,"Oh, hi thanks for showing up thirty minutes late." 9633,He handed it to Bernadette.,He set it on the floor.,He set it on the table.,He flipped it into the air and caught it.,He threw it in the garbage can.,2,What did Howard do with his bottle of water before he left the room?,131672,The Big Bang Theory,39.08-41.88,s07e07_seg02_clip_04,He set it on the table. 9634,He picked something up.,He took off his coat.,He dusted for fingerprints.,He moved a pillow.,He took out his glasses.,0,What did Ryan do after he knelt down?,131673,Castle,34.2-38.77,castle_s04e07_seg02_clip_13,He picked something up. 9635,Beverly ate salad,Beverly ate a peanut,Beverly ate chicken,Beverly ate fruit,Beverly ate soup,1,What did Beverly ate when she was sitting at the bar?,131674,The Big Bang Theory,30.25-33.89,s03e11_seg02_clip_13,Beverly ate a peanut 9636,Slapped him,Threw water in his face,Stormed out ,Spit on him,Gave her a hug,1,What did Rachel do after she told Erica Joey tried to sleep with her? ,131675,Friends,58.16-65.3,friends_s02e12-13_seg02_clip_16,Threw water in his face 9637,Sheldon was using his camera recording live.,Sheldon was using a telescope.,Sheldon was using a glass lens.,Sheldon was using a blue magic marker.,Sheldon was using his fathers gun ..,3,What what Sheldon using when he made the discovery?,131676,The Big Bang Theory,24.99-34.62,s07e06_seg02_clip_05,Sheldon was using a blue magic marker. 9638,Physician,Cancer,Transplant,Alzheimers,Dementia,3,What kind of study does Ellis tell Cristina she is a part of after Meredith told her?,131677,Grey's Anatomy,73.39-83.03,grey_s03e14_seg02_clip_06,Alzheimers 9639,They pulled the covers off their faces.,They switched places.,They both stuck a hand out.,They crawled out of bed.,They reached for the phone.,0,What did Chandler and Monica do after they went under the blanket?,131678,Friends,13.51-16.81,friends_s09e10_seg02_clip_13,They pulled the covers off their faces. 9640,Harlem,Bronx,Ridgewood,Brooklyn,Flat Bush,2,Where was Tom from before he got a nice apartment?,131679,Castle,26.11-34.66,castle_s04e22_seg02_clip_20,Ridgewood 9641,House is explaining the finer details of the conflict in the middle east.,House is telling Wilson the best ways to perform a laproscopy.,House is telling Wilson about the weather.,House is telling Wilson that if he stays with House then he and his wife are just fighting but that if Wilson gets his own place then it would be a divorce.,They arent talking.,3,What is House talking to Wilson about before the hospital scene with Melinda?,131680,House M.D.,0-11.04,house_s02e16_seg02_clip_16,House is telling Wilson that if he stays with House then he and his wife are just fighting but that if Wilson gets his own place then it would be a divorce. 9642,A pencil,A warrant,A badge,A pair of red underwear,An orange,3,What did Ryan drop on Lloyd's desk after Esposito announced they are NYPD?,131681,Castle,6.3-15.54,castle_s03e07_seg02_clip_08,A pair of red underwear 9643,He walked out the door,He got coffee,He whipped her,He grabbed a book,He looked out the window,2,What did Marshall do to Lily after he handed her the paper?,131682,How I Met You Mother,28.33-34.53,met_s05e01_seg02_clip_11,He whipped her 9644,A list of all the times Sheldon was rude to her.,Printed tweets and blogs about Sheldon's lectures.,All the things she dislikes about Sheldon.,Pictures of Leonard.,Pictures of puppies and kittens.,1,What does Penny reveal she has on her refrigerator after Sheldon asks for help?,131683,The Big Bang Theory,15.2-29.77,s04e14_seg02_clip_03,Printed tweets and blogs about Sheldon's lectures. 9645,funny,sad,bad,rude,irritating,0,What did Sheldon feel of the joke he told when he was with Amy?,131684,The Big Bang Theory,37.28-54.02,s06e23_seg02_clip_14,funny 9646,Have a drink.,Stay.,Sit down.,Leave.,Have dinner.,3,What does Roger want Beckett to do when he is talking to him and Joanna?,131685,Castle,4.75-9.5,castle_s08e10_seg02_clip_20,Leave. 9647,Some floor pillows.,A few more chairs.,A dining room table.,A bigger apartment.,A bottle of wine.,2,What does Leonard think is a good idea to get after Raj mentions Penny sitting on the floor?,131686,The Big Bang Theory,1.08-15.7,s07e16_seg01_clip_01,A dining room table. 9648,cards,menus,maps,photos,writing,3,What is on the board that Beckett is working on when talking to Ryan?,131687,Castle,0-9.46,castle_s06e10_seg02_clip_04,photos 9649,A duffle bag,A bag of clothes,Laundry detergent,A basket of clothes,An armful of clothes,3,What is Penny carrying when she walks into the laundry room?,131688,The Big Bang Theory,13.68-15.96,s04e03_seg02_clip_09,A basket of clothes 9650,He overpowers her and takes it from her,He kicks it out of her hand and picks it up before she can,He activates an electromagnet that attaches it to the ceiling,His accomplice comes up behind her and takes it ,He activates an electromagnet that pulls the gun to him,2,How does Beckett lose her gun when she is in the room with Mason?,131689,Castle,10.16-17.08,castle_s08e22_seg02_clip_24,He activates an electromagnet that attaches it to the ceiling 9651,Six hours.,Four days.,Twelve years.,Nine weeks.,Seven months.,2,How long had it been since Foreman lied about the lab results when he came to destroy them?,131690,House M.D.,52.27-75.94,house_s06e16_seg02_clip_12,Twelve years. 9652,Sitting in the chair,Stting on the sofa,Sitting on the floor,Sitting at the kitchen table,Standing up by the window,0,Where is Dr. House when Lucas walks in the apartment?,131691,House M.D.,18.81-27.27,house_s06e08_seg02_clip_11,Sitting in the chair 9653,He gave him a scone,He handed him a phone,He offered him a chair,He passed him a note ,He handed him money,4,What did Raj hand Sheldon when he told him to buy a scone,131692,The Big Bang Theory,54.94-61.04,s04e22_seg02_clip_13,He handed him money 9654,A spoon,A fork,A knife,A drink,a Plate,1,What is in Penny's hand before she responds to Sheldon,131693,The Big Bang Theory,15.27-17.42,s07e16_seg01_clip_01,A fork 9655,At the movies,At the park,On a date,Ted's apartment,At a club,3,Where are Ted and Zoey when Marshall calls?,131694,How I Met You Mother,36.5-61.47,met_s06e15_seg02_clip_17,Ted's apartment 9656,That Cuddy suspend Foreman indifinetly,That Cuddy fire Foreman,That Cuddy transfer Foreman to another hospital,That Cuddy give Foreman a raise,That Cuddy go on vacation,3,What does one doctor suggest after they disclose their taunt to Foreman?,131695,House M.D.,44.51-62.32,house_s06e10_seg02_clip_22,That Cuddy give Foreman a raise 9657,Pizza,Lasagnia,Spaghetti,candy,cookies,2,what is Raj have on his plate when he is sitting on the chair,131696,The Big Bang Theory,3.01-6.24,s07e16_seg01_clip_01,Spaghetti 9658,Russia,Italy,USA,Mexico,China,0,Where is the mafia from when Connelly is speaking with Ricky?,131697,Castle,4.75-8.55,castle_s02e01_seg02_clip_16,Russia 9659,Bags of groceries,Her purse,Magazines,Wallpaper swatches,Carpet samples,2,What does Bernadette have in her hands when she sits on the couch next to Howard?,131698,The Big Bang Theory,23.24-27.95,s09e07_seg02_clip_00,Magazines 9660,He walks into the wall. ,He walks right into it anyways. ,He ends up kicking the footrest. ,He walks into the door. ,He doesn't walk into anything after that. ,2,What happens right after Joey is proud of himself for not walking into the entertainment center?,131699,Friends,7.08-12.69,friends_s03e18_seg02_clip_18,He ends up kicking the footrest. 9661,a middle aged woman,a teenager,an elderly man,an adolescent ,An infant,4,what type of patient is chase performing surgery on when he is assisted by taub?,131700,House M.D.,27.95-37.71,house_s07e05_seg02_clip_06,An infant 9662,gloves,money,ring,food,jacket,2,What does Ross' mom give to him when he is standing in the hospital hallway?,131701,Friends,40.43-44.56,friends_s08e23-24_seg02_clip_05,ring 9663,Never,Tomorrow,The sooner the better,The later the better,On Ross's deathbed,4,When does Chandler suggest that Ross tell the truth when giving Ross advice?,131702,Friends,34.35-43.49,friends_s03e16_seg02_clip_03,On Ross's deathbed 9664,I like you more,No you don't,That's ridiculous,Shut up,I know. See you next tuesday.,4,What does Cameron say after Chase says he likes her?,131703,House M.D.,63.96-70.92,house_s03e23_seg02_clip_16,I know. See you next tuesday. 9665,Men with guns.,The empty hallway.,A nurse.,A crowd of people.,Someone running.,0,What did you see coming in the hall after Jason told everyone to stay in there with him?,131704,House M.D.,26.12-34.23,house_s05e09_seg02_clip_17,Men with guns. 9666,Gerry went and hold Elise,Gerry walked out the room,Gerry gave Elise glass of wine,Gerry did nothing,Gerry gave Elise a file,0,What did Gerry Finnegan do when Elise Finnegan came to the room talking to Beckett?,131705,Castle,60.74-69.02,castle_s02e04_seg02_clip_08,Gerry went and hold Elise 9667,He lost his footing.,He found a dollar.,She headbutted him,His leg gave out.,His foot hurt.,2,Why did Ross fall to the ground when Rachel was pushing? ,131706,Friends,10.8-16.81,friends_s08e23-24_seg02_clip_32,She headbutted him 9668,Husbands of Wallstreet.,Wives of Wallstreet.,Sisters of Trump Tower.,Brothers of Trump Tower.,Enigmas of New York.,1,What show does Castle say he wants to watch when he is speaking with the girls?,131707,Castle,35.3-38.96,castle_s05e14_seg02_clip_11,Wives of Wallstreet. 9669,She wants to know if she can trust his treatment plan.,She really cares,She is worried for his safety,She doesn't believe he is detoxing.,She is curious about when he coming back to work.,0,Why does Cuddy want to know how House is doing when Cameron returns from seeing him?,131708,House M.D.,0-17.8,house_s03e10_seg02_clip_14,She wants to know if she can trust his treatment plan. 9670,Monica gets very excited,Monica gets very happy,Monica sees it is a bad review and becomes upset,Nothing happens to Monica,Monica just sits down and orders coffee,2,What happens to Monica after she reads the paper?,131709,Friends,48.37-72.1,friends_s08e21_seg01_clip_00,Monica sees it is a bad review and becomes upset 9671,A cell phone.,Castle's jacket.,Money.,A slip of paper about Captain Max.,Alexis's clothes.,1,What does Castle try to give Alexis after Alexis explains what the Havacura are?,131710,Castle,38.35-50.84,castle_s05e06_seg02_clip_09,Castle's jacket. 9672,Lily jumps over the television.,Lily jumps over the cooler.,Lily jumps over the couch.,Lily jumps over the table.,Lily jumps over the plant.,2,What does Lily jump over right when Marshall tries to kiss Chloe?,131711,How I Met You Mother,37.24-39.23,met_s02e07_seg02_clip_14,Lily jumps over the couch. 9673,they are at a crime scene,they are in the interrogation room,they are in Montgomery's office,they are at he coroner's office,They are at Ryan's desk,4,Where are Ryan and Esposito when they are together as Beckett and Castle are with Montgomery?,131712,Castle,4.12-13.27,castle_s02e14_seg02_clip_18,They are at Ryan's desk 9674,Because Phoebe had a bachelorette party.,Because Monica had a bachelorette party.,Because James had a bachelorette party.,Because Joey had a bachelorette party.,Because Chandler had a bachelorette party.,1,Why is Chandler upset when he is talking about a party?,131713,Friends,16.75-20.26,friends_s08e08_seg01_clip_01,Because Monica had a bachelorette party. 9675,Monica,Rachel,Phoebe,Mike,Ross,4,Who was Joey talking to when he was sitting on the couch?,131714,Friends,0-4.54,friends_s04e22_seg02_clip_03,Ross 9676,He spilled coffee on his shirt.,Sheldon ate his favorite cereal.,His car broke down.,He doesn't have time for Sheldon's nonsense.,Penny broke up with him.,3,Why does Leonard get angry before they leave for work?,131715,The Big Bang Theory,0-15.3,s06e14_seg02_clip_09,He doesn't have time for Sheldon's nonsense. 9677,looking for clues on why he is sick,robbing him,looking of buried treasure,picking up a change of clothes for the patient ,checking his mail ,0,what are adams and chase doing after they go into the patients apartment,131716,House M.D.,47.18-61.87,house_s08e17_seg02_clip_03,looking for clues on why he is sick 9678,A gun,Toothpaste,Blood,A note,Lipstick,4,What did Dr. House see sitting on the sink after looking in the mirror?,131717,House M.D.,35.1-50.8,house_s05e24_seg02_clip_00,Lipstick 9679,mid-twenties,thirty-one,fifty,eighteen,twenty-six,0,How old does Ted say the single girl is before after Barney says about the pet store?,131718,How I Met You Mother,0-4.45,met_s03e14_seg01_clip_02,mid-twenties 9680,Patricia gave everyone a tablet.,Patricia gave everyone a cup of coffee.,Patricia gave everyone Christmas presents.,Patricia gave everyone a handful of candy.,Patricia gave everyone their test scores.,4,What did Patricia give everyone after she entered the locker room?,131719,Grey's Anatomy,12.44-30.42,grey_s03e25_seg02_clip_21,Patricia gave everyone their test scores. 9681,Marshall is carrying 5 beers.,Marshall is carrying 2 beers.,Marshall is carrying 3 beers.,Marshall is carrying 1 beer.,Marshall is carrying 4 beers.,4,How many beers is Marshall carrying when he walks into the living room?,131720,How I Met You Mother,0-15.42,met_s06e19_seg02_clip_00,Marshall is carrying 4 beers. 9682,Excited,Happy,Relieved ,Sad,Annoyed,4,How does Dr. Greene feel when Ross doesn't order the lobster?,131721,Friends,41.6-49.48,friends_s03e07_seg02_clip_08,Annoyed 9683,Blue,Pink,Red,Yellow,Green,2,What color is House's shirt when he is talking to Wilson about his marital issues?,131722,House M.D.,3.84-96.03,house_s02e16_seg02_clip_16,Red 9684,A video,A stuffed animal,A towel,A stick,A book,3,What did Phoebe Sr. have in her right hand when they were in the kitchen?,131723,Friends,23.88-30.7,friends_s03e25_seg02_clip_19,A stick 9685,She rolls her eyes. ,She slaps them. ,She leaves the coffee house. ,She drinks more coffee. ,She joins them in the hug. ,4,What does Phoebe do when Monica and Rachel are hugging?,131724,Friends,19.51-24.01,friends_s02e02_seg02_clip_14,She joins them in the hug. 9686,A phone,A folder,A box of paperwork,A knife from the case evidence,photos of the crime scene,1,What was Beckett doing when Castle was asking her if the flea had a gun?,131725,Castle,29.59-39.16,castle_s02e11_seg02_clip_03,A folder 9687,Because he is trying to write a song.,Because he saw a monkey at the zoo when he was a boy.,Because he likes monkeys.,Because he is a doctor and he had a monkey.,Because Chandler claimed that he was Dr. Monkey.,3,Why does Ross claim that he is Dr. Monkey after Chandler offers his explanation?,131726,Friends,36.68-45.92,friends_s06e12_seg02_clip_14,Because he is a doctor and he had a monkey. 9688,Rachel.,Leslie.,Joey.,Monica.,Pat Benatar.,1,Who was singing at Central Perk when Phoebe walked in and started singing with her?,131727,Friends,57.88-65.03,friends_s03e14_seg02_clip_10,Leslie. 9689,5 hour,3 hour,2 hour,4 hour,6 hour,3,How long did lanie say the time of death window was when talking to beckett?,131728,Castle,69.31-72.56,castle_s03e18_seg02_clip_01,4 hour 9690,Pom poms.,A check.,A wad of cash.,A plate full of food.,A coffee cup.,0,What is Rachael holding in her hands when she comes in the door after Ross suggests asking for the check right away?,131729,Friends,35.85-43.02,friends_s04e16_seg02_clip_13,Pom poms. 9691,Limping behind him with his cane,Running down the stairs after him,Chasing him down in a car,Racing down the halls on a scooter ,Have a drink in his office to celebrate ,3,What does Wilson expect House to do after getting the news of his patient leaving?,131730,House M.D.,54.75-63.65,house_s03e01_seg02_clip_23,Racing down the halls on a scooter 9692,Cuddy and House are in the operating room observation area,Cuddy and House are in Cuddy's office,Cuddy and House are in Wilson's office,Cuddy and House are in the MRI lab looking at scans,Cuddy and House are in the pharmacy,0,Where are Cuddy and House when they are talking about House telling a lie,131731,House M.D.,0-11.55,house_s07e03_seg02_clip_25,Cuddy and House are in the operating room observation area 9693,Lanie was unable to find selenium after exhuming the body.,Lanie has a new passion for health drinks that contain selenium.,Beckett had a sudden interest in selenium and vitamin pills.,Lanie found traces of selenium in Casillas's factory.,The cause of death may be caused by selenium overdose.,4,Why does Lanie talk about selenium after talking about the cause of death?,131732,Castle,0-29.96,castle_s03e02_seg02_clip_18,The cause of death may be caused by selenium overdose. 9694,His wife,Dr. Burke,Hospital security,The president,The police,4,Who is Derek going to call when the situation gets heated?,131733,Grey's Anatomy,35.56-45.91,grey_s02e04_seg02_clip_12,The police 9695,Lodged in her rib cage ,Behind the other baby,In a breach position,On her bladder,In the kitchen,0,Where does Dorie tell Izzie that the stubborn one is when she has her hand on her stomach?,131734,Grey's Anatomy,0-5.12,grey_s02e10_seg02_clip_01,Lodged in her rib cage 9696,Joey says it's Christmas. ,Joey says it's Thanksgiving. ,Joey says it Fourth of July. ,Joey says it's New Years. ,Joey says it's Labor Day. ,1,What holiday does Joey say it is is it after Joey starts getting upset?,131735,Friends,44.9-49.95,friends_s10e08_seg02_clip_15,Joey says it's Thanksgiving. 9697,There you go,She says fix it yourself Leonard,Can I borrow that,Whay color is this,Where'd you buy this,0,What does Penney say after fixing Leonard's tye?,131736,The Big Bang Theory,8.06-62.02,s04e15_seg02_clip_00,There you go 9698,Ethan,Adam,Brian,Cane,House,4,Who walked toward Chase when he ruled out symptoms on the board,131737,House M.D.,52.34-69.63,house_s06e18_seg02_clip_22,House 9699,An American flag pin,A poppy,An NSA pin,A bald eagle pin,A pin shaped like the USA,0,What did Agent Fallon have on his lapel when he was talking with Montgomery?,131738,Castle,75.8-79.67,castle_s03e16_seg02_clip_11,An American flag pin 9700,Playing a video game. ,Reading a comic book.,Working at his computer.,Reading a magazine.,Getting something from the refrigerator.,3,What is Leonard doing when he tells Sheldon to chill out?,131739,The Big Bang Theory,8.69-11.48,s04e11_seg02_clip_07,Reading a magazine. 9701,Four,Six,Five,Eight,Ten,2,How many people did George tell the paramedic didn't make it when the medic asked if he had any patients for him?,131740,Grey's Anatomy,75.71-84.41,grey_s03e15_seg02_clip_12,Five 9702,She asks him why he is there. ,She asks him how old he is. ,She asks him how the turnip clock works. ,She asks him how much longer he has to live. ,She asks him how the potato clock works. ,4,What question does Penny ask the man when he is there visiting?,131741,The Big Bang Theory,4.72-7.38,s06e22_seg02_clip_12,She asks him how the potato clock works. 9703,Bernadettte plasy chess.,Bernadette cries.,Bernadette nods her head.,Bernadette sits on the table.,Bernadette dances in a circle.,2,What does Bernadette do after Howard asks if she wants to know?,131742,The Big Bang Theory,5.94-7.92,s10e04_seg02_clip_14,Bernadette nods her head. 9704,Plastic Surgery,Rent and other bills,Shoes,A gift for Chandler,good music,1,Why does Monica need money when she ask's Joey for some?,131743,Friends,2.92-10.8,friends_s09e16_seg02_clip_04,Rent and other bills 9705,The number 40,The 28,The number 15.,The number 3 ,The number 5,2,What number was on the door when the guy opened the door?,131744,Friends,0-4.85,friends_s05e10_seg02_clip_16,The number 15. 9706,She apologized,She kept trying to kiss him,She told him to get out,She asked him why he doesnt like her,She ran away,1,What did Rachel do after Ross declined to kiss her?,131745,Friends,41.5-58.45,friends_s10e13_seg02_clip_09,She kept trying to kiss him 9707,A car seat.,On a chair.,A bar stool.,On a bench.,The floor.,3,Where was Bernadette sitting when Amy and Penny were singing? ,131746,The Big Bang Theory,52.87-60.43,s09e16_seg02_clip_12,On a bench. 9708,Leonard kissed Penny to shut her up. ,Leonard told her yes he knew.,Leonard didn't respond.,Leonard told Penny to ask Sheldon.,Leonard lied and said no.,4,How did Leonard react when Penny asked him if he knew the meaning of what Sheldon said?,131747,The Big Bang Theory,8.91-22.45,s09e08_seg01_clip_00,Leonard lied and said no. 9709,He wants to know the evidence she has. ,He wants to know who the murder victim is. ,He wants to know who is in on this. ,He wants to know who the target is. ,He wants to know what she is doing there. ,3,What is Gage after when he is in the van with Beckett?,131748,Castle,33.89-35.21,castle_s04e16_seg02_clip_14,He wants to know who the target is. 9710,Picked up a pillow to sit on.,Sat his coat down.,Took off his shoes.,Sat his book on the table.,Picked up the TV remote.,0,What did Castle do before he sat on the floor with Alexis?,131749,Castle,86.59-93.26,castle_s04e06_seg02_clip_26,Picked up a pillow to sit on. 9711,Joey was relieved.,Joey was shocked.,Joey was happy.,Joey was paranoid.,Joey was vengeful.,1,How was Joey after Chandler said he kissed Kathy?,131750,Friends,39.49-52.56,friends_s04e07_seg02_clip_20,Joey was shocked. 9712,They left Barney at the bar. ,There's someone they don't know on the couch. ,They're out of beer. ,The house is clean. ,The apartment is trashed. ,4,"Why is Ted, Marshall, Lily, and Robin surprised after they walk into the apartment?",131751,How I Met You Mother,0-7.42,met_s02e07_seg02_clip_18,The apartment is trashed. 9713,Martha was buying a book.,Martha was hungry and stopped in to get a pastry.,Martha was walking down the street and looked in the window of the bookstore.,Martha was spying on Castle.,Martha was being chased by a man down the street and ran into the bookstore.,1,What was Martha doing when she way Castle's book in the bookstore?,131752,Castle,17.23-25.85,castle_s01e03_seg02_clip_03,Martha was hungry and stopped in to get a pastry. 9714,Survivor.,Fear Factor.,Scare Tactics.,Naked and Afraid.,Parts Uknown.,1,Where did Shannon say William got the idea to eat weird animal parts when Foreman found something unusual in vomit?,131753,House M.D.,52.2-55.77,house_s06e17_seg02_clip_04,Fear Factor. 9715,She says because they are trying to drive her crazy,She says because they are trying to make her stay sick,She says because they are mean,She says because they are experimenting on her,She says because they are spies,2,How does Irene respond to Amber when she asks Irene why they would try to trick her?,131754,House M.D.,24.04-30.71,house_s04e04_seg02_clip_10,She says because they are mean 9716,More time for planning,Another venue,Lower prices,A better venue,New opening,4,What good news does the lady have after coming back into the room?,131755,Castle,75.92-92.03,castle_s06e14_seg02_clip_17,New opening 9717,A bottle,A mug,A phone,A key,A laptop,1,What is Sheldon holding when he is talking to Leonard?,131756,The Big Bang Theory,7.48-17.23,s06e02_seg02_clip_15,A mug 9718,They are divorced,They are on a time out from their relationship,They are not on speaking terms,They are not allowed to work together,They are fighting about a case,1,What is the situation between Castle and Beckett when Castle mentions to her that he knows?,131757,Castle,6.08-12.49,castle_s08e07_seg02_clip_06,They are on a time out from their relationship 9719,Sitting in a theatre.,Working out.,Running in the park.,Walking up stairs. ,Playing a video game. ,3,What are House and Wilson doing when they are talking?,131758,House M.D.,4.6-16.56,house_s03e01_seg02_clip_02,Walking up stairs. 9720,He tells his mom to say hi to Sheldon's mom,He tells his mom to say hi to uncle Pete,He tells his mom to say hi to Croc man,He tells his mom to say hi to his aunt Gladys,He tells his mom to say hi to Cousin Pat,3,Who does Howard tell his mom to say hi to before he gets off the phone,131759,The Big Bang Theory,0-12.88,s08e15_seg02_clip_00,He tells his mom to say hi to his aunt Gladys 9721,Beckett leads everyone to a room filled with stolen goods.,Beckett leads everyone to a room filled with amphibians in tanks.,Beckett leads everyone to her apartment so they can relax there.,Beckett leads everyone to the subway station.,Beckett leads everyone to her favorite restaurant.,1,Where does Beckett lead everyone after he tells them to follow her?,131760,Castle,0-19.55,castle_s02e14_seg02_clip_23,Beckett leads everyone to a room filled with amphibians in tanks. 9722,PET scan.,MRI scan.,CAT scan.,Ultrasound scan.,Gallium scan.,0,What type of scan does Wilson propose be carried out after the medical team cannot find Elise's tumor?,131761,House M.D.,34.45-35.7,house_s01e07_seg02_clip_06,PET scan. 9723,To Rachel's neighbor,To Rachel's grandma,To Rachel's doctor,To Rachel's mom,To Rachel's husband,3,Where is Molly taking Emma before spotting Gavin?,131762,Friends,0-3.47,friends_s09e13_seg02_clip_10,To Rachel's mom 9724,he has pictures in his hands,he has paperwork in his hands,he has medicine in his hands,he has nothing in his hands ,he has a cup in his hands,1,What does Gates have in his hands when he is sitting in the interrogation room with Beckett?,131763,Castle,0-6.02,castle_s03e06_seg02_clip_14,he has paperwork in his hands 9725,Sheldon,Amy,Raj,Howard,Leonard,1,Who was already on the couch when Penny sat down?,131764,The Big Bang Theory,6.1-9.55,s05e19_seg02_clip_11,Amy 9726,He tells her that Marshall is a great guy.,He offers to take her home.,He offers to buy her a drink.,He offers to introduce her to the rest of his friends.,He offers to show her a magic trick.,4,What does Barney offer to show Amy after he meets her?,131765,How I Met You Mother,0-25.04,met_s02e02_seg02_clip_05,He offers to show her a magic trick. 9727,a coffee mug,flowers ,balloon ,vitals monitor ,a purse ,3,What is behind the patient's wife when house is asking about steroids? ,131766,House M.D.,65.77-76.2,house_s01e12_seg02_clip_07,vitals monitor 9728,The pharmacy.,The doctors.,The clinic.,The gas station.,The grocery store.,2,Where did Park's Mother have to take her Father when he was getting a cyst removed?,131767,House M.D.,10.29-18.01,house_s08e16_seg02_clip_08,The clinic. 9729,She gives him a kiss. ,She gives him her jacket. ,She gives him her purse. ,She buys him a drink. ,She runs the other way. ,0,What does Kathy do after she sees Chandler?,131768,Friends,29.01-31.33,friends_s04e13_seg02_clip_06,She gives him a kiss. 9730,Phoebe tells Joey he can't say anything because she doesn't want Chandler to know her secret.,Phoebe tells Joey he can't say anything because Phoebe doesn't want her and Rachel's tormentors to know they're on to them.,Phoebe tells Joey he can't say anything because she doesn't want Ross to know she and Rachel are planning their payback.,Phoebe tells Joey he can't say anything because Phoebe doesn't want her tormentors to know she's aware of their identities.,Phoebe tells Joey he can't say anything because she knows Joey can't be trusted with her secrets.,1,Why does Phoebe tell Joey he cannot say anything when talking to Rachel?,131769,Friends,11.41-18.61,friends_s05e14_seg02_clip_13,Phoebe tells Joey he can't say anything because Phoebe doesn't want her and Rachel's tormentors to know they're on to them. 9731,A robotic arm.,Lenoard.,Sheldon.,Penny.,Raj.,0,What is massaging Howard when he is alone?,131770,The Big Bang Theory,0-3.4,s04e01_seg02_clip_06,A robotic arm. 9732,It would destroy the other lung,It would take too long,It has no proof to work,It is too late ,It is too early,0,Why did Park say House methods were too dangerous when she was talking to House?,131771,House M.D.,11.38-19.12,house_s08e02_seg02_clip_24,It would destroy the other lung 9733,10 hours,12 hours,72 hours,22 hours,16 hours,2,When did Derek say his patient would wake up after surgery?,131772,Grey's Anatomy,73.18-90.91,grey_s01e02_seg02_clip_03,72 hours 9734,White,Blue,Green,Red,Purple,0,"What color is the shirt that Marshall is wearing when he say's ""That's it...""?",131773,How I Met You Mother,50.12-60.03,met_s03e15_seg02_clip_03,White 9735,Leonard tells him that Penny told him to drink coffee that way. ,Leonard just tells him to mind his own business. ,Leonard tells him that he likes sweets. ,Leonard tells him he doesn't care what he thinks about sugar. ,Leonard says because they don't serve little packets of methamphetamine. ,4,What is Leonard's response after Raj asks him why he puts six packets of sugar in his coffee?,131774,The Big Bang Theory,50.93-54.66,s05e15_seg02_clip_00,Leonard says because they don't serve little packets of methamphetamine. 9736,A stethoscope,A cup,A knife,A record pad,A bag. ,3,What did Cuddy had in her Hands when House came into the room to join her with the other doctors?,131775,House M.D.,81.48-89.05,house_s06e05_seg02_clip_18,A record pad 9737,He took two trips,He used a beverage tray carrier,Cameron walked back with him and helped,He stacked the cups,The coffee stand worker brought them to his office ,3,How does House explain his method to carrying both cups while using his case when Wilson asks how he accomplished it?,131776,House M.D.,10.16-35.57,house_s03e22_seg02_clip_09,He stacked the cups 9738,His wallet. ,His wedding ring. ,His cell phone. ,His car keys.,His hand cuffs.,1,What does Ryan ask Esposito to give back when they are in the club? ,131777,Castle,0-10.4,castle_s04e18_seg02_clip_16,His wedding ring. 9739,House said he has been unconscious for four days,House said he has been unconscious for three days,House said he has been unconscious for two days,House said he has been unconscious for five days,House said he has been unconscious for six days,2,How many days does House say he has been unconscious for when feeling his face?,131778,House M.D.,29.01-33.62,house_s02e24_seg02_clip_00,House said he has been unconscious for two days 9740,She wants to solve the case.,She just hates him.,He was tied to her mother's murder.,He was tied to her best friends murder.,She has a history with him.,2,Why was Beckett so concerned with Simmons confession when Montgomery said to cut him loose?,131779,Castle,32.33-43.4,castle_s03e13_seg02_clip_08,He was tied to her mother's murder. 9741,A picture.,A knife.,A drink.,A bag of money.,A gun.,4,What is shown by Esposito after he makes it clear it isn't a request?,131780,Castle,21.93-29.54,castle_s04e14_seg02_clip_05,A gun. 9742,It's like losing a long time pet.,Its like losing someone close to you.,It's like losing a friend.,it's like losing someone who guided you.,Castle doesn't say anything about an artist.,2,What does Castle compare losing an artist to when talking to Alexis?,131781,Castle,15.42-23.36,castle_s02e07_seg02_clip_22,It's like losing a friend. 9743,Wilson finds House in his bathtub.,Wilson finds Samantha in his bathtub.,Wilson finds Foreman in his bathtub.,Wilson finds Cuddy in his bathtub.,Wilson finds his neighbor in his bathtub.,0,Who does Wilson find in his bathtub after waking up?,131782,House M.D.,17.88-24.3,house_s06e12_seg02_clip_00,Wilson finds House in his bathtub. 9744,bored,happy,upset,tired,hungry,2,How did Howard feel when his mother interrupted him in the bath?,131783,The Big Bang Theory,13.5-37.51,s03e09_seg02_clip_08,upset 9745,Ready to go?,Why?,Did you sleep with Rachel?,You want to buy a car,Is your seat belt buckled?,3,What does Ross ask Joey when they are in the car?,131784,Friends,36.22-40.02,friends_s07e14_seg02_clip_20,You want to buy a car 9746,The waiting room.,The surgical unit.,The emergency room.,The bathroom.,The bar. ,1,Where is Treiber going to before asking Chase about no hard feelings?,131785,House M.D.,17.33-27.23,house_s08e20_seg02_clip_09,The surgical unit. 9747,She throw her bag away.,She stood up.,She eat some cake.,She made a phone call.,She drank some tea.,4,What did Phoebe do after she said something about this is all there is?,131786,Friends,48.74-58.03,friends_s10e11_seg02_clip_04,She drank some tea. 9748,A coffee cup,A bible,A newspaper,A Celeb Scene magazine,A book about babies,3,What is Bernadette is holding when her and Howard are sitting with Raj at the apartment?,131787,The Big Bang Theory,30.44-33.63,s08e12_seg02_clip_02,A Celeb Scene magazine 9749,They are at Howard's work. ,They are at the restaurant. ,They are at Penny's. ,They are at Sheldon's. ,They are at home. ,4,Where are Bernadette and Howard when they are together?,131788,The Big Bang Theory,53.96-62.02,s08e17_seg02_clip_03,They are at home. 9750,1 pm,noon,10am,11am,10 am,3,When did Beckett say Francisco ran off after telling Esposito about him worried about being bugged?,131789,Castle,24.79-34.89,castle_s04e13_seg02_clip_08,11am 9751,Lanie,Ryan,Esposito,Castle,Matilda,3,Who did Beckett talk to after she walked through the door?,131790,Castle,0-25.54,castle_s06e14_seg02_clip_26,Castle 9752,Happy.,Upset.,Fearful.,Sad.,Delighted.,1,How is Rachel when she talks about her cat?,131791,Friends,16.84-34.34,friends_s05e21_seg02_clip_06,Upset. 9753,Izzy is sitting in a taxi talking to the salt-and-pepper haired man ,Izzy is in the hospital lobby talking to the salt-and-pepper haired man ,Izzy is on a park bench talking to the salt-and-pepper haired man ,Izzy is in a restaurant talking to the salt-and-pepper haired man ,Izzy is in a conference room talking to the salt-and-pepper haired man ,3,Where is Izzy when she is talking to the salt-and-pepper haired man ,131792,Grey's Anatomy,36.6-46.19,grey_s03e04_seg02_clip_12,Izzy is in a restaurant talking to the salt-and-pepper haired man 9754,the ceiling collapses with water,nothing,the ceiling collapses with debris,the ceiling gets a hole poked through,the paint chips away,0,what happens when house gets his cane and starts poking at his ceiling in his bedroom?,131793,House M.D.,99.78-116.02,house_s05e12_seg02_clip_05,the ceiling collapses with water 9755,She calls him a Woody. ,She calls him a loser. ,She calls him a moron. ,She calls him an idiot. ,She calls him a sexy Buzz Lightyear. ,4,What does Bernadette call Howard when she is talking to Penny?,131794,The Big Bang Theory,38.59-42.66,s06e02_seg01_clip_01,She calls him a sexy Buzz Lightyear. 9756,Kim has a pencil.,Kim has a key.,Kim has a pickle.,Kim has a blanket.,Kim has a gun.,1,What does Kim have in her hand before she hands something to Ryan ? ,131795,Castle,1.82-7.75,castle_s08e13_seg02_clip_16,Kim has a key. 9757,an x-ray sheet,a tablet,a laptop,a shoe box,nothing,3,What does House have in his hands after he goes into the patient room?,131796,House M.D.,61.87-71.22,house_s04e05_seg02_clip_22,a shoe box 9758,She spends more than a few hours a day with him.,She won't let him have a dog,She gives him a disapproving and judgemental look,They are of complementary heights,Why else would he bring her coffee every day?,2,Why does Caslte say Kate is totally his work wife when they are on the stairs in the art gallery?,131797,Castle,23.3-53.6,castle_s02e11_seg02_clip_00,She gives him a disapproving and judgemental look 9759,He slapped him,He shook his hands,He danced with him,He knocked his head,He spat on him,1,What did Wilson do with Micheal before he sat down?,131798,House M.D.,30.69-38.49,house_s08e21_seg02_clip_07,He shook his hands 9760,The superhero logo on Sheldon's shirt is Night Hawk,The superhero logo on Sheldon's shirt is The Flash,The superhero logo on Sheldon's shirt is Green Lantern,The superhero logo on Sheldon's shirt is Superman,The superhero logo on Sheldon's shirt is The Fantastic Four,0,Which superhero logo is on Sheldon's shirt after Leonard sweater made him itch,131799,The Big Bang Theory,0-5.8,s07e08_seg02_clip_02,The superhero logo on Sheldon's shirt is Night Hawk 9761,Chandler jumps up and down,Chandler leaves,Chandler goes to bed,Chandler proposes to her,Chandler starts laughing,3,What does Chandler do after he tells Monica how much he loves her?,131800,Friends,44.52-69.02,friends_s06e24-25_seg02_clip_41,Chandler proposes to her 9762,Alex peered into the room and saw them.,Derek peered into the room and saw them.,Meredith peered into the room and saw them.,Addison peered into the room and saw them.,Nobody peered into the room and saw them.,0,Who peered into the room when Jeff was hugging Rebecca?,131801,Grey's Anatomy,36.24-41.76,grey_s03e25_seg02_clip_05,Alex peered into the room and saw them. 9763,Joey's apartment,Monica's apartment,Central Perk,A party,Ross's apartment,0,Where are Monica and Joey when they are talking?,131802,Friends,0-61.09,friends_s07e19_seg02_clip_14,Joey's apartment 9764,Lee wanted 15 to 25 years.,Lee wanted 10 years.,Lee wanted 13 years.,Lee wanted 11 months.,Lee wanted 6 years.,0,How many years did Lee say he wanted when he was discussing his prison sentence?,131803,Castle,11.1-13.87,castle_s04e04_seg02_clip_25,Lee wanted 15 to 25 years. 9765,a book,a binder,a laptop,a cardboard box,a wallet,2,What is sitting open on the end of the table when Sheldon asks about lunch money being taken from them?,131804,The Big Bang Theory,0-2.4,s04e19_seg02_clip_08,a laptop 9766,She is standing by the counter,She is in the bathroom,She is in the living room,She is sitting on the couch,She is sitting on the floor,0,Where is Rachel when talking to Monica about her date?,131805,Friends,32.11-54.92,friends_s04e18_seg02_clip_03,She is standing by the counter 9767,A bouquet of flowers. ,An infant baby. ,A puppy dog.,A steaming hot dish. ,A violin. ,3,What does Ross carry when he walks into the room? ,131806,Friends,2.66-12.4,friends_s10e02_seg02_clip_12,A steaming hot dish. 9768,Taub told Foreman they already ordered,Taub told Cameron they already ordered,Taub told House they already ordered,Taub told Pam they already ordered,Taub told Chase they already ordered,2,"Who did Taub said they already ordered a psych evaluation to, when he is standing?",131807,House M.D.,42.73-48.96,house_s08e21_seg02_clip_02,Taub told House they already ordered 9769,Lily felt nostalgic.,Lily was glad to talk with the guy.,Lily loved the guy sat next to her.,Lily was uncomfortable.,Lily felt high.,3,What felt Lily when she sat in the bus?,131808,How I Met You Mother,0-35.98,met_s02e02_seg02_clip_12,Lily was uncomfortable. 9770,Five years.,A year.,Two years.,Three years.,A decade.,4,How long did Beckett say the man lived in Okinawa when she and Castle were walking to Esposito? ,131809,Castle,0-10.01,castle_s06e18_seg02_clip_24,A decade. 9771,slammed the wash machine shut,walked out of the room ,turned around slowly ,ignored the girls ,put his hands in the wall,2,What did Sheldon do when the girls came in ?,131810,The Big Bang Theory,0-6.03,s06e19_seg02_clip_06,turned around slowly 9772,A coffee shop,His apartment,A restaurant,A bar,A pub,0,Where is Ross when he is talking to Phoebe and Rachel,131811,Friends,0.92-60.11,friends_s02e14_seg02_clip_07,A coffee shop 9773,4,1,2,3,5,3,How many firemen were in the apartment when Rachel was asking if they really slide down a pole? ,131812,Friends,38.76-46.33,friends_s01e14_seg02_clip_21,3 9774,He was dozing off,He was picking up some files,He was talking to James,He was writing,He was drinking a cup of water.,3,What was Foreman doing when House came into the room talking about a patient. ,131813,House M.D.,0-5.59,house_s01e14_seg02_clip_00,He was writing 9775,There's no budget for tests,Virus has already affected all vital signs,Virus is advancing too rapidly,There's a thousand possibilities,There isn't enough time,3,Why does Foreman state they can't chase a virus after identifying the item of interest?,131814,House M.D.,63.77-68.02,house_s01e04_seg02_clip_17,There's a thousand possibilities 9776,The gallery hadn't made their bank deposits for the day yet.,The assistant didn't see him,The gallery was closed,The security cameras are fake,The Killer managed to avoid tripping the alarm,3,Why does Beckett say the killer got a lucky break when they are looking at the crime scene?,131815,Castle,53.6-85.29,castle_s02e11_seg02_clip_00,The security cameras are fake 9777,Clark County,John Hopkins,Cleveland Clinic,Mayo Clinic,New York Mercy,4,"Where did Forman go, according to Dr.Wilson, after leaving the team? ",131816,House M.D.,38.73-63.38,house_s04e02_seg02_clip_23,New York Mercy 9778,Castle becomes alert and concerned.,Castle welcomes Meredith with open arms.,Castle runs out the door.,Castle hides behind Esposito.,Castle hugs Meredith.,0,How does Castle respond after Meredith walks into the precinct?,131817,Castle,0-6.31,castle_s01e06_seg02_clip_10,Castle becomes alert and concerned. 9779,No Linus it is ,Yes he loved Lucy,He tried to change the subject,He did not respond,He yelled at Beckett ,0,How did Castle respond after Beckett asked if he wanted Lucy back? ,131818,Castle,111.62-124.02,castle_s08e16_seg02_clip_26,No Linus it is 9780,Taking down the items on the murder board. ,Putting items on the murder board. ,Pointing to the murder board. ,Flipping the murder board over. ,Erasing the murder board. ,0,What is Beckett doing when she is talking to Castle?,131819,Castle,10.48-18.34,castle_s04e03_seg02_clip_26,Taking down the items on the murder board. 9781,Since their last high school reunion.,A year.,Two years.,Six months.,Five years.,4,How long does Robin say it's been when she says she hasn't talked to Glitter in a long time?,131820,How I Met You Mother,46.36-49.9,met_s06e09_seg02_clip_04,Five years. 9782,purse,phone,book,backpack,baby,0,What is Ali carrying after she walks away from Monk and Cubby?,131821,House M.D.,84.65-93.03,house_s03e04_seg02_clip_16,purse 9783,Thatcher wanted Meredith to cure his wife's hiccups. ,Thatcher wanted Meredith to leave him alone. ,Thatcher wanted to get to know Meredith better. ,Meredith had money and Thatcher wanted some. ,Thatcher wanted Meredith to watch his pet dog. ,2,What did Thatcher want when he sat with Meredith? ,131822,Grey's Anatomy,0-9.81,grey_s03e22_seg02_clip_14,Thatcher wanted to get to know Meredith better. 9784,Naomi,Audrey,Jessie,Diana,Irene,4,What was the name of the patient that the doctors were taking care of when they were about to do a medical procedure?,131823,House M.D.,40.49-46.21,house_s04e04_seg02_clip_02,Irene 9785,Says yeah and shuts his book.,He does nothing.,He says yeah and stands up.,He says no and kisses her.,He gives her a hug.,0,What does the man in the black shirt do when Monica says he's a grandpa?,131824,Friends,0-8.27,friends_s02e15_seg02_clip_16,Says yeah and shuts his book. 9786,Carrying a tray. ,Sweeping the floor. ,Wiping the counter. ,Drinking coffee. ,Cleaning the coffee machine. ,2,What is Gunther doing when Ross runs into the coffee house?,131825,Friends,27.16-35.09,friends_s03e16_seg02_clip_07,Wiping the counter. 9787,House instructed Chase and Cameron to put the patient in a lukewarm sitz bath.,House told Chase and Cameron to prep and put the patient in the pre-operative waiting room.,House said to put the patient in a wheelchair and let him be discharged from the hospital.,House instructed Chase and Cameron to put the patient on an incline treadmill.,House told Cameron and Chase to put the patient back in his bed until further notice.,3,"Where did House tell Chase and Cameron to put the patient, Powell, after discussing with them his plan for the patient?",131826,House M.D.,11.63-14.42,house_s03e03_seg02_clip_01,House instructed Chase and Cameron to put the patient on an incline treadmill. 9788,"16,000","5,000","10,000","18,000","25,000",0,How much money did it cost to get Phoebe pregnant when Frank and Alice were explaining it to Phoebe?,131827,Friends,40.62-50.48,friends_s04e12_seg02_clip_04,"16,000" 9789,He wants to make sure House is awake for the slot,He wants to punish House now that he's in power,He doesn't want House to bail and go to a fight instead,He wants House to have as many eyes on him as possible,He thinks it'll be good for the hospital if he's on in the AM,2,Why does Foreman want to move House's speaking slot to the morning after House agrees to do it?,131828,House M.D.,68.99-89.02,house_s08e06_seg02_clip_08,He doesn't want House to bail and go to a fight instead 9790,He looks at the photographs,He turns up the T.V.,He makes a phone call,He puts the photos in an envelop,He turns off the T.V,4,What does the man do after telling Beckett and Castle that the people will love the woman on the T.V even more?,131829,Castle,9.9-14.85,castle_s01e03_seg02_clip_16,He turns off the T.V 9791,On the couch.,At a desk.,In his bed.,The kitchen counter. ,In the doorway.,1,Where was Leonard when Sheldon moved the camera to him?,131830,The Big Bang Theory,56.35-59.32,s08e17_seg02_clip_09,At a desk. 9792,Sitting to by the door to the right of House.,Standing by the bed to the left of Afsoun.,Standing at the foot of the bed.,Sitting to by the door to the left of House.,Standing by the bed to the right of Afsoun.,3,Where was Luca when House asked Afsoun why she was still there?,131831,House M.D.,0-2.08,house_s07e23_seg02_clip_17,Sitting to by the door to the left of House. 9793,A magazine,A checkbook,A newspaper article,A jar of pickles,A beer ,1,What does joey open up when he sits down next to the coffee table by chandler?,131832,Friends,36.6-44.66,friends_s08e22_seg02_clip_13,A checkbook 9794,It was Pink,It was grey ,It was white,It was purple,It was blue,3,What color was Cuddy's blouse when she came in and sat down in Wilson's office ,131833,House M.D.,71.63-79.07,house_s05e13_seg02_clip_13,It was purple 9795,Rachel thought the neighbors were watching a movie.,Rachel thought the neighbors were sleeping.,Rachel thought the neighbors were out on a date.,Rachel thought the neighbors were having sex.,Rachel thought the neighbors were out vacationing.,3,What did Rachel think her neighbors were doing after she noticed their lights were out?,131834,Friends,11.1-14.11,friends_s01e04_seg02_clip_16,Rachel thought the neighbors were having sex. 9796,Rachael Roy ,Sammy Green,Agnes Fields,Ginger Jones,Jen Telly,2,What is the name of the person the detective tells the other detective when on the phone to look up?,131835,Castle,45.61-48.8,castle_s04e07_seg02_clip_13,Agnes Fields 9797,"He stops for a second, flexes his shoulders then walks on. ",He keeps walking away while giving her the finger. ,He wheels back around to confront Christina in a loud voice. ,He stops another doctor in the corridor and starts talking animatedly to him. ,He mimes a pistol with his fingers and pretends to shoot his head. ,2,"What does Burke do when Cristina says, ""Yeah, you've made that perfectly clear?""",131836,Grey's Anatomy,26.11-33.31,grey_s02e02_seg02_clip_08,He wheels back around to confront Christina in a loud voice. 9798,Howard,Leonard,Sheldon,Raj,Bernadette ,2,Who walks into Sheldon and Leonard's apartment limping when Penny and Amy are inside?,131837,The Big Bang Theory,17.71-24.5,s10e09_seg02_clip_06,Sheldon 9799,Robin rubs water on her leg.,Robin rubs bread on her leg.,Robin rubs butter on her leg.,Robin rubs soap on her leg.,Robin rubs tea on her leg.,2,What does Robin rub on her leg when she is at the restaurant?,131838,How I Met You Mother,37.62-41.9,met_s03e03_seg02_clip_10,Robin rubs butter on her leg. 9800,Someone told everyone about her pregnancy. ,Someone told everyone about her marriage. ,Someone told someone about her parents. ,Someone told everyone about her living arrangements. ,Someone told everyone about her temper. ,0,What is Bernadette upset about when she is talking to Penny?,131839,The Big Bang Theory,18.61-33.91,s10e02_seg02_clip_05,Someone told everyone about her pregnancy. 9801,He knocks Castle over.,He shoots his gun.,He knocks on the door.,He kicks the door in.,He hides in an empty room.,3,What does Esposito do after he hears Let her go. right now?,131840,Castle,75.46-85.12,castle_s05e07_seg02_clip_11,He kicks the door in. 9802,a desktop,a laptop,a painting,a book,a dvd ,1,What was Wilson looking at when Kutner walked into his office?,131841,House M.D.,72.91-77.93,house_s05e16_seg02_clip_02,a laptop 9803,a joke,cute,loving,happy,engaging,0,What did Amy think her friends thought of her and Sheldon's relationship when Amy was upset?,131842,The Big Bang Theory,24.04-33.76,s06e23_seg02_clip_14,a joke 9804,walk only in the filled squares on the ground,walk only in the empty squares on the ground,walk with a special slippers,put a green sign on where to walk on the floor,the entire floor was squeaking regardless of where Howard walked,1,What did Howard do to avoid squeaks in the room after labelling the room?,131843,The Big Bang Theory,49.4-57.17,s10e13_seg02_clip_11,walk only in the empty squares on the ground 9805,Makes the boat ugly.,Destroys the boat.,Ages the boat.,Gives it a nice antique-y look.,Makes the boat sink.,3,What was Ross' response to Dr. Green when he said his boat has rust?,131844,Friends,54.84-61.14,friends_s03e07_seg02_clip_08,Gives it a nice antique-y look. 9806,HArvard,Yale,Princeton,NYSU,Michigan,2,Which university did Michael wanted to go to after graduation?,131845,House M.D.,45.25-56.69,house_s08e21_seg02_clip_07,Princeton 9807,abigails memory will come back,Abigail will shrink,Abigail will grow,abigails boobs will get big,abigails hair will stop growing,2,What does house demonstrate will happen after abigail takes the growth hormones?,131846,House M.D.,65.13-71.86,house_s03e10_seg02_clip_21,Abigail will grow 9808,Rachel hugs the man.,Rachel runs away from the man.,Rachel is calm and reserved.,Rachel call Ross for help.,Rachel dances with the man.,2,How does Rachel react when the man keeps crying?,131847,Friends,41.25-45.59,friends_s09e14_seg02_clip_15,Rachel is calm and reserved. 9809,A sealed document ,A tablet,A zen garden,A box of Chinese take out,A cellphone,4,What was placed on the desk before Wilson told House it was for him?,131848,House M.D.,36.01-46.36,house_s05e01_seg02_clip_11,A cellphone 9810,Chalk,Crayons,His cane,A medical instrument,A copy of the patients x-ray,1,What was House holding when he was asking the students how they tell a patient they're dieing?,131849,House M.D.,62.89-70.76,house_s01e21_seg02_clip_11,Crayons 9811,"He said that although he was at the shoot, he was not the actual photographer for the head shots",He said they were not in the studio,He said he never took that kind of picture,He said he didn't consider Amber pretty,He said he and Amber were not alone,4,What did Lattimer contradict the officer's about when they interrogated him?,131850,Castle,84.12-90.45,castle_s03e23_seg02_clip_14,He said he and Amber were not alone 9812,they have him on camera ,that he was at a book signing event,he was out of the state,he was out of the country,his prints didn't match. ,1,how do castle and beckett take stryker off their suspect list after doing some checking around?,131851,Castle,42.37-50.4,castle_s03e09_seg02_clip_10,that he was at a book signing event 9813,He looks back at Cameron and walks away.,He sits down on the desk.,He sits down in the chair.,He sits down against the window.,He puts the chart in his hand on the table.,3,What does Dr. Chase do when he tells Cameron maybe Foreman's right about us too?,131852,House M.D.,75.79-80.27,house_s03e18_seg02_clip_20,He sits down against the window. 9814,He turned off the tv.,He swept the floor.,He made a sandwich.,He fixed the toilet.,He combed his hair.,0,What did Chandler do before he said something about the cooking channel?,131853,Friends,21.43-28.99,friends_s05e04_seg02_clip_11,He turned off the tv. 9815,a computer printer,a bottle of champagne,a trash can ,a box of tissues,a cup of pens,3,What was next to Marshall when he was writing the letter he hopes Lily never reads?,131854,How I Met You Mother,25.52-32.59,met_s03e02_seg02_clip_02,a box of tissues 9816,She kicked off the blanket.,She snored.,She turned over.,She fluffed her pillow.,She made a little snort noise.,4,What did Castle say Alexis did after 10 breaths?,131855,Castle,36.3-42.28,castle_s01e04_seg02_clip_09,She made a little snort noise. 9817,Foreman said Rofield would have his decision tomorrow,Foreman said Chase would have his decision tomorrow,Foreman said Bofield would have his decision tomorrow,Foreman said Dofield would have his decision tomorrow,Foreman said Cofield would have his decision tomorrow,4,"Who did Foreman say would have his decision tomorrow, when talking to House?",131856,House M.D.,57.29-71.61,house_s08e11_seg02_clip_23,Foreman said Cofield would have his decision tomorrow 9818,cristina calls it all work.,cristina calls it bad assery surgery,cristina calls it easy peasy surgery,cristina calls it the humpty dumpty surgery. ,cristina calls it dumb luck,3,How does cristina explain the procedure after mrs byrd mentions it,131857,Grey's Anatomy,43.24-61.9,grey_s03e06_seg02_clip_03,cristina calls it the humpty dumpty surgery. 9819,George and Derek,Meredith and Cristina,Izzie and Alex,Alex and George,Derek and Meredith,3,Who is in the elevator with the patient when the lights go out and the elevator stops moving?,131858,Grey's Anatomy,68.19-80.31,grey_s02e05_seg02_clip_04,Alex and George 9820,Money.,His car keys.,A comb.,His credit card.,A business card. ,3,What does Joey give Chandler before he leaves?,131859,Friends,15.61-34.22,friends_s01e14_seg02_clip_06,His credit card. 9821,sat down,winked at her,walked around the desk,called her Leann,showed her evidence,3,What did Castle do after Beckett exposes the woman?,131860,Castle,20.03-24.58,castle_s05e10_seg02_clip_24,called her Leann 9822,Chandler says grey,Chandler says black,Chandler says red,Chandler says blond.,Chandler says brown,3,What color does Chandler say was the hair of the girls he dated when in college?,131861,Friends,13.06-20.6,friends_s07e06_seg02_clip_04,Chandler says blond. 9823,A pack of cigars,A rock,A sock,An engagement ring,A wad of $20 bills,3,What does Joey pick up when grabs something off the floor?,131862,Friends,0-6.17,friends_s09e01_seg01_clip_00,An engagement ring 9824,He gave her a kiss.,He slid down in his chair.,He reached over and grabbed her hands.,He ran his fingers through her hair.,He sat up and put his fist on his chin.,4,How did Castle react after Beckett told him Coney Island?,131863,Castle,24.85-29.45,castle_s05e03_seg02_clip_26,He sat up and put his fist on his chin. 9825,Cavallo was with Harley Romero when he was taken into custody,Harley Romero reveals this information in his testimony,Castle found Cavallo's contact information in Harley Romero's cell phone,Harley Romero made up Cavallo and there actually is no Cavallo,Cavallo offered himself up when he found out Harley Romero had been taken into custody,3,"How are Montgomery, Castle, and Beckett able to identify Cavallo after Harley Romero is taken into custody?",131864,Castle,42.76-76.07,castle_s03e20_seg02_clip_24,Harley Romero made up Cavallo and there actually is no Cavallo 9826,test tubes,microscope,movie,beakers,nothing ,1,What was Masters looking into when she was in the lab with Taub?,131865,House M.D.,3.29-9.87,house_s07e10_seg02_clip_03,microscope 9827,he was reading a magazine ,he was reading a hard back book,he was reading a IPad,he was reading his reading a chalkboard,he was not and cannot read,0,What kind of book was Joey reading when he was sitting on the couch?,131866,Friends,0-24.58,friends_s03e18_seg01_clip_00,he was reading a magazine 9828,Sheldon's bed ,The armchair,The floor,His bed ,The couch,4,Where is Leonard sitting before Sheldon brings him the tea? ,131867,The Big Bang Theory,27.77-32.65,s01e06_seg02_clip_13,The couch 9829,They open the window. ,They shake his hand.,They give him a hug.,They leave the room.,They give him a high five.,3,What does the group do after they thank the colonel?,131868,The Big Bang Theory,66.56-72.42,s10e03_seg02_clip_17,They leave the room. 9830,Leonard was sitting up in his bed.,Leonard was standing in the middle of his room.,Leonard was lying on the sofa in the living room.,Leonard was sitting on the kitchen table.,Leonard was lying on Sheldon's bed.,0,Where was Leonard when he took off his clothing?,131869,The Big Bang Theory,0-15.11,s05e02_seg02_clip_07,Leonard was sitting up in his bed. 9831,Ryan,Castle,Montgomery,Lanie,Esposito,3,Who goes to the body after following Beckett down the steps?,131870,Castle,0-9.45,castle_s03e07_seg02_clip_01,Lanie 9832,Ice cream.,A beer.,A bottle of water.,A bottle of wine.,A sandwich.,3,What does Rachel grab out of the fridge when she is wearing her shower robe?,131871,Friends,81.01-84.13,friends_s05e23-24_seg02_clip_05,A bottle of wine. 9833,Wilson,House,Cameron,Emma,Chase,3,Who is having a lobectomy before Cuddy has to stabilize the patient?,131872,House M.D.,24.76-35.56,house_s03e17_seg02_clip_23,Emma 9834,They know the drug works because Raj is actually able to speak with a woman. ,They know the drug works because Raj is able to talk with Sheldon without stuttering. ,They know the drug works because Raj is able to walk without a limp. ,They know the drug works because Raj is able to speak English. ,They know the drug works because Raj is able to form proper sentences. ,0,How does Raj and Sheldon know that the drug worked after Raj is able to talk to a woman?,131873,The Big Bang Theory,5.49-24.72,s04e22_seg02_clip_13,They know the drug works because Raj is actually able to speak with a woman. 9835,Chandler,Ross,Monica,The Doctor,Tag,1,Who enters the room after Joey?,131874,Friends,28.43-40.04,friends_s09e01_seg02_clip_04,Ross 9836,On the floor,On the chair,On the window,On the bed,On the car,2,Where was the man sitting when the man in blue jacket tried to peep at him?,131875,The Big Bang Theory,1.89-4.1,s06e04_seg02_clip_12,On the window 9837,Janice accuses Chandler of having a fear of intimacy.,Janice accuses Chandler of having a fear of abandonment.,Janice accuses Chandler of having a fear of commitment.,Janice accuses Chandler of having a fear of responsibility.,Janice accuses Chandler of having a fear of being beholden.,2,What fear does Janice accuse Chandler of having when she's arguing on the couch with him?,131876,Friends,8.4-13.45,friends_s01e05_seg02_clip_15,Janice accuses Chandler of having a fear of commitment. 9838,A gun and bullet,A knife and plate,A cup and spoon,A ruler and paper,A pen and paper,4,What did Penny has in her hand when she was talking to the other ladies about her love life? ,131877,The Big Bang Theory,5.22-9,s06e02_seg01_clip_01,A pen and paper 9839,Monica ask Chandler for a shawl,Monica ask Chandler for her coat,Monica ask Chandler for a sweater,Monica ask Chandler for his jacket,Monica ask Chandler for her mink,3,What does Monica ask Chandler for after she tells him she is cold,131878,Friends,3.97-14.34,friends_s06e24-25_seg02_clip_07,Monica ask Chandler for his jacket 9840,Nothing,The loan sharks would get him,Hurt his pride,He'd start complaining,Have a fit,2,What would happen to Chandler after he finds out about the loan according to Monica?,131879,Friends,25.09-30.93,friends_s09e16_seg02_clip_04,Hurt his pride 9841,Castle is confused because he thought Dr. Barker and Francisco were a couple.,Castle is confused because he assumed Dr. Barker treated people.,Castle is confused because he thought Royal was her dog.,Castle is confused because he didn't know people ate their own feces.,Castle is confused because Dr. Barker says she doesn't know who Royal is.,1,Why is Castle confused when talking to Dr. Barker about her patients?,131880,Castle,30.28-47.2,castle_s04e13_seg02_clip_07,Castle is confused because he assumed Dr. Barker treated people. 9842,Tony thinks Dino was a brontosaurus.,Tony thinks Dino was a velociraptor.,Tony thinks Dino was a Trilobite.,Tony thinks Dino was a turtle.,Tony thinks Dino was a Pterodactyl.,1,What kind of dinosaur does Tony think Dino was when he's arguing on the phone with Ross?,131881,Friends,0-3.05,friends_s02e17_seg02_clip_08,Tony thinks Dino was a velociraptor. 9843,Capillariasis.,Blastomycosis.,Actinomycosis.,Brucellosis.,Listeriosis.,3,What does Cameron say the official diagnosis is after the patient's medical emergency? ,131882,House M.D.,59.07-61.4,house_s02e14_seg02_clip_08,Brucellosis. 9844,A knife,A pen,A pin,A picture,A gum,3,What did Beckett pick from the board when she faced it?,131883,Castle,41.04-45.05,castle_s03e09_seg02_clip_10,A picture 9845,Because Ross is afraid that he'll have to be admitted to the hospital.,Because Ross is afraid of needles.,Because Ross thinks that the doctor is going to put him in the hospital.,Because Ross is afraid that he'll be badly hurt by the doctor.,Because Monica is being condescending to her brother.,1,Why does Monica ask whether Ross can be brave after the doctor gives his opinion?,131884,Friends,46.04-59.03,friends_s02e06_seg02_clip_07,Because Ross is afraid of needles. 9846,He throws up,He passes out,He stops breathing ,He has a stroke ,He has a seizure,4,What happens to the boy after the doctor checks his eyes ,131885,House M.D.,43.29-52.38,house_s06e04_seg02_clip_04,He has a seizure 9847,Sheldon,Raj,Wil Wheaton,Stuart ,Penny,1,Who leaves the room first when they fight?,131886,The Big Bang Theory,0-45.92,s03e04_seg02_clip_16,Raj 9848,She wants to make sure he has been using lotion. ,She wants to touch his hands. ,She wants to make sure he is getting proper calluses. ,She wants to make sure he played all the guitars. ,She wants to see if he is lying. ,4,Why does Phoebe smell Joey's hands after he says he didn't touch any of the guitars?,131887,Friends,8.12-23.21,friends_s05e11_seg02_clip_06,She wants to see if he is lying. 9849,Three years,Seventy years,Fifteen years,Twenty years,Fourteen years,3,How many years does Chase tell Nadia she has to live after she asks about death?,131888,House M.D.,78.4-84.58,house_s07e12_seg02_clip_23,Twenty years 9850,Castle and Montgomery are watching through monitors,Ryan and Castle are watching through monitors,Montgomery and Ryan are watching through monitors,Esposito and Ryan are watching through monitors,No one is watching through monitors,0,Who is watching Becketts interrogation when they are watching them through monitors?,131889,Castle,75.7-82.15,castle_s03e06_seg02_clip_14,Castle and Montgomery are watching through monitors 9851,scarf,glasses,mask,paint,nothing,1,What is the girl on the front row wearing on her face when Sheldon is speaking?,131890,The Big Bang Theory,0-8.15,s06e18_seg02_clip_09,glasses 9852,Michael Espainoza,Esposito,Joel Gallagher,Kate Beckett,Alexis Castle,3,What person is calling Castle when he looks at his phone?,131891,Castle,10.7-20,castle_s04e23_seg02_clip_25,Kate Beckett 9853,Raj is talking to his girlfriend,Raj is talking to his sister,Raj is talking to Penny,Raj is talking to his parents,Raj is talking to Sheldon,3,Who is Raj talking to when he is on his laptop,131892,The Big Bang Theory,3.66-10.07,s01e08_seg02_clip_12,Raj is talking to his parents 9854,Phoebe,Monica,Rachel,Emma,Joey,3,Who does Ross blame after he sees something wrong with his baby?,131893,Friends,33.26-49.74,friends_s10e05_seg02_clip_17,Emma 9855,Eye wear,Paperclip,Hair clip,Gloves,Tie clip,4,What is the item Cuddy tells a student to wear after seeing he doesn't have one?,131894,House M.D.,85.56-91.03,house_s01e04_seg02_clip_06,Tie clip 9856,I thought I was in my room.,I wasn't eating popcorn on your bed,But the Princess Bride is a classic.,I was told the name of the movie would not appear on the bill.,Those remotes are really complicated,3,"What did Joey say that indicated he was the one that ordered the movie, after Rachel had protested to the front desk clerk?",131895,Friends,24.69-31.48,friends_s08e02_seg01_clip_00,I was told the name of the movie would not appear on the bill. 9857,House told the patient that he needs to make a decision ,House told the patient that he has other options,House told the patient that either he does it or he dies,House told the patient that he was too hesitant,House didn't tell the patient anything,2,What does House tell the patient who is with him after he showed him what the tool could do?,131896,House M.D.,85.91-89.02,house_s02e24_seg02_clip_22,House told the patient that either he does it or he dies 9858,Chandler said they could hear a woman in labor,Chandler said they could hear babies crying,Chandler said they could hear a baby calling their names,Chandler said they could hear the sound of a condom breaking,Chandler said they could hear a man crying out of relief,3,What did Chandler say they could hear if they were quiet when they were standing at the window,131897,Friends,43.06-52.09,friends_s09e22_seg02_clip_21,Chandler said they could hear the sound of a condom breaking 9859,The wicken's broom,The defendant's wardrobe,The defendant's bed,The plaintiff's bed,A young girl's prom dress,3,What object is mentioned when House is talking to Castle?,131898,House M.D.,9.07-15.67,house_s01e09_seg02_clip_08,The plaintiff's bed 9860,For cheating on her,For talking behind her back,For not paying her money back,For Doubting what she is capable of,For lying to her face.,3,Why does Leonard apologize to Penny when they are talking?,131899,The Big Bang Theory,16.51-32.71,s07e12_seg02_clip_10,For Doubting what she is capable of 9861,Cutty ,Forman,Thirteen,Wilson,Taub,1,Which doctor enter the room after the patient review has started? ,131900,House M.D.,1.81-7.71,house_s01e12_seg02_clip_07,Forman 9862,Getting something to eat.,Laundry.,Carrying in groceries.,Taking out the trash.,Getting rid of some old junk.,1,What was Penny doing before she talks to the guys?,131901,The Big Bang Theory,47.9-61.02,s04e11_seg02_clip_05,Laundry. 9863,He spills them ,On the couch,In his lap ,He hands them to Rachel,On the table,4,Where does Ross place the tray of drinks when he sits down?,131902,Friends,16.82-24.79,friends_s06e15-16_seg02_clip_38,On the table 9864,At her boyfriend's best friends house,At Joey's house,At the bartender's house from the bar they were at the previous night,At Monica's apartment,At Ross' apartment,1,Where did Ross ask Rachel if she stayed the night after she complained to him about men not caring about marriage,131903,Friends,39.55-51.94,friends_s06e15-16_seg02_clip_38,At Joey's house 9865,He says she left him,He says she refused to help him,He says he is worried to death about her,He says he has been warned not to talk,He says he doesn't want to get himself or Beckett in any trouble,0,Why does Castle tell Hyde that Beckett is a sore subject when she asks about her?,131904,Castle,83.74-92.03,castle_s08e02_seg02_clip_12,He says she left him 9866,He was playing the piano.,He was playing the guitar.,He was playing the drums.,He was playing bass.,He was playing the violin.,2,What was Howard playing when Penny opened the door and said fellas please?,131905,The Big Bang Theory,22.49-31.86,s02e15_seg01_clip_00,He was playing the drums. 9867,Gave Monica a hug,Set down a newspaper,Pointed at Rachel,Answered the phone,Turned off the TV,2,What did Ross do before Rachel said something about his suit making a point?,131906,Friends,19.53-27.46,friends_s03e21_seg02_clip_03,Pointed at Rachel 9868,Because Jessica's blood sugars were low.,Because Jessica was suffering a psychotic break.,Because Jessica was abused by doctors in the past.,Because Jessica is known to suffer from schizophrenia.,Because Jessica is having a rare psychotic reaction to steroids she has been given.,0,Why do the doctors think Jessica acted out that way after she had her fit of rage?,131907,House M.D.,10.06-13.71,house_s01e16_seg02_clip_06,Because Jessica's blood sugars were low. 9869,He was writing notes.,House was just ending a phone call.,He was looking at a file.,House was looking at Wilson as he went out.,He was attending to a patient.,1,What was House doing when Wilson came back to his office?,131908,House M.D.,73.84-84.92,house_s04e16_seg02_clip_13,House was just ending a phone call. 9870,On the ceiling between Castle and Avery.,On the ceiling between Castle and Becket.,On the ceiling between Becket and Avery.,Behind Avery on the wall.,Behind Castle on the wall.,0,Where was the red light after Castle said this was too easy?,131909,Castle,75.15-83.21,castle_s02e18_seg02_clip_20,On the ceiling between Castle and Avery. 9871,To the country,To the city,To an island,To Europe,To Asia,1,Where does the girl move to when Monica gives Chandler a synopsis of the movie?,131910,Friends,8.61-12.17,friends_s08e15_seg02_clip_06,To the city 9872,Boston,New York city,Trenton,Ithaca,Albany,3,What city did Keith say the murder victim changed when he was talking to Beckett?,131911,Castle,76.51-92.18,castle_s05e07_seg02_clip_14,Ithaca 9873,The santa worker starts laughing,the Santa worker looks back at Beckett,The Santa worker looks at Castle,Castle looks disapprovingly of the Santa,the santa runs away,1,What happens when Beckett looks at the Santa worker?,131912,Castle,2.23-4.92,castle_s05e09_seg02_clip_06,the Santa worker looks back at Beckett 9874,A large milkshake.,A cup of coffee.,A bottle of beer.,A glass of whiskey.,A glass of water.,2,What is Wilson drinking when he is sitting in the diner?,131913,House M.D.,82.48-87.81,house_s08e21_seg02_clip_09,A bottle of beer. 9875,Bracken feels nervous.,Bracken feels happy to tell the truth.,Bracken feels guilty.,Bracken feels anxious.,Bracken feels he is smarter than that because it will link him to the crime scene.,4,How does Bracken feel when Kate asks him to do it now and tell the truth?,131914,Castle,0-22.41,castle_s06e22_seg02_clip_18,Bracken feels he is smarter than that because it will link him to the crime scene. 9876,Call his dad,Eat a sandwhich,Fart,Burp,Drop his pants,4,What does Joey do in his room when Chandler enters?,131915,Friends,4.58-10.37,friends_s07e11_seg02_clip_10,Drop his pants 9877,On the counter to the left behind her.,There is no biohazard box.,To the right.,On the floor,On the edge of the front of the counter.,0,Where is the biohazard container located when Phoebe is in the exam room?,131916,Friends,17.7-39.97,friends_s04e12_seg02_clip_08,On the counter to the left behind her. 9878,Ryan was in the morgue.,Ryan was in the car.,Ryan was across the street.,Ryan was in a restaurant.,Ryan was in a tree.,4,Where was Ryan when he yelled out to Beckett?,131917,Castle,48.04-55.9,castle_s03e04_seg02_clip_23,Ryan was in a tree. 9879,She saved him,She hit him,She cut him,She bit him,She danced,0,What did Jill do when Chandler was choking?,131918,Friends,15.35-21.84,friends_s01e07_seg02_clip_18,She saved him 9880,Leonard walked to the door.,Leonard lay down on his back.,Leonard started singing.,Leonard ordered pizza.,Leonard kissed Penny.,1,What did Leonard do after Penny said go to sleep?,131919,The Big Bang Theory,26.98-30.75,s04e13_seg02_clip_11,Leonard lay down on his back. 9881,DNA samples.,A drawing of a suspect.,A murder weapon.,Confidential documents.,A photo of a suspect.,4,What does Beckett show Benny after she questions him about Scarlett O' Hara?,131920,Castle,76.26-78.08,castle_s02e23_seg02_clip_19,A photo of a suspect. 9882,Ross says Monica left him.,Ross says Joey left him.,Ross says Carol left him.,Ross says Chandler left him.,Ross says Rachel left him.,2,Who does Ross say left him after he mentions making dinner by himself?,131921,Friends,36.42-44.26,friends_s01e05_seg02_clip_15,Ross says Carol left him. 9883,On the floor.,On his couch.,In his bed.,Under a car.,On the beach.,2,Where is Punchy lying when Ted calls him on the phone?,131922,How I Met You Mother,25.39-28.35,met_s06e09_seg02_clip_04,In his bed. 9884,sleepy,tired,bored,happy,hate,4,How did Sheldon feel about Will Wheaton when he was the bookstore?,131923,The Big Bang Theory,0-15.26,s03e05_seg02_clip_06,hate 9885,A white bandage.,A hat.,A scarf.,A necklace.,Headphones. ,0,What was on Joe's head when he was talking to Foreman?,131924,House M.D.,10.01-15.47,house_s02e20_seg02_clip_16,A white bandage. 9886,A bomb,Chinese takeout,Fried chicken,Pizza,Donuts,1,What was in the box the middle-eastern man was carrying when he was arrested?,131925,Castle,18.41-25.31,castle_s04e19_seg02_clip_06,Chinese takeout 9887,Phoebe was eating a sandwich.,Phoebe was sleeping on the sofa.,Phoebe was drinking coffee.,Phoebe was playing her guitar.,Phoebe was talking to Monica.,3,What was Phoebe doing when Rachel and Terry were talking about her?,131926,Friends,28.72-35.69,friends_s02e06_seg02_clip_03,Phoebe was playing her guitar. 9888,Sheldon jumps up and down when the Colonel arrives.,"Sheldon mumbles ""good morning"" to the Colonel when he arrives.",Sheldon waves to the Colonel when he arrives.,Sheldon offers his hand to shake when the Colonel arrives.,Sheldon smiles and bows when the Colonel arrives.,2,How does Sheldon greet Colonel Williams when he arrives?,131927,The Big Bang Theory,18.49-38.29,s10e02_seg02_clip_07,Sheldon waves to the Colonel when he arrives. 9889,Street address numbers,All prime numbers,Fraction numbers,Sports jersey numbers,The lottery numbers,4,What numbers is House talking about when he tells the woman he would take them?,131928,House M.D.,15.97-18.49,house_s04e08_seg02_clip_26,The lottery numbers 9890,Patted Taub on the back.,Opened his wallet.,Shook Taub's hand. ,Offered him chips.,Walked away.,3,What did House do after Taub offered to split the fifty with him?,131929,House M.D.,67.25-75.58,house_s08e13_seg02_clip_26,Offered him chips. 9891,Castle gave Beckett a hug,Castle stopped and walked backward,Castle gave Beckett a folder,Castle gave Beckett a phone,Castle gave Beckett a paper,1,What did Castle do when he and Beckett was about to enter the interrogation room ?,131930,Castle,26.73-34.57,castle_s05e07_seg02_clip_14,Castle stopped and walked backward 9892,Strong,Happy,Humiliated,Confident,Competent,2,How did Leonard say guys like Kripke make Leonard feel during most of his life after he refused to call off the competition,131931,The Big Bang Theory,26.12-50.72,s02e12_seg02_clip_14,Humiliated 9893,The rat was running on a wheel.,The rat was taking a nap.,The rat was eating some cheese.,The rat was rolling around in water.,The rat was fighting a spider.,0,What was the white rat doing when it was inside it cage?,131932,Castle,0-2.73,castle_s03e08_seg02_clip_00,The rat was running on a wheel. 9894,75%,50%,10%,25%,90%,3,What were the chances of Phoebe getting pregnant when the doctor was explaining the procedure?,131933,Friends,0-9.86,friends_s04e12_seg02_clip_04,25% 9895,Brian,James,Cane,Adam,House,4,"Who was Wilson talking to when he said ""No breakfast?""",131934,House M.D.,0-6.23,house_s06e05_seg02_clip_18,House 9896,Sheldon is taking an inventory of his cats.,Sheldon is taking an inventory of his things.,Sheldon is taking an inventory of his dogs.,Sheldon is taking an inventory of his pogs.,Sheldon is taking an inventory of his frogs.,1,What is Sheldon doing when Amy is at his apartment?,131935,The Big Bang Theory,2.24-17.29,s06e15_seg02_clip_06,Sheldon is taking an inventory of his things. 9897,Joe answers. ,Troy answers. ,Castle answers. ,Danny answers. ,Ryan answers. ,0,What happens after Beckett knocks on the door?,131936,Castle,29.31-39.68,castle_s03e04_seg02_clip_17,Joe answers. 9898,A guitar. ,A clarinet. ,A violin. ,A tuba. ,A drum. ,0,What is Phoebe holding when she is sitting on the arm of the couch in the coffee house?,131937,Friends,32.34-33.87,friends_s01e10_seg02_clip_01,A guitar. 9899,Rachel,Monica,Phoebe,Joey,Chandler,0,Who did the groomsman start his speech mentioning Barry and his first date with when he gave his toast?,131938,Friends,0-7.93,friends_s02e24_seg02_clip_14,Rachel 9900,Sheldon closed the door.,Sheldon run fast.,Sheldon left but Amy called himto come back.,Sheldon lock the door.,Sheldon painted the door.,2,What did Sheldon after talking to Amy.,131939,The Big Bang Theory,33.09-63.02,s07e05_seg02_clip_02,Sheldon left but Amy called himto come back. 9901,In the closet,On a hook,On the back of a chair,On a table,On the kitchen counter,2,Where did the woman put the coat and gloves after she went into the apartment?,131940,Castle,49.29-56.78,castle_s01e02_seg02_clip_17,On the back of a chair 9902,Two bananas.,Cotton candy.,Two apples.,Two corn cogs.,A burger.,3,What did Ross set on the counter after he tried to apologize to Phoebe?,131941,Friends,6.11-10.69,friends_s09e04_seg02_clip_03,Two corn cogs. 9903,Miracle Wax,the fire department,the fire extinguisher,Miracle Glaze,Waxy Finish,0,What did Joey say was protecting the car's expensive paint job when it was on fire?,131942,Friends,8.7-21.61,friends_s02e15_seg02_clip_08,Miracle Wax 9904,A cuckoo clock.,An alarm clock.,A barometer.,A wall clock.,Chess clock.,4,What is Castle messing around with when he and Beckett are at Tracy's looking for clues?,131943,Castle,23.47-32.67,castle_s04e15_seg02_clip_15,Chess clock. 9905,Joey was running out of time before he had to leave and go to work.,Joey thought the Dance DIrector needed to be fired.,Joey's partner stormed off.,Joey was happily fantasizing about his dance partner.,Joey was tired and wanted to go home.,3,"Why did Joey yell, ""No!"" when the Dance Director yelled, ""Cut!""?",131944,Friends,42.21-57.07,friends_s06e10_seg02_clip_15,Joey was happily fantasizing about his dance partner. 9906,She is sitting down,She is filing her nails,She is eating nachos,She is applying lipstick,She is brushing his teeth,0,What does the woman do before she asks Joey what they are suppose to do about the scene?,131945,Friends,1.17-5.86,friends_s03e20_seg02_clip_10,She is sitting down 9907,Barney the Dinosaur,Akeelah,Lindsay Lohan,Paris Hilton,KeKe Palmer,2,Who did House say wins the spelling bee when he hits pause on the dvd player?,131946,House M.D.,31.86-37.78,house_s02e19_seg02_clip_00,Lindsay Lohan 9908,Addison was seated in the room.,Richard was seated in the room.,Meredith was seated in the room.,George was seated in the room.,Mark was seated in the room.,1,Who was in the room when Derek knocked and came in?,131947,Grey's Anatomy,45.54-51.04,grey_s03e02_seg02_clip_07,Richard was seated in the room. 9909,The closet.,The hallway.,From the bathroom.,The ceiling.,From under the bed.,2,Where did Cristina's mother come from after she said something about her?,131948,Grey's Anatomy,48.84-52.56,grey_s02e04_seg02_clip_00,From the bathroom. 9910,lying on the couch,standing,siting on the ground,jumping up and down,upside down,0,what position was joey in when rachel talked to him,131949,Friends,41.12-47.12,friends_s05e14_seg02_clip_12,lying on the couch 9911,A cellphone.,A photograph.,An apple.,A glass of water.,A banana.,0,What does House give the patient when she's in bed?,131950,House M.D.,72.69-81.89,house_s05e08_seg02_clip_24,A cellphone. 9912,A bug list ,A pencil,A flower,A crayon,A cup,0,What did Leonard hand penny after she openend the door,131951,The Big Bang Theory,0-12.98,s05e14_seg02_clip_05,A bug list 9913,Makes a phone call.,Drinks water.,Keeos writing.,Runs away.,Falls asleep.,2,What does Marshall do when the man comes to his desk?,131952,How I Met You Mother,51.48-61.41,met_s03e08_seg02_clip_00,Keeos writing. 9914,The detectives on TV seemed fixated on their sunglasses.,Other detectives had refused to let Castle shadow them because he was inexperienced.,Castle had written 26 books about detective work and now needed to shadow a real one.,The detectives in other cities were only fixated on their salaries.,The detectives in his home town were only interested in murder cases.,0,What reason did Castle give after Sorenson questioned his motives for shadowing Beckett?,131953,Castle,53.52-60.77,castle_s01e09_seg02_clip_05,The detectives on TV seemed fixated on their sunglasses. 9915,Sitting at a desk.,Standing in a garden.,Walking up the stairs.,Sitting in the grass.,Standing on the sidewalk.,4,Where were Castle and Beckett when Esposito was talking to them on the phone?,131954,Castle,8.62-14.22,castle_s03e21_seg02_clip_14,Standing on the sidewalk. 9916,pulls out his phone,Pats himself on the back,pulls up a file on the computer,Holds a picture out to Montgomery and Ryan,Drops a file on the floor,3,What does Esposito do after he says he got a photo off video surveilance?,131955,Castle,13.85-18.77,castle_s02e09_seg02_clip_04,Holds a picture out to Montgomery and Ryan 9917,Masters cried,Masters followed Dr. Cuddy,Masters quit her job,Masters yelled at Dr. Cuddy,Masters agreed ,1,What did Masters do after Dr. Cuddy said try me tomorrow? ,131956,House M.D.,65.35-72.06,house_s07e19_seg02_clip_02,Masters followed Dr. Cuddy 9918,She was staring at the white board.,She was on the computer.,She was writing on the board.,She was drinking coffee.,She was in the drawer.,0,What was Beckett doing when Castle walked in?,131957,Castle,10.31-14.17,castle_s02e17_seg02_clip_13,She was staring at the white board. 9919,a hamster ,seals,cats,monkeys,a tiger,1,What did Chandler say was licking Ross's face when leaving the apartment?,131958,Friends,2.42-12.71,friends_s04e09_seg02_clip_12,seals 9920,10 free socks,10 free pants,10 free underwear,10 free shirts,10 free drinks,3,What does Rachel bribe Joey with when he is reluctant to talk to Tag?,131959,Friends,44.44-50.42,friends_s07e05_seg02_clip_13,10 free shirts 9921,Castle,Becca,Mrs Harris Husband,An Old Man,Becca's Teacher,2,Who does Beckett find out was present at the date of the incident when talking to Mrs Harris?,131960,Castle,73.94-88.02,castle_s01e02_seg02_clip_17,Mrs Harris Husband 9922,Water,Asparagas,Wine,Lobster,Salad,3,"What does Leonard's date say is ""good on the way down and the way up"" after belching?",131961,The Big Bang Theory,20.39-59.09,s04e05_seg02_clip_13,Lobster 9923,Because someone wants to compliment her personality.,Because someone wants to compliment her outfit.,Because someone wants to compliment her cooking.,Because someone wants to compliment her work ethic.,Because someone wants to compliment her child.,2,Why is Monica excited when the waitress comes back to ask her a question?,131962,Friends,34.17-41.73,friends_s06e24-25_seg02_clip_20,Because someone wants to compliment her cooking. 9924,Ted pushes Barney,Ted throws his hands up,Barney shakes his head,Barney gives him a high five,Everyone laughs,4,"What happens after Ted says ""A butterfly?""",131963,How I Met You Mother,21.03-25.98,met_s03e01_seg02_clip_12,Everyone laughs 9925,the floor,the phone,the x-ray,his head,his shirt,2,What did Burke point out before he started talking?,131964,Grey's Anatomy,6.65-13.3,grey_s01e07_seg02_clip_04,the x-ray 9926,Her boss,A witness,Her fiancee,A dog,A cat,1,What was on the other side of the door after Beckett opened it,131965,Castle,29.47-33.55,castle_s04e22_seg02_clip_19,A witness 9927,Through her back,Through her abdomen,Through her veins,Through her pelvis,Through an artery ,2,How does Cuddy suggest the doctors enter the patients liver when discussing treatment of the pregnant patient?,131966,House M.D.,71.45-81.47,house_s03e17_seg02_clip_15,Through her veins 9928,slightly childish,slightly angered ,slightly excited,slightly annoyed,slightly worried. ,0,how is house acting after foreman gives him ideas to the issue with the patient?,131967,House M.D.,17.1-32.41,house_s02e13_seg02_clip_08,slightly childish 9929,A white carnation,A white rose.,A lapel pin.,A blue carnation.,A blue rose.,0,What did Dempsey have on his lapel when he was standing next to Pricilla Campbell?,131968,Castle,57.2-61.23,castle_s04e14_seg02_clip_18,A white carnation 9930,friends,comics,statues,good ideas,personal service,4,What was the reason Sheldon gave when he said he came to the comic book store? ,131969,The Big Bang Theory,50.24-62.02,s03e05_seg02_clip_04,personal service 9931,He tries to fight Leonard,He says okay,He punches Leonard,He punches Sheldin,He leaves the room,1,What does Howard do after Leonard tells him to sit down?,131970,The Big Bang Theory,16.25-56.02,s01e13_seg02_clip_03,He says okay 9932,He slammed the door.,He put down a magazine.,He spit out his food.,He broke a glass.,He hung up the telephone.,1,"What did Joey do after saying, ""This sucks.""?",131971,Friends,49.9-55.41,friends_s04e20_seg02_clip_07,He put down a magazine. 9933,Ross wants to sign up for a class,Ross wants to ask him out,Ross wants to tell him he is good looking,Ross wants to get some legal advice,Ross wants advice on fighting,4,Why does Ross approach the man after he enters?,131972,Friends,20.67-46.57,friends_s06e17_seg02_clip_16,Ross wants advice on fighting 9934,Laying on the floor.,In the closet.,In the bathroom.,Under the bed.,On the bed.,4,Where was Bernadette when Howard said they needed to call the police?,131973,The Big Bang Theory,0-4.5,s10e05_seg02_clip_05,On the bed. 9935,Marie,Melanie,Mona,Malorie,Melissa,0,Who does Pete say he was having dinner with when his brother died?,131974,Castle,22.66-29.45,castle_s04e06_seg02_clip_22,Marie 9936,Rachel and Phoebe are in a restaurant ,Rachel and Phoebe are in a zoo,Rachel and Phoebe are in an empty place,Rachel and Phoebe are in a coffee shop,Rachel and Phoebe are at a concert,2,Where are Rachel and Phoebe when they are talking?,131975,Friends,0-10.23,friends_s07e10_seg02_clip_18,Rachel and Phoebe are in an empty place 9937,Ross wants Chandler to be the groomsman,Ross wants Joey to be the gromsman,Ross wants to be the groomsman,Ross thinks Rachel lied to him,Ross is upset because of Rachel's clothing,2,Why is Ross upset after Rachel says she has not made up her mind yet?,131976,Friends,13.19-32.2,friends_s10e12_seg02_clip_12,Ross wants to be the groomsman 9938,A phone book.,A chalkboard.,A Post It note.,A white board.,A clipboard.,4,What does Sheldon write on after Howard crashes the dragon into the volcano?,131977,The Big Bang Theory,15.82-22.99,s06e23_seg02_clip_11,A clipboard. 9939,Four times,Once,Three times,Twice,Zero times,3,How many times has Castle gotten married before meeting Kyra?,131978,Castle,0-8.5,castle_s02e12_seg02_clip_12,Twice 9940,Priya asked about Penny.,Priya drinks some of her diet root beer and thanked Bernadette.,Priya sat on Raj.,Priya kissed Howard., Priya talked on the phone.,1,What does Priya do after Bernadette confirms her drink is diet?,131979,The Big Bang Theory,11.84-18.89,s04e23_seg02_clip_00,Priya drinks some of her diet root beer and thanked Bernadette. 9941,Carter,Castle,Lyle,Page,Riggs,2,Who answers the door after Alexis knocks on it?,131980,Castle,0-4.63,castle_s06e07_seg02_clip_12,Lyle 9942,One,Three,Four,Two,Five,0,How many people were behind Alvie to his right when House asked Miss X if anything looked familiar?,131981,House M.D.,34.82-38.84,house_s06e20_seg02_clip_03,One 9943,Big earthquake,Their wedding,Monica will lose a dollar,Monica will break up with Chandler,Chandler will cry,1,What will happen when Monica next sees Chandler?,131982,Friends,0-7.29,friends_s07e23-24_seg02_clip_10,Their wedding 9944,Frightened,Scared,Angry,Excited,Nervous,3,How does Jane Doe feel about her upcoming surgery when talking to Alex?,131983,Grey's Anatomy,21.3-35.79,grey_s03e23_seg02_clip_02,Excited 9945,House presents her with jewelry.,House presents her with an award.,House presents her with a photograph.,House presents her with a packet of paper.,House presents her with a check.,3,What does House present to Cuddy after she walks in his office?,131984,House M.D.,54.83-57.92,house_s06e13_seg02_clip_12,House presents her with a packet of paper. 9946,At the train station.,At a different bar.,At a wedding.,At the airport.,At a restaurant.,2,When does Ted reveal he met the mother of his children after expressing Cindy ditched him?,131985,How I Met You Mother,41.71-64.39,met_s06e01_seg02_clip_16,At a wedding. 9947,Purple.,Purple.,Orange.,Black.,Pink.,3,What color shirt is Cuddy wearing when she was talking to Valerie?,131986,House M.D.,50.12-66.09,house_s06e11_seg02_clip_16,Black. 9948,Meredith was assiting Addision,George was assiting Addision,Alex was assiting Addision,Cristina was assiting Addision,Burke was assiting Addision,2,Who was assiting Addision when her patient was going through complications?,131987,Grey's Anatomy,12.29-17.75,grey_s03e04_seg02_clip_16,Alex was assiting Addision 9949,Howard explains a math theorem.,Howard sings for Sheldon.,Howard juggles for Sheldon.,Howard demonstrates karate.,Howard performs a magic for Sheldon.,4,What kind of activity does Howard demonstrate for Sheldon after he arrives?,131988,The Big Bang Theory,18.61-56.82,s04e18_seg02_clip_16,Howard performs a magic for Sheldon. 9950,He didn't move his suitcase from his left hand to his right.,He wanted to hit House,He wanted to his the guy in the hospital bed,He wanted to look cool,He wanted his left hand to be free to fix the guy's sheet on his bed.,4,Why did Cofield Move his suitcase from his left hand to his right hand after he spoke with the guy in the hospital bed?,131989,House M.D.,20.25-34.05,house_s08e11_seg02_clip_21,He wanted his left hand to be free to fix the guy's sheet on his bed. 9951,fell down,Walked up to him,ran away,laughed,Hid behind a door,4,What did Meredith do after she saw the guy?,131990,Grey's Anatomy,54.47-57.57,grey_s02e22_seg02_clip_20,Hid behind a door 9952,Thirteen ,House ,Cuddy ,"Cameron, Chase and Foreman ",Taub,3,Who did Wilson give orders to when he was in the hospital hallway? ,131991,House M.D.,0-8.65,house_s03e18_seg02_clip_04,"Cameron, Chase and Foreman " 9953,Computers.,Home phones.,Office phones.,Cell phones.,Cameras.,3,What did Holliwel monitor when listening for the mention of Ike Thorton?,131992,Castle,0-5.89,castle_s02e21_seg02_clip_17,Cell phones. 9954,Thumbs up,Thumbs down,points,makes an okay sign,waves to come here,0,What motion does Raj do to Leonard after Leonard shows him his computer page?,131993,The Big Bang Theory,0-46.01,s02e18_seg02_clip_05,Thumbs up 9955,Oh my God!,What are you doing here?,Hey y'all!,What's up?,Chandler!,0,What does Janice scream when she comes downstairs and sees Monica and Chandler?,131994,Friends,11.77-31.37,friends_s10e15_seg02_clip_07,Oh my God! 9956,Reading the poem,Eating a pizza,Petting the duck,watching Baywatch,trying to learn his lines for a play.,0,What is Joey doing when Phoebe and Chandler are discussing the poem?,131995,Friends,0-15.82,friends_s03e12_seg02_clip_08,Reading the poem 9957,Beckett,Castle,Esposito,Gates,security guard,2,"Who kicks down the door Robert McManus is staying in, when the NYPD raid his apartment?",131996,Castle,47.63-56.19,castle_s05e13_seg02_clip_15,Esposito 9958,Danny's father was in Australia.,Danny's father was in prison.,Danny's father was in a state-sponsored rehab.,Danny's father was in China.,Danny's father was in Russia.,2,Where was Danny's father when it was November?,131997,House M.D.,6-9,house_s07e17_seg02_clip_15,Danny's father was in a state-sponsored rehab. 9959,He takes a pill,He runs out of the room,He puts on a mask,He pulls his shirt over his nose.,He starts crying,3,What does Sheldon do after the doctors tell him he has been exposed in the hospital room?,131998,The Big Bang Theory,18.21-27.73,s04e23_seg02_clip_13,He pulls his shirt over his nose. 9960,His fork.,His green napkin.,The newspaper he was holding.,Some money to pay the food bill.,His hamburger.,1,What does Howard throw on the table when he is angry with Penny?,131999,The Big Bang Theory,36.4-39.28,s06e07_seg02_clip_05,His green napkin. 9961,Green,Red,Black,Grey,Blue,0,"What color is the shirt Sheldon is wearing when he say's ""Bad Leonard""?",132000,The Big Bang Theory,0-8.96,s03e03_seg02_clip_08,Green 9962,From the flower shop.,The reception.,Katie sent them to him.,Out of someone's yard.,The hotel lobby.,4,Where did Ross say he got the flowers when Phoebe asked if he stole them from the wedding?,132001,Friends,8-14.8,friends_s08e02_seg02_clip_18,The hotel lobby. 9963,Ryan,Esposito,Duncan,the captian,Castle,4,Who suggests inviting Beckett and the Mccord coffee when they were watching them?,132002,Castle,25.42-28.6,castle_s06e03_seg02_clip_07,Castle 9964, In her pocket.,On a table.,Vending machine.,In Georges hand.,A water fountain.,2,Where did Cristina put her money when George said it was going to work?,132003,Grey's Anatomy,0-8.55,grey_s01e07_seg02_clip_10,Vending machine. 9965,a bowl of fruit,a tv,the fridge,a bookshelf,a couch,4,What was behind Howard when he started choking?,132004,The Big Bang Theory,8.13-15.05,s01e16_seg02_clip_08,a couch 9966,Penny called Bernadette and Howard on the phone.,Penny painted her face.,Penny rolled on the floor.,Penny turned around to face Leonard.,Penny read a book.,3,What did Penny do after Leonard mentioned a truce?,132005,The Big Bang Theory,2.32-11.02,s04e13_seg02_clip_11,Penny turned around to face Leonard. 9967,Barney and the bartender.,Barney and Lily.,Barney and Hammond.,Barney and Ted.,Barney and his date.,4,Who were behind the counter of the bar after having sex?,132006,How I Met You Mother,23.21-58.02,met_s03e11_seg02_clip_01,Barney and his date. 9968,Cuddy.,House.,Foreman.,Cameron.,Chase.,1,Who was outside in the hall when Wilson opened the door? ,132007,House M.D.,49.55-52.68,house_s05e21_seg02_clip_10,House. 9969,Lily dances with Robin.,Lily proposes to Marshall.,Lily shakes her head smugly.,Lily runs to the door.,Lily hugs Marshall.,2,What does Lily do after Robin says she is right?,132008,How I Met You Mother,15.13-17.56,met_s03e08_seg02_clip_12,Lily shakes her head smugly. 9970,George was delighted.,George was ecstatic.,George was mad.,George was amused.,George was impressed.,2,What was George's reaction when Izzie talked to him?,132009,Grey's Anatomy,0-8.74,grey_s03e17_seg02_clip_10,George was mad. 9971,Beckett was looking at the ocean,Beckett was looking at a boat,Beckett was looking at picture of two people,Beckett was looking at a car,Beckett was not look at anything,2,What was Beckett looking at when she was talking to Castle about Romeo and Juliet?,132010,Castle,17.21-25.82,castle_s07e10_seg02_clip_21,Beckett was looking at picture of two people 9972,Pam and Daniel,Peter and Danielle ,Piper and Devin,Phillip and Derick ,Phil and Danica ,0,Who does the woman find out was murdered after arriving?,132011,Castle,17.71-24.07,castle_s07e14_seg02_clip_06,Pam and Daniel 9973,A glass of wine. ,A crab. ,A lobster. ,A knife. ,A spatula. ,2,What is Monica holding when Janice walks into the kitchen of her restaurant?,132012,Friends,6.6-9,friends_s07e07_seg02_clip_01,A lobster. 9974,Beckett said she would think about it,"No, Beckett doesn't agree to have dinner with Castle","Yes, Beckett agrees to have dinner with Castle",Beckett is too busy to have dinner with Castle,They are interrupted before Beckett could answer,2,Does Beckett argee to have dinner with Castle after he asks her to?,132013,Castle,43.22-48.66,castle_s08e07_seg02_clip_06,"Yes, Beckett agrees to have dinner with Castle" 9975,Mark,Paul,Peter,Cooper,Doug,1,Who does Monica introduce when standing at the front door?,132014,Friends,0-3.62,friends_s01e01_seg02_clip_09,Paul 9976,Barry is standing next to Penny.,Priya is standing next to Penny.,Stuart is standing next to Penny.,Leonard is standing next to Penny.,Amy is standing next to Penny.,3,Who is standing next to Penny when she is in Sheldon's kitchen?,132015,The Big Bang Theory,46.52-53.65,s09e07_seg02_clip_06,Leonard is standing next to Penny. 9977,Sheldon doesn't understand what Raj said because of his accent. ,"Sheldon is too book smart, and not enough common sense. ","Sheldon understands, he just doesn't want to play along. ",Sheldon only understands when it's about Penny. ,Sheldon only understands things that Penny says. ,1,Why does Sheldon not understand the simple concept of conversation when Raj is trying to work with him?,132016,The Big Bang Theory,11.82-17.01,s08e21_seg02_clip_10,"Sheldon is too book smart, and not enough common sense. " 9978,She had sex with her english teacher,let frogs out in the school,knock knock joke,duck cross the rode,Riddle,0,WHat joke did she tell everyone when she was in tenth grade?,132017,How I Met You Mother,32.11-42.32,met_s03e08_seg02_clip_04,She had sex with her english teacher 9979,"Cuddy. Chase, and Wilson",No one,The SWAT team,The clinic patients,"Cuddy, Chase, and Foreman",2,What group is swarming the hallways when the patient is getting an MRI?,132018,House M.D.,29.27-49.54,house_s05e09_seg02_clip_17,The SWAT team 9980,A bottle of pills,A cup,A magazine,A sandwich,Nothing,1,What was House holding in his hand when Chase accused him of faking?,132019,House M.D.,0-14.88,house_s08e15_seg02_clip_23,A cup 9981,Because Chandler says he doesn't know why he would want to get married.,Because Chandler says he doesn't know why he would want to go skiing.,Because Chandler says he doesn't know why he would want to go on a date.,Because Chandler says he doesn't know why he would want to to Long Island.,Because Chandler says he doesn't know why he would want to go to the Jersey Shore.,0,Why is Monica upset when talking to Chandler about marriage at the coffee shop?,132020,Friends,8.17-13.91,friends_s06e24-25_seg02_clip_20,Because Chandler says he doesn't know why he would want to get married. 9982,He snapped his fingers.,He clapped his hands ten times.,He put his comic books on the counter.,He washed his hands,He made hand signals to a stranger.,2,What did Howard do with his hands before he pulled money out of his pocket?,132021,The Big Bang Theory,8.13-10.31,s10e05_seg02_clip_00,He put his comic books on the counter. 9983,In the front passenger seatof Leonard's car.,Driving Leonard's car,In back seat of Leonard's car,In his apartment,In his lab at the university,0,Where is SHeldon when he says he is not afraid to be alone?,132022,The Big Bang Theory,0-3.58,s06e24_seg01_clip_02,In the front passenger seatof Leonard's car. 9984,If he was ready to make a change.,If he really wanted to work there.,If he was willing to reschedule.,If he knew why he called him to his office.,If he was giving up on those trans Neptunian objects.,4,What did the Professor ask Raj after he came into office?,132023,The Big Bang Theory,8.51-17.33,s03e04_seg02_clip_04,If he was giving up on those trans Neptunian objects. 9985,Francine has her hands on Joey.,Phoebe has her hands on Joey.,Monica has her hands on Joey.,Tessa has her hands on Joey.,Rachel has her hands on Joey.,4,Who has her hands on Joey when he is watching Phoebe perform?,132024,Friends,0-5.53,friends_s01e10_seg02_clip_02,Rachel has her hands on Joey. 9986,Ugly patients,Happy patients,Calm patients,Patients with minor conditions,Patients that pray a lot ,1,According to House what type of patients recover faster when mentioning major hospital studies?,132025,House M.D.,67.52-73.82,house_s04e11_seg02_clip_01,Happy patients 9987,3 am,2 am,4 am,1 am ,12 am,1,What time does Ryan say she texted him when had a hunch?,132026,Castle,45.24-61.7,castle_s07e11_seg02_clip_17,2 am 9988,A turtle,A cat,A dog,A fish,A guinea pig,2,What animal is Castle with when he is talking to Barker?,132027,Castle,57.84-66.56,castle_s04e13_seg02_clip_08,A dog 9989,Clasps her hands together,Holds her dad's hand,Runs her fingers through her hair,Puts her hands on her knees,Rubs her shoulders,1,What does Ainsley do when she is talking to Adams?,132028,House M.D.,53.85-62.58,house_s08e04_seg02_clip_20,Holds her dad's hand 9990,Heart & Pancreas,Liver & Pancreas,Kidneys & Pancreas,Kidneys & Heart,Liver & Kidneys,4,"What organs did Foreman say weren't working well after saying it wasn't a stroke, ",132029,House M.D.,2.33-15.81,house_s01e18_seg02_clip_00,Liver & Kidneys 9991,90%,40%,50%,80%,100%,3,How much oxygen is chase giving matt when house asks for a percentage?,132030,House M.D.,74.56-80.55,house_s01e08_seg02_clip_11,80% 9992,She hugs Monica.,She claps loudly.,She holds her hands together.,She gets down on her knees.,She stands up.,2,What does Rachel do when she asks if she can read the vows?,132031,Friends,39.84-43.97,friends_s07e21_seg02_clip_18,She holds her hands together. 9993,A magazine.,A water bottle.,A cup of coffee.,A newspaper.,A carafe.,3,What was on the table in front of Joey after he walked in the coffee shop?,132032,Friends,36.31-40.89,friends_s09e06_seg02_clip_00,A newspaper. 9994,The patient was having an allergic reaction,They have the wrong patient,The patient lied about having a pin in her arm and it's dangerous with that machine,The patient passed out from fear of hospitals,The patient was panicking and Cameron felt bad for her ,0,What medical issue is revealed by Cameron after she stops the procedure and pulls the patient out?,132033,House M.D.,37.22-62.03,house_s01e01_seg02_clip_05,The patient was having an allergic reaction 9995,Raj and Leonard are at Penny's,Raj and Leonard are at home,Raj and Leonard are at a bard,Raj and Leonard are in Disney,Raj and Leonard are no where,2,Where are Raj and Leonard at when they are drinking?,132034,The Big Bang Theory,47.29-58.02,s02e21_seg02_clip_06,Raj and Leonard are at a bard 9996,In the Bahamas.,In a nursing home.,In the intensive care unit.,In a rehab center.,In his own home.,1,Where does the man with glasses say he needs to be when he is standing in front of Dr House's desk?,132035,House M.D.,18.92-30.37,house_s07e02_seg02_clip_14,In a nursing home. 9997,Raj accused Penny of having feelings for him because he is with another woman.,Raj was bragging because that he was smarter than all of their friends.,Raj told Penny that Bernadette was jealous because he was with another woman.,Raj told Penny that Amy was jealous because he was with another woman.,Raj was bragging because he bought a brand new car.,0,Why did Penny think Raj was acting arrogant when he was talking to her?,132036,The Big Bang Theory,0-10.54,s05e04_seg02_clip_13,Raj accused Penny of having feelings for him because he is with another woman. 9998,Sitting on the couch in the coffee shop,Standing on a street corner,Leaning against her apartment wall,At a waterfront music festival,On stage with Chrissie Hynde,0,Where is Phoebe when she is playing the guitar?,132037,Friends,49.03-55.7,friends_s04e05_seg02_clip_19,Sitting on the couch in the coffee shop 9999,Ryan.,Alexis.,Martha.,Meredith.,Beckett.,2,Who calls Castle when he is being held at gunpoint by Jerry?,132038,Castle,46.09-57.61,castle_s03e06_seg02_clip_25,Martha. 10000,Monica is looking for herself.,Monica is looking for Rachel.,Monica is looking for Phoebe.,Monica is looking for Ross.,Monica is looking for Joey. ,0,Who is the bridesmaid that Monica is looking for when she is getting ready for Phoebe's wedding?,132039,Friends,0-13.32,friends_s10e12_seg02_clip_25,Monica is looking for herself. 10001,House is speaking to Cameron. ,House speaks to himself. ,House is on his bluetooth. ,House is speaking to the doctors on the inside of the glass. ,House is speaking to Wilson. ,4,Who does House speak to when he says that the woman yelled at him in the clinic?,132040,House M.D.,45.91-55.81,house_s02e06_seg02_clip_20,House is speaking to Wilson. 10002,Joey was supposed to bring Chandler aspirin and Chandler was reminding him. ,"Joey reminded Chandler of an old, departed friend. ",Joey's outfit made a joke overload in Chandler's head. ,Chandler held his head so Joey wouldn't see his face. ,Chandler held his head to imitate the monkey in the kitchen. ,2,What made Chandler hold his head when he looked at Joey? ,132041,Friends,37.44-47.31,friends_s01e10_seg02_clip_05,Joey's outfit made a joke overload in Chandler's head. 10003,The patient told him.,He asked Scully.,He googled it.,He hacked into Wilson's old files.,Just a hunch.,3,How did House know about Wilson's patient when they were in the cafeteria? ,132042,House M.D.,4.16-11.44,house_s08e21_seg02_clip_07,He hacked into Wilson's old files. 10004,Sheldon wants Penny.,Sheldon knows penny is cheating.,Sheldon does not like Penny.,"Sheldon seen Penny with her new boyfriend,",Sheldon said Penny has a death wish.,4,What did Sheldon tell Lenoard after Lenoard said he has penny for now?,132043,The Big Bang Theory,16.91-65.04,s06e02_seg02_clip_15,Sheldon said Penny has a death wish. 10005,Penny put her hand on her face when she slapped it against her face.,Penny put her hand around Leonard.,Penny put her hand in her pocket.,Penny put her hand over her stomach.,Penny put her hand around her throat.,0,Where did Penny put her hand after Leonard said someone liked everyone more than him?,132044,The Big Bang Theory,3.72-5.89,s08e23_seg02_clip_11,Penny put her hand on her face when she slapped it against her face. 10006,Rules for the department,Map of the city,Map of the world,Draw of the office,Pictures on the board,4,What was castle looking at when talking to Beckett?,132045,Castle,12.33-19.81,castle_s03e19_seg02_clip_15,Pictures on the board 10007,He said he was worried the electromagnet would fail,He said he was worried she would be too smart to fall for what he was doing,He said he was worried she might be suspicious and somehow escape before he could pick her up,He said he was worried he wouldn't have the courage to kill her,He said he was worried she would get the best of an old man,1,What did Mason say he was worried about when Beckett had a gun on him?,132046,Castle,0-9.23,castle_s08e22_seg02_clip_24,He said he was worried she would be too smart to fall for what he was doing 10008,Phoebe said she used to mug St. Mark's Comics,Phoebe said she used to mug a liquor store,Phoebe said she used to mug a book store,Phoebe said she used to my St.Marcos book store,Phoebe didn't say where she used to mug,0,Where did Phoebe say she used to mug when she was younger?,132047,Friends,29.29-32.65,friends_s09e15_seg02_clip_11,Phoebe said she used to mug St. Mark's Comics 10009,Talking on the phone,Rubbing Barney's shoulders,Watching TV,Pouring a drink,Getting dressed,1,What was Honey doing when Barney said something about giving his number to someone who hadn't called?,132048,How I Met You Mother,11.93-16.87,met_s06e15_seg02_clip_14,Rubbing Barney's shoulders 10010,Leonard,Howard,Raj,Sheldon,Stewart,2,Who came up to Mrs. Davis when she was eating?,132049,The Big Bang Theory,18.92-24.41,s07e01_seg02_clip_11,Raj 10011,he won a lottery,he was innocent,He did the crime,he was promoted,he was a celebrity,2,What does the man on the computer say about the kid watching the video after being offered a deal?,132050,Castle,24.31-36.01,castle_s05e11_seg02_clip_20,He did the crime 10012,He said she would succeed by playing a part in Kevin Smith movie.,He said that it's a great dream to have. ,"He said "" from a Kevin Smith movie?""",He said it doesn't matter what her goal is. ,He said it's a waste of time.,2,What did Leonard say when Penny said she could become rich and famous? ,132051,The Big Bang Theory,31.88-59.04,s08e20_seg02_clip_10,"He said "" from a Kevin Smith movie?""" 10013,Rachel,Chandler,Monica,Receptionist,Joey,3,Who answers Phoebe when Phoebe asks if someone can fill in for her?,132052,Friends,0-5.77,friends_s09e21_seg02_clip_06,Receptionist 10014,out in the hall,to sleep,to get food,to go to the bathroom,to get coffee,4,where did molly say she was going to go after derrick asked about christopher?,132053,House M.D.,39.61-45.77,house_s08e21_seg02_clip_15,to get coffee 10015,Hanging at the bar ,Sitting at Wilson's desk,Sitting in a doctor's office,On a beach towel,Sitting a Cuddy's desk,4,Where was Cameron when House and Kutner were arguing?,132054,House M.D.,0-6.51,house_s05e13_seg02_clip_13,Sitting a Cuddy's desk 10016,That he found a cool prize,That he stole it,That he's proposing,That he should put that away,That Joey is the father of her kid,2,What does Rachel think when Joey turns to her with the ring?,132055,Friends,7.71-17.89,friends_s09e01_seg01_clip_00,That he's proposing 10017,Because he needed to talk to a corrections officer.,Because he needed to talk to an inmate.,Because he wanted to talk to Beckett.,Because he really wanted that listing.,Because talk to Nina.,4,Why did Castle cause the judge to render him in contempt when he asked for a listing of university students?,132056,Castle,12.63-17.31,castle_s08e10_seg02_clip_15,Because talk to Nina. 10018,3,5,10,18,15,3,How many pages did Ross say he read before calling asleep?,132057,Friends,46.42-57.73,friends_s04e01_seg02_clip_18,18 10019,An accident occurred.,The building was gorgeous.,Someone was there to congratulate them.,It was being torn down early.,The building was on fire.,3,Why was everyone surprised when they saw the building?,132058,Friends,25.15-61.54,friends_s04e23-24_seg02_clip_04,It was being torn down early. 10020,An Ice cream parlor,A Bagel Shop,The Gas Station,A Coffee Shop,A Fast Food Shop,3,Where is Lily at when the Line is behind her?,132059,How I Met You Mother,38.66-59.95,met_s02e01_seg02_clip_14,A Coffee Shop 10021,Rachel.,Phoebe.,Monica.,Ross.,Janice.,1,Who followed Eric into the hall after he came back for Ursula's purse?,132060,Friends,19.54-23.95,friends_s08e06_seg02_clip_16,Phoebe. 10022,A fingerprint,An engagement album,A gun,A knife,Some puppies,1,What does Beckett find after trying the pencil trick?,132061,Castle,26.69-31.21,castle_s02e04_seg02_clip_23,An engagement album 10023,She asks him now to get the main sail up,She asks him where the rudder is,She asks him if they have an anchor,She asks him for a hand in paddling the boat,She asks him if he came on the trip for girls.,0,What is the second question Rachel asks Ross after the first question?,132062,Friends,11.6-19.83,friends_s07e03_seg02_clip_05,She asks him now to get the main sail up 10024,Drink wine,Eating,Talking to Bernadette and Amy.,Sitting at a bar.,Talking on the phone,1,What is Penny doing when she says that she is happy that Leonard found someone?,132063,The Big Bang Theory,50.56-57.7,s04e18_seg02_clip_01,Eating 10025,Masters said it was a childish prank.,Masters said they were being interviewed.,Masters said they couldn't tell.,Masters said it's not medically relevant.,Masters said we might never know.,3,How did Masters reply after Driscoll asked which of the kids dosed him?,132064,House M.D.,0-4.42,house_s07e10_seg02_clip_07,Masters said it's not medically relevant. 10026,She said it was nice to meet him.,She laughed hysterically and sat on a patient's bed.,She introduced herself also.,She ran out of the room.,She started asking him medical questions.,1,How did Rachel react after Dr. Franzblau introduced himself?,132065,Friends,6.2-12.69,friends_s01e23_seg02_clip_01,She laughed hysterically and sat on a patient's bed. 10027,Ross is on the train.,Ross is in his apartment.,Ross is in the kitchen.,Ross is at Ralph Lauren.,Ross is at the coffee shop.,2,Where is Ross when he is talking to Joey?,132066,Friends,14.81-18.81,friends_s09e14_seg01_clip_01,Ross is in the kitchen. 10028,Out in the parking lot,In the waiting room,In the elevator,In a patient's room,Behind the desk,2,Where were Cuddy and Taub when they met the tattooed woman?,132067,House M.D.,76.73-84.4,house_s05e10_seg02_clip_11,In the elevator 10029,Sheldon goes to the grocery store.,Sheldon goes to Florida.,Sheldon goes to Holland.,Sheldon goes to the ocean.,Sheldon goes to Flatland.,4,Where does Sheldon go when he uses his imagination?,132068,The Big Bang Theory,41.43-57.41,s03e12_seg02_clip_01,Sheldon goes to Flatland. 10030,Cameron said the shooter was a guy,Cameron said the shooter was a woman,Cameron said the shooter was a kid,Cameron said the shooter was a police,Cameron said the shooter was a chef,0,Who did Cameron say was the shooter when talking to House?,132069,House M.D.,59.4-62.63,house_s02e24_seg02_clip_00,Cameron said the shooter was a guy 10031,Because Sheldon is giving up his Flag show.,Because Sheldon's mom died.,Because Sheldon is fighting with his girlfriend.,Because Sheldon got cut by scissors.,Because Sheldon saw cute puppies.,0,Why did Sheldon cry when recording a video?,132070,The Big Bang Theory,0-26.54,s08e10_seg02_clip_11,Because Sheldon is giving up his Flag show. 10032,Raj was dating Bernadette.,Raj was dating Priya.,Raj was dating Penny.,Raj was dating Emily.,Raj was dating Amy.,3,Who was Raj dating when he is talking to Bernadette about his new friend?,132071,The Big Bang Theory,27.27-34.94,s09e14_seg02_clip_10,Raj was dating Emily. 10033,He's looking at an advertisement with a picture of a bracelet in it.,He's looking at an advertisement with a picture of a baseball field in it.,He's looking at an advertisement with a picture of a suit coat and tie in it.,He's looking at an advertisement with a picture of a shiny automobile in it.,He's looking at an advertisement with a picture of a mining camp in it.,2,What is Barney looking at in the magazine before he says the word diamonds?,132072,How I Met You Mother,0-3.3,met_s06e12_seg02_clip_07,He's looking at an advertisement with a picture of a suit coat and tie in it. 10034,On the wall,Around her neck,On Pricilla's dress.,In Pricilla's hair.,On Dempsey's lapel. ,1,Where was the Blue Butterfly when Pricilla and Dempsey were in the club?,132073,Castle,71.5-75.08,castle_s04e14_seg02_clip_18,Around her neck 10035,Starting a new case immediately ,Going to get a drink,Going to get a make over,Taking drugs,Leaving ,4,What did 13 say she was doing when the case was over?,132074,House M.D.,43.69-48.7,house_s04e08_seg02_clip_18,Leaving 10036,she is holding a wine glass,she is holding a coffee mug,she is holding a sandwich,she is holding a mirror,she isn't holding anything,1,What does Monica holding when she it sitting next to Joey on a couch?,132075,Friends,0-9.14,friends_s03e18_seg01_clip_00,she is holding a coffee mug 10037,21 years.,The amount she peed in his pool.,The number of times he has heard of someone peeing in his pool.,The number of kids who used to swim in his pool.,The amount of water in the pool.,0,What does the man say is a lot after Monica admits to peeing in his pool?,132076,Friends,18.54-26.81,friends_s02e15_seg02_clip_16,21 years. 10038,Chief,Esposito,Caleb,No one,Ryan,4,Who scares castle when he walks into the break room to give beckett an update?,132077,Castle,52.91-58.44,castle_s08e19_seg02_clip_19,Ryan 10039,She was upset because they were pinching her lobes,She is getting ready to go through a metal detector,She has to give the earrings back to Monica,She is no longer interested in dating him,Dr. Franzblau is married and not worth impressing.,3,Why does Rachel take off her earrings after Dr. Franzblau walks away?,132078,Friends,0.95-48.22,friends_s01e23_seg02_clip_11,She is no longer interested in dating him 10040,Rachel met Bonnie at the bar,Rachel met Bonnie at Phoebe's birthday party,Rachel met Bonnie at the wedding,Rachel met Bonnie at the train station,Rachel met Bonnie at the gym,1,How did Rachel meet Bonnie when she was trying to recall?,132079,Friends,27.14-47.18,friends_s03e24_seg02_clip_03,Rachel met Bonnie at Phoebe's birthday party 10041,Outside on the steps. ,On the living room couch.,On the floor.,At the kitchen table.,On a recliner in the living room. ,3,Where was Rachel sitting when Monica was talking about her leaving? ,132080,Friends,2.62-11.92,friends_s10e10_seg02_clip_16,At the kitchen table. 10042,House opens a folder.,House opens a box.,House opens a soda.,House opens a bag of chips.,House opens a pill bottle.,0,What does House open up after sitting down?,132081,House M.D.,8.7-12.18,house_s03e05_seg02_clip_02,House opens a folder. 10043,Because she embarrassed him.,Because he loves her.,Because she hit him with the door.,Because she didn't let him tell her what happened when he spoke to Stuart.,Because he needed to get in.,3,Why did Leonard look sad when Penny closed the door?,132082,The Big Bang Theory,12.77-36,s02e22_seg02_clip_08,Because she didn't let him tell her what happened when he spoke to Stuart. 10044,To indirectly invite her to dinner.,To subtly hint that she needed to go grocery shopping.,To have an excuse for inviting Cheryl to his home without insulting her home.,To change the topic of an uncomfortable conversation.,To avoid having to go back to his own home for cinnamon fruit toasties.,2,Why did Ross ask Cheryl about cinnamon fruit toasties after going to her home?,132083,Friends,12.31-37.22,friends_s04e06_seg02_clip_05,To have an excuse for inviting Cheryl to his home without insulting her home. 10045,said nothing,begged for more,Thanked Sheldon,gave him a hug,gave him dinner,2,What did Penny do when Sheldon gave Penny the money?,132084,The Big Bang Theory,40.33-60.18,s02e14_seg02_clip_02,Thanked Sheldon 10046,Mrs. Verhoeven's daughter thinks Ross speaks Spanish.,Mrs. Verhoeven's daughter thinks Ross speaks German.,Mrs. Verhoeven's daughter thinks Ross speaks Dutch.,Mrs. Verhoeven's daughter thinks Ross speaks sign language.,Mrs. Verhoeven's daughter thinks Ross speaks Russian.,2,What language does Mrs. Verhoeven's daughter think Ross speaks when he claims to have talked to her mother all the time?,132085,Friends,31.37-42.59,friends_s08e07_seg02_clip_03,Mrs. Verhoeven's daughter thinks Ross speaks Dutch. 10047,He did it in a Chipotle parking lot.,He did it in a Wendy's parking lot,He did it in a McDonald's parking lot,He did not ever have sex,He does not know that woman,1,What was the correction made when Chandler responds to Monica?,132086,Friends,10.26-15.99,friends_s09e21_seg02_clip_03,He did it in a Wendy's parking lot 10048,She started doing cartwheels.,She started singing a song.,She started playing with hand puppets.,She started twirling in circles.,She fell asleep.,1,What did Monica do before she got off of the stage?,132087,Friends,22.41-24.97,friends_s09e13_seg02_clip_22,She started singing a song. 10049,a dog,HIs computer ,a cat,a magazine,a mouse,1,What does Leonard look at when he talks to his friends?,132088,The Big Bang Theory,0-47.63,s02e18_seg02_clip_05,HIs computer 10050,Hayes was siting on the bed,Hayes was sitting at the entrance,Hayes was sleeping on the bed,Hayes was standing beside the bed,Hayes was leaning on the wall.,3,Where was Hayes when Brant asked what they cover up?,132089,House M.D.,0-12.6,house_s08e15_seg02_clip_22,Hayes was standing beside the bed 10051,They were playing videos,They were playing hide and seek.,They were playing hopscotch.,Chandler and Joey were playing fuse ball.,They were playing ball.,3,What were Chandler and Joey playing when they were in the apartment?,132090,Friends,28.38-32.34,friends_s04e18_seg02_clip_01,Chandler and Joey were playing fuse ball. 10052,They went to a souvenir shop.,They went to a lounge for cocktails.,They went to grab lunch at a nearby Russian restaurant.,They went to the library.,They went to listen to a motivational speaker.,0,Where did Castle go with his newfound friend Vasiliy after they left the elevator?,132091,Castle,29.41-39.82,castle_s08e11_seg02_clip_14,They went to a souvenir shop. 10053,Because they are drunk.,Because they are angry.,Because they are eating too much.,Because they are very hungry.,Because they are working out.,0,Why are Ross and Rachel acting weird when they are in the hotel room?,132092,Friends,3.25-8.26,friends_s05e23-24_seg02_clip_35,Because they are drunk. 10054,Danny was in prison for 5 years.,Danny was living like a monk in Tibet.,Danny was in the Andes for a four-month trek.,Danny was touring the world with Aerosmith.,Danny was in a mental institution.,2,"Where was Danny, the new neighbor, before he moved into the the apartment building?",132093,Friends,12.22-18.16,friends_s05e06_seg02_clip_06,Danny was in the Andes for a four-month trek. 10055,Bernadette,Leonard,Sheldon,Howard,Penny's mom,1,Who was the first person to speak before Penny?,132094,The Big Bang Theory,0-5.27,s06e19_seg02_clip_14,Leonard 10056,Amy gave the monkey a cigarette.,Amy gave the monkey a banana.,Amy gave the monkey some pretzels.,Amy gave the monkey some cashews.,Amy gave the monkey some popcorn.,0,What did Amy give the monkey after it jumped up and down?,132095,The Big Bang Theory,20.31-28.31,s04e21_seg02_clip_13,Amy gave the monkey a cigarette. 10057,she drinks some water,she begins to pout,she begins to point at it,she decides to turn the tv off,she falls asleep,2,what happens after phoebe watches tv,132096,Friends,34.24-36.3,friends_s09e16_seg02_clip_01,she begins to point at it 10058,House has an envelope in his hands,House has a file in his hands,House has a cd in his hands,House has a box in his hands,House doesn't have anything,0,What does House have in his hand when he is in front of an apartment door?,132097,House M.D.,45.61-51.61,house_s06e03_seg02_clip_13,House has an envelope in his hands 10059,Stretch them wide and not let go.,pretend his is knitting,Make a fist and slowly release,Play the piano on his leg,Drum a rythymn on his bed,3,What does House ask Patrick to do with his fingers before the brain scan machine starts beeping?,132098,House M.D.,14.91-57.84,house_s03e15_seg02_clip_04,Play the piano on his leg 10060,wet down her legs,a fear of heights,a fear of driving,a flush on her face,a lowering of her inhibitions,4,What happened when Beverley took a few more shots hen she drank with Penny?,132099,The Big Bang Theory,39.05-53.09,s03e11_seg02_clip_12,a lowering of her inhibitions 10061,Monica threw darts at a picture of Chandler's face. ,Chandler was heard screaming Monica's name from the street below. ,Monica immediately bolted and locked the door. ,Chandler met Rachel in the hall and they pledged their love to one another. ,Chandler came back in shortly after and he and Monica started making out. ,4,What was surprising after Chandler left the room? ,132100,Friends,18.57-38.42,friends_s05e01_seg02_clip_15,Chandler came back in shortly after and he and Monica started making out. 10062,Howard is mapping out the nursery in his house.,Howard is painting a wall in his kitchen.,Howard is remodeling the bathroom.,Howard is cleaning all of the windows in his house.,Howard is hanging up pictures of himself and Bernadette.,0,What is Howard doing when he has his conversation with Raj and Bernadette?,132101,The Big Bang Theory,43.81-62.14,s10e13_seg02_clip_11,Howard is mapping out the nursery in his house. 10063,Mr. Ross,Mrs. Cabot,Dr. sheldon,Miss. Allen,Mrs. Soto,1,Who answered the door when Beckett and Castle knocked on a door with a Christmas wreath on it?,132102,Castle,84.2-92.03,castle_s05e09_seg02_clip_20,Mrs. Cabot 10064,Sheldon wanted to participate.,Leonard said it was sad.,Amy was happy to get to be herself in Raj's activity.,Penny was over joyed to be a character with an accent in Raj's activity.,"Come on, guys. Raj put a lot of effort into this. And that's great. It's not sad, it's great.",4,What did Leonard say about Raj's idea after Penny told Raj his idea sucked?,132103,The Big Bang Theory,0-28.07,s07e18_seg02_clip_00,"Come on, guys. Raj put a lot of effort into this. And that's great. It's not sad, it's great." 10065,Taub is wearing a silly grin,Taub is wearing cologne,Taub is humming to himself,Something Chase says makes House realize what is going on,Taub is wearing the stink of shame,1,How does House arrive at his conclusion when the team is discussing the patient's diagnosis?,132104,House M.D.,73.12-78.22,house_s06e18_seg02_clip_17,Taub is wearing cologne 10066,Leonard told Penny that he called Amy. ,Penny asks Sheldon why he hasn't called Amy?,Penny asks Howard why he hasn't called Amy? ,Penny talks to Howard to see why he hasn't called Bernadette.,Raj wants to take Amy to the mall. ,3,Why does Penny talk to Howard after sitting on the couch?,132105,The Big Bang Theory,17.12-23.32,s03e09_seg02_clip_03,Penny talks to Howard to see why he hasn't called Bernadette. 10067,Joey,Monica,Chandler,Rachel ,Phoebe,4,Who was with Ross when he was sitting on the couch? ,132106,Friends,56.68-59.35,friends_s02e14_seg02_clip_06,Phoebe 10068,Stacy hides her smoke from the landlord. ,Stacy doesn't want Wilson to know. ,Stacy confessed to trying to hide it from House.,"Stacy doesn't hide her smoke, she was joking. ","Stacy wants to hide it from Mark,",4,"Who does Stacy say she wishes to hide her smoking from, after House calls Mark's smoking stupid?",132107,House M.D.,86.96-92.03,house_s02e07_seg02_clip_14,"Stacy wants to hide it from Mark," 10069,Emily is talking to Ross.,Emily is talking to Chandler.,Emily is talking to Monica.,Emily is talking to Rachel.,Emily is talking to Joey.,0,Who is Emily talking to when she is standing talking about relationships?,132108,Friends,0-8.56,friends_s04e19_seg02_clip_13,Emily is talking to Ross. 10070,Soap opera theme,Pool party theme,Ocean theme,Future theme,Romantic comedy theme,0,What kind of theme does Phoebe suggest when sitting at the coffee house?,132109,Friends,0-8.91,friends_s02e10_seg02_clip_05,Soap opera theme 10071,to escape,to avoid death,to avoid prison,to buy some time,to cause a scene,2,why did park think the patient was faking symptoms when addressing house on her refusal on helping the patient?,132110,House M.D.,87.45-94.03,house_s08e15_seg02_clip_00,to avoid prison 10072,Chandler is looking at a baseball card.,Chandler is looking at a poster.,Chandler is looking at a newspaper.,Chandler is looking at a brochure.,Chandler is looking at a photograph.,2,What is Chandler looking at before he picks up the plastic cup?,132111,Friends,27.53-31.38,friends_s09e21_seg02_clip_20,Chandler is looking at a newspaper. 10073,Pages that Damian had written for his novel.,Pictures of Damian's girlfriend.,Letters about all the fun Damian was having.,Feedback on Castle's novel.,Ideas for Castle's novel.,0,What did Damian send Castle when Damian was at Harvard?,132112,Castle,39.64-49.33,castle_s03e15_seg02_clip_16,Pages that Damian had written for his novel. 10074,Sherlock Homes,Nancy Drew.,Scooby doo,Thomas Magnum.,Dick Tracy.,1,Which fictional character did Montgomery refer Castle to after he removed him off the case?,132113,Castle,64.66-70.42,castle_s03e13_seg02_clip_08,Nancy Drew. 10075,His cheek. ,A phone,A piano,A table,A keyboard,4,What did Eposito tap when the laptop was facing joey? ,132114,Castle,0-7.65,castle_s05e11_seg02_clip_20,A keyboard 10076,Strep,Cancer,Warts,Sarcoidosis,Flu,3,What does Taub say Maggie tested negative for when he's consulting with the other doctors?,132115,House M.D.,28.79-33.34,house_s04e10_seg02_clip_15,Sarcoidosis 10077,Foreman needed House for some lab work,Foreman went to tell House that they had a case,Foreman wanted House to look at some scans,Foreman was waiting for House to look at a patient,Foreman wanted to reproach House for something he did,1,Why did Foreman go to see House when he was in the patient's room with Cuddy?,132116,House M.D.,54.39-59.46,house_s05e01_seg02_clip_00,Foreman went to tell House that they had a case 10078,Food,A clipboard,Coffee,A stageprop,A pen,1,What is Liz carrying in her hand when she walks over to Beckett and Castle?,132117,Castle,22.79-26.81,castle_s07e22_seg02_clip_08,A clipboard 10079,How she looks,What to eat for dinner,Where they are going to have dinner,The amount of times Castle has gotten married,How he looks,3,What are Kyra and Castle talking about when she wears a wedding dress?,132118,Castle,0-6.8,castle_s02e12_seg02_clip_12,The amount of times Castle has gotten married 10080,Because Penny and Leonard are about to break.,Because Penny and Leonard are about to marry.,Because Leonard is going to move with the girl.,Because Penny is pregnant.,Because Leonard likes a man.,1,Why is Penny sad after knowing that Leonard kissed the girl?,132119,The Big Bang Theory,0-46.3,s08e24_seg02_clip_14,Because Penny and Leonard are about to marry. 10081,Rachel was on the animal farm,Rachel was on half asleep,Rachel was on the phone,Rachel was on a horse,Rachel was on drugs,2,what was Rachel doing before Ross entered the room,132120,Friends,22.93-43.97,friends_s03e15_seg02_clip_06,Rachel was on the phone 10082,Richard had too many dogs,Richard didn't have a job,Richard lived with his mother,Richard had bad breath,Richard was creepy,4,What is one of the reasons Phoebe gives when Rachel asks her if she remembers why she broke up with Roger?,132121,Friends,4.55-16.58,friends_s01e14_seg02_clip_00,Richard was creepy 10083,A lightsaber,A laptop,A flower,A coffee,An action figure,4,What is Leonard holding when he talks to Penny about moving on with his life?,132122,The Big Bang Theory,1.18-6.49,s01e14_seg02_clip_15,An action figure 10084,A thermometer.,A tounge depresser.,Two syringes.,A cell phone.,A watch.,2,What did House pull out of his pocket after he was talking to Henry about his wife's affair? ,132123,House M.D.,44.78-51.56,house_s02e14_seg02_clip_04,Two syringes. 10085,Because it wasn't long enough,Because he didn't send it in mail,Because it was a listed page,Because it didn't have a signature,Because she hates paper,2, Why was penny unhappy after Leonard handed her the bug report,132124,The Big Bang Theory,14.76-20.36,s05e14_seg02_clip_05,Because it was a listed page 10086,Sheldon is holding a soccer ball,Sheldon is holding his bat,Sheldon is holding nothing,Sheldon is holding a 20 oz soda,Sheldon is holding a white to go box,4,What is Sheldon holding when he enters into the apartment?,132125,The Big Bang Theory,26.85-35.39,s01e08_seg02_clip_12,Sheldon is holding a white to go box 10087,a crossword puzzle,his phone ,a new scalpal,a nurse ,clean hands ,0,What does Derek tell Dr Taylor to bring before surgery? ,132126,Grey's Anatomy,50.78-60.93,grey_s01e07_seg02_clip_12,a crossword puzzle 10088,A credit card for Rampart Federal.,A paper check for Rampart Federal.,Derek's business card.,A deposit slip for Rampart Federal.,A sticky note reminding Derek to visit Rampart Federal.,3,What does Castle remove from the board after Ryan says that Derek's account was at JLP Bank Corp.?,132127,Castle,46.05-54.42,castle_s03e07_seg02_clip_19,A deposit slip for Rampart Federal. 10089,She did not mention the young girl's blood levels. ,She said that the young girl was losing a lot of blood.,She said the young girl's blood levels were great. ,She said the young girl's blood was extremely thin. ,She said the young girl's blood is thicker than pancake batter. ,4,[How/...] did Cameron describe the young girl's blood [when/] talking about her symptoms with House?,132128,House M.D.,19.58-24.37,house_s03e19_seg02_clip_05,She said the young girl's blood is thicker than pancake batter. 10090,His mom,A woman.,Penny,Amy,A man.,1,Who is Howard with when they boys arrive at the dinner?,132129,The Big Bang Theory,56.02-64.02,s01e04_seg01_clip_01,A woman. 10091,Ryan said they were 5 minutes away,Ryan said they were 7 minutes away,Ryan said they were 8 minutes away,Ryan said they were 9 minutes away,Ryan said they were 10 minutes away,0,How long did Ryan say it would take them to get to the office after they told him about the murder weapon,132130,Castle,60.58-68.1,castle_s08e06_seg02_clip_05,Ryan said they were 5 minutes away 10092,She is disappointed in it. ,She hated it. ,She loved it. ,She is embarrassed. ,She is amused. ,2,How does Kathy feel about the book after she gets it for her birthday?,132131,Friends,38.3-39.17,friends_s04e06_seg02_clip_19,She loved it. 10093,Chameron,Chase,House,Taub,Foreman,4,Who pricked the woman's foot that was in the hospital bed when he was trying to see if she could feel the pain?,132132,House M.D.,0-11.75,house_s04e06_seg02_clip_22,Foreman 10094,He was wearing a suit.,He was wearing fangs on his teeth.,He was wearing a dress.,He was wearing overalls.,He was wearing jeans and a band tee.,1,Where and when was the victim have?,132133,Castle,7.76-86.22,castle_s02e06_seg02_clip_02,He was wearing fangs on his teeth. 10095,A t-shirt that says Liar,The bill to review,A form to sign,A lecture on being honest,New clothes,2,What does House want the nurses to give Lupe after she wakes up?,132134,House M.D.,33.68-41.42,house_s03e20_seg02_clip_12,A form to sign 10096,Around the bottom,Up with drug abuse,Down with age,Down with smoking,Up with suicide ,4,Where does bulimia rank on the list of risk for a donor organ when waiting for a transplant according to House?,132135,House M.D.,64.42-92.03,house_s01e14_seg02_clip_16,Up with suicide 10097,Stay the same,Higher her voice ,Lower her voice ,He doesn't want to change her voice,He doesn't want her to speak at all,2,What does Sheldon want Penny's voice to do when he's trying to train her? ,132136,The Big Bang Theory,9.35-19,s03e03_seg02_clip_11,Lower her voice 10098,He put it in his car.,He stuck it in a mailbox.,He handed it to a worker.,He put a stamp on it.,He put it on a cart.,4,What did Marshall do after the truck driver handed him a package?,132137,How I Met You Mother,25.98-28.12,met_s02e11_seg02_clip_14,He put it on a cart. 10099,Hector Zamacona,Havi Zamao,Hector Anllison,Zane Hector ,No one,0,Who could have been the last person to speak to Zane before he was murdered?,132138,Castle,38.07-43.96,castle_s08e20_seg02_clip_20,Hector Zamacona 10100,Sheldon loses. ,Penny loses.,Howard loses. ,Leonard loses. ,Amy loses. ,0,Who loses when Penny and Sheldon wrestle?,132139,The Big Bang Theory,13.27-15.25,s06e04_seg02_clip_13,Sheldon loses. 10101,Almost started crying,Almost lost her temper,She walked out of the apartment,She fell asleep,She threw a pillow at Chandler,0,What did Rachael do after she was talking about Alan meeting her family?,132140,Friends,40.56-55,friends_s01e03_seg02_clip_19,Almost started crying 10102,A bass boat,A yacht,A pontoon,An old ship with sails,An aircraft carrier,3,What is in the photo of the framed picture behind Ted when he is talking with the Captain about Zoey?,132141,How I Met You Mother,38.75-44.25,met_s06e17_seg02_clip_13,An old ship with sails 10103,cat,dog,puppy,baby,kitten,3,What is ryan holding when he says am i doing it wrong,132142,Castle,0-10.14,castle_s06e10_seg02_clip_05,baby 10104,A cello. ,A guitar. ,A keyboard. ,A violin. ,A drum set. ,2,What instrument is Ross sitting in front of when he is in Monica's apartment?,132143,Friends,0-1.14,friends_s04e07_seg02_clip_06,A keyboard. 10105,Leonard says that he is lactose intolerant. ,Leonard says that he loves pizza. ,Leonard reminds Sheldon that Sheldon is lactose intolerant. ,Leonard says he doesn't know of any pizza places nearby. ,Leonard says he doesn't know why they don't order pizza more often. ,0,What is Leonard's response after Sheldon suggests pizza for dinner?,132144,The Big Bang Theory,25.94-32.86,s08e21_seg02_clip_10,Leonard says that he is lactose intolerant. 10106,Because of all the booze. ,Because of all the money. ,Because of all the drowning. ,Because of all the problems. ,Because of all the gambling. ,2,Why does Sheldon say he would be terrified to be alone at sea when they are talking?,132145,The Big Bang Theory,7.15-11.83,s06e24_seg01_clip_02,Because of all the drowning. 10107,The victim's leg. ,The victim's hand. ,The victim's foot. ,The victim's face. ,The victim's arm. ,2,What does Lanie show Beckett when she is in the morgue with her?,132146,Castle,13.43-15.67,castle_s06e12_seg02_clip_07,The victim's foot. 10108,Turns the radio off,Leaves the room,Calls Ross,Calls in to the show,Pours a drink,3,What does Rachel do when the song is playing on the radio?,132147,Friends,33.21-43.17,friends_s02e08_seg02_clip_19,Calls in to the show 10109,2 miles apart,5 miles apart,10 miles apart,20 miles apart,15 miles apart,2,How far do matt and Chi live apart when house asks cameron their living proximity? ,132148,House M.D.,33.6-36.82,house_s01e08_seg02_clip_11,10 miles apart 10110,Behind a picture in the formal dining room.,Behind a picture on the wall in the living room.,Behind a picture on the wall in the library.,Behind a picture on the wall in the bathroom.,Behind a picture on the wall in a bedroom.,4,Where did Joanna show Castle the location of Roger's safe before it's unlocked?,132149,Castle,27.08-31.83,castle_s08e10_seg02_clip_20,Behind a picture on the wall in a bedroom. 10111,he is having a party ,his story is a nice one,his is going to a zoo,he is quitting ,his story is not a nice one ,4,What did Kutner tell House when he was hallucination? ,132150,House M.D.,9.86-11.76,house_s05e24_seg02_clip_25,his story is not a nice one 10112,he was talking about the russians,he was talking about the blacks,he was talking about the whites,he was talking a bout the jews,he was talking the people with no beards,0,"who did the the dry cleaners man referrer to as ""his people"" when he was talking to joey?",132151,Friends,0-16.43,friends_s06e22_seg02_clip_03,he was talking about the russians 10113,Smiled at her.,Walked away.,Got up and shook her hand.,Blew her a kiss.,Made a call on his cell phone.,2,What did Castle do to Beckett after telling her nice?,132152,Castle,80.52-90.65,castle_s05e03_seg02_clip_26,Got up and shook her hand. 10114,Marshall's hat is covering a bald stripe on his head.,Marshall's hat is an old family heirloom.,Marshall's hat is a gift from Lily.,Marshall lost a bet with Barney.,Marshall's hat was glued on during a practical joke at the bachelor party.,0,Why is Marshall wearing a hat when he and Lilly get married?,132153,How I Met You Mother,0-62.41,met_s02e21_seg02_clip_18,Marshall's hat is covering a bald stripe on his head. 10115,He would be suspect number three,He would be suspect number two,He would be suspect number one,He would be suspect number four,He would be suspect number five,2,Why did Vincent not mention his marriage troubles before when investigating?,132154,Castle,49.6-52.65,castle_s03e18_seg02_clip_08,He would be suspect number one 10116,One,Zero,Two,Three,Four,1,How many reports of missing babies has Beckett received when asked?,132155,Castle,17.56-21.62,castle_s06e10_seg02_clip_04,Zero 10117,Thirteen,Chase,Foreman,Cuddy,Nolan,2,Who told Cameron to start the patient on gabapentin after they finished discussing the patient's condition?,132156,House M.D.,4.54-15.91,house_s06e04_seg02_clip_13,Foreman 10118,Starts yelling,Starts crying,Walks out of the apartment,Goes to bed,Slams the door,3,What does Leonard do after he hugs his mother?,132157,The Big Bang Theory,49.13-56.76,s03e11_seg02_clip_15,Goes to bed 10119,Leslie just continues to eat.,"Leslie says: ""I'll take the bullet.""",Leslie laughs and says nothing,"Leslie says:""All women are sluts anyway.""","Leslie says: ""I am very promiscuous.""",1,"What does Leslie say after guy says ""Oh yes, some sexual intercourse."" ?",132158,The Big Bang Theory,0-42.12,s02e03_seg02_clip_12,"Leslie says: ""I'll take the bullet.""" 10120,So Marshall and Lily can try to get a marriage license ,They needed to pay parking fines,Jury duty,They were called to testify in court,Lily had to use the restroom and that was the closest public restroom,0,Why did everyone go to the courthouse after talking to the woman behind the desk?,132159,How I Met You Mother,20.61-47.28,met_s02e08_seg02_clip_07,So Marshall and Lily can try to get a marriage license 10121,A dvd cover.,A beer.,A pillow.,A plate.,A remote.,4,What was Ted holding when he said he couldn't marry Stella?,132160,How I Met You Mother,25.35-30.89,met_s04e01_seg02_clip_09,A remote. 10122,Her forehead,her lips,Her cheek,her hand,her neck,2,Where did Alex kiss Izzy when he leaned in close to her?,132161,Grey's Anatomy,37.36-48.61,grey_s03e18_seg02_clip_21,Her cheek 10123,Ross bets he can get all 50 states,Ross bets he can get Rachel back,Ross bets he can leave,Ross bets he can fall asleep soon,Ross bets he can swim fast,0,What does Ross bet on when he is with Chandler and Joey?,132162,Friends,35.3-44.26,friends_s07e08_seg02_clip_01,Ross bets he can get all 50 states 10124,"The Murder of a Man ""Elijah Cruz""","The murder of a boy ""Leo Thompson""","The murder of a woman ""Cindy Ramirez""","The murder of a girl ""Sara Manning""",A Missing artifact,3,What are Beckett and Castle looking for when they are approaching the apartments?,132163,Castle,41.37-57.22,castle_s01e02_seg02_clip_17,"The murder of a girl ""Sara Manning""" 10125,Raj.,Leonard. ,Amy.,Howard.,Penny.,2,Who come to sit next to Raj when Bernadette was talking?,132164,The Big Bang Theory,28.41-71.03,s07e18_seg02_clip_17,Amy. 10126,a scarf,a hat,a suit,a kilt,jogging pants,2,What is Leonard wearing when he is talking to Sheldon?,132165,The Big Bang Theory,0-53.77,s01e04_seg01_clip_00,a suit 10127,Chandler's parents are talking in the bathroom when Monica is hiding in the shower,Rachel's parents are talking in the bathroom when Monica is hiding in the shower,Phoebe's parents are talking in the bathroom when Monica is hiding in the shower,Monica's parents are talking in the bathroom when Monica is hiding in the shower,Joey's parents are talking in the bathroom when Monica is hiding in the shower,3,Whose parents are talking in the bathroom when Monica is hiding in the shower?,132166,Friends,6.3-14.81,friends_s02e16_seg02_clip_08,Monica's parents are talking in the bathroom when Monica is hiding in the shower 10128,Chase was holding a syringe.,Chase was holding two stethoscopes.,Chase was holding a clipboard.,Chase was holding a pair of gloves.,Chase was holding crutches to support himself.,4,What was Chase holding with his hands when he was with Adams and Foreman?,132167,House M.D.,23.15-26.71,house_s08e12_seg02_clip_19,Chase was holding crutches to support himself. 10129,angry,happy,uninterested,concerned,tired,3,How did Bailey feel when the patient was still having symptoms?,132168,Grey's Anatomy,28.59-52.58,grey_s02e14_seg02_clip_04,concerned 10130,Ted nod his head in agreement with the explanation that Lily had given.,Ted asked Robin to swear.,Ted did not react.,Ted was not in the room.,"Ted asked Robin to tell the truth,",0,What was Ted doing when Lily explained why Robin wanted to meet the guy?,132169,How I Met You Mother,44.39-47.6,met_s03e16_seg01_clip_03,Ted nod his head in agreement with the explanation that Lily had given. 10131,Excited,Angry,Sad,Remorseful,Estatic,1,How did Charlton Heston feel after he found Joey in his dressing room?,132170,Friends,40.82-60.03,friends_s04e14_seg02_clip_14,Angry 10132,President Trump.,Howard.,Sheldon's mother.,Amy.,A ghost.,2,Who was speaking to Sheldon when Leonard sneaked into the kitchen for the syrup?,132171,The Big Bang Theory,16.44-34.73,s05e06_seg02_clip_10,Sheldon's mother. 10133,Sheldon told Amy that he would do no matter what it takes.,Sheldon told Amy that they should break up.,Sheldon told Amy that he can if she would just roll over and accept her fate.,Sheldon told Amy that she should move out.,Sheldon told Amy that he would compromise.,2,What did Sheldon want Amy to do when she told him he can't regulate every aspect of their lives?,132172,The Big Bang Theory,9.59-16.59,s10e05_seg01_clip_01,Sheldon told Amy that he can if she would just roll over and accept her fate. 10134,her fridge,her walls,a desk,her face,her toes,4,What is Penny painting when she is in her apartment?,132173,The Big Bang Theory,4.34-7.75,s03e22_seg02_clip_00,her toes 10135,Beatrice corrects Ted's pronunciation. ,Amy corrects Ted's pronunciation. ,Betty corrects Ted's pronunciation. ,Patty corrects Ted's pronunciation. ,Kathy corrects Ted's pronunciation. ,2,Which student corrects Ted's pronunciation when he's giving his lecture.,132174,How I Met You Mother,40.55-67.02,met_s06e19_seg02_clip_00,Betty corrects Ted's pronunciation. 10136,Ross and Chandler are ready to dance.,Ross and Chandler want to sing with Phoebe.,Ross and Chandler are hungry.,Ross and Chandler are frightened because she is singing angrily.,Ross and Chandler love the song Phoebe is singing.,3,Why do Ross and Chandler stare at Phoebe in alarm when she is singing?,132175,Friends,0-5.61,friends_s07e01_seg02_clip_17,Ross and Chandler are frightened because she is singing angrily. 10137,The movie,The book,The journal,The DVD,The film,3,What does Castle say they should make a copy of when he's walking with the team?,132176,Castle,0-3.6,castle_s05e17_seg02_clip_09,The DVD 10138,"He finally took it graciously because he got the feels. (I got the feels, how could Ross not have gotten the feels?)",She guilt tripped him into taking it.,She playfully threatened him.,Rachel stepped into the hallway and Ross just wanted it out of sight before she could see it.,Monica stepped over and called him ungrateful.,2,Why did Ross finally decide to take his mother's gift after she had offered it?,132177,Friends,2.07-46.04,friends_s08e23-24_seg02_clip_05,She playfully threatened him. 10139,Because Detective Beckett thinks Simmons is not really employed.,Because Detective Beckett is holding Simmons at gunpoint and she is questioning him but Simmons is not cooperating. ,Because Simmons says he is a detective also.,Because Detective Beckett thinks Simmons drove him employer out of business.,Becausxe Detective Beckett believes Simmons is a terrorist. ,1,Why is Detective Beckett so aggressive when questioning Simmons about his employment?,132178,Castle,51.36-59.86,castle_s06e22_seg02_clip_06,Because Detective Beckett is holding Simmons at gunpoint and she is questioning him but Simmons is not cooperating. 10140,"When he replies ""forget about Leonard"" ","When he replies "" I hate your boyfriend""","When he replies ""I love you""","When he replies ""so when can I take you on a date""","When he replies "" Your boyfriend made you type that""",4,What makes Leonard tell Penny he hates her project partner when they are in the kitchen,132179,The Big Bang Theory,26.14-60.09,s06e08_seg02_clip_01,"When he replies "" Your boyfriend made you type that""" 10141,Ross offers to pay the $300,Monica offers to pay the $300,Chandler offers to pay the $300,Joey offers to pay the $300,Rachel offers to pay the $300,4,Who offers to pay for Roy $300 after he asks Phoebe for his fee?,132180,Friends,27.58-29.03,friends_s10e11_seg02_clip_12,Rachel offers to pay the $300 10142,Because of the baby,Because she had no insurance,To wait for her next of kin,To wait for her face to heal,To wait until he got off work,0,Why did Dr. Montgomery say Jane should wait to have surgery on her eye after her accident?,132181,Grey's Anatomy,75.69-82.45,grey_s03e18_seg02_clip_01,Because of the baby 10143,Joe Smith,Bob Armen,Ann Harold,James Smith,John Smith,1,Who does Castle say was mistakenly killed when a cop went bad?,132182,Castle,15.53-27.4,castle_s03e13_seg02_clip_19,Bob Armen 10144,Ross was mocking the foreign man,Chandler was mocking the foreign man,Joey was mocking the foreign man,Monica was mocking the foreign man,Phoebe was mocking the foreign man,0,Who was mocking the foreign man when he was talking with one of the girls,132183,Friends,39.55-50.76,friends_s01e07_seg02_clip_18,Ross was mocking the foreign man 10145,That motion.,That dance.,That movement.,That mistake again.,That voice.,4,What did Chandler say he wasn't going to do when he was looking for Clunkers?,132184,Friends,4.41-10.4,friends_s07e08_seg02_clip_16,That voice. 10146,Eating Wilson's lunch,Writing on Wilson's desk,Peeing in Wilson's flower pot,Reading Wilson's papers,Sleeping at Wilson's desk,3,What is House doing after Wilson arrives in his office?,132185,House M.D.,77.42-81.35,house_s07e08_seg02_clip_01,Reading Wilson's papers 10147,On a toliet. ,A yellow couch. ,A bar stool.,Nothing He is standing by the kitchen sink. ,A black recliner. ,4,What is Joey sitting in before he asks Rachel and Ross if he could talk to them. ,132186,Friends,4.96-15.2,friends_s08e14_seg02_clip_15,A black recliner. 10148,I am sick to my stomach.,That woman cannot know I work here.,I have to go now.,"Please,I can't let her see me.",Please help me.,1,What does Phoebe say after the Receptionist tells Phoebe everyone is booked? ,132187,Friends,3.65-8.2,friends_s09e21_seg02_clip_06,That woman cannot know I work here. 10149,She shakes Castle's hand.,She takes a sip from a coffee cup..,She bites into a doughnut.,She gives a high five to Castle.,She takes a cell phone out of her pocket.,4,What does Beckett do after she puts downs the pencil?,132188,Castle,3.62-12.21,castle_s02e04_seg02_clip_23,She takes a cell phone out of her pocket. 10150,"Montgomery says, Businessman do it all the time.",Montgomery yells for Castle to shut up.,Montgomery asked Castle why not?,Montgomery tells castle to leave.,Montgomery asked Castle to go home.,0,"What does Montgomery respond to castle after he asked,who flies in for that short a stay?",132189,Castle,44.19-49.36,castle_s03e22_seg02_clip_02,"Montgomery says, Businessman do it all the time." 10151,Webber helps Dr. Bailey with the cart of files.,Webber waves to Izzy and goes to the elevator.,Webber pulls Alex aside to talk with him.,Webber tells Dr. Bailey she needs to hurry up with those files.,Webber asks George to walk with him to his office.,2,What does Webber do when he sees Alex approaching with Izzy and Dr. Bailey?,132190,Grey's Anatomy,43.08-51.78,grey_s02e14_seg02_clip_02,Webber pulls Alex aside to talk with him. 10152,Drank his beer.,Drank his whiskey.,Puffed his cigar.,Wiped his face.,Ate his food.,2,What did House do after Chase asked hi if he was going to call?,132191,House M.D.,1.36-2.25,house_s02e17_seg02_clip_27,Puffed his cigar. 10153,Stan and Ruth.,Ruth and Castle.,Beckett and Castle.,Ruth and Beckett.,Castle and Jay,2,Who hid from the tiger before Ryan arrived?,132192,Castle,58-75.09,castle_s04e10_seg02_clip_25,Beckett and Castle. 10154,Chase is in his office,Chase is in Dibala's patient room,Chase is in the lab,Chase is in a surgery room with Dibala,Chase is in the waiting room with Dibala,3,Where is Chase when he is with Dibala in his patient bed?,132193,House M.D.,0-8.4,house_s06e03_seg02_clip_13,Chase is in a surgery room with Dibala 10155,a wig ,a top hat,a scarf,a crown ,a lizard ,1,What does Owen have on his head when he is riding through the crowd? ,132194,Castle,87.02-90.18,castle_s03e04_seg02_clip_17,a top hat 10156,Christmas present ideas,His hormones are acting up,His relationship with Amy,He needs to know what new car to buy,He feels lonely,2,What advice does Sheldon imply he needs help with when he is talking to Penny?,132195,The Big Bang Theory,28.19-58.13,s10e05_seg02_clip_13,His relationship with Amy 10157,He acts paranoid,He acts sad,He acts guilty,He acts surprised,He acts disinterested,3,How does Chandler react when Monica confirms his thoughts?,132196,Friends,3.86-7.42,friends_s08e15_seg02_clip_06,He acts surprised 10158,Going to the bar,Going to the grave,Going home,Going to Cuddy's house,Going to jail,2,Where did House say he was going before warning Wilson to stay at that hospital?,132197,House M.D.,55.81-62.57,house_s05e01_seg02_clip_11,Going home 10159,Shaking it back and forth.,Pouring the water out.,Tapping the bottle.,Writing on the bottle.,Spinning the botte.,0,What was the woman doing with her water bottle when she was in the room with House.,132198,House M.D.,66.46-76.14,house_s03e16_seg02_clip_10,Shaking it back and forth. 10160,Streptomycin.,Epinephrine.,Doxycycline.,Ipratropium.,Phenylephrine.,1,What does the nurse inject into the tube when the patient is having a severe medical emergency?,132199,House M.D.,10.23-12.56,house_s02e14_seg02_clip_08,Epinephrine. 10161,A snow storm.,A thunder storm.,A sunny day.,A dust storm.,A flock of pigeons.,0,What did Joey reveal when he threw open the curtains?,132200,Friends,34.9-40.34,friends_s10e12_seg02_clip_20,A snow storm. 10162,$3000,$1000,$1500,$2000,$2500,3,How much does House offer after Harris rejects his initial offer?,132201,House M.D.,48.98-58.1,house_s06e20_seg02_clip_19,$2000 10163,Saying she has got polio ,Diagnosing the mumps,Calling it a fake disease,Telling them its the Plague ,Reporting in on it being HIV,0,How does Travis explain the patient;'s symptoms before uprising the team with his guess?,132202,House M.D.,75-92.03,house_s04e06_seg02_clip_11,Saying she has got polio 10164,She picked up her coffee cup.,She turned off her computer.,She looked at her watch.,She grabbed an erasure.,She picked up her purse.,2,What did Beckett do before she stood up?,132203,Castle,36.93-42.51,castle_s02e17_seg02_clip_13,She looked at her watch. 10165,in her mother's lap,on the sofa,on the examining room table,on the hospital bed,on the living room floor,4,Where was Rachel sitting when Wilson pulled the object from her mouth?,132204,House M.D.,0-17.75,house_s07e05_seg02_clip_06,on the living room floor 10166,He was sitting on the floor.,He was sitting on top of the desk.,He was standing next to the desk.,He was standing outside the door in the hallway.,He was sitting down in the chair. ,4,Where was Ted when he tried the potato skin?,132205,How I Met You Mother,0-10.62,met_s03e18_seg02_clip_04,He was sitting down in the chair. 10167,he refers to her as an oaf,he refers to her as sweetheart,He refers to her as a clumsy floosy,he refers to her as a bad waitress,he never refers to her,2,How does Ted refer to the waitress after his day trys to help her up?,132206,How I Met You Mother,0-23.05,met_s02e03_seg02_clip_14,He refers to her as a clumsy floosy 10168,Takeout food,A 60 inch television screen,A phone or tablet,Sandwich,Bag of chips,2,What is Sheldon holding when he is watching a video?,132207,The Big Bang Theory,5.1-9.3,s03e13_seg02_clip_07,A phone or tablet 10169,Leonard goes for a walk., Leonard frowns at Sheldon.,Leonard goes to the door.,Leonard kisses Penny.,Leonard runs in a circle.,1,What does Leonard do after Sheldon tells him to listen and learn?,132208,The Big Bang Theory,7.96-11.07,s04e08_seg01_clip_01, Leonard frowns at Sheldon. 10170,Sheldon,Bernadette,Amy,Penny,Raj,3,"Who most all of the alcohol when Penny, Bernadette and Amy were talking?",132209,The Big Bang Theory,27.64-35.44,s05e10_seg02_clip_02,Penny 10171,Emma's pillow.,Emma's gift.,A photoframe. ,Beneath a mattress.,Inside a safe. ,1,Where were the adoption records hidden in the apartment when Esposito shows them to Vance?,132210,Castle,45.84-55.83,castle_s06e04_seg02_clip_24,Emma's gift. 10172,makeup sponges,lipstick,chapstick,vaseline,powder,0,What did Penny bring over when she visited Leonard and Sheldon?,132211,The Big Bang Theory,15.84-30.73,s06e13_seg01_clip_00,makeup sponges 10173,Fouler ,Alexis,Kate,Lanie ,Castle,4,Who was following Esposito and Ryan when there where investigating the warehouse? ,132212,Castle,47.95-56.89,castle_s07e06_seg02_clip_13,Castle 10174,Pinball ,Asteroids,Mario,Star Wars,Foosball,1,What game does Chandler defend when talking with Monica?,132213,Friends,0-5.27,friends_s06e03_seg02_clip_03,Asteroids 10175,HIs scarf,His jacket,His hat,His bag,A bottle of wine,0,What did Mr Greene hand to Ross after he entered the apartment?,132214,Friends,48.27-58.34,friends_s03e07_seg02_clip_16,HIs scarf 10176,Mr Waltham,Phoebe,Joey,Ross,Monica,3,Who walks in the room when Chandler is Dancing?,132215,Friends,50.12-60.03,friends_s04e20_seg02_clip_08,Ross 10177,Shoes,Rollar blades,Slippers,Sandals,Nothing,1,What was Ross wearing on his feet when he teaching his class?,132216,Friends,38.24-42.16,friends_s08e12_seg02_clip_21,Rollar blades 10178,Her heart beat too fast and not long enough.,Her heart stopped beating for too long.,Her heart beat too fast for too long.,Her heart beat too slow for too long.,Her heart had an irregular rhythm for too long.,2,How did Amber's heart suffer irreparable damage before they were trying to resuscitate her?,132217,House M.D.,0-11.7,house_s04e16_seg02_clip_19,Her heart beat too fast for too long. 10179,Phoebe is shocked at Joey.,Phoebe is shocked at Chandler.,Phoebe is shocked at Bob.,Phoebe is shocked at Rachel,Phoebe is shocked at Charlotte.,1,Who is Pheobe shocked by after lighting a cigarette?,132218,Friends,0-23.32,friends_s03e17_seg02_clip_01,Phoebe is shocked at Chandler. 10180,a plate,a cup,a sandwich,a gun,A digital tablet,4,"what was Esposito holding in his hand when he said ""Mary and Dennis confirmed that blogger chick was in her room all night"" ?",132219,Castle,0-8.27,castle_s03e18_seg02_clip_08,A digital tablet 10181,They are in the observation area,They are in the back of the operating room,They are in the staff lounge,They are at the coffee cart,They are on a bench in front of the hospital,0,Where is Meredith and Cristina when there is a surgery in progress,132220,Grey's Anatomy,73.51-81.08,grey_s02e14_seg02_clip_13,They are in the observation area 10182,The patient feels happy.,The patient feels relieved.,The patient feels excited.,The patient feels horrified.,The patient feels mildly annoyed with House.,3,How does the patient feel when House says that he will need to remove her head?,132221,House M.D.,30.04-47.79,house_s05e02_seg02_clip_03,The patient feels horrified. 10183,Monica walked to a small table by the wall and placed a plate of food on it. ,Monica walked into the dining room. ,Monica left the kitchen to deliver some food. ,Monica walked over to the stove. ,Monica left work and walked to Central Perk. ,0,Where did Monica go when Phoebe was talking about her feelings for her date?,132222,Friends,25.74-31.01,friends_s07e18_seg02_clip_05,Monica walked to a small table by the wall and placed a plate of food on it. 10184,Gretchen says nothing,Gretchen asks Castle how tall he is,Gretchen asks Beckett how tall she is,Gretchen asks who wants to know,Gretchen asks Beckett for a cigarette,3,What does Gretchen say after Beckett asks her name?,132223,Castle,17.31-24.14,castle_s07e14_seg02_clip_20,Gretchen asks who wants to know 10185,They were standing on the ledge.,They were standing in the kitchen.,They were standing in the bathroom.,They were standing on each other.,They were standing in the living room.,1,Where were Chandler and Joey standing when they were playing fuse ball?,132224,Friends,28.99-52.18,friends_s04e18_seg02_clip_01,They were standing in the kitchen. 10186,Because Sheldon is proud.,Because Sheldon didn't discover anyting.,Because te applauds were so laud.,Because Sheldon almost felt.,Because Sheldon's discovery was the result of a boneheaded mistake.,4,Why Sheldon is upset after people applaud him?,132225,The Big Bang Theory,20.44-61.02,s07e06_seg02_clip_09,Because Sheldon's discovery was the result of a boneheaded mistake. 10187,"Oh wow, so breezy. ","Easy, oh, so breezy. ","Easy-peasy, ooh, so breezy. ","Easy easy, it's so breezy. ","Ooh, easy and breezy! ",2,What does Leonard say to Sheldon before Sheldon runs out of the room? ,132226,The Big Bang Theory,0-7.29,s10e10_seg02_clip_10,"Easy-peasy, ooh, so breezy. " 10188,Punch Joey in the stomach. ,Back Joey in a box.,Tackle Joey. ,Punch Joey in the head.,Tickle Joey. ,3,What do Ross and Chandler do after Joey says to try it?,132227,Friends,0-8.22,friends_s10e16_seg02_clip_02,Punch Joey in the head. 10189,Joey is with him. ,The duck is with him. ,Rachel is with him. ,Monica is with him. ,Phoebe is with him. ,1,Who is with Chandler when he is watching television?,132228,Friends,55.24-57.25,friends_s04e07_seg02_clip_06,The duck is with him. 10190,Mrs. Cooper runs to the bathroom.,Mrs. Cooper sings a song.,Mrs. Cooper dances in a circle.,Mrs. Cooper makes a steeple with her hands.,Mrs. Cooper sits on the floor.,3,What does Mrs. Cooper do when she says they are married?,132229,The Big Bang Theory,4.65-8.99,s08e23_seg02_clip_09,Mrs. Cooper makes a steeple with her hands. 10191,Castle throws it back to Ryan.,Castle answers a call.,Castle takes it upstairs with him.,Castle eats it.,Castle steps on it with his boot.,0,What does Castle do with the phone in the bag after Ryan says the assistant might know?,132230,Castle,6.47-12.01,castle_s06e08_seg02_clip_02,Castle throws it back to Ryan. 10192,Cristina is drinking orange juice,Cristina is drinking coffee,Cristina is drinking tea,Cristina is drinking a green smoothie,Cristina is drinking tomato juice,2,What is Cristina drinking when she is talking to Meredith in the observation area,132231,Grey's Anatomy,77.97-88.21,grey_s02e14_seg02_clip_13,Cristina is drinking tea 10193,Penny.,Leonard.,Mrs. Davis.,Bernadette.,Amy.,3,Who come to sit wit Raj after Amy left?,132232,The Big Bang Theory,16.34-71.03,s07e18_seg02_clip_17,Bernadette. 10194,An Indian headdress. ,A dress.,A mask.,A clown nose.,A business suit.,0,What is Ross wearing when he appears from below the cardboard boxes?,132233,Friends,25.12-26.98,friends_s08e19_seg02_clip_04,An Indian headdress. 10195,He is playing a video game. ,He is sleeping. ,He is eating. ,He is being interviewed. ,He is playing a board game. ,3,What is going on when Sheldon is at home?,132234,The Big Bang Theory,50.12-55.82,s09e07_seg02_clip_02,He is being interviewed. 10196,An oxygen tent,A crash cart,A nurse,A Defibrillator ,A bronchial dilator ,1,What did Wilson order to the room after the patient began coughing uncontrollably? ,132235,House M.D.,62-71.05,house_s06e09_seg02_clip_05,A crash cart 10197,She yells at him. ,She laughs. ,She rolls her eyes. ,She smacks him. ,She throws something at him. ,2,How does Monica react when Joey makes a reference to Elizabeth's boobs?,132236,Friends,55.52-60.03,friends_s06e18_seg02_clip_10,She rolls her eyes. 10198,Phoebe.,Chandler.,Joey.,Monica.,Ross.,4,Who was in the kitchen when Rachel came into the apartment?,132237,Friends,35.05-40.94,friends_s05e19_seg02_clip_17,Ross. 10199,Sheldon and Leonard cooked dinner for each other on Friday nights.,Sheldon and Leonard watched their favorite TV show on Friday nights.,Sheldon and Leonard discussed their work on Friday nights.,Sheldon and Leonard played vintage games on Friday nights.,Sheldon and Leonard went to the comic book store together on Friday nights.,3,What did Sheldon say he and Leonard always did on Friday nights when he learned Leonard had a date?,132238,The Big Bang Theory,50.73-60.5,s02e02_seg02_clip_04,Sheldon and Leonard played vintage games on Friday nights. 10200,Doing an EEG inside the stomach,Doing an EEG outside the skull,Doing an EEG inside the skull,Doing an EEG outside the stomach,Going out for drinks with the rest of the team,2,What does House agree to after Foreman explains his idea?,132239,House M.D.,0-13.92,house_s03e15_seg02_clip_15,Doing an EEG inside the skull 10201,They started dancing.,They hugged.,They slapped Barney.,They kissed.,They yelled with joy.,3,What happened after Barney pronounced them man and wife?,132240,How I Met You Mother,3.64-12.48,met_s02e21_seg02_clip_18,They kissed. 10202,Zoey is too young.,They have nothing in common.,The captain is married.,The Captain is poor.,Zoey likes young men.,1,Why did Ted say the captain and Zoey weren't' right for each other before the captain sat down? ,132241,How I Met You Mother,12.51-24.41,met_s06e17_seg02_clip_13,They have nothing in common. 10203,Jeff was told by Rebecca to leave.,Jeff saw that Rebecca was hurt.,Jeff learned that Rebecca didn't know him.,Jeff saw that the person he was talking to was not Rebecca.,Jeff saw that Rebecca's face has changed.,4,Why was Jeff surprised to see Rebecca when she turned to him?,132242,Grey's Anatomy,10.7-26.57,grey_s03e25_seg02_clip_05,Jeff saw that Rebecca's face has changed. 10204,Because there is a chance Jane Doe will get her memory back,Because Jane Doe wants to die,Because Jane Doe wants to be able to walk again,Because Jane Doe thinks neurosurgery is super cool,Because Jane Doe does not fully understand what the surgery entails,0,Why is Jane Doe not scared of her operation when talking to Alex?,132243,Grey's Anatomy,26.42-40.9,grey_s03e23_seg02_clip_02,Because there is a chance Jane Doe will get her memory back 10205,Wilson and House were having drinks with two women at the table in their hotel room.,Wilson and House were getting massages.,"Wilson and House were sitting at the table in the hotel room, watching the clock.","Wilson and House were in the bathroom, both trying to share the mirror while shaving.",Wilson and House were eating a feast while sitting at the table in the hotel room eating,1,What were Wilson and House doing after House told Wilson to eat fast because they're expecting company?,132244,House M.D.,24.46-45.29,house_s07e16_seg02_clip_01,Wilson and House were getting massages. 10206,Wilson almost rammed into another car,Wilson ran a light,WIlson ran a stop light,Wilson lost track of his speed,Wilson was not driving on the right side of the road,3,Why was WIlson pulled over by the police when House mentioned it?,132245,House M.D.,45.95-48.55,house_s05e04_seg02_clip_10,Wilson lost track of his speed 10207,He turned the TV on.,He jumped on the couch.,He held Rachael's hand.,He grabbed the remote.,He threw the tape on the chair.,4,What did Chandler do after he turned on the VCR?,132246,Friends,22.01-24.21,friends_s08e15_seg02_clip_17,He threw the tape on the chair. 10208,The couch broke.,She has had too much alcohol to drink.,Joey pushed her off the couch.,She was sitting on the edge and slipped.,She got up quickly and lost her balance.,1,Why does Rachel fall off the couch after she crosses her legs?,132247,Friends,7.16-43.53,friends_s06e15-16_seg02_clip_27,She has had too much alcohol to drink. 10209,Sloppy sidekick and they do their very best work they've been booted off a case,Witty sidekick and they do their very best work they've been assigned to a case,Witty sidekick and they do their very best work they've been booted off a case,Stupid sidekick and they do their very best work they've been booted off a case,Stupid sidekick and they do their very best work they've been assigned to a case,2,What do all cops have in common according to Castle when he's speaking to Beckett,132248,Castle,0-24,castle_s03e13_seg02_clip_11,Witty sidekick and they do their very best work they've been booted off a case 10210,hot shower and nice bed,Decent meal and a nice car,decent meal and a hot shower,Nothing,"Decent meal, hot shower, and a real bed",4,What did sonia say she thought she was going to get when she is with esposito in the elevator?,132249,Castle,39.6-41.42,castle_s08e16_seg02_clip_13,"Decent meal, hot shower, and a real bed" 10211,He says the beard lets everyone know Chase isn't a teenage girl.,He says the beard will make people think he's Sigmund Freud.,He says the beard will help convince Adams to date him.,He says the beard must have taken forever to paint on.,He says the beard makes him look old enough to buy alcohol and vote.,0,How does House needle Chase about his facial hair after he first remarks that the beard is a nice touch?,132250,House M.D.,12.13-19.33,house_s08e05_seg02_clip_01,He says the beard lets everyone know Chase isn't a teenage girl. 10212,Have them aged like a bottle of vine,Capture them all for his next book,Have them sealed and put in a vault,Go back in time and tell himself not to erase them,Have them erased forever ,3,What did Castle wish he could do to his memories after he mentioned the situation was like a novel?,132251,Castle,36.94-45.4,castle_s08e14_seg02_clip_22,Go back in time and tell himself not to erase them 10213,Marshall's graduation picture.,The DMV.,His tools.,The hockey stadium.,His car.,2,What is Marvin sitting by when he calls Lily about her last name?,132252,How I Met You Mother,14.86-20.91,met_s06e01_seg02_clip_08,His tools. 10214,A cut on her arm,A cut on her head,A broken wrist,A sprained ankle,A cut on her leg,1,What injury was Taub tending to when he was treating Adams?,132253,House M.D.,7.95-10.34,house_s08e21_seg02_clip_19,A cut on her head 10215,In the movies,In the cafe,In the office,On the street,In a hospital,1,Where were Raj and Sheldon when Raj joined the woman at her table?,132254,The Big Bang Theory,35.4-44.56,s04e22_seg02_clip_13,In the cafe 10216,Papers that Mike kept for blackmail ,Access to the room's safe,Access to the adjacent room,A video of a crime scene,Drugs hidden in the room,2,Why did Sophie want in Mike's room after Becket and Sophie deliberated about motives?,132255,Castle,63.94-75.22,castle_s02e12_seg02_clip_14,Access to the adjacent room 10217,Raj kisses the girl he is with,Raj throws a comic book,Raj throws his hands up and then leaves the comic book store.,Raj slaps his chest,Raj slams the door,2,"What does Raj do after he says, ""Later Losers!""?",132256,The Big Bang Theory,34.89-43.86,s06e16_seg02_clip_17,Raj throws his hands up and then leaves the comic book store. 10218,Scrabble,Monopoly,Poker,Shoots and Ladders,Clue,1,What game are the friends playing when Rachel brings Paolo into the apartment?,132257,Friends,22.73-28.92,friends_s01e07_seg02_clip_16,Monopoly 10219,You have big eyes.,You have pretty hair. ,You are beautiful.,You have a unique nature.,Spoken like a queen.,1,What did House say when he stared at Cameron?,132258,House M.D.,22.06-26.11,house_s03e04_seg02_clip_10,You have pretty hair. 10220,A telephone.,A napkin.,His wallet.,A bag of chips.,A remote.,0,What House picks up after passing off the cup of liquid?,132259,House M.D.,22.81-31.51,house_s03e18_seg02_clip_17,A telephone. 10221,Penny hits leonard,Penny exhales deeply,She begins to cry,She jumps out of the car,She laughs at leonard,1,What did penny do after leonard told her about the kiss he had with another woman?,132260,The Big Bang Theory,22.06-32.01,s08e24_seg02_clip_14,Penny exhales deeply 10222,She leaves the bar. ,She joins Barney at the bar. ,She uses the bathroom. ,She sits down at the booth. ,She pushes Barney. ,1,Where does Lily go after she gets up from the table?,132261,How I Met You Mother,0.69-4.14,met_s05e01_seg02_clip_03,She joins Barney at the bar. 10223,"He shouted ""eureka!"" and jumped up and down.",He quickly shut the door.,He asked James to leave.,He gave James a hug.,He pushed James off his porch. ,3,What did Sam do after he said something about the photo?,132262,How I Met You Mother,37.38-47.72,met_s06e02_seg02_clip_11,He gave James a hug. 10224,A superhero name.,A nickname.,A code name.,A police name.,A sidekick name.,0,What does Castle say they have to come up with when they are talking about Alan?,132263,Castle,14.31-19.23,castle_s08e19_seg02_clip_07,A superhero name. 10225,House tosses the phone to the man sitting on the stool.,House puts the phone in his pocket.,House holds the phone in his lap.,House drops the phone on the floor.,House sets the phone down beside himself.,4,What does House do with the cell phone after he mentions tachycardia?,132264,House M.D.,27.74-35.73,house_s05e09_seg02_clip_21,House sets the phone down beside himself. 10226,An abnormality in the X-Ray he is examining.,House trying to sneak in.,A letter shoot under the door.,White liquid coming under the door.,A nurse who came to get Taub.,3,What does Foreman see when they stop talking in his office?,132265,House M.D.,37.36-43.66,house_s08e21_seg02_clip_09,White liquid coming under the door. 10227,spandex,cotton,wool,Black leather,jean jacket,3,What kind of jacket is Simon wearing when he talks to Robin about a pool?,132266,How I Met You Mother,2.04-6.72,met_s03e16_seg01_clip_03,Black leather 10228,A gun,A puppy,A briefcase ,A coffee mug,A pill bottle,3,What does Castle have in his hand when talking to Beckett about the case?,132267,Castle,0-9.35,castle_s03e19_seg02_clip_18,A coffee mug 10229,Castle and Alexis had heard that some other boys had stopped by the house.,Castle was looking for a lost cat.,Alexis was wanting to speak with the neighbors.,Castle and Alexis wanted to come in.,Castle and Alexis made a snide comment.,0,What did Patrice think was funny when Alexis was questioning her?,132268,Castle,80.34-89.27,castle_s06e07_seg02_clip_16,Castle and Alexis had heard that some other boys had stopped by the house. 10230,Next to Esposito ,Across from Esposito,next to the door ,next to the computers ,next to Ryan ,0,Where was Beckett when Castle came into the room? ,132269,Castle,10.65-20.83,castle_s06e12_seg02_clip_04,Next to Esposito 10231,6:56am,6:57am,6:56pm,6:57pm,7:00pm,3,What was the time of death when recording the findings?,132270,House M.D.,3.83-7.65,house_s01e04_seg02_clip_17,6:57pm 10232,He is sad. ,He is embarassed. ,He is unhappy. ,He is extremely happy and excited. ,He is crying. ,3,What is Raj's reaction when he is able to speak with a woman?,132271,The Big Bang Theory,27.47-30.83,s04e22_seg02_clip_13,He is extremely happy and excited. 10233,A snake. ,A blanket. ,A shirt. ,A towel. ,A boa. ,3,What is Monica wearing on her shoulders when Phoebe is in her bedroom with scissors?,132272,Friends,15.56-17.39,friends_s02e01_seg02_clip_13,A towel. 10234,Gloria.,Sarah.,Alexis,Martha.,Beckett.,0,Who was walking with Esposito after arresting in JFK?,132273,Castle,15.72-21.56,castle_s03e18_seg02_clip_16,Gloria. 10235,On a nail,In her locker,On the bannister,In the closet,On a coat rack,1,Where does Izzie hang her coat before George comes over?,132274,Grey's Anatomy,13.52-17.12,grey_s03e18_seg02_clip_01,In her locker 10236,Interviewing a potential employee,Looking for a new best friend,Interviewing a potential roommate.,Asking to renovate the living room,Looking for a new partner in crime,2,What is Sheldon doing when he is speaking to the man in the chair?,132275,The Big Bang Theory,20.43-25.83,s09e04_seg02_clip_06,Interviewing a potential roommate. 10237,A milf,A bad bitch,A little cutie,A smoking hottie,Stacked ,3,How did House describe mother inferior when teasing Chase about playing handsies with her?,132276,House M.D.,0-6.48,house_s08e12_seg02_clip_11,A smoking hottie 10238,They are Sheldon and Leonard's apartment,They are in Raj's apartmen,They are on Howard's mom's porch,They are in Bernadette's apartment,They are at the park,0,Where is the group when they are discussing a celebration,132277,The Big Bang Theory,0-12.4,s07e22_seg01_clip_00,They are Sheldon and Leonard's apartment 10239,Rachel is obsessed with floor plans.,Rachel used to live in that apartment.,Rachel wants to rob the apartment.,Rachel is hoping to move into the apartment when Mrs. Verhoeven dies.,Rachel is a realtor.,3,Why does Rachel peek in and ask about the number of bedrooms when she is at the door with Ross?,132278,Friends,52.83-66.03,friends_s08e07_seg02_clip_03,Rachel is hoping to move into the apartment when Mrs. Verhoeven dies. 10240,Ross is on an airplane.,Ross is at his apartment.,Ross is at a department store.,Ross is at the coffee shop.,Ross is on a train.,4,Where is Ross when he asks the woman if they are really in Montreal before she asks him to go with her?,132279,Friends,14.22-42.07,friends_s04e10_seg02_clip_18,Ross is on a train. 10241,Looking at her phone,Eating some candy,Holding a drink,Reading a magazine,Drawing a sad face,2,What was Rachel doing when Monica asked her if she's ok?,132280,Friends,55.22-60.03,friends_s01e20_seg02_clip_19,Holding a drink 10242,She said she forgave him.,She said she was going to leave him.,She said she didn't care if he died.,She said she hoped he was suffering like she did.,She said he was making it up. ,0,What did Denise say after Bob said he cheated on her?,132281,House M.D.,0-20.41,house_s08e05_seg02_clip_14,She said she forgave him. 10243,the Russian Consulate ,Castle,Becket ,Rita ,Grigory ,3,Who did Vasiliy speak to after Beckett? ,132282,Castle,19.57-45.06,castle_s08e11_seg02_clip_20,Rita 10244,Her writing skills.,Cuddy's clothing.,The weather.,His lunch.,Cuddy's choice of men.,4,What House is upset about when discussing sperm donors?,132283,House M.D.,41.07-56.64,house_s02e23_seg02_clip_06,Cuddy's choice of men. 10245,pretends he can't help her,pretends to faint,pretends to not hear her,pretends to hear someone calling him,pretends to be sick,4,What does House pretend to do when he hears the patients problem?,132284,House M.D.,22.89-44.89,house_s01e10_seg02_clip_09,pretends to be sick 10246,Threw up.,Rubbed his jaw.,Rubbed Rachel's leg.,Rubbed his forehead.,Patted Rachel's head.,3,What did Ross do after getting up from the floor?,132285,Friends,24.61-28.81,friends_s08e23-24_seg02_clip_32,Rubbed his forehead. 10247,elated,happy,frustrated,bored,tired,2,How did Penny feel after Leonard spoke to her?,132286,The Big Bang Theory,45.16-63.17,s02e07_seg02_clip_06,frustrated 10248,busboying,bartending,flying,driving his taxi,on the train,1,Why did Mandy say that Sam wasn't answering when Alexis was saying maybe the killer was trying to lure her out?,132287,Castle,4.1-13.65,castle_s06e13_seg02_clip_16,bartending 10249,Jeremy,Jason's family,Finn's Family,Arnold's Family,Sal's Family,1,Who does Beckett ask Ryan to check in with when she's talking about the murder case?,132288,Castle,31.51-37.36,castle_s05e17_seg02_clip_09,Jason's family 10250,Girls,Miniaturize integrated logic circuits,Compressed carbon nanochips,Quantum analyitics,Fiberglass optics,1,What does Sheldon say he is not very familiar with when talking to Raj?,132289,The Big Bang Theory,16.39-63.02,s08e22_seg02_clip_06,Miniaturize integrated logic circuits 10251,Joey was talking to Bart.,Joey was talking to Phoebe.,Joey was talking to Chandler.,Joey was talking to Rachel.,Joey was talking to Steven.,3,Who is Joey talking to when eating Chinese food in opening scene?,132290,Friends,0-4.43,friends_s03e17_seg02_clip_01,Joey was talking to Rachel. 10252,Amy is standing next to Raj.,Stuart is standing next to Raj.,Priya is standing next to Raj.,Barry is standing next to Raj.,Howard is standing next to Raj.,4,Who is standing next to Raj when he is at Bernadette's parent's house?,132291,The Big Bang Theory,0-8.06,s09e07_seg02_clip_06,Howard is standing next to Raj. 10253,phone,laptop,tablet,boxes,purse,3,What is Cameron carrying when she walks into the office?,132292,House M.D.,42.76-49.96,house_s04e14_seg02_clip_14,boxes 10254,House said he lied about wanting a family,House said he lied about being over Cuddy,House said he lied about not having a heart,House said he lied about giving Cuddy some books,House said he lied about wanting his leg to improve,3,What did House he lied about when he was speaking with Cuddy,132293,House M.D.,0-12.38,house_s07e03_seg02_clip_25,House said he lied about giving Cuddy some books 10255,Stomps his foot,Clenches his fists,Looks at Beckett,Walks toward the door,Looks out the window,2,What does Castle do when he mentions murder?,132294,Castle,58.35-63.69,castle_s08e20_seg02_clip_22,Looks at Beckett 10256,I love you,You're pathetic,I want that more than ever,I hate you,Oh shut up,1,What did the wife tell her husband after he told her they should go on a vacation when she gets better?,132295,House M.D.,60.49-87.08,house_s06e11_seg02_clip_24,You're pathetic 10257,They found terminal cancer in the patient.,The patient woke up.,The patient's blood pressure was still dropping.,The patient died on the table.,The patient went into cardiac arrest.,2,Why did the surgical team have to pull out from the patient when they were in surgery?,132296,House M.D.,50.58-68.32,house_s07e05_seg02_clip_06,The patient's blood pressure was still dropping. 10258,Because Ali told Chase she knew House and Wilson.,Because Ali told Chase she didn't sleep with guys on the first date.,Because Ali told Chase she was very shy about dating.,Because Ali told Chase she was going back to school.,Because Ali told Chase she was going to be an actress.,1,Why did Ali say Chase never came back when he left to go to the bathroom?,132297,House M.D.,79.22-82.37,house_s07e10_seg02_clip_24,Because Ali told Chase she didn't sleep with guys on the first date. 10259,Smart,Smooth,Flirtacious,Suave,Babbling and awkward,4,What is the best way to describe Leonard's words when speaking to Alicia?,132298,The Big Bang Theory,0-15.31,s02e19_seg02_clip_02,Babbling and awkward 10260,A knife,A book,A cup,A gun,A bal,2,What was handed to Beckett when she was sitting in front of the computer?,132299,Castle,56.87-64.66,castle_s07e01_seg02_clip_07,A cup 10261,An IV bag.,A neck brace.,The nurses station.,Dr. Shepard.,Izzie.,0,What is next to Meredith when she is talking to Alex?,132300,Grey's Anatomy,15.99-21.92,grey_s02e06_seg02_clip_11,An IV bag. 10262,Bernadette says that Penny met an astronaut the way regular people meet astronauts. ,Bernadette says that Penny met an astronaut at a museum. ,Bernadette says that Penny met an astronaut at an ice cream parlor. ,Bernadette says that Penny met an astronaut at the drive in. ,Bernadette says that Penny met an astronaut at the movies. ,0,How does Bernadette say that Penny met an astronaut after Howard asks?,132301,The Big Bang Theory,0-5.02,s04e22_seg02_clip_10,Bernadette says that Penny met an astronaut the way regular people meet astronauts. 10263,On top of the fridge. ,By the front door. ,Next to the chair. ,In the bedroom. ,In the kitchen next to the counter. ,4,Where is Ross standing when he opens Joey's beer?,132302,Friends,0-9.15,friends_s05e10_seg02_clip_04,In the kitchen next to the counter. 10264,Leonard was looking a screen on the table.,Leonard was drinking beer.,Leonard was eating pizza.,Leonard was drinking caffee.,Leonard was taking a fork on his hand.,0,What was doing Leonard after Mikayla approached ,132303,The Big Bang Theory,10.69-61.06,s02e21_seg02_clip_07,Leonard was looking a screen on the table. 10265,Yells at him,Leaves the apartment,Goes out for drinks with Phoebe and Rachel,Cries,Threatens to cancel their engagement,4,"What does Monica do when Chandler calls their wedding a ""party""?",132304,Friends,30.58-38.45,friends_s07e02_seg02_clip_14,Threatens to cancel their engagement 10266,Shut the door on Raj. ,Leaves Raj's office.,Pours their drinks on Raj.,Get up from the couch.,Leaves the restaurant.,4,"What does Howard, Leonard, and Sheldon do after Leonard says now?",132305,The Big Bang Theory,29.3-32.96,s02e04_seg02_clip_07,Leaves the restaurant. 10267,Sir,Ma'am,Dude,Woman,Mister,0,"What did beckett call gates when she was in gates's office with castle, esposito, and ryan?",132306,Castle,40.27-45.6,castle_s04e04_seg02_clip_19,Sir 10268,She thought it was Phoebe,She thought it was her mom,She thought it was Ross,She thought is was the mailman,She thought it was Joey,2,Why did Rachel make Gavin hid after being asked?,132307,Friends,36.24-41.28,friends_s09e13_seg02_clip_10,She thought it was Ross 10269,he took off his tie,he cried,he rolled his eyes,he punched house,he stormed off,2,what did the black male doctor do after house called his tie ugly,132308,House M.D.,0-9.24,house_s01e03_seg02_clip_06,he rolled his eyes 10270,A napkin.,A purse.,A book.,A coffee mug.,A remote.,3,What is Phoebe holding when she is talking to Chandler?,132309,Friends,37.68-46.88,friends_s02e14_seg02_clip_06,A coffee mug. 10271,Because Leonard told Mandy she is cute.,Because Leonard is in love of Mandy.,Because Leonard wants to resume his relationship with Mandy.,Because Leonard want to travel with Mandy.,Because Leonard is marry now and Penny is jealous of Mandy.,4,Why Leonard is talking with Mandy when she is eating?,132310,The Big Bang Theory,0-25.4,s09e02_seg02_clip_11,Because Leonard is marry now and Penny is jealous of Mandy. 10272,"""I wanted something new!""","""I was shot!"" ","""I got a bullet in my head!""","""It meant nothing!""","""I did not!""",2,What does Samuel say when Mrs. Linden is mad at him?,132311,Grey's Anatomy,31.96-45.01,grey_s02e04_seg02_clip_12,"""I got a bullet in my head!""" 10273,Mia,James,John,Adam,Hayes,4,"Who was Brant talking to when he said ""What did they cover up.""?",132312,House M.D.,0-8.1,house_s08e15_seg02_clip_22,Hayes 10274,Because Raj felt left out and wanted to stay and work on the project with Penny and Bernadette.,Why did Raj leave saddened?,Who was Penny talking about to Raj?,How many pieces of work did Penny do?,When are the guys coming back?,0,Why did Raj leave feeling sad after speaking with Penny and Bernadette?,132313,The Big Bang Theory,33.32-48,s09e19_seg02_clip_07,Because Raj felt left out and wanted to stay and work on the project with Penny and Bernadette. 10275,Ring,Cell phone,Watch,Timer,wall clock,3,What does Castle look at before the guy indicates they need to decide who is staying in there with him?,132314,Castle,5.52-13.34,castle_s08e12_seg02_clip_23,Timer 10276,Ross was lecturing Joey on the history of the Bapstein-King comet.,Ross was talkin about Rachel again,Ross was telling a lame joke again.,Ross was lecturing Joey on history of dinosaurs.,Ross was talking about his trip to China again,0,Why did Joey scream 'No' and cover his ears after Ross started talking?,132315,Friends,26.64-35.43,friends_s07e12_seg02_clip_01,Ross was lecturing Joey on the history of the Bapstein-King comet. 10277,Under an open window. ,Beside the staircase.,In the foyer. ,"On a stepstool, in the bathroom.",On the front porch.,1,"Where is Castle standing when he listens to Alexis playing music, upstairs?",132316,Castle,0.42-7.77,castle_s02e04_seg02_clip_11,Beside the staircase. 10278,dr. HAroun,Tom,commander Kim ,Angela,Mikhail,4,Who did Beckett say was selling secrets when she was talking to the astronauts? ,132317,Castle,2.73-6.38,castle_s07e16_seg02_clip_24,Mikhail 10279,He was scratching his head,He was holding Maria's hand,His was holding the pillow,He was holding the bedrails,His fingers were on his neck.,4,Where does Bob have his fingers when he was talking to Maria?,132318,House M.D.,0-10.27,house_s02e15_seg02_clip_18,His fingers were on his neck. 10280,I would love to date her.,Your novels do Beckett justice.,Beckett is so awesome!,Your novels don't do Beckett justice.,I think I'm in love with her.,3,What does the man say to Castle about Beckett when he is watching her interrogate someone?,132319,Castle,23.93-36.35,castle_s08e11_seg02_clip_24,Your novels don't do Beckett justice. 10281,She hit the table twice,She dance on the table,She slap Penny,She hug Penny,She slap the bar man,0,What did Beverly do when the bar man was pouring the drink ?,132320,The Big Bang Theory,10.65-13.17,s03e11_seg02_clip_13,She hit the table twice 10282,happy,upset,nervous,bored,tired,1,How did the waitress feel when she came to ask about Lily and Marshall? ,132321,How I Met You Mother,9.08-16.65,met_s03e07_seg02_clip_14,upset 10283,Melinda wants Barbara to stay by her side.,Melinda wants Barbara to go to the cafe.,Outside with Dan,Barbara isnt there.,Melinda wants Barbara to go get her snacks at the store.,0,Where does Melinda want Barbara to be when Melinda is in the hospital bed?,132322,House M.D.,53.78-73.46,house_s02e16_seg02_clip_16,Melinda wants Barbara to stay by her side. 10284,Fly through the air.,Jump from burning buildings,Pull pylons off people.,Bring people back from the dead.,Sew parts of people back together.,2,What did Alex tell Cristina he did when they were comparing what they do?,132323,Grey's Anatomy,11.88-13.64,grey_s03e15_seg02_clip_23,Pull pylons off people. 10285,Nothing.,A robe.,A towel. ,His shirt.,His jeans.,2,What does Joey have on him when Charleston Heston says every actor thinks he stinks?,132324,Friends,13.51-17.71,friends_s04e14_seg02_clip_14,A towel. 10286,Tranquilizer,poison,bullet,grenade,banana,0,What did the animal control officer load in the gun before pulling the trigger?,132325,Friends,4.03-16.44,friends_s01e19_seg02_clip_15,Tranquilizer 10287,Take an X ray,Take a MRI T2,Take the patients temperature,Check the patients blood pressure,Give the patient pain anesthesia ,1,How did Cameron suggest they carried out the procedure after House wanted to fire up the biopsy drill?,132326,House M.D.,16.28-25.12,house_s05e13_seg02_clip_13,Take a MRI T2 10288,He put the spoon in the bowl.,He washed the spoon.,He put the spoon in the dishwasher.,He put the spoon in the toilet.,Joey licked and put the spoon back in the drawer.,4,What did Joey do with the spoon when he finished eating?,132327,Friends,18.49-66.04,friends_s02e16_seg01_clip_00,Joey licked and put the spoon back in the drawer. 10289,The blond white male patient,The bald white male patient,The blond white woman patient,The bald black male patient,The hispanic male patient,3,Who drank more than enough copier fluid to kill himself before landing in the hospital?,132328,House M.D.,11.76-25.98,house_s02e01_seg02_clip_14,The bald black male patient 10290,He is holding his hands up in the air.,He is holding a women at gun point.,He is cooking food in the kitchen.,He is going to the bathroom.,He was sleeping on the couch.,0,What is Sam doing in the room when Esposito barges in?,132329,Castle,82.36-92.03,castle_s05e07_seg02_clip_11,He is holding his hands up in the air. 10291,House shake her hand,House sat down,House drink coffee,House walk close to Cameron,House gave Cameron a cane,3,What did House do before she talk to Cameron?,132330,House M.D.,7.13-13.3,house_s01e05_seg02_clip_16,House walk close to Cameron 10292,Castle and Dolan are in the men's room together.,Castle and Dolan are just outside the police station.,Castle and Dolan are sitting in a dimly lit car.,Castle and Dolan are at Starbucks.,Castle and Dolan are at the grocery store.,2,Where are Castle and Dolan when they have their conversation with Beckett about meeting up?,132331,Castle,22.09-42.38,castle_s05e08_seg02_clip_24,Castle and Dolan are sitting in a dimly lit car. 10293,Bowman told Cuddy that if she thought of anything else to let him know immediately.,Bowman told Cuddy to text him if she heard from House again.,Bowman told Cuddy he hoped her boyfriend knew what he was doing.,Bowman asked Cuddy how long House had been depressed and in pain.,Bowman told Cuddy to try to talk some sense into House if she got him on the phone.,2,What did Bowman say to Cuddy after he radio'd a command to mic the door and get a frame charge?,132332,House M.D.,10.81-17.87,house_s05e09_seg02_clip_21,Bowman told Cuddy he hoped her boyfriend knew what he was doing. 10294,Monica,Phoebe,Chandler,Joey,Ross,1,Who walks into Grandmothers house when she is reading the paper?,132333,Friends,0-13.28,friends_s02e09_seg02_clip_03,Phoebe 10295,She thinks he's a wimp.,He tells his dad too much.,He left his wallet at home.,She thinks he should have bought her flowers.,She found a text on his phone from another woman.,1,Why is Lily upset with Marshall after he apologizes?,132334,How I Met You Mother,0-14.31,met_s06e01_seg02_clip_08,He tells his dad too much. 10296,Blue.,Purple.,Orange.,Green.,Gray.,2,What color couch is Chandler sitting on when teasing Joey?,132335,Friends,0-9.28,friends_s07e17_seg02_clip_08,Orange. 10297,anxious,happy,bored,tired,elated,0,How did Marshall feel when he was waiting for the exam results?,132336,How I Met You Mother,0-13.65,met_s03e08_seg02_clip_01,anxious 10298,To his mom's house.,To NYC.,To Chicago.,They're going to NJ.,To California.,2,Where is Ted taking Marshall when in the car?,132337,How I Met You Mother,50.42-60.03,met_s05e05_seg02_clip_08,To Chicago. 10299,Foreman,Wilson,Kutner,Taub,Cuddy,1,Who does House call to prove to the patient he has cancer after he says he need proof?,132338,House M.D.,10.24-45.4,house_s05e09_seg02_clip_15,Wilson 10300,Nick told House he got hurt fixing books in the library ,Nick told House he got hurt slipping on some water,Nick told House he got hurt by hitting his arm on the railing,Nick told House he got hurt cleaning the dining area,Nick told House he got hurt by bumped into the wall ,4,How did Nick say he got hurt after House asked him who hit him,132339,House M.D.,24.76-32.86,house_s08e01_seg02_clip_10,Nick told House he got hurt by bumped into the wall 10301,Broda said the results would be back in 24 hours,Broda said the results would be back in 7 hours,Broda said the results would be back in 12 hours,Broda said the results would be back in 8 hours,Broda said the results would be back in 11 hours,3,How long did Broda say it would take to get the results back before he left the room,132340,House M.D.,10.56-22.01,house_s07e07_seg02_clip_13,Broda said the results would be back in 8 hours 10302,Chandler knows that Gary's heart lies with Monica.,Chandler complains that Phoebe is not nice.,Chandler knows that Phoebe will break up with Gary.,Chandler tells Gary that Phoebe will be there all the time.,Chandler thinks Gary will fall in love with Phoebe.,3,Why does Chandler want to open Gary's eyes when they are talking about Phoebe?,132341,Friends,9.15-18.59,friends_s05e21_seg02_clip_04,Chandler tells Gary that Phoebe will be there all the time. 10303,Castle tells Beckett to run.,Castle tells Beckett to stay here.,Castle tells Beckett he loves her.,Castle tells Beckett he will be coming back.,Castle tells Beckett she is an idiot.,1,What does Castle tell Beckett after he shines a light on her?,132342,Castle,0-7.63,castle_s04e16_seg02_clip_01,Castle tells Beckett to stay here. 10304,50 dollers,300 dollers,100 dollers,500 dollers,200 dollers,1,how much did joey say the ad cost after chandler said he was insane?,132343,Friends,23.11-31.21,friends_s04e02_seg02_clip_03,300 dollers 10305,Chief doctor.,Cristina.,Derek.,Bailey.,Alex.,4,Who call George shouting his name when taking care of Joe?,132344,Grey's Anatomy,15.77-18.68,grey_s02e01_seg02_clip_23,Alex. 10306,Lily said that she labeled the box with the name Bill Cosby. ,Lily said that she labeled the box with the words Ted's weird sweaters.,Lily said that she labeled the box with the words ugly sweaters.,Lily said that she labeled the box with the words please donate.,Lily said that she labeled the box with the words trash.,0,What did Lily say she labeled Ted's box of colorful sweaters as when she handed him the box?,132345,How I Met You Mother,4.58-13.12,met_s02e18_seg02_clip_00,Lily said that she labeled the box with the name Bill Cosby. 10307,Luisa said Rachel was a bitch.,Luisa said Rachel was a crybaby.,Luisa said Rachel was a hot momma.,Luisa said Rachel was a loser.,Luisa said Rachel was a fashionista.,0,What did Luisa say Rachel was after saying Monica used to be fat?,132346,Friends,22.28-32.65,friends_s01e19_seg02_clip_12,Luisa said Rachel was a bitch. 10308,41,37,39,43,45,2,Hold old did Sean's wife say she was after she voiced her concerns about possibly miscarrying?,132347,House M.D.,21.86-33.02,house_s01e18_seg02_clip_00,39 10309,He needs to go to the bathroom.,That he needs to take a nap.,That he has something for him.,He is going to get something to eat.,The boat is sinking.,2,What does the Captain tell Ted before he goes down into the boat?,132348,How I Met You Mother,0-2.4,met_s06e11_seg02_clip_13,That he has something for him. 10310,Behind Anya's chair,Near the table,In the doorway,On the opposite side of a two way mirror,By the window.,4,Where was Kate standing when she began to question Anya in the interrogation room?,132349,Castle,69.07-77.25,castle_s08e11_seg02_clip_23,By the window. 10311,Hastings thought the piece could help her figure out who was behind the crime. ,Hastings was a collector and knew the piece had value. ,Hastings was a kleptomaniac. ,"Beckett wanted the piece, so Hastings took it to annoy her. ",Hastings had had a piece like that when she was a young girl. ,0,What was Hastings' reason when she took the piece from the suit? ,132350,Castle,6.86-13.72,castle_s04e02_seg02_clip_23,Hastings thought the piece could help her figure out who was behind the crime. 10312,Find the murderer.,"Well sheriff, have nother drink.",You don't know nothing.,You are a shame sheriff.,No sheriff she was already dead.,4,"What Beckett correct the Sherif after he said, she only was missing back then?",132351,Castle,0.9-5.4,castle_s01e05_seg02_clip_08,No sheriff she was already dead. 10313,Window,Coffee,Blank wall, computer screen,Door,3,What are Beckett Castle and Lanie talking in front of when they are at the precinct?,132352,Castle,33.7-37.34,castle_s04e03_seg02_clip_18, computer screen 10314,In a locker room,In the operating room,In the cafeteria,In the hallway,At a restaurant,0,Where are Derek and George when they are talking?,132353,Grey's Anatomy,12.42-92.03,grey_s03e01_seg02_clip_17,In a locker room 10315,Bob liked Maria.,Bob wanted to help Maria on tests.,Bob liked how Maria smelled.,Bob wanted to get to know Maria better.,Bob wanted to cheat off of Maria's work.,4,Why did Bob sit behind Maria when they were in a ninth grade Earth science class?,132354,House M.D.,13.43-16.6,house_s02e15_seg02_clip_18,Bob wanted to cheat off of Maria's work. 10316,go out ,kick you,get out,back,Go away,4,what last words did Rachel say with Ross when he stayed from outdoor,132355,Friends,0-58.02,friends_s02e08_seg02_clip_14,Go away 10317,To poop.,To get drinks.,"To avoid ""full disclosure.""",To have a smoke.,To pay for lunch,2,Why does Ted's mom leave when Ted asks about his granny?,132356,How I Met You Mother,14.6-25.07,met_s02e03_seg02_clip_19,"To avoid ""full disclosure.""" 10318,To remove wine.,Because Ted spilled beer on her cheek.,To remove food particles.,Because Ted spat on her cheek.,Because Ted touched her face.,3,Why did Lily wipe her cheek after Ted told them that watching the game is special?,132357,How I Met You Mother,20.87-28.43,met_s02e14_seg02_clip_03,Because Ted spat on her cheek. 10319,Soldering a circuit board,Wrapping foil around a cylinder,Looking into a microscope,Filling a test tube,Looking through some files,1,What is Bernadette doing when Raj comes in the room with her and Penny?,132358,The Big Bang Theory,0-6.42,s09e19_seg02_clip_07,Wrapping foil around a cylinder 10320,a cellphone ,a pen ,A paper document ,a gun ,a towel ,2,What did cuddy gave to house after he entered the room ,132359,House M.D.,69.09-77.67,house_s05e06_seg02_clip_12,A paper document 10321,his coat,his gun,a hug,a beer,money,0,what does Weldon says he will do give to them when they are talking?,132360,Castle,17.81-91.36,castle_s04e12_seg02_clip_20,his coat 10322,cleaning,sleeping,taking a shower,Using the bathroom,laughing,3,What was Dr. Burke doing before Meredith walked in?,132361,Grey's Anatomy,15.18-18.41,grey_s01e03_seg02_clip_09,Using the bathroom 10323,House is showing itt to Wilson,House is showing it to a team of doctors,House is showing it to a patient,House is showing it to Foreman,House is showing it to Cuddy,2,Who is House showing the surgical tool to when he is testing it out on Cameron?,132362,House M.D.,16.91-20.48,house_s02e24_seg02_clip_22,House is showing it to a patient 10324,On the arm of the sofa,On the floor,On the chair next to the couch,She's standing near the couch,She's standing near the bar,0,"Where is Phoebe sitting when Monica, Rachel, and Chandler are talking at Central Perk?",132363,Friends,0-3.99,friends_s03e03_seg02_clip_10,On the arm of the sofa 10325,Flu,tentus,HIV,syphilis,common cold ,3,What did Taub test House's patient with before House entered the room? ,132364,House M.D.,0-13.12,house_s08e06_seg02_clip_23,syphilis 10326,camp fire,hot tub,easy bake oven,computer,tv,1,"What was Amy, Penny and Bernadette sitting around when Amy was reading a text on her phone?",132365,The Big Bang Theory,0-9.81,s09e16_seg02_clip_11,hot tub 10327,Bailey had succumb to her depression.,Bailey had a change of heart.,Bailey had a baby.,Bailey had adopted a child.,Bailey had filed for divorce.,2,What did Bailey have when she thought she went soft?,132366,Grey's Anatomy,81.63-90.7,grey_s03e02_seg02_clip_25,Bailey had a baby. 10328,Stage,Pole,Him,Segway ,TV,3,What does Castle say the woman would look good on after saying what new job she might have to get?,132367,Castle,35.95-42.78,castle_s06e04_seg02_clip_00,Segway 10329,joey says he saw ross kissing charlie,joey says he always had the hots for rachel,joey says he used to be gay,joey says he's trying to get back at his girlfriend,joey says he just wants to have fun,0,what does joey say when asked what changed? ,132368,Friends,5.41-14.01,friends_s10e01_seg02_clip_00,joey says he saw ross kissing charlie 10330,One,Three,Four,Two,Six,3,How many chairs were at the kitchen table when Beckett was stranding at the end of the counter,132369,Castle,86.95-89.8,castle_s05e22_seg02_clip_08,Two 10331,Binoculars.,A telescope.,A phone.,A flashlight.,A speaker.,0,What is Ross using when he is looking out the window?,132370,Friends,20.75-30.21,friends_s05e14_seg02_clip_10,Binoculars. 10332,Got up from the table,Took off his jacket,High fived Ted,Called his boss,Ate some onion rings,0,What did Barney do after Marshall told the waitress to stop selling?,132371,How I Met You Mother,44.84-53.57,met_s03e07_seg02_clip_03,Got up from the table 10333,Carnell is pouring milk.,Carnell is pouring juice.,Carnell is pouring champagne.,Carnell is pouring salt.,Carnell is pouring coffee.,4,What is Carnell pouring when House is speaking to him?,132372,House M.D.,0-3.62,house_s07e16_seg02_clip_01,Carnell is pouring coffee. 10334,Ross's apartment had a weird smell.,Ross's apartment had too much clutter.,Ross's mother was staying at his apartment.,Cheryl needed to stay home to search for Mitzi.,Cheryl's apartment was more cozy than Ross's.,0,Why did Cheryl object when Ross invited her to his apartment?,132373,Friends,29.71-49.22,friends_s04e06_seg02_clip_05,Ross's apartment had a weird smell. 10335,space suits,clown suits,regular clothes,western attire,indian costumes,3,what are castle and becket wearing when they are questioning the bartender?,132374,Castle,14.39-23.38,castle_s07e07_seg02_clip_19,western attire 10336,House left because he had a patient,House left the break room because the man with the purple tie that walked in told House they have to talk,"House left because, he did not want to talk anymore",House left because he was tired,House did not leave,1,Why did House leave the break room after he was talking to Foreman and Chase?,132375,House M.D.,80.8-86.24,house_s01e18_seg02_clip_05,House left the break room because the man with the purple tie that walked in told House they have to talk 10337,She was looking in her purse.,She was eating.,She was going through some papers.,She was counting her money.,She was looking at the cab driver.,4,What was Thirteen doing before she answered the phone?,132376,House M.D.,0-2.25,house_s06e04_seg02_clip_07,She was looking at the cab driver. 10338,House says the blood in the lungs.,House says the coughing,House says high blood pressure,House says the bloody stool ,House says the bloody urine ,2,Which symptom does House say Cameron has to treat first before the patient starts circling the drain?,132377,House M.D.,0-18.55,house_s01e03_seg02_clip_01,House says high blood pressure 10339,"""Man""","""Joey""","""Tribbiani""","""Buddy""","""Friend""",2,What did Mr. Treeger call Joey after they practiced dancing?,132378,Friends,8.26-11.4,friends_s04e04_seg02_clip_18,"""Tribbiani""" 10340,sat down,walked away,checked watch,made a call,stood up,4,What did Castle do after he started talking?,132379,Castle,0-9.36,castle_s06e08_seg02_clip_11,stood up 10341,Leonard goes to the bathroom,Leonard goes and sits in a wooden chair,Leonard goes to the kitchen sink,Leonard falls out on the floor,Leonard starts crying into a pillow,1,What does Leonard do after he leaves from in front of the computer ,132380,The Big Bang Theory,18.28-27.74,s02e18_seg02_clip_12,Leonard goes and sits in a wooden chair 10342,Security tape footage,A witness saw him,Cell phone footage,His DNA was found at the scene of the crime,The other band members said that was his intention,1,What did Beckett say was the evidence against Keith when she was interrogating him?,132381,Castle,55.31-67.29,castle_s05e07_seg02_clip_14,A witness saw him 10343,A picture of the crime scene,A case file,A picture of a man,A picture of his car,A book,2,What does Beckett show Derek when she sits down?,132382,Castle,82.73-90.91,castle_s07e19_seg02_clip_06,A picture of a man 10344,chips,popcorn,candy,salad,noodles,1,What is Bernadette pouring into the yellow bowl when Penny is pouring the last of the wine into her glass?,132383,The Big Bang Theory,26.01-31.54,s05e10_seg02_clip_02,popcorn 10345,She has two brains.,She does not have a brain.,She does not have vasacular pathology.,She should be blind.,She is missing her frontal lobe.,2,What did Chase find on the computer screen after Sister Augustine's scan?,132384,House M.D.,31.5-55.01,house_s01e05_seg02_clip_05,She does not have vasacular pathology. 10346,He runs out of the room.,He says they will never prove he did anything.,He screams.,He asks for a drink.,He takes full responsibility.,4,How does Dwight react when Beckett and Castle enter the interrogation room?,132385,Castle,19.91-25.35,castle_s06e16_seg02_clip_13,He takes full responsibility. 10347,Himself,A young girl,A ballerina,A man in an apartment,Chandler,3,Who does Joey dance with after leaving the coffee shop?,132386,Friends,32.41-42.92,friends_s04e04_seg02_clip_11,A man in an apartment 10348,Phoebe and Rachael,Chandler,Joey,Richard,Ross,0,Who forgot to tell Monica to come to her own party when Rachael and Phoebe were talking?,132387,Friends,15.31-22.81,friends_s07e19_seg02_clip_13,Phoebe and Rachael 10349,On the wooden kitchen table with no coaster,On the edge of the sofa starting to spill,Open in the fridge with no lid.,On the coffee table without a coaster,on the bathroom sink,3,Where does Chandler say someone might have left a glass when they are teasing Monica?,132388,Friends,10.07-28.07,friends_s01e06_seg02_clip_11,On the coffee table without a coaster 10350,Phoebe's arm is resting on a chair arm.,Phoebe's arm is resting on Chandler.,Phoebe's arm is resting on a pillow.,Phoebe's arm is resting on a table.,Phoebe's arm is resting on Joey.,3,What is Phoebe 's arm resting on when she is sitting in a hospital bed ?,132389,Friends,0-2.97,friends_s06e15-16_seg02_clip_22,Phoebe's arm is resting on a table. 10351,Dating him instead of Leonard ,Fixing him up ,Going shopping with him ,Letting him crash at her apartment,Loaning him money,1,What does Howard want Leonard to ask Penny about when he sits down at the table?,132390,The Big Bang Theory,48.98-64.02,s03e05_seg02_clip_00,Fixing him up 10352,Sheldon tried to contact Lavar using Facebook.,Sheldon tried to call Lavar's phone number?,Sheldon sent Lavar a email over the internet.,Sheldon sent Lavar mail through the post office.,Sheldon tweeted Lavar Burton over the internet.,4,What did Sheldon do when he tried to contact Lavar Burton?,132391,The Big Bang Theory,35.72-37.84,s04e17_seg02_clip_05,Sheldon tweeted Lavar Burton over the internet. 10353,Joey told Cathy that he doesn't like to give people his keys.,Joey told Cathy that she can pee here. ,Joey told Cathy that he doesn't like people to be alone in his apartment.,Joey told Cathy that the duck is using the bathroom.,Joey told Cathy that she should be more comfortable around his friends.,1,What did Joey say after Cathy whispered the reason that she needed to borrow his keys into his ear?,132392,Friends,27.61-37.82,friends_s04e06_seg02_clip_02,Joey told Cathy that she can pee here. 10354,Assorted pastries,A chocolate cake,A pie,A loaf of bread,Cookies,0,What is on the cake plate sitting on the bar when Ross was telling Chandler he respectfully disagreed?,132393,Friends,50.9-57.63,friends_s09e17_seg02_clip_02,Assorted pastries 10355,blue,White,red,grey,black,1,"What color is Cameron's shirt when she say's ""...are wwe on this...""?",132394,House M.D.,0-9.68,house_s01e10_seg02_clip_11,White 10356,Because Sheldon was nervous around Penny.,Because Sheldon was trying to get some sleep.,Because Sheldon did not like Penny being around him.,Because Sheldon was bored by Penny's presence.,Because Sheldon wanted to spend time with someone else.,1,Why was Sheldon trying to make Penny leave when Penny was his room?,132395,The Big Bang Theory,0.61-3.95,s02e03_seg02_clip_06,Because Sheldon was trying to get some sleep. 10357,She is going to the crime scene,She is going over witness testimonies,She is going over DNA samples,She is examining suspects,She is going to the hairdresser,3,What is Beckett doing before Castle walks in?,132396,Castle,24.83-33.41,castle_s07e03_seg02_clip_09,She is examining suspects 10358,House,Adams,Foreman,Chase,Wilson,1,Which doctor was treating the patient when he or she was in the patient room?,132397,House M.D.,53.37-69.86,house_s08e04_seg02_clip_20,Adams 10359,She pulled a gun on him.,She was his ex girlfriend.,She hit him,She took out handcuffs.,She said she was a cop,4,Why did Seth take off running after Beckett approached him? ,132398,Castle,49.69-72.7,castle_s04e04_seg02_clip_07,She said she was a cop 10360,he had a coffee cup in his hand,he had a knife in his hand,he had a pen in his hand,he had a phone in his hand,he didnt have anything in his hand,0,What did the doctor have in his hand when cristina asked the guy with him if its over?,132399,Grey's Anatomy,37.78-45.06,grey_s01e04_seg02_clip_08,he had a coffee cup in his hand 10361,Not visible anywhere in the scene,On the microwave,Sitting on the couch,On the kitchen counter in front of each of them,On the dining room table,3,Where is the phone when Chandler and Joey are discussing errors in judgement?,132400,Friends,0-59.4,friends_s06e20_seg02_clip_10,On the kitchen counter in front of each of them 10362,after,after,after,after,before,4,Did Joey walk into the room before or after Chandler?,132401,Friends,17.72-21.14,friends_s03e03_seg02_clip_00,before 10363,2,1,3,5,10,2,How many people are wearing white lab coats when Miranda is giving her speech?,132402,Grey's Anatomy,24.12-91.03,grey_s03e13_seg02_clip_22,3 10364,she was making food at the stove,she was sweeping the floor with a broom,she was sitting down,she was pouring herself a drink,she wasnt doing anything just standing there,1,what was brenda doing when monica was talking to her,132403,Friends,42.18-50.55,friends_s08e07_seg02_clip_09,she was sweeping the floor with a broom 10365,Amy is worried about her lab monkeys. ,Amy is ready to go out. ,Amy is ready to have fun with Sheldon. ,Amy is worried about Sheldon. ,Amy is ill. ,4,Why does Amy look like that when she answers the door?,132404,The Big Bang Theory,10.15-15.41,s06e10_seg02_clip_00,Amy is ill. 10366,Tyler says he was at the bank,Tyler says he was at the store,Tyler says he was at the hospital,Tyler says he was at the mall,Tyler says he was at the bakery,2,Where does Tyler say he was after Beckett asks him where he was last night?,132405,Castle,8.11-14.42,castle_s02e16_seg02_clip_05,Tyler says he was at the hospital 10367,She is reading a book. ,She is eating lunch.,She is talking to her mom.,She is washing her hands. ,She is looking at her cellphone.,4,What is Beckett doing when she is talking to Castle?,132406,Castle,0-3.64,castle_s05e15_seg02_clip_17,She is looking at her cellphone. 10368,Bar,Kitchen,Living room,Bedroom,Restaurant,2,Where are Amy and Penny when they are playing a video game?,132407,The Big Bang Theory,4.95-18.9,s07e11_seg01_clip_00,Living room 10369,Zoey,Barney,Robin,Lily,Marshall,0,Who does Ted make cry when he's at the shindig?,132408,How I Met You Mother,23.81-37.33,met_s06e08_seg02_clip_05,Zoey 10370,In his pocket.,On the floor.,On the counter.,On the table.,On the microwave.,3,Where does Leonard put his glasses before Penny said something about cleaning pans?,132409,The Big Bang Theory,14.71-21.71,s06e04_seg02_clip_16,On the table. 10371,Cuddy has a problem with the amount of people in the room because House does not have enough attendees.,Cuddy has a problem with the amount of people in the room because House is keeping them from doing their jobs.,Cuddy has a problem with the amount of people in the room because House brought them in off the street.,Cuddy has a problem with the amount of people in the room because Cuddy needs the conference room for a more important meeting.,Cuddy has a problem with the amount of people in the room because House is only allowed to hire three.,4,Why does Cuddy say she has a problem with the number of people in the room after she stops House's speech?,132410,House M.D.,72.7-92.03,house_s04e02_seg02_clip_00,Cuddy has a problem with the amount of people in the room because House is only allowed to hire three. 10372,"Yeah, um... You're Sam Gibbs.",I here to sell Girl Scout cookies.,"Hi, do you know my mom?",Can you give me directions?,May I use your phone?,0,What did James say after Sam Gibbs asked if he could help him?,132411,How I Met You Mother,1.06-6.1,met_s06e02_seg02_clip_11,"Yeah, um... You're Sam Gibbs." 10373,In a hospital room,At a bar,At church,In the coffee shop,At the park,0,Where do Janice and Rachel appear to be when they are discussing their babies and their relationships with their fathers?,132412,Friends,10.49-25.93,friends_s08e23-24_seg02_clip_40,In a hospital room 10374,so what!,Where is the proof?,No it's not,Not double-blind studies.,do you always have to say that?,3,What did Toby say after Sheldon said there have been studies?,132413,The Big Bang Theory,0-40.27,s01e10_seg02_clip_14,Not double-blind studies. 10375,Joey says he has many best friends.,Joey says he doesn't have many friends.,Joey says he has many close friends but no best friend.,Joey says Ross is his best friend.,Joey tells the reporter she is his best friend.,2,How does Joey respond when the reporter asks about his friends?,132414,Friends,20.6-26.98,friends_s08e19_seg02_clip_13,Joey says he has many close friends but no best friend. 10376,Because it was too late,Because he wanted to make Leonard look stupid,Because he didn't want to drive home,Because he had something to prove,Because he wanted to inconvenience Leonard,3,Why did Sheldon refuse to call off the competition after Leonard spoke to Kripke,132415,The Big Bang Theory,0-22.06,s02e12_seg02_clip_14,Because he had something to prove 10377,City Council,Church,Highschool,College,Work,4,Where did Chandler know Zach from when he was introducing him to Monica?,132416,Friends,56.3-62.21,friends_s09e22_seg02_clip_07,Work 10378,His mom.,Marshall.,Lily.,Barney.,Himself.,1,Who is Ted angry with when talking to Stella?,132417,How I Met You Mother,0-11.1,met_s03e13_seg02_clip_13,Marshall. 10379,ten,one,zero,two,five,3,How many messages were on the answering machine when the gang got back?,132418,Friends,14.8-19.63,friends_s09e18_seg02_clip_11,two 10380,A phone.,A report.,A pen.,A mug.,A tablet.,1,What did Gates handed to Beckett after she said that she will release Adam Lane's name and picture to the media?,132419,Castle,37.78-43.24,castle_s07e05_seg02_clip_17,A report. 10381,Ellis is beside herself. ,Ellis is nervous. ,Ellis is anxious. ,Ellis is depressed. ,Ellis is happy. ,4,How does Ellis feel when Richard tells her about the life they would've shared together?,132420,Grey's Anatomy,54.34-80.51,grey_s03e14_seg02_clip_25,Ellis is happy. 10382,Spit is on her lip.,Lipstick is on her lip.,A little Barney is on her lip.,Milk is on her lip.,Pizza sauce is on her lip.,2,What is on Stacy's lip when Ted starts to kiss her ?,132421,How I Met You Mother,12.71-15.44,met_s03e04_seg02_clip_12,A little Barney is on her lip. 10383,She says she is not going down without a fight,She says she is not going anywhere with him without a fight,She says she is not going in the furnace without a fight,She says she is not going in the elevator with him without a fight,She says she is not going into the alley with him without a fight,2,Where does Beckett tell Mason she is not going without a fight when he has the gun on her?,132422,Castle,43.86-51.71,castle_s08e22_seg02_clip_24,She says she is not going in the furnace without a fight 10384,"Wilson said it was weird, there's nothing funnier than having a clown in the ER.","Wilson said that was weird, because there's nothing funnier than almost killing a guy.",Wilson thought it was weird because there's nothing funnier than juggling two women at the same time.,"Wilson mentioned it was weird, but there's nothing funnier than getting House tongue-tied.","Wilson mumbled it was weird, but there's nothing funnier than being House's best friend.",1,"When House told Wilson about the first casualty of the case, after that what did Wilson say was weird and nothing funnier than?",132423,House M.D.,2.73-5.92,house_s02e03_seg02_clip_03,"Wilson said that was weird, because there's nothing funnier than almost killing a guy." 10385,Ross and Julie have been traveling 24 hours.,Ross and Julie have been traveling 30 hours.,Ross and Julie have been traveling 20 hours.,Ross and Julie have been traveling 12 hours.,Ross and Julie have been traveling 36 hours.,2,How long have Ross and Julie been traveling before meeting Ross' friends?,132424,Friends,0-20.78,friends_s02e01_seg02_clip_03,Ross and Julie have been traveling 20 hours. 10386,Penny.,Leonard.,Howard.,Raj.,Amy.,3,Who is Sheldon attempting to prank when he puts a snake in someone's desk?,132425,The Big Bang Theory,14.9-27.55,s05e07_seg02_clip_05,Raj. 10387,Ross thinks Elizabeth was about to ask him to go to a restaurant,Ross thinks Elizabeth was about to ask him to go to college,Ross thinks Elizabeth was about to ask him to go on a trip with her.,Ross thinks Elizabeth was about to ask him to go to the movies.,Ross thinks Elizabeth was about to ask him to go meet her mother.,2,Where does Ross think Elizabeth is about to ask him when he discusses Elizabeth with Chandler?,132426,Friends,16.39-23.01,friends_s06e19_seg02_clip_06,Ross thinks Elizabeth was about to ask him to go on a trip with her. 10388,tv,coat,basketball,paper,phone,2,What was Chandler holding before he walked in?,132427,Friends,0-8.64,friends_s03e18_seg02_clip_09,basketball 10389,She hates being on camera. ,She thinks they will compromise the investigation. ,She thinks it is an invasion of her privacy. ,She is afraid everyone will find out about her and Castle being together. ,She doesn't want them to find out that she is pregnant before she tells Castle. ,1,Why does Beckett tell Gates she doesn't want to work with the camera crew after gates tells her that she has to?,132428,Castle,10.44-17.71,castle_s05e07_seg02_clip_04,She thinks they will compromise the investigation. 10390,Howard was cleaning a microwave.,Howard was cleaning a oven.,Howard was cleaning the refrigerator.,Howard was cleaning the kitchen counter.,Howard was cleaning the kitchen shelves.,1,What was Howard cleaning when he was on the floor?,132429,The Big Bang Theory,7.13-10.23,s08e23_seg02_clip_11,Howard was cleaning a oven. 10391,Yvonne is standing next to the patient in the bed.,Yvonne is standing outside.,Yvonne is standing in the bathroom.,Yvonne is standing in the waiting room.,Yvonne is standing with her daughter.,0,Where is Yvonne standing when she receives a phone call?,132430,Grey's Anatomy,10.05-12.68,grey_s02e06_seg02_clip_03,Yvonne is standing next to the patient in the bed. 10392,fork,computer,divider,lamp,screenprotector,3,"What is the silver item between the sitting couple, on the desk, when they turn to Esposito?",132431,Castle,0-9.58,castle_s02e12_seg02_clip_21,lamp 10393, a pink shirt,a blue shirt,an orange shirt,a green shirt,a grey shirt,3,What is Marshall wearing when he is on the couch?,132432,How I Met You Mother,57.98-60.99,met_s05e02_seg02_clip_02,a green shirt 10394,House say it is important because you can see how the talk,House say it is important because you get a since of who they are,House say it is important because you see how they react,House say it is important because you gotta know who you're getting in bed with,House say it is important because you can see how they laugh,3,Why is face-to-face interview so important when House stated this?,132433,House M.D.,3.69-7.84,house_s02e23_seg02_clip_20,House say it is important because you gotta know who you're getting in bed with 10395,Sheldon calls it a Star Trek documentary.,Sheldon calls it a Spockumentary.,Sheldon calls it a Nimoy documentary.,Sheldon calls it a Trek To Know Mr. Spock.,Sheldon calls it an All Ears Documentary.,1,What does Sheldon call a documentary on Mr. Spock when he's leaving a message for Amy?,132434,The Big Bang Theory,11.97-19.85,s09e07_seg02_clip_01,Sheldon calls it a Spockumentary. 10396,Ross was standing in front of the refrigerator near the table.,Ross was standing by the oven.,Ross was standing near the couch.,Ross was standing on the table.,Ross was standing in the bathroom.,0,Where was Ross standing after Luisa left the room?,132435,Friends,47.91-55.54,friends_s01e19_seg02_clip_12,Ross was standing in front of the refrigerator near the table. 10397,Because Masters' patient is very sick,Because Masters is having boyfriend trouble,Because Masters does not like House,Because today is Masters' last day as a student,Because Masters wants to quit,3,Why does Masters need advice so quickly when talking to Cuddy?,132436,House M.D.,68.48-80.57,house_s07e19_seg02_clip_02,Because today is Masters' last day as a student 10398,Because Penny is scared.,Because Penny is old.,Because Penny is rude.,Because Penny is nice.,Because Penny is young.,4,Why does Penny tell Leonard to leave when they are at the restaurant?,132437,The Big Bang Theory,34.05-38.65,s09e15_seg02_clip_07,Because Penny is young. 10399,Sheldon thinks that Amy is testing him. ,Sheldon thinks that Amy is hazing him. ,Sheldon thinks that Amy is tough loving him. ,Sheldon thinks that Amy is being fair. ,Sheldon thinks that Amy is being a good boss. ,1,How does Sheldon react after Amy tells him to wash beakers?,132438,The Big Bang Theory,8.56-19.49,s05e16_seg02_clip_07,Sheldon thinks that Amy is hazing him. 10400,The medicine man,The pharmacist,The clinic,The doctor,The orthodontist ,3,Where did Cole say he needed to go after he mentioned his pain?,132439,Castle,52.88-59.05,castle_s07e13_seg02_clip_02,The doctor 10401,coffe is too bad,Good,Nothing,Because he want him and Joey stand up to those guys,good girls,3,"Why did not Ross want cappucino with a ""K"" when he said with Joey ",132440,Friends,0-52.24,friends_s02e21_seg02_clip_12,Because he want him and Joey stand up to those guys 10402,Euphoric.,Dizzy.,Aroused.,Ashamed.,Happy.,1,How do Sheldon and Penny feel after they spun around the carpet with their light sabers?,132441,The Big Bang Theory,40.65-52.94,s06e04_seg02_clip_12,Dizzy. 10403,They make Leonard take her. ,They make Sheldon take her. ,They make Raj do it. ,They make Penny do it. ,They make Penny's mom do it. ,1,Who does Bernadette and Howard make take Howard's mom shopping when they don't want to?,132442,The Big Bang Theory,25.38-36.89,s05e21_seg02_clip_10,They make Sheldon take her. 10404,Howard was looking out of the window. ,Howard was kneeling by the bed.,Howard was painting the wall.,Howard was washing clothes.,Howard was hanging the TV on the wall. ,1,Where was Howard when Bernadette asked him about making the room a woman cave?,132443,The Big Bang Theory,7.2-18.61,s09e12_seg02_clip_09,Howard was kneeling by the bed. 10405,The doctor bought groceries the weekend.,The doctor bought cookies 20 blocks from her apartment.,The doctor bought coffee 20 blocks from her apartment.,The doctor bought nuts after midnight.,The doctor sold a laptop.,2,What interesting clue found Esposito after reading the information about the doctor?,132444,Castle,5.28-13.64,castle_s03e05_seg02_clip_03,The doctor bought coffee 20 blocks from her apartment. 10406,The cheesecake factory,The laboratory ,The movie theatre,Their apartment,The comic book store,2,"Where are Leonard, Howard and Raj when Leonard answers his phone?",132445,The Big Bang Theory,26.79-33.72,s01e11_seg02_clip_08,The movie theatre 10407,The fire chief,Mr. Anders,Beckett,Castle,Mrs. Talbot,4,Who did the Manager say Eliska had an incident with before she was let go?,132446,Castle,26.06-37.98,castle_s02e05_seg02_clip_07,Mrs. Talbot 10408,flask,wine bottle,wine glass,beer bottle,vodka bottle,0,What does Lily take a drink from before Marshall says lawyered?,132447,How I Met You Mother,7.5-14.41,met_s06e14_seg02_clip_12,flask 10409,He says they need to stage the disease if it is confirmed,He says they may need to take more samples for biopsy,He says they may need to take out the patient's spleen,He says he wants to look around a little more while they are in there,He says House is coming in the operating room in a minute and wants to look,0,Why does Foreman ask the surgeon to keep the patient open when he goes to examine the tissue?,132448,House M.D.,0-10.76,house_s03e13_seg02_clip_18,He says they need to stage the disease if it is confirmed 10410,Jessicas body was gone.,Jessicas body wasn't in good enough condition. ,They don't have the skill set to perform such a procedure. ,Jessicas body didn't need the procedure. ,They didn't have enough time to complete the procedure. ,0,Why does Joey's co-star claim he and Joey (as Dr. Ramoray) can't extract tissues from Jessica's body after they tried to exhume her body?,132449,Friends,0-18.14,friends_s08e05_seg02_clip_02,Jessicas body was gone. 10411,Wilson wanted House to stop setting up pranks around Wilson's apartment.,Wilson wanted to anger House to win a bet with Foreman and Chase.,Wilson wanted to prevent House from harassing Cameron about Wilson.,Wilson wanted to win House's tickets to the House of Blues concert.,Wilson wanted to surrender to House with proof of Cuddy's negative results.,4,Why did Wilson present House with Cuddy's results when admitting to a date? ,132450,House M.D.,2.57-10.3,house_s02e22_seg02_clip_21,Wilson wanted to surrender to House with proof of Cuddy's negative results. 10412,Five.,Ten.,One thousand.,Twenty.,Five hundred.,2,How many apartments does Ross claim he's looked at this month when talking to everyone?,132451,Friends,24.72-34.18,friends_s05e14_seg02_clip_10,One thousand. 10413,being married,taking steroids,having muscle fatigue,a childhood surgery,a cocain addiction,1,What does House think Hank is lying about when he is talking to the man in the bed?,132452,House M.D.,1.36-24.4,house_s01e12_seg02_clip_08,taking steroids 10414,He gets up from the table and leaves her.,He puts his hand up to signal the waiter.,He leans over to her and asks if it was something he said.,"He leaned over and asked Rachel, was it his breath?",He asks Rachel if she had a good time tonight.,1,What does Rachel's date do after she tells someone on the phone she is over them and has closure?,132453,Friends,7.97-14.76,friends_s04e21_seg02_clip_13,He puts his hand up to signal the waiter. 10415,Took off his jacket,Take off his ty,Took off a necklace,Spit out a piece of fruit,Took a sip of water,1,What did Joey do before he told Chandler that it hurts his Joey apple?,132454,Friends,29.81-39.25,friends_s07e14_seg02_clip_03,Take off his ty 10416,Chandler is standing by the door.,Chandler is standing by the window.,Chandler is standing in the kitchen beside the table.,Chandler is standing by the television.,Chandler is standing by the stove.,2,Where is Chandler standing when telling Ross and Rachel about his conversation with Janice?,132455,Friends,16.6-24.74,friends_s03e03_seg02_clip_04,Chandler is standing in the kitchen beside the table. 10417,Leonard was supposed to buy Thai food for the whole group.,Bernadette wants him to try their food instead of Thai food.,Bernadette had already bought Thai food.,Bernadette made him Thai food from scratch. ,The group had already eaten before Sheldon got there.,3,Why is Bernadette upset after Sheldon tells her he brought his own Thai food?,132456,The Big Bang Theory,12.05-29.69,s06e19_seg01_clip_01,Bernadette made him Thai food from scratch. 10418,A piece of lint.,A cellphone.,His wallet.,A piece of paper.,A notepad and pen.,3,What is the first thing Castle pulls out of his pocket after exiting the car?,132457,Castle,58.29-65.5,castle_s08e12_seg02_clip_01,A piece of paper. 10419,Castle did the accusing not beckett,Fletcher ran away,Fletcher cheated on Elise,Beckett ran away with Elise,Beckett accused Fletcher of being a con-man,4,Why is Elise upset after Beckett arrives at her house?,132458,Castle,14.26-46.01,castle_s02e04_seg02_clip_08,Beckett accused Fletcher of being a con-man 10420,A magazine.,A dog.,A sandwich.,A alarm clock,A magic wand.,0,What is in Sheldons hands when he is talking about magic?,132459,The Big Bang Theory,4.06-6.09,s05e12_seg01_clip_01,A magazine. 10421,The Indian restaurant.,Jake's Sandwich shop.,Luigi's Italian place.,The Tai place.,Paul's cafe.,4,What restaurant does Rachel recommend to Joey when he ask her for one to take his date to?,132460,Friends,30.08-36.29,friends_s08e12_seg02_clip_00,Paul's cafe. 10422,He wrote it just then,He wrote it in junior high,He wrote it in medical school,He wrote it in the last month,He wrote it last year,1,When did House write the piano piece he was playing when Wilson walked in the room?,132461,House M.D.,28.31-35.49,house_s03e15_seg02_clip_08,He wrote it in junior high 10423,Marshall.,Lily.,The manager.,Ted.,Robin.,1,Who does Barney consult when attempting to win the argument?,132462,How I Met You Mother,8.47-20.44,met_s03e09_seg02_clip_02,Lily. 10424,Raj is looking for a friend.,Raj is looking for a guy.,Raj is looking for a girl.,Raj is looking for a dog.,Raj is looking for a cat.,2,What is Raj looking for when he is at the club?,132463,The Big Bang Theory,4.09-16.36,s06e11_seg02_clip_05,Raj is looking for a girl. 10425,His cell phone,A fidget spinner,A bouncy ball,A Rubik's Cube,A paper airplane,4,What was House playing with when the meeting was being held?,132464,House M.D.,1.37-5.92,house_s03e17_seg02_clip_15,A paper airplane 10426,Ted turns and walks the other way.,Ted ducks behind a tree.,Ted starts laughing.,Ted runs into a crowd.,Ted walks behind Marshall.,2,What does Ted do after Marshall says it's Brad?,132465,How I Met You Mother,17.63-27.38,met_s02e05_seg02_clip_19,Ted starts laughing. 10427,99%,100%,50%,110%,99.999%,0,How certain did House say Cuddy would consent to the steroid amount when he is trying to get the pharmacist to give it to him?,132466,House M.D.,37.91-41.97,house_s04e14_seg02_clip_22,99% 10428,"Can I make an appointment for my friend, Sheldon?",Where is your bathroom?,Is this the high-IQ sperm bank?,How long will it take to get the results?,Do you validate parking?,2,What did Leonard ask the receptionist after he gave her the answers to her crossword puzzle?,132467,The Big Bang Theory,53.39-61.02,s01e01_seg01_clip_00,Is this the high-IQ sperm bank? 10429,Bernadette stand up.,Bernardette drunk wine.,Bernadette read a book.,Bernadette went to te bathroom.,Bernadette hugged Penny.,0,What did Bernadette do after Sheldon said about Howard?,132468,The Big Bang Theory,0-55.77,s07e05_seg02_clip_02,Bernadette stand up. 10430,Ross hit his foot.,Ross hit his hand.,Ross hit his head.,Ross hit his leg.,Ross hit his eye.,2,What did Ross hit when he tried to go on the table?,132469,Friends,29.41-32.56,friends_s03e06_seg02_clip_19,Ross hit his head. 10431,Sheldon offers to whip up a quick Relationship Agreement.,Sheldon offers to bake a cake to cheer Penny and Leonard up.,Sheldon offers to refer Penny and Leonard to a relationship counselor.,Sheldon offers to leave Penny and Leonard alone.,Sheldon offers to drive Leonard home.,0,What does Sheldon offer to do when Penny and Leonard begin arguing?,132470,The Big Bang Theory,13.36-30.76,s10e13_seg02_clip_11,Sheldon offers to whip up a quick Relationship Agreement. 10432,Castle was looking at a window.,Castle was looking at a computer.,Castle was looking at a photo album.,Castle was looking at phone.,Castle was looking at a book.,0,What is Castle looking at when Alexis walks in the room ? ,132471,Castle,64.1-69.44,castle_s08e14_seg02_clip_22,Castle was looking at a window. 10433,A coat hanger ,He runs at it,Turns the knob,A screwdriver,The key,1,How does Joey open the door after Chandler tries to open it,132472,Friends,107.72-116.05,friends_s06e01_seg02_clip_19,He runs at it 10434,They traced her movements for the past 24 hours,They found Pam purchased a flip phone involved in Justin's death,They found she had hired an assassin ,They found Pam had been using a stolen credit,They found Justin had been using Pam's card,1,Why did Castle's team check Pam's credit card before they talked to her about Justin?,132473,Castle,0-35.65,castle_s06e16_seg02_clip_25,They found Pam purchased a flip phone involved in Justin's death 10435,A police officer,A fireman,The mailman,Penny and Amy,Their neighbor ,0,Who is Leonard and Sheldon talking to when they're in their living room?,132474,The Big Bang Theory,6.37-11.4,s03e13_seg02_clip_01,A police officer 10436,Raj turned and left.,Raj continue talking.,Raj said good bye.,Raj offered a drink.,Raj sat next to Mrs. Cooper.,1,What did Raj after apologizing with Mrs. Davis?,132475,The Big Bang Theory,0-38.14,s07e01_seg02_clip_11,Raj continue talking. 10437,Rachel used her glasses.,Rachel used a microscope.,Rachel used binoculars.,Rachel used her contact lenses.,Rachel squinted her eyes.,2,How was Rachel able to look at her neighbor's apartment building when she was with Phoebe and Monica?,132476,Friends,8.1-11.1,friends_s01e04_seg02_clip_16,Rachel used binoculars. 10438,Bernadette.,Penny.,Howard.,Leonard.,Sheldon.,0,Who does Howard say his mother doesn't trust when the guys are talking about Priya?,132477,The Big Bang Theory,30.52-36.62,s04e16_seg02_clip_01,Bernadette. 10439,"$3,456",$200,"$2,000",$20,$1,2,What amount of money does Monica need when she asks Joey for a loan?,132478,Friends,10.5-17.51,friends_s09e16_seg02_clip_04,"$2,000" 10440,Dave,Sheldon,Raj,Penny,Cinnamon,0,Who is Amy dropping off after her date? ,132479,The Big Bang Theory,15.46-17.11,s09e08_seg02_clip_15,Dave 10441,a water pitcher and glasses,a computer,a phone,a photograph,her purse,0,What is on the desk in front of Ms. Naziff when Beckett enters the office?,132480,Castle,0-6.32,castle_s07e12_seg02_clip_13,a water pitcher and glasses 10442,"She said, they're laughing.","She said, they're crying.",They're kissing.,"She said, they're jumping.","She said, they're making out.",2,What did the neighbor on the phone say when she came back in?,132481,How I Met You Mother,66.55-103.17,met_s06e15_seg02_clip_18,They're kissing. 10443,He says he was superglued to the wall. ,He says he was superglued to a locker. ,He says he was superglued to a chair. ,He says he was superglued to the door. ,He says he was superglued to the window. ,2,What does Howard say he was superglued to when giving a speech?,132482,The Big Bang Theory,51.61-54.02,s06e18_seg02_clip_09,He says he was superglued to a chair. 10444,white,green,blue,black,pink,3,What color is Cubby's shirt when she is standing at her desk?,132483,House M.D.,7.28-12.74,house_s03e02_seg02_clip_08,black 10445,Dennis is next to Sheldon.,Dennis is sitting on a chair.,Dennis is behind a chair.,Dennis is between Sheldon and Leonard.,Dennis is running.,2,Where is Dennis when Dr. Gablehouser is talking?,132484,The Big Bang Theory,0-60.58,s01e12_seg01_clip_00,Dennis is behind a chair. 10446,Ten gold pieces,Forty gold bars,Fifty gold bars,Seventy pounds of gold,One hundred pounds of gold? ,2,How much gold did the Bartender say the peacock boys stole when talking to Beckett and Castle?,132485,Castle,0.9-9.89,castle_s07e07_seg02_clip_19,Fifty gold bars 10447,Ross was thumbing through a magazine.,Ross was dancing.,Ross was eating.,Ross was working.,Ross was talking to a friend.,0,What was Ross doing when Maria introduced herself?,132486,Friends,0-5.87,friends_s04e04_seg02_clip_06,Ross was thumbing through a magazine. 10448,Monica comes into the apartment.,Rachel comes into the apartment.,Ross comes into the apartment.,Joey comes into the apartment.,Janice comes into the apartment.,3,Who comes into the apartment when Chandler and Phoebe are waiting in the living room?,132487,Friends,48.7-52.13,friends_s06e20_seg02_clip_14,Joey comes into the apartment. 10449,sun was going down,raining,lightning,sleeting,snowing,4,What was it doing outside when the group went to the window?,132488,Friends,0-7.55,friends_s09e10_seg02_clip_18,snowing 10450,Penny told Leonard no when he asked her to marry him.,Leonard had too much to eat at the buffet.,Leonard isn't happy about the car he's driving.,The road had traffic.,Leonard's driving skill.,0,What is Sheldon's reason when Leonard is mad?,132489,The Big Bang Theory,12.18-20.6,s07e09_seg02_clip_03,Penny told Leonard no when he asked her to marry him. 10451,name tags,roses,america pins,class of '91 pins,ribbons,0,what are ross and chandler wearing on their jackets when they are at a class reunion? ,132490,Friends,19.19-27.46,friends_s10e11_seg02_clip_15,name tags 10452,Because he thought Phoebe was going to kill him,Because he'd had a bad dream,Because he'd seen a mouse,Because Phoebe said that maybe he would die,Because he didn't want go to the hospital,3,Why did Joey tell Chandler he was scared when they were talking to Phoebe?,132491,Friends,12.19-20.03,friends_s06e04_seg02_clip_10,Because Phoebe said that maybe he would die 10453,Marshal,Robin,Lily,Ted,Abbey's mother,3,Who are Barney and Abbey talking about when they're laying in bed together?,132492,How I Met You Mother,26.19-41.11,met_s03e19_seg02_clip_07,Ted 10454,make a pie,kiss Howard,drink Howard's drink,make a cake,take a picture with Howard,4,What did Howard want Bernadette to do when she was trying his drinks?,132493,The Big Bang Theory,7.41-21.62,s08e21_seg02_clip_03,take a picture with Howard 10455,A plant,A bottle of wine,A painting,A lamp,A candle,0,What was behind Castle when he told the two employees that his dance card is full?,132494,Castle,21.04-30.88,castle_s04e14_seg02_clip_05,A plant 10456,pushed him,grabbed him,walked over to him,cried,sat down,2,What did Ross do after he saw the monkey?,132495,Friends,8.99-11.48,friends_s01e18_seg02_clip_07,walked over to him 10457,A book,A drawer,The door,The window,A bottle,2,What did Phobe close after Ross said something about Rachel touching someone?,132496,Friends,48.4-55.48,friends_s01e07_seg02_clip_16,The door 10458,Kim,Beckett,Tyson,Kim's mother,Sam,3,Who did Castle and Alexis bring up when they spoke at the same time?,132497,Castle,71.75-75.91,castle_s06e07_seg02_clip_15,Kim's mother 10459,Josh Murray,Scott Murray,William Murray,Douglas Murray,Scott Johnson,1,Who was the fourth victim when Beckett started investigating,132498,Castle,66.55-90.55,castle_s03e13_seg02_clip_11,Scott Murray 10460,A micro memory disk.,A large recording tape.,A computer recording disk.,A small cassette tape.,A large cassette tape.,3,What did Castle retrieve from the safe to give to Esposito after Roger opens it?,132499,Castle,88.85-95.03,castle_s08e10_seg02_clip_20,A small cassette tape. 10461,there was 8 on the couch,there 2 int total,there was 5 in total,there were 3 in total,no one was on the couch,3,How many people were sitting on the couch when Joey was reading?,132500,Friends,0-14.5,friends_s03e18_seg01_clip_00,there were 3 in total 10462,Meredith kisses Derek.,Meredith looks up at Richard.,Meredith hugs Derek.,Meredith dances with Derek.,Meredith walks out the door.,1,What does Meredith do after Richard tells Bailey she has more hands on hours than him lately?,132501,Grey's Anatomy,29.58-32.77,grey_s03e12_seg02_clip_08,Meredith looks up at Richard. 10463,Robin asks why the bill is blue?,Robin stares at Barney.,Robin asks if she's American?,Robin asks what's wrong?,Barney said he was Canadian.,1,What does Robin do before Barney holds up a five dollar bill?,132502,How I Met You Mother,10.85-17.48,met_s05e05_seg02_clip_12,Robin stares at Barney. 10464,Skittles,Cotton Candy for life,Snickers,Posters for her room,Popcorn with extra butter for life,3,What did Chip offer Monica for her room after Chip told Monica where he worked?,132503,Friends,43.52-55.22,friends_s04e02_seg02_clip_16,Posters for her room 10465,crutches,wheelchair,walker,scooter,cast,0,What is Esposito using when he comes in?,132504,Castle,81.47-91.03,castle_s07e19_seg02_clip_07,crutches 10466,Team Leader,Scout,Alpha,Beta,Omega,1,What position does Beckett think Sue is in the con when talking to Castle?,132505,Castle,46.14-90.48,castle_s02e04_seg02_clip_23,Scout 10467,Ross places the ring on Chandler's finger.,Ross places the ring on the kitchen table.,Ross places the ring on top of the refrigerator.,Ross places the ring in Chandler's hand.,Ross places the ring on the kitchen countertop.,4,Where did Ross place the ring after he goes into the kitchen?,132506,Friends,4.41-11.66,friends_s04e22_seg02_clip_00,Ross places the ring on the kitchen countertop. 10468,Purple,Black.,White.,Red.,Green.,0,What color was the tie the man in the blue suit was wearing when he said the less you know the better?,132507,Castle,2.05-4.92,castle_s07e02_seg02_clip_08,Purple 10469,100 milligrams.,50 milligrams.,150 milligrams.,200 milligrams.,25 milligrams.,0,How much methylprednisolone did House ask the pharmacy for after he told Foreman the patient needed to be on steroids?,132508,House M.D.,19.86-22.56,house_s04e14_seg02_clip_22,100 milligrams. 10470,Where are you taking the suitcase?,I will vacuum the room for you.,Do you need help with that?,It is heavy the box?,Can I help fou with your bag?,2,What Rachel asked Monica when she saw her is trouble?,132509,Friends,19.1-21.67,friends_s04e13_seg02_clip_11,Do you need help with that? 10471,Chandler,Rachael,Ross,Phoebe,Joey ,3,Who was the only character sitting the floor when Monica was talking to them?,132510,Friends,0.61-5.22,friends_s01e03_seg02_clip_19,Phoebe 10472,That Danielle is more popular. ,That Danielle is strange. ,That Danielle is prettier. ,That Danielle is a masochist. ,That Danielle is a moron. ,3,What does Castle read in Jessica's research when Danielle is being questioned?,132511,Castle,81.36-85.36,castle_s02e16_seg02_clip_24,That Danielle is a masochist. 10473,Addison,Alex,Cristina,Derek,George,4,What doctor followed Meredith after she walked out of the room?,132512,Grey's Anatomy,0-6.57,grey_s03e24_seg02_clip_12,George 10474,Big Bully was wearing a leather jacket.,Big Bully was wearing a dress shirt.,Big Bully was wearing a t shirt.,Big Bully was wearing a hoodie.,Big Bully was wearing a blazer.,0,What was Big Bully wearing when he was about to fight Ross and Chandler?,132513,Friends,0-20.95,friends_s02e21_seg02_clip_18,Big Bully was wearing a leather jacket. 10475,Calls her father,Whispers to a waiter,Talks to the man next to her,Talks to herself,Pulls out a voice recorder,4,What does Zoey do when talking about destroying Ted,132514,How I Met You Mother,36.31-40.65,met_s06e08_seg02_clip_03,Pulls out a voice recorder 10476,Chase found out that 13 killed her mother,Chase found out that 13 killed her sister,Chase found out that 13 killed her brother,Chase found out that 13 killed her father,Chase found out that 13 killed her uncle,2,What did Chase find out about 13 when she mentioned that it wasn't murder?,132515,House M.D.,0.94-4.06,house_s07e22_seg02_clip_04,Chase found out that 13 killed her brother 10477,"Howard said, he was in the neighborhood and thought he'd stop by. ","Howard said, he missed her and he wanted to spend time with her.","Howard said, he was fired from his job and he needed comfort.","Howard said, he was hungry and she cooks the best chicken.","Howard said, Bernie's not feeling well. so he thought he'd stop by. ",4,Why does Howard say he stopped by unexpectedly after his Mrs. Wolowitz expresses surprise that he is at her door?,132516,The Big Bang Theory,37.95-59.3,s06e04_seg02_clip_10,"Howard said, Bernie's not feeling well. so he thought he'd stop by. " 10478,House was tapping his finger on the side of the bed,House cut his finger,House inject medication to his finger,House pinch his finger,House did nothing with his finger,0,What did House do with his finger when he was on the bed?,132517,House M.D.,83.75-90.06,house_s02e24_seg02_clip_04,House was tapping his finger on the side of the bed 10479,Black,Blue,Rainbow-colored,Green,Orange,3,What color sweater is the man wearing when he is lying on the floor? ,132518,The Big Bang Theory,4.88-7.93,s07e18_seg02_clip_00,Green 10480,Meredith kisses Alex.,Meredith kisses Derek.,Meredith hugs Derek.,Meredith turns to look at Derek in realization.,Meredith hugs Cristina.,3,"What does Meredith do after Derek ask her ""which means""?",132519,Grey's Anatomy,45.69-47.86,grey_s03e09_seg02_clip_08,Meredith turns to look at Derek in realization. 10481,Castle's wife,A policeman,A dog,Castle,Beckett,3,Who walks in when Oona and Martha start talking?,132520,Castle,27.91-39.54,castle_s04e18_seg02_clip_26,Castle 10482,Bernadette,Howard,Sheldon,Penny,Raj ,4,Who sits down to eat with Leonard when he is eating?,132521,The Big Bang Theory,54.33-59.06,s05e16_seg02_clip_07,Raj 10483,Valeries mom,A stalker,Calderon,Valeries dad,Valeries sister,2,Who gave valerie the bracelet before she was killed?,132522,Castle,54.99-60.95,castle_s03e05_seg02_clip_22,Calderon 10484,a cup,a bottle,a pizza slice,an orange ,an apple,1,What does George pick up from the table before Meredith sits on the couch?,132523,Grey's Anatomy,0-9.46,grey_s01e03_seg02_clip_25,a bottle 10485,He went into the kitchen.,He went outside.,He went into the bathroom.,He looked in the closet.,He went into his office.,2,What did Marshall do after he told Lily he'd be right back?,132524,How I Met You Mother,4.8-10.5,met_s06e06_seg02_clip_10,He went into the bathroom. 10486,They are tired,They are tied together,They are lazy,They run,They worked a long shift the night before.,1,Why are the doctors shuffling when they exit the elevator?,132525,House M.D.,0-25.22,house_s05e09_seg02_clip_17,They are tied together 10487,He sticks out his tongue. ,He smacks Joey. ,He drinks coffee. ,He hugs Rachel. ,He crosses his fingers. ,0,What does Chandler do after Joey smiles with a cup of coffee in his hand?,132526,Friends,50.7-56.02,friends_s01e09_seg02_clip_01,He sticks out his tongue. 10488,94,34,64,84,74,0,How many people has the police interviewed so far after the incident?,132527,Castle,24.85-31.75,castle_s04e19_seg02_clip_06,94 10489,Nothing,Penney,His mother,His clothes,Sheldin's mother,1,What does Leonard want to talk about after Sheldin sits down?,132528,The Big Bang Theory,0-31.87,s01e14_seg02_clip_09,Penney 10490,Her sister,Her father,Her mnother,Her baby,Her neighbor,3,Who is house referring to when talking to Emma about someone who tried to kill her?,132529,House M.D.,55.81-67.52,house_s03e17_seg02_clip_23,Her baby 10491,Night vision thermal goggles,Soft music,Silk pajamas,Speedos,Sweatpants,0,What did Castle put on when he and Beckett were alone inthe apartment?,132530,Castle,87.35-105.19,castle_s07e03_seg02_clip_26,Night vision thermal goggles 10492,because Penelope told him to,for an award,to get another season,at the producer's urging,for ratings,4,Why did Bob say he had faked the relationship with Hannah when they were on the show?,132531,Castle,21.63-37.27,castle_s05e14_seg02_clip_16,for ratings 10493,Because Penny likes Leonard.,Because Penny likes free dinner.,"Because Penny likes hanging out with Howard, Raj, Sheldon and Leonard.",Because Penny is bored.,Because Penny is hungry.,2,Why Penny accepted Leonard's dinner invitation after he asked her? ,132532,The Big Bang Theory,2.9-36.26,s01e03_seg02_clip_10,"Because Penny likes hanging out with Howard, Raj, Sheldon and Leonard." 10494,A shoelace.,A necklace.,A tie.,Eyeglasses.,A scarf.,3,What was hanging around Terry's neck when he was talking to Rachel about Phoebe?,132533,Friends,3.48-8.41,friends_s02e06_seg02_clip_03,Eyeglasses. 10495,Because she needed to go to the bathroom but couldn't.,Because everybody nearby was too busy with the situation at hand.,Because she wasn't getting paid for this.,Because she was worried she was about to get a blood borne disease.,Because she was hungry.,1,Why did Meredith look so dejected after she asked for help?,132534,Grey's Anatomy,75.62-85.52,grey_s03e15_seg02_clip_21,Because everybody nearby was too busy with the situation at hand. 10496,Tablet,Water bottle,Patient fil,Cup of coffee.,Mobile phone.,3,What was Derek holding when he walked up behind Meredith? ,132535,Grey's Anatomy,4.05-6.75,grey_s01e04_seg02_clip_11,Cup of coffee. 10497,yellow police tape and police cars,red balloon,clowns,stop sign ,blue FBI tape and FBI agents ,0,What was behind both Castle and Beckett when Castle asked if She was ok? ,132536,Castle,38.36-43.97,castle_s07e09_seg02_clip_00,yellow police tape and police cars 10498,Sheldon mentions being away from his mom. ,Sheldon mentions being away from Sheldon. ,Sheldon mentions being away from Raj. ,Sheldon mentions being away from Howard. ,Sheldon mentions being away from Penny for 4 months. ,4,What finally gets Leonards attention when they are in the car?,132537,The Big Bang Theory,42.37-52.55,s06e24_seg01_clip_02,Sheldon mentions being away from Penny for 4 months. 10499,Rachel is at the door,Joey is at the door,Chandler is at the door,Allesandro is at the door ,No one is at the door,3,Who is at the door when Moncia is alone in the kitchen?,132538,Friends,54.92-60.03,friends_s04e09_seg02_clip_06,Allesandro is at the door 10500,Penny,Bernadette,Howard,Raj ,Emily,0,Who was at the hospital when Amy and Sheldon walked in?,132539,The Big Bang Theory,0-33.46,s08e09_seg02_clip_07,Penny 10501,He takes his hands off of his hips and walks back into the kitchen.,He sits down on the sofa next to Dr. House.,He sits down on the recliner and looks at Dr. House.,He grabs his coat from the coat rack.,He touches Dr. House on the shoulder.,0,What does Dr. Wilson do after Dr. House says he is going to check himself back into Mayfield>,132540,House M.D.,32.06-41.41,house_s06e05_seg02_clip_18,He takes his hands off of his hips and walks back into the kitchen. 10502,paying for gigs,stand up club,street performing ,A comedic food review,begging for change,3,How did the victim get her start after moving to NYC,132541,Castle,0-63.02,castle_s07e05_seg02_clip_02,A comedic food review 10503,"""I need to leave""","""I gotta go.""","""Is it hot in here to you?""","""I need a drink""","""Are you mad at me?""",1,What did Ross say to Pheobe before leaving?,132542,Friends,37.07-43.91,friends_s02e14_seg02_clip_09,"""I gotta go.""" 10504,A screen play for Star Wars,A book about his dad,A riddle about women and men,His last will and testament ,A poem,4,What did Doug tell Robin he wrote after she can in the door?,132543,How I Met You Mother,55.39-60.23,met_s03e04_seg02_clip_12,A poem 10505,Ryan and Esposito,Stacey and Brad,Beckett and Castle,Castle and Alexis,Castle and Esposito,1,Who split up before the party?,132544,Castle,0-21.39,castle_s03e11_seg02_clip_06,Stacey and Brad 10506,The number on the door is 33.,The number on the door is 51.,The number on the door is 4.,The number on the door is 15.,The number on the door is 3b.,3,What does the number on the door read when Rachel knocked on it?,132545,Friends,45.56-50.52,friends_s05e06_seg02_clip_06,The number on the door is 15. 10507,As the World Turns,Days of our Lives,from his acne commercial,from the magazine,from the newspaper,1,Where did Mike say that Joey looked so familiar from when talking to him at the table?,132546,Friends,8.71-19.61,friends_s09e03_seg02_clip_12,Days of our Lives 10508,Zipped the tent,Hung up his phone,Took off his coat,Picked up his coffee,Kissed Beckett,0,What did Castle do before he sat on a bench across from Beckett?,132547,Castle,45.22-53.83,castle_s03e16_seg02_clip_11,Zipped the tent 10509,a credit card,a waitress,Jane,A cab driver,Luca Tessaro,0,Where does Ryan get his clues from when he finds out about the pizza?,132548,Castle,31.26-54.82,castle_s07e10_seg02_clip_21,a credit card 10510,cross,heart,star,smiley face,circle,0,What kind of design was on Phoebe's shirt when she was sitting beside Monica?,132549,Friends,25.63-31.73,friends_s09e15_seg02_clip_11,cross 10511,Rachel didn't invite Monica to the wedding,Rachel owed Monica money,Rachel had just jilted Monica's brother,Rachel and Monica's last encounter ended in an argument,Rachel just married Monica's old boyfriend,0,What did Rachel hope Monica would overlook when she sought her out after the wedding?,132550,Friends,0-15.28,friends_s01e01_seg02_clip_05,Rachel didn't invite Monica to the wedding 10512,cleaning,having dinner,having lunch,cooking,making out,4,What were Leonard sand Stephanie doing when Howard called?,132551,The Big Bang Theory,0-10.33,s02e08_seg02_clip_09,making out 10513,Her leg.,His back.,His arm.,Her back,His neck.,4,Where did Monica put her hands before she wrestled with Ross? ,132552,Friends,48.02-53.47,friends_s05e10_seg02_clip_11,His neck. 10514,Sheldon said he was adjusting the couch.,Sheldon said he was getting ready to go out for the night.,Sheldon said he was preparing for bed.,Sheldon said he was about to watch television.,Sheldon said he was setting out snacks.,4,What did Sheldon say he was doing when Leonard enter the living room and asked?,132553,The Big Bang Theory,3.03-4.84,s04e17_seg02_clip_05,Sheldon said he was setting out snacks. 10515,Brushing a girl's hair.,A back rub.,Dancing,A foot massage.,Offering to let a girl feel Ted's muscles. ,3,What is the first pretext for physical contact when Barney is explaining his plan?,132554,How I Met You Mother,31.94-54.53,met_s03e03_seg02_clip_13,A foot massage. 10516,Because Detective Beckett thought she saw an animal trapped in the car.,Because Detective Beckett is desparately trying to retrieve her phone that she left behind.,Because Detective Beckett wants to check the trunk of Simmon's car to see if a kidnap victim is being held there.,Because Detective Beckett thinks Simmons was involved in a murder and she is looking for evidence.,Because Detective Beckett is looking for evidence of a bank robbery. ,3,Why id detective Beckett shining a light through Simmons car when he is not around?,132555,Castle,0-33.67,castle_s06e22_seg02_clip_06,Because Detective Beckett thinks Simmons was involved in a murder and she is looking for evidence. 10517,Flopped on the floor,Stand in anger,Lean back in her chair ,Cried in her hands,Called the police,2,What did Penny do when Mrs Copper confronted her?,132556,The Big Bang Theory,42.5-50.56,s08e23_seg02_clip_09,Lean back in her chair 10518,That's not true.,Shut up. ,Thank you.,You're pretty amazing too.,Did you hear that Leonard?,1,What did Penny say after Dave said she was an amazing woman?,132557,The Big Bang Theory,0-9.12,s02e11_seg02_clip_09,Shut up. 10519,He answers the phone. ,He leaves the room. ,He gives a patient an injection. ,He eats lunch. ,He runs on a treadmill. ,0,What does Dr. House do after he talks to the woman?,132558,House M.D.,58.47-68.14,house_s04e06_seg02_clip_15,He answers the phone. 10520,He left the room.,He turned the lamp on.,He screamed loudly.,He got into bed with her.,He tapped her on the shoulder.,1,How did Sheldon get Penny's attention after she rolled over to go to sleep?,132559,The Big Bang Theory,22.37-26.15,s06e02_seg02_clip_10,He turned the lamp on. 10521,"Chandler had fished for the compliment, cajoling Monica to tell him he's cute. ","Chandler had a shirt that said I'm Cute on it, and Monica read it aloud. ",Chandler paid Monica to tell him he was cute. ,Monica decided on her own to tell Chandler he was cute. ,Chandler was always told he was cute by everyone. ,0,Why did Monica tell Chandler he was cute before he left the room? ,132560,Friends,2.24-9.92,friends_s05e01_seg02_clip_15,"Chandler had fished for the compliment, cajoling Monica to tell him he's cute. " 10522,Her second lawyer.,Her original public defender.,The DA.,Beckett.,Esposito.,1,Who did Nina say she told about the affair with Sadie when Castle asked her who she told?,132561,Castle,87.94-93.55,castle_s08e10_seg02_clip_15,Her original public defender. 10523,A jacket,A bottle of juice,A plate of salad,A cup of coffee,A file,3,What did Adams handed to Park after she greeted her. ,132562,House M.D.,0-6.23,house_s08e03_seg02_clip_08,A cup of coffee 10524,a mug,a glass,a pen,a bowl,a dish,0,What is Monica holding in her had when she sits next to Rachel?,132563,Friends,32.12-35.27,friends_s04e21_seg02_clip_18,a mug 10525,Nothing,It started working.,It made a loud sound.,It shocked him.,He heard someone in the elevator.,0,What happened after Howard pushed the elevator button?,132564,The Big Bang Theory,9.1-20.26,s01e14_seg02_clip_01,Nothing 10526,Bernadette walks to the door.,Bernadette turns away from Raj.,Bernadette covers her ears.,Bernadette cries on Raj's shoulder.,Bernadette books a vacation.,1,What does Bernadette do when Raj screams win?,132565,The Big Bang Theory,23.71-28.21,s07e03_seg02_clip_01,Bernadette turns away from Raj. 10527,She doesn't want Howard to be mad at her.,She doesn't want to be the person that stands between Howard and his dreams.,She realized he will make a lot of money.,She realized he will be gain fame and notoriety.,She was never scared and always encouraged him to go.,1,Why did Bernadette change how she felt about Howard going into space after she was against it?,132566,The Big Bang Theory,30.39-44.98,s05e05_seg02_clip_07,She doesn't want to be the person that stands between Howard and his dreams. 10528,Box of bullets,Gloves,Wine bottle,Fireworks,Brand new lock,4,What did Esposito find when he was talking to Ryan?,132567,Castle,9.44-17.98,castle_s06e11_seg02_clip_10,Brand new lock 10529,The government made an example of Lara's father to all the other players.,The government took all his property and bank accounts.,The government sent agents to look for Lara's father.,The government interrogated all of Lara's family.,The government sent Lara's brother to military school.,0,What did the government do after Lara's father defected to the USA?,132568,Castle,18.24-22.35,castle_s02e15_seg02_clip_23,The government made an example of Lara's father to all the other players. 10530,howard is working on a table,howard is working on a train,howard is working on a tablet,howard is working on a comuter,howard is working on onboard communication chip,4,what is howard working on on the kitchen when sheldon says very impressive?,132569,The Big Bang Theory,29.76-36.75,s08e22_seg02_clip_09,howard is working on onboard communication chip 10531,He wiped his forehead.,He read from a piece of paper.,He took off his coat.,He gave him his phone.,He shook his hand.,1,What do Ryan do after he cleared his throat?,132570,Castle,72.38-79.25,castle_s04e22_seg02_clip_11,He read from a piece of paper. 10532,i told him ,I didn't tell him,i punched him,i kicked him,nothing ,1,What did Taub tell House after he entered his office?,132571,House M.D.,86.98-93.03,house_s08e06_seg02_clip_24,I didn't tell him 10533,She was standing up.,She was crying.,She was opening the door.,She was eating.,She was making a call.,1,What was Becca doing when she said I don't wanna wait?,132572,House M.D.,0-9.56,house_s05e06_seg02_clip_16,She was crying. 10534,Sheldon moved Penny to the Car one diagram in the backseat next to Amy,Sheldon lay down.,Sheldon went to the store.,Sheldon laughed out loud.,Sheldon walked to the door.,0,What did Sheldon do after he moved Amy's head piece to Car one diagram?,132573,The Big Bang Theory,0-5.51,s04e13_seg02_clip_01,Sheldon moved Penny to the Car one diagram in the backseat next to Amy 10535,He puts the mug on the counter. ,He puts a sweater on. ,He puts his coat on. ,He gives Phoebe a hug. ,He trips Chandler. ,2,What does Joey do after he stands up from the chair?,132574,Friends,27.29-31.63,friends_s03e10_seg02_clip_01,He puts his coat on. 10536,nothing,Ear muffs,wig,hat,tiara`,1,"What is on Phoebe's head when she say's ""Oh, That's so much...""?",132575,Friends,0-9.99,friends_s07e12_seg02_clip_10,Ear muffs 10537,Ms. PacMan,Galaga,Space Invaders,Centipede,Asteroids.,0,Which arcade game was in Monica's apartment when she was talking to Chandler?,132576,Friends,5.51-9.57,friends_s08e12_seg02_clip_10,Ms. PacMan 10538,Rachel taunts Ross by calling him spoiled.,Rachel taunts Ross by waddling like a duck.,Rachel taunts Ross by pretending to cry after knocking off a cup.,Rachel taunts Ross by clapping her forearms together.,Rachel taunts Ross by clapping her elbows together.,3,How does Rachel taunt Ross after he jokes about the money he made in his relationship?,132577,Friends,35.11-41.49,friends_s04e05_seg02_clip_19,Rachel taunts Ross by clapping her forearms together. 10539,Marshall.,Ted.,A robot.,Lily.,Barney.,2,Who is seen floating in space with Robin when Robin waves?,132578,How I Met You Mother,47.39-49.52,met_s02e09_seg02_clip_18,A robot. 10540,She has sex with him,She coughs on him,She leaves him,She bleeds out on top of him,She disappears,3,What happens to the girl on the patient's lap when he is dreaming?,132579,House M.D.,7.04-26.85,house_s08e17_seg02_clip_17,She bleeds out on top of him 10541,Jewelry,Fur coat,Sweaters,Handcuffs,Suitcase,3,What does Chandler find after he looks at the closet,132580,Friends,43.13-55.45,friends_s10e16_seg02_clip_02,Handcuffs 10542,chewing gum,hands on her lap,flipper her hair,writing down notes,Right hand on forehead,4,Which pose did Park use when she started talking?,132581,House M.D.,4.84-14.08,house_s08e20_seg02_clip_05,Right hand on forehead 10543,at home,locked up,at the gym,at his daughter's recital,in a car,1,Where is house revealed to be after the woman asks that question?,132582,House M.D.,37.45-47.05,house_s03e06_seg02_clip_00,locked up 10544,Raj has not used a microwave,Raj has not used an electric motor ,Raj has not used a hydraulic thermoforming press,Raj has not used a oven,Raj has not used a remote,2,What hasn't Raj used when he is with Howard and Leonard?,132583,The Big Bang Theory,2.52-9.46,s05e02_seg02_clip_00,Raj has not used a hydraulic thermoforming press 10545,Drugs ,Words,Numbers,Money,Key,4,What was found sewn into the pants of Castle after being searched?,132584,Castle,0-10.12,castle_s07e01_seg02_clip_18,Key 10546,did you get robbed?,and then you broke up with him?,so you're getting back together with Ross?,and then your face exploded?,who did that to your face?,3,What does Phoebe ask after Rachel tells her Palo missed his flight?,132585,Friends,32.16-39.9,friends_s01e10_seg02_clip_14,and then your face exploded? 10547,Went to the kitchen.,Sat next to penny.,Walk away.,Said compliments to Raj.,Sat next to Leonard.,4,What did sheldon after giving a speach?,132586,The Big Bang Theory,0-37.22,s07e06_seg02_clip_09,Sat next to Leonard. 10548,Jessup was released after telling Castle and Beckett what he knew,Jessup was put in a jail cell,Jessup was in the backseat of Becketts and Castle's car ,Jessup was in a court room,Jessup was left in the interragation romm,2,Where was Jessup after he told Castle and Beckett he could identify the building they were looking for?,132587,Castle,47.95-52.19,castle_s02e09_seg02_clip_06,Jessup was in the backseat of Becketts and Castle's car 10549,proud,happy,embarassed,tired,anxious,2,How did Howard feel when the nurse announced Howard's condition?,132588,The Big Bang Theory,0-16.09,s04e01_seg02_clip_16,embarassed 10550,Grabbed his face.,Brushed his hair.,Pulled his ears.,Squeezed his nose.,Rubbed his head. ,0,What did Phoebe do before kissing Ross?,132589,Friends,52.23-57.08,friends_s03e06_seg02_clip_18,Grabbed his face. 10551,Penny is with Amy.,Penny is with Howard.,Penny is with Leonard.,Penny is with Priya.,Penny is with Sheldon.,2,Who is with Penny when she comes to the apartment?,132590,The Big Bang Theory,41.72-53.42,s05e20_seg02_clip_14,Penny is with Leonard. 10552,Leave with Brandon,Argue with Brandon,Reason with Brandon,Shoot at Brandon,Stay with Brandon,4,What does Castle agree to do before pushing down the lever?,132591,Castle,9.66-28.07,castle_s08e12_seg02_clip_23,Stay with Brandon 10553,The robber's were all disguised as women. ,Robber's were disguised as dead president's. ,Robber's weren't in disguise. ,Robber's were disguised as unicorn's. ,They were disguised as clowns. ,4,What were the robber's disguise when they were shooting at Ryan and Esposito?,132592,Castle,22.83-31.51,castle_s06e08_seg02_clip_13,They were disguised as clowns. 10554,Meredith,Izzy,Cristina,Derek,Preston,1,What doctor was on scene to treat the man when he was crushed between the cars?,132593,Grey's Anatomy,0-11.75,grey_s03e15_seg02_clip_12,Izzy 10555,Rachel's mom recognizes Joey,Rachel's mom recognizes Chandler,Rachel's mom recognizes Ross,Rachel's mom recognizes Monica,Rachel's mom recognizes Kiki,3,Who does Rachel's mom recognize when she is being introduced,132594,Friends,39.73-50,friends_s02e11_seg02_clip_05,Rachel's mom recognizes Monica 10556,Because Kathy told Chandler she was in love with him.,Because Chandler had sex with Kathy.,Because Chandler received a gift from Kathy.,Because Chandler was jealous to see Kathy with Joey.,Because Chandler kissed Kathy.,4,"Why did Chandler think he was in love with Kathy after he told Joey who he thought the ""other guy"" is?",132595,Friends,30.29-59.39,friends_s04e07_seg02_clip_20,Because Chandler kissed Kathy. 10557,Valdeno.,Venezia.,Va Bene.,Valbella.,Valencia.,1,Where did Wilson tell House to meet him and Sam after he told House that Sam wanted to meet him?,132596,House M.D.,61.87-63.65,house_s06e17_seg02_clip_10,Venezia. 10558,Rachel was excited because it was a fashion designer,Rachel was excited because it was her friend Kiki,Rachel was excited because it was her sister,Rachel was excited because it was her mom,Rachel was excited because it was a shoe salewoman,3,Why is Rachel excited to see the woman after she came in the building,132597,Friends,17.84-27.57,friends_s02e11_seg02_clip_05,Rachel was excited because it was her mom 10559,Monica,Phoebe,Rachel,Joey,Ross,1,Who is sitting in the coffee shop after the scene of the city?,132598,Friends,66.27-68,friends_s04e09_seg02_clip_15,Phoebe 10560,Puts it back in the filing cabinet,Throws it away,Throws it on his desk,Gives it to Beckett,Gives it to Castle,3,What does Esposito do with the folder after looking at the contents?,132599,Castle,64.42-71.78,castle_s08e09_seg02_clip_09,Gives it to Beckett 10561,a stack of files,a drawing,a bottle of medication,a poster of a skeleton,a picture,4,What was behind Cuddy when she told House that he doesn't really need the pain meds?,132600,House M.D.,0-8,house_s03e08_seg02_clip_18,a picture 10562,Lily was hidden behind the couch.,Lily sat on the couch.,Lily was in the kitchen.,Lily was sleeping.,Lily was doing tacos.,0,Where was Lily when Marshall and a woman entered in the apartment?,132601,How I Met You Mother,7.57-56.05,met_s02e07_seg02_clip_14,Lily was hidden behind the couch. 10563,Ann Hastings in on the train.,Ann Hastings is at the mall.,Ann Hastings is at a police academy.,Ann Hastings is in the interrogation room.,Ann Hastings is on a trolley.,3,Where is Ann Hastings when Beckett highlights her career options as a good cop?,132602,Castle,0-5.34,castle_s04e02_seg02_clip_22,Ann Hastings is in the interrogation room. 10564,eat a sandwich,left the elevator,allowed Castle to leave the elevator first,jumped for joy,hugged Castle,2,"What did Vasiliy do after Castle said ""Anywhere you like"" ?",132603,Castle,35.75-44.35,castle_s08e11_seg02_clip_14,allowed Castle to leave the elevator first 10565,there are 2 people,there is one person,there are 3 people,no one is in the room next to them,there are 4 people,0,How many people are in the editing sound room next to sheldon and flatow before sheldon storms off?,132604,The Big Bang Theory,72.27-78.84,s07e10_seg01_clip_01,there are 2 people 10566,He found Sarah's house in the Hamptons.,He found Sarah's grandfathers pen.,He found the secret method.,He found out Sarah was an engineer.,He found out Sarah was a government spy.,2,What did Sam find before he died?,132605,Castle,18.04-28.61,castle_s02e10_seg02_clip_24,He found the secret method. 10567,Because Taub was feeling weak,Because Taub didn't want to have to go into work,Because Taub wanted special attention from House,Because Taub only had a cold,Because Taub really choked on the exam,4,Why does Taub reveal having lied about having the flu when playing video games with Foreman?,132606,House M.D.,33.61-45.13,house_s07e12_seg02_clip_15,Because Taub really choked on the exam 10568,cracking her knuckles,clinching her fist,covering her face,sitting on her hands,clapping,2,What is Monica doing with her hands when Ross is pointing at the TV?,132607,Friends,2.21-6.3,friends_s08e15_seg02_clip_18,covering her face 10569,He shot Castle in the left knee.,He shot Castle in the chest.,He shot Castle in the right arm.,Someone shot him in the back.,He shot Castle in the head.,3,What happened after Golovkin told Castle it didn't matter?,132608,Castle,77.74-98.54,castle_s07e20_seg02_clip_24,Someone shot him in the back. 10570,House ignores Stacy. ,House pretends it wasn't him. ,House says that it was dumb and he'll apologize. ,House says he's very proud of it because now justice has been served. ,House makes a joking assessment of the fairness of that action. ,4,How does House respond when Stacy scolds him for blackmailing Ayersman and then ratting him out?,132609,House M.D.,51.63-58.31,house_s02e08_seg02_clip_15,House makes a joking assessment of the fairness of that action. 10571,They are yellow,They are gone,They are red and bleeding,They are rolling back into her head,They are black all over,2,What is wrong when abby opens her eyes,132610,House M.D.,13.64-23.24,house_s04e10_seg02_clip_15,They are red and bleeding 10572,She has bread in front of her that she is putting spread on.,She has a cake in front of her that she is frosting.,She has meat in front of her that she is slicing.,She has tea in front of her and she is adding cream and sugar.,She has sandwich in front of her that she is eating.,0,What does Monica have in front of her before she says remember who you are dealing with here?,132611,Friends,17.11-21.31,friends_s01e21_seg02_clip_11,She has bread in front of her that she is putting spread on. 10573,Laughed in disbelief,Screamed hysterically,Went into convulsions,Checked what was on his foot,Crawled on the floor,4,What did Wilson do after he pulled all of his IV wires out?,132612,House M.D.,19.12-28.68,house_s08e19_seg02_clip_20,Crawled on the floor 10574,Cuddy,Cameron,House,Thirteen,Wilson,1,Who was helping Chase when he was about to operate? ,132613,House M.D.,27.15-32.49,house_s05e07_seg02_clip_07,Cameron 10575,Chandler tells Rachel she owes him some money.,Chandler tells Rachel he had a great time.,Chandler asks Rachel for a kiss.,Chandler asks Rachel if she would like to come to his apartment.,Chandler thanks Rachel for lunch.,4,What does Chandler do after he and Rachel walk through the door into the hallway.,132614,Friends,31.73-39.06,friends_s07e11_seg02_clip_06,Chandler thanks Rachel for lunch. 10576,Rachel walked in the door.,The store detective walked in the door.,Jill's father walked in the door.,The pizza delivery guy walked in the door.,The florist's delivery driver walked in the door.,0,Who walked in the door after Jill said Rachel wasn't queen of the world?,132615,Friends,33.07-45.62,friends_s06e13_seg02_clip_05,Rachel walked in the door. 10577,tired,happy,ready to go,sad,angry,0,"How do you think Howard, Raj, and Leonard felt when Penny wanted them to work?",132616,The Big Bang Theory,49.47-63.02,s02e18_seg02_clip_12,tired 10578,Nora is trying to break up with Barney.,Nora wants to have sex.,Barney was late and Nora is tired,Barney has to be at work early the next day,Barney is sick,4,Why does Nora tell Barney it is time for bed when they are at the restaurant?,132617,How I Met You Mother,4.58-31.12,met_s06e18_seg02_clip_00,Barney is sick 10579,Beckett was in Theresa's bathtub. ,Beckett was in a rocking chair near Angela's bed. ,Beckett was trying to doze in her car. ,Beckett was dozing in the attic. ,Beckett was in Castle's apartment. ,1,Where was Beckett when she tried to sleep? ,132618,Castle,39.64-53.29,castle_s01e09_seg02_clip_23,Beckett was in a rocking chair near Angela's bed. 10580,pistols,assult riles,shotgun,boozka,sniper rifle ,1,What type of guns were the clowns using when they were shooting at the police car? ,132619,Castle,33.79-52.06,castle_s06e08_seg02_clip_13,assult riles 10581,An axe,A hose,A metal clipboard,A ladder,A fire helmet,2,What was the fireman holding when he showed Phoebe and Rachel the burnt hair straightener?,132620,Friends,4.76-14.57,friends_s06e18_seg02_clip_09,A metal clipboard 10582,Castle. ,Bob. ,Mark. ,Corey. ,David. ,1,"According to Margo, who was Hannah having an affair with when she was fired?",132621,Castle,13.59-24.47,castle_s05e14_seg02_clip_07,Bob. 10583,I don't want to play anymore.,That was really close.,I love the smell of paint balls int he morning.,Do you have any paint balls left?,Where are the rest of the guys?,2,What did Raj say after he and Howard ran into the shed?,132622,The Big Bang Theory,0-10.09,s02e16_seg01_clip_00,I love the smell of paint balls int he morning. 10584,Ross,Jack,Judy,Richard,Mark,0,Who went with Monica when she went to go talk to the Bride?,132623,Friends,2.7-12.31,friends_s07e11_seg02_clip_17,Ross 10585,Joey meets Rachel in London.,"Joey meets the Sarah Ferguson, the Duchess of York.",Joey meets his girlfriend in London.,Joey meets his agent in London.,Joey meets his family in London.,1,Who does Joey meet when he is in the London?,132624,Friends,0.61-13.18,friends_s04e23-24_seg02_clip_16,"Joey meets the Sarah Ferguson, the Duchess of York." 10586,cereal,lunchbox,toaster,vase,cat,0,What did the drone knock off the refrigerator before attacking Sheldon?,132625,The Big Bang Theory,17.81-27.76,s08e22_seg02_clip_16,cereal 10587,Raj was holding a baby crib,Raj was carrying groceries ,Raj was not holding anything,Raj was holding a red tool box,Raj was not at the door,3,What was Raj holding in his hand before Stuart opened the door?,132626,The Big Bang Theory,15.15-17.95,s10e10_seg02_clip_10,Raj was holding a red tool box 10588,She agreed to give them another puppy,She agreed to buy drinks for everyone,She agreed to carry their baby.,She agreed to having lunch with them,She agreed to pay for all the expenses. ,2,What else did Phoebe agree on after giving the couple the puppy?,132627,Friends,42.9-50.9,friends_s04e11_seg02_clip_19,She agreed to carry their baby. 10589,Ross,Chandler,Joey,Racheal,Monica,2,Who does Lori hug when she comes to the restaurant for dinner?,132628,Friends,43.66-49,friends_s06e20_seg02_clip_10,Joey 10590,goes back to his bedroom,goes to the bathroom,sits down to watch TV,leave the apartment,sit down at the desk,0,What does Leonard do after he gets his juice from the kitchen,132629,The Big Bang Theory,39-57.43,s03e19_seg02_clip_00,goes back to his bedroom 10591,Sheldon says to Leonard that they need a cryogenic bass.,Sheldon says to Leonard that they need a cryogenic centrifugal pump.,Sheldon says to Leonard that they need a cryogenic pipe set.,Sheldon says to Leonard that they need a cryogenic lab kit.,Sheldon says to Leonard that they need a cryogenic beaker.,1,What does Sheldon say that they need when he's talking to Leonard?,132630,The Big Bang Theory,0-16.82,s04e15_seg02_clip_11,Sheldon says to Leonard that they need a cryogenic centrifugal pump. 10592,ER,examining room,outside,desk,dinner,3,Where is House when Taub tell him he found Danny's father?,132631,House M.D.,0-7.5,house_s07e17_seg02_clip_15,desk 10593,You are dying ,I love you ,We are breaking up ,Let's get dinner ,Sorry ,4,What does Cuddy tell Jerry when they are at the coffee house? ,132632,House M.D.,34.79-57.36,house_s07e23_seg02_clip_21,Sorry 10594,a magazine,papers on a clip board,a baby book,a newspaper,the bible,1,what is rebecca flipping through after alex tells her he passed the interns exam?,132633,Grey's Anatomy,65.44-75.12,grey_s03e25_seg02_clip_21,papers on a clip board 10595,Penny hugs her. ,Penny congratulates her. ,Penny consoles her. ,Penny yells at her. ,Penny strangles her. ,3,What is Penny's reaction after Amy gets the quarter in the glass for the third time?,132634,The Big Bang Theory,37.38-40.03,s05e19_seg02_clip_11,Penny yells at her. 10596,taub paid her to slap foreman.,chase tells her to do so,it was all part of foreman's plan,his plan back fires on him,she has always wanted to slap foreman. ,3,why does foreman get slapped by the nurse after she talks with chase?,132635,House M.D.,57.21-74.89,house_s07e20_seg02_clip_17,his plan back fires on him 10597,Howard thinks Stuart is lying about the power.,Howard wants to play XBox.,Howard thinks Stuart should have called them immediately.,The freezer with the last food that his mother cooked before her death is defrosting.,Bernadette promised Howard that they could watch television.,3,Why is Howard so upset when Stuart tells him that the power is out?,132636,The Big Bang Theory,29.71-60.02,s08e18_seg02_clip_03,The freezer with the last food that his mother cooked before her death is defrosting. 10598,Feeding Rachel. ,Sitting in a chair with Phoebe. ,Sitting in a chair with Rachel. ,Hugging Rachel. ,Eating a slice of pizza. ,4,What is Ross doing when he is sitting next to the foosball table?,132637,Friends,0-1.46,friends_s04e13_seg02_clip_08,Eating a slice of pizza. 10599,Castle thought the inmates and guards were all gang members.,Castle thought the inmates and guards were all actors from the school.,Castle thought the inmates and guards were all Hudson University students.,Castle thought the inmates and guards were all the missing people from the subway.,Castle thought the inmates and guards were all kidnapped and brainwashed people.,2,Who did Castle think the inmates and guards were when he was trying to figure out what was going on?,132638,Castle,74.89-78.26,castle_s08e03_seg02_clip_16,Castle thought the inmates and guards were all Hudson University students. 10600,Esposito,Ryan,Vikram,Gates,Lanie,2,Who walks in after to interrupt Castle and Beckett?,132639,Castle,51.54-56.35,castle_s08e07_seg02_clip_06,Vikram 10601,Men don't feel pain,He didn't have any pain,He wanted to seem like a man,There were falsehoods in the history,Medication would cause him to lose his job,4,Why was the patient hiding the pain when Chase was discussing the case with the team?,132640,House M.D.,32.19-65.36,house_s03e11_seg02_clip_08,Medication would cause him to lose his job 10602,Joey has a cigar in his mouth.,Joey has a sandwich in his mouth.,Joey has a cookie in his mouth.,Joey has an apple in his mouth.,Joey has a baby in his mouth.,0,What does Joey have in his mouth when Chandler ask you hear that?,132641,Friends,5.49-7.02,friends_s02e20_seg02_clip_07,Joey has a cigar in his mouth. 10603,House uses a nearby vending machine.,House sits on a staircase.,House sits down at a table.,House chooses a snack for Wilson.,House motions for Wilson to follow him.,1,What does House do after walking past Wilson?,132642,House M.D.,44.51-50.74,house_s05e21_seg02_clip_20,House sits on a staircase. 10604,Her dad.,Castle,A random person other than him.,"Sergei, her husband.",Her son.,3,Who does Anya say she was aiming for when she shot Oborin?,132643,Castle,13.8-30.83,castle_s08e11_seg02_clip_24,"Sergei, her husband." 10605,He was buttoning up his shirt.,He was ordering a cake.,He was sitting down.,He was crying.,He was eating.,0,What was Barney doing when Wendy said all this time?,132644,How I Met You Mother,31.34-40.33,met_s03e11_seg02_clip_01,He was buttoning up his shirt. 10606,About cars,How Monica was going to get killed,Joey's new job,Cats,Movies,1,What were they talking about before Ross came in?,132645,Friends,0-6.72,friends_s02e02_seg02_clip_01,How Monica was going to get killed 10607,She ask Shelton to escort them to a dance soiree,She ask Shelton to escort them home,She ask Shelton to escort them to the movies,She ask Shelton to escort them to a museum,She ask Shelton to escort them a vineyard,0,Where does Bernadette ask Shelton to escort them to before they leave the bar,132646,The Big Bang Theory,15.76-29.94,s04e21_seg02_clip_09,She ask Shelton to escort them to a dance soiree 10608,a nice guy,a friend,a colleague,a mature guy,an enemy,4,What did Sheldon consider Will to be when he spoke of Will?,132647,The Big Bang Theory,8.24-22.88,s03e05_seg02_clip_06,an enemy 10609,Dr.Harard is in front of the operating table kneeling to catch the baby.,Dr.Harad has run out of the room.,Dr.Harad is under the tabel fixing the monitor engines.,Dr.Harad is still asleep.,Dr.Harad is in break room.,0,Where is Dr. Harad when the labour of child birth is going on?,132648,Friends,0-2.36,friends_s05e03_seg02_clip_13,Dr.Harard is in front of the operating table kneeling to catch the baby. 10610,A pen. ,A glass. ,A water bottle. ,A coffee mug. ,A spatula. ,3,What does Martha have in her hand when she puts up her other hand?,132649,Castle,0-1.76,castle_s03e15_seg02_clip_16,A coffee mug. 10611,Rachel was eating in the kitchen,Rachel was siting in the kitchen alone,Rachel was in the bedroom alone,Rachel wasn't doing anything in particular,Rachel was crouching behind the couch,4,What was Rachel doing after Monica notices her and asks her what she was doing?,132650,Friends,17.99-33.5,friends_s05e19_seg02_clip_04,Rachel was crouching behind the couch 10612,The man is Swiss.,The man is German.,The man is Mediterranean.,The man is Native American.,The man is African.,2,What ethnicity is the man that Monica is talking about when she is talking to the pizza man?,132651,Friends,44.38-48.08,friends_s01e04_seg02_clip_13,The man is Mediterranean. 10613,Mr.Geller is getting handsy with Mrs.Geller,Mrs.Geller is hurting Mr.Geller,Mr.Geller is talking about a secret,Mrs.Geller is going to the bathroom,Mr.Geller farts loudly,0,What does the girl in the shower cover her ears after hearing?,132652,Friends,30.25-39.71,friends_s02e16_seg02_clip_08,Mr.Geller is getting handsy with Mrs.Geller 10614,Amy sneezes all over Sheldon.,Amy pulls Sheldon into her apartment.,Amy hits Sheldon in the stomach.,Amy shuts the door.,Amy vomits on Sheldon's shoes.,3,What does Amy do after telling Sheldon never mind?,132653,The Big Bang Theory,57.43-67.24,s06e10_seg02_clip_00,Amy shuts the door. 10615,Photographer.,Dancer.,Stripper.,Model.,Porn Star.,2,What profession does Hans say he works in when he is speaking with Beckett and Castle?,132654,Castle,32.85-57.82,castle_s03e07_seg02_clip_12,Stripper. 10616,Remy,Cuddy,Cameron,Wilson,Foreman,2,Who answered House when he asked if the patient was Canadian?,132655,House M.D.,5.64-11.27,house_s04e13_seg02_clip_01,Cameron 10617,cruise,vacation,sking,spa ,camping,3,what trip did Martha say she was taking after saying it was not a guilt trip?,132656,Castle,37.32-47.33,castle_s05e19_seg02_clip_00,spa 10618,A dismembered pig.,A dismembered goat.,A pile of dog feces.,A filty litter tray.,A pile of old garbage.,0,What was the odor that Park and Taub thought was mold when they were investigating the house?,132657,House M.D.,36.06-56.15,house_s08e18_seg02_clip_03,A dismembered pig. 10619,after the audition,when tired,when dead,when you get the role,after practice,2,When did Martha say there would be time to sleep before the phone rang?,132658,Castle,61.9-73.73,castle_s03e07_seg02_clip_00,when dead 10620,Behind the curtain. ,Under the bed. ,In the closet. ,On the other side of the counter. ,Behind the couch. ,4,Where is Ross hiding when he is at Mona's place?,132659,Friends,0-2.44,friends_s08e17_seg02_clip_09,Behind the couch. 10621,An umbrella. ,Her purse. ,Her jacket. ,Food. ,Coffee. ,1,What is Phoebe carrying when she walks into her boyfriend's office?,132660,Friends,0.81-3.24,friends_s05e21_seg02_clip_12,Her purse. 10622,"Gaslamp, an underground popart club. ","Gaslamp, an underground rave club. ","Gaslamp, an undergroung vampire club. ","Gaslamp, a private goth society. ","Gaslamp, a private steampunk society. ",4,Where do Beckett and Castle wind up when they are on an investigation?,132661,Castle,84.77-85.22,castle_s03e04_seg02_clip_17,"Gaslamp, a private steampunk society. " 10623,Ryan says he and Beckett will come.,Ryan says he is with Beckett.,Ryan says Castle may want to go.,Ryan says he will be combing through prison records.,Ryan invites Esposito to Chinatown.,1,How does Ryan respond after Esposito asks if Ryan wants to check out Grand Central?,132662,Castle,20.03-30.49,castle_s04e04_seg02_clip_11,Ryan says he is with Beckett. 10624,Painted over it,Sat in a chair,Cried ,Sat in paint,Got it professionally painted,3,What did Joey do with the sign before Phoebe showed up,132663,Friends,20.68-41.09,friends_s10e17-18_seg02_clip_15,Sat in paint 10625,Eva,Vivial,Jolie,Cameron,Juliet,3,"Who was House talking to when he said ""Stop talking""?",132664,House M.D.,47.07-50.8,house_s01e14_seg02_clip_00,Cameron 10626,Park assumes it's about Cameron.,Park assumes it's about House.,Park assumes it's about Popo.,Park assumes it's about Taub.,Park assumes it's about Adams.,2,Who does Park assume the situation between she and Chase is about when they are riding the elevator?,132665,House M.D.,11.04-14.72,house_s08e16_seg02_clip_26,Park assumes it's about Popo. 10627,Sheldon thought that Leonard had a point.,"Sheldon was insulted and frustrated, but knew if he protested he'd just be mocked further.",Sheldon was sad that Leonard didn't respect him.,Sheldon was sad that Raj and Howard didn't come to his defense.,Sheldon was happy that people were paying attention to him.,1,How did Sheldon feel when Leonard told him to lighten up?,132666,The Big Bang Theory,10.43-24.73,s09e03_seg02_clip_15,"Sheldon was insulted and frustrated, but knew if he protested he'd just be mocked further." 10628,Clown.,Fool.,Loser.,Bitch.,Bad actress.,3,What did Winters call Stephanie after he body slammed her? ,132667,Castle,46.98-52.91,castle_s05e06_seg02_clip_24,Bitch. 10629,Sheldon cough,Sheldon explain it to Leonard,Sheldon call Leonard idiot,Sheldon give Leonard food,Sheldon give Leonard drink,1,What did Sheldon do after ask Leonard about anthropic principle?,132668,The Big Bang Theory,36.31-45.62,s06e01_seg02_clip_01,Sheldon explain it to Leonard 10630,Phoebe,Chandler,Joey,Ross,Mr. Treeger,2,Who told Mike that he has forgiven him when they were sitting at the table?,132669,Friends,0-8.71,friends_s09e03_seg02_clip_12,Joey 10631,They don't have a website.,The website is down.,It's password protected.,Their computer system went down.,He got an error message 404.,2,Why did the CIA tech say he couldn't immediately get into Mia's school website after Sophia asked if they had a website? ,132670,Castle,48.29-54.61,castle_s04e16_seg02_clip_21,It's password protected. 10632,The couch.,A horn.,The piano,The table.,The stove.,2,What made a noise after Rachel sat on it? ,132671,Friends,55.46-69.71,friends_s04e18_seg02_clip_12,The piano 10633,punishment meted out by magical girls,money,connection,bad publicity,lives,4,"What does a mistake cost, in House's opinion, in his profession, when he was talking to Cameron?",132672,House M.D.,33.2-36.93,house_s01e14_seg02_clip_21,lives 10634,To apologize to Ted.,To meet his mom.,To her parents house.,To go shopping.,Out to the bar.,3,Where will Barney take Abby after stopping by his room?,132673,How I Met You Mother,76.03-111.06,met_s03e13_seg02_clip_17,To go shopping. 10635,He will not share a room with another patient,He will not let the nurses bathe him,He will not let the doctors do any further test,He will not accept any injections,He will not submit to any tests,2,What else does Sebastian not comply with after refusing Cameron?,132674,House M.D.,75.11-81.98,house_s02e04_seg02_clip_13,He will not let the doctors do any further test 10636,his office,kitchen,living room,bathroom,bedroom,3,What room is House sitting in with the IV pole when talking to Kutner?,132675,House M.D.,3.57-11.15,house_s04e15_seg02_clip_16,bathroom 10637,Monica said that she was jealous of Phoebe. ,Monica said that she was thinking of breaking up with Chandler. ,Monica said that she would never have that feeling again. ,Monica said that Phoebe was bringing her down. ,Monica said that her steaks were burning. ,2,"What did Monica say after expressing her sadness that she missed ""that feeling"" with Chandler?",132676,Friends,34.12-42.18,friends_s07e18_seg02_clip_05,Monica said that she would never have that feeling again. 10638,The monkey ended up going to Rachel.,The monkey ended up going to Ross.,The monkey ended up going to Mr. Heckles.,The monkey ended up in an Animal Control cage.,The monkey ended up going to Chandler.,3,Where did the monkey end up going when Ross and Mr. Heckles try to get her to choose an owner?,132677,Friends,0-15.85,friends_s01e19_seg02_clip_18,The monkey ended up in an Animal Control cage. 10639,She says get out,she come back inside,she says you idiot,she says are you dumb,Where are you going?,4,What does the woman say after the scene starts?,132678,The Big Bang Theory,2.4-60.02,s03e13_seg02_clip_07,Where are you going? 10640,Wilson is sitting on the porch ,Wilson is sitting on the bed,Wilson is sitting on the stool,Wilson is sitting on the couch,Wilson is sitting on the floor,3,Where is Wilson when House walked into the room?,132679,House M.D.,0-13.65,house_s08e19_seg02_clip_12,Wilson is sitting on the couch 10641,2,4,3,1,8,3,How many shooters were described at the scene of the crime when they are talking?,132680,Castle,22.3-27.31,castle_s03e08_seg02_clip_02,1 10642,Lily's hand,His jacket,A drink,A plate of food,His cell phone,2,What was Marshall holding when Ted asked what happened?,132681,How I Met You Mother,1.8-5.69,met_s02e01_seg02_clip_14,A drink 10643,A cell phone.,A beer.,A plate of nachos.,A pineapple.,Marshall's Bar exam results.,0,What is Barney holding in his hand when he is sitting on the arm of the couch?,132682,How I Met You Mother,4.34-8.06,met_s03e08_seg02_clip_00,A cell phone. 10644,Because Leonard Breath Smelled,Because Leonard Farted,Because Leonard referred to a snail being in her mouth while kissing.,Because Leonard started to pick his nose,Because Leonard started to eat Raw Garlic.,2,Why did Leonard's date get disgusted when they where talking on the couch?,132683,The Big Bang Theory,24.53-59.83,s05e15_seg02_clip_12,Because Leonard referred to a snail being in her mouth while kissing. 10645,At Longarzo's apartment.,At Longarzo's office.,At Vikram's office.,At LokSat's home.,At LokSat's office.,0,Where does Beckett say uniforms should wait before Castle walks in?,132684,Castle,24.4-31.37,castle_s08e08_seg02_clip_22,At Longarzo's apartment. 10646,Monopoly,Strip Poker,Life,Stratego,Battleship,1,What was Chandler's suggestion for a game after Phoebe picked him?,132685,Friends,29.59-36.56,friends_s03e25_seg02_clip_07,Strip Poker 10647,ugly,attractive,old,mean,cruel,1,How did Leonard feel of Mrs Latham when he drove with her?,132686,The Big Bang Theory,38.33-46.75,s04e15_seg02_clip_13,attractive 10648,They were discussing how Chase stole blood from a corpse that caused Foreman to give the wrong treatment.,The Superbowl.,Football.,Basketball.,Nothing.,0,What was Chase and Foreman talking about when House walked in the room?,132687,House M.D.,10.96-14.61,house_s06e04_seg02_clip_02,They were discussing how Chase stole blood from a corpse that caused Foreman to give the wrong treatment. 10649,Foreman writes on a notepad.,Foreman whispers something to Thirteen.,Foreman walks out of the office.,Foreman sits in House's desk chair.,Foreman starts pacing around the office.,2,What does Foreman do after he mentions someone being killed?,132688,House M.D.,40.43-46.07,house_s05e09_seg02_clip_21,Foreman walks out of the office. 10650,spaghetti,nachos,shrimp,macaroni and cheese,almonds,0,what does gael try to feed robin when they are back home in brooklyn?,132689,How I Met You Mother,32-36.83,met_s03e02_seg02_clip_06,spaghetti 10651,The blood work.,The meeting.,The practice test.,The urine sample.,The dinner date.,0,What does the man wearing glasses tell Dr House to skip after he gives him the money?,132690,House M.D.,15.84-20.69,house_s07e02_seg02_clip_14,The blood work. 10652,They are getting a massage,They are in the lab,They are out on dates,They are at the movies,They are in the Time Machine,3,Where are the guys when Penny calls them to ask for help,132691,The Big Bang Theory,0-15.82,s01e11_seg02_clip_09,They are at the movies 10653,A piece of carpet.,A piece of wood.,A piece of linoleum.,A piece of foam.,A piece of metal.,2,What did Sara move after she bent down? ,132692,Castle,64.17-76.46,castle_s05e15_seg02_clip_17,A piece of linoleum. 10654,Because Esposito treated Ryan like he knows nothing about tampering with locks.,Because Ryan doesn't like Esposito telling him about the bump key.,Because Ryan disagrees with Esposito about the bad guys using a bump key.,Because Ryan knows the bad guys had to use something else besides a bump key.,Because Esposito was telling Ryan what a bump key is and said he doesn't know what it is.,4,Why did Ryan get upset and take the forensic file from Esposito before he said Ryan didn't know about a bump key?,132693,Castle,18.86-29.82,castle_s01e07_seg02_clip_05,Because Esposito was telling Ryan what a bump key is and said he doesn't know what it is. 10655,Ted and Robin were bumped to first class.,Ted and Robin were able to board the plane?,Her lunch had arrived.,Her boss promoted her.,Her mother found her earring.,4,Why did the lady say the phone call was good news after she answered the phone?,132694,How I Met You Mother,32.65-43.02,met_s02e15_seg02_clip_00,Her mother found her earring. 10656,Day Planner,Daily Planner,Baby Planner,Baby Daily,Daily Baby,1,What was the name of the store before Alvie opened the door? ,132695,House M.D.,27.23-30.36,house_s06e20_seg02_clip_03,Daily Planner 10657,Penny is near the computer.,Penny is on a couch.,Penny is sleeping.,Penny is near a table.,Penny sits on floor.,3,Where is Penny when Sheldon is speaking?,132696,The Big Bang Theory,1.18-58.79,s01e15_seg02_clip_13,Penny is near a table. 10658,A night stand,A bus pass,A table,A television and a computer,A binder,3,What objects were described when assessing the crime scene?,132697,Castle,16.2-23.41,castle_s04e12_seg02_clip_05,A television and a computer 10659,In a chair,On the table,On an office desk,In a car,Under an umbrella,0,Where is Roy sitting when he asks for House?,132698,House M.D.,4.6-11.5,house_s06e04_seg02_clip_00,In a chair 10660,He will only show his head in the photo.,Offers to photo-shop his head onto a new body.,Says he will give him better hair using special software.,Howard tells Raj he is going to airbrush his features.,Says he will give him a six-pack with the computer.,4,How does Howard attempt to boost Raj's confidence when he's posing?,132699,The Big Bang Theory,19.23-30.77,s06e14_seg02_clip_10,Says he will give him a six-pack with the computer. 10661,Tag,Phoebe,Chandler,Richard,Monica,4,Who thinks it's a long time when Rachel says she wants to wait a year to get pregnant?,132700,Friends,28.29-33.61,friends_s07e14_seg02_clip_11,Monica 10662,Mia,Hannah,Eva,Cuddy,Janet.,3,"Who was Roy talking to when he said ""I want house""?",132701,House M.D.,5.52-11.5,house_s06e04_seg02_clip_00,Cuddy 10663,Starts typing on the computer,Takes a drink,Holds a picture over her face,Gives Alexis a stack of pictures,Shakes her head no,2,What does Martha do after Alexis says she needs to select a photo?,132702,Castle,88.4-93.55,castle_s02e08_seg02_clip_00,Holds a picture over her face 10664,Pink,green,black,purple,blue,0,"What color is Lanie scrubs when she says ""...but I did find a key sewn into the lining of his pants."" ?",132703,Castle,0-9.68,castle_s07e01_seg02_clip_18,Pink 10665,Ryan.,Esposito.,Castle.,Beckett.,Montgomery.,1,Who does Ryan say he can't believe he missed that after Castle mentions a deposit slip for Rampart Federal?,132704,Castle,54.42-62.33,castle_s03e07_seg02_clip_19,Esposito. 10666,Hit by a bus,Attacked by dogs,Fall down a sewer,Fall down an elevator shaft,Spontaneously combust,0,How does the woman imagine that House might die after House tells her she's afraid?,132705,House M.D.,9.04-14.5,house_s04e08_seg02_clip_26,Hit by a bus 10667,Calderon gave Castle a drink,Calderon tear the picture up,Calderon walk away,Calderon shake Castle hand,Calderon put the wine glass down,4,What did Calderon do after he take the picture from Castle? ,132706,Castle,52.7-62.33,castle_s03e05_seg02_clip_22,Calderon put the wine glass down 10668,Fridge,Table,Empty chair,Bookshelf,Sink,3,What is to the left of the door way when House leaves his office?,132707,House M.D.,17.95-26.69,house_s06e19_seg02_clip_22,Bookshelf 10669,Penny is with Sheldon.,Penny is with Leonard.,Penny is with Stuart.,Penny is with Amy.,Penny is with Raj.,1,Who is Penny with when she is waiting at the restaurant?,132708,The Big Bang Theory,30.37-35.27,s09e15_seg02_clip_07,Penny is with Leonard. 10670,Battery pack,Cell phone,Black bag ,Board game,Tool kit,2,What did Sheldon pull from the desk drawer after telling Leonard about the car?,132709,The Big Bang Theory,33.06-39.55,s04e15_seg02_clip_11,Black bag 10671,She started crying.,She slapped him.,She stood up.,She poured a drink.,She took a drink.,0,What did Monica do when Dr. Burke said how much older he was?,132710,Friends,26.8-35.93,friends_s02e15_seg02_clip_16,She started crying. 10672,Sheldon had already ordered the food before they left.,Sheldon wouldn't get into the car if they didn't agree to get takeout.,It was on the way and they didn't know Bernadette was cooking.,Sheldon wouldn't stop talking until Leonard agreed to get takeout.,Sheldon wouldn't stop kicking Leonard's seat.,4,Why does Leonard say they got Sheldon takeout after Bernadette asks him why he did that?,132711,The Big Bang Theory,27.53-32.7,s06e19_seg01_clip_01,Sheldon wouldn't stop kicking Leonard's seat. 10673,Ryan finds the broken taillight on the road.,Ryan finds the broken taillight in the grass on the side of the road.,Ryan finds the broken taillight underneath another car.,Ryan finds the broken taillight in the creek bed.,Ryan finds the broken taillight hidden in a trash can.,0,Where does Ryan find the broken taillight when searching the scene for Castle?,132712,Castle,67.25-78.59,castle_s07e01_seg02_clip_01,Ryan finds the broken taillight on the road. 10674,A coffee mug.,A medicine bottle.,A syringe.,A bedpan.,A blanket.,0,What did House grab off a shelf before he said her parent's tried to kill her?,132713,House M.D.,64.71-69.18,house_s05e04_seg02_clip_23,A coffee mug. 10675,A highfive,A sandwich,A hug,A dirty look,A handshake,2,What does Monica give Joey after he walks out of his room?,132714,Friends,54.18-61.78,friends_s07e19_seg02_clip_14,A hug 10676,Joey,Monica,Rachel,Gunther,Phoebe,4,Who is the last person to join the group hug when they are in the coffee shop?,132715,Friends,13.81-33.01,friends_s02e02_seg02_clip_14,Phoebe 10677,He is sitting down. ,He is standing between Josh and Raj.,He is standing by the window.,He is standing next to Bernadette.,He is laying down on the couch. ,1,Where is Howard after Bernadette said keep dreaming?,132716,The Big Bang Theory,3.91-9.63,s08e20_seg02_clip_13,He is standing between Josh and Raj. 10678,Chandler says Janice would have liked the chairs decorated with birds.,Chandler says Phoebe would have liked the chairs decorated with birds.,Chandler says Monica would have liked the chairs decorated with birds.,Chandler says Kip would have liked the chairs decorated with birds.,Chandler says Ross would have liked the chairs decorated with birds.,3,Who does Chandler say would have liked the chairs decorated with birds when shopping with Joey?,132717,Friends,22.81-29.94,friends_s01e12_seg02_clip_11,Chandler says Kip would have liked the chairs decorated with birds. 10679,That Emily kicks a lot,That Emily has the hiccups almost every day,That Emily is the smallest,That Emily is the biggest,The Emily is lodged in her ribs,1,What does Dorie tell Izzie about Emily when she is touching her stomach?,132718,Grey's Anatomy,14.88-20.47,grey_s02e10_seg02_clip_01,That Emily has the hiccups almost every day 10680,Castle finds a prescription refill.,Castle finds a current newspaper.,Castle finds fresh blood on the mail.,Castle finds keys to a GTO car.,Castle finds a recipeted dated an hour ago.,3,What does Castle find when he examines the victim's stack of mail?,132719,Castle,51.53-59.82,castle_s04e15_seg02_clip_15,Castle finds keys to a GTO car. 10681,phone,pencil,newspaper,cup,box,2,What is Phoebe's grandmother holding in her left hand when Phoebe comes into her apartment?,132720,Friends,9.74-14.46,friends_s02e09_seg02_clip_03,newspaper 10682,She was let go,She wanted to be manager,She quite,She moved up,She was demoted,0,"Why did the Manager say Eliska was no longer at her job, after Beckett asked him why Eliska left?",132721,Castle,25.62-42.84,castle_s02e05_seg02_clip_07,She was let go 10683,Chandler was falling out of his seat,Chandler was in the trunk,Chandler was sitting in the back seat,Chandler was not in the car,Chandler was driving the car,2,Where was Chandler when Joey was in the car?,132722,Friends,0-13.28,friends_s02e09_seg02_clip_17,Chandler was sitting in the back seat 10684,Meredith go to the locker room,Meredith remains at the nursery window,Meredith returns to the nurse's station,Meredith goes and sits down in the lobby,Meredith walks out the hospital,1,What does Meredith do after George leave when his beeper went off,132723,Grey's Anatomy,69.77-93.03,grey_s01e02_seg02_clip_07,Meredith remains at the nursery window 10685,He shows Ms. Taylor a picture of the car on his cell phone.,He nods his head.,He writes down notes in his small black notebook.,He turns and looks at officer Ryan.,He shakes Ms. Taylor's hand and walks away with officer Ryan. ,3,What does officer Esposito do after Ms. Taylor says Brad does acknowledging he drives a silver Boxster?,132724,Castle,13.2-21.39,castle_s03e11_seg02_clip_06,He turns and looks at officer Ryan. 10686,Cano Vega Field,Shea Stadium,Wrigley Park,Yankee Stadium,The Met,0,What did Esposito say was the name of the field where Cano Vega was found dead when they were questioning why he was there that night?,132725,Castle,74.5-89.22,castle_s02e15_seg02_clip_01,Cano Vega Field 10687,Her cell phone is ringing loudly.,Another patient with more serious injuries. ,A car crash in the parking lot.,Someone trying to steal a baby from the hospital. ,A crying baby.,4,What has Bailey preoccupied when the patient is being rolled into the hospital?,132726,Grey's Anatomy,75.26-82.3,grey_s02e20_seg02_clip_03,A crying baby. 10688,His slice of cobbler,A puzzle,His shower,Sex with Bonnie,A kiss,4,What does Ross say he wants to finish when he is talking about going upstairs?,132727,Friends,46.21-53.34,friends_s03e25_seg02_clip_19,A kiss 10689,A boulder were on Ryan's legs,A steel beam was on Ryan's legs.,A mattress was on Ryan's leg.,A dresser was on Ryan's leg.,A 100 bound dumbbell was on Ryan's leg.,1,What was laying on Ryan's legs when he was on the ground?,132728,Castle,4.55-8.65,castle_s06e11_seg02_clip_17,A steel beam was on Ryan's legs. 10690,In Rachel and Monica's apartment.,In Ross' apartment.,In the coffee house.,In the college classroom where Ross taught.,In the hallway outside Joey and Chandler's apartment.,2,Where were Rachel and Ross when he took the broom from her.,132729,Friends,0-12.48,friends_s01e02_seg02_clip_12,In the coffee house. 10691,They go to check on Emily to see if she has improved,They go to Cuddy's office to discuss their suspicions,They go to House to tell him their plans,They go to find Emily's mom to tell her they want to search her house,They go to Emily's mothers basement,4,Where do Chase and Adams go after they discuss treating Emily's mother like any other parent?,132730,House M.D.,11.96-22.55,house_s08e19_seg02_clip_06,They go to Emily's mothers basement 10692,He wanted to sound less like himself.,He had a scratchy throat,He was choking on cereal.,He didn't want his mom to recognize his voice.,Phoebe asked him to.,0,Why did Joey change his voice when he was on the phone? ,132731,Friends,23.41-42.02,friends_s02e21_seg02_clip_11,He wanted to sound less like himself. 10693,Mason told him the woman was a sniper and trained in martial arts,Mason told him the woman had a jealous husband,Mason told him the woman is a murder suspect,Mason told him the woman was an ex-assasin,Mason told him the woman was a Navy SEAL,0,Why did Castle look so scared after listening to Mason Wood?,132732,Castle,5.85-14.85,castle_s08e14_seg02_clip_17,Mason told him the woman was a sniper and trained in martial arts 10694,Because Leonard wanted to borrow something.,Because Leonard wanted to ask for money.,Because Leonard was talking with Mikayla.,Because Leonard wanted to warn Raj something about Mikayla.,Because Leonard was light for a cigarette.,3,Why did Leonard wanted to talk with Raj after Mikayla approached him?,132733,The Big Bang Theory,0-47.63,s02e21_seg02_clip_07,Because Leonard wanted to warn Raj something about Mikayla. 10695,Thirteen is shocked.,Thirteen does not believe House at first.,Thirteen is angry with House.,Thirteen is jealous of Cuddy.,Thirteen is Jealous of House.,1,How does Thirteen initially react when House says he was Cuddy's weird boyfriend?,132734,House M.D.,10.01-35.5,house_s07e18_seg02_clip_07,Thirteen does not believe House at first. 10696,laying in the hospital bed,sitting in a chair,checking on a patient,sitting on the window sill,sitting on the floor,0,where is dr. burke when cristina comes into the hospital room?,132735,Grey's Anatomy,3.64-11.38,grey_s03e12_seg02_clip_08,laying in the hospital bed 10697,The color is orange.,The color is vioelt blue.,The color is cyan blue.,The color is yellow.,The color is dim brown.,2,What color is the bathroom stall behind Doctor burke in the before of the final camera still.?,132736,Grey's Anatomy,50.61-58.9,grey_s01e03_seg02_clip_09,The color is cyan blue. 10698,Yellow,Blue,Brown,Black,Red,1,What was the color of Joey's shirt when he was talking to Chandler?,132737,Friends,4.5-8.7,friends_s03e01_seg02_clip_11,Blue 10699,Penny packed a bag.,Penny hugged Sheldon.,Penny said Brawny questionably and looked at her hand., Penny rode a bike. ,Penny called Leonard.,2,What did Penny do after Sheldon said she had brawny hands?,132738,The Big Bang Theory,17.12-25.53,s04e13_seg02_clip_01,Penny said Brawny questionably and looked at her hand. 10700,Phoebe was sitting on a white couch,Phoebe was sitting on a brown couch,Phoebe was sitting on a black couch,Phoebe was sitting on the floor,Phoebe was not in the room,1,Where was Phoebe sitting when Monica and Chandler were talking?,132739,Friends,22.7-27.75,friends_s05e23-24_seg02_clip_02,Phoebe was sitting on a brown couch 10701,Skiing,Shopping at the hotel store,swimming,sleeping,driving a car,1,What does Shelia say Sophie was doing after she was questioned?,132740,Castle,55.64-70.69,castle_s02e12_seg02_clip_21,Shopping at the hotel store 10702,He refuses pills,He refused the card to the specialist,He refuses food,He refuses thermometer,He refuses injection,0,What is patient Sebastian refusing when offered to him by Cameron,132741,House M.D.,15.57-21.53,house_s02e04_seg02_clip_13,He refuses pills 10703,Woody Allen.,Steven Speilberg. ,Martin Scorcese.,Quinten Tarantino.,Stanley Kubrick.,0,Who did Stacy quote about relationships when she and House were at the airport?,132742,House M.D.,112.87-122.02,house_s02e10_seg02_clip_25,Woody Allen. 10704,Foreman resigns from House's team.,Foreman punches Chase in the face.,Foreman turns away in contemplation.,Foreman calls Cuddy for a transfer to Wilson's team.,Foreman hugs House and dances around the room.,2,What does Foreman do after House diagnoses the baby with celiac?,132743,House M.D.,36.42-43.41,house_s02e22_seg02_clip_21,Foreman turns away in contemplation. 10705,She thinks they might travel. ,She thinks they might trash Chandler and Joey's place. ,She thinks they might cook together. ,She thinks they might go skiing. ,She thinks they might play a game. ,1,Why is Phoebe excited when she is with Monica and Rachel?,132744,Friends,0-4.58,friends_s04e13_seg02_clip_10,She thinks they might trash Chandler and Joey's place. 10706,The name of the woman who offers her help is Phoebe.,The name of the woman who offers her help is Emily.,The name of the woman who offers her help is Katie.,The name of the woman who offers her help is Monica.,The name of the woman who offers her help is Samantha.,2,What is the name of the woman at the store who offers to help when Ross and Rachel are shopping?,132745,Friends,46.38-61.03,friends_s08e21_seg02_clip_02,The name of the woman who offers her help is Katie. 10707,"House wrote ""DEATH"" with a dry erase marker on the window glass.","House had written, ""DEATH"" at the bottom of the dry erase board.","House wrote the word ""DEATH"" in the patient's file folder.","House had written ""DEATH"" in the air with his forefinger.","House scribbled, ""DEATH"" on the wall to the left of the conference table.",1,"Where did House write ""DEATH"" when he was talking to Chase, Foreman and Cameron about the similarities between the young boy's and elderly woman's cases?",132746,House M.D.,27.18-31.25,house_s02e17_seg02_clip_04,"House had written, ""DEATH"" at the bottom of the dry erase board." 10708,Elements of the periodic table.,Superheroes,Movie titles,Texas cities,Stars,4,What is Sheldon naming when he is walking down the stairs?,132747,The Big Bang Theory,0-27.77,s04e05_seg02_clip_13,Stars 10709,Because people in New York are nasty.,Because people in New York are shy.,Because people are not frienly in New York.,Because people in New York are friendly,Because people in New York are great.,2,Why Estella is upset when talking to Ted?,132748,How I Met You Mother,14.22-58.02,met_s04e03_seg02_clip_12,Because people are not frienly in New York. 10710,Dr. Spain said he though Becky would be the last person,Dr. Spain said he though Cameron would be the last person,Dr. Spain said he though House would be the last person,Dr. Spain said he though Larry would be the last person,Dr. Spain said he though Chase would be the last person,2,Who did Dr. Spain say he thought he would be the last person to have a problem with nonconformity when talking?,132749,House M.D.,11.13-18.25,house_s01e19_seg02_clip_12,Dr. Spain said he though House would be the last person 10711,"He flips through some sheets, attached to a clipboard. ",He gives Cameron a hug. ,"He puts on his hat, while whistling a tune. ","He twirls his cane, while raising an eyebrow.",He grabs the bar of the clinic door and opens it to walk through. ,4,"What does House do after he says,""Then who would I torment?""",132750,House M.D.,13.35-16.02,house_s02e07_seg02_clip_09,He grabs the bar of the clinic door and opens it to walk through. 10712,Because he wanted to practice his woman's voice.,Because he likes to play games.,Because Marshall didn't want Lily to know he was calling Ted.,Because he is getting ready to perform a play and needs to stay in character.,Because he wanted to play a prank on someone.,2,Why did Marshall ask Ted to pretend he was someone else when he called?,132751,How I Met You Mother,12.72-17.37,met_s03e15_seg02_clip_07,Because Marshall didn't want Lily to know he was calling Ted. 10713,He orders some wine,He pays the bill,He eats more food,He makes a phone call,He drops his fork,3,What does Cole do after Scott and Robert leave the table?,132752,Castle,43.19-51.56,castle_s07e13_seg02_clip_02,He makes a phone call 10714,Walgreen's parking lot,McDonald's parking lot,Church parking lot,Taco Bell parking lot,Movie theatre parking lot,3,Where was the location of the sexual acts when the scene begins?,132753,Friends,0-5.73,friends_s09e21_seg02_clip_03,Taco Bell parking lot 10715,Congratulates her,Hugs her,Screams at her,Cries on her shoulder,Thanks her,4,What does Derek do before Nancy leaves?,132754,Grey's Anatomy,0-8.42,grey_s03e06_seg02_clip_23,Thanks her 10716,Barney is sitting on a stool.,Barney is sitting on a sofa. ,Barney is sitting on a desk.,Barney is sitting on the floor.,Barney is sitting in a chair.,4,What is Barney sitting in when he is looking at the magazine?,132755,How I Met You Mother,1.5-17.41,met_s06e12_seg02_clip_07,Barney is sitting in a chair. 10717,Fifty points.,Twenty points.,One hundred points.,Ten points.,All of his points.,3,How many points does House take away from Kutner after his suggestion could kill the patient?,132756,House M.D.,54.15-56.69,house_s04e09_seg02_clip_16,Ten points. 10718,Ryan said he felt fine.,Ryan said his legs hurt.,Ryan said he was hot.,Ryan said he felt nauseous.,Ryan said he could stand.,4,How did Ryan feel after he got up off the ground?,132757,Castle,49.15-52.34,castle_s06e11_seg02_clip_17,Ryan said he could stand. 10719,Dr. Stevens defines brain-mapping.,Dr. Stevens defines a mastectomy.,Dr. Stevens defines an oil change.,Dr. Stevens defines building a dog house.,Dr. Stevens defines sleight of hand.,0,What procedure does Dr. Stevens define when Derek addresses her in the patient's room?,132758,Grey's Anatomy,12.33-25.08,grey_s02e23_seg02_clip_06,Dr. Stevens defines brain-mapping. 10720,Asked if Phoebe remembers a guy from cooking school who put tabasco sauce in everything.,Asked if Phoebe remembers a guy from cooking school who put tea leaves in everything.,Asked if Phoebe remembers a guy from cooking school who put cilantro in everything.,Asked if Phoebe remembers a guy from cooking school who put eggs in everything.,Asked if Phoebe remembers a woman from cooking school who put cilantro in everything.,2,What does Monica ask Phoebe after approaching Ross and Phoebe?,132759,Friends,1.58-8.19,friends_s04e09_seg02_clip_00,Asked if Phoebe remembers a guy from cooking school who put cilantro in everything. 10721,Her gown,Her hair,Her glasses,Her necklace,Her shoes,0,What is Cameron adjusting for Elise after her procedure?,132760,House M.D.,0-7.89,house_s01e07_seg02_clip_06,Her gown 10722,The cop fall to the floor,The cop had a headache,The woman hit the cop.,The woman shouted the cop.,The cop was bleeding,4,What happened to the cop on front Barney when he was talking with a woman?,132761,How I Met You Mother,14.65-61.03,met_s03e18_seg02_clip_13,The cop was bleeding 10723,Sheldon and Amy are dancing when everyone else is sleep,Raj and Lesley are dancing when everyone else is sleep,Penny and Leonard are dancing when everyone else is sleep,Bernadette and Howard are dancing when everyone else is sleep,Amy and Bernadette are dancing when everyone else is sleep,2,Who is dancing when everyone else is sleep,132762,The Big Bang Theory,0-6.27,s10e04_seg02_clip_14,Penny and Leonard are dancing when everyone else is sleep 10724,They are in the hallway,They are in the locker rooms,They are in the waiting room,They are in the lab,They are in a surgery room,1,Where is Foreman when he is asking Cameron and Chase for a favor?,132763,House M.D.,41.47-52.81,house_s06e07_seg02_clip_04,They are in the locker rooms 10725,The breast augmentation surgery. ,The John Doe surgery. ,The liposuction surgery. ,The Jane Doe surgery. ,The face lift surgery. ,3,What surgery is Meredith asked to scrub in on when Mark is talking with her?,132764,Grey's Anatomy,20.22-29.68,grey_s03e19_seg02_clip_04,The Jane Doe surgery. 10726,A trucker in Kew Gardens,A plumber in Queens,A painter in Brooklyn,A catering company in Manhattan,A church in Chinatown ,1,Who does Tory say reported the red van stolen after they find footage of it on the street camera tapes?,132765,Castle,65.35-80.86,castle_s07e15_seg02_clip_05,A plumber in Queens 10727,He said obviously you are not paying attention.,He said to get out of his office. ,He was concerned if he was okay.,He started laughing. ,He thought Marshall needed some time off. ,2,What did the man say after he saw Marshall rubbing his head on the desk?,132766,How I Met You Mother,19.93-36.25,met_s03e20_seg02_clip_07,He was concerned if he was okay. 10728,They can stay at his dad's.,They can stay at a hotel.,They can stay in the car.,They can stay at Esposito's.,She can stay at her studio.,1,What does Castle offer Beckett when he is talking about his mom's first line ritual?,132767,Castle,82.15-91.79,castle_s07e22_seg02_clip_00,They can stay at a hotel. 10729,behind Foreman on the nurse's desk,beside the patient's hospital bed,in the window of the gift shop,on the medical cart in the hallway,on the volunteer's push cart,0,Where was the colorful bouquet of flowers sitting when Foreman told Cameron to start the patient on gabapentin?,132768,House M.D.,12.27-29.54,house_s06e04_seg02_clip_13,behind Foreman on the nurse's desk 10730,orange,blonde,red,brown,hazelle,1,what color hair does laura have when asking pam what she did,132769,Castle,63.38-72.18,castle_s06e16_seg02_clip_25,blonde 10731,Laptop.,In front of a desktop computer.,Flowers.,A series of colorful lamps.,A window is in front of him.,1,What is Lucas sitting in front of when he shows the girl in a school uniform?,132770,Castle,0-6.1,castle_s06e15_seg02_clip_23,In front of a desktop computer. 10732,"House let Foreman know that if he ever wants to get ahead in this line of work, it's especially important to exercise some humility.",House told Foreman that humility is an especially important quality when you are working under him.,House told Foreman that humility is especially important when you are trying to get what you want.,House felt that it is especially important to be humble when you are smarter than everyone else.,"House said that humility is an important quality, especially if you are wrong a lot.",4,Why did House say that humility is especially important when he and House were discussing Hamilton?,132771,House M.D.,38.29-42.21,house_s01e09_seg02_clip_20,"House said that humility is an important quality, especially if you are wrong a lot." 10733,Howard says the trick is to make sure the guard is distracted. ,Howard says the trick is to make sure there's no one around to see you. ,Howard says the trick is to carry it to your car like you own it. ,Howard says the trick is to make sure Bernadette never finds out. ,Howard says the trick is to make sure that the key is hidden. ,2,What does Howard say is the trick to taking things from NASA when he is talking with the group?,132772,The Big Bang Theory,18.63-20.19,s04e01_seg02_clip_00,Howard says the trick is to carry it to your car like you own it. 10734,Taub was 5'6 and had a receding hair line?,Taub inherited black hair.,Taub had rough hair.,Taub had hair on his back.,"Taub eyes were black, which he hated.",0,Why did Taub say he hated genetics when he was looking at a computer screen?,132773,House M.D.,4.01-6.68,house_s06e18_seg02_clip_13,Taub was 5'6 and had a receding hair line? 10735,target,kroger,walmart,the docks,piggly wiggly,3,Where did Monica go to buy fruit before she made jam?,132774,Friends,11.5-14.93,friends_s03e03_seg02_clip_00,the docks 10736,She said his name was Justin.,She said his name was Fred. ,She said his name was Clyde.,She said his name was Pete.,She said his name was Daniel.,4,What is the name that Cathy said her fiance' was after she introduced him to Ted?,132775,How I Met You Mother,30.66-38.45,met_s03e08_seg02_clip_18,She said his name was Daniel. 10737,The patient staying awake for over a week,The patient hiccuping for over a week,House was not hooked,The patient hiccuping for over a month,The patient staying awake for over a month,1,How does Cameron hook House on a case when they're walking and talking about Cameron's patient?,132776,House M.D.,31.16-41.4,house_s05e21_seg02_clip_04,The patient hiccuping for over a week 10738,1009,3455,5334,4322,3578,4,What extension number did House tell Wilson to call when they were on the phone? ,132777,House M.D.,17.96-23.94,house_s04e06_seg02_clip_15,3578 10739,Erika checked into a hotel.,Erika went to buy drugs.,Erika went back to school.,Erika left with a strange man.,Erika went to a restaurant to meet someone.,0,Where did Erika go after her parents dropped her off at the airport?,132778,Castle,63.02-69.32,castle_s05e24_seg02_clip_04,Erika checked into a hotel. 10740,Put the cat in a bag and throw it in the river if she was close to the river.,Putting the cat up for adoption.,Leaving the cat outside.,Allergy shots.,Suffer in silence.,0,What did House suggest Mandy do when she kept complaining about ever treatment he suggested for her allergy?,132779,House M.D.,28.99-37.91,house_s02e04_seg02_clip_05,Put the cat in a bag and throw it in the river if she was close to the river. 10741,He got a call from Carol. ,He thinks that they hate it. ,He thinks they really like it. ,He got a call from a woman. ,He thinks they are disappointed in him. ,2,Why is Ross so excited after he plays music for his friends?,132780,Friends,8.01-28.34,friends_s04e07_seg02_clip_06,He thinks they really like it. 10742,Jam,cookies,cake,dinner,breakfast,0,What is Monica making after the went to the docks?,132781,Friends,2.49-5.91,friends_s03e03_seg02_clip_00,Jam 10743,Gather up the newspapers,Read her newspaper's review,Go online for reviews,Tell her psychic friends,Leave,1,What does Chandler ask Phoebe to do after Joey reads the review in his newspaper?,132782,Friends,48.92-53.81,friends_s02e10_seg01_clip_00,Read her newspaper's review 10744,Drug abuse,Cancer,Migraines,Blindness,Stroke,1,What illness or disease have have before it caused her to lose her health?,132783,House M.D.,17.14-18.94,house_s03e19_seg02_clip_20,Cancer 10745,He tells her to live long and prosper. ,He tells her to go home. ,He tells her to go away. ,He tells her it gets funnier every time. ,He asks why he's laughing then. ,4,What is James's response to Carrie when she says that he isn't funny?,132784,The Big Bang Theory,25.77-29.97,s07e14_seg02_clip_16,He asks why he's laughing then. 10746,Blue,Orange,Yellow,White,Black,1,What color is Brian's tie when he is speaking with detectives?,132785,Castle,41.21-59.52,castle_s07e11_seg02_clip_07,Orange 10747,With his other family in Maine,In a Chinese culture cult,In a cult in Utah ,A massage shop in Thailand ,In the Indian country ,4,Where did the father go for two years after being asked repeatedly by House?,132786,House M.D.,54.58-70.76,house_s01e13_seg02_clip_21,In the Indian country 10748,Wendy,Sherry,Amber,April,Mindy,0,What name did Monica say is a fat girl name when she walked to the window?,132787,Friends,3.62-13.88,friends_s09e10_seg02_clip_18,Wendy 10749,Get caught in the rain without an umbrella.,Get caught in a winter storm with no coat.,Go hiking in the woods with no shoes.,Go bike riding with no helmet.,Get caught in traffic with gas on 'E'.,0,Which phrase does House use to describe the dilemma when he was trying to get the parents to sign the form?,132788,House M.D.,16.98-22.63,house_s03e21_seg02_clip_02,Get caught in the rain without an umbrella. 10750,Fallon has a blue shirt on,Fallon has a green shirt on,Fallon has a white shirt on,Fallon has a purple shirt on,Fallon has an orange shirt on,2,What color shirt does Fallon have on when he talks to Beckett about a possible terrorist event?,132789,Castle,39.16-53.52,castle_s03e17_seg02_clip_18,Fallon has a white shirt on 10751,Rachel was standing next to Luisa.,Rachel was standing next to Mr. Heckles.,Rachel was standing next to Chandler.,Rachel was standing next to no one; she was alone by the window.,Rachel was standing next to Ross.,2,Who was Rachel standing next to when the monkey went inside the Animal Control cage?,132790,Friends,0-19.97,friends_s01e19_seg02_clip_18,Rachel was standing next to Chandler. 10752,Dr.Karev was not in the country.,Dr.Karev was out drinking.,Dr.Karev was on vacation,Dr.Karev was at home.,Dr.Karev was on call.,4,Why did Izzie think Dr.Karev might be sleeping after Dr.Karev did not respond to the page for quints?,132791,Grey's Anatomy,11.38-39.38,grey_s02e10_seg02_clip_20,Dr.Karev was on call. 10753,Catalyn,Carick,Cold,Catherine,Gail Rosten,4,who did Janine call when Janine told with Ross ?,132792,Friends,0-29.99,friends_s06e15-16_seg02_clip_20,Gail Rosten 10754,Monitor his keys. ,Monitor his Facebook for any activity. ,Monitor download activity on his laptop. ,Monitor his windows account. ,Monitor the scientific publications to see if any of Sheldon't work has been published. ,4,What does Sheldon suggest that the officers do after he tells them about the information on his laptop?,132793,The Big Bang Theory,41.89-44.91,s03e13_seg02_clip_01,Monitor the scientific publications to see if any of Sheldon't work has been published. 10755,Robin rolls her eyes at Barney,Barney starts laughing,Barney falls off his chair,Barney starts looking around,Barney picks up his drink and looks at it,4,What happens after Barney looks at Ted?,132794,How I Met You Mother,2.41-5.12,met_s03e17_seg02_clip_01,Barney picks up his drink and looks at it 10756,"""What time is it?""","""Are you hungry?""","""Why is it so cold in here?""","""Are we nuts here?""","""What is that smell?""",3,What does the man in the black say after he takes off his glasses?,132795,Friends,8.55-13.69,friends_s02e15_seg02_clip_16,"""Are we nuts here?""" 10757,A poodle.,A tennis ball.,A diamond ring.,A beer.,A coat.,4,What is Castle holding when he said infallible super-cop?,132796,Castle,4.01-6.24,castle_s07e17_seg02_clip_14,A coat. 10758,Julie comes into the apartment.,Chandler comes into the apartment.,Ross comes into the apartment.,Joey comes into the apartment.,Janice comes into the apartment.,3,Who comes into the apartment when Monica is standing in the kitchen?,132797,Friends,37.14-41.27,friends_s03e22_seg02_clip_10,Joey comes into the apartment. 10759,Paris.,Los Angeles.,Hawaii.,Tahiti.,Canada.,4,Where did Ted say she married her husband when ted asked her about her wedding?,132798,How I Met You Mother,31.63-40.01,met_s02e09_seg02_clip_09,Canada. 10760,Stacy.,Cameron.,Cuddy.,Elizabeth.,Sarah.,3,Who was Greta talking about when she told Fletch that she would be back?,132799,House M.D.,0-5.49,house_s02e10_seg02_clip_25,Elizabeth. 10761,Joey is behind the couch.,Joey is in the kitchen.,Joey is next to the refrigerator.,Joey is in her bedroom.,Joey is in front of the dart board.,4,Where is Joey standing when he apologizes to Rachel?,132800,Friends,30.01-36.32,friends_s07e02_seg02_clip_18,Joey is in front of the dart board. 10762,Benny thinks Beckett is naturally a loud person.,Benny is sensitive to loud noises.,Benny has hearing aids.,Benny doesn't like it when people shout at him.,Benny's head hurts.,4,Why does Benny want Beckett and Castle to not talk so loud when he is telling them about craps?,132801,Castle,38.13-56.74,castle_s02e23_seg02_clip_19,Benny's head hurts. 10763,graham was lousy,graham was okay,graham is gifted,graham was mediocre ,graham was a king,2,What did grahams professors say about his art skills when esposito and ryan went to talk to him?,132802,Castle,21.16-23.51,castle_s08e05_seg02_clip_23,graham is gifted 10764,He pointed a finger at Castle.,He pulled out a gun.,He left the room.,He turned around.,He flashed a knife.,2,What did Tyson do after he told Castle that he would be dead?,132803,Castle,60.44-69.53,castle_s05e05_seg02_clip_16,He left the room. 10765,Castle said the pay phone was $0.95,Castle said the pay phone was $0.50,Castle did not say how much the pay phone was,Castle said the pay phone was $1,Beckett said the pay phone was $1,3,How much did Castle say the pay phone was after leaving the hiding spot?,132804,Castle,29.74-33.34,castle_s05e08_seg02_clip_07,Castle said the pay phone was $1 10766,Vogler made all personnel decisions,Cuddy fired them all,House got them to quit before he had to fire them,Two quit and he fired the third,House offered for them all to stay but they all quit ,3,How does House explain the dismantling of his team when he is chatting with the patient's husband?,132805,House M.D.,80.96-114.02,house_s03e24_seg02_clip_24,Two quit and he fired the third 10767,Poster,Notebook,Cellphone,Laptop,Desktop,1,Where did Taub find sketches of Atomic structure after searching the locker?,132806,House M.D.,0-7.2,house_s06e08_seg02_clip_07,Notebook 10768,Brad offers to take Robin to the Devils/Rangers hockey game the following night.,Brad offers to take Robin to the Bulls/Lakers game the following night.,Brad offers to take Robin to the Rangers/Canucks hockey game the following night.,Brad offers to take Robin to the Cubs/Braves game the following night.,Brad offers to take Robin to the Rams/Bears game the following night.,2,Where does Brad offer to take Robin after he approaches the table?,132807,How I Met You Mother,27.95-41.76,met_s05e01_seg02_clip_03,Brad offers to take Robin to the Rangers/Canucks hockey game the following night. 10769,howard,ross,phoebe,rachel,joey,4,who comes into the room first when the girls are talking,132808,Friends,26.4-34.23,friends_s09e01_seg02_clip_04,joey 10770,Penny sang a song.,Penny went on a date.,Penny looked at Leonard and shook her head to indicate that was not true.,Penny danced on the floor.,Penny lay on the couch.,2,What did Penny do after Howard guessed 21 seconds had something to do with that too?,132809,The Big Bang Theory,56.74-69.2,s04e08_seg01_clip_01,Penny looked at Leonard and shook her head to indicate that was not true. 10771,Joey thought that you get $100 if you guessed the right number.,"Joey thought that you got $40,000 if you guess correctly.",Joey thought that you got a free meal if you guessed the right number.,"Joey thought that you guess $20,000 rather than buy something for $20,000.","Joey thought that all of your friends get $20,000 if you guessed the right number.",3,"What did Joey think were the rules when he guessed $20,000?",132810,Friends,0-20.6,friends_s06e24-25_seg02_clip_06,"Joey thought that you guess $20,000 rather than buy something for $20,000." 10772,a book on tenants,an internet search,a recording of fernando,A housing contract,his cellphone,3,what does house refer to when telling fernando that he needs to fix the damage?,132811,House M.D.,57.18-66.97,house_s05e12_seg02_clip_20,A housing contract 10773,A bra,A piece of paper,A glass of beer,A hug,A kiss,1,What did Barney give Abby after she said she was feeling wrong?,132812,How I Met You Mother,38.24-45.08,met_s03e19_seg02_clip_18,A piece of paper 10774,Howard demand his Iron Man helmet back from Sheldon. ,Howard demands his parking space back from Sheldon. ,Howard wants his lunch Sheldon stole. ,Howard demands his laptop back from Sheldon. ,Howard wants his car keys back from Sheldon. ,0,What does Howard demand from Sheldon after he storms into Sheldon's office?,132813,The Big Bang Theory,31.34-40.25,s06e09_seg02_clip_01,Howard demand his Iron Man helmet back from Sheldon. 10775,A big lab rat for testing,A big box of fake pills,A big fake human body,A picture of bikini women,A living random chicken,4,Which unusual thing is in the office when Wilson is talking to Masters about House?,132814,House M.D.,0-12.46,house_s07e19_seg02_clip_21,A living random chicken 10776,Monica is annoyed because Rachel is eating too many of the marshmallows.,Monica is annoyed because Rachel is not placing the marshmallows in concentric circles in her dish.,Monica is annoyed because Rachel is wasting the sweet potatoes.,Monica is annoyed because Rachel is placing the marshmallows perpendicular to the sweet potatoes.,Monica is annoyed because Rachel has reorganized her menu.,1,Why is Monica annoyed with Rachel when they are prepping for Thanksgiving?,132815,Friends,13.83-18.04,friends_s03e09_seg01_clip_00,Monica is annoyed because Rachel is not placing the marshmallows in concentric circles in her dish. 10777,He sits on Ross. ,He spins it around. ,He spins Ross in circles. ,He gives Ross a drink. ,He gives Ross a slice of pizza. ,1,What does Joey do after Ross sits down on the recliner?,132816,Friends,42.55-50.42,friends_s03e16_seg02_clip_03,He spins it around. 10778,her burial wishes,her food preferences,her forgiveness,her feelings about dying,her last words to her grandparents,2,What did Foreman ask for from Lupe when he entered Lupe's room?,132817,House M.D.,51.63-72.11,house_s03e20_seg02_clip_19,her forgiveness 10779,Rachel and Ross walk in.,Nobody walks in.,A line of cafeteria ladies.,A group of Jehovah witnesses.,Some local school kids.,0,"Who comes in the door after Monica, Chandler, and Phoebe talk about visiting Joey.",132818,Friends,41.28-52,friends_s05e23-24_seg02_clip_02,Rachel and Ross walk in. 10780,blue,grey,red,black,green,3,What color is Chandler's shirt when he is sitting on the floor with Monica and Emma?,132819,Friends,39.08-45.9,friends_s10e04_seg02_clip_18,black 10781,Everyone outside circle should be beaten.,Spoken like a true circle queen.,Skinny socially privileged get to draw this neat little circle. Everyone inside the circle is normal.,Why would you feel sorry for him?,This kid doesn't have to pretend.,2,What did House say about white privileged people when Cameron talked about being normal?,132820,House M.D.,49.06-56.27,house_s03e04_seg02_clip_10,Skinny socially privileged get to draw this neat little circle. Everyone inside the circle is normal. 10782,Chandler sees Janice approaching behind Joey.,Chandler has sunlight in his eyes.,Chandler had retinal surgery before coming out.,Chandler is thinking of fun times with Joey.,Chandler squints because Joey does not realize he likes Kathy.,4,Why does Chandler squint when Joey confronts him?,132821,Friends,0-4.55,friends_s04e05_seg02_clip_17,Chandler squints because Joey does not realize he likes Kathy. 10783,When Rachel says it is hard to see Ross with Julie Ross says she should have taken a bath before he met Julie.,When Rachel says it is hard to see Ross with Julie Ross says she should have called him before he met Julie.,When Rachel says it is hard to see Ross with Julie Ross says she should have broken up with her boyfriend before he met Julie.,When Rachel says it is hard to see Ross with Julie Ross says she should have written him a letter before he met Julie.,When Rachel says it is hard to see Ross with Julie Ross says she should have said something before he met Julie.,4,What does Ross say when Rachel says it is hard to see him with Julie?,132822,Friends,23.59-29.6,friends_s02e07_seg02_clip_18,When Rachel says it is hard to see Ross with Julie Ross says she should have said something before he met Julie. 10784,gloomy,bored,tired,angry,impressed,4,How did Penny feel when she saw the lab?,132823,The Big Bang Theory,26.11-39.91,s06e05_seg02_clip_03,impressed 10785,Beckett told Castle they could only move ahead from that point,Beckett said she liked to interview suspects after getting to know more about them,Beckett sighed and told Castle they missed clues,Beckett snapped at Castle and said they missed clues,Beckett said nothing to Castle,1,What did Beckett say after Castle said they should have interviewed Mr. Peterson earlier?,132824,Castle,50.03-59.67,castle_s01e02_seg02_clip_12,Beckett said she liked to interview suspects after getting to know more about them 10786,To find out who set him up for burgularizing a jewelry store.,To find out who set him up for stealing earrings.,To get the charges dropped against him.,To find out who set him up for buying a Rolex watch.,To find out who could have pulled off impersonating him buying earrings. ,4,Why did Castle find the advertisement with his name for a lookalike before he finds the impersonator?,132825,Castle,0-6.75,castle_s05e05_seg02_clip_22,To find out who could have pulled off impersonating him buying earrings. 10787,Rachael ,Brady,Tom,Ross,Troy,0,Who bought Monica the phone after her dad called.,132826,Friends,9.52-16.53,friends_s01e08_seg02_clip_02,Rachael 10788,tying his shoe,Wiping off the dry erase board,flipping through a patient file,standing sill,looking at the group from the head of the table,1,What is House doing when Foreman is saying that this is all just a game to him and that he'll reward whoever has the right idea?,132827,House M.D.,27.27-34.79,house_s04e09_seg02_clip_18,Wiping off the dry erase board 10789,A button. ,A piece of hair. ,A ribbon. ,A piece of plastic. ,A needle and thread. ,4,What is Castle holding up with tweezers when he is with Esposito and Ryan?,132828,Castle,44.85-47.54,castle_s08e01_seg02_clip_09,A needle and thread. 10790,I lose my reputation.,I lose my life.,You lose your life.,I lose my house.,I lose my medical license.,4,What does House say will happen if they find out what he done after it has been done?,132829,House M.D.,2.23-7.57,house_s01e14_seg02_clip_17,I lose my medical license. 10791,George was eating a sandwich,George was working on his computer,George was texting on his cellphone,George was looking through a file cabinet,George was cleaning off the top of his desk,1,"What was George doing when Izzie was amused by the term ""Curious George""?",132830,Grey's Anatomy,76.1-85.02,grey_s02e23_seg02_clip_06,George was working on his computer 10792,"The numbers were 0, 9, 8, 7, 6, and 82.","The numbers were 3, 4, 5, 6,7, and 9","22, 33, 44, 55, 66,and 80 were the numbers on the ticket.",There were no numbers on the ticket.,"The numbers were 2, 4, 8, 19, 41, and 79",4,What were the numbers on the lottery ticket when Castle had it on the board?,132831,Castle,0.46-41.49,castle_s03e14_seg02_clip_23,"The numbers were 2, 4, 8, 19, 41, and 79" 10793,Thirteen walks in and sits next to House,House begins to choke on his drink,Foreman walks in,Wilsonlooks away from him.,Wilson gets up and walks away,3,What happens after House takes a sip of his drink?,132832,House M.D.,43.95-49,house_s05e15_seg02_clip_17,Wilsonlooks away from him. 10794,He hits Leonard.,He walks out of the room.,He gets out of his chair.,He slams the door shut.,He punches a wall. ,2,What does the colonel do when Leonard tells him they can't deliver in time?,132833,The Big Bang Theory,28.75-38.34,s10e03_seg02_clip_17,He gets out of his chair. 10795,The girls saw President Seibert,The girls saw Lesley,The girls saw Lucy,The girls saw Stuart,The girls saw Wil,2,Who did the girls see when they were sitting at the bar,132834,The Big Bang Theory,16.83-31.91,s07e08_seg02_clip_02,The girls saw Lucy 10796,Which is better: Cameron or Cuddy,Which is better: Lakers or the Knicks,Which is better: Ultrasound or an X-Ray,Which is better: Cancer or an autoimmune disease,Which is better: Cancer or listening to your in-laws,3,What does Obyedkov ask is better after he hears what Foreman is going to do to help his son?,132835,House M.D.,51.38-69.14,house_s03e15_seg02_clip_15,Which is better: Cancer or an autoimmune disease 10797,Blue,Pink,Yellow,Green,White,2,What color was the bed pan on the tray at the foot of Derrick's bed shown after Molly left the room?,132836,House M.D.,51.05-55.9,house_s08e21_seg02_clip_15,Yellow 10798,Pizza,Chips,Cookies,Cereal,A sandwich,4,What is Howard eating after Leonard complains about a meeting to decide which cereal to buy?,132837,The Big Bang Theory,12.51-20.45,s09e21_seg02_clip_10,A sandwich 10799,at the cellphone ,at the monitor ,at the window ,at the floor ,at the celling ,1,what was forman looking at when house when sitting down ,132838,House M.D.,5.85-12.6,house_s03e08_seg02_clip_04,at the monitor 10800,Ate her ring after saying it was candy,Ran away,Threw the ring out the window,Gave her a hug,Told her to keep the ring,0,What did Barney do after Abby told him she felt bad keeping the ring,132839,How I Met You Mother,0-62.79,met_s03e19_seg02_clip_18,Ate her ring after saying it was candy 10801,He walked into the room.,He jumped on her bed.,He spit in her face.,He screamed. ,He fell down.,0,What did House do before he started talking to Arlene?,132840,House M.D.,0-9.77,house_s07e11_seg02_clip_05,He walked into the room. 10802,lighting the candles and watching Wheel of Fortune with his mother,polishing his belt buckles,playing cards with his mom,washing his hair and watching Star Trek,singing karaoke,0,"How does Howard say he spends the sabbath after Sheldon asks ""Who's with me?""",132841,The Big Bang Theory,21.31-40.51,s04e19_seg02_clip_08,lighting the candles and watching Wheel of Fortune with his mother 10803,Idea,Money,Time,Evidence,Help,0,What does Castle say that he has after the woman says she does not know what to do?,132842,Castle,15.93-24.58,castle_s06e04_seg02_clip_00,Idea 10804,Chandler's date is severely overweight,Chandler's date knows his family personally,Chandler's date seems like a pathetic mess,Chandler's date is very mean and creepy,Chandler's date has a very annoying voice,2,Why does it seem that Chandler wants to back out of the double date when Joey is telling him not to bail on him?,132843,Friends,36.74-54.63,friends_s01e14_seg02_clip_00,Chandler's date seems like a pathetic mess 10805,changed her clothes,left the room,Hung up the phone,took a drink,ate,2,What did Phoebe do after Chandler walked in the door?,132844,Friends,52.72-56.14,friends_s01e07_seg02_clip_01,Hung up the phone 10806,Castle and Beckett are on coffee break.,Castle and Beckett are at the police station.,Castle and Beckett are in a patrol car.,Castle and Beckett are in a park.,Castle and Beckett are at the morgue.,4,Where are Castle and Beckett when they discover that the dead man was cheating on his wife?,132845,Castle,22.98-73.44,castle_s02e10_seg02_clip_03,Castle and Beckett are at the morgue. 10807,From social media.,From Sara's friend Chloe who gave Sara her job.,From Castle and Beckett.,"From Sara's friend Chloe, who he was dating.",Brent started to date Sara again.,1,How did Brent find out about Sara after Brent broke up with Sara over a month ago?,132846,Castle,63.95-75.21,castle_s01e02_seg02_clip_09,From Sara's friend Chloe who gave Sara her job. 10808,Castle said Anatoly called the same number two times last week.,Castle said Anatoly called the same number three times last week.,Castle said Anatoly called the same number ten times last week.,Castle said Anatoly called the same number eight times last week.,Castle said Anatoly called the same number twenty times last week.,1,How many times did Castle say Anatoly called the same number when Castle checked Anatoly's phone?,132847,Castle,60.98-64.1,castle_s08e11_seg02_clip_17,Castle said Anatoly called the same number three times last week. 10809,Rachel is sitting on a plane.,Rachel is sitting in a park.,Rachel is sitting in the coffee shop.,Rachel is sitting in a waiting room.,Rachel is sitting in a taxi cab.,0,Where is Rachel when she talks to the stranger?,132848,Friends,0-22.02,friends_s04e23-24_seg02_clip_35,Rachel is sitting on a plane. 10810,hit by a car,knife wound,neck broken,heart attack,strangulation,4,What does the detective say is the cause of death when observing the dead body?,132849,Castle,3.19-3.65,castle_s04e07_seg02_clip_13,strangulation 10811,A useless First Wives Club,A generous First Wives Club,A glamorous First Wives Club,A famous First Wives Club,A murderous First Wives Club,4,What does Castle call Annika and her two friends after putting together a scenario?,132850,Castle,61.8-67.66,castle_s08e07_seg02_clip_09,A murderous First Wives Club 10812,We have to work out payment reports ,You have no business hear,We have to clear the air,We have to fix our relationship,We have a nurses strike,4,Why did Cuddy say she was busy before Wilson put his hands up?,132851,House M.D.,2.49-8.72,house_s04e13_seg02_clip_06,We have a nurses strike 10813,take his jacket off,cough loudly,play a patriotic song,salute ,knock on the door,4,"what does the colonel do when he walks into the lab with sheldon, howard, and leonard?",132852,The Big Bang Theory,18.82-22.78,s10e02_seg02_clip_07,knock on the door 10814,Beside the cabinet,On the table,Beside the shelf,Beside the window,On the chair,4,Where was House when he started the conversation with Wilson about life after death? ,132853,House M.D.,0-6.73,house_s08e21_seg02_clip_04,On the chair 10815,reading a book,writing a letter,watching tv,talking on the phone,working,1,What was Marshall doing when he was at home one night?,132854,How I Met You Mother,25.83-41.51,met_s03e02_seg02_clip_02,writing a letter 10816,a soda can,a champagne glass,a plastic cup,a water bottle,a mug,4,What does Beckett drink from after they cheers?,132855,Castle,0-9.93,castle_s04e16_seg02_clip_21,a mug 10817,Spotting talent. ,Mixing songs. ,Spotting a good voice. ,Spotting a winner. ,Spotting good clothes. ,0,What does Tyrese say that he is good at when he is talking to Ryan about Regina?,132856,Castle,79.99-80.86,castle_s05e11_seg02_clip_03,Spotting talent. 10818,They shake hands.,They start fighting. ,They ignore each other.,"They play rock, paper, scissors.",They go to the coffeehouse.,0,What does Ross and Tag do after they see each other?,132857,Friends,54.42-59.62,friends_s08e02_seg02_clip_18,They shake hands. 10819,Two doctors are having the discussion.,Three doctors are having the discussion.,Five doctors are having the discussion.,Four doctors are having the discussion.,Six doctors are having the discussion.,1,How many doctors are discussing blood turning into a neuro-toxin before Callie comes running by?,132858,Grey's Anatomy,0.92-7.84,grey_s03e14_seg02_clip_14,Three doctors are having the discussion. 10820,Down at another officer.,Up at the blood on the wall.,At Beckett's butt.,At his cellphone.,Out a window at a bird.,1,Where did Castle look when he stopped on the stairs?,132859,Castle,41.01-47.07,castle_s02e11_seg02_clip_00,Up at the blood on the wall. 10821,Crazy,Feverish,Humiliated ,Professionally,motherly ,0,How had Brent's wife been acting before this scene?,132860,House M.D.,44.09-58.93,house_s02e22_seg02_clip_19,Crazy 10822,Mike thought she was a little weird and cool,Mike thought she was weird and beautiful,Mike thought she was a little unstable but gorgeous,Mike thought she was different and a little strange,Mike thought she was a little off center and cool,0,What did Mike say he thought about Phoebe before she kissed him,132861,Friends,41.8-51.26,friends_s09e04_seg02_clip_18,Mike thought she was a little weird and cool 10823,a nsync song,a country song,a christmas carol,rap,classical,2,What is house singing when he walks into the lab?,132862,House M.D.,4.65-10.08,house_s04e10_seg02_clip_24,a christmas carol 10824,Chase,House,Cuddy,Cameron,Foreman,1,Who did Wilson ask when he asked if that person remembered his dvd player?,132863,House M.D.,5.46-11.38,house_s02e19_seg02_clip_00,House 10825,palm reader,doctor,a nurse,yoga instructor,weed grower,3,what did adams say the patients ex girlfriend did for a living when talking to chase?,132864,House M.D.,20.93-25.12,house_s08e17_seg02_clip_22,yoga instructor 10826,Relationships.,Cowboys.,Aliens.,Trucks.,Money.,0,What was the first word Nolan said when he began his session with House?,132865,House M.D.,0-8.6,house_s06e20_seg02_clip_24,Relationships. 10827,Ross made out with their 50 year old math teacher. ,Ross used to wet the bed. ,Ross had a crush on his biology teacher. ,Ross made out with their 50 year old librarian.,Ross made out with their 60 year old gym teacher. ,3,What rumor does Monica reveal that Rachel started about Ross when they were in high school?,132866,Friends,19.85-29.45,friends_s08e09_seg02_clip_14,Ross made out with their 50 year old librarian. 10828,They were sitting down in chairs.,They were rehearsing a their roles.,They were eating lunch.,They were yelling at each other.,They were drinking wine.,0,What were the two actors doing when the detectives asked them questions?,132867,Castle,42.22-46.95,castle_s03e18_seg02_clip_02,They were sitting down in chairs. 10829,Sheldon and Leonard.,Sheldon,Both Sheldon and Raj.,Leonard.,Raj,4,Who was the first to speak after Penny shut the door?,132868,The Big Bang Theory,31.58-33.35,s01e14_seg02_clip_07,Raj 10830,Bullet missed the liver,Bullet missed the brain,Bullet missed the lungs,Bullet missed the stomach,Bullet missed the heart,4,Why is it assumed the man took a while to die when Lanie is explain the crime details?,132869,Castle,7.8-13.13,castle_s02e23_seg02_clip_01,Bullet missed the heart 10831,A coffee cup.,A cellphone.,A white towel.,A latptop.,A water bottle.,1,What was in Esposito's right hand when he turned and started walking behind Castle and Beckett?,132870,Castle,3.13-7.15,castle_s04e17_seg02_clip_02,A cellphone. 10832,A pen and paper,A jack and breifacase,A cup and spoon ,A rock and scissors,A knife and plate,1,What did Weller pick from the couch when he was about to leave? ,132871,Castle,15.21-19.68,castle_s08e10_seg02_clip_11,A jack and breifacase 10833,A shopping center,A church,A library,A city park,A casino ,4,Where are Castle and Gates at when they are talking to their female coworkers on the phone?,132872,Castle,46.21-54.9,castle_s04e08_seg02_clip_14,A casino 10834,good,Are you crazy ,Are you okay ?,nice ,perfect,2,what did Nini said when Chandler repeat his name 3 times,132873,Friends,0-45.56,friends_s01e16-17_seg02_clip_09,Are you okay ? 10835,A television,Joey's white dog sculpture,An American flag,A Christmas tree,A basket of laundry,3,What is behind Monica when she is in the chair talking to Ross?,132874,Friends,3.52-37.14,friends_s05e10_seg02_clip_11,A Christmas tree 10836,"Look, the guy is great.","Look, the guy is so good","Look, the guy is cute.","Look, the guy fantastic.","Look, I know the guy is not perfect.",4,What Mandy said when hearing the advice of Rachel?,132875,Friends,17.71-23.71,friends_s01e20_seg02_clip_19,"Look, I know the guy is not perfect." 10837,Stacey didn't want kids,Brad didn't want kids,She was cheating on him,Stacey came out of the closet,Brad cheated on her,2,Why did Brad and Stacey break up before the party?,132876,Castle,53.7-64.17,castle_s03e11_seg02_clip_06,She was cheating on him 10838,On the phone with Alexis. ,On the phone with Martha. ,On a phone call with Ryan. ,On the phone with Esposito. ,On the phone with Gates. ,2,What was Beckett doing before Castle walked up to her desk?,132877,Castle,35.6-38.8,castle_s04e17_seg02_clip_03,On a phone call with Ryan. 10839,He says next week,He says no,He says in a few minutes,He says good idea,He says in five years,3,What does Sheldin say after Leonard says we should take a little break?,132878,The Big Bang Theory,19.05-56.02,s01e13_seg02_clip_03,He says good idea 10840,she holds up a picture of Malcolm Lloyd,she holds up a picture of a crime scene,she holds up a bag of evidence,she doesn't hold up anything,she holds up a picture of Low,0,What is Beckett holding when she shows it to Low?,132879,Castle,7.42-15.37,castle_s03e03_seg02_clip_16,she holds up a picture of Malcolm Lloyd 10841,Her handbag.,A laptop.,Her shoes.,A paper bag.,A pillow.,2,What was Penny holding when she walked out of the apartment?,132880,The Big Bang Theory,20.8-25.22,s05e01_seg01_clip_00,Her shoes. 10842,Clatter pots and pans,Talk loudly on the phone,Knock over a glass vase,Stub his toe and yell out loudly,Sing a song stuck in his head,1,What did Ross do before Monica came out in a robe?,132881,Friends,3.66-12.82,friends_s02e17_seg02_clip_08,Talk loudly on the phone 10843,In a car,At a bar,At a park,Inside a theater,At the police station,0,Where was Castle when talking to Rocco about Eric?,132882,Castle,56.81-64.86,castle_s07e10_seg02_clip_17,In a car 10844,Because a woman tells her that she has a bad plan.,Because a man tells her that she has a bad plan.,Because Chandler tells her that she has a bad plan.,Because Joey tells her that she has a bad plan.,Because Stuart tells her that she has a bad plan.,1,Why does Rachel get upset when she is on the way to Ross' wedding?,132883,Friends,44.44-50.42,friends_s04e23-24_seg02_clip_37,Because a man tells her that she has a bad plan. 10845,Make a call,Answer the phone,Eat his lunch,Pour a shot,Hide something in his drawer,1,What did Lloyd do after Ryan and Esposito left his office?,132884,Castle,69.32-74.78,castle_s03e07_seg02_clip_08,Answer the phone 10846, boss,911,411,Marines,Girlfriend ,3,Who did House say not to call when he was late? ,132885,House M.D.,9-19.59,house_s08e07_seg02_clip_19,Marines 10847,At the park,At her apartment,Working at the coffee house,In the shower ,In the kitchen doing the dishes,2,Where was Rachel when Ross brought Ben to see her?,132886,Friends,23.5-55.84,friends_s02e20_seg02_clip_07,Working at the coffee house 10848,10,4,3,2,7,2,How many flights of stairs did Sheldon and Leonard go up after they came in?,132887,The Big Bang Theory,0-55.46,s10e13_seg02_clip_00,3 10849,A napkin,A knife,A pitcher,A pencil,A cup,4,What object does House move when talking to Nadia?,132888,House M.D.,3.8-10.93,house_s07e12_seg02_clip_23,A cup 10850,Running down the stairs,Putting on their coats,Eating their lunch,Hugging each other,Looking for a restaurant on her phone,1,"What are Rachel and Monica doing when Rachel says ""she can't believe that?""",132889,Friends,11.81-19.48,friends_s06e12_seg02_clip_07,Putting on their coats 10851,He says Matthew McConaphey has sex appeal,He says Adam Levine has sex appeal,He says a Samoyed has sex appeal,He says a Labradoodle has sex appeal,He says William Shanter has sex appeal,3,Who does Raj's says has sex appeal after Bernadette comes to talk with them,132890,The Big Bang Theory,35.98-46.75,s04e14_seg02_clip_00,He says a Labradoodle has sex appeal 10852,House is a victim of identity theft,House stopped ordering take out from his favorite Chinese place,House started collecting shot glasses,House is off his meds,House no showed on a hooker 2 nights ago,4,What does Foreman learn when he speaks on the phone?,132891,House M.D.,0-9.7,house_s08e22_seg02_clip_11,House no showed on a hooker 2 nights ago 10853,A potato chip bag.,A to go container.,A donut.,A soda can.,An apple.,1,What did Set on the desk before he said Huh?,132892,How I Met You Mother,1.79-4.47,met_s03e18_seg02_clip_04,A to go container. 10854,She goes to change in the bathroom,She goes to the bathroom,She starts reading a text message,She inquisitions him,She goes to the waxing center,3,What did Robin do after she discovers her friend Ted's date went wrong?,132893,How I Met You Mother,0-4.17,met_s05e02_seg02_clip_12,She inquisitions him 10855,Touched his face,Poured water on him,Showed him a cheeseburger,Showed him a hotdog,Slapped his chest,0,"What did Beckett do before Castle yelled ""Cheeseburgers!""?",132894,Castle,6.41-10.53,castle_s06e04_seg02_clip_18,Touched his face 10856,Nothing on the jacket.,An abstract design.,A graphic of a few kittens.,Words that spell BE STRONG!,A graphic of a large butterfly.,4,What is on the back of the womens jacket when sitting in the doctors office?,132895,House M.D.,58.26-68.27,house_s03e16_seg02_clip_11,A graphic of a large butterfly. 10857, Beckett has a Yellow shirt on.,Beckett has a Red shirt on.,Beckett has a White shirt on.,Beckett has a orange shirt on.,Beckett has a pink shirt on.,2,What color shirt does Beckett have on when she discusses ammo with Castle?,132896,Castle,0-11.38,castle_s03e22_seg02_clip_16,Beckett has a White shirt on. 10858,He handed her some mail.,He handed her his phone.,He handed her the TV remote.,He handed her a drink.,He handed her some food.,4,What did Leonard hand Penny when she seat down next to him?,132897,The Big Bang Theory,15.94-23.61,s03e09_seg02_clip_03,He handed her some food. 10859,Because Alex is very serious.,Because the clues fit Raj's personality.,Because Alex hates Sheldon.,Because the clues fit Alex's personality.,Because Alex doesn't like flirt.,3,Why Amy said Alex after Sheldon give some clues about a person?,132898,The Big Bang Theory,20.48-63.02,s06e12_seg02_clip_03,Because the clues fit Alex's personality. 10860,his jacket,his wallet,his computer,his blanket,his umbrella,0,what does leonard grab before leaving howard and sheldon in the apartment?,132899,The Big Bang Theory,34.88-40.4,s04e16_seg02_clip_01,his jacket 10861,His new website.,The Bank Files,His Social Security Number,The new Flash movie,The X-Tens,4,What does Leonard say is online when he sticks a device on a lamp?,132900,The Big Bang Theory,4.73-63.02,s01e09_seg01_clip_00,The X-Tens 10862,It was being stolen,It was wrecked,It was on fire,Someone was hitting it with a bat,It was sinking in water,2,What was happening to the car on the television before Joey said it was being protected by Miracle Wax?,132901,Friends,8.1-21.31,friends_s02e15_seg02_clip_08,It was on fire 10863,an elevator,a cab,another apartment ,the kitchen,the basement ,0,What does Leonard exit before he knocks on the door?,132902,The Big Bang Theory,22.02-27.61,s03e22_seg02_clip_00,an elevator 10864,She laughs.,She starts to cry.,She buries her face in her hands.,She leaves the table.,She spills her drink on him.,0,What does Emily do after Raj says but now you make me wonder what's wrong with you?,132903,The Big Bang Theory,30.02-38.12,s07e19_seg02_clip_15,She laughs. 10865,they are sitting in the audiance of a conference,they are sitting at a table in a resturant,they are sitting in the waiting room at the hospital,they are sitting in a couch at Wilson's apartment,they are sitting on a park bench,0,Where were House and Wison sitting when House starts to make outbursts to Weber?,132904,House M.D.,4.79-12.62,house_s02e12_seg02_clip_09,they are sitting in the audiance of a conference 10866,Looking at an xray,Preforming surgery,Looking at charts,Washing their hands,Putting on their scrubs,1,What are the doctors doing when talking about marriage vows?,132905,Grey's Anatomy,0-9.78,grey_s03e25_seg02_clip_12,Preforming surgery 10867,A bio hazard room.,The cafeteria.,An operating room.,A jungle gym.,A junk yard.,0,Where does Sheldon go when he tries to avoid a coughing patient in the hospital?,132906,The Big Bang Theory,2.52-15.41,s04e23_seg02_clip_13,A bio hazard room. 10868,Castle assumed there was only one team in play.,Castle told her a funny joke.,Castle made a funny face.,AJ doesnt smile/smirk.,AJ just had a great dinner.,0,Why does AJ smile/smirk after Castle talks to her about how her team has been diminished down to her and one other person?,132907,Castle,7.68-16.81,castle_s08e01_seg02_clip_25,Castle assumed there was only one team in play. 10869,Beckett leaves the room,Beckett starts singing,Beckett sits down,Beckett yawns,Beckett offers Castle a book,2,What does Beckett do before Martha begins a long dialogue?,132908,Castle,0-7.76,castle_s07e16_seg02_clip_26,Beckett sits down 10870,at his grooming station,eating dinner, walking the dog,talking to his family,in his hotel room,0,Where did David Hernand say he was between 5:15 and 5:35 after Beckett asked his whereabouts during that time?,132909,Castle,24.95-37.65,castle_s04e13_seg02_clip_02,at his grooming station 10871,Hark Slope.,Park Slope.,Hamilton Heights.,Glenn Heights.,Park Heights.,2,Where was Richie when his body was found?,132910,Castle,41.28-44.36,castle_s07e19_seg02_clip_03,Hamilton Heights. 10872,because he had a surgery scheduled,George needed to have lunch,George needed to get some sleep,George got a code,because he needed to meet a patient in the lobby,3,Why did George have to leave Meredith after they were looking at the babies,132911,Grey's Anatomy,49.77-64.65,grey_s01e02_seg02_clip_07,George got a code 10873,Lara's mother died in the hospital.,Lara's mother died in New York.,Lara's mother died in Mexico.,Lara's mother died in prison,Lara's mother died in her arms.,3,Where did Lara's mother die after her father defected to the USA?,132912,Castle,22.81-26.45,castle_s02e15_seg02_clip_23,Lara's mother died in prison 10874,His Benz,His Hyundai,His Tesla,His Ferrari,His Ford F-150.,2,What does Ryan say Brian slammed into another car when the driver cut him off?,132913,Castle,11.45-16.48,castle_s07e11_seg02_clip_07,His Tesla 10875,A bowl of fake fruit,A card pyramid,A cup of Pens,A blue pyramid,A Christmas ornament ,3,What was seen sitting on the table before Beckett and Castle walked into their home?,132914,Castle,53.48-62.78,castle_s08e16_seg02_clip_26,A blue pyramid 10876,guilty,happy,silly,tired,hungry,0,How did Leonard feel when Howard called?,132915,The Big Bang Theory,0-10.03,s02e08_seg02_clip_09,guilty 10877,Astrid,Sheldon,Raj,Penny,Leonard,4,Who is living with their mother when Leonard visits Penny?,132916,The Big Bang Theory,0.61-61.02,s02e15_seg02_clip_10,Leonard 10878,Pretending to have a reaction,singing,laughing,crying,talking,0,What was Howard doing when Leonard pushed him out the door?,132917,The Big Bang Theory,7.83-18.66,s01e16_seg02_clip_08,Pretending to have a reaction 10879,Because he has nice hands,Because she says he has just solved their case,Because his hands are filthy,Because his hands are glowing,Because his hands are shaking,1,Why is Beckett excited after Castle shows her his hand,132918,Castle,50.2-52.91,castle_s05e06_seg02_clip_21,Because she says he has just solved their case 10880,it been a few weeks,ok that's fine,Why not?,I will give you gas ,"No, you said you couldn't drive me to work. This is from work. ",4,What did Sheldon say after Leonard tell him he can't drive him for the few weeks?,132919,The Big Bang Theory,0-5.72,s02e05_seg02_clip_04,"No, you said you couldn't drive me to work. This is from work. " 10881,When is the next bus coming ,Where are the eggs,for what ?,Why is his head so small ,Whats the difference between love and hate,2,What question did Patron ask Joey after Joey asked would Patron hire him ?,132920,Friends,7.93-10.07,friends_s06e12_seg02_clip_12,for what ? 10882,Carver,Beckett,Castle,Ben,Jane,2,Who was sitting at their desk when they were tapping a pencil? ,132921,Castle,8.19-14.11,castle_s04e04_seg02_clip_11,Castle 10883,Whitner said no but she has with her wheelchair.,Whitner said no but then she doesn't need a cane with her wheelchair.,Whitner said yes and it's not that bad.,Whitner asked House if he was seriously that ignorant.,Whitner said no on the account that she can't walk.,4,How did Whitner respond when House asked her if she ever hit a patch of black ice with a cane?,132922,House M.D.,4.55-8.65,house_s03e13_seg02_clip_02,Whitner said no on the account that she can't walk. 10884,Ross refuses to leave,Ross refuses to try spinach salad,Ross refuses to call Carol by something other than her name,Ross refuses to pay for prenatal care before he is sure that it is his baby,Ross refuses to sing to Carol's stomach,4,What does Ross refuse to do initially before changing his mind when he and Carol are no longer alone?,132923,Friends,0.9-15.01,friends_s01e09_seg02_clip_15,Ross refuses to sing to Carol's stomach 10885,Talking,Eating,Dancing,Working,Sleeping,2,What were the men doing when Castle and Beckett walked in?,132924,Castle,35.43-45.55,castle_s07e19_seg02_clip_14,Dancing 10886,Not knowing.,Knowing everything.,You being the cause.,The blame of being a killer.,A sacrifice of someone.,0,What does Castle ask Bennett about it being possible to live with when they are in bed?,132925,Castle,79.67-90.02,castle_s07e02_seg02_clip_25,Not knowing. 10887,the laptop,A cup,A tool,headphones,Juice,4,What did Leonard take from Wil after Wil mentioned the conversation they were having?,132926,The Big Bang Theory,10.63-19.48,s08e20_seg02_clip_10,Juice 10888,Cuddy,House,Chase,Foreman,Wilson,3,"Of the committee of five people, who was sitting in the middle of the table when they were interviewing Park?",132927,House M.D.,44.63-50.46,house_s08e04_seg02_clip_20,Foreman 10889,A phone ,A clock,A TV,A PC,A dog,1,What's behind Castle before Florence entered the room?,132928,Castle,14.87-24.5,castle_s04e14_seg02_clip_14,A clock 10890,Rachel was at home.,Rachel was standing next to Phoebe.,Rachel was sitting to Monica's left.,Rachel was sitting to Monica's right.,Rachel was standing behind Phoebe.,2,Where was Rachel when Joey sat down near them?,132929,Friends,0-17.12,friends_s02e19_seg02_clip_02,Rachel was sitting to Monica's left. 10891,Howard was angry that Sheldon was patronizing him.,Howard was smug because Sheldon finally admitted that Howard was smart.,"Howard was pleased with the compliment but a bit sheepish, because the idea wasn't fully original.",Howard was angry that Leonard didn't scold Sheldon. ,Howard was annoyed that Sheldon was distracting him.,2,How did Howard feel when Sheldon praised his idea?,132930,The Big Bang Theory,29.8-45.59,s09e03_seg02_clip_15,"Howard was pleased with the compliment but a bit sheepish, because the idea wasn't fully original." 10892,How stupid do you get,Are you sure thats right,You are wrong,I dont know how we could have missed that,What time is it?,3,What does one of the guys say after Raj finishes with the explanation?,132931,The Big Bang Theory,10.82-46.02,s02e14_seg01_clip_01,I dont know how we could have missed that 10893,Penny and Bernadette are sitting.,Penny and Bernadette were talking.,Penny and Bernadette were being rude to each other.,Penny and Bernadette were working on a science project.,Penny and Bernadette were working with their hands.,3,What was Penny and Bernadette doing when Raj walked in?,132932,The Big Bang Theory,5.2-61.14,s09e19_seg02_clip_07,Penny and Bernadette were working on a science project. 10894,Joey,a goldfish,the stove,Ross,a green fern,4,What is behind Rachel when Monica says that she is right?,132933,Friends,9.75-15.93,friends_s07e02_seg02_clip_12,a green fern 10895,My mom was on the couch,Chandler was on the couch,Chandler's mom was on the couch,Bob the builder was sitting on the couch,Max was on the couch,1,Who was sitting on the couch when the remaining four were standing?,132934,Friends,0-33.09,friends_s03e23_seg02_clip_08,Chandler was on the couch 10896,At the beach.,A hotel lobby.,In the Hospital waiting room.,In her Apartment.,In Leonard's apartment. ,2,Where is Penny when she tells Sheldon that they had a really nice swim?,132935,The Big Bang Theory,32.89-39.7,s08e09_seg02_clip_07,In the Hospital waiting room. 10897,Black,Red,Blue,White,Orange,3,"What color is the shirt that Philip Dagmar is wearing when he say's ""I suppose we're...""?",132936,Castle,0-9.69,castle_s07e07_seg02_clip_02,White 10898,Tommy.,A police officer.,A woman pushing a stroller.,Phoebe.,A elderly woman.,0,Who does Ross slam into after he wallks out of the coffee shop?,132937,Friends,16.81-20.11,friends_s03e22_seg02_clip_13,Tommy. 10899,A file,A gun,A knife,A book,A cup,0,What did Beckett pick up when she stood from the table?,132938,Castle,36.05-40.51,castle_s06e13_seg02_clip_04,A file 10900,Beckett slapped Travis.,Beckett told Travis he was under arrest for murder.,Beckett told Travis he was going to need a lawyer.,Beckett put Travis in a jail cell.,Beckett played a recording of Travis's wife which proved she was not going to leave Travis.,4,What did Beckett do after she said Travis's wife was not going to leave him?,132939,Castle,103.22-118.71,castle_s02e03_seg02_clip_23,Beckett played a recording of Travis's wife which proved she was not going to leave Travis. 10901,Ross.,A map.,The refrigerator.,A car.,A telescope.,4,What was behind Rachel when she talked about apartment pants?,132940,Friends,2.95-9.15,friends_s06e13_seg02_clip_10,A telescope. 10902,sheldon,ryan,mandy,amy,ricky,1,who showed up to the door to pick up Beckett when Martha was leaving?,132941,Castle,60.08-66.9,castle_s05e19_seg02_clip_00,ryan 10903,Wilson says the guy who cleans the bathrooms to pick the bedrooms.,Wilson says the guy who pays the most rent gets to pick the bedrooms.,Wilson says the guy who found the apartment gets to pick the bedrooms.,Wilson says the guy who signs the loan gets to pick the bedrooms.,Wilson says the guy whose name is on the lease gets to pick the bedrooms.,3,Who does Wilson tell House gets to pick the bedrooms after finding House in his bathrub?,132942,House M.D.,45.84-52.26,house_s06e12_seg02_clip_00,Wilson says the guy who signs the loan gets to pick the bedrooms. 10904,Google search ,Books he has read,Youtube,Wikipedia ,The discovery channel,4,Where did Kutner say he got his information from when mentioning how to remove kidney stones?,132943,House M.D.,32.41-43.66,house_s04e11_seg02_clip_01,The discovery channel 10905,Ben and Chandler are playing,Monica and Phoebe are playing,Mike and Chandler are playing,Monica and Mike are playing,Ben and Monica are playing,3,Who is playing ping pong before one person got injured,132944,Friends,5.46-16.65,friends_s09e23-24_seg02_clip_47,Monica and Mike are playing 10906,AIDS,Dysentery,Lyme's Disease,Lupus,Typhus,4,What did House diagnosis his patient with after saying that the patient had come into contact with rat lice?,132945,House M.D.,61.86-93.03,house_s08e15_seg02_clip_23,Typhus 10907,a shadow,a quarter,a nickel,a pocket of air,a malfunctioning machine,3,What other choice did House suggest to Wilson when Wilson said that the test showed a dime inside the child?,132946,House M.D.,0-8.93,house_s07e05_seg02_clip_14,a pocket of air 10908,Under a pile of clothes.,In bed.,On the ground.,On the floor.,In the bathtub.,2,Where did Nina say she found Sadie after Sadie was stabbed?,132947,Castle,60.81-63.61,castle_s08e10_seg02_clip_15,On the ground. 10909,4,3,2,5,6,0,How many chairs are around the table when Ross starts to walk away?,132948,Friends,49.62-52.1,friends_s08e03_seg02_clip_11,4 10910,The bathroom.,The parking lot.,Wilson's apartment.,House's apartment.,The hospital. ,0,Where are Wilson and House after Treiber's hospital bed is rolled out of the room?,132949,House M.D.,79.23-89.13,house_s08e20_seg02_clip_09,The bathroom. 10911,Chandler walks in after Monica and Phoebe are discussing the mishap of the bed,Ross walks in after Monica and Phoebe are discussing the mishap of the bed,Rachel walks in after Monica and Phoebe are discussing the mishap of the bed,Joey walks in after Monica and Phoebe are discussing the mishap of the bed,No one walks in after Monica and Phoebe are discussing the mishap of the bed,0,Who walks in after Monica and Phoebe are discussing the mishap of the bed?,132950,Friends,54.21-63.03,friends_s03e07_seg02_clip_14,Chandler walks in after Monica and Phoebe are discussing the mishap of the bed 10912,Granola lung cancer,Oat cell lung cancer,Sickle cell lung cancer,white blood cell cancer,red blood cell anemia,1,What did Taub and Foreman see on the patient's scans when she was in the machine being scanned?,132951,House M.D.,70.1-81.15,house_s07e05_seg02_clip_22,Oat cell lung cancer 10913,Leonard sat far from Mandy.,Leonard sat behind Mandy.,Leonard sat on front of Mandy.,Leonard sat with Penny.,Leonard sat with Sheldon.,2,Where sat Leonard when talking with Mandy>,132952,The Big Bang Theory,0-55.46,s09e02_seg02_clip_11,Leonard sat on front of Mandy. 10914,irritated,tired,angry,sad,happy,4,How did Leonard feel when he was with Sheldon and talking about the paper?,132953,The Big Bang Theory,0-17.41,s08e14_seg02_clip_14,happy 10915,Surgical staplers,Scalpel,Medical pliers,Surgical scissors,Medical tube,3,What did Burke lift up after he was done saying his wedding vows?,132954,Grey's Anatomy,69.29-84.17,grey_s03e25_seg02_clip_12,Surgical scissors 10916,The mother could not figure out the proper dosage,He took more because they taste good.,He swallow something metal,He took too many by accident,His brother gave him more,4,How did the boy get an iron overdose when Foreman tells the mother it is from vitamins that she doses out?,132955,House M.D.,29.25-46.45,house_s05e08_seg02_clip_21,His brother gave him more 10917,Sitting at the kitchen table,Fixing coffee,Cleaning up files,Laying on a couch,Laying in bed,3,What was Violet doing when she was talking to Pete?,132956,Grey's Anatomy,53.24-59.45,grey_s03e23_seg02_clip_06,Laying on a couch 10918,Star Track ,Nebula 9 ,Star Wars,World of Warcraft,Police Academy ,1,What show did did Castle say that Becket was a crazy fan off when they talking over coffee? ,132957,Castle,3.64-17.75,castle_s05e06_seg02_clip_06,Nebula 9 10919,held his hand up high,wiped his hand,made a grossed out face,went to the kitchen,grabbed a napkin,1,What did Sheldon do after messing with Leonard's hair?,132958,The Big Bang Theory,37.22-42.32,s06e15_seg02_clip_08,wiped his hand 10920,full of red cells,full of white cells,cancer cells,nothing,no spinal tap was done,1,what did taub say the spinal fluid of the patient had when talking to the group about the patients symptoms?,132959,House M.D.,4.65-7.91,house_s08e17_seg02_clip_22,full of white cells 10921,shocked,happy,excited,sad,content,0,how does joey react when rachel tells him an auction is to buy items not guess the price?,132960,Friends,6.09-15.38,friends_s06e24-25_seg02_clip_06,shocked 10922,Vance's wife. ,Vance's mother-in-law. ,Vance's father-in-law. ,Emma. ,Vance's daughter. ,2,Who does Ryan and Esposito say gave Vance's motive when Vance asks what his motive is?,132961,Castle,72.62-78.98,castle_s06e04_seg02_clip_24,Vance's father-in-law. 10923,detective hide the file,detective kept the case open,detective did nothing,detective closed the case,detective went home,3,what did the detective do when there was no evidence of foul play,132962,Castle,24.64-89.59,castle_s01e05_seg02_clip_04,detective closed the case 10924,He closes all the curtains,He starts singing,He stands perfectly still,He runs around the apartment,He starts dancing,4,How does the man in the apartment act after turning on the music?,132963,Friends,37.82-42.32,friends_s04e04_seg02_clip_11,He starts dancing 10925,The door handle.,"The table,. ",The floor.,Phoebe's chair,The couch.,3,Where did Monica put her purse after she took it off her shoulder?,132964,Friends,4.2-8.1,friends_s04e09_seg02_clip_06,Phoebe's chair 10926,She tells him it's down the hall.,She tells him to go ask a Spock,She tells him to find one somewhere else.,She says no,She asks why he doesn't ask Scotty to beam him up.,4,What does the waitress do after Leonard asks to use the phone?,132965,The Big Bang Theory,6.04-14.79,s06e13_seg02_clip_13,She asks why he doesn't ask Scotty to beam him up. 10927,Because Joey spilt beer all over his pants,Because Chandler was confused,Because Joey laughed so hard,Because Joey fell into a fountain,Because Joey used a broken washing machine,2,Why does Chandler make a joke that he had to throw out Joey's underwear when Joey is talking about Atlantic City?,132966,Friends,36.62-44.12,friends_s07e04_seg02_clip_11,Because Joey laughed so hard 10928,They do nothing. ,They leave her in the machine.,They pull her out of the machine. ,They laugh hysterically. ,They panic and call for help. ,2,What do the doctors do when they fear the patient is in distress? ,132967,House M.D.,56.14-62.03,house_s01e01_seg02_clip_05,They pull her out of the machine. 10929,In his apartment,Australia,He doesn't own a gun,England,At his mother's home,1,Where does Chase say he keeps his gun after he correctly guesses if Adams has a gun?,132968,House M.D.,39.62-55.64,house_s08e08_seg02_clip_09,Australia 10930,5 pm,4 am,6 pm,8 pm,2 pm,1,What time did Monica wake up before she mad jam?,132969,Friends,5.29-9.02,friends_s03e03_seg02_clip_00,4 am 10931,Wiping her face.,Drinking from a cup.,Holding her head.,Brushing her hair.,Feeding a baby.,2,What was Cuddy doing when Chase touched her shoulder?,132970,House M.D.,63.77-68.55,house_s05e13_seg02_clip_03,Holding her head. 10932,he laughs,nothing,Really really bad,he kicks him,He throws water on him,2,What does Leonard say after Sheldin say who Tom is?,132971,The Big Bang Theory,14.94-83.02,s02e03_seg02_clip_16,Really really bad 10933,Making a bowl of cereal.,Pouring a cup of coffee.,Sitting down next to him.,Getting something from the refrigerator.,Sitting down at the Kitchen counter. ,1,What is Penny doing when she asks Sheldon what is bothering him?,132972,The Big Bang Theory,13.03-18.61,s07e20_seg02_clip_00,Pouring a cup of coffee. 10934,Closed her eyes,Put her seatbelt on.,Yelled,Picked up phone,Went to sleep,1,What did Alexis do after she sat down?,132973,Castle,63.92-68.42,castle_s07e21_seg02_clip_08,Put her seatbelt on. 10935,Standing behind House.,Sitting to the left of House.,Sitting to the right of House.,Sitting across the table from House.,Standing to the left of House.,3,Where was Chase when he asked House if he was going to call?,132974,House M.D.,0.12-1.69,house_s02e17_seg02_clip_27,Sitting across the table from House. 10936,"Ross yelled back ""I will be"".",Ross left the apartment.,Ross asked Rachel was she on something..,Ross did not respond.,"Ross's girlfriend Carol yelled ""Yes'.",0,"How did Ross react after Rachel yelled ""I will be revenged""?",132975,Friends,30.91-39.92,friends_s07e16_seg02_clip_21,"Ross yelled back ""I will be""." 10937,Sebastian says it is his cologne,Sebastian says it is his body powder,Sebastian says it is his soap,Sebastian says it his shampoo,Sebbastian says it his deodorant,1,How does Sebastian identify the odor when House asks about the elephant-dung smoothie smell in the room?,132976,House M.D.,28.81-42.76,house_s02e04_seg02_clip_01,Sebastian says it is his body powder 10938,making toast,making a mixed drink,opening wine,cooking food,digging through the trash,3,what is penny doing when she is talking to leonard in her kitchen area?,132977,The Big Bang Theory,0-9.86,s05e07_seg02_clip_08,cooking food 10939,Tomorrow 4:00 PM,Tomorrow 5:00 PM,Tomorrow 3:00 PM,Tomorrow 2:00 PM,Tomorrow 1:00 PM,1,What time did Castle say the meeting was scheduled for before Cross said it was going down today?,132978,Castle,58.27-70.29,castle_s06e12_seg02_clip_19,Tomorrow 5:00 PM 10940,Help me up,I hate you,Go away,I don't want to see you,You're the last one I thought would hate me.,4,What did Dr House said after Cameron sit down?,132979,House M.D.,21.34-22.52,house_s08e22_seg02_clip_17,You're the last one I thought would hate me. 10941,Feed her dinner,Discharge her,Take her for a CT,Diagnose her with Muchausen's only. ,Perform a bone marrow biopsy,4,What does House want to do after Chase says that the patients white blood cell count is normal?,132980,House M.D.,72.55-78.79,house_s02e09_seg02_clip_14,Perform a bone marrow biopsy 10942,in the comic book store,in his apartment,in Leonard's apartment,in Penny's apartment,in the car,3,Where was Raj when he was having a conversation with Penny?,132981,The Big Bang Theory,3.61-8.13,s07e06_seg02_clip_05,in Penny's apartment 10943,Howard says does making it work include doing the cyber-nasty,Howard says does making it work include fighting,Howard says does making it work include seeing each other every month,Howard does not say anything,Howard says does making it work including kissing,0,What does Howard say when Leonard say he is making it work?,132982,The Big Bang Theory,44.47-53.62,s05e02_seg02_clip_00,Howard says does making it work include doing the cyber-nasty 10944,Aids ,Pneumonia ,The flu ,Heart Attack,Parkinson's disease,4,How did House say the mother he was referring to died after mentioning New Haven Presbyterian?,132983,House M.D.,20.94-28.67,house_s04e08_seg02_clip_18,Parkinson's disease 10945,She was alive,He knew her,She was his sister,She had stolen his car,She was not a woman,1,Why did the Manager looked surprised after Beckett spoke to him and informed him Eliska was dead?,132984,Castle,0-10.16,castle_s02e05_seg02_clip_07,He knew her 10946,House's pager went off because he was needed in the ER,House's pager went off because his patient was getting a heart,House's pager went off because his patient was in intensive care,House's pager went off because a new patient arrived with a rare disease,House's pager went off because the chief of staff needed to see him,1,Why did House's pager go off when he was talking about relationships,132985,House M.D.,11.77-22.48,house_s01e14_seg02_clip_20,House's pager went off because his patient was getting a heart 10947,Points at Barney,Puts his hands over his face,Lifts his shirt up,Cries,Falls to the ground,2,"What does Ted do when he says ""I have a tattoo?""",132986,How I Met You Mother,37.73-41.75,met_s03e01_seg02_clip_12,Lifts his shirt up 10948,Dirty movies,Scary movies,Beards on women,Long johns,Mint tea,0,What did Rachel say her new boyfriend Joshua didn't like when she was talking to the group?,132987,Friends,30.1-36.99,friends_s04e17_seg02_clip_08,Dirty movies 10949,Izzy gives Dr. Bailey a cup of coffee.,Izzy gives Dr. Bailey a patient's chart.,Izzy gives Dr. Bailey a party invitation.,Izzy gives Dr. Bailey a hospital report. ,Izzy gives Dr. Bailey a magazine.,3,What does Izzy give to Dr. Bailey when she catches up to her in the hallway?,132988,Grey's Anatomy,19.19-25.76,grey_s02e05_seg02_clip_04,Izzy gives Dr. Bailey a hospital report. 10950,Chandler was still sleepy.,Chandler appeared in front of him.,Chandler congratulated him for being the worst best man.,The slept with the stripper.,His ring was gone.,4,Why was Joey flustered before the scene transitioned?,132989,Friends,0-30.61,friends_s04e22_seg02_clip_09,His ring was gone. 10951,7,4,8,3,9,4,How many times has castle claimed to save becketts life when they are talking in his home?,132990,Castle,58.24-65.89,castle_s04e07_seg02_clip_27,9 10952,A book,A cigarette,A drink,A jacket,A sandwich ,2,What does Chandler have in his hand when talking to Ross?,132991,Friends,0-9.26,friends_s09e08_seg02_clip_16,A drink 10953,"Because the baby is already a whole, tiny little person.",Because the baby is already smiling.,Because the baby never cries.,Because the baby looks just like Ross.,Because the baby is already so big.,0,Why does Joey seem amazed when he is holding the baby?,132992,Friends,0-2.71,friends_s08e23-24_seg02_clip_35,"Because the baby is already a whole, tiny little person." 10954,Joey seems too unpopular to be a role model,Joey lies about how many kids he has,Joey seems too young to be a role model,Joey describes himself as a Mento,Joey is talking about a kid that the interviewer already knows about,3,Why does the interviewer look at Joey with a little confusion after he tells her about how he is a role model to kids?,132993,Friends,19.62-29.72,friends_s08e19_seg02_clip_05,Joey describes himself as a Mento 10955,Rachel is trying to get a message to Chandler.,Rachel is trying to get a message to Ross.,Rachel is trying to get a message to Steven.,Rachel is trying to get a message to Joey.,Rachel is trying to get a message to Francis.,1,Who is Rachel trying to get a message to when she is at the airport?,132994,Friends,3.88-9.84,friends_s01e24_seg02_clip_12,Rachel is trying to get a message to Ross. 10956,Ross is helping her type. ,Ross is helping her cook.,Ross is helping her drive.,Ross is helping her shop.,Ross is helping Rachel with laundry.,4,What is Ross helping Rachel with when they are talking.,132995,Friends,45.94-51.82,friends_s01e05_seg02_clip_15,Ross is helping Rachel with laundry. 10957,Chase and Masters took Nina to the thetre,Chase and Masters took Nina to dress up.,Chase and Masters took Nina to Cuddy's office,Chase and Masters took Nina to the hospital in the room where her husband was.,Chase and Masters took Nina to a restaurant,3,Where did Chase and Masters take Nina after they found her in the house covered with a blue polythene paper?,132996,House M.D.,68.22-83.18,house_s07e18_seg02_clip_10,Chase and Masters took Nina to the hospital in the room where her husband was. 10958,he talks to House,he falls down,she dies,she comes after him,he leaves the hospital,3,What happens after Chase leaves the nun's room?,132997,House M.D.,52.79-61.21,house_s08e12_seg02_clip_25,she comes after him 10959,He pulled his phone from his pocket.,He sat at the desk.,He walked to the window.,He turned around and left.,He opened a window.,3,What did Castle do after Beckett walked away?,132998,Castle,20.89-28.72,castle_s04e22_seg02_clip_26,He turned around and left. 10960,He suspected her of stealing,He wanted to surprise her with good news,Because he didn't believe that she had been looking,He wanted his mother to move in,Because she started crying,2,Why was Gary questioning Phoebe further after he asked if she'd been looking for a new place?,132999,Friends,34.58-43.76,friends_s05e21_seg02_clip_12,Because he didn't believe that she had been looking 10961,Foreman,Taub,Adams,13,Chase,1,Who was Joe talking to when he was referring to his marriage and career?,133000,House M.D.,0-10.12,house_s08e13_seg02_clip_26,Taub 10962,Go to the bar ,Sit out the door ,Sing to her friends ,Leave out the door ,Take a nap ,3,What did Phoebe do after their conversation? ,133001,Friends,40.63-48.38,friends_s02e09_seg02_clip_02,Leave out the door 10963,Addison,Dereks Mom,Dr. Yang,Dr. Grey,George,0,Who walks into the elevator before Meredith could say anything to Derek?,133002,Grey's Anatomy,0-14.08,grey_s02e08_seg02_clip_18,Addison 10964,He says that Ross does not work out.,He explains that Ross does not have friends.,"He says that Ross is not as ""street"" as he and Chandler.",He says that everything Ross tries fails.,He says that you need to chill man.,2,What is Joey's response after Chandler questions why he saved Ross first?,133003,Friends,44.35-57.38,friends_s05e20_seg02_clip_13,"He says that Ross is not as ""street"" as he and Chandler." 10965,A Walker,A cane,A friend,A wheelchair,An electric scooter,0,What was Mr. Stuckey using to help him walk when Esposito approached him?,133004,Castle,83.23-88.53,castle_s03e03_seg02_clip_16,A Walker 10966,He ignored her ,"He said she was great, Nick was great...clearly she is having sex with Nick",He told her it was fine ,He said it was horrible,He told her he was hungry,1,What did Chandler tell Kathy when she asked what they thought of the play?,133005,Friends,33.36-55.7,friends_s04e13_seg02_clip_06,"He said she was great, Nick was great...clearly she is having sex with Nick" 10967,He never said Sleeping Beauty.,He called Monica Sleeping Beauty.,He called Rachel Sleeping Beauty.,He called Ross Sleeping Beauty.,He called Chandler sleeping beauty.,4,"Who did Joey call sleeping beauty, when he walked in the apartment?",133006,Friends,10.86-13.96,friends_s08e22_seg02_clip_13,He called Chandler sleeping beauty. 10968,Penny proposes to Leonard.,Penny kisses Leonard.,Penny gestures with her hands and looks at Raj.,Penny hugs Sheldon.,Penny punches Raj.,2,What does Penny do when Raj says he tells everybody?,133007,The Big Bang Theory,0-5.38,s08e04_seg02_clip_07,Penny gestures with her hands and looks at Raj. 10969,Ross,Racheal,Lori,Monica,Phoebe,2,Who comes to join Joey and Chandler at dinner when they are sitting waiting and talking?,133008,Friends,35.34-42.47,friends_s06e20_seg02_clip_10,Lori 10970,Olivia told Tommy that she loves him too.,Olivia asked Tommy to not say that to her.,Olivia told Tommy that they have some issues they need to work on.,"Olivia told Tommy, if that is how he expresses his love; she hopes he never hates her.",Olivia told Tommy she doesn't love him anymore.,0,How did Olivia react after Tommy told her that he loves her?,133009,House M.D.,59.12-65.11,house_s08e08_seg02_clip_23,Olivia told Tommy that she loves him too. 10971,standing to the right of marshall,to the right of lily on the couch,standing to the right of lily,to the left of lily on the couch,standing opposite of lily,3,where was robin when the video started,133010,How I Met You Mother,0-4.1,met_s03e19_seg02_clip_14,to the left of lily on the couch 10972,Foreman told his patient that the medication was targeted to African-Americans.,Foreman informed his patient that the medication was targeted to the elderly.,Foreman let his patient know the medication is targeted to men only.,Foreman told his patient the medication was targeted to underweight people.,Foreman had informed his patient that the medication was targeted to rich people.,0,Where did Foreman tell his patient that the new medicine was targeted after talking to his patient about his blood pressure?,133011,House M.D.,21.39-23.67,house_s02e03_seg02_clip_03,Foreman told his patient that the medication was targeted to African-Americans. 10973,A magazine,A bag of candy,A purse,A phone,A cup,4,"What was in front of Monica when she was telling Chandler to look all he wants, it;s happening?",133012,Friends,36.42-45.1,friends_s07e14_seg02_clip_11,A cup 10974,Sleeping,Eating,Doing surgery,Doing rounds,Having a drink,0,What was Miranda doing when Izzy needed her?,133013,Grey's Anatomy,48.37-71.17,grey_s01e01_seg02_clip_09,Sleeping 10975,Aliens have landed,There's a fire inside,There's a tornado,There is a patient issue,The apocalypse has come,3,Why does Thirteen interrupt House and Wilson when they are talking about pain?,133014,House M.D.,12.74-20.48,house_s05e01_seg02_clip_04,There is a patient issue 10976,Rachel said that the man was not Joshua.,Rachel said that Joshua looks very different in Chandler's dream.,Rachel asked Chandler why he picked that man to be Joshua.,Rachel said that she would prefer to stay. ,Rachel said that she was very sad to leave the dream.,0,What did Rachel say after a man walked in and said that he was Joshua and was here to pick up Rachel?,133015,Friends,20.59-26.47,friends_s04e14_seg02_clip_19,Rachel said that the man was not Joshua. 10977,Watching tv,Drinking wine,Eating take out,looking at a case file,Reading magazines,4,What are Castle and Beckett doing when they are sitting on the couch?,133016,Castle,8.27-13.79,castle_s06e19_seg02_clip_00,Reading magazines 10978,Monica said she couldn't remember the girl's name. ,Chandler's worst break up had been Susan. ,Janice had been Chandler's worst break up. ,Chandler's worst break up had been a woman no one had met. ,Chandler's worst break up had been with Monica herself. ,2,Who did Monica say had been his worst break up when she talked to Chandler? ,133017,Friends,15.38-26.7,friends_s01e10_seg02_clip_05,Janice had been Chandler's worst break up. 10979,Cuddy's clothes,Flowers,Photographs,Books,Fire Extinguisher,0,What is next to House when he stands in front of the door?,133018,House M.D.,42.92-52.02,house_s07e13_seg02_clip_26,Cuddy's clothes 10980,Kill him,Take everything away from him,Kill his family,Impersonate him,Steal from him,1,What does Tyson tell Castle he's going to do to him when they are talking in the jail cell?,133019,Castle,0-26.36,castle_s05e05_seg02_clip_16,Take everything away from him 10981,Beckett put a clip in her hair.,Beckett pulled her hair.,Beckett twirled her hair.,Beckett got her hair wet.,Beckett fixed her hair.,4,What did Beckett do to her hair when she turn away from Eric?,133020,Castle,5.55-11.1,castle_s05e21_seg02_clip_19,Beckett fixed her hair. 10982,He is concerned about her skin hygiene. ,He tells her that she needs soft skin. ,He tells her that she would like the smell. ,He tells her it's good for her skin. ,He tells her that she just got burned. ,4,Why does Sheldon ask Penny if she wants aloe vera when they are at the wedding?,133021,The Big Bang Theory,0-3.98,s05e24_seg02_clip_14,He tells her that she just got burned. 10983,bored,happy,tired,upset,angry,3,How did Barney feel when he couldn't get an answer from Emmitt?,133022,How I Met You Mother,26.34-41.95,met_s02e14_seg02_clip_14,upset 10984,A toy sail boat.,A book.,A coffee cup.,A twig.,A purse.,4,What was Eve holding before she Exhaled deep? ,133023,House M.D.,66.24-72.09,house_s03e12_seg02_clip_23,A purse. 10985,Opens the window.,Shuts the door.,Leaves the office.,Breaks the window.,Closes the window.,1,What does Chandler do after he says look Joey?,133024,Friends,3.66-6.41,friends_s02e23_seg02_clip_13,Shuts the door. 10986,Joey has a split personality.,Joey begins when Dr. Drake leaves the hospital.,"With Dr. Drake, the writers tell him what to say. With Joey, he pretty much has to make it up on his own.",Joey's alter ego is Dr. Drake Ramoray.,Joey is pretending to be a doctor.,2,How does Joey know when Dr. Drake leaves off and Joey Tribbiani begins?,133025,Friends,22.91-37.23,friends_s06e15-16_seg02_clip_27,"With Dr. Drake, the writers tell him what to say. With Joey, he pretty much has to make it up on his own." 10987,A piano.,A motorcycle.,A white board.,A blow dryer.,A book case.,4,What is behind Beckett when she said something to Castle about ending up here?,133026,Castle,68.27-76.92,castle_s08e15_seg02_clip_17,A book case. 10988,Sheldon says he doesn't like his tone. ,Sheldon says he doesn't care. ,Sheldon says he never identified with the rebel alliance. ,Sheldon says that they should call it something else then. ,Sheldon says he doesn't think Leonard fits in either. ,2,What is Sheldon't reaction when Leonard says Amy is not a good fit for the rebel alliance?,133027,The Big Bang Theory,3.69-8.62,s04e03_seg02_clip_03,Sheldon says he never identified with the rebel alliance. 10989,Castle says McManus' son's death,Castle says McManus' mom's death,Castle says McManus' father's death,Castle says McManus' brother's death,Castle says McManus' daughter's death,0,What does Castle say triggered McManus' recent mental health episodes after Esposito says about a handwriting match?,133028,Castle,0-19.26,castle_s05e13_seg02_clip_15,Castle says McManus' son's death 10990,Amy.,Penny.,Leonard.,Howard.,Sheldon,2,Who criticizes Indiana Jones after Raj declares him a hero?,133029,The Big Bang Theory,50.58-70.06,s07e04_seg02_clip_17,Leonard. 10991,A danish.,Ice cream.,Carrot cake.,Cheesecake.,A cookie.,3,What is Chandler eating when Rachel enters the room?,133030,Friends,0-7.7,friends_s07e11_seg01_clip_00,Cheesecake. 10992,Because both babies had his birthmark.,Because both mothers slept with no one else but him.,Because a father just knows about these things.,Because the two baby girls look just like him.,Because he loves the 2 girls so much he doesn't want to know.,3,Why does Taub say testing is unnecessary to prove the paternity of his two baby girls after House asks him whether he's had a DNA test performed?,133031,House M.D.,61.12-68.76,house_s08e05_seg02_clip_01,Because the two baby girls look just like him. 10993,next to the nurses station,by the door,by the vending machine,by scott,by the window blinds,4,where is house standing when talking to scott and his wife about a procedure?,133032,House M.D.,82.59-89.29,house_s03e21_seg02_clip_18,by the window blinds 10994,The closet.,The kitchen.,The laundry room.,The bathroom.,The dining room.,0,What does Bernadette tell Howard to show Sheldon after he tells her she was silly to cook for him?,133033,The Big Bang Theory,32.27-43.02,s06e19_seg01_clip_01,The closet. 10995,Howard and Bernadette are throwing Stuart a surprise party,Howard and Bernadette are letting Stuart stay in the house,Howard and Bernadette are planning to redecorate Stuart's comic book store.,Howard and Bernadette are going to loan Stuart money.,Howard and Bernadette are helping Stuart become a USA citizen,1,Why does Raj say that Howard and Bernadette are being nice to Stuart when they walk into the house?,133034,The Big Bang Theory,18.01-59.42,s08e18_seg02_clip_03,Howard and Bernadette are letting Stuart stay in the house 10996,The floor.,The wall.,The window.,Rachel.,The door.,4,Where does Ross's shadow fall when Rachel talks about kissing?,133035,Friends,39.55-52.83,friends_s02e04_seg02_clip_18,The door. 10997,Ignorant,Outstanding,Fitting,Stupid,Lame-brained,3,What word does Park say House used to characterize her diagnostic idea when Park gives her testimony to Cofield?,133036,House M.D.,29.66-34.22,house_s08e11_seg02_clip_03,Stupid 10998,he laughs and says what do you think of that?,"he says, that ewoks freak him out","He makes fun of leia's ""cinnamon bun"" hair.","He says, that rebels are like terrorists","He goes on to explain that although they build death stars, he's always been an empire man.",4,What does Sheldon say after he states he never identified with the rebel alliance?,133037,The Big Bang Theory,9.24-13.55,s04e03_seg02_clip_03,"He goes on to explain that although they build death stars, he's always been an empire man." 10999,Ok umm,Sounds pessimistic ,Thats sad,Sounds very romantic ,That sounds very happy,0,"What did Addison say after said ""I am not optimistic?""",133038,Grey's Anatomy,62.92-70.14,grey_s03e25_seg02_clip_12,Ok umm 11000,Threw confetti,Gave Ross a bottle of booze,Gave Ross a hug,Jumped over the couch,Set a cake on the table,3,What did Joey do after he said there's the birthday boy?,133039,Friends,8.82-17.33,friends_s01e04_seg02_clip_01,Jumped over the couch 11001,In a ponytail,In a bun,Down and frizzy,A French braid ,In pig tails,2,How was Monica wearing her hair when she was with Chandler and Phoebe eavesdropping on Ross? ,133040,Friends,14.18-19.85,friends_s10e01_seg02_clip_02,Down and frizzy 11002,Pay his bills,Clean the bathroom,Take out the garbage,Leave food out for him,Take him to a movie,3,What does Alexis joke that she has to do when she comes back to visit Castle?,133041,Castle,0-9.9,castle_s04e13_seg02_clip_27,Leave food out for him 11003,A security system ,A bunch of barbies,A room for her clothes,About eleven cats,A full swing for sex,4,Which item does House say he expected in Thirteen's house after seeing the inside?,133042,House M.D.,29.26-48.61,house_s05e05_seg02_clip_05,A full swing for sex 11004,Bailey hugs Alex.,Bailey hugs Richard.,Bailey dances with Ben.,Bailey hugs Izzie.,Bailey cuts her eyes upward at Richard.,4,What does Bailey do after Richard says this is a patient?,133043,Grey's Anatomy,39.14-41.42,grey_s03e12_seg02_clip_08,Bailey cuts her eyes upward at Richard. 11005,A park,A patient room,A hostipal lobby,A hospital chapel,A restaurant,4,Where are Keener and Cameron when they have their conversation?,133044,House M.D.,0-9.8,house_s06e06_seg02_clip_09,A restaurant 11006,He waits for Beckett.,He runs to the building.,He gets back in.,He walks to the door.,He falls down.,4,What happens to Castle after he steps out the car?,133045,Castle,44.65-52.95,castle_s06e02_seg02_clip_23,He falls down. 11007,because they might hide something,because most can't give permission,because it's best to be nosy,because you find out more by being sneaky,because its tells a lot about a person,0,Why did Masters say they don't ask patient for permission when they want to see their living arrangements,133046,House M.D.,37.58-45.63,house_s07e08_seg02_clip_05,because they might hide something 11008,Andrew,Chandler,Kevin,Joey,Samuel,3,Who tells Ross he needs to think about the 'trail' between the two women when giving Ross advice?,133047,Friends,47.59-63.03,friends_s03e16_seg02_clip_03,Joey 11009,Michael said Allison didn't handle the move well.,Michael said Allison hated the suburbs.,Michael said Allison loved the suburbs.,Michael said Allison was distressed about the move to the suburbs.,Michael said Allison handled the move very well.,0,How did Michael tell Beckett and Castle that Allison handled it after the move to the suburbs?,133048,Castle,70.05-77.57,castle_s01e08_seg02_clip_03,Michael said Allison didn't handle the move well. 11010,Leonard was upset because his cell phone rang.,Leonard was upset because Sheldon came into the room.,Leonard was upset because his computer shut down.,Leonard was upset because his computer screen froze.,Leonard was upset because his mother turned off his computer.,3,Why was Leonard upset when Priya took off her top?,133049,The Big Bang Theory,9.78-36.14,s05e02_seg02_clip_07,Leonard was upset because his computer screen froze. 11011,Is everything ok?,We need to go the the hospital now.,"Okay, I'm gonna come out to Long Island with you.",I never really liked your father anyway.,Well this ruins our vacation plans.,2,What did Ross say after Rachel said her father had a heart-attack?,133050,Friends,28.81-33.92,friends_s10e13_seg02_clip_01,"Okay, I'm gonna come out to Long Island with you." 11012,A police officer.,A piece of paper.,A box.,An empty chair.,A duffel bag.,3,What was in the middle of the hallway when Rita told Castle he had a mischievous grin?,133051,Castle,1.82-5.92,castle_s08e11_seg02_clip_22,An empty chair. 11013,Her jacket,Shopping bags,A cup of bottle,A water bottle,Her glasses,0,What is in Phoebe's hands when she is talking to Foreman outside the patient room?,133052,House M.D.,25.84-32.97,house_s06e06_seg02_clip_09,Her jacket 11014,He wants a sleeve tattooed on his left arm.,That he never liked Robin anyway.,He wants to hookup with the tattoo artist.,"He recites his famous ""legendary"" catch phrase.",He can't wait to show his friends his new ink.,3,What does Ted say before laying down for his tattoo?,133053,How I Met You Mother,52.26-61.85,met_s03e01_seg02_clip_12,"He recites his famous ""legendary"" catch phrase." 11015,The best gift to give a woman is something she has admired that her best friend has,The best gift to give a woman is something she doesn't even know she wants,The best gift to give a woman is a diamond,The best gift to give a woman is something she said she wanted when she didn't think you were listening,The best gift to give a woman is the last thing her best friend's husband bought her best friend.,3,What does Castle say is the best gift to get a woman when Montgomery is having a hard time choosing a gift for his wife?,133054,Castle,13.57-21.26,castle_s03e23_seg02_clip_14,The best gift to give a woman is something she said she wanted when she didn't think you were listening 11016,She tells him to make an appointment to talk to her next week,She tells him she will be happy to talk with him about it now,She tells him she will discuss the matter with him at his review in August,She tells him she will discuss the matter when he has another offer,She says she will not discuss the matter with him at all in the foreseeable future,2,When does Cuddy tell Foreman she will discuss his request with him when he goes to her office?,133055,House M.D.,22.23-26.77,house_s06e10_seg02_clip_05,She tells him she will discuss the matter with him at his review in August 11017,She says Ben's birth parents need to be there,"She says all the parents need to be there, except for Ben's birth parents",She says the children need to be there,She says an attorney needs to be there,"She says all the parents need to be there, even Ben's birth parents.",1,"Who does Phoebe say needs to be present when she is trying to set a time for the ""meeting""? ",133056,Friends,2.61-10.46,friends_s08e10_seg02_clip_15,"She says all the parents need to be there, except for Ben's birth parents" 11018,A picture of the a man on a horse,A picture of the murder victim,A picture of the crime scene,A picture of the murder weapon,A picture of a man in a vehicle,4,What does Beckett show to Gates when discussing the evidence outside the interrogation room?,133057,Castle,0-5.88,castle_s06e16_seg02_clip_13,A picture of a man in a vehicle 11019,"House said "" Don't forget to use number ten silk to avoid scarring.""","House said ""Dont forget her Chesticles.""","House said "" Don't forget to check for arterial leaks before closing.""","House said "" Don't forget your on the clock.""","House said ""dont forget rounds are in 15 minutes.""",1,"When after telling the team to close, what did House remind the team to not forget?",133058,House M.D.,20.25-31.69,house_s04e02_seg02_clip_23,"House said ""Dont forget her Chesticles.""" 11020,Monica and Chandler were at the bar. ,"Monica and Chandler were in their bedroom, Chandler wanting to cuddle in bed before the wedding. ",Monica and Chandler were in the bathroom. ,Phoebe was in Monica's bedroom. ,Phoebe was at the bar with Monica and Chandler. ,1,Where were Monica and Chandler at before getting dressed for the wedding? ,133059,Friends,46.22-52,friends_s07e01_seg02_clip_01,"Monica and Chandler were in their bedroom, Chandler wanting to cuddle in bed before the wedding. " 11021,They didn't think Max should be eating a porter house steak while on his diet. ,They were impressed by the size of the steak.,It was most likely a tongue in cheek off color joke pertaining to anatomical size. ,They are vegans who disaprove of eating meat and are deeply offended. ,They all have stomach infections from the night before and the thought of food makes them sick. ,2,Why do the guests have an awkward reaction after Max indicates the size of the steak?,133060,How I Met You Mother,13.96-62.03,met_s06e05_seg02_clip_10,It was most likely a tongue in cheek off color joke pertaining to anatomical size. 11022,Leonard means that he knows how long Penny has been wanting this. ,Leonard means that he knows how long Penny has been studying. ,Leonard means that he knows how much it costs to be in a movie. ,Leonard means that he knows what Penny looks like naked. ,Leonard means that he knows what Priya means when she says it's no big deal. ,0,What does Leonard mean when he says he can't get over the fact that Penny got a big movie part?,133061,The Big Bang Theory,34.53-36,s04e22_seg02_clip_10,Leonard means that he knows how long Penny has been wanting this. 11023,Rachel offered to do the break up with Chandler.,Joey offered to do the break up with Chandler.,Monica offered to do the break up with Chandler.,Phoebe offered to do the break up with Chandler.,Ross offered to do the break up with Chandler.,3,Who offered to do the break up with Chandler after he was having a hard time of doing it?,133062,Friends,44.76-59.68,friends_s01e05_seg02_clip_00,Phoebe offered to do the break up with Chandler. 11024,He rubbed his head.,He kissed his Ipad.,He winked.,He clapped his hands.,He snapped his fingers. ,0,"What did Sheldon do when he said, ""Thanks, brain""?",133063,The Big Bang Theory,16.31-18.72,s06e06_seg02_clip_03,He rubbed his head. 11025,Psych ,Peds,Dermotology,ER ,OBGYN ,0,Which department does House tell Wilson to go when he is reading the poem?,133064,House M.D.,16.12-23.1,house_s01e08_seg02_clip_08,Psych 11026,He calls her lunatic. ,He calls her witch. ,He calls her Bernie. ,He calls her psycho woman. ,He calls her scary psycho. ,2,What does Howard call Bernadette when she is being scary?,133065,The Big Bang Theory,16.94-18.69,s06e24_seg02_clip_05,He calls her Bernie. 11027,On the floor,On a table,On a couch,On a bed,They're standing against the wall,1,Where is Sheldon and Amy sitting when they're talking?,133066,The Big Bang Theory,0-9.46,s09e19_seg02_clip_16,On a table 11028,He didn't want anyone to see his cast.,He didn't want anyone to see his too white teeth.,He didn't want anyone to see his black eye.,He didn't want anyone to see his horrible haircut.,He didn't want anyone to see him over tanned.,4,Why wouldn't Ross let Chandler in after he knocked on his door? ,133067,Friends,47.27-57.77,friends_s10e03_seg02_clip_22,He didn't want anyone to see him over tanned. 11029,He looks at the male detective pursuing charges against him.,"He looks at his male, DA co-worker.",He looks at his female co-worker that was supposed to leave.,He looks in a mirrored tile on a column.,He looks down because he won't have to look anyone in the eyes when he looks down.,1,Who does the DA look at when he wants to confirm visually that he didn't answer the dead man's call?,133068,Castle,31.2-40.83,castle_s03e19_seg02_clip_17,"He looks at his male, DA co-worker." 11030,England,New York,Greece,Japan,The Bahamas,2,Where are Ross and Rachel going when they start to board the plane?,133069,Friends,0.32-11.35,friends_s05e01_seg02_clip_18,Greece 11031,He says he is staying with her. ,He says okay but only because she said please. ,He says he is breaking up with her. ,He says he doesn't like her anymore. ,He says that he is sick. ,1,How does Castle respond after Beckett asks him not to make it harder?,133070,Castle,69.94-76.38,castle_s05e21_seg02_clip_16,He says okay but only because she said please. 11032,Terry wanted to put his finger away.,Terry wanted to put his finger through his eye.,Terry wanted to put his finger on his other hand.,Terry wanted to put his finger on his waist.,Terry wanted to put his finger on his foot.,1,Where did Terry want to put his finger when he was talking about Phoebe?,133071,Friends,7.25-15.38,friends_s02e06_seg02_clip_03,Terry wanted to put his finger through his eye. 11033,he begins to address her,he walks out,he cries,he bangs on the table,he makes an omlette,0,what happens after chandler faces monica,133072,Friends,0-8.56,friends_s09e16_seg02_clip_01,he begins to address her 11034,A newsboy cap,A baseball cap,A cowboy hat,A surgical scrub cap,A beret,0,What type of hat was House wearing when he was in the car with Wilson and Gabe?,133073,House M.D.,41.9-51.46,house_s03e07_seg02_clip_11,A newsboy cap 11035,He says Castle is desperate to clear his name,He says Castle is desperate to find Beckett,He says Castle is desperate to clear Beckett's name,He says Castle is desperate to get back on the job,He says Castle is desperate to find the killer,1,What does Ryan tell Hyde Castle is desperate to do when she questions him?,133074,Castle,0-4.14,castle_s08e02_seg02_clip_12,He says Castle is desperate to find Beckett 11036,thank you,that was good,there girl,You are welcome,done,3,what does Chandler say to Monica when they are done having sex?,133075,Friends,28.53-62.03,friends_s09e05_seg02_clip_14,You are welcome 11037,george says i need sleep.,george says he totally agrees,george says you're an idiot,george says i'm hungry let's go eat ,george says they're becoming people people they want to be with avoid,4,what does george think when meredith says she's izzie optimistic?,133076,Grey's Anatomy,20.03-31.86,grey_s03e06_seg02_clip_03,george says they're becoming people people they want to be with avoid 11038,Noon,4:30,2:00,10:30,5:00,1,How did Joey reply after Chandler asked him what time it was?,133077,Friends,28.07-32.65,friends_s03e15_seg02_clip_04,4:30 11039,Chanler picked up nothing,Chanler picked up a notebook,CHanler picked up a pot,Chanler picked up a cup,Chanler picked up a bird statue,4,What did Chanler pick up after he entered the apartment?,133078,Friends,4.34-6.2,friends_s08e10_seg02_clip_06,Chanler picked up a bird statue 11040,Ross' mother wanted to give him a hug and to tell him how happy she was for him.,Ross' mother wanted to give Ross the family heirloon wedding ring. (Awwww... ),Ross' mother wanted to give him a kiss on the cheek and to tell him how happy she was for him.,Ross' mother wanted to tell him she loved Rachel just like she was family.,Ross' mother wanted to tell Ross that his father was also very happy for him despite his not being there.,1,"What did Ross' mother want to give him when they were in the hallway? (Why are these HITs making me tear up??? Come on, Tamara Berg! Now I'm gonna have to rewatch this series! <3)",133079,Friends,0-27.15,friends_s08e23-24_seg02_clip_05,Ross' mother wanted to give Ross the family heirloon wedding ring. (Awwww... ) 11041,A handbag.,A suit.,A haircut.,A headband.,A pair of boots.,1,What did Rachel show to Monica after she ran into the kitchen?,133080,Friends,16.64-21.48,friends_s04e09_seg02_clip_12,A suit. 11042,He walks away.,He smiles at her,He makes a phone call.,He looks at her.,He scratches his ear.,3,What does the man do after the woman in the leaf costume answers his question?,133081,Castle,81.03-91.05,castle_s05e06_seg02_clip_06,He looks at her. 11043,Castle burns the photographs.,Castle tears them up.,Castle makes a phone call.,Castle throws the photos.,Castle takes a drink of water.,2,What does Castle do after looking at the photographs?,133082,Castle,77.17-80.31,castle_s08e21_seg02_clip_07,Castle makes a phone call. 11044,Black,Red,Yellow,Blue,White ,0,What is the color of Rachel's jacket when she is talking to Monica?,133083,Friends,2-11.69,friends_s05e08_seg02_clip_06,Black 11045,Took an airbus cross country,Hoped from the cat to the cat lady's lungs,Fell into her mouth in her sleep,Crawled into her nose in the shower,Transported virtually through the internet,1,How does House believe the worms traveled to the woman when talking to Foreman about the patient?,133084,House M.D.,17.32-25.98,house_s05e18_seg02_clip_06,Hoped from the cat to the cat lady's lungs 11046,Next door,Joey's apartment,Coffee shop,Hallways,Across the street,3,"Where are Phoebe, Ross and Joey when Monica and Chandler hear them",133085,Friends,0-36.46,friends_s10e08_seg02_clip_09,Hallways 11047,Ms. Twohey wanted to get to know Rob better.,Ms. Twohey wanted to borrow some money from Rob.,Ms. Twohey wanted to go over some financial issues with Rob.,Ms. Twohey wanted to get her mind off work.,Ms. Twohey wanted to take Rob out to eat.,2,Why did Ms. Twohey want to meet up with Rob when she called him?,133086,Castle,3.16-5.42,castle_s05e10_seg02_clip_03,Ms. Twohey wanted to go over some financial issues with Rob. 11048,Bag of potato chips.,Cup of coffee.,A pencil.,The mail.,A basketball.,2,What does Howard have in his hand when he is singing with Raj?,133087,The Big Bang Theory,0-8.11,s09e04_seg02_clip_06,A pencil. 11049,Staff were being underpaid,Staff couldn't have a break,Staff were skipping their meals,Staff couldn't wash their hands,Staff had eaten contaminated food,3,Why does Cuddy conclude the infection spread have after hearing Wilson's remark?,133088,House M.D.,74.64-80.56,house_s01e04_seg02_clip_06,Staff couldn't wash their hands 11050,Movie,Football,Cartoons,News,Pageant,4,What did Katie want to watch on television when Meredith was examing her?,133089,Grey's Anatomy,6.05-18.14,grey_s01e01_seg02_clip_09,Pageant 11051,So Castle and Beckett can continue to use it to solve the case at his home,So Castle can show it to the FBI,So Castle can present it in court as evidence,Because Castle wants to buy the same shower curtain for his bathroom,Because Castle needs to get it translated,0,Why has Castle taken a picture of the shower curtain murder board before he and Beckett are removed from the task force,133090,Castle,69.09-84,castle_s03e16_seg02_clip_23,So Castle and Beckett can continue to use it to solve the case at his home 11052,Hi there.,Hey lover!,What's up.,He baby.,Where are you?,1,What was the first thing Beckett said after she answered the phone? ,133091,Castle,72.58-90.73,castle_s06e23_seg02_clip_26,Hey lover! 11053,Her jacket,Her shirt,Her necklace,Her ring,Her bracelet,0,What did mom take off when she was talking to Chase?,133092,House M.D.,3.03-7.41,house_s01e08_seg02_clip_06,Her jacket 11054,On the floor,On the base.,On the table next to the couch.,On the kitchen counter.,On the couch next to Monica.,4,Where was the phone when Phoebe grabbed it? ,133093,Friends,5.1-15.91,friends_s02e21_seg02_clip_11,On the couch next to Monica. 11055,Chandler says people grab them and kiss them.,Chandler says people want to touch their clothes.,Chandler says people scream at them saying they look fabulous.,Chandler says designers pay them a lot of money.,Chandler says people start crying when they see them.,2,What does Chandler think happens to celebrities when they wear these tuxedos?,133094,Friends,28.21-33.62,friends_s07e20_seg02_clip_02,Chandler says people scream at them saying they look fabulous. 11056,a phone,a statue,a beer,a piece of cake,a bowl ,2,What is Chandler holding when Ross answers the door? ,133095,Friends,57.07-62.03,friends_s05e19_seg02_clip_04,a beer 11057,Science quarterly,Atom of the month,Science Science Science!,Planets monthly,Science Magazine,4,What Magazine did Penny give to Leonard when he answered the door,133096,The Big Bang Theory,47.01-51.93,s04e11_seg01_clip_00,Science Magazine 11058,Coffee,Fork,Glass of wine,Tea,Fruit,2,What did Cristina pick up from the table after sitting down? ,133097,Grey's Anatomy,69.79-77.9,grey_s03e18_seg02_clip_21,Glass of wine 11059,It's the first time you heard that sentence,What the hell?,How are the headaches?,Give me your head,How cool is that?,3,What did House ask Cotter when he entered the room?,133098,House M.D.,36.81-38.19,house_s06e19_seg02_clip_22,Give me your head 11060,The best part.,The worst part.,The boring part.,The long part.,He doesn't say anything about a part.,1,What part does Castle say is over after beginning of the scene?,133099,Castle,3.08-8.81,castle_s02e07_seg02_clip_22,The worst part. 11061,Ted looks at them suspiciously,Barney falls out of his chair,Barney gets up behind her.,Barney falls,Barney looks visibly upset,2,What happens after Robin gets up to get a drink?,133100,How I Met You Mother,30.72-31.93,met_s03e17_seg02_clip_01,Barney gets up behind her. 11062,Monica was the only person she knew who lived nearby,Monica was her maid of honor,Rachel realized she was in love with Monica all along,Rachel wanted to cancel Monica's services in time to get her deposit back,Monica was the one who convinced her not to get married,0,Why did Rachel go to Monica when she decided not to get married?,133101,Friends,0-13.66,friends_s01e01_seg02_clip_05,Monica was the only person she knew who lived nearby 11063,Monica raises her hand up and takes Phoebe's guitar,Monica and Joey start laughing,Monica and Joey have a surprised look on their face.,Joey starts clapping his hands,Monica gets up and grabs a drink,2,What happens after Phoebe starts to play her song?,133102,Friends,4.85-11.98,friends_s03e14_seg02_clip_20,Monica and Joey have a surprised look on their face. 11064,Richard said Sophie was 60.,Richard said Sophie was 66..,Richard said Sophie was 70.,Richard said Sophie was 50.,Richard said Sophie was 78.,4,How old did Richard say Sophie was when he was instructing George?,133103,Grey's Anatomy,37.42-38.73,grey_s02e14_seg02_clip_02,Richard said Sophie was 78. 11065,Giving money to people.,The raffle.,Dinner.,Mingling over cocktails.,Taking pictures.,3,What does Megan say is after the red carpet when she is talking in the Limo?,133104,Castle,2.02-12.63,castle_s07e18_seg02_clip_02,Mingling over cocktails. 11066,Shark,Snake,Worm,Monkey,Alligator,1,What animal is on Phoebe's shirt when she visits Rachel?,133105,Friends,0-5.22,friends_s09e01_seg02_clip_04,Snake 11067,They were siblings,They were lovers,They were friends,They were cousins,They worked together,4,How did Alyssa say she was tied to Mr. Hayes when Kevin asks her?,133106,Castle,6.92-13.85,castle_s04e05_seg02_clip_02,They worked together 11068,children,food,a briefcase,an apartment,baggage,4,What does Racheal say Mona must have too before she leaves the apartment?,133107,Friends,3.3-10.5,friends_s08e08_seg02_clip_16,baggage 11069,answered the phone,ate a donut,made more coffee,pulled out four eyelashes,changed clothes,3,What did Phoebe do after she drank a sip of her coffee?,133108,Friends,18.99-28.93,friends_s01e01_seg02_clip_09,pulled out four eyelashes 11070,Rachel tells Ross that the girl had just spent the entire night singing in a bar. ,Rachel tells Ross that the girl had just spent the entire night dancing with another man. ,Rachel tells Ross that the girl had just spent the entire night looking at pictures of Monica. ,"Rachel tells Ross that the girl had just spent the entire night talking to his friends, asking to hear stories about him, and looking at Monica's photo albums, and ",Rachel tells Ross that the girl had just spent the entire night eating. ,3,What does Rachel tell Ross that this girl spent the entire night doing after Ross tells Rachel that it was over?,133109,Friends,45.28-62.03,friends_s04e16_seg02_clip_19,"Rachel tells Ross that the girl had just spent the entire night talking to his friends, asking to hear stories about him, and looking at Monica's photo albums, and " 11071,A laptop.,A painting.,A piece of paper.,a cell phone.,A statue.,2,What did Victor show to Castle and Beckett after he said it wasn't true?,133110,Castle,0-5.9,castle_s05e07_seg02_clip_04,A piece of paper. 11072,Batman,Richard,Paul,Tag,Paolo,0,Who did Chandler say Monica wanted to sleep with when she settled for Robin?,133111,Friends,32.34-37.84,friends_s07e16_seg02_clip_19,Batman 11073,A US dollar coin,A US penny,An Iranian rial,A Iranian dollar,A peso,2,What is Lanie about to identify the coin as after doing some enhancements to the markings?,133112,Castle,31.79-42.99,castle_s06e12_seg02_clip_07,An Iranian rial 11074,Read documents,Sit at his desk,Adjust the chair,Trash the office,Steal candy,2,What does House do when he is in Dr. Pinto's office?,133113,House M.D.,70.54-74.64,house_s08e02_seg02_clip_15,Adjust the chair 11075,"Ted said, no questions.",Ted asked more questions.,Ted sair to write the questions.,Ted said to brainstorm te questions.,Ted said to read the questions.,0,What said Ted after many students raised their hands?,133114,How I Met You Mother,0-51.96,met_s05e01_seg02_clip_11,"Ted said, no questions." 11076,a towel,a neck pillow,his headphones,a stethoscope ,a scarf,2,what does house put around his neck when keo comes up to him on the plane?,133115,House M.D.,64.42-73.88,house_s03e18_seg02_clip_02,his headphones 11077,the who,the what,the how,the when,the infection,1,Where did House say they should start before saying they can deal with the why later?,133116,House M.D.,0-4.04,house_s02e21_seg02_clip_14,the what 11078,Whispering on the phone,Eating a sandwich,Crying,Laying on a couch reading,Push-ups,3,What is the man in the white shirt and striped tie doing when House walks into the room?,133117,House M.D.,82.83-88.75,house_s08e07_seg02_clip_22,Laying on a couch reading 11079,Ross,Rachel,Monica,Joshua,Emily,0,Who comes in the door when Chandler is dancing?,133118,Friends,48.02-57.03,friends_s04e20_seg02_clip_08,Ross 11080,in the watch room above the operating room,in the conference room,the nurses lounge,the locker room,the cafeteria,0,"where is taub, foreman, and sixteen when chase is about to do surgery on penelope?",133119,House M.D.,16.39-26.37,house_s05e23_seg02_clip_21,in the watch room above the operating room 11081,So that she can make her commission,So it can fulfill its Christmas destiny.,So that her boss didn't fire her for not making any sales,So that the man's grandson would realize that Xmas is more than just lots of presents,Because it was the last tree on the lot,1,Why did Phoebe say the man had to buy the brown tree after he told her it was almost dead,133120,Friends,0-12.62,friends_s03e10_seg02_clip_14,So it can fulfill its Christmas destiny. 11082,Shoes,Booze,Ties,Notebooks,Flowers,1,What does Chase show Taub when he kneels down?,133121,House M.D.,38.01-42.01,house_s06e08_seg02_clip_07,Booze 11083,"Tilly, Chandler's exgirlfriend","Tilly, Eddie's grandmother","Tilly, Chandler's one night stand.","Tilly, Eddie's exgirlfriend","Tilly, Eddie's sister.",3,Who is the girl that is talking to Chandler before Eddie walks in?,133122,Friends,10.15-49.9,friends_s02e18_seg02_clip_04,"Tilly, Eddie's exgirlfriend" 11084,Raj was at a comic book store,Raj was at school,Raj was at a park,Raj was at his apartment,Raj was at a cafe,0,Where was Raj when he was spending Valentine's day with Stuart?,133123,The Big Bang Theory,18.59-25.97,s06e16_seg02_clip_08,Raj was at a comic book store 11085,Sheldon says that his is washed up,Sheldon owes him money,Sheldon made the room messy,Sheldon ate all the cereal,Sheldon broke his computer.,0,Why does leonard get upset when he is talking to Sheldon?,133124,The Big Bang Theory,8.78-25.68,s05e10_seg02_clip_02,Sheldon says that his is washed up 11086,heard sirens ,she likes him,she is scared of him,does not want him to leave ,his pager goes off,4,why does cameron get tense before house leaves,133125,House M.D.,72.82-88.75,house_s01e19_seg02_clip_00,his pager goes off 11087,Throwing it into the trash can,Eating the whipped cream,Putting it away in the fridge,Buying it at the store,Icing a cake,4,What was Monica doing with the can of whipped cream after Mrs. Geller took the pie out of the oven?,133126,Friends,8.7-11.71,friends_s02e16_seg02_clip_03,Icing a cake 11088,Roger,Mark,David,Kevin,"Danielle, who is Tyler's girlfriend's roommate.",4,Who do Castle and Beckett question after Tyler?,133127,Castle,68.48-90.11,castle_s02e16_seg02_clip_05,"Danielle, who is Tyler's girlfriend's roommate." 11089,Amy explains how she doesn't want to have anything to do with anyone. ,Amy explains how scary everyone is. ,Amy explains how crazy everyone is. ,Amy explains how nice everyone is. ,Amy explains she wants to go home. ,3,What does Amy explain to Lucy when they are having dinner at Raj's?,133128,The Big Bang Theory,52.28-58.42,s06e24_seg02_clip_05,Amy explains how nice everyone is. 11090,Buttoning a shirt,Putting on a hat,Braiding his hair,Smoking a cigar,Unrolling his sleeves,3,What is House doing when talking to Wilson?,133129,House M.D.,0-3.45,house_s02e17_seg02_clip_27,Smoking a cigar 11091,use oil,use vaseline,turn the computer off then on,get the doctor,get two nurses,2,What did the nurse do to help Howard when he was in trouble?,133130,The Big Bang Theory,10.32-25.49,s04e01_seg02_clip_16,turn the computer off then on 11092,"Pop music, TV and movies.","Video games, TV and cell phones.","Microwave ovens, cars and movies.","Movies, books and magazines.","Hair dye, nail polish and pop music.",0,What parts of modern culture does Roz reveal as forbidden to her now after Kushner asks her if she completely left her former business?,133131,House M.D.,19.33-29.45,house_s04e12_seg02_clip_03,"Pop music, TV and movies." 11093,A knife,A needle ,A pill,A stint,A microchip,1,What does Taub go to stick into Julie's leg before he realizes she may have smallpox?,133132,House M.D.,51.2-61,house_s07e07_seg02_clip_04,A needle 11094,He goes to find out if he can get an extension on his contract,He goes to find out what his title is,He goes to ask for a raise,He goes to tell her he is unhappy working there,He goes to complain about Chase,2,Why does Foreman go to Cuddy's office after he asks Chase a question?,133133,House M.D.,20.42-24.05,house_s06e10_seg02_clip_05,He goes to ask for a raise 11095,A mailman,A young artist named Alyssa,An museum curator,An auctioneer,A singer.,1,Who was being interviewed after the body is discovered?,133134,Castle,6-16.62,castle_s04e05_seg02_clip_02,A young artist named Alyssa 11096,"Carol yelled ""Ross bring me some ice cream"".","Carol yelled ""What"".",Carol left the apartment.,"Carol yelled What is going on with my face""?","Carol yelled ""Oh, my God""1",4,"What did Ross's girlfriend Carol yell, after Rachel said to Ross ""Maybe they're not funny to you""",133135,Friends,7.2-11.71,friends_s07e16_seg02_clip_21,"Carol yelled ""Oh, my God""1" 11097,She uses her hands to toss her hair.,She takes a bite of a cookie,She takes a drink of juice,She opens a bottle of water,She takes a plate to the table,0,What does Rachel do after Ross and her Dad joke about her running after a robber?,133136,Friends,24.13-32.27,friends_s03e07_seg02_clip_18,She uses her hands to toss her hair. 11098,Beckett ,Captain Montgomery. ,Castle,Ryan,Esposito,1,Who is watching when Eddie is being questioned?,133137,Castle,75.1-81.47,castle_s03e19_seg02_clip_23,Captain Montgomery. 11099,He told him to come towards the sound of his voice,He told him to come towards the sound of scissors,He told him to come towards the circumference of the earth,He told him to come towards the sound of sirens,He told him to come towards the smell of bar-b-que,1,What did Sheldon tell Mr. D'Onofio to come towards after he told him to come away from the light,133138,The Big Bang Theory,37.71-51.37,s05e18_seg02_clip_05,He told him to come towards the sound of scissors 11100,She stubbed her toe.,She cut her finger.,Mike was with someone else.,She's allergic to onions.,She's acting.,2,Why is Penny crying when Leonard walks in?,133139,The Big Bang Theory,10.68-61.02,s01e17_seg02_clip_07,Mike was with someone else. 11101,Photos,Flowers,Coats,Fire Extinguisher,Medicine cabinet,2,What is Cuddy standing by when House pulls down his pants?,133140,House M.D.,0-8.49,house_s02e13_seg02_clip_18,Coats 11102,vision,medical,Renters,life,car,2,What do type of insurance do Ross and Dr. Green agree Rachel should have when they are in her apartment?,133141,Friends,10.56-23.22,friends_s03e07_seg02_clip_18,Renters 11103,Thirteen takes away Darrlen's keys,Thirteen threatens to call the cops,Thirteen promises not to take Darrlen to the hospital,Thirteen cries and begs Darrlen to stay,Thirteen offers Darrlen money if she will stay,2,House does Thirteen get Darrlen to stay after Darrlen tries to leave?,133142,House M.D.,21.9-43.8,house_s07e22_seg02_clip_00,Thirteen promises not to take Darrlen to the hospital 11104,Sheldon walks up to the altar.,Sheldon pulls Penny and Leonard apart.,Sheldon embraces Bernadette.,Sheldon goes back to his seat.,Sheldon joins Penny and Leonard in the hug.,4,What does Sheldon do after Penny and Leonard embrace?,133143,The Big Bang Theory,55.33-60.93,s10e01_seg02_clip_16,Sheldon joins Penny and Leonard in the hug. 11105,Leonard goes to the bathroom.,Leonard hugs Penny.,Leonard punches Raj.,Leonard laughs out loud with his head thrown back.,Leonard looks out the window.,3,What does Leonard do after Sheldon explains the pun about Princeton?,133144,The Big Bang Theory,46.22-50.72,s07e03_seg02_clip_01,Leonard laughs out loud with his head thrown back. 11106,I didn't get a chance to be mad,I do get to be mad,I'm not mad,I can be mad,I am angry,2,When Cristina is telling burke he shouldn't be mad what does he cut her off an say when she's speaking?,133145,Grey's Anatomy,0-5.88,grey_s02e13_seg02_clip_20,I'm not mad 11107,Ted was standing beside Marshall,Ted was standing beside Barney,Ted was standing beside Lily,Ted was standing beside Robin,Ted was standing beside no one,1,Where was Ted standing when Barney said about step 5,133146,How I Met You Mother,0.92-13.73,met_s03e11_seg02_clip_04,Ted was standing beside Barney 11108,She is Wonder Woman,She is Michelle Obama,She is Brittany Spears,She is Lady Gaga,She is Storm,0,Who is Penny dressed as after Sheldon knocked on her door,133147,The Big Bang Theory,18.61-27.6,s04e11_seg02_clip_09,She is Wonder Woman 11109,He tells the woman give her a massage to help her relax and breathe.,He tells the woman we need to get her to the emergency room now.,He tells the woman make her stand and that her mental score is 50.,He tells the woman pick Thirteen up and give her a push.,He tells the woman to shake Thirteen as hard as she can without killing her.,2,How does House respond after the woman says Thirteen's pulse is below 50?,133148,House M.D.,3.12-9.79,house_s05e09_seg02_clip_15,He tells the woman make her stand and that her mental score is 50. 11110,Lily says she wants to make love in a bathroom.,Lily says she likes Marshall's hat.,Lily says she didn't smoke.,Lily says that Ted is her best friend.,Lily says that she hasn't been drinking.,2,What was Lily's first lie in her marriage after the first wedding?,133149,How I Met You Mother,6.76-21.32,met_s02e21_seg02_clip_18,Lily says she didn't smoke. 11111,Test tubes,Petri dishes,Microscope slides,A laptop,A calculator,0,What does Amy move from the desk and set on the counter when she was in the lab talking with Raj and Howard?,133150,The Big Bang Theory,1.01-10.72,s07e13_seg02_clip_12,Test tubes 11112,Chandler,Phoebe,Monica,Rachel,Joey,3,Who is Ross looking for when he comes into the apartment?,133151,Friends,46.38-51.25,friends_s08e03_seg02_clip_10,Rachel 11113,he was throwing up too much,they suspected small pox,he has MRSA,he had Ebola,he was seriously contagious,1,Why was the male patient in the enclosed stretcher when he was being wheeled into the hallway?,133152,House M.D.,26.08-37.54,house_s07e07_seg02_clip_12,they suspected small pox 11114,Laughs at Barney,Gives him the test on paper,Writes on the chalkboard,Grabs Barney's blazer and pulls him to the standing position,Sits down in the chair next to Barney,3,"What does the teacher do after saying ""pop quiz!"" to Barney?",133153,How I Met You Mother,34.82-40.27,met_s05e03_seg02_clip_07,Grabs Barney's blazer and pulls him to the standing position 11115,Trivial Pursuit,Pictionary,Video games,Cards,Operation,3,"What are Leonard, Raj, Howard and Sheldon playing when they are in the living room at the coffee table?",133154,The Big Bang Theory,10.01-14.3,s04e23_seg02_clip_01,Cards 11116,Foreman closed a folder.,Foreman closed a sack lunch.,Foreman closed his wallet.,Foreman closed a drawer.,Foreman closed a curtain.,0,What did Foreman close when Chase is talking about a case ?,133155,House M.D.,3.72-6.51,house_s03e03_seg02_clip_01,Foreman closed a folder. 11117,Mr. Harris was going to have to answer questions in front of a grand jury.,Mr. Harris was going to have to answer questions in jail.,Mr. Harris was going to have to answer questions at the police station.,Mr. Harris was going to have to answer questions at his home.,Mr. Harris was going to have to answer questions at Beckett's home.,0,Where was Mr. Harris going to have to answer questions later after his lawyer told him to not answer any more for Beckett?,133156,Castle,72.27-76.95,castle_s01e02_seg02_clip_19,Mr. Harris was going to have to answer questions in front of a grand jury. 11118,He leaves. ,He shows Ross his watch. ,He falls off of the chair. ,He just eats all of the cookies. ,He drinks the bottle. ,1,What does Chandler do after Joey looks at him with his hand against his head?,133157,Friends,36.04-39.34,friends_s02e02_seg02_clip_19,He shows Ross his watch. 11119,He is concerned that if he continues to be difficult the nurses will be rough with him,She is concerned he will die if he does not take the injection,She is concerned he will not get emotional support if he does not see the specialist,She is concerned he will die if he refuses the pills,He is concerned that Sebastian is not in the right state of mind.,3,Why is Cameron concerned about Sebastian after he refuses her?,133158,House M.D.,19.24-31.6,house_s02e04_seg02_clip_13,She is concerned he will die if he refuses the pills 11120,Ted got up and walked away.,Ted told Stella that he was bored.,Ted asked Stella if they could watch a different movie.,Ted asked Stella why she eats so much.,Ted looked away.,4,What did Ted do after Stella noticed that he was staring at her?,133159,How I Met You Mother,11.97-21.38,met_s04e01_seg02_clip_12,Ted looked away. 11121,A vase,A glass of wine,A cookie,A Phone book,A telephone,4,What was Monica holding in her hand when Joey said something about Chandlers sweater vests?,133160,Friends,3.58-11.92,friends_s05e22_seg02_clip_15,A telephone 11122,A dog.,A man.,A police car.,A kite.,A bird. ,1,What do Esposito and Ryan chase after leaving the car?,133161,Castle,77.25-86.65,castle_s08e05_seg02_clip_12,A man. 11123,Ted's watch and a few other trinkets belonging to him were found there,Clothes testing positive for Ted's blood were found there,A piece of paper with Ted's name and address was found there,Some strands of Ted's hair were found on a jacket of Tony's in the apartment,A map to Ted's apartment was found there,1,What does Esposito say was found connecting Tony Blaine to Ted's murder when they searched the apartment?,133162,Castle,3.85-11.55,castle_s06e12_seg02_clip_26,Clothes testing positive for Ted's blood were found there 11124,Ryan said Michael came from Mississippi.,Ryan said Michael came from Detroit.,Ryan said Michael came from Denver.,Ryan said Michael came from Iowa.,Ryan said Michael came from Texas.,3,Where did Ryan say Michael came from when he was on the phone with Gates?,133163,Castle,46.37-49.04,castle_s07e14_seg02_clip_13,Ryan said Michael came from Iowa. 11125,She rad a newspaper,She left the office too,She sat on a chair,She stood by the window,She run to make a call.,4,Where did Beckett go after Jones and Harden closed the office door?,133164,Castle,3.45-7.33,castle_s06e17_seg02_clip_10,She run to make a call. 11126,Setting her up on a date,Hair styling tips,Help,An internship,Boys,2,What does Alexis thank Lanie for when she's talking to her on a video call?,133165,Castle,3.15-17.1,castle_s07e21_seg02_clip_08,Help 11127,Mm-hm. And...? And you are?,"Yes, that's me ",Do I know you?,Do you always just walk in like that?,Where are your clothes?,0,What did Steph say after Penny said hi Stephanie right?,133166,The Big Bang Theory,0-50.18,s02e10_seg02_clip_00,Mm-hm. And...? And you are? 11128,A plastic bottle,A ball,A wad of paper,A can,A Styrofoam cup,0,What does Raj pick up from the table before he points to the trash can?,133167,The Big Bang Theory,52.18-54.79,s08e12_seg02_clip_02,A plastic bottle 11129,A mirror.,A wall.,A fridge.,A table.,A chair.,3,What was Beckett leaning on before she crosser her arms?,133168,Castle,16.01-22.41,castle_s04e02_seg02_clip_23,A table. 11130,Joey goes into his bedroom.,Joey goes to the coffee shop.,Joey goes into the bathroom.,Joey goes out the window to sit on the fire escape.,Joeys across the hall to Monica's place.,0,Where does Joey go after arguing with Chandler about his betrayal?,133169,Friends,55.4-60.37,friends_s04e07_seg02_clip_21,Joey goes into his bedroom. 11131,"Because Marshall knows something that Max doesn't concerning his date's dissatisfaction with him,.",Because Marshall secretly in love with Ted.,Because Max only has six months to live.,Because Marshall wants Max to treat himself. ,Because Marshall has a lot of money and is feeling generous. ,0,Why does Marshall say he wants Ted to be happy after Max speaks?,133170,How I Met You Mother,23.88-62.03,met_s06e05_seg02_clip_10,"Because Marshall knows something that Max doesn't concerning his date's dissatisfaction with him,." 11132,Three,Four,Two,Six,Eight,3,How many small boxes are on top of the stack of big boxes behind Luca when he had his gun drawn?,133171,Castle,0-2.75,castle_s07e10_seg02_clip_22,Six 11133,Because Robin is too hot.,Because Robin wants to leave the apartment.,Because Robin wants to roll through the door on a skateboard.,Because Robin wants to see the hallways.,Because Robin wants the neighbors to come in. ,2,Why does Robin want Marshall to open the door when he is talking to Lilly?,133172,How I Met You Mother,18.91-46.08,met_s03e12_seg02_clip_11,Because Robin wants to roll through the door on a skateboard. 11134,I had a shiver.,I'm really cold. ,I don't feel well.,I'm just really nervous.,I had a terrible thought.,3,What does Amy say when Sheldon asks her why she is shaking?,133173,The Big Bang Theory,6.58-9.17,s09e11_seg02_clip_16,I'm just really nervous. 11135,A thong.,A coffee cup.,A pencil.,An apple.,Her breifcase.,2,What was Leslie holding when she said this is the awkward part?,133174,Friends,18.91-28.68,friends_s07e19_seg02_clip_18,A pencil. 11136,Joey has to throw up.,Joey is bad with women's names.,Joey sees Rachel by the door.,Joey falls on the couch.,Joey sees Janice at the door.,1,When Ross asks Joey for names why does he get quiet after?,133175,Friends,34.22-40.02,friends_s09e14_seg01_clip_01,Joey is bad with women's names. 11137,Give her time to miss him.,Give her time to think about things.,Give time to cool down.,Give her freedom.,Give her a second chance.,0,What did Greta tell Fletch to do when she was trying to encourage him about Elizabeth?,133176,House M.D.,65.89-74.43,house_s02e10_seg02_clip_25,Give her time to miss him. 11138,Because Jen is attracted to Mustache Marshall.,Because Jen spilled her beer on Ted's lap.,Because Jen has to cut their date short.,Because Jen thinks Ted is a bad kisser.,Because Jen thought Ted was a jerk before.,4,Why does Jen apologize to Ted when they are in the bar?,133177,How I Met You Mother,0.33-12.88,met_s05e02_seg02_clip_13,Because Jen thought Ted was a jerk before. 11139,Monica is upset because Phoebe and Rachel didn't get her plates like she asked. ,Monica is upset because Phoebe and Rachel didn't get her a prize. ,Monica is upset because Phoebe and Rachel were supposed to help Monica cook. ,Monica is upset because Phoebe and Rachel went to to they game with Ross. ,"Monica is upset because they forced her to make dinner, they were an hour late, and Phoebe and Rachel forgot to get the pies. ",4,Why is Monica upset with Phoebe and Rachel when talking to them through the door?,133178,Friends,4.46-33.6,friends_s10e08_seg02_clip_15,"Monica is upset because they forced her to make dinner, they were an hour late, and Phoebe and Rachel forgot to get the pies. " 11140,a coffee cup,A clipboard,a teddy bear,a pillow,a bottle water,1,what does scott have in his hand when he is talking to wilson and house in the waiting area?,133179,House M.D.,76.79-86.61,house_s03e21_seg02_clip_18,A clipboard 11141,aliens,monkeys,mice,single celled organisms,dogs,4,What does Sheldon compare other people to after he asks Howard to put yourself in my place?,133180,The Big Bang Theory,45.77-55.22,s05e21_seg02_clip_00,dogs 11142,In a bathroom.,In the police station.,In a car.,Standing in an alley.,Standing in an elevator.,2,Where was Castle when he asked Esposito about Ryan? ,133181,Castle,11.96-18.87,castle_s04e04_seg02_clip_07,In a car. 11143,She becomes unable to breathe,She is claustrophobic,She is nauseous from her pregnancy ,She doesn't want to know what the doctor's scan will reveal,She is having PTSD flashbacks ,0,Why does the patient say she feels unwell after the procedure begins?,133182,House M.D.,14.58-47.14,house_s01e01_seg02_clip_05,She becomes unable to breathe 11144,There is only 1 container.,There are no containers.,There are 6 containers.,There are 4 containers.,There are 2 containers.,3,How many glass containers are on the counter when House is leaving the room?,133183,House M.D.,58.71-67.81,house_s03e16_seg02_clip_11,There are 4 containers. 11145,Monica is making Phoebe uncomfortable,The timer went off,Phoebe saw a gross mole on her back,Phoebe is late for a date,They got carried away with sexual innuendo,4,Why does Phoebe cover Monica back up when she is giving her a massage?,133184,Friends,21.18-53.37,friends_s08e14_seg02_clip_20,They got carried away with sexual innuendo 11146,Dying her hair purple,Making paper airplanes,Calling her parents again,Cutting off all her hair,Waiting for a patient to die,1,What is Masters doing alone after talking to Wilson about the operation?,133185,House M.D.,56.53-76.56,house_s07e19_seg02_clip_21,Making paper airplanes 11147,Taub isn't holding anything in his hands,Taub is holding an shot in his hands,Taub is holding pills in his hands ,Taub is holding Brant's file in his hands,Taub is holding a picture in his hands,2,What is Taub holding in his hands when he is with Brant?,133186,House M.D.,30.88-38.23,house_s08e15_seg02_clip_20,Taub is holding pills in his hands 11148,Monica,Ross,Joey,Chandler,Kevin,3,Who does Rachel go to for advice when she enters the restaurant?,133187,Friends,12.49-44.18,friends_s04e10_seg02_clip_09,Chandler 11149,Because the suspect is ready to name names.,Because the suspect admitted guilt.,Because Ryan and Esposito found the G-Wagen and the murder weapons at their suspect's place.,Because another witness came forward with details.,Because the FBI stepped in and resolved the case.,2,Why was the case resolved according to Beckett when Castle asked about their next move?,133188,Castle,47.29-53.92,castle_s07e06_seg02_clip_19,Because Ryan and Esposito found the G-Wagen and the murder weapons at their suspect's place. 11150,Because he saw a scary movie.,Because he wrote a long letter.,Because he had an outburst.,Because he wrote a poem.,Because he forgot to go to work.,2,Why is Sheldon upset when he comes out of his room?,133189,The Big Bang Theory,15.56-23.8,s09e07_seg02_clip_12,Because he had an outburst. 11151,Sheldon thought Penny ate his food.,Sheldon thought Penny betrayed him.,Sheldon thought Penny threw away his coffee.,Sheldon spilled his soda.,Sheldon dropped his sandwich.,1,Why did Sheldon get angry before he stood up?,133190,The Big Bang Theory,0-0.63,s03e16_seg02_clip_04,Sheldon thought Penny betrayed him. 11152,A blue cup.,A blue glass.,A blue hat.,A blue folder.,A blue tee shirt that is folded.,0,What blue thing does Beckett have in hand before she tells Castle she had a really great time earler?,133191,Castle,36.76-42.64,castle_s08e09_seg02_clip_04,A blue cup. 11153,Archie Bronstein the Savanna Hammer,Arnold Broze the Savanna Hammer,Arthur Bronstien the Savanna Hammer,Artutlos Bronstly the Savanna Hammer,The witness couldn't identify the suspect,0,What is the name of the suspect when Becektt shows the witness his picture?,133192,Castle,30.32-36.2,castle_s07e19_seg02_clip_10,Archie Bronstein the Savanna Hammer 11154,online,at the mall,Walmart,Kmart,Costco,0,Where did Raj and Howard buy their tattoo sleeves when they wanted to impress women?,133193,The Big Bang Theory,0-18.37,s03e03_seg02_clip_02,online 11155,Curiosity,Love,Hate,Boredom,Passion,4,Why did Taub say the sketches were drawn after looking in the notebook?,133194,House M.D.,15.6-20.41,house_s06e08_seg02_clip_07,Passion 11156,A Salesman,A coffee shop worker,A Janitor,An Engineer,A highly regarded physicist,4,What does Sheldon regard himself to when talking to the man?,133195,The Big Bang Theory,36.07-45.74,s05e06_seg02_clip_14,A highly regarded physicist 11157,The patient did not go to a lot of events.,"The patient stay home a lot, didn't travel, had no exotic pets and had no nearby standing water.",The patient had no hobbies.,The patient would never spend his money on something for pleasure.,The patient did not watch sports or movies.,1,Why did Kutner think his patient lived a boring life when he was telling House about the patient?,133196,House M.D.,1.95-7.02,house_s05e17_seg02_clip_13,"The patient stay home a lot, didn't travel, had no exotic pets and had no nearby standing water." 11158,He passes out. ,He slips and falls. ,He sits down. ,He takes his glasses off. ,He gets lost. ,3,What does Chandler do after he enters a steamy room?,133197,Friends,30.09-36.18,friends_s07e03_seg02_clip_07,He takes his glasses off. 11159,A bottle,A mug,A phone,A paper,A laptop,0,What is Leonard holding when he is talking to Sheldon?,133198,The Big Bang Theory,11.05-20.81,s06e02_seg02_clip_15,A bottle 11160,To a park,Back to the police office.,To a restaurant,They're back home.,To a crime scene,3,Where do Castle and Beckett go after their meeting with Smith?,133199,Castle,85.56-91.03,castle_s06e22_seg02_clip_15,They're back home. 11161,Coming out of the restroom,Sitting at a nearby table,Outside of the window on the sidewalk,At the entrance talking with the maitre d',Leaving through the kitchen,3,Where did Monica see Richard and a blond woman when they were in the restaurant?,133200,Friends,48.21-53.4,friends_s06e24-25_seg02_clip_07,At the entrance talking with the maitre d' 11162,In the patients foot.,In the patients ear.,In the patients heart.,In the patients leg.,In the patients arm.,2,Where is Thirteen putting the catheter into the patient after she and House enter the room with Foreman and the patient sitting up in bed?,133201,House M.D.,63.61-90.22,house_s04e05_seg02_clip_20,In the patients heart. 11163,Ted and Robin,Lily and Robin,Ted and Lily,Barney and Arthur,Barney and Ted,3,Who walks into the room after Marshall and Randy talk about severance pay?,133202,How I Met You Mother,10.45-21.51,met_s06e07_seg02_clip_13,Barney and Arthur 11164,Threw water in Sheldon's face.,Got up and left the room.,Slapped Sheldon in the face.,Took a deep breath.,Pushed Sheldon off the pillow.,3,What did Raj do when Sheldon told him he wouldn't take his own sweater?,133203,The Big Bang Theory,5.1-14.63,s03e18_seg02_clip_08,Took a deep breath. 11165,On the desk.,In her desk chair.,In the window sill.,In her desk drawer.,Hung on her chair.,3,Where did Cuddy put her purse when House why she tell him she was an Ashikaga?,133204,House M.D.,31.4-36.41,house_s07e09_seg02_clip_12,In her desk drawer. 11166,An iced tea. ,A cup of coffee. ,A bottle of water. ,A lemonade,A bottle of beer. ,2,What beverage does Leonard grab after Sheldon picks up his cell phone?,133205,The Big Bang Theory,30.37-40.19,s04e05_seg01_clip_00,A bottle of water. 11167,irritated,fine,bored,angry,joyful,4,How did Amy feel when she saw the tiara?,133206,The Big Bang Theory,14.46-34.64,s05e12_seg02_clip_15,joyful 11168,Vodka.,Juice.,Water.,Milk.,Wine.,4,What is Ross drinking when he is sitting down in front of the camera?,133207,Friends,0-3.86,friends_s08e04_seg02_clip_10,Wine. 11169,A new planet,UFOs,The space station,Spy satelites ,A new star,3,What photos was Marie taking when she was using a telescope?,133208,Castle,47.79-81.01,castle_s03e09_seg02_clip_20,Spy satelites 11170,The man marked number 26 says the pictured person is Ryan Gosling.,The man marked number 26 says the pictured person is Donald Trump.,The man marked number 26 says the pictured person is Buddy Ebsen.,The man marked number 26 says the pictured person is House himself.,The man marked number 26 says the pictured person is Bernie Sanders.,2,Who does man number 26 say the pictured person is after one woman gets it wrong?,133209,House M.D.,17.48-40.49,house_s04e02_seg02_clip_00,The man marked number 26 says the pictured person is Buddy Ebsen. 11171,Phoebe enters,Rachel enters,Monica enters,Joey enters,Paul enters,2,Who enters the apartment and says an oven does not work after Ross makes the bet?,133210,Friends,48.18-56.02,friends_s07e08_seg02_clip_01,Monica enters 11172,Meredith is assisting Derek,Geroge is assisting Derek,Izzie is assisting Derek,Alex is assisitng Derek,Crisitina is assisting Derek,3,Who is assiting Derek when he is performing surgery?,133211,Grey's Anatomy,57.68-69.65,grey_s03e23_seg02_clip_06,Alex is assisitng Derek 11173,An umpire,An announcement at a baseball game,A woman yelling,A subway announcement,A guitarist,3,What does Lily hear in the background of the message when she's sitting on the couch and determines Ted's location?,133212,How I Met You Mother,19.81-28.51,met_s06e24_seg02_clip_07,A subway announcement 11174,Castle was waiting for Beckett.,Laney was waiting for Beckett.,Rita was waiting for Beckett.,Ryan was waiting for Beckett.,Esposito was waiting for Beckett.,2,Who was waiting for Beckett when she walked into the strip club?,133213,Castle,40.28-48.42,castle_s08e11_seg02_clip_14,Rita was waiting for Beckett. 11175,The Oven,The Cupboard,The Microwave,The Refrigerator,The Dishwasher,1,Where did Mike see a rat when he was in Phoebe's kitchen?,133214,Friends,23.32-30.88,friends_s09e12_seg02_clip_00,The Cupboard 11176,"""Go away.""","""Do I know you?""","""Am I going to die?""","""I don't want to talk.""","""Are the test results back?""",1,What does the patient say after House walks in the patient's room?,133215,House M.D.,59.2-85.46,house_s04e05_seg02_clip_22,"""Do I know you?""" 11177,The captain went and got a beach ball.,The captain went and got a fishing line.,The captain went and got some bait for fishing.,The captain went and got some glasses and alcohol.,The captain went and got a some swim trunks.,3,What did the Captain go and get when he went down the lower deck of the boat?,133216,How I Met You Mother,21.91-26.11,met_s06e11_seg02_clip_13,The captain went and got some glasses and alcohol. 11178,Two,Three,One,Zero,Four,2,How many nurses were in the window behind Luca when House was standing in the doorway?,133217,House M.D.,0-1.66,house_s07e23_seg02_clip_17,One 11179,She loaded her gun.,She checked her watch.,She held the door back.,She stepped to the back.,She grabbed he phone.,1,What did Sophia do before the elevator door closed?,133218,Castle,86.84-89.27,castle_s04e16_seg02_clip_22,She checked her watch. 11180,He is upset about the band music. ,He lost his job,He is sick and talking to the doctor,He wishes he could be in the band,Something about the left hemisphere,4,What does Sheldon think is wrong with Leonard when he is on the phone,133219,The Big Bang Theory,58.42-62.48,s02e15_seg01_clip_00,Something about the left hemisphere 11181,He wants to break up with her.,He wants to date her..,He wants to go home.,He lost his wallet.,He lost his job.,0,Why is Raj acting so strange around Emily when they are out together?,133220,The Big Bang Theory,41.12-50.13,s08e24_seg02_clip_11,He wants to break up with her. 11182,Bounty hunters,Police,Private investigators,College kids,prisoners,3,Whom did Hugo sell counterfeit documents to before Roger died?,133221,Castle,11.75-17.4,castle_s02e24_seg02_clip_16,College kids 11183,Sheldon starts beating Leonard. ,He can't believe he is friends with him. ,He asks Leonard to speed away. ,Sheldon gets out and runs away. ,He can't believe Leonard actually did it. ,4,What is Sheldon's reaction after Leonard pushes the button?,133222,The Big Bang Theory,36.61-60.02,s08e19_seg02_clip_07,He can't believe Leonard actually did it. 11184,Goes to bed.,Takes a drink of wine.,Makes a confused face.,Gets up from the table.,Talks to Penny.,2,What does Leonard do after watching the older couple leave the restaurant?,133223,The Big Bang Theory,0-9.87,s10e01_seg01_clip_01,Makes a confused face. 11185,She got mad,She left,She kissed him,She laughed,She told him she hated him,2,How did Penny react when she knew that Leonard really does believe she's perfect,133224,The Big Bang Theory,19-57.58,s01e06_seg02_clip_15,She kissed him 11186,A wig. ,A baseball cap. ,A huge hat. ,A hair net. ,A beanie. ,2,What does Rachel have on her head when she is outside with her friends?,133225,Friends,47.91-49.74,friends_s03e25_seg02_clip_01,A huge hat. 11187,Because Monica is making dinner.,Because Charlie is walking out of the room next to theirs.,Because Ross is kissing Charlie.,Because they forgot their purses.,Because they lost track of the time.,1,Why are Phoebe and Rachel startled when they walk out of the changing room?,133226,Friends,38.88-47.9,friends_s09e22_seg02_clip_07,Because Charlie is walking out of the room next to theirs. 11188,a bottle of wine,a make up case,a pizza box,a bag of chips,a suitcase,1,What is sitting open on the coffee table in front of Amy after Penny sits down next to her?,133227,The Big Bang Theory,10.86-13.03,s06e01_seg02_clip_01,a make up case 11189,Because Anwar El-Masri's daughter is very ill and Detective Beckett believes she was poisoned.,Because Anwar El-Masri's daughter was the victim of a murder. ,Because Anwar El-Masri's daughter has run away from home with a dangerous criminal.,Because Anwar El-Masri's daughter was kidnapped and he wants her back. ,Because Anwar El-Masri's daughter in the hospital with memory lost and cannot tell Detective Beckett what happened to her. ,3,Why is Anwar El-Masri sick at heart when he is talking with Detective Beckett about his daugther?,133228,Castle,75.07-92.68,castle_s05e15_seg02_clip_05,Because Anwar El-Masri's daughter was kidnapped and he wants her back. 11190,A salad. ,Spaghetti. ,A sandwich. ,A piece of pizza. ,An apple. ,3,What is Ross eating when he is at Joey and Chandler's apartment?,133229,Friends,54.3-55.48,friends_s05e18_seg02_clip_10,A piece of pizza. 11191,She is holding her cellphone,She is holding a can of coke-cola,She is holding her laptop,She is holding a sweater,She is holding her iPod,2,What is Penny holding in her hands when she came into the guy's apartment,133230,The Big Bang Theory,0-14.81,s05e11_seg01_clip_00,She is holding her laptop 11192,Joey is creepy,Joey wants to embarrass rachel,Joey doesn't like tag,Joey like rachel,Joey thinks rachel told tag how she feels about him,4,Why does joey interrupt Rachel and tags hug when he peers through the open window?,133231,Friends,55.21-62.03,friends_s07e08_seg02_clip_10,Joey thinks rachel told tag how she feels about him 11193,His leg.,His arm.,His butt.,His chest.,His foot.,2,Where did House give Henry a shot after Henry said he hadn't spoke to her mom for months? ,133232,House M.D.,73.73-82.32,house_s02e14_seg02_clip_04,His butt. 11194,Howard is arguing with Bernadette.,Howard is arguing with Sheldon.,Howard is arguing with Leonard.,Howard is arguing with his mother.,Howard is arguing with Stuart.,4,Who is Howard arguing with when he answers the door?,133233,The Big Bang Theory,0-12.26,s08e01_seg02_clip_15,Howard is arguing with Stuart. 11195,bottle ,condems,staples,gun,drugs,0,What is on the table when beckett says no ,133234,Castle,23.09-32.41,castle_s03e14_seg02_clip_18,bottle 11196,open the door,walk out,laugh,cry,sit down,0,What did Tag do before he started talking?,133235,Friends,2.95-11.81,friends_s07e09_seg02_clip_02,open the door 11197,Chandler did not say anything,Chandler said they should make a pact for lunch,Chandler said they should make a pact for breakfast,Chandler said they should make a pact for brunch,Chandler said they should make a pact for dinner,4,What did Chandler say the six of them do when they are talking?,133236,Friends,21.66-32.04,friends_s01e10_seg02_clip_01,Chandler said they should make a pact for dinner 11198,On Joey's Cabbage patch kid.,In phoebe's closet.,On Monica's Cabbage patch kid.,On Joey's teddy bear.,On Joey's dresser.,0,"Where Did Rachel say she could get a cowgirl outfit after Phoebe said ""I was thinking?"" ",133237,Friends,29.3-37.72,friends_s10e08_seg02_clip_01,On Joey's Cabbage patch kid. 11199,Cameron would tell her.,He would tell her.,Foreman would tell her.,No one.,Chase would tell her.,3,"Who did House say was going to tell Addie she was going to die after he told Foreman, Cameron and Chase he was right?",133238,House M.D.,83.82-88.23,house_s03e22_seg02_clip_18,No one. 11200,Amused. ,Hurt. ,Betrayed. ,Mad. ,Happy. ,3,How does Rachel feel after Joey says something about feelings?,133239,Friends,1.53-9.78,friends_s07e08_seg02_clip_11,Mad. 11201,He was sitting down.,He was making a phone call.,He was eating some snacks.,He was entering an Office.,He was taking his medication.,1,What was Esposito doing when Ryan said check this out?,133240,Castle,39.81-49.2,castle_s07e10_seg02_clip_17,He was making a phone call. 11202,Drinking a beer,Waving a pipe,Looking through binoculars,Holding his ear,Shaking Ross's hand,3,What is Joey doing when he bangs on the door while he is locked on the roof with Ross?,133241,Friends,33.3-38.36,friends_s07e12_seg02_clip_01,Holding his ear 11203,Phoebe talks to Monica's hair.,Phoebe cut her hair like Dudley Moore instead of Demi Moore.,Phoebe leaves Monica's hair too long.,Monica always gets upset about her hair.,Monica can't hold her temper.,1,Why is Monica upset with Phoebe when she is cutting her hair?,133242,Friends,30.82-57.06,friends_s02e01_seg02_clip_13,Phoebe cut her hair like Dudley Moore instead of Demi Moore. 11204,"House said "" No, he is not worthy to work on animals much less people.""","House said "" I don't hire drop outs.""","House said "" No, his accent drives me crazy.""","House said "" Yes, Dr. Chase is going to be my driver.""","House said "" no, I love you guys.""",4,What was House's response after Taub asked if House was going to hire Chase?,133243,House M.D.,0-20.69,house_s04e02_seg02_clip_23,"House said "" no, I love you guys.""" 11205,French Canadians are proud descendants of American culture,French Canadians are proud descendants of Mexican culture,French Canadians are proud descendants of Russian culture,French Canadians are proud descendants of Parisian culture,French Canadians are proud descendants of British culture,3,Why does Castle choose to take French food when attending tonight's event?,133244,Castle,16.28-20.47,castle_s08e13_seg02_clip_13,French Canadians are proud descendants of Parisian culture 11206,A brown cup,A glass of water,A donut,His cell phone,A glass of juice,0,What does Ryan have in his hand whenA speaking to Esposito and Lanie in the break room.,133245,Castle,45.46-56.27,castle_s08e14_seg02_clip_17,A brown cup 11207,Taylor Dawn,Vogler,Kiebler,Lacy Chabert,Stacy,4,Who does House request to talk to when he enters a patient's room?,133246,House M.D.,42.03-58.03,house_s01e22_seg02_clip_15,Stacy 11208,House would store the dvd player for safekeeping.,House would call Wilson when he was finished with it.,House told Wilson to come pick up the dvd player himself.,House said that he would have the dvd player delivered by courier.,House said that he planned on keeping the dvd player.,1,How did House tell Wilson he would notify him when he was finished with the dvd player?,133247,House M.D.,5.92-20.48,house_s02e19_seg02_clip_00,House would call Wilson when he was finished with it. 11209,Weak means happiness.,Weak means young at heart.,Weak means older.,Weak mean broken,Weak means stable.,2,"What did House say ""Weak"" mean when he was talking to Foreman?",133248,House M.D.,0-9.2,house_s04e05_seg02_clip_16,Weak means older. 11210,He wore a tux. ,He wore is usual attire. ,He wore a wig. ,He wore sunglasses and a hat. ,He wore a toga. ,3,What did Leonard wear when he went to the dirty store?,133249,The Big Bang Theory,7.75-8.37,s08e17_seg02_clip_03,He wore sunglasses and a hat. 11211,Standing in the kitchen.,Sitting on the sofa.,Standing in the living room.,Standing by the window.,Standing in the bedroom.,0,Where were Monica and Chandler when they were talking about Chandler beating his scores?,133250,Friends,7.54-12.48,friends_s08e12_seg02_clip_10,Standing in the kitchen. 11212,Becca's skin pores,Becca's eyes,Becca's mouth,Between Becca's legs,Becca's nose,3,Where is the blood coming from when the machines are beeping?,133251,House M.D.,46.97-57.8,house_s05e06_seg02_clip_12,Between Becca's legs 11213,Howard and Leonard were jumping around.,Howard and Leonard were fighting.,Howard and Leonard cooking tacos.,Howard and Leonard were playing Wii.,Howard and Leonard were dreaming.,3,What were doing Howard and Leonard when Sheldon entered in the room?,133252,The Big Bang Theory,0-36.16,s01e15_seg02_clip_13,Howard and Leonard were playing Wii. 11214,"Espisito seemed upset, he told Castle he couldn't even look at him right now.",Espisito told Castle there are other ways to get the information.,Espisito told Castle to go through Beckett's desk in the precinct to get the information.,Espisito asked Castle if he had the password to Beckett's email.,Espisito told Castle to hack into Beckett's computer.,0,What did Espisito say to Castle after he told him that Beckett wouldn't share information about the case with him?,133253,Castle,74.53-83.57,castle_s06e03_seg02_clip_14,"Espisito seemed upset, he told Castle he couldn't even look at him right now." 11215,Green,Blue,Pink,Black,White,4,What is the main color of the baby carrier when Ross and Rachael were talking in the apartment?,133254,Friends,0-2.14,friends_s09e11_seg02_clip_11,White 11216,Leonard was excited because he was hired for a new job.,Leonard was excited because he solved a puzzle.,Leonard was excited because he and Howard were going on a double date with their girlfriends.,Leonard was excited because he just got a high score on a video game.,Leonard was excited because he just got engaged to be married.,2,Why was Leonard excited when he walked into the living room?,133255,The Big Bang Theory,0-10.54,s03e12_seg01_clip_00,Leonard was excited because he and Howard were going on a double date with their girlfriends. 11217,He doesn't respect her career. ,He doesn't love her anymore. ,He wants to only focus on the band. ,He is getting back together with Louise Marsh. ,He doesn't like that she is friends with Ted. ,3,Why does Simon break up with Robin when they are in the van?,133256,How I Met You Mother,0-9.07,met_s03e16_seg02_clip_10,He is getting back together with Louise Marsh. 11218,Castle is at a party.,Castle is at a rally.,Castle is on the floor.,Castle is at the precinct.,Castle is on the street canvasing or Beckett.,4,Where is Castle when the theory Amy lured Beckett onsite for Tyson to kidnap Beckett?,133257,Castle,43.47-57.49,castle_s07e15_seg02_clip_00,Castle is on the street canvasing or Beckett. 11219,She sat at the table,She went outside,She went to her room,She sat on the couch,She stood in the kitchen,3,What did Penny do after she got coffee?,133258,The Big Bang Theory,22.95-26.98,s07e20_seg02_clip_00,She sat on the couch 11220,A beer and textbook ,A beer and magazine ,A beer and newspaper ,A soda bottle and newspaper,A soda bottle and magazine ,2,What is Marshall holding in his hands when he's talking to Ted?,133259,How I Met You Mother,0-5.7,met_s03e08_seg02_clip_09,A beer and newspaper 11221,House and Amber were in the elevator.,House and Amber were outside the patient's room.,House and Amber were walking down the hallway.,House and Amber were in House's office.,House and Amber were in the hospital cafeteria.,3,Where were House and Amber when he asked her why she hated drug addicts?,133260,House M.D.,53.56-57.62,house_s04e09_seg02_clip_07,House and Amber were in House's office. 11222,The floor,A chair,Stairs,He's standing,A desk,2,What is Castle sitting on when Beckett comes in to talk to him?,133261,Castle,11.1-19.88,castle_s04e04_seg02_clip_25,Stairs 11223,Freemore Park,Bank Street,The Mall,Canal Street,Texas,3,Where does Beckett assume they can Find Mr Oni when talking to Ryan?,133262,Castle,25.68-34.39,castle_s01e06_seg02_clip_11,Canal Street 11224,She fell asleep,Because she's checking out Brenda's butt.,She slipped on a banana,She is just clumsy like that,She never fell,1,Why does Monica fall when Brenda is sweeping?,133263,Friends,48.38-62.03,friends_s08e07_seg02_clip_09,Because she's checking out Brenda's butt. 11225,take his glasses off,stands up,goes after cristina,takes some pills,put his glasses on ,0,what does dr. burke do before crisitina leaves the hospital room?,133264,Grey's Anatomy,17.75-26.4,grey_s03e12_seg02_clip_08,take his glasses off 11226,To go bowling,To Chandler's cousin's wedding,To a dinosaur museum,To Chandler's cousin's bachelor party,To go to his grandmother's dinner party,3,Where does Chandler ask Ross to go with him when Ross is drinking coffee?,133265,Friends,23.26-38.46,friends_s03e12_seg01_clip_00,To Chandler's cousin's bachelor party 11227,Cake,Candy,Bread,Beer,Chips,3,What did Joey ask there was no meat in after he said he would be a vegetarian?,133266,Friends,28.68-35.25,friends_s04e16_seg02_clip_13,Beer 11228,Marcel,Ross,Rachel,Emma,Monica,4,Who did Chandler say he missed after Joey asked who he missed the most?,133267,Friends,39.84-52.21,friends_s09e10_seg02_clip_18,Monica 11229,Wilson,Castle,House,Albert,Cuddy,1,Who did Beckett run into after she walked into the breakroom?,133268,Castle,30.83-35.43,castle_s08e19_seg02_clip_19,Castle 11230,Esposito recommends Beckett sit down and relax.,Esposito recommends Beckett change her clothes.,Esposito recommends Beckett go back to New York.,Esposito recommends Beckett wait for he and Ryan at the hotel.,Esposito recommends Beckett take Alexis and Martha back to the hotel.,1,What does Esposito recommend Beckett do before helping with the search for Castle?,133269,Castle,30.38-37.68,castle_s07e01_seg02_clip_01,Esposito recommends Beckett change her clothes. 11231,Bardot,Barry,Barney,Bob,Blaze,0,Who did beckett say worked for jack when talking to him in his office?,133270,Castle,2.28-9.1,castle_s08e15_seg02_clip_17,Bardot 11232,His mother.,Sheldon.,Leonard.,Penny.,Amy.,0,Who was Howard talking to when he was in bed with Leslie?,133271,The Big Bang Theory,0-41.02,s02e16_seg02_clip_05,His mother. 11233,"Bernadette didn't have an idea, she stole it. ",Bernadette had an idea to rebrand a medicine as a constipation aid. ,Bernadette had an idea and ran with it. ,Bernadette yelled at her boss until they caved in. ,Bernadette told Howard she has a habit of lying at work to get privileges. ,1,"What does Howard say Bernadette did before, in order to be able to go on this wonderful trip to Vegas?",133272,The Big Bang Theory,47.05-50.81,s06e15_seg02_clip_00,Bernadette had an idea to rebrand a medicine as a constipation aid. 11234,Cristina said that Burke's mother thinks she's not truthful to her son.,Cristina said that Burke's mother thinks she's not a good doctor.,Cristina said that Burke's mother thinks that she's a racist stripper.,Cristina said that Burke's mother thinks she's a fool.,Cristina said that Burke's mother thinks that she's a lesbian.,2,Why was Cristina upset when she told Burke his mother wanted to have coffee with her?,133273,Grey's Anatomy,0-9.18,grey_s03e02_seg02_clip_07,Cristina said that Burke's mother thinks that she's a racist stripper. 11235,Police from Atlantic City.,Benny.,Scarlett O'Hara.,Beckett.,Martha.,3,Who greets Castle after he leaves the elevator?,133274,Castle,14.53-19.52,castle_s02e23_seg02_clip_19,Beckett. 11236,12 Hours.,24 hours..,60 minutes.,2 Days.,1 Week.,1,How much extra time did Tommy give to Sam after the Blackmailers supposedly transferred the money back?,133275,Castle,0-11.88,castle_s04e08_seg02_clip_25,24 hours.. 11237,Cup,Plate,Bowl,Frying Pan,Coffee Pot,1,What was Monica washing when she was talking about washing dishes?,133276,Friends,0-3.77,friends_s04e20_seg02_clip_07,Plate 11238,looking out the window,sewing,eating,ironing,knitting,4,What is Popo doing when Chase walks in?,133277,House M.D.,0-6.62,house_s08e16_seg02_clip_08,knitting 11239,Charlton Heston is melting,Sheldon is melting,Lesley is melting,Han Solo is melting,Professor Guggenheim,4,Who does Leonard say is melting after Penny calls him,133278,The Big Bang Theory,6.2-21.4,s01e11_seg02_clip_09,Professor Guggenheim 11240,His car keys ,A Star Trek Figure.,A movie.,A comic book.,His cell phone.,4,What is in Leonard's hand when he tells Sheldon to live long and prosper?,133279,The Big Bang Theory,25.84-29.79,s05e05_seg02_clip_12,His cell phone. 11241,by the coffee machine,Houses office,on the table,in the hall,By the whiteboard,4,where is house standing when he asks the group of doctors in the conference room if they have any theories as to what is wrong with irene?,133280,House M.D.,75.54-85.95,house_s04e04_seg02_clip_16,By the whiteboard 11242,the door,A blanket,A tissue,a pillow,a cup,2,What does Penny grab when she gets up from the couch?,133281,The Big Bang Theory,29.91-35.71,s01e17_seg02_clip_07,A tissue 11243,He left the room.,He sat on the floor.,He laughed.,He sat on the couch.,He answered the door.,3,What did Sheldon do when he said about Leonard not being the type of guy anyone usually goes out with?,133282,The Big Bang Theory,42.89-46.42,s01e17_seg02_clip_11,He sat on the couch. 11244,Dead.,At the doctors office.,Participating in a science experiment.,At Comic Con,On a date with anybody.,4,Where would Stuart rather be than the comic book store when it is Valentine's Day?,133283,The Big Bang Theory,20.07-26.56,s06e16_seg02_clip_08,On a date with anybody. 11245,Courtney hits Castle on his arm.,Courtney hugs Castle,Courtney kisses Castle ,Courtney dances for Castle,Courtney whistles at Castle,0,What does Courtney do to Castle after she talks to him about her career?,133284,Castle,0-11.53,castle_s08e14_seg02_clip_07,Courtney hits Castle on his arm. 11246,Leonard,Amy,Sheldon,Raj,Howard,2,Who was at the door when Penny opened it?,133285,The Big Bang Theory,10.54-15.36,s04e01_seg02_clip_04,Sheldon 11247,"He was selling illegal guns,","He was selling trade secrets, he's the traitor.",He was selling drugs coming in from Mexico.,He was importing people from Mexico.,He was importing girls from Russia to be slaves.,1,What does Anya say Sergei was doing when she is explaining it to Beckett?,133286,Castle,34.05-46.93,castle_s08e11_seg02_clip_24,"He was selling trade secrets, he's the traitor." 11248,Chandler takes out his wallet,Chandler takes out a grape,Chandler takes out a napkin,Chandler takes out an apple,Chandler takes out a ring,4,What does Chandler take out of his pocket after confessing his love?,133287,Friends,37.62-43.49,friends_s06e24-25_seg02_clip_41,Chandler takes out a ring 11249,Sam asks.,Ross asks.,Chandler asks.,Joey asks.,Richard asks.,3,Who asks about pictures on the wall when he goes to the cleaners?,133288,Friends,22.64-35.67,friends_s06e22_seg02_clip_10,Joey asks. 11250,Because Penny ate Sheldon's food.,Because Penny is talking too loudly.,Because Penny is mean to Sheldon.,Because Penny sits at Sheldon's spot?,Because Sheldon does not want Penny to sit on the couch.,3,Why is Sheldon mad at Penny when she sits down?,133289,The Big Bang Theory,5.02-12.69,s02e07_seg02_clip_04,Because Penny sits at Sheldon's spot? 11251,Raj was trying to get away from Penny.,Raj is weird.,Raj likes to give himself odd instructions.,Raj had become excited and did not want Penny to know.,Raj did not like hugging Penny.,3,Why did Raj tell himself to turn his pelvis when Penny was giving him a hug?,133290,The Big Bang Theory,0-5.4,s01e02_seg02_clip_12,Raj had become excited and did not want Penny to know. 11252,beside the chair ,at the garage ,beside the door ,beside the television,beside the bed ,4,where was lex standing when hank was lying on the bed ,133291,House M.D.,4.04-12.12,house_s06e07_seg02_clip_15,beside the bed 11253,She slapped her mother.,She brushed her hair.,Monica started touching her hair.,She walked to the corner mirror.,She laughed and sat down.,2,How did Monica react after Mrs Geller asked her about her hair?,133292,Friends,52.94-56.02,friends_s01e08_seg02_clip_02,Monica started touching her hair. 11254,In space.,In a church. ,In a field at a family friend's.,In Las Vegas.,In London.,0,Where did Castle say the newspaper said him and Beckett were getting married when talking to Beckett?,133293,Castle,108.02-131.65,castle_s06e13_seg02_clip_26,In space. 11255,Travel to New York.,Go to the movie.,Make a long trip.,Find new girlfriends.,Go to a cabin in the woods.,4,What proposed Howard to do after Sheldon said girls are annoying?,133294,The Big Bang Theory,0-45.25,s08e05_seg01_clip_01,Go to a cabin in the woods. 11256,Strawberries,Cherries,Ice cubes,Olives,Orange slices,3,What does MaryEllen eat from her drink after Phoebe calls her loose?,133295,Friends,14.51-24.95,friends_s09e03_seg02_clip_13,Olives 11257,House was talking to a man walking on crutches,House was eating,House was drinking,House was taking medication,House was talking to Chase,0,What was House doing before Cuddy started talking to him?,133296,House M.D.,5.47-12.77,house_s07e06_seg02_clip_00,House was talking to a man walking on crutches 11258,He gave him a gas mask,He rubbed his head,He massaged his temple,He held on to his neck to open up the oxygen valves.,He made him stretch his neck,3,What did House do when Cotter sat up in bed?,133297,House M.D.,43.25-49.23,house_s06e19_seg02_clip_22,He held on to his neck to open up the oxygen valves. 11259,His ears,His nose,His eyes,His mouth,His arm,2,Where did Foreman pointed the light to when the sick boy was unconscious. ,133298,House M.D.,42.85-48.48,house_s06e04_seg02_clip_04,His eyes 11260,Eating floor cake.,Carving their initials,Cleaning a mess.,Being good neighbors,Looking for a nickel,0,What are Rachel and Chandler doing when they're on the floor?,133299,Friends,0-11.76,friends_s07e11_seg02_clip_20,Eating floor cake. 11261,She asked him why he had told Joey that they had slept together,To borrow a cup of milk ,To borrow some sugar ,She asked him to not mention to anybody that they had hooked up,The broiling pan that Joey had borrowed the other day,4,What did Monica ask Chandler for after she walked into his apartment,133300,Friends,30.57-42.86,friends_s05e04_seg02_clip_11,The broiling pan that Joey had borrowed the other day 11262,Eating a sandwich,Typing on a computer,Drinking espresso,Looking at a case file,Throwing paper airplanes.,2,What are Esposito and Ryan doing when talking to Castle?,133301,Castle,31.77-35.86,castle_s06e03_seg02_clip_07,Drinking espresso 11263,he was wearing a tank top,he was wearing a green sweater,he was wearing a button down blue shirt,he was wearing a see thru bra,"he had his chest out, no shirt needed at the beach",2,What kind of shirt was Ross wearing when he was sitting down?,133302,Friends,0-21.09,friends_s04e21_seg02_clip_01,he was wearing a button down blue shirt 11264,Pkayign foosball,Reading the newspaper,Watching Baywatch,Drinking orange juiice,Eating cereal,4,What are Chandler and Joey doing when they are talking?,133303,Friends,0-9.25,friends_s02e16_seg01_clip_00,Eating cereal 11265,The barista.,Joey.,Chandler.,A doctor.,Monica.,4,Who approaches Ross and Rachel when they are sitting in a coffee house?,133304,Friends,39.46-44.39,friends_s08e22_seg02_clip_10,Monica. 11266,for a pair of shoes ,to have dinner ,to get a cup of coffee,to get a sweater,If she sees her again she will call the police,4,What did Cuddy tell Ali right before she walked away? ,133305,House M.D.,81.86-93.03,house_s03e04_seg02_clip_16,If she sees her again she will call the police 11267,Cameron is talking on the phone,Cameron is eating,Cameron is drawing,Cameron is reading a book,Cameron is talking to the nurse,3,What is Cameron doing when House is in the hospital bed?,133306,House M.D.,19.8-26.25,house_s02e24_seg02_clip_00,Cameron is reading a book 11268,At Park's head,At Chase's head,At Taub's head,At Adams' head,At Foreman's head,0,Where does House throw a bundle of papers in a plastic folder before he acknowledges Chase as doctor who actually takes the time to read lab reports?,133307,House M.D.,56.58-91.26,house_s08e11_seg02_clip_03,At Park's head 11269,Gave her a sexy outfit,Had sex with her,Gave her a book,Gave her a pill,Had her take out the trash,3,What did Wolf do to Cecily once before she was interviewed by Beckett and Castle?,133308,Castle,0-2.23,castle_s02e22_seg02_clip_25,Gave her a pill 11270,They give her a handkerchief,They move her out the room,They give her a gas mask,They give her the victim's cell phone,They apologize for her loss,4,What are the detectives doing when the see the victim's widow?,133309,Castle,22.08-28.84,castle_s02e10_seg02_clip_03,They apologize for her loss 11271,Beckett,Martha,Castle,Montgomery,Ryan,1,Who suggests someone start on the dishes when Castle is home?,133310,Castle,4-5.33,castle_s02e16_seg02_clip_24,Martha 11272,Stuart walks in.,Joshua walks in.,James walks in.,Chandler walks in.,Steve walks in.,1,Who walks into the office when Rachel is flustered?,133311,Friends,47.24-52.46,friends_s04e13_seg02_clip_04,Joshua walks in. 11273,They are able to hear the Zawari strike,They are able to hear the conference in the Oval Office,They are able to hear the take-over of the embassy,They are able to hear storming of the al-qaeda headquarters,They are able to hear meeting of the Joint Chiefs of Staff,0,"What is Richmond able to pull up for McCord, Beckett and Castle to listen to after he cross-referenced a database at Bagram?",133312,Castle,16.1-27.28,castle_s06e02_seg02_clip_16,They are able to hear the Zawari strike 11274,Outside into the hallway,Into the livingroom,Into the guest bedroom,Into the kitchen,Into the bathroom,4,Where does Marshall go when he leaves his bedroom?,133313,How I Met You Mother,6.3-9.9,met_s06e06_seg02_clip_10,Into the bathroom 11275,Walks in and sits down with the class,Leans on the door push bar,Walks in and turns off the projector,Turns around and closes the door,Slams the door open,1,"What does Cuddy do when she opens the door to the classroom and says ""House""?",133314,House M.D.,62.12-71.32,house_s04e02_seg02_clip_00,Leans on the door push bar 11276,To watch a good movie.,To enjoy her flight.,She had to get off the plane.,To eat a lot of food.,To get a nice pillow for the flight.,2,What did Phoebe tell Rachel she had to do after Ross didn't want to talk on the phone?,133315,Friends,46.08-52.79,friends_s10e17-18_seg02_clip_33,She had to get off the plane. 11277,Spit in his hand.,Slap him.,Punch him.,Pour water on him.,Yell in his ear.,2,What does Sheldon ask Raj NOT to do when Raj tells him to close his eye?,133316,The Big Bang Theory,46.04-51.35,s03e18_seg02_clip_06,Punch him. 11278,Francisco,Fredrico,Ferdinand,Frank,Ferris,0,Who did Ryan say thought he was under surveillance when he was talking to Beckett on the phone?,133317,Castle,20.2-31.67,castle_s04e13_seg02_clip_08,Francisco 11279,Monica cries.,Monica is exasperated.,Monica walks out the door.,Monica kisses Chandler.,Monica sits on the floor.,1,How does Monica react after she fails Phoebe's test?,133318,Friends,9.92-16.97,friends_s09e17_seg02_clip_02,Monica is exasperated. 11280,Tom wants to set Chandler up with his sister,Tom wants to ask Chandler out,Tom came by topay his condolences,Tom came to see if Chandler wanted to go out for a drink to talk about Ross,Tom came by to see if they were renting out Ross's apartment ,1,Why does Tom say he came by the apartment when he speaks with Monica?,133319,Friends,12.61-23.64,friends_s09e17_seg02_clip_19,Tom wants to ask Chandler out 11281,coffe,nothing,girl,He wanted decent coffe,bar,3,what did Ross want when he said with chandler,133320,Friends,0-45.45,friends_s02e21_seg02_clip_12,He wanted decent coffe 11282,Rachel asks about a candy bar,Joey asks about a candy bar,Ross asks about a candy bar,Phoebe asks about a candy bar,Rachel asks about a candy bar,1,Who asks for a candy bar after they re enter the apartment?,133321,Friends,15.13-21.18,friends_s07e01_seg02_clip_01,Joey asks about a candy bar 11283,Leonard said he and Howard were going to go to the movies.,Leonard said he and Sheldon were going to go out with Penny and Lalita.,Leonard apologized and said he and Howard were going out with Penny and Bernadette.,Leonard said he and Howard were going to play a paint ball game.,Leonard said he was going to paint his bedroom.,2,How did Leonard respond after Raj asked what they are going to do tonight?,133322,The Big Bang Theory,65.74-71.94,s03e12_seg01_clip_00,Leonard apologized and said he and Howard were going out with Penny and Bernadette. 11284,shake his hand,hug him,walk out,yell,fall down,2,What did Bailey do after she was done talking to the boy?,133323,Grey's Anatomy,44.72-47.82,grey_s02e22_seg02_clip_20,walk out 11285,Gene,Joseph,Matthew,Edward,Christopher,3,"What is the first name on the door, when the man with the blonde hair goes through it?",133324,House M.D.,44.6-51.74,house_s01e16_seg02_clip_22,Edward 11286,Monica says that she is okay.,Monica says that is is sad.,Monica says that she is feeling regretful.,Monica says that she is feeling gross.,Monica says that she is happy.,0,How does Monica answer when Chandler asks if she's okay?,133325,Friends,37.84-62.03,friends_s04e23-24_seg02_clip_35,Monica says that she is okay. 11287,They are shopping.,They are video chatting each other..,They are trying to fix it.,They are checking e-mails.,They are watching a evidence video.,4,Why is everyone looking at a computer when they are working ?,133326,Castle,55.9-58.1,castle_s05e07_seg02_clip_15,They are watching a evidence video. 11288,Amy thought that Sheldon would stop the wedding.,Amy thought that Sheldon was going to throw a fit and cause a scene.,Amy thought that Sheldon was going to walk out of the wedding.,Amy thought that Sheldon was proposing to her.,Amy thought that Sheldon would break out in song.,3,Why did Amy stand up when Sheldon was making an announcement?,133327,The Big Bang Theory,8.75-18.21,s10e01_seg02_clip_16,Amy thought that Sheldon was proposing to her. 11289,Nothing,Excrement ,An ulcer,A baby,A parasite,4,What does House discover after he cuts into the patient's abdominal region? ,133328,House M.D.,62.39-69.82,house_s03e14_seg02_clip_23,A parasite 11290,A toy,A tissue,A cast,A tea kettle,A clipboard,4,What does Cameron hand to another person after she walks away from the patient?,133329,House M.D.,3.29-11.28,house_s05e01_seg02_clip_09,A clipboard 11291,no,no,yes,no,maybe,2,Did Chandler sell Joey out when they were at the doctor,133330,Friends,31.09-33.89,friends_s03e03_seg02_clip_00,yes 11292,Cuddy pats Chase on the shoulder.,Cuddy looks over her shoulder.,Cuddy glances at her watch.,Cuddy pulls out her cell phone.,Cuddy takes the patient chart from Chase.,2,What does Cuddy do before she walks away from Chase in the walkway?,133331,House M.D.,27.61-31.29,house_s06e13_seg02_clip_10,Cuddy glances at her watch. 11293,Chinese,Mexican,French,American,Cuban,0,What type of restaurant did Beckett and Ryan visit when they went to talk to the Lees? ,133332,Castle,75.55-84.2,castle_s04e04_seg02_clip_11,Chinese 11294,a beer bottle,a glass,a sandwich,his hat,his phone,1,What is Barney holding when he says it looks like he is going to win?,133333,How I Met You Mother,12.36-17.3,met_s03e04_seg02_clip_15,a glass 11295,Change,Joey,Ross Jr.,Chanzaro,Chauncey,4,What name does Ross call Chandler after they walk in the apartment?,133334,Friends,4.8-10.89,friends_s07e03_seg02_clip_07,Chauncey 11296,The mess on the kitchen floor.,The old couch Chandler brought. ,The giant plastic dog in her living room.,The ugly painting Chandler brought. ,The delicious dinner that was sitting on the table. ,2,What did Monica ask about after she hugged Chandler? ,133335,Friends,45.37-52.93,friends_s10e10_seg02_clip_16,The giant plastic dog in her living room. 11297,7 hours.,5 hours.,8 hours.,6 hours.,4 hours.,3,How long did the patients partner say they had been waiting when House walks in the room with test results?,133336,House M.D.,0-3.15,house_s05e11_seg02_clip_17,6 hours. 11298,He answered his phone ,He walked over to the window ,He moved closer to the chair ,He left the office ,He signed some papers ,3,What did House do after Cuddy set down at her desk? ,133337,House M.D.,9-16.65,house_s05e01_seg02_clip_11,He left the office 11299,Ross,Monics,Chandler,Joey,Rachel,4,Who do Ross and the other man turn and look at after they have a heated discussion?,133338,Friends,9.24-16.18,friends_s02e10_seg02_clip_17,Rachel 11300,being angry ,having an urge to fling her waste,being drunk,dating Howard,disliking the food she was served,1,What does Bernadette deny after Amy talks about a primate study?,133339,The Big Bang Theory,26.07-52.77,s04e19_seg02_clip_03,having an urge to fling her waste 11301,Cuddy,Cameron,Chase,House,The janitor,1,Who did Wilson think was responsible after Foreman's interview was sabotaged?,133340,House M.D.,3.05-15.23,house_s03e23_seg02_clip_16,Cameron 11302,Stevenson.,Spencer.,Sparkles.,Spillman.,Stephaniski.,2,What was Robin's last name when she was a recording artist?,133341,How I Met You Mother,71.88-77.74,met_s02e09_seg02_clip_18,Sparkles. 11303,Because he kept tripping.,Because he was laying and resting.,Because he was up and running.,Because he was crawling.,Because he was up and walking.,4,Why was Cameron concerned House would rip his stitches out after he got out of his patient bed?,133342,House M.D.,60.09-67.21,house_s02e24_seg02_clip_01,Because he was up and walking. 11304,The coffee cup in front of Monica is purple,The coffee cup in front of Monica is red,The coffee cup in front of Monica is black,The coffee cup in front of Monica is yellow,The coffee cup in front of Monica is pink,3,What color coffee cup is in front of Monica when she is sitting on the couch with Joey,133343,Friends,18-25.94,friends_s07e11_seg02_clip_06,The coffee cup in front of Monica is yellow 11305,Jeanie.,Phoebe.,Rachel.,Janice.,Cecilia.,4,Who is wearing a white jacket when she is talking to Joey about helping him?,133344,Friends,24.01-26.57,friends_s07e15_seg02_clip_10,Cecilia. 11306,He asks her questions to her question such as would it change her feelings or help her to heal about the situation.,He responds with apathy for her feelings because he really cannot relate to her plight and he doesn't care.,"He responds with sarcasm and says, of course, he feels bad, hasn't he told you? Let's get his number and see.",He responds with what do you want me to say? Do you want me to feel sorry for what happened to you because you are the only one.,He responds with caring words for her. He gives her a hug and tells her there is no way her rapist feels remorse. He is evil.,0,How does House respond after Eve asks him about whether her rapist feels remorse?,133345,House M.D.,79.3-86.51,house_s03e12_seg02_clip_23,He asks her questions to her question such as would it change her feelings or help her to heal about the situation. 11307,The got on their phones.,They threw their beers in his face.,They got up and walked away.,They started singing.,They started clapping.,2,What did the girls do when Barry started flirting?,133346,How I Met You Mother,11.18-20.19,met_s02e02_seg02_clip_08,They got up and walked away. 11308,He enters the kitchen and opens the refrigerator.,He sits on the sofa next to Howard.,He grabs some popcorn from the coffee table.,He places his cell phone on the table and plugs it in. ,He sits on the sofa next to Raj.,0,What does Leonard do after he leaves the room and Howard asks him about his standing on giant ants?,133347,The Big Bang Theory,8.6-18.73,s03e19_seg02_clip_00,He enters the kitchen and opens the refrigerator. 11309,"Howard says, ""The props from Saturn. ""","Howard says, ""Screen worn bras"". ","Howard says, ""Boxers worn by Rocky"". ","Howard says, ""Dirt from Nantucket"". ","Howard says, ""Screen worn Lieutenant Uhura panties"". ",4,What example does Howard use when describing what black-market phasers sell?,133348,The Big Bang Theory,9.97-14.2,s03e17_seg02_clip_02,"Howard says, ""Screen worn Lieutenant Uhura panties"". " 11310,The chemical that was spilled can be deadly to animals and people.,The chemical that was spilled can be caustic.,The chemical that was spilled can be eat away at your brain.,The chemical that was spilled can be toxic to water.,The chemical that was spilled can be explosive.,4,What does Alan say about the compound when he is talking about it being dangerous?,133349,Castle,45.16-61.25,castle_s08e19_seg02_clip_07,The chemical that was spilled can be explosive. 11311,Amy tells Bernadette that she is not Penny beautiful. ,Amy tells Bernadette that she is stunning without any mention of Penny. ,Amy tells Bernadette that she looks ugly. ,Amy tells Bernadette that she looks fat. ,Amy tells Bernadette that the dress is ugly. ,0,What does Amy say to Bernadette when she tries on a wedding dress?,133350,The Big Bang Theory,71.78-76.38,s05e08_seg02_clip_16,Amy tells Bernadette that she is not Penny beautiful. 11312,to watch tv ,to go to the bathroom,to make a sandwich ,to plead his case,to leave the apartment ,3,What makes Raj get up from the desk when they are talking? ,133351,The Big Bang Theory,16.27-22.78,s03e12_seg02_clip_01,to plead his case 11313,A briefcase.,A printer.,A pen.,A phone.,A computer monitor.,4,What was on top of the desk when Esposito told Gates that they're distributing the suspect's picture?,133352,Castle,0-5.46,castle_s07e05_seg02_clip_17,A computer monitor. 11314,happy,interested,in love,not interested at all,irritated,3,How did Raj feel when he was asked if he liked Amy?,133353,The Big Bang Theory,0-15.29,s06e11_seg02_clip_10,not interested at all 11315,Phoebe,Ross,Chandler,Rachel,Joey,4,Who is walking down the hall with balloons when Lydia is in bed holding a new baby?,133354,Friends,48.22-57.04,friends_s01e23_seg02_clip_11,Joey 11316,He has a social engagement he cannot cancel,He is out of town on business,He is in a concert at that time,He promised to take the children skiing,He is will his mother who is ill,2,Why can't Jack be there when Phoebe suggests a time?,133355,Friends,19.47-22.66,friends_s08e10_seg02_clip_15,He is in a concert at that time 11317,The cafeteria. ,The locker room. ,At her apartment. ,In Cuddy's office. ,In a car.,4,Where were House and Thirteen when they were talking?,133356,House M.D.,36.01-41.86,house_s07e18_seg02_clip_08,In a car. 11318,In the bathroom. ,In the bedroom. ,Outside.,In the hallway.,On the couch.,4,Where is Rachel and her mom when they are talking about the baby? ,133357,Friends,0-17.62,friends_s08e20_seg02_clip_13,On the couch. 11319,Ethan,Gunther,Marcus,Daniel,David,4,Who did Monica say is going to propose to Phoebe when she called Mike?,133358,Friends,13.17-24.09,friends_s09e23-24_seg02_clip_15,David 11320,50,20,100,40,80,2,How many different ways does Cameron say the team has looked at the patients heart when House tells them to do another angiogram?,133359,House M.D.,7.61-17.45,house_s03e24_seg02_clip_20,100 11321,To the bathroom.,To call his mom.,To comfort Moira.,To get lunch.,To his car.,2,Where Chase goes after House's nasty remark?,133360,House M.D.,49.06-69.77,house_s08e12_seg02_clip_20,To comfort Moira. 11322,A Wal-Mart,A hospital,A daycare facility,A school,The pet store,4,What store does Sheldon hit with his car when he is playing the video game simulator?,133361,The Big Bang Theory,19.32-58.55,s02e05_seg02_clip_13,The pet store 11323,Luggage bags. ,Grocery bags. ,Shopping bags. ,Backpacks. ,Purses. ,0,What do Ross and Chandler have with them when they walk into the apartment?,133362,Friends,2.24-6.08,friends_s07e03_seg02_clip_07,Luggage bags. 11324,Because he had no idea how to help his friend.,Because of his tendency to say the wrong things.,Because he wasn't able to save Marshall's father.,Because he didn't consider Marshall his best friend.,Because he had been away on vacation for three months.,0,Why did Ted feel useless after Marshall's tragic loss?,133363,How I Met You Mother,15.55-22.7,met_s06e14_seg02_clip_00,Because he had no idea how to help his friend. 11325,in a circle with the students,behind his desk,on top of the desk,on the rug,near the window,2,Where is Joey sitting when he is teaching a class?,133364,Friends,50.67-60.32,friends_s03e07_seg02_clip_18,on top of the desk 11326,Mike,"Foreman, House and Cameron",Dave,Mitchell,Jordan,1,Who does Chase talk to after he leaves the mom?,133365,House M.D.,21.23-30.67,house_s01e08_seg02_clip_06,"Foreman, House and Cameron" 11327,A painting of two tigers playing caught Joey's attention.,A stack of unopened letters caught Joey's attention.,A large white statue of a dog caught Joey's attention.,A cookie jar full of brownies caught Joey's attention.,A display of family photos caught Joey's attention.,2,What caught Joey's attention after he walked into the living room?,133366,Friends,53.74-58.08,friends_s02e17_seg02_clip_02,A large white statue of a dog caught Joey's attention. 11328,He took a bite of sandwich.,He sat on the table.,He sat on the couch.,He got a beer from the refrigerator.,He set a bag on the table.,4,What did Joey do when he said that it was hard to shop for girls?,133367,Friends,43.7-47.34,friends_s04e06_seg02_clip_07,He set a bag on the table. 11329,There is a small bed in the basement with princess bedding,There is a play area set up for a child in the basement,There is a picture of Emily playing in the basement,Emily's mom tells them she lets Emily play down there while she works,Emily told them before she left to bring her back some toys from the basement,1,How do Chase and Adams know Emily is allowed in the basement when they visit there?,133368,House M.D.,22.55-30.37,house_s08e19_seg02_clip_06,There is a play area set up for a child in the basement 11330,anger,sloth,envy,hate,jealousy,0,What sin was mentioned when Burke and Derek were at the bar?,133369,Grey's Anatomy,0-19.29,grey_s02e25_seg02_clip_00,anger 11331,Not a big deal,a HUGE deal,It's all good,Everything is gonna be alright,Total Meltdown,0,How does Rachel describe the situation with Joey before Joey leaves the room?,133370,Friends,2.79-10.86,friends_s09e23-24_seg02_clip_41,Not a big deal 11332,House,Chase,Masters,Cuddy,Wilson,0,Who suggests chemo after Foreman asks what to do?,133371,House M.D.,40.38-49.7,house_s07e14_seg02_clip_16,House 11333,He asks if she is hungry. ,He asks if Rachel is on her period. ,He asks if Rachel has ever been with a woman. ,He asks if she wants to kiss him. ,He asks if she wants a hug. ,2,What does Chandler ask Rachel when he ruins the moment they are having?,133372,Friends,32.21-47.97,friends_s04e10_seg02_clip_15,He asks if Rachel has ever been with a woman. 11334,The living room.,The bedroom.,The kitchen.,Monica's apartment. ,The movie theater. ,0,Where were Rachel and Joey sitting when watching the scary movie?,133373,Friends,0-5.39,friends_s08e12_seg02_clip_21,The living room. 11335,House said Margo needed to take some time off of work.,House said Margo needed to have surgery.,House said Margo needed to eat healthier.,House said Margo needed to exercise more.,House said Margo needed to stop taking a certain type of pill.,4,What did House say Margo had to do to get rid of her tumor when he was leaving her hospital room?,133374,House M.D.,80.52-83.74,house_s02e11_seg02_clip_19,House said Margo needed to stop taking a certain type of pill. 11336,Mark,Derek,Dr. Burke,Addison,Dr. Bailey,0,Who is in the conference room when the board is meeting?,133375,Grey's Anatomy,13.65-29.26,grey_s03e19_seg02_clip_23,Mark 11337,bottle,bag,notebook,box,locket,3,What does Phoebe's grandmother open after she puts it down on the table?,133376,Friends,29.81-35.42,friends_s02e09_seg02_clip_03,box 11338,Pictures,Window,Bookcase,Hospital machines,Door,1,What is behind Wilson when he sits down?,133377,House M.D.,44.19-53.6,house_s02e01_seg02_clip_10,Window 11339,What's your name?,You're pretty.,That is so great.,Which apartment are you moving to?,This is Sheldon.,2,How does Leonard respond after meeting Alicia?,133378,The Big Bang Theory,0-14.71,s02e19_seg02_clip_02,That is so great. 11340,Castle,Ryan,Esposito,Montgomery,Lanie,2,Who did d'andre try to throw through a wall when he was being arrested? ,133379,Castle,20.36-31.86,castle_s03e04_seg02_clip_04,Esposito 11341,Thomas is excited to know that House is his son.,Thomas is excited to meet Greg House.,Thomas is excited because he learns House isn't his son.,Thomas is excited because he learns House liked his book.,Thomas is excited because House finally agreed to sit down with him.,0,Why does Thomas surprised when meeting House and Wilson at the restaurant?,133380,House M.D.,2.29-11.02,house_s08e14_seg02_clip_21,Thomas is excited to know that House is his son. 11342,An X-ray.,His cane.,His phone.,His wallet.,His car keys.,1,What House grabs before leaving the room?,133381,House M.D.,44.6-63.26,house_s03e16_seg02_clip_11,His cane. 11343,Another man,Himself,Dog,A male nanny,A female nanny,2,What does House suggest Arlene replace her husband with when he's probing her about why she doesn't leave him at a home?,133382,House M.D.,37.73-43.71,house_s03e01_seg02_clip_11,Dog 11344,Castle annoyed them by making fun of their case,Castle under estimated the complexity of gun related homicides,Castle mispoke when he said it was a homicide,The case was a breaking and entering,Espositos tie was too tight,1,Why did Ryan and Esposito take offense after Castle called the homicide garden-variety?,133383,Castle,40.07-62.2,castle_s02e02_seg02_clip_03,Castle under estimated the complexity of gun related homicides 11345,Because she didn't want to discuss it with him.,Because she was in a rush.,Because she doesn't like him.,Because she had company.,Because it was raining.,0,Why did Penny get upset when Leonard kept inquiring about her date?,133384,The Big Bang Theory,11.32-35.42,s02e22_seg02_clip_08,Because she didn't want to discuss it with him. 11346, Ryan said Kin Hyun Joo was from Singapore., Ryan said Kin Hyun Joo was from Japan., Ryan said Kin Hyun Joo was from China., Ryan said Kin Hyun Joo was from Korea., Ryan said Kin Hyun Joo was from India.,3,Where did Ryan say Kin Hyun Joo was from when he pointed to her picture?,133385,Castle,66.35-68.6,castle_s08e13_seg02_clip_12, Ryan said Kin Hyun Joo was from Korea. 11347,A sign.,A gun.,A phone.,A portfolio.,A marker.,3,What was Beckett holding when she said something about murder?,133386,Castle,19.36-27.01,castle_s02e20_seg02_clip_21,A portfolio. 11348,Go get a beer,Go to the bowling alley,Go shoot some hoops,Go to the gun range,Go play golf,0,What does Esposito ask Ryan to go do with him when they are watching the video?,133387,Castle,14.25-52.51,castle_s05e02_seg02_clip_26,Go get a beer 11349,She never wanted to see him again,She was tired,She didn't trust him anymore,She didn't want to see anyone,She didn't want to talk to anyone,1,Why did Beckett ask Castle to left before he continued talking?,133388,Castle,30.56-40.43,castle_s04e01_seg02_clip_06,She was tired 11350,A book,A banana,A basketball,A small hockey stick,A juggling ball ,3,What was Joey balancing when Chandler walked in on him?,133389,Friends,0-3.25,friends_s06e06_seg01_clip_00,A small hockey stick 11351,He sat on her bed.,He held her hand.,He push Joey in front of him.,He rubbed her arm.,He jumped back.,4,What did Ross do after Phoebe yelled?,133390,Friends,2.1-4.5,friends_s05e03_seg02_clip_05,He jumped back. 11352,look out the window,go to the bathroom,lay back down,call the office,call wilson,0,what does house do when he gets out of his bed?,133391,House M.D.,60.91-71.35,house_s05e12_seg02_clip_05,look out the window 11353,Rebecca,Jessica,Manning,Chloe ,Justin,3,Who does Mrs Harris mention when she is talking to Beckett?,133392,Castle,52.37-58.54,castle_s01e02_seg02_clip_17,Chloe 11354,she found the victims medications,she found the victims doctor,the victim was showing signs of erratic behavior.,she found the victim's drug dealer,she has a witness to the behavior. ,2,why does beckett think the victim may have had a drug problem or medical condition after reviewing the timeline?,133393,Castle,57.54-78.06,castle_s03e09_seg02_clip_10,the victim was showing signs of erratic behavior. 11355,No telling what kind of hell he'll unleash,He'll become a bitter old man,He'll drive himself crazy,A lot of unhappiness will be unleashed,Many people will get hurt,0,What did Hayley say could happen if Castle kept searching for an answer after she suggested that he let his lost time go?,133394,Castle,49.85-62.32,castle_s08e14_seg02_clip_22,No telling what kind of hell he'll unleash 11356,"Raj wanted to tell Bert, Amy was dating Sheldon.","Raj wanted to tell Bert, Amy was available.","Raj wanted to tell Bert, Amy wanted to take him on a date.","Raj wanted to tell Bert, Amy was a lesbian.","Raj wanted to tell Bert, Amy was straight.",3,What did Raj want to tell Bert when he went to go talk to him?,133395,The Big Bang Theory,55.3-58.98,s07e13_seg02_clip_12,"Raj wanted to tell Bert, Amy was a lesbian." 11357,A baby crying.,A rat runs across the floor.,A woman's scream.,A light goes out.,His phone rings.,3,What startles Castle after he enters the corridor?,133396,Castle,102.7-109.36,castle_s08e12_seg02_clip_01,A light goes out. 11358,Barney took off the towel on Ben's head.,Barney took off the bandanna on Ben's head.,Barney took off the swimming cap on Ben's head.,Barney took off the wig on Ben's head.,Barney took off the hat on Ben's head.,3,What did Barney take off of Ben when he went up to him from behind?,133397,How I Met You Mother,25.69-29.26,met_s02e21_seg02_clip_11,Barney took off the wig on Ben's head. 11359,Because Marshall and the woman were about to kiss.,Because the woman wanted to hug Marshall.,Because the woman wanted to slap Marshall.,Because marshall is putting a necklace to the woman.,Because Marshall is giving a ring to teh woman.,0,Why Lily jumped when the woman approached to Marshall?,133398,How I Met You Mother,0-37.26,met_s02e07_seg02_clip_14,Because Marshall and the woman were about to kiss. 11360,Castle arrests Ryan.,Castle dances on the street.,Castle kisses Beckett.,Castle hugs Gates.,Castle is upset and worried about Beckett.,4,How does Castle react after discovering a message on Beckett's car?,133399,Castle,12.62-25.71,castle_s07e15_seg02_clip_00,Castle is upset and worried about Beckett. 11361,a glass of water,his phone,Bernadette's glasses,his pajamas,a toothbrush,1,What is Howard holding when his mother yells for Bernadette?,133400,The Big Bang Theory,21.84-28.63,s05e21_seg02_clip_10,his phone 11362,Talks into a recorder.,Walks over to the table.,Types on a computer.,Grabs a notepad and pen.,Moves closer to Phoebe. ,3,What does Monica do after she tells Phoebe that she will write about Phyllis?,133401,Friends,48.21-53.09,friends_s06e21_seg02_clip_12,Grabs a notepad and pen. 11363,Ryan and Esposito challenged Castle to race ,Ryan and Esposito challenged Castle to a video game match,Ryan and Esposito challenged Castle to a match a the precinct,Ryan and Esposito challenged Castle to drinking contest,Ryan and Esposito didn't challenged Castle,2,What did Ryan and Espsotio challenge Castle to when he said he could have beat them?,133402,Castle,55.7-70.2,castle_s07e19_seg02_clip_26,Ryan and Esposito challenged Castle to a match a the precinct 11364,Looked at his phone,Sat on the bed,Rubbed his head,Ate a sandwich,Drank some water,1,What did Barney do after he told Abby he had bad news?,133403,How I Met You Mother,18.52-80.5,met_s03e19_seg02_clip_18,Sat on the bed 11365,The animal will probably not smell the food and stay hidden. ,The animal needs to go to the veterinarian. ,The animal will not smell House and Stacy.,The animal is getting too old to come out. ,Stacy is right about the animal. ,2,Why does House point out to Stacy that they are downwind from the animal after Stacy says the animal won't come out?,133404,House M.D.,37.73-45.55,house_s02e07_seg02_clip_14,The animal will not smell House and Stacy. 11366,87th St.,71st St.,67th St.,27th St.,77th St.,4,Where did Beckett say Alice's office building was when she was interrogating Hawke?,133405,Castle,20.94-26.4,castle_s06e08_seg02_clip_06,77th St. 11367,Joey was looking for her to say puppy instead of kitten.,Joey was looking for her to say cat instead of kitten.,Joey was looking for her to say style instead of kitten.,Joey was looking for her to say tail instead of kitten.,Joey was looking for her to say paws instead of kitten.,2,Why does the prospective roommate fail the test when she answers kitten?,133406,Friends,40.88-67.02,friends_s06e03_seg02_clip_19,Joey was looking for her to say style instead of kitten. 11368,Pi.,Ashley.,Ashton.,Alan.,Adrien.,1,Who did Martha say was Alexis's secret admirer when she was on the phone with Castle?,133407,Castle,65.93-72.34,castle_s03e06_seg02_clip_25,Ashley. 11369,60 Minutes.,Wives of New York.,CSI New York.,Dateline.,Wives of Wall Street.,4,What show did Gates tell Beckett and Castle they should watch when they got home that night?,133408,Castle,55.84-63.17,castle_s05e14_seg02_clip_10,Wives of Wall Street. 11370,Because he is pretending.,Because he is laughing.,Because he is scared.,Because he is okay.,Because he is remembering.,0,Why is Ross nervous when Chandler asks him to go on stage?,133409,Friends,3-9.81,friends_s08e02_seg02_clip_12,Because he is pretending. 11371,Cameron.,Thirteen.,Cuddy.,His wife.,Jessica.,2,Who did Chase ask how they were doing when he sat down at the table?,133410,House M.D.,75.67-78.34,house_s05e07_seg02_clip_07,Cuddy. 11372,His mom.,Robin,Barney,Lily,A friend.,3,Who does Ted stop Marshall from calling when he tackles him?,133411,How I Met You Mother,0-31.82,met_s02e01_seg02_clip_03,Lily 11373,Lane had taken a neighbor's car for a joy ride,Lane had been accused of sexual assault,Lane had robbed the neighborhood drug store,Lane was a victim of cyberbullying,Lane was the victim of a petty theft,3,"Why does Garrett say he was involved with Lane in the first place when he is talking to Castle, Beckett and Gates?",133412,Castle,52.79-59.17,castle_s07e05_seg02_clip_17,Lane was a victim of cyberbullying 11374,Standing in the kitchen,In the bathroom putting on her makeup,In the living room watching a movie,In her bedroom talking to Richard,In the coffee shop,0,Where was Monica when she asked Joey and Chandler where they were going,133413,Friends,0-12.21,friends_s02e20_seg02_clip_07,Standing in the kitchen 11375,She said Rachel was going to put on a skit.,She said they were late for dinner anyway.,She said there was too much traffic.,She said she didn't want to eat at the restaurant.,She said she was tired.,0,Why did Emily say they couldn't go for dinner when Rachel walked in to the room?,133414,Friends,39.74-48.4,friends_s04e16_seg02_clip_13,She said Rachel was going to put on a skit. 11376,It was run over by BMX bikers.,It had been dismembered.,It had been dumped in a river.,It had been attacked by animals.,It had been eaten by animals. ,0,What had happened to the dead body when Richard and Beckett got to the park?,133415,Castle,70.09-81.92,castle_s03e08_seg02_clip_00,It was run over by BMX bikers. 11377,brown,green,gray,white,blue,1,What color is the blanket on top of House when he was talking to Wilson?,133416,House M.D.,0.91-5.46,house_s06e05_seg02_clip_01,green 11378,Raj and Howard began playing a video game when Leonard started to crawl through the laser beams.,Raj and Howard imitated 5th of Beethoven when Leonard started to crawl through the laser beams.,Raj and Howard walked away when Leonard started to crawl through the laser beams.,Raj and Howard imitated Khachaturians Sabre Dance when Leonard started to crawl through the laser beams.,Raj and Howard began eating Chinese food when Leonard started to crawl through the laser beams.,3,What did Raj and Howard do when Leonard started to crawl between the laser beams?,133417,The Big Bang Theory,19.18-40.31,s02e18_seg01_clip_00,Raj and Howard imitated Khachaturians Sabre Dance when Leonard started to crawl through the laser beams. 11379,picture frames ,bread,glass bottles ,teddy bears ,flowers ,2,What is atop the cabinets when Castle leaves his kitchen? ,133418,Castle,34.58-38.6,castle_s04e22_seg02_clip_07,glass bottles 11380,Screenwriter,Teaching,Competitive Dancing,Becoming an actor.,Alcoholism,4,What new career path is Leonard seriously considering when he's drinking with Penny?,133419,The Big Bang Theory,23.8-61.02,s02e15_seg02_clip_10,Alcoholism 11381,He leaves the room.,He makes a phone call.,He pulls photos off the board.,He sits down at his computer.,He grabs his coffee cup and takes a drink.,3,What does Esposito do after telling Montgomery about something your average mope couldn't rig?,133420,Castle,35.52-45.17,castle_s01e07_seg02_clip_05,He sits down at his computer. 11382, Ted got a nosejob,Ted got a new shirt,Robin's STD,Ted shaved his beard,Robin lost her passport,3,What were Ted and Robin talking about before they discussed their breakup?,133421,How I Met You Mother,0-12.93,met_s03e01_seg02_clip_16,Ted shaved his beard 11383,She extends her hand out for a handshake.,She puts her hand on the mothers shoulder.,She takes a midway bow and walks backwards away from them.,She starts crying for no reason and apologizes again.,She gives the youngest member of the family a teddy bear. ,2,What does Dr. Bailey do when talking to a family in the waiting room and says apologies?,133422,Grey's Anatomy,2.18-10.01,grey_s02e12_seg02_clip_24,She takes a midway bow and walks backwards away from them. 11384,Phoebe grabs a movie.,Phoebe grabs a book.,Phoebe grabs a wallet.,Phoebe grabs the cordless phone.,Phoebe grabs a blanket.,3,What does Phoebe grab off of the couch after getting up from the kitchen table?,133423,Friends,9-11.41,friends_s02e21_seg02_clip_11,Phoebe grabs the cordless phone. 11385,She admits that she has a crush on Ross. ,She admits she doesn't like him. ,She admits she likes Joey. ,She admits she steals. ,She admits she has feelings for him. ,4,What does Rachel admit when she is talking to Tag out on the balcony?,133424,Friends,46.75-51.33,friends_s07e08_seg02_clip_11,She admits she has feelings for him. 11386,tired,worried,happy,angry,upset,2,How did Raj and Leonard feel when the nurse made fun of Howard?,133425,The Big Bang Theory,30.72-54.37,s04e01_seg02_clip_15,happy 11387,Beckett hands him a taser.,Beckett hands him a wallet.,Beckett hands him a gun.,Beckett hands him pepper spray.,Beckett hands him a business card.,2,What does Beckett hand to Castle after finding it on the victim?,133426,Castle,40.51-42.31,castle_s03e07_seg02_clip_01,Beckett hands him a gun. 11388,Ross and Monica decided to leave the park.,Ross and Monica waited patiently.,Ross and Monica wanted Joey and Chandler to hurry up so they could play.,"Monica left, and Ross stayed.","Ross left, and Monica stayed.",2,How did Ross and Monica react when Joey and Chandler put their game on brief intermission to talk to Margha?,133427,Friends,6.89-21.91,friends_s03e09_seg02_clip_07,Ross and Monica wanted Joey and Chandler to hurry up so they could play. 11389,Phoebe gets on the train.,Phoebe hugs Joey.,Phoebe dances with Monica.,Phoebe walks towards Chandler.,Phoebe jumps out of the car.,4,How does Phoebe react after Ross gets upset in the car?,133428,Friends,32.44-39.3,friends_s07e14_seg02_clip_02,Phoebe jumps out of the car. 11390,He was looking for his mom.,He wanted to say hi.,He was trying to destroy a reccord.,He needed to find food.,He was lost.,2,Why was Fore man down with Taub when he was looking for records?,133429,House M.D.,4.02-15.19,house_s06e16_seg02_clip_12,He was trying to destroy a reccord. 11391,Maria's assistant,Castle,Maria's son,Maria's brother,The head of Maria's group,1,Who did Ryan cuff after the detectives cuffed Maria?,133430,Castle,46.09-50.79,castle_s07e06_seg02_clip_14,Castle 11392,Leonard and Penny are taking a trip for Penny's birthday,Leonard and Penny are taking a trip for their honeymoon.,Leonard and Penny are taking a trip to Penny's old high school.,Leonard and Penny are moving in together.,Leonard and Penny are taking a trip so that Leonard can give the graduation speech at his old high school.,4,Why does Leonard say that he and Penny are packing suitcases when he is coming out of the hall?,133431,The Big Bang Theory,14.62-80.86,s08e22_seg01_clip_00,Leonard and Penny are taking a trip so that Leonard can give the graduation speech at his old high school. 11393,Tried to talk about something else,Asked more questions,Started laughing,Hung up on the phone,Turned on the television during the conversation,3,What did Marshall do right after Honey started explaining Zoey's problems?,133432,How I Met You Mother,32.04-61.03,met_s06e15_seg02_clip_15,Hung up on the phone 11394,Eyeing the clock.,A phone.,A timer.,A stopwatch.,They aren't timing them.,2,How are Monica and Chandler keeping time when giving each other massages?,133433,Friends,0-12.51,friends_s05e13_seg01_clip_00,A timer. 11395,They're at the movies. ,They're hanging out at the workshop.,They're at the airport. ,They're hanging out at home.,They're on a road trip.,1,"Where is Penny, Raj, and Bernadette at when they plan on catching the men in lies. ",133434,The Big Bang Theory,0-18.94,s09e19_seg02_clip_12,They're hanging out at the workshop. 11396,Derek told George to meet him later.,Derek told George to get a life.,Derek told George thank you.,Derek told George to get back to work.,Derek told George he hates him.,2,What did Derek tell George before the elevator door closed?,133435,Grey's Anatomy,0-6.21,grey_s01e07_seg02_clip_04,Derek told George thank you. 11397,Porter told House he needed to see some toilet tissue,Porter told House he needed to see some tuna,Porter told House he needed to see some chewing gum,Porter told House he needed to see some candy bars,Porter told House he needed to see some cans of soup,1,What did Porter say he wanted from House when they were talking outside the cells,133436,House M.D.,0-6.75,house_s08e01_seg02_clip_10,Porter told House he needed to see some tuna 11398,Chase.,Cameron.,House.,Brandon.,Brandon's mother.,0,Who becomes annoyed with Foreman after he initially refuses to pull back the tube?,133437,House M.D.,35.26-42.78,house_s01e03_seg02_clip_21,Chase. 11399,Texting on her phone,Drinking white wine,Watching tv,Dancing,Writing in her journal ,1,What is Stella doing when Ted brings her a plate? ,133438,How I Met You Mother,0-6.96,met_s04e01_seg02_clip_05,Drinking white wine 11400,The file will be thrown away.,The file goes to the police.,The file goes public.,Nothing will happen to the file.,The file will be given to Brackens family.,2,What happens to the file when anything happens to Beckett?,133439,Castle,63.22-73.01,castle_s05e01_seg02_clip_25,The file goes public. 11401,amber,thirteen,foreman,kutner,no one,0,Who does taub think house took to a bar the night before when he is in houses office?,133440,House M.D.,46.05-53.49,house_s04e16_seg02_clip_01,amber 11402,On the bed,At the door,On the table,On the couch,Beside the fridge,3,Where Was House when Wilson questioned him about breakast,133441,House M.D.,0-6.23,house_s06e05_seg02_clip_18,On the couch 11403,He tells him thats great,He laughs at him,He says call me when your on the cover,He punches him,He slaps him in the face,2,What does Charlie Sheen say after he says he will be in People magazine?,133442,The Big Bang Theory,32.65-61.02,s02e04_seg02_clip_07,He says call me when your on the cover 11404,Travel makes her constipated.,Travel makes her sleepy.,Travel makes her sick.,Travel makes her nervous.,Travel makes her tired.,0,What FYI did Amy say to Penny after she told Penny not to worry?,133443,The Big Bang Theory,29.84-42.62,s04e13_seg02_clip_02,Travel makes her constipated. 11405,He started exercising,He walked away,He fell asleep,He smiled,He started reading a newspaper,3,"How did Chandler react when Jill called him ""some guy""?",133444,Friends,22.33-28.53,friends_s01e07_seg02_clip_01,He smiled 11406,bag,book,cup,box,tissue,4,What is Sheldon holding in his left hand when him and Penny are walking up the stairs?,133445,The Big Bang Theory,40.32-47.77,s01e11_seg02_clip_09,tissue 11407,Living with Chandler,Living with Phoebe,Living with Monica,Living with Paul,Living with a stranger,1,What does Rachel say she is going to miss when she is with Phoebe?,133446,Friends,17.99-26.05,friends_s07e10_seg02_clip_18,Living with Phoebe 11408,A patient chart,A clock,A towel,A mirror,A scalpel ,2,"Besides an image of the X-ray, what other item is hanging on the wall beside House when he is performing surgery on himself?",133447,House M.D.,105.79-110.1,house_s07e22_seg02_clip_08,A towel 11409,Sheldon,Penny,his mother and father,NASA,his boss,2,Who was Raj video chatting with when Leonard was pacing the room?,133448,The Big Bang Theory,0-5.8,s01e08_seg02_clip_12,his mother and father 11410,Rachel was sitting next to the dining table.,Rachel was siting next to the window.,Rachel was sitting next to the phone.,Rachel was sitting next to the door.,Rachael was next to Monica.,1,What was Rachel sitting next to after Monica answered the phone?,133449,Friends,18.62-51.22,friends_s02e08_seg02_clip_18,Rachel was siting next to the window. 11411,Bailey,Derek,Dr Burke,Slone,Richard,2,Which doctor asked Kallie to assist him first when they were looking at scans?,133450,Grey's Anatomy,27.02-38.34,grey_s03e24_seg02_clip_12,Dr Burke 11412,Leonard told Howard that he really hates that game.,Leonard told Howard that Howard isn't very good.,Leonard told Howard that Sheldon will beat his score.,"Leonard told Howard that it was fine, he wins.",Leonard told Howard that he will beat him. ,3,What did Leonard tell Howard after Howard said that Leonard just got served?,133451,The Big Bang Theory,17.71-25.51,s01e02_seg02_clip_12,"Leonard told Howard that it was fine, he wins." 11413,Chase distances himself from his father.,To not see Chase's father anymore.,To not expect anything from Chase's father.,To not care anymore.,Chase moves away from his father. ,3,How does Chase plan to be less hurt by his father after saying that he loved his father?,133452,House M.D.,0-5.63,house_s01e13_seg02_clip_24,To not care anymore. 11414,Robin.,Ted.,Marshall.,Lily.,Hammond.,2,Who stop Barney to leave when Lily was acting?,133453,How I Met You Mother,26.02-51.02,met_s02e16_seg02_clip_07,Marshall. 11415,Hug Rachel and Monica,Kiss Rachel and Monica,Hug Rachel only,Hug Monica Only,Give Rachel and Monica money,0,"What did Phoebe do to Rachel and Monica after Phoebe said ""thanks you guys, again"" ?",133454,Friends,14.36-23.93,friends_s04e22_seg02_clip_18,Hug Rachel and Monica 11416,She starts taking her clothes off.,By mixing his colors and whites.,She hides all of his quarters.,Takes the washing machine he's using.,Throws his clothes on the ground.,0,How does Penny make Sheldon uncomfortable when Sheldon's doing laundry?,133455,The Big Bang Theory,0-6.3,s07e11_seg02_clip_09,She starts taking her clothes off. 11417,Sunglasses.,Her phone.,A book.,A water bottle.,Shoes.,3,What did Rachel have in her hand when she hugged Joey?,133456,Friends,9.92-15.05,friends_s07e04_seg02_clip_13,A water bottle. 11418,Ross was strumming his guitar.,Ross was drinking coffee.,Ross was eating a muffin.,Ross was doodling on a paper.,Ross was flipping through a magazine.,4,What was Ross doing when he asked Chandler about Janice?,133457,Friends,10.79-17.46,friends_s01e05_seg02_clip_00,Ross was flipping through a magazine. 11419,They want to go Salsa,They want to go Waltz,They want to go so some breakdancing,They want to to the foxtrot,They want to go so the Tango,1,What type of dance does the group want to go do after they leave the bar,133458,The Big Bang Theory,32.46-50.1,s04e21_seg02_clip_09,They want to go Waltz 11420,Kate sings.,Kate cries.,Kate says she is miserable.,Kate says she is angry.,Kate responds by saying yeah I guess.,4,How does Kate respond when Joey asks her if she is okay?,133459,Friends,0-4.1,friends_s03e20_seg02_clip_10,Kate responds by saying yeah I guess. 11421,He eats his donut,He starts crying,He pulls off his coat,He points at a calendar,He hugs Robin,4,What does Curt do after he mentions his weekiversary?,133460,How I Met You Mother,43.02-47.6,met_s03e11_seg02_clip_04,He hugs Robin 11422,Because it is Lily's music video.,Because it is her music video.,Because it is Stuart's music video.,Because it is Barney's music video.,Because it is Marshall's music video.,1,Why is Robin embarrassed when everyone is watching the music video?,133461,How I Met You Mother,17.57-27.16,met_s02e09_seg02_clip_18,Because it is her music video. 11423,The blue whale,The elephant,The barnacle,The zebra,The horse,2,What animal does House exclaim has the largest penis when talking to Wilson?,133462,House M.D.,6.86-8.02,house_s02e17_seg02_clip_27,The barnacle 11424,Tastes a piece of cake.,Spits his drink back in the glass.,Writes something down.,Looks at Leonard.,Gives Penny his plate. ,1,What does Sheldon do before telling Penny that he can't taste the cherries?,133463,The Big Bang Theory,50.13-59.43,s04e07_seg02_clip_14,Spits his drink back in the glass. 11425,The counter.,The bench.,The floor.,House's hand,In a locker,0,Where did Chase put the folder before he picked up a coffee cup? ,133464,House M.D.,44.15-49.61,house_s05e17_seg02_clip_17,The counter. 11426,Barney runs to the bathroom.,Barney walks out the door.,Barney plays chess with Ted.,Barney lays on the floor.,Barney turns towards the bar.,4,"What does Barney do after Jerry says ""me, too""?",133465,How I Met You Mother,9.69-12.55,met_s06e19_seg02_clip_06,Barney turns towards the bar. 11427,May day pole,pin the tail on the donkey,Baseball,football,ping pong,1,What game did Sheldon say he was uncomfortable with when he talks about childhood events?,133466,The Big Bang Theory,0-52.18,s01e16_seg02_clip_01,pin the tail on the donkey 11428,She hugs Ted. ,She crosses her legs. ,She hugs Barney. ,She crosses her arms. ,She whispers in Lily's ear. ,3,What does Robin do after she looks away from Barney?,133467,How I Met You Mother,55.91-59.33,met_s02e07_seg02_clip_18,She crosses her arms. 11429,Grey,Blue,Green,Yellow,Purple,0,"What color is the jacket that House is wearing when he say's ""Eventually...""?",133468,House M.D.,0-9.2,house_s03e01_seg02_clip_11,Grey 11430,He dropped keys on the counter.,He placed a book on the counter.,He put food on the counter.,He started tapping on the counter.,He placed a folder in with the rest of the folders on the counter.,4,What did Foreman do when he walked up to the counter?,133469,House M.D.,76.07-81.02,house_s07e18_seg02_clip_08,He placed a folder in with the rest of the folders on the counter. 11431,A text. ,Pig Latin,A hug.,A nod.,Morse Code,4,How did Sheldon say him and Leonard say goodnight to each other when he was talking to Penny?,133470,The Big Bang Theory,50.34-61.02,s07e01_seg02_clip_02,Morse Code 11432,House,Thirteen,Jason,Cameron,Cuddy,0,Who presses the elevator button after Jason and the hostages get to the elevator door?,133471,House M.D.,48.17-62.8,house_s05e09_seg02_clip_16,House 11433,He laughed.,He got up and walked away.,He turned on the TV.,He gave Penny his seat.,He shook his head at Howard.,0,What did Leonard do after Penny said that Bernadette agreed to go out with Howard for free?,133472,The Big Bang Theory,26.86-33.94,s03e09_seg02_clip_03,He laughed. 11434,One of the hospital's staff doctors is the patient,An immunologist and TB expert is the patient,A professional athlete is the patient,Foreman is the patient,House is the patient,1,Who is House's patient when House and his students are meeting about a possible diagnosis with him present?,133473,House M.D.,16.2-22.96,house_s02e04_seg02_clip_01,An immunologist and TB expert is the patient 11435,Chandler told Rachel to hurry up and leave.,Chandler told Rachel that she should just play along. ,Chandler told Rachel that she is mistaken.,Chandler told Rachel that she should give the guy a chance.,"Chandler told Rachel, ""What do you want from me? I never met the guy.""",4,What did Chandler tell Rachel after she told him that the man was not Joshua?,133474,Friends,23.54-28.79,friends_s04e14_seg02_clip_19,"Chandler told Rachel, ""What do you want from me? I never met the guy.""" 11436,He is sitting on the couch. ,He is sitting at the table. ,He is sitting at his keyboard. ,He is in the bathroom. ,He is in the bedroom. ,2,Where is Ross when he is in Monica and Rachel's apartment?,133475,Friends,0-2.58,friends_s04e07_seg02_clip_06,He is sitting at his keyboard. 11437,Sheldon believes Lalita will cast a spell upon Raj.,Sheldon believes Lalita is a witch.,Sheldon believes Lalita is Princess Panchali from The Monkey and The Princess.,Sheldon believes Lalita is a Russian spy.,Sheldon believes Lalita will shoot Raj.,2,"Why is Sheldon astonished after he sees Raj's date, Lalita?",133476,The Big Bang Theory,44.85-55.22,s01e08_seg02_clip_08,Sheldon believes Lalita is Princess Panchali from The Monkey and The Princess. 11438,Didn't have the time to issue one,Need evidence,Koberjust is working with the lucky dragon,Koberjust doesn't like beckett,need probable cause,4,Why did ryan say that judge koberjust denied the search warrant for the lucky dragon when talking to beckett?,133477,Castle,59.82-68.56,castle_s08e19_seg02_clip_19,need probable cause 11439,Purple and White,White and Blue,Purple and Black,Gray and White,Orange and Green ,2,What color stripes were on Sheldon's shirt when he was in the car? ,133478,The Big Bang Theory,0-3.04,s04e13_seg02_clip_02,Purple and Black 11440,Closed his book.,Took a sip of water.,Sat up in the bed.,Grabbed Cameron's hand.,Tapped Cameron's leg.,3,What did Stewart do before he told Cameron that he was a pain in the ass? ,133479,House M.D.,32.05-38.73,house_s05e07_seg02_clip_07,Grabbed Cameron's hand. 11441,Sheldon,a waitress,a little boy,someone dressed as Captian Kirk,a clown ,1,Who makes a sarcastic remark to Leonard after he asks to borrow a phone?,133480,The Big Bang Theory,6.34-15.1,s06e13_seg02_clip_13,a waitress 11442,He is holding a case file. ,He is holding a water bottle. ,He is holding a can of soda. ,He is holding a cup of coffee. ,He is holding a bag. ,3,What is Dr. Chase holding when he is following House around the hospital?,133481,House M.D.,68.65-70.44,house_s02e11_seg02_clip_13,He is holding a cup of coffee. 11443,She opens it. ,She tosses it aside. ,She tells Castle to open it instead. ,She tells Martha to open it instead. ,She leaves the apartment. ,0,What does Alexis do after she is handed an envelope?,133482,Castle,43.42-52.56,castle_s04e03_seg02_clip_00,She opens it. 11444,A bottle of mustard.,A bottle of ketchup.,The TV remote.,A book.,A pen.,0,What does Ross have in his hand when he throws his coat off?,133483,Friends,36.29-44.04,friends_s03e14_seg02_clip_15,A bottle of mustard. 11445,A telescope. ,A table.,A robot.,A couch.,A laptop.,4,"What is in Leonard's hands when he tells Howard and Raj, ""almost there""?",133484,The Big Bang Theory,12.29-18.43,s04e01_seg02_clip_15,A laptop. 11446,Penny frowns.,Penny runs to Leonard,Penny hugs Amy.,Penny smiles at Bernadette.,Penny runs to Sheldon.,0,What does Penny do after Howard yells at his mother?,133485,The Big Bang Theory,12.83-16.82,s05e24_seg02_clip_11,Penny frowns. 11447,How she can make Leonard like her.,What Leonard really thinks of her.,How light bulbs work.,What is physics.,What exactly Leonard does.,4,What does Penny want to know after she puts her notebook do?,133486,The Big Bang Theory,26.11-31.81,s03e10_seg02_clip_14,What exactly Leonard does. 11448,Joey playfully blamed Ross.,Joey playfully blamed Rachel's mother.,Joey playfully blamed Monica.,Joey playfully blamed the baby.,Joey playfully blamed Chandler.,0,Who did Joey playfully blame when Rachel had to leave?,133487,Friends,11.43-37.89,friends_s08e07_seg02_clip_12,Joey playfully blamed Ross. 11449,Joe Sanka broke Tyson's jaw.,Jinhai Li Change broke Tyson's jaw.,Tim Soev broke Tyson's jaw.,Tim Joshua broke Tyson's jaw.,James Scott broke Tyson's jaw.,1,Who does Castle saw broke Tyson's jaw when Tyson was in a fight at Sing Sing?,133488,Castle,0.89-15.13,castle_s04e04_seg02_clip_16,Jinhai Li Change broke Tyson's jaw. 11450,using a megaphone,Using fishing poles,using a ball,using a bat,Using chopsticks,4,How does Joey plan to poke the ugly naked man when he goes to his apartment for supplies?,133489,Friends,48.98-60.48,friends_s03e08_seg02_clip_11,Using chopsticks 11451,Catwoman.,Raj.,Batman.,The Riddler,Stuart.,3,Who presents the team with their next riddle after Amy hits Howard?,133490,The Big Bang Theory,35.17-49.07,s07e03_seg02_clip_07,The Riddler 11452,Perfume is all over the book.,Shampoo is all over a book.,Pop is all over a book.,Writing is all over a book.,Chocolate is all over a book.,1,What is all over a book when Ross pulls it out of a bag ?,133491,Friends,27.16-32.96,friends_s10e01_seg02_clip_20,Shampoo is all over a book. 11453,She started sneezing.,She started coughing.,She introduced Ted to her fiance'.,She started walking away.,She started singing. ,2,What did Cathy do after she started talking to Ted on the street?,133492,How I Met You Mother,29.29-38.9,met_s03e08_seg02_clip_18,She introduced Ted to her fiance'. 11454,A nasty person.,A child abuser. ,A closeted Marlboro Man.,A saint. ,He does not say anything about the young girl's father. ,2,[What/...] does House accuse the young girl's dad of being [when/] discussing her symptoms with Chase and Cameron?,133493,House M.D.,44.82-51.78,house_s03e19_seg02_clip_05,A closeted Marlboro Man. 11455,he was dressed as an alien,he was dressed as a potatoe,he was dressed as a fruit,he was dressed as a monkey,he was dressed as a doodie,1,What did Ross come dressed as when he arrived at Monica's apartment?,133494,Friends,18.3-24.79,friends_s08e06_seg02_clip_04,he was dressed as a potatoe 11456,It's the highest rated one on the market.,It's the most expensive one.,It's guaranteed.,It is the one his parents used.,It has rave reviews on the internet.,0,Why did Raj say he wouldn't call the crib a crib when talking to Bernadette?,133495,The Big Bang Theory,32.2-40.32,s10e06_seg02_clip_04,It's the highest rated one on the market. 11457,Chandler's mom.,Joey.,Phoebe.,Chandler's dad.,Rachels' dad.,0,Who did Rachel want to watch on the Tonight Show with Jay Leno when she turned up the TV?,133496,Friends,36.26-51.07,friends_s01e11_seg02_clip_01,Chandler's mom. 11458,5,1,3,2,4,3,How many pillows is Sheldon using when he is lying in bed? ,133497,The Big Bang Theory,28.87-38.74,s10e01_seg01_clip_01,2 11459,Leonard is chewing.,Leonard is drinking.,Leonard is speaking.,Leonard is cooking.,Leonard is studying.,0,What is doing Leonard when Dr. Gablehouser is talking?,133498,The Big Bang Theory,0-61.22,s01e12_seg01_clip_00,Leonard is chewing. 11460,Joey's shoes,Joey's towel,Joey's pants,Joey's shirt.,Joey's glasses. ,2,What did Charlton Heston tell Joey to take before Joey left his dressing room?,133499,Friends,49.82-60.03,friends_s04e14_seg02_clip_14,Joey's pants 11461,Dr. House tells the patient she will make a full recovery.,Dr. House tells the patient she needs a heart transplant.,Dr. House tells the patient she is dying.,Dr. House tells the patient everything is going to be okay.,Dr. House says something insulting to the patient.,1,What did Dr. House say to the patient when he entered the room?,133500,House M.D.,75.7-83.87,house_s01e14_seg02_clip_15,Dr. House tells the patient she needs a heart transplant. 11462,lonely,bored,happy,anxious,tired,2,How did Beverley feel when she drank some drinks with Penny?,133501,The Big Bang Theory,0-32.65,s03e11_seg02_clip_12,happy 11463,A stroke test,A MRI,A Xray,A sonogram,A reflex test,3,What test is Chase performing when Foreman is talking to the patient?,133502,House M.D.,28.75-34.78,house_s01e03_seg02_clip_01,A sonogram 11464,angry,happy,irritated,sad,hurt,3,How did Penny feel when she had to quiz the guys on a Saturday?,133503,The Big Bang Theory,12.17-29.8,s01e13_seg02_clip_01,sad 11465,An evening gown.,A blue sweater.,A green sweater.,Pajamas.,A pink sweater.,4,What is Monica wearing when the scene begins?,133504,Friends,0-2.14,friends_s03e04_seg02_clip_06,A pink sweater. 11466,Scratches his ear.,Takes a bite of a sandwich.,Walks to the computer.,Touches Lily's arm.,Sits on the couch.,2,What does Marshall do before he starts talking?,133505,How I Met You Mother,4.03-13.96,met_s03e08_seg02_clip_00,Walks to the computer. 11467,Rachel's blouse is green,Rachel's blouse is red,Rachel's blouse is purple,Rachel's blouse is black,Rachel's blouse is orange,3,What color is Rachel's blouse when Phoebe is talking about the lady in her head,133506,Friends,0-11.08,friends_s02e11_seg02_clip_05,Rachel's blouse is black 11468,Emily was a witch.,Rachel kept hitting him.,Ross was excited since there was a deer just outside eating fruit from the orchard.,There was a deer just outside eating fruit from the orchard.,Ross went out with Emily to see a deer just outside eating fruit from the orchard,1,Why is Chandler annoyed after Ross said that Emily was a different person?,133507,Friends,26.27-37.48,friends_s04e14_seg02_clip_08,Rachel kept hitting him. 11469,Valentine's Day,Columbus' Day,Arbor Day,Thanksgiving,Box Day,3,What holiday does Castle's family dress up for after naming the baby?,133508,Castle,68.9-73.4,castle_s06e10_seg02_clip_04,Thanksgiving 11470,Trying to convince him pay for his tab at the bar.,Trying to convince him to order more food.,Trying to convince him spend the night at his house.,Trying to convince him to cheat on his girlfriend.,Trying to convince him leave the bar right away.,3,What was Barney trying to convince Marshall to do before telling him he couldn't?,133509,How I Met You Mother,26.23-44.03,met_s03e05_seg02_clip_14,Trying to convince him to cheat on his girlfriend. 11471,"Meredith, Izzie and Christina.",Family members of a patient he just operated on.,Georges family.,Doctors congratulating him on a job well done.,Several police officers.,4,Who is standing around George shaking his hand when Alex leaves the room after looking back a George?,133510,Grey's Anatomy,70.76-88.58,grey_s02e05_seg02_clip_18,Several police officers. 11472,Anya faked her death,Anya hid,Anya provided false info,Anya lied to the russian government,Anya never got rid of sergei,0,How does beckett think anya got sergei off her trail when talking to sergei about anyas motive?,133511,Castle,50.44-55.44,castle_s08e11_seg02_clip_23,Anya faked her death 11473,20,10,5,100,1,3,How many dollars does Lilly throw on stage after seeing her stripper self?,133512,How I Met You Mother,10.5-30.61,met_s05e02_seg02_clip_16,100 11474,Beckett is returning from vacation,Beckett has been promoted,Simmons has been murdered,Simmons has fled the country,Gates is being transferred,2,Why is Beckett being put back on the case after getting off the phone with Castle?,133513,Castle,23.59-28.49,castle_s06e22_seg02_clip_07,Simmons has been murdered 11475,Castle erased the board.,Beckett answered the phone.,Ryan walked up.,Castle looked at his watch.,Beckett put up a photo on the board.,2,What happened after Castle talked about Beckett identifying who met Paul at the park?,133514,Castle,36.32-43.59,castle_s07e08_seg02_clip_02,Ryan walked up. 11476,Leonard didn't feel Balderdash was offensive and that both of them were correct,Leonard didn't understand what they were discussing,Leonard wasn't listening to them,Leonard fell asleep,Leonard felt only Sheldon was correct.,0,Why is Leonard confused when Lesley ask why he isn't defending her,133515,The Big Bang Theory,40.12-61.72,s02e02_seg02_clip_15,Leonard didn't feel Balderdash was offensive and that both of them were correct 11477,Joey. ,Rachel. ,Ross. ,Chandler. ,Monica. ,3,Who walks into the apartment when Phoebe is on the phone with Joey?,133516,Friends,36.67-38.45,friends_s05e22_seg02_clip_15,Chandler. 11478,A radio,A phone,Pens,Papers,Cuffs,4,What's in the bag that Beckett showed Tyler when they were talking?,133517,Castle,18.92-24.78,castle_s02e16_seg02_clip_05,Cuffs 11479,Joey's place. ,On the couch. ,In bed. ,At the coffee shop. ,On a train. ,4,Where is Ross when he falls asleep?,133518,Friends,50.42-54.27,friends_s04e10_seg02_clip_15,On a train. 11480,In her apartment,A phone booth,In a warehouse,Underwater ,At a cafe,1,Where is the killer when he is calling Beckett?,133519,Castle,48.31-57.06,castle_s02e17_seg02_clip_14,A phone booth 11481,The break room.,The playground. ,The bathroom.,The office.,A car.,2,Where were Foreman and House talking when they were alone?,133520,House M.D.,45.09-59.82,house_s04e05_seg02_clip_16,The bathroom. 11482,for infants,for nobody,For people with ADD,for kids,for grand parents ,2,What did Lanie say the drug was useful for when she was describing it to Castle? ,133521,Castle,0-15.09,castle_s02e03_seg02_clip_08,For people with ADD 11483,Monica is having a Bread tournament.,Monica is having a Beetle tournament.,Monica is having a Bangle tournament.,Monica is having a Boot tournament.,Monica is having a Boggle tournament.,4,What kind of tournament is Monica having when she is telling people to be quiet?,133522,Friends,53.02-59.57,friends_s02e22_seg02_clip_13,Monica is having a Boggle tournament. 11484,Spinning ball.,Decking ball.,Power ball.,Fire ball.,Wrecking ball.,4,"What did Marshall say rhymes with ""beck and call"" after the Chairman said it's killing him?",133523,How I Met You Mother,30.98-37,met_s06e23_seg01_clip_01,Wrecking ball. 11485,Amy is upset with Priya.,Amy is upset with Raj.,Amy is upset with Penny.,Amy is upset with Leonard.,Amy is upset with Stuart.,2,Who is Amy upset with when she is talking to Leonard?,133524,The Big Bang Theory,30.82-43.63,s09e21_seg02_clip_10,Amy is upset with Penny. 11486,Castle falls into a hidden compartment,the desk disappears ,A secret compartment spits out a gun,a trapped door appears,nothing happens,2,What happens when castle hits his desk?,133525,Castle,35.91-43,castle_s08e01_seg02_clip_03,A secret compartment spits out a gun 11487,A drink.,A loaf of bread.,A basket.,A sandwich.,A cat.,0,What was Raj carrying when he walked up to Leonard?,133526,The Big Bang Theory,4.42-9.37,s05e24_seg02_clip_04,A drink. 11488,A piece of cloth.,A silver watch.,A glove.,A gold ring.,His hand has nothing on it.,3,What was Cole wearing on his left hand when he was touching his lips?,133527,House M.D.,0-9.24,house_s04e04_seg02_clip_04,A gold ring. 11489,In front of the kitchen sink.,Behind the Counter near the refrigerator.,Behind Castle.,Near the end of the counter facing Castle.,I the doorway.,3,Where was Beckett standing after she asked Castle if it was going to be okay?,133528,Castle,81.72-89.8,castle_s05e22_seg02_clip_08,Near the end of the counter facing Castle. 11490,He picks up a pencil. ,He picks up his wallet. ,He picks up a quarter. ,He picks up a piece of breafd. ,He pulls up his zipper. ,4,What does Chandler do after he looks down?,133529,Friends,43.82-50.12,friends_s01e14_seg02_clip_06,He pulls up his zipper. 11491,jealous,bored,tired,angry,excited,4,How did Leonard feel when he told his friends about his idea?,133530,The Big Bang Theory,0-26.31,s04e12_seg01_clip_01,excited 11492,a woman ,a dog,a man in a suite,a child,a man with no shoes,2,who did phoebe meet when walking out the door,133531,Friends,32.71-39.92,friends_s09e05_seg02_clip_02,a man in a suite 11493,a book,a note,a file,a movie ,a napkin ,1,What did House hand over to father when he walked into his patient room?,133532,House M.D.,71.54-75.38,house_s03e21_seg02_clip_20,a note 11494,Raj wanted to be Sherlock Holmes.,Bernadette said Sherlock Holmes came first. ,Penny said she wanted to be just like Sherlock Holmes.,Sheldon wanted to be like Sherlock Holmes.,Amy said according to Wikipedia that Sherlock Holmes came first.,4,"Who did Amy say came first after looking on Wikipedia, Byomkesh Bakshi or Sherlock Holmes?",133533,The Big Bang Theory,0-56.75,s07e18_seg02_clip_00,Amy said according to Wikipedia that Sherlock Holmes came first. 11495,Dr. Burke got a promotion instead of Cristina,Cristina messed up some files,Dr. Burke wants a relationship with Cristina's friend,They used to be involved,Cristina was rude to Dr. Burke about his professionalism,3,Why is there tension between Dr. Burke and Cristina when they are at the hospital?,133534,Grey's Anatomy,65.72-88.67,grey_s02e04_seg02_clip_12,They used to be involved 11496,Rachel suggest going to the doctor.,Rachel suggests having manis and pedis.,Rachel suggests taking a rectal temperature.,Rachel suggest they call for a cab.,Rachel suggests she call Ross.,2,What does Rachel suggest after rejects the idea she has a fever?,133535,Friends,48.5-53.95,friends_s04e05_seg02_clip_17,Rachel suggests taking a rectal temperature. 11497,Rachel received a 100 dollar gift card for Babys R Us.,Rachel received the trophy by itself.,Rachel received one thousand dollars.,Rachel received a 100 dollar gift card for Toys R Us.,Rachel received a baby clothing gift set.,2,What did Rachel receive when Emma won the beauty contest?,133536,Friends,0-44.86,friends_s10e08_seg02_clip_08,Rachel received one thousand dollars. 11498,White and yellow,Black and white,Blue and red,A red and white tie.,A rainbow,3,What color tie is Chandler wearing when he is about to fire Nina?,133537,Friends,36.32-38.96,friends_s01e16-17_seg02_clip_09,A red and white tie. 11499,She did nothing to her hair.,She took her clips out and put it in a ponytail.,She took her clips out and put it in a bun.,She took out her hair extentions.,She took her clips out and combed it with her fingers.,4,What did Beth do with her hair after she took her glasses off?,133538,The Big Bang Theory,42.58-52.38,s03e11_seg02_clip_13,She took her clips out and combed it with her fingers. 11500,wooden truck,toy train,stuff animal,plastic boat,toy solider,2,What did one of the twin boys have in their hands before they left the hospital?,133539,House M.D.,99.37-114.09,house_s05e08_seg02_clip_24,stuff animal 11501,She is frustrated because the elevator is still broke,She is frustrated because someone took her tips at work,She is frustrated because the uber driver wouldn't stop flirting,She is frustrated because Sheldon changed the wi-fi password,She is frustrated because she doesn't have any food in her apartment,3,Why is Penny frustrated after she enters Sheldon and Leonard's apartment,133540,The Big Bang Theory,0-13.86,s05e11_seg01_clip_00,She is frustrated because Sheldon changed the wi-fi password 11502,Brunch,A quickie upstairs,The disposable cameras from the tables,Getting a puppy,Jumping in a fountain.,2,What does Chandler present as a last ditch effort to cheer Monica up after they leave the front desk?,133541,Friends,59.25-61.1,friends_s08e02_seg01_clip_00,The disposable cameras from the tables 11503,Jansen hold hands with Beckett,Jansen rub his hands,Jansen get coffee,Jansen open the computer,Jansen did nothing,3,What did Jansen do before talking to M.I.R.A?,133542,Castle,42.15-48.43,castle_s07e16_seg02_clip_20,Jansen open the computer 11504,"He sits down and says,""What?""",He leaves,He laughs and leaves,He tells Foreman to go away,He calls Wilson,1,What does House do after Foreman tells him he'd like to talk about something personal?,133543,House M.D.,13.92-27.37,house_s03e15_seg02_clip_15,He leaves 11505,tying her shoes ,buttoning her blouse ,her makeup ,eating pizza ,blowing her nose ,1,What is Penny doing when Leonard opens the door for Howard? ,133544,The Big Bang Theory,13.72-17.89,s07e04_seg02_clip_09,buttoning her blouse 11506,Superman.,Batman.,Cyborg.,Professor Xavier ,Thor,0,Who Sheldon ask Zack to be after Zack shows off his Archie comics?,133545,The Big Bang Theory,2.75-19.22,s04e11_seg02_clip_05,Superman. 11507,Key West,Jamaica ,Mexico,Spain,Aruba,4,Where does Rachel say she was supposed to go for her honeymoon when talking to Ross?,133546,Friends,49.42-53.94,friends_s01e01_seg02_clip_09,Aruba 11508,"Beckett, Ryan, and Esposito are at the Fire department","Beckett, Ryan, and Esposito are at a restaurant","Beckett, Ryan, and Esposito are at a gym","Beckett, Ryan, and Esposito are at the police department","Beckett, Ryan, and Esposito are at the lake",3,"Where is Beckett, Ryan, and Esposito at when they are talking?",133547,Castle,0-13.67,castle_s08e13_seg02_clip_16,"Beckett, Ryan, and Esposito are at the police department" 11509,A toy Train.,A toy robot.,Train Tracks.,A remote for a train.,A toaster. ,0,What is Sheldon holding when he asks if Howard can take a look at it?,133548,The Big Bang Theory,37.96-41.61,s08e22_seg02_clip_09,A toy Train. 11510,They make fun of the idea of working together again.,They call each other on their phones to make arrangements to work together.,They dance with unity in front of Vasily.,They burst with laughter. ,They imitate and mock Vasily.,1,What hilarious thing does Castle and Beckett do after Vasily expresses disappointment because they're no longer working together?,133549,Castle,46.21-69.1,castle_s08e11_seg02_clip_09,They call each other on their phones to make arrangements to work together. 11511,Shrugged,Told Monica to check,Threw the phone away,Ran over to check them,Walked away,3,What did Chandler do after he noticed there were message on the machine?,133550,Friends,14.5-24.16,friends_s09e18_seg02_clip_11,Ran over to check them 11512,He was laughing.,He was sleep.,He was crying.,Barney was sitting on the sofa with the computer in his lap,He was looking up.,3,What was Barney doing before Ted walked in?,133551,How I Met You Mother,4.3-61.38,met_s05e05_seg02_clip_00,Barney was sitting on the sofa with the computer in his lap 11513,Mandy. ,Derek.,Ryan.,Esposito.,Beckett.,4,"Who says that Castle watches too many infomercials when Castle says ""cash-n-gold""?",133552,Castle,37.21-41.4,castle_s03e07_seg02_clip_19,Beckett. 11514,a pipe,a rod,a stick,a utensil,piece of wood,3,what does sylvia have sticking out of her neck when she is at the hospital?,133553,Grey's Anatomy,13.2-22.89,grey_s02e20_seg02_clip_03,a utensil 11515,His sob story.,How good he was.,That he's a hero.,The details of the man's life.,The kids.,4,What did Izzie tell Vince she didn't need to hear about when he told her Rick had five kids?,133554,Grey's Anatomy,54.13-59.42,grey_s03e15_seg02_clip_23,The kids. 11516,Joey goes to the barber,Joey goes to school,Joey goes to the store,Joey goes to a restaurant,Joey goes to his talent manager,4,Where does Joey go after Ross leaves the apartment?,133555,Friends,28.05-53.58,friends_s06e04_seg02_clip_05,Joey goes to his talent manager 11517,Hospital bed,Chair,At home,Doctor's office,On the floor,0,Where is the boy when Foreman gives him a shot?,133556,House M.D.,47.39-57.06,house_s03e23_seg02_clip_14,Hospital bed 11518,Stuart walks in.,Phoebe walks in.,Janice walks in.,Richard walks in.,Chandler walks in.,3,Who walks into the kitchen when Monica is at work?,133557,Friends,41.13-46.88,friends_s06e24-25_seg02_clip_20,Richard walks in. 11519,When Raj coming back home,Careers ,Raj dating white women,The money that they send Raj,Bernadette not liking babies,4,What were they talking about when Dr. Koothraplli was on the phone?,133558,The Big Bang Theory,0-33.01,s10e03_seg02_clip_16,Bernadette not liking babies 11520,Lab equipment.,A messenger bag.,His glasses.,A water bottle.,Papers.,4,What did Leonard place on the table before he walked to the board?,133559,The Big Bang Theory,51.57-56.76,s10e03_seg02_clip_12,Papers. 11521,A socialite from Long Island.,Sam's long lost sister.,Sam's doctor.,A flirty engineer named Laura.,A police detective.,3,Who was Sarah pretending to be before Sam died?,133560,Castle,0-20.25,castle_s02e10_seg02_clip_24,A flirty engineer named Laura. 11522,It was the only way to leave her family. ,It was the only way to get Billy to leave her alone. ,It was the only way to get her life back. ,It was the only way to save herself from herself. ,It was the only way to get to meet Castle. ,2,What reason does Leann give for pretending to die when she is asked about it?,133561,Castle,82.38-83.74,castle_s05e10_seg02_clip_24,It was the only way to get her life back. 11523,For the pie.,For coming by.,For bringing him cookies.,For offering to help him.,For giving him a ride.,1,"Why did Bert thank Penny, and Amy when they were in the doorway?",133562,The Big Bang Theory,1.54-6.16,s10e03_seg02_clip_15,For coming by. 11524,He took his pills.,He stood up.,He drank some tea.,He entered the car .,He made a phone call.,3,What did Alvie do before he said something about book to return?,133563,House M.D.,72.5-81.63,house_s06e20_seg02_clip_19,He entered the car . 11525,yelled at her,walked away,Danced with her,cried ,took a drink,2,What did Ross do after Gert asked him to dance?,133564,Friends,17.99-22.33,friends_s08e01_seg02_clip_18,Danced with her 11526,Phoebe's boyfriend says he is leaving to pay his bills.,Phoebe's boyfriend says he is leaving to get some food at the grocery store.,Phoebe's boyfriend says he is leaving to fill his car with gas.,Phoebe's boyfriend says he is leaving to get more clothes from home.,Phoebe's boyfriend says he is leaving to buy some new clothes.,3,Why does Phoebe's boyfriend say he is leaving after they finish watching TV?,133565,Friends,33.94-59.03,friends_s09e16_seg02_clip_01,Phoebe's boyfriend says he is leaving to get more clothes from home. 11527,Joey,Phoebe,Chandler,Ross,Janice ,1,Who interrupts Monica and Rachel's fight after they walk in and begin playing music?,133566,Friends,49.3-56.02,friends_s07e01_seg02_clip_16,Phoebe 11528,After Ike's mistress.,After Ike.,After Ike's parents.,After Ike's friend.,After Ike's wife and kid.,4,How is Racine going after Ike after he finds out Ike is going after the ledger?,133567,Castle,23.01-31.57,castle_s02e21_seg02_clip_17,After Ike's wife and kid. 11529,Patient 34986.,Patient 12387.,Patient 98756,Denny. ,Jane Doe.,0,Who did Richard say died last month when he was addressing everyone in the lecture hall?,133568,Grey's Anatomy,16.75-23.55,grey_s03e05_seg02_clip_03,Patient 34986. 11530,Talking to Rachel.,Looking in a magazine.,Talking to the chick.,Talking to Joey.,Talking to Phoebe. ,2,What is Chandler doing when he is talking about Yasmine Bleeth?,133569,Friends,4.33-5.95,friends_s03e21_seg02_clip_16,Talking to the chick. 11531,Priya and Leonard are sitting across from Sheldon.,Amy and Leonard are sitting across from Sheldon.,Penny and Amy are sitting across from Sheldon.,Penny and Leonard are sitting across from Sheldon.,Penny and Priya are sitting across from Sheldon.,3,Who is sitting across from Sheldon when he is eating in his and Leonard's kitchen?,133570,The Big Bang Theory,34.12-42.66,s09e10_seg02_clip_11,Penny and Leonard are sitting across from Sheldon. 11532,They lose clarity. ,They lose direction. ,They lose equilibrium. ,They lose muscle tone. ,They lose focus. ,3,What does Howard say astronauts lose when they are in space?,133571,The Big Bang Theory,30.66-33.67,s06e04_seg02_clip_01,They lose muscle tone. 11533,I will have Wilson get on it,Sure thing doll,Where can i find him,Why wont you tell him,It would be meaningless ,4,How did House respond after Cuddy said to tell who ever she was referring to he feels like crap? ,133572,House M.D.,0-6.75,house_s05e01_seg02_clip_11,It would be meaningless 11534,Chandler was making circle motions with his hands as he moved around.,Chandler kicked Phoebe out of the apartment,Chandler slap Phoebe,Chandler hug Phoebe,Chandler left the room,0,What did Chandler do when he told Phoebe to go with her instinct?,133573,Friends,11.56-15.77,friends_s04e14_seg02_clip_19,Chandler was making circle motions with his hands as he moved around. 11535,House didn't know what 13 was talking about,13 misunderstood what House had been asking,House wanted 13 to get to the point faster,The temperature 13 reported was incorrect,13 was talking about the wrong patient,1,Why did House interrupt 13 after she reported about the fever?,133574,House M.D.,0-14.24,house_s04e05_seg02_clip_22,13 misunderstood what House had been asking 11536,Slept for three days straight.,Through a huge party.,Cried for days.,Hugged his dog for an hour.,Stayed in his room for a week.,4,What did Castle do when John Lennon died?,133575,Castle,22.03-30.41,castle_s02e07_seg02_clip_22,Stayed in his room for a week. 11537,21,Timeless,Over 50,Ageless,Old enough,3,What is the first answer Martha gives Alexis when she asks what age to enter in her profile?,133576,Castle,54.72-65.95,castle_s02e08_seg02_clip_00,Ageless 11538,he is holding a cellphone,he is holding a new cane,he is holding a package,he is holding a mirror,he isn't holding anything,1,What does House have in his hand when Camreon notices it as he is standing at her doorway?,133577,House M.D.,31.01-39.67,house_s01e19_seg02_clip_00,he is holding a new cane 11539,The killer may not have a motive.,The killer may not be real,It might have been a training accident,Beckett could have saved her.,Maybe Esposito killed her,0,What does Castle suggest after Esposito fills him and Beckett in?,133578,Castle,19.36-30.61,castle_s04e09_seg02_clip_02,The killer may not have a motive. 11540,Because Meredith is her niece. ,Because Meredith is her daughter. ,Because Meredith is her cousin. ,Because Meredith is her step daughter. ,Because Meredith is her adopted daughter. ,1,Why is it important that Ellis know who Meredith is when she is talking to Richard?,133579,Grey's Anatomy,0.81-13.69,grey_s03e14_seg02_clip_25,Because Meredith is her daughter. 11541,Janice's son will be taller,Janice's son will have a different nose,Janice's son will not smell so bad,Janice's son will be a lot quieter,Janice's son will have a nice job,1,What does Janice say will be different about her son when he is old enough to date Rachel's daughter?,133580,Friends,6.7-13.4,friends_s08e23-24_seg02_clip_40,Janice's son will have a different nose 11542,See you later.,Good luck then.,Do you want some help?,I'm sure you'll do fine.,Where is the audition?,2,What does Ross say after Joey tells him his audition is in a couple of hours?,133581,Friends,46.77-55.82,friends_s08e20_seg02_clip_00,Do you want some help? 11543,Hayley was buying cocaine.,Hayley was buying some drugs.,Hayley was buying a new car.,Hayley was buying a gun.,Hayley was buying counterfeited dollar bills.,3,What do Beckett and Castle discover Hayley was actually buying after speaking with Tony?,133582,Castle,64.63-84.2,castle_s02e07_seg02_clip_10,Hayley was buying a gun. 11544,A phone. ,Water. ,His pants. ,His knife. ,A pencil. ,3,What did the patient lying in bed ask for back when House was leaving the room? ,133583,House M.D.,22.15-28.85,house_s04e03_seg02_clip_10,His knife. 11545,Because they wanted him to do them a favor.,Because they suspected that he was selling drugs.,Because they wanted to talk to him about a business offer.,Because they suspected that he had commited a murder.,Becuase they wanted to surprise him because of his birthday.,3,Why did the man with the green sweater got cot by the police after the three investigators where talking in the office?,133584,Castle,4.5-23.86,castle_s04e21_seg02_clip_13,Because they suspected that he had commited a murder. 11546,A bottle of water.,A glass of milk.,A glass of juice.,A cup of tea.,A sandwich.,2,What does Leonard take from the kitchen before walking back to his room and telling the guys they have nothing better to do than discuss giant ants?,133585,The Big Bang Theory,38.08-46.38,s03e19_seg02_clip_00,A glass of juice. 11547,Taub is monitoring the patient's machines,13 is monitoring the patient's machines,Chase is monitoring the patient's machines,Wilson is monitoring the patient's machines,Cameron is monitoring the patient's machines,1,Who is monitoring the patient's machines when her husband is sitting by her side,133586,House M.D.,54.08-63.7,house_s06e11_seg02_clip_24,13 is monitoring the patient's machines 11548,Pens,Name badge,Broach,Nothing,Cell phone,1,What was in Lanie's jacket pocket when she met up with Castle and Beckett?,133587,Castle,86.93-89.66,castle_s03e07_seg02_clip_00,Name badge 11549,Penny told Sheldon to calm down,Penny told Leonard to calm down,Penny told Raj to calm down,Penny told Howard to calm down,Penny told herself to calm down,0,Who did Penny tell to calm down when she went to go call the building manager?,133588,The Big Bang Theory,15.96-23.5,s02e21_seg02_clip_06,Penny told Sheldon to calm down 11550,Money,To be happy.,You,Trust,To hold hands.,2,What does Beckett say she wants when Castle opens the door?,133589,Castle,64.65-70.7,castle_s04e23_seg02_clip_25,You 11551,It became obvious he didn't care about hurting people's feelings.,It became obvious he didn't care about the environment.,It became obvious he didn't care about animals.,It became obvious he didn't care about money.,He disappeared.,1,What does Hastings say happened after a few weeks of knowing Garrett?,133590,Castle,17.1-30.16,castle_s06e05_seg02_clip_16,It became obvious he didn't care about the environment. 11552,A Santa Suit,A diamond ring,A baseball bat,A new Christmas tree,A pizza,4,What did Lily expect Ted to have after she opened the door?,133591,How I Met You Mother,11.13-18.75,met_s02e11_seg02_clip_10,A pizza 11553,He had been up two days straight.,Standing on lines makes him dizzy.,He had had too much to drink last night.,He was on cold medicine.,"He has ""performance anxiety""> ",4,Why did Howard say he had trouble walking a straight line when talking to Bernadette.,133592,The Big Bang Theory,5.12-16.01,s10e01_seg02_clip_02,"He has ""performance anxiety""> " 11554,Bollinger said he had an 18-point lead.,Bollinger said he had an 8-point lead.,Bollinger said he had an 2-point lead.,Bollinger said he had an 7-point lead.,Bollinger said he had an 13-point lead.,1,How much of a lead did Bollinger say he had on his opponent when talking to Beckett and Castle?,133593,Castle,0-3.6,castle_s01e03_seg02_clip_16,Bollinger said he had an 8-point lead. 11555,House takes a bottle of wine.,House takes a cup of coffee.,House takes a jar of candy.,House takes a cardboard box off the desk.,House takes a plate with food.,3,What does House take off a desk before spilling the contents?,133594,House M.D.,14.85-21.16,house_s04e11_seg02_clip_01,House takes a cardboard box off the desk. 11556,He laughed.,He cried.,He extended his hand for a handshake.,He ran.,He did nothing,2,What did Castle do when he couldn't kiss Beckett?,133595,Castle,70.35-93.15,castle_s05e03_seg02_clip_19,He extended his hand for a handshake. 11557,4,9,5,8,7,3,How many years does Foreman have of medical training after stating how the question was answered?,133596,House M.D.,22.3-25.94,house_s01e04_seg02_clip_06,8 11558,crutches ,ramp ,flip flops ,boxes,play car ,0,What did Esposito walk in to the police station on when Castle first notice him? ,133597,Castle,80.56-91.03,castle_s07e19_seg02_clip_07,crutches 11559,nothing,Pillow,chandler,ross,racheal,1,"What is Monica wearing when she say's ""I can't believe we've never done this.""?",133598,Friends,1-11.01,friends_s05e13_seg01_clip_00,Pillow 11560,The mysterious lady was sent to send him a message from the doctors.,The mysterious lady wasn't speaking in English.,The mysterious lady looked too rich to be there.,The mysterious lady was able to see the bleeding in his brain and warn him about it.,The mysterious lady was wearing $500 shoes.,4,How did House come to the conclusion after talking to the mysterious lady on the bus that she was part of his hallucination?,133599,House M.D.,39.17-47.09,house_s04e15_seg02_clip_08,The mysterious lady was wearing $500 shoes. 11561,A stethoscope,A pearl necklace,A scarf,A tie,Some bandages,1,What was around Cuddy's neck when she was talking to House?,133600,House M.D.,4.38-8.32,house_s01e02_seg02_clip_17,A pearl necklace 11562,"Rudolph, the Red-Nosed Reindeer",The Little Drummer Boy,Winter Wonderland,O Holy Night,God Rest Ye Merry Gentlemen,4,What was House singing when he walked into the lab?,133601,House M.D.,3.88-11.63,house_s04e10_seg02_clip_24,God Rest Ye Merry Gentlemen 11563,flower arrangement,bowl of candies,class yearbooks,bowl of chips,candles,0,what is at the center of the table that chandler is at before ross comes over?,133602,Friends,6.2-12.1,friends_s10e11_seg02_clip_15,flower arrangement 11564,Colen,Liver,Kidney,Heart,Lungs ,3,Which organ does House say has problems when discussing the patient's condition with Foreman Chase and Taub?,133603,House M.D.,10.92-19.57,house_s07e11_seg02_clip_13,Heart 11565,A week ago.,A month ago.,Two weeks ago.,Two months ago.,Three weeks ago.,0,When did Phoebe say Rachel broke up with Tag when they were talking about who gets the phone at the coffee shop?,133604,Friends,15.02-21.03,friends_s07e15_seg02_clip_01,A week ago. 11566,2,1,4,3,5,0,How many patients are wheeled through the door when House is watching outside the operating room?,133605,House M.D.,28.48-36.28,house_s03e07_seg02_clip_24,2 11567,To play chess.,To eat.,To sign papers,To read a book.,So Adams can show xray results.,4,Why did House sit on a chair after going into the office?,133606,House M.D.,37.84-46.01,house_s08e01_seg02_clip_15,So Adams can show xray results. 11568,In the morue cutting his fingernails,In the women bathroom.,In the male restroom in fornt of the urine stall.,In the front desk handling case files,In the Er van Riding shotgun.,2,Where is Doctor Burke before being recalled to due emergency heart surgery on John Doe?,133607,Grey's Anatomy,24.39-29.91,grey_s01e03_seg02_clip_09,In the male restroom in fornt of the urine stall. 11569,So he could go to Jewish heaven,So he could help him win the Nobel prize,Because he bought him lunch,Because Sheldon introduced Howard to Bernadette,Because he fixed his experiment,0,Why did Sheldon say Howard should do something nice for him when they were talking?,133608,The Big Bang Theory,22.58-30.52,s05e21_seg02_clip_00,So he could go to Jewish heaven 11570,She talks about her sex life plus the last time she had sex.,She says she is a slut.,She says nothinhing at all but continues to eat.,"She says ""I'm not touching that.""",She says she does not like to have sex and does not like men.,3,"What does the girl say after Leslie said ""hmmm testify""?",133609,The Big Bang Theory,23.19-61.02,s02e03_seg02_clip_12,"She says ""I'm not touching that.""" 11571,She sits down,She takes off her jacket,She hangs up her jacket,She puts down her jacket.,She asks for a drink,3,What does Beckett do before telling Castle that they have to talk?,133610,Castle,5-13.32,castle_s06e14_seg02_clip_26,She puts down her jacket. 11572,He has to go meet a friend at the bar.,One of the life guards was about to run off with his girlfriend.,His roommate needs his help.,One of the life guards was just about to dismantle a nuclear device. ,He has to go watch the football game with his friends. ,3,Why does Chandler say he needs to leave when he's hugging Monica?,133611,Friends,16.55-22.83,friends_s03e06_seg02_clip_18,One of the life guards was just about to dismantle a nuclear device. 11573,Den,Storage,Office,Workshop,Living Room,3,How did Ryan describe the room when he was talking to Esposito?,133612,Castle,40.46-52.15,castle_s06e11_seg02_clip_10,Workshop 11574,Taking Stella to a movie.,Handing her flowers.,Buying her chocolates.,The goodnight kiss.,Carrying Stella over the threshold.,3,What does Ted almost have to skip after his date?,133613,How I Met You Mother,16.4-39.51,met_s03e13_seg02_clip_17,The goodnight kiss. 11575,The phone,Her clothes,The Candle,The blankets,Ethan's clothes,2,What does Monica pick up after she gets out of bed?,133614,Friends,65.64-68.02,friends_s01e22_seg02_clip_10,The Candle 11576,She runs over to Rachel,She smiles,She busies herself in the kitchen,She comes inside from the balcony,She looks angry,1,How does Monica react when Rachel picks up the phone?,133615,Friends,23.85-31.4,friends_s02e08_seg02_clip_19,She smiles 11577,House was playing music with Wilson.,House was playing cards with Wilson.,House was playing video games with Wilson.,House was playing Foosball with Wilson.,House was playing Monopoly with Wilson.,3,What was House playing with Wilson when Wilson asked about House's judgement?,133616,House M.D.,49.51-53.56,house_s02e14_seg02_clip_07,House was playing Foosball with Wilson. 11578,gorgeous model type,high maintenance beauty queen,all about the job,stubborn and smart,"smart, compllicated detective",4,How did Castle describe the character of Nikki Heat when he was describing her?,133617,Castle,0-9.67,castle_s03e11_seg02_clip_00,"smart, compllicated detective" 11579,Alexis knows Captain Max.,Alexis is role-playing an assassin.,Alexis is near the crime scene.,Alexis is scantily dressed.,Alexis is about to meet Anabelle.,3,Why is Castle so surprised when he sees Alexis?,133618,Castle,31.22-43.71,castle_s05e06_seg02_clip_09,Alexis is scantily dressed. 11580,Castle says he didn't go out with Serena because he was no longer interested in her.,Castle says he didn't go out with Serena because he lost his wallet.,Castle says he didn't go out with Serena because he would rather have burgers with Beckett.,Castle says he didn't go out with Serena because he couldn't afford the bill the museum sent him.,Castle says he didn't go out with Serena because he's tired and wants to see his daughter.,3,Why does Castle tell Beckett he didn't go out with Serena after she comes from the file room?,133619,Castle,58.77-71.46,castle_s04e05_seg02_clip_26,Castle says he didn't go out with Serena because he couldn't afford the bill the museum sent him. 11581,Ross.,Chandler.,Monica.,Phoebe.,Tag.,4,Who did Joey say was still talking to the police when Rachel came into the apartment?,133620,Friends,34.98-39.71,friends_s07e08_seg02_clip_16,Tag. 11582,Taking a bath,Eating,Watching TV,Cooking,Kissing,4,What are Leonard and Penny doing when Sheldon knocks on their door?,133621,The Big Bang Theory,41.2-44.68,s03e01_seg02_clip_02,Kissing 11583,So Marshall couldn't send them anymore videos.,Because they were getting too much spam.,Because they were hacked.,Because they hate their friends.,Because they wanted be more secretive.,0,Why did Robin and Barney change their email addresses after seeing Marshall's video?,133622,How I Met You Mother,33.97-39.87,met_s05e04_seg02_clip_02,So Marshall couldn't send them anymore videos. 11584,Playing a video game,Eating,Watching TV,Holding a Necklace,Knitting,3,"What are Howard, Raj, and Sheldon doing when they are talking on the couch?",133623,The Big Bang Theory,7.41-15.11,s03e17_seg02_clip_13,Holding a Necklace 11585,handcuffs on her wrist ,a gun ,her watch ,castles wallet ,Esposito's haircut ,2,What does Sofia look at when Castle and Esposito ate talking at the precinct? ,133624,Castle,44.93-49.02,castle_s07e12_seg02_clip_23,her watch 11586,Ignores the call,Answers the call,Throws the phone to House,Throws his phone out his window,He doesn't get a call,2,What does Wilson do when he gets a phone call?,133625,House M.D.,67.62-75.85,house_s05e04_seg02_clip_10,Throws the phone to House 11587,penny and leonard are standing in the living room,penny and leonard are standing in the bedroom,penny and leonard are standing in the bathroom.,penny and leonard are standing in the hallway,penny and leonard are standing in the elevator,0,where are penny and leonard standing when they're talking?,133626,The Big Bang Theory,0-4.56,s08e22_seg02_clip_09,penny and leonard are standing in the living room 11588,she was talking to Neil,she was talking to Parker,she was talking to Tyrome,she was talking to Pete,she was talking to Shawn,3,who was talking to Monica when she was standing in front of the desk?,133627,Friends,0-16.99,friends_s03e23_seg02_clip_08,she was talking to Pete 11589,Raj sat on Howard's lap.,Raj rubbed Howard's back.,Raj rubbed Howard's feet.,Raj rubbed Howard's head.,Raj rubbed Howard's belly.,4,Why did Howard tell Bernadette he thought of her the whole time after what Raj said he did?,133628,The Big Bang Theory,20.36-59.02,s07e10_seg02_clip_05,Raj rubbed Howard's belly. 11590,Ross is a model.,Ross is embarrassed.,Ross hates libraries.,Ross works on a food truck.,Ross works at a museum. ,4,Why is Ross annoyed when Dr. Greene says he works at a library?,133629,Friends,32.46-40.02,friends_s03e07_seg02_clip_08,Ross works at a museum. 11591,Chocolate,Cows,Internet dating sites,Pac Man,Pizza with Pineapple,1,What did the patient tell House he loves when he was sitting on the exam table?,133630,House M.D.,49.25-56.48,house_s02e14_seg02_clip_02,Cows 11592,A phone,A book,A cup,A knife,A jacket,2,What did Ali have in her hand when she noticed Chase behind her?,133631,House M.D.,13.95-20.26,house_s07e10_seg02_clip_24,A cup 11593,House opens the shades on the window.,House cries and rolls on the floor hysterically.,House runs to the bathroom on the plane to vomit.,House dances with Cuddy to house music.,House orders a bourbon and coke from the flight attendant.,0,What does House do after raising Cuddy's seat upright?,133632,House M.D.,7.58-11.57,house_s03e18_seg02_clip_19,House opens the shades on the window. 11594,A new couch,A dog,A cat,A new house,A volvo,4,What does Joey say Monica and Chandler can get if they really want after they enter the coffee shop?,133633,Friends,31.28-37.78,friends_s07e21_seg02_clip_18,A volvo 11595,The ICU,Pediatrics,Surgery,The lobby,Cardiac,0,What department does Masters walk into after her conversation with House?,133634,House M.D.,18-27.91,house_s07e06_seg02_clip_25,The ICU 11596,Her office after hours,The window of her house,While she is on a date,In a confidential meeting,The coffee house she likes,1,Where does House show up before asking Cuddy for her permission on an injection treatment?,133635,House M.D.,16.47-35.61,house_s03e01_seg02_clip_23,The window of her house 11597,Sky has blue streaks in her hair.,Sky has pink streaks in her hair.,Sky has yellow streaks in her hair.,Sky has green streaks in her hair.,Sky has orange streaks in her hair. ,0,What color streaks does Sky have in her hair when talking to Beckett and Castle?,133636,Castle,0-9.56,castle_s02e07_seg02_clip_10,Sky has blue streaks in her hair. 11598,To be more targeted,To let him die without pain,To ensure he is not contagious ,To kill the cancer cells,So he does not feel the surgery ,0,Why does the doctor say the nurses are going to be using Unasyn after injecting liquid into the IV?,133637,House M.D.,33.89-46.65,house_s01e03_seg02_clip_06,To be more targeted 11599,Ross and Monica are fighting.,Ross and Monica are watching a movie.,Ross and Monica are cooking dinner.,Ross and Monica are throwing a ball to one another.,Ross and Monica are making cookies.,3,What are Ross and Monica doing when Rachel enters the apartment?,133638,Friends,0-11.56,friends_s05e21_seg02_clip_06,Ross and Monica are throwing a ball to one another. 11600,Lily put her hands on the seat she was sitting on.,Lily put her hands around Marshall's next.,Lily put her hands around Ted's head.,Lily put her hands on the floor.,Lily put her hands around Marshall's arm.,4,"Where did Lily place her hands when she was sitting next to Marshall, along with Barney and Ted?",133639,How I Met You Mother,2.07-5.61,met_s02e09_seg02_clip_01,Lily put her hands around Marshall's arm. 11601,Ross interrupted Chandler to tell him that he should never look.,Ross interrupted Chandler to tell him go home.,Ross interrupted Chandler to tell him sit down.,Ross interrupted Chandler to tell him get something to drink.,Ross interrupted Chandler to tell him wipe his face.,0,Why did Ross interrupt Chandler after he said he looked at Janice?,133640,Friends,20.36-31,friends_s03e03_seg02_clip_04,Ross interrupted Chandler to tell him that he should never look. 11602,Bernadette was cleaning a desk.,Bernadette was making the bed.,Bernadette was hanging up clothes.,Bernadette was painting their room.,Bernadette was looking out the window. ,0,What was Bernadette doing when told Howard she didn't want to play anymore?,133641,The Big Bang Theory,0-6.6,s09e12_seg02_clip_09,Bernadette was cleaning a desk. 11603,He licks Foreman's head,He gives Foreman bunny ears,He plays air guitar in the background,He comments on everything Foreman says,He unplugs the internet router,1,What does House do before Foreman ends his conference call?,133642,House M.D.,10.24-20.92,house_s08e06_seg02_clip_08,He gives Foreman bunny ears 11604,Elise was CEO for modesto motors,Elise killed her husband,Elise was vp for modesto motors,Elise was lead counsel for modesto motors,Elise was an insurance agent,3,What did beckett say elise didn't tell investigators when she is questioning her in the interrogation room?,133643,Castle,49.19-52.38,castle_s07e19_seg02_clip_23,Elise was lead counsel for modesto motors 11605,Howard puts a dollar on the table and walks away,Raj farts loudly and says app that,Sheldon laughs and says that is a dumb idea,Raj looks up and states his favorite app is the farting app,Sheldon coughs,3,What happens after Leonard discusses his idea for an app with the group?,133644,The Big Bang Theory,15.78-19.19,s04e12_seg01_clip_01,Raj looks up and states his favorite app is the farting app 11606,Out on the balcony on the phone,In her bedroom putting her makeup on,Sitting on the couch watching her favorite soap opera,In the kitchen making Ross breakfast,In the kitchen folding laundry,4,Where was Rachel before Monica started complaining about Ross being in the bathroom,133645,Friends,0-20.55,friends_s02e17_seg02_clip_02,In the kitchen folding laundry 11607,He puts the car in reverse,He turns on the windsheild wipers,He drives the car forward,He honks the horn,He yells for help,1,How does Castle try to remove Nadir from the car after the suspect falls onto the hood of his car?,133646,Castle,42.33-52.48,castle_s01e07_seg02_clip_25,He turns on the windsheild wipers 11608,yogurt,snapple,doritos,cake,oreos,4,what did house order off menu when he and wilson were at a restaurant together?,133647,House M.D.,72.62-77.02,house_s08e21_seg02_clip_15,oreos 11609,Sheldon gives Leonard a bag of video games.,Sheldon gives Leonard a bag of dice.,Sheldon gives Leonard a bag of items that he might need.,Sheldon gives Leonard a bag of items for the laboratory.,Sheldon gives Leonard a bag of items for his pet mice.,2,What does Sheldon give Leonard when he is about to leave?,133648,The Big Bang Theory,27.74-59.02,s04e15_seg02_clip_11,Sheldon gives Leonard a bag of items that he might need. 11610,Penny danced on the couch.,Penny punched Raj.,Penny kissed Amy.,Penny ran in a circle.,Penny pursed her lips at Leonard.,4,What did Penny do after Leonard said they would still be together if she understood how cool it was?,133649,The Big Bang Theory,50.17-55.01,s04e08_seg01_clip_01,Penny pursed her lips at Leonard. 11611,House's pants are rolled up in a ball in the corner.,House's pants are folded on a chair.,House's pants are hanging on a coat hanger. ,House's pants are drying by a open window.,House's pants are down to his knees.,4,Where are House's pants when thirteen walks into his office ?,133650,House M.D.,89.33-94.03,house_s07e23_seg02_clip_21,House's pants are down to his knees. 11612,A coffee,A sherry.,A whiskey,A water,A soft drink,1,What did the Professor offer Raj after he told him to please sit down?,133651,The Big Bang Theory,28.04-33.72,s03e04_seg02_clip_04,A sherry. 11613,46.9% of after tax income,25.2% of after tax income,32.8% of after tax income,47.6% of after tax income,70.0% of after tax income,0,What was Sheldon's calculated expenses when he spoke to Penny?,133652,The Big Bang Theory,0-14.09,s02e14_seg02_clip_02,46.9% of after tax income 11614,He thought she liked Ross.,She is engaged to Barry.,She was engaged to Chandler.,She was engaged to Ross.,She said she wouldn't date for a year.,0,Why did Joey think it was strange Rachel had a date when he sounded surprised.? ,133653,Friends,28.63-46.46,friends_s02e10_seg02_clip_05,He thought she liked Ross. 11615,Standing to the right of Nolan.,Standing in front of Nolan.,Sitting to the left of Nolan.,Standing to the left of Nolan.,Sitting in front of Nolan.,4,Where was House when Nolan told him he was trying to find out what House was trying ti distract from?,133654,House M.D.,16.52-21.43,house_s06e20_seg02_clip_03,Sitting in front of Nolan. 11616,He opened a bag of chips.,He turned on the radio.,He adjusted the GPS.,He looked at the rear view mirror. ,He put on headphones. ,3,What did Sheldon do after he asked Howard where they were?,133655,The Big Bang Theory,43.23-53.09,s04e13_seg02_clip_01,He looked at the rear view mirror. 11617,18,7,8,10,2,2,Which floor does Ryan tell a woman to go before she leaves?,133656,Castle,0-7.27,castle_s07e14_seg02_clip_06,8 11618,Because Richie thought the law should be affordable to everyone.,Because Richie thought the law protects corporations who could afford to pay.,Because Richie thought the law was flawed.,Because Richie thought the law protects everyone and not just corporations who could afford to pay.,Because Richie thought the law was unjust.,3,Why did Richie's clients love him when he represented them?,133657,Castle,13.62-20.64,castle_s07e19_seg02_clip_03,Because Richie thought the law protects everyone and not just corporations who could afford to pay. 11619,Into Beckett.,Into the trashcans in the alley.,Into the bar.,Into traffic.,Into a toilet.,1,Where is Castle thrown after the fight is done?,133658,Castle,76.98-88.17,castle_s04e14_seg02_clip_05,Into the trashcans in the alley. 11620,His camera,His wallet,His fingerprints,His laptop,His drink,3,What is Jake reluctant to leave behind after Beckett tells him to leave the room?,133659,Castle,11.21-21.07,castle_s08e20_seg02_clip_10,His laptop 11621,Joey,Ross,Chandler,Richard,Ben,2,Who did Monica go to talk to after she as doing talking Rachael and Phoebe?,133660,Friends,50.41-68.48,friends_s05e19_seg02_clip_19,Chandler 11622,Rachel is holding a magazine.,Rachel is holding a dog.,Rachel is holding a bottle of water.,Rachel is holding flowers.,Rachel is holding her purse.,2,What is Rachel holding when she sits down?,133661,Friends,17.68-19.54,friends_s08e02_seg02_clip_03,Rachel is holding a bottle of water. 11623,Commander Kim,Dr Haroun,Angela,Tom,Beckett,0,Who sent Mikhail to engineering when the ship was being repaired?,133662,Castle,15.5-22.79,castle_s07e16_seg02_clip_24,Commander Kim 11624,She walks away from him. ,she stand there looking at him. ,burke walks away. ,she hugs him. ,she gives him a kiss. ,0,What does Christina do after talking with Burke? ,133663,Grey's Anatomy,0-9.28,grey_s03e06_seg02_clip_07,She walks away from him. 11625,Toys ,His son,A book,A crown ,A garment bag,4,What was Ross picking up when the girls were making plans?,133664,Friends,3.66-10.99,friends_s04e18_seg02_clip_01,A garment bag 11626,Eye Contact,Mahalo,Sheldon's kind grip,Nothing,Sheldon leaving,1,What does Leonard say is a nice touch when Sheldon stops speaking?,133665,The Big Bang Theory,8.32-26.89,s01e04_seg01_clip_01,Mahalo 11627,Chloe implied that Sara was helping smuggle drugs,Chloe implied that Sara was having a relationship with Mr. Peterson,Chloe implied that Ms. Peterson was angry with Sara,Chloe implied that Sara was depressed,Chloe implied that the Petersons were plotting against Sara,1,Why were Castle and Beckett intrigued after Chloe's conversation?,133666,Castle,34.42-47.28,castle_s01e02_seg02_clip_12,Chloe implied that Sara was having a relationship with Mr. Peterson 11628,Leonard's hand.,A name tag.,Some flowers.,A box of chocolates.,A menu.,4,What does Penny hold when she's introduced to Leslie?,133667,The Big Bang Theory,0-9.15,s01e05_seg01_clip_02,A menu. 11629,Sue cut his face off,Fletcher was wearing a mask,He was shot in the face,Fletcher was burned,Fletcher isnt real,2,Why would the positive ID for Fletcher be impossible after Fletcher is killed?,133668,Castle,79.62-90.48,castle_s02e04_seg02_clip_23,He was shot in the face 11630,She didn't go anywhere.,She stayed,She entered the dorm room.,She said she would see him later.,She left out the door.,4,Where did Cameron go after her conversation with House?,133669,House M.D.,36.77-44.94,house_s06e07_seg02_clip_07,She left out the door. 11631,book,magazine ,Wiki Article Finder,cd ,flash cards ,2,what did Castle find on the table after he stop following Esposito and Ryan? ,133670,Castle,68.17-78.04,castle_s07e06_seg02_clip_13,Wiki Article Finder 11632,The tic tac was in Monica's nose.,The tic tac was in Monica's left cheek.,The tic tac was in Monica's throat.,The tic tac was under Monica's tongue.,The tic tac was on top of Monica's tongue.,3,Where was the tic tac when Monica and Ethan kissed for the first time?,133671,Friends,22.79-30.95,friends_s01e22_seg02_clip_10,The tic tac was under Monica's tongue. 11633,Alexis closed ten cases.,Alexis closed one case.,Alexis closed all of Castle's cases.,Alexis closed no cases.,Alexis closed four cases.,4,How many cases did Alexis close when she was overseeing the remodeling of Castle's new office?,133672,Castle,62.95-66.49,castle_s08e01_seg02_clip_03,Alexis closed four cases. 11634,Danger.,Women.,Death.,Adrenaline.,Fear.,2,What did Jerry tell Castle he believes thrills him when Jerry is holding him captive?,133673,Castle,16-25.61,castle_s03e06_seg02_clip_25,Death. 11635,Penny is knocking,Howard is knocking,Sheldon is knocking,Bernadette is knocking,Raj is knocking,2,"Who is knocking on Leonard door, when Leonard is asleep",133674,The Big Bang Theory,49.49-55.53,s01e10_seg02_clip_01,Sheldon is knocking 11636,He laughs.,He cries. ,He yells at her. ,He snatches it away. ,He rips the paper in half. ,3,What does Ross do after rachel signs each paper? ,133675,Friends,45.15-55.19,friends_s06e05_seg02_clip_17,He snatches it away. 11637,"Penny is sure that the experiment they are doing will not cause her to fall in love with Sheldon, so she promises him she will drive him and buy him T-shirts. ",Penny knows it is Sheldon's birthday so she promises him she buy him T-shirts. ,Penny knows Sheldon's apartment fire caused him to loose most of his clothes so she promises him she will buy him T-shirts. ,It is almost Christmas and Sheldon wants T-shirts so Penny promises him she will buy him some. ,Sheldon says he doesn't have any T-shirts so Penny promises him she will buy him T-shirts. ,0,Why does Penny say she will buy Sheldon all the dragon T-shirts he wants before they enter her apartment? ,133676,The Big Bang Theory,27.5-33.44,s08e16_seg02_clip_00,"Penny is sure that the experiment they are doing will not cause her to fall in love with Sheldon, so she promises him she will drive him and buy him T-shirts. " 11638,Joey kisses Rachel.,Joey runs out the door.,Joey passes out.,Joey agrees with Ross immediately.,Joey dances with Charlie.,3,How does Joey react after Ross goes off on him?,133677,Friends,19.81-23.01,friends_s09e14_seg01_clip_01,Joey agrees with Ross immediately. 11639,Beckett is turning off her cell phone.,Beckett is setting the recording device.,Beckett is writing something in her file.,Beckett is pouring a glass of water.,Beckett is stretching before she sits down.,2,What is Beckett doing at the start of the interview when she and Agent Napier are interrogating Alonzo?,133678,Castle,42.16-47.14,castle_s08e13_seg02_clip_23,Beckett is writing something in her file. 11640,Derek says this woman is not how he likes to start his mornings.,Derek says this woman is not how he likes to start his car.,Derek says this woman is not how he likes to start his dissertation.,Derek says this woman is not how he likes to start his plan for revenge.,Derek says this woman is not how he likes to start his breakfast.,0,What does Derek say about his routine before Izzie giggles?,133679,Grey's Anatomy,67.17-73.55,grey_s02e23_seg02_clip_06,Derek says this woman is not how he likes to start his mornings. 11641,Sex,FIghting,Dancing,Choking ,Interrogating ,2,Which action does Beckett and Castle catch two men doing after entering the room?,133680,Castle,29.45-48.31,castle_s07e19_seg02_clip_14,Dancing 11642,"When the scalpel penetrates her skin, the patient screams.","When the scalpel penetrates her skin, the patient laughs.","When the scalpel penetrates her skin, the patient faints.","When the scalpel penetrates her skin, the patient curses.","When the scalpel penetrates her skin, the patient ignores it.",0,What does the patient do when the scalpel penetrates her skin?,133681,House M.D.,25.75-32.19,house_s03e14_seg02_clip_23,"When the scalpel penetrates her skin, the patient screams." 11643,Rachel responds by dumping all the marshmallows into the dish.,Rachel responds by walking out of the kitchen.,Rachel responds by throwing marshmallows at Monica.,Rachel responds by ignoring Monica and talking to Phoebe.,Rachel responds by placing a marshmallow up Monica's nose.,4,How does Rachel respond when Monica complains about the marshmallows?,133682,Friends,20.49-25.04,friends_s03e09_seg01_clip_00,Rachel responds by placing a marshmallow up Monica's nose. 11644,Never stop believing.,Never stop living.,Never stop partying.,Never stop dreaming.,Never stop thriving.,2,What does Barney's dad say when Barney is on the porch?,133683,How I Met You Mother,0.9-5.08,met_s06e21_seg01_clip_01,Never stop partying. 11645,Spain faints.,Spain starts crying.,Spain throws a folder at House.,Spain falls off the chair.,Spain gets up out of the chair.,4,What does Spain do right after House tells him sayonara?,133684,House M.D.,39.17-42.73,house_s01e19_seg02_clip_12,Spain gets up out of the chair. 11646,That Rachel has feelings for Ross,That Rachel is pregnant,That Rachel is getting married,That Rachel is in love with Chandler,"That Rachel is cheating on her boyfriend, James",0,What does Rachel admit to Ross when they're in the apartment?,133685,Friends,33.05-55.48,friends_s04e21_seg02_clip_13,That Rachel has feelings for Ross 11647,angry,happy,hurtful,impatient,irritated,3,How did Penny feel when Sheldon was taking his time picking the present out?,133686,The Big Bang Theory,16.85-26.79,s01e16_seg02_clip_08,impatient 11648,She overheard him telling Cuddy,He told her over breakfast,She opened his mail at his desk,She saw the plane tickets on his desk,She took a phone call at his desk,2,Why does Cameron know that House is going to Boston when she helping Foreman after he scrubs his hands?,133687,House M.D.,76.82-87.66,house_s03e15_seg02_clip_04,She opened his mail at his desk 11649,An old antique car.,A short fat dog.,A large model airplane.,A very tall human.,A sports trophey. ,3,What does the silver statue between Castle and Beckett look like when they are looking out the window for security cameras?,133688,Castle,37.35-39.4,castle_s02e23_seg02_clip_01,A very tall human. 11650,A man.,Howard.,A woman.,Leonard.,Penny.,2,What did Raj find after he opened the door?,133689,The Big Bang Theory,19.23-23.19,s04e07_seg02_clip_00,A woman. 11651,The patient requested to stay in ICU.,The patient was contagious.,The patient had total body radiation.,All cancer patients must stay in ICU.,House ordered the patient to stay in ICU.,2,Why did the nurse tell Foreman that the patient needed to stay in ICU when Foreman said that he was moving the patient?,133690,House M.D.,35.16-43.18,house_s03e20_seg02_clip_19,The patient had total body radiation. 11652,In middle of Howard and Sheldon.,In middle of Penny and Amy.,On a stool.,On the floor.,On the counter.,0,Where sat Bernadette when Howard was talking?,133691,The Big Bang Theory,0-22.09,s06e23_seg02_clip_11,In middle of Howard and Sheldon. 11653,Chandler needs to leave for work soon.,Chandler just bought a new watch.,Chandler loves the watch Joey gave him as a gift.,Chandler wants Ross to hurry up and try the baby bottle,Ross has been waiting for it to be time to turn on the TV,3,Why does Chandler show his watch to Ross when they are seated at the table in Monica's kitchen?,133692,Friends,29.34-49.31,friends_s02e02_seg02_clip_19,Chandler wants Ross to hurry up and try the baby bottle 11654,Blood is running into his lungs ,He spits up blood,He is experiencing toxins,He is under some trauma,Fits better because of his radiating chest pain.,4,What did Masters say to House when he counted her down ,133693,House M.D.,21.5-25.08,house_s07e18_seg02_clip_01,Fits better because of his radiating chest pain. 11655,She is slurring her words,She has a strange rash on her face,She has a blue light shining on her left shoulder,She has some trash in her hair,There is a red spot on her forehead then her chest,4,Why are the donors staring at Cuddy when she is trying to get a donation from them?,133694,House M.D.,49.69-67.64,house_s03e09_seg02_clip_00,There is a red spot on her forehead then her chest 11656,Writting,Screaming,Singing,Listening to music,Dancing,0,What is Cuddy doing before Brenda entered the room?,133695,House M.D.,52.52-60.02,house_s02e12_seg02_clip_01,Writting 11657,Sitting on the desk,Walking towards the bathroom,Kneeling down,Standing by the door,Sitting on a couch,0,Where is Castle when Beckett asks if he wants her to outlive him?,133696,Castle,13.05-23.41,castle_s05e17_seg02_clip_09,Sitting on the desk 11658,Penny is drinking water.,Penny is drinking wine.,Penny is drinking milk.,Penny is drinking Coke.,Penny is drinking coffee.,1,What is Penny drinking when Howard is unpacking the case?,133697,The Big Bang Theory,23.78-30.58,s07e07_seg02_clip_09,Penny is drinking wine. 11659,Victor Newman,Dr. Noah Drake,Dr. Jeff Webber,Luke Spencer,"Hans Ramoray, Drake's evil twin.",4,Who does Ross say Joey is after they can't get Erica to understand Joey is not Drake?,133698,Friends,41.15-47.28,friends_s02e12-13_seg02_clip_16,"Hans Ramoray, Drake's evil twin." 11660,Joey doesn't want to spoil the surprise.,Joey wants Rachel to see it for herself on the next episode. ,Joey says that part of the scene hasn't been written yet. ,Joey doesn't know and he couldn't care less. ,Joey doesn't want her telling her friends. ,3,"Why does Joey really not want to tell Rachel what happens to Jessicas body, from his TV show, when she asks?",133699,Friends,28.12-34.16,friends_s08e05_seg02_clip_02,Joey doesn't know and he couldn't care less. 11661,Menendez says he will call Ryan and Esposito.,Menendez asks for Ryan's and Esposito's phone number.,Menendez asks why Castle didn't suggest Beckett.,Menendez says he doesn't trust the 12th Precinct.,Menendez asks how Castle knows Ryan and Esposito.,0,How does Menendez respond after Castle suggests Ryan and Esposito?,133700,Castle,0-13.02,castle_s08e14_seg02_clip_02,Menendez says he will call Ryan and Esposito. 11662,Ross ,Joey ,Rachel ,Chandler ,Pheobe ,1,Who walks into the apartment after the door opens? ,133701,Friends,2.77-8.3,friends_s03e02_seg02_clip_16,Joey 11663,Leonard says it whats ever,Leonard say he gives up,Leonard say its perfect,Leonard said its not easy but making it work,Leonard doesn't say anything,3,How is Leonard making his long distance love work when Howard ask him?,133702,The Big Bang Theory,34.69-46.68,s05e02_seg02_clip_00,Leonard said its not easy but making it work 11664,Karev,Izzie,Another doctor,Herself,Nobody,0,Who did Addison talk to after she was done talking to the patient?,133703,Grey's Anatomy,13.65-17.29,grey_s03e04_seg02_clip_16,Karev 11665,The TV guide.,Popcorn.,A drink.,The remote control.,The newspaper.,3,What did Rachel knock out of Chandler's hand when they were watching TV?,133704,Friends,45.93-52.28,friends_s01e11_seg02_clip_01,The remote control. 11666,Rachel really liked Bonnie,Rachel didn't care about Ross,Rachel was happy for Ross,Rachel remembered Bonnie was bald,Rachel said she trusted Phoebe,3,Why did Rachel allow Ross to be set up when she was speaking alone to Phoebe?,133705,Friends,37.62-61.68,friends_s03e24_seg02_clip_03,Rachel remembered Bonnie was bald 11667,Rolls her eyes,Takes a drink,Laughs,Claps her hands,Cries,0,"What does Monica do after Phoebe says ""Oh, so sorry to catch you on your mobile?""",133706,Friends,5.9-12.73,friends_s10e03_seg02_clip_02,Rolls her eyes 11668,yelled at her,screamed at her ,hugged her,hit her,ignore her,2,What did Sophia parents do to her when hey saw her in the ICU?,133707,House M.D.,157.34-163.78,house_s05e08_seg02_clip_24,hugged her 11669,They are trying to rest in the lounge.,They are sitting at a table eating.,They are at a bar drinking.,They cooking food in the kitchen.,They are playing a video game.,4,What are Taub and Foreman doing when talking about five minutes left in the break?,133708,House M.D.,19.21-28.81,house_s07e12_seg02_clip_15,They are playing a video game. 11670,Foreman says he expect the new team to follow behind him,Foreman says he expect the new team to worship at this feet, Foreman says he expect the new team to listen to his every word,Foreman says he expect the new team to put him on a pedestal,Foreman says he expect the new team to kiss his ass,4,What does Foreman say he expect from the new team when he talking to Chase about being boring,133709,House M.D.,14.79-25.51,house_s05e05_seg02_clip_20,Foreman says he expect the new team to kiss his ass 11671,By suggesting a transplant,By stating he will recover,By stating they have done all they could,By rattling off numbers,By suggestion a blood transfusion ,3,"How was the question ""how sick is my child?"" when asked?",133710,House M.D.,12.74-18.21,house_s01e04_seg02_clip_06,By rattling off numbers 11672,A business card,A file ,A evidence bag ,A picture ,a pen ,3,What does Hunt remove from the board when talking to Beckett? ,133711,Castle,57.26-65.91,castle_s04e20_seg02_clip_25,A picture 11673,Good idea let me get my phone.,"No, I'm going to assert my dominance face to face.",Sheldon you really are a genius!,I don't think Penny would like that.,I left my phone in my other costume.,1,What did Leonard say he would do after Sheldon told him to text Kurt to see if he would back down?,133712,The Big Bang Theory,0-13.42,s01e06_seg02_clip_10,"No, I'm going to assert my dominance face to face." 11674,He was excited.,He hugged them.,He was disappointed.,He started crying.,He got angry. ,2,How did House react when the patients family thanked him?,133713,House M.D.,80.36-90.29,house_s03e04_seg02_clip_25,He was disappointed. 11675,House is holding a 100 dollar bill,House is holding a picture,House is holding a 50 dollar bill,House is holding a 20 dollar bill,House isn't holding anything,0,What is House holding in his hand when he is showing it to Cameron?,133714,House M.D.,0-6.16,house_s04e04_seg02_clip_02,House is holding a 100 dollar bill 11676,Sheldon says that he believes in giving credit to himself.,Sheldon says that he believes in giving credit to everyone..,Sheldon says that he believes in giving credit where credit is due.,Sheldon says that he believes in giving credit when it isn't deserved,Sheldon says that he believes in giving credit on the weekends.,2,What does Sheldon say he believes in when he's talking to Penny?,133715,The Big Bang Theory,0-28.92,s04e15_seg02_clip_11,Sheldon says that he believes in giving credit where credit is due. 11677,Joey was trying to locate his hotel.,Joey was trying to locate Buckingham Palace.,Joey was trying to locate the airport.,Joey was trying to locate a restaurant.,Joey was trying to locate his family's home.,1,Where was Joey trying to find with the map before he met the Duchess of York?,133716,Friends,13.49-21.15,friends_s04e23-24_seg02_clip_16,Joey was trying to locate Buckingham Palace. 11678,The driver yells at him.,The driver ran his foot over.,He realizes some people won't get their gifts for Christmas.,The truck driver won't accept his gift.,The driver is mad at him.,2,Why is Marshall sad after thanking the delivery driver?,133717,How I Met You Mother,7.34-25.98,met_s02e11_seg02_clip_14,He realizes some people won't get their gifts for Christmas. 11679,Joey jokes about selling his blood.,Joey jokes about selling his car.,Joey jokes about selling his cat.,Joey jokes about selling his kidney.,Joey jokes about selling his sperm.,3,What does Joey joke about selling after Monica walks out of the room?,133718,Friends,50.12-52.82,friends_s02e05_seg02_clip_03,Joey jokes about selling his kidney. 11680,Monica goes to the window,Monica goes outside,Monica goes to the living room,Monica goes to powder her bottom,Monica goes to the kitchen,3,Where does Monica go after she talks to Phoebe?,133719,Friends,0-23.11,friends_s08e20_seg02_clip_03,Monica goes to powder her bottom 11681,she punched an agent,she ran away,she shot herself,she laughed,she took off her glasses,4,what did the white lady do after she said if denying is a crime,133720,Castle,29.38-38.73,castle_s03e18_seg02_clip_16,she took off her glasses 11682,Howard is sitting in the backyard.,Howard is sitting on the stairs.,Howard is sitting in the library.,Howard is sitting on the floor.,Howard is sitting on the couch. ,4,Where is Howard sitting after Raj closed the door?,133721,The Big Bang Theory,0-5.26,s09e04_seg02_clip_14,Howard is sitting on the couch. 11683,The patient told Foreman that white people had been lying to him since he retired 7 years ago.,"For the last couple of years, Foreman's patient said white people had been lying to him.",Foreman's patient shared that white people had just started lying to him as a targeted conspiracy.,Foreman's patient let Foreman know that white people had been lying to him for 2 full decades.,Foreman's patient told him that white people had been lying to him for 60 years.,4,How long did Foreman's patient say white people had been lying to him when he and Foreman were discussing the new target medication?,133722,House M.D.,39.14-42.78,house_s02e03_seg02_clip_03,Foreman's patient told him that white people had been lying to him for 60 years. 11684,An Action Figure.,A turtle.,A Comic Book.,A flag.,A video game system ,1,"What is Sheldon looking at when he says ""How about this one""?",133723,The Big Bang Theory,23.09-29.94,s08e17_seg02_clip_01,A turtle. 11685,The steering wheel,The doorknob,The newspaper,The elevator,The guitar,0,What did Ross grab after Phobe said you don't have a choice?,133724,Friends,17.7-22.58,friends_s10e17-18_seg02_clip_33,The steering wheel 11686,Her long lost child,The pizza delivery guy,Ted,Her husband,Her dog,2,Who was at the door after Lily opened it?,133725,How I Met You Mother,0-5.57,met_s02e11_seg02_clip_10,Ted 11687,Then make it easier,I know,I thought doctors healed people,I'm for that,"Please do something, anything",1,How did the patient (Matty) respond after House told him that the drugs will just make it easier but won't change anything?,133726,House M.D.,5.56-12.82,house_s03e21_seg02_clip_21,I know 11688,A cup of coffee,A notebook,A tape recorder,A cell phone,A gun,1,What is sitting on the table in front of Beckett when she and Castle are interviewing Mrs. Parker?,133727,Castle,48.58-53.57,castle_s02e10_seg02_clip_05,A notebook 11689,$300 a month.,$200 a month.,$100 a week.,$100 a month.,$400 a month.,3,How did Ryan say Tracy was paying a month for Frenchie's Parking when Beckett and Castle are trying to figure out where her car may be?,133728,Castle,63.96-68.1,castle_s04e15_seg02_clip_15,$100 a month. 11690,Monica waves her arm in the air in support of Rachel.,Monica claps and whistles for Rachel.,Monica stands next to Ross and tells him to back off.,Monica repeats that Ross is stealing Rachel's wind.,Monica high fives Phoebe.,0,What does Monica do after Rachel says something about Ross stealing her wind?,133729,Friends,36.5-43.22,friends_s02e19_seg02_clip_04,Monica waves her arm in the air in support of Rachel. 11691,new shoes ,a new cane ,different care ,he looked happy,a dog,1,what did cameron notice about house when he was at her place,133730,House M.D.,25.04-32.78,house_s01e19_seg02_clip_00,a new cane 11692,House wanted attention. ,House had surgery. ,House was faking the limp.,House hurt his leg. ,House was testing a new therapy. ,3,Why was House using a cain when he walked? ,133731,House M.D.,0-17.33,house_s08e07_seg02_clip_19,House hurt his leg. 11693,The flu,An iron overdose,Poisoning,Hep-C,Staph infection,1,What does Foreman tell the parent of the child that her son has when in the patient room?,133732,House M.D.,11.61-27.53,house_s05e08_seg02_clip_21,An iron overdose 11694,committing to one another,Overcoming diversity,Uniting,Beating the odds,Being faithful ,3,What did beckett say that great love stories are about when talking to castle at the storage facility?,133733,Castle,121.2-131.02,castle_s04e03_seg02_clip_26,Beating the odds 11695,Dries flowers,A picture,A poster ,A picture frame ,A mirror,3,What is hanging on the door when Monica is standing in front of it,133734,Friends,10.12-17.85,friends_s06e01_seg02_clip_19,A picture frame 11696,Castle did nothing,Castle was asking question,Castle get coffee,Castle sit down,Castle talking to Beckett,3,What did Castle did after Jensen open the computer?,133735,Castle,41.7-49.77,castle_s07e16_seg02_clip_20,Castle sit down 11697,2 and a half hours.,1 hour.,A hour and a half.,45 minutes.,2 hours.,4,How long did Tritter say he was waiting before he got in to see House?,133736,House M.D.,0-3.48,house_s03e05_seg02_clip_02,2 hours. 11698,The man is confused,The man is happy,The man is Sad,The man is angry,The man is ambitious,0,How does the man react to Sheldon when he starts talking to him?,133737,The Big Bang Theory,20.23-58.64,s05e06_seg02_clip_14,The man is confused 11699,Ross take a sip of the drink,Ross took off the top.,Ross did nothing,Ross did not give Joey a bottle,Ross clean the bottle,1,What did Ross do before he gave Joey a bottle?,133738,Friends,2.95-12.1,friends_s05e10_seg02_clip_04,Ross took off the top. 11700,Joey,Mrs. B,Mrs. K,Ross,Chandler,2,Who do Mrs. Green and Rachel talk about after Rachel's mom calls her a cave person?,133739,Friends,43.52-60.03,friends_s08e20_seg02_clip_03,Mrs. K 11701,Young Children,The Elevator,Penny,The Colonoscopy,The Star Wars Prequels,3,What does Howard say is unnecessary when he climbs up the stairs.,133740,The Big Bang Theory,2.4-60.02,s01e16_seg02_clip_14,The Colonoscopy 11702,She wants to control him. ,She wants to get over her crush. ,She doesn't want him to have a life. ,She doesn't want him to have friends either. ,She doesn't want him to be happy. ,1,Why doesn't Rachel want Tag to date other women when he is working for her?,133741,Friends,13.55-17.96,friends_s07e05_seg02_clip_13,She wants to get over her crush. 11703,Derek was asking for Dr. Burke.,Derek was asking for Meredith.,Derek was asking for Addison.,Derek was asking for Izzie.,Derek was asking for George.,0,Who did Derek ask for when he was doing something on the patient?,133742,Grey's Anatomy,37.16-42.26,grey_s03e17_seg02_clip_10,Derek was asking for Dr. Burke. 11704,Amy drunk her wine.,Amy stay sitted.,Amy standed and went to open the door.,Amy went to the kitchen.,Amy said to Sheldon to go.,2,What did Amy after Sheldon knocked the door?,133743,The Big Bang Theory,29.31-63.02,s07e05_seg02_clip_02,Amy standed and went to open the door. 11705,A phone book.,A clipboard.,An x-ray.,A newspaper.,A textbook.,1,What is in the hand of the male who passes Cuddy and House when they are talking in front of the door?,133744,House M.D.,39.37-42.25,house_s06e11_seg02_clip_09,A clipboard. 11706,Phoebe's friends took the book away from her.,Phoebe's friends listened.,Phoebe's friends scurried to stop her.,Phoebe's friends suggested she read something else.,Phoebe's friends were shocked enough to sit there and listen to her read several pages before coming to their senses and stopping her.,2,How did Phoebe's friends react when she started reading her pink book?,133745,Friends,0-19.78,friends_s10e04_seg02_clip_07,Phoebe's friends scurried to stop her. 11707,He told her that he had found a hidden bomb in the bathroom.,He told her to shut up and not to get hysterical.,He told her that he had found a hair in his soup,He told her that he found a rare coin on the floor,He told her he had just found a used puke bag in the plane bathroom,1,What did House say to Cuddy when she asked him what he had found ,133746,House M.D.,2.4-8.4,house_s03e18_seg02_clip_17,He told her to shut up and not to get hysterical. 11708,A college student and a mother.,A high school student and a father.,A wife and husband.,A teacher and a mother.,A cop and a student. ,0,Who does Beckett say the other two victims were when Castle asks how it went with the other families?,133747,Castle,71.31-82.28,castle_s04e19_seg02_clip_02,A college student and a mother. 11709,Badminton,Soccer,Flag Football,Baseball,Basketball,2,What activity supposedly gave a patient minty fresh abrasions on his knees after House says he's lying about how he got them?,133748,House M.D.,36.85-46.29,house_s08e05_seg02_clip_01,Flag Football 11710,Wilson is looking threw a operating room window.,Wilson is looking threw his office window.,Wilson is looking threw glasses.,Wilson is looking threw a glass bottle.,Wilson is looking threw a hole in a door.,0,What is Wilson looking threw when Foreman is telling a story ?,133749,House M.D.,3.9-10.4,house_s04e16_seg02_clip_19,Wilson is looking threw a operating room window. 11711,Practice,Police,NYPD,Traininee,Writer,4,What did Castle's vest read when he told Beckett that he was a perfect gentleman?,133750,Castle,0-4.28,castle_s05e22_seg02_clip_08,Writer 11712,Rachel just wanted Joey to know that she was still standing there. ,Rachel wanted to be congratulated on a good scene too. ,Rachel just needed to clear her throat. ,Rachel wanted Joey to hurry up so they could leave. ,Rachel wanted Joey to introduce her to Kash. ,4,Why does Rachel clear her throat after Joey and Kash congratulate each other on a good scene?,133751,Friends,35.98-48.98,friends_s08e05_seg02_clip_02,Rachel wanted Joey to introduce her to Kash. 11713,Eye,Kidney,Sleen,Gallbladder ,Pancreas ,0,What body part did Wilson say he may remove after the patient (Stark) discussed how the cancer had spread?,133752,House M.D.,58.52-65.27,house_s04e03_seg02_clip_17,Eye 11714,Nineteen says,Sixteen says,Thirteen says,Eleven says,Twelve says,2,Who says she found a job at Mercy before discussing that Foreman could come back to his work?,133753,House M.D.,0-11.62,house_s05e15_seg02_clip_17,Thirteen says 11715,Sheldon drank. ,Sheldon cooked tacos.,Sheldon opened the door.,Sheldon run away.,Sheldon stand around the table.,4,What did Sheldon after serving a drink?,133754,The Big Bang Theory,39.64-70.17,s01e08_seg01_clip_03,Sheldon stand around the table. 11716,"Well, bye, I have to go. ","Bye, Raj had to run.",Goodbye from America. ,"Raj will be back, see ya.","OK, well, it's nice to meet you.",4,What did Penny say to Raj's parents before putting down the laptop?,133755,The Big Bang Theory,31.25-36.46,s02e04_seg02_clip_15,"OK, well, it's nice to meet you." 11717,He sits on the staircase.,He follows them.,He goes upstairs.,He gets a snack from the vending machine.,He asks someone for a cigarette. ,0,What does House do after his team leaves?,133756,House M.D.,80.2-89.81,house_s05e10_seg02_clip_14,He sits on the staircase. 11718,20 ,30,10,50,40,0,How many years did flanagan say that the police have been coming to his work to accuse him when talking to beckett?,133757,Castle,6.83-19.12,castle_s08e15_seg02_clip_17,20 11719,Phoebe's date pulls a small gift box from his pocket.,Phoebe's date leaves the apartment.,Phoebe's date gets down on one knee.,Phoebe's date leans in to kiss her.,Phoebe's date removes his shirt.,3,What does Phoebe's date do after she closes her eyes?,133758,Friends,28.68-34.48,friends_s09e04_seg02_clip_18,Phoebe's date leans in to kiss her. 11720,What type of food the monkey likes.,How happy her subject is.,How the monkey likes her name.,The monkey's fear response.,What region the monkey is from.,3,What is Amy testing before Sheldon walks in?,133759,The Big Bang Theory,29.41-45.38,s07e05_seg02_clip_08,The monkey's fear response. 11721,Adams touched Moira's leg.,Adams touched Moira's head.,Adams touched Moira's ear.,Adams touched Moira's midsection near the liver.,Adams touched Moira's neck.,3,What area of the body did Adams touch when she went to check Moira?,133760,House M.D.,62.32-71.66,house_s08e12_seg02_clip_19,Adams touched Moira's midsection near the liver. 11722,On the door knob. ,On the bed. ,On the sheets. ,On the chair. ,On the counter .,4,Where did House put his hand before Jeff mentioned his manager?,133761,House M.D.,5-14.5,house_s02e06_seg02_clip_22,On the counter . 11723,a remote,a book,an old blanket,a robe,a cell phone,0,what is on the arm rest next to howard when he is sitting on the sofa talking to leonard and sheldon?,133762,The Big Bang Theory,26.74-36.04,s04e16_seg02_clip_01,a remote 11724,Sheldon painted his face to look like a Zebra.,Sheldon has hooves like a Zebra.,Sheldon is dressed as the back part to a Zebra costume.,Sheldon is dressed as the front part to a Zebra costume.,Sheldon is dressed in a striped black and white costume.,4,Why does Kurt think Sheldon is dressed as a Zebra when Sheldon and Leonard are speaking to Penny?,133763,The Big Bang Theory,16.17-30.21,s01e06_seg02_clip_10,Sheldon is dressed in a striped black and white costume. 11725,She hear they were addictive.,She can't tolerate spraying something up her nose.,She didn't like the steroids in them.,She can't stand the taste.,She can't afford it.,2,Why was Mandy against nasal spray when House suggested using them for her allergy?,133764,House M.D.,26.76-30.33,house_s02e04_seg02_clip_05,She didn't like the steroids in them. 11726,Raj is sitting on the floor.,Raj is standing next to the window.,Raj is sitting on the couch.,Raj is sitting in the chair.,Raj is sitting at the table.,2,"Where is Raj when Penny, Leonard, and Sheldon arrive at the apartment?",133765,The Big Bang Theory,8.6-12.48,s06e19_seg01_clip_01,Raj is sitting on the couch. 11727,Castle,Beckett,Montgomery,Lanie,Gates,0,Who walks in with two bottles of champagne before Esposito and Ryan learn the test results?,133766,Castle,0-87.91,castle_s08e05_seg02_clip_03,Castle 11728,I8,5B,64,4A,7A,3,What was the apartment number on the door when Leonard unlocked it?,133767,The Big Bang Theory,57.44-61.41,s10e13_seg02_clip_00,4A 11729,Bank records,Criminal records,Dental records,Vinyl records,Teft records,1,What did Castle suggest to cross reference mortuary experience with after they think they can't hit them all?,133768,Castle,5.06-8.28,castle_s02e17_seg02_clip_14,Criminal records 11730,Puts her hands over her heart,Puts her hands over her mouth,Raises her hands in the air,Puts her hands together in prayer,Holds Leonard's hand,0,What does Penny do after Toby mentioned God?,133769,The Big Bang Theory,14.65-19.23,s01e10_seg02_clip_14,Puts her hands over her heart 11731,Joey is trying to create a new mixed drink and wants Ross' feedback. ,Ross is incredibly parched. ,It is a tradition between these two friends.,Ross is an alcoholic and loves being served a drink. ,"There is tension between the two and the drink serves as an ""ice breaker"" before delving into a delicate topic. ",4,Why does Joey serve Ross a drink when Ross sits down?,133770,Friends,12.55-25.75,friends_s08e16_seg02_clip_06,"There is tension between the two and the drink serves as an ""ice breaker"" before delving into a delicate topic. " 11732,Thirteen says the opera,Thirteen says the book store.,Thirteen says the movies.,Thirteen says the airport.,Thirteen says the college.,3,Where does Thirteen say she is on her way to after she asks to upgrade her seat?,133771,House M.D.,0-13.5,house_s06e04_seg02_clip_07,Thirteen says the airport. 11733,She suggested they reschedule the surgery to tomorrow.,She suggested they do the surgery today.,She suggested that they not do the surgery.,She suggested rescheduling the surgery to next week.,She suggested having another doctor do the surgery.,0,What did Ms. Seabury suggest to Chief after he reminded her about her surgery?,133772,Grey's Anatomy,32.31-37.78,grey_s03e02_seg02_clip_02,She suggested they reschedule the surgery to tomorrow. 11734,Overalls,Silly hats,Leg Warmers,Jerry Seinfeld outfits,Taco costumes,2,What did Ross where when he was in college?,133773,Friends,15.69-22.41,friends_s07e04_seg02_clip_13,Leg Warmers 11735,Howard and Raj equation,special equation,love equation,Howard equation,Wolowitz Coefficient,4,What did Howard call the equation when he sizes up his potential dating partners?,133774,The Big Bang Theory,0-22.56,s02e20_seg01_clip_02,Wolowitz Coefficient 11736,she hates hospitals ,she didn't want anyone to know ,that was an obvious place to hide ,she doesn't believe in modern medicine ,she said it was just bruises ,4,Why didn't Scarlott want to go to the hospital after she saw Castle,133775,Castle,45.59-54.17,castle_s02e09_seg02_clip_19,she said it was just bruises 11737,That an international incident could be sparked.,That many people in Los Angeles could die,That many people in New York will die in an explosion,That many people will get polio,That many people will receive an ineffective vaccine,0,What does Sophia suggest when things go wrong?,133776,Castle,47.06-65.98,castle_s04e16_seg02_clip_22,That an international incident could be sparked. 11738,Lily hided under a table.,Lily hided behind the door.,Lily hided behind the refrigerator.,Lily hided under the desk.,Lily hided in the garden.,3,What did Lily do after the woman went to sat on the couch?,133777,How I Met You Mother,21.29-56.02,met_s02e07_seg02_clip_14,Lily hided under the desk. 11739,Anthony DeLuca,Richard Castle,Shawn Mendez,Curtis Holt,Bernie Holly,3,Who does Ryan reveal as the boat owner when Kate suggest they find him?,133778,Castle,25.41-36.3,castle_s07e01_seg02_clip_16,Curtis Holt 11740,He answers the phone. ,He leaves. ,He uses the bathroom. ,He turns the television on. ,He gets milk from the fridge. ,4,What is Ross doing when he is talking to Joey about how he's doing?,133779,Friends,4.6-10.01,friends_s09e14_seg01_clip_01,He gets milk from the fridge. 11741,he opened the door,he threw the black male in to the back of the garbage truck,he sat down,he handed over his phone,he started running away,1,what did the white male agent do after he said hes right in here,133780,Castle,25.21-34.21,castle_s04e21_seg02_clip_13,he threw the black male in to the back of the garbage truck 11742,I think We're Alone now,Wack a Mole,Dogs Dying,Animal Planet,Interplanetary Courtship Ritual,4,What song did Ross play for Rachel when he had last seen her?,133781,Friends,34.04-40.02,friends_s06e15-16_seg02_clip_04,Interplanetary Courtship Ritual 11743,at a chair,at a table,at a counter,next to a wall,by the door,2,Where is Ross standing when Joey walks over to him?,133782,Friends,25.84-28.99,friends_s08e15_seg02_clip_18,at a counter 11744,Nikki Heath,He commits every murder in the name of Nikki Heat.,Nellie Heat,Heather Neal,Nick Neal,1,Who did Beckett say the killer is committing the murders in the name of when she's talking to Castle by the white board?,133783,Castle,39.5-45.09,castle_s02e17_seg02_clip_13,He commits every murder in the name of Nikki Heat. 11745,House wants Cameron to speak louder so he can hear Cameron. ,House implies that his rest isn't important because he's a killer. ,House wants the mans advice on House's instructions to the three doctors. ,The man asked House to wake him up when House started discussing the treatment plan.,"House is having a bad dream, and thinks that his brother is in the bed to the left of him. ",1,"What is the reason that House wakes up the man in the bed to his left, after Cameron explains why she's whispering?",133784,House M.D.,19.81-26.56,house_s02e24_seg02_clip_04,House implies that his rest isn't important because he's a killer. 11746,Ryan said he was watching videos online.,Ryan said he was talking to his wife on the phone.,Ryan said he was looking through the building's security footage.,Ryan said he was working on a new novel.,"Ryan said he was grabbing lunch for Beckett, Castle, and Esposito.",2,"What was Ryan doing when Beckett, Castle, and Esposito were discussing the crime scene?",133785,Castle,76.21-92.37,castle_s06e08_seg02_clip_02,Ryan said he was looking through the building's security footage. 11747,Beckett knew that Castle was following her so he would figure it out on his own.,Beckett was cheating on Castle with Vikram,Beckett had to as part of the investigation.,Beckett was trying to protect Castle.,Beckett doesn't trust Castle.,3,Why did Beckett say she was lying to Castle after Beckett asked why Castle couldn't trust her?,133786,Castle,61.44-69.72,castle_s08e08_seg02_clip_22,Beckett was trying to protect Castle. 11748,Joey described Susan Lucci as the sexiest woman he's ever seen.,Joey described Susan Lucci as the woman of his dreams.,Joey described Susan Lucci as the meanest lady he ever met.,Joey described Susan Lucci as the first lady of daytime television.,Joey described Susan Lucci as his mother on botox.,3,How did Joey describe Susan Lucci after he mentioned her?,133787,Friends,45.46-51.54,friends_s03e07_seg02_clip_19,Joey described Susan Lucci as the first lady of daytime television. 11749,That he thinks the world is ending.,That he thinks Penny is a witch.,That he never liked him.,That he likes having his belly scratched.,That he thinks Leonard worries too much.,3,What did Sheldon tell Leonard before Penny walked in?,133788,The Big Bang Theory,6.22-59.26,s02e14_seg02_clip_04,That he likes having his belly scratched. 11750,She stands very close to his face,She is sitting on a chair,She is standing by the door,She is leaning on a wall,She is in the sofa,0,Where does House imagine Amber is when she tells him he made up a story about himself,133789,House M.D.,0-6.49,house_s05e24_seg02_clip_25,She stands very close to his face 11751,Wilson said he always enjoyed Unity Park,Wilson said he always enjoyed Trinity Park,Wilson said he always enjoyed Brinity Park,Wilson said he always enjoyed Crinity Park,Wilson said he always enjoyed Prinity Park,1,Where did Wilson say he always enjoyed when talking to House?,133790,House M.D.,45.51-52.34,house_s08e19_seg02_clip_12,Wilson said he always enjoyed Trinity Park 11752,"Howard, Leonard, and Sheldon talk about how nice Colonel Williams was.","Howard, Leonard, and Sheldon discuss their relationship problems.","Howard, Leonard, and Sheldon discuss movie plans.","Howard, Leonard, and Sheldon go to the park to get some fresh air.","Howard, Leonard, and Sheldon discuss dinner plans.",2,"What do Howard, Leonard, and Sheldon do after they leave Colonel Williams' office?",133791,The Big Bang Theory,72.95-106.5,s10e03_seg02_clip_17,"Howard, Leonard, and Sheldon discuss movie plans." 11753,Try to remain calm,Bounce him harder,Sit down when you hold him,Sing to him,Feed him,0,What advice does Castle give Ryan after he asks what he is doing wrong with the baby?,133792,Castle,4.61-11.99,castle_s06e10_seg02_clip_05,Try to remain calm 11754,girls,nothing,food,friends,"Boy, homework",4,what about list did Ross read when Ross told with Janine ?,133793,Friends,28.34-55.02,friends_s06e15-16_seg02_clip_20,"Boy, homework" 11755,A water bottle. ,A bottle of soda. ,A tray of food. ,A mug of tea. ,A bowl of salad. ,3,What does Sheldon have in his hands when he sits down at the table with Raj and Howard?,133794,The Big Bang Theory,0-2.99,s04e18_seg02_clip_16,A mug of tea. 11756,Twigs and twine.,Sea shells.,Snails.,Sea glass.,Turtle shells.,0,What was the little guy made out of when Beckett and her dad were at the beach?,133795,Castle,48.31-66.26,castle_s05e03_seg02_clip_26,Twigs and twine. 11757,Phoebe,Gavin,Joey,Chandler,Monica,1,Who agrees to watch rachels baby before she leaves the office?,133796,Friends,25.81-29.11,friends_s09e11_seg02_clip_18,Gavin 11758,A jacket,A briefcase,A manila envelope,A hat,A wallet,1,"What is Ross holding in his hand as he walks out the door when he tells Rachel he would like him, Emily, Rachel and Joshua go out to dinner?",133797,Friends,43.09-51.35,friends_s04e20_seg02_clip_04,A briefcase 11759,He is carrying a stack of paperwork.,He is carrying a towel.,He is carrying a food container.,He is carrying a briefcase.,He is not carrying anything.,3,What is Chase carrying when he walks into the locker room?,133798,House M.D.,16.91-26.57,house_s08e05_seg02_clip_25,He is carrying a briefcase. 11760,A flute. ,A drum. ,A tambourine. ,A violin. ,A guitar. ,4,What instrument is Phoebe playing when she is in Monica's apartment?,133799,Friends,0.3-2.36,friends_s07e01_seg02_clip_17,A guitar. 11761,Tying his shoes.,Making a sandwich.,Opening the refrigerator.,Putting his coat on.,Combing his hair.,2,What was Ross doing when he made the joke about Jurassic Parka?,133800,Friends,14.58-22.64,friends_s03e14_seg02_clip_15,Opening the refrigerator. 11762, to make sure he checks the tires,to stay down ,to get out of the car and run,To stay or he will shoot him,to get some coffee ,3,What did Esposito say to Castle before he got out of the car? ,133801,Castle,31.03-41.84,castle_s07e06_seg02_clip_13,To stay or he will shoot him 11763,Talub brought something to cheer up Eve,Cuddy brought something to cheer up Eve,Wilson brought something to cheer up Eve,13 brought something to cheer up Eve,Masters brought something to cheer up Eve,2,Who brought something for Eve when she needed to be cheered up,133802,House M.D.,60.74-72.18,house_s07e07_seg02_clip_13,Wilson brought something to cheer up Eve 11764,If Phoebe wanted to come over for Christmas dinner,If it was because she had been naught and Santa wasn't bringing her any gifts this year,If it was because she was alone this year and had nobody to share the holiday with,If it was because her mom died around Christmas,If Phoebe would feel better if she took the dead tree?,3,What did Monica ask after Phoebe said that the holidays are just hard,133803,Friends,42.08-60.12,friends_s03e10_seg02_clip_14,If it was because her mom died around Christmas 11765,at work,In a church,a school,In a bar,a dancehall ,3,How many was at the table sitting after Marshal left?,133804,How I Met You Mother,20.16-24.81,met_s06e20_seg02_clip_06,In a bar 11766,She wanted something else to drink.,Her tea is cold.,Alex keeps flirting with other girls.,She's hungry.,There's hair in her tea.,2,Why is Izzie annoyed after taking a drink?,133805,Grey's Anatomy,19.21-39.85,grey_s02e08_seg02_clip_14,Alex keeps flirting with other girls. 11767,bread,glasses,bottles,Oreos,plates,3,What do Wilson and House toast with when they are sitting together at the restaurant?,133806,House M.D.,13.3-23.76,house_s08e21_seg02_clip_16,Oreos 11768,A beat cop,Melissa Talbot,A waitress at the pub,A previous suspect,A friend of the suspect's,1,Who does Castle and Beckett think the building superintendent is describing when he describes the person picking up the mail?,133807,Castle,14.4-19.36,castle_s02e05_seg02_clip_20,Melissa Talbot 11769,He stood up.,He drank a glass of liquor.,He took his pills.,He picked up his cane.,He cried.,1,What did House do after he said he was fine?,133808,House M.D.,70.03-78.45,house_s07e16_seg02_clip_12,He drank a glass of liquor. 11770,Phoebe said a baby was hideous.,Phoebe called a baby a dog.,Phoebe said a baby was a snake.,Phoebe said a baby was fugly.,Phoebe said a baby was rat.,1,"Why did Rachel say ""all babies are beautiful"" after she stood up? ",133809,Friends,0-5.8,friends_s10e08_seg02_clip_01,Phoebe called a baby a dog. 11771,He thought that was the term for people who follow fashion.,He thought they both were fans of dictators.,He thought that was the popular way to say good bye.,Joey is a fan of dictators.,Joey and Rachel are fans of dictators and are trying to convert Dina.,0,Why did Joey call Rachel and Dina fashists before he left?,133810,Friends,39.63-53.03,friends_s08e10_seg02_clip_04,He thought that was the term for people who follow fashion. 11772,Because Amy wants Sheldon to stop crying. ,Because Amy is on her period.,Because Amy is hungry.,Because Amy did press the button when Sheldon thought Amy did not.,Because Amy is a mean person who always yells at people.,3,Why did Amy yell at Sheldon when Sheldon asked Amy a question?,133811,The Big Bang Theory,0-57.67,s08e10_seg02_clip_11,Because Amy did press the button when Sheldon thought Amy did not. 11773,A president died.,A gay was president.,A cat almost died.,A person sent a letter to a president.,A friend died.,0,What said Monica after Joey said super gay?,133812,Friends,20.36-24.5,friends_s03e07_seg02_clip_16,A president died. 11774,Marcus assignment is to document Foreman's every word to the patient,Marcus assignment is to document Foreman's patient's words,Marcus assignment is to document Foreman's diagnosis,Marcus assignment is to document Foreman's realtionships,Marcus doesn't have an assignment,0,What is Marcus assignment when he tells Foreman about shadowing him?,133813,House M.D.,2.15-12.04,house_s06e12_seg02_clip_10,Marcus assignment is to document Foreman's every word to the patient 11775,Love notes,Socks,A picture of Anita,Lots of old hair,Ants,2,What does Rachel find when she looks through a year book?,133814,Friends,0-5.52,friends_s08e09_seg02_clip_15,A picture of Anita 11776,A pile of magazines.,A vase full of flowers.,The lady's purse.,A man is standing.,An IV bag and holder.,1,What is behind the women sitting next to the bed when Meredith walks into room?,133815,Grey's Anatomy,84.29-89.2,grey_s03e07_seg02_clip_25,A vase full of flowers. 11777,Sheldon says he grew up in Texas. ,Sheldon says he grew up in Michigan. ,Sheldon says he grew up in Idaho. ,Sheldon says he grew up in Tennessee. ,Sheldon says he grew up in North Carolina. ,0,Where does Sheldon say he grew up when he is talking with Arthur. ,133816,The Big Bang Theory,29.22-30.1,s06e22_seg02_clip_12,Sheldon says he grew up in Texas. 11778,Mason kicked it onto the floor.,Beckett dropped it on the floor. ,It was magnetized onto the ceiling.,Beckett put it back into her jacket.,Beckett put it on the table.,2,Where was the gun after Mason tapped the button?,133817,Castle,8.31-12.47,castle_s08e22_seg02_clip_24,It was magnetized onto the ceiling. 11779,Sheldon walks to the kitchen,Sheldon walks over the a gray machine,Sheldon walks over to a stove,Sheldon walks over to a video game,Sheldon walks out of the room,1,What does Sheldon walk over to after he gets up from the couch?,133818,The Big Bang Theory,51.19-56.84,s05e09_seg02_clip_05,Sheldon walks over the a gray machine 11780,Phone,Coffee,Soda,A patient file,Sandwich,3,What did Cuddy gave House when she was talking to him in the cafeteria?,133819,House M.D.,73.98-82.58,house_s06e12_seg02_clip_10,A patient file 11781,beat him up,shake his hand,make peace with him,kill him,have a drink with him,3,What does Castle think Grady is about to do when the first start conversing?,133820,Castle,16.45-24.45,castle_s07e07_seg02_clip_25,kill him 11782,Addison,Meredith,Cristina,Bailey,Izzie,0,Who asked Burke to say his wedding vows before he stated he wanted them to be perfect?,133821,Grey's Anatomy,8.5-19.13,grey_s03e25_seg02_clip_12,Addison 11783,She was standing by the table.,She was standing by the door.,She was standing by the bar.,She was standing by the couch.,She was standing by the bus.,0,Where was Phoebe standing when she was talking to the girls?,133822,Friends,11.53-21.77,friends_s06e02_seg02_clip_04,She was standing by the table. 11784,Emily.,A newspaper.,A Television.,Chandler.,Joey.,0,What did Ross see which made him leave the airport when he was holding his brown jacket? ,133823,Friends,26.47-33.41,friends_s05e01_seg02_clip_18,Emily. 11785,Wipes the sides off.,Spits in it.,Licks the top.,Takes the cap off.,Wraps a napkin around it. ,3,What does Ross do to Joey's beer before he hands it to him?,133824,Friends,0-5.9,friends_s05e10_seg02_clip_04,Takes the cap off. 11786,Sheldon makes a phone call,Sheldon sits down at the desk,Sheldon goes in the refrigerator,Sheldon gets on his computer,Sheldon leave out the apartment,2,What does Sheldon do after he and Penny walk across the apartment,133825,The Big Bang Theory,24.81-34.21,s01e16_seg02_clip_01,Sheldon goes in the refrigerator 11787,Julian Carter. ,Angelo Vasquez.,Emma Riggs.,Aaron Stokes. ,Raymond Vance.,4,Who is seen on the security footage from inside Angelo's apartment building when Ryan shows Vance?,133826,Castle,14.98-25.87,castle_s06e04_seg02_clip_24,Raymond Vance. 11788,Carol,Emily,Rachel,Monica,Susan,1,Who gets upset when they see Ross and Rachel are boarding the plane?,133827,Friends,4.73-32.46,friends_s05e01_seg02_clip_18,Emily 11789,So he can stop worrying ,So he could blame it on them if it goes wrong,So he can make sure none of his ideas were that bad,So he could turn it into a good one,So he can fire them ,3,Why did House say give him a bad idea after asking the team to give him something? ,133828,House M.D.,0-6.68,house_s05e21_seg02_clip_20,So he could turn it into a good one 11790,They are using a scope with a light so that they can find the right spot to cut. ,She swallowed a flashlight. ,She has a type of bacterial infection that makes her intestines glow. ,She swallowed a pill that takes pictures of her intestines. ,She is spontaniously combusting. ,0,Why is there a light shining through Lou's stomach when the residents are doing her surgery?,133829,House M.D.,25.77-61.66,house_s05e01_seg02_clip_18,They are using a scope with a light so that they can find the right spot to cut. 11791,Sheldon said Stuart worked at his office as an assistant.,Sheldon said Stuart worked at the comic book store.,Sheldon said Stuart worked at a music store.,Sheldon said Stuart worked at a movie theater.,Sheldon said Stuart worked at a convenience store.,1,Where did Sheldon say Stuart worked when explaining to Leonard he was coming over?,133830,The Big Bang Theory,23.61-25.13,s04e17_seg02_clip_05,Sheldon said Stuart worked at the comic book store. 11792,Amy is talking to Penny.,Amy is fixing Sheldon's tie.,Amy is standing with her arms crossed staring at Raj.,Amy is walking around the roof.,Amy is sitting on the roof.,2,What is Amy doing before Raj stands up?,133831,The Big Bang Theory,0-2.85,s05e24_seg02_clip_11,Amy is standing with her arms crossed staring at Raj. 11793,employees only ,Exit sign,Out of Order sign and Caution tape. ,do not enter,At your own risk.,2,What is on the elevator when Beverley and Sheldon come up the stairs?,133832,The Big Bang Theory,0-11.15,s02e15_seg02_clip_12,Out of Order sign and Caution tape. 11794,going home to rest up ,going to a football game,what medications were needed ,if he needed surgery,what time it was,0,What were they talking about before Franni got mad at Doug?,133833,House M.D.,0-11.16,house_s05e21_seg02_clip_10,going home to rest up 11795,Four,Three,One,Two,,3,How many gold chains was Mr. Cana wearing when he was being interrogated by Beckett and Tom?,133834,Castle,39.95-49.49,castle_s02e21_seg02_clip_04,Two 11796,House said Cuddy was angry.,House said Cuddy was happy.,House said Cuddy was sad.,House said Cuddy was upset.,House said Cuddy was irritated.,3,How did House say Cuddy felt when he was about to leave her alone?,133835,House M.D.,28.61-31.47,house_s07e13_seg02_clip_26,House said Cuddy was upset. 11797,She was about sitting down on the bed.,She was standing up.,She was crying.,She was eating.,She was watching the television.,0,What was Rachel doing when Janice asked how are you feeling?,133836,Friends,10.49-20.39,friends_s08e23-24_seg02_clip_40,She was about sitting down on the bed. 11798,Because Esposito wasn't very good at inspecting crime scenes.,Because Esposito knew that Beckett didn't know much about robberies.,"Because it meant that the robbery wasn't random, and the thief was looking for something specific.",Because Esposito wanted to brag to Beckett.,Because it meant that the thief wasn't a very intelligent person.,2,Why did Esposito mention that Alice's valuables were intact when he described the crime scene?,133837,Castle,43.88-56.81,castle_s06e08_seg02_clip_02,"Because it meant that the robbery wasn't random, and the thief was looking for something specific." 11799,A grocery store.,At a cell phone store.,From a person.,Online.,A local pharmacy.,3,What place was the phone purchased that Tory tells Beckett when she comes in the room?,133838,Castle,28.04-40.06,castle_s07e21_seg02_clip_19,Online. 11800,White,Red,Blue,Green,Pink,4,What color towel is Monica wearing around her shoulders when she is getting her haircut?,133839,Friends,8.54-18,friends_s02e01_seg02_clip_13,Pink 11801,Penny had a doctor appointment.,Penny has debt.,Penny had a fling.,Penny went to school.,Penny was sick.,3,What news did Penny have when she spoke to Leonard?,133840,The Big Bang Theory,26.57-51.03,s06e06_seg02_clip_03,Penny went to school. 11802,He pushed House,He punched House in the face,He knocked House's cane away from him,He threw a ball at House,He tried to leave the room,1,What did Jeffery Cole do to House before Taub and others grabbed Jeffery?,133841,House M.D.,22.94-29.82,house_s04e04_seg02_clip_22,He punched House in the face 11803,A guy tries to cut in. ,They are interrupted by a guy with a head set and clipboard. ,Someone steals Joey away. ,Someone steals Janine away. ,Joey falls. ,1,What happens when Joey and Janine are dancing?,133842,Friends,44.81-50.11,friends_s06e10_seg02_clip_07,They are interrupted by a guy with a head set and clipboard. 11804,Took down the x-rays.,Gave Foreman a funny look.,Knocked the x-rays to the floor.,Turned out the lights.,Through his hands in the air.,0,"What did House do after he said ""fine"" then left the room?",133843,House M.D.,60.63-71.65,house_s03e05_seg02_clip_12,Took down the x-rays. 11805,He get some from the office next door.,He gets some from the office supply closet.,He borrow his stapler.,He use some paper clips.,He check his desk for more.,3,"What does Raj suggest after Sheldon ""discovers"" that his stapler is out of staples?",133844,The Big Bang Theory,31.2-52.29,s05e07_seg02_clip_05,He use some paper clips. 11806,There was no food.,The dishes weren't clean.,House ate all the blueberries.,The floor was a mess.,The sink wasn't working.,1,Why was Wilson upset when he walked into the the kitchen while House was on the sofa?,133845,House M.D.,40.05-47.33,house_s02e16_seg02_clip_10,The dishes weren't clean. 11807,a green hoodie,a blue sweater,a red Phillies shirt,a purple button down,a rainbow colored shirt,1,What is Howard wearing when he introduces himself to Ester?,133846,The Big Bang Theory,0-47.08,s02e21_seg02_clip_14,a blue sweater 11808,They are sad,They are murderers,They laugh at death,They don't need to make more bodies,They want their lawyers,3,What do the undertakers say after they ask about their guilt?,133847,Castle,28.99-32.67,castle_s02e17_seg02_clip_14,They don't need to make more bodies 11809,Bob was in the tenth grade.,Bob was in the 11th grade.,Bob was in the 5th grade.,Bob was in the 12th grade.,Bob was in the 7th grade.,0,What grade was Bob in when he thought he would die old with Maria?,133848,House M.D.,33.19-35.56,house_s02e15_seg02_clip_18,Bob was in the tenth grade. 11810,Cuddy. ,Chase. ,House. ,13.,18. ,2,Who does Cameron say told her to try to get Wilson stay when Wilson asks her? ,133849,House M.D.,68.1-92.03,house_s05e01_seg02_clip_18,House. 11811,Five,Seven,Four,Three,Six,2,"How many people were in the hotel lobby when Castle, Haley and Alexis were walking down the hall?",133850,Castle,2.3-7.37,castle_s08e14_seg02_clip_00,Four 11812,Why don't you find someone else to play with?,Why don't you call her?,Why don't you go get some coffee?,Why don't you get into a cab and go find her?,Why don't you just quit playing music.,1,"What did Monica tell Phoebe to do when she told her ""you obviously want to.""?",133851,Friends,0.65-4.88,friends_s03e14_seg02_clip_10,Why don't you call her? 11813,He was forcing her to quit being an idiot,He was forcing her to do her job ,He was forcing her to trust him,He was forcing her to be honest,He was forcing her to grow some balls ,1,What did House yell at Cuddy after she accused him of forcing her to choose between the situation and her child?,133852,House M.D.,34.18-42.85,house_s05e12_seg02_clip_13,He was forcing her to do her job 11814,Wheel of Fortune.,Jeopardy. ,Match Game.,Family Feud.,The Price is Right. ,0,What game show did Sheldon ask Howard about when they were sitting on the couch?,133853,The Big Bang Theory,21.05-27.77,s04e19_seg02_clip_09,Wheel of Fortune. 11815,Move her to Vietnam,Sell her,Keep her in hiding,Sell her to a brothel,Kill her,4,What does Wilson say the parents tried to do to the girl after he reveals what the One Child Policy is?,133854,House M.D.,18.74-24.1,house_s05e04_seg02_clip_23,Kill her 11816,One of the students. ,Weber. ,Wilson. ,"Cameron, through House's earpiece. ",House's ex in a text message. ,1,"Who tells House that he hasn't changed, when he walks up stairs?",133855,House M.D.,80.5-87.02,house_s02e12_seg02_clip_09,Weber. 11817,A clipboard with names on it. ,A pointer. ,"A metal ring, with key on it. ",A jar of pennies. ,A bag full of presents.,1,"What is Ross holding when he says, ""So is everybody here??""",133856,Friends,25.98-31.13,friends_s08e12_seg02_clip_21,A pointer. 11818,Burke showed Bailey his new jacket.,Burke showed Bailey his new phone.,Burked showed Bailey his haircut. ,Burke showed Bailey his watch.,Burke showed Bailey a CT scan of a guy she called the tattooed masochist.,4,What did Burke show Bailey after she walked into the room?,133857,Grey's Anatomy,17.74-29.71,grey_s01e07_seg02_clip_04,Burke showed Bailey a CT scan of a guy she called the tattooed masochist. 11819,Cristina hugs Burke.,Cristina dances with Meredith.,Cristina kissses Burke.,Cristina turns to look up at Izzie.,Cristina walks out the door.,3,What does Cristina do after Izzie says she can't believe her of all people?,133858,Grey's Anatomy,38.26-39.61,grey_s01e07_seg02_clip_10,Cristina turns to look up at Izzie. 11820,A key,A drawing,A bag,A light,A pen,1,What's on the door when Rachel opens it?,133859,Friends,0-8.25,friends_s05e21_seg02_clip_06,A drawing 11821,Rachel is upset because Ross is playing games with her.,Rachel is upset because Joey told her secrets.,Rachel is upset because Joey is playing a prank on her and Phoebe.,Rachel is upset because Phoebe tells her Monica and Chandler are plotting to get her out of the apartment.,Rachel is upset because she learns someone is messing with her.,4,Why is Rachel upset when talking to Phoebe?,133860,Friends,3.3-9.3,friends_s05e14_seg02_clip_13,Rachel is upset because she learns someone is messing with her. 11822,flask ,bag,wallet,water bottle,jacket,4,What was Lucas holding when he was walking out of Cuddy office?,133861,House M.D.,25.4-31.3,house_s05e03_seg02_clip_12,jacket 11823,In a cafe,Walking down the street,In the office,In the car,In the movie theatre,3,Where are Amy and Howard when talking about Neil Diamond,133862,The Big Bang Theory,3.25-12.12,s07e03_seg02_clip_07,In the car 11824,He gets pulled over,He crashes,He goes off road,They make it to their destination safely,He stops all of a sudden,0,What happens when Wilson is driving with House?,133863,House M.D.,46.38-56.78,house_s05e04_seg02_clip_10,He gets pulled over 11825,Wilson says a white coat,Wilson says a tie,Wilson says a suit,Wilson says a badge,Wilson says a name tag,0,What does Wilson say House should put on after House says people think he is a patient?,133864,House M.D.,0-17.04,house_s01e01_seg02_clip_00,Wilson says a white coat 11826,He called himself the Beer Master.,He called himself Bro-da.,He called himself Papa Barney.,He called himself the Ladies Man.,He called himself Mr. Barney.,1,What name does Barney call himself before talking about Star Wars?,133865,How I Met You Mother,3.43-11.55,met_s03e05_seg02_clip_14,He called himself Bro-da. 11827,A cup,A sandwich,Twins,A magazine,The remote,2,What is Joey holding when he is in Monica's apartment,133866,Friends,0-5.36,friends_s10e17-18_seg02_clip_23,Twins 11828,A cell phone.,A glass of wine.,A bottle of beer.,A book.,A deck of cards.,1,What was Amy holding when Sheldon knocked on the door?,133867,The Big Bang Theory,12.61-17.97,s07e05_seg02_clip_02,A glass of wine. 11829,Like a bronco coming out of the chute,Like a rabbit being chased,Like cats and dogs,Like singing canary ,Like a dog chasing its tail,0,How does Gavin describe Rachel after asking why he needed to hide?,133868,Friends,46.33-52.63,friends_s09e13_seg02_clip_10,Like a bronco coming out of the chute 11830,Sheldon was happy.,Sheldon walked around saying un happy with casting choice.,Sheldon wanted to be in the movie.,Sheldon thought the hulk had died.,Sheldon thought Leonard would be in the movie.,1,What did Sheldon do after he found out the hulk was replaced?,133869,The Big Bang Theory,0-46.83,s06e02_seg02_clip_15,Sheldon walked around saying un happy with casting choice. 11831,She says maybe they can compromise on a pet. ,She says maybe they can compromise on the apartment. ,She says maybe they can compromise on the house. ,She says maybe they can compromise on children. ,She says maybe they can compromise on work. ,2,What does Bernadette say they can compromise on when they are in the kitchen talking?,133870,The Big Bang Theory,0.6-14.71,s09e07_seg02_clip_02,She says maybe they can compromise on the house. 11832,Joey says he needs to go beg for spare change.,Joey says he gotta go sell some Christmas trees.,Joey says he needs to go ride the subway.,Joey says he needs to go dress as Santa.,Joey says he needs to go pick up his friend.,1,Where does Joey say he needs to do after Ross leaves Central Perk?,133871,Friends,16.75-21.09,friends_s03e10_seg02_clip_01,Joey says he gotta go sell some Christmas trees. 11833,Took off his shirt,Looked at his iphone,Gave Abby a hug,Gave Abby a pat on the head,Pulled a paper and pencil,4,What did Barney do after he told Abby to contact Ted?,133872,How I Met You Mother,33.81-80.5,met_s03e19_seg02_clip_18,Pulled a paper and pencil 11834,A thermometer.,A tissue.,A tongue depressor.,A patient's records.,A wink.,3,What does Taub give Cameron after he tells her sneezing too hard could have cause a lack of taste.,133873,House M.D.,54.96-60.96,house_s05e24_seg02_clip_00,A patient's records. 11835,Because he is not allowed to,Becasue the plaintif is on the other side of the wall,Becasue he needs permission to,Because he needs to find out information,Becasue he can't be seen near someone,1,Why does House not want to go into the space when Cuddy is talking to patients/?,133874,House M.D.,10.72-15.67,house_s01e09_seg02_clip_08,Becasue the plaintif is on the other side of the wall 11836,They are going to go get their nails done.,They are going to play board games.,They are going to make jewelry.,They are going to watch movies.,They are going to go shopping for new shoes.,2,What did Raj tell Howard that he came up with to do after they said they were going to play darts and drink beer?,133875,The Big Bang Theory,15.26-28.68,s07e07_seg02_clip_00,They are going to make jewelry. 11837,A glass,Her purse,A comb,Her keys,A phone,4,What does Penny pick up after she walks away from Sheldon?,133876,The Big Bang Theory,16.54-22.34,s02e21_seg02_clip_06,A phone 11838,Hey,What's up.,Hola,Yea,"Hello, you.",4,What does Phoebe say when she answers the phone?,133877,Friends,0-2.4,friends_s05e14_seg02_clip_12,"Hello, you." 11839,a card with information,a picture,an invitation,a candy bar, a drink,0,what does castle hand beckett when they are looking through a book?,133878,Castle,51.07-60.74,castle_s03e10_seg02_clip_24,a card with information 11840,Because Lily doesn't want to be reconized.,Because Lily's stepmother is calling.,Because is colling the colection agency.,Because she owns money,Because Marshall is calling her.,0,Why Lily is pretending to be an answer machine when holding a phone?,133879,How I Met You Mother,1.5-5.1,met_s06e14_seg02_clip_12,Because Lily doesn't want to be reconized. 11841,A towel,A pen,A book,A cup,A knife,0,What did Penny have in her hand when Sheldon arrived?,133880,The Big Bang Theory,24.72-30.21,s01e08_seg02_clip_08,A towel 11842,Bananas,Vegetables,Drugs,Diet Coke,Tofu cake,4,What does Rachel offer Joey when she spots him?,133881,Friends,0-4.58,friends_s07e11_seg02_clip_10,Tofu cake 11843,a sofa,a stool,a chair,a box,a table,2,Where is Phoebe sitting when Monica walks over to her?,133882,Friends,5.89-7.75,friends_s08e16_seg02_clip_05,a chair 11844,The cafeteria ,His office,A supply closet,A patient's room,The operating room,4,Where was house standing outside of when Cuddy approached him,133883,House M.D.,31.99-46.03,house_s03e07_seg02_clip_24,The operating room 11845,Chandler sits on Joey. ,Chandler leaves. ,Chandler throws something at Rachel. ,Chandler walks around the couch. ,Chandler sits on Monica. ,3,What does Chandler do after Joey sits down?,133884,Friends,55.78-59.03,friends_s02e04_seg02_clip_14,Chandler walks around the couch. 11846,Sits on the floor,Turns her back to the camera,Stands behind chandler,Throws her hands up to hear head,Fires the photographer,3,What does Monica do when she says does this look like a conversation I want to remember? ,133885,Friends,17.37-22.41,friends_s08e01_seg02_clip_01,Throws her hands up to hear head 11847,His feet ,His kungs,His head,His stomach,His fingers,3,What is the doctor checking when she is looking at the patient ,133886,House M.D.,31.6-39.39,house_s06e04_seg02_clip_04,His stomach 11848,Crazy.,An idiot.,A moron.,An ass.,A fool.,4,What did Eric say Castle was before Beckett told him her relationship with Castle is complicated?,133887,Castle,43.92-52.25,castle_s05e21_seg02_clip_19,A fool. 11849,House told Leon to go away.,"House told Leon to quit eavesdropping,",House told Leon to go get him a beer.,House told Leon to find another office.,House told Leon it was good to see him.,0,"What did House say to the Leon,the janitor when he saw Leon at the door?",133888,House M.D.,63.01-71.76,house_s04e01_seg02_clip_25,House told Leon to go away. 11850,Red,Black,Purple,Yellow,Blue,2,What color was Sheldon's shirt when he said his mother was very excited? ,133889,The Big Bang Theory,49.9-58.03,s03e09_seg02_clip_01,Purple 11851,A plate of tacos,A glass of beer,A menu,A bottle of wine,A vase of flowers,1,What was on the table in front of Ted and Marshall when Barney told them he was his bro-dah?,133890,How I Met You Mother,9.37-16.86,met_s03e05_seg02_clip_14,A glass of beer 11852,He is laying down on couch.,He is running down a hallway.,He is standing in the cafeteria.,He is opening a door.,He is riding on the back of a motorcycle.,4,What is Sheldon doing when he is screaming?,133891,The Big Bang Theory,38.24-48.18,s02e05_seg02_clip_04,He is riding on the back of a motorcycle. 11853,Earrings.,A mess.,A bracelet.,An ankle bracelet.,A ring.,1,What did Penny say she was making before Howard offered his smoldering iron?,133892,The Big Bang Theory,21.09-37.21,s07e07_seg02_clip_04,A mess. 11854,Rachel pushes a duffel bag.,Rachel pushes a stuffed animal.,Rachel pushes a couch.,Rachel pushes a box.,Rachel pushes a bar stool.,4,What does Rachel push out of the way when walking towards Joey?,133893,Friends,57.63-58.83,friends_s07e02_seg02_clip_18,Rachel pushes a bar stool. 11855,Chase sat down reading a paper,Chase picked up a box look at it with a flash light.,Chase drank coffee,Chase looking at a video game,Chase did nothing,1,What did Chase do when he was in a dark room talking to Masters?,133894,House M.D.,13.65-19.81,house_s07e18_seg02_clip_10,Chase picked up a box look at it with a flash light. 11856,Foreman,Amber,Chase,Wilson,House,4,Who falls through the floor when this scene takes place? ,133895,House M.D.,54.82-65.01,house_s08e22_seg02_clip_11,House 11857,A document,A gun,A phone,A map,A picture,4,What was Beckett holding in front of her when she was interrogating Low?,133896,Castle,6.89-8.48,castle_s03e03_seg02_clip_16,A picture 11858,Esposito,Beckett,Caldwell,Ryan,Gates,2,Who is Castle walking with when they are looking for a service elevator?,133897,Castle,0-9.86,castle_s08e13_seg02_clip_21,Caldwell 11859,A gift card,Coffee,Money,A pen,Credit card ,2,What did Chi offered Adams before she said keep it? ,133898,House M.D.,8.46-12.02,house_s08e03_seg02_clip_08,Money 11860,Don't trust your wife.,Always listen to your wife,Save your money,Buy a nice house,Wait to have kids,0,What advice does Phoebe give Eric after she tells him she won't make the wedding?,133899,Friends,22.06-36.87,friends_s08e06_seg02_clip_16,Don't trust your wife. 11861,Model of the heart,Model of the brain,Model of the eye,Model of the lungs,Model of the skeletal system,1,What medical model is on the shelf House stands before when he is discussing the patient?,133900,House M.D.,10.35-13.95,house_s03e15_seg02_clip_17,Model of the brain 11862,In his back,In his arm,In his neck,In his stomach,In his thigh. ,0,Where on the patient did Kutner put the syringe when drawing the blood. ,133901,House M.D.,54.62-64.17,house_s05e06_seg02_clip_16,In his back 11863,Ross tried to push away the food.,Ross tried to push away the cups.,Ross tried to push away the plates.,Ross tried to push away the pool balls.,Ross tried to push away the napkins.,3,What did Ross try to push away when he was trying to clear the table?,133902,Friends,19.96-25.21,friends_s03e06_seg02_clip_19,Ross tried to push away the pool balls. 11864,He walks away holding is thumb up in the air.,He makes the okay sign with his fingers and walks out of the parking garage.,He shakes his head and walks out of the parking garage.,He takes out his cell phone to record.,He continues to walk to his car to get in.,0,What does the mans on the opposite side of the garage do when Eddie says private party he has it covered tonight?,133903,House M.D.,27.15-36.94,house_s06e10_seg02_clip_18,He walks away holding is thumb up in the air. 11865,Walk the dog.,Dance around the room.,Lay down for a little nap.,Walk up and talk to Amy and Sheldon.,Run outside the building.,3,What did Leonard decide to do before he went to the fridge?,133904,The Big Bang Theory,46.57-51.89,s10e05_seg02_clip_00,Walk up and talk to Amy and Sheldon. 11866,That she was in labor.,That she ate a bad cheeseburger,That she needed an antacid.,That she was faking and trying to leave early.,That Monica actually had stomach pains too.,0,What conclusion did Monica come to when Erica was having stomach pains?,133905,Friends,39.06-44.25,friends_s10e16_seg02_clip_18,That she was in labor. 11867,Castle was thinking about how to ask Beckett to dinner.,Castle had a dentist appointment later that day.,Castle had just visited his mother in the hospital.,Castle was worried about his daughter away at school.,Castle had sex with his ex-wife that morning.,4,Why did Castle appear to be distracted when everyone else was investigating the body?,133906,Castle,18.26-29.03,castle_s01e06_seg02_clip_00,Castle had sex with his ex-wife that morning. 11868,A can of soda. ,A bag of vegetables. ,A tube of lipstick. ,An ice pack. ,Her finger. ,3,What is Rachel holding up to her lip when she is in the hallway?,133907,Friends,0-1.55,friends_s04e16_seg02_clip_19,An ice pack. 11869,A donut,A case file,An energy drink,A paper airplane,A cup,2,What is House drinking before Taub comes in?,133908,House M.D.,29.11-38.23,house_s05e22_seg02_clip_16,An energy drink 11870,Sitting at the table.,Sitting on the couch.,Standing between the two couches.,Laying on the couch.,Standing in front of the window.,2,Where was Haley when Castle said they were in a five star hotel? ,133909,Castle,44.24-49.77,castle_s08e14_seg02_clip_00,Standing between the two couches. 11871,Happy,Sad,Mad,Bored,Annoyed,1,How does Rachel look when she's talking to Ross?,133910,Friends,20.8-27.73,friends_s05e05_seg02_clip_17,Sad 11872,T sleep.,Into the kitchen.,To the window.,Outside.,To turn off the television.,4,Where does Chandler go after stepping past Joey?,133911,Friends,50.55-53.66,friends_s08e19_seg02_clip_04,To turn off the television. 11873,In his house,In the hallway,In the bathroom,"In front of Ryan, Beckett, and Espocito",In the interview room,3,Where is Castle standing before he talks to Hector?,133912,Castle,0-30.29,castle_s08e20_seg02_clip_22,"In front of Ryan, Beckett, and Espocito" 11874,Because Sheldon scares aways Kripke. ,Because Leonard learns Sheldon is going to be interviewed on NPR.,Because Sheldon called Kripke a stupid head.,Because Sheldon ate all his food. ,Because Sheldon bought a Volcom shirt. ,1,How come Leonard congradulates Sheldon after Kripke walks away?,133913,The Big Bang Theory,0-41.78,s03e09_seg02_clip_01,Because Leonard learns Sheldon is going to be interviewed on NPR. 11875,He calls the patient Humpty Dumpty,He calls the patient Old King Cole,He calls the patient Jack Sprat,He calls the patient Little Boy Blue,He calls the patient Georgie Porgie,0,Who does Dr.Simpson refer to the patient as when Foreman is examining the tissue?,133914,House M.D.,26-32.28,house_s03e13_seg02_clip_18,He calls the patient Humpty Dumpty 11876,What was your name again?,How long are you here for?,Are you hungry? Thirsty? can I offer you anything?,What brings you to town?,What can we do to make your stay enjoyable?,2,What did Leonard say after Elizabeth said Hi-lo?,133915,The Big Bang Theory,0-6.98,s03e21_seg02_clip_03,Are you hungry? Thirsty? can I offer you anything? 11877,gum,tissue,cellphone,money,lint,2,What does Barney pull from his pocket when the score is mentioned?,133916,How I Met You Mother,48.12-56.61,met_s02e14_seg02_clip_02,cellphone 11878,Sitting in a hospital bed.,Sitting at his desk.,In the break room.,In the bathroom.,In the elevator.,0,Where was House when he said he took an oath?,133917,House M.D.,46.03-53.62,house_s07e23_seg02_clip_11,Sitting in a hospital bed. 11879,Joey.,Monica.,Rachel.,The Duchess of Cambridge.,Taylor Swift.,2,"Who ended up with the ""nice room"" after Phoebe offered it to her?",133918,Friends,0.92-21.05,friends_s06e18_seg02_clip_07,Rachel. 11880,Raj watches a lot of movies.,Raj has never had a girlfriend.,Raj does not have any family.,Raj is the loner unwelcome type of guy he feels.,Raj is feeling depressed when talking to Penny.,0,Why does Raj call himself one of the lonely guys when talking to Penny?,133919,The Big Bang Theory,0.6-9.33,s07e06_seg02_clip_05,Raj watches a lot of movies. 11881,Ashley,Rebecca,Monica,Angela,Talia,1,What does Cameron say the patient's name is before they begin the procedure?,133920,House M.D.,0-14.58,house_s01e01_seg02_clip_05,Rebecca 11882,House's patient dropped their pants.,House's patient started to cry.,House's patient laughed uncontrollably.,House's patient ran to the bathroom.,House's patient black out.,4,What did House's patient do when he pissed his pants?,133921,House M.D.,3.19-5.92,house_s02e12_seg02_clip_21,House's patient black out. 11883,He holds up crossed fingers. ,He takes a drink of coffee. ,He eats a muffin. ,He gets up and hugs Rachel. ,He gets up and smacks Chandler. ,0,What does Joey do after Monica scratches her neck?,133922,Friends,16.25-22.41,friends_s01e09_seg02_clip_01,He holds up crossed fingers. 11884,He took notes in his notepad. ,He made some coffee.,He answered his phone.,He watched TV.,He sat down.,4,What did Casle do after walking into the room?,133923,Castle,66.18-71.55,castle_s03e02_seg02_clip_18,He sat down. 11885,Chase pulls out a knife.,Chase pulls out a bag of drugs.,Chase pulls out a bottle of alcohol.,Chase pulls out a bottle of medicine.,Chase pulls out a cell phone.,3,What does Chase pull out of the pouch in the drawer when digging around?,133924,House M.D.,101.14-103.81,house_s01e14_seg02_clip_20,Chase pulls out a bottle of medicine. 11886,A gum,A pizza,A meat,A chicken,A pen,0,What did Chandler spit when Jill saved him?,133925,Friends,14.17-24.2,friends_s01e07_seg02_clip_18,A gum 11887,Alex's mom is waiting for House.,Foreman is waiting for House.,Chase is waiting for House.,Cuddy is waiting for House.,Cameron is waiting for House.,4,Who is waiting for House in the hallway when he leaves Alex's exam room?,133926,House M.D.,42.05-48.76,house_s02e13_seg02_clip_02,Cameron is waiting for House. 11888,3 days ago.,2 days ago.,4 days ago.,5 days ago.,1 day ago.,0,How many days ago did Rachel say Phoebe just had a date when they were at the coffee shop discussing dating?,133927,Friends,0-5.41,friends_s07e15_seg02_clip_01,3 days ago. 11889,Soda,Coffee,Chips,Candy ,Gum,1,What did wardell hand the stranger when he walked up to the vending machine? ,133928,Castle,55.46-59.06,castle_s03e19_seg02_clip_05,Coffee 11890,She twisted her ankle,She pulled out a chunk of her hair,She pulled out 4 eyelashes ,She dropped salt on the table by accident ,She walked by a black cat,2,What does Phoebe say she does that can't be good when talking to Rachel in the kitchen?,133929,Friends,22.3-28.93,friends_s01e01_seg02_clip_09,She pulled out 4 eyelashes 11891,A cart.,An office chair.,A wheelchair.,A car.,A desk.,0,What was Julian pushing when Ryan called to him?,133930,Castle,40.51-45.51,castle_s06e04_seg02_clip_19,A cart. 11892,A one-hundred dollar bill.,A sharpened pencil.,A business card.,A pair of glasses.,A thank you card.,0,What does the man wear glasses give to Dr House when they are alone?,133931,House M.D.,11.88-18.04,house_s07e02_seg02_clip_14,A one-hundred dollar bill. 11893,She placed it on the floor,She takes it with her,She tosses it,She placed it on the table,She passes it to Raj,3,What did Amy do with her mug when the girls started leaving?,133932,The Big Bang Theory,63.23-70.1,s05e08_seg01_clip_01,She placed it on the table 11894,Monica leaves,Chandler leaves,Rachel leaves,Ross leaves,No one leaves,3,"Who leaves the apartment after Rachel, Monica and Ross talk?",133933,Friends,25.21-31.2,friends_s06e04_seg02_clip_05,Ross leaves 11895,A nose ring,An eyebrow ring,A tattoo on her forehead,A mole,A port wine birthmark,1,What is on the face of the girl Leonard is talking to before he gets kicked out of her apartment?,133934,The Big Bang Theory,0-5.62,s05e07_seg02_clip_14,An eyebrow ring 11896,remote,emma,flowers,phone,book,2,What is Rachel holding when she tells Ross she needs to talk to him?,133935,Friends,0-5.42,friends_s09e01_seg01_clip_01,flowers 11897,Hung up on him. ,Spilled coffee on her laptop. ,Deleted all her work on her laptop. ,She broke a nail. ,Shipped 3000 bras to personnel. ,4,What did Rachel accidentally do when she was talking to Ross? ,133936,Friends,13.58-18.89,friends_s03e12_seg02_clip_02,Shipped 3000 bras to personnel. 11898,In the Time Machine,On the couch,In the wooden chair,At the kitchen counter,On the floor,0,Where is Leonard sitting before Penny comes into the apartment,133937,The Big Bang Theory,0-11.1,s01e14_seg02_clip_06,In the Time Machine 11899,The coffee house door,Ross's arm,Her chest,A fire hydrant,Some bushes,2,What did Phobe press her hand against after Ross said something about not having it all worked out yet?,133938,Friends,44.16-53.89,friends_s06e02_seg01_clip_01,Her chest 11900,station vet,dog psychiatrist,dog psychic,guy at Sunfare,the professional dog trainer,3,Who told Castle that the dog's actions were a sign of bereavement when the dog was pawing at the ground?,133939,Castle,58.76-71.15,castle_s04e13_seg02_clip_08,guy at Sunfare 11901,They are outside the President's house. ,They are outside Sheldons childhood house. ,They are outside Howard's house. ,They are outside Carrie Fisher's house. ,They are outside the hotel. ,3,Who's house are they outside of when they are outside a house?,133940,The Big Bang Theory,3.92-6.72,s07e14_seg02_clip_16,They are outside Carrie Fisher's house. 11902,a diamond,a clover,a heart,a spade,a queen,1,What type of card was missing from House's hand for him to get a flush when his cards were on the table?,133941,House M.D.,40.3-46.62,house_s02e19_seg02_clip_17,a clover 11903,he wants to give up a traitor ,he wants to make a deal ,"He wants justice for grigory, anya, and sergei",he is going to give up a name,he wants to work for the state department ,2,Why does Vasiliy seem desparate when speaking with Becket? ,133942,Castle,7.28-25.49,castle_s08e11_seg02_clip_20,"He wants justice for grigory, anya, and sergei" 11904,He says he needs to run to the store.,He says they should go out for dinner.,He says they all need to go get manicures.,He says the should all make reservations.,He says that they should turn their attention to Joey's dream again.,4,What does Chandler says after he turns to Monica?,133943,Friends,0-8.85,friends_s05e16_seg02_clip_08,He says that they should turn their attention to Joey's dream again. 11905,Because Stuart is now living with Howard's mother rent-free.,Because Stuart is calling Bernadette names.,Because Stuart won't leave Howard's apartment.,Because Stuart stole Howard's wallet.,Because Stuart is a better Warcraft player.,0,Why is Howard upset when talking to Stuart?,133944,The Big Bang Theory,0-21.77,s08e01_seg02_clip_15,Because Stuart is now living with Howard's mother rent-free. 11906,Going on a vacation.,Meeting with Monica.,Having dinner with Chandler.,Going to see Ross.,Going home to Phoebe.,4,What can't Gary wait for when he and Chandler are talking about Phoebe?,133945,Friends,9.15-20.36,friends_s05e21_seg02_clip_04,Going home to Phoebe. 11907,Raj,Penny,Howard,Sheldon,Bernadette,3,Who is with Leonard when he is in the car?,133946,The Big Bang Theory,0-5.23,s06e24_seg01_clip_02,Sheldon 11908,Ted runs to the door.,Ted kisses Robin.,Ted sits on the floor.,Ted closes his eyes and pulls away from Zoey.,Ted dances with Lily.,3,What does Ted do before he tells Zoey he knows she is going through a lot?,133947,How I Met You Mother,5.94-8.75,met_s06e16_seg01_clip_00,Ted closes his eyes and pulls away from Zoey. 11909,I blazed a trail from high to low.,These trails were well-traveled.,"From this spot, I also launched an expedition to those two large ridges down there. ",I scouted the territory well.,I found all kinds of things you won't find.,2,What did Little Barney say to Ted about an expedition after he planted his flag?,133948,How I Met You Mother,21.19-32.99,met_s03e04_seg02_clip_12,"From this spot, I also launched an expedition to those two large ridges down there. " 11910,Ross and Chandler were outside of Central Perk.,Ross and Chandler were in an alley.,Ross and Chandler were outside of their old middle school.,Ross and Chandler were in a park.,Ross and Chandler were outside of their old high school.,0,Where were Ross and Chandler when they were about to throw down with the bullies?,133949,Friends,0-22.13,friends_s02e21_seg02_clip_18,Ross and Chandler were outside of Central Perk. 11911,Monica,Rachel,Ross,Joey ,Chandler,1,Who is on the phone when on a date in a restaurant?,133950,Friends,0-14.46,friends_s04e21_seg02_clip_13,Rachel 11912,an elementary school,Stoia Tucker,NYU,a high school downstate,Georgetown,1,Where was Sebestian Parker giving a presentation when he collapsed according to Cuddy?,133951,House M.D.,10.14-20.28,house_s02e04_seg02_clip_00,Stoia Tucker 11913,Ryan told Castle that Nina's prints were on the murder weapon,Ryan told Castle that Weller's prints were on the murder weapon,Ryan told Castle that Slaughter's prints were on the murder weapon,Ryan told Castle that Jackson's prints were on the murder weapon,Ryan told Castle that Brandon's prints were on the murder weapon,2,Who did Ryan say prints were on the murder weapon when he is talking to Castle on the phone,133952,Castle,30.51-39.36,castle_s08e06_seg02_clip_05,Ryan told Castle that Slaughter's prints were on the murder weapon 11914,A newspaper ,A candy bar,A gift wrapped present,A pill bottle,A bunny,2,What does Kutner hand House before saying Merry Christmas,133953,House M.D.,78.8-88.4,house_s04e10_seg02_clip_15,A gift wrapped present 11915,A duffle bag.,A briefcase.,A backpack.,A large envelope.,A small box.,0,What did Bilal have in his hand before he got into the SUV?,133954,Castle,51-54.96,castle_s07e20_seg02_clip_24,A duffle bag. 11916,Leonard went to School before dinner.,Leonard went to Penny's house/flat before dinner.,Leonard went to church before dinner.,Leonard went to Sheldon's house before dinner.,Leonard went to the clinic before dinner.,1,Where did Leonard go before dinner?,133955,The Big Bang Theory,0-29.88,s01e03_seg02_clip_10,Leonard went to Penny's house/flat before dinner. 11917,Beckett asks what time it is,Beckett asks where Tyler was last night,Beckett asks Tyler on a date,Beckett asks Tyler for an apple,Beckett asks Tyler for the time,1,What does Beckett ask Tyler after Tyler says he was going to propose?,133956,Castle,7.21-13.07,castle_s02e16_seg02_clip_05,Beckett asks where Tyler was last night 11918,Leave me be,Leave me alone,You are rude,Im ignoring you,Go away,4,What does the lady in the green outfit tell castle to do after he continues to pester her?,133957,Castle,72.04-76.15,castle_s02e24_seg02_clip_05,Go away 11919,He doesn't say a thing.,A signed copy of RL Stine's first Goosebumps novel.,A turkey.,Raj's companionship.,Goosebumps,4,What does Sheldon have when the lamp is turned on?,133958,The Big Bang Theory,0-35.92,s01e09_seg01_clip_00,Goosebumps 11920,A window opens,The floor opens,The ceiling opens,A wall opens,The door opens,4,What happens after Beckett pushes the lever down?,133959,Castle,46.93-51.53,castle_s08e12_seg02_clip_23,The door opens 11921,Kathy,Kelly,Katherine ,Katie,Katrina ,0,Who does Ted say he just got off the phone with when he sits down in the booth?,133960,How I Met You Mother,12.01-15.31,met_s03e08_seg02_clip_04,Kathy 11922,Has a guy ever had a crush on you?,Have you ever had a crush on a guy?,Has a girl ever had a crush on you?,Have you ever had a crush on a girl?,Have you ever had a crush?,0,What did Ross ask Joey when he was fixing his bow tie?,133961,Friends,10.6-17.18,friends_s07e18_seg02_clip_06,Has a guy ever had a crush on you? 11923,7,4,6,5,1,3,How many times the Simmons shot when his body was discovered?,133962,Castle,60.54-64.54,castle_s06e22_seg02_clip_07,5 11924,Green,Red,Blue,Pink,Red and brown plaid,3,What color robe did Leonard have one when he followed Penny through the apartment?,133963,The Big Bang Theory,5.05-7.89,s05e24_seg01_clip_00,Pink 11925,Leslie felt awkward that she had to spell things out so explicitly for Leonard.,Leslie felt relieved that she wouldn't have to worry about getting too emotionally attached to Leonard.,Leslie felt angry that Leonard was making her do all the work. ,Leslie felt sad that Leonard didn't care enough about her to do any of the work. ,Leslie felt nothing because she had nothing better to do.,1,How did Leslie feel when Leonard agreed to her schedule for the date?,133964,The Big Bang Theory,0-33.09,s02e02_seg02_clip_04,Leslie felt relieved that she wouldn't have to worry about getting too emotionally attached to Leonard. 11926,Milk.,Cake.,Hot wings.,Corsages.,Face masks.,3,What did Rachel say she put in the fridge when Joey was eating from a bowl? ,133965,Friends,23.74-35.48,friends_s10e12_seg02_clip_10,Corsages. 11927,On front Shedon.,On the middle of the room.,Next to the counter.,Behind the stairs.,On front Penny.,0,Where stans Amy when talking to Sheldon?,133966,The Big Bang Theory,32.97-64.02,s08e08_seg02_clip_16,On front Shedon. 11928,Penny says No!,Penny says only a little bit. ,Penny says only on Tuesdays. ,Penny says only half of the time. ,"Penny says she thought so before, but stopped slut shaming herself. ",0,How does Penny react when Amy asks her if she thinks of herself as a slut?,133967,The Big Bang Theory,36.91-40.21,s04e01_seg02_clip_14,Penny says No! 11929,"""I told you that I wanted a new doctor!""","""What are you doing in here?""","""What did you find out?""","""My wife and I have decided to move our son to another hospital.""","""I'm glad you guys are here. I need something to eat and I didn't want to leave him alone.""",2,What does the patient's father ask when House and his intern walk into the room?,133968,House M.D.,10.35-21.61,house_s03e15_seg02_clip_17,"""What did you find out?""" 11930,Her job,Her mother,Her relationship with Leonard,Her pet dog,Her car,2,What does Sheldon suggest after Penny's acting career?,133969,The Big Bang Theory,49.62-58.61,s07e20_seg02_clip_00,Her relationship with Leonard 11931,45,50,40,55,60,2,When does Cameron say the patient whose family has a history of cardiac conditions thinks he will die when she discusses this case with House?,133970,House M.D.,45.53-61.01,house_s06e05_seg02_clip_01,40 11932,I'm in the house.,How are you doing.,Where have you both been.,When will I get the invite.,It's a pleasure to meet both of you.,4,what was the first sentence Mason Wood said after he walked in the room.,133971,Castle,0-3.29,castle_s08e14_seg02_clip_05,It's a pleasure to meet both of you. 11933,Rachel and Joey,Ross and Joey,Tag and Chandler,Monica and Joey,Tag and Joey,4,Who is fighting over a scooter when they are in the hallway?,133972,Friends,20.14-30.51,friends_s07e14_seg02_clip_12,Tag and Joey 11934,9PM - 1AM,midnight to 3 AM,9AM - 1PM,6AM - 3PM,4AM - 7AM,0,What time frame did Ferguson have to account for when Beckett was questioning him?,133973,Castle,0-17.07,castle_s06e11_seg02_clip_07,9PM - 1AM 11935,Thirteen ,Cuddy ,House ,Taub ,Foreman ,0,Who is with the patient when the scene starts? ,133974,House M.D.,0-9.87,house_s07e23_seg02_clip_21,Thirteen 11936,Wilson is concerned and confused why a baby has flattened villi.,Wilson pushes past Chase to escape talking to House about Cuddy.,Wilson requests House add Wilson to the baby's case as a consultant.,Wilson calls Cuddy to report the updated status of the baby's condition.,Wilson sits on the floor and begins yelling and screaming about injustice.,0,When Chase announces the baby has flattened villi how does Wilson react after?,133975,House M.D.,9.56-22.07,house_s02e22_seg02_clip_21,Wilson is concerned and confused why a baby has flattened villi. 11937,His wallet,His shirt,His badge,His hat,Some food,3,What does Roy grab when he walks away from Phoebe?,133976,Friends,13.93-17.85,friends_s10e11_seg02_clip_12,His hat 11938,Acosta cries and falls to the ground in a fetal position.,Acosta tackles Beckett to gain control of the gun and escape.,Acosta punches Esposito and dives under the table.,Acosta is surprised and angry Beckett blocked Acosta's escape.,Acosta hugs Beckett and begs for forgiveness for Lara's murder.,3,How does Acosta react when Beckett draws a gun on Acosta?,133977,Castle,54.18-64.34,castle_s08e08_seg02_clip_12,Acosta is surprised and angry Beckett blocked Acosta's escape. 11939,"He says ""Bad idea""",He laughs,He sighs,He gets very quiet,He starts whistling,0,What does Leonard say after the man says that he will take a look outside?,133978,The Big Bang Theory,12.3-60.02,s03e13_seg02_clip_07,"He says ""Bad idea""" 11940,A triangle,A cross,A circle,A star,A moon,1,What shape is on Rachel's shirt when she is talking to Monica?,133979,Friends,0.61-20.14,friends_s01e06_seg02_clip_11,A cross 11941,bored,frustrated,happy,excited,hungry,1,How did Leonard feel when he came back to help Sheldon?,133980,The Big Bang Theory,54-61.02,s10e03_seg02_clip_12,frustrated 11942,to the parking lot,to the conference room,the break room,the interrogation room,into the elevator ,4,where do esposito and sonia go after her police escorts walk away?,133981,Castle,25.94-35.95,castle_s08e16_seg02_clip_13,into the elevator 11943,Beside the fridge,At his seat,At the window,At the door?,Beside the shelf,3,Where was House when Wilson called him again?,133982,House M.D.,67.79-71.39,house_s08e21_seg02_clip_04,At the door? 11944,an ice cream cone,a red tea kettle,a razor,a cereal box,his coat,1,What is Sheldon holding when Amy talks about compromises?,133983,The Big Bang Theory,0.6-8.7,s06e05_seg02_clip_03,a red tea kettle 11945,Piece together the time line of the day Henry died,She wanted to remember Henry,She thought she missed something,She wanted to see if the killer was on camera,She saw a change in recording time,0,Why did Zhang say she was scanning surveillance video when showing Beckett and Castle?,133984,Castle,14.27-23.19,castle_s07e17_seg02_clip_14,Piece together the time line of the day Henry died 11946,Richard wanted George to give Sophie her medicine.,Richard wanted George to make Sophie leave the hospital.,Richard wanted George to perform surgery on Sophie.,Richard wanted George to put Sophie to sleep.,Richard wanted George to take Sophie outside to get some fresh air?,1,What did Richard want George to do when he interacted with Sophie again?,133985,Grey's Anatomy,33.94-41.34,grey_s02e14_seg02_clip_02,Richard wanted George to make Sophie leave the hospital. 11947,Chase said the killer's mind looked as crazy as he is.,Chase said the mind of the killer looked completely normal.,Chase said the killer's mind looked strangely off-center.,Chase said the killer's mind looked slightly off-color.,Chase said the killer's mind was oddly grey.,1,How did Chase describe a killer's mind after looking at the results?,133986,House M.D.,23.1-27.18,house_s02e01_seg02_clip_18,Chase said the mind of the killer looked completely normal. 11948,Diane,Rebecca,Mona,Mary,Sarah,2,Who did Ross ask to dance when he left the table?,133987,Friends,2.75-8.5,friends_s08e01_seg02_clip_14,Mona 11949,A IV bag.,A coffee pot.,A sandwich.,An apple.,A pencil.,4,What was Chase holding when he said Myocardial Infarction?,133988,House M.D.,87-90.15,house_s02e23_seg02_clip_02,A pencil. 11950,"Colonel Williams comes to meet with Howard, Leonard and Sheldon.","Professor Hawking comes to meet with Howard, Leonard and Sheldon.","Dr. Clovis comes to meet with Howard, Leonard and Sheldon.","The founders of the MacArthur grant come to meet with Howard, Leonard and Sheldon.","Lesley comes to meet with Howard, Leonard and Sheldon.",0,"Who comes to visit Howard, Leonard and Sheldon when they're in the lab?",133989,The Big Bang Theory,15.19-27.73,s10e02_seg02_clip_07,"Colonel Williams comes to meet with Howard, Leonard and Sheldon." 11951,Rachel is sitting at the kitchen counter.,Rachel is sitting in the kitchen.,Rachel is sitting in the living room.,Rachel is standing next to the microwave.,Rachel is sitting at the table.,0,Where is Rachel sitting when Joey speaks to her?,133990,Friends,1.5-4.2,friends_s07e02_seg02_clip_18,Rachel is sitting at the kitchen counter. 11952,Amy said she was going to the restroom.,Amy said she was going to her house.,Amy said she was going to conduct more experiments in her lab.,Amy said she was going to find Bert to be brutally honest.,Amy said she was going to the cafeteria.,3,Where did Amy say she was going when she was preparing to leave?,133991,The Big Bang Theory,29.49-32.17,s07e13_seg02_clip_12,Amy said she was going to find Bert to be brutally honest. 11953,Karev working on a patient.,The waiting room.,Doctor Webber and Doctor Yang working on a patient.,Izzie working on a patient.,The emergency room.,2,What did the scene change to after Izzie left the room?,133992,Grey's Anatomy,72.56-87.42,grey_s02e06_seg02_clip_03,Doctor Webber and Doctor Yang working on a patient. 11954,Joey tells Chandler his gifts are tainted with disgust.,Joey tells Chandler his gifts are tainted with seduction.,Joey tells Chandler his gifts are tainted with lust.,Joey tells Chandler his gifts are tainted with betrayal.,Joey tells Chandler his gifts are tainted with lies.,3,What does Joey tell Chandler his gifts are tainted with when talking in the living room?,133993,Friends,34.8-40.48,friends_s04e07_seg02_clip_21,Joey tells Chandler his gifts are tainted with betrayal. 11955,Leonard's bedroom,Leslie's laboratory,The cafeteria,The comic book store,The hallway,1,Where are Leonard and Leslie when they are talking about their kiss?,133994,The Big Bang Theory,6.81-13.02,s01e03_seg02_clip_05,Leslie's laboratory 11956,They give Ross money,They give Ross a hockey ticket for that nights game,They give Ross baseball tickets ,They give Ross basketball tickets,They don't give Ross anything,1,What do Chandler and Joey give Ross after Joey sits down next to Ross?,133995,Friends,16.7-34.35,friends_s01e04_seg02_clip_01,They give Ross a hockey ticket for that nights game 11957,Beckett is wearing a cherry red blouse,Beckett is wearing a navy blue blouse,Beckett is wearing a evergreen green blouse,Beckett is wearing a tangerine orange blouse,Beckett is wearing a sunshine yellow blouse,1,What color blouse is Beckett wearing when she is questioning the blonde lady,133996,Castle,28.84-38.61,castle_s08e05_seg02_clip_03,Beckett is wearing a navy blue blouse 11958,Sheldon was making the cat try on clothes.,Sheldon was feeding the cat the wrong pet food.,Sheldon was constantly trying to give the cat a bath.,Sheldon was taking the cat everywhere with him from the bed to the bathroom.,Sheldon was making the cat scratch his back.,3,What was Sheldon doing with the cat he bought after he and Amy broke up?,133997,The Big Bang Theory,54.14-57.21,s04e03_seg02_clip_10,Sheldon was taking the cat everywhere with him from the bed to the bathroom. 11959,They are eating on the beach. ,They are eating at home. ,They are eating at a friend's house. ,They are eating in the car. ,They are eating at the restaurant. ,4,Where are Howard and Bernadette when they are eating?,133998,The Big Bang Theory,1.73-5.49,s06e07_seg02_clip_05,They are eating at the restaurant. 11960,She lives in the woods,She lives in Tallahassee.,She lives on the other side of the park,She lives in California,She lives in New Jersey,1,Where does Esposito say the victim's grandmother lives when he is talking to Castle and Beckett?,133999,Castle,36.63-39.32,castle_s04e17_seg02_clip_02,She lives in Tallahassee. 11961,Foreman,Cuddy,Wilson,Cameron,Chase,2,Who is with House when he is in his office?,134000,House M.D.,0-7.66,house_s06e12_seg02_clip_08,Wilson 11962,An orange wedge.,A lime wedge.,A lemon wedge.,A mango wedge.,An apple wedge.,1,What kind of fruit wedge does Sheldon want for his drink after he gives Penny his order?,134001,The Big Bang Theory,31.43-43.63,s01e08_seg02_clip_08,A lime wedge. 11963,She couldn't afford the one she had,She ruined the first one,She wanted a sofa instead,She was sad about the bad smell on her mattress,Because she was given a toddlers racecar bed,4,Why did Monica want a new bed when she went to the mattress store?,134002,Friends,19.81-32.13,friends_s03e07_seg02_clip_20,Because she was given a toddlers racecar bed 11964,House was standing next to the window,House was standing next to Dan ,House was standing next to the patient in the bed,House was standing in the hallway,House was standing next to the door,4,Where was House standing when Dan asked him if he had to tell Melinda it was Dan's fault?,134003,House M.D.,78.51-91.21,house_s02e16_seg02_clip_05,House was standing next to the door 11965,Leonard says he gave up addictions for her. ,Leonard says he gave up the gift of sight for her. ,Leonard says he gave up coffee for her. ,Leonard says he gave up Penny for her. ,Leonard says he gave up Sheldon for her. ,1,What does Leonard say when he is having a conversation with Priya?,134004,The Big Bang Theory,3.03-6.05,s04e18_seg02_clip_03,Leonard says he gave up the gift of sight for her. 11966,wave goodbye,shake his hand,grab him by the arm,walk away too,high five kyle,0,what does castle do before kyle walks away from them at the precinct?,134005,Castle,23.47-33.13,castle_s04e22_seg02_clip_25,wave goodbye 11967,She didn't think anyone had anything to be sorry for,The apology wasn't genuine,He might not make it,"She wanted him to say ""I'm sorry""",He cheated on her,4,Why is Mrs. Linden upset after Samuel forgives her?,134006,Grey's Anatomy,31.06-39.16,grey_s02e04_seg02_clip_12,He cheated on her 11968,In the green flower pot,Under the mat,Under the rock by the window,Under the doggie mat,In the red flower pot,1,Where does House tell Lucas he found the key after Lucas walks in the house?,134007,House M.D.,15.04-23.04,house_s06e08_seg02_clip_11,Under the mat 11969,Ross reads cat novels.,Ross reads spy novels.,Ross reads mystery novels.,Ross reads dog novels.,Ross reads futuristic novels.,1,What does Ross like to do in his spare time as he mentions when on his date?,134008,Friends,55.6-60.48,friends_s06e08_seg02_clip_12,Ross reads spy novels. 11970,In the kitchen,At the store,At a market,Outside,in the living room,0,Where is martha when she asks alexis to come and help her with the Duck l'orange?,134009,Castle,33.58-36.14,castle_s04e07_seg02_clip_27,In the kitchen 11971,Bows. ,Beer bottles. ,Glasses of wine. ,Plates. ,Balloons. ,4,What are Joey and Chandler holding when they are in Monica's apartment?,134010,Friends,0-1.5,friends_s02e22_seg02_clip_02,Balloons. 11972,Marshall.,Robin.,Robin and Lily.,Barney.,Lily.,4,"Who holds a mirror on the face of Ted when telling ""consummerism""?",134011,How I Met You Mother,0-35.46,met_s02e16_seg02_clip_07,Lily. 11973,House had a nice little chat with cameron,House had a nice little chat with Chase,House had a nice little chat with Vogler.,House had a nice little chat with his mom,House had a nice little chat with his dad,2,Who did House have a nice little chat with when he is talking to Foreman,134012,House M.D.,39.04-48.12,house_s01e18_seg02_clip_05,House had a nice little chat with Vogler. 11974,Beckett drops her gun.,Beckett runs away.,Beckett wrestles him.,Beckett shoots.,Beckett handcuffs the man with the beard.,3,What does Beckett do after the man with the beard sticks his hands in the air?,134013,Castle,71.17-107.02,castle_s05e13_seg02_clip_15,Beckett shoots. 11975,Laying in the hospital bed.,Sitting in a chair.,No where in the room.,Sitting in her father's lap.,Standing by the window.,0,Where was the patient when Elizabeth was talking to her father?,134014,House M.D.,0-5.92,house_s08e19_seg02_clip_20,Laying in the hospital bed. 11976,He needs to read a book,He needs to arrest people,He needs to use the bathroom ,He needs to get to the windows,He needs to hide under a table ,3,What does castle tell Beckett he needs to do when he is sitting on the ground being held hostage?,134015,Castle,64.76-72.51,castle_s04e07_seg02_clip_13,He needs to get to the windows 11977,Puts his hand on the pile.,Gets hand sanitizer.,Grabs a napkin.,Puts his drink down.,Sits down. ,2,"What does Sheldon do after he says, ""One moment""?",134016,The Big Bang Theory,4.88-9.46,s04e19_seg02_clip_09,Grabs a napkin. 11978,she is looking through her phone,she is eating ice cream ,she is brushing her teeth ,she is getting ready for bed ,She cleaning his nails ,4,What is Penny doing when Leonard tells her a story?,134017,The Big Bang Theory,0-32.37,s03e22_seg02_clip_14,She cleaning his nails 11979,To the pain of getting hit by a car,To the pain of having something dropped on you,To the pain of over exercising,To the pain of being stung by a bee,To the pain of not being able to breathe ,2,How did Taub say patients compared the pain after he mentioned Guillain-Barre?,134018,House M.D.,50.9-59.54,house_s05e10_seg02_clip_14,To the pain of over exercising 11980,Sheldon felt reluctant about being on the radio show because he had not wanted to be interviewed.,Sheldon felt happy about being on the radio show because he is a fan of the host.,Sheldon felt guilty about being on the radio show because he though Leonard should be the one who is interviewed.,Sheldon felt ashamed about being on the radio show because he lied about his discovery. ,Sheldon felt excited about being on the radio show because he had always wanted to meet the host.,0,How did Sheldon feel about being on the Science Friday radio show after the host announced him on the air?,134019,The Big Bang Theory,0-19.71,s07e10_seg01_clip_01,Sheldon felt reluctant about being on the radio show because he had not wanted to be interviewed. 11981,Howard was sitting on the counter.,Howard was sitting on the couch.,Howard was sitting in a chair.,Howard was standing by Leonard.,Howard was sitting on the floor.,2,Where was Howard sitting when Leonard was talking to Stuart?,134020,The Big Bang Theory,11.81-23.02,s09e11_seg02_clip_06,Howard was sitting in a chair. 11982,The ceiling,The door,The bed,The clock,The fan,3,Where is blood found when assessing the crime scene? ,134021,Castle,20.52-25.45,castle_s02e23_seg02_clip_01,The clock 11983,walk away,hug,cry,dance together,sit down,0,what did the woman do after talking,134022,Friends,25.81-31.51,friends_s09e05_seg02_clip_02,walk away 11984,Lilly gets turned on by nature.,Marshall was proud of Lilly for quitting smoking.,Marshall was glad that Lilly liked his hat.,Marshall and Lilly had just made up after a big fight.,Marshall and Lilly just got married,4,Why does Marshall kiss Lilly when they are standing in front of the tree?,134023,How I Met You Mother,1.56-13.52,met_s02e21_seg02_clip_18,Marshall and Lilly just got married 11985,Barney tell her he has 5 Nobel Prizes,Barney tell her he has 4 Nobel Prizes,Barney tell her he has 6 Nobel Prizes,Barney tell her he has 2 Nobel Prizes,Barney tell her he has 1 Nobel Prize,1,How many Nobel Prizes does Barney say he has when he is talking to Honey,134024,How I Met You Mother,44.79-58.17,met_s06e15_seg02_clip_14,Barney tell her he has 4 Nobel Prizes 11986,A Foosball table.,A Pool table.,A Poker table.,An Pac-Man arcade game.,No game only a table and chairs.,0,What game is in the room when Allison Cameron walks into room?,134025,House M.D.,67.46-77.03,house_s04e06_seg02_clip_22,A Foosball table. 11987,She can't do this,She wanted him to leave.,She was sleeping with Joey.,She was leaving him.,She wouldn't marry him.,0,"Why did Rachel apologize to Ross, when he was holding her leg? ",134026,Friends,0-5.7,friends_s08e23-24_seg02_clip_32,She can't do this 11988,A police officer.,The killer's mother.,The killer,The killer's minion.,Castle,3,Who do Castle and Beckett conclude the victim saw save him when he being attacked?,134027,Castle,39.28-53.27,castle_s07e03_seg02_clip_09,The killer's minion. 11989,You should get her to the next hospital quickly,You better hurry and get to the next hospital,Nurse asks if Rachel would like to see a semi-private room,Is this your first contraction,Are you ready to have a baby,2,What does the nurse ask Rachel when she starts having a contraction?,134028,Friends,65.72-73.02,friends_s08e23-24_seg01_clip_01,Nurse asks if Rachel would like to see a semi-private room 11990,dancing ,cleaning shoes ,washing hands ,sleeping ,looking in the mirror ,2,what was George doing before Izzie walked in ,134029,Grey's Anatomy,14-18.01,grey_s03e24_seg02_clip_20,washing hands 11991,Wilson thanked House for his suggestion.,Wilson pleaded with House not to do it.,Wilson kicked a chair to show annoyance.,Wilson slapped House.,He did not do anything,2,What did Wilson do before he left House in the office?,134030,House M.D.,62.76-69.69,house_s04e16_seg02_clip_13,Wilson kicked a chair to show annoyance. 11992,A recorder.,A cup of coffee.,A notebook.,A camcorder.,A magazine.,2,What is the reporter holding when she is asking Joey about his friends?,134031,Friends,26.69-33.36,friends_s08e19_seg02_clip_13,A notebook. 11993,Hugged.,Drank their coffee.,Ate muffins.,Left Central Perk.,Stood up.,0,What did Rachel and Mindy do after they both said they were so sorry?,134032,Friends,48.53-55.14,friends_s01e20_seg02_clip_14,Hugged. 11994,Hobbles away without saying another word,downs a half bottle of Vicodin ,"says ""lets go figure out how to save a nun.""",Does a sarcastic happy dance in the hallway,prescribes aspirin to the patient ,2,What does House say after he scolds Cameron for be unwilling to stick to her diagnosis?,134033,House M.D.,12.83-24.71,house_s01e05_seg02_clip_16,"says ""lets go figure out how to save a nun.""" 11995,She started singing.,She stood up.,She started crying.,She adjusted the baby's cloth.,She drank a cup of water.,3,What did Rachel do after saying something about Ross?,134034,Friends,47.77-56.51,friends_s08e23-24_seg02_clip_40,She adjusted the baby's cloth. 11996,A pyramid.,A ball.,A bowl of pples.,A handbag.,A stack of magazines.,0,What was on the table when House said home at last?,134035,Castle,54.26-58.91,castle_s08e16_seg02_clip_26,A pyramid. 11997,A liar,Brain challenged,Just a short person,Hormonally challenged,A giant,3,What does house say abigail is after her mom finds out that abigail is not a dwarf?,134036,House M.D.,27.4-30.54,house_s03e10_seg02_clip_21,Hormonally challenged 11998,cried,sat down,walked away,laughed,laid down,2,What did Esposito do after he was done talking?,134037,Castle,11.25-18,castle_s05e24_seg02_clip_04,walked away 11999,Standing by the window.,Sitting by the window.,Sitting at the bar with Joey.,Sitting next to Rachel on the sofa.,Sitting in a chair.,3,Where was Monica when Phoebe was talking to Mr. A about his dead wife?,134038,Friends,43.81-49.16,friends_s02e11_seg02_clip_11,Sitting next to Rachel on the sofa. 12000,His stomach.,His back.,His left side.,His right side.,Sitting up.,1,Which side was Leonard sleeping on before Sheldon asked the second question?,134039,The Big Bang Theory,39.47-73.09,s10e01_seg01_clip_01,His back. 12001,yellow,green,orange,black,white,3,What color is monica's dress when talking to rachel,134040,Friends,0-9.8,friends_s07e01_seg02_clip_16,black 12002,Joey's man's bag.,Joey's coat.,Joey's haircut.,Chandler's suit.,Chandler's tie.,0,What is Chandler referring to when Joey is standing next to him?,134041,Friends,50.77-58.03,friends_s08e19_seg02_clip_13,Joey's man's bag. 12003,Because Castle accused Michael of being the killer and covering his tracks.,Because Castle found no evidence Michael is the killer.,Because Castle was ready to arrest Michael for the murder of his wife.,Because Esposito accused Michael of being the killer and covering his tracks.,Because Esposito found evidence Michael murdered his wife.,0,Why did Beckett tell Castle to question Michael before convicting him?,134042,Castle,26.33-36.67,castle_s01e08_seg02_clip_03,Because Castle accused Michael of being the killer and covering his tracks. 12004,Because it's always been her dream,Because her father was killed by robbers at his business,Because her son is a drug addict,Because she was robbed,Because her father was a cop,1,Why did Hastings say she became a cop when Beckett asks her?,134043,Castle,14.69-24.93,castle_s04e02_seg02_clip_22,Because her father was killed by robbers at his business 12005,Because he was trying to start a romantic moment.,Because he asks for help from everybody.,Because she's his wife and he needs help.,Because he's got issues and can't tell she's about to begin surgery on a patient.,Because he's bored.,2,Why did George ask Callie if she could help after he saw her?,134044,Grey's Anatomy,52.21-65.72,grey_s03e15_seg02_clip_21,Because she's his wife and he needs help. 12006,He was writing on a piece of paper.,He was eating.,He was dancing.,He was drinking some water.,He was standing up.,0,What was Ross doing before Chandler said something about alien?,134045,Friends,57.12-66.03,friends_s02e05_seg02_clip_07,He was writing on a piece of paper. 12007,A tennis bracelet.,A half caret diamond ring.,A cheap pair of earrings.,A real ruby necklace.,A tongue stud.,3,What was in the box when the woman on the couch open it?,134046,The Big Bang Theory,32.25-39.38,s05e04_seg02_clip_13,A real ruby necklace. 12008,He sit on the floor,He craw on the floor,He rub his head against the desk,He clean the floor,He did nothing,2,What did Marshall do after he threw his pen on the floor?,134047,How I Met You Mother,24.47-29.6,met_s03e20_seg02_clip_07,He rub his head against the desk 12009,A cane.,A cup of coffee.,A water bottle.,A sandwhich.,A book.,0,What does the man give House when he walks to him in the hallway?,134048,House M.D.,0-9.36,house_s03e07_seg02_clip_24,A cane. 12010,declines the kiss,kisses her back,tries to make a move on her,starts jumping on the bed ,asks if she wants to get some food,0,What does Ross do after Rachel tries to kiss him?,134049,Friends,43.84-58.45,friends_s10e13_seg02_clip_09,declines the kiss 12011,Steph takes off her shoes.,Steph takes off her sweater.,Steph takes off her glasses.,Steph takes off her dress.,Steph takes off her hat.,1,What does Steph take off after Leonard takes off his shoes?,134050,The Big Bang Theory,31.29-34.83,s02e08_seg02_clip_09,Steph takes off her sweater. 12012,A coaster.,A matchbook.,A napkin.,A shot glass.,A business card.,1,What did Esposito say he found in Mrs. Lewis' kitchen that he said was also found in Emma's hotel room when he handed the plastic bad to Beckett?,134051,Castle,29.26-36.91,castle_s07e23_seg02_clip_09,A matchbook. 12013,3,1,5,2,10,3,How many girls is Barney imagining when he tells Ted what his vision is for the evening?,134052,How I Met You Mother,12.35-24.7,met_s03e03_seg02_clip_13,2 12014,peaceful,happy,very upset,bored,lonely,2,How did Professor Crawley feel when his wife was cheating on him?,134053,The Big Bang Theory,0-31.36,s03e02_seg02_clip_14,very upset 12015,grandmother being mean,grandmother being fat,grandmother having sex,grandmother being rude,grandmother being sarcastic,2,What did Howard and Raj tease Sheldon with when they spoke of his grandmother?,134054,The Big Bang Theory,9.98-25.37,s03e17_seg02_clip_13,grandmother having sex 12016,A semester early.,A year after graduation from high school.,2 semesters late.,A year early.,A semester late.,4,When did House say Adams started college after everyone left to have their platelets tranfused?,134055,House M.D.,54.91-58.52,house_s08e06_seg02_clip_06,A semester late. 12017,yellow,red,blue,pink,black ,2,What colors were the tubes that was attached to House's patient when he was in the hospital bed?,134056,House M.D.,0-8.61,house_s08e06_seg02_clip_23,blue 12018,Be home for dinner ,Stop being impatient,Do not touch the patient,Learn how to talk to people,Do whatever it is you think is right,4,How did Cuddy advise House before she left the office? ,134057,House M.D.,77.54-84.68,house_s05e12_seg02_clip_13,Do whatever it is you think is right 12019,Because she does not like Dustin,Because she did not want to be found,Because she thought it was a closed adoption,Because she did not want anyone at the hospital to find out,Because his daughter has Leukemia ,4,Why is Izzie upset when Dustin tells her that she is his daughter's birth mother?,134058,Grey's Anatomy,48.98-54.26,grey_s03e20_seg02_clip_03,Because his daughter has Leukemia 12020,Phoebe is outside Monica's apartment with her head through the door.,Phoebe is at the store. ,Phoebe is at the pageant.,Phoebe is at the game. ,Phoebe is in the bathroom. ,0,Where is Phoebe when Monica is talking to her about forgetting the pies?,134059,Friends,0.59-11,friends_s10e08_seg02_clip_15,Phoebe is outside Monica's apartment with her head through the door. 12021,An I.V.,Her hair.,A dog.,A door.,A stethoscope.,2,What did Allison touch on the bed after House said the patient didn't respond to steroids?,134060,House M.D.,44.56-47.71,house_s04e03_seg02_clip_24,A dog. 12022,House,Harper,Williams,Mason,Henry,0,Who did the woman in the dress show the magazine to after standing up from the desk and walking to him?,134061,House M.D.,3.23-11.06,house_s02e04_seg02_clip_00,House 12023,Robin,Lily,Katelyn,Anna,Samantha,0,Who does Barney have his arm around when at the bar?,134062,How I Met You Mother,1.79-5.66,met_s05e02_seg02_clip_12,Robin 12024,because sheldon got a phonecall,because sheldon needed to go to the bathroom,because sheldon couldn't see the tv,because sheldon was stuck behind a tree,because sheldon thinks he has dyslexia,3,why did sheldon think it was unfair to loose after he lost the race?,134063,The Big Bang Theory,8.84-12.26,s03e10_seg02_clip_02,because sheldon was stuck behind a tree 12025,She was starting a birds nest in her hair,It was a fashion statement,It was from her romp in the park with Gary,There was no twig,She was saving it to use as a toothpick,2,Why was there a twig in Phoebe's hair when Monica asked her about it at the table? ,134064,Friends,40.97-58.2,friends_s05e17_seg02_clip_17,It was from her romp in the park with Gary 12026,4 bucks.,10 bucks.,1 buck.,5 bucks.,20 bucks.,4,How much money did Marshall bet Barney that Casey misses the field goal before Barney said he doesn't bet?,134065,How I Met You Mother,42.95-49,met_s02e14_seg02_clip_03,20 bucks. 12027,He had to walk by spiders. ,He had to walk by kittens. ,He had to walk by birds. ,He had to walk by snakes. ,He had to walk by puppies. ,4,Why is Sheldon flustered when they are in the pet store?,134066,The Big Bang Theory,4.56-10.26,s08e17_seg02_clip_01,He had to walk by puppies. 12028,Chase is walking down the hall before going to a patient's bedside,Foreman is walking down the hall before going to a patient's bedside,Wilson is walking down the hall before going to a patient's bedside,Cameron is walking down the hall before going to a patient's bedside,Taub is walking down the hall before going to a patient's bedside,2,Who is walking down the hall before going to a patient's bedside,134067,House M.D.,0-9.35,house_s06e09_seg02_clip_00,Wilson is walking down the hall before going to a patient's bedside 12029,Because Burke has a Whipple Scheduled.,Because Burke is not working.,Because Burke is sleeping.,Because Burke is eating.,Because Burke is having fun.,0,Why Cristina was surprised after looking the whiteboard?,134068,Grey's Anatomy,52.34-56.44,grey_s01e04_seg02_clip_08,Because Burke has a Whipple Scheduled. 12030,Ross is talking to Carol,Ross is talking to Rachel,Ross is talking to Monica,Ross is talking to Phoebe,Ross is talking to Kiki,1,Who is Ross talking to when he is saying he should step back,134069,Friends,2.84-11.66,friends_s05e05_seg02_clip_17,Ross is talking to Rachel 12031,Ryan,Castle,Esposito,Lanie,Matilda,1,Who did Beckett sit down by after she walked into the room?,134070,Castle,0-27.76,castle_s06e14_seg02_clip_26,Castle 12032,At his apartment ,At a baseball game ,at a restaurant ,At a party,At a wedding ,2,Where was Ted when he was telling his friends what happen with his date?,134071,How I Met You Mother,39.63-45.07,met_s06e11_seg02_clip_02,at a restaurant 12033,When Castle told Katherine not to go to her interview.,When Castle refused to buy Alexis a scooter.,When Castle told Katherine how he felt about her.,When Castle refused to sign a check for Alexis.,When Castle told Martha that his relationship was not going to work.,3,What does Martha compare Castle's situation to when she talks about the absurdity of the situation?,134072,Castle,15.03-21.66,castle_s05e24_seg02_clip_21,When Castle refused to sign a check for Alexis. 12034,Amy tells Sheldon that he needs to wipe the counters. ,Amy tells Sheldon that he needs to sweep the floor. ,Amy tells Sheldon to wash the beakers. ,Amy tells Sheldon that he needs to go away. ,Amy tells Sheldon that he needs to listen to her. ,2,What task does Amy give to Sheldon when he is in the lab with her?,134073,The Big Bang Theory,3.54-6.79,s05e16_seg02_clip_07,Amy tells Sheldon to wash the beakers. 12035,be USA citizen only,be only Canadian,be a dual citizen,be single,be happy,2,What did Robin want to do when she spoke to Barney?,134074,How I Met You Mother,44.01-59.07,met_s05e05_seg02_clip_16,be a dual citizen 12036,Cuddy,Cameron,Chase,Wilson,No one,2,Who does Foreman accuse of sucking up to House when he mentions his theory?,134075,House M.D.,14.88-23.44,house_s03e09_seg02_clip_02,Chase 12037,in the operating room,in a card game,eating lunch,talking to a patient,in his car,1,Where was House when he was talking to Chase on the phone?,134076,House M.D.,17.78-27.26,house_s02e19_seg02_clip_17,in a card game 12038,Because Mrs. Duff has headaches,Because Mrs. Duff is old.,Because Mrs. Duff has cancer,Because Mrs. Duff is fragil,Because Mrs. Duff doesn't has money,2,Why Mrs. Duff can't have the baby when expalined by Cristina?,134077,Grey's Anatomy,68.8-72.98,grey_s01e09_seg02_clip_13,Because Mrs. Duff has cancer 12039,History,Art,The Sociology of Sexual Bondage and Domination,Athletics,Medicine,2,What does Tyler say his girlfriend was studying after Beckett asked him about it?,134078,Castle,41.9-51.36,castle_s02e16_seg02_clip_05,The Sociology of Sexual Bondage and Domination 12040,food,coffee,a photo,a file,nothing,0,What is House holding when he's talking?,134079,House M.D.,0-5.46,house_s04e08_seg02_clip_18,food 12041,Montgomery isn't 100% sure Monica is innocent and wants her watched,Montgomery wants to make sure Monica doesn't violate her probation,Montgomery doesn't trust Monica not to run away again,Montgomery is trying to lure suspects and is using Monica as the bait,Montgomery wants to make sure Monica is safe from Cavallo's associates,4,Why does Montgomery ask to have a patrol car outside Monica's building after she gets processed out?,134080,Castle,79.22-90.02,castle_s03e20_seg02_clip_24,Montgomery wants to make sure Monica is safe from Cavallo's associates 12042,Esposito,Castle,Gates,Lanie,Ryan,4,Who calls Beckett when she is at the office with the witness?,134081,Castle,3.62-6.34,castle_s07e19_seg02_clip_10,Ryan 12043,"He said ""Yo. Big fan, bro, then he gave Castle dap.",He ignored him and asked for his makeup girl.,He told Castle that he is not a fan.,"He walked away, said nothing.",None of the above,0,How did Ochoa greet Castle after Tony introduced them?,134082,Castle,26.85-32.77,castle_s03e22_seg02_clip_08,"He said ""Yo. Big fan, bro, then he gave Castle dap." 12044,Castle looked in the mirror,Castle looked at Beckett,Castle kissed Esposito,Castle kissed Beckett,Castle picked Esposito's nose,1,What did Castle do after looking at Esposito?,134083,Castle,2.75-6.41,castle_s05e14_seg02_clip_10,Castle looked at Beckett 12045,In Rosses' arms.,In Rachel's arms.,On the couch.,In the bed.,On the floor. ,0,Where is the baby when Ross said something about baby got back?,134084,Friends,3.68-5.83,friends_s09e07_seg02_clip_15,In Rosses' arms. 12046,Gates says a subway station,Gates says a coffee shop,Gates says a McDonald's ,Gates says a diner,Gates says a car lot.,3,Where does Gates say McManus was found after ID'd by an SRO desk clerk?,134085,Castle,31.57-41.2,castle_s05e13_seg02_clip_15,Gates says a diner 12047,Bailey says that the tumor is still there.,Bailey says that the tumor is gone.,Bailey says that the tumor is growing.,Bailey says that the tumor is disintegrated.,Bailey says that the tumor is loose.,1,What does Bailey say to the patient when he is in the hospital bed?,134086,Grey's Anatomy,20.37-25.68,grey_s02e22_seg02_clip_20,Bailey says that the tumor is gone. 12048,Blood,Torn wall paper,A framed photo of her mother,Yellow caution tape,A broken mirror,0,What was on the wall that Beckett was leaning against before she fell to the floor?,134087,Castle,0-4.81,castle_s06e22_seg02_clip_20,Blood 12049,House is excited.,House doesn't believe Crandall,House shares joy with Crandall.,House is proud,House is happy.,1,How does House feel when Crandall reveals he is the father of Leona who is in the hospital bed?,134088,House M.D.,33.81-63.56,house_s02e23_seg02_clip_02,House doesn't believe Crandall 12050,Sheldon does not talk to Penny.,Penny is banished from the apartment.,Sheldon makes fun of Penny.,Sheldon physically hurts Penny.,Sheldon says mean things to Penny.,1,How does Sheldon punish Penny after she makes fun of strike three?,134089,The Big Bang Theory,28.33-33.94,s02e07_seg02_clip_04,Penny is banished from the apartment. 12051,Joey is wearing a bathrobe.,Joey is wearing a turkey.,Joey is wearing Chandler's bat suit.,Joey is wearing all of Chandler's clothes.,Joey is wearing a prom dress.,3,What is Joey wearing when he comes into the apartment to confront Chandler?,134090,Friends,56.5-62.43,friends_s06e20_seg02_clip_14,Joey is wearing all of Chandler's clothes. 12052,Chandler is startled by Joey coming into the room.,Chandler is startled by his date's screaming.,Chandler is startled by someone tapping on his window.,Chandler is startled by Ross screaming in the dark.,Chandler is startled by a shadow in the corner.,1,Why is Chandler startled when in the bed with his date?,134091,Friends,39.03-43.63,friends_s04e20_seg02_clip_20,Chandler is startled by his date's screaming. 12053,Costume,Candy,Sandwich,Giant hand,Turkey,3,What does Joey have when Chandler looks out into the hallways,134092,Friends,27.12-39.48,friends_s10e08_seg02_clip_09,Giant hand 12054,The patient had no hair,The patient seemed very clean,The patient did not have children ,The patient did not live in an area where lice were common,House just missed it,0,Why did House say he initially believed his patient could not have come into contact with lice before he diagnosed him with Typhus?,134093,House M.D.,60.93-93.03,house_s08e15_seg02_clip_23,The patient had no hair 12055,Howard is talking to Bernadette,Howard is talking to Raj and Leonard,"Howard is talking to Sheldon, and Raj",Howard is talking to Leonard and Penny,Howard is talking to Penny and Bernadette,1,Who is Howard talking to when he is in the lab room?,134094,The Big Bang Theory,5.99-11.98,s05e02_seg02_clip_00,Howard is talking to Raj and Leonard 12056,Howard is sitting on the porch swing.,Howard is leaning against the porch railing.,Howard is sitting in the tree.,Howard is lying on the porch.,Howard is crouching behind the bushes.,1,Where is Howard when a man is climbing out of the window?,134095,The Big Bang Theory,0-7.88,s06e04_seg02_clip_12,Howard is leaning against the porch railing. 12057,Lara went to the airport.,Lara went to her friend's house.,Lara went to the neighbor's apartment.,Lara went to the market to buy food.,Lara went to the police.,3,Where did Lara go after her father left?,134096,Castle,42.87-49.26,castle_s02e15_seg02_clip_23,Lara went to the market to buy food. 12058,eating a sandwich,writing on a patients chart,walking down the hall,talking to Cuddy on the phone,looking through a microscope,4,What is Foreman doing right before Cameron says she will start the patient on IV quinidine,134097,House M.D.,25.01-34.78,house_s02e10_seg02_clip_25,looking through a microscope 12059,Pete and Violet are not doing anything together,Pete and Violet are sitting down on a couch,Pete and Violet are eating at a resturant,Pete and Violet are walking in a park,Pete and Violet are each laying down on a couch,4,What are Pete and Violet doing when she is venting her feelings to Pete?,134098,Grey's Anatomy,18.19-54.57,grey_s03e23_seg02_clip_06,Pete and Violet are each laying down on a couch 12060,By joey,By rachel,In front of rachel,Behind rachel,Behind joey,1,Where is the waitress standing when she is getting rachels order?,134099,Friends,0-6.65,friends_s08e12_seg02_clip_06,By rachel 12061,Pink,Black,Blue,Red,White,2,What color helmet is the man on the bike wearing before he gets hit by a car?,134100,Castle,12.16-35.08,castle_s02e08_seg02_clip_00,Blue 12062,Reflect on past experiences,Smoke cigars and drink ,Complete the patient's paperwork,Play the guitar and sing,Watch the patient complete physical therapy ,1,What do House and the patient's husband do when they sit together at the end of the night?,134101,House M.D.,59.29-95.21,house_s03e24_seg02_clip_24,Smoke cigars and drink 12063,He clapped ,He waved his hand,He put up a middle finger,He snapped his finger,He rubbed his chin ,0,What gesture did Cole do after he said Robert's name?,134102,Castle,24.68-33.49,castle_s07e13_seg02_clip_02,He clapped 12064,The kidneys,The heart,The liver,The lungs,The machine,3,Where did Cameron think the problem was when she saw the patient?,134103,House M.D.,63.38-99.03,house_s03e11_seg02_clip_08,The lungs 12065,He started to laugh,He suggested go to eat pizza,He fainted,He screamed at them,He started to cry,1,What did Vasiliy say after Beckett and Castle ended the calls?,134104,Castle,67.78-74.38,castle_s08e11_seg02_clip_09,He suggested go to eat pizza 12066,His space,Dr. Wilson ,Dr. Foreman,From him today,His patient,4,Where does House yell to Cuddy to stay away from after she walks away?,134105,House M.D.,16-22.86,house_s06e21_seg02_clip_18,His patient 12067,Sam she brought,Joey she brought.,Monica she brought.,Phoebe she brought,Chandler she brought.,4,Who was the reinforcement Rachel had when she sees Ross?,134106,Friends,8.7-19.73,friends_s05e16_seg02_clip_14,Chandler she brought. 12068,Derek is eating his sandwich ,Derek is watching TV,Derek is reading a patient file,Derek is putting his lab coat on ,Derek is washing his hands,0,What is Derek doing when he is talking to Meredith?,134107,Grey's Anatomy,52.34-71,grey_s02e20_seg02_clip_13,Derek is eating his sandwich 12069,He just told her she needs to move in. ,He just broke up with her for the second time in her life. ,He just told her they need her to move more of her stuff out of his house. ,He told her he doesn't want to be with her because she doesn't have a pool. ,He just told her that her grandfather died. ,1,Why is Robin so hurt when she is talking to her boyfriend?,134108,How I Met You Mother,0-9.38,met_s03e16_seg02_clip_10,He just broke up with her for the second time in her life. 12070,a toga,a brown necklace,a Hawaiian shirt,a bikini,a suit,1,What is Kurt wearing when he asks if Leonard is supposed to be an elf?,134109,The Big Bang Theory,33.26-36.32,s01e06_seg02_clip_10,a brown necklace 12071,I don't know.,I need a job.,Because it is good money.,I love doing massages.,I like the people I meet.,2,What does Phoebe say to the Receptionist after she asks why Phoebe works here?,134110,Friends,12.46-16.4,friends_s09e21_seg02_clip_06,Because it is good money. 12072,A Cinderella reenactment,A dog contest,A party,A wedding reception,California,3,Where are Ross and Monica at when they sit down?,134111,Friends,54.93-61.03,friends_s07e11_seg02_clip_10,A wedding reception 12073,Phoebe's dentist.,Phoebe's hairdresser.,Phoebe's collage friend.,Gunther from the coffee shop.,Phoebe's old neighbor.,3,Who turns out to be Jasmine's roomate after she mentions her roomate knows Phoebe too?,134112,Friends,19.22-32.96,friends_s03e16_seg02_clip_07,Gunther from the coffee shop. 12074,Phoebe was holding a viola.,Phoebe was holding a harp.,Phoebe was holding a cello.,Phoebe was holding a guitar.,Phoebe was holding a violin.,3,What instruemt was Phoebe holding when she was pulling its strings?,134113,Friends,50.72-55.52,friends_s05e05_seg02_clip_04,Phoebe was holding a guitar. 12075,they hugged,they started fighting,they ran away,they watched a movie,they slept,1,what happened after the white guys put all of their keys and watches in a hat,134114,Friends,43.97-53.12,friends_s02e21_seg02_clip_18,they started fighting 12076,Vega paid with $100 bills.,Vega paid by check,Vega paid with Canadian bills.,Vega paid with pennies.,Vega paid cash in a plain envelope,4,How does Wade say Vega paid when he discusses Vega paying him back on a loan?,134115,Castle,20.54-30.81,castle_s02e15_seg02_clip_06,Vega paid cash in a plain envelope 12077,go to sleep ,Finish eating ,work on his computer ,clean the house ,go to the comic book shop,1,What is Sheldon trying ton trying to do when Raj and Howard are trying to reprimand him? ,134116,The Big Bang Theory,2.76-10.76,s09e08_seg02_clip_15,Finish eating 12078,A vase of flowers.,A horse statue.,A bookshelf.,A chest.,A water fountain.,1,What object appears after the man in the sweater is shoved?,134117,Castle,80.56-87.84,castle_s06e18_seg02_clip_24,A horse statue. 12079,He's your friend not mine.,I love him.,I hate him.,I don't know.,I'm over him.,3,What did Rachel Say after Monica asked what she was talking about? ,134118,Friends,40.52-54.02,friends_s02e10_seg02_clip_05,I don't know. 12080,meredith thinks she sucks. ,meredith means dating is serious,meredith thinks dating sucks,meredith thinks george sucks,meredith means george is george ,4,what does meredith mean when she says seriously? ,134119,Grey's Anatomy,0-12.29,grey_s03e06_seg02_clip_03,meredith means george is george 12081,Raj is sitting at the bar.,Raj is sitting at a table.,Raj is leaning against the wall.,Raj is sitting at his computer desk.,Raj is standing next to the door.,1,Where is Raj before he takes a sip of his green drink?,134120,The Big Bang Theory,0-10.98,s01e08_seg02_clip_08,Raj is sitting at a table. 12082,He missed Amy.,He missed Leonard. ,He missed his mother.,He was bored. ,He knew he would beat her. ,1,Why did Penny say Sheldon wanted to play 3D when they were talking?,134121,The Big Bang Theory,27.46-37.22,s07e01_seg02_clip_02,He missed Leonard. 12083,Sheldon is offering to loan his personal luggage to Penny.,Sheldon says Penny's bathroom floor could be her carry on.,Sheldon suggests that Penny can use one of her larger handbags.,Sheldon suggests that Penny use a plastic grocery bag.,Sheldon suggests that Penny use a vintage plastic lunchbox as her carry on luggage.,1,What does Sheldon say Penny could use as a carry on when he is sitting next to Amy?,134122,The Big Bang Theory,18.92-28.82,s08e22_seg01_clip_00,Sheldon says Penny's bathroom floor could be her carry on. 12084,Julia,Alexis,Mia,Maria,Eva,1,Who placed her hand on castle shoulder when he worked on his laptop?,134123,Castle,19.81-24.65,castle_s08e18_seg02_clip_12,Alexis 12085,Because Robin was cooking.,Because Robin made scrambled eggs.,Because Robin made coffee.,Because Robin made crepes.,Because Robin is making pizza.,3,Why is Ted happy when entered in the kitchen?,134124,How I Met You Mother,12.1-62.03,met_s02e09_seg01_clip_00,Because Robin made crepes. 12086,Howard clutches his hands and smiles.,Howard runs from the room.,Howard call Penny on the phone.,Howard dances with Sheldon., Howard books a vacation,0,What does Howard do after Bernadette says they are thinking of getting married on a cliff overlooking the ocean?,134125,The Big Bang Theory,22.41-27.21,s04e23_seg02_clip_00,Howard clutches his hands and smiles. 12087,Angry mood,Serious mood,Happy mood,Playful mood,Gloating mood,4,"What kind of mood is beckett not in when castle gives her permission to say ""I told you so""?",134126,Castle,54.54-57.36,castle_s02e20_seg02_clip_23,Gloating mood 12088,A stack of magazines. ,A stack of newspapers. ,His coat. ,His brief case. ,Roller blades. ,1,What is Ross carrying when he walks into the coffee house?,134127,Friends,3.26-6.05,friends_s08e21_seg01_clip_00,A stack of newspapers. 12089,greeen,red,black,blue,ruby,3,"What color is the scrub Burke is wearing when he say's ""Everything...""?",134128,Grey's Anatomy,59.36-69.02,grey_s03e09_seg02_clip_23,blue 12090,"Bailey, Meredith, Mr. Rice, and Mrs. Rice were standing in the hospital hallway.","Bailey, Meredith, Mr. Rice, and Mrs.Rice were standing in the lobby.","Bailey, Meredith, Mr. Rice, and Mrs.Rice were standing in the cafeteria. ","Bailey, Meredith, Mr. Rice, and Mrs.Rice were standing in the hospital room.","Bailey, Meredith, Mr. Rice, and Mrs.Rice were standing in the bathroom.",0,"Where was Bailey, Meredith, Mr. Rice, and Mrs. Rice standing when talking to each other?",134129,Grey's Anatomy,55.43-67.85,grey_s01e07_seg02_clip_04,"Bailey, Meredith, Mr. Rice, and Mrs. Rice were standing in the hospital hallway." 12091,Across the room,In the plate,In the coffee cup,On the floor,In the plastic soda cup,2,Where does House throw something after Wilson suggests he may be feeling guilty?,134130,House M.D.,17.84-26.11,house_s04e02_seg02_clip_09,In the coffee cup 12092,House said Kutner's Anglo name gave him something to hold on to,House said Kutner's Anglo name gave him an illusion that he was someone he wasn't,House said Kutner's Anglo name gave him a background that was traceable,House said Kutner's Anglo name gave him a footprint in soceity,House said Kutner's Anglo name gave him a sense of hope,1,What did House say Kutner's Anglo name gave him when he was talking to his parents,134131,House M.D.,67.87-75.9,house_s05e20_seg02_clip_07,House said Kutner's Anglo name gave him an illusion that he was someone he wasn't 12093,He didnt remember hiring Justin,He said he did hire Justin,He said his associate hired Justin,He said he didnt hire Justin,He wished he could hire Justin ,3,How did Gilliam respond after Esposito assumed he hired Justin to transport the painting?,134132,Castle,6.44-11.88,castle_s08e05_seg02_clip_12,He said he didnt hire Justin 12094,Rachel.,Chandler himself.,The stripper.,A robber.,A man.,2,Who did Joey think stole his ring before Chandler opened the door?,134133,Friends,0-5.4,friends_s04e22_seg02_clip_09,The stripper. 12095,He laughs,Nothing,Can you believe how pushy she is,He says he hates his girlfriend,He throws the phone,2,What does Raj say after listening to the girl's message on the phone?,134134,The Big Bang Theory,0-54.12,s01e08_seg02_clip_00,Can you believe how pushy she is 12096,A camera,A box of chocolate,A notebook,2 glasses,A box of cereal ,3,What did Joey get out of the cabinet before Ross sat down? ,134135,Friends,22.78-26.41,friends_s08e16_seg02_clip_06,2 glasses 12097,Toni.,Esposito.,Johnston's foreman.,Vivien..,Beckett.,4,Who enters the room before Esposito tells Beckett about Johnston's activities?,134136,Castle,64.84-89.43,castle_s03e02_seg02_clip_18,Beckett. 12098,On a couch. ,On the floor. ,In a cab. ,On a bed. ,On the counter. ,3,Where are Barney and Abby when they are laying down?,134137,How I Met You Mother,44.56-46.36,met_s03e19_seg02_clip_02,On a bed. 12099,Leonard,Amy,Penny,Sheldon,Raj,0,Who is walking beside Howard when he's climbing up the stairs.,134138,The Big Bang Theory,9.9-60.02,s01e16_seg02_clip_14,Leonard 12100,He got hit in the chest with a spitball.,He got hit in the face with a ball of paper.,He got hit in the face with a spitball.,He got hit in the head with a ball of paper.,Someone threw their gum at him.,3,What happened after Castle walked into the classroom?,134139,Castle,86.93-89.66,castle_s07e04_seg02_clip_04,He got hit in the head with a ball of paper. 12101,"On a plane to somewhere far, far way.",A trip to the Bahamas.,An African Safari.,The ability to retire in the tropics.,Freedom to do what ever they wanted.,0,What did Cristina say eight million dollars could get them when they were listening to a lecture about a patient dying?,134140,Grey's Anatomy,34.87-41.66,grey_s03e05_seg02_clip_03,"On a plane to somewhere far, far way." 12102,That Ryan had ever been there,That she had ever been there,That Castle had ever been there,That Alexis had ever been there,That Jerry Tyson had ever been there,4,What does Beckett tell Castle there was no evidence of on the jail's security system when they are talking in the jail cell?,134141,Castle,60.9-90.89,castle_s05e05_seg02_clip_16,That Jerry Tyson had ever been there 12103,Joey slaps Chandler.,Joey tells Chandler he is leaving.,Joey points to someone else that is sleeping in the theater.,Joey asks Monica to get back at Chandler.,Joey laughs it off.,1,How does Joey respond after Chandler slaps him?,134142,Friends,15.96-28.14,friends_s08e22_seg02_clip_10,Joey tells Chandler he is leaving. 12104,A soda ,A martinini,A beer,A water bottle ,A bottle of orange juice,2,What beverage is Tag holding when he is talking to Rachel on the balcony?,134143,Friends,10.23-13.65,friends_s07e08_seg02_clip_10,A beer 12105,Raj called to Leonard.,Penny called to Leonard.,Sheldon called.,A police officer.,A relative.,1,Who was calling to Leonard when he was at the theater?,134144,The Big Bang Theory,0-36.13,s01e11_seg02_clip_08,Penny called to Leonard. 12106,Meredith and George had a fight,There was no more space at the table,George had a meeting at the next table,George did not want to wake the baby,George liked the chairs at the other table,0,"Why did George choose to sit at that table when Meredith, Lizzie and Cristina are talking?",134145,Grey's Anatomy,0-30.49,grey_s02e20_seg02_clip_13,Meredith and George had a fight 12107,That he is being crazy,This venue is the best,This venue is the only one,There are other venues,He needs to be patient ,3,What does his mother say after he said he was tired of waiting?,134146,Castle,54.3-72.7,castle_s06e14_seg02_clip_17,There are other venues 12108,Howard's favorite foods,Howard's many excellent qualities,Sheldon's pet peeves,Raj's books to read,Bernadette's Christmas list,1,What did Sheldon say his laudatory statement included when he took the list out of his pocket?,134147,The Big Bang Theory,11.82-18.91,s04e07_seg02_clip_10,Howard's many excellent qualities 12109,Monica's dad thought someone was trapped in the room,Monica's dad thought Monica and Chandler were in the room,Monica's dad had lost his mind,Monica's dad was trying to get into the room,Monica's dad was trying to get directions to another room,1,Why was Monica's dad talking to the door when Monica and Chandler walked past?,134148,Friends,40.32-65.03,friends_s09e01_seg02_clip_21,Monica's dad thought Monica and Chandler were in the room 12110,That Foreman is better as a nurse,That Foreman be demoted,That she give the raise out of the three doctors' paychecks,That Foreman go back to law school,That Foreman take a vacation,2,What does the female doctor suggest after Dr. Cuddy says she will not raise Foreman's salary?,134149,House M.D.,61.43-74.78,house_s06e10_seg02_clip_22,That she give the raise out of the three doctors' paychecks 12111,A brown toolbox. ,A cardboard box. ,A gift for Howard and Bernadette's baby. ,Nothing. ,A red toolbox. ,4,"When Raj comes to the door, what is he holding when Stuart answers? ",134150,The Big Bang Theory,14.59-33.95,s10e10_seg02_clip_10,A red toolbox. 12112,Definitely.,"Uh, no.",Hand him over.,Maybe later.,I'm sick and don't want him to get my cold.,1,What does Beckett say when Castle asks if she wants to hold the baby?,134151,Castle,24.44-38.73,castle_s06e10_seg02_clip_05,"Uh, no." 12113,She takes a cloth to wipe them off.,She starts crying.,She gives Monica a hug.,She makes room in the box to fit them in.,She leans back on the floor and then lays down.,2,What does Rachel do after she puts the black roller blades on the floor?,134152,Friends,42.72-52.18,friends_s06e06_seg02_clip_04,She gives Monica a hug. 12114,House believes the iron travel to her legs,House believes the iron travel to her spleen,House believes the iron travel to her lungs,House believes the iron travel to her arm,House believes the iron travel to her neck,2,Where in the body did House think the iron travel when he was discussing it with his group,134153,House M.D.,39.18-50.57,house_s02e23_seg02_clip_21,House believes the iron travel to her lungs 12115,Less than 30 seconds.,One minute.,Over three minutes.,Almost four minutes.,Five minutes.,3,How long has Joey been holding his breath before Chandler squeezes Joey's nose closed?,134154,Friends,1.24-8.99,friends_s08e19_seg02_clip_04,Almost four minutes. 12116,Rachel wants to be married for three years.,Rachel wants to be married for a few years.,Rachel wants to be married for at least five years.,Rachel wants to be married for ten years.,Rachel wants to be married for a year.,4,How long does Rachel want to be married before she gets pregnant?,134155,Friends,26.33-30.53,friends_s07e14_seg02_clip_11,Rachel wants to be married for a year. 12117,Gates told Beckett that they had no probable cause to hold him,Gates told Beckett that she has no idea who she's messing with,Gates told Beckett that he wants a lawyer,Gates told Beckett that he want to make a phone call,Gates doesn't tell Beckett anything,0,What does Gates tell Beckett about the evidence after he was looking it over?,134156,Castle,27.96-33.55,castle_s03e06_seg02_clip_14,Gates told Beckett that they had no probable cause to hold him 12118,Penny was afraid Leonard would be loud.,Penny thought Leonard was boring.,Penny was afraid Leonard would laugh at them.,Penny worried Leonard would be bored.,Penny was afraid her friends wouldn't be nice to Leonard.,3,What did Penny worry about when Leonard met her friends?,134157,The Big Bang Theory,23.54-38.44,s03e06_seg02_clip_03,Penny worried Leonard would be bored. 12119,Wilson said the brave kid gave pep talk to the grandma,Wilson said the brave kid gave pep talk to the dad,Wilson said the brave kid gave pep talk to the mom,Wilson said the brave kid gave pep talk to the grandpa,Wilson said the brave kid gave pep talk to the sister,2,Who did Wilson say that brave kid gave a pep talk to when talking to House?,134158,House M.D.,8.93-16.07,house_s02e02_seg02_clip_11,Wilson said the brave kid gave pep talk to the mom 12120,Sheldon refuses to eat with Leonard because Leonard sneezed,Sheldon assumes Leonard does not know what the anthropic principle is,Sheldon won't eat because his food looks strange to him,Sheldon insists they move to another table,Sheldon won't allow a co-worker to sit with them,1,How does Sheldon annoy Leonard when they are talking over lunch in the cafeteria?,134159,The Big Bang Theory,26.37-35.36,s06e01_seg02_clip_01,Sheldon assumes Leonard does not know what the anthropic principle is 12121,Martha stood up,Martha threw the phone,Martha shouted,Martha drank some wine,Martha put her hands on her chin,4,What did Martha do after using the phone?,134160,Castle,0-9.53,castle_s06e02_seg02_clip_15,Martha put her hands on her chin 12122,He was killed in a fire.,He was stabbed to death.,He was shot and killed.,He committed suicide.,He choked to death.,2,What did Beckett say happened to Derek when she is talking to Hans?,134161,Castle,21.46-25.84,castle_s03e07_seg02_clip_12,He was shot and killed. 12123,A piece of fruit.,A magazine.,A cup.,A statue.,A helmet.,0,What object does Joey pick up when he walks over to the table?,134162,Friends,38.25-47.26,friends_s03e03_seg02_clip_00,A piece of fruit. 12124,That the head of his department is retiring.,That he needs a nap,That he met a new woman,That he has amnesia,That he wants a prenup.,0,What does Chandler disclose after he sees Rachel and Joey?,134163,Friends,0-6.2,friends_s08e12_seg02_clip_00,That the head of his department is retiring. 12125,Because it was a fluke,Because the engineers built it wrong,Because he couldn't get the adequate funding,Because the toilet wasn't integrated correctly,Because it wasn't designed for Russian cosmonauts,4,Why did Howard say his zero-gravity toilet didn't work when talking to Sheldon?,134164,The Big Bang Theory,0-34.03,s08e22_seg02_clip_06,Because it wasn't designed for Russian cosmonauts 12126,text messages,phone records,social media accounts,email,Phone records and social media from the victim,4,what did ryan say he was looking into when talking about the falcon to beckett and espo?,134165,Castle,53.27-56.02,castle_s08e05_seg02_clip_05,Phone records and social media from the victim 12127,Ross hates Paolo's cat,Ross is jealous because Rachel keeps touching Paolo.,Ross was just starting to think he might have feelings for Rachel,"Ross feels bad for Joey, because Joey has feelings for Rachel",Ross thinks that Rachel should be with Barry,1,Why is Ross so upset when Rachel introduces him to Paolo?,134166,Friends,28.92-43.09,friends_s01e07_seg02_clip_16,Ross is jealous because Rachel keeps touching Paolo. 12128,The internet.,Chad.,Algeria.,Iraq.,Put an ad in the paper.,1,Where did Sheldon try to get uranium from when he was a little child?,134167,The Big Bang Theory,11.43-18.05,s08e23_seg02_clip_05,Chad. 12129,He go to the bedroom,He walk out the door,He did not take his jacket,he sit on the couch,He pick up his food,1,What did Sheldon do after taken his jacket?,134168,The Big Bang Theory,53.43-58.62,s09e07_seg02_clip_12,He walk out the door 12130,water sprite,troll,elf,warlord ,Ruby Sword,4,What did Leonard play after Howard card?,134169,The Big Bang Theory,0-20.92,s03e05_seg01_clip_00,Ruby Sword 12131,Robin says that she has a soap bar.,Robin says that she has a tiny head.,Robin says that she has a bag.,Robin says that she has tiny bladder.,Robin says that she has drink.,3,What does Robin say that she has when she is talking to her date at the restaurant?,134170,How I Met You Mother,8.56-15.29,met_s03e03_seg02_clip_10,Robin says that she has tiny bladder. 12132,On a walker,In a wheel chair,On crutches,On a cane ,On a hover board ,2,How was chase Walking through the lobby when House was teasing him about his love life?,134171,House M.D.,8.28-14.04,house_s08e12_seg02_clip_11,On crutches 12133,A pen,A tablet,A cup,A broom,A book,1,What did Weller handed to Beckett when they talked about the murder? ,134172,Castle,0-4.92,castle_s08e10_seg02_clip_11,A tablet 12134,In the victim's shirt pocket.,In the victim's mouth.,Behind the victim's head.,In the victim's pant pockets.,In the backpack beside the victim.,1,Where did Esposito look after Castle said there could be a pouch in there?,134173,Castle,59.47-67.43,castle_s01e06_seg02_clip_00,In the victim's mouth. 12135,Alphabetically ,color coordinated,Numerically,Roman numerals,Bullet points,1,How was the paper coordinated when Leonard gave it to penny,134174,The Big Bang Theory,0-27.74,s05e14_seg02_clip_05,color coordinated 12136,To watch the superbowl.,To stop by.,To hang out.,To try to get him his job back.,To Rob him.,3,Why was Foreman at Marcus apartment when there was music in the background?,134175,House M.D.,0-8,house_s06e12_seg02_clip_23,To try to get him his job back. 12137,He shoved her into a closet.,He hid the body under the bed.,He put the body in a dumpster,He put the body in the trunk of his car.,He put the body in the bed.,0,Where did the killer put the victim's body after he killed her?,134176,Castle,9.48-11.63,castle_s03e18_seg02_clip_02,He shoved her into a closet. 12138,apple,milk,orange,Martha threw a lemon,banana,3,What was the first thing Martha threw at Castle when he walked in the room?,134177,Castle,18-92.32,castle_s03e18_seg02_clip_00,Martha threw a lemon 12139,Mark,Martin,Murphy,Muriel,Merlin,3,"What is Chandler's middle name, which Ross figures out when they are standing in front of the elevator?",134178,Friends,25.08-37,friends_s08e05_seg02_clip_01,Muriel 12140,He nodded his head.,He rubbed his eyes.,He opened his mouth.,He fell in the chair.,He turned around.,0,What did Raj do after the hooker shook Howard's hand?,134179,The Big Bang Theory,5.72-10.41,s02e21_seg02_clip_14,He nodded his head. 12141,Castle is at a coffee shop.,Castle is on the street.,Castle is on the train.,Castle is at a party.,Castle is at a romantic dinner.,1,Where is Castle when paparazzi swarm for photos?,134180,Castle,58.07-66.17,castle_s04e13_seg02_clip_03,Castle is on the street. 12142,The doorman said Buckley,The doorman said Smith,The doorman said Jones,The doorman said Suitor,The doorman said Samson,0,Who did the doorman say someone demanded to come talk to when it was 2 days ago?,134181,Castle,0-11.17,castle_s02e09_seg02_clip_04,The doorman said Buckley 12143,Nitroglycerin.,Thrombolytics.,Steroids to prevent heart rupturing. ,Beta blockers. ,Antiplatelet agents.,2,"Which treatment does Chase advise to give the patient when discussing with House, Foreman, and Cameron?",134182,House M.D.,60.7-64.39,house_s03e22_seg02_clip_12,Steroids to prevent heart rupturing. 12144,He was at Izzie's house.,He was in the middle of a surgical procedure.,He was washing his hands.,He was at Meredith's house.,He was preparing for surgery.,2,What was George doing before Izzie started talking to him?,134183,Grey's Anatomy,11.5-17.01,grey_s03e24_seg02_clip_20,He was washing his hands. 12145,Wilson said Cuddy was a smart woman.,Wilson said House needed to watch out for Cuddy.,Wilson said House has met his match in Cuddy.,Wilson said Cuddy's very good at her job.,Wilson said he admired Cuddy.,3,What did Wilson say about Cuddy after she walked away?,134184,House M.D.,8.32-11.39,house_s01e02_seg02_clip_17,Wilson said Cuddy's very good at her job. 12146,Across his chest,On his waist,In his pocket,On the table,On his head,2,Where did Chase put his hand when Ali looked back to him,134185,House M.D.,13.5-19.81,house_s07e10_seg02_clip_24,In his pocket 12147,Leonard was grabbing his own pants.,Leonard was grabbing Sheldon's food.,Leonard was grabbing Sheldon's shirt.,Leonard was grabbing the TV remote control.,Leonard was grabbing Sheldon's toys.,3,What was Leonard grabbing when Sheldon sprayed him with water?,134186,The Big Bang Theory,0-6.57,s03e03_seg02_clip_08,Leonard was grabbing the TV remote control. 12148,31,28,30,29,27,0,How old is Phoebe when she is in the hospital?,134187,Friends,7.92-14.2,friends_s06e15-16_seg02_clip_22,31 12149,Leonard tells her he doesn't want to. ,Leonard tells her that he can take it slow. ,Leonard tells her it's now or never. ,Leonard tells her he doesn't care what she thinks. ,Leonard doesn't want anything to do with her. ,1,What does Leonard say after Penny suggests they take things slow?,134188,The Big Bang Theory,25.93-28.78,s05e14_seg02_clip_00,Leonard tells her that he can take it slow. 12150,A piece of shrimp,A coffee cup,A napkin,A fork,A spoon,4,What is Nora holding in her hand for after Dr. House says he doesn't know if he can go back there after all the resentment?,134189,House M.D.,58.76-67.66,house_s06e10_seg02_clip_18,A spoon 12151,Ryan says Lanie will look at his rash.,Ryan tells Esposito that that was too much information.,Ryan asks Lanie for help about how to deceive Esposito.,Ryan tells Esposito about Lanie's issues.,Ryan changes the subject and asks Esposito if he wants to interview Veronica.,0,How does Ryan respond after Esposito asks what Ryan wants Lanie to check out?,134190,Castle,48.37-57.68,castle_s08e14_seg02_clip_02,Ryan says Lanie will look at his rash. 12152,Howard's House.,Sheldon's Apartment,Amy's Apartment.,A pet store.,The grocery store. ,3,"Where are Amy and Sheldon when Amy tells Sheldon, ""You made it. We're fine""?",134191,The Big Bang Theory,3.71-8.84,s08e17_seg02_clip_01,A pet store. 12153,He kissed Alexis.,He cried.,He made a phone call.,He sat down.,He closed the doors.,0,What did Castle do before he grabbed something out of the closet?,134192,Castle,33.43-36.63,castle_s03e08_seg02_clip_10,He kissed Alexis. 12154,Sheldon was excited,He wa sad,Sheldon was very disappointed at Leonard,Sheldon felt defeated ,Sheldon was happy,3,How did Sheldon feel when he stormed out the kitchen,134193,The Big Bang Theory,0-35.11,s04e21_seg02_clip_02,Sheldon felt defeated 12155,Joyful,Happy,Sad,Upset,Excited,3,How did Monica appear to feel after she answered the phone?,134194,Friends,44.71-51.1,friends_s07e17_seg02_clip_10,Upset 12156,It was too small.,It was the wrong city.,It wasn't in English.,It had pop-up buildings.,It was expensive.,3,Why was Chandler surprised when Joey opened up his map?,134195,Friends,12.77-19.81,friends_s04e23-24_seg02_clip_02,It had pop-up buildings. 12157,House's ex girlfriend. ,A vandal. ,The adulteress.,Ayersman's wife. ,Stacy's intern. ,3,Who is the woman keying Ayersman's car when Ayersman chases her?,134196,House M.D.,43.18-54.75,house_s02e08_seg02_clip_15,Ayersman's wife. 12158,Pointed towards the bar,Asked for another beer,Ordered onion rings,Ate some food,Kissed Lily,0,What did Marshall do after the waitress asked if there was anything else?,134197,How I Met You Mother,27.39-32.5,met_s03e07_seg02_clip_03,Pointed towards the bar 12159,3,2,1,5,8,2,How many attempts did Frank and Alice have a chance to be pregnant with Phoebe's surrogacy when they explained it to Phoebe?,134198,Friends,33.94-40.62,friends_s04e12_seg02_clip_04,1 12160,He works for the drug cartel.,He is an executive with an Ecuadorean import-export company.,He is a traveling salesman for an Ecuadorean import-export company.,He works for the Ecuadorean Embassy.,He works on a cruise ship.,2,What does Esposito say Longarzo does for a living when giving Beckett an update on the investigation?,134199,Castle,10.02-16.56,castle_s08e08_seg02_clip_22,He is a traveling salesman for an Ecuadorean import-export company. 12161,An administrator at Parks and recreation.,An Architect that specializes in green buildings.,A manufacturer of building materials.,A landscape expert.,A regulator at the Department of Agriculture.,4,Who did Gates say she spoke to after Esposito told everyone he spoke to the cabbie that picked up Hannah?,134200,Castle,13.73-18.31,castle_s05e14_seg02_clip_10,A regulator at the Department of Agriculture. 12162,She says a friend of hers has been to see her,She says her mother has been to see her,She says a man who writes down whatever she says has been to see her,She says a man in a wheelchair has been there,She says a federal agent has been to see her,3,Who does Irene say has been to see her when she is talking to the doctors about her mother?,134201,House M.D.,33.38-50.3,house_s04e04_seg02_clip_10,She says a man in a wheelchair has been there 12163,Barney showed Marshall a video of a boy getting hit with a pie.,Barney showed Marshall a video of a man getting hit with water balloons.,Barney showed Marshall a video of a girl slipping in throw up.,Barney showed Marshall a video of a boy falling of a skateboard.,Barney showed Marshall a video of a guy getting hit in the nuts?,4,How did Barney try to get Marshall to laugh when he was sad?,134202,How I Met You Mother,8.56-13.28,met_s06e14_seg02_clip_14,Barney showed Marshall a video of a guy getting hit in the nuts? 12164,On the bar,On the table in front of them,There was no yellow book with a blue shape on it,Under the table,On the couch between the guys,1,"Where was the yellow book with the blue shape on the cover sitting when Chandler, Joey and Phoebe were talking in the coffee shop?",134203,Friends,39.48-44.13,friends_s06e04_seg02_clip_10,On the table in front of them 12165,Bill.,James.,Tom.,Jordan.,Jimmy.,0,What was the name of Valerie's husband mentioned when she was talking to Cuddy and Thirteen?,134204,House M.D.,35.04-46.57,house_s06e11_seg02_clip_16,Bill. 12166,On the couch,On the floor,On the table,He had no feet,On a stack of books,2,What were Chandlers feet on when he was talking to Ross?,134205,Friends,47.83-53.58,friends_s04e22_seg02_clip_03,On the table 12167,Blue.,Pink.,Gray.,Green.,Yellow.,1,What color scrubs is the nurse wearing before leaving the room?,134206,House M.D.,33.13-37.93,house_s07e06_seg02_clip_10,Pink. 12168,Amy receive a call from Stuart.,Amy receive a text message from Sheldon.,Amy receive a call from work.,Amy receive a text message from Barry.,Amy receive a call from Sheldon.,3,Why did Amy pick up her phone after she put her bag on the couch?,134207,The Big Bang Theory,44.04-62.02,s09e05_seg02_clip_13,Amy receive a text message from Barry. 12169,neck,leg,arm,back,butt,3,What part of the patient's body are they doing the allergy test on when he's laying in bed?,134208,House M.D.,45.07-50.54,house_s02e15_seg02_clip_09,back 12170,A church,A campfire,A bar,A restuarant ,A movie theater,0,Where is Barney when he mentions that the stories being told suck?,134209,How I Met You Mother,35.71-40.14,met_s06e14_seg02_clip_15,A church 12171,Sheldon.,Howard.,Leonard.,Penny.,Raj.,4,Who was sitting in the backseat when Bernadette was driving?,134210,The Big Bang Theory,45.06-55.11,s04e13_seg02_clip_02,Raj. 12172,"""Amy I thought you weren't talking to me"" ","""What do you mean classic Rachel, you hardly know me anymore"" ","""No, this is not classic Rachel, more like classic Amy""","""Amy, I am not responding to your nonsense"" ","""Oh yeah, remember in high school when I died and didn't give you my baby""",4,"How does Rachel respond to when her sister, Amy, says ""this is classic Rachel""?",134211,Friends,23.8-35.09,friends_s09e08_seg02_clip_16,"""Oh yeah, remember in high school when I died and didn't give you my baby""" 12173,She just woke up.,Castle had asked her if she took drugs.,She was feeling sick.,Her eyes were itching her.,She was having a headache,1,Why did Alexis ask if her eyes were bloodshot after Castle woke her up?,134212,Castle,51.01-61.58,castle_s01e04_seg02_clip_09,Castle had asked her if she took drugs. 12174,Buggy.,Semen.,Blood.,Gray nylon.,Feces.,3,What the lab found on the victim's clothes and hair after analyzing the samples?,134213,Castle,25.09-29.49,castle_s03e05_seg02_clip_03,Gray nylon. 12175,Beckett said she was on the phone with her mom,Beckett said she was on the phone with a telemarketer,Beckett said she was on the phone with her boss,Beckett said she was on the phone with her dad,Beckett said she was on the phone with her sister,1,Who did Beckett say she was on the phone after she got off?,134214,Castle,28.8-35.89,castle_s08e01_seg02_clip_01,Beckett said she was on the phone with a telemarketer 12176,He feels someone will pay more attention to his story.,He feels the doctors are wrong about his condition,"He only wants natural medicines, which have always worked in the past",He believes is cure is from a higher power,He doesn't believe he is as sick as the doctors are telling him,0,Why does Sebastian feel he won't die after Cameron expresses concern for him?,134215,House M.D.,32.06-38.47,house_s02e04_seg02_clip_13,He feels someone will pay more attention to his story. 12177,A one dollar bill,A ten dollar bill,A twenty dollar bill,A note for the waitress ,A penny for your thoughts ,2,What did Castle leave on the Table before grabbing his belongings?,134216,Castle,75.8-81.09,castle_s07e13_seg02_clip_02,A twenty dollar bill 12178,I know you are but what am I,That is an ugly tie,You are a loser anyways,No one even likes you,Your mother is ugly too,1,Which insult is used after House is told to be specious? ,134217,House M.D.,0-11,house_s01e03_seg02_clip_06,That is an ugly tie 12179,Everyone turns and looks at him,No one pays any attention to him,Phoebe giggles,Monica jumps ,Rachel rolls her eyes,0,What happens after Chandler walks into the room?,134218,Friends,22.81-24.24,friends_s03e14_seg02_clip_20,Everyone turns and looks at him 12180,Beckett takes off running as soon as the police car shows up.,Beckett collapses in instinctual fear the moment the police car siren wails near her.,Beckett begins to scream profanities at the cop who drives up - the team doesn't realize it's because he drove over the crime scene.,Beckett begins to cry uncontrollably and shows clear signs of distress.,Beckett shows signs of distress.,1,Why is the team worried about Beckett when the police car shows up?,134219,Castle,67.97-82.37,castle_s04e09_seg02_clip_03,Beckett collapses in instinctual fear the moment the police car siren wails near her. 12181,Joey suggested Chandler learn martial arts,Joey suggested Chandler smack the person back,Joey suggested Chandler never turn his back ,Joey suggested Chandler rub something that smells bad on his butt,Joey suggested Chandler scream next time,3,What did Joey suggest when he was talking to Chandler?,134220,Friends,0-17.27,friends_s03e24_seg02_clip_03,Joey suggested Chandler rub something that smells bad on his butt 12182,10 years old,12 years old,13 years old,15 years old,11 years old,1,How old foreman say the patient is when talking to house outside the patients room?,134221,House M.D.,9.56-12.29,house_s01e19_seg02_clip_20,12 years old 12183,got a drink,Yelled,shut the laptop,walked away,Ended the call,4,What did Wil do when Kevin said he did not have a part for him?,134222,The Big Bang Theory,40.74-50.18,s08e20_seg02_clip_10,Ended the call 12184,White phone,Newspaper.,Remote control,Water bottle,Throw pillow.,1,What was Ross holding when he was sitting on the couch? ,134223,Friends,1.92-3.52,friends_s05e10_seg02_clip_11,Newspaper. 12185,The patient was meditating,The patient was paralyzed,The patient was sleeping,The patient was dead,The patient was in a coma,4,Why was the patient in the bed not moving after House walked in the room?,134224,House M.D.,6.11-10.34,house_s02e16_seg02_clip_05,The patient was in a coma 12186,At Joey's Apartment.,In Ross's apartment.,At Monica's apartment.,At the Coffee Shop.,At the Museum. ,3,"Where is Ross when he asks Joey ""Do you want a piece of this?""",134225,Friends,0-5,friends_s09e12_seg02_clip_06,At the Coffee Shop. 12187,"Chandler hate when his father calls him ""young biscuit""","Chandler hate when his father calls him ""young homie""","Chandler hate when his father calls him ""young lady""","Chandler hate when his father calls him ""young sir""","Chandler hate when his father calls him ""young fart""",2,What does Chandler hate that his father call him when he was talking?,134226,Friends,38.96-46.93,friends_s01e05_seg02_clip_01,"Chandler hate when his father calls him ""young lady""" 12188,Beckett walked over and touched a pair of diamond earrings ,Beckett walked over and touched Coats,Beckett walked over and touched a toaster,Beckett walked over and touched Castles arm,Beckett walked over and touched a Digital Camera,1,What did Beckett walk over and touch when her and Castle were talking about how much money was just hanging there,134227,Castle,10.86-19.46,castle_s06e09_seg02_clip_03,Beckett walked over and touched Coats 12189,Why not?,It's not a big deal. ,Oh you would be fine,Don't be a big baby,It's will be super easy. ,1,"What did Sheldon say after Leonard said No, absolutely not?",134228,The Big Bang Theory,0-6.6,s02e10_seg02_clip_00,It's not a big deal. 12190,On a wooden chair next to Leonard.,On the sofa next to Sheldon.,On the sofa next to Raj.,On a wooden chair next to Howard.,On the floor next to Leonard.,0,Where is Penny sitting when everyone is talking about X-men in the living room?,134229,The Big Bang Theory,29.26-36.65,s03e18_seg02_clip_04,On a wooden chair next to Leonard. 12191,He recommends Michelin. ,He recommends Woody. ,He recommends Lightyear. ,He recommends Buzz. ,He recommends Twilight. ,3,What does Raj recommend for Howard's astronaut name when they are hanging out?,134230,The Big Bang Theory,32.5-42.2,s05e15_seg02_clip_07,He recommends Buzz. 12192,He says that they went skiiing.,He says that he was in love with them and they had sex.,He says that he lived in the virgin islands.,He says that he won a million dollars.,He says that he made out with Rachel.,1,What does Joey say his dream was about after Monica asks him?,134231,Friends,15.64-32.17,friends_s05e16_seg02_clip_08,He says that he was in love with them and they had sex. 12193,Taub said there was four Danny Jennings.,Taub said there was six Danny Jennings.,Taub said there was two Danny Jennings.,Taub said there was five Danny Jennings.,Taub said there was one Danny Jennings.,4,How many Danny Jennings did Taub say was in rehab last November when he was telling House about his findings?,134232,House M.D.,8.5-12.5,house_s07e17_seg02_clip_15,Taub said there was one Danny Jennings. 12194,She was his mother,She was another prostitute,She was an ex-partner,She was his sister,She was a friend,2,Who was Amber when Wilson was talking?,134233,House M.D.,52.34-91.03,house_s05e05_seg02_clip_13,She was an ex-partner 12195,hurt,happy,joyful,sick,uncomfortable,4,How did Alicia feel when Sheldon quizzed her?,134234,The Big Bang Theory,0-7.97,s02e19_seg02_clip_03,uncomfortable 12196,Nadine was snatched into a truck,Nadine started running,Nadine tripped and knocked her head on a rock,Nadine twisted her ankle running,Nadine stopped and put up her hands,0,What happened to Nadine when the guys spotted her leaving the building,134235,Castle,65.88-78.69,castle_s04e08_seg02_clip_14,Nadine was snatched into a truck 12197,boxes,flowers,tvs,candy,nothing ,1,What was on the Nurse station when House's team walked past it? ,134236,House M.D.,75.55-78.28,house_s05e02_seg02_clip_05,flowers 12198,Monica and Chandler were talking about the possibility of how dating would work if they weren't friends.,Monica and Chandler were talking about Joey.,Monica and Chandler were talking about how their coffee got mixed up again.,Monica and Chandler were talking about work.,Monica and Chandler were talking about Ross.,0,What were Monica and Chandler talking about before Joey met up with them?,134237,Friends,0-23.8,friends_s03e25_seg02_clip_01,Monica and Chandler were talking about the possibility of how dating would work if they weren't friends. 12199,A bird.,A cowboy hat.,A headband.,A tiara.,A ribbon.,3,What was Amy wearing on her head when Sheldon mentioned Leonard recently proposing to Penny?,134238,The Big Bang Theory,22.63-30.44,s05e24_seg02_clip_04,A tiara. 12200,Grey,Blue,Black,Green,Yellow,1,"What color is the tie that Ryan is wearing when he say's ""Yeah, I'm afraid so.""?",134239,Castle,0-9.78,castle_s06e04_seg02_clip_21,Blue 12201,Finger snaps.,Standing ovation applause.,A seated applause.,Head nods.,Eye rolls.,2,How does the class of female students respond after Sheldon's suggestion they have been discouraged from the field of science?,134240,The Big Bang Theory,39.66-41.72,s06e18_seg02_clip_13,A seated applause. 12202,Sheldon told Howard that Leonard is grumpy when he is hungry.,Sheldon told Howard that Leonard is tired of losing.,Sheldon told Howard that Leonard just got fired from his job.,Sheldon told Howard that Leonard ate some bad food.,Sheldon told Howard that Leonard's imaginary girlfriend broke up with him.,4,What did Sheldon tell Howard after Howard asked what was wrong with Leonard?,134241,The Big Bang Theory,23.71-30.31,s01e02_seg02_clip_12,Sheldon told Howard that Leonard's imaginary girlfriend broke up with him. 12203,confused,bored,happy,sad,angry,0,How did Sheldon feel when he couldn't make up his mind picking out a present?,134242,The Big Bang Theory,16.85-34.61,s01e16_seg02_clip_08,confused 12204,Esposito left his phone at home.,Esposito's phone was broke.,Esposito did not pay his phone bill,Esposito's voice was shot.,Esposito lost hope and did not believe he would survive the fire.,1,Why was Esposito unable to call for help when he was trapped in a burning building with Ryan.,134243,Castle,71-74.19,castle_s06e11_seg02_clip_17,Esposito's phone was broke. 12205,To follow someone,To bug an office,To take pictures of someone,To steal something,To hurt someone,1,What did Bobby pay Zach to do before he died?,134244,Castle,44.56-53.11,castle_s02e20_seg02_clip_21,To bug an office 12206,House tells Cuddy he needs help dealing with Cuddy's mother.,House tells Cuddy he needs help quitting the pills.,House tells Cuddy he needs help hanging the right IV.,House tells Cuddy he needs help learning to love people.,House tells Cuddy he needs help understanding their relationship.,2,What does House tell Cuddy he is having trouble with when confiding in her in the office?,134245,House M.D.,0-7.65,house_s07e11_seg02_clip_17,House tells Cuddy he needs help hanging the right IV. 12207,A wig.,A beer.,A baseball cap.,A shopping bag.,A newspaper.,4,What is Chandler holding when he said I hate that?,134246,Friends,3.16-4.59,friends_s03e14_seg02_clip_13,A newspaper. 12208,Monica,Joey,Chandler,Rachel,Phoebe,3,Who Does Ross talk to after he stands up,134247,Friends,18.92-27.16,friends_s02e14_seg02_clip_07,Rachel 12209,Forced him to be admitted to him,Signed for a emergency surgery ,Was coerced into being saved,Given medicine against his will,Knockout for a illegal operation,1,How does Wilson say House's life was saved by his girlfriend when Masters comes with a similar problem?,134248,House M.D.,0-15.13,house_s07e19_seg02_clip_21,Signed for a emergency surgery 12210,he is standing next to Beckett,he is standing behind Beckett,he is standing in front of Beckett,he is standing across from Beckett ,he is not with Beckett,0,Where is Castle standing when he is with Beckett?,134249,Castle,0-9.57,castle_s07e16_seg02_clip_24,he is standing next to Beckett 12211,Olivia asked if Tommy would have to take the antitoxins after he was discharged.,Olivia said she was told by another doctor that Tommy was going to have to be hospitalize for two weeks.,"Olivia said that is good news,",Olivia asked Park if all of the insurance forms have been filled out.,Olivia told Park that the antitoxins working is an unexpected surprise.,2,How did Olivia react when Park told her that the antitoxin is working and Tommy will be able to go home in a few days?,134250,House M.D.,29.56-36.3,house_s08e08_seg02_clip_23,"Olivia said that is good news," 12212,needs advice ,ask her out,bring her coffee,to ask her to come back,she left a book at the office ,3,why does house go to camerons house after she quit,134251,House M.D.,60.08-65.08,house_s01e19_seg02_clip_00,to ask her to come back 12213,John,Paul,Steven,Foreman,William ,3,Who was House talking to when he was walking in the hospital?,134252,House M.D.,68.41-91.83,house_s03e05_seg02_clip_05,Foreman 12214,The patient started vomiting,The patient grabbed his arm,The patient ripped out her oxygen tube,The patient pushed the button to call the nurse,The patient ripped out her IV,1,What did the patient do when House was about to a walk away from her bedside,134253,House M.D.,61.87-71.66,house_s01e14_seg02_clip_17,The patient grabbed his arm 12215,A guitar.,A football.,A beer.,A cigarette.,A basketball goal.,4,What was Barney carrying when he walked away from his father?,134254,How I Met You Mother,17.32-26.87,met_s06e21_seg01_clip_01,A basketball goal. 12216,she followed him,she got his address from a client , she looked it up on the internet ,she asked Beckett ,she put a locator on him ,1,How did Scarlott say she found Castle when he asked ,134255,Castle,49.2-58.68,castle_s02e09_seg02_clip_19,she got his address from a client 12217,Standing behind her massaging her shoulders.,Sitting on the floor rubbing her feet.,Sitting to her left on the couch.,Sitting to her right on the couch.,In the kitchen preparing dinner.,2,Where was Castle when he asked becket about getting married on the Cyclone?,134256,Castle,2.3-5.97,castle_s06e19_seg02_clip_00,Sitting to her left on the couch. 12218,Will Wheaton,Khan Noonien Singh,Stuart,Raj,Leonard,1,Who did Sheldon quote when he was at the bookstore?,134257,The Big Bang Theory,25.93-39.66,s03e05_seg02_clip_06,Khan Noonien Singh 12219,On the back of a chair,On the hook behind the door,He kept it on,On the table,He gave it to Phoebe,3,Where did Gary place his blazer after he closed the door?,134258,Friends,25.39-33.22,friends_s05e21_seg02_clip_12,On the table 12220,Penny refuses to go to the party. ,Penny refuses to do anymore cartwheels. ,Penny refuses to make the guys dinner. ,Penny refuses to wait on their table. ,Penny refuses to be anything to anyone. ,0,What does Penny do when the guys make her mad?,134259,The Big Bang Theory,37.68-43.39,s04e11_seg02_clip_08,Penny refuses to go to the party. 12221,Leonard is talking about how much he misses Penny. ,Leonard is talking about how much he likes Amy. ,"Leonard doesn't think Amy is the best fit for the ""rebel alliance"". ",Leonard is talking about how much he dislikes his mom. ,Leonard is talking about how much he wishes they would fix the elevator. ,2,What are Sheldon and Leonard discussing when they are walking up the stairs?,134260,The Big Bang Theory,1.85-7.7,s04e03_seg02_clip_03,"Leonard doesn't think Amy is the best fit for the ""rebel alliance"". " 12222,bench,on the couch ,chair,stool,bed,1,Where was House sitting when he was talking about the court hearing with Foreman? ,134261,House M.D.,88.35-90.15,house_s03e11_seg02_clip_18,on the couch 12223,Rachel is in her office.,Rachel is at Ross's apartment.,Rachel is in the coffee shop.,Rachel is on the train.,Rachel is on the street.,0,Where is Rachel when she is talking to Tag?,134262,Friends,0-2.95,friends_s07e09_seg02_clip_02,Rachel is in her office. 12224,Monica and Chandler laugh and say it was a joke,Monica and Chandler run away,Monica and Chandler kiss,Monica and Chandler start doing jumping jacks,Monica and Chandler get really depressed,2,What do Monica and Chandler do after Monica accepts his proposal?,134263,Friends,55.91-69.02,friends_s06e24-25_seg02_clip_41,Monica and Chandler kiss 12225,Ross' foot was stuck in the pocket.,Phoebe's foot was stuck in the pocket.,Ross' hand was stuck in the pocket.,Phoebe's hand was stuck in the pocket.,Ross' shirt was stuck in the pocket.,0,What got stuck in the pocket when Ross was on the table?,134264,Friends,34.66-38.51,friends_s03e06_seg02_clip_19,Ross' foot was stuck in the pocket. 12226, Jet crash,Plane crash,Train crash,Bus crash,Ferry crash,4,What caused the emergency before the hospital sent people to the scene?,134265,Grey's Anatomy,26.54-40.9,grey_s03e15_seg02_clip_12,Ferry crash 12227,Committing fraud,Making a fool of himself,Making a fool of Marshall,Getting Marshall mad,Marshall tells Randy that he has to go home,0,What does Marshall tell Randy he's doing after Randy refuses to leave over severance pay?,134266,How I Met You Mother,0-9.83,met_s06e07_seg02_clip_13,Committing fraud 12228,black jacket,red hat,white jacket,white hat,brown jacket,3,What did Ross took off the baby when the baby was on the stroller ?,134267,Friends,9.16-14.35,friends_s10e05_seg02_clip_17,white hat 12229,Her brother doesn't remember.,Her mother doesn't remember.,Her patient doesn't remember.,Her coworker doesn't remember.,Her friend doesn't remember.,2,Who doesn't remember Dr. Bailey when she is in the hospital room?,134268,Grey's Anatomy,4.43-11.96,grey_s02e22_seg02_clip_20,Her patient doesn't remember. 12230,He is happy. ,He is shocked. ,He is sad. ,He is mad. ,He is indifferent. ,1,What is Ted's reaction after the woman tells him she is married?,134269,How I Met You Mother,28.09-32.82,met_s03e12_seg02_clip_08,He is shocked. 12231,Cafeteria,Cuddy's office,Patient's room,Bar,Locker room ,3,Where were House and Wilson when they were talking about the patient? ,134270,House M.D.,2.74-11.88,house_s01e22_seg02_clip_15,Bar 12232,Because she really hates doing tests.,Because she wanted the patient to have some peace.,Because she isn't qualified to do them and doesn't want anyone to know.,Because she has an important appointment to get to.,Because she is just mad at House and wants to disagree with him. ,1,Why did Cameron disagree with House when he said he wanted to re-do all the tests?,134271,House M.D.,71.56-87.87,house_s03e01_seg02_clip_18,Because she wanted the patient to have some peace. 12233,Rachel tells Danny she can't wait for their date,Rachel tells Danny it's too soon to date,Rachel tells Danny to skip their date,Rachel doesn't tell Danny anything,Rachel tells Danny she still has feelings for her ex,2,What does Rachel tell Danny after he answers the door?,134272,Friends,NaN-NaN,friends_s05e10_seg02_clip_16,Rachel tells Danny to skip their date 12234,To the wall ,In a chair,On the floor,Out the window,Down the stairs,1,Where did he push Sofia after he took the gun from her?,134273,Castle,38.12-44.93,castle_s07e12_seg02_clip_23,In a chair 12235,Stole it.,Threw the shoe.,Gave it to Rachel.,He hit Bobby with it.,Joey made bobby take off his shoes before going inside.,3,What did Joey do with the shoe before he tried to marry Bobby and his sister?,134274,Friends,37.48-47.22,friends_s08e10_seg02_clip_13,He hit Bobby with it. 12236,"""Who are you?""","""Hey, how's it going?""","""What are you doing out here?""","""What's your name?""","""Who do you think you are?""",1,What did Marshall ask Brad immediately after running into him?,134275,How I Met You Mother,21.38-26.63,met_s02e05_seg02_clip_19,"""Hey, how's it going?""" 12237,Television,Shoes,Pillows,Books,Glasses,2,What is to Amy's left when Sheldon is knocking?,134276,The Big Bang Theory,0-4.05,s06e23_seg02_clip_14,Pillows 12238,The old lady lurker.,Monica.,Chandler.,Joey.,Rachel.,0,Who steals Phoebe's spot when she is on the phone?,134277,Friends,44.01-51.7,friends_s05e23-24_seg02_clip_28,The old lady lurker. 12239,Phoebe said she needed to get it off her mind. ,Phoebe said she thought Chandler already knew.,Phoebe said she thought Chandler should know.,Phoebe said she thought Chandler was out of the room.,Phoebe said it just came out and it was a side effect.,4,What was Phoebe's answer after Monica asked her why she told Chandler something?,134278,Friends,51.87-56.15,friends_s07e16_seg02_clip_19,Phoebe said it just came out and it was a side effect. 12240,He was scared.,He thought they were going to try and kill him.,He thought they were collection agents.,He doesn't like people coming after him.,It's because of the politics in football.,2,What does Derek Bolt when Ryan asks why he was running from them?,134279,Castle,50.91-61.36,castle_s07e19_seg02_clip_06,He thought they were collection agents. 12241,The color of the coats the guys are wearing is yellow,The color of the coats the guys are wearing is blue,The color of the coats the guys are wearing is red,The color of the coats the guys are wearing is black,The color of the coats the guys are wearing is green,2,What color coats are the guys wearing when they are in the walk-in freezer,134280,The Big Bang Theory,0-5.72,s02e23_seg02_clip_11,The color of the coats the guys are wearing is red 12242,A couch in the lobby,To a waiting car.,Back to her room.,To breakfast,To the bathroom,0,Where does Monica go after walking away from the reception desk?,134281,Friends,45.36-50.92,friends_s08e02_seg01_clip_00,A couch in the lobby 12243,a dog in a cage,a frog in a pond,a goldfish in a pond,a hamster in a cage,a guppy in a pond,2,What is the analogy going to be about when Rachel is talking with Ross?,134282,Friends,3.25-10.73,friends_s06e01_seg02_clip_14,a goldfish in a pond 12244,The park,The hallway,The bedroom,The briefing room,The interrogation room,4,Where does Beckett take Alonzo after they turned around his plane?,134283,Castle,37.17-90.66,castle_s08e13_seg02_clip_23,The interrogation room 12245,Joey is arguing with Ross in the living room,Monica is arguing with Ross in the living room,Rachel is arguing with Ross in the living room,Chandler is arguing with Ross in the living room,Phoebe is arguing with Ross in the living room,2,Who is arguing with Ross when they are in the living room?,134284,Friends,0-3.78,friends_s03e07_seg02_clip_14,Rachel is arguing with Ross in the living room 12246,The AMV is located in the kidney,The AMV is located in the ear,The AMV is located in the heart.,The AMV is located in the lungs.,The AMV is located in a crucial part of the brain.,4,Where Izzie said the AVM is located in the brain when talking to Mr. Duff?,134285,Grey's Anatomy,8.75-12.93,grey_s01e09_seg02_clip_13,The AMV is located in a crucial part of the brain. 12247,Refuses before agreeing to dance with her ,Ignores her,Yells at her,Dances with the woman,Leaves,0,What does Ross do after the LIttle Girl asks him to dance with her?,134286,Friends,32.27-42.52,friends_s08e01_seg02_clip_14,Refuses before agreeing to dance with her 12248,A magician,A cat,A photon,Mad scientist,A taxi ,2,What did Sheldon think was a good idea for a tshirt before they went into the office?,134287,The Big Bang Theory,0.92-20.14,s01e01_seg01_clip_00,A photon 12249,House opens up a tea bag.,House opens up a pill bottle.,House opens up a folder.,House opens up a briefcase.,House opens up a cabinet.,2,What does House open up after sitting down at the table?,134288,House M.D.,24.71-27,house_s02e18_seg02_clip_06,House opens up a folder. 12250,Loretta said that Barney was too good to be on the team.,Loretta said that Barney was terrible.,Loretta said that Barney could be on the team.,Loretta said that Barney should play another sport.,Loretta said that Barney wouldn't like basketball. ,0,What did Loretta say when Barney asked what the Coach said?,134289,How I Met You Mother,16.97-22.41,met_s06e02_seg02_clip_17,Loretta said that Barney was too good to be on the team. 12251,Because Esposito took a photo from him.,Because Beckett took his keys from him.,Because Castle took his keys from him.,Because Esposito took his keys from him.,Because Castle took a photo from him.,3,Why was Ryan standing with his hand out after Esposito called Castle?,134290,Castle,24.39-33.13,castle_s05e07_seg02_clip_11,Because Esposito took his keys from him. 12252,She's dancing.,She's on the phone sitting on the couch,She's jumping rope,She's sailing,she's eating,1,What is Penny doing when she talks about being part of a theatre group?,134291,The Big Bang Theory,0-51.49,s02e17_seg02_clip_09,She's on the phone sitting on the couch 12253,His shoes.,Mistress's coat.,Mistress's boot.,HIs coat.,His pants.,2,What was Esposito taking off when the Mistress said faster?,134292,Castle,55-64.92,castle_s02e16_seg02_clip_18,Mistress's boot. 12254,Winters hand exploded.,Winters hand glowed green.,Winters had fell of his arm.,Winters hand started to bleed.,Winters hand turned red.,1,What happened to Winters's hand after he put it forward to show Beckett and Castle?,134293,Castle,11.74-15.38,castle_s05e06_seg02_clip_23,Winters hand glowed green. 12255,Beckett spins her body.,Beckett spins a globe.,Beckett spins a toy.,Beckett spins a chair.,Beckett spins a television.,3,What does Beckett spin around after entering the room?,134294,Castle,2.7-7.2,castle_s07e23_seg02_clip_09,Beckett spins a chair. 12256,Ross,Rachel,Phoebe,Joey,Amy,3,Who tells Monica the plates are broken after Chandler broke them?,134295,Friends,69.28-79,friends_s09e08_seg02_clip_22,Joey 12257,She found it.,She adopted it from the shelter.,She got it from her dead mother.,She got custody of it in the divorce.,She got it for her birthday.,2,Where did Mandy say she got the cat from when House was going over what was wrong with her with her?,134296,House M.D.,2.23-8.03,house_s02e04_seg02_clip_05,She got it from her dead mother. 12258,Because Robin was dressed strange,Because Ted thought Robin moved on too fast.,Robin had an extra appendage,Ted had a crush on Gael,Robin gave him an STD,1,Why was Ted uncomfortable with Robin when she showed up to an event with Gael?,134297,How I Met You Mother,13.23-44.68,met_s03e01_seg02_clip_16,Because Ted thought Robin moved on too fast. 12259,Listening to headphones,Eating an apple,Reading a newspaper,Talking on the phone,Giving a piggy-back ride,3,What is Chandler doing when he walks into the room with Phoebe and Monica?,134298,Friends,47.19-53.02,friends_s10e03_seg02_clip_07,Talking on the phone 12260,His Lawyer's aunt,His cousin,A woman he married,A cop,The janitor,2,Who is the person Derek walked into the door and apologized to after she was reading?,134299,Grey's Anatomy,36-86.03,grey_s02e20_seg02_clip_25,A woman he married 12261,A flat screen TV.,A bouquet of flowers.,A blue mug.,A radio.,Rachel's car.,2,What's behind Chandler when discussing dating with Joey?,134300,Friends,0-11.02,friends_s07e17_seg02_clip_08,A blue mug. 12262,Sheldon was cooking.,Sheldon was eating.,Sheldon was using a computer.,Sheldon was speaking on a phone.,Sheldon was exercising.,2,What activity was Sheldon doing before Raj asks him to go out with him?,134301,The Big Bang Theory,17.75-25.15,s03e12_seg02_clip_01,Sheldon was using a computer. 12263,Cuddy was at the nurses' station at the computer.,Cuddy was on the toilet in a bathroom stall.,Cuddy was in House's patient's room.,Cuddy was in her car in the hospital parking lot.,Cuddy was sitting at her desk in her office.,4,Where was Cuddy when House was discussing getting his prescription for his shoulder problem?,134302,House M.D.,15.99-19.54,house_s03e08_seg02_clip_18,Cuddy was sitting at her desk in her office. 12264,Rachel and Phoebe are also present,Monica and Phoebe are also present,No one else is present,They are not in the cafe,Ross is alone with Chandler during the whole conversation,1,"Who is also present when Ross, Chandler, and Joey are having their conversation in the cafe?",134303,Friends,0-1.89,friends_s01e04_seg02_clip_01,Monica and Phoebe are also present 12265,Because her song is about a dead cousin.,Because her song is about a dead father.,Because her song is about a dead brother.,Because her song is about a dead sister.,Because her song is about a dead mom.,4,Why is everyone looking upset when Phoebe is singing?,134304,Friends,7.56-13.09,friends_s01e10_seg02_clip_02,Because her song is about a dead mom. 12266,Ted is sitting in front of Marshall.,James is sitting in front of Marshall.,Lily is sitting in front of Marshall.,Marshall is sitting in front of Marshall.,Barney is sitting in front of Marshall.,4,Who is sitting in front of Marshall when Ted is talking about songs?,134305,How I Met You Mother,5.87-11.74,met_s03e04_seg02_clip_15,Barney is sitting in front of Marshall. 12267,In his spot on the couch,At his computer desk,In the car with Leonard,On a stool at the counter,On the edge of his bed,1,Where does Sheldon sit after he uses the word Ditko in an explanation to Leonard?,134306,The Big Bang Theory,0.3-14.11,s08e18_seg02_clip_03,At his computer desk 12268,A hat,A phone,A key,A picture,A folder,3,What did Esposito show to House and Beckett when they were together?,134307,Castle,32.31-40.86,castle_s02e15_seg02_clip_17,A picture 12269,A mug,A glass,A key,A phone,A paper,0,What is Beckett holding when she is talking to Ana?,134308,Castle,52.27-62.24,castle_s02e15_seg02_clip_17,A mug 12270,So he could scratch his head with the pen when he went to pick it up. ,He wanted to lean down below the desk so he wouldn't be seen scratching his head.,He to distract the man.,He wanted to scratch it on the corner of the desk. ,It was an accident. ,3,Why did Marshall drop his pen on the floor after his head started itching?,134309,How I Met You Mother,18.42-30.81,met_s03e20_seg02_clip_07,He wanted to scratch it on the corner of the desk. 12271,Sheldon asked Amy to marry him.,Sheldon walked away.,Sheldon ran and slapped Dave.,Sheldon sat on the sidewalk and started crying.,Sheldon cut Dave's tire on his car. ,1,How did Sheldon react after he seen Dave kiss Amy?,134310,The Big Bang Theory,58.43-66.03,s09e08_seg01_clip_00,Sheldon walked away. 12272,Janice make tea.,Janice leave.,Janice eat pancakes.,Janice put her coat.,Janice water the flowers.,3,What did Janice after serving pancakes?,134311,Friends,43.42-46.22,friends_s03e01_seg02_clip_01,Janice put her coat. 12273,there is no answer,castle says no way, bekett asks if he has an answer,the killer turns himself in ,Caste asks if the remote can be activated from afar,4,what happens when beckett suggests there was a partner involved ,134312,Castle,41.41-45.01,castle_s04e19_seg02_clip_23,Caste asks if the remote can be activated from afar 12274,House is twirling his cane.,House is twirling a candy cane.,House is twirling his pen.,House is twirling his ponytail.,House is not twirling anything.,0,What is House twirling around when he asks the audience who the man is in the picture?,134313,House M.D.,0-10.58,house_s04e02_seg02_clip_00,House is twirling his cane. 12275,Bernadette rub her neck.,Bernadette served nachos.,Bernadette knocked the door.,Bernadette watched a movie.,Bernadette holded a blue cup.,4,What did Bernadette when Howard was playing a game with others?,134314,The Big Bang Theory,20-59.7,s06e23_seg02_clip_11,Bernadette holded a blue cup. 12276,If he was lying ,If they kissed,If they both had tattoos,If they had surgery,If they shared needles,4,What did House ask when Dugan denied having a sexual relationship with the senator?,134315,House M.D.,14.26-52.4,house_s07e06_seg02_clip_17,If they shared needles 12277,His foot.,His fingers.,His pen.,His cane.,His head. ,3,What did House use to push the speak bottom when he was talking to Chase?,134316,House M.D.,50.3-55.64,house_s07e02_seg02_clip_09,His cane. 12278,labs,surgery,researching,stressing,studying,1,What was the team doing when Allison was being helped?,134317,Grey's Anatomy,0-25,grey_s01e02_seg02_clip_03,surgery 12279,Wilson says he doesn't feel like talking,Wilson says he has a headache,Wilson says he has a great deal of paperwork,Wilson says he is about to go see a patient,Wilson says he wants to be alone,1,Why does Wilson tell House to go away when House enters Wilson's office?,134318,House M.D.,79.6-83.74,house_s08e19_seg02_clip_06,Wilson says he has a headache 12280,She wonders why House is mentally breaking,She wonders why House is sick,She wonders why House is dperessed,She wonders why House will not romantically pursue her,She wonders why House needs a new lover,3,What does the woman inquire about House when they meet?,134319,House M.D.,16.37-24.12,house_s02e11_seg02_clip_24,She wonders why House will not romantically pursue her 12281,Football.,Baseball.,Hockey.,Soccer.,Track.,2,What sport does Curt announce after shaking Robin's hand?,134320,How I Met You Mother,44.21-60.15,met_s03e11_seg01_clip_02,Hockey. 12282,Robin is walking into the apartment. ,Robin is standing in the kitchen.,Robin is sitting next to Lilly.,Robin is walking out of the door.,Robin is sitting on the floor to Marshall's left.,4,Where is Robin when Lilly and Marshall are speaking?,134321,How I Met You Mother,17.13-28.95,met_s03e12_seg02_clip_11,Robin is sitting on the floor to Marshall's left. 12283,Frank Jr. says the child is smart.,Frank Jr. says the child is hungry.,Frank Jr. says the child is funny,Frank Jr. says the child is tired.,Frank Jr. says the child is overweight,2,What does Frank Jr. say about Frank Jr. Jr. when Phoebe asks if she can have him.,134322,Friends,37.19-59.03,friends_s10e02_seg02_clip_12,Frank Jr. says the child is funny 12284,Roland,Tiffany,William,Sasha ,Joe,0,what did Chloe call Robin before she left out of the apartment ?,134323,How I Met You Mother,29.1-33.66,met_s02e07_seg02_clip_18,Roland 12285,To get their fingernails done,To get tattoos ,To get their hair dyed,Solicited illegal drugs,To get some piercings ,1,What did Kitty say Maya and Chloe did when they visited the shop?,134324,Castle,12.52-16.55,castle_s03e01_seg02_clip_19,To get tattoos 12286,In jail.,At her house.,At the precinct.,With the national gaurd.,With Esposito.,2,Where did Ryan say Gates wanted to keep Eric till they could find him a new safe house when the crime scene techs were going through the place that Beckett and Eric got shot at?,134325,Castle,85.07-90.16,castle_s05e21_seg02_clip_19,At the precinct. 12287,Swim shorts,Yoga outfit,Pajamas and robe,Mascot costume,Leggings,2,What was Sheldon wearing when Leonard told him to go get his clothes on?,134326,The Big Bang Theory,14.99-18.66,s06e14_seg02_clip_09,Pajamas and robe 12288,There was a large amount of urine.,The urine was clear.,The urine was yellow.,There wasn't any urine.,The urine was brown.,4,Why were Sarah and Alan confused when House held up a bag of urine?,134327,House M.D.,67-80.77,house_s02e17_seg02_clip_06,The urine was brown. 12289,He was eating a salad.,He was reading a book.,He was texting on his phone.,He was making a phone call.,He was listening to a podcast.,0,What was Sheldon doing when Howard was talking to him?,134328,The Big Bang Theory,0-10.26,s04e03_seg02_clip_09,He was eating a salad. 12290,Blargon 7,Blargon 8,Blargon 6,Blargon 5,Blargon 4,0,Where does Joey's character say he is going before he leaves in search of alternative fuels?,134329,Friends,0-7.28,friends_s08e19_seg02_clip_02,Blargon 7 12291,Is the punk room ready?,You won't catch my disease will you?,Is my daughter here?,Did you ask that girl out?,Are you here to take me home?,1,What does sophie ASK george after he full enters her room?,134330,Grey's Anatomy,36.05-47.18,grey_s02e14_seg02_clip_19,You won't catch my disease will you? 12292,Esposito,Castle,Ryan,Montgomery,Gains,1,Who picked up Beckett after she collapses?,134331,Castle,0-17.03,castle_s06e22_seg02_clip_20,Castle 12293,Joey wants to make a lot of money.,Joey wants his ad to be for Lyme disease.,Chandler wasn't paying attention to what Joey said.,Joey hopes this poster will make him famous.,Joey wants to make more posters. ,1,Why does Chandler wish Joey luck after Joey tells him about his poster?,134332,Friends,6.44-25.21,friends_s01e09_seg02_clip_01,Joey wants his ad to be for Lyme disease. 12294,Amy tells Sheldon it's a real thing. ,Amy tells Sheldon it's not a real thing. ,Amy tells Sheldon he's so smart. ,Amy tells Sheldon he needs a hobby. ,Amy tells Sheldon to get a new girlfriend. ,1,What is Amy's response to Sheldon's reason when he won't tell them what they want to know?,134333,The Big Bang Theory,27.14-27.74,s06e19_seg02_clip_06,Amy tells Sheldon it's not a real thing. 12295,By asking the onlookers,By looking at the type of keys,By starting all the cars with the keys,By following the trail of blood from the keys,By pressing the car alarm,4,How does Beckett find the victim's car after finding his keys?,134334,Castle,69.32-82.82,castle_s03e07_seg02_clip_01,By pressing the car alarm 12296,Hicks partner snitched on him,They tracked the license plate on the SUV Hicks owned,Hicks left his wallet on the scene,Tech tracked Hicks through his online transactions,Tech tracked Hicks through his email ,1,How did Esposito say Tech was able to identify the Hicks when examining the board? ,134335,Castle,49.94-60.64,castle_s07e17_seg02_clip_14,They tracked the license plate on the SUV Hicks owned 12297,It had been 20 years.,It had been two years.,It had been 10 years.,It had been five years.,It had been three years.,1,How long had it been since Achmed Sahid immigrated to the United States after he moved away from Pakistan?,134336,Castle,55.15-58.28,castle_s08e13_seg02_clip_12,It had been two years. 12298,Raj and Howard are trying to convince Leonard to ask Stephanie out.,Raj and Howard are trying to convince Leonard to ask Penny out. ,Raj and Howard are trying to convince Leonard to ask Emily out.,Raj and Howard are trying to convince Leonard to ask Jenny out.,Raj and Howard are trying to convince Leonard to ask Debra out.,1,Who is Raj and Howard trying to set Leonard up with when they are at lunch?,134337,The Big Bang Theory,3.9-19.51,s07e11_seg02_clip_04,Raj and Howard are trying to convince Leonard to ask Penny out. 12299,nobody pulled them aside to talk,it was chandler and monica,it was joey and pheobe,it was some guy,it was Ross' mom and dad,4,Who was it that pulled ross and rachael aside to talk when they were talking to the woman,134338,Friends,8.99-18.86,friends_s08e18_seg02_clip_04,it was Ross' mom and dad 12300,Somebody needs to stop Reanna from talking.,Somebody needs to stop Monica from talking.,Somebody needs to stop Janice from talking.,Somebody needs to stop Louise from talking.,Somebody needs to stop her from talking.,4,What does Phoebe say when she is talking about Monica's party?,134339,Friends,11.35-14.32,friends_s08e08_seg01_clip_01,Somebody needs to stop her from talking. 12301,Bert is an amputee,Bert has acne,Bert is bald,Bert's size,Bert has a large nose,3,What physical characteristic of Bert's does Sheldon reference after listening to Penny's thoughts?,134340,The Big Bang Theory,45.46-60.18,s10e09_seg02_clip_07,Bert's size 12302,Chandler,Ross,Joey,Kevin,Jese,1,Who did something wrong and is looking for advice from his friends when in the kitchen?,134341,Friends,0-31.52,friends_s03e16_seg02_clip_03,Ross 12303,Yang is wearing flowers in her hair.,Yang is wearing barrettes in her hair.,Yang is wearing a headband in her hair.,Yang is wearing extensions in her hair.,Yang is wearing blue curlers in her hair.,4,What is Yang wearing in her hair when Izzie applied makeup on her eyebrows?,134342,Grey's Anatomy,0-8.3,grey_s03e25_seg02_clip_21,Yang is wearing blue curlers in her hair. 12304,Fernando is hungry,Fernando is angry,Fernando is happy,Fernando is sad,Fernando is skeptical,4,How does Fernando act when House tells him the fire was a cooking accident? ,134343,House M.D.,47.91-59.24,house_s05e12_seg02_clip_20,Fernando is skeptical 12305,Cuddy hangs her coat in the closet behind her desk.,Cuddy folds her coat over the back of her office chair.,Cuddy places her coat on the back of the armchair.,Cuddy tosses her coat at House.,Cuddy places her coat on the coat rack by the door.,4,Where does Cuddy place her coat when talking to House about her date with Wilson?,134344,House M.D.,12.05-18.99,house_s02e22_seg02_clip_03,Cuddy places her coat on the coat rack by the door. 12306,Castle managed to get 9 seats.,Castle managed to get three seats.,Castle managed to get two seats.,Castle managed to get four seats.,Castle managed to get seven seats.,1,How many seats to the burlesque show did Castle manage to get when he was at a casino?,134345,Castle,44.61-46.91,castle_s04e08_seg02_clip_10,Castle managed to get three seats. 12307,A frying pan. ,A knife. ,Her gun. ,A glass of water. ,A glass of wine. ,0,What is Beckett waving around when she is in the kitchen?,134346,Castle,3.74-9.36,castle_s07e09_seg02_clip_00,A frying pan. 12308,He lied to the authorities,He paid the authorities off,He gave House a new ID,He let House stay with him,He lent House $100,0,What did Wilson do before House could be sent to jail?,134347,House M.D.,11.84-21.86,house_s03e07_seg02_clip_11,He lied to the authorities 12309,Joey was showing Ross he can be actor acting like a writer,Joey was making a list for the groceries,Joey was writing down a phone number,Joey did not have paper and pencil,Joey was writing a note for Chandler,0,Why did Joey have a paper and pencil when he was by the counter with Ross?,134348,Friends,25.69-33.07,friends_s05e10_seg02_clip_04,Joey was showing Ross he can be actor acting like a writer 12310,The parents are offended by Houses's GM statement about no recalls and no rebates. They're concerned that their son want receive gentle care based on House's rudeness.,"The parents are concerned about the risks involved with the machine and hospital, evident by lawsuits.",The parents are concerned about the risks involved with filtering out Matty's white blood cells for diagnosis then returning them within a tight and sensitive timeframe. It's not guaranteed.,They are concerned whether Wilson has the expertise and experience to cure their son.,They are concerned about whether House would be involved in the medical procedure because he is rude to them.,2,Why are Matty's parents concerned when Wilson and House are talking to them about treatment for their son?,134349,House M.D.,29.6-38.74,house_s03e21_seg02_clip_02,The parents are concerned about the risks involved with filtering out Matty's white blood cells for diagnosis then returning them within a tight and sensitive timeframe. It's not guaranteed. 12311,An accident falling down the stairs.,He had lunch.,A dentist appointment.,A massage appointment.,A heart attack.,4,What did Rachel's father have after going to Barney's?,134350,Friends,28.21-38.72,friends_s10e13_seg02_clip_01,A heart attack. 12312,Derek didn't signal anyone,Derek signaled Izzie,Derek signaled Meridith,Derek signaled Alex,Derek signaled George,4,Who did Derek signal after he was leaving the surgery room?,134351,Grey's Anatomy,28.67-36.24,grey_s01e07_seg02_clip_19,Derek signaled George 12313,Charisse is angry because Agnes was the reason Charisse was in prison.,Charrisse is frustrated that Agnes was reckless and almost tanked the Aca-Cons competition.,Charisse is angry with Agnes because Agnes stole Charisse's man.,Agnes threw Charisse's favorite jackett in the garbage.,Agnes sang off key and refused to practice for the compettion.,1,Why was Charisse angry with Agners over the Aca-Cons competition after Castle accuses Agnes of messing up?,134352,Castle,37.27-60.74,castle_s08e09_seg02_clip_09,Charrisse is frustrated that Agnes was reckless and almost tanked the Aca-Cons competition. 12314,she doesn't know who the father is . ,the father is ross,the father is chandler's ,the father is joey,the father is famous. ,4,why does pheobe say she can't tell who the father is after she tells her friends that she is pregnant?,134353,Friends,23.53-31.93,friends_s08e01_seg02_clip_01,the father is famous. 12315,Dissappointed,Mad,Excited,A little surprised,Sad,3,How does grandmother react when Phoebe asks to see the pictures of her father? ,134354,Friends,24.5-30.4,friends_s02e09_seg02_clip_03,A little surprised 12316,Rachel stops being friends with Joey.,Rachel hits Joey.,Rachel yells at Joey.,Rachel leaves the room.,Rachel gets back at Joey by aggressively coming on to him.,4,How does Rachel get back at Joey when he makes one last joke?,134355,Friends,39.92-60.03,friends_s07e02_seg02_clip_18,Rachel gets back at Joey by aggressively coming on to him. 12317,Smelly Cat.,Hey Mickey.,Girls Just Wanna Have Fun.,Beat it.,Living on a Prayer.,1,What song couldn't Phoebe get out of her head when she was wearing earmuffs?,134356,Friends,17.56-21.88,friends_s07e12_seg02_clip_10,Hey Mickey. 12318,12-foot-long.,Six-foot-long.,Three-foot-long.,19-foot-long.,Seven-foot-long.,1,How long did Cameron say the hose was for treating the patient when she was disagreeing with Foreman about the cause of illness?,134357,House M.D.,30.2-33.86,house_s02e18_seg02_clip_06,Six-foot-long. 12319,Chase throws down a folder.,Chase throws down a notepad.,Chase throws down a pill bottle.,Chase throws down a movie.,Chase throws down his coat.,0,What does Chase throw onto the table when speaking with House?,134358,House M.D.,52.2-54.47,house_s01e18_seg02_clip_05,Chase throws down a folder. 12320,He rolled his eyes.,He sat down.,He walked away.,He whispered in Howard's ear.,He scratched his chin.,3,What did Raj do after Leonard said what do you guys think?,134359,The Big Bang Theory,0-8.39,s02e18_seg02_clip_05,He whispered in Howard's ear. 12321,Beckett is sitting with her grandmother when she is talking to Castle.,Beckett is sitting on a desk when she is talking to Castle about a case.,Beckett is sitting with a dog when she is talking to Castle.,Beckett is sitting on a bench when she is talking to Castle.,Beckett is sitting on a bicycle when she is talking to Castle.,1,Where is Beckett sitting when she is talking to Castle about a case?,134360,Castle,67.82-76.19,castle_s08e21_seg02_clip_15,Beckett is sitting on a desk when she is talking to Castle about a case. 12322,a barrette,a scrunchie,a pencil,a headband,a ponytail,3,What does the blonde lady have in her hair when she is talking to the black doctor?,134361,House M.D.,3.88-5.34,house_s05e21_seg02_clip_06,a headband 12323,A jar,A cup,A book,A bag,A picture,4,What did Joyce show on the cam when she was on a video call with Eposito and Ryan,134362,Castle,15.93-18.66,castle_s08e11_seg02_clip_10,A picture 12324,Foreman begins treating Stevie in the room and asks Leah to get the nurse.,Foreman takes Stevie to the operating room immediate for exploratory surgery.,Foreman calls Cuddy and tells her he's going to treat Stevie immediately.,Foreman calls House and asks him for help getting Stevie stabilized. ,Foreman agrees to do the venogram now and said he would deal with the fallout later.,4,What does Foreman ultimately do when Stevie has a serious episode?,134363,House M.D.,81.92-89.66,house_s03e13_seg02_clip_02,Foreman agrees to do the venogram now and said he would deal with the fallout later. 12325,A cashmere double breasted Dolce & Gabbana.,A young dead person.,A new watch.,A great haircut.,A Gucci suit.,0,What did Barney say was such a waste when he was looking at the dead person? ,134364,How I Met You Mother,10.47-20.38,met_s02e14_seg02_clip_02,A cashmere double breasted Dolce & Gabbana. 12326,because mrs byrd wants the very best for her pruitt,because mrs byrd wants insurance money,because mrs byrd wants an adventure,because mrs byrd wants to impress dr burke,because mrs byrd want to impress cristina ,0,why does mrs byrd say they're here after dr burke say it's risky?,134365,Grey's Anatomy,63.72-91.03,grey_s03e06_seg02_clip_03,because mrs byrd wants the very best for her pruitt 12327,Behind Espinoza.,Behind Ryan.,Behind Beckett.,Behind Castle.,Behind Tom.,0,Where is Det. Sanovivich's desk when Beckett asked Ryan and Espinoza to hit the streets?,134366,Castle,3.18-11.35,castle_s02e21_seg02_clip_04,Behind Espinoza. 12328,House says he found the woman at an escort service.,House says he found the woman in the E.R.,House says he found the woman at a dive bar.,House says he found the woman on Facebook.,House says he found the woman at Cuddy's women's group.,3,Where does House tell Wilson he found the woman he called when they are making pizzas?,134367,House M.D.,77.3-82.82,house_s08e16_seg02_clip_26,House says he found the woman on Facebook. 12329,Playing,Dancing,Singing,Screaming,Reading,0,"What is Monica, Ross and Joey doing after Rachel enters the room?",134368,Friends,0.99-10.57,friends_s05e21_seg02_clip_06,Playing 12330,Fables.,Stories.,Parables.,Old folk tales.,Summons.,1,What did Marshall's mother and brothers tell that were so perfect before his brother #1 said he picked his crying son up off the ice?,134369,How I Met You Mother,0-7.08,met_s06e14_seg02_clip_15,Stories. 12331,Castle.,Neil McCauley.,Beckett.,Robert De niro.,A woman.,1,Who bought a ticket an hour before the flight and has no credit history?,134370,Castle,14.1-26.33,castle_s03e22_seg02_clip_02,Neil McCauley. 12332,The interrogation room,The break room,Home,A shelter,Becketts office,0,Where did the uniform cops move tyson when tysons lawyer insisted he be moved out of the holding cell?,134371,Castle,28.21-34.1,castle_s07e14_seg02_clip_22,The interrogation room 12333,He was starting an IV. ,He was using a scalpel.,He was injecting something into the patient.,He was prepping the patient for surgery.,He was looking at a clipboard. ,2,What was the surgeon doing when he said he was ready for the donor heart?,134372,House M.D.,5.22-11.94,house_s01e14_seg02_clip_21,He was injecting something into the patient. 12334,"Wanted: girlfriend, nonugly, nonsmoker. ","Wanted: Hot female roommate, nonsmoker. ",Wanted: Human nonsmoking roommate. ,"Wanted: Female roommate, nonsmoker, nonugly.","Wanted: 19 or older roommate, nonugly, nonsmoker. ",3,What does Chandler read when Joey shows him his ad for a new roommate?,134373,Friends,31.01-56.45,friends_s06e03_seg02_clip_03,"Wanted: Female roommate, nonsmoker, nonugly." 12335,Plant root,Mushrooms,Beer ,Rye bread,Wine ,3,Where does Cole say the patient got the poison she ingested when trying to find a diagnosis with the other doctors?,134374,House M.D.,49.54-58.26,house_s04e04_seg02_clip_22,Rye bread 12336,A purse.,A book.,A baby monitor.,A cup.,A shoe.,2,What was Rachel holding in her hand when she came into the apartment?,134375,Friends,40-45.23,friends_s10e16_seg02_clip_04,A baby monitor. 12337,phone,watch,computer,paper,floor,0,What did Ryan look at after he started talking?,134376,Castle,6.77-13.53,castle_s08e07_seg02_clip_09,phone 12338,A newspaper. ,A magazine. ,A mug. ,A glass. ,His coat. ,1,What is Ross holding in his hands when Chandler sits down at the coffee house?,134377,Friends,13.97-18.41,friends_s01e05_seg02_clip_00,A magazine. 12339,it died from low battery,it melted,it got busted from the fall,it was hacked,it fell down a drain,2,What happened to espositos phone when he pulled it out to call for help?,134378,Castle,68.27-76.92,castle_s06e11_seg02_clip_17,it got busted from the fall 12340,He found out Kathy is a man. ,He found out his girlfriend is moving. ,He found out that his girlfriend is cheating. ,He found out Kathy is dying. ,He found out Kathy is awesome. ,2,Why is Chandler so upset when he gets home?,134379,Friends,10.68-15.26,friends_s04e13_seg02_clip_10,He found out that his girlfriend is cheating. 12341,The man wanted to exchange phone numbers with Cuddy,The man wanted to kiss Cuddy.,The man wanted to exchange stories with Cuddy.,The man wanted to dancercise with Cuddy.,The man wanted to drink with Cuddy.,3,What did the man at the dance want to do with Cuddy when he was near her?,134380,House M.D.,85.54-89.1,house_s06e06_seg02_clip_09,The man wanted to dancercise with Cuddy. 12342,Leonard didn't care. ,Leonard felt happy that he wouldn't have to worry about how to proceed. ,Leonard felt awkward and like Leslie didn't really care about him.,Leonard felt angry that Leslie would try and order him around. ,Leonard felt sad. ,2,How did Leonard feel when Leslie gave him the schedule for their date?,134381,The Big Bang Theory,11.34-27.41,s02e02_seg02_clip_04,Leonard felt awkward and like Leslie didn't really care about him. 12343,a purse,a box,a pillow,a book,a blanket,0,What is sitting behind Rachel and Monica when sitting on the sofa?,134382,Friends,35.27-42.15,friends_s04e21_seg02_clip_18,a purse 12344,Leave it a plate of cookies,Get rid of it,Put it in a cage,Release it into the wild,Leave it alone,1,What did Mike think Phoebe should do with the rat after finding out about it?,134383,Friends,60.19-63.03,friends_s09e12_seg02_clip_00,Get rid of it 12345,Masters got up from her chair.,Masters put in an I.V.,Masters left the room.,Masters squeezed Lane's hand.,Masters put away her cell phone.,0,What did Masters do after Lane told her he was awake?,134384,House M.D.,47.53-56.34,house_s07e16_seg02_clip_21,Masters got up from her chair. 12346,Dr. Bailey was posting in facebook.,Dr. Bailey was eating,Dr. Bailey was playing a game.,Dr. Bailey was taking a selfie with a girl.,Dr. Bailey was operating a girl.,4,What was doing Dr. Bailey when sat on front the patient.,134385,Grey's Anatomy,65.8-70.86,grey_s01e07_seg02_clip_11,Dr. Bailey was operating a girl. 12347,Gay men,Older people,Teens,Democrats,Hipsters,0,Who does Barney believe set trends when he's giving a speech to his friends?,134386,How I Met You Mother,7.34-15.28,met_s02e10_seg02_clip_11,Gay men 12348,his neighbor ,his cousin,Roid Rage ,King Pin ,his mothers gynecologist ,2,Who was ryan going to sell the kolopon before he ended up in the hospital? ,134387,House M.D.,15.18-22.55,house_s07e15_seg02_clip_06,Roid Rage 12349,Rachel,Monica,Phoebe,Carol,Karen,2,Who is so desperate for a Valentine's day date that she is considering going out with her creepy ex-boyfriend before her friends try to talk her out of it?,134388,Friends,4.55-22.44,friends_s01e14_seg02_clip_00,Phoebe 12350,in his office,in front of the elevator,coming out of the bathroom,no where,sitting on a bench across the elevator,4,"where was house when the elevator doors opened for taub, kutner, and deedee?",134389,House M.D.,85.3-90.27,house_s05e10_seg02_clip_11,sitting on a bench across the elevator 12351,The door knob,A slice of cake,A box,Her jacket,Some candles,3,What was Monica holding before Phobe said something about not being able to do more?,134390,Friends,0-8.1,friends_s08e20_seg02_clip_03,Her jacket 12352,Leonard had a comic book.,Leonard had a cup of coffee.,Leonard had a watch.,Leonard had a TV guide.,Leonard had his research paper.,0,What did Leonard have in his hand when he was sitting on the couch?,134391,The Big Bang Theory,0-9.69,s09e11_seg02_clip_06,Leonard had a comic book. 12353,pencil,gun,badge,drink,cell phone ,2,What did Beckett have on her waist when she was talking to Ryan and Esposito about the attempted robbery ?,134392,Castle,61.65-91.33,castle_s06e08_seg02_clip_13,badge 12354,What about running straight at them?,What about the car?,What about we just quit?,What about the creek bed?,What about sending Raj out?,3,Where did Howard suggest after Leonard said the Chemistry Department had them cut off?,134393,The Big Bang Theory,15.29-25.68,s02e16_seg01_clip_00,What about the creek bed? 12355,A pimple.,A face mask. ,A band-aid.,A ketchup smear.,An oxygen cannula. ,4,"What does Kelvin have on his face when he says, I'm sorry. About what happened?""",134394,House M.D.,21.37-25.82,house_s02e07_seg02_clip_09,An oxygen cannula. 12356,Zach is at a cemetery.,Zach is in an office.,Zach is at a grocery store.,Zach is at a construction site.,Zach is at a restaurant.,3,Where is Zach when Ryan and Esposito interview him about his dead ex?,134395,Castle,40.06-59.87,castle_s06e13_seg02_clip_03,Zach is at a construction site. 12357,Thai takeout.,Chinese takeout.,Burgers.,Pizza.,Sushi.,0,What kind of food does Sheldon say he brought after Bernadette says she cooked for him from scratch?,134396,The Big Bang Theory,11.83-28.39,s06e19_seg01_clip_01,Thai takeout. 12358,The chapel.,The casino.,The mall.,The bathroom.,Outside.,0,Where were Chandler and Monica when Chandler was singing the graduation song?,134397,Friends,21.77-34.35,friends_s05e23-24_seg02_clip_41,The chapel. 12359,In a cafe,On the floor,In the office,On the couch,In the movie theatre,3,Where is Howard sitting when talking to Sheldon and his dad,134398,The Big Bang Theory,0-9.62,s07e09_seg02_clip_08,On the couch 12360,An apology,A hug,The rent,A kiss,Her iPod,3,What does Castle want from Alexis before she leaves?,134399,Castle,45.51-58.26,castle_s03e20_seg02_clip_18,A kiss 12361,Mary Had a Little Lamb,Stinky shoe,Row Row Row Your Boat,Soft Kitty,Smelly cat,4,What song is Phoebe practicing when she is in the coffee house?,134400,Friends,48.52-73.89,friends_s02e06_seg02_clip_21,Smelly cat 12362,A jacket.,A backpack.,His sunglasses.,A trench coat.,A white doctors coat.,2,What did House take off before Wilson asked about his DVD player?,134401,House M.D.,2.28-8.19,house_s02e19_seg02_clip_00,His sunglasses. 12363,keys,plate,coat,food,spoon,4,What was the girl holding before she started talking?,134402,Grey's Anatomy,0-7.2,grey_s02e08_seg02_clip_14,spoon 12364,Because she can't wait to get off work.,Because she get butterflies in the stomach.,Because she can't think of anything else.,Because she calls him constantly.,Because all the songs make sense.,4,How did Beckett respond when Castle asked her how she knows when she's in love?,134403,Castle,7.42-9.61,castle_s03e04_seg02_clip_23,Because all the songs make sense. 12365,She smiled,She cried ,She laughed,She danced,She frowned,1,How did Becca reacted when Cuddy tried to talk her to wait. ,134404,House M.D.,0-10.01,house_s05e06_seg02_clip_16,She cried 12366,being hungry,going outside,wearing loose clothes,being loud,eating food for free,4,What did Raj make fun of Penny for when they ate dinner?,134405,The Big Bang Theory,0-15.44,s02e14_seg02_clip_06,eating food for free 12367,Cooking,Playing a game,Talking ,Watching TV ,Watching a movie,0,"What is Monica, Phoebe, Ross, Joey and Chandler doing before Carol walks into the apartment",134406,Friends,0-40.89,friends_s02e11_seg02_clip_15,Cooking 12368,Beckett has evidence box.,Beckett has files .,Beckett has a gun.,Beckett has a coffee cup.,Beckett has a phone.,3,What does Beckett have in her hand when she is walking with Gates ?,134407,Castle,5.73-10.58,castle_s04e08_seg02_clip_13,Beckett has a coffee cup. 12369,24,25,18,21,20,0,How old was the man Rachel was talking to when she was sitting on the stairs?,134408,Friends,0-6.5,friends_s07e14_seg02_clip_19,24 12370,Roy asks for his $500,Roy asks for his $350,Roy doesn't ask for anything ,Roy asks for his money back,Roy asks for his $300,4,What does Roy ask for before he leaves the party?,134409,Friends,24.38-25.4,friends_s10e11_seg02_clip_12,Roy asks for his $300 12371,The kids from school.,The monster under the bed.,"The ""bad men"".",Spock.,The giant rats.,3,"Who does Sheldon beg his mom not to let be ""taken"" by after Penny gives him the phone? ",134410,The Big Bang Theory,32.77-40.02,s04e14_seg02_clip_15,Spock. 12372,Next to Phoebe.,Next to Monica.,Behind Phoebe.,Next to the refrigerator.,Next to Chandler.,0,Where is Ross when Monica walks over to Phoebe?,134411,Friends,1.89-10.08,friends_s04e09_seg02_clip_00,Next to Phoebe. 12373,Writing on the bulletin board,nothing,laughing,burping,He is writing in his notebook,0,What is Raj doing after the scene starts?,134412,The Big Bang Theory,2.53-46.02,s02e14_seg01_clip_01,Writing on the bulletin board 12374,A potrait,A cross,A priest,A candle,Flowers,4,What is behind Marshall's Brother #1 when he is speaking at the funeral?,134413,How I Met You Mother,5.9-11.21,met_s06e14_seg02_clip_15,Flowers 12375,His ex-girlfriend.,Ted.,Barney.,His parents.,Lily.,4,Who does Marshall express he doesn't want to be told after making his speech?,134414,How I Met You Mother,92.93-146.34,met_s06e01_seg02_clip_16,Lily. 12376,George thinks Izzie said something bad to his wife.,George thinks his wife cheated on him with Izzie.,George thinks Izzie punched his wife.,George thinks Izzie sabotaged his work.,George thinks Izzie got a raise.,0,Why was George mad at Izzie when she talked to him?,134415,Grey's Anatomy,5.46-14.94,grey_s03e17_seg02_clip_10,George thinks Izzie said something bad to his wife. 12377,call for backup,call 911,asked Howard to sit down,called Howard's mother,asked Leonard for insurance,0,What did the nurse do when she tried to help?,134416,The Big Bang Theory,43.62-61.43,s04e01_seg02_clip_15,call for backup 12378,Sean,Adam,James,Chase,Jimmy,3,Who replied Penelope when she asked if she's ok?,134417,House M.D.,0-5.34,house_s05e23_seg02_clip_21,Chase 12379,Bernadette.,Leonard.,Howard.,Mrs. Davis.,Amy.,4,Who come after Penny walk away?,134418,The Big Bang Theory,0-8.17,s07e18_seg02_clip_17,Amy. 12380,He asks him to take him to the show. ,He asks him to take him to the dentist. ,He asks him to take him to Amy's. ,He asks him to take him to a concert. ,He asks him to take him on a date. ,1,What is Sheldon asking Stuart when he is in the comic book store?,134419,The Big Bang Theory,0-3.14,s05e15_seg02_clip_07,He asks him to take him to the dentist. 12381,That they need new checkbooks,That he's moving in and they can split the rent,That he's moving out and Joey needs to pay the rent,That the rent is due mid-month,That they need to pay the phone bill ,2,What did Chandler tell Joey when they talked?,134420,Friends,0-9.43,friends_s06e06_seg01_clip_00,That he's moving out and Joey needs to pay the rent 12382,Because Sheldon says he is too hungry to talk about the show.,Because Sheldon says he is too sleepy to talk about the show.,Because Sheldon says he is too hot and tired to talk about how much he hates the show.,Because Sheldon says he is too bored to talk about the show.,Because Sheldon says he is too depressed to talk about the show.,2,Why does Sheldon not want to talk about Star Trek when Raj mentions voyager?,134421,The Big Bang Theory,18.22-36.44,s08e06_seg02_clip_16,Because Sheldon says he is too hot and tired to talk about how much he hates the show. 12383,In the kitchen,In a dark room,At the grocery store,At the gym,Laying in bed,1,Where is Castle when he is talking with Jenkins?,134422,Castle,0-9.9,castle_s07e02_seg02_clip_25,In a dark room 12384,Beckett is under investigation,Beckett and Simmons are lovers,Beckett is on pain pills,Beckett has a history with Vulcan Simmons,Beckett is too reckless,3,Why is Beckett taken off the Simmons case when she is called into the Captain's office?,134423,Castle,42.76-58.07,castle_s06e22_seg02_clip_04,Beckett has a history with Vulcan Simmons 12385,Puts his shoes on. ,Kicks the cupboard ,Grabs a beer,Takes off his hat,Tosses the basketball behind him,4,What does Chandler do after he says they can lose to junior high girls some other time?,134424,Friends,57.69-62.37,friends_s08e20_seg02_clip_00,Tosses the basketball behind him 12386,A wreath,A Christmas orniment,A plate of cookies,A present,A bat,4,What was Lily holding when Ted was at the door?,134425,How I Met You Mother,0-5.86,met_s02e11_seg02_clip_10,A bat 12387,His son., The nurse.,His wife.,The doctor.,A bug.,0,Who touches Mr. Walkers arm when he is in the hospital bed?,134426,Grey's Anatomy,27.01-31.06,grey_s01e09_seg02_clip_21,His son. 12388,Finding the perfect person,Flowers,Coffee,Ross,Chandler,0,What does Rachel talk about after Phoebe sits down?,134427,Friends,10.57-20.81,friends_s08e16_seg02_clip_00,Finding the perfect person 12389,blanket,bottle,phone,pillow,glass,2,What does Rachel pickup first when she goes to lay on the bed?,134428,Friends,9.15-15.94,friends_s05e23-24_seg02_clip_35,phone 12390,A shot of whiskey.,A cold beer.,A gin and tonic.,A glass of wine.,A shot of vodka.,2,What drink does Barney get when the waitress comes?,134429,How I Met You Mother,8.12-18.34,met_s03e11_seg01_clip_02,A gin and tonic. 12391,Nice party,Happy Halloween,Finally,"Bye, Penny",I'm going to go play video games ,1,What did Sheldon say to Penny before he left the party? ,134430,The Big Bang Theory,11.9-18,s01e06_seg02_clip_13,Happy Halloween 12392,God's score was two.,God's score was four.,God's has no score.,Dr. House tied God.,God's score was seven.,0,What was God's score when Dr. House was standing in front's of the Whiteboard?,134431,House M.D.,23.59-28.93,house_s02e19_seg02_clip_08,God's score was two. 12393,Because his sister is there.,Because his brother is there.,Because his lie is coming true.,Because his friend is there.,Because his lie is working.,2,Why does Ross get upset when a man approaches him?,134432,Friends,37.6-41.69,friends_s08e02_seg02_clip_12,Because his lie is coming true. 12394,I decide what happens.,I can't allow you to decide.,There are too many factors.,What would you like to do.,It isn't up to her.,4,Why did Burke say Cristine couldn't make the decision before he turned his back to leave?,134433,Grey's Anatomy,11.7-26.56,grey_s02e02_seg02_clip_08,It isn't up to her. 12395,They're going to a spa later,They're going to dinner later,They're going to the theater,They're going to the opera,They're going to the club,0,What did Beckett discover about Annika and her friends plans for later after reading Annika's Instagram?,134434,Castle,62.7-65.86,castle_s08e07_seg02_clip_09,They're going to a spa later 12396,Castle was still angry about his ex-wife Meredith getting the house and car.,Castle didn't want his ex-wife Meredith to have so much time with his daughter Alexis.,Castle didn't want his ex-wife Meredith to know about his other girlfriends.,Castle didn't want to have to pay his ex-wife Meredith's moving expenses.,Castle considered seeing his ex-wife Meredith everyday to be similar to a special kind of hell.,4,Why did Castle not want his ex-wife Meredith to move to New York after they had their little get-together earlier that morning?,134435,Castle,29.03-48.23,castle_s01e06_seg02_clip_00,Castle considered seeing his ex-wife Meredith everyday to be similar to a special kind of hell. 12397, Within 24 hours., Within 12 hours., Within 72 hours., Within 48 hours., Within 2 to 4 hours.,0,How long did Joey say it would take to return the dog when talking to Ms. Buffay?,134436,Friends,21.31-47.42,friends_s02e21_seg02_clip_11, Within 24 hours. 12398,She began eating dinner.,She sat down in a booth.,She went to the bathroom.,She laid down outside.,She walked onto the stage.,4,Where did Monica go after she talked to Chandler? ,134437,Friends,15.69-19.53,friends_s09e13_seg02_clip_22,She walked onto the stage. 12399,She sits down,She leaves the room,She stands up,She slaps him,She throws a glass of water at him,2,What does Leslie do after she starts having an argument with Sheldon?,134438,The Big Bang Theory,23.45-29.93,s02e02_seg02_clip_15,She stands up 12400,On the table in front of the couch,On her chest,In her purse,Against her ears,On a tray,3,Where did Phoebe put two pastries after she stepped away from the bar at the coffee shop?,134439,Friends,49.86-56.02,friends_s03e01_seg02_clip_08,Against her ears 12401,House walks in,Cuddy walks in,Cuddy sits down,the phone rings,House picks up his cane,3,What happens after Kutner tells the group the patient is getting worse?,134440,House M.D.,12.18-20.3,house_s05e12_seg02_clip_05,the phone rings 12402,He was looking out the window,He was standing by the bed,He was standing by the door,He was leaning on the wall,He was sitting by the patients bed,4,Where was House when he was checking the femal patient?,134441,House M.D.,43.21-49.06,house_s03e17_seg02_clip_23,He was sitting by the patients bed 12403,his pockets,His backpack,in his shirt pocket,in his coat,in his shoe,1,Where did House put the items he was taking when he was in the equipment room?,134442,House M.D.,17.77-26.89,house_s07e05_seg02_clip_22,His backpack 12404,he would see Joey at Burger King,he would see Joey at the gym,he would see Joey at McDonalds,he would see Joey at Pizza Hut,he would see Joey at Starbucks,0,Where does Ross say he would see Joey when he is discussing seeing people on occasions,134443,Friends,18.28-25.53,friends_s05e05_seg02_clip_17,he would see Joey at Burger King 12405,By the bathroom,By the door,By the water fountain,By the elevator,By the window,4,Where is George standing after Christina accuses him of flirting?,134444,Grey's Anatomy,30.37-39.11,grey_s03e02_seg02_clip_16,By the window 12406,irritated,sad,happy,bored,tired,2,How did Howard and Raj feel when they had their tattoo sleeves?,134445,The Big Bang Theory,0-11.9,s03e03_seg02_clip_02,happy 12407,a soda,a couch cover,a pillow and blanket,a plate with a hamburger,a puppy,2,What does Penny put on the couch after Sheldon is sitting on it?,134446,The Big Bang Theory,0-48.64,s02e21_seg02_clip_14,a pillow and blanket 12408,takes wilsons coffee,takes his jacket off,calls foreman,grabs a coffee,takes his tie off,4,what does house do after coming out of the court room with wilson?,134447,House M.D.,10.92-20.03,house_s01e09_seg02_clip_11,takes his tie off 12409,The patients blood looks like its been through a blender,Blood looks good,There are no blood cells ,The cells are deteriorating ,There are too many red cells,0,What does chase say about the patients blood cells when looking at them under a microscope?,134448,House M.D.,43.24-46.88,house_s01e19_seg02_clip_20,The patients blood looks like its been through a blender 12410,green,white ,blue,orange,yellow,3,What color is the wall behind House before he hangs up the scans?,134449,House M.D.,32.15-40.42,house_s03e05_seg02_clip_12,orange 12411,Ross said he had a great lecture,Joey said he had a great lecture,Chandler said he had a great lecture,Rachel said she had a great lecture,Phoebe said she had a great lecture,0,Who said they had a great lecture after Monica asked them about it?,134450,Friends,0-5.99,friends_s06e04_seg02_clip_05,Ross said he had a great lecture 12412,Because he will no longer be roommates with Sheldon.,Because he will no longer be roommates with Howard.,Because he will no longer be roommates with Amy.,Because he will no longer be roommates with Stuart.,Because he will no longer be roommates with Penny.,0,Why is Leonard upset when he is signing a document?,134451,The Big Bang Theory,10.15-15.07,s09e04_seg02_clip_04,Because he will no longer be roommates with Sheldon. 12413,He doesn't respond because he mouth is wired shut,He doesn't respond because he is scared of Sheldon,He doesn't respond because he just came from the dentist,He doesn't respond because he is in a coma,He doesn't respond because he doesn't like Sheldon,3,Why doesn't Mr. D'Onofio respond to Sheldon when he is talking about the bear,134452,The Big Bang Theory,28.29-36.74,s05e18_seg02_clip_05,He doesn't respond because he is in a coma 12414,Her apartment,Coffee shop,The Hospital ,Ross' apartment,Rachels apartment,2,"Where is Phoebe when she is talking to Monica, Chandler, and Ross?",134453,Friends,0-32.03,friends_s06e15-16_seg02_clip_22,The Hospital 12415,Check out my new clothes,Can you come here for a second?,"""Hey, can we talk""?",I miss you so much,Have you seen my wallet?,2,What does Leonard say to Penny after he walks inside?,134454,The Big Bang Theory,4.2-10.5,s07e12_seg02_clip_10,"""Hey, can we talk""?" 12416,Zoo animals,A store window,A computer screen,Menus ,A traffic accident ,2,What are the detectives and Castle looking at when talking about long blonde hair?,134455,Castle,78.56-84.02,castle_s03e07_seg02_clip_08,A computer screen 12417,There couldn't have been any witnesses he would know.,He wasn't there.,He has a twin.,He has a brother who looks just like him.,The witness didn't look at his face.,4,Why does Freddy say the witness was unable to id him when they were doing there lineup?,134456,Castle,24.7-30.53,castle_s08e05_seg02_clip_10,The witness didn't look at his face. 12418,He saw his dad kiss another woman,He saw his dad get drunk,He saw his dad with a man,he saw his dad steal a man's wallet,He is not upset withhis dad,0,Why is ted upset after going to the bar with his dad the night before?,134457,How I Met You Mother,0-24.98,met_s02e03_seg02_clip_14,He saw his dad kiss another woman 12419,he is drinking orange juice,he is drinking lemonage,he is drinking a bottle of water,he is drinking milk,he is drinking a beer,4,What is Raj's drinking after talking about walking into a bar,134458,The Big Bang Theory,12.3-26.14,s04e14_seg02_clip_00,he is drinking a beer 12420,No one is with Raj,Sheldon is with Raj,Penny is with Raj,Bernadette is with Raj,Leonard is with Raj,4,"Who is with Raj, when Raj talks to his parents",134459,The Big Bang Theory,2.14-12.2,s01e08_seg02_clip_12,Leonard is with Raj 12421,Penny is petting a dog.,Penny is eating noodles.,Penny is packing.,Penny is peeling an apple.,Penny is drinking from a bottle.,4,What is Penny doing when Leonard sits down?,134460,The Big Bang Theory,30.54-36.13,s08e22_seg01_clip_00,Penny is drinking from a bottle. 12422,He left the room.,He sat on the couch.,He sat in a chair.,He crossed his fingers.,He held his nose.,2,What did Sheldon do when he said about Koothrappali getting a free iPod?,134461,The Big Bang Theory,57.96-63.72,s01e17_seg02_clip_11,He sat in a chair. 12423,That he should't stare in it's eyes.,To ask it to phone home. ,To not sit in its spot.,To let the alien have his way with him. ,To wait for them to speak first. ,2,What does Leonard say he learned was the key when he discovered alien life? ,134462,The Big Bang Theory,9.5-12.79,s08e21_seg01_clip_01,To not sit in its spot. 12424,Marshall can't believe Barney is talking with his high school principal.,Marshall can't believe Barney is talking with his brother.,Marshall can't believe Barney is talking with his grandfather.,Marshall can't believe Barney is talking with his step-father.,Marshall can't believe Barney is talking with his dad.,4,Who does Marshall can't believe Barney is talking to when speaking with the group?,134463,How I Met You Mother,0-17.09,met_s06e19_seg02_clip_00,Marshall can't believe Barney is talking with his dad. 12425,Three chairs from the right end.,On the right.,On the left.,Three chairs from the left end.,In the middle.,4,Where Did Ross sit after he spoke with Benjamin? ,134464,Friends,32.65-44.25,friends_s10e06_seg02_clip_12,In the middle. 12426,Patti asks people to keep it down.,Rachel asks people to keep it down.,Phoebe asks people to keep it down.,Len asks people to keep it down.,Monica asks people to keep it down.,4,Who asks people to keep it down when she is throwing a party?,134465,Friends,54.51-57.78,friends_s02e22_seg02_clip_13,Monica asks people to keep it down. 12427,To the store,To the bathroom,To the kitchen,To the bedroom,To the living room,3,Where is the horse gonna go after Monica tells Chandler to get back on the horse?,134466,Friends,42.74-47.79,friends_s08e15_seg02_clip_06,To the bedroom 12428,In his desk on the web camera,A cell tower near the scene,Inside of the evidence locker by DNA,Out of her cell during night checks,On camera inside of the truck,4,Where does Esposito accuse Phoebe of being after noticing a missing piece of evidence? ,134467,Castle,68.56-92.03,castle_s08e17_seg02_clip_22,On camera inside of the truck 12429,A pillow,The blue french horn,A sword,A painting,A picture of the two of them,2,What did Marshall hand Ted when he was moving out?,134468,How I Met You Mother,21.77-26.98,met_s02e18_seg02_clip_00,A sword 12430,Chandler ate it and it was good.,"A bird grabbed the food, tried to fly away with it, and then dropped it on the street.",Chandler dropped it on the balcony.,Chandler dropped it on the street.,A bird ate it off of his plate.,1,What did Chandler tell Rachel happened to his food before he came back inside?,134469,Friends,46.83-62.03,friends_s06e09_seg02_clip_17,"A bird grabbed the food, tried to fly away with it, and then dropped it on the street." 12431,Chandler is reminded of a very specific part of the tape.,Chandler is reminded of his high school years.,Chandler is reminded of when he first started dating Monica.,Chandler is reminded of his shower last night.,Chandler is reminded of his college days.,0,What is Chandler reminded of when he is retrieving the tape?,134470,Friends,7.98-25.86,friends_s08e15_seg02_clip_17,Chandler is reminded of a very specific part of the tape. 12432,dances around the table,talks on the phone,continues washing dishes,The diswasher cheers and throws his hands up,starts cooking,3,"How does the dishwasher react after Regis Philbin says ""Wait this is it.""",134471,How I Met You Mother,70.89-92.07,met_s04e02_seg02_clip_17,The diswasher cheers and throws his hands up 12433,That he wants a bigger company share,That he wants to say goodbye to his children,That he wants to rewrite his will,That he wants a legal explanation of his contract negotiation,That they need to be somewhere,4,What the patient tell the man when the scene begins?,134472,House M.D.,0-10.24,house_s06e10_seg02_clip_22,That they need to be somewhere 12434,Touched the vitals machine,Hit Dan with his cane.,Grabbed Dan's face.,Sat down.,Took some Vicodin.,2,What does House do after asking what drugs Dan took?,134473,House M.D.,12.22-20.69,house_s02e16_seg02_clip_05,Grabbed Dan's face. 12435,Gabriel went to a police station.,Gabriel went to a forest.,Gabriel went to Castle's office.,Gabriel went to a park.,Gabriel went to a residential neighborhood.,2,Where did Gabriel go when he was wielding an axe?,134474,Castle,8.4-11.06,castle_s08e21_seg02_clip_03,Gabriel went to Castle's office. 12436,Phoebe was holding her purse.,Phoebe was holding Emma's trophy.,Phoebe was holding her clutch wallet.,Phoebe was holding her beer drinking trophy.,Phoebe was holding her massage trophy.,1,What was Phoebe holding when Ross asked Rachel about the trophy? (Note: Some ridiculous wrong answers listed since the Correct answer is in itself pretty ridiculous without context.),134475,Friends,0-14.95,friends_s10e08_seg02_clip_08,Phoebe was holding Emma's trophy. 12437,She is upset because her family won't stop calling her,She is upset because she lost a bet with House,She is upset because he ignores patient records,She is upset because she can't find her phone,She is upset because Foreman said shes weak.,2,Why is Cameron upset with House after dropping off paperwork?,134476,House M.D.,58.52-66.62,house_s04e14_seg02_clip_14,She is upset because he ignores patient records 12438,To complain about Thirteen,To get some coffee,To get advice,To catch-up on drama,To resign ,2,Why does Masters say she wants to see Cuddy in her office when talking to Cuddy in the hallway?,134477,House M.D.,59.53-69.38,house_s07e19_seg02_clip_02,To get advice 12439,in her basement,under her house,in her attic,her house's crawl space,in the diuct work,3,Where did US Weekly say the actress lived for a week when preparing for Hell's Crawl Space?,134478,Castle,27.17-40.99,castle_s03e11_seg02_clip_00,her house's crawl space 12440,Monica loss her job.,Monica is pregnant.,Monica and Rachel won't be roommates anymore.,Monica and Chandler broke up.,Rachel is sad.,2,Why is Monica upset when she is talking to Rachel?,134479,Friends,0-12.8,friends_s10e10_seg02_clip_16,Monica and Rachel won't be roommates anymore. 12441,happy,sad,tired,bored,angry,1,How did Marshall feel when he had to write the letter?,134480,How I Met You Mother,31.06-50.74,met_s03e02_seg02_clip_02,sad 12442,Monica,Joey,Chandler,Phoebe,Ross,1,Who is Rachel talking to when she is in Joeys apartment?,134481,Friends,34.01-66.03,friends_s06e15-16_seg02_clip_22,Joey 12443,She fell on the ground.,She covered her face.,She walked away.,"She made eye contact and said, ""but there's a chance"".",She tripped over a chair.,3, What did Jane Doe say after Alex reminded her that there's no guarantee?,134482,Grey's Anatomy,32.81-36.64,grey_s03e23_seg02_clip_02,"She made eye contact and said, ""but there's a chance""." 12444,Green and brown camouflage.,Beige.,Lilac.,Hot pink.,Black.,2,"What color are the scrubs on the nurse, passing behind the curtain, in a room full of monitors, when Cameron says,"" There is a reason I need to stay with this case a while longer?"" ",134483,House M.D.,0.47-6.51,house_s05e21_seg02_clip_04,Lilac. 12445,Kiss the bride for me.,Let me know how it goes.,I want to wish you all the luck in the world.,I hope you have nice weather.,Let me know when you get back from your honeymoon.,2,What does Phoebe say to Eric after she tells him she won't make his wedding?,134484,Friends,17.33-28.99,friends_s08e06_seg02_clip_16,I want to wish you all the luck in the world. 12446,She says she needs to make her plans accordingly,She says she needs to find another doctor to do her residency with,She says she has a right to know if she is going to have to look for work,She says she has invested all of this time in House and she deserves to know,She says she needs to know because she cares,2,Why does Cameron say she needs to know when she if asking around if House is applying for another job?,134485,House M.D.,6.29-12.13,house_s03e15_seg02_clip_08,She says she has a right to know if she is going to have to look for work 12447,Went Jogging ,Took a Bubble Bath,Jumped on a Conference Call,Watched Television,Did Laps in her Pool,2,What did Margo do after Hannah left?,134486,Castle,62.07-70.68,castle_s05e14_seg02_clip_07,Jumped on a Conference Call 12448,There was no mention of any kind of disease diagnosis,House said when being diagnosed with cancer,When being diagnosed with Vasculitis,When finding out you could be pregnant,When having fits of anger,2,"When did House say that the blood vessels of the heart, lungs and skin could be inflamed when walking",134487,House M.D.,0-1.78,house_s01e05_seg02_clip_01,When being diagnosed with Vasculitis 12449,Becket folds her arms.,Beckett slaps Castle.,Becket spills coffee.,Beckett turns towards him.,Becket leaves office.,3,What does Beckett do after Castle speaks about a killer cup of joe?,134488,Castle,59.06-65.37,castle_s03e19_seg02_clip_05,Beckett turns towards him. 12450,he pointed at it,he took it from her,he burned it,he laughed,he called for backup,0,what did the male agent do after the lady witness said that she must have touched the envelope at sometime,134489,Castle,28.04-37.39,castle_s07e18_seg02_clip_25,he pointed at it 12451,Her leg is on the piano.,Her leg is on castle.,Her leg is on Sarah.,Her leg is on a chair.,Her leg is on the pianist shoulder.,0,What does one dancer have her leg up on when the Sarah says heads up?,134490,Castle,11.04-17.95,castle_s08e08_seg02_clip_06,Her leg is on the piano. 12452,He grabbed Broda's hand.,He looked at Niles.,He looked at the floor.,He put on a mask.,He drew some blood.,1,What did House do after Broda pointed at Niles?,134491,House M.D.,30.42-32,house_s07e07_seg02_clip_12,He looked at Niles. 12453,Hayes has been a conservator on several other occasions and has plenty of experience.,Hayes was told by Brant's father to become Brant's conservator.,Hayes always wanted to be Brant's conservator.,Hayes believes Brant will die without medication.,Hayes is following army protocol.,3,Why does Hayes most likely ask to become Brant's conservator after Taub and Adams leave Brant's room?,134492,House M.D.,30.39-98.03,house_s08e15_seg02_clip_20,Hayes believes Brant will die without medication. 12454,A baseball bat,A Hockey stick,A tennis racket.,A basketball.,A golf club,3,What was the boy in the red clothes playing with before the Coach said he was terrible?,134493,How I Met You Mother,7.68-13.13,met_s06e02_seg02_clip_17,A basketball. 12455,Matt Lauer.,Phoebe.,Angelina Jolie.,Chandler.,Rachel.,4,Who enters the apartment before Ross throws the ball?,134494,Friends,0-11.89,friends_s05e21_seg02_clip_06,Rachel. 12456,Eleven grand a month ,Fourteen grand a month,Twelve grand a month,Thirteen grand a month,Ten grand a month ,3,How much did Cameron say it brought in when charging patients for cable? ,134495,House M.D.,76.07-82.82,house_s04e11_seg02_clip_01,Thirteen grand a month 12457,a book ,A USB,a chair ,a briefcase ,a knife ,1,What does Castle throw at Sophia when she is holding a gun on him?,134496,Castle,30.86-35.85,castle_s07e12_seg02_clip_23,A USB 12458,To show Amy pictures of his new cat.,To prove to Leonard that french fries are not potatoes.,To prove to Penny that she is wrong about his credentials.,Sheldon wants to show Leonard research that proves relationships are quantifiable. ,To video record Leonard's reaction to his joke. ,3,Why does Sheldon pull out his phone when talking to Leonard and Penny?,134497,The Big Bang Theory,22.59-52.41,s08e03_seg02_clip_08,Sheldon wants to show Leonard research that proves relationships are quantifiable. 12459,Robert.,Chandler.,Ross.,Joey.,Richard.,3,Who wears grumpy pants after Janice touched his face?,134498,Friends,19.89-24.09,friends_s03e01_seg02_clip_01,Joey. 12460,Because Lily hates Marshall's old car.,Because Marshall's old car is being repaired for the last time.,Because Marshall's old car might not make it the return trip home.,Because Marshall's old car has just died. ,Because Marshall's old car was stolen from the mechanic's shop and now they need a new one.,3,What is the reason Marshall and Lily are discussing a new car when at the body shop?,134499,How I Met You Mother,0-26.28,met_s02e17_seg02_clip_18,Because Marshall's old car has just died. 12461,The group is playing charade ,The group is playing Twister,The group is playing Tennis,The group is playing badminton,The group is playing Ping Pong,4,What game is the group playing when they have to stop due to injury,134500,Friends,0-13.01,friends_s09e23-24_seg02_clip_47,The group is playing Ping Pong 12462,A pen.,A phone.,A paper.,A badge.,A gun.,2,What was Kaufman holding in his hand when Beckett told him that she brought the killer to justice?,134501,Castle,21.87-25.97,castle_s07e23_seg02_clip_14,A paper. 12463,Sixteen,Eighteen,Twenty-one,Twenty-four,Thirteen,4,How old was Masters when she was in college?,134502,House M.D.,9.4-21.93,house_s07e19_seg02_clip_02,Thirteen 12464,Stuart's room,Leonard's room,Penny's room,Raj's room,Sheldon's bedroom,4,Where was the visiting doctor going to sleep when she was with Sheldon?,134503,The Big Bang Theory,41.49-61.02,s03e21_seg01_clip_01,Sheldon's bedroom 12465,A folder.,A book.,A cup.,A sandwich.,A hat.,2,What was House holding when he was standing behind Foreman as they were watching a patient on a tilt table?,134504,House M.D.,58.43-66.91,house_s02e04_seg02_clip_05,A cup. 12466,He tells him to go buy a scone. ,He tells him to come back in an hour. ,He tells him to never come back. ,He tells him to order some tea. ,He tells him to order some hot chocolate. ,0,What does Raj tell Sheldon to do after he starts talking with the woman?,134505,The Big Bang Theory,59.82-61.04,s04e22_seg02_clip_13,He tells him to go buy a scone. 12467,A grandfather clock,A whiteboard,A desk,A measuring stick,A window,4,What is behind Chase after the patient refuses radiation? ,134506,House M.D.,70.57-80.95,house_s07e23_seg02_clip_17,A window 12468,He kind of let me win.,I forgot about that.,That is my favorite game.,That's right.,When was that?,0,What did Joey say after Ross reminded him that he beat Ben at Hungry Hungry Hippos?,134507,Friends,38.67-50.2,friends_s08e20_seg02_clip_00,He kind of let me win. 12469,There is no serial number visible,They're too damaged,They're a unknown source,Weapon was hand made,They have been removed,4,Why won't ballistics provide any evidence when Castle inquires about them?,134508,Castle,84.57-89.02,castle_s06e22_seg02_clip_07,They have been removed 12470,Castle says that maybe they will find their villain.,Castle says that maybe they will find their Joker.,Castle says that maybe they will find their Zihuatanejo.,Castle says that maybe they will find their new best friend.,Castle says that maybe they will find their Air Bud.,2,Who does Castle say they'll find in the letters when talking to Beckett about the contents of the letters?,134509,Castle,33.22-53.7,castle_s03e05_seg02_clip_18,Castle says that maybe they will find their Zihuatanejo. 12471,A cup.,A book.,A tablet.,A stack of papers.,A pen and phone.,4,What is Kate holding when Richard walks in the room?,134510,Castle,38.26-48.16,castle_s05e10_seg02_clip_03,A pen and phone. 12472,Kyle said that he knew something was wrong when Alice started making extravagant purchases.,Kyle said that he knew something was wrong when Alice had him order her a pizza.,Kyle said that he knew something was wrong when Alice stopped contacting him.,Kyle said that he knew something was wrong when Alice missed a lecture at 4:30.,Kyle said that he knew something was wrong when Alice fired him.,3,When did Kyle know that something was wrong with Alice before she was found dead?,134511,Castle,10.16-19.4,castle_s06e08_seg02_clip_02,Kyle said that he knew something was wrong when Alice missed a lecture at 4:30. 12473,a snake,Diamond Necklace,scarf,a collar,Police Badge,4,What is Javier wearing around his neck when Ryan was giving his toast,134512,Castle,2.64-3.83,castle_s04e04_seg02_clip_27,Police Badge 12474,She's a smoker,She's pregnant,She's attracted to him,Cuddy is getting divorced,Cuddy is going out with Wilson,1,What does House think is going on with Cuddy when he asks about passing out cigars?,134513,House M.D.,0-17.4,house_s03e02_seg02_clip_12,She's pregnant 12475,Iced tea.,Wine.,A hot coffee.,Hot tea.,A water.,4,What is Amy drinking when evaluating the monkey?,134514,The Big Bang Theory,12.04-19.61,s07e05_seg02_clip_08,A water. 12476,a letter,a mortgage,a birthday card,medical school paperwork,a marriage certificate,3,What is House signing when Cuddy looks over his shoulder?,134515,House M.D.,76.07-81.92,house_s07e06_seg02_clip_25,medical school paperwork 12477, a robot leg,a robot arm,a robot torso,a robot head,a robot mouth,1,What did Howard have on him when he went into the ER?,134516,The Big Bang Theory,34.4-47.61,s04e01_seg02_clip_15,a robot arm 12478,A book.,Coffee.,A dry erase marker.,His phone.,Kleenex. ,2,What did House have in his hand when talking to Kutner about the quarantine?,134517,House M.D.,26.23-34.27,house_s04e09_seg02_clip_16,A dry erase marker. 12479,Rachel goes to get a tissue. ,Rachel goes to the window,Rachel lays down,Rachel leaves the room,Rachel goes to the bathroom,0,What does Rachel do after Ross leaves the room?,134518,Friends,3.96-13.21,friends_s03e21_seg02_clip_15,Rachel goes to get a tissue. 12480,She is wearing black gloves.,She is wearing a purple and yellow sweater.,She is wearing a red leather jacket.,She is wearing gold hair clips.,She is wearing sunglasses.,0,What is Beckett wearing when she is looking through the file Ryan gave her?,134519,Castle,61.24-70.84,castle_s07e11_seg02_clip_17,She is wearing black gloves. 12481,welding helment,A hat ,A scarf,Goggles,A glove,4,What did amy put in her hand when Sheldon was talking about being hazed?,134520,The Big Bang Theory,0-8.27,s05e16_seg02_clip_07,A glove 12482,the snails,the chicken,the eels,3 pound lobster,the steak,3,What does rachel want to substitute when she is on a date with joey?,134521,Friends,0.6-5.44,friends_s08e12_seg02_clip_06,3 pound lobster 12483,Excited.,Happy.,Aroused.,Irritable.,Nervous.,3,How was Sheldon after he followed Amy into her apartment?,134522,The Big Bang Theory,40-59.23,s05e06_seg02_clip_10,Irritable. 12484,Stella said that Ted needs to tell her what is really going on with him.,Stella said that Ted is too weird for her.,Stella said that Ted should grow up.,Stella said that Ted should decide if he wants to watch the movie or not.,Stella said that it is really important that she likes the movie.,4,What did Stella say after Ted said that nothing was going on?,134523,How I Met You Mother,46.49-57.05,met_s04e01_seg02_clip_12,Stella said that it is really important that she likes the movie. 12485,Joey's speech is muffled because he's talking through a pillow.,Joey's speech is muffled because he's talking through his mouth guard.,Joey's speech is muffled because he's yelling from the hallway.,Joey's speech is muffled because Chandler's head is under the pillow.,Joey's speech is muffled because Chandler's date's screams have affected his hearing.,1,Why is Joey's speech muffled when he comes to Chandler's room?,134524,Friends,43.37-51.02,friends_s04e20_seg02_clip_20,Joey's speech is muffled because he's talking through his mouth guard. 12486,dangerous,weird,terrible,foolish,wise,4,What did Amy think when Sheldon ditched the taxi?,134525,The Big Bang Theory,12.09-24.81,s04e17_seg02_clip_03,wise 12487,Ryan and Beckett,Esposito and Ryan,Beckett and Esposito,Ryan and Gates,Hayley and Alexis,0,Who is with Castle when he finds out that they are not close to finding the killer?,134526,Castle,0-3.63,castle_s08e20_seg02_clip_20,Ryan and Beckett 12488,She was standing in the door way,She was sitting on a desk in the office,She was standing at the window,She was sitting in her chair,She was sitting on a box,1,Where was Beckett when Castle walked in and asked if she slept in the break room?,134527,Castle,19.01-24.44,castle_s02e10_seg02_clip_20,She was sitting on a desk in the office 12489,Slaps the table.,Shows Paul a picture.,Hits himself on the forehead.,Gives Emily a high five.,Stomps his foot. ,2,"What does Ross do before saying ""It's unbelievable""?",134528,Friends,33.01-39.02,friends_s06e21_seg02_clip_15,Hits himself on the forehead. 12490,Howard's house.,The Comic book shop.,His office.,His apartment.,Penny's Apartment. ,0,Where is Leonard when he tells Priya that he will be working late?,134529,The Big Bang Theory,56.46-61.04,s04e19_seg02_clip_09,Howard's house. 12491,House has been complaining about it,It was recently injured,Just trying to make small talk,He's been massaging it for a while,He's taunting House,3,Why does Nolan ask House if his leg hurts when House is sitting down?,134530,House M.D.,9.12-28.33,house_s06e20_seg02_clip_19,He's been massaging it for a while 12492,A stork Joey found,A giant teddy bear Joey found,A polar bear Joey found,Hello Kitty stuffed animal Joey found,A Stuffed dog Joey found,3,What does Joey find when he went to the gift shop?,134531,Friends,36.62-46.52,friends_s05e03_seg02_clip_05,Hello Kitty stuffed animal Joey found 12493,From the table,From the floor,From the board,From the chair,From his file,2,Where did house picked the paper when he was talking about hepA and the puking,134532,House M.D.,0.46-10.12,house_s03e08_seg02_clip_06,From the board 12494,$5000,$1000,$2500,$10000,$1000 a month,0,How much money was Penelope paying Hannah when she was faking the relationship with Bob?,134533,Castle,43.71-57.06,castle_s05e14_seg02_clip_16,$5000 12495,Beer,Cup of Tea,Cup of coffe,Smooth,Glass of wine,4,What did Penny have in her hand when she is sitting at the couch with Amy?,134534,The Big Bang Theory,13.96-17.37,s06e01_seg02_clip_01,Glass of wine 12496,Geoff,Bob ,Frank Anderson,Craig,Steve,2,What is the name of the retired math teacher who was killed after Esposito and his partner walk in?,134535,Castle,0-26.3,castle_s02e02_seg02_clip_03,Frank Anderson 12497,Four days.,Seven days.,Two days.,Three days.,Five days.,4,How long did Castle say the room was rented after he said it wasn't a crime of passion?,134536,Castle,6.11-94.03,castle_s01e08_seg02_clip_03,Five days. 12498,Wilson is carrying a pill bottle.,Wilson is carrying a folder.,Wilson is carrying a cane.,Wilson is carrying an IV bag.,Wilson is carrying a dog leash.,1,What is Wilson carrying when he's walking and talking with House?,134537,House M.D.,14.2-17.04,house_s01e01_seg02_clip_00,Wilson is carrying a folder. 12499,Leonard was surprised and confused by the situation. Leonard was left scratching his head.,Leonard was amused by the situation.,Leonard was happy the situation occurred.,Leonard was sad about the situation and cried.,Leonard was depressed by the situation and lowered his head.,0,How did Leonard react to hearing Penny saying Sheldon was great when leaving his room?,134538,The Big Bang Theory,6.37-10.32,s02e03_seg02_clip_06,Leonard was surprised and confused by the situation. Leonard was left scratching his head. 12500,Ross picks up a coffee mug.,Ross picks up a book.,Ross picks up a football.,Ross picks up a turkey drumstick.,Ross picks up a beer bottle.,0,What does Ross pick up from the table when watching the football game on television?,134539,Friends,7.53-9.81,friends_s03e09_seg01_clip_00,Ross picks up a coffee mug. 12501,Cameron.,Chase.,Foreman. ,House's supervisor. ,The man to House's left.,1,Whose plan does House imply that Chase Cameron and Foreman should adopt when he says he couldn't have put it better himself?,134540,House M.D.,45.46-62.12,house_s02e24_seg02_clip_04,Chase. 12502,Jimmy stewart,James dean,Jimmy dean,Jimmy fallon,Jimmy stan,0,Who does castle compare himself to when comparing the case to a hitchcock movie?,134541,Castle,17.91-20.53,castle_s07e13_seg02_clip_15,Jimmy stewart 12503,maid of honor,bridesmaid,crazy bitch,her best friend,her roommate,2,Who did Phoebe say she wants Monica to be again after she took the phone from her ear?,134542,Friends,0-9.92,friends_s10e12_seg02_clip_20,crazy bitch 12504,She had to pay double for it.,It was not the right color she wanted.,It was not the right size.,It was the wrong package.,It was back-ordered and she was waiting two months for it.,4,Why was Penny angry after she received the packaged?,134543,The Big Bang Theory,0-33.78,s02e14_seg02_clip_04,It was back-ordered and she was waiting two months for it. 12505,Marge's.,Margo's.,Mary's.,Margory's.,Maggie's.,1,Whos building did Gates say she recognized before she told Castle and Beckett they need to watch a particular show?,134544,Castle,51.27-55.84,castle_s05e14_seg02_clip_10,Margo's. 12506,a bug they found ,plasma,houses bowel deposit,a sealed envelope for house,snot,2,what is taub and chase looking at in the microscope after the other two walk in,134545,House M.D.,22.89-41.81,house_s08e15_seg02_clip_12,houses bowel deposit 12507,Everyone is standing at the bus stop.,Everyone is standing in the bathroom.,"Everyone is standing outside,",Everyone is standing at the airport. ,Everyone is standing between the living room and kitchen in Leonard and Sheldon's apartment.,4,Where is everyone standing when Stuart is playing dead on the floor.,134546,The Big Bang Theory,0-5.8,s07e18_seg02_clip_00,Everyone is standing between the living room and kitchen in Leonard and Sheldon's apartment. 12508,Two,Three,One,Four,Zero,1,How many faces were on the screen when Winters asked the Oracle for her prediction?,134547,Castle,62.88-69.57,castle_s05e06_seg02_clip_09,Three 12509,Movies,Getting fabric samples.,Shopping.,Eating.,Swimming.,1,Where is Hannah when Margo asks?,134548,Castle,41.25-47.21,castle_s05e14_seg02_clip_11,Getting fabric samples. 12510,angry,bored,tired,nonchalant,happy,4,How did Sheldon feel when he played the game with Penny and Leonard?,134549,The Big Bang Theory,0-37.55,s03e07_seg01_clip_00,happy 12511,Lily accompanies Barney to the bar.,Robin accompanies Barney to the bar.,Ted accompanies Barney to the bar.,Brad accompanies Barney to the bar.,Marshall accompanies Barney to the bar.,0,Who accompanies Barney to the bar when he excuses himself from the table?,134550,How I Met You Mother,0-15.19,met_s05e01_seg02_clip_03,Lily accompanies Barney to the bar. 12512,If she can do her own laundry.,If she can cook her own dinner.,If she can drive herself to work.,If she can clean her whole apartment.,If she can fix her sewing machine.,0,What feat does Rachel say will prove she can do anything when she's next to the washing machines with Ross?,134551,Friends,24.37-38.1,friends_s01e05_seg02_clip_15,If she can do her own laundry. 12513,singing,practicing sign language,rehearsing a speech,pointing at a picture,rapping ,3,what is monica doing when she is standing in front of the group in the living room?,134552,Friends,1.6-7.6,friends_s01e18_seg02_clip_22,pointing at a picture 12514,Sitting on the chair.,Sitting on the sofa.,Sitting on the floor.,Standing by the window.,Sitting in the kitchen.,0,Where was Phoebe when Rachel came into the room?,134553,Friends,0-9.12,friends_s02e19_seg02_clip_13,Sitting on the chair. 12515,House suggested skipping it because he already completed that one,House suggested skipping it because he knows its a lot of work,House suggested skipping it because he has something hidden in there,House suggested skipping it because it was a body that had been in the river for a week,House suggested skipping it because it was a mess,3,Why does house suggest skipping c26 after talking with Cuddy?,134554,House M.D.,23.41-33.31,house_s04e14_seg02_clip_14,House suggested skipping it because it was a body that had been in the river for a week 12516,touched his chin,kicked him,pointed at him,moved the mirrror,stopped him ,4,What did Esposito do after Ryan ran his hand through his hair?,134555,Castle,23.6-27.54,castle_s05e11_seg02_clip_03,stopped him 12517,A cake ,Grocery Bags,Flowers,Wine,Tray of food,4,What was Marshall holding when he opened the door?,134556,How I Met You Mother,0-3.58,met_s05e04_seg01_clip_01,Tray of food 12518,A tray,A jacket,A file,A phone,A book,0,What did Wilson have in his hand when house appeared behind him?,134557,House M.D.,0-6.24,house_s08e21_seg02_clip_07,A tray 12519,Phoebe's,Ross's,Monica's,Chandler's,Joey's,2,What apartment is everyone in when they are talking ,134558,Friends,4.2-13.21,friends_s03e09_seg02_clip_01,Monica's 12520,The patients are very old,They keep lying to him,There is no know cure,They are sweating blood,Both are different ages,3,Why does House tell the patients that treatment can be hit or miss after seeing their new symptoms?,134559,House M.D.,0-15.64,house_s05e06_seg02_clip_22,They are sweating blood 12521,The nurse is typing on the computer.,The nurse is flipping through a 3 ring binder.,The nurse is reading a magazine.,The nurse is sorting the mail at the nurse's station.,The nurse is checking her work schedule.,1,What is the nurse doing when George is sorting through patient charts?,134560,Grey's Anatomy,1.74-8.7,grey_s02e14_seg02_clip_02,The nurse is flipping through a 3 ring binder. 12522,The freezer,The toilet,The attic,To get a flashlight,To find candles,0,What does Howard rush to when he learns the power went out?,134561,The Big Bang Theory,44.42-50.13,s08e18_seg02_clip_03,The freezer 12523,Rachel laughed and explained what the trophy really was.,Rachel responded by spelling out Y-E-S.,Phoebe shoved the trophy in Ross' face and had him read what was written on it.,Ross wiggled the trophy in front of Ross' face and had him read it.,Rachel gave him a thumbs up.,1,How did Rachel respond when asked about the trophy?,134562,Friends,0-17.7,friends_s10e08_seg02_clip_08,Rachel responded by spelling out Y-E-S. 12524,Mary,Brian,Joyce ,Mia,Sophia,2,Who was on a video call with Eposito when Ryan stood beside him,134563,Castle,0-3.64,castle_s08e11_seg02_clip_10,Joyce 12525,Because Chandler ate Rachel's food,Because Rachel found out Chandler lied to her,Because Rachel thinks Chandler is cheating on his girlfriend,Because Chandler broke Rachel's nose,Because Rachel thinks Chandler gave Patrick the wrong idea about her,4,Why does Rachel get angry with Chandler when she's in the restaurant?,134564,Friends,34.58-64.03,friends_s04e10_seg02_clip_09,Because Rachel thinks Chandler gave Patrick the wrong idea about her 12526,She is sitting behind a desk,she is standing up ,she is bending over ,she is by the window,she is standing by the door. ,0,Where is the dmv lady when sheldon give her the application?,134565,The Big Bang Theory,0.31-5.8,s02e05_seg02_clip_09,She is sitting behind a desk 12527,3,5,6,8,11,2,How many people were in the shot in total when they walked through the hall?,134566,Castle,13.9-33.63,castle_s07e16_seg02_clip_20,6 12528,Takes his cellphone out of his pocket.,Grabs the tablet out of Alexis's hands.,Walks out of the room.,Takes a closer look at the monitor.,Pours himself some coffee.,0,What does Castle do after Haley says she doesn't know what BD means?,134567,Castle,29.91-36.35,castle_s08e02_seg02_clip_12,Takes his cellphone out of his pocket. 12529,A frozen body,Cocaine ,A drawer full of needles,A body,Shoes with cracked soles from liquid nitrogen,4,What does Esposito say they also found in the apartment when they searched it?,134568,Castle,20.92-29.38,castle_s02e22_seg02_clip_25,Shoes with cracked soles from liquid nitrogen 12530,My. Toe Rag,Bobo,Rip Van Winkle,Krusty the Clown,Mr. Van Der Meer,4,Who is the man who House claims can not talk when he was talking with Cameron?,134569,House M.D.,20.52-24.99,house_s01e14_seg02_clip_21,Mr. Van Der Meer 12531,Dr. Sam performed surgery.,Dr. Stuart performed surgery.,Dr. Bailey performed surgery.,Dr. Liam performed surgery.,Dr. Lonnie performed surgery.,2,Who performed surgery on the boy who has his head wrapped when he is in the bed?,134570,Grey's Anatomy,0-7.53,grey_s02e22_seg02_clip_20,Dr. Bailey performed surgery. 12532,Lilly's towel,Lilly's hair brush,Lilly's lotion, Lilly's Shampoo,Lilly's bathrobe,3,What item did Marshall find that Lilly had forgotten after she left him?,134571,How I Met You Mother,22.33-49.62,met_s02e01_seg02_clip_02, Lilly's Shampoo 12533,Ross would be happy if Rachel were to meet him for lunch.,Ross would be happy if Rachel were to bake him a birthday cake.,Ross would be happy if Rachel were to have sex with him.,Ross would be happy if he could take the day off from work.,Ross would be happy if he and Emily were to hang out with Rachel and Joshua.,4,What would make Ross happy after his talk with Rachel?,134572,Friends,38.66-59.03,friends_s04e20_seg02_clip_04,Ross would be happy if he and Emily were to hang out with Rachel and Joshua. 12534,They sat down on the sidewalk.,They were hugging.,They ran down the street.,They went shopping.,They got into the car.,1,What were Marshall and Lily doing when he mentioned not being ready?,134573,How I Met You Mother,68.01-77.64,met_s06e13_seg02_clip_18,They were hugging. 12535,A busy signal,A dial tone,Nothing,A woman's voice,A man's voice,1,What does House hear after he picks up the phone when he and Foreman are in John's room?,134574,House M.D.,78.76-87.02,house_s01e09_seg02_clip_20,A dial tone 12536,At Chandlers apartment. ,At the supermarket.,At home. ,In a taxi. ,In the bathroom. ,0,Where was Ross before he entered the apartment? ,134575,Friends,36.46-55.6,friends_s08e20_seg02_clip_13,At Chandlers apartment. 12537,Ellis is George's mom.,Ellis still needs George's medical supervision.,Ellis has Alzheimer's and needs the stability that George provides.,Ellis wants George's help.,Richard wants George to watch Ellis for him.,2,Why does Richard want George to watch Ellis after her surgery is over?,134576,Grey's Anatomy,22.4-43.93,grey_s02e04_seg02_clip_04,Ellis has Alzheimer's and needs the stability that George provides. 12538,Blue.,Yellow.,Pink.,White.,Beige.,3,"What color flag is Amy waving when she says ""sweet""?",134577,The Big Bang Theory,8.68-15.82,s05e14_seg01_clip_01,White. 12539,Playing a guitar and singing,Hailing a taxi,collecting money,picketing,picking up trash,0,What is Phoebe doing when she is standing outside the coffee house?,134578,Friends,15.44-21.98,friends_s02e06_seg02_clip_11,Playing a guitar and singing 12540,Raj mentioned American Gods as he opened the box.,The series Raj mentioned was Doctor Who. ,Raj didn't mention any series. ,Raj spoke of the Dune series of books. ,Raj mentioned Game of Thrones when opening the package. ,4,What fantasy series did Raj mention when opening the package? ,134579,The Big Bang Theory,17.71-25.21,s09e18_seg02_clip_01,Raj mentioned Game of Thrones when opening the package. 12541,Castle pours milk.,Castle pours tea.,Castle pours ketchup.,Castle pours cake batter.,Castle pours popcorn.,4,What is Castle pouring out when talking to Martha and Alexis?,134580,Castle,18.79-22,castle_s05e14_seg02_clip_11,Castle pours popcorn. 12542,Joey is talking to his mom,Joey is talking to Monica,Joey is talking to Phoebe,Joey is talking to Sandy,Joey is talking to his dad,3,Who is Joey talking to when he is at the party?,134581,Friends,12.61-21.31,friends_s01e10_seg02_clip_16,Joey is talking to Sandy 12543,She discovered Jenna had a fatal illness,She discovered Jenna was pregnant,She discovered Jenna was dangerously underweight,She discovered Jenna had a bad heart,She found drugs in Jenna's body,4,What did the medical examiner find when she examined Jenna's body?,134582,Castle,6.04-12.95,castle_s02e03_seg02_clip_11,She found drugs in Jenna's body 12544,Nothing.,A coffee.,A cat.,A book.,A towel/rag.,4,What is Rachel holding when she sits down?,134583,Friends,0-4.76,friends_s01e09_seg02_clip_01,A towel/rag. 12545,New York City,Pittsburgh,Philadelphia,Brooklyn,Baltimore,2,Where does Earl say he's from after Phoebe asks him?,134584,Friends,6.82-11.79,friends_s07e13_seg02_clip_22,Philadelphia 12546,Monica hugged Ross and Chandler hugged Joey.,Monica hugged Joey and Chandler hugged Phoebe. ,Monica hugged Phoebe and Chandler hugged Rachel. ,Monica hugged Ross and Chandler hugged Rachel. ,Monica hugged Rachel and Chandler hugged Phoebe.,4,Who did Monica and Chandler when the party walked in?,134585,Friends,31.17-82.04,friends_s08e01_seg01_clip_00,Monica hugged Rachel and Chandler hugged Phoebe. 12547,A phone,A wreath,A clock,A lamp,A fire alarm,3,What is on the wall behind Joey when he says he was trying to make a sale?,134586,Friends,5.7-10.2,friends_s04e02_seg02_clip_16,A lamp 12548,Monica is on the ground.,Phoebe is on the ground.,Shelly is on the ground.,Sandra is on the ground.,Rachel is on the ground.,1,Who is lying on the ground when she is drinking out of a straw?,134587,Friends,0-4.93,friends_s01e04_seg02_clip_13,Phoebe is on the ground. 12549,He was cleaning his shoe.,He was drying his hands.,He was washing Wilson's shirt.,He was washing his hands.,He was taking pills.,0,What was House doing before Wilson washed his hands?,134588,House M.D.,86.65-92.1,house_s08e20_seg02_clip_09,He was cleaning his shoe. 12550,read,stood up,took a bite,cooked,left,2,What did Castle do after he was done talking?,134589,Castle,0-9.7,castle_s02e07_seg02_clip_22,took a bite 12551,Paper.,Book.,Chair.,Laptop.,Food.,0,What holds Howard after printing a picture?,134590,The Big Bang Theory,0-44.55,s06e22_seg02_clip_15,Paper. 12552,Working on the computer,Talking on the phone,Reading a newspaper,Cooking,Washing dishes,1,What is Rachel doing when Ross comes in the office?,134591,Friends,32.66-38.94,friends_s03e15_seg02_clip_06,Talking on the phone 12553,"The student said, X.","The student said, good morning.",The student ask for his homework.,The students ask for his grade.,The student ask for a credit.,0,What said the student before other students laugh?,134592,How I Met You Mother,0.3-59.03,met_s05e01_seg02_clip_11,"The student said, X." 12554,A knife.,A powder.,A bullet casing.,A tooth.,A finger.,2,What was in the bag when Lanie handed it to Beckett.,134593,Castle,19.36-25.21,castle_s04e09_seg02_clip_03,A bullet casing. 12555,Soy sauce and worcestershire sauce.,Ketchup and mustard.,Tartar sauce and mayonnaise. ,Mustard and Soy sauce,Relish and mustard.,3,What condiments did Sheldon ask Penny if she picked up after she starts handing out food?,134594,The Big Bang Theory,22.19-42.61,s02e19_seg02_clip_11,Mustard and Soy sauce 12556,On the counter in front of Castle.,Behind him to his right on the counter.,Near the refrigerator. ,Near the sink.,In Beckett's hands.,1,Where were the paper towels when Castle told Beckett that her legs were close to her other bits?,134595,Castle,66.05-70.32,castle_s05e22_seg02_clip_08,Behind him to his right on the counter. 12557,Behind the bar.,Walking around selling cigarettes.,At the table in front of him.,Standing to his left.,Standing to his right.,1,Where was Vera before Dempsey walked into the club?,134596,Castle,58.99-63.91,castle_s04e14_seg02_clip_18,Walking around selling cigarettes. 12558,Black sweater and khaki pants,Blue jacket and black slacks,A white shirt and grey pants.,A grey suit jacket and slacks,A blue button down shirt and dark pants,4,What was Beckett wearing when she came in to greet Castle?,134597,Castle,0-9.94,castle_s06e03_seg02_clip_14,A blue button down shirt and dark pants 12559,Wilson had spent enough time in Church and prayer to know that what he feels it true.,Wilson had seen enough miracles in the hospital to know everything is not just random.,Wilson spent the last 20 years holding the hands of people as they died and watched the transformation.,Wilson had known enough hell to know that there has to be a heaven for all of us.,Wilson said it was just something he knows and feels because he has seen so much death.,2,How did Wilson come to the conclusion when he became convinced humans were not a bag of chemicals?,134598,House M.D.,48.04-66,house_s08e21_seg02_clip_04,Wilson spent the last 20 years holding the hands of people as they died and watched the transformation. 12560,Amy stares at Sheldon.,Amy lays on the couch.,Amy play chess.,Amy runs to the door.,Amy sits on Sheldon.,0,What does Amy do after Sheldon shows them the commemorative T-shirt?,134599,The Big Bang Theory,30.01-33.91,s06e12_seg02_clip_02,Amy stares at Sheldon. 12561,No human had physically looked at the sample and they only did computerized testing.,The samples got switched in the lab.,They kept getting false negatives.,The person that originally looked at the sample was not qualified.,He didn't get the disease until after he was admitted to the hospital so it did not show up initially.,0,Why did anyone find the disease that Fletch had before Foreman finally found it under the microscope?,134600,House M.D.,32.34-46.98,house_s02e10_seg02_clip_25,No human had physically looked at the sample and they only did computerized testing. 12562,A folded letter.,A pouch of something.,He didn't get anything out of the victim's mouth.,Some broken teeth.,A picture of a dog.,1,What did Esposito pull out of the victim's mouth after looking in it?,134601,Castle,66.96-73.05,castle_s01e06_seg02_clip_00,A pouch of something. 12563,One,Two,Three,Four,Six,1,How many people came in the room after Chase said let's go?,134602,House M.D.,61.87-68.1,house_s05e07_seg02_clip_07,Two 12564,On the couch.,In the time machine.,In the kitchen.,In his room.,He wasn't there.,1,Where was Leonard when Sheldon walked into the living room at 2am?,134603,The Big Bang Theory,42.2-59.02,s01e14_seg02_clip_07,In the time machine. 12565,Luscious,Debbie,Jasmine,bambi,Dolly,2,What is the stage name annouce before Lilly's doppleganger takes the stage?,134604,How I Met You Mother,0-18.31,met_s05e02_seg02_clip_16,Jasmine 12566,How long did the suspect work there.,What information did she give the suspect?,What calls did the suspect make,If she had a name for the suspect and could she describe him.,What department did the suspect work in.,3,What question did the kid ask Joyce before Ryan and Esposito askekd her also?,134605,Castle,0-8.65,castle_s08e11_seg02_clip_10,If she had a name for the suspect and could she describe him. 12567,"Frank received $50,000.",Frank received $5000.,"Frank was given $5,000,000.",Frank was given $52.14 as a partial street address clue.,Frank was sent $520.,1,How much money did Ryan tell Castle that Frank received after expressing relief that Frank wasn't the shooter?,134606,Castle,11.68-14.6,castle_s07e18_seg02_clip_23,Frank received $5000. 12568,Castle goes into a secret tunnel that leads to an underground lab.,Castle goes back out the door and comes in again.,Castle goes into a bathroom to see his new hottub.,Castle goes into a secret room behind his office.,Castle goes into the office next door.,3,Where does Castle go when the bookcase slides back?,134607,Castle,17.29-22.16,castle_s08e01_seg02_clip_03,Castle goes into a secret room behind his office. 12569,Tommy when speaking to Beckett. ,Tina ,Amber when speaking to Beckett. ,Saya when speaking to Beckett. ,Katie when speaking to Beckett. ,3,Who said they heard their parents an begging for their lives when in private?,134608,Castle,0-32.89,castle_s06e18_seg02_clip_23,Saya when speaking to Beckett. 12570,"Hasting's said she'd made a video diary, verifying the story herself. ","Hasting's twin sister, who was in the other room, could verify. ",Hasting's friend in the crime lab could verify her story. ,"Castle would verify her story, Hastings said. ",Hastings said Ryan would verify her story. ,2,Who did Hastings say could verify her story when she spoke to Beckett? ,134609,Castle,21.95-36.59,castle_s04e02_seg02_clip_23,Hasting's friend in the crime lab could verify her story. 12571,cleaned it,hid the cup,threw it,threw the coffee out,wiped it,3,What did Beckett do after Jane gave her coffee cup to her?,134610,Castle,2.73-6.37,castle_s05e10_seg02_clip_24,threw the coffee out 12572,Chase,Foreman,Cameron,Wilson,No one,1,Who walked in after House and Cuddy were talking about Wilson?,134611,House M.D.,51.62-59,house_s05e01_seg02_clip_00,Foreman 12573,Sheldon wiped his tears with his shirt.,Sheldon wiped his tears with a tissue.,Sheldon wiped his tears with a white flag.,Sheldon wiped his tears with toilet paper.,Sheldon wiped his tears with a pillow.,2,What did Sheldon wipe his tears with when he cried?,134612,The Big Bang Theory,41.8-61.02,s08e10_seg02_clip_11,Sheldon wiped his tears with a white flag. 12574,Answers her phone.,Hugs him.,Kisses his cheek.,Gives him a tissue.,Offers him dinner.,0,What does Rachel do when her male friend is crying?,134613,Friends,50.24-59.86,friends_s09e14_seg02_clip_15,Answers her phone. 12575,House was in the elevator.,House was at the nurse's station.,House was in his office.,House was in the hallway.,House was in the surgery observation room.,4,Where was House when he told Foreman that he heard him?,134614,House M.D.,7.04-12.76,house_s07e16_seg02_clip_21,House was in the surgery observation room. 12576,Meredith cried on Izzy's shoulder.,Meredith hugged Cristina.,Meredith kicked Alex on the leg.,Meredith looked down at the floor.,Meredith sat on a couch.,3,What did Meredith do after Derek entered the elevator?,134615,Grey's Anatomy,82.74-88.02,grey_s02e08_seg02_clip_10,Meredith looked down at the floor. 12577,Poison,Luke Bryan,Ketuckey Headhunters,Damn Yankees,AC/DC,4,Who is the band the dj offers to load for Barney before the stripper takes the stage?,134616,How I Met You Mother,0-10.5,met_s05e02_seg02_clip_16,AC/DC 12578,They offer a reward for anyone willing to donate,They ask the board to make an exception,They buy a kidney off the black market,Nadia goes to a foreign country with different medical policies,They ask Nadia's relatives to donate a kidney,4,How does Masters propose Nadia gets a kidney when Masters and Chase are talking about getting Nadia a transplant?,134617,House M.D.,79.7-90.06,house_s07e12_seg02_clip_13,They ask Nadia's relatives to donate a kidney 12579,She was texting Ryan sexy pictures,She texted Ryan to get old police files.,She was sending dirty files to someone.,She texted her mom.,She texted Esposito secretly.,1,What does Castle say Beckett did last night when she was in bed with him?,134618,Castle,1.83-18.28,castle_s07e11_seg02_clip_17,She texted Ryan to get old police files. 12580,Leonard tells her about his first grade crush. ,Leonard tells her about his mom. ,Leonard tells her about his teacher. ,Leonard tells her about the cashier at the grocery store. ,Leonard tells her about his high school girlfriend that didn't know they were going out. ,4,What story does Leonard use when explaining to Penny that he doesn't mind taking it slow?,134619,The Big Bang Theory,26.25-36.69,s05e14_seg02_clip_00,Leonard tells her about his high school girlfriend that didn't know they were going out. 12581,She wrote something down on her notepad. ,She patted house on the back.,She changed into emergency scrubs.,She walked down the stairs.,She called for a nurse. ,3,"What was Cuddy doing after she said , ""Foam the lungs""? ",134620,House M.D.,1.78-5.34,house_s07e02_seg02_clip_09,She walked down the stairs. 12582,A lost pair of keys.,"Someone's lost cash, up for grabs.",Surprising crime evidence.,A magazine on the desk that features Beckett and Castle in it.,A mysterious book.,3,What does Castle spot when he walks into the precinct office?,134621,Castle,34.75-38.4,castle_s02e03_seg02_clip_08,A magazine on the desk that features Beckett and Castle in it. 12583,dragons,dragunov,dragson,bragunov,cragnov,1,What does beckett think anya took from the gun cache when viewing the footage?,134622,Castle,33.63-39.08,castle_s08e11_seg02_clip_23,dragunov 12584,Chandler borrowed Joey's car and got into an accident,Chandler owed him money and he came to collect.,His girlfriend is cheating on him with Chandler.,"Joey invited Chandler to the premiere, and he did not show up.",Joey borrowed Chandler's car and got into an accident.,3,Why was Joey mad at Chandler when he said I don't want to owe you anything?,134623,Friends,22.33-31.63,friends_s08e22_seg02_clip_13,"Joey invited Chandler to the premiere, and he did not show up." 12585,"She pretends to be upset, poorly",She throws a drink in the dad's face,She leaves,She cries,She vomits,0,What does Mrs. Mosby do after hearing the news that her husband picked up a waitress at the bar?,134624,How I Met You Mother,40.67-64.05,met_s02e03_seg02_clip_14,"She pretends to be upset, poorly" 12586,In the office at Richie's law firm.,In the conference room at Richie's law firm.,In the office at NYPD Precinct.,In the conference room at NYPD Precinct.,In the lobby of Richie's law firm.,0,Where did Annie give information about Richie when she's interviewed by Castle and Beckett?,134625,Castle,7.47-10.1,castle_s07e19_seg02_clip_03,In the office at Richie's law firm. 12587,Sam had to wait for the cable guy.,Sam had to feed all of her pets.,Sam had to get some notes on her patients.,Sam had to pick up her smock.,Sam had to get changed for a 10:00 CT.,4,Why did Sam have to race to her place before going to the hospital.,134626,House M.D.,13.63-18.81,house_s06e18_seg02_clip_00,Sam had to get changed for a 10:00 CT. 12588,The power cord to turn it on ,A VHS tape,A banana ,A pancake,A music disc ,4,What does Marcel put into the stereo when he is in the living room?,134627,Friends,5.58-13.34,friends_s01e18_seg02_clip_07,A music disc 12589,Because a patient had died.,He was just overworked.,Because he did not find his salary.,James Wilson was quarreling Cuddy because a patient's condition had worsened to her brain because Cuddy had warmed her up without informing them.,Wilson was having a rough day at work.,3,Why was James Wilson quarreling Cuddy when they met?,134628,House M.D.,0-10.15,house_s04e16_seg02_clip_13,James Wilson was quarreling Cuddy because a patient's condition had worsened to her brain because Cuddy had warmed her up without informing them. 12590,Amy,Kathy O'Brian,Bernadette ,Ramona Shicwitzki,Howard Burkley,1,Who comes up the Sheldon when he's eating lunch in the cafeteria? ,134629,The Big Bang Theory,22.05-27.27,s02e06_seg02_clip_16,Kathy O'Brian 12591,Taub says that she is too agressive,Taub says she is married,Taub says she has someone in the hospital,Taub says he need to leave,Taub doens't say anyting abou her,0,What does Taub say about Volakis when the patient says he likes her?,134630,House M.D.,26.28-34.89,house_s04e05_seg02_clip_08,Taub says that she is too agressive 12592,cats,Hamburgers,Target,dogs,Bike Week,4,What is on Marshall's shirt when the girls talk about his hair tab?,134631,How I Met You Mother,3.6-9,met_s06e19_seg02_clip_12,Bike Week 12593,She puts a bowl of popcorn on the table.,She puts two wine glasses on the table.,She puts a bowl of salad on the table.,She puts two cups of tea on the table.,She puts a bowl of pretzels on the table.,1,"What does Amy put on the table before she picks up her cell phone and tells Amy ""good news""?",134632,The Big Bang Theory,50.54-59.06,s04e22_seg02_clip_03,She puts two wine glasses on the table. 12594,"The agency thought Chandler and Monica were smart for having a child, Joey, write the recommendation.",They were able to stop them from opening the letter.,The office never received the recommendation.,They did not want to adopt any more.,They were not relieved at all.,0,Why are Chandler and Monica relieved after they are expecting bad news from the adoption agency?,134633,Friends,31.9-40.24,friends_s10e05_seg02_clip_15,"The agency thought Chandler and Monica were smart for having a child, Joey, write the recommendation." 12595,Randolph and Andrea Addison,Lyla's grandparents,Karnacki,Otis Williams,Joe McUsic,0,Who does Castle find out were the DA's biggest campaign contributors before Beckett and Castle talk to Otis Williams?,134634,Castle,12.46-22.26,castle_s03e19_seg02_clip_18,Randolph and Andrea Addison 12596,House,Cameron,Foreman,Wilson,Cuddy,0,Who answers Wilson after being asked if he would call?,134635,House M.D.,0-5.18,house_s02e17_seg02_clip_27,House 12597,Having dinner,Making Out,Sleeping,Watching TV,Fighting ,1,"What were Robin and Barney doing when Lily, Marshall and opened the door?",134636,How I Met You Mother,52.53-57.01,met_s05e04_seg01_clip_01,Making Out 12598,preserve a building,stop taxes,stop laundering,help human rights,stop racism,0,What did Zoey try to do when she was talking to Ted?,134637,How I Met You Mother,0-15.94,met_s06e05_seg02_clip_17,preserve a building 12599,His apartment,The cafe,Outside,At work,With Rachel,0,Where is Ross when Rachel is listening to the radio?,134638,Friends,0-19.62,friends_s02e08_seg02_clip_19,His apartment 12600,laughing,Talking to a female about music and guitars,hitchhiking,walking,running,1,What is Phoebe doing when the scene starts,134639,Friends,2.97-59.4,friends_s02e06_seg02_clip_11,Talking to a female about music and guitars 12601,They are playing Chess,They are playing Ping Pong ,They are playing Old maids,They are playing Operation,They are playing Twister,1,Which game is Penny and Raj playing after Howard gets excited,134640,The Big Bang Theory,0-7.33,s08e19_seg02_clip_11,They are playing Ping Pong 12602,House was in trouble,The patient had recovered,Pizza had arrived,The patient was deteriorating,The patient was hungry,3,What message was paged to Chase and the team when the devices rang?,134641,House M.D.,41.1-88.63,house_s03e11_seg02_clip_08,The patient was deteriorating 12603,Ross is upset that Rachel made a fool of herself.,Ross is upset that Joshua left.,Ross is upset that his plans with Emily were ruined for the evening.,Ross is upset that Rachel is wearing a cheerleading outfit.,Ross is upset that the fake party wasn't for him.,2,Why is Ross upset when talking to Rachel?,134642,Friends,25.38-59.03,friends_s04e16_seg02_clip_18,Ross is upset that his plans with Emily were ruined for the evening. 12604,The blouse Rachel is wearing is pink,The blouse Rachel is wearing is black,The blouse Rachel is wearing is orange,The blouse Rachel is wearing is red,The blouse Rachel is wearing is white,4,What color blouse is Rachel wearing when she is listening to Ross talk about stepping back,134643,Friends,0-12.61,friends_s05e05_seg02_clip_17,The blouse Rachel is wearing is white 12605,the neighbors are loud,house sees the ceiling is wet,the paint is chipping,test the sturdiness,just because,1,why does house poke at the ceiling with his cane when get ups from his bed?,134644,House M.D.,86.44-97.46,house_s05e12_seg02_clip_05,house sees the ceiling is wet 12606,Chandler was excited about it being a game night.,"Chandler was excited about it being a Saturday night, and a date night.",Chandler was excited about it being his birthday.,Chandler was excited about it being his wedding day.,Chandler was excited about it being his anniversary.,1,What was Chandler so excited about when he turned to talk to his friends?,134645,Friends,0-10.48,friends_s01e05_seg02_clip_00,"Chandler was excited about it being a Saturday night, and a date night." 12607,Rachel and Ross are sitting in Rachel's apartment. ,Rachel and Ross are sitting in a car. ,Rachel and Ross are sitting outside at the park. ,Rachel and Ross are sitting on a step in the hallway of their apartments. ,Rachel and Ross are sitting in Ross's apartment. ,3,Where are Rachel and Ross sitting when they're talking?,134646,Friends,0-62.03,friends_s04e16_seg02_clip_19,Rachel and Ross are sitting on a step in the hallway of their apartments. 12608,A kiss,Sex,Cake,His jacket,A $20 bill,2,What does Castle offer Beckett after Kyra wanders off?,134647,Castle,51.86-59.52,castle_s02e12_seg02_clip_12,Cake 12609,nothing,good,We'll be laying off people ,good jobs ,Well done ,2,what did Mr Doulas say with Chandler when he talk with Chandler ?,134648,Friends,2.97-66.03,friends_s01e16-17_seg02_clip_09,We'll be laying off people 12610,His glass.,His tie.,His wallet.,Robin's hand.,The menu.,0,What is Barney holding when trying to convince Marshall he's not scared?,134649,How I Met You Mother,27.74-43.8,met_s03e09_seg02_clip_02,His glass. 12611,Amy thinks she is offended by what Sheldon is doing is horrific. ,Amy thinks she is jealous of Penny. ,Amy thinks she is jealous that Sheldon figured it out before she did. ,Amy thinks it's interesting as cultural perceptions are subjective. ,Amy thinks Penny is a slut. ,3,What does Amy think about things after Sheldon figures out how many people Penny has slept with?,134650,The Big Bang Theory,33.31-34.81,s04e01_seg02_clip_14,Amy thinks it's interesting as cultural perceptions are subjective. 12612,Fork,Knife,She was holding a file.,Spoon,Bag,2,What was Beckett holding when she was walking?,134651,Castle,21.35-32.51,castle_s05e03_seg02_clip_19,She was holding a file. 12613,Esposito hands her a phone.,Esposito hands her a coffee.,Esposito hands her a photo.,Esposito hands her a weapon.,Esposito hands her an evidence bag.,4,What does Esposito hand to Beckett when walking up to her?,134652,Castle,29.26-31.51,castle_s07e23_seg02_clip_09,Esposito hands her an evidence bag. 12614,Marshall.,Lily.,Jerry.,Robin.,Ted.,2,Who drink liquor in small glasses when sat next to Barney?,134653,How I Met You Mother,2.1-5.1,met_s06e21_seg02_clip_09,Jerry. 12615,Snow White.,Sleeping Beauty.,Cinderella.,Sleeping Prince.,Rip Van Winkle.,1,Who did House say the healthy knight was when he and the team of doctors were discussing his diagnosis?,134654,House M.D.,3.12-7.12,house_s06e17_seg02_clip_10,Sleeping Beauty. 12616,In an airport. ,In a hospital.,In a restaurant.,In an office.,In a bedroom. ,1,Where do Dr. House and Foreman stand when they are talking? ,134655,House M.D.,20.92-30.71,house_s03e20_seg02_clip_19,In a hospital. 12617,Howard told her to catch a taxi.,Howard told her to let him drive her to work.,Howard told her to carpool.,Howard told her to take the subway.,Howard told her to download the traffic app.,4,What did Howard tell Bernadette to do after she spoke about her day at work starting late?,134656,The Big Bang Theory,12.69-59.02,s07e10_seg02_clip_05,Howard told her to download the traffic app. 12618,Howard took Bernadette by the hand. ,Howard took Raj by the hand before leaving the room. ,It was Amy that Howard took by the hand. ,"Howard stood by himself, not taking anyone by the hand. ",Howard took Sheldon by the hand and led him out of the room. ,0,Who did Howard take by the hand before leading her to the bar? ,134657,The Big Bang Theory,3.63-9.67,s09e16_seg02_clip_12,Howard took Bernadette by the hand. 12619,The telephone.,A wine glass. ,A lap top. ,A magazine.,A nail file. ,0,What does Monica pick up when she is sitting in the chair? ,134658,Friends,14.59-23.28,friends_s02e08_seg02_clip_18,The telephone. 12620,ignore him,slapped his hand,punched him,kicked him,grab his hand,4,What did the younger boy do the the older boy hand when they were talking down the hallway?,134659,House M.D.,116.86-120.54,house_s05e08_seg02_clip_24,grab his hand 12621,Dr. Webber visits her. ,Meredith visits her. ,George visits her. ,Alex visits her. ,Callie visits her. ,0,Who goes to visit Ellis when she is in the hospital?,134660,Grey's Anatomy,0-22.14,grey_s03e14_seg02_clip_25,Dr. Webber visits her. 12622,To a mud spa,To a Sting concert,To the zoo with Chandler,To see The play Hamilton,To heaven when she died,1,Where did Phoebe say she wanted to go when she was talking to Ross on the couch?,134661,Friends,42.87-52.56,friends_s08e10_seg02_clip_01,To a Sting concert 12623,In a jail cell.,In an interrogation room.,At his board meeting.,In his office.,Outside near a bench.,1,Where is William Caraway when he is asked to sit down by Beckett?,134662,Castle,69.32-77.42,castle_s02e16_seg02_clip_16,In an interrogation room. 12624,Weber says that House's hospital is corrupt and this the results are void. ,Weber says that House's facts about the journal's reputability are being poorly represented. ,Weber tells House that he's not smart enough to be able to test a drug. ,"Weber attacks House's sample size, implying such results are inconclusive. ",Weber says that his drug is being re-formulated. ,3,"How does Weber choose to undermine House's conclusion that the drug doesn't work, after House says he tested it?",134663,House M.D.,66.14-81.8,house_s02e12_seg02_clip_09,"Weber attacks House's sample size, implying such results are inconclusive. " 12625,Beckett asks Ryan to get rid of the cameras.,Beckett asks Ryan to find Castle.,Beckett asks Ryan to round up the band members.,Beckett asks Ryan to speak to the venue's owner.,Beckett asks Ryan to tell Lanie to process the bodies ASAP.,0,What does Beckett ask of Ryan after she and Ryan arrive on scene?,134664,Castle,7.99-16.93,castle_s05e07_seg02_clip_00,Beckett asks Ryan to get rid of the cameras. 12626,She sat on the floor.,She kissed Alex.,She cried.,She danced with Izzie.,She smacked George.,2,What did Rebecca do after Jeff said never let you go again?,134665,Grey's Anatomy,45.21-48.66,grey_s03e25_seg02_clip_05,She cried. 12627,The person punched Pete.,The person scaped,The person calmed down fast.,The person took Pete's truck.,The person called his attorney.,2,What happened after Pete called the cops?,134666,Castle,11-16.04,castle_s03e10_seg02_clip_13,The person calmed down fast. 12628,Cheese,Wine,Beer,Fruit basket,Nothing,2,What did Ted bring Lily after she realized it was not Pizza?,134667,How I Met You Mother,12.3-21.68,met_s02e11_seg02_clip_10,Beer 12629,Silver,Green,Pink,Blue,White,4,What color is the lamp in the patient's room when the blonde doctor and man in gray suit are talking?,134668,House M.D.,18.44-19.41,house_s05e21_seg02_clip_06,White 12630,Coffee,Wine,Soda,Vodka,Tea,1,What did Raj pour for Bernadette when she sits down on the chair ?,134669,The Big Bang Theory,0.89-8.85,s07e10_seg02_clip_05,Wine 12631,Cleaning,Grocery Shopping,Parenting,Cooking,Killing,4,What does Jamie Burman ask the group if they are capable of doing when in the meeting room?,134670,Castle,13.5-18,castle_s06e19_seg02_clip_03,Killing 12632,Castle is in the kitchen with Beckett,Castle is in the kitchen with Alexis,Castle is in the kitchen with Esposito,Castle is in the kitchen with Ryan,Castle is in the kitchen with Ryker,1,Who is in the kitchen with Castle when he has an apple in his hand?,134671,Castle,0-4.5,castle_s03e16_seg02_clip_06,Castle is in the kitchen with Alexis 12633,2,3,4,5,6,0,How many assistance's did Rachel say Joanna had when she was talking to Ross? ,134672,Friends,4.72-11.51,friends_s03e12_seg02_clip_02,2 12634,He opened a medical journal,He checked his phone,He pulled down his X-ray,He pulled out a medical book,He looked at a computer screen,4,"What did George do right after he asked ""Is it going straight through her spine?""",134673,Grey's Anatomy,0-88.81,grey_s02e06_seg02_clip_04,He looked at a computer screen 12635,Sheldon talks about learning videos.,Sheldon talks about scary videos.,Sheldon talks about workout videos.,Sheldon talks about TED talk videos.,Sheldon talks about Earth videos.,2,What kind of videos does Sheldon talk about when he is in the van?,134674,The Big Bang Theory,0-7.56,s09e03_seg02_clip_03,Sheldon talks about workout videos. 12636,Trudie suggests doing a conference call with Jack right then.,Trudie suggests Jack call Phoebe to arrange a time,Trudie suggests letting the attorneys handle the matter,Trudie suggests she and Phoebe talk about the children right then,Trudie suggests maybe the meeting can just be put off for awhile,3,What does Trudie suggest when she and Phoebe cannot decide on a time?,134675,Friends,33.99-38.93,friends_s08e10_seg02_clip_15,Trudie suggests she and Phoebe talk about the children right then 12637,Sleeping.,Watching television.,Reading a document.,Looking at a photograph.,Watching a video.,3,What is Castle doing before Alexis walks through the door?,134676,Castle,65.4-70.85,castle_s07e20_seg02_clip_17,Looking at a photograph. 12638,Heart stopping again,Death is a possibility ,Permanent loss of vision ,Bleeding in the brain,Life long paralysis ,3,What risk does House tell Cameron that his treatment could cause when asking for the ability to treat?,134677,House M.D.,30.04-43.69,house_s05e13_seg02_clip_04,Bleeding in the brain 12639,They are very conceited.,They were in denial.,Barney and Robin falsely complimented their party.,They are blind.,Ted said it was the best ever.,2,Why did Lily and Marshall think their party was a hit after their guests left?,134678,How I Met You Mother,43.12-57,met_s05e04_seg02_clip_02,Barney and Robin falsely complimented their party. 12640,Sherry,Diamond,Chloe,Diane,Sally,2,Who was at the apartment when the gtroup of friends arrived back at the apartment ?,134679,How I Met You Mother,3.99-5.13,met_s02e07_seg02_clip_18,Chloe 12641,A bucket of popcorn,A bouquet of flowers,His batman utility belt,A pair of x-ray glasses,His new laptop,0,What is Howard holding when the guys are sitting around,134680,The Big Bang Theory,0-15.51,s01e11_seg02_clip_09,A bucket of popcorn 12642,Spoons,Pens,Pencils,Papers,Forks,3,What does Esposito hand Beckett after Sully talks about the present?,134681,Castle,23.11-33.78,castle_s06e04_seg02_clip_21,Papers 12643,The shirt under Izzy's scrubs is black,The shirt under Izzy's scrubs is pink,The shirt under Izzy's scrubs is green,The shirt under Izzy's scrubs is brown,The shirt under Izzy's scrubs is orange,1,What color is the shirt under Izzy scrub when she and George are standing in the hallway talking,134682,Grey's Anatomy,11.66-21.49,grey_s03e17_seg02_clip_10,The shirt under Izzy's scrubs is pink 12644,He was crying with joy,He was over zealous,He looked confused and bothered,He was mad and angry,He was sad.,2,What is House reaction when Forman said it worked?,134683,House M.D.,0-21.57,house_s07e16_seg02_clip_21,He looked confused and bothered 12645,Rachel introduced Monica,Rachel introduced Phoebe,Rachel introduced Ross,Rachel did not introduce anyone,Rachel introduced Joey,1,Who did Rachel introduce to perform when she got on the stage?,134684,Friends,33.87-48.21,friends_s01e10_seg02_clip_01,Rachel introduced Phoebe 12646,$3.45.,$2.10.,$1.45.,$6.23.,$2.10.,3,How much money has the suspect in his bank when he was paying a lot of money in repairs?,134685,Castle,45.36-54.98,castle_s03e10_seg02_clip_13,$6.23. 12647,Penny and Bernadette,Howard,Sheldon,Emily,Raj ,0,Who was with Amy when she was at home?,134686,The Big Bang Theory,0-64.37,s10e13_seg02_clip_00,Penny and Bernadette 12648,Answer her phone.,Scratch her ear.,Touch his arm.,Walk away.,Yawn.,0,What does Kate do when she is talking to Richard?,134687,Castle,56.71-66.62,castle_s05e10_seg02_clip_03,Answer her phone. 12649,A cafeteria,The grocery store,A newspaper ,The comic book store ,A church,3,Where is the group when Bernadette and Leonard come in from racing,134688,The Big Bang Theory,51.43-59.12,s07e03_seg02_clip_07,The comic book store 12650,pheobe calls rachel's dad sexy.,pheobe insults rachel's dad,pheobe says she had sexy with,pheobe wants to have a relationship with him,pheobe is jealous of rachel. ,0,Why is rachel disgusted after asking pheobe to join her for dinner? ,134689,Friends,5.8-12.21,friends_s08e08_seg01_clip_00,pheobe calls rachel's dad sexy. 12651,Apologize to the patient.,Redo the transfusion. ,Scan the patients neck. ,Have the patient sign some waivers. ,Research the next step.,2,"What does House tell Foreman, Chase, and Cameron to do after Foreman said that the patient was given a transfusion?",134690,House M.D.,24.31-29.26,house_s02e06_seg02_clip_20,Scan the patients neck. 12652,She says she needs a manicure.,She says that she is going to bring food.,She says that Chandler should book their flights.,She says that she is going to line up her outfits.,She says that in London Phoebe was pregnant.,4,What does Monica say before Phoebe mentions again that she is accompanying them to Las Vegas?,134691,Friends,30.25-41.6,friends_s05e23-24_seg02_clip_02,She says that in London Phoebe was pregnant. 12653,Through Text,Through sign language,Through video call ,Through phone call,Through Email,3,How was Taub and Foreman communicating when they were talking about their work condition.,134692,House M.D.,0-15.3,house_s05e04_seg02_clip_12,Through phone call 12654,"Chandler thinks the ""other guy"" is Sheldon.","Chandler thinks the ""other guy"" is Ross.","Chandler thinks the ""other guy"" is really a girl.","Chandler thinks the ""other guy"" is himself.","Chandler thinks the ""other guy"" is in Joey's imagination.",3,"Who did Chandler think was ""the other guy"" after Joey said he had a feeling Kathy was into some other guy?",134693,Friends,15.44-44.54,friends_s04e07_seg02_clip_20,"Chandler thinks the ""other guy"" is himself." 12655,He was a dreamer. ,He was a monster in public and a hero at home. ,He was a good person. ,He was a hero in public and a monster at home. ,He was a sad person. ,3,What does Jan say about Billy when she is talking to Beckett and Castle about the case?,134694,Castle,65.54-68.27,castle_s05e10_seg02_clip_24,He was a hero in public and a monster at home. 12656,House said they could do a quick ultrasound to see if his nose was clear.,House said he was right and there was nothing up his nose.,House said they would need to do an x-ray to see if there was something up his nose.,House said they would need to do an MRI to make sure his nose was clear.,House said he was pretty sure he didn't.,4,How did House respond when the child's father said he watched his child like a hawk?,134695,House M.D.,24.97-31.21,house_s01e15_seg02_clip_18,House said he was pretty sure he didn't. 12657,Rachel says she's feeling scared.,Rachel says she's feeling depressed.,Rachel says she's feeling tired.,Rachel says she's feeling excited.,Rachel says she's feeling blue.,3,What emotion does Rachel say she's feeling when apologizing to the passenger?,134696,Friends,11.79-22.33,friends_s04e23-24_seg02_clip_35,Rachel says she's feeling excited. 12658,Because the order is too late.,Because the order is right.,Because the order is too hot.,Because the order is wrong.,Because the order is too early.,3,Why is Rachel upset when the pizza is delivered?,134697,Friends,12.94-18.18,friends_s01e04_seg02_clip_13,Because the order is wrong. 12659,16,15,13,14,12,1,Who old did Cuddy say Masters was when she graduated high school after House said Masters is not a doctor?,134698,House M.D.,39.21-45.6,house_s07e06_seg02_clip_00,15 12660,A cell phone,A calculator,A typewriter,A laptop,The microwave,3,What was Howard typing on when Leonard walked through the door?,134699,The Big Bang Theory,15.12-19.77,s02e04_seg02_clip_09,A laptop 12661,About going to see Leonard ,About where their relationship is going ,About what they was going to eat for dinner.,About a project at work,About their friends. ,0,What were they talking about when Sheldon and Amy was in the car?,134700,The Big Bang Theory,0-22.4,s08e09_seg02_clip_07,About going to see Leonard 12662,Howard wants Penny to give Amy a chocolate bar.,Howard wants Penny to give Amy a message for him.,Howard wants Penny to give Amy a hug.,Howard wants Penny to give Amy some water.,Howard wants Penny to give Amy some medicine.,1,What does Howard want Penny to give Amy after they finish speaking?,134701,The Big Bang Theory,0.89-5.02,s05e22_seg02_clip_15,Howard wants Penny to give Amy a message for him. 12663,Neutral,Positive,Negative,Mostly Positive,Excellent,2,What kind of review did Joey see after reading the newspaper?,134702,Friends,37.91-46.78,friends_s02e10_seg01_clip_00,Negative 12664,matt.,maddy,alison,gretchin,Martha.,4,Who hugs becklett when telling her to hang in there.,134703,Castle,0-10.91,castle_s02e13_seg02_clip_17,Martha. 12665,Yes,No,Maybe,Temporarily ,Haven't decided,0,How did Cuddy curtly respond when Wilson asked her if she was moving in with Lucas?,134704,House M.D.,2.72-7.24,house_s06e09_seg02_clip_05,Yes 12666,Call him a bad name and gives him a wedgie.,Ignores him for the most part and then sticks him with the restaurant bill.,Punches him in the arm and tells everyone how he dookied his pants.,Grabs his head with his elbow and rubs his scalp with his knuckles.,Trips him by tying his shoelaces together and throws a drink on him.,2,What two things does Marshall tell Ted Punch does to him when he sees him once a year?,134705,How I Met You Mother,11.81-16.24,met_s06e09_seg02_clip_04,Punches him in the arm and tells everyone how he dookied his pants. 12667,Bottle of wine,Blanket,T-shirt,Phone,Knife,0,What does Penny give Leonard after Leonard says his mom is still here?,134706,The Big Bang Theory,0-4.88,s02e15_seg02_clip_10,Bottle of wine 12668,He interrupts to announce Taub is daydreaming,He interrupts to announce that Taub's wife has agreed to an open marriage,He interrupts to announce he knows the diagnosis,He interrupts to announce they have been on the wrong track entirely,He interrupts to announce the answer is right under their noses,1,Why does House interrupt the meeting when the team is talking about a patient's diagnosis?,134707,House M.D.,61.64-73.97,house_s06e18_seg02_clip_17,He interrupts to announce that Taub's wife has agreed to an open marriage 12669,Ross and Phoebe are sitting down on the couch,Rachel and Ross are sitting down on the couch,Ross and Chandler are sitting down on the couch,Phoebe and Rachel are sitting down on the couch,Chandler and Rachel are sitting down on the couch,4,Who is sitting down on the couch when they are in the cafe?,134708,Friends,0-2.73,friends_s03e10_seg01_clip_00,Chandler and Rachel are sitting down on the couch 12670,An orange,An apple,A banana,A grapefruit,Grapes,3,What is Martha eating when Beckett starts talking to her?,134709,Castle,6.43-10.1,castle_s07e22_seg02_clip_00,A grapefruit 12671,They are at a park on a cement bench sitting down in front of a tree.,"They are at a restaurant, with not many people, eating casually.",They are in House's office with the door locked sitting down.,They are standing in his apartment in the living room.,They are at a bar that is not busy and they are sitting at a table. ,0,Where are House and the woman when she asks him if he thinks the guy who raped her feels remorse for his actions?,134710,House M.D.,67.14-78.85,house_s03e12_seg02_clip_23,They are at a park on a cement bench sitting down in front of a tree. 12672,Monica was humored.,Monica got mad.,Monica was scared.,Monica was disappointed. ,Monica was shockingly impressed.,4,What was Monica's reaction after he saw Chandler naked under the blanket?,134711,Friends,14.41-25.21,friends_s09e10_seg02_clip_13,Monica was shockingly impressed. 12673,Chase said the patient exercises,Chase said the patient meditates,Chase said the patient bird watches,Chase said the patient prays,Chase said the patient reads,4,What does Chase say they patient does when he is in his apartment,134712,House M.D.,81.87-89.47,house_s07e08_seg02_clip_05,Chase said the patient reads 12674,Rocco was blackmailing Fink with photographs,Rocco vandalized Fink's studio,Rocco stole money from Fink's safe,Rocco left threatening messages for Fink ,Rocco broke into Fink's house while he was out ,3,How does Beckett say Rocco threatened Mr. Fink after she asks a team member to look into it?,134713,Castle,42.64-49.17,castle_s02e11_seg02_clip_03,Rocco left threatening messages for Fink 12675,I like to see their face,Why not ,It's so fun to hear the answer,I heard you ask it over and over. ,Very interesting,3,What did Sheldon say after Leonard said we don't ask questions like that?,134714,The Big Bang Theory,0-28.39,s02e10_seg02_clip_00,I heard you ask it over and over. 12676,Sing.,Drink.,Eat.,Play with a spoon.,Read.,2,What was doing Mandy when Leonard sat on front her?,134715,The Big Bang Theory,6.13-58.38,s09e02_seg02_clip_11,Eat. 12677,Amy is looking up how Leonard should be driving.,Amy is looking up how Penny can get an annulment ,"Amy is using a map to help them not get lost,",Amy is trying to search for a place to have lunch.,Amy is seeing if Sheldon answered the trivia question correctly.,1,What is Amy looking up after Penny asks a question?,134716,The Big Bang Theory,30.17-32.2,s07e09_seg02_clip_03,Amy is looking up how Penny can get an annulment 12678,He rode the bus,He pooped good,He wasn't fussing,He lasted all day with uncles Joey and Chandler,He's gained half a pound.,0,What does Ross say makes Ben a big boy when he is changing his diaper?,134717,Friends,0.45-11.57,friends_s02e06_seg02_clip_21,He rode the bus 12679,Beckett and Castle were interragating no one,Beckett and Castle were interragating David,Beckett and Castle were interragating John,Beckett and Castle were interragating Junior,Beckett and Castle were interragating Jessup,4,Who was Beckett and Castle interragating when they were in the interragation room?,134718,Castle,0-6.58,castle_s02e09_seg02_clip_06,Beckett and Castle were interragating Jessup 12680,Sitting at a table.,Sitting on the sofa.,Sitting in a chair.,Standing by a chair.,Standing next to Ross.,2,Where was Chandler when Ross showed Gunther the magazine?,134719,Friends,32.76-41.61,friends_s06e12_seg02_clip_07,Sitting in a chair. 12681,Eye mask,Headphones,Hat,Scarf,Suit,1,What was House wearing when Cudddy came over to him on the plane? ,134720,House M.D.,25.96-31.88,house_s03e18_seg02_clip_04,Headphones 12682,The window. ,A book. ,The television. ,A magazine. ,The oven. ,3,What is Phoebe looking at when she is relaxing on Monica's couch?,134721,Friends,2.1-4.2,friends_s06e18_seg02_clip_10,A magazine. 12683,Gives her a hug.,Holds her hand.,Gently kisses her.,Calls her mom.,Write her a note.,1,What Chase does to comfort Moira when she's upset?,134722,House M.D.,73.82-90.02,house_s08e12_seg02_clip_20,Holds her hand. 12684,Chandler,Ross,Monica,Monica and Chandler,Phoebe and Ross,1,Who walks in before Rachel gets the ring?,134723,Friends,19.43-37.01,friends_s09e01_seg01_clip_00,Ross 12685,Monica is alarmed because Emma is walking on the floor.,Monica is alarmed because Emma is on the couch.,Monica is alarmed because Emma is missing.,Monica is alarmed because Emma broke her lamp.,Monica is alarmed because Emma is playing with her makeup.,2,Why is Monica alarmed after she looks in the playpen?,134724,Friends,15.2-18.61,friends_s09e14_seg02_clip_15,Monica is alarmed because Emma is missing. 12686,Chase comes into MRI examining booth.,Foreman comes into MRI examining booth.,Two nurses come into MRI examining booth.,House comes into MRI examining booth.,The hospital director comes into MRI examining booth.,1,Who comes into the MRI examining booth when Cameron is reviewing a patient's scans?,134725,House M.D.,56.23-63.17,house_s02e22_seg02_clip_03,Foreman comes into MRI examining booth. 12687,because of the medicine she is on,It was something she ate,She has the flu,She have a stomach virus ,Because she is pregnant ,4,Why was Bernadette throwing up when she was in the bathroom?,134726,The Big Bang Theory,0-20.75,s10e05_seg02_clip_02,Because she is pregnant 12688,She tells Beckett to give her access to a phone and she can find out what they need to know,She tells Beckett to go undercover there; the men there like a pretty lady,"She tells Beckett she has a cousin that can go, if Beckett is willing to deal",She says to let her go down there,She tells Beckett to send Castle undercover there,3,What alternative does Sonia offer after she tells Beckett not to send officers?,134727,Castle,34.84-40.73,castle_s08e16_seg02_clip_04,She says to let her go down there 12689,In the hallway,In the kitchen,At the front door,On the sofa,In the Basement,2,Where were penny and Leonard standing after penny opened the list,134728,The Big Bang Theory,8.56-17.12,s05e14_seg02_clip_05,At the front door 12690,He is very tired.,He is angry.,He is afraid.,He is happy.,He is drunk.,2,What is Ted feeling before the Captain goes below deck?,134729,How I Met You Mother,9.3-60.03,met_s06e11_seg02_clip_13,He is afraid. 12691,Because the patient was having a siezure.,Because he was vomiting,Because the patient was calling for him.,Because the patient was bleeding from his ear.,Because there was a metal object they hadn't identified. ,3,Why did Chase call Foreman to come over after the patient emerged from the MRI machine?,134730,House M.D.,0-17.66,house_s03e01_seg02_clip_18,Because the patient was bleeding from his ear. 12692,John Lennon,Johnny Lemon,Jimmy Lennon,Jimmy Lymon,Johnny Lymon,2,Whose name was written on the white paper when Esposito was on the phone?,134731,Castle,0-6.03,castle_s03e21_seg02_clip_14,Jimmy Lennon 12693,The Corner of West and 3rd street,The Lab,The Crime Scene,The Dungeon,The Irish Pub,3,Where does Beckett send Ryan and Esposito when she's delegating to the team about the case?,134732,Castle,0-9.47,castle_s02e16_seg02_clip_18,The Dungeon 12694,Rachel kept hitting Chandler.,Emily wanted to ask him for advice.,There was a deer just outside eating fruit from orchard.,Emily kept hitting Ross.,Monica told him to hang up on her.,2,Why does Ross hang up on Monica after Emily comes into his room?,134733,Friends,26.27-45.75,friends_s04e14_seg02_clip_08,There was a deer just outside eating fruit from orchard. 12695,The sales clerk said the guys name was Kyle,The sales clerk did not give a name,The sales clerk said the guys name was Richard something,The sales clerk said the guys name was Tyler Bennton,The sales clerk said the guys name was Patrick,3,What was the name of the guy that order the handcuffs after Beckett asked the sales clerk?,134734,Castle,59.86-62.06,castle_s02e16_seg02_clip_04,The sales clerk said the guys name was Tyler Bennton 12696,A gun,A paper bag,A book,A stone,A bracelet. ,1,What was brought to Ted after he had picked the flower. ,134735,How I Met You Mother,6.71-11.93,met_s03e13_seg02_clip_17,A paper bag 12697,"Castle told Beckett it must be weird for her to work a case, because she demoted to a desk job.","Castle told Beckett it must be weird for her to work a case, because she is on suspension.","Castle told Beckett it must be weird for her to work a case, because she was promoted.","Castle told Beckett it must be weird for her to work a case, because of McCord's gag order preventing Beckett from accessing her most effective tool, Castle, himself.","Castle told Beckett it must be weird for her to work a case, because he has already solved the crime.",3,"Why did Castle tell Beckett it must be weird for her to be working a case, when he was preparing a latte for her?",134736,Castle,3.61-17.62,castle_s06e03_seg02_clip_14,"Castle told Beckett it must be weird for her to work a case, because of McCord's gag order preventing Beckett from accessing her most effective tool, Castle, himself." 12698,Monica went on the balcony.,Monica went to the bathroom.,Monica went to the sink to start the dishes.,Monica went to her bedroom.,Monica left the apartment.,1,Where did Monica go after she left the table?,134737,Friends,0-7.13,friends_s06e09_seg02_clip_17,Monica went to the bathroom. 12699,Nate tells Robin and her friends he keeps finding squirrels in his parent's attic.,Nate tells Robin and her friends he keeps finding squirrels in his living room.,Nate tells Robin and her friends he keeps finding squirrels in his laundry room.,Nate tells Robin and her friends he keeps finding squirrels in his backyard garden.,Nate tells Robin and her friends he keeps finding squirrels in his garbage chute.,3,Where does Nate tell Robin and her friends he keeps finding squirrels when talking about his hobby?,134738,How I Met You Mother,45.92-60.03,met_s06e18_seg02_clip_04,Nate tells Robin and her friends he keeps finding squirrels in his backyard garden. 12700,Estelle consoled him and told him he deserved better.,"As Joey expected, she was very upset.",Estelle was indifferent.,Estelle called up a contact and got him a new job.,"Estelle did not react with anger, much to Joey's surprise.",4,How did Estelle react when Joey told her he got fired?,134739,Friends,29.01-58.03,friends_s02e19_seg02_clip_02,"Estelle did not react with anger, much to Joey's surprise." 12701,Because Howard brought dinner and they just ate. ,Because Howard left.,Because Howard ended up staying.,Because Howard wants to watch Sex and the City.,Because Howard told them Sheldon and Raj were working together. ,2,How come Penny and Leonard were disappointed after Howard offered to leave?,134740,The Big Bang Theory,48.21-61.81,s03e04_seg02_clip_10,Because Howard ended up staying. 12702,Yellow,Red,Blue,White,Green,3,What color is Cuddy's skirt when she's talking to Valerie?,134741,House M.D.,45.68-48.34,house_s06e11_seg02_clip_16,White 12703,Ross,Barry,Mindy,Monica,Joey,2,Who is Rachel talking to when she's sitting in the coffee house?,134742,Friends,0-10.9,friends_s01e20_seg02_clip_14,Mindy 12704,Marshall's sister,Lily,Robin,Mary,Nora,4,Who left when she wanted to go to bed?,134743,How I Met You Mother,0-14.81,met_s06e16_seg02_clip_14,Nora 12705,Burning down the house.,Trying to kill Dina.,Running over a dog.,Losing her ring.,Killing Charles.,4,What did Jessica say was an accident to Dina when Joey was on the side watching their acting?,134744,Friends,54.67-60.07,friends_s07e15_seg02_clip_01,Killing Charles. 12706,turns the handle,unlocks it,breaks it,knocks,gets help,2,How does Joey open the door when Chandler watches?,134745,Friends,95.81-119.02,friends_s06e01_seg02_clip_19,breaks it 12707,Make cocktail.,Stay sitted.,Left the apartment.,Sat on the armrest.,Stands up.,4,What did Raj after Howard talked?,134746,The Big Bang Theory,25.22-57.98,s08e12_seg02_clip_02,Stands up. 12708,A laundromat,Monica's apartment,Ross's apartment,His parents house,In the living room,0,Where does Ross try to teach Rachel about doing laundry when he is explaining sorting colors?,134747,Friends,4.27-28.07,friends_s01e05_seg02_clip_12,A laundromat 12709,A hospital attendant,"Leon, the janitor",A lost patient,The new secretary,A new intern,1,Who was at the door when House thought it was Cuddy?,134748,House M.D.,59.51-63.01,house_s04e01_seg02_clip_25,"Leon, the janitor" 12710,Penny kicks him out. ,Penny asks if he's getting weird feelings in his pants. ,Penny asks if he has gone mad. ,Penny asks if he's getting fuzz in weird places. ,Penny gets him drunk. ,3,How does Penny respond after Sheldon tells her why he's there to talk with her?,134749,The Big Bang Theory,52.85-62.55,s06e07_seg02_clip_08,Penny asks if he's getting fuzz in weird places. 12711,She's not here.,"Hang on, she's right here.",She just walked in.,I'll catch her before she leaves.,I'll see if she's here.,1,What did Chandler say to Amanda before he gave the phone to Monica?,134750,Friends,48.25-53.02,friends_s10e03_seg02_clip_07,"Hang on, she's right here." 12712,Marshall,Lily,Ted,Nora,Robin,3,Who takes car of Barney when he is sick?,134751,How I Met You Mother,31.43-60.11,met_s06e18_seg02_clip_00,Nora 12713,The Santa runs away,Becket tells the Santa to sit. down,they both tell the santa to come to the station,Beckett observes the Santa's actions closely,the Santa starts crying,3,What happens after the Santa looks at Castle?,134752,Castle,15.64-23.24,castle_s05e09_seg02_clip_06,Beckett observes the Santa's actions closely 12714,At Leonard's apartment.,At Raj's office,At the People Magazine Reception. .,At the Cheese Cake Factory,In the school cafeteria. ,3,Where is Penny when she says that it's huge that Raj is in People Magazine?,134753,The Big Bang Theory,2.44-7.02,s02e04_seg02_clip_07,At the Cheese Cake Factory 12715,Ross says that they agreed it would end in a month. ,Ross says they agreed it would never end. ,Ross says that they agreed it would end after one week. ,Ross says they agreed it would be a two-week thing. ,Ross says that they agreed it would end in a year. ,3,What was the time frame that Ross says he and his ex-girlfriend had agreed upon for their relationship to last before they broke up?,134754,Friends,30.7-41.56,friends_s04e16_seg02_clip_19,Ross says they agreed it would be a two-week thing. 12716,A light with a small cage around it.,A coat rack.,A safety poster.,A telephone.,A painting.,3,What object is on the wall between Beckett and Jason when they were talking about Barbra?,134755,Castle,0-3.98,castle_s04e18_seg02_clip_18,A telephone. 12717,She took a picture with her phone.,She opened the door.,She entered a car.,She sat down on a chair.,She took some pills.,0,What did Beckett do before she said something about finding a slug?,134756,Castle,26.39-35.78,castle_s07e10_seg02_clip_17,She took a picture with her phone. 12718,Staning near the restroom.,Sitting in a chair.,Lying on a couch.,Standing near Beckett and Castle.,Sitting near the window.,3,Where was Esposito when he said he just got off the phone with Amber's father?,134757,Castle,0-3.15,castle_s03e23_seg02_clip_13,Standing near Beckett and Castle. 12719,Ryan said Esposito was busy so Beckett got the visitor logs.,Ryan said Esposito keeps forgetting but he'll remind him.,Ryan said Esposito got the logs and has been going through the names.,Ryan said Esposito was trying to get them as they were speaking.,Ryan said Esposito was trying but the power outage is slowing everything down.,4,How did Ryan reply when Castle asked if Esposito had gotten the visitor logs yet?,134758,Castle,46.66-49.8,castle_s08e21_seg02_clip_07,Ryan said Esposito was trying but the power outage is slowing everything down. 12720,it was white,it was blue,it was green,it was red,there was no pole,2,What color was the odd looking pole behind Chandler when he was sitting on the sofa?,134759,Friends,6.91-16.33,friends_s03e15_seg02_clip_06,it was green 12721,Seven,Three,One,Eleven,Twelve,4,What number was on the evidence marker when Beckett walked into the room.,134760,Castle,0-4.46,castle_s01e09_seg02_clip_01,Twelve 12722,Homocide,Drunk and Disorderly,Drugs,Receiving stolen property,Flying to close to the sun,1,Why was Douglas Bishop arrested 10 years before he was killed?,134761,Castle,35.23-37.94,castle_s02e14_seg02_clip_03,Drunk and Disorderly 12723,Massaging Monica's back.,Massaging Monica's feet.,Massaging Monica's shoulders.,Massaging Monica's thighs.,Massaging Monica's neck.,0,What was Phoebe doing when she told Monica to say her name?,134762,Friends,39.34-43.47,friends_s08e14_seg02_clip_20,Massaging Monica's back. 12724,Looking for flashlights,Looking for the Superintendent ,Looking for the cat,Looking for Paolo,Looking for the dog,2,Where was Phoebe before she came into the apartment?,134763,Friends,53.12-59.03,friends_s01e07_seg02_clip_16,Looking for the cat 12725,"""Suprirse""","""Thirsty Leonard?""","""Are you hot Leonard?""","""Cool off""","""Bad Leonard""",4,What did Sheldon say before he sprayed Leonard with water?,134764,The Big Bang Theory,0-4.18,s03e03_seg02_clip_08,"""Bad Leonard""" 12726,apple ,an orange ,strawberries ,grapes ,banana ,1,Which piece of fruit does Joey grab from the basket after he enters Monica and Chandler's apartment? ,134765,Friends,46.69-50.35,friends_s06e03_seg02_clip_01,an orange 12727,Marshall.,Lily.,Abby.,Ted.,Robin.,2,Who is sleeping with Barney when he woke up?,134766,How I Met You Mother,0-45.02,met_s03e19_seg02_clip_02,Abby. 12728,If he ever gets another unwanted tattoo.,She wants him to meet her daughter.,So he can pay her for the appointment.,She is taking him out on the town.,She needs his address.,0,Why does Stella tell Ted to give her a call before leaving?,134767,How I Met You Mother,44.72-60.03,met_s03e13_seg02_clip_13,If he ever gets another unwanted tattoo. 12729,"""As beautiful and moving as this ceremony is, this is not legal.""","""All right, Joey, that is enough!""","""They're Adults""","""They can make their own decisions""","""The groom only has one shoe.""",0,What did Rachel say to Joey after she took him aside?,134768,Friends,31.28-38.07,friends_s08e10_seg02_clip_13,"""As beautiful and moving as this ceremony is, this is not legal.""" 12730,Drops it on the floor.,Sets it on the coffee table.,Sets it on the kitchen counter.,Give it to Raj.,Take the contents out and throw the bag away.,1,What does Sheldon do with the bag he was carrying before he sits down?,134769,The Big Bang Theory,0-7.69,s03e18_seg02_clip_04,Sets it on the coffee table. 12731,He was watching TV. ,He was standing up.,He was handing out food.,He was eating his dinner.,He was drinking some wine.,4,What was the man in the brown suit doing when Phobe was singing?,134770,Friends,13.82-17.2,friends_s09e07_seg02_clip_15,He was drinking some wine. 12732,Eating.,Watching the TV.,Drinking.,Going down the road.,Cooking.,1,"What were Leonard, Shelton, Raj, & Howard doing when the video was coming to an end?",134771,The Big Bang Theory,44.21-50.96,s07e04_seg02_clip_17,Watching the TV. 12733,Stuart is standing to the left of Lily.,Robin is standing to the left of Lily.,Barney is standing to the left of Lily.,Marshall is standing to the left of Lily.,Jorge is standing to the left of Lily.,3,Who is standing to the left of Lily when Lily is watching Robin's music video?,134772,How I Met You Mother,0-4.79,met_s02e09_seg02_clip_18,Marshall is standing to the left of Lily. 12734,"Monica's ""nice"" cookware","Monica isn't sure, it's always been locked",Rachel's things that she has borrowed,private things like feminine stuff,Ross' fossil collection,3,What does Monica say is in the closet after Chandler discovers it's locked?,134773,Friends,32.57-45.59,friends_s08e14_seg02_clip_02,private things like feminine stuff 12735,her boss,Howard,Amy,Priya,her dad,3,"Who is does Bernadette say she is angy with after Amy says ""I'm drunk""?",134774,The Big Bang Theory,14.59-20.49,s04e19_seg02_clip_03,Priya 12736,Tables,Chairs,Couches,Refrigerators,Food,1,What are Chandler and Joey looking for when shopping?,134775,Friends,0.57-9.41,friends_s01e12_seg02_clip_11,Chairs 12737,Addison's disease.,Cystic kidney disease.,Chronic kidney disease.,Glomerulonephritis.,Diabetes insipidus.,0,What disease does House identify after Chase talks about the kidneys and adrenal glands?,134776,House M.D.,28.57-31.3,house_s01e12_seg02_clip_07,Addison's disease. 12738,There is a suspicious mole on her right leg,It is misaligned with her hips,It is two inches shorter than her left,She twisted her ankle while waiting tables,Her knee is too small,2,What does Rachel say is wrong with her right leg when she is talking about her chiropractor? ,134777,Friends,0-16.29,friends_s03e07_seg02_clip_18,It is two inches shorter than her left 12739,Went to the coffee shop,Sat on the couch,Went to her bedroom,Left the apartment,Went to bathroom,3,What did Rachel do after speaking with Phoebe,134778,Friends,46.58-67.02,friends_s07e15_seg02_clip_08,Left the apartment 12740,Joey hates crab cakes. ,He was supposed to go to Joey as soon as they were ready. ,Joey is embarrassed they are being served. ,Joey wants to get some for Monica. ,Joey wants to get some for Rachel. ,1,Why is Joey upset when he sees the waiter with more crab cakes?,134779,Friends,52.79-61.03,friends_s07e14_seg02_clip_12,He was supposed to go to Joey as soon as they were ready. 12741,Bernadette agrees to take Howard's mom to the grocery store. ,Bernadette agrees to take Howard's mom dress shopping. ,Bernadette agrees to take Howard's mom to the doctor. ,Bernadette agrees to take Howard's mom to the dentist. ,Bernadette agrees to take Howard's mom to pick up her pills. ,1,What did Bernadette agree to do when Howard's mom asked?,134780,The Big Bang Theory,22.43-35.12,s05e21_seg02_clip_10,Bernadette agrees to take Howard's mom dress shopping. 12742,A book ,A pen,A bag,A stethoscope,A jacket,2,What did Wilson had in his had when he came into the room to talk to House.,134781,House M.D.,5.52-14.26,house_s03e08_seg02_clip_06,A bag 12743,He thinks his employees are colluding with Vogel to get him fired,They are flirting and he wants to drive a wedge between them,"He is running another ""House"" game where each doctor is not supposed to share information ",They are putting themselves before the patient,He is upset that they questioned his theory about the patient's condition ,3,What does House scold his doctors for after they left the office with his treatment instructions?,134782,House M.D.,57-72.67,house_s01e16_seg02_clip_14,They are putting themselves before the patient 12744,He grabs the folder,He starts laughing,He points to them in the other room,He makes a phone call,He eats his lunch,2,What does Ryan do after mentioning Scott and Linda Weinberg?,134783,Castle,85.12-92.03,castle_s08e09_seg02_clip_09,He points to them in the other room 12745,five,four,threesome ,six ,seven,2,how many thing did Ross ask when Ross told with Janine ?,134784,Friends,4.68-55.02,friends_s06e15-16_seg02_clip_20,threesome 12746,Raj said that Penny didn't mention Leonard.,Raj said that Penny was very happy. ,Raj said that Penny was very mad at Leonard.,Raj said that Penny was only mad at Howard.,Raj said that Penny was upset because Penny's sister shot somebody.,4,Why did Raj say that Penny was upset after Leonard asked?,134785,The Big Bang Theory,46.83-55.84,s01e02_seg02_clip_12,Raj said that Penny was upset because Penny's sister shot somebody. 12747,Zach broke up with Mandy because she was calling him mean names.,Zach broke up with Mandy because he saw the picture of her cheating on him.,Zach broke up with Mandy because she had been stealing from him.,Zach broke up with Mandy because he had realized he was not interested in women.,Zach broke up with Mandy because Mandy was too poor for his taste.,1,Why did Zach break up with Mandy before she died?,134786,Castle,5.85-35.56,castle_s06e13_seg02_clip_03,Zach broke up with Mandy because he saw the picture of her cheating on him. 12748,The child was kidnapped by a mentally ill woman who was infertile.,The child was kidnapped to be sold to child sex traffickers.,The child was from a wealthy family and was being held for ransom.,The child was kidnapped for no apparent reason.,The child was kidnapped by religious people for a ceremonial child sacrifice.,2,Why was the child kidnapped before Beckett began working on the case?,134787,Castle,73.92-86.62,castle_s01e09_seg02_clip_05,The child was from a wealthy family and was being held for ransom. 12749,That the man checked into the penthouse suite.,That the man is a nut bar.,That the man drove a domestic car.,Benny does not remember ever meeting this man.,That the man went to the motel on a Saturday.,1,What does Benny tell Beckett after Beckett shows him a picture of a man?,134788,Castle,76.26-90.79,castle_s02e23_seg02_clip_19,That the man is a nut bar. 12750,They are going to tell him the witness i'd him because he denies being at the garage.,They are going to tell him there is video camera footage and a witness because he denies being at garage.,They are going to tell him nothing and hope he cracks because he denies being at the garage.,They are going to tell him his mother told them and a witness because he denies being at garage.,They are going to tell him they know just because he denies being at garage and a co-worker was there at the same time.,0,How does Beckett say she and Castle are going to catch Freddie when he is caught in a lie?,134789,Castle,12.58-19.33,castle_s08e05_seg02_clip_10,They are going to tell him the witness i'd him because he denies being at the garage. 12751,You lied.,You're not tan.,How could you.,You dog you.,I hate you Chandler.,1,What did Ross say after he opened the door? ,134790,Friends,61.97-68.97,friends_s10e03_seg02_clip_22,You're not tan. 12752,Beckett and Castle are looking through police personnel records.,Beckett and Castle are researching on the computer.,Beckett and Castle are watching the interrogation.,Beckett and Castle are writing on the whiteboard.,Beckett and Castle are ordering takeout for the team.,2,What are Beckett and Castle doing when Ryan and Esposito are questioning the bartender in the interrogation room?,134791,Castle,2.69-12.55,castle_s08e13_seg02_clip_12,Beckett and Castle are watching the interrogation. 12753,They are in a restaurant,They are sitting at a table in the cafeteria,They are sitting on a bench in front of the hospital,They are in the lab,They are in the hospital lobby,3,Where is Foreman when he ask Chase about being boring,134792,House M.D.,0-12.75,house_s05e05_seg02_clip_20,They are in the lab 12754,Sweeping the floor.,Adjusting the camera.,Talking to Erin.,Putting on make-up.,Changing his shirt.,1,What was Duncan doing when Joey entered the audition room?,134793,Friends,27.7-31.43,friends_s08e20_seg02_clip_14,Adjusting the camera. 12755,Barney is holding a napkin in his hand,Barney is holding a beer in his hand,Barney is holding a tissue in his hand,Barney is holding a mug in his hand,Barney is holding a Weinerburger in his hand,3,What is Barney holding in his hand after he starts talking about his father,134794,How I Met You Mother,9.89-19.78,met_s06e15_seg02_clip_14,Barney is holding a mug in his hand 12756,Thirteen's arm.,Thirteen's ankle.,Thirteen's chin.,Thirteen's hair.,Thirteen's foot.,0,What was Foreman holding when he said he breaks into houses of patients?,134795,House M.D.,6.44-12.88,house_s05e11_seg02_clip_02,Thirteen's arm. 12757,threw them away,saves them,taped them up,filed them,nothing ,0,What did House do with the pictures that he picked up after he left the children rec room?,134796,House M.D.,16.72-27.29,house_s08e14_seg02_clip_05,threw them away 12758,angry,confused.,scared.,happy.,distraught.,2,how is Chandler reacting when the chicken headed woman is questioning his love?,134797,Friends,0-10.39,friends_s07e21_seg02_clip_05,scared. 12759,Held her face in her hands,Put her hand under her chin,Moved closer to Earl,Sighed and threw her hands up,Started yelling at Earl,1,What did Kitty do after Earl started explaining when Chloe's boyfriend appeared?,134798,Castle,39.81-47.41,castle_s03e01_seg02_clip_19,Put her hand under her chin 12760,Because McCutchin can't do a lot of money in the vending machine business.,Because McCutchin gamble.,Because McCutchin is lazy.,Because McCutchin won the lottery.,Because McCutchin saves money.,0,Why said Castle McCutchin can't paid off his debt when talking to the detectives about the murder?,134799,Castle,75.55-88.29,castle_s03e01_seg02_clip_15,Because McCutchin can't do a lot of money in the vending machine business. 12761,Beckett doubt Marco is keeping is laundry in a locker out of the G.w. Bridge bus station,Beckett doubt Marco is keeping is laundry in a locker out of the T.d. Bridge bus station,Beckett doubt Marco is keeping is laundry in a locker out of the R.d. Bridge bus station,Beckett doubt Marco is keeping is laundry in a locker out of the F.d. Bridge bus station,Beckett doubt Marco is keeping is laundry in a locker out of the W.d. Bridge bus station,0,"What did Beckett say she doubt when talking to Ryan, and Esposito?",134800,Castle,0-8.2,castle_s08e13_seg02_clip_16,Beckett doubt Marco is keeping is laundry in a locker out of the G.w. Bridge bus station 12762,House is screwing with Foreman by planning to make Foreman responsible for a cholera outbreak.,House is screwing with Foreman by walking past the hospital pharmacy every hour.,House is screwing with Foreman by misdiagnosing every case.,House is screwing with Foreman by not screwing with him.,House is screwing with Foreman by forging alliances with the other doctors.,3,What strategy does Chase say House is using to screw with Foreman before Foreman wonders aloud how he didn't see that? ,134801,House M.D.,61.19-78.1,house_s08e05_seg02_clip_25,House is screwing with Foreman by not screwing with him. 12763,Ross hugged Rachel.,Ross walked out of the room.,Ross drank some water.,Ross wished Rachel goodnight and kissed her on the forehead.,Ross was not with Rachel.,3,What did Ross do immediately after he told Rachel that she needed to get some rest?,134802,Friends,2.92-8.47,friends_s10e13_seg02_clip_09,Ross wished Rachel goodnight and kissed her on the forehead. 12764,Standing by the window.,Sitting on a sofa.,Standing in the hall.,Sitting on the patient table.,Laying in a patient bed.,3,Where was Mandy when house mentioned the scratches on her hands?,134803,House M.D.,0-6.69,house_s02e04_seg02_clip_05,Sitting on the patient table. 12765,Three hours,Two hours,One hour,Half hour,One hour and half,3,How long was Simmons tortured for before eventually dying?,134804,Castle,60.54-65.88,castle_s06e22_seg02_clip_07,Half hour 12766,He took a sip of coffee.,He wrote it down,He left the room.,He sat down.,He looked out the window.,3,What did Castle do when the suspect admitted to having sex?,134805,Castle,16.58-25.08,castle_s01e02_seg02_clip_19,He sat down. 12767,Kissing,Eating from a bowl of popcorn,Reading a book,Toasting with wine glasses,Popping a cork on a bottle of champagne,1,What were Ted and Robin doing when Marshall came in the living room with a shampoo bottle?,134806,How I Met You Mother,30.7-36.91,met_s02e01_seg02_clip_02,Eating from a bowl of popcorn 12768,Monica,Joey,Chandler,Rachel,Sarah,3,Who comes running into the living room when wearing a towel?,134807,Friends,0-8.99,friends_s03e12_seg01_clip_00,Rachel 12769,To his rear over his left shoulder.,To his rear over his right shoulder.,Behind Beckett over her right shouler,Directly behind him.,Behind Beckett over her left shoulder.,1,Where was the fireplace when Castle told Beckett to beat the pants off of him?,134808,Castle,11.88-14.73,castle_s05e22_seg02_clip_08,To his rear over his right shoulder. 12770,"Go ahead, eat up, eat up",This is the best burger in New York,Lets go somewhere else,This is it,I just want to eat,0,"What does Marshall tell everyone to do after he says ""This is it""?",134809,How I Met You Mother,0-7.83,met_s04e02_seg02_clip_17,"Go ahead, eat up, eat up" 12771,Castles says at least 300 people had access to the photos.,Castles says at most 300 people had access to the photos.,Castles says as many as 300 people had access to the photos.,Castles says only 300 people had access to the photos.,Castles says a little more than 300 people had access to the photos.,0,How many people does Castle say had access to the photos when talking to Beckett?,134810,Castle,20.71-24.31,castle_s01e03_seg02_clip_16,Castles says at least 300 people had access to the photos. 12772,He gave a high-five to Ross.,He read an article from a newspaper.,He was on the telephone.,He hugged Rachel.,He was making chocolate milk.,4,"What was Chandler doing after he said, ""Yeah, Baby!""?",134811,Friends,54.01-58.59,friends_s03e13_seg02_clip_00,He was making chocolate milk. 12773,He showed Amy a basketball from where he intended a Chicago Bulls game.,Sheldon showed Amy a golf ball he kept after his brother threw it at him as a kid.,He showed Amy a ping pong ball.,Amy showed Sheldon her Apron from home economics class in high school.,He showed her a tennis racket.,1,What piece of sporting equipment did Sheldon show Amy when he was showing her his storage things?,134812,The Big Bang Theory,0-42.61,s09e19_seg02_clip_12,Sheldon showed Amy a golf ball he kept after his brother threw it at him as a kid. 12774,Her purse,Another book,A coffee cup,Her phone,A case file,2,What does Beckett have in her hand when she walks up to Castle and Ryan?,134813,Castle,29.62-33,castle_s08e17_seg02_clip_07,A coffee cup 12775,Going to bed,Giving up,Trying again,Practicing driving more until he gets it rigtht,Sheldon says he is transcending the situation,4,What does Sheldon say he is doing when Howard accuses him of giving up?,134814,The Big Bang Theory,36.01-45.96,s02e05_seg02_clip_13,Sheldon says he is transcending the situation 12776,"Amy taught Ricky how to smoke, so teaching him to throw a dart would not be too hard.",Amy saw Ricky shoot a dart before without any help.,Amy thought Ricky was a fast learner.,Amy thought Ricky could do just about anything.,Amy read a book on dart shooting.,0,Why did Amy think she could train Ricky how to shoot a dart when she pointed towards him?,134815,The Big Bang Theory,2.46-5.23,s04e21_seg02_clip_13,"Amy taught Ricky how to smoke, so teaching him to throw a dart would not be too hard." 12777,Mason tells Beckett Castle was killed by blunt force trauma and thrown in the river,Mason tells Beckett Castle is being killed by lethal injection as they speak,Mason tells Beckett Castle has been killed when a car he was in ran off a cliff,Mason tells Beckett Castle is in another room watching this scenario unfold,Mason tells Beckett Castle is in the furnace,4,Where does Mason tell Beckett that Castle is when the two of them are in the room together?,134816,Castle,30.01-38.32,castle_s08e22_seg02_clip_24,Mason tells Beckett Castle is in the furnace 12778,To the hospital.,The gas station.,The kitchen.,The little boy's room.,No where.,3,Where does Wilson say he is going when House sees him?,134817,House M.D.,27.77-44.15,house_s08e19_seg02_clip_20,The little boy's room. 12779,Calls her a Judas,Say's shes a Benedict Arnold ,Calls her a brute breast ,Calls her a peddling pony,Calls her a lost cause ,0,How does Ryan refer to Beckett in after Castle wants to give her coffee?,134818,Castle,38.58-43.57,castle_s06e03_seg02_clip_07,Calls her a Judas 12780,An interpreter,Sign language,A letter,Over the phone,In person,3,How does Rachel communicate with her father when she tells him she can't get married?,134819,Friends,44.22-57.88,friends_s01e01_seg02_clip_05,Over the phone 12781,The roommate said Patrick does not party,The roommate said Don does not party,The roommate said Darren does not party,The roommate said Dean does not party,The roommate said Derrick does not party,4,Who did the roommate say does not party when Taub is in the room?,134820,House M.D.,73.89-79.68,house_s08e21_seg02_clip_02,The roommate said Derrick does not party 12782,her sofa,a priceless rug,her television,her bedspread,beckets wedding dress,4,what item of beckets was damaged when lanie went to go pick it up from beckets apartment?,134821,Castle,21.86-31.83,castle_s06e23_seg02_clip_15,beckets wedding dress 12783,House found the costume in his car trunk.,House found the costume at a store.,House found the costume in his closet.,House found the costume in Wilson's bag.,House found the costume in his garage.,3,Where did House find the costume he was wearing when he was searching for something to wear?,134822,House M.D.,73.95-75.74,house_s06e06_seg02_clip_09,House found the costume in Wilson's bag. 12784,About the girl from the copy shop.,About how Ross acted at a bacholor party.,About what Ross got Rachel for her birthday.,About how awkward Ross was in highschool.,About Ross getting a parking ticket.,0,What does Joey not want Gunther to tell Rachel about when he runs up to the counter?,134823,Friends,25.63-36.31,friends_s03e16_seg02_clip_07,About the girl from the copy shop. 12785,Cheeseburgers,Napkins,Chopsticks,Condiments,Laptops,3,What are the guys playing with when Penny walks to the table?,134824,The Big Bang Theory,26.68-32.57,s01e05_seg01_clip_00,Condiments 12786,A party hat.,A Daniel boon cap.,A Pirate scarf.,A cowboy hat.,A baseball cap.,0,What was on Barney's head when his mother tols him the mail was mixed up?,134825,How I Met You Mother,29.77-35.22,met_s06e02_seg02_clip_17,A party hat. 12787,Amy says that a fresh corpse can smile. ,Amy says that a fresh corpse sometimes will sit up.,Amy says that a fresh corpse sometimes will vomit.,Amy says that a fresh corpse may talk. ,Amy says that if the corpse is fresh enough sometimes the leg will jerk. ,4,What does Amy say happens to a fresh corpse after the Sheldon turns down her suggeston to go to the cadaver lab?,134826,The Big Bang Theory,11.27-24.61,s06e04_seg02_clip_10,Amy says that if the corpse is fresh enough sometimes the leg will jerk. 12788,The victim was in an concert.,The victim was from the Lincoln Park band.,The victim went was known by Private School on Park Avenue.,The victim was an auto mechanic.,The victim was at an party.,2,What information was mentioned by Castle before Beckett began investigation?,134827,Castle,0-10.19,castle_s01e04_seg02_clip_01,The victim went was known by Private School on Park Avenue. 12789,In the bathroom.,Sitting in the living room.,Standing in the kitchen.,Standing in the hall.,Sitting on the floor.,2,"Where was Joey when Chandler said ""you dove in front of Ross""?",134828,Friends,6.2-12.41,friends_s05e20_seg02_clip_13,Standing in the kitchen. 12790,Sean,James,Jacob,Taub,Jimmy,3,"Who was house talking to when he said ""You think it's kill her if we spent 15 seconds mocking you?""",134829,House M.D.,32.31-38.23,house_s06e18_seg02_clip_22,Taub 12791,A puppet show.,The video game.,The T.V.,A picture.,The computer.,2,What were Esposito and Ryan looking at when Esposito mentioned Reggie?,134830,Castle,0-9,castle_s05e02_seg02_clip_26,The T.V. 12792,A computer screen. ,A lake.,A park.,His phone.,His lunch.,0,What was Foreman looking at when he said he didn't expect House to beg him stay?,134831,House M.D.,0-9.89,house_s03e22_seg02_clip_11,A computer screen. 12793,To Carol.,To Rachel.,To Katie.,To his Mom.,To get them in some water.,4,Where did Ross say he was going to take the flowers before he leaves Monica's apartment?,134832,Friends,8.4-14,friends_s08e02_seg02_clip_18,To get them in some water. 12794,A jail cell.,The coffee pot.,Beckett's computer to look at pictures.,A hot dog stand.,The case board with photos.,4,What object are Beckett and Castle standing in front of when they are talking about Suzanne?,134833,Castle,81.8-88.44,castle_s04e18_seg02_clip_18,The case board with photos. 12795,Sully,Sammy,Susan ,Suspect,Arron ,0,Who is the man going to pick up before he says it is not because he was asked to?,134834,Castle,0-7.28,castle_s06e04_seg02_clip_19,Sully 12796,Eraser,GI Joe,Coffee,Computers,iPod touch,0,What does Raj hold above his head when he argues with Sheldon,134835,The Big Bang Theory,15.61-60.02,s03e04_seg02_clip_16,Eraser 12797,His near empty supply of Vicodin ,Gabe being slow,The lousy traffic,Wilson kicking his seat,His injured leg,0,What does House complain about after Gabe tells him he's thinking of a question?,134836,House M.D.,0-15.03,house_s03e07_seg02_clip_11,His near empty supply of Vicodin 12798,Joey kisses the girl,Joey tips the waiter,Joey has a fan sign an autograph,Joey has a fan send a bottle of wine to the table,Joey dances,3,What does joey do to get girls to like him when he takes them on dates? ,134837,Friends,47.15-49.87,friends_s08e12_seg02_clip_06,Joey has a fan send a bottle of wine to the table 12799,To limit contagion ,It is easier to break the news,Insurance all goes to the hospital ,No risk when letting him die,No one cares when he is gone,1,Why does House say it is good that the patient has no family after being in the hospital? ,134838,House M.D.,28.67-49.48,house_s01e21_seg02_clip_11,It is easier to break the news 12800,Sheldon tells her to.wave it.,She's trying to annoy Sheldon.,She is trying to catch the attention of a viewer.,"She's ""Surrendering to fun.""",There's no reason.,3,"Why does Amy wave a white flag when making the ""Fun with Flags"" video with Sheldon?",134839,The Big Bang Theory,12.09-20.47,s05e14_seg01_clip_01,"She's ""Surrendering to fun.""" 12801,A thrift store.,The Goodwill.,The Salvation Army.,Off the rack.,From her grandmother.,3,Where did Rachel say Monica could get her dress after she told her she didn't need the empire-waisted duchess satin gown?,134840,Friends,55.28-62.76,friends_s07e02_seg02_clip_12,Off the rack. 12802,Security cameras and bank drives,Security lines and alarms,Safe deposit box alarms,Tripwire,Vault alarms,0,What does a suspect mentioned to his colleagues is destroyed when they are trying to exit?,134841,Castle,48.24-59.17,castle_s04e07_seg02_clip_02,Security cameras and bank drives 12803,A giant squid.,A smiley face.,A photo of a woman.,A gun.,A blank page.,2,What can be seen on the front of the report when Beckett is reading it?,134842,Castle,10.3-15.68,castle_s01e05_seg02_clip_04,A photo of a woman. 12804,the left side,the middle,the right side,the whole bed,not on the bed,2,What side is of the bed is Sheldon on when talking to Amy?,134843,The Big Bang Theory,0-12.06,s10e04_seg02_clip_09,the right side 12805,Because the change she gave was wrong,Because the woman said she didn't seem Canadian.,Because Barney interrupted her.,Because the woman said she was Canadian.,Because Barney said Robin was American.,1,Why was Robin angry after talking to the Woman?,134844,How I Met You Mother,0-9.34,met_s05e05_seg02_clip_12,Because the woman said she didn't seem Canadian. 12806,A tank top,A janitor jump suit.,A flannel shirt,A tuxedo,A plain grey shirt.,3,What was Mr. Treeger wearing when he was with Joey.,134845,Friends,8.42-12.39,friends_s04e04_seg02_clip_18,A tuxedo 12807,Raj.,Sheldon.,Howard.,Leonard.,Mrs. Wolowitz.,3,Who was sitting in the chair when the guys were at Howard's house?,134846,The Big Bang Theory,17.39-22.88,s04e19_seg02_clip_09,Leonard. 12808,robe,bathing suit,monkey mask,cape,football helmet,2,What is Leonard wearing at the movie theater when he is talking to Penny?,134847,The Big Bang Theory,3.1-12.72,s01e11_seg02_clip_09,monkey mask 12809,Francis,Douglas,Beckett,Castle,Montgomery,4,Who booted Castle off the Raglan murder according to Castle when he's speaking to Beckett,134848,Castle,0-37.58,castle_s03e13_seg02_clip_11,Montgomery 12810,A stethoscope.,A soccer ball.,A board game.,A dinosaur.,A newspaper.,4,What is Ross holding when he said something about a threesome thing?,134849,Friends,3.3-6.05,friends_s06e15-16_seg02_clip_20,A newspaper. 12811,He catches on fire,He falls through the floor,He passes out,He throws water on himself,He trips and falls,1,What happens to House when walking across the floor in a burning building?,134850,House M.D.,55.79-65.5,house_s08e22_seg02_clip_11,He falls through the floor 12812,Mold.,A litter box.,Smoke.,Skunk.,Sewage.,0,What did Taub think the smell was when he and Park were investigating the house?,134851,House M.D.,8.22-31.5,house_s08e18_seg02_clip_03,Mold. 12813,4,1,3,5,2,4,How many crab cakes did Joey take from the server before the server walks away?,134852,Friends,53.7-59.2,friends_s07e14_seg02_clip_12,2 12814,hugs Monica,cries,leaves the room,kisses Phoebe on the head,slaps Joey ,2,what does Rachel do when Joey tells her they can't go to her event? ,134853,Friends,10.62-18.59,friends_s03e17_seg02_clip_01,leaves the room 12815,He tries to sneak out of the room,He tries to pick her up and carry Janice off the bed,He tries to roll Janice over to her side of the bed,He tries to kiss Janice,He tries to move but can't,2,What does Chandler try to do when he's in bed with Janice?,134854,Friends,46.47-55.6,friends_s03e03_seg02_clip_10,He tries to roll Janice over to her side of the bed 12816,The baby is crying. ,Rachel isn't wearing the ring. ,Rachel is pretending to wear a ring. ,Rachel is wearing the ring. ,Rachel is crying. ,3,Why is Ross upset when he is with Rachel and their new baby?,134855,Friends,0-5.85,friends_s09e01_seg02_clip_21,Rachel is wearing the ring. 12817,Howard shows him a picture of a woman. ,Howard shows him a press release from NASA. ,Howard shows him a picture of what his mom made for him for dinner. ,Howard shows him an email he received from Bernadette. ,Howard shows him a picture of an ant eating a leaf. ,1,What does Howard show Raj on his phone when they are eating lunch?,134856,The Big Bang Theory,4.66-6.83,s05e15_seg02_clip_00,Howard shows him a press release from NASA. 12818,Because his problem is usually caused by overuse of ED drugs,Because he looks like he is on drugs,Because Meredith told Bailey that she found an empty pill bottle in Steve's coat,Because she saw him take something,Because he has a habit of taking pills and denying it,0,Why does Bailey think that Steve took something before Meredith brought him into the ER?,134857,Grey's Anatomy,58.14-63.26,grey_s02e10_seg02_clip_01,Because his problem is usually caused by overuse of ED drugs 12819,Ross,Chandler,someone else,Richard,the barista,1,Who does Chandler think is Monica's soul mate when talking about perfect matches?,134858,Friends,49.3-64.03,friends_s08e16_seg02_clip_00,Chandler 12820,Janitor,His cellmate.,Adams,A guard.,Foreman,3,Who opened the door for House when he was entering the office?,134859,House M.D.,32.65-38.21,house_s08e01_seg02_clip_15,A guard. 12821,"Olivia told Park and Adams to get out, she wasn't discussing it.",Olivia was angry and said she never have told them to go there.,Olivia turned to her husband and voiced her anger at his mother being there.,Olivia sat back and appeared to be resigned to the truth of what Park and Adams said.,Olivia was confused and looked to her husband for an explanation.,4,How did Olivia react after she realized that Park and Adams had the right house?,134860,House M.D.,11.48-18.38,house_s08e08_seg02_clip_05,Olivia was confused and looked to her husband for an explanation. 12822,He's got terrible seats,He's going to heaven,He's going to Tahiti,He got incredible seats,He's got decent seats,3,What does House mean when he says he has two all access passes to paradise?,134861,House M.D.,0-10.89,house_s01e12_seg02_clip_11,He got incredible seats 12823,Monica kisses Chandler.,Monica cries.,Monica hugs Ross.,Monica hugs Rachel.,Monica stares at her mother.,4,What does Monica do after he mother mentions someone who is critical of everything you say?,134862,Friends,5.12-10.24,friends_s01e08_seg02_clip_18,Monica stares at her mother. 12824,Barney.,Stella.,Cobie.,Lily.,Dan.,3,Who is Ted sitting with when Marshall calls?,134863,How I Met You Mother,5.27-16.13,met_s03e15_seg02_clip_07,Lily. 12825,Steps to become a better person,To resolve the drug addiction,To fall in love with someone,Brainwashing therapy,To find Andre the Giant,1,Why was House taking about steps when he was with the group?,134864,House M.D.,0-31.69,house_s03e11_seg02_clip_08,To resolve the drug addiction 12826,Bracken places his hand on a tv.,Bracken places his hand on a gun.,Bracken places his hand on a knife.,Bracken places his hand on a book.,Bracken places his hand on Beckett's face.,4,Where does Bracken place his hand before Beckett tells Bracken that the truth will come out?,134865,Castle,15.69-26.45,castle_s06e22_seg02_clip_18,Bracken places his hand on Beckett's face. 12827,Because Cristina was sick.,Because Cristina was in a hurry.,Because Cristina was tired.,Because Cristina was texting.,Because Cristina was watching a movie.,2,Why Cristina did a mistake when treating a patient?,134866,Grey's Anatomy,0.91-4.56,grey_s02e24_seg02_clip_07,Because Cristina was tired. 12828,His stomach has been bothering him.,He and Lily have a couple's hike in the morning.,He's trying to lay off booze.,He's on a diet.,He doesn't want Lily to know he's been drinking.,1,Why does Marshall say he can only get light beer before leaving with Ted?,134867,How I Met You Mother,42.32-51.62,met_s05e05_seg02_clip_08,He and Lily have a couple's hike in the morning. 12829,irritated,love,bored,upset,gloomy,1,How did Barney feel about Nora when he spoke to Robin?,134868,How I Met You Mother,17.02-36.56,met_s06e16_seg02_clip_14,love 12830,Shoes,Corsets. ,Guns,Survilliance,Groceries. ,1,"What was Castle checking on the screen when he asked Harley ""Back or front clasps.""",134869,Castle,0-7.48,castle_s08e18_seg02_clip_12,Corsets. 12831,bought a house,gone shopping,bought a car,fuse skeleton with adamantium,bought a horse,3,What would Sheldon have done with the money when there was a time to spend it on expensive things?,134870,The Big Bang Theory,25.61-38.09,s02e14_seg02_clip_02,fuse skeleton with adamantium 12832,The fellow actor had a nervous breakdown.,The fellow actor wanted to date Monica.,The fellow actor wanted to date Joey.,The fellow actor was told to leave.,The fellow actor got the job.,4,How did the fellow actor fare after Joey told him to play the character homosexually?,134871,Friends,34.58-42.58,friends_s03e07_seg02_clip_19,The fellow actor got the job. 12833,Drink soda,Nothing,Using computer,He was making coffee,Drink water,3,What was Mark Fallon doing when he was talking to Beckett?,134872,Castle,5.22-8.71,castle_s03e17_seg02_clip_18,He was making coffee 12834,Spend it all on designer clothes,Move it out of the country,Buy weapons,Invest in a shady corporation,Donate to charity,1,What were the kidnapper's planning to do with the money after they collected their winnings?,134873,Castle,42.33-51.88,castle_s06e10_seg02_clip_23,Move it out of the country 12835,drink wine,eat a breadstick,Drink water,drink a beer,Order food,2,What does joey do after telling rachel to take her time with reacting to what he just told her?,134874,Friends,52.22-58.03,friends_s08e16_seg02_clip_16,Drink water 12836,A bed pan,A pair of shoes,A book,A tray,A bottle of water,2,What did Izzy move from the chair before sitting down beside Cristina?,134875,Grey's Anatomy,10.01-20.48,grey_s03e06_seg02_clip_13,A book 12837,Phoebe,Rachel,Amy,Monica,Ross,1,Who takes the diaper bag from Chander after he broke the plates?,134876,Friends,27.55-32.81,friends_s09e08_seg02_clip_22,Rachel 12838,Sheldon said he collected pinecones as a kid.,Sheldon said he was saving them for a craft.,Sheldon said he didn't realize he had any pinecones.,Sheldon said he prefers pinecones over rocks.,Amy said she saves pinecones too.,0,Why did Sheldon tell Amy he saved a bin of pinecones after Amy found them?,134877,The Big Bang Theory,0-57.41,s09e19_seg02_clip_12,Sheldon said he collected pinecones as a kid. 12839,Hayley,Alexis,Castle,Esposito,Mia,0,What other person is in the room when Beckett is interrogating Freddy?,134878,Castle,25.93-30.69,castle_s08e05_seg02_clip_10,Hayley 12840,In a hospital lobby chair,On the steps ,On the lobby desk,On a copy machine,On a hospital bed ,1,Where did House sit when trying to determine the condition his patient is in?,134879,House M.D.,47.63-57.42,house_s05e21_seg02_clip_20,On the steps 12841,Castle.,Ryan.,Lanie.,Beckett.,Gates.,1,"Who was Esposito mimicking after Lanie told him, Castle and Ryan about the victim?",134880,Castle,6.44-16.56,castle_s08e07_seg02_clip_02,Ryan. 12842,smothered,weaker,out,fueled by an outside source ,bigger,4,How does the fire seem after House falls through the floor?,134881,House M.D.,70.83-97.03,house_s08e22_seg02_clip_11,bigger 12843,Ted fed a fish in the water.,Ted threw his fishing line in the sea.,Ted fell into the water.,Ted grab a fish from the water.,Ted pulled up an anchor,2,What happened to Ted when he was standing near the edge of the boat?,134882,How I Met You Mother,32.11-33.92,met_s06e11_seg02_clip_13,Ted fell into the water. 12844,Observing and taking notes.,Sweeping the floor.,Mopping up blood.,Collecting the soiled linen.,Preparing the bed for the patient.,4,What was the two nurse in the back of the room doing when the other two were cleaning the patients burns?,134883,House M.D.,0-4.5,house_s02e12_seg02_clip_01,Preparing the bed for the patient. 12845,She cried,She changed her seat,She yelled at him,She laughed at him,She slapped him,0,What did Lily do after the guy with multiple personalities started talking to her on the bus?,134884,How I Met You Mother,44.97-50.55,met_s02e02_seg02_clip_12,She cried 12846,They are in the stairwell,They are standing outside,They are operating on a patient,They are in the bath tub,They are at home in bed,1,Where are Christina and Burke when the tells her he just wants to know things,134885,Grey's Anatomy,14.34-20.69,grey_s02e13_seg02_clip_20,They are standing outside 12847,He says he hates her,He says for her to stay the night,He says for her to go home,He says Why didn't she tell him his father and her were getting a divorce,He says leave,3,What does Leonard say after his mother questions his relationship,134886,The Big Bang Theory,21.97-61.02,s03e11_seg02_clip_15,He says Why didn't she tell him his father and her were getting a divorce 12848,He is pouring wine. ,He is cutting cheese on the counter. ,He is eating crackers. ,He is arranging flowers. ,He is running water. ,1,What is Mike doing when Phoebe is sitting on the couch?,134887,Friends,5.04-7.25,friends_s09e12_seg02_clip_00,He is cutting cheese on the counter. 12849,His mom.,His dad.,His sister.,His brother.,His cousin.,1,Who walked away from Barney when he was a little boy?,134888,How I Met You Mother,5.67-11.64,met_s06e21_seg01_clip_01,His dad. 12850,they was fighting,they were flirting,they was makeing fun of him,they were walking to slow,they were ignoring him,1,Why did Sidney curtis get mad at House and Samira when they were walking down the hall to the elevator?,134889,House M.D.,33.51-38.3,house_s04e06_seg02_clip_22,they were flirting 12851,Caldwell confessed to killing the cop,Caldwell didn't confess,Caldwell confessed to knowing the cop ,Caldwell confessed to faking an alibi,Caldwell confessed to lying on the stand,2,What did Caldwell confess to after he saw Hayley shoot Castle?,134890,Castle,39.87-51.87,castle_s08e13_seg02_clip_21,Caldwell confessed to knowing the cop 12852,Ross will cheat on his wife with her,Ross will never find anyone,Ross will get a divorce,Ross will steal the baby,Rachel will find someone else too,2,What does Rachel say will happen if Ross finds someone else and marries her when Janice confronts her about this possibility?,134891,Friends,27.67-38.74,friends_s08e23-24_seg02_clip_40,Ross will get a divorce 12853,At her desk,At the kitchen table ,On the bench in the hospital lobby,At a bar,On the witness stand ,0,Where was Cuddy sitting when she was reading House's performance review,134892,House M.D.,0-4.57,house_s04e13_seg02_clip_06,At her desk 12854,Because Phoebe was so tall.,Because Phoebe was so pretty.,Because Phoebe had blonde hair.,Because Phoebe could sing so well.,Because Phoebe didn't look like her mother.,1,What was Frank Sr.'s reason when he said he couldn't believe Phoebe was his daughter?,134893,Friends,51.17-56.14,friends_s05e13_seg02_clip_17,Because Phoebe was so pretty. 12855,He promised them much glory.,He told them to look that way.,He gave them one hundred dollars.,He locked them out.,He said he said he would buy dinner.,3,What did House do to his team when he was trying to save the patient?,134894,House M.D.,74.06-89.23,house_s04e15_seg02_clip_16,He locked them out. 12856,Bailey looks downward.,Bailey hugs Meredith.,Bailey dances with Meredith.,Bailey hugs Ben.,Bailey dances with Ben.,0,What does Bailey do after Richard tells her to shake it off?,134895,Grey's Anatomy,45.06-48.7,grey_s03e12_seg02_clip_08,Bailey looks downward. 12857,Blue,Red,Black,White,Yellow,1,What is the color of Ross' sweater after he finds it on the table?,134896,Friends,24.81-30.41,friends_s08e02_seg02_clip_18,Red 12858,A black leather jacket ,A white blouse ,A plaid shirt ,A tuxedo ,A red T-shirt,0,What is Ross wearing when looking at the frame from Phoebe ,134897,Friends,23.57-27.6,friends_s02e09_seg02_clip_02,A black leather jacket 12859,computer,floor,x-ray,phone,folder,2,What was House looking at after Wilson started talking?,134898,House M.D.,13.34-18.41,house_s02e13_seg02_clip_19,x-ray 12860,He took a bite of candy.,He sipped his coffee.,He sat down.,He walked away.,He ate his doughnut. ,0,What did House do after he asked the doctor if he is free?,134899,House M.D.,0-9.79,house_s02e08_seg02_clip_15,He took a bite of candy. 12861,3 in the morning,2 in the morning,1 in the morning,Sometime in the middle of the night,5 in the morning,0,What time does Ross say it is when Rachel is calling people?,134900,Friends,52.79-61.03,friends_s09e03_seg02_clip_02,3 in the morning 12862,In the fireplace.,In an ashtray.,In the gutter.,On the floor.,In a person's glass.,3,Where did they lady throw her cigarette after she stopped dancing?,134901,How I Met You Mother,4.85-10.26,met_s02e19_seg01_clip_01,On the floor. 12863,She was wearing a sweater and jeans,Zoey was wearing a suit,She was wearing a shirt and a skirt,Zoey was wearing a black dress,Zoey was wearing a jeans and a dress shirt,3,What was Zoey wearing when she was on a date with Ted?,134902,How I Met You Mother,28.43-34.79,met_s06e11_seg02_clip_02,Zoey was wearing a black dress 12864,He starts eating. ,He takes a drink from the glass. ,He holds Rachel's hand. ,He gives her flowers. ,He smiles at her. ,1,What does Joey do when he is sitting at the table with Rachel at the restaurant?,134903,Friends,15.72-19.95,friends_s08e12_seg02_clip_06,He takes a drink from the glass. 12865,Phoebe,Ross ,Joey,Kevin,Chandler,4,Who made out with someone when in a bar in Atlantic City?,134904,Friends,6.9-18.61,friends_s07e04_seg02_clip_11,Chandler 12866,Penny says she loves Howard.,Penny says no.,Penny says yes.,Penny says Howard is gross.,Penny says Howard is handsome.,2,What is Penny's reply when Howard asks to leave a message?,134905,The Big Bang Theory,0-6.79,s05e22_seg02_clip_15,Penny says yes. 12867,Park used a otoscope.,Park used a ophthalmoscope.,Park used a blood pressure monitor.,Park used a thermometer.,Park used a stethoscope.,4,What medical tool did Park use when she checked Tommy's body?,134906,House M.D.,21.33-25.07,house_s08e08_seg02_clip_23,Park used a stethoscope. 12868,A folder.,A pen.,A coffee cup.,His cane.,His phone.,1,What does House hold when he discusses guilt with Wilson?,134907,House M.D.,60.09-67.21,house_s07e17_seg02_clip_12,A pen. 12869,They were sitting on the sofa.,They were sitting at the table.,Joey and Chandler were sitting at the counter.,They were sitting on the chair.,They were sitting in the street.,2,Where were Joey and Chandler sitting when they were eating?,134908,Friends,5.28-66.04,friends_s02e16_seg01_clip_00,Joey and Chandler were sitting at the counter. 12870,she was smoking,she was biting her nails,she was making noise with water,she was lying to him,she was chewing loudly,2,Why did House yell at the woman that was drinking water when he was asking her questions?,134909,House M.D.,58.54-88.02,house_s03e16_seg02_clip_10,she was making noise with water 12871,To Canada.,To America.,To him in the hospital.,To him at work late one night.,To a potluck at Marshall's mom's house.,1,"Where did Lily say she brought French cooking before Marshall asked ""What?""?",134910,How I Met You Mother,28.4-34.32,met_s06e21_seg02_clip_03,To America. 12872,Her organs aren't damaged enough.,She is a drug user.,She is not healthy enough.,She already had a heart transplant.,All her organs are damaged.,4,Why did Foreman say Amber is not a candidate for a heart transplant after Kutner asked about it?,134911,House M.D.,14.95-25.36,house_s04e16_seg02_clip_19,All her organs are damaged. 12873,Cuddy was going to paint her nails.,Cuddy was going to take a bubble bath.,Cuddy was going to have dinner.,Cuddy was going to watch her favorite television series.,Cuddy was going to go straight to bed.,2,What was Cuddy going to do when she was at home later tonight?,134912,House M.D.,46.82-49.42,house_s07e13_seg02_clip_26,Cuddy was going to have dinner. 12874,What kind of dog is that?,What's wrong with the dog?,Did you watch him take the pills?,Did the patient respond to the antibiotics or steroids?,What did we miss?,3,What was House asking Thirteen when when she checked on the dog?,134913,House M.D.,40.84-47.64,house_s04e03_seg02_clip_24,Did the patient respond to the antibiotics or steroids? 12875,DNA,Exam,Health,Exercise,Field Test ,1,Which results does Beckett say she has not got after arriving on a crime scene?,134914,Castle,75.09-91.57,castle_s07e23_seg02_clip_00,Exam 12876,Something special!,Something like love!,Something that makes them get married.,Something magical!,Something like one of his stories.,0,What does Castle say he thought they had when Beckett leaves?,134915,Castle,26.96-44.33,castle_s07e11_seg02_clip_17,Something special! 12877,You are Dr. of crazy people.,You are an idiot,You are Dr. of gums.,You are Dr. of nuts.,You are Dr. of kids.,2,Why said Ross to the man when sat next to him?,134916,Friends,0.99-4.95,friends_s02e10_seg02_clip_17,You are Dr. of gums. 12878,she is sitting across from Becekett and Castle,she is sitting next to Beckett,she is sitting next to Castle ,she is sitting on the floor ,he isn not in the same room as Beckett and Castle,0,Where is Cynthia sitting when she is with Beckett and Castle in the same room?,134917,Castle,0-6.44,castle_s04e03_seg02_clip_25,she is sitting across from Becekett and Castle 12879,Morgan had gone to find her Mom in the waiting room.,Morgan had gone to the nurse's station.,Morgan had just gone to look for House.,Morgan had just gone to the bathroom.,Morgan had just gotten back from the ICU.,3,Where had Morgan just gone before Thirteen walked in and asked her what was wrong?,134918,House M.D.,84.62-86.42,house_s05e18_seg02_clip_12,Morgan had just gone to the bathroom. 12880,Have you ate this morning?,Did you get my text message?,What happened?,When is the next time we will hang out?,How has your mom been lately?,2,What does Robin ask Marshall when he talks to him?,134919,How I Met You Mother,0-4.8,met_s02e01_seg02_clip_14,What happened? 12881,Sheldon's new adventure is called Sheldon Cooper presents Slide and Science,Sheldon's new adventure is called Sheldon Cooper presents Fun with Flags,Sheldon's new adventure is called Sheldon Cooper presents Hidden in your DNA,Sheldon's new adventure is called Sheldon Cooper presents Space in your Space,Sheldon's new adventure is called Sheldon Cooper presents Science is not a Horror,1,What is the name of Sheldon's new adventure after he tries to record ,134920,The Big Bang Theory,0-10.08,s06e07_seg01_clip_00,Sheldon's new adventure is called Sheldon Cooper presents Fun with Flags 12882,Three,One,Two,Four,Five,2,How many trumpeters were on stage after Jerry said he had just got hired at the Pennybaker?,134921,Castle,48.71-53.18,castle_s04e14_seg02_clip_18,Two 12883,He pointed at Beckett.,He pointed to a window.,He pointed to a dog walking past.,He pointed at his face.,He pointed at his shoues.,3,What did Castle point at when he spoke to Beckett about being there for her?,134922,Castle,0-27.41,castle_s04e22_seg02_clip_26,He pointed at his face. 12884,Why was school such a bad experience for you?,Do you know what it will be like having Meredith back in New York?,Why dont you find another job?,Why dont you find a girlfriend?,How much are you paid?,1,What is Martha's final question when talking to Castle?,134923,Castle,71.83-87.06,castle_s01e06_seg02_clip_11,Do you know what it will be like having Meredith back in New York? 12885,He is talking about his mom,He is talking about a car,He is talking about a cat,He is talking about having a tail,He is talking about work,3,What is Chandler talking about after Phoebe brings up a tail?,134924,Friends,16.78-22.89,friends_s04e02_seg02_clip_08,He is talking about having a tail 12886,Ross opens his eyes and has a look of chagrin. ,Ross cries.,Ross kisses Rachel.,Ross dances with Rachel.,Ross hugs Rachel.,0,What does Ross do after the Teacher mentions a flower?,134925,Friends,27.17-32.77,friends_s01e16-17_seg02_clip_08,Ross opens his eyes and has a look of chagrin. 12887,Rachel's jacket is blue.,Rachel's jacket is black.,Rachel's jacket is beige.,Rachel's jacket is green.,Rachel's jacket is yellow.,2,What color is Rachel's jacket when she is standing in line?,134926,Friends,0-3.88,friends_s01e24_seg02_clip_12,Rachel's jacket is beige. 12888,The stairs,A couch,A ladder,The coffee table,Her bed,3,What did Phobe climb on top of after Rachel and Monica started hitting one another?,134927,Friends,9.99-15.3,friends_s06e20_seg02_clip_14,The coffee table 12889,Mr. Burgin sets his groceries on the floor.,Mr. Burgin sets a lamp on the floor.,Mr. Burgin sets his shoes on the floor.,Mr. Burgin sets his dog on the floor.,Mr. Burgin sets his suitcase on the floor.,4,What does Mr. Burgin set on the floor after he enters the living room?,134928,Friends,31.58-35.82,friends_s04e18_seg02_clip_12,Mr. Burgin sets his suitcase on the floor. 12890,Robby walks in on Joey's back,Joey walks in holding hands with Bobby,Joey walks in with Bobby on his back,Joey walks in holding the back of Bobby's jacket,They both skip together into the apartment,3,How does Joey and Bobby walk into the apartment when Rachel is talking to Joey's sister?,134929,Friends,0-6.79,friends_s08e10_seg02_clip_13,Joey walks in holding the back of Bobby's jacket 12891,She says he should get a new job.,She says that he should date Rachel.,She says that he should get a pet.,She says he should have a child.,She says that Joey probably just wants someone to be close too.,4,What is Monica's response after Chandler's response to Joey's dream?,134930,Friends,47.52-58.73,friends_s05e16_seg02_clip_08,She says that Joey probably just wants someone to be close too. 12892,red,black,yellow,purple,blue,2,What color is the robe that the rabbi is wearing when Chandler meets him at the altar?,134931,Friends,19.73-26.69,friends_s07e23-24_seg02_clip_38,yellow 12893,they give him a hug,they go back to eating.,they give him their approval.,they leave the apartment.,they go back to watching tv. ,1,What does chandler and ross do after joey explains his plans?,134932,Friends,35.12-42.79,friends_s05e18_seg02_clip_10,they go back to eating. 12894,Sheldonians.,Sheldonvillians.,Sheldonknights.,Sheldonopolis.,Sheldonrays. ,3,What did call his city when he said he had to save his people?,134933,The Big Bang Theory,28.91-35.71,s03e18_seg02_clip_08,Sheldonopolis. 12895,In the bathroom.,Under the table.,Behind the door.,In the kitchen,In the closet.,2,Where was Joey's sister before she jumped out and cornered Chandler and kissed him?,134934,Friends,22.43-40.43,friends_s03e11_seg02_clip_15,Behind the door. 12896,He missed his taxi.,He had to go to court.,He had to go to work.,He lost his wallet.,He lost his passport.,1,Why did Ted say he was late for his flight when he was talking to the lady from the airline?,134935,How I Met You Mother,15.7-29.83,met_s02e15_seg02_clip_00,He had to go to court. 12897,Hammerhead invented it,Great White invented it,Sonia invented it,Jimmy Sanchez invented it,El Toro invented it,0,Who does Sonia say invented the Jello/perfume formula when Beckett interrogates her?,134936,Castle,8.6-16.74,castle_s08e16_seg02_clip_04,Hammerhead invented it 12898,Dr. Cooper.,Raj.,Penny.,Leonard.,Sheldon.,4,Who had and accident when Amy was doing an experiment?,134937,The Big Bang Theory,0-57.62,s06e16_seg02_clip_17,Sheldon. 12899,Very strange. ,Very crazy. ,Very nerdy. ,Very loyal. ,Very out there. ,3,How does Beckett describe Nebula 9's fan base when she is talking with Castle about the case?,134938,Castle,5.52-12.88,castle_s05e06_seg02_clip_02,Very loyal. 12900,Happy,"Joey acted non-chalantly, stating who isn't.",Scared,Guilty,Not guilty,1,How did Joey act when the man with the picture left?,134939,Friends,48.66-57.63,friends_s05e17_seg02_clip_11,"Joey acted non-chalantly, stating who isn't." 12901,Canes,Cups,Hammers,Blades,Books,4,What do Sheldon and Amy have on their hand when they sit on the couch? ,134940,The Big Bang Theory,17.97-20.49,s06e04_seg02_clip_12,Books 12902,Rachel needed to talk to Phoebe.,Rachel had to ask Phoebe to walk out and walk back into the apartment.,Rachel needed to ask Phoebe to go camping with her.,Rachel needed to ask Phoebe to go to the store for her.,Rachel asked Phoebe if she would move in with her.,0,What did Rachel need after Phoebe walked in?,134941,Friends,0-7.8,friends_s06e07_seg02_clip_12,Rachel needed to talk to Phoebe. 12903,Treeger,Ross,Mike,Gunther,Chandler,4,Who has to announce himself when he is visiting Joey and Rachel?,134942,Friends,0-2.21,friends_s07e05_seg02_clip_13,Chandler 12904,Brides and Beaus Bridal Boutique.,Barney's.,Bloomingdale's.,Beatrice Bridal Shop.,Vera Wang's Bridal Shop.,3,Where were Monica and Phoebe looking at dresses when were out picking up Emily's dress?,134943,Friends,16.51-21.13,friends_s04e20_seg02_clip_05,Beatrice Bridal Shop. 12905,The green dragon.,The police.,The union.,The ghost.,Tom.,0,Who made it their mission to find saya an her family when discovered not dead?,134944,Castle,0-35.56,castle_s06e18_seg02_clip_23,The green dragon. 12906,Bernadette was dressed like a stripper.,Bernadette was dressed like Elsa.,Bernadette was dressed like Leia. ,Bernadette was dressed like Cinderella. ,Bernadette was dressed like Wonder Woman. ,3,Who did Bernadette come out the room dressed like before Howard took his clothes off?,134945,The Big Bang Theory,5.88-19.52,s06e18_seg02_clip_16,Bernadette was dressed like Cinderella. 12907,Chase hangs a shoe on the bed,Chase hangs an apple on the bed,Chase hangs a telephone on the bed,Chase hangs a tissue on the bed,Chase hangs a clipboard on the bed,4,What does Chase hang on the bed when he gets up?,134946,House M.D.,67.81-74.19,house_s08e09_seg02_clip_13,Chase hangs a clipboard on the bed 12908,Tells Sheldon to go to the speaker box.,Walks up to the speaker box.,Sits in the car and looks at the speaker box.,Drives up to the speaker box.,Tells Sheldon that he is too scared and leaves. ,3,"What does Leonard do after he says ""What do we have to lose""?",134947,The Big Bang Theory,35.72-43.52,s08e19_seg02_clip_07,Drives up to the speaker box. 12909,Sad and anxious,Happy and giddy,Jolly and friendly,Giggly and happy,Confrontational and annoyed,4,How is Foreman feeling when he approaches House about the overflowed toilets?,134948,House M.D.,58.22-72.29,house_s08e21_seg02_clip_09,Confrontational and annoyed 12910,pen,coffee,Newspaper,pencil,nothing,2,What is Esposito holding when Beckett gets a phone call,134949,Castle,16.26-26.2,castle_s02e14_seg02_clip_03,Newspaper 12911,Jean Grey.,Sexy Nurse.,Cat woman.,Wonder woman.,Sexy Maid.,3,What costume does Zack shows Penny after she talks to him? ,134950,The Big Bang Theory,49.12-61.02,s04e11_seg02_clip_05,Wonder woman. 12912,It's incomplete,It's wrong,It's hideous,It's good,It's perfect,3,How does Sheldon respond when Leonard asks him if the formula is good or not?,134951,The Big Bang Theory,18.9-24.61,s08e14_seg01_clip_02,It's good 12913,Howard and Bernadette,Penny and Raj,Penny and Amy,Howard and Raj,Howard and Penny,3,Who fell asleep at Sheldon and Leonard's after a late night?,134952,The Big Bang Theory,17.88-22.29,s05e19_seg02_clip_16,Howard and Raj 12914,Foreman,Cuddy,Cameron,WIlson,Chase,4,Who was calling House when he said it better be worth his time?,134953,House M.D.,0-5.53,house_s02e19_seg02_clip_17,Chase 12915,Gandalf.,Joey.,Phoebe.,Monica.,Chandler.,4,Who does Ross speak to after the door opens?,134954,Friends,37.19-63.03,friends_s04e09_seg02_clip_00,Chandler. 12916,friends,alpha testers,researchers,beta testers,novices,3,What did Sheldon call Penny and Leonard when they played?,134955,The Big Bang Theory,31.4-47.4,s03e07_seg01_clip_00,beta testers 12917,The man playing Captain Max.,An up-and-coming actor.,A washed-up actor.,A Creaver.,A member of the Havacura.,2,How does Esposito describe the man after Beckett asks if he killed Anabelle?,134956,Castle,9.81-16.5,castle_s05e06_seg02_clip_09,A washed-up actor. 12918,His favorite shoe shine guy works there.,His lawyers office is there.,His brother works there.,He has a client there.,He was visiting a friend.,0,Why did Hawke say he was in Alice's building when he was being interrogated by Beckett?,134957,Castle,29.58-36.41,castle_s06e08_seg02_clip_06,His favorite shoe shine guy works there. 12919,"Dr. Geller, Ross's father",Monica,"Dr. Green, Rachel's father",Joey,Dr. Burke,2,Who is eating with Ross and Rachel when they are in Rachel's apartment?,134958,Friends,0.3-34.08,friends_s03e07_seg02_clip_18,"Dr. Green, Rachel's father" 12920,Vikrum asked Castle if she was hungry,Vikrum asked Beckett if she was hungry,Vikrum asked Hyde if she was hungry,Vikrum asked Ryan if she was hungry,Vikrum asked Ashley if she was hungry,1,Who did Vikrum ask if they were hungry when cutting?,134959,Castle,26.89-36.01,castle_s08e02_seg02_clip_13,Vikrum asked Beckett if she was hungry 12921,The woman on the train suggest that they go to dinner.,The woman on the the train suggest that the go have coffee.,The woman on the train suggest that they go to a show.,The woman on the train suggest that they go to her apartment.,The woman on the train suggest that they stay on the train until the next stop.,1,What does the woman on the train suggest that her and Ross do when the train is approaching the stop in Montreal??,134960,Friends,37.72-58.03,friends_s04e10_seg02_clip_18,The woman on the the train suggest that the go have coffee. 12922,A pen. ,His phone number. ,A napkin. ,Money. ,A menu. ,4,What does Joey hand to the waitress when he is out to eat with Rachel?,134961,Friends,9.37-13,friends_s08e12_seg02_clip_06,A menu. 12923,A coat.,A laptop.,Her phone.,A box of pencils.,A clipboard.,4,What is Cameron holding when she discusses a little girl's pituitary gland?,134962,House M.D.,79.83-85.7,house_s03e19_seg02_clip_20,A clipboard. 12924,Brain Aneurysm ,Brain Tumor,Viral encephalitis ,Spinal Meningitis,Pulmonary Interstitial Fibrosis,2,How did Taub reply when Park asked if they were going to talk about the patient or wait for House?,134963,House M.D.,81.26-83.96,house_s08e21_seg02_clip_04,Viral encephalitis 12925,A laptop,A phone,A bottle in a bag,A phonebook,Groceries,2,What was Joey holding when he walked through the door to see Phoebe and Monica?,134964,Friends,21.91-30.91,friends_s04e06_seg02_clip_02,A bottle in a bag 12926,green,blue,Red,rainbow,grey,2,"What color is the shirt Castle is wearing when he say's ""Okay, but what...""?",134965,Castle,0-9.66,castle_s05e09_seg02_clip_20,Red 12927,kiss,go to sleep,fist bump,watch tv,cook dinner,0,What do Amy and Sheldon do after they finish talking?,134966,The Big Bang Theory,39.73-42.79,s09e11_seg02_clip_16,kiss 12928,Joey suggested the Douglas fir because it was bigger,Joey suggested the Douglas fir because it cost more money,Joey suggested the Douglas fir because of the smell,Joey suggested the Douglas fir because it was the last one,Joey suggested the Douglas fir because it was on sale,2,Why did Joey suggest a Douglas fir when he was showing the customer the trees?,134967,Friends,47.4-59.63,friends_s03e10_seg02_clip_13,Joey suggested the Douglas fir because of the smell 12929,He continues reading,He puts his book on the table,He stands up,He greets her,He lays down on the couch,0,What does Joey do when Phoebe enters?,134968,Friends,26.47-31.52,friends_s03e13_seg02_clip_08,He continues reading 12930,Cecilia.,Phoebe.,Rachel.,Chandler.,Ross.,0,Who is talking to Joey when he is on set?,134969,Friends,0-5.76,friends_s07e15_seg02_clip_10,Cecilia. 12931,A tea cup,A book,A magazine,A coffee mug,A screen,4,What was Vikram holding when he was talking to Beckett?,134970,Castle,0-6.77,castle_s08e19_seg02_clip_04,A screen 12932,Hospital,In the bathroom.,Parking garage,She was in a room questioning a lady about a murder.,Morgue,3,Where was Beckett when the show came on?,134971,Castle,1.46-16.01,castle_s05e03_seg02_clip_19,She was in a room questioning a lady about a murder. 12933,Lit Flares,Orange cones,White Chalk marks,His hat,A trail of dollar bills,0,What is the police officer puttin gon the ground when they are blocking off the crime scene?,134972,Castle,0-10.72,castle_s02e11_seg02_clip_00,Lit Flares 12934,Monica kissed Chandler.,Monica pinched Chandler's neck.,Monica kicked Chandler in the groin.,Monica gave Chandler a drink of her beverage.,Monica pour water on Chandler's head.,0,What did Monica do when she put her hand behind Chandler's neck?,134973,Friends,39.02-42.02,friends_s05e05_seg02_clip_04,Monica kissed Chandler. 12935,Esposito and Ryan go to an office where they question people,Esposito and Ryan go to the dentist,Esposito and Ryan go to the store,Esposito and Ryan go to the bank,Esposito and Ryan go to a show,0,Where do Esposito and Ryan go after he gives Beckett and Castle a folder?,134974,Castle,20.07-31.92,castle_s02e12_seg02_clip_21,Esposito and Ryan go to an office where they question people 12936,Walked towards her,Left,hit her,fell down,walked away,0,What did Chandler do after Jill stopped talking?,134975,Friends,26.98-32.26,friends_s01e07_seg02_clip_01,Walked towards her 12937,monica and chandler are standing on the floor,monica and chandler are standing on the table,monica and chandler are standing on the chair,monica and chandler are standing on the sofa,monica and chandler are standing on the bed,4,where were monica and chandler standing when they're listening through the wall?,134976,Friends,0-3.82,friends_s10e01_seg02_clip_00,monica and chandler are standing on the bed 12938,a sink full of dishes,a booth,a bar,a poster,a fridge,2,What was behind Lily when she was talking to Barney about allowing it?,134977,How I Met You Mother,21.32-30.66,met_s03e09_seg02_clip_02,a bar 12939,"There had been a fire, and Castle was crouching for safety. ",Castle was hoping to leave without waking Beckett. ,Castle was making sure Angela's stuffed bunny was also gone. ,Castle had hurt his foot. ,Castle was pretending to be a dog. ,2,Why was Castle crawling on the floor when Beckett dozed? ,134978,Castle,46.69-72.67,castle_s01e09_seg02_clip_23,Castle was making sure Angela's stuffed bunny was also gone. 12940,Ryan didn't send Beckett anything,Ryan sent Beckett a text of a list of names,Ryan sent Beckett some evidence,Ryan sent Beckett a video of he possible suspect,Ryan sent Beckett a picture of the possible suspect,4,What did Ryan send Beckett when he called her about a possible suspect?,134979,Castle,14.93-27.15,castle_s07e19_seg02_clip_10,Ryan sent Beckett a picture of the possible suspect 12941,Monica had seen Chandler on his date,Ross had told Monica about Ginger,Monica knew Ginger from work,Monica was good friends with Ginger,Joey had told Monica about Ginger,4,How did Monica know about Ginger's leg when Chandler questioned her?,134980,Friends,11.19-38.45,friends_s03e14_seg02_clip_13,Joey had told Monica about Ginger 12942,"Beckett, Castle, and Esposito suspected that the thief took some of Alice's client files.","Beckett, Castle, and Esposito suspected that the thief took Alice's iPad. ","Beckett, Castle, and Esposito suspected that the thief took Alice's DVD collection.","Beckett, Castle, and Esposito suspected that the thief took Alice's purse.","Beckett, Castle, and Esposito suspected that the thief took Alice's laptop. ",0,"What did Beckett, Castle, and Esposito think was stolen when they discussed the crime scene?",134981,Castle,49.42-70.2,castle_s06e08_seg02_clip_02,"Beckett, Castle, and Esposito suspected that the thief took some of Alice's client files." 12943,The door fell over.,Ross left the room.,The doctor came in.,There was a loud bang on the door.,There was a knock on the door.,2,Why did Rachel look at the door after Ross got upset?,134982,Friends,45.12-55.02,friends_s08e22_seg02_clip_07,The doctor came in. 12944,Cameron,Cuddy,Stacy,Amber,Chase,0,Who does Wilson think was the perfect person for House before he pushed her away?,134983,House M.D.,13-34.51,house_s01e19_seg02_clip_17,Cameron 12945,A bed.,A hospital heart rate monitor.,A window.,A painting.,A vase.,1,What was behind Chase when he said to House something about a problem with the patient?,134984,House M.D.,39.38-45.13,house_s03e22_seg02_clip_12,A hospital heart rate monitor. 12946,A big tattooed guy,A skinny black guy,A black ugly duck,A big scary black guy,A white skinny guy,3,How did Mr. Mueller describe the suspect when talking to castle and beckett?,134985,Castle,13.07-19.39,castle_s03e19_seg02_clip_05,A big scary black guy 12947,Because the cable got shut off ,Because she ate his food,Because he stubbed his toe,Because he forgot to take out the trash,Because thats what he wanted to name his own kid,4,Why did Joey get upset after Pheobe said she might name him The Hulk?,134986,Friends,4.5-10.8,friends_s04e18_seg02_clip_03,Because thats what he wanted to name his own kid 12948,He's lost.,He's tired.,He's sad.,He's hungry.,He's dieting.,3,What does Castle say after Alexis jokes that she will have to come back and leave food out for him?,134987,Castle,4.6-12.2,castle_s04e13_seg02_clip_27,He's hungry. 12949,boring,satisfactory,tiring,joyful,awful,1,What was the word Leslie put it when Howard asked it was for her?,134988,The Big Bang Theory,13.02-21.95,s02e16_seg02_clip_04,satisfactory 12950,"Well if you are keeping count, I no longer eat shrimp. ",Well if anyone is keeping score I no longer eat chicken. ,"Well, if anyone is keeping score, I no longer eat tuna. ","Well if you are keeping record, I don't eat turkey. ","Well if anyone is keeping score, I still eat beef. ",2,What does Rachel say when she is entering the room. ,134989,Friends,0-4.65,friends_s08e14_seg02_clip_15,"Well, if anyone is keeping score, I no longer eat tuna. " 12951,Penny never said when and where,Sheldon can eat his dinner in the hallway,Sheldon can eat his dinner in the bus stop,Sheldon can eat his dinner at his place,Sheldon can eat his dinner at Penny's place while he wait for his door to be open,4,Where did Penny tell Sheldon when and where he can eat his dinner,134990,The Big Bang Theory,18.28-28.43,s02e21_seg02_clip_06,Sheldon can eat his dinner at Penny's place while he wait for his door to be open 12952,They were in a glass jar.,They were in a plastic cup,On a x-ray.,On a video.,On a photo.,0,How did Foreman show Danny the bones after they were removed?,134991,House M.D.,18.32-22.44,house_s07e17_seg02_clip_09,They were in a glass jar. 12953,red,green ,orange,Purple,white,3,"What color shirt is Rachel wearing when she say's ""This is what...""?",134992,Friends,44.03-54.02,friends_s07e12_seg02_clip_10,Purple 12954,He is holding superman comic books.,He is holding a tray of takeout food.,He is holding a video game.,He is holding his laptop.,He s holding a baby.,1,What is Howard holding when he talks about skintight jeans?,134993,The Big Bang Theory,0-4.1,s02e14_seg02_clip_06,He is holding a tray of takeout food. 12955,glass,casket,window,house,drawer,1,What are Barney and his friends looking into when they say ooh?,134994,How I Met You Mother,0-8.77,met_s02e14_seg02_clip_02,casket 12956,5th floor,6th floor,4th floor,3rd floor,2nd floor,1,"What floor does Chandler tell Ross that his coworker who calls him Toby work on, when they are talking in front of the elevator?",134995,Friends,6.12-10.7,friends_s08e05_seg02_clip_01,6th floor 12957,In his office,At the bar,On the couch,At the park,In bed,4,Where were Ted and Robin when Ted said he had been counting along?,134996,How I Met You Mother,21.76-26.11,met_s02e09_seg01_clip_00,In bed 12958,"Raj explains he wouldn't allow another man with his girlfriend as pretty as Penny, who could resist her beauty and charm. ",Raj explains he wouldn't let Sheldon and Penny get too close because the attraction would be too strong between them. ,"Raj explains he wouldn't allow his girl to be alone with a man like Sheldon because of his great intellect, women have a hard time resisting him. ","Raj explains he wouldn't use a Ouija board or pick a fight with an Asian guy, he probably doesn't know karate, but ...why risk it? ",Raj explains he wouldn't risk Sheldon and Penny being alone for so long because they are missing Amy and Leonard and anything can happen when fate is involved. ,3,How does Raj explain to Amy and Howard they should be worried about tempting fate when Sheldon and Penny are participating the the love experiment?,134997,The Big Bang Theory,50.32-57.5,s08e16_seg02_clip_00,"Raj explains he wouldn't use a Ouija board or pick a fight with an Asian guy, he probably doesn't know karate, but ...why risk it? " 12959,His mom always breaks her necklaces.,She's allergic to jewelry.,Mrs. Wolowitz hates jewelry.,He's mad at his mom.,She doesn't have a neck.,4,Why doesn't Howard make his mother a necklace when the girls are making jewelry?,134998,The Big Bang Theory,31.73-49.73,s07e07_seg02_clip_09,She doesn't have a neck. 12960,Loosen the hips.,Shake the hips.,Loosen the shoulders.,Loosen the legs.,Move the feet.,0,What does Joey have to do to be a better dancer after his dance partner says he's a good dancer?,134999,Friends,29.96-35,friends_s06e10_seg02_clip_07,Loosen the hips. 12961,He yells at the patient.,He strikes up a conversation with him.,He rolls over.,He calls for a doctor.,He rips off all of the wires connected to him.,4,What does House do when a shooting victim arrives in the bed next to him?,135000,House M.D.,35.16-44.96,house_s02e24_seg02_clip_01,He rips off all of the wires connected to him. 12962,He slapped the taste out of Cameron's mouth,He said maybe,He said he had to ask Cuddy first,He said sure thing captain,He said No,4,How did House respond after Cameron instructed him to give a test?,135001,House M.D.,30.7-39.07,house_s05e13_seg02_clip_13,He said No 12963,He told her that he could always watch the video he made of her to help him sleep,He told her that he could replace her in no time,He told her that he would take a sleeping pill and forget all about her,He told her that he was not her problem anymore,He told her he still had her letter to help him sleep,4,Why did Ross tell Rachel she didn't have to worry about him after she told him good luck fallling asleep thinking about her,135002,Friends,31.99-44.29,friends_s04e01_seg02_clip_19,He told her he still had her letter to help him sleep 12964,His business partner,The senator,His girlfriend,His wife,His boyfriend,1,Who did House suggest had screwed Dugan when they were talking?,135003,House M.D.,15.41-42.77,house_s07e06_seg02_clip_17,The senator 12965,He walks out. ,He points at Chandler. ,He looks at the floor. ,He gets some food from the fridge. ,He hugs Phoebe. ,2,What does Joey do after Ross gives Chandler a weird look?,135004,Friends,58.89-61.03,friends_s10e10_seg02_clip_07,He looks at the floor. 12966,Hose is in a movie theatre.,House is on a bus .,House is in a closet.,House is in a cave.,House is in a hotel.,1,Where is House when he is talking to a man in the dark?,135005,House M.D.,8.8-12.32,house_s04e15_seg02_clip_08,House is on a bus . 12967,she thought it was her dead grandmother's ghost,Her psychic said that's how she's going to die,she thought it was a spider,she was afraid it had rabies,she thought it was a rat,1,How does Phoebe explain her fright when she sees the pigeon?,135006,Friends,3.62-10.87,friends_s09e18_seg02_clip_11,Her psychic said that's how she's going to die 12968,Did Howard gain weight?,Did he get a haircut?,Did Howard have new shoes?,He wants to know if Howard is taller.,Where was Howard going?,3,What does Stuart ask Raj after Howard leaves?,135007,The Big Bang Theory,0-6.65,s06e04_seg02_clip_16,He wants to know if Howard is taller. 12969,nothing,a bennie,a cap,a salor hat ,a fedora ,4,What was Castle wearing on his head when he was at home with Kate? ,135008,Castle,0-9.36,castle_s07e09_seg02_clip_00,a fedora 12970,Fall on the floor ,Start to cry ,Scream loudly,Ask for a hug,Walk out of the room,4,What does Esposito do after stating he is sensitive?,135009,Castle,11.5-17.02,castle_s08e07_seg02_clip_02,Walk out of the room 12971,"Rock, paper, scissors",Hug,Dap,Handshake,High five,4,What do Taub and the patient do when Taub is preforming a ultrasound?,135010,House M.D.,37.61-44.86,house_s04e05_seg02_clip_08,High five 12972,Brant said yes,Bran screamed,Brant frowned,Brant smiled,Brant nodded,4,How did Brant responded when Taub asked if he could begin treatment?,135011,House M.D.,60.32-71.57,house_s08e15_seg02_clip_22,Brant nodded 12973,pink,blue,white,yellow,teal,1,What color is Chase's shirt before he takes blood from the patient?,135012,House M.D.,49.15-53.25,house_s03e02_seg02_clip_08,blue 12974,Rachel kiss Ross,Rachel pull Ross to sit on a couch next to her,Rachel pull Ross to sit on the floor next to her,Rachel pull Ross to sit on a table next to her,Rachel slap Ross,3,What did Rachel do before she started talking to Ross?,135013,Friends,0-3.58,friends_s06e01_seg02_clip_14,Rachel pull Ross to sit on a table next to her 12975,Because Max need reassurance because of his chronic low self esteem. ,Because Max is Marshall's son and Marshall wants to enourage him. ,Because Marshall is trying to show his intimate feelings for Max. ,Because Max is having a bad day. ,Because Marshall knows the women are judging Max harshly. ,4,"Why does Marshall say ""You're great"" after embracing Max?",135014,How I Met You Mother,0-37.22,met_s06e05_seg02_clip_10,Because Marshall knows the women are judging Max harshly. 12976,Monica and Chandler come by in a cab,The lawyer comes by in a cab,Rachel comes by in a cab,Joey comes by in a cab,Ross's parents come by in a cab,2,Who comes by in a cab when Phoebe and Ross are standing outside?,135015,Friends,58.75-65.23,friends_s06e02_seg01_clip_01,Rachel comes by in a cab 12977,He wanted to upset Amy.,He thought it would be funny.,He wanted to upset Sheldon.,He had to get out of the apartment and did not mean to.,He didn't realize they were filming.,3,Why did Leonard interrupt Sheldon and Amy when they were filming?,135016,The Big Bang Theory,44.35-53.65,s05e14_seg01_clip_01,He had to get out of the apartment and did not mean to. 12978,He was putting on a jacket.,He was swabbing his mouth.,He was drawing some blood.,He was drinking some juice.,He was swabbing the computer.,4,What was the Med Student doing before he walked to the sink?,135017,House M.D.,53.25-60.08,house_s01e04_seg02_clip_06,He was swabbing the computer. 12979,On the nightstand next to the bed.,On the dresser.,On the bed.,On the bathroom counter.,In Ross' pants pocket.,0,Where was the picture of Emma before Charlie picked it up?,135018,Friends,29.04-35.16,friends_s09e23-24_seg02_clip_20,On the nightstand next to the bed. 12980,The machine falls over,The machine powers down,The machine starts beeping,The machine starts flashing lights,Nothing happens to the machine,2,What happens to the machine after House says I believe you?,135019,House M.D.,6.37-16.38,house_s02e08_seg02_clip_09,The machine starts beeping 12981,Chandler says his father taught him to always knock before entering the pool house.,Chandler says his father taught him to always flush the toilet.,Chandler says his father taught him to always put the emergency brake on when parking.,Chandler says his father taught him to never work under the table.,Chandler says his father taught him to be nice to people.,0,What does Chandler say his father taught him before he mentions the lesson about money?,135020,Friends,0-17.71,friends_s09e16_seg02_clip_01,Chandler says his father taught him to always knock before entering the pool house. 12982,Put a quarter under her pillow while she slept.,Make milk and cookies for Alexis.,Watch T.V. before falling asleep.,Sit by her bed and watch her sleep before going to bed.,Cover her with a blanket.,3,When did Castle do everynight when Alexis was a little girl?,135021,Castle,19.3-25.73,castle_s01e04_seg02_clip_09,Sit by her bed and watch her sleep before going to bed. 12983,Marshall wants to say goodbye to his old car.,Marshall wants to say goodbye to Lily.,Marshall wants to say goodbye to the mechanics.,Marshall wants to say goodbye to his friends.,Marshall wants to say goodbye to the other patrons at the body shop.,0,Who does Marshall want to say goodbye to when talking to Lily about a new car?,135022,How I Met You Mother,7.11-27.52,met_s02e17_seg02_clip_18,Marshall wants to say goodbye to his old car. 12984,Because Leonard will marry in two years.,Because Leonard wants to break with Penny.,Because Leonard want to marry the girl.,Because Leonard wants move with Penny.,Because Leonard kissed a girl.,4,Why Leonard and Penny are arguing when traveling in the car?,135023,The Big Bang Theory,0-52.82,s08e24_seg02_clip_14,Because Leonard kissed a girl. 12985,She was a nurse for the circus in town,Reptiles,Homosapians,Snakes,Primates,4,What was Anne working with before she was killed?,135024,Castle,12.15-24.76,castle_s05e20_seg02_clip_07,Primates 12986,Penny called Bernadette and Amy to the apartment.,Penny smacked Leonard.,Penny ran across the room.,Penny crossed the street.,Penny patted her nose and pointed to Sheldon.,4,What did Penny do after Sheldon recognized her sarcasm?,135025,The Big Bang Theory,33.22-40.14,s04e08_seg01_clip_01,Penny patted her nose and pointed to Sheldon. 12987,In the Mississippi River,In a trashcan on West 83rd,At her husbands house,In a dumpster on West 81st,At the Brooklyn Bridge,3,Where does Becket say the phone is after Castle asks if she found it?,135026,Castle,39.41-54.67,castle_s02e03_seg02_clip_20,In a dumpster on West 81st 12988,Josh and Jillian,Joss and Bill,Ross and Jill,Hillary and Bill,Chandler and Joey,2,Who does Phoebe say she was with after Rachel left?,135027,Friends,12.7-15.65,friends_s06e13_seg02_clip_10,Ross and Jill 12989,She cries. ,She drinks coffee. ,She drinks water. ,She yawns. ,She checks her watch. ,4,What does Julie do after she moves her arm down when she is sitting on the couch with Rachel?,135028,Friends,3.03-6.6,friends_s02e02_seg02_clip_19,She checks her watch. 12990,"Said ""I love you too""",Happiness,Pain,Anger,No reaction,2,What was Castles reaction when Beckett hugged him?,135029,Castle,16.94-21.52,castle_s06e04_seg02_clip_18,Pain 12991,Dr. Barker suggests Royal might be trying to lead someone to Francisco's murder victims.,Dr. Barker suggests Royal might be trying to express himself about his depression.,Dr. Barker suggests Royal might be trying to overcome his fear of crime scenes.,Dr. Barker suggests Royal might be trying to communicate what he saw about the crime.,Dr. Barker suggests Royal might be trying to lead someone to a new victim.,3,What does Dr. Barker suggest Royal might be trying to communicate before Beckett and Castle leave her office?,135030,Castle,82.81-89.05,castle_s04e13_seg02_clip_07,Dr. Barker suggests Royal might be trying to communicate what he saw about the crime. 12992,I hope you live,Take care handsome,"Sorry, I gotta go",I hope you get better soon,It was a pleasure saving your life,2,What did Meredith say to her patient after she got beeped to OR one?,135031,Grey's Anatomy,7-24.5,grey_s02e10_seg02_clip_20,"Sorry, I gotta go" 12993,He missed the outdoors.,He need to open up.,He was looking for food.,He lost his dog.,He was stoned.,4,Why did Foreman say he talked to much when he was talking with Taub?,135032,House M.D.,24.57-36.63,house_s06e16_seg02_clip_12,He was stoned. 12994,the smoke,her butt,a patient's file,his phone,his cane,0,What is House looking at after the nurse blows out the candles?,135033,House M.D.,4.56-14.44,house_s08e02_seg02_clip_23,the smoke 12995,Rachel starts crying hugs Ross.,Rachel puts her head down on the table.,"Rachel stands up and exclaims, ""What?""",Rachel throws the glass of juice at Luisa.,Rachel spits her juice out all over the table.,2,What does Rachel do after Luisa said she used to be a bitch?,135034,Friends,27.77-34.18,friends_s01e19_seg02_clip_12,"Rachel stands up and exclaims, ""What?""" 12996,It doesn't exist,Its unbelievable ,Its not worth the time spent,Its a funny thing,its all around us ,3,How does Meredith feel about faith after the end of the day?,135035,Grey's Anatomy,72.02-79.67,grey_s01e09_seg02_clip_21,Its a funny thing 12997,It's hard to say but I'm guessing a month or so,After the next surgery,In a couple of weeks,Should be soon,Should happen in a week or so,3,How did Wilson respond after Ashley asked him when the patient would be able to move his arm again?,135036,House M.D.,27.6-31.22,house_s06e09_seg02_clip_05,Should be soon 12998,Babysitters didn't always watch babies. ,Babysitters weren't always female. ,Babysitters weren't always native English speakers. ,Babysitters weren't always human. ,Babysitters weren't always teenagers. ,4,What did Castle say about babysitters when talking to Beckett? ,135037,Castle,81.48-88.09,castle_s01e09_seg02_clip_23,Babysitters weren't always teenagers. 12999,He doesn't like pie.,He is concerned he may run out of oxidants.,He needs a break.,He has to use bathroom,He needs a drink.,1,Why is Sheldon concerned after Amy says on the count of three?,135038,The Big Bang Theory,23.81-39.22,s06e04_seg02_clip_16,He is concerned he may run out of oxidants. 13000,Share food,Hug.,A long embrace.,Handshake.,Kiss,4,What is the seated woman trying to force Ross to do after she discovers him pulling Monica's shawl from her chair?,135039,Friends,78.14-84.02,friends_s07e11_seg02_clip_20,Kiss 13001,Baby groceries,Flowers,Food,A crib,A bottle of champagne,0,What did Howard and Raj bring when they went to talk to Bernadette?,135040,The Big Bang Theory,23.77-33.1,s10e06_seg02_clip_04,Baby groceries 13002,She was pregnant for eight months,It wasn't a miscarriage,She was pregnant for six months,She was pregnant before the accident,"She couldn't have been pregnant, however",1,"What did Chase say before he said ""Test shows she is still pregnant""?",135041,House M.D.,0-6.83,house_s08e07_seg02_clip_22,It wasn't a miscarriage 13003,He went to the bathroom. ,He read a book.,He made a sandwich.,He turned on the TV.,He got off the couch. ,4,"What did Sheldon do after Leonard said, ""Call me if you need anything""? ",135042,The Big Bang Theory,28.24-38.37,s08e13_seg02_clip_00,He got off the couch. 13004,Monica and Ross are sitting on a counter top in the coffee shop.,Monica and Ross are sitting at a table in the coffee shop.,Monica and Ross are sitting on a rug on the floor in the coffee shop.,Monica and Ross are sitting on bar stools in the coffee shop.,Monica and Ross are sitting on the couch at the coffee shop.,4,Where are Monica and Ross sitting when they are discussing going to the wedding?,135043,Friends,5.8-25.33,friends_s07e11_seg02_clip_06,Monica and Ross are sitting on the couch at the coffee shop. 13005,bored,sad,irritated,angry,happy,4,How did Sheldon's mom feel when Sheldon thanked her?,135044,The Big Bang Theory,0-12.6,s03e01_seg02_clip_14,happy 13006,Castle picked up a whip,Castle picked up a paddle,Castle did not pick anything up,Castle picked up a gag,Castle picked up a mask,1,What did Castle pick up before he started talking to Beckett?,135045,Castle,5.72-7.48,castle_s02e16_seg02_clip_04,Castle picked up a paddle 13007,They remain at the dining table,They roll their eyes ,They get excited and run to the sofa,They dash out the door,They scatter out of the room in different directions,2,How does the group react when Ross announces that the test is ready?,135046,Friends,49.91-57.77,friends_s04e12_seg02_clip_05,They get excited and run to the sofa 13008,Running.,Searching through garbage for evidence.,Eating lunch.,Doing gymnastics.,Filling out paperwork.,1,What was Esposito and Ryan doing when they were talking?,135047,Castle,59.03-86.17,castle_s01e03_seg02_clip_03,Searching through garbage for evidence. 13009,Old shrimp.,A shoe.,Dirty laundry.,A scented candle.,It did not have a smell. ,0,[What/...] did Rachel say Joey's apartment smelled like [when/] he was showing her his apartment?,135048,Friends,26.61-34.73,friends_s06e18_seg02_clip_09,Old shrimp. 13010,Leonard is on the phone.,Leonard is working out.,Leonard is eating.,Leonard is scratching his chest.,Leonard is crying.,3,What is Leonard doing when standing in front of the dartboard?,135049,The Big Bang Theory,0-2.32,s07e08_seg02_clip_02,Leonard is scratching his chest. 13011,Her legs swelled up.,She had a heart attack.,Her blood became toxic.,She had a a rash.,She coughed up blood.,4,What did House say happened to Addie that confirmed to him her diagnosis when he was gloating about being right and Chase being wrong?,135050,House M.D.,67.94-70.58,house_s03e22_seg02_clip_18,She coughed up blood. 13012,A book,Another guitar,A wine glass,A microphone,A puppy,0,What is Emily holding when House is holding a guitar?,135051,House M.D.,41.97-48.81,house_s07e22_seg02_clip_00,A book 13013,Chris and Amber,John and Diane,Matthew and Velma,Kevin and Mary,Henry and Naomi,0,What two characters were talking when they were behind in the computer?,135052,House M.D.,68.66-88.02,house_s04e04_seg02_clip_02,Chris and Amber 13014,1 year.,2 years.,3 years.,4 years.,18 months.,2,How long did Lanie say Mrs. Lewis has been dead after Castle asked her how long she'd been dead?,135053,Castle,17.55-23.41,castle_s07e23_seg02_clip_09,3 years. 13015,guinea pig poop,The AIDS virus,Penicillin resistant gonorrhea,a new formula,Urine samples,2,What was Bernadette working with in the lab before the toast?,135054,The Big Bang Theory,37.4-47.91,s04e09_seg02_clip_06,Penicillin resistant gonorrhea 13016,rachel and joey are eating,rachel and joey are studying,rachel and joey are watching tv,rachel and joey are making out,rachel and joey are fighting,3,what are rachel and joey doing when others are listening in?,135055,Friends,0-7.32,friends_s10e01_seg02_clip_00,rachel and joey are making out 13017,Mandy said she went out for drinks.,Mandy said she went straight home.,Mandy said she went out on a date.,Mandy said she stopped at a diner.,Mandy said she went to a party.,1,Where did Mandy go after she left the studio?,135056,Castle,75.38-78.4,castle_s03e18_seg02_clip_02,Mandy said she went straight home. 13018,Park tells Chase that she won't sleep with him.,Park tells Chase that she won't introduce him to her sisters.,Park tells Chase that she won't invite him to dinner.,Park tells Chase that she won't go out with him.,Park tells Chase that she won't kiss him before she's ready.,0,What does Park tell Chase she won't do when they are riding the elevator?,135057,House M.D.,0-4.6,house_s08e16_seg02_clip_26,Park tells Chase that she won't sleep with him. 13019,tired,irritated,sleepy,relieved,gloomy,3,How did Sheldon feel when he was switching beds? ,135058,The Big Bang Theory,41.91-57.41,s02e01_seg02_clip_11,relieved 13020,Howard.,Amy.,Shledon.,Leonard.,Bernadette.,1,Who was sitting by Penny when Leonard was driving?,135059,The Big Bang Theory,1.52-8.83,s04e13_seg02_clip_02,Amy. 13021,By matching the bills serial numbers,By matching DNA,By matching hair colors,By wiretapping the office,By following the suspect to the office,0,How was Ryan able to know where to know after arriving to Lopez's office?,135060,Castle,48.66-52.23,castle_s07e18_seg02_clip_25,By matching the bills serial numbers 13022,The stage hand opens her portfolio.,The stage hand offers Rachel a cup of coffee.,The stage hand hands Rachel a copy of the show's script.,The stage hand tells Rachel she hates the show.,The stage hand compliments Joey's appearance.,0,What does the stage hand do after standing next to Rachel in front of the television?,135061,Friends,48.32-52.29,friends_s08e05_seg02_clip_01,The stage hand opens her portfolio. 13023,she in in a 1905 Audi,she is in a 2016 dodge ram,she is in a taxi cab yellow,she is in the back of a cop car,she is walking on foot,2,What kind of car is Phoebe in when speaking to Chandler and Joey?,135062,Friends,35.42-59.03,friends_s02e09_seg02_clip_17,she is in a taxi cab yellow 13024,Tim,Tom ,Amy, John,Billy,2,Who came with Brock to the hospital to visit Derek when he was saying there?,135063,House M.D.,50.48-58.15,house_s03e11_seg02_clip_18,Amy 13025,His sister.,His older brother.,His uncle.,Anyone who passed him by on the street.,His mother.,0,Who does Sheldon tell Raj used to punch him after Raj puts down the lighter?,135064,The Big Bang Theory,18.59-59.02,s03e18_seg02_clip_06,His sister. 13026,white,Green,Red ,Orange,Yellow,1,What color is the shirt Ross is wearing when he is talking to Phoebe?,135065,Friends,0-8.96,friends_s06e02_seg02_clip_04,Green 13027,a cup of coffee,a fountain drink blue cup,a glass of water,a red cup ,a bottle of water,1,What does House pick up when he is sitting in his office with the rest of the doctors?,135066,House M.D.,81.47-88.22,house_s08e15_seg02_clip_22,a fountain drink blue cup 13028,practicing,studying,preperation,resting,knowing your lines,2,What did Martha say is the foundation of an inspired audition after Alexis said they were doing voice exercise?,135067,Castle,27.31-42.33,castle_s03e07_seg02_clip_00,preperation 13029,Four,Two,One,Three,Five,3,"How many people were in the observation room after Chase said 'ventricular fibrillation?""",135068,House M.D.,65.99-72.36,house_s08e09_seg02_clip_13,Three 13030,Callie was not running anywhere specific.,Callie was running to George laying on the stretcher.,Callie was running to find Bailey.,Callie was running to hide from Dr. Grey.,Callie was running to get some coffee.,1,What was Callie running to when the three male doctors were conversing?,135069,Grey's Anatomy,0.46-11.06,grey_s03e14_seg02_clip_14,Callie was running to George laying on the stretcher. 13031,Becuase he had been told on the phone earlier that she had lef work without notifying them.,Because she told him she was having problems at work.,Because he had heard her compay would be laying people off.,Because she had new glasses and had recently gotten her teeth whitened. ,Because he was psychic. ,3,How did House guess that Jodi was going to get fired after she told him about her mucous? ,135070,House M.D.,14.2-69.18,house_s01e03_seg02_clip_03,Because she had new glasses and had recently gotten her teeth whitened. 13032,she cries,runs over to look at the patient,walks away,asks a question,smiles,1,What does Masters do when the patient starts siezing?,135071,House M.D.,10.01-14.84,house_s07e14_seg02_clip_16,runs over to look at the patient 13033,House is at the movies,House is at the theatre,House is on an airplane,House is in the lobby of the hospital,House in in the hospital cafeteria,2,Where is House when he is discussing syphilis ,135072,House M.D.,0-13.45,house_s03e18_seg02_clip_20,House is on an airplane 13034,Runs out of filler.,Malfunctions and stops working.,Blows up.,Prints a model.,Prints out a whistle.,4,What does the printer do after Howard finishes his statement?,135073,The Big Bang Theory,47.11-55.06,s06e14_seg02_clip_09,Prints out a whistle. 13035,Powers' apartment building.,Powers' apartment.,Near Powers' apartment building.,One mile from Powers' apartment building.,Behind Powers' apartment building.,2,Where was the K-9 Unit ordered to search for the bloody gloves when Beckett requested for the deployment of blood hounds?,135074,Castle,11.35-16.8,castle_s07e20_seg02_clip_17,Near Powers' apartment building. 13036,She can't be trusted.,She's crazy.,She's perfect.,She's lying.,She's no good.,4,What did Florence say about Vera after asking Joe what he is thinking?,135075,Castle,62.99-69.11,castle_s04e14_seg02_clip_14,She's no good. 13037,A donut,A small cup,A breakfast sandwich,A case file,A gift box,1,What did Castle hand to Beckett before she agreed he is a tool?,135076,Castle,14.46-23.94,castle_s06e03_seg02_clip_14,A small cup 13038,It was his idea. ,Yes he did,you right he don't ,It was Raj idea ,It was my idea.,0,What did Howard say after Sheldon said he sure that Leonard didn't know?,135077,The Big Bang Theory,0-23.21,s03e01_seg02_clip_02,It was his idea. 13039,If she is okay,How old she is,How many apples she wants,If she is marrying ash,Where is ash?,0,What does alexis tell castle to ask her tomorrow when they walk out of castles study?,135078,Castle,22.53-30.61,castle_s04e07_seg02_clip_27,If she is okay 13040,At the Kopek's house,At the shipping yard,At the airport,There was no party,Mr. Kopek was at work,2,Where was Mrs. Kopek's story held after Beckett said she pieced things together?,135079,Castle,31.66-59.69,castle_s02e14_seg02_clip_25,At the airport 13041, Leonard rolled in a sleeping bag., Leonard rolled in a ball., Leonard rolled in his suitcase., Leonard rolled in a toy train., Leonard rolled in an apple.,2,What does Leonard roll in when he enters the room?,135080,The Big Bang Theory,15.48-18.49,s08e22_seg01_clip_00, Leonard rolled in his suitcase. 13042,He felt sad that Sheldon had moved on.,He couldn't believe that Sheldon would say that.,He was mad that Sheldon didn't like the same things as him.,"Upset, because he thought Sheldon would be happy.",He thought Sheldon might think less of him for still liking Star Trek. ,1,How did Leonard react when Sheldon said he thought he kind of outgrown Star Trek?,135081,The Big Bang Theory,6.99-22.8,s05e05_seg02_clip_12,He couldn't believe that Sheldon would say that. 13043,Cristina was mean to Burke.,Cristina hated Burke.,Cristina was jealous.,Cristina fell asleep in sex.,Cristina said no to Burke.,3,Why was Burke so angry when he was playing darts?,135082,Grey's Anatomy,15.53-40.46,grey_s02e25_seg02_clip_00,Cristina fell asleep in sex. 13044,A cake.,A cup of coffee.,A bagel.,A phone.,A sandwich.,0,What was on the counter behind Phoebe when she was talking to Mr. A about his dead wife?,135083,Friends,2.84-8.19,friends_s02e11_seg02_clip_11,A cake. 13045,Leaves the apartment.,Jumps up and down.,Claps his hands.,Begins to cry.,Flails his jacket.,0,What does Leonard do after learning that Priya is in town?,135084,The Big Bang Theory,27.32-40.4,s04e16_seg02_clip_01,Leaves the apartment. 13046,She says why are you worried,She says its right Leonard,She says fix it yourself,Yeah just tuck that in your pants,She says never again,3,What does Penney say after Leonard asks about the tie?,135085,The Big Bang Theory,15.51-62.02,s04e15_seg02_clip_00,Yeah just tuck that in your pants 13047,On the floor,On chairs,At a table,At the bar,On the couch,4,Where are the girls sitting when Ross enters the coffee shop?,135086,Friends,35.11-37.49,friends_s06e01_seg02_clip_19,On the couch 13048,A broom ,A stetoscope ,A ruler ,A pen ,A comb,1,What did Pheobe pick after Joey said she attreck some stinkers ?,135087,Friends,55.48-59.03,friends_s08e23-24_seg02_clip_16,A stetoscope 13049,Next to the deer that was just outside eating fruit from the orchard.,Next to Monica.,Next to the bed.,Next to Ross.,Behind Ross.,3,Where does Emily stand after opening the door?,135088,Friends,36.89-43.38,friends_s04e14_seg02_clip_08,Next to Ross. 13050,They got the flu,Contamination from toxic chemicals,Rat contamination,Food poisoning,Cancer,1,What caused the family to be sick when they moved into the farmhouse?,135089,Castle,16.2-25.92,castle_s06e07_seg02_clip_15,Contamination from toxic chemicals 13051,Phoebe talked to one of Ben's friends.,Phoebe talked to a teacher.,Phoebe talked to the parent of someone who had been bullying her nephew.,"Phoebe talked to the bully of her nephew, Ben.","Phoebe talked to her nephew, Ben.",4,Who did Phoebe talk to when she got to the school?,135090,Friends,15.28-39.34,friends_s08e10_seg02_clip_09,"Phoebe talked to her nephew, Ben." 13052,Ralph Lauren is out of the country so it wasn't him.,Ralph Lauren was probably smiling at Joey.,Ralph Lauren doesn't smile.,Ralph Lauren sometimes likes it when the elevator buttons light up.,Ralph Lauren doesn't take the public elevator.,3,Why did Rachel say Ralph Lauren might not have been smiling at Dina before Joey left?,135091,Friends,32.79-41.06,friends_s08e10_seg02_clip_04,Ralph Lauren sometimes likes it when the elevator buttons light up. 13053,Her apartment is extremely messy,Her apartment is so spotless,Her apartment is covered in cats,Her apartment has no furniture ,Her apartment has too many bird cages,0,What does Ross see when he walks into Cheryl's apartment?,135092,Friends,0-3.3,friends_s04e06_seg02_clip_05,Her apartment is extremely messy 13054,Tom wanted to scare Monica away from Chandler ,Tom saw a large chin hair on Monica,Tom saw Monica at a gay bar once and assumed she was gay also,Tom assumes Monica is a cross-dressing man,Tom was asking to get shaving tips ,3,Why does Tom ask Monica about shaving her beard after she says she's dating Chandler?,135093,Friends,28.99-34.04,friends_s09e17_seg02_clip_19,Tom assumes Monica is a cross-dressing man 13055,American flag,Brittian flag,French flag,The world,Dog,0,What kind of pin is castle wearing when he and beckett arrive at the cafe?,135094,Castle,30.55-36.02,castle_s02e24_seg02_clip_05,American flag 13056,He threw a receipt,He threw a piece of paper,He threw a pillow,He threw a newspaper,He threw a computer,2,What did Ted rip apart and throw when talking to Barney?,135095,How I Met You Mother,11.97-17.8,met_s05e05_seg02_clip_00,He threw a pillow 13057,Mark,Penny,Dave,Sheldon,Andy,3,Who looks angry when Amy is playing the harp?,135096,The Big Bang Theory,2.7-9.61,s05e02_seg02_clip_09,Sheldon 13058,Lanie.,Captain Montgomery.,Ryan.,Esposito.,Lou Karnacki.,4,Who came in and ended the interview when Beckett and Castle were interviewing the DA's personal assistant?,135097,Castle,0-6.42,castle_s03e19_seg02_clip_17,Lou Karnacki. 13059,He adjusts his tie.,He knocks on the door several times.,He smells the flowers he is holding.,He checks the time on his watch.,He starts running in place.,1,What does Sheldon do before Amy answers the door?,135098,The Big Bang Theory,5.6-15.41,s06e10_seg02_clip_00,He knocks on the door several times. 13060,Another man,A briefcase,A newspaper ,A child,A chair,1,What does the man have handcuffed to him when Beckett pulls out her gun and badge,135099,Castle,42.76-48.61,castle_s03e20_seg02_clip_24,A briefcase 13061,Foreman,Wilson,Chase,Taub,Cuddy,1,Who is with House when he getting lunch?,135100,House M.D.,0-4.36,house_s06e07_seg02_clip_04,Wilson 13062,a dress,a night robe,a towel,a coat,a nightie ,1,What does Monica have on when standing by the kitchen table?,135101,Friends,2.4-5.1,friends_s09e05_seg02_clip_02,a night robe 13063,Red,Green,Blue,Black,White,2,What is the color of Rachel's scarf when she is talking to Ross?,135102,Friends,6.3-15.61,friends_s07e16_seg02_clip_21,Blue 13064,Carol is wearing black,Carol is wearing burgandy,Carol is wearing orange,Carol is wearing blue,Carol is wearing green,1,What color is Carol wearing when she is talking to Ross,135103,Friends,0-12.29,friends_s01e14_seg02_clip_21,Carol is wearing burgandy 13065,11:04 am,10:00 am,9: 00 am,8:00 am,9:04 am,0,What time did paul recieve a call before he was killed?,135104,Castle,52.21-55.85,castle_s07e08_seg02_clip_02,11:04 am 13066,Outside on the patio.,Doing the dishes in the kithcen.,Reading on the couch.,In Monica's bedroom.,She was no where to be found. ,2,[Where/...] was Phoebe at [when/] Monica turned on the lamp?,135105,Friends,36.7-43.98,friends_s06e18_seg02_clip_09,Reading on the couch. 13067,Leonard just liked the style.,Sheldon punched Leonard.,Leonard tripped and hit his nose.,Leonard had the flu.,Leonard laughed so hard and burst a blood vessel in his nose.,4,Why did Leonard have a tissue in his nose when Penny noticed it?,135106,The Big Bang Theory,33.64-38.95,s10e09_seg02_clip_06,Leonard laughed so hard and burst a blood vessel in his nose. 13068,Rachel,Monica,Ross,Phoebe,Marcel,2,Who walked in the door after Joey ate the Cheeto stuck to his face?,135107,Friends,25.51-33.92,friends_s02e15_seg02_clip_08,Ross 13069,because Monica calls sex a grouping,because Monica calls sex mate appreciate time,because Monica calls sex a purse,because Monica calls sex a coupling,because Monica calls sex a flower,4,Why is Rachel annoyed with what Monica calls sex when they are standing by the door,135108,Friends,12.83-22.24,friends_s05e08_seg02_clip_06,because Monica calls sex a flower 13070,The waiter is pouring water,The waiter is pouring champagne,The waiter is pouring orange juice,The waiter is pouring red wine,The waiter is pouring lemonade,1,What is the waiter pouring when Chandler and Monica are sitting at the table,135109,Friends,0-6.41,friends_s06e24-25_seg02_clip_07,The waiter is pouring champagne 13071,green,Blue,grey,balck,white,1,"What color is the shirt Chase is wearing when he say's ""..than have it happen...""?",135110,House M.D.,80-89.89,house_s08e05_seg02_clip_01,Blue 13072,She says she once dropped a baby.,She says she put on a cheerleading outfit to seduce Joshua.,She says she broke someone out of the hospital.,She says she once scaled a fire escape.,She says that she once threw up on a priest.,1,What is one example Rachel details after saying she makes bad decisions.,135111,Friends,31.8-42.6,friends_s05e02_seg02_clip_03,She says she put on a cheerleading outfit to seduce Joshua. 13073,Because the LVAD is not working.,Because the LVAD will only give more time.,Because the LVAD needs batteries.,Because the LVAD needs to be repaired.,Because the LVAD needs to be bigger.,1,Why the LVAD is not making better to Denny after he collapsed?,135112,Grey's Anatomy,74.4-77.59,grey_s02e24_seg02_clip_07,Because the LVAD will only give more time. 13074,He called his mom.,He sat down.,He said perhaps.,He said maybe.,He stood up.,4,What did Barney do before Wendy said wow?,135113,How I Met You Mother,19.73-27.27,met_s03e11_seg02_clip_01,He stood up. 13075,"The student said, it is cool to be an architect.","The student said, I love to be an architect.","The student said, I don't want to be an architect.","The student said, I am glad to be an architect.","The student said, I need to graduate as an architect.",2,"What the student answer to Marshall after he asked, why you wanna be an architect?",135114,How I Met You Mother,0-40.14,met_s05e01_seg02_clip_11,"The student said, I don't want to be an architect." 13076,She says that Ross is a great guy.,She says that Ross is a great listener.,She says that Ross is a great boxer.,She says that Ross is a great dancer.,She says that Ross is a great singer.,1,What does Ross' date say when he is not talking to her?,135115,Friends,20.16-25.36,friends_s06e08_seg02_clip_12,She says that Ross is a great listener. 13077,Monica tells him not to be a butt-munch.,Monica suggests that they should wait and see what the Doctor says.,Monica explains that he needs to be brave.,Monica remains quiet.,Monica suggests going to another doctor.,1,How does Monica suggest they handle the situation after Ross declares that he won't get a shot?,135116,Friends,7.08-9.44,friends_s02e06_seg02_clip_07,Monica suggests that they should wait and see what the Doctor says. 13078,Joanna whispered something into Roger's ear to force him to open the safe.,Joanna verbally threaten Roger to force him to open the safe.,Joanna promised to help to Roger to get him to open the safe.,Joanna demanded Roger to open the safe or expose him.,Joanna threaten to divorce Roger if he didn't open the safe.,0,How did Joanna convince Roger to open the safe after he refused to open it for Castle?,135117,Castle,63.67-67.95,castle_s08e10_seg02_clip_20,Joanna whispered something into Roger's ear to force him to open the safe. 13079,door ,chair ,sign ,desk lamp ,window ,3,What object is in the background when Castle and Beckett are speaking? ,135118,Castle,76.92-91.03,castle_s08e11_seg02_clip_20,desk lamp 13080,police servers ,Fort knox,Banking mainframe,public library ,Ted Computer,4,What were Tory trying to unlock when Castle came into the room? ,135119,Castle,18.98-32.86,castle_s06e12_seg02_clip_04,Ted Computer 13081,Amy and Rachel where cooking before Ross came in the room.,Amy and Rachel where fighting when Ross came in the room.,Amy and Rachel Where getting dressed when Ross came in the room.,Amy and Rachel was talking before Ross came in the room.,Amy and Rachel was cleaning before Ross came in the room.,3,What was Amy and Rachel doing before Ross came in the room. ,135120,Friends,0-27.21,friends_s09e08_seg02_clip_01,Amy and Rachel was talking before Ross came in the room. 13082,Heart attack,Brain Hemmorage,Amniotic Fluid Embolism,The doctors do not know,his wife died,2,What is the medical term given by Ryan when his colleagues ask why his wife went unconscious?,135121,Castle,47.91-58.61,castle_s08e17_seg02_clip_25,Amniotic Fluid Embolism 13083,13 killed he brother becasue he was out of control,13 killed he brother becasue he was sick and she promised to help,13 killed he brother becasue he would have killed her,13 killed he brother becasue she needed to survive,13 didn't kill her brother,1,Why did 13 kill her brother when she told Chase why she did so?,135122,House M.D.,5.62-9.68,house_s07e22_seg02_clip_04,13 killed he brother becasue he was sick and she promised to help 13084,Cameron needs to do emergency surgery.,Cameron needs to run more tests.,Cameron needs to do a biopsy.,Cameron needs to contact House.,Cameron needs to call a specialist.,2,What does Cameron have to do after she finds out there is no sign of infection?,135123,House M.D.,83.35-86.98,house_s02e01_seg02_clip_18,Cameron needs to do a biopsy. 13085,Castle told Beckett that she should find a safer job.,Castle told Beckett that she never has any leads.,Castle told Beckett that she is a terrible detective.,Castle told Beckett that she should let another person investigate her mother's death.,Castle told Beckett that she didn't have any leads now.,4,What did Castle say after Beckett said that she didn't have any leads then?,135124,Castle,80.14-90.05,castle_s04e01_seg02_clip_21,Castle told Beckett that she didn't have any leads now. 13086,I hate you.,I need to brilliantly cure a patient.,I'm going home. ,I've had enough.,I'm out of here.,1,"What did House say when he was leaving the office where he was talking to Park, Chase, Foreman, and Taub?",135125,House M.D.,46.51-60.93,house_s08e15_seg02_clip_23,I need to brilliantly cure a patient. 13087,Burke is listening to music.,Burke is taking a nap.,Burke is comforting Izzy.,Burke is writing in his notes.,Burke is looking for supplies.,3,What is Burke doing when Christina finds him in the supply closet?,135126,Grey's Anatomy,64.09-68.39,grey_s02e15_seg02_clip_20,Burke is writing in his notes. 13088,House says Wilson owes him $45.,House says Wilson owes him $135.,House says Wilson owes him $35.,House says Wilson owes him $39.,House says Wilson owes him $55.,2,How much money does House tell Wilson he owes him after mentioning the grab rail House installed?,135127,House M.D.,53.18-57.3,house_s06e12_seg02_clip_00,House says Wilson owes him $35. 13089,the bathroom,To join a group of interns.,a patient's room,her car,the kitchen,1,Where does Bailey go after she walks through the door?,135128,Grey's Anatomy,38.51-48.03,grey_s03e18_seg02_clip_03,To join a group of interns. 13090,He will die too early,He will end up in prison ,Will be addicted for life,About to be fired ,Going to lose his wife ,1,Why does Cuddy say House has to listen to Tritter before it is too late?,135129,House M.D.,46.49-59.01,house_s03e11_seg02_clip_02,He will end up in prison 13091,Chandler walks to the door.,Chandler sits on the floor.,Chandler hugs Monica.,Chandler dances with Phoebe.,Chandler makes fun of Ross's sad attempt to save face.,4,When Ross tries to save face with Rachel what does Chandler do after?,135130,Friends,39.55-51.65,friends_s07e01_seg02_clip_17,Chandler makes fun of Ross's sad attempt to save face. 13092,Castle,Lars,The King,Lanie,Ryan,0,Who's phone rang when the detectives were talking?,135131,Castle,61.02-68.2,castle_s08e17_seg02_clip_02,Castle 13093,Smiles then frowns.,Rolls eyes and frowns.,Shakes his head.,Flips her off.,Laughs psychotically.,0,What does Chandler do after Monica looks at him then she looks away?,135132,Friends,55.19-57.87,friends_s05e23-24_seg02_clip_05,Smiles then frowns. 13094,lonely,happy,angry,bored,upset,4,How did Leonard feel when Penny didn't invite him around friends?,135133,The Big Bang Theory,0-17.28,s03e06_seg02_clip_03,upset 13095,On the couch.,In his leather bag.,On the floor.,On the coffee table,On an end table.,3,Where did Ross put the stack of papers he was grading before he opened the door? ,135134,Friends,0-5.18,friends_s08e11_seg02_clip_04,On the coffee table 13096,Starring,Featuring ,Coming Soon,Coming To The Stage,All Star,2,What did the top of the left picture read on the Pennybaker sign when the trumpet was playing?,135135,Castle,46.93-50.95,castle_s04e14_seg02_clip_18,Coming Soon 13097,He press the phone and announce we got lice,He call police,He order food,He call his wife,He gt coffee,0,What did the man interview Marshall do after he told Marshall to get out of his office?,135136,How I Met You Mother,51.65-56.78,met_s03e20_seg02_clip_07,He press the phone and announce we got lice 13098,Foreman and Chase,Taub and 13,Chase and Taub,Cuddy and Foreman,13 and Foreman,2,Who walks in after to interrupt House and Wilson's conversation?,135137,House M.D.,40.53-45.94,house_s06e12_seg02_clip_08,Chase and Taub 13099,The duck.,Money.,The recliners.,The TV.,"The big, white dog.",4,What did Joey want to give to Chandler when Chandler is moving out?,135138,Friends,10.83-14.02,friends_s06e06_seg02_clip_17,"The big, white dog." 13100,A wrapped gift for Dr. House. ,A briefcase. ,An X-Ray. ,A bottle of Woodford.,A cane. ,1,What does Wilson hold when he walks into the room? ,135139,House M.D.,76.1-86.6,house_s07e08_seg02_clip_01,A briefcase. 13101,He shouted at him.,He ran away.,He pushed him.,He nodded.,He sighed.,2,What did Castle do after Officer Tolliver wouldn't let them in?,135140,Castle,16.56-26.69,castle_s07e19_seg02_clip_14,He pushed him. 13102,Beckett and Castle are in a cop car.,Beckett and Castle are at Mr. Du Preez's store.,Beckett and Castle are sitting on a park bench.,Beckett and Castle are in an interrogation room.,Beckett and Castle are at a bar.,3,Where are Beckett and Castle when they talk to Mr. Du Preez about his store?,135141,Castle,57.26-93.1,castle_s02e14_seg02_clip_23,Beckett and Castle are in an interrogation room. 13103,15 months,2 years old,6 months,A year and half,1 year old,4,How old is emma when she is with monica and chandler?,135142,Friends,21.71-25.74,friends_s10e04_seg02_clip_18,1 year old 13104,Morphine.,Tylenol,Motrin,Advil,Naprosyn,0,Which drug was Joe on after he mentioned the pain he was in?,135143,House M.D.,56.44-64.17,house_s02e20_seg02_clip_16,Morphine. 13105,Professor Proton.,Sheldon.,Howard.,Raj.,Penny.,0,Who is Leonard talking to when doing the experiment?,135144,The Big Bang Theory,52.78-61.02,s07e07_seg02_clip_09,Professor Proton. 13106,Penny wants to put her ear to the door when Sheldon knocks.,Penny wants to hear Sheldon yell her name.,Penny waits for Sheldon to knock two times.,Penny waits for Sheldon to knock three times.,Penny wants to knock on the door with Sheldon.,3,Why does Penny stand next to door when Sheldon knocks?,135145,The Big Bang Theory,11.74-16.56,s04e01_seg02_clip_04,Penny waits for Sheldon to knock three times. 13107,Ryan shouts across the room.,Ryan whistles and waves to everyone.,Ryan slams the phone down.,Ryan walks in front of the whiteboard.,Ryan knocks on the window of the strategy room.,2,What does Ryan do to get everyone's attention when Beckett and the others are looking at the whiteboard?,135146,Castle,12.69-16.32,castle_s08e13_seg02_clip_23,Ryan slams the phone down. 13108,She was happy,She was upset,She was sad,She was energized,She was confused,1,How did she return after going to her M appointments,135147,Castle,25.24-27.41,castle_s03e18_seg02_clip_08,She was upset 13109,A mug.,A phone.,A wallet.,A folder.,A briefcase.,3,What was Castle holding before he took a picture out and showed it to Beckett?,135148,Castle,1.34-7.57,castle_s04e04_seg02_clip_16,A folder. 13110,Penny had a backpack with her.,Penny had a laptop computer with her.,Penny had a rolling suitcase with her.,Penny had a dozen donuts with her.,Penny had a large pizza with her.,2,What did Penny bring in with her when she came into Bernadette's office?,135149,The Big Bang Theory,6.3-9.91,s10e02_seg02_clip_05,Penny had a rolling suitcase with her. 13111,An evidence bag with hair fibers.,A punctured heart from the body.,A folder with files in it.,A tattoo on the body.,A pair of bite marks found on the body.,0,What did Lanie show Beckett and Castle before talking about driving a stake through someones chest?,135150,Castle,12.93-22.85,castle_s02e06_seg02_clip_02,An evidence bag with hair fibers. 13112,Mae Singer.,Marilyn Singer.,Mary Singer.,Marilyn Monroe,Marilyn Stinger.,1,What person used their credit card when they purchased the phone?,135151,Castle,33.83-50.74,castle_s07e21_seg02_clip_19,Marilyn Singer. 13113,Basket balls,Tennis balls,Base balls,Soccer balls,Golf balls,2,"What kind of balls does Cano Vega have around him when Becket, Castle, and Esposito find him?",135152,Castle,13.38-23.2,castle_s02e15_seg02_clip_01,Base balls 13114,He put it on the floor.,He threw it in the garbage.,He put it in Meredith's hands.,He gave it to Alex.,He put it on the desk.,4,Where did Derek put his chart before Meredith said Hey?,135153,Grey's Anatomy,49.01-51.42,grey_s03e25_seg02_clip_05,He put it on the desk. 13115,She's doing a crossword puzzle,She's planning a trip,She is playing a trivia game,She is taking a geography quiz,She got a postcard from there,0,Why does Phoebe ask Mike what is the Capital of Peru when she's on the couch?,135154,Friends,8.82-15.76,friends_s09e12_seg02_clip_00,She's doing a crossword puzzle 13116,She really wants to do it herself,She doesn't trust her.,She thinks Rachel will steal it,She wants to enjoy all the wedding things on her own tonight,Rachel will ruin the dress,1,Why does Monica ignore Rachel when she offers to help steam the dress?,135155,Friends,22.15-35.39,friends_s07e23-24_seg02_clip_10,She doesn't trust her. 13117,penny says add a belt,penny says add a pants,penny says try a new dress,penny says take it all off,penny says put on high heels,0,what does penny want leonard to do when she says she'll take him someplace nice?,135156,The Big Bang Theory,14.88-18.83,s08e22_seg02_clip_09,penny says add a belt 13118,green,Blue,grey,red,black,1,"What color scrubs is Izzie wearing when she say's ""You have stress...""?",135157,Grey's Anatomy,0-9.72,grey_s02e05_seg02_clip_18,Blue 13119,Stacey wouldn't want a bag so expensive.,Stacey couldn't afford a bag like this.,"Stacey was into ""Tumi"" bags.",Stacey didn't own a jukebox.,Stacey doesn't like storing money in bags. ,2,Why is the bag not Stacey's according to Beckett after Beckett comments on the money she had?,135158,Castle,70.47-78.1,castle_s03e11_seg02_clip_11,"Stacey was into ""Tumi"" bags." 13120,clipboard,coffee cup,bag of candy,purse,wallet,0,What did Thirteen leave behind when She attached a thank you for Foreman on it?,135159,House M.D.,27.61-35.43,house_s05e11_seg02_clip_02,clipboard 13121,Stuart broke his leg.,Stuart fell and hurt himself.,Stuart was waiting for Penny to lay next to him.,"Stuart was playing dead, and one of his friends killed him.",Stuart was waiting for someone to give him CPR.,3,Why was Stuart laying on the floor when the group was talking to Raj?,135160,The Big Bang Theory,0-42.11,s07e18_seg02_clip_00,"Stuart was playing dead, and one of his friends killed him." 13122,wedding invitations,folder,clipboard,headphones,photo album,3,What item did Monica say she missed so much after picking it up?,135161,Friends,18.25-25.93,friends_s10e12_seg02_clip_20,headphones 13123,She starts singing,She stands up and moves closer to him,She stokes her harp. ,She is not playing the harp,She does nothing,2,what does Amy do before to starts talking to sheldon? ,135162,The Big Bang Theory,0-6,s05e02_seg02_clip_09,She stokes her harp. 13124,a portfolio bag,a blue purse,a large bag,a pink purse,a tool bag,3,What does Phoebe have on her left shoulder when Monica is by the kitchen table?,135163,Friends,1.8-5.1,friends_s09e05_seg02_clip_02,a pink purse 13125,On the floor behind him.,Up to his right.,Up to his left.,Out in front of him.,On the floor to his left.,2,"Where did Ross point to when he said ""grab some empty boxes?""",135164,Friends,18.61-22.89,friends_s07e13_seg02_clip_13,Up to his left. 13126,Castle,Whittman,Ryan,Shana,no one,1,Who are Beckett and Esposito talking about before Ryan walks in?,135165,Castle,0-4.93,castle_s07e11_seg02_clip_08,Whittman 13127,Ross says his ex is a lesbian.,Ross says his ex is Mary.,Ross says his ex is Jenna.,Ross says his ex is Phoebe.,Ross says his ex is Monica.,0,Who does Ross say was his ex-wife Carol when he is talking to Emily?,135166,Friends,18.59-24.5,friends_s04e19_seg02_clip_13,Ross says his ex is a lesbian. 13128,He invites her to a movie. ,He invites her to get coffee. ,He invites her to a Rangers game. ,He invites her to dinner. ,He invites her to go for a walk. ,2,What does Chandler invite Rachel to when they are having a moment together?,135167,Friends,15.06-29.06,friends_s04e10_seg02_clip_15,He invites her to a Rangers game. 13129,Meredith said she is too skinny.,Meredith said she is fat.,Meredith said her stomach's stapled ,Meredith said she is on drugs.,Meredith said she's an alcoholic.,2,What did Meredith say after Bailey asked her what does she see?,135168,Grey's Anatomy,40.36-46.56,grey_s01e07_seg02_clip_04,Meredith said her stomach's stapled 13130,He thought all Erica needed was some antacids ,He think's Monica worries too much,He was annoyed that Monica was yelling in his ear,He wasn't really paying attention to Erica's story,He ate a bad cheeseburger and needed antacids too,0,Why did Chandler tell Monica to relax when Erica said she was having stomach pains?,135169,Friends,24.41-39.06,friends_s10e16_seg02_clip_18,He thought all Erica needed was some antacids 13131,At the kitchen table in their apartment.,On the floor in their apartment.,At the kitchen counter in their apartment.,At the kitchen counter at Monica's house.,On the living room sofa with the coffee table.,2,Where do Joey and Chandler sit when they are playing the card game Cups.,135170,Friends,52.18-61.03,friends_s06e06_seg02_clip_12,At the kitchen counter in their apartment. 13132,Reading a newspaper,Making a coffee,Doing her makeup,Working out,Standing up,1,What is Phoebe doing when she is sat next to Mike and he said that it's nice?,135171,Friends,2.75-10.68,friends_s09e06_seg02_clip_00,Making a coffee 13133,Takes off his shoes.,Orders takeout.,Starts to cry.,Changes the channel.,Rips them away.,4,What does Ross do after Rachel signs the papers?,135172,Friends,35.42-46.93,friends_s06e05_seg02_clip_17,Rips them away. 13134,Yellow police tape,Green and while barrier,Orange and white barrier,An old AC unit,A street light,2,What was the police car parked beside when they were examining the crime scene?,135173,Castle,0-2.74,castle_s04e03_seg02_clip_01,Orange and white barrier 13135,Three times.,Once,Twice,Everyday,Four times.,3,How many times does Rachel see Tag a week when she mentioned it to Joey?,135174,Friends,50.74-56.73,friends_s07e08_seg02_clip_16,Everyday 13136,A pearl necklace.,A gold necklace.,A silver necklace.,A diamond necklace.,A Pandora necklace.,0,What kind of necklace is Charlie wearing when she is sitting on the bed with Ross?,135175,Friends,3.36-10.7,friends_s09e23-24_seg02_clip_20,A pearl necklace. 13137,bowtie,tie,scarf,whistle,nothing ,1,What did Ryan have around his neck when he was talking to Beckett? ,135176,Castle,71.76-90.27,castle_s07e12_seg02_clip_13,tie 13138,For letting him read her paper.,For getting his dry cleaning.,For making him dinner.,For cleaning his bedroom.,For telling him her secret?,4,Why did Ted thank Robin before he asked about her husband?,135177,How I Met You Mother,8.99-34.74,met_s02e09_seg02_clip_09,For telling him her secret? 13139,A bottle of pills,A magazine,Car keys,His cane,A coat,3,What was House holding in his hand when he was sitting in the hallway?,135178,House M.D.,0-11.31,house_s03e07_seg02_clip_24,His cane 13140,A curling iron.,An arsonist. ,A candle.,A faulty wire.,The oven was left on. ,0,[What/...] did the fireman say was the cause of the apartment fire [when/] he was talking to Phoebe?,135179,Friends,0-5.32,friends_s06e18_seg02_clip_09,A curling iron. 13141,How long it lasted ,How he met his last love,The size of her chest,What she did for a living,If House killed her,1,What does Gabe want to know after he finds out that House had been in love?,135180,House M.D.,47.36-54.65,house_s03e07_seg02_clip_11,How he met his last love 13142,Beckett was pointing a gun at Jerry.,Jerry was stretching.,Jerry was trying to touch the ceiling.,Jerry was trying to grab a bird.,Jerry was trying to grab a balloon.,0,Why did Jerry have his hands up before he turned around?,135181,Castle,0-3.12,castle_s07e14_seg02_clip_13,Beckett was pointing a gun at Jerry. 13143,Chandler.,Rachel.,Monica.,Ross.,Joey.,4,Who bursts into the room when Phoebe is trying to calm Cliff down?,135182,Friends,38.75-50.65,friends_s08e23-24_seg02_clip_28,Joey. 13144,Castle thinks that the murderer is Ryan.,Castle thinks that the woman who shot him is the murderer.,Castle thinks that the murderer is an employee at the police station.,Castle thinks that the murderer is Beckett.,Castle thinks that one of Emma's birth parents may be behind all of this.,4,Who does Castle think is the murderer after being shot?,135183,Castle,46.24-66.85,castle_s06e04_seg02_clip_18,Castle thinks that one of Emma's birth parents may be behind all of this. 13145,Joey start laughing ,Joey slapped him ,Joey left the shop,They start talking about the past,He took the gift back ,2,What happen after Joey heard what Chandler was saying?,135184,Friends,43.32-47.18,friends_s02e14_seg02_clip_06,Joey left the shop 13146,he has the flu,his foot needs to be amputated ,his stomach is upset ,foot is swollen and scianotic ,he has the commen cold,3,what is wrong with the patient after he starts complaining ,135185,House M.D.,65.14-74.82,house_s08e15_seg02_clip_12,foot is swollen and scianotic 13147,Burke dances with Cristina.,Burke kisses Cristina.,Burke hugs Cristina.,Burke turns to look at Cristina.,Burke walks out the door.,3,What does Burke do after Cristina mention a medical crisis?,135186,Grey's Anatomy,10.47-14.11,grey_s03e12_seg02_clip_08,Burke turns to look at Cristina. 13148,Italian,French,Portugese,Spanish,English,3,What language is the patient speaking in after House comes in to share some good news?,135187,House M.D.,29.98-41.61,house_s03e24_seg02_clip_20,Spanish 13149,Sorenson did not like the people there.,Sorenson hated the weather.,Fresh lobster got old fast.,Sorenson did not like the traffic in Boston.,Sorenson hated the food in Boston.,2,What reason did Sorenson give for leaving Boston after Beckett asked about his time there?,135188,Castle,74.93-77.61,castle_s01e09_seg02_clip_01,Fresh lobster got old fast. 13150,Martha and Thomas were having an affair.,Emma and Dodd were having an affair.,Roger and Joanna were having an affair.,Sadie and Nina were having an affair.,Montgomery and Gates were having an affair.,3,Who did Beckett say was having an affair when she was talking to Weller about the recording?,135189,Castle,5.81-8.5,castle_s08e10_seg02_clip_11,Sadie and Nina were having an affair. 13151,"According to Rachel he called her ""fun Aunt Rachel.""",He called her an old bat.,He said she was a mean woman,He told Ross he did not like spending time with her.,He said she was a bad babysitter.,0,What did Ross's son call Rachel after she spent time with him?,135190,Friends,40.22-53.12,friends_s07e16_seg02_clip_21,"According to Rachel he called her ""fun Aunt Rachel.""" 13152,Howard opened the entrance door.,Howard went to open the refrigerator.,Howard drank milk.,Howard sit on a chair.,Penny cooked.,1,What did Howard when Leonard walked around the table.,135191,The Big Bang Theory,0-8.77,s01e08_seg01_clip_03,Howard went to open the refrigerator. 13153,perfect,Nothing ,"hang on a second there, custer",Good jobs,Do it now ,2,what did Joey told with Ross and chandler when Ross said with him,135192,Friends,0-56.96,friends_s02e21_seg02_clip_12,"hang on a second there, custer" 13154,Ted used to have bad acne.,Ted used to wear a cowboy hat.,Ted had an eye patch before.,Ted had facial hair.,Ted used to wear an earring.,3,What is different about Ted's face when he is remembering is first date with Jen?,135193,How I Met You Mother,18.49-56.79,met_s05e02_seg02_clip_13,Ted had facial hair. 13155,$25,$50,$100,$40,$55,1,How much money does chandler bet when playing foosball with joey?,135194,Friends,16.78-21.36,friends_s06e06_seg02_clip_04,$50 13156,Ryan took a picture from Beckett,Ryan took a bag from Beckett,Ryan took a pen from Beckett,Ryan took a phone from Beckett,Ryan took a blue file from Beckett,0,What did Ryan took from Beckett hands when he was talking to Castle?,135195,Castle,0.46-5.96,castle_s03e05_seg02_clip_22,Ryan took a picture from Beckett 13157,The Wifi password ,Money ,Shopping,Chocolates,Hugs,3,What is Sheldon using when he's trying to train Penny to his liking?,135196,The Big Bang Theory,23.09-38,s03e03_seg02_clip_11,Chocolates 13158,Because he's her husband and father of her son,Because she'd feel bad,Because he'd sue her,Because she doesn't want to go through a divorce,Because she doesn't think House will be there for her,0,What does Arlene say when House asks why she doesn't put her husband in a facility?,135197,House M.D.,16.1-30.37,house_s03e01_seg02_clip_11,Because he's her husband and father of her son 13159,she throws a napkin at Howard.,She tells howard that is not nice to say,"She says""oh, that's nice""",she rolls her eyes at Howard,She laughs,4,What does Bernadette respond after Howard talks about his mom's stay in Florida?,135198,The Big Bang Theory,15.34-18.1,s08e15_seg02_clip_00,She laughs 13160,Amy and Sheldon are in the car,Amy and Sheldon are at the movies,Amy and Sheldon are in the library,Amy and Sheldon are in the lab at work,Amy and Sheldon are in Sheldon's apartment,0,Where are Amy and Sheldon when they are having a conversation,135199,The Big Bang Theory,0-8.41,s10e12_seg02_clip_06,Amy and Sheldon are in the car 13161,He really had to pee.,He forgot he left his stove on at home.,He left his dog tied up outside.,Because he was upset his feelings for her were not reciprocated.,He was being called by someone outside.,3,Why did Ross leave before responding to Rachael?,135200,Friends,17.68-43.62,friends_s02e14_seg02_clip_09,Because he was upset his feelings for her were not reciprocated. 13162,His money.,His grades.,His penis.,His debt.,His roommate.,2,What couldn't Penny talk to Beth about when they were talking about Leonard?,135201,The Big Bang Theory,31.93-39.78,s03e11_seg02_clip_13,His penis. 13163,purple,red,yellow,black,blue ,0,What color was Martha jacket when she was talking to Castle?,135202,Castle,9.25-27.34,castle_s04e22_seg02_clip_07,purple 13164,On the roof,A door ,He's under a blanket ,from the hall,A window ,4,Where is Joey when he interrupts Rachel and Tag on the balcony? ,135203,Friends,53.66-58,friends_s07e08_seg02_clip_10,A window 13165,House is at the hospital.,House is at a coffee shop.,House is on an airplane.,House is at a charity ball.,House is on the train.,2,Where is House when House checks on Cuddy's nausea?,135204,House M.D.,0-3.99,house_s03e18_seg02_clip_19,House is on an airplane. 13166,a cup of coffee,a cell phone,a bus ticket,a backback,"A small, white fluffy dog",4,What is Jeremy holding when he tells Castle that he doesn't know where Shana went when she went out of town? ,135205,Castle,23.32-31.85,castle_s07e11_seg02_clip_08,"A small, white fluffy dog" 13167,They girls were trying to surprise Monica,They girls were trying to cook for Monica,They girls were trying to clean up for Monica,They girls were trying to paint for Monica,They girls were trying to re-decorate for Monica,0,What were the girls trying to do for Monica after she walked in,135206,Friends,0-7.56,friends_s07e19_seg02_clip_18,They girls were trying to surprise Monica 13168,House knew he should have used the foam.,House was reading things into Cuddy's words,House was letting his caseload stress him out.,House was taking on more than he could handle.,House hadn't slept in over 2 days.,1,Why was House so unhappy after he came into Wilson's office?,135207,House M.D.,66.77-89.02,house_s07e02_seg02_clip_09,House was reading things into Cuddy's words 13169,Bran Flakes.,Froot Loops.,Cheerios.,Rice Krispies.,Chex.,0,What cereal is behind Sheldon before he leaves the room?,135208,The Big Bang Theory,18.66-23.25,s06e14_seg02_clip_09,Bran Flakes. 13170,Ted is eating ice cream.,Robin is eating ice cream.,Barney is eating ice cream.,Stuart is eating ice cream.,Marshall is eating ice cream.,1,Who is eating ice cream in the back seat when Marshall is upset?,135209,How I Met You Mother,20.71-24.61,met_s03e15_seg02_clip_13,Robin is eating ice cream. 13171,Cafeteria,Office,Car,Home,Pub,3,Where did Foreman said he was going when he stood up from his seat?,135210,House M.D.,59.86-64.13,house_s05e23_seg02_clip_21,Home 13172,Nothing.,Mittens.,Gloves.,Trash bags.,Paper towels.,2,What is on Esposito and Castle's hands when searching Bardot's room?,135211,Castle,70.5-78.19,castle_s08e15_seg02_clip_03,Gloves. 13173,Joey's response was silence.,"Joey's response was ""Who me?""","Joey's response was ""What?""","Joey's response was ""I don't know what you're talking about.""","Joey's response was ""That's right.""",2,What was Joey's response when Rachel was speaking to him?,135212,Friends,14.18-18.61,friends_s03e17_seg02_clip_16,"Joey's response was ""What?""" 13174,A handbag,A menu,A scarf,A bunch of flowers,Some silverware,3,What is laying on the table when Phoebe and Monica are talking?,135213,Friends,19.22-21.36,friends_s03e15_seg02_clip_04,A bunch of flowers 13175,Green,Red,Blue,Purple,Yellow,0,What color is the laser when Beckett sprays it?,135214,Castle,52.1-56.28,castle_s03e13_seg02_clip_03,Green 13176,Chilling with the guys.,Working late.,Watching a game show.,Falling asleep.,Bored to death. ,1,What did Leonard tell Priya he was doing when he was at Howard's house?,135215,The Big Bang Theory,53.7-61.02,s04e19_seg02_clip_09,Working late. 13177,Ben,Monica,Chandler,Phoebe ,Rachel,0,Who is Ross holding when he walks in the door?,135216,Friends,23.11-28.21,friends_s02e20_seg02_clip_12,Ben 13178,Anything could happen Thursday,boring Thursday,Friday eve,nothing special Thursday,study night,0,"What was Thursday for Raj, Sheldon, Howard and Leonard when it was evening?",135217,The Big Bang Theory,45.12-57.43,s02e20_seg01_clip_02,Anything could happen Thursday 13179,She looked disappointed,She tackled him ,She slapped him,She kissed and hugged him,She hollered at him,3,What did Sam do when Wilson said he needs to change?,135218,House M.D.,67.23-71.93,house_s06e17_seg02_clip_16,She kissed and hugged him 13180,Asia,United States,United Kingdom,Africa,North Korea,4,What country did Sheldon mention after he turned the light on?,135219,The Big Bang Theory,23.32-29.62,s06e02_seg02_clip_10,North Korea 13181,Cross asks Martha for some juice.,Cross asks Martha for some Skittles.,Cross asks Martha for some chocolate.,Cross asks Martha for some water.,Cross asks Martha for some soda.,0,What does Cross ask Martha for after he says his blood sugar is low?,135220,Castle,0-11.4,castle_s06e12_seg02_clip_22,Cross asks Martha for some juice. 13182,A clock,The American Flay,A picture of a brid,A telephone,A collage of postcards,1,What was on the wall behind the fridge when Ross and Joey were drinking? ,135221,Friends,49.85-57.45,friends_s08e16_seg02_clip_06,The American Flay 13183,doing nothing,playing the piano,listening to music,processing mathmatics,misfiring neurological processors,0,What does House say the brain is doing when patrick is having his his brain photographed?,135222,House M.D.,0.45-11.75,house_s03e15_seg02_clip_04,doing nothing 13184,terrible,shy,honest,a player,idiot,3,What does Jen remember Ted coming across as when at the bar?,135223,How I Met You Mother,16.09-21.75,met_s05e02_seg02_clip_12,a player 13185,Joey's tie,Wedding flowers,A cane,His hands,A menu,3,What did Ross hold up before Chandler called him a baby?,135224,Friends,48.26-57.79,friends_s03e02_seg02_clip_16,His hands 13186,A box of chocolate ,Flowers ,Chinese food ,A package,A pizza,4,What is the man holding after Rachel opens the door ,135225,Friends,5.24-14.18,friends_s01e04_seg02_clip_13,A pizza 13187,laughs,claps his hands,turns around,cries,unclasps his hands,4,What does Leopold do after Castle asks him if he sent something to someone?,135226,Castle,0-6.9,castle_s05e17_seg02_clip_17,unclasps his hands 13188,gloomy,bored,irritated,amazed,angry,3,How did Leonard feel when Raj started talking finally to Penny?,135227,The Big Bang Theory,10.37-27.15,s01e08_seg02_clip_05,amazed 13189,He stops dancing and sits.,I apologizes and starts dancing faster.,He walks away.,"Yells, maybe I should stand on your feet.","No reaction, continues to dance at his own pace.",3,What was Ross's response when his dance partner said your not going fast enough? ,135228,Friends,53.03-58.31,friends_s08e01_seg02_clip_18,"Yells, maybe I should stand on your feet." 13190,In pigtails,Up in a ponytail,In a bun,Down straight with a side part,In braids,3,How was Amy's hair styled when she was talking to Penny?,135229,The Big Bang Theory,33.3-38.85,s06e03_seg02_clip_10,Down straight with a side part 13191,$3425,$4000,$300,$110,$1000,4,How much does House say the passes are worth when Wilson asks him what an accountant would say?,135230,House M.D.,11.8-21.78,house_s01e12_seg02_clip_11,$1000 13192,Penny is not doing anything,Penny is eating a bag of cookies,Penny is exercising,"Penny is painting her nails, and toes",Penny is playing a game on her laptop,4,What is Penny doing when she is talking to Sheldon?,135231,The Big Bang Theory,0-10.2,s02e03_seg02_clip_14,Penny is playing a game on her laptop 13193,alan tells him that he is not happy. ,the wall colors are very dark,a friend told castle how lonely alan is,he is just trying to get a reaction from alan,there are few pictures on the wall,4,how does castle know that alan is not living his life to the fullest when castle is explain to alan that he needs to get out more?,135232,Castle,58.22-69.5,castle_s08e19_seg02_clip_04,there are few pictures on the wall 13194,"""Because he will have me helping him""","""As long as it doesn't originate in a Russian man's colon""","""Because he is just smart enough to do the task""","""As long as he gets paid enough""","""As long as he isn't distracted by anyone""",1,What disclaimer does Sheldon add to the end of his sentence after he says that Howard can solve any problem.,135233,The Big Bang Theory,0-53.57,s08e22_seg02_clip_06,"""As long as it doesn't originate in a Russian man's colon""" 13195,In the window,In the hallway,In the bathroom,Behind the door,In his chair behind his desk,4,Where is Chase sitting before House reveals what the disease he believes the female black victim has?,135234,House M.D.,0-22.3,house_s03e05_seg02_clip_20,In his chair behind his desk 13196,With an axe.,With a butcher knife.,With a metal wire.,With the blade at the end of his cane.,With a machete.,3,How did House cut the zombie's head off after he got off the floor?,135235,House M.D.,37.27-47.53,house_s07e15_seg02_clip_11,With the blade at the end of his cane. 13197,Marshall called him with am emergency.,He's being chased by a dog.,He's late for work.,His crazy ex-girlfriend is chasing him.,He's trying to get his mind off of her rejection.,3,Why does Ted run after Stella leaves?,135236,How I Met You Mother,56.65-74.54,met_s03e13_seg02_clip_17,His crazy ex-girlfriend is chasing him. 13198,bored,happy,angry,gloomy,sleepy,2,How did Howard feel when he had to switch beds with Sheldon?,135237,The Big Bang Theory,45.35-54.53,s02e01_seg02_clip_11,angry 13199,I just can't do it,Deal.,I'll come back,This is a rejection,This isn't my dream,3,What did Chandler say the conversation was after saying it is not a negotiation?,135238,Friends,45.65-54.02,friends_s01e15_seg02_clip_13,This is a rejection 13200,He puts his coat on. ,He takes his coat off. ,He gets a beer from the fridge. ,He gets a soda from the fridge. ,He eats a sandwich. ,1,What does Joey do after he walks into his apartment?,135239,Friends,7.38-12.99,friends_s05e18_seg02_clip_10,He takes his coat off. 13201,She made a cake,nothing,She was making a list of woman,She made a car,She made a home ,2,What did Janine do when Janine told with Ross ?,135240,Friends,11.83-55.02,friends_s06e15-16_seg02_clip_20,She was making a list of woman 13202,She walked away,She smiled,She punched him,She hit him in the face,She throw water on him,1,What does Maria do after Bob confessed to cheating?,135241,House M.D.,14.62-20.15,house_s02e15_seg02_clip_18,She smiled 13203,House grabbed Cuddy's hand and pulled her closer.,House raised Cuddy's seat which brought her closer.,House lifted Cuddy up and held her.,House pulled Cuddy's hair.,House jumped on Cuddy.,1,How did House bring Cuddy closer to him when she was laying in her seat?,135242,House M.D.,3.99-9.18,house_s03e18_seg02_clip_19,House raised Cuddy's seat which brought her closer. 13204,Marshall.,Ted.,Lily.,Robin.,James.,1,Who is sitting across from Barney when he is at the bar?,135243,How I Met You Mother,0-4.48,met_s06e09_seg02_clip_12,Ted. 13205,She took a picture,She hugged her,She cried,She got a drink,SHe walked away,4,What did Monica's mother do after she told her she was not pregnant?,135244,Friends,8.45-12.52,friends_s08e01_seg02_clip_03,SHe walked away 13206,At the birthday party,At the family dinner table,In the in the kitchen,In his hospital bed,Around a poker table,4,Where is the patient sitting and coughing after House figures out what is wrong?,135245,House M.D.,33.83-55.12,house_s08e02_seg02_clip_23,Around a poker table 13207,perfect,Boring,sad,Bad,Ridiculous,4,what feeling did Ross and Chandler say when they used coffe,135246,Friends,27.74-59.03,friends_s02e21_seg02_clip_12,Ridiculous 13208,A photo album,A year book,A Newspaper clipping,A camp brochure,A magazine article,0,What did Chandler get out of chest under the television before showing it to Monica?,135247,Friends,23.21-27.85,friends_s07e06_seg02_clip_04,A photo album 13209,His cellphone,A TV,The elevator,Raj's computer,Penny's watch,2,What was Howard checking out before he admitted it was broken?,135248,The Big Bang Theory,16.15-19.67,s01e14_seg02_clip_01,The elevator 13210,Howard twisted his ankle while running a marathon.,Howard twisted his ankle playing basketball.,Howard twisted his ankle chasing an ice cream truck.,Howard twisted his ankle when he fell down a hill.,Howard twisted his ankle when he ran into a truck.,2,Why did Howard twist his ankle when he was outside?,135249,The Big Bang Theory,32.56-35.97,s08e23_seg02_clip_11,Howard twisted his ankle chasing an ice cream truck. 13211,On the couch,in his bed,On the floor,in a taxi,in a bus,0,Where is House when Wilson talks to him about having a matress delivered?,135250,House M.D.,0-18.67,house_s06e05_seg02_clip_01,On the couch 13212,Violet thought the chlorine might be affecting Paul's libido. ,"If Paul had a pool, Violet wanted to bring her family to go swimming. ",Violet knew a great pool cleaning service. ,"If Paul had a pool, he and his wife could have sex in it. ",Paul was always showing up in wet clothes and Violet was curious why. ,3,Why did Violet want to know if Paul had a pool when she asked him? ,135251,Grey's Anatomy,39.7-54.18,grey_s03e22_seg02_clip_14,"If Paul had a pool, he and his wife could have sex in it. " 13213,Lab results draw those conclusions ,He interviewed the parents,All have come to the same conclusion,Parents have similar medical records,Patients are siblings and have same condition,4,Why does House state condition must be genetic or environmental when arguing with Cameron about how to proceed medically?,135252,House M.D.,35.63-39.69,house_s03e19_seg02_clip_20,Patients are siblings and have same condition 13214,Leonard.,Amy.,Sheldon.,Raj.,Bernadette.,0,Who drives the car when Penny sat on the front seat?,135253,The Big Bang Theory,6.53-62.15,s08e24_seg02_clip_14,Leonard. 13215,He died.,He coughed blood on Cameron's face.,He went into cardiac arrest.,He hit Cameron.,He left the hospital room.,1,"What happened when Calvin coughed, after he said I think it's blood?",135254,House M.D.,34.03-43.55,house_s02e07_seg02_clip_06,He coughed blood on Cameron's face. 13216,Wilson is leaning against a wall.,Wilson is eating a snack.,Wilson is sitting on a staircase.,Wilson is coming out of his office.,Wilson is putting coins into a vending machine.,4,What is Wilson doing when House walks past him?,135255,House M.D.,36.94-44.96,house_s05e21_seg02_clip_20,Wilson is putting coins into a vending machine. 13217,To do list,Transplant list,No list,Failure list,Mortality list,1,What kind of list does the patient have to be put on after his liver fails?,135256,House M.D.,43.14-66.03,house_s08e17_seg02_clip_17,Transplant list 13218,The situation reminds her of another time Sheldon asked for help.,The Sheldon is nervous.,Sheldon's reluctance to admit he has a problem.,That he's asking HER about something he doesn't know.,She thinks Sheldon reminds her of a lost puppy.,3,What does Penny find amusing after Sheldon asks her for help.,135257,The Big Bang Theory,16.75-48.69,s04e14_seg02_clip_03,That he's asking HER about something he doesn't know. 13219,Placed the milk on the table.,Placed the milk in the fridge.,Poured himself some milk.,Handed the milk to Leonard.,Spilled the milk. ,1,What did Sheldon do after Leonard said yes?,135258,The Big Bang Theory,0-5.43,s01e10_seg02_clip_01,Placed the milk in the fridge. 13220,Shuts the door.,Stands up.,Cries.,Puts her head down.,Pushes her,1,What does Rachel do after Luisa says that she was a bitch?,135259,Friends,30.51-34.18,friends_s01e19_seg02_clip_12,Stands up. 13221,Vicky Butler,Vivian Butler,Veronica Butler,Viv Butler,Val Butler,4,What is the name of the victim Castle points to on the DMV picture when he points to the board?,135260,Castle,27.01-30.61,castle_s05e17_seg02_clip_09,Val Butler 13222,M.I.R.A.,N.C.A.A.,R.P.E.K.,U.N.C.F.,L.P.E.C.,0,What does the monitor say before he pulls it down?,135261,Castle,42.15-45.29,castle_s07e16_seg02_clip_20,M.I.R.A. 13223,the or,the bathroom,the linen closet,the waiting room,the cafeteria ,2,Where is izzie when she is talking wiith alex?,135262,Grey's Anatomy,0-4.49,grey_s02e17_seg02_clip_08,the linen closet 13224,House is talking about a case in his office,House is talking about a case in a conference room,House is talking about a case in the lobby of the hospital,House is talking about a case in Wilson's office,House is talking about a case in the on-call room,2,Where is House talking about the case when he is walking around,135263,House M.D.,0-8.66,house_s02e23_seg02_clip_21,House is talking about a case in the lobby of the hospital 13225,House can and will be blamed here,I can't be everywhere at the same time,Or his prank war distracted you,There are only a few elements I can say for sure are his faults,"We can't see eye to eye on anything, and this is what makes me worried.",2,"What did Cofield say before he said ""Or House makes Medicine a game"" ?",135264,House M.D.,0-7.82,house_s08e11_seg02_clip_21,Or his prank war distracted you 13226,The bathroom. ,The living room.,The bedroom,The kitchen.,The hallway. ,3,Where are Phoebe and Monica standing when Ross enters the apartment? ,135265,Friends,36.46-43.75,friends_s08e20_seg02_clip_13,The kitchen. 13227,The Sergeant takes Beckett away from the scene.,Alexis takes Beckett away from the scene.,Ryan takes Beckett away from the scene.,Martha takes Beckett away from the scene.,The EMTs take Beckett away from the scene.,3,Who takes Beckett away from the scene after Esposito recommends that she change her clothes?,135266,Castle,35.65-42.94,castle_s07e01_seg02_clip_01,Martha takes Beckett away from the scene. 13228,Cameron's Position.,Missionary,Feline,His own.,His posture,0,What position was House talking about after the opening sequence?,135267,House M.D.,1.36-10.9,house_s06e07_seg02_clip_07,Cameron's Position. 13229,Working as an Airline pilot,Las Vegas,Stripping on 3rd street,She's in the ground.,Eating downstairs,3,Where is Anita now when Ross is older?,135268,Friends,47.68-58.15,friends_s08e09_seg02_clip_15,She's in the ground. 13230,He takes off his jacket,He washes his hands,He looks for the stethoscope,He got a cut of water,He put up a drip,0,What does Chase do before going to help the patient?,135269,House M.D.,18.42-20.6,house_s07e22_seg02_clip_04,He takes off his jacket 13231,80 degrees.,75 degrees.,98 degrees.,65 degrees.,70 degrees.,0,What is the patient's temperature after Wilson asks Eric and Lisa what they are doing?,135270,House M.D.,9.7-13.69,house_s04e16_seg02_clip_12,80 degrees. 13232,Punched Joey.,Pushed Joey.,Slapped Joey.,Walked away.,Sat down.,2,What did Chandler do when he told Joey to wake up?,135271,Friends,14.8-21.76,friends_s08e22_seg02_clip_10,Slapped Joey. 13233,moonica reacts surprised because she thought joey was gay,monica reacts surprised that chandler and her are the only people leaving with the person they came with,monica reacts surprised because she thought charlie was lesbian,monica reacts surprised because phoebe has no one,monica reacts surprised because chandler told her he was gay,1,how does monica react to the whole scenario after she finds out about joey and ross,135272,Friends,60.16-63.66,friends_s10e01_seg02_clip_00,monica reacts surprised that chandler and her are the only people leaving with the person they came with 13234,"Monica yells ""Where is she?""","Monica yells ""We can't find her!""","Monica yells ""We've got a broken arrow!""","Monica yells ""Someone help me!""","Monica yells ""I can't do this anymore!""",2,What is Monica's distress call when she can't find a bridesmaid at Phoebe's wedding?,135273,Friends,0-10.36,friends_s10e12_seg02_clip_25,"Monica yells ""We've got a broken arrow!""" 13235,Ross hadn't been answering Phoebe's calls,Ross didn't show up for his meeting with Rachel,Ross didn't get his marriage to Rachel annulled.,Ross forgot Phoebe's birthday,Ross had been dating someone while he was still married to Rachel,2,What was Phoebe upset about when she confronted Ross?,135274,Friends,0-3.24,friends_s06e02_seg01_clip_01,Ross didn't get his marriage to Rachel annulled. 13236,She asked Chase,She sought out Foreman,She sought out Wilson,She asked House,She contacted the hospital in Boston,2,Who did Cameron seek out after Cuddy wouldn't confirm whether or not House had applied for a job in Boston?,135275,House M.D.,0-5.39,house_s03e15_seg02_clip_08,She sought out Wilson 13237,he walked out and locked the door,he slapped her ,he ran away ,he hugged her ,he cried ,0,what did Alex do after he told her that he did not know who she was. ,135276,Grey's Anatomy,6.5-13.5,grey_s03e24_seg02_clip_20,he walked out and locked the door 13238,happy and excited,Angry,he is bored,he is unconcerned,he is sad,1,How does Raj act after listening to the message?,135277,The Big Bang Theory,0-62.1,s01e08_seg02_clip_00,Angry 13239,Her bag,His phone,An envelope,Keys,A cup,2,What is House holding in his hand when he's talking to the woman?,135278,House M.D.,0-2.73,house_s04e08_seg02_clip_26,An envelope 13240,Wolf was going to propose,Wolf was going to pawn it,Wolf was going to auction it off,Wolf was going to burry it,wolf was going to keep it ,0,What did castle say wolf was going to do with the ring before wolf died?,135279,Castle,66.23-68.44,castle_s02e22_seg02_clip_20,Wolf was going to propose 13241,weak,boring,dominant,volatile,violent,2,What kind of personality did Howard say he had when he spoke to Bernadette?,135280,The Big Bang Theory,43.23-56.2,s08e21_seg02_clip_03,dominant 13242,She knew the victim,She is on probation,She has been promoted,Castle isn't allowed to work cases anymore,She's supposed to be on vacation.,0,Why doesn't Montgomery want Beckett there when she arrives at the crime scene?,135281,Castle,8.59-34.85,castle_s03e22_seg02_clip_00,She knew the victim 13243,Sit down,Let's go,Welcome,You look beautiful,To come back later,1,What did Harden tell Beckett when he opened the door?,135282,Castle,60.38-65.55,castle_s06e17_seg02_clip_10,Let's go 13244,She's trying to tell Sheldon she doesn't want to visit his mom this weekend.,She's not used to driving in this part of the city.,She's hinting to Sheldon about sleeping together.,She's trying to hide a secret from him.,She's going in for an interview for a new job.,3,Why is Amy nervous when she's talking to Sheldon in the car.,135283,The Big Bang Theory,22.11-56.9,s08e09_seg02_clip_06,She's trying to hide a secret from him. 13245,Raj opened a stove.,Raj sit on a chair around a table.,Raj opened a door.,Raj read a book.,Raj drank from a bottle.,1,What was doing Raj after Sheldon served a drink?,135284,The Big Bang Theory,0-50.87,s01e08_seg01_clip_03,Raj sit on a chair around a table. 13246,Eddie's collection of military models.,A boxy of clothing,Some of Eddie's baseball cards,Eddie's prescription medication,A fish tank,4,What does Tilly drop off when she comes to Chandler's apartment?,135285,Friends,25.53-52.51,friends_s02e18_seg02_clip_04,A fish tank 13247,her grandparents,her brother,her sister,her children,her parents,0,Who did Foreman say hadn't arrived yet when he talked to Lupe in her room?,135286,House M.D.,72.55-89.02,house_s03e20_seg02_clip_19,her grandparents 13248,Robin was helping Simon load his musical instruments into his van. ,Robin was helping Simon start his van. ,Robin was helping Simon change his van's tire. ,Robin was helping Simon do his taxes. ,Robin listening to Simon complain about his bandmates. ,0,What was Robin helping Simon with after the show ended?,135287,How I Met You Mother,35.44-49.14,met_s03e16_seg02_clip_09,Robin was helping Simon load his musical instruments into his van. 13249,"""Joey doesn't share food"" ",He hungry,he is happy ,He is not happy ,he moving ,0,What did Joey scream at Pheobe when they were at the coffee shop?,135288,Friends,0-8.32,friends_s10e09_seg02_clip_06,"""Joey doesn't share food"" " 13250,Castle ran into the road,Castle stayed in the hiding spot,Castle went to the payphone,Castle used his cell phone,Castle did nothing but stand there,2,What did Castle do after the car turned the corner?,135289,Castle,27.48-30.64,castle_s05e08_seg02_clip_07,Castle went to the payphone 13251,His keys,A cup of coffee,A cell phone,Flowers,Patient charts,4,What is Wilson holding when he talks to Cameron about the decision he needs to make?,135290,House M.D.,6.16-12.32,house_s05e01_seg02_clip_19,Patient charts 13252,House told wilson he does not need to own a gun because he does not have anything that needs protecting,House told wilson he lives on the streets ,House did not tell wilson his reasons for not needing to own a weapon,House told wilson he has an attack dog,House told wilson he has a taser for his own protection,0,Why did house tell wilson that he has no need to own a gun when they were eating,135291,House M.D.,0-19.12,house_s08e08_seg02_clip_08,House told wilson he does not need to own a gun because he does not have anything that needs protecting 13253,Castle told the guard to give it a rest.,Castle told the guard to take it easy.,Castle told the guard to buy him a drink first.,Castle told the guard to leave his daughter alone.,Castle told the guard to watch his baton.,2,What did Castle tell the guard to do when the guard was searching him?,135292,Castle,42.49-45.02,castle_s08e03_seg02_clip_16,Castle told the guard to buy him a drink first. 13254,A file,A photo,A video of security footage,An envelope of money,Handcuffs ,1,What did Esposito and Ryan show the hotel employee when they went to speak with him about a woman the employee recognized as Gretta Morgan?,135293,Castle,50.41-59.87,castle_s03e11_seg02_clip_17,A photo 13255,Penny better not have eaten it all.,I will be right back.,I think we have some left.,"If the yogurt works, he bought some delightful scented candles.",Leonard is lactose intolerant. ,3,What did Sheldon say after he said excellent to Elizabeth about the yogurt?,135294,The Big Bang Theory,20.64-26.41,s03e21_seg02_clip_03,"If the yogurt works, he bought some delightful scented candles." 13256,The moans and grunts from the elevator,The moans and grunts came from upstairs,The moans and grunts came from downstairs,The moans and grunts came from Penny's apartment,The moans and grunts from the stairways,3,Where was the moans and grunts coming from when Sheldon was in the hallway,135295,The Big Bang Theory,53.1-61.39,s08e13_seg02_clip_00,The moans and grunts came from Penny's apartment 13257,He ran into a building,He climbed a fence.,He ran into a crowd,He knocked him out,He got into a car,1,How did Mr. Stuckey lose Esposito when he was being chased?,135296,Castle,98.07-106.02,castle_s03e03_seg02_clip_16,He climbed a fence. 13258,Penny is helping her.,Leonard is helping her.,Bernadette is helping her.,Sheldon is helping her. ,Leslie is helping her.,3,Who is helping Howard's mom when she is trying on dresses?,135297,The Big Bang Theory,53.71-59.02,s05e21_seg02_clip_10,Sheldon is helping her. 13259,Stryker and Marie had an altercation where he gave her a black eye.,Stryker was alw on hi.ays late for meetings and appointments.,"Stryker altere test data on a critical experiment,",Marie was worried all his UFO talk would destroy their credibility.,Stryker made a pass at Marie and she filed sexual harassment charges.,3,Why did Marie have Stryker kicked off the research team after they worked together 3 years ago?,135298,Castle,49.96-63.47,castle_s03e09_seg02_clip_08,Marie was worried all his UFO talk would destroy their credibility. 13260,As a comparison for how lewd Brent's comments were.,Because the recording reminded Castle of Alec Baldwin's acting.,Because the recording was of Alec Baldwin's messages.,As a comparison for how bad the recording was.,To show Brent how to record a good message.,0,Why does Castle mention Alec Baldwin after the recording is played?,135299,Castle,23.42-31.98,castle_s01e02_seg02_clip_09,As a comparison for how lewd Brent's comments were. 13261,joyful,irritated,bored,angry,irritated,0,"How did Leonard, Raj, and Howard feel when Sheldon walked in with a dress?",135300,The Big Bang Theory,23.96-37.35,s05e21_seg02_clip_07,joyful 13262,phone,wallet,receipt,gum,notepad,0,What does Chandler take out of his pocket when he is sitting on the couch with Monica?,135301,Friends,0.29-6.9,friends_s10e05_seg02_clip_15,phone 13263,He flew up in the air.,He grabbed his hat.,He fell backwards.,He held on to a door.,He ran out of there.,2,What did Marshall do when the truck started moving.,135302,How I Met You Mother,0.31-2.45,met_s02e11_seg02_clip_14,He fell backwards. 13264,Didn't he also work with Sheldon?,I heard he was a criminal.,I heard he was really nice. ,"Well, yeah, he'd been living with Sheldon.",Do you know what ever happened to him?,3,What did Penny say after Leonard said Sheldon's old roommate had a really deranged look?,135303,The Big Bang Theory,10.54-16.75,s03e22_seg02_clip_00,"Well, yeah, he'd been living with Sheldon." 13265,Out side the victim's window,Out side the victim's apartment door,Out side the victim's car,Out side the victim's apartment building,Out side the victim's work place,1,Where are is Beckett and Castle standing when the Super asks if he should give her stuff to her friend?,135304,Castle,84.74-90.15,castle_s02e05_seg02_clip_19,Out side the victim's apartment door 13266,A flask. ,Flowers. ,A garment bag. ,A basket. ,Her shoes. ,2,What is Phoebe carrying when she walks into Joey's apartment?,135305,Friends,13.87-17.61,friends_s10e12_seg02_clip_10,A garment bag. 13267,Because other person is controlling the toy plane. ,Because the toy plane is controlling itself.,Because the toy plane is in automatic.,Because the toy plane is malfunctioning.,Because the toy plane is small.,0,Why Howard can not control the toy plane when he moves the control?,135306,The Big Bang Theory,19.38-52.38,s08e22_seg02_clip_16,Because other person is controlling the toy plane. 13268,Ross began dancing with Mona.,"Rachel said ""No its my turn"".","A chubby 9 year old girl said ""I'm next"".",Ross said oh no I'm tired.,"Phoebe said ""I'm next"".",2,What happened after Mona asked Ross if it was her turn to dance with him?,135307,Friends,2.79-7.75,friends_s08e01_seg02_clip_18,"A chubby 9 year old girl said ""I'm next""." 13269,Make a basket,Throw it over his shoulder,Put it in the closet,Dribble across the apartment,He holds onto it and sits down.,1,What does Chandler do with the basketball after he and Ross decide not to go play?,135308,Friends,57.06-62.05,friends_s08e20_seg02_clip_00,Throw it over his shoulder 13270,Pre-law,Pre-med,Psychology,Marketing,Economics,0,What was Tom studying in college before he got caught?,135309,Castle,9-15.75,castle_s04e22_seg02_clip_20,Pre-law 13271,Sheldon puts his ear to the door to listen for Leonard.,Sheldon whispers Leonard's name through the door.,Sheldon slides a comic book under Leonard's door.,Sheldon opens the door and goes into Leonard's bedroom.,Sheldon repeatedly knocks on Leonard's door while calling his name.,4,What does Sheldon do after he approaches Leonard's bedroom door in his bath robe?,135310,The Big Bang Theory,36.41-41.46,s06e02_seg02_clip_08,Sheldon repeatedly knocks on Leonard's door while calling his name. 13272,"House told foreman he is walking back because, he is not done laughing","House told foreman he is walking back because, he is not done reading","House told foreman he is walking back because, he is not done swimming","House told foreman he is walking back because, he is not done eating","House told foreman he is walking back because, he is not done testifying",4,Why did House tell Foreman he is walking back when he sees him?,135311,House M.D.,64.45-69.82,house_s08e11_seg02_clip_23,"House told foreman he is walking back because, he is not done testifying" 13273,That he got into an argument with his girlfriend.,That he was up late making love with his girlfriend.,That he had to stay up late for work.,That he stayed up late playing video games.,That he didn't sleep well because he is sick.,1,What does Sheldon think when Leonard says that he had a horrible night?,135312,The Big Bang Theory,30.08-37.21,s03e02_seg02_clip_10,That he was up late making love with his girlfriend. 13274,To get Roger to confess.,To get Roger to show the safe.,To get Roger to open the safe.,To get Roger out of the house.,To get Roger to leave the room.,2,Why did Castle promise Joanna a main character in his next book before she speaks into Roger's ear?,135313,Castle,77.92-84.1,castle_s08e10_seg02_clip_20,To get Roger to open the safe. 13275,He slides down the stair railing,He goes down the elevator,He manipulates his wheel chair down the stairs ,He walks down the stairs with his cane,He goes down the escalator with his cane,2,How does House get to the operating room when he wants the surgeon to keep looking?,135314,House M.D.,60.97-73.52,house_s03e13_seg02_clip_18,He manipulates his wheel chair down the stairs 13276,Five,Three,One ,Four,Two,4,How many people were in the hallway with Castle and Esposito after Castle said Beckett was not unfriendly?,135315,Castle,39.11-46.01,castle_s05e07_seg02_clip_11,Two 13277,At the hospital with Sheldon.,At home.,With Raj on a date.,In bed.,At the local Pay Less.,0,Where is Leonard's mom when he visits Penny?,135316,The Big Bang Theory,10.07-61.02,s02e15_seg02_clip_10,At the hospital with Sheldon. 13278,A dog. ,An umbrella. ,A scarf. ,A shirt. ,A rain coat. ,4,What does Phoebe have on her arm when she is at the counter next to Rachel?,135317,Friends,2.47-5.86,friends_s08e02_seg01_clip_00,A rain coat. 13279,Giving away rocket secrets to a North Korean spy,Discovering a cure for baldness,Reinventing the wheel,Proving pineapple is an acceptable pizza topping,Inventing self tying shoes,0,What did Sheldon say Leonard was on the verge of doing when they first met?,135318,The Big Bang Theory,43.42-53.17,s04e07_seg02_clip_10,Giving away rocket secrets to a North Korean spy 13280,they are cell mates,they are just friends ,they are cousins,they are sisters,they are realtives,1,Who is Darrien to 13 when Chase asks if they are cell mates?,135319,House M.D.,27.47-35.27,house_s07e22_seg02_clip_04,they are just friends 13281,He we vain and asked him to take his picture,He was laughing and posed for the camera,He was angry and demanded the camera,He was fun and asked him to take a selfie,He was surprised and fainted on camera,2,How did Zane react after seeing that Jake was filming him?,135320,Castle,0-8.07,castle_s08e20_seg02_clip_10,He was angry and demanded the camera 13282,They decide that Lily should focus more on painting,They decide to refuse the offer,They decide to think about the offer a little more,They try to get more money out of Barney,They celebrate and decide to go to Loch Ness,4,What do Lily and Marshall do after Barney says he is willing to pay Lili $5000 for the portrait?,135321,How I Met You Mother,46.86-53.68,met_s02e13_seg02_clip_13,They celebrate and decide to go to Loch Ness 13283,Joey and Chandler punched the television.,Joey and Chandler rushed to the television to turn it off.,Joey and Chandler changed the channel.,Joey and Chandler recorded the moment on a camera.,Joey and Chandler turned the volume down on the television.,1,What did Joey and Chandler do after they saw Chandler's face on the television screen?,135322,Friends,32.77-35.71,friends_s05e19_seg02_clip_19,Joey and Chandler rushed to the television to turn it off. 13284,He was expecting it to have more sex,He isn't a strong reader,He watched the movie first,There are too many unisex names,He keeps getting scared and has to put the book in the freezer,3,Why is Joey so confused when he is talking about the book Little Women?,135323,Friends,0-28.68,friends_s03e13_seg02_clip_08,There are too many unisex names 13285,Amy. ,Sheldon.,Howard.,Raj.,Priya.,1,Who was Leonard talking about before he said Penny's was an eye-opener?,135324,The Big Bang Theory,21.01-30.14,s04e13_seg02_clip_02,Sheldon. 13286,put on her gloves,take off her coat,hang up her phone,grab her gun,pick up her purse,2,What does Beckett do before saying something about Stacey's hidden key?,135325,Castle,17.5-21.54,castle_s03e11_seg02_clip_11,hang up her phone 13287,Beckett has a orange shirt on.,Beckett has a green shirt on.,Beckett has a purple shirt on.,Beckett has a blue shirt on.,Beckett has a white shirt on.,3,What color shirt is Beckett wearing when Castle discusses files on Tyson from Sing Sing?,135326,Castle,0-8.9,castle_s04e04_seg02_clip_16,Beckett has a blue shirt on. 13288,A little boy,An Old Man,An Old woman,A Teenage Boy,A Teenage Girl,1,Who is behind the first door when Beckett and Castle approach it?,135327,Castle,0-19.81,castle_s01e02_seg02_clip_17,An Old Man 13289,Vikrum is in the library,Vikrum is in the bathroom,Vikrum is in the living room,Vikrum is in the kitchen,Vikrum is in the police department,3,Where is Vikrum when Beckett walked in the room?,135328,Castle,24.01-33.13,castle_s08e02_seg02_clip_13,Vikrum is in the kitchen 13290,He nodded,He belched,He waved,He smiled,He knocked the table,1,How did House responded when Taub asked him if he hasn't slept?,135329,House M.D.,31.92-36.13,house_s05e22_seg02_clip_16,He belched 13291,Fixing his hair while looking in the mirror.,Sitting on the couch drinking a beer. ,Reading a book at the desk. ,Making food in the kitchen.,Watching television. ,0,What was Ted doing when Barney pointed out step 2? ,135330,How I Met You Mother,0-8.9,met_s03e11_seg01_clip_03,Fixing his hair while looking in the mirror. 13292,Chandler was going to work. ,Chandler was going to unpack. ,Ross was downstairs and Chandler was going to meet him. ,Chandler was headed to charm school. ,Chandler was on the way to see his therapist. ,1,Where was Chandler supposedly going when he left the apartment? ,135331,Friends,9.92-16.33,friends_s05e01_seg02_clip_15,Chandler was going to unpack. 13293,He was picking a fight,Lucas apologized,Lucas got up to help him.,Lucas didn't do anything.,Lucas ran away.,0,How did Lucas react after tripping House in the cafeteria?,135332,House M.D.,66.96-76.64,house_s06e12_seg02_clip_23,He was picking a fight 13294,Rachel invited herself on stage during Monica's talent show ,Rachel stole Monica's boyfriend in high school,Rachel hooked up with Monica's cousin at her 16th birthday party,Rachel always tries to one-up Monica when they compete,Rachel popped the soccer ball after Monica beat her at playing ,2,What memory does Monica bring up to prove her point after Rachel denies stealing attention from Monica?,135333,Friends,31.09-36.7,friends_s07e01_seg02_clip_16,Rachel hooked up with Monica's cousin at her 16th birthday party 13295,The sound of Penny eating celery. ,The sound of Penny's voice. ,The sound of Sheldon's voice. ,The sound of Amy's voice. ,The sound of Beverly's voice. ,0,"What is the only sound in the apartment when Penny, Mrs. Cooper, Beverly, Amy, and Sheldon are there?",135334,The Big Bang Theory,52.5-64.02,s09e24_seg02_clip_06,The sound of Penny eating celery. 13296,Into the pan.,Into the green bowl.,Into the blue bowl.,Into the silver bowl.,Into the white bowl.,4,Where is Monica putting the green asparagus after Rachel says what am I making him anyway?,135335,Friends,30.61-39.92,friends_s04e18_seg02_clip_03,Into the white bowl. 13297,Wade found the money on the ground.,Wade found the money in Vega's car.,Wade found the money Vega owed him on the dead Vega.,Wade found the money in a safe.,Wade found the money on Vega's girlfriend.,2,Where did Wade say he found the money Vega owed him when he discusses Vega's debt with Castle and Beckett?,135336,Castle,15.18-31.26,castle_s02e15_seg02_clip_06,Wade found the money Vega owed him on the dead Vega. 13298,puts them in a stroller,gives them to chandler,hands them to monica,puts them on the floor,puts them in their bassinets ,4,what does joey do with the two babies when he is done holding them?,135337,Friends,0-6.3,friends_s10e17-18_seg02_clip_23,puts them in their bassinets 13299,Because he thinks she is there to make fun of him.,Because he thinks she is there to kill him.,Because he thinks she is there to convince him to live.,Because of the flames.,Because he thinks she is the devil.,2,Why does the man thinks that he is in hell before talking to the blonde?,135338,House M.D.,0-7.51,house_s08e22_seg02_clip_17,Because he thinks she is there to convince him to live. 13300,He is just seating straight.,His standing up and has his hand on his waist.,His arms are crossed and his seating,He has his head down and with his right arm on his forehead.,He is laying down on a couch.,3,What is the initial pose of Dr House before telling the man the bad news?,135339,House M.D.,0-9.32,house_s03e07_seg02_clip_22,He has his head down and with his right arm on his forehead. 13301,He burps,He passes out,He starts singing,He eats a banana,He kneels down,0,What does house do after he drinks all of the energy drink?,135340,House M.D.,29.82-35.78,house_s05e22_seg02_clip_16,He burps 13302,her purse,a white board,her computer,a yellow coffee mug,the television,3,What is in front of Amy when she talks to Sheldon about compromises?,135341,The Big Bang Theory,0-4.5,s06e05_seg02_clip_03,a yellow coffee mug 13303,Foreman,Wilson,Cameron,House,Taub,4,Which doctor is preforming the ultrasound when the patient asks for another doctor?,135342,House M.D.,9.06-13.14,house_s04e05_seg02_clip_08,Taub 13304,Raj has his fork in hand.,Raj has soy sauce in his hand.,Raj has his phone in hand.,Raj has a drink in his hand.,Raj has nothing in his hand at all.,1,what does Raj have in hand when talking about the pillow fight scene?,135343,The Big Bang Theory,69.11-73.81,s07e17_seg01_clip_00,Raj has soy sauce in his hand. 13305,a hospital gown,a sweater,a tee shirt,a dress,a suit,0,What is Rachel wearing when she is talking with Ross?,135344,Friends,3.58-10.18,friends_s08e22_seg02_clip_07,a hospital gown 13306,Chase,Foreman,Wilson,Ryan,Coleman,2,Who is talking to House about the power of the mind when he and House are in the laboratory together?,135345,House M.D.,0-17.48,house_s02e13_seg02_clip_19,Wilson 13307,She sits down. ,She leaves. ,She cries. ,She faints. ,She hits Rachel. ,0,What does Jill do after she gestures towards Ross and Phoebe?,135346,Friends,50.18-57.02,friends_s06e13_seg02_clip_05,She sits down. 13308,On a chair,On a bench,On the examining table,She was standing,On the doctors lap,2,Where was Rachel sitting when she was talking to the doctor?,135347,Friends,4.17-7.15,friends_s08e11_seg02_clip_07,On the examining table 13309,Lion,Bear,Lamb,Horse,Dog,2,What kind of stuffed animal does Wilson give Even when he walks in?,135348,House M.D.,65.58-73.5,house_s07e07_seg02_clip_13,Lamb 13310,He puts his feet up on the coffee table and crosses and recrosses them.,He takes a drink of coffee.,He stands up and leaves the room.,He picks up a book.,He stands up and walks over to Monica.,0,What does Chandler do after he explains how Dr. Monkey came up?,135349,Friends,16.03-27.12,friends_s06e12_seg02_clip_14,He puts his feet up on the coffee table and crosses and recrosses them. 13311,black,grey,white,blue,green,0,"What color is the shirt House is wearing when he say's ""Obviously...""?",135350,House M.D.,0-9.82,house_s06e20_seg02_clip_03,black 13312,He says Amber wants House to see he made a mistake and rub his face in it.,He says Amber wants to become House's lover.,He says Amber wants to write a paper with him to further her career.,He says Amber wants to become the head of the hospital's trauma center.,He says Amber wants to treat Roz Viner because Amber was once her biggest fan.,0,"What motivation does House attribute to Amber wanting to stay in his orbit before Amber declares, ""It's going to be awesome?""",135351,House M.D.,80.52-91.11,house_s04e12_seg02_clip_03,He says Amber wants House to see he made a mistake and rub his face in it. 13313,Pete,The ugly guy,The plumber,Spackle-back Larry,Chandler,3,Who does Monica mention after Phoebe says the translator is kind of cute?,135352,Friends,11.6-14.95,friends_s03e15_seg02_clip_04,Spackle-back Larry 13314,She said not really the walked away.,She said not really then gave him a hug.,She said not really then laid down.,She said not really then laid her head on his chest.,She said not really then dropped her head.,3,How did Alexis respond to Castle after he asked her if his explanation helped her?,135353,Castle,109.54-116.94,castle_s04e06_seg02_clip_26,She said not really then laid her head on his chest. 13315,kill himself,escape to Mexico,go into hiding,bury the body,burn the body,1,How does Grady think he can escape murder after he kills Castle?,135354,Castle,17.87-27.74,castle_s07e07_seg02_clip_25,escape to Mexico 13316,The clinic is short on nurses,That the clinic is overbooked,The clinic is running out of medical supplies.,The clinic has no air conditioning,That the doctor did not show up,4,What does the nurse disclose when Dr. Cuddy enters the clinic?,135355,House M.D.,43.92-66.74,house_s06e13_seg02_clip_07,That the doctor did not show up 13317,A fishing trip.,To a wedding.,On a hunting trip. ,On a road trip to the grand canyon.,On a NYC tour.,0,Where did Jerry say he was going with JJ before barney stated pouring shots?,135356,How I Met You Mother,32.84-39.65,met_s06e21_seg02_clip_03,A fishing trip. 13318,Hat,Laptop,Desk,Cup,Speaker,2,What was Ted's hand resting on before talking with Ryan?,135357,Castle,10.35-19.36,castle_s03e09_seg02_clip_04,Desk 13319,bored,happy,peaceful,angry,tired,3,How did Sheldon feel when he signed with Raj?,135358,The Big Bang Theory,37.22-61.02,s03e05_seg02_clip_06,angry 13320,The fridge.,The table.,The cabinet.,The floor.,The bookcase.,1,Where did House pick up the mug from before he took a few sips from it?,135359,House M.D.,78.51-84.63,house_s08e15_seg02_clip_00,The table. 13321,Cuddy,Cameron,Stacy,Chase,Foreman,2,Who is talking to House when his is on the hospital bed as a patient?,135360,House M.D.,0-3.52,house_s01e21_seg02_clip_22,Stacy 13322,Looking at a white board,Looking at an x-ray,Looking at the patient's chart,Looking at a computer screen,Looking at a chemical reaction,3,What are the doctors doing when they meet to discuss the prognosis of the patient?,135361,House M.D.,60.74-63.82,house_s05e01_seg02_clip_19,Looking at a computer screen 13323,Get out!,I'm sorry.,Five carbs only.,Pizza @ 10.,Close tab.,0,What does the sign behind Ross read after he shares his proposal?,135362,Friends,31.06-40.03,friends_s04e20_seg02_clip_09,Get out! 13324,Call me if you need anything.,I will call you.,"Don't call me, I will be busy.",Call your granny.,Call the principal.,0,What said Castle to Alexis before leaving her?,135363,Castle,32.97-38.46,castle_s03e08_seg02_clip_10,Call me if you need anything. 13325,Flower,Dog,Pencil,Cat,Donut,3,What is Phoebe holding when Ross is holding a cup?,135364,Friends,0-2.14,friends_s04e02_seg02_clip_08,Cat 13326,Ellis is no longer a surgical patient and thus doesn't need him.,Ellis is his mother,Ellis is his wife,George doesn't like her.,Richard is supposed to watch her.,0,Why does George not want to watch Ellis after she orders him around?,135365,Grey's Anatomy,26.27-55.56,grey_s02e04_seg02_clip_04,Ellis is no longer a surgical patient and thus doesn't need him. 13327,Depends on the sickness,Yes,No,always,sometimes,2,"In the US, can an employer fire a worker after they become ill?",135366,House M.D.,75.17-90.02,house_s03e08_seg02_clip_04,No 13328,Beckett is at a school,Beckett is at a cafe,Beckett is at a nightclub,Beckett is in the conference room,Beckett is at a fitness club,3,Where is Beckett when she is talking to the man in the beige suit,135367,Castle,72.57-82.21,castle_s04e18_seg02_clip_06,Beckett is in the conference room 13329,The park. ,Sheldon's apartment. ,The stairwell. ,The coming book store. ,A restaurant. ,2,Where were Amy and Sheldon when they were hugging?,135368,The Big Bang Theory,0-4.56,s08e17_seg02_clip_15,The stairwell. 13330,Castle and Beckett are at a coffee shop.,Castle and Beckett are at a library.,Castle and Beckett are at a grocery store.,Castle and Beckett are at the police station.,Castle and Beckett are at a rest stop on the highway.,1,Where are Castle and Beckett when they track down Kingfish?,135369,Castle,18.24-89.82,castle_s06e12_seg02_clip_22,Castle and Beckett are at a library. 13331,He is good looking. ,He has a good job. ,He is Canadian. ,He used to play hockey. ,He is missing teeth. ,3,Why does Robin say she has a crush on the sports guy when they are drinking? ,135370,How I Met You Mother,8.9-22.72,met_s03e11_seg01_clip_03,He used to play hockey. 13332,House was standing beside Wilson and Cuddy.,House was sitting on a chair next to where Wilson and Cuddy were standing.,House was in the lab.,House was not at work.,House was not sitting.,1,Were was House when Cuddy and Wilson were having an argument?,135371,House M.D.,6-9.69,house_s04e16_seg02_clip_13,House was sitting on a chair next to where Wilson and Cuddy were standing. 13333,They were fussing about breakfast.,They were fussing about the game.,Joey and Chandler were fussing about Joey using Chandler's toothbrush.,They were fussing about dinner.,They were fussing about a girl.,2,What were Joey and Chandler talking about when they were fussing?,135372,Friends,32.69-66.04,friends_s02e16_seg01_clip_00,Joey and Chandler were fussing about Joey using Chandler's toothbrush. 13334,A trash dump,An underground facility,A space station on Mars,Under the Earth,Dubai,2,Where is the setting located after they change scenes?,135373,Castle,8.97-13.9,castle_s07e16_seg02_clip_20,A space station on Mars 13335,Eat a sandwich. ,Throw the phone out the window. ,Dump his tea down the sink. ,Put down his teabag and walk over to Sheldon. ,Run out of the room. ,3,What does Leonard do after Sheldon's phone rings?,135374,The Big Bang Theory,59.02-69.05,s06e06_seg02_clip_16,Put down his teabag and walk over to Sheldon. 13336,in the bed,in the movie theater,at the library,in a bar,in the kitchen,1,Where is Leonard sitting when he says he is nervous?,135375,The Big Bang Theory,44.44-47.02,s09e11_seg02_clip_16,in the movie theater 13337,Barney,Marshall's family preacher.,Ted.,Robin.,Marshall's dad,0,Who performs Marshall and Lilly's first wedding when they are outside?,135376,How I Met You Mother,0.52-26.52,met_s02e21_seg02_clip_18,Barney 13338,Rachel apologized for eating the last piece of pizza.,Rachel apologized for handling the situation horribly.,Rachel apologized for not waking her up in the morning.,Rachel apologized for having loud music on all day.,Rachel apologized for not inviting her to breakfast.,1,Why did Rachel apologize to Phoebe after she went into her room?,135377,Friends,9.9-16.21,friends_s06e07_seg02_clip_12,Rachel apologized for handling the situation horribly. 13339,Paul,Patrick,Paulie,Paolo,Peter,1,Who does Pete say was the server when he went out with Marie?,135378,Castle,34.44-42.59,castle_s04e06_seg02_clip_22,Patrick 13340,A magazine.,A Harry Potter book.,A folder.,His cellphone.,A badge.,2,What did Ryan give Beckett after he said the beat down was real?,135379,Castle,36.34-44.79,castle_s06e09_seg02_clip_25,A folder. 13341,A skeleton.,A poster of the human body.,A model of the human body.,A TV monitor.,A medicine chart.,3,What was behind House when he told Foreman where to find a Galvanometer?,135380,House M.D.,39.01-44.52,house_s02e12_seg02_clip_01,A TV monitor. 13342,You look so sad. Like a wet puppy.,Come in but wipe your feet.,"Sure, come in. I'll get the wine.",Fine. Come in. You can start while I finish grading some papers.,Don't track mud in silly boy. ,3,What did Lily say she would do after she let Barney in?,135381,How I Met You Mother,21.9-27.52,met_s02e06_seg02_clip_15,Fine. Come in. You can start while I finish grading some papers. 13343,Queensboro.,Sing Sing.,Fishkill.,Bedford Hills.,Rikers.,4,Where did the officer tell Nina she will be sent to at the end of the day when she asked her about her trial?,135382,Castle,30.4-34.61,castle_s08e10_seg02_clip_15,Rikers. 13344,A bearded man. ,Narcotics.,Gangs.,Terrorist attacks.,Car accidents.,0,What is pictures in the photographs on the white board when the cops leave the room? ,135383,Castle,5.28-14.96,castle_s07e20_seg02_clip_16,A bearded man. 13345,The murdered himself told the police about it,He was found by the garbageman came to pick up the trash,He was found by the cable guy who went to install cable,He was found by the real estate lady who showed up to show the property,Kids were flying a drone in the area and spotted the body.,3,How was Father Joe McMurtry'd body discovered after his murder?,135384,Castle,62.76-68.99,castle_s05e08_seg02_clip_01,He was found by the real estate lady who showed up to show the property 13346,She tells him she wants to call off the engagement.,She tells him to get her an expresso.,She tells him to sit down.,She tells him she wants a puppy.,She says she wants a child.,2,What does Monica tell Chandler to do after she sees him?,135385,Friends,10.55-29.08,friends_s07e18_seg02_clip_08,She tells him to sit down. 13347,"Hugging him,",Sitting across from him,Standing on a chair.,Back turned towards him.,Leaning on a post,4,How is Cameron postured when she is talking to Chase?,135386,House M.D.,17.95-24.26,house_s06e03_seg02_clip_20,Leaning on a post 13348,Alex told Doyle not to allow him to eat any sweets,Alex told Doyle not to allow him to eat any solid food,Alex told Doyle not to allow him to drink any water,Alex told Doyle not to allow him to have any cigarettes,Alex told Doyle not to allow him to have anything with gluten ,2,What did Alex tell Doyle not to allow the patient to have after he left his room,135387,Grey's Anatomy,34.93-48.54,grey_s02e10_seg02_clip_08,Alex told Doyle not to allow him to drink any water 13349,Grey says that Derek was in shock and not thinking clearly.,Grey says that she didn't agree with Derek's principles.,Grey said that Derek was talking in his sleep.,Grey said that Derek was feeling sick.,Grey said that Derek was too happy. ,0,Why does Grey tell Burke that it wasn't a good idea when they are in surgery?,135388,Grey's Anatomy,4.7-94.03,grey_s02e18_seg02_clip_18,Grey says that Derek was in shock and not thinking clearly. 13350,Beckett is surprised because Hayley was completely sober.,Beckett is surprised because Hayley was on too many drugs for one person to handle.,Beckett is surprised because Hayley had one of the highest blood alcohol contents she'd ever seen.,Beckett is surprised because Hayley had apparently done a lot of heroin before she died.,Beckett is surprised because Hayley shows no signs of distress.,0,Why is Beckett surprised when she receives Hayley's toxic screening results?,135389,Castle,49.15-61.44,castle_s02e07_seg02_clip_10,Beckett is surprised because Hayley was completely sober. 13351,Putting on his belt.,Tying his tie.,Putting on his jacket.,Buttoning his shirt.,Buttoning his pants.,3,What was Joey doing when he was talking to Ross and Chandler about going to the coffeehouse?,135390,Friends,27.15-35.12,friends_s02e21_seg02_clip_12,Buttoning his shirt. 13352,Shopping for costumes. ,Playing a video game.,Looking through comic books.,Eating Dinner.,Walking down the college hall.,2,"What are Sheldon, Howard, and Leonard doing when Leonard says he got new boots this year?",135391,The Big Bang Theory,4.41-10.29,s04e11_seg02_clip_04,Looking through comic books. 13353,Gold clubs,Bicycle,Red wagon,Planter,Tool box,2,What was Monica beside when she was talking about everything being destroyed? ,135392,Friends,56.14-61.1,friends_s07e13_seg02_clip_22,Red wagon 13354,Sheldon.,Penny.,Amy.,Raj.,Leonard.,1,Who walks in after Zack says that he forgot the rest?,135393,The Big Bang Theory,53.97-58.63,s04e11_seg02_clip_07,Penny. 13355,There is no one else there,It is Out of Order,Everyone is watching the table tennis match,There is no pinball machine,The pinball machine is facing the wall,1,Why is no one playing the pinball machine over Chandler's right shoulder when Chandler is watching the table tennis match/,135394,Friends,57.07-61.1,friends_s09e23-24_seg02_clip_41,It is Out of Order 13356,They are in Sheldon's car. ,They are in Leonard's car. ,They are in Raj's car. ,They are on Howard's scooter. ,They are in Amy's car. ,1,Where are Sheldon and Leonard when they are hanging out?,135395,The Big Bang Theory,0-16.21,s08e19_seg02_clip_07,They are in Leonard's car. 13357,on the floor,on a desk,In a office chair,on a bed,on a toilet,2,What was house sitting on when Chase was talking to him?,135396,House M.D.,11.25-16.41,house_s01e13_seg02_clip_24,In a office chair 13358,Napkins,Drinking cups,Plates,Food,A stack of money,4,"What is on the table when Burman ""apologizes for the theatrics"" while talking to the detectives?",135397,Castle,63.92-67.52,castle_s06e19_seg02_clip_03,A stack of money 13359,Two pigtail braids,Up in a bun,Hanging down in curls,A single ponytail,Two ponytails,4,How was Phoebe's hair when she ended the phone call?,135398,Friends,33.51-43.23,friends_s07e15_seg02_clip_08,Two ponytails 13360,He tells him to sell this place to Starbucks,He tells him Rachel loves him,He tells him to bring him a chocolate frappe,He calls him an ezel.,He tells him to mind his own business,3,What does Ross tell Gunther after Joey leans back?,135399,Friends,28.53-39.39,friends_s08e07_seg02_clip_09,He calls him an ezel. 13361,Sophie had hip replacement surgery two years ago.,Sophie had hip replacement surgery months ago.,Sophie had hip replacement surgery 1 year ago.,Sophie had hip replacement surgery last week.,Sophie had hip replacement surgery yesterday.,1,When did Sophie have hip replacement surgery when she was in the hospital?,135400,Grey's Anatomy,7.4-10.01,grey_s02e14_seg02_clip_02,Sophie had hip replacement surgery months ago. 13362,to meet with loksat,to flee the country,to see his parents,to rob a bank,to run drugs. ,0,why does beckett think that calab went to LA after she has been briefed by vikram?,135401,Castle,14.89-25.27,castle_s08e19_seg02_clip_04,to meet with loksat 13363,Grabs his leg,Takes a drink of coffee,Blows his nose,Takes a pill,Drops his cane,3,What does House do before he takes the file away from Foreman when Foreman says he doesn't care in the slightest about the patient?,135402,House M.D.,43.64-52.82,house_s01e08_seg02_clip_00,Takes a pill 13364,Terry Neiman,Melina Neiman,Shelly Neiman,Kelly Neiman,Sherry Neiman,3,Who did Ryan say attended to Tyson when he was sent to the infirmary?,135403,Castle,38.88-49.86,castle_s06e09_seg02_clip_25,Kelly Neiman 13365,He asks to be dismissed ,He needs to urinate,Kutner leaves not Taub,He does not leave,He needs to get the MRI,4,Why does Taub leave after House asks for the MRI?,135404,House M.D.,53.11-65.16,house_s05e04_seg02_clip_23,He needs to get the MRI 13366,Potter says corporate law and trust administration,Potter says education,Potter says criminal law,Potter says real estate law,Potter says employment law,0,Which kind of law does Potter say he practices when he explains his job to Gates?,135405,Castle,37.49-49.99,castle_s06e17_seg02_clip_17,Potter says corporate law and trust administration 13367,Call the mom.,Get the wife and cousin to the police station.,Call the taxi company.,Go search the box storage.,Plan to take the box storage here.,1,What did Montgomery asked to the detectives after showing the address of the box storage of the victim?,135406,Castle,11.63-17.23,castle_s03e16_seg02_clip_11,Get the wife and cousin to the police station. 13368,patient room,waiting room,locker room,physician lounge,cafeteria,1,What part of the hospital is Cristina standing watching the news before Richard walks up to speak to her?,135407,Grey's Anatomy,23.93-33.07,grey_s03e15_seg02_clip_12,waiting room 13369,nothing,Oh dear I am truly screwed,that he is gay ,wants to talk to Penney,He is broke,1,What does Raj say after he enters the apartment,135408,The Big Bang Theory,0-38.41,s01e08_seg02_clip_00,Oh dear I am truly screwed 13370,Beckett is on a train.,Beckett is at Castle's home.,Beckett is at the precinct.,Beckett is at a fund raiser party for the mayor.,Beckett is on a yacht.,2,Where Beckett when Esposito announces Agnes missed a parole check in?,135409,Castle,69.94-77.76,castle_s08e09_seg02_clip_09,Beckett is at the precinct. 13371,There was nowhere to sleep.,Koothrappali's sister is staying.,He was out of town.,His sister hate's him.,He has animal allergies.,1,Why did Howard say he couldn't stay with Koothrappali when Sheldon asked him?,135410,The Big Bang Theory,1.74-14.24,s04e16_seg02_clip_01,Koothrappali's sister is staying. 13372,Bathroom.,Kitchen.,Living Room.,Chase and Foreman were sitting at the table.,No where.,3,Where were Chase and Foreman sitting when the show came on?,135411,House M.D.,0.91-50.23,house_s06e04_seg02_clip_02,Chase and Foreman were sitting at the table. 13373,White.,Blue.,Green.,"A yellow envelope,",Brown.,3,What color envelope peeks out when Marshall crashes into the boxes?,135412,How I Met You Mother,0-5.81,met_s02e11_seg02_clip_14,"A yellow envelope," 13374,Her favorite hat.,Her favorite guitar.,Her favorite person.,Her favorite shoes.,Her favorite cat.,3,What did Leslie sing about being her favorite thing when she was singing and Phoebe joined in?,135413,Friends,37.72-65.03,friends_s03e14_seg02_clip_10,Her favorite shoes. 13375,The concierge.,The bellhop.,The waitress.,The valet.,The cabbie.,2,Who did Joey leave with when he went to dinner with Chandler?,135414,Friends,37.01-41.6,friends_s08e08_seg01_clip_01,The waitress. 13376,Joey and Chandler were hanging out with Phoebe and Monica.,Joey and Chandler were hanging out with Rachel and Monica.,Joey and Chandler were hanging out with Monica and Ross.,Joey and Chandler were hanging out with Rachel and Phoebe.,Joey and Chandler were hanging out with Ross and Phoebe.,2,Who were Joey and Chandler hanging out with before meeting up with Margha?,135415,Friends,0-36.62,friends_s03e09_seg02_clip_07,Joey and Chandler were hanging out with Monica and Ross. 13377,Stella cries.,Stella runs after Ted.,Stella throws the bowl at Marshall.,"Stella screams, jumps and spills her popcorn.",Stella runs out the door.,3,What does Stella do after Marshall pops up from behind the couch?,135416,How I Met You Mother,15.46-17.58,met_s04e01_seg02_clip_13,"Stella screams, jumps and spills her popcorn." 13378,No I thought it would be Marshall,Yes I ordered an hour ago,"No, I thought it was Santa","No, I knew it was you",No I thought someone was breaking in,3,"What does Lily say to ted after he says, ""you really thought I was the pizza delivery guy?",135417,How I Met You Mother,10.55-16.41,met_s02e11_seg02_clip_10,"No, I knew it was you" 13379,Fanta,bottle of water,Sprite,Gatorade,Coke Cola,4,What was Leonard's drink when they are talking about taking one for the team,135418,The Big Bang Theory,5.49-22.58,s01e13_seg02_clip_07,Coke Cola 13380,They expect him to be hurt,They expect him to be accepting,They expect him to be furious,They expect him to be confused,They expect him to cry.,2,How do Howard and Bernadette expect her Dad to react about Howards Weekend Plans when they are talking?,135419,The Big Bang Theory,38.81-44.17,s05e24_seg01_clip_00,They expect him to be furious 13381,Because the food is being served,Because he had something else to say,Because they are inappropriate,Because she was naming them wrong,Because she was talking too loudly,2,Why does Phoebe's boyfriend ask her to stop naming song titles when they are at the dinner table?,135420,Friends,33.47-44.22,friends_s09e07_seg02_clip_15,Because they are inappropriate 13382,Raj says that Bernadette is acting homophobic.,Raj says that Leonard is acting homophobic.,Raj says that Amy is acting homophobic.,Raj says that Howard is acting homophobic.,Raj says that Priya is acting homophobic.,3,Who does Raj say is acting homophobic when they are walking down the hall?,135421,The Big Bang Theory,0-5.4,s05e20_seg02_clip_14,Raj says that Howard is acting homophobic. 13383,Chandler and Rachel see a box by Mrs. Braverman's door.,Chandler and Rachel see a cat by Mrs. Braverman's door.,Chandler and Rachel see a mouse by Mrs. Braverman's door.,Chandler and Rachel see a spider by Mrs. Braverman's door.,Chandler and Rachel see a baby by Mrs. Braverman's door.,0,What do Chandler and Rachel see when they standing by Mrs. Braverman's door?,135422,Friends,39.06-47.91,friends_s07e11_seg02_clip_06,Chandler and Rachel see a box by Mrs. Braverman's door. 13384,Monica stayed in the kitchen to clean,Monica went into the bathroom,Monica did not go anywhere,Monica left the apartment,Monica went into the bedroom,4,Where did Monica go after talking to Chanler?,135423,Friends,52.72-55.52,friends_s08e10_seg02_clip_06,Monica went into the bedroom 13385,She saw Chandler and Monica back together.,The old lady finally left her.,She won at the slot machines.,She finally ran out of coins.,She was done with the slot machines.,0,Why was Phoebe happy when she was sitting at the slot machines?,135424,Friends,7.16-11.67,friends_s05e23-24_seg02_clip_28,She saw Chandler and Monica back together. 13386,Castle punches him. ,Castle shows Beckett's badge. ,Castle threatens him. ,Beckett punches him. ,Beckett shows her badge. ,4,How are Beckett and Castle able to enter the building when Joe tries to make them answer questions to enter?,135425,Castle,49.15-54.56,castle_s03e04_seg02_clip_17,Beckett shows her badge. 13387,An old lady.,A skinny man.,A woman.,Two children.,A fat man representing greed.,4,Who entered in scene when Lily holded the mirror?,135426,How I Met You Mother,0-45.17,met_s02e16_seg02_clip_07,A fat man representing greed. 13388,the front door,a wall of books,a pool,a tree,Beckett,1,What is behind Castle when Beckett asks the doctor how long he has been treating the patient?,135427,Castle,0-6.27,castle_s07e23_seg02_clip_19,a wall of books 13389,A pipe burst in the apartment above and her wedding dress was gone.,She is married to someone else.,She can't give up.,Her dress was ready.,Her dress was beautiful.,0,What did Beckett find out was wrong after she answered her phone for Lanie?,135428,Castle,4.28-35.64,castle_s06e23_seg02_clip_15,A pipe burst in the apartment above and her wedding dress was gone. 13390,Because House wanted to distract the patient from the pain he was feeling.,Because House wanted to see if the pain was more widespread.,Because House knew that Ian had a broken finger.,Because House needed to prick his finger for a glucose test.,Because House was about to tell Ian a joke to cheer him up.,2,Why did House squeeze Ian's finger after he showed where the pain was in his arm and legs?,135429,House M.D.,38.61-58.61,house_s05e16_seg02_clip_06,Because House knew that Ian had a broken finger. 13391,the ex took Leonard's pants,the ex was nice,the ex gave him supper,the ex took his wallet,the ex ran from Leonard,0,What did Leonard mention about Penny's ex when he told Penny she owed him?,135430,The Big Bang Theory,11.62-28.31,s02e12_seg02_clip_08,the ex took Leonard's pants 13392,Phoebe suggests some time the next week,Phoebe suggests right after the concert,Phoebe suggests right before the concert,Phoebe suggests Friday night at 8:00,Phoebe suggest that night,3,When does Phoebe suggest is a good time to meet when she learns Jack's father is not there?,135431,Friends,14.82-19.76,friends_s08e10_seg02_clip_15,Phoebe suggests Friday night at 8:00 13393,At Meredith's house,In the cafeteria,In a patient's room,In the parking lot,In the locker room,4,Where were Meredith and Derek when she was telling him how to break up with her?,135432,Grey's Anatomy,74.78-83.24,grey_s03e25_seg02_clip_23,In the locker room 13394,Cleaning the top of the grill,Cleaning the inside of the oven,Mopping the floors,Vacuuming the floors,Doing the dishes,1,What is Howard doing when he's in his kitchen with Stuart and Raj?,135433,The Big Bang Theory,24.19-34.12,s08e23_seg02_clip_11,Cleaning the inside of the oven 13395,The money leapt out the door,The monkey jumped out of the window,The monkey jumped into a cage,The money jumped onto the fridge,The monkey jumped into Ross's arms,2,Where did the monkey jump after he ran off the table,135434,Friends,7.93-18.07,friends_s01e19_seg02_clip_18,The monkey jumped into a cage 13396,A letter,more pictures,Security footage,Paperwork,An email,2,What did Ryan show Vance when Vance was explaining he didn't know the man in the photo?,135435,Castle,3.18-12.71,castle_s06e04_seg02_clip_24,Security footage 13397,Because it could get him arrested. ,Because he can be bullied. ,Because it could get him killed. ,Because it could get his family killed. ,Because he can be fired. ,4,Why can't Troy say what Danny hired him to do when Beckett asks?,135436,Castle,17.58-22.99,castle_s03e04_seg02_clip_17,Because he can be fired. 13398,Chandler was at a bar ,Chandler was at home ,Chandler was at work ,In the Shop ,Chandler was at the movies,3,Where was Chandler when Joey walked in? ,135437,Friends,26.41-32.94,friends_s02e14_seg02_clip_06,In the Shop 13399,Emily's wedding dress.,Rachel's bridesmaid dress.,Monica's bridesmaid dress.,Phoebe's wedding dress.,No one's they were just looking.,0,What dress were Monica and Phoebe picking up when they were at the bridal shop?,135438,Friends,35.99-43.25,friends_s04e20_seg02_clip_05,Emily's wedding dress. 13400,blue,green,pink,yellow ,tan,0,what color is the blanket on chases girlfriends hospital bed when they are talking ,135439,House M.D.,2.25-9,house_s08e12_seg02_clip_21,blue 13401,Orange juice and coffee,Respect and power,Love and a career,A career and respect,Love and respect,4,What does Amber say she always had to choose between when she is talking about her relationship with Wilson?,135440,House M.D.,23.79-44.54,house_s04e12_seg02_clip_22,Love and respect 13402,He has his glasses on his head.,He has a hat on his head.,He has a wig on his head.,He has a bandage on his head.,He has a bee on his head.,3,What does Mr.Duff have on his head when he laying in the hospital bed? ,135441,Grey's Anatomy,81.92-85.07,grey_s01e09_seg02_clip_21,He has a bandage on his head. 13403,Stuart.,Phoebe.,Chandler.,Joey.,Rachel.,4,Who does Ross say won't talk to him when he walks into Monica's apartment?,135442,Friends,5.89-9.61,friends_s08e04_seg02_clip_04,Rachel. 13404,Sex.,Career.,Money.,Insider Trading.,Access to secret parties.,2,What did Hans say Derek was using the woman for when he is speaking with detectives?,135443,Castle,74.02-87.6,castle_s03e07_seg02_clip_12,Money. 13405,Beers.,Chinese food. ,His computer.,Cups.,A pizza box,0,"What does Raj put on the table after Howard says, ""oh my""?",135444,The Big Bang Theory,31.98-36.89,s09e04_seg02_clip_04,Beers. 13406,A pad of paper. ,Lotion. ,A pen. ,Her phone. ,Her business card. ,2,What does Dr. Yang pull out of her pocket after she rubs her hands together when she is chatting with Ellis? ,135445,Grey's Anatomy,55.96-65.14,grey_s03e14_seg02_clip_06,A pen. 13407,He walks over to the trash can.,He gets up from the table and walks away.,He stirs his drink.,He hands Howard a folder of papers.,He takes a bite of his sandwich.,2,What does Leonard do before Sheldon says you said you couldn't drive me to work?,135446,The Big Bang Theory,0-9.94,s02e05_seg02_clip_04,He stirs his drink. 13408,Chinese Diplomat.,Chinese-American real estate mogul.,Japanese Finance Minister.,Chinese business man.,A Chinese English teacher.,3,What did Sophia say Mia's father did for a living when they were getting info on Mia at the CIA?,135447,Castle,71.3-75.37,castle_s04e16_seg02_clip_21,Chinese business man. 13409,Another few minutes.,5 minutes.,2 minutes.,10 minutes.,1 minute.,0,How much longer does Foreman tell Kara is left to go on her brain scan before he notices abnormalities?,135448,House M.D.,60.98-63.21,house_s02e22_seg02_clip_14,Another few minutes. 13410,Chandler kissed Janice,Chandler threw up,Chandler got up and hugged Janice,Chandler jumped in his chair ,Chandler did not do anything,3,"What did Chandler do, when Janice came to him?",135449,Friends,38.42-47.42,friends_s01e10_seg02_clip_16,Chandler jumped in his chair 13411,reads a chart,writes,looks into a microscope,cleans utensils,changes scrubs,2,What did Chase do after saying that maybe hes wrong?,135450,House M.D.,48.46-55.09,house_s05e05_seg02_clip_20,looks into a microscope 13412,Cash.,A bill holder.,A plate.,A glass of tea.,A bowl of soup.,0,What was Joey holding when the man next to him in the green tie said he couldn't hear Monica? ,135451,Friends,4.58-7.95,friends_s04e10_seg02_clip_11,Cash. 13413,He kisses Rachel on the cheek and then the mouth. ,He chucks Rachel under the chin. ,He pokes Rachel in the chest. ,He puts his arms around Rachel. ,He reaches for his drink and drops Rachel off his lap. ,3,"What happens after Joey says,""terrified?""",135452,Friends,13.73-21.33,friends_s08e12_seg02_clip_21,He puts his arms around Rachel. 13414,Monica's hair was up in a tight sports hat.,Monica's hair was down.,Monica had a low ponytail with a sweatband on.,Monica had a single braid.,Monica's hair was up in a mid level ponytail. She had a sweatband on.,4,How was Monica's hair done when Chandler and Joey were talking to Margha?,135453,Friends,0-31.61,friends_s03e09_seg02_clip_07,Monica's hair was up in a mid level ponytail. She had a sweatband on. 13415,Beckett says Smith is wrong,Beckett says Johnson is wrong,Beckett says Collins is wrong.,Beckett says Jones is wrong,Beckett says Sienna is wrong.,2,Who does Beckett say is wrong when she discusses the cases she brought killers to justice?,135454,Castle,0-29.62,castle_s07e23_seg02_clip_14,Beckett says Collins is wrong. 13416,He went to Office Max,He went to Target,He went to Staples,He went to Walmart,He went to the mall ,0,Where did Joey go to find a gift before he got to the apartment?,135455,Friends,42.02-50.14,friends_s04e06_seg02_clip_07,He went to Office Max 13417,A FaceFlow call.,A Skype call.,A Facebook live video.,A join.me call.,A FaceTime call.,4,What did Lucas say he made the video look like when he was showing it to Castle and Beckett?,135456,Castle,2.35-7.04,castle_s06e15_seg02_clip_23,A FaceTime call. 13418,Rachel was talking about Ross.,Rachel was talking about Monica.,Rachel was talking about her customer.,Rachel was talking about Phoebe.,Rachel was talking about Chandler.,3,Who was Rachel talking about when she was talking to Terry?,135457,Friends,0-6.38,friends_s02e06_seg02_clip_03,Rachel was talking about Phoebe. 13419,Castle has on a green jacket,Castle has on a yellow jacket,Castle has on a brown jacket,Castle has on a red jacket,Castle has on an orange jacket,2,What color jacket does Castle have on when Castle shows Esposito a picture of Norman Jessup?,135458,Castle,38.88-45.13,castle_s02e09_seg02_clip_04,Castle has on a brown jacket 13420,His alarm went off,He had to work,He couldn't sleep,Someone woke him up,He heard a noise,2,Why did Sheldon say he was up early after Penny said hello to him?,135459,The Big Bang Theory,5.27-10.23,s07e20_seg02_clip_00,He couldn't sleep 13421,Carol makes a face because Ross has an erection.,Carol makes a face because Ross smells bad.,Carol makes a face because she sees the prosthetic arm Ross is holding.,Carol makes a face because Ross grabs her butt.,Carol makes a face because Ross tells Carol he misses her.,2,Why does Carol make an awkward face when hugging Ross?,135460,Friends,0-6.41,friends_s01e02_seg02_clip_01,Carol makes a face because she sees the prosthetic arm Ross is holding. 13422,Sending an email,Looking through a phone book,Looking at an x-ray,Checking expiration dates on medicine,Searching through folders and files,4,What was Wilson doing when Cameron came to ask him if Friday is his last day?,135461,House M.D.,74.54-83.28,house_s05e01_seg02_clip_18,Searching through folders and files 13423,"1,000",500,"2,000",850,700,0,How man Penny Blossoms did everyone package after they finished,135462,The Big Bang Theory,36.59-54.58,s02e18_seg02_clip_11,"1,000" 13424,His bedroom,His work,In the backyard,In the garage,At an event,0,WhEre is Marshall when he informs his mom and brother Zoey is getting divorced,135463,How I Met You Mother,0.96-19.85,met_s06e15_seg02_clip_17,His bedroom 13425,washing dishes,washing clothes,preparing their costumes,taking trash out,drying clothes,2,What were Sheldon and Leonard doing when they were at home?,135464,The Big Bang Theory,0-17.76,s06e13_seg01_clip_00,preparing their costumes 13426,Wine. ,Champagne. ,Beer. ,Water. ,Milk. ,1,"What are Marshall, Lily, and Robin drinking when they are in the apartment?",135465,How I Met You Mother,26.88-28.95,met_s03e12_seg02_clip_11,Champagne. 13427,Bernadette was busy and didn't want to speak to Howard.,Bernadette missed Howard.,Howard was saying very odd things and this worried Bernadette.,Bernadette wanted to go to sleep.,Bernadette was tired of hearing about Howard experience as an astronaut.,2,Why was Bernadette making an odd face when speaking with Howard?,135466,The Big Bang Theory,0-9.76,s06e03_seg02_clip_10,Howard was saying very odd things and this worried Bernadette. 13428,Wilson was in Maine.,Wilson was in New York.,Wilson was in New Orleans.,Wilson was in Detroit.,Wilson was in Vermont.,2,Where was Wilson when he was served divorce papers?,135467,House M.D.,36.05-36.94,house_s06e18_seg02_clip_13,Wilson was in New Orleans. 13429,She stood up.,She opened the closet,She closed the door.,She sat down on the chair,She cried out loud.,3,What did Phoebe do before she said something about all so elegant?,135468,Friends,21.18-30.75,friends_s10e11_seg02_clip_04,She sat down on the chair 13430,Her make-up is too much.,She told him she wants to see other guys.,She's insulting his brothers.,Lily told him she wants to take a break from him.,Her shirt is distracting him.,4,Why is Marshall so frustrated when talking to Lily?,135469,How I Met You Mother,0-10.44,met_s06e01_seg02_clip_11,Her shirt is distracting him. 13431,In the air,On the stool,On the table,On the floor,On the wall,2,Where Did House put his legs when Cuddy addressed him and Foreman about the patient,135470,House M.D.,62.12-67.18,house_s06e04_seg02_clip_00,On the table 13432,Charleston,Waltz,Shuffle,Swing,Fox Trot,4,Which dance did Joey first ask if he wanted to practice when Mr. Treeger was leaving?,135471,Friends,18.99-24.94,friends_s04e04_seg02_clip_18,Fox Trot 13433,Sheldon says he is in the real world of ordinary people.,Sheldon says he is in a fake world of robots.,Sheldon says he is in a old people's world.,Sheldon says he is in a super hero's world.,Sheldon says he is in Batman's world.,0,Who's world does Sheldon say he's in after he gets to the grocery store?,135472,The Big Bang Theory,42.1-49.61,s01e04_seg02_clip_03,Sheldon says he is in the real world of ordinary people. 13434,Esposito,Castle,Ryan,Gates,Beckett was alone,0,Who was with Beckett when they were interviewing a witness?,135473,Castle,0-2.72,castle_s07e19_seg02_clip_10,Esposito 13435,Icelandic Swim Team,Olympic Swim Team,Italian Bikini Team,Swedish Bikini Team,Olympic Basketball team,3,Who was reciting positive reviews on Naked Heat when Castle was dreaming?,135474,Castle,10.47-25.49,castle_s03e07_seg02_clip_00,Swedish Bikini Team 13436,Throws it away.,Fixes it.,Gives it to charity.,Gives it to Howard.,Stops wearing it. ,1,What did Sheldon say Leonard does to his jacket when the zipper gets stuck?,135475,The Big Bang Theory,42.72-53.09,s07e01_seg02_clip_02,Fixes it. 13437,He walks to the center of Afsoun's room and begins to shout at her.,He walks to a nurse's station and begins complaining.,He returns to Afsoun's bedside and holds her.,He confronts House in the hallway and challenges him to fight.,He leans against the glass door of Afsoun's hospital room and begins to weep.,2,Where does the man in dress shirt and tie dispatched from Afsoun's hospital room go after House takes leave of her?,135476,House M.D.,86.44-94.56,house_s07e23_seg02_clip_22,He returns to Afsoun's bedside and holds her. 13438,Leonard tells Priya that she smells awful. ,Leonard tells Priya that she smells good. ,Leonard tells Priya that he hates her. ,Leonard tells Priya that he loves her voice. ,Leonard tells Priya that he despises her. ,1,What does Leonard tell Priya when they embrace?,135477,The Big Bang Theory,25.73-28.76,s04e18_seg02_clip_03,Leonard tells Priya that she smells good. 13439,Raj,Stuart,Amy,Penny,Sheldon,0,Who is with Howard and Bernadette when they enter Howard's mother's house?,135478,The Big Bang Theory,18.31-30.61,s08e18_seg02_clip_03,Raj 13440,She turned away from him,She punched him in the nose,She had Castle to take over,She grabbed him and pushed him into a two-way mirror,She threw her coffee cup at him,3,What did Beckett do after Simmons taunted her about her mother's death?,135479,Castle,1.77-11.52,castle_s03e13_seg02_clip_08,She grabbed him and pushed him into a two-way mirror 13441,A carousel,A bridge,A monument,A restaurant,A boat trailer,4,What was the victim in front of when she was posing for her selfie?,135480,Castle,21.16-23.86,castle_s06e09_seg02_clip_07,A boat trailer 13442,Joey says he stepped up.,Joey is afraid of their comments.,"Joey talks about his huge, gay fanbase.",Joey is hurt by their comments.,Joey shows them his man's bag.,0,"How does Joey respond when Phoebe, Rachel, and Ross turn towards him?",135481,Friends,0-9.57,friends_s08e19_seg02_clip_13,Joey says he stepped up. 13443,She kicked Chase off the case. ,She spoke with the patient's parents. ,She attended a meeting. ,She spoke with the patient's children. ,She spoke with house about another patient. ,1,What did Cameron do after Chase saved his patient? ,135482,House M.D.,60.76-70.88,house_s01e08_seg02_clip_11,She spoke with the patient's parents. 13444,Stuart is writing a song with Raj.,Howard is writing a song with Raj.,Amy is writing a song with Raj.,Penny is writing a song with Raj.,Barry is writing a song with Raj.,1,Who is writing a song with Raj when they are drinking beers?,135483,The Big Bang Theory,36.59-43.66,s09e04_seg02_clip_04,Howard is writing a song with Raj. 13445,White,blue,green,grey,brown,0,"What color is Hasheim wearing when he say's ""If one wished to keep priceless...""?",135484,Castle,0-9.77,castle_s08e17_seg02_clip_25,White 13446,Derek put on his mask,Derek hit himself in the head,Derek died,Derek cried,Derek slipped on the floor,0,What did Derek do when he threw the cup in the trash?,135485,Grey's Anatomy,50.78-56.08,grey_s01e07_seg02_clip_12,Derek put on his mask 13447,Joey said those trees aren't even real.,Joey said those trees were born to be Christmas trees.,Joey said those trees weren't going to make it anyway.,Joey said the trees would get sick and die if they didn't cut them down.,Joey said the trees will live even after being cut down.,1,What explanation does Joey give after he tells Phoebe she has this Christmas tree thing all wrong?,135486,Friends,50.24-55.21,friends_s03e10_seg02_clip_01,Joey said those trees were born to be Christmas trees. 13448,One wing of the hospital could be completely destroyed.,The whole hospital could blow up because the main oxygen line runs under the room the bomb is in.,She and anyone in the vicinity of the OR would be evaporated.,Only the patient and anyone in close proximity to the patient will be instantly killed.,Meredith does not think the bomb will blow up so she says she isn't worried about it.,1,What does Meredith say she thinks will happen when the bomb explodes?,135487,Grey's Anatomy,37.29-66.94,grey_s02e17_seg02_clip_08,The whole hospital could blow up because the main oxygen line runs under the room the bomb is in. 13449,drove a car,sat outside a cafe,stood outside the hospital,walked a street,sat as a passanger at a car,0,What did House do when talking to the other doctors?,135488,House M.D.,4.93-8.51,house_s07e18_seg02_clip_01,drove a car 13450,Rosanne.,Rachael.,Phil Donue.,Oprah Winfrey.,Cecilia.,4,Who does Joey see after he enters the door?,135489,Friends,50.12-55.35,friends_s07e15_seg02_clip_12,Cecilia. 13451,A penitentiary,A church,A psychiatric ward,A bar,A university class,3,Where is House when the scene opens?,135490,House M.D.,0-5.94,house_s01e22_seg02_clip_15,A bar 13452,a S'more,a sandwich,a cup of tea,a giant plate of nachos,a bag of candy,0,What did Sheldon say he was going to have by himself after Leonard didn't sign the agreement?,135491,The Big Bang Theory,15.61-18.91,s05e15_seg02_clip_13,a S'more 13453,Olivia place her hand on Tommy's head.,Olivia placed her hand on Tommy's shoulder.,Olivia place her hand on Tommy's stomach.,Olivia place her hand on Tommy's lips.,Olivia place her hand on Tommy's throat.,1,Where did Olivia place her hand when she touched Tommy?,135492,House M.D.,67.35-70.72,house_s08e08_seg02_clip_23,Olivia placed her hand on Tommy's shoulder. 13454,Mark,Adam,Eve,Mia,Sophia,1,"Who was House talking to when he said ""Take the damn two dollars.""",135493,House M.D.,51.63-56.09,house_s08e03_seg02_clip_08,Adam 13455,Castle tripped the suspect.,Castle ran after the suspect.,Castle punched the suspect.,Castle called for back up.,Castle watched the suspect go out the door.,0,What did Castle do when the suspect ran away from Beckett?,135494,Castle,17.24-22.54,castle_s07e06_seg02_clip_19,Castle tripped the suspect. 13456,Marshall is sorry.,Marshall is upset.,Marshall is disappointed.,Marshall is angry.,Marshall is remorseful.,0,How did Marshall feel when the guy told him it's April?,135495,How I Met You Mother,11.94-17.01,met_s05e04_seg01_clip_01,Marshall is sorry. 13457,Masters picked a mobile phone.,Masters picked sunglasses.,Masters picked a camera.,Masters picked a photograph from some books stand.,Masters did not pick anything.,3,What did Masters pick when they just got into the patient's house?,135496,House M.D.,0-7.48,house_s07e18_seg02_clip_10,Masters picked a photograph from some books stand. 13458, a picture, a notebook,a cellphone, a dog,a package,2,what is castle looking at when he talks to emma,135497,Castle,5.47-8.21,castle_s06e04_seg02_clip_10,a cellphone 13459,She was standing up from a chair.,She was laying down.,She was crying.,She was eating.,She was drinking some tea.,0,What was Cuddy doing when she said i have to go tell House?,135498,House M.D.,0-5.85,house_s03e01_seg02_clip_26,She was standing up from a chair. 13460,Burke kisses Cristina.,Burke screams at Alex.,Burke flinches and turns to the side.,Burke dances with Meredith.,Burke sits on the floor.,2,What does Burke do after Cristina asks about sex with someone else?,135499,Grey's Anatomy,3.65-5.94,grey_s02e06_seg02_clip_11,Burke flinches and turns to the side. 13461,Leaning on Foreman,Leaning at a 45 degree angle from Foreman,Rubbing Foreman's leg,Stretching her arms near Foreman,Staring at Foreman ,1,What did House accuse Thirteen of when she was sitting next to House?,135500,House M.D.,14.4-22.09,house_s05e10_seg02_clip_14,Leaning at a 45 degree angle from Foreman 13462,Howard is eating a sandwich.,Howard is eating a fruit.,Howard is eating a burger.,Howard is eating a candy.,Howard is eating a donut.,0,What is Howard eating when he is talking to everyone?,135501,The Big Bang Theory,15.56-19.53,s09e21_seg02_clip_10,Howard is eating a sandwich. 13463,Addie's kidneys shut down.,Addie's test results came back.,Chase had missed something.,Addie's kidneys returned to normal.,Dialysis was not working on Addie.,0,Why did Cameron say Chase was wrong about when she interrupted House's sleep?,135502,House M.D.,0-3.53,house_s03e22_seg02_clip_18,Addie's kidneys shut down. 13464,A grass hula skirt. ,A cowboy costume. ,A tuxedo. ,A fluffy robe. ,Jeans. ,2,What does Joey wear when he is talking to Annabelle? ,135503,Friends,43.54-53.47,friends_s02e02_seg02_clip_01,A tuxedo. 13465,A cell phone.,A wrist watch.,The computer.,An egg timer.,A pager.,2,What beeps on the desk after Taub looks into the microscope?,135504,House M.D.,23.53-30.25,house_s07e06_seg02_clip_10,The computer. 13466,wilson,cameron,chase,house,foreman,4,Who drills the hole in georges head after george allows the doctors to do so?,135505,House M.D.,84.1-95.03,house_s03e06_seg02_clip_17,foreman 13467,Put his hand on Rachel's belly,Get up to go to the bathroom,Open the window ,Kiss Rachel,Rub Rachel's feet,0,What did Joey do after he got out of bed?,135506,Friends,57.64-65.01,friends_s08e14_seg02_clip_00,Put his hand on Rachel's belly 13468,Miranda,Izzie,George,Cristina,Derek,4,Who does Meredith meet when she is at the bar?,135507,Grey's Anatomy,0-66.26,grey_s03e01_seg02_clip_17,Derek 13469,Rachel just doesn't think about the consequences of her actions ,Rachel wanted to impress Charlie,Rachel was too young to realize she offended her friend ,Rachel didn't know she offended Monica by being an attention-hog ,Rachel only did it because Monica's party was boring,4,What reason does Rachel give after Monica brings up her memory of her 16th birthday party?,135508,Friends,35.3-45.1,friends_s07e01_seg02_clip_16,Rachel only did it because Monica's party was boring 13470,Because he told her to shut up and go away,Because he said he doesn't want anything to do with her anymore,Because he said he is in love with Meredith,Because he said he needs to keep avoiding her,Because he told her that he cannot forgive her,3,Why does Izzie get upset when she is trying to talk to George?,135509,Grey's Anatomy,10.56-14.4,grey_s03e20_seg02_clip_03,Because he said he needs to keep avoiding her 13471,Monica.,Chandler.,Joey.,Ross.,Phoebe.,0,Who is standing beside Rachel when she is in the kitchen?,135510,Friends,32.04-35.09,friends_s03e04_seg02_clip_06,Monica. 13472,slap hands with Joey,punch Joey,start singing,sit down on the stage,sit down in a chair,0,What does Rick do after Joey says they did it?,135511,Friends,1.98-5.62,friends_s04e04_seg02_clip_18,slap hands with Joey 13473,Phoebe is trying to break them up,Nothing out of the ordinary,A classic misunderstanding,Rachel is lying about her pregnancy,There is no fiance,2,What is happening when Rachel and Phoebe are talking about Rachel's fiance?,135512,Friends,13.06-26.11,friends_s09e01_seg02_clip_04,A classic misunderstanding 13474,Priya.,Bernadette.,Penny.,Amy.,Mrs. Wolowitz.,3,Who said she was making a bracelet before Howard offered his soldering iron?,135513,The Big Bang Theory,16.13-33.8,s07e07_seg02_clip_04,Amy. 13475,ruby sword,strangling vines ,warlord,water sprite,enchanted bunny,1,What did Howard play after Raj card?,135514,The Big Bang Theory,0-11.58,s03e05_seg01_clip_00,strangling vines 13476,Penny invited zack.,He would help Raj cook.,He would do dishes.,He would fix the blender.,He would mop the floor.,0,What did Leonard Tell Raj before he went back into the kitchen?,135515,The Big Bang Theory,33.49-62.02,s07e09_seg02_clip_08,Penny invited zack. 13477,The patients eye,The patients brain,The patients arm,The patients stomach,The patients leg,0,What part of the patient is shown when in the surgery room?,135516,House M.D.,90.03-100.03,house_s01e19_seg02_clip_17,The patients eye 13478,Going around.,Playing around.,Goofing around.,Fooling around.,Looking around.,2,What was the term that Chandler described when he was talking to Monica?,135517,Friends,39.32-60.03,friends_s09e10_seg02_clip_13,Goofing around. 13479,A wheelchair.,A food tray.,A service dog.,A wash basin.,A walker.,3,What's behind the doctor when she asks about the patient's history?,135518,House M.D.,10.12-17.48,house_s03e09_seg02_clip_00,A wash basin. 13480,Rachel is feeling stupid.,Rachel is feeling angry with herself.,Rachel is feeling anxious and panicked.,Rachel is feeling jealous.,Rachel is feeling happy for Joey.,2,"How is Rachel feeling when Joey reveals that he guessed $20,000?",135519,Friends,0-15.96,friends_s06e24-25_seg02_clip_06,Rachel is feeling anxious and panicked. 13481,Karma.,Sin against God.,Genetics.,Congenital defect.,A curse.,0,Why did Roy think his son was sick when he was talking with Cameron in his son's hospital room?,135520,House M.D.,0-6.39,house_s06e04_seg02_clip_12,Karma. 13482,A cup,A cookie,A plate of food,A cell phone,A pillow,0,"What is Bernadette holding when she says ""He was being funny?""",135521,The Big Bang Theory,25.42-29.71,s08e07_seg01_clip_00,A cup 13483,Joey,Phoebe,Ross,Rachel ,Gray ,1,Who came into the apartment when Monica and Chandler was sitting at the table?,135522,Friends,28.33-33.64,friends_s07e16_seg02_clip_04,Phoebe 13484,Inside a vehicle. ,Inside a church,Inside a jail cell. ,On a sail boat. ,On an airplane. ,0,Where are the people sitting when they are talking?,135523,The Big Bang Theory,14.63-24.38,s08e09_seg02_clip_06,Inside a vehicle. 13485,Monica,Phoebe,Emily,Joey,Ross,1,"Who says and then lunch before Rachel says Yes, but I can't eat too much?",135524,Friends,24.83-30.34,friends_s06e22_seg02_clip_01,Phoebe 13486,The patient said his father was in prison.,The patient said his father was looking for him.,The patient said his father had abused his mother.,The patient said his father left his mother when he was 4.,The patient said his father had beaten him as a child.,1,Why did House's patient say no way after House asked him his father's name?,135525,House M.D.,37.45-44.17,house_s07e17_seg02_clip_17,The patient said his father was looking for him. 13487,because bernadette interrupted their game,because bernadette might talk about shoes,because bernadette was being too rude,because bernadette broke his controller,because sheldon is married,1,why is sheldon concerned after bernadette asks if she can talk to him?,135526,The Big Bang Theory,31.36-36.78,s03e10_seg02_clip_02,because bernadette might talk about shoes 13488,Cutting himself,Taking pain pills,Doing yoga,Sleeping,Meditating,0,What does Cameron reveal House is doing to reveal his detox pain when she speaks to Cuddy?,135527,House M.D.,4.45-18.25,house_s03e10_seg02_clip_14,Cutting himself 13489,George told him he has a lot of girlfriends.,He feels like George is in love with a woman that does not love him back.,George's wife died and Karl wants to make him feel better.,Karl is jealous that George is getting married.,Karl does not want to see George happy. ,1,"Why does Karl say ""way lonelier than being alone"" after George confesses his love for a woman?",135528,Grey's Anatomy,0-24.76,grey_s02e11_seg02_clip_21,He feels like George is in love with a woman that does not love him back. 13490,Had an MRI,Gone skiing,Slept at the hospital overnight,Shot anyone,Had an X-Ray,3,What does House say he has never done when the patient goes into the MRI?,135529,House M.D.,74.76-90.07,house_s05e09_seg02_clip_17,Shot anyone 13491,She took a drink,took notes,ate food,danced,sneezed,0,What did Robin do when Barney told Marshal to come back?,135530,How I Met You Mother,5.58-10.86,met_s06e20_seg02_clip_06,She took a drink 13492,Lily.,Short girls.,Men.,Older women.,A prosthetic arm.,4,What did Barney ask if it was a deal breaker when discussing strippers with Ted and marshall?,135531,How I Met You Mother,47.33-52.75,met_s02e19_seg01_clip_01,A prosthetic arm. 13493,Janice did not want anyone to take the piture,Janice wanted Joey to take the picture,Janice wanted Ross to take the picture,Janice want her mom to take the picture,Janice wanted Phoebe to take the picture,2,Who did Janice want to take her and Chandler picture when she entered the room?,135532,Friends,45.92-53.42,friends_s01e10_seg02_clip_16,Janice wanted Ross to take the picture 13494,Chandler,Frank,The doctor,Janice,Monica,1,Who spoke after Phoebe was shocked to hear that she only had a 25% of getting pregnant?,135533,Friends,13.64-22.63,friends_s04e12_seg02_clip_04,Frank 13495,street,person,sidewalk,car,Billboard,4,What did Ryan take a picture of after talking to Ryan?,135534,Castle,25.34-28.06,castle_s07e19_seg02_clip_10,Billboard 13496,Robin's music video is in the apartment.,Robin's music video is in the street.,Robin's music video is in the mall.,Robin's music video is in the house.,Robin's music video is in the museum.,2,Where is Robin's music video taking place when her friends are watching it?,135535,How I Met You Mother,56.44-62.3,met_s02e09_seg02_clip_18,Robin's music video is in the mall. 13497,A magazine.,A lighter.,A gun.,A cane.,A cup.,0,What was House holding when Foreman said you gonna put that down?,135536,House M.D.,22.96-32.86,house_s02e13_seg02_clip_08,A magazine. 13498,He asks her out on a date.,He asks her for a napkin.,He asks her for directions home,He asks her for a coupon.,He asks her where she has been.,4,What does Joey ask Rachel after she enters the party?,135537,Friends,36.5-46.47,friends_s07e18_seg02_clip_08,He asks her where she has been. 13499,Howard is dressed as wonder woman. ,Howard is dressed as batman. ,Howard is dressed as spiderman. ,Howard is dressed as batgirl. ,Howard is dressed as catwoman. ,1,Who is Howard dressed up as when it's Halloween?,135538,The Big Bang Theory,5.42-7.42,s04e11_seg02_clip_08,Howard is dressed as batman. 13500,Castle says Jerry Tyson.,Castle says Jerry Soni,Castle says Jerry Suki,Castle says Jerry Smith,Castle says Jerry Marvel,0,Who did Castle say he went over incident reports about when he examined files on Sing Sing?,135539,Castle,0-6.23,castle_s04e04_seg02_clip_16,Castle says Jerry Tyson. 13501,Through the nose,Through the ears,With a small drill,Through the mouth,With a large drill,2,How does Foreman say they are going to get into the patients skull when he's explaining the situation to the father?,135540,House M.D.,28.33-34.57,house_s03e15_seg02_clip_15,With a small drill 13502,he is moping because he was proven wrong by Lesley,he is moping because he lost his Star Trek playing cards,he is moping because he was rejected by students,he is moping because he was time travel didn't exist,he is moping because he shrunk his Superman shirt,2,Why did Leonard say Shelton was moping when they are sitting at the table,135541,The Big Bang Theory,0-12.92,s04e14_seg02_clip_00,he is moping because he was rejected by students 13503,She was bullied at school and hurt,She was going to meet her boyfriend,She has drugs in her pocket,She has a bad novel,Her dad hits her,0,Why was Alexis in such a hurry to leave before she kissed her dad?,135542,Castle,48.24-79.19,castle_s03e20_seg02_clip_18,She was bullied at school and hurt 13504,The man in the brown jacket.,The man in the black jacket.,The man in the green sweater himself jumped into the garbage truck.,Some people that were there grabed him and threw him.,He actually wasn't thrown in the garbage truck.,0,Who threw the man in the green sweater inside the garbage truck after the 3 men came out of the building?,135543,Castle,26.56-36.01,castle_s04e21_seg02_clip_13,The man in the brown jacket. 13505,A plate of food.,A bottle of water.,A boutique of flowers.,A Laundry Basket.,A comic book. ,3,What is in Leonard's hand when he calls Penny a pretty lady?,135544,The Big Bang Theory,0-3.05,s06e12_seg02_clip_07,A Laundry Basket. 13506,I've always wanted to go to a bachelor party,I've always wanted to go to a Rave,I've always wanted to go to a strip club,I've always wanted to go to a disco nightclub,I've always wanted to go to a Goth nightclub.,4,What did Sheldon say after he could still be buried in a Jewish cemetery?,135545,The Big Bang Theory,22.11-31.98,s03e03_seg02_clip_02,I've always wanted to go to a Goth nightclub. 13507,Black.,Brown.,Blue.,Yellow.,Teal.,1,What color is Jerry's vest when he leaves Barney?,135546,How I Met You Mother,0-7.46,met_s06e21_seg01_clip_01,Brown. 13508,Because Monica's boss was watching. ,Because Monica needed to focus on her cooking. ,Because Monica was tired of listening. ,Because Monica was getting all tingly. ,Because Phoebe was interrupting her. ,3,Why did Monica ask Phoebe to stop it when Phoebe was telling Monica about her date?,135547,Friends,8.37-15.2,friends_s07e18_seg02_clip_05,Because Monica was getting all tingly. 13509,Jessup hands Castle his cell phone.,Jessup hands Castle a picture of his son.,Jessup hands Castle Beckett's gun.,Jessup hands Castle a pair of handcuffs.,Jessup hands Castle the key to his handcuffs.,3,What does Jessup hand to Castle when riding in the car with Castle and Beckett?,135548,Castle,64.88-68.64,castle_s02e09_seg02_clip_06,Jessup hands Castle a pair of handcuffs. 13510,Ross and a television.,A peacock walking past.,Chandler and a fridge.,Chandler and a telvision.,Ross and a fridge.,2,What is in the background when Joey is talking?,135549,Friends,41.28-49.79,friends_s07e05_seg02_clip_13,Chandler and a fridge. 13511,reading a newspaper,drinking wine,playing a game on his ipad,taking notes,watching football ,1,What is Raj doing when the girls tell him to think harder? ,135550,The Big Bang Theory,3.82-13.52,s06e11_seg02_clip_10,drinking wine 13512,A Rocking Chair,A Teddy Bear,A Box Of Chocolates,A Baseball Cap,A Halloween Costume,0,What object does Penny mention when talking to Leonard?,135551,The Big Bang Theory,40.93-51.17,s07e06_seg02_clip_00,A Rocking Chair 13513,Lily said they're having a fantastic time.,Lily said they're having a blast.,Lily said they're having a tremendous time.,Lily said they're having a retreat.,Lily said they're having fun.,4,What did Lily say they are all having before Marshall asked to lock them in for the New Year?,135552,How I Met You Mother,0-11.04,met_s05e04_seg01_clip_01,Lily said they're having fun. 13514,They use the same car.,They keep their costumes in the same closet.,They dance on the same stage.,They use the same bathroom.,They are in a relationship.,1,What does Hans say his hair being at the scene proves when he is questioned?,135553,Castle,38.98-47.31,castle_s03e07_seg02_clip_12,They keep their costumes in the same closet. 13515,A school bus.,Another car. ,"A dump truck, ",A motorcycle. ,A cop on horseback. ,1,What is behind the car when the couple is driving? ,135554,The Big Bang Theory,12.68-22.43,s08e09_seg02_clip_06,Another car. 13516,She said she was on a case and she told her the indian man in his 20's was her partner.,She was being held hostage by the indian man against her will and so was the lady who works at the dry cleaners.,She was hit by a car and shot. She held up the place with an indian man and the woman was hostage.,She was at the dry cleaners with an indian man in his 20s and The lady who worked at cleaners said she was hostage.,They got help up at gunpoint and Beckett and the indian man helped her. She is so grateful.,3,What does the woman who works at the dry cleaners with the curly hair say when Castle asks about Beckett?,135555,Castle,3.14-26.01,castle_s08e01_seg02_clip_09,She was at the dry cleaners with an indian man in his 20s and The lady who worked at cleaners said she was hostage. 13517,Deb is holding a phone.,Deb is holding a cup of coffee.,Deb is holding a computer.,Deb is holding a tray of food.,Deb is holding a little dog.,1,What is Deb holding when House hurts Jeff ? ,135556,House M.D.,0-4.77,house_s04e13_seg02_clip_01,Deb is holding a cup of coffee. 13518,He is blowing his nose.,He is extending his arm so George can start an I.V.,He is watching the monitor that is tracking his heart.,He is reaching for a cup that's on his nightstand.,He has his hand on George's shoulder.,4,What is Karl doing before George tells him he loves someone?,135557,Grey's Anatomy,0.9-4.5,grey_s02e11_seg02_clip_21,He has his hand on George's shoulder. 13519,one,two,four,three,five,3,How many different machines does Ross say Rachel needs when he is helping her with laundry?,135558,Friends,6.71-23.8,friends_s01e05_seg02_clip_12,three 13520,Castle met Damian after he finished his first novel,Castle met Damian when he was fourteen,Castle met Damian when he was a small child,Castle met Damian in college,Castle met Damian a year or so ago,1,When did Castle say Damian Westlake first entered his life when he was talking to Beckett? ,135559,Castle,20.61-34.95,castle_s03e15_seg02_clip_05,Castle met Damian when he was fourteen 13521,Dr. Oberman is amazed by Fonzie.,Dr. Oberman hates Fonzie,Dr. Oberman loves Fonzie,Dr. Oberman is confused by Fonzie,Dr. Oberman has no strong feelings about Fonzie.,4,How does Ross say Dr. Oberman feels about Fonzie when Ross talks to Phoebe?,135560,Friends,50.72-60.03,friends_s05e03_seg02_clip_05,Dr. Oberman has no strong feelings about Fonzie. 13522,Black. ,Blue.,White.,Pink.,Yellow. ,3,What color shirt is Cuddy wearing when she is talking to Wilson? ,135561,House M.D.,3.16-9.03,house_s03e04_seg02_clip_25,Pink. 13523,The coffee table,A pillow on the floor,Phobe's lap,The back of the couch,The toilet,3,What was Ross sitting on after Chandler said something about being aroused?,135562,Friends,0-5.53,friends_s03e02_seg02_clip_16,The back of the couch 13524,Joey had a new girlfriend,Joey had purchased a Christmas tree,Joey had received an offer for a new job,Joey's great news was Snow-in-a-Can!,Joey had received a Christmas present,3,What was Joey's great news when he was announcing to the room?,135563,Friends,27.13-36.07,friends_s03e10_seg02_clip_13,Joey's great news was Snow-in-a-Can! 13525,laughing,standing,sitting,crying,eating,2,What was Esposito doing before he started talking?,135564,Castle,10.95-20.07,castle_s02e15_seg02_clip_23,sitting 13526,She is doing Rachel's makeup,She is cleaning the apartment,She is picking out Rachel's clothes,She isn't helping at all,She is making dinner for them ,4,How is Monica helping Rachel get ready for her big date when Rachel is getting ready?,135565,Friends,23.41-60.03,friends_s04e18_seg02_clip_03,She is making dinner for them 13527,It would tell them whether he is having memory loss or not.,It would tell them whether he has a brain tumor or not.,It would tell them whether his brain is sensing pain or not.,It would tell them whether he will ever sense pain again.,It would tell them if he is depressed or not.,2,How would the PET scan be helpful to the doctors when they run it on House?,135566,House M.D.,22.3-50.06,house_s03e02_seg02_clip_08,It would tell them whether his brain is sensing pain or not. 13528,He wanted to test Cameron's skills.,He wanted to make sure it wasn't infected with a disease.,The patient's tissue was mutating and he wanted a sample to study.,He wanted to see a Sepctral Graphic Analysis of the tissue.,There was no reason.,3,Why did Dr. House want the biopsy to be done when he was talking to Cameron?,135567,House M.D.,2.67-11.13,house_s02e07_seg02_clip_09,He wanted to see a Sepctral Graphic Analysis of the tissue. 13529,Amy tells him she is proud because of his new accomplishment.,Amy tells him she is proud because of his rewards.,Amy tells him she is proud because of his discovery.,Amy tells him she is proud because he quit smoking.,Amy tells him she is proud of him because he is maturing.,2,Why does Amy tell Sheldon she is proud of him when sitting next to each other talking on the couch?,135568,The Big Bang Theory,53.29-60.21,s07e06_seg02_clip_05,Amy tells him she is proud because of his discovery. 13530,Bernadette bites his head off. ,Bernadette tells Howard he's stupid. ,Bernadette tells Howard she never loved him. ,Bernadette tells Howard she hates him. ,Bernadette tells Howard she doesn't like ice cream. ,0,How does Bernadette respond after Howard says most astronauts live in Texas?,135569,The Big Bang Theory,7.97-11.51,s04e22_seg02_clip_10,Bernadette bites his head off. 13531,George reveals that his boat is 55 feet.,George reveals that his boat is 85 feet.,George reveals that his boat is 75 feet.,George reveals that his boat is 95 feet.,George reveals that his boat is 185 feet.,1,How long does George reveal his boat is when talking to Ted?,135570,How I Met You Mother,0-16.14,met_s06e08_seg02_clip_03,George reveals that his boat is 85 feet. 13532,a police badge,a id badge,a name tag,pens,nothing ,1,What did Lucas have hanging on his shirt when he walked up to House's group? ,135571,House M.D.,26.4-30.95,house_s05e02_seg02_clip_05,a id badge 13533,She wants to wait for her boyfriend to get there in case she dies. ,She wants her husband to get there in case she dies. ,She is confused and she just keeps repeating she wants more time. ,She says it doesn't hurt right now ,"She doesn't want them spending time on her, she wants them to focus on her baby. ",3,Why does the patient want to wait for more time when she is trapped?,135572,House M.D.,68.11-80.45,house_s06e21_seg02_clip_18,She says it doesn't hurt right now 13534,A book.,A sandwhich.,Slice of pizza.,A drink.,Chinese takeout.,4,What was Joey holding in his hands before Chandler opened the door?,135573,Friends,15.62-21.14,friends_s03e17_seg02_clip_02,Chinese takeout. 13535,Castle says he is better than okay because the adrenaline in his system is making him feel euphoric.,Castle says he is better than okay because he found out who the killer is.,Castle says he is better than okay because he smoked some good kush before getting shot.,Castle says he is better than okay because he is so happy to see Beckett.,Castle says he is better than okay because he knows what he will write his next book about.,1,Why does Castle say he is better than okay after he recovers from the incident?,135574,Castle,19.69-33.42,castle_s06e04_seg02_clip_18,Castle says he is better than okay because he found out who the killer is. 13536,He places his hand on his forehead,He places his hand on his neck,He places his hand on his chest,He places his hand on his hand,He places his hand on his stomach,1,Where does Wilson place his hands on the patient when patients family member looks on,135575,House M.D.,1.85-9.72,house_s02e05_seg02_clip_00,He places his hand on his neck 13537,laid on the bed,sat on the couch,scratched his head,took a bite,watched tv,1,What did Howard do before Bernadette mentions his Lego receipts?,135576,The Big Bang Theory,53.97-59.87,s08e17_seg02_clip_03,sat on the couch 13538,Eating a sandwich.,Looking through a microscope.,Drinking water.,Playing a computer game.,Talking on the phone. ,1,What is Dr. Chase doing before House walks in?,135577,House M.D.,40.05-49.15,house_s01e19_seg02_clip_20,Looking through a microscope. 13539,Sheldon fell on the coffee table.,Sheldon fell to the floor with the whiteboard.,Sheldon vomited on the carpet.,Sheldon had a heart attack.,Sheldon collapsed on the living room sofa.,1,What happened to Sheldon after he tried to write a number on his whiteboard?,135578,The Big Bang Theory,54.83-63.02,s06e04_seg02_clip_12,Sheldon fell to the floor with the whiteboard. 13540,Bernadette screams at Howard.,Bernadette smiles at the waiter.,Bernadette looks down at her menu.,Bernadette goes to the bathroom.,Bernadette stands up.,2,What does Bernadette do after she say fake laughing is the easiest thing to do?,135579,The Big Bang Theory,20.8-26.96,s07e12_seg02_clip_12,Bernadette looks down at her menu. 13541,Alex,Aaron,Ashley,Adam,Arnold,2,Who comes to talk to castle about him and alexis when castle is at the precinct?,135580,Castle,0-6.37,castle_s03e23_seg02_clip_16,Ashley 13542,He tied his shoelaces.,He answered his phone.,He put on a jacket.,He ran his hand through his hair.,He closed Penny's door. ,3,What did Sheldon do before walking through Penny's door?,135581,The Big Bang Theory,35.32-38.44,s08e16_seg02_clip_00,He ran his hand through his hair. 13543,Wilson had been at a conferance,Wilson had been at a patient's bedside,Wilson had been on call,Wilson had been at a meeting of the hospital disciplanary board,Wilson was out with his girlfriend Amber,2,Where did Wilson say he had been after House revealed he had called him to come pick him up?,135582,House M.D.,60.08-80.1,house_s04e16_seg02_clip_15,Wilson had been on call 13544,A bouncing ball.,A bicycle.,A power wheels jeep.,A toy wagon.,A scooter.,4,What was Joey riding before he entered the apartment?,135583,Friends,41.3-49.1,friends_s07e14_seg02_clip_19,A scooter. 13545,Bracken gave Beckett soda,Bracken kiss Beckett,Bracken gently touch Beckett cheek,Bracken gave Beckett a hug,Bracken gave Beckett bottle water,2,What did Bracken do before he walked away from Beckett ?,135584,Castle,8.97-18.83,castle_s06e22_seg02_clip_18,Bracken gently touch Beckett cheek 13546,Nothing. ,A croissant. ,A bagel. ,A coffee. ,A Hertz Donut. ,4,What does Marcus offer to Marshall before running into his room? ,135585,How I Met You Mother,50.11-63.03,met_s06e15_seg02_clip_08,A Hertz Donut. 13547,Blue,Yellow,Green,Black,White,3,"What color is the jacket that Chandler is wearing when he say's ""So hard we had to....""?",135586,Friends,40.52-50.42,friends_s07e04_seg02_clip_11,Black 13548,an appendectomy,a thyroid medicine,a quick surgical procedure,clonazepam,morphine,3,What did Foreman say would take care of the dystonia before Cameron said the patient was already on it?,135587,House M.D.,18.73-26.96,house_s03e15_seg02_clip_00,clonazepam 13549,He walked out of the room,He started to argue with Foreman,He called the pharmacy to order new medicine,He talked to the patient,Taub laughed at his idea,1,What happened after House suggested to switch the medicines?,135588,House M.D.,59.17-69.18,house_s07e11_seg02_clip_13,He started to argue with Foreman 13550,Yellow,Red,Green,White,Blue,4,What is the color of the shirt that Castle uses when he is looking at Beckett and Anya?,135589,Castle,28.53-37.73,castle_s08e11_seg02_clip_24,Blue 13551,Chase suggested fro Masters to carry the thing,Chase suggested they leave the place,Chase suggested the place was dangerous,Chase suggested that it had come from a raccoon.,Chase did not suggest anything.,3,What did Chase suggest about what he found in the cabinet when he threw it to Masters to have a look at it?,135590,House M.D.,22.01-31.25,house_s07e18_seg02_clip_10,Chase suggested that it had come from a raccoon. 13552,Sex and the City 2,Noah,Alien,Star Wars,Raiders of the Lost Ark,4,What movie is Raj referencing when they talk about their cool song?,135591,The Big Bang Theory,11.41-17.42,s09e04_seg02_clip_06,Raiders of the Lost Ark 13553,Delayed medicine activation,Way she was breathing,Snot they left on a napkin,The slurred vocabulary ,Blood on a medical gauge ,2,What does House tell Foreman gave him information before learning about a patient's liver inflammation?,135592,House M.D.,62.41-78.54,house_s04e16_seg02_clip_08,Snot they left on a napkin 13554,Raj is sitting on the floor,Raj is sitting on the couch,Raj is sitting at the kitchen counter,Raj is sitting at the desk,Raj is sitting on the coffee table,1,Where is Raj sitting before Leonard sat down in the wooden chair,135593,The Big Bang Theory,22.06-31.84,s02e18_seg02_clip_12,Raj is sitting on the couch 13555,give it to Izzie,toss it on the hospital bed,take it with her ,put it by the patients door,give it to the nurse,1,What does Bailey do with the chart after talking to the patients ?,135594,Grey's Anatomy,38.28-47.96,grey_s02e14_seg02_clip_04,toss it on the hospital bed 13556,House,Thirteen,Cuddy,Wilson,Remy,0,Who was Jerry pointing the gun at when he was sitting in the chair?,135595,House M.D.,79.23-82.79,house_s05e09_seg02_clip_15,House 13557,playing foosball ,playing darts,watching soap operas,drinking coffee,eating lunch,0,what are house and wilson doing when they are in the break room together?,135596,House M.D.,47.26-57.17,house_s02e14_seg02_clip_07,playing foosball 13558,He is walking away.,He is reading a book.,He is watching television.,He is sleeping.,He is washing his hands.,3,What is the man in the room doing when Pheobe and Monica are talking?,135597,Friends,0-8.76,friends_s01e11_seg02_clip_01,He is sleeping. 13559,Hung up the phone,Covered her face,Sat down,Set down her purse,Took off her jacket,2,What did Rachel do before she said she wanted to cry?,135598,Friends,12.26-17.96,friends_s07e04_seg02_clip_05,Sat down 13560,A cup of coffee,A book,His breifcase,A toy dinosaur,A basketball,1,What is Ross holding when he is at the coffee house?,135599,Friends,1.89-7.88,friends_s03e13_seg02_clip_08,A book 13561,the producer ,His cousin,His dad,An old man,the director ,3,How does Joey introduce the man in the orange and blue vest when he passes him and Rachel,135600,Friends,25.21-28.36,friends_s06e15-16_seg02_clip_10,An old man 13562,Monica's outfit is black.,Monica's outfit is blue.,Monica's outfit is brown.,Monica's outfit is yellow.,Monica's outfit is green.,0,What color is Monica's outfit when she is talking to the pizza delivery man?,135601,Friends,40.37-43.46,friends_s01e04_seg02_clip_13,Monica's outfit is black. 13563,Puts his hand on her shoulder,Holds her hand,Puts his hand on her back,Embraces her,Strokes her hair,2,What does Leonard do after telling Penny they should give them some privacy?,135602,The Big Bang Theory,45.78-49.13,s01e10_seg02_clip_14,Puts his hand on her back 13564,Leonard is sitting on the sink.,Leonard is sitting on the barstool.,Leonard is sitting on the floor.,Leonard is sitting in Lesley's lap.,Leonard is sitting behind the desk.,1,Where is Leonard sitting when Lesley talks about the kiss?,135603,The Big Bang Theory,0-23.08,s01e03_seg02_clip_05,Leonard is sitting on the barstool. 13565,She ran and hid behind the couch.,She ignored it.,She didn't hear the knock.,She went and opened the door.,She yelled for them to come in.,3,What did Rachel do when someone knocked on the door?,135604,Friends,10.5-15.31,friends_s02e22_seg02_clip_02,She went and opened the door. 13566,Sheldon is holding a red box.,Sheldon is holding a blue box.,Sheldon is holding a black box.,Sheldon is holding a green box.,Sheldon is holding a brown box.,4,What is Sheldon holding when he is talking to Amy?,135605,The Big Bang Theory,0-7.04,s06e15_seg02_clip_06,Sheldon is holding a brown box. 13567,He calls his dad.,He hugs Lily.,He orders a drink.,He leaves the bar.,He sits by Ted.,3,What does Marshall do after he stands up from the table?,135606,How I Met You Mother,3.77-13.64,met_s06e01_seg02_clip_11,He leaves the bar. 13568,heart shape,triangle shape,flower shape,square shape,hand shape,2,what shape is the emblem on phoebes necklace when she is talking to joey and rachel at the coffee shop?,135607,Friends,0-9.92,friends_s10e09_seg02_clip_06,flower shape 13569,Periodic elements ,Baby footprints,Eels ,Ducks with umbrellas,Superheroes,3,What does Sheldon say he has when he advises Penny on slippery tubs?,135608,The Big Bang Theory,38.23-56.29,s03e08_seg02_clip_01,Ducks with umbrellas 13570,It is about their break up.,It is about Beckett's daughter making a huge medical discovery in medical school.,She went against her wishes for privacy and told the news paper articles about their engagement.,He thought that he was doing a good job keeping their relationship a secret.,It was her first published article and he was impressed.,2,Why did Castle seem surprised about the newspaper when talking to Beckett?,135609,Castle,81.69-111.39,castle_s06e13_seg02_clip_26,She went against her wishes for privacy and told the news paper articles about their engagement. 13571,A cup,A pen,A pad,A phone,An envelope,4,What did House dropped on the table for Cameron when he was about to leave.,135610,House M.D.,35.43-44.17,house_s03e08_seg02_clip_06,An envelope 13572,Outside of Phoenix,Outside the Country,In Texas,In Mexico,In Canada ,0,According to the bartender where were the peacock boys when they were gunned down?,135611,Castle,11.24-17.53,castle_s07e07_seg02_clip_19,Outside of Phoenix 13573,Twenty years.,Five years.,Four years.,Ten years.,Eight years.,3,How long did Winters say he had been waiting after he body slammed Stephanie? ,135612,Castle,41.5-51.54,castle_s05e06_seg02_clip_24,Ten years. 13574,Drank some wine,Ate her dinner,Walked off,Sat down on the couch,Opened the freezer door,2,What did Phobe do before Mike said it was nice to meet you?,135613,Friends,40.04-44.1,friends_s09e03_seg02_clip_13,Walked off 13575,Rachel's dad.,Susan.,A priest.,Friend.,Rachel's mother.,0,Who was visiting Rachel and Ross when wearing a suit?,135614,Friends,46.04-49.58,friends_s03e07_seg02_clip_16,Rachel's dad. 13576,On the couch in their living room.,In her bed.,In the kitchen by the fridge.,In the hallway outside their apartment.,On the couch in the coffee shop.,0,Where was Rachel when she told Joey he was right? ,135615,Friends,0-11.55,friends_s10e03_seg02_clip_22,On the couch in their living room. 13577,Angry.,Happy.,Sleepy.,Sad.,Depressed.,0,How did Phobe feel when she told Monica she was fired? ,135616,Friends,0-8.54,friends_s10e12_seg02_clip_10,Angry. 13578,Beckett said Travis was at the police station.,Beckett said Travis was at the library.,Beckett said Travis was at the post office.,Beckett said Travis was in the plaza.,Beckett said Travis was at the White House.,3,Where did Beckett say Travis was before she said Teddy was not there?,135617,Castle,7.74-11.61,castle_s02e03_seg02_clip_23,Beckett said Travis was in the plaza. 13579,Near a vending machine,A patient's room for an intake,The general surgery unit,To the break room,The elevator,4,Where did everyone head to after they exited the meeting room?,135618,House M.D.,57.61-64.47,house_s02e04_seg02_clip_21,The elevator 13580,Phoebe uses the broom to poke at Monica and Rachel.,Phoebe dumps water on Monica and Rachel.,Phoebe hits Rachel and Monica with a pillow. ,Phoebe pushes Monica away while she keeps Rachel pinned to the ground.,Phoebe grabs both Monica and Rachel by the ear to stop the fight.,4,How does Phoebe break up the fight after Monica accidentally hits her with a sock?,135619,Friends,24.97-34.03,friends_s06e20_seg02_clip_14,Phoebe grabs both Monica and Rachel by the ear to stop the fight. 13581,Crystal is talking to Joey.,Chiara is talking to Joey.,Phoebe is talking to Joey.,Monica is talking to Joey.,Rachel is talking to Joey.,2,Who is talking to Joey when she is on the telephone?,135620,Friends,0-4.41,friends_s04e23-24_seg02_clip_37,Phoebe is talking to Joey. 13582,Ross threw up on her,Ross said he was in love with her,Ross told her he just wanted to be friends,Ross said someone took a shot at him,Ross had a gash on his face,3,Why did Rachel gasp loudly when talking with Ross?,135621,Friends,26.74-36.26,friends_s05e20_seg02_clip_16,Ross said someone took a shot at him 13583,On the floor,On the sofa,At the kitchen table,On the coffee table,On a easy chair,3,Where is Ross sitting when he tells Monica she is turning into their mother?,135622,Friends,21.97-36.31,friends_s01e06_seg02_clip_11,On the coffee table 13584,Kermit the Frog,George.,Alex.,Mickey Mouse.,Newt Scamander,2,Who wanted deodorant when he walked into the locker room?,135623,Grey's Anatomy,0-5.07,grey_s03e25_seg02_clip_21,Alex. 13585,House.,Cuddy,Foreman,Cameron.,Wilson.,2,"Who was in the same room as Joe when he asked ""Are you awake?""",135624,House M.D.,0-11.83,house_s02e20_seg02_clip_16,Foreman 13586,pick a lock,find a key,leave a note,break a window,kick the door in,0,what is foreman trying to do when he and house are outside of a door?,135625,House M.D.,18.91-28.81,house_s05e05_seg02_clip_05,pick a lock 13587,Rachael was sitting on the coffee table,Rachael was sitting on the floor,Rachael was sitting on the couch,Rachael was sitting at the kitchen table ,Rachael was standing,2,Where was Rachael sitting before her mother got up to leave?,135626,Friends,15.5-17.62,friends_s08e20_seg02_clip_13,Rachael was sitting on the couch 13588,Ross,Chandler,Monica,Rachel,Joey,2,Who does Ross look at right before he stands up?,135627,Friends,24.33-28.17,friends_s08e09_seg02_clip_14,Monica 13589,A console.,A suitcase.,An iPhone.,Two cups.,Folder,3,What was holding Castle when met Beckett?,135628,Castle,45.33-50.83,castle_s03e08_seg02_clip_10,Two cups. 13590,A potato.,A pillow.,A pretzel.,A pencil.,A pumpkin.,3,What was Rachel holding in her right hand when she asked Chandler if he knew the name?,135629,Friends,19.89-22.41,friends_s04e06_seg02_clip_07,A pencil. 13591,The SWAT team finds Castle sitting on the toilet in the bathroom.,The SWAT team finds Castle laying on the couch in the living room.,The SWAT team finds Castle laying on the floor of the apartment. ,The SWAT team finds Castle sitting at the kitchen table.,The SWAT team finds Castle standing in front of the fridge.,2,Where does the SWAT team find Castle when they enter the apartment?,135630,Castle,0-19.23,castle_s06e04_seg02_clip_18,The SWAT team finds Castle laying on the floor of the apartment. 13592,Tell Chase about how he is feeling. ,Lean back.,Lift the arm.,Tell Chase about where any pain is.,Breathe.,4,What does Chase asks his patient to do before the patient asks him a question?,135631,House M.D.,70.33-81.58,house_s01e13_seg02_clip_24,Breathe. 13593,a news update,a video,a letter,a comedy,a book,1,What did Barney try to distract Marshall with when Marshall was anxious?,135632,How I Met You Mother,26.11-39.76,met_s03e08_seg02_clip_01,a video 13594,He would see his sister at Christmas,He would see his sister at Thanksgiving,He would see his sister 4th of July,He would see his sister on Memorial Day,He would see his sister on St. Patrick's Day,1,Which holiday does Ross say he would see his sister when he is have a discussion with Rachel,135633,Friends,9.45-17.96,friends_s05e05_seg02_clip_17,He would see his sister at Thanksgiving 13595,The perfect lawyer,The perfect alibi,The perfect case,The perfect appeal,The perfect nose,1,What does Beckett say that Leopold has the perfect form of when she's talking about his case?,135634,Castle,60.29-70.87,castle_s05e17_seg02_clip_17,The perfect alibi 13596,she needs her there for support.,she needs someone to drive her,she needs her to pay,she needs the company,she needs her to break the ice. ,0,Why does rachel need pheobe to go to dinner when they are talking about it?,135635,Friends,18.92-22.89,friends_s08e08_seg01_clip_00,she needs her there for support. 13597,green,black,white,red,grey,3,what color is castle shirt when he is standing in front of the suspects wall?,135636,Castle,0-88.7,castle_s06e21_seg02_clip_21,red 13598,Toni says that she had an affair with her boss.,Toni says that she had an affair with her maid.,Toni says that she had an affair with her doorman.,Toni says that she had an affair with her husband's boss.,Toni says that she had an affair with her best friend.,3,Who does Toni say she had an affair with when being questioned by Castle and Beckett?,135637,Castle,77.04-91.18,castle_s03e02_seg02_clip_16,Toni says that she had an affair with her husband's boss. 13599,She's not dressed,She has curlers in her hair ,Because she's in the tub ,He thought she wasn't home ,She's with Leonard,2,Why does Sheldon look surprised when he finds Penny?,135638,The Big Bang Theory,15.05-23.48,s03e08_seg02_clip_01,Because she's in the tub 13600,the coffeehouse is for the elderly only.,The coffeehouse is on fire,The coffeehouse has a big sale ,the coffeehouse is currently being renovated,The coffeehouse will be closed for an hour,4,What did goey yell out and say about the coffeehouse after he didnt recive the response he was looking for ?,135639,Friends,14.65-16.17,friends_s06e12_seg02_clip_12,The coffeehouse will be closed for an hour 13601,Leonard and Raj are doing karaoke ,Leonard and Raj are eating dinner,Leonard and Raj are partying,Leonard and Raj are drinking,Leonard and Raj are sleeping,0,What is Leonard and Raj doing when they are with Sheldon and Howard?,135640,The Big Bang Theory,26.07-33.12,s09e16_seg02_clip_11,Leonard and Raj are doing karaoke 13602,His attitude.,His stupid hair.,His clothes.,His taste in movies.,His voice.,1,What does Abbey tell Barney she hates the most about Ted when they're laying in bed?,135641,How I Met You Mother,13.4-24.97,met_s03e19_seg02_clip_07,His stupid hair. 13603,The 108th Precinct.,The 13th Precinct. ,The 88th Precinct. ,The 12th Precinct. ,The 1st Precinct. ,3,What does Gates say her precinct is when she is introducing herself to the camera crew. ,135642,Castle,0-37.69,castle_s05e07_seg02_clip_04,The 12th Precinct. 13604,Green,Black,Yellow,Purple,Grey,1,"What color is the shirt that Castle is wearing when he say's ""Not if I stop her.""?",135643,Castle,0-9.9,castle_s04e01_seg02_clip_21,Black 13605,an earth device ,a cosmo compartment,high tech toilet,Howard's gizmo,a joke,2,What did Raj call Howard's invention when he spoke to Howard at the comic book store?,135644,The Big Bang Theory,28.22-43.42,s02e22_seg01_clip_00,high tech toilet 13606,Britney Spears ,Odette Morton,Mariah Carey,Mary Swinton,Michelle Olger,1,What is the name of the woman Castle compares Barbara too when talking to Beckett?,135645,Castle,32.56-44.31,castle_s04e18_seg02_clip_16,Odette Morton 13607,Ana.,Lara.,Vega.,Beckett.,Castle.,1,Who does Sanchez mention after Beckett asks for a name?,135646,Castle,0-8.08,castle_s02e15_seg02_clip_17,Lara. 13608,Because Penny called Alex.,Because Penny is crazy.,Because Penny want to party with Leonard.,Because Penny is jealous.,Because Alex is jelous of Penny.,3,Why Penny want to kill Alex after Sheldon gossip?,135647,The Big Bang Theory,0-59.56,s06e12_seg02_clip_03,Because Penny is jealous. 13609,a sweater,a blanket,a throw pillow,a coat,a pair of gloves,2,What is sitting behind Rachel after she gets up from the sofa?,135648,Friends,21.12-25.53,friends_s08e15_seg02_clip_18,a throw pillow 13610,Halloween.,Christmas. ,Ramadan,Chinese new year.,Hannukah.,4,What holiday does Burke reference when Yang takes notes?,135649,Grey's Anatomy,35.05-48.5,grey_s02e12_seg02_clip_03,Hannukah. 13611,a telephone,a magazine,a plate of cookies,a dress,a purse,0,What is Rachel holding when Joey tells her about the interview? ,135650,Friends,14.31-24.75,friends_s03e10_seg02_clip_13,a telephone 13612,She and Castle fight together to subdue Nadir,She shoots him,She punches him in the face,She steps on his foot and points the gun at him,She sprays him with pepper spray,3,How does Beckett finally stop Nadir after he fights with Castle?,135651,Castle,69.23-78.93,castle_s01e07_seg02_clip_25,She steps on his foot and points the gun at him 13613,Because Mandy and Leonard work in the same place.,Because Leonard still loves Mandy.,Because Leonard wants to marry Mandy.,Because Leonard wants to kiss Mandy.,Because Mandy kiss Leonard.,0,Why Penny is concerned about Mandy after Leonard broke with her?,135652,The Big Bang Theory,0-34.74,s09e02_seg02_clip_11,Because Mandy and Leonard work in the same place. 13614,Talking on the phone,Dancing,Singing,Watching the TV,Eating,3,What was Dugan doing before House entered the room?,135653,House M.D.,13.87-23.12,house_s07e06_seg02_clip_17,Watching the TV 13615,She is walking beside him as they enter the room.,She is sitting down at her desk.,She is in the break room.,She is leaning over her desk,They are walking along outside.,0,Where is Beckett when Esposito tells her a cell phone was used in East Harlem earlier that day?,135654,Castle,0-5.23,castle_s08e08_seg02_clip_22,She is walking beside him as they enter the room. 13616,be rude to Penny,be nice to Penny,sue Penny,pay Leonard,eat dinner,2,What did Penny tell Sheldon to do when he came back into the room?,135655,The Big Bang Theory,46.01-63.02,s02e14_seg02_clip_06,sue Penny 13617,by the door,behind the suspect ,behind a two way mirror,in the hallway,beside the table,0,Where is Castle standing when Beckett was conducting the interview with Ferguson?,135656,Castle,7.84-16.15,castle_s06e11_seg02_clip_07,by the door 13618,A congenital defect that was missed.,Bacterial infection.,Viral infection.,Neurological disorder.,Alleric reaction.,4,What does House say is wrong with his patient when Foreman disputes him?,135657,House M.D.,7.67-13.09,house_s04e14_seg02_clip_22,Alleric reaction. 13619,They were crossed,Stiffly straight at his sides,Raised up in the air,Around Liz's shoulder,Resting on Liz's lap,0,How were Ross's arms after Paul pointed his finger at him?,135658,Friends,24.41-30.51,friends_s06e21_seg02_clip_03,They were crossed 13620,Crutches,Files,Papers,Medicine bottles,Clothes,0,What does Chase have under his arms when Foreman is talking to him?,135659,House M.D.,0-4.45,house_s08e12_seg02_clip_19,Crutches 13621,Playing catch at a park,Driving a car,Watching television,Walking up a flight of stairs,Flying on a plane,3,What are Penny and Leonard doing when they are talking?,135660,The Big Bang Theory,5.27-62.02,s07e06_seg02_clip_00,Walking up a flight of stairs 13622,She climbed on him.,She gave him a present.,She gave him some rocks.,She kicked him.,She walked away.,0,What did Beckett do after Castle put his hands together?,135661,Castle,51.79-55.59,castle_s05e22_seg02_clip_08,She climbed on him. 13623,Wilson says he hates mushrooms being under the roast beef.,Wilson says he hates pickles being under the cheese.,Wilson says he hates turkey being under the cheese.,Wilson says he hates mushrooms being under the cheese.,Wilson says he hates mushrooms being under the pickle.,3,What does Wilson say he hates before House talks about Wilson being invited to a lyching?,135662,House M.D.,36.37-49,house_s05e15_seg02_clip_17,Wilson says he hates mushrooms being under the cheese. 13624,An empty bowl.,A stack of plates.,A pile of napkins.,A tablecloth.,A bowl of snacks.,4,What did Raj put on the table after he walked to it?,135663,The Big Bang Theory,11.21-16.23,s06e16_seg02_clip_08,A bowl of snacks. 13625,A lamp,A book,A cat,A laptop,A bottle,4,What was Raj holding when Howard was saying something about dandruff medication?,135664,The Big Bang Theory,31.36-36.7,s06e15_seg02_clip_00,A bottle 13626,He is sitting in a lawn chair. ,He is sitting on the floor. ,He is sitting in the canoe. ,He is sitting on a bucket. ,He is sitting on the counter. ,2,Where is Chandler sitting when he is watching television?,135665,Friends,54.39-57.25,friends_s04e07_seg02_clip_06,He is sitting in the canoe. 13627,Red,Blue,Green,Purple,Orange,2,What color did House say the patient blood turned when he was talking to Thirteen?,135666,House M.D.,32.67-39.93,house_s04e03_seg02_clip_24,Green 13628,Four,One,Five,Three,Two,4,How many Doctors walked out of the room when House sat down at the table,135667,House M.D.,9.45-15.3,house_s05e15_seg02_clip_13,Two 13629,1985.,1982.,1980.,1984.,1983.,4,What year was it when Barney's dad left him?,135668,How I Met You Mother,8.66-11.64,met_s06e21_seg01_clip_01,1983. 13630,Cathy,Chris,Troy,Mercedes,marquis,0,Who did he just get off the phone before he sat down ,135669,How I Met You Mother,11.71-15.01,met_s03e08_seg02_clip_04,Cathy 13631,A tape measure,A hammer,A can of soda,A clipboard,A tool belt,0,What did the maintenance man have in his hands before Ross walked up behind him?,135670,Friends,26.34-33.78,friends_s08e03_seg02_clip_10,A tape measure 13632,Because Monica insulted her,Because Monica is wearing a bad shirt,Because Monica cannot guess the person she wants her to,Because Monica will not talk to her,Because Monica is yelling at her,2,Why is Phoebe upset with Monica after Monica and her talk?,135671,Friends,15.52-58.44,friends_s03e21_seg02_clip_15,Because Monica cannot guess the person she wants her to 13633,A bottle of oil.,A telephone.,A container of lotion.,A briefcase.,A stapler. ,3,What is in Phoebe's hand when she says that she will work next to the plant?,135672,Friends,57.67-61.45,friends_s06e15-16_seg02_clip_36,A briefcase. 13634,A woman,Food,A tray,Clothes,The duck,2,What does Joey take with him when he goes into his bedroom?,135673,Friends,25.19-29.68,friends_s07e19_seg02_clip_14,A tray 13635,Castle's mother is changing her clothes,Castle's mother is taking off her make-up,Castle's mother is laying in bed reading a book,Castle's mother is brushing her hair,Castle's mother is helping the grey-haired man into her bed,4,What is Castle's mother doing in a bedroom before walking out the door,135674,Castle,0-9.58,castle_s06e12_seg02_clip_22,Castle's mother is helping the grey-haired man into her bed 13636,It could take a while,It will happen immediately,Tuesday at 4:00,By midnight,It already happened,0,When does Meredith tell Grace's loved ones that it would be done after they asked how long it would take?,135675,Grey's Anatomy,32.26-50.32,grey_s02e15_seg02_clip_20,It could take a while 13637,"Okay, cross out everything that doesn't appear in every alter.","okay, we move forward from this point.",We can't always blame every possible solution ,We can't look where there is no solution,We must look beyond and beyond for answers.,0,"What did Chase say after he said ""Test shows she is still pregnant""?",135676,House M.D.,0-9.56,house_s08e07_seg02_clip_22,"Okay, cross out everything that doesn't appear in every alter." 13638,New Jersey School system,DOJ,Dupont,The NFL Patriots,Nasa,4,Who does the patient laying in the bed reveal she works for after her surgery? ,135677,House M.D.,63.83-88.04,house_s04e02_seg02_clip_23,Nasa 13639,Steve sat on the couch in the room.,Steve sat on a chair in the room.,Steve was standing.,Steve sat on the desk.,Steve sat on the hospital bed in the room.,4,Where did Steve sit after he was taken into a hospital room by Meredith and Bailey? ,135678,Grey's Anatomy,40.93-46.98,grey_s02e10_seg02_clip_01,Steve sat on the hospital bed in the room. 13640,warrant for dna,grahams gum,grahams soda can,grahams sweat rag,grahams glass of water,4,where does ryan plan on getting grahams dna when telling him about the hair found at the crime scene?,135679,Castle,62.53-70.52,castle_s08e05_seg02_clip_23,grahams glass of water 13641,Because she doesn't have time to run tests,Because she doesn't want to embarrass him in front of Meredith,Because there are no tests to see if he's lying,Because Steve doesn't have insurance,Because Meredith is embarrassed ,2,Why does Bailey say that she will have to take Steve's word when he said that he didn't take anything?,135680,Grey's Anatomy,65.58-68.37,grey_s02e10_seg02_clip_01,Because there are no tests to see if he's lying 13642,If he could get up.,If he could move.,If he could see.,If he felt pain.,If he was tired.,2,What did Joe ask ask Foreman after he mentioned what he didn't like?,135681,House M.D.,28.22-34.59,house_s02e20_seg02_clip_16,If he could see. 13643,A woman.,A ladder.,Guns.,Food.,A suitcase.,1,What was Joey holding on to when he talked about Blargon 7?,135682,Friends,0-9.24,friends_s08e19_seg02_clip_02,A ladder. 13644,She grabs his ear. ,She smacks Ross in the head. ,She is rubbing Ross's shoulders. ,She falls off the couch. ,She is drinking coffee. ,2,What is Rachel doing when she is sitting on the arm of the couch?,135683,Friends,0-1.55,friends_s03e10_seg02_clip_01,She is rubbing Ross's shoulders. 13645,To a club. ,Her boyfriend's place. ,Her best friend's place. ,To a bar. ,Home. ,4,Where did Margo assume that Hannah went after she left?,135684,Castle,57.54-62.07,castle_s05e14_seg02_clip_07,Home. 13646,She is genuinely happy for him. ,She is excited for him because he is so good. ,She is wondering why he never played for her before. ,She is wondering why he has kept this from her. ,She is being sarcastic and says he should play in public. ,4,How does Rachel respond after Ross plays his music?,135685,Friends,0.57-7.44,friends_s04e07_seg02_clip_06,She is being sarcastic and says he should play in public. 13647,House goes into Sebastian's bathroom. ,House walks back to the hallway. ,House walks to Sebastian's bed. ,House stands under the television and ironically asks them about their day. ,House stands next to Cameron and tells her she's unwise. ,0,Where does House go after turning off the television?,135686,House M.D.,48.24-53.01,house_s02e04_seg02_clip_15,House goes into Sebastian's bathroom. 13648,Cooking some dinner ,Crying about life,Sleeping with House,Drinking her wine,Painting a bedroom,4,What is doctor Cuddy doing at home when Thirteen is observing the patients at night?,135687,House M.D.,28.99-57.52,house_s05e06_seg02_clip_22,Painting a bedroom 13649,When Sheldon slid off the couch.,When Sheldon couldn't stop coughing.,When Sheldon got up and walked away.,When Sheldon started gesturing to Amy.,After Sheldon started crying.,4,When did Amy stop filming when Sheldon was in front of the camera?,135688,The Big Bang Theory,45.78-50.96,s08e10_seg02_clip_11,After Sheldon started crying. 13650,Hides behind the wall.,Runs up the stairs.,Pretends not to see Amy.,Invites Amy upstairs.,Walks up the stairs.,1,"What does Sheldon do after implying that women ""be crazy""?",135689,The Big Bang Theory,5.61-41.95,s04e05_seg02_clip_13,Runs up the stairs. 13651,Howard tuns and stares at Raj.,Howard throws his tray at Raj.,Howard call Alex to come sit with them.,Howard skates around the table,Howard pushes Raj.,0,What does Howard do when Raj gives Leonard advice?,135690,The Big Bang Theory,0-3.6,s06e12_seg02_clip_02,Howard tuns and stares at Raj. 13652,gross,boring,bland,extraordinary,watery,3,How did Barney feel about the coffee when he mentioned the coffee?,135691,How I Met You Mother,18.31-28.06,met_s05e05_seg02_clip_16,extraordinary 13653,Because it was a terrible play,Because they were boring ,Because there was no heat between the actors,Because it was a play about incest,Because he was hungry,2,Why did Chandler say it was like cousins having sex when they were watching the play?,135692,Friends,4.35-19.44,friends_s04e13_seg02_clip_06,Because there was no heat between the actors 13654,marry beckett,More Wishes,Enternal wealth,One for Jenny one for the baby,bring Castle's wife back,3,What did Castle use his two remaining wishes on after Ryan's wife went unconscious?,135693,Castle,81.86-93.03,castle_s08e17_seg02_clip_25,One for Jenny one for the baby 13655,Hayley tells Castle to shut up,Hayley tells Castle to handcuff himself,Hayley tells Castle to handcuff Caldwell,Hayley shoots Castle,Hayley doesn't do anything to Caldwell,3,What does Hayley do to Castle when she is pointing her gun at both Castle and Caldwell?,135694,Castle,32.15-40.3,castle_s08e13_seg02_clip_21,Hayley shoots Castle 13656,A stocking. ,An ice pack. ,A boot. ,A blanket. ,A cast. ,1,What is on Leonard's ankle when he sits near the table. ,135695,The Big Bang Theory,14.85-24.31,s07e11_seg01_clip_00,An ice pack. 13657,"Oh no, it's the wrong thing!",Take the cover off.,"Take it away, I can't stand it.","Now, slide it closer to his chair.","That's great, it will be a classic moment. ",3,What did Mr. Druthers say to do with the object after it was placed on the table.,135696,How I Met You Mother,30.48-35.51,met_s02e06_seg02_clip_15,"Now, slide it closer to his chair." 13658,only cheese,pepperoni,"sausage, mushrooms, light olives pizza",cheese and mushrooms,sausage only,2,What kind of pizza did Sheldon want when Kathy came over?,135697,The Big Bang Theory,47.87-58.02,s02e06_seg02_clip_16,"sausage, mushrooms, light olives pizza" 13659,Ada,Ava,Eva,Adriene,Alice,1,What name was Rebecca given by Alex before she said she was more her?,135698,Grey's Anatomy,4.01-12.91,grey_s03e25_seg02_clip_23,Ava 13660,His fiance Mindy,His wife Mandy,His girlfriend Candy,His sister Kassey ,His boyfriend Marcus,0,Who does the patient introduce the couple to after interrupting the doctor?,135699,House M.D.,66.02-88.02,house_s01e03_seg02_clip_06,His fiance Mindy 13661,Embarrassed,happy,Ecstatic,Jovial,Depressed,0,How did Chandler feel after the nurse walked in on him while he was trying to have sex with monica?,135700,Friends,16.82-29.22,friends_s08e23-24_seg02_clip_16,Embarrassed 13662,Lily and Marshall went to pay the bill.,Lily and Marshall went to sit with Robin.,Lily and Marshall went on stage.,Lily and Marshall went to the bathroom.,Lily and Marshall went to sit with others.,4,What did Lily and Marshall after kissing each other?,135701,How I Met You Mother,23.21-58.02,met_s02e03_seg02_clip_03,Lily and Marshall went to sit with others. 13663,A mini version of Joey.,A mini version of Chandler.,A big version of Chandler,A big version of Joey.,A mini version of both Chandler and Joey.,1,Who did Chandler say to kill when Joey was standing on the map.,135702,Friends,37.2-44.02,friends_s04e23-24_seg02_clip_02,A mini version of Chandler. 13664,Runs away,Puts on bubble wrap,Hits him on the head,Cries,Complains to Monica,2,What does Ross do after he discovers that Joey is wearing bubble wrap,135703,Friends,7.04-26.11,friends_s10e16_seg02_clip_02,Hits him on the head 13665,George held his father's hand.,George hit his father.,George yelled at his father.,George hugged his father.,George kissed his father?,4,What did George do to his father after apologizing?,135704,Grey's Anatomy,74.68-79.02,grey_s03e12_seg02_clip_16,George kissed his father? 13666,They are drinking wine. ,They are watching a movie. ,They are listening to music. ,They are telling each other stories. ,They are playing cards. ,4,What are Phoebe and Monica doing when they are hanging out at Monica's?,135705,Friends,0-2.98,friends_s05e22_seg02_clip_15,They are playing cards. 13667,Izzie was eating a sandwich.,Izzie was eating a lobster.,Izzie was eating a salad.,Izzie was eating a slice of pizza.,Izzie was eating a taco.,0,What type of food was Izzie eating when George and Meredith were playing cards?,135706,Grey's Anatomy,47.33-52.34,grey_s03e06_seg02_clip_13,Izzie was eating a sandwich. 13668,In a classroom,A police office,In the kitchen,A hospital bed,At the park,3,Where is Beckett when she is talking to Castle about being shot?,135707,Castle,0-9.4,castle_s04e01_seg02_clip_06,A hospital bed 13669,Grabbed a bottle,Picked up a book,Shook her hand,Combed his hair,Ate a cracker,2,What did Preston do when Mrs. Byrd said it was a pleasure?,135708,Grey's Anatomy,43.24-46.42,grey_s03e06_seg02_clip_03,Shook her hand 13670,Taub,Cuddy,Kutner,Foreman,Wilson,2,Who said the patient's head had gotten chopped off when talking to House? ,135709,House M.D.,29.62-33.85,house_s05e02_seg02_clip_01,Kutner 13671,pushed Ross,walked out,yelled,cried,sat down,0,What did Joey do after he stopped talking?,135710,Friends,38.45-47.9,friends_s06e19_seg02_clip_06,pushed Ross 13672,Baby Fever.,Wedding Fever.,Cake Fever.,Expensive Fever.,Marriage Fever.,0,What kind of fever did Monica say she didn't have when she was talking to Chandler?,135711,Friends,31.63-38.46,friends_s05e15_seg02_clip_07,Baby Fever. 13673,Because Jelly felt,Because there was aparking meter on the floor,Because Jerry is running,Because is late,Because there is a ghost,1,Why Barney shout after Jerry was shouting?,135712,How I Met You Mother,46.22-49.22,met_s06e21_seg02_clip_09,Because there was aparking meter on the floor 13674,Ross gets very upset,Ross jumps up and down,Ross falls down,Ross yells at Phoebe,Ross yells at Monica,0,What happens after Ross looks at the baby for awhile?,135713,Friends,37.53-50.04,friends_s10e05_seg02_clip_17,Ross gets very upset 13675,Joey is upset with the new furniture because it doesn't match the apartment.,Joey is upset with the new furniture because it doesn't suit his aesthetic. ,Joey is upset with the new furniture because it's uncomfortable.,Joey is upset with the new furniture because he knows Chandler bought it out of guilt.,Joey is upset with the new furniture because ,3,Why is Joey upset about the new furniture when talking to Chandler?,135714,Friends,19.18-25.92,friends_s04e07_seg02_clip_21,Joey is upset with the new furniture because he knows Chandler bought it out of guilt. 13676,asked for money,skipped eating,skipped paying,paid Leonard back,asked for bread,3,What did Penny do when she started eating food?,135715,The Big Bang Theory,32.46-47.9,s02e14_seg02_clip_06,paid Leonard back 13677,That sex change operation,The liposuction to suck out all his unwanted fat,Taking care of the hernia that he has,That laser eye surgery,That butt implant surgery,3,What did Joey tell Chandler he would start with after his insurance kicks in,135716,Friends,33.24-43.14,friends_s06e04_seg02_clip_09,That laser eye surgery 13678,Because he had a boyfriend.,Because a guy in his class has a crush on him.,Because Joey had a crush on him.,Because Ross was in love with a guy.,Because a girl in his class had a crush on him.,1,Why did Joey say Ross has a boyfriend when Rachel walked into the room?,135717,Friends,22.91-33.22,friends_s07e18_seg02_clip_06,Because a guy in his class has a crush on him. 13679,Blue,Black,Yellow,Red,Purple,2,What color shirt was Sheldon wearing when he was knocking on Penny's door? ,135718,The Big Bang Theory,5.12-10.84,s04e01_seg02_clip_04,Yellow 13680,Thrashes around,Screams at the top of her lungs,Becomes unconscious ,Sings a song,Asks for her husband,0,What is the patient doing when House tries to treat her? ,135719,House M.D.,7.92-13.86,house_s03e14_seg02_clip_23,Thrashes around 13681,refills Castle's coffee,drinks her coffee,grabs a muffin,picks up her cell phone,sits with Martha,3,What does Beckett do after Castle says its odd that Martha is practicing her lines so early?,135720,Castle,61.04-66.55,castle_s07e22_seg02_clip_00,picks up her cell phone 13682,On the floor.,In her pocket.,"Under a chair,",In the jacket.,On the phone base.,4,Where did the nurse put the phone after she announced that Howard was stuck?,135721,The Big Bang Theory,1.82-6.68,s04e01_seg02_clip_16,On the phone base. 13683,A banana,M&Ms,A gummy worm,A sandwich,He is not eating anything,2,What is George eating when he is standing by his locker?,135722,Grey's Anatomy,16.56-92.03,grey_s03e01_seg02_clip_17,A gummy worm 13684,A mirror,A glass wall,A brick wall,Nothing,A bulletproof vest,1,What is Beckett standing behind when she's talking to Leopold?,135723,Castle,46.02-61.67,castle_s05e17_seg02_clip_17,A glass wall 13685,Zero,Seven,Two,Four,Five,3,How many containers of yogurt are on the shelf when the man opens the fridge?,135724,House M.D.,91.21-91.69,house_s05e21_seg02_clip_06,Four 13686,A hell of a lot better than some people I just saw outside and our victim.,"A little nauseated but I'm fine, I don't know about the victim though.",A hell of a lot better than our victim here.,A hell of a lot better than Esposito.,"I'm doing great, girl! How you doing?",2,How does Lanie respond when Beckett asks her how she is doing?,135725,Castle,1.11-6.66,castle_s08e12_seg02_clip_01,A hell of a lot better than our victim here. 13687,Emily said she has to get into her car to Adams,Emily said she has to get into her car to House,Emily said she has to get into her car to Chase,Emily said she has to get into her car to Foreman,Emily said she has to get into her car to Logan,1,Who did Emily say she has to get in her car to when she is waiting for the elevator?,135726,House M.D.,0-9.85,house_s08e11_seg02_clip_23,Emily said she has to get into her car to House 13688,Robin told Ted that he should let Marshall keep the sword so that he doesn't have to break up the set.,Robin told Ted that he should grow up.,Robin told Ted that it is true because her building is infested with dragons.,Robin told Ted that she hopes that he doesn't really plan to use the sword.,Robin told Ted that he should pack the sword very carefully.,2,What did Robin say after Marshall told Ted that he was going to need the sword?,135727,How I Met You Mother,27.46-36.92,met_s02e18_seg02_clip_00,Robin told Ted that it is true because her building is infested with dragons. 13689,Phoebe,A little girl,Monica,Janice,Rachael,1,Who asked Ross to dance before he had a chance to dance with Mona?,135728,Friends,23.76-31.01,friends_s08e01_seg02_clip_14,A little girl 13690,Liz wanted to know what Beckett's favorite food was.,Liz wanted to know what college went to.,Liz wanted to know what Beckett wanted to be growing up.,Liz wanted to know how old Beckett was.,Liz wanted to know how Beckett was able to fight crime and keep her hair like it was.,4,What did Liz want to know about Beckett when she met her?,135729,Castle,41.87-45.51,castle_s07e22_seg02_clip_03,Liz wanted to know how Beckett was able to fight crime and keep her hair like it was. 13691,Milk,Beer,Kool Aid,Eggs,Coffee,0,What does Joey say wine doesn't need to cost more than before his girlfriend arrives?,135730,Friends,28.06-50.68,friends_s09e21_seg02_clip_03,Milk 13692,Becket get pin from her hair,Beckett get a key from her pockett,Beckett pull her gun out from her back pocket,Beckett knock on the dor,Beckett kicked the door,2,What did Beckett do before she open the door to the warehouse?,135731,Castle,70.22-77.92,castle_s07e10_seg02_clip_21,Beckett pull her gun out from her back pocket 13693,The man is holding some flowers,The man is holding a gun,The man is holding a baby ,The man is holding a knife,The man is holding a pot of boiling water,2,What is the man in the chair holding when House is standing over him talking,135732,House M.D.,55-65.04,house_s02e22_seg02_clip_19,The man is holding a baby 13694,Clifford the Big Red Dog. ,Big Ben and the Tower of London. ,Casino Royale.,The Lorax.,How Sam Won the West. ,2,What is the title of the book that Castle says that Hunt gave him after he met them at the library when he was little?,135733,Castle,68.87-90.02,castle_s05e16_seg02_clip_21,Casino Royale. 13695,Karate,Yoga,Jazzercise,Lifting weights,Riding stationary bikes,1,What are Penny and Sheldon doing when they are together in the living room in front of the couch?,135734,The Big Bang Theory,62.34-67.03,s07e13_seg02_clip_12,Yoga 13696,coffee ,a briefcase ,a dog leash ,a patient file ,a lunch bag ,2,What is Dr. Bennett holding in his hand when he is in the park? ,135735,Grey's Anatomy,57.92-59.78,grey_s03e22_seg02_clip_14,a dog leash 13697,A knife,An ax,A sword,Nothing,A needle,1,"What does the victim have stuck in their back when castle, esposito, and beckett arrive to the scene?",135736,Castle,53.03-56.28,castle_s03e18_seg02_clip_01,An ax 13698,In the garage. ,In the kitchen. ,In the bedroom. ,In the car. ,On the roof. ,2,Where do Robin and Ted end up after they are sitting on the red sofa? ,135737,How I Met You Mother,2.12-9.08,met_s03e08_seg02_clip_12,In the bedroom. 13699,Ross is cocky because he is not getting divorced again.,Ross is cocky because Rachel proposed to him.,Ross is cocky because Rachel made out with him.,Ross is cocky because he has a new suit.,Ross is cocky because has new shoes.,2,Why is Ross cocky after Monica chastises Rachel?,135738,Friends,17.41-21.25,friends_s07e01_seg02_clip_17,Ross is cocky because Rachel made out with him. 13700,She walked across the room.,She started erasing the board.,She handed him a file.,She put her finger on her mouth.,She picked up a book.,3,What did Beckett do after Castle talked about a nefarious scandal rife with with corruption?,135739,Castle,8.63-16.34,castle_s07e08_seg02_clip_02,She put her finger on her mouth. 13701,he went to school with him,He's seen him at the club,he use to live with him ,he was once House's boss,he has had a confrontation with him,1,Why does House feel Chase's boss is a egomaniac when asking Chase for help? ,135740,House M.D.,30.49-35.95,house_s05e17_seg02_clip_17,He's seen him at the club 13702,brush his hair,put on his shoes,pick up his briefcase,put on his gloves,button his shirt,2,What does Rick do before Joey wishes him good luck?,135741,Friends,17.34-20.65,friends_s04e04_seg02_clip_18,pick up his briefcase 13703,She thinks guys who don't call back are sexy. ,She thinks guys who cook are sexy. ,She thinks guys who shut up are sexy. ,She thinks guys who grow a goatee are sexy. ,She thinks guys who call their mom are sexy. ,1,What does Stella say she thinks is sexy when she is with Ted?,135742,How I Met You Mother,2.42-13.31,met_s04e01_seg02_clip_05,She thinks guys who cook are sexy. 13704,Will you marry me,are you ready to order,You look beautiful,You take as much time as you need.,I farted.,3,What is the last thing that joey tells rachel when they are at the restaurant together? ,135743,Friends,53.67-58.03,friends_s08e16_seg02_clip_16,You take as much time as you need. 13705,Rachel father wants to give her a bracelet ,Rachel father want to give her a BMW,Rachel father wants to give her a ring,Rachel father wants to give her a house,Rachel father wants to give her a Mercedes convertible,4,What does Rachel father wants to give her if and when she moves back home?,135744,Friends,26.86-42.79,friends_s01e05_seg02_clip_01,Rachel father wants to give her a Mercedes convertible 13706,Derek said yellow yellow yellow,"Derek said clamp, clamp, clamp",Derek said blue blue blue,Derek said blood blodd blood,Derek said bye bye bye,1,what did Derek repeat three times after the artery ruptured?,135745,Grey's Anatomy,15.35-99.03,grey_s01e06_seg02_clip_20,"Derek said clamp, clamp, clamp" 13707,Howard walks out the door.,Howard pats himself.,Howard jumps on the bed.,Howard dances to music.,Howard leans against the wall.,1,What does Howard do after Bernadette says she left her phone downstairs?,135746,The Big Bang Theory,2.4-5.4,s10e05_seg02_clip_05,Howard pats himself. 13708,eating a hot dog,smoking a cigarette,drinking a soda,on his knees crying,talking to a woman,3,What is Barney doing when Ted walks by him on the side walk? ,135747,How I Met You Mother,27.64-37.72,met_s02e14_seg02_clip_14,on his knees crying 13709,A stuffed baby doll was on Joey's chest.,A stuffed bear was on Joey's chest.,A stuffed dog was on Joey's chest.,A stuffed dinosaur was on Joey's chest.,Joey didn't have anything on his chest.,1,What stuffed animal was on Joey's chest when he was walking with Chandler?,135748,Friends,50.77-58.03,friends_s02e06_seg02_clip_03,A stuffed bear was on Joey's chest. 13710,165/85,145/74,195/98,135/89,138/74,4,What was the patients blood pressure when Cameron started to stress him out?,135749,House M.D.,76.52-90.02,house_s03e08_seg02_clip_04,138/74 13711,Agent Villante is standing in from of a judge,Weller is standing in from of a judge,McCord is standing in from of a judge,Hendericks is standing in from of a judge,Captain Gates is standing in from of a judge,1,Who is standing in front of a judge when its time to delivering a motion,135750,Castle,0-8.16,castle_s08e10_seg02_clip_26,Weller is standing in from of a judge 13712,Ted told Lily that she should label things properly.,Ted told Lily that she is very rude.,Ted told Lily that Bill Cosby was a terrible man.,"Ted told Lily that she can make fun, but America loved that guy for a reason.",Ted told Lily that she is ridiculous.,3,What did Ted say after Lily said that she labeled his box of sweaters with the name Bill Cosby?,135751,How I Met You Mother,8.54-17.39,met_s02e18_seg02_clip_00,"Ted told Lily that she can make fun, but America loved that guy for a reason." 13713,Cristina,Meredith,Alex,George,Denny,2,Who walked in when Izzy was making tea?,135752,Grey's Anatomy,0-22.51,grey_s03e18_seg02_clip_21,Alex 13714,Castle.,Detective Ryan.,Detective Esposito.,Her colleagues.,Gates.,3,Who did Beckett say witnessed Hawke in the back of his van shredding Alice's photo when she was interrogating him?,135753,Castle,10.92-17.29,castle_s06e08_seg02_clip_06,Her colleagues. 13715,"Because the fan thinks Phoebe is Phoebe Buffay, the porn star.",Because the fan thinks Phoebe is an actress on a TV show.,Because the fan thinks Phoebe is an model.,Because the fan thinks Phoebe is a singer.,Because the fan thinks Phoebe is a recording artist.,0,Why did Joey look at the fan confused when he said he has seen all of Phoebe's movies?,135754,Friends,46.22-55.83,friends_s06e14_seg02_clip_05,"Because the fan thinks Phoebe is Phoebe Buffay, the porn star." 13716,she laughed,she hit ross,she picked up emma,she called her mom,She made food,1,What does Rachel do after the kids walked away?,135755,Friends,3.73-8.26,friends_s10e07_seg02_clip_12,she hit ross 13717,He is working on reading a book.,He is working on cooking dinner.,He is working on his laptop.,He is working on a crossword puzzle.,He is working on writing a letter.,3,What is Ross working on when Joey starts talking to him about Charlie?,135756,Friends,35.54-45.57,friends_s09e21_seg02_clip_06,He is working on a crossword puzzle. 13718,ask Lily to do chores,give Lily instructions in case of Marshal's death,write a love letter,write an apology ,ask Lily to move with Marshall,1,Why did Marshall write a letter when he was thinking of Lily?,135757,How I Met You Mother,27.98-61.5,met_s03e02_seg02_clip_02,give Lily instructions in case of Marshal's death 13719,Phoebe has a coffee mug in her hands,Phoebe has her guitar in her hands,Phoebe has a cat in her hands,Phoebe has a giant muffin in her hands,Phoebe has a stack of magazines in her hands,2,What is in Phoebe's hands before she gets up to leave the room,135758,Friends,0-9.76,friends_s04e02_seg02_clip_08,Phoebe has a cat in her hands 13720,Chase was dozing in a chair,Chase was reading a magazine ,Chase was making a cellphone call,Chase was looking over patient's charts,Chase was cutting his toe nails,1,What was Chase doing after House walked into the room,135759,House M.D.,77.27-87.31,house_s02e22_seg02_clip_19,Chase was reading a magazine 13721,Cuddy sends Wilson back to work,Cuddy sends Wilson to get something for her,Cuddy sends Wilson to an errand,Cuddy sends Wilson to get medication for her,Cuddy doesn't send Wilson anywhere,0,Where does Cuddy send WIlson after he came to visit her at her home?,135760,House M.D.,50.76-64.21,house_s05e13_seg02_clip_03,Cuddy sends Wilson back to work 13722,a blue sweater,A red sweater ,a green sweater,a brown sweater,a purple sweater,1,What does Howard have on when speaking to Penny?,135761,The Big Bang Theory,0-50.18,s01e16_seg02_clip_01,A red sweater 13723,smacked him,slammed the door,left,smiled at him,took his phone,3,What did the girls do after Chandler started talking?,135762,Friends,0-5.7,friends_s01e19_seg02_clip_14,smiled at him 13724,Treating a patient,Reading a book,Talking on the phone,Folding a blanket,Looking through a drawer,0,What is Foreman doing when House and Thirteen enter the room?,135763,House M.D.,58.19-64.96,house_s04e05_seg02_clip_20,Treating a patient 13725,rotational symmetries,light paths,light speeds,wavelengths,dark matter,0,What was Sheldon working on when Leonard came back to the lab?,135764,The Big Bang Theory,54.31-61.02,s10e03_seg02_clip_12,rotational symmetries 13726,Because Barney has a terminal disease.,Because Barney is going to marry.,Because Barney taked about chess wax.,Because Barney will move with Marshall.,Because Barney won a price.,2,Why Lily opened his mouth when holding a glass?,135765,How I Met You Mother,27.46-61.03,met_s02e10_seg02_clip_11,Because Barney taked about chess wax. 13727,I don't let anyone drive my motorcycle.,Why not. You can't do any worse than Leonard.,Of course.,The motorcycle is in the shop.,We are taking my car.,1,What did Dave say after Penny asked if she could drive the motorcycle?,135766,The Big Bang Theory,38.4-46,s02e11_seg02_clip_09,Why not. You can't do any worse than Leonard. 13728,looking at his phone,looking out the window,sitting,looking over files,looking over notes,2,What is House doing when he's talking to Wilson,135767,House M.D.,0-6.83,house_s05e05_seg02_clip_13,sitting 13729,Wilson,Cuddy,Amber,A nurse. ,A patient. ,2,Who opened the door to look down the hallway when the doctors were discussing House and the case? ,135768,House M.D.,39.15-46.36,house_s04e03_seg02_clip_10,Amber 13730,A chicken beak.,A pig eye.,A bull testicle.,A pigs tongue.,A cow eye.,4,What did Foreman find in the vomit when he and Thirteen were looking around the area William had been camping?,135769,House M.D.,44.61-47.74,house_s06e17_seg02_clip_04,A cow eye. 13731,Dancing,Singing,Baking,Fighting,Tattooing himself,1,What is a man doing in the room with House before the camera reveals he is locked up?,135770,House M.D.,37.45-55.7,house_s03e06_seg02_clip_00,Singing 13732,happy,joyful,sleepy,frustrated,peaceful,3,How do you think Penny felt when she was trying to get Leonard and Howard and Raj to work?,135771,The Big Bang Theory,23.95-63.02,s02e18_seg02_clip_12,frustrated 13733,Bracken is wearing an Eagle's jersey.,Bracken is wearing a bathing suit.,Bracken is wearing a suit and tie.,Bracken is wearing a Phillies jersey.,Bracken is wearing a Sixer's jersey,2,What is Bracken wearing when Beckett tells him to do it and the says the truth will come out?,135772,Castle,0-27.34,castle_s06e22_seg02_clip_18,Bracken is wearing a suit and tie. 13734,Rolling to the floor.,Slipping out the side.,Hugging and rolling.,Shoving her over.,He realizes he can't.,2,How does Chandler plot to move after Janice is asleep?,135773,Friends,47.9-57.02,friends_s03e03_seg02_clip_10,Hugging and rolling. 13735,People's Bank,The IRS,High School Counselor,Mr. Stan Ford,Sandy Claws,3,Who did Castle say Alexis received a letter from after she asked him if he had the mail?,135774,Castle,39.76-44.33,castle_s04e03_seg02_clip_00,Mr. Stan Ford 13736,The patient's chart,A pen,His ID badge,His stethoscope,His keys,1,What did Chase throw onto the table after he spoke?,135775,House M.D.,0.46-4.55,house_s08e07_seg02_clip_22,A pen 13737,Sitting in a rocking chair.,Sitting on the couch.,Laying in bed.,Sitting at the dinning table.,Standing in the kitchen.,0,Where was Cuddy after she told Chase to go back to work?,135776,House M.D.,55.1-63.34,house_s05e13_seg02_clip_03,Sitting in a rocking chair. 13738,Fax machine.,A desk.,Chase.,A whiteboard.,A door.,3,What was behind Adams when she was speaking to Chase?,135777,House M.D.,28.81-38.26,house_s08e05_seg02_clip_15,A whiteboard. 13739,By a table and chairs,By a counter and cabinets,By a window and drapes,By a bathroom and sink,By a door and hallway,1,Where is House standing after he puts the syringe in the container on the wall?,135778,House M.D.,7.5-14,house_s02e06_seg02_clip_22,By a counter and cabinets 13740,Because the suspect has the best legal defense.,Because the suspect is more afraid of those he can name.,Because the suspect is ex-military.,Because the suspect hates the police.,Because the suspect is being paid to go to jail.,2,Why did Beckett say the suspect is not going to roll when the DA offers a plea deal?,135779,Castle,67.17-71.59,castle_s07e06_seg02_clip_19,Because the suspect is ex-military. 13741,Amy walks out of the apartment.,Amy kisses Sheldon.,Amy hugs Penny.,Amy arches her eyebrows in the sleep.,Amy sits on the floor.,3,What does Amy do after Sheldon mumbles?,135780,The Big Bang Theory,20.8-25.42,s10e04_seg02_clip_14,Amy arches her eyebrows in the sleep. 13742,she has some papers,she has a deck of cards,she has paperwork,she has some pens,she doesn't have anything ,1,What does Rachel have in her hands when she is shuffling them really fast?,135781,Friends,32.11-40.22,friends_s01e18_seg02_clip_11,she has a deck of cards 13743,Joey is marketing Bijan for men.,Joey is marketing Dijon for men.,Joey is marketing Blue John for men.,Joey is marketing Beyond for men.,Joey is marketing Booyah for men.,0,What brand of cologne is Joey marketing when customers walk by?,135782,Friends,0-17.7,friends_s02e02_seg02_clip_04,Joey is marketing Bijan for men. 13744,A notepad,A book,A coffee cup,A cell phone,A set of keys,2,What object is Leonard holding when the guys are standing around the island?,135783,The Big Bang Theory,0-8.77,s01e08_seg01_clip_03,A coffee cup 13745,Ross got 56 states,Chandler got 46 states,Joey got 46 states,Phoebe got 46 states,Paul got 46 states,0,Who got 46 states when they named the states?,135784,Friends,0.28-9.8,friends_s07e08_seg02_clip_01,Ross got 56 states 13746,Yellow,Blue,Purple,Red,Black,3,What color are the shoes when the curtain gets pulled shut?,135785,Grey's Anatomy,65.46-69.55,grey_s01e02_seg02_clip_03,Red 13747,A mugshot of a man,The crime scene,Two people kissing,A dog,A car,2,What is the the photo after Zach looks at it?,135786,Castle,45.46-48.16,castle_s06e13_seg02_clip_03,Two people kissing 13748,comicon,the zoo,Jewish Heaven,the cern collider,out for ice cream,2,Where does Sheldon say Howard can go when Howard asks Sheldon why he should do something nice for him? ,135787,The Big Bang Theory,22.88-30.21,s05e21_seg02_clip_00,Jewish Heaven 13749,Ted,Gael,Barney,Lily,Robin's ex husband,1,Who was Robin speaking of when she was committing to a relationship?,135788,How I Met You Mother,0-18.45,met_s03e02_seg02_clip_02,Gael 13750,Neighbor.,Joey.,Rachel.,Joey's date.,Chandler's ex.,2,Who did everyone see after the door opened?,135789,Friends,27.31-31.22,friends_s07e14_seg02_clip_19,Rachel. 13751,House said his office was being used by his teams.,House said he was hiding from a crazy mother.,House said he wanted to see what Cuddy was wearing.,House said he had to sit down on his way to the OR.,House said he wanted to spend some quality time with Cuddy.,0,How did House respond when Cuddy asked him why he was there?,135790,House M.D.,45.19-50.21,house_s04e03_seg02_clip_04,House said his office was being used by his teams. 13752,"Tommy said he's not feeling great, but when he saw Olivia enter his hospital room, he smiled and said, but better.",Tommy said he feels 100% better and ready to go home.,Tommy said he doesn't feel any change in his condition.,Tommy told Park that he has a headache and asked for aspirin.,"Tommy told Park that he is feeling better, but doesn't want any visitors.",0,How did Tommy respond when Park asked him how he was feeling?,135791,House M.D.,19.46-28.44,house_s08e08_seg02_clip_23,"Tommy said he's not feeling great, but when he saw Olivia enter his hospital room, he smiled and said, but better." 13753,A house,A carport,A pocket,A church,His mother's car,1,Where is the phone at after the man calls to tell them they failed?,135792,Castle,74.08-92.03,castle_s02e17_seg02_clip_14,A carport 13754,Chandler has nothing in his hands.,Chandler has a monkey,Chandler has a sandwich.,Chandler has a deck of cards.,Chandler has a drink in his hand.,4,What does have in his hands before getting picked by Phoebe?,135793,Friends,22.05-32.2,friends_s03e25_seg02_clip_07,Chandler has a drink in his hand. 13755,She broke the windows.,She spray painted it.,She egged it.,She scratched it.,She dumped mustard on it.,3,"What did the woman do to Ayersman's car when he said, don't do that?",135794,House M.D.,42.29-50.74,house_s02e08_seg02_clip_15,She scratched it. 13756,Gave each other a high five.,They fist bumped.,Nodded at each other.,Looked at the guy behind them.,Looked at the guy to their left.,1,What did Alexis and Haley do after Haley said surfers were hot?,135795,Castle,12.44-16.13,castle_s08e14_seg02_clip_00,They fist bumped. 13757,Laughs at Olivia,Gives her a hug,Grabs his pager,Kisses her on the forehead,Wipes away her tears,3,What did George do after Olivia said it was good that he was honest?,135796,Grey's Anatomy,78.28-87.84,grey_s02e02_seg02_clip_20,Kisses her on the forehead 13758,Penny and Howard. ,Raj and Howard. ,Penny and Raj. ,Howard and Bernadette. ,Amy and Raj. ,1,Who is hanging out with Leonard when he is in his apartment?,135797,The Big Bang Theory,30.79-34.78,s05e15_seg02_clip_07,Raj and Howard. 13759,His inhaler,His water,A flashlight,His cell phone,His glasses,4,What does Leonard grab from the table after he wakes up?,135798,The Big Bang Theory,24.11-30.96,s03e15_seg02_clip_14,His glasses 13760,A suit,A tuxedo,Scrubs,A hazmat suit,Khaki pants and a Polo shirt,2,What is Wilson wearing at the bar when House is trying to call him?,135799,House M.D.,48.7-52.79,house_s04e16_seg02_clip_15,Scrubs 13761,Purple Speedos,Silver Speedos,Red SPeedos,Green Speedos,Blue Speedos,4,What did Ryan see in the gift box after her opened it?,135800,Castle,17.22-37.52,castle_s07e03_seg02_clip_26,Blue Speedos 13762,Leonard takes off his shoes.,Leonard takes off his coat.,Leonard takes off his glasses.,Leonard takes off his pants.,Leonard takes off his hat.,0,What does Leonard take off when Howard is leaving a message on the answering machine?,135801,The Big Bang Theory,23.32-26.27,s02e08_seg02_clip_09,Leonard takes off his shoes. 13763,Ross and Rachel.,Phoebe and Chris.,Joey and Ross.,Rachel and Chris.,No one. ,0,Who came out of the chapel after Monica asked Chandler if he was sure he wanted to get married?,135802,Friends,51.36-58.5,friends_s05e23-24_seg02_clip_41,Ross and Rachel. 13764,dry erase board,the coffee machine,the sink,the bookcase,the window ,0,What does House stand by when discussing the patient with the team?,135803,House M.D.,53.31-57.37,house_s01e15_seg02_clip_06,dry erase board 13765,Howard says he doesn't want Raj around. ,Howard says that he doesn't have to now that he's married. ,Howard says you're welcome. ,Howard tells Raj to get out. ,Howard says it's his suitecase. ,4,What is Howard's response when Raj asks why he didn't say thank you?,135804,The Big Bang Theory,9.41-13.17,s06e15_seg02_clip_00,Howard says it's his suitecase. 13766,brown,black,red,white,blue,4,What color shirt is Marshall wearing when he is sitting next to Lilly when she is wearing yellow?,135805,How I Met You Mother,23.03-27.33,met_s03e11_seg01_clip_03,blue 13767,Photograph,News paper,Phone book,Coffee mugs,Breakfast tray,3,What is Martha holding when she comes in,135806,Castle,85.56-91.03,castle_s06e04_seg02_clip_00,Coffee mugs 13768,Monica and Joey are sitting in church.,Monica and Joey are on the subway together.,"Monica and Joey are in the coffee shop, sitting on the couch.",Monica and Joey are sitting on a park bench outside.,Monica and Joey are standing in the kitchen together.,4,Where are Monica and Joey when they have their conversation about the restaurant reviewer?,135807,Friends,0-19.53,friends_s08e21_seg02_clip_02,Monica and Joey are standing in the kitchen together. 13769,A wetsuit.,His underwear.,A costume.,A suit and tie.,A cowboy hat.,2,What was Castle wearing when he answered the door when the doorbell rang?,135808,Castle,2.62-4.8,castle_s03e04_seg02_clip_23,A costume. 13770,Sheldon Needed to borrow money.,Sheldon Had an emergency,Sheldon needed help moving furniture,Sheldon wanted to let Leonard know hes making smores.,Sheldon needed a ride to the store.,3,Why did Sheldon want to talk to Leonard when he opened the door?,135809,The Big Bang Theory,0-52.05,s05e15_seg02_clip_12,Sheldon wanted to let Leonard know hes making smores. 13771,He sprained his ankle.,He was so tired from all that dancing,His shoes was too tight.,His dance partner was dancing on his feet.,bubble gun on the bottom of his shoe.,3,Why Ross had trouble moving his feet when he started dancing?,135810,Friends,51.48-60.17,friends_s08e01_seg02_clip_18,His dance partner was dancing on his feet. 13772,Kutner has nothing behind his ear.,Kutner has a banana behind his ear.,Kutner has a kinife behind his ear.,Kutner has glasses behind his ear.,Kutner has a pencil behind his ear.,4,What does Kutner have behind his ear when he talks about discovery channel?,135811,House M.D.,39.16-42.76,house_s04e11_seg02_clip_01,Kutner has a pencil behind his ear. 13773,lues neck,lues hands,lues mouth,lues chest,lues legs,0,where did house say lues brain felt the pain when he was dreaming of his grandpa choking him?,135812,House M.D.,57.69-60.47,house_s08e18_seg02_clip_12,lues neck 13774,Baby cows.,Mommy cows.,Daddy cows.,Friendly cows.,Evil cows.,0,What did Phoebe say she would never eat when she was sitting next to Joey?,135813,Friends,0-7.17,friends_s04e16_seg02_clip_13,Baby cows. 13775,White,Red ,Blue.,Orange,black.,2,"What color was Penny's shirt under her jacket, when she opened her door.",135814,The Big Bang Theory,6.67-14.51,s01e03_seg02_clip_10,Blue. 13776,He's done with work.,He wants to take her to dinner.,He'd like to help with her study.,Someone told him she had a monkey.,He needs her help.,0,What does Sheldon say when Amy asks why he's there?,135815,The Big Bang Theory,50.42-56.02,s07e05_seg02_clip_08,He's done with work. 13777,She describes how George made her laugh really hard and caused the hiccups. ,She says she has acid reflux.,She says her medication is causing it. ,She says it is due to her going crazy.,She says she drank her coffee to0 fast. ,1,Where does Susan say the hiccups are coming from after Bailey pulls back the curtains?,135816,Grey's Anatomy,0-12.75,grey_s03e22_seg02_clip_06,She says she has acid reflux. 13778,a pamphlet,a man,a frog,A petri dish,a bug,3,What is in front of Phoebe when she says she wants to be their uterus for the next nine months?,135817,Friends,28.68-35.4,friends_s04e12_seg02_clip_08,A petri dish 13779,Shotgun,Flail maces,Handgun,Knives,Swords,1,What kind of weapons is the Captain holding when Ted is talking to him about Zoey?,135818,How I Met You Mother,0-3.66,met_s06e17_seg02_clip_13,Flail maces 13780,Beckett thanks Mrs. Hamilton for coming in,Beckett says she is sorry,Beckett says nothing,Beckett says she is tired,Beckett says she is bored,0,What does Beckett say after she enters the room to question Mrs. Hamilton?,135819,Castle,22.47-27.42,castle_s04e03_seg02_clip_24,Beckett thanks Mrs. Hamilton for coming in 13781,dancing,sleeping,texting,drooling,talking,2,What is the student in the floral shirt doing when Sheldon is speaking?,135820,The Big Bang Theory,4.53-13.58,s06e18_seg02_clip_09,texting 13782,The students all shook their heads in unison.,The students all began laughing.,"The students just sat there, staring.",The students began talking among themselves.,The students began saying chameleon the way Ted was pronouncing it.,0,What did the students do when Ted said he was pronouncing chameleon properly?,135821,How I Met You Mother,59.65-65.35,met_s06e19_seg02_clip_00,The students all shook their heads in unison. 13783,Beckett.,Castle.,Menendez.,Esposito.,Lanie.,4,Who asks Ryan for a favor after Ryan hangs up the phone?,135822,Castle,23.72-30.7,castle_s08e14_seg02_clip_02,Lanie. 13784,Richard Powers,Bill Powers,Jeff Powers,Jeff Flowers,Jeff Plowers,2,What person does Beckett say was killed when they looked like Castle's Chuck Norris lookalike?,135823,Castle,25.97-32.57,castle_s07e20_seg02_clip_16,Jeff Powers 13785,Leonard dances across the class.,Leonard leaves the classroom.,Leonard call Penny on the phone.,Leonard sings a song.,Leonard frowns and holds his hand up.,4,What does Leonard do after he says he never wanted to play the cello?,135824,The Big Bang Theory,8.52-11.46,s06e18_seg02_clip_13,Leonard frowns and holds his hand up. 13786,His wife,His daughter,His sister,His cousin,His sister in law,1,What character was in the patient room besides Adams and the patient when they were in the patient room,135825,House M.D.,77.62-97.03,house_s08e04_seg02_clip_20,His daughter 13787,Sophie is watching television,Sophie is sewing,Sophie is reading,Sophie is dancing,Sophie is sleeping,0,What is Sophie doing when George comes in?,135826,Grey's Anatomy,35.16-43.18,grey_s02e14_seg02_clip_19,Sophie is watching television 13788,A handbag.,A blazer.,A badge.,A bulletproof vest.,A pair of boots.,1,What did Gates put on before she told Before Beckett told them to stay out of her way?,135827,Castle,14.08-24.07,castle_s05e07_seg02_clip_04,A blazer. 13789,The first perp Beckett is looking into Sammy Digiorno,The first perp Beckett is looking into Vulcan Jones,The first perp Beckett is looking into Michael Smith,The first perp Beckett is looking into SophieTaltz,The first perp Beckett is looking into is Senator Bracken,4,Which is the first perp Beckett said she is looking into when she is talking to Esposito,135828,Castle,74.75-83,castle_s07e01_seg02_clip_07,The first perp Beckett is looking into is Senator Bracken 13790,Riding a bike,Skateboarding,Running,Jogging,Sitting down,0,What is the woman with a helmet on doing when she says she has to get to the front?,135829,How I Met You Mother,26.54-31.79,met_s04e03_seg02_clip_12,Riding a bike 13791,Rachel's mom dress is red,Rachel's mom dress is blue,Rachel's mom dress is purple,Rachel's mom dress is black,Rachel's mom dress is green,0,What color is Rachel's mom dress when she takes off her coat,135830,Friends,34.86-44.32,friends_s02e11_seg02_clip_05,Rachel's mom dress is red 13792,He didn't like strippers.,He didn't want what happened to Stuart to happen to him.,He just wanted a quiet party.,He didn't want a party.,He didn't' want Lily to find out.,1,Why did Marhsall say he didn't want a stripper when discussing his bachelor party with Ted and Barney?,135831,How I Met You Mother,9.41-39.06,met_s02e19_seg01_clip_01,He didn't want what happened to Stuart to happen to him. 13793,They are trapped in an elevator together.,They are at a movie theatre.,They are in the interrogation room.,They are at a coffee shop.,He is sitting down while the suspect stands over him.,4,Where is Castle when the suspect Jerry is talking to him about death?,135832,Castle,14.08-23.69,castle_s03e06_seg02_clip_25,He is sitting down while the suspect stands over him. 13794,He was angry,He was happy,He was excited,He was sad.,He was calm.,3,How was Raj acting when Emily was kissing him?,135833,The Big Bang Theory,11.11-20.41,s08e24_seg02_clip_11,He was sad. 13795,I won't go,I love you,You are stupid,We were NOT on a break,Oh my God,4,What is Rachel's response after Ross tells her how he feels?,135834,Friends,52.8-58.03,friends_s10e17-18_seg02_clip_38,Oh my God 13796,Sitting down.,Getting a drink.,Eating.,Laying down.,Driving.,1,What was House doing when everyone was eating?,135835,House M.D.,21.16-31.51,house_s08e05_seg02_clip_15,Getting a drink. 13797,Jim,James,Jack,House,Mark,3,"Who was Foreman talking to when he said ""This makes no sense.""",135836,House M.D.,8-15.01,house_s05e02_seg02_clip_18,House 13798,Goes to propose to Rachel,Goes to sing karaoke,Goes on stage to give his best man speech,Goes to give his university speech,Goes to drink champagne,2,What does Ross do after Chandler promises to take a picture of him?,135837,Friends,0-6.54,friends_s08e02_seg02_clip_12,Goes on stage to give his best man speech 13799,Joey places a sandwich next to Kate when she's sleeping.,Joey places a water bottle next to Kate when she's sleeping.,Joey places a towel next to Kate when she's sleeping.,Joey places a wastecan next to Kate when she's sleeping.,Joey places a box of tissue next to Kate when she's sleeping.,3,What does Joey place next to Kate when she's sleeping on the couch?,135838,Friends,8.53-11.83,friends_s03e22_seg02_clip_10,Joey places a wastecan next to Kate when she's sleeping. 13800,To freak out her parents.,For a film contest.,For her YouTube channel.,For a film class project.,To freak out her friend.,4,Why did Lucas say Madison wanted to make the video with special effects when he was showing it and explaining it to Castle and Beckett?,135839,Castle,9.39-15.5,castle_s06e15_seg02_clip_23,To freak out her friend. 13801,black,blue,yellow,orange,red ,3,What was the color of House motocycle when Ali was sitting on it? ,135840,House M.D.,0-5.12,house_s03e04_seg02_clip_16,orange 13802,A ring,A glass,A cup,A bag,A mug,4,What is Rachel holding before she talks to Ross?,135841,Friends,0.9-9.3,friends_s07e16_seg02_clip_21,A mug 13803,In a chair,On the desk.,On the floor,Hanging from ceiling,There is no car seat,1,Where's the car seat at when Rachel leaves the room?,135842,Friends,29.11-33.62,friends_s09e11_seg02_clip_18,On the desk. 13804,Dorie was in labor.,Dorie was showing Izzie the different positions of fetus in her womb and their characters.,Dorie was questioning Izzie about her medical condition.,Dorie was sitting in the hospital bed.,Dorie was taking her lunch.,1,What was Dorie doing when she was lying on the hospital bed?,135843,Grey's Anatomy,7.44-15.81,grey_s02e10_seg02_clip_01,Dorie was showing Izzie the different positions of fetus in her womb and their characters. 13805,24,21,29,26,12,1,What is the number of the apartment that Ross and Rachel go to look at after a woman in his building dies?,135844,Friends,53.02-54.81,friends_s08e07_seg02_clip_02,21 13806,Having a glass of wine with Eric.,Passionately kissing Eric.,Cooking food with Eric.,Stopping a kiss from Eric.,Hugging Eric.,3,What was Beckett doing right before bullets shot through a window?,135845,Castle,59.18-67.04,castle_s05e21_seg02_clip_19,Stopping a kiss from Eric. 13807,back to her pimp,to the police department ,to castles apartment ,to the hospital,to go get drugs ,2,Where did Scarlett go after she got beat up,135846,Castle,23.47-34.31,castle_s02e09_seg02_clip_19,to castles apartment 13808,A kitten,Shopping bags,A box of files,A suitcase,A cup of coffee,1,What was Meredith carrying when she surprised Castle? ,135847,Castle,0-7.21,castle_s01e06_seg02_clip_10,Shopping bags 13809,Chandler dared him too,He really liked that song,He did some thing that offended Rachel,He dialed the wrong number then decied to stick with it,He wanted to propose to Rachel,2,Why did Ross call the radio to request a song before it played?,135848,Friends,0-6.34,friends_s02e08_seg02_clip_19,He did some thing that offended Rachel 13810,Turns on a radio.,Starts to speak.,Walks with Raj.,Grabs her flowers. ,Stands up. ,0,"What does Penny do after Raj says, ""Penny""?",135849,The Big Bang Theory,27.09-32.5,s05e24_seg02_clip_11,Turns on a radio. 13811,Castle,Hunt,Gates,Ryan,Esposito,1,Who was with Beckett when she was talking to Biggie Slim?,135850,Castle,0-7.83,castle_s04e20_seg02_clip_25,Hunt 13812,His laser.,His future.,His practice.,His research.,His patients.,3,What did Cynthia say her husband was too concerned about after she said he wasn't in his right mind? ,135851,Castle,73.62-82.82,castle_s04e03_seg02_clip_25,His research. 13813,A slice of cake is on the table.,A laptop is on the table.,A coffee mug is on the table.,A game of chess is on the table.,A flower arrangement is on the table.,2,Which is on the table when Chandler and Joey are talking?,135852,Friends,4.62-6.6,friends_s06e04_seg02_clip_09,A coffee mug is on the table. 13814,Stealing,Painting,Killing,Hiding ,Fighting,3,What does Castle say that the killer was doing before the doctor say he may not have been?,135853,Castle,70.77-89.58,castle_s07e23_seg02_clip_19,Hiding 13815,It ends up on someone else. ,It ends up on the floor. ,He loses it. ,It stays around his neck. ,It ends up around his head. ,4,What has happened to Jerry's tie some time after he ends up drunk? ,135854,How I Met You Mother,34.88-49.56,met_s06e21_seg02_clip_04,It ends up around his head. 13816,Keith,Pete,Esposito,Beckett and Castle,a ghost,3,Who does Mrs. Hamilton see enter the room after the door opens?,135855,Castle,20.68-30.11,castle_s04e03_seg02_clip_24,Beckett and Castle 13817,pours them both more tea,picks up the empty tea cups,grabs a beer out of the refridgerator,knocks over her chair,falls on the floor,1,What does Emily do after telling Ross it is his decision?,135856,Friends,5.35-12.77,friends_s04e21_seg02_clip_01,picks up the empty tea cups 13818,Her keys,The telephone,A magazine,Some fruit,A photograph,4,What did Phobel take from Rachel before Phobe said something was not professional?,135857,Friends,39.63-49.61,friends_s07e04_seg02_clip_05,A photograph 13819,Drugs in the pantient's car.,A weapon in the patient's car.,A weapon in the patient's hotel room.,Drugs in the patient's hotel room.,The patient's friend.,3,What were the doctors looking for before the patient was given a biopsy?,135858,House M.D.,38.28-50.3,house_s02e07_seg02_clip_09,Drugs in the patient's hotel room. 13820,The audience applauded.,The audience shouted.,The audience is silent.,The audience stood up and clapped.,The audience put down their heads.,0,How did the audience respond after the Chairman called for Ted Mosby?,135859,How I Met You Mother,7.1-13.34,met_s06e23_seg01_clip_01,The audience applauded. 13821,Book,Candy,Newspaper,Porn,Coffee,3,What did Chandler ask Ross to pick up when he was leaving?,135860,Friends,3.6-28.21,friends_s03e12_seg02_clip_18,Porn 13822,Because there was a church crowd going past them.,Because there were children going to the elevator.,Because there was a dead body right in front of them.,Because Castle was using so much profanity.,Because Castle was telling all too many personal details about his ex-wife Meredith.,2,Why did Beckett tell Castle to show some respect when he was talking about his ex-wife and Twinkies?,135861,Castle,47.76-57.6,castle_s01e06_seg02_clip_00,Because there was a dead body right in front of them. 13823,He would travel to the dinosaur age,He would give the time machine to himself in the past,he would invent McDonalds,he would invent the telescope,he would get a girlfriend,1,What does Sheldont say he would do if he did time travel when he talks to Leonard?,135862,The Big Bang Theory,0-55.01,s01e04_seg01_clip_00,He would give the time machine to himself in the past 13824,a pen ,a coffee cup ,a hand gun ,a wallet ,her badge,2,What did Beckett place on the table when talking to D'andre ?,135863,Castle,0-9.74,castle_s03e04_seg02_clip_04,a hand gun 13825,Surgery,Cut Burke's hair.,Cut Burke's cloth,Playing with the scissors,Cut a glove.,0,What was doing Burke to Digby when holding scissors?,135864,Grey's Anatomy,2.3-5.06,grey_s01e07_seg02_clip_11,Surgery 13826,A door.,A window.,A fire extinguisher.,A truck.,A fax machine.,1,What is behind Beckett when she said something about work?,135865,Castle,31.51-37.81,castle_s02e20_seg02_clip_21,A window. 13827,stand up and get coffee,leaves the room,says hello,starts eating ,takes a phone call,0,What does Chase do when House enters the room?,135866,House M.D.,55.71-63.48,house_s06e04_seg02_clip_02,stand up and get coffee 13828,Bumped his head when he sat up on a chair,Got his strength back up and left,Laid back on the floor,Sat up and held his stomach,Propped himself up on a wall,2,What did Wilson do after House tried to help him?,135867,House M.D.,48.71-58.72,house_s08e19_seg02_clip_20,Laid back on the floor 13829,He tried to convince Marshal.,He tried to convince himself.,He tried to convince Barney.,He tried to convince the bartender.,He tried to convince Marshal's brother.,0,Who does Ted try to convince not to cheat on his girlfriend when drinking beer.,135868,How I Met You Mother,27.17-46.84,met_s03e05_seg02_clip_14,He tried to convince Marshal. 13830,"Howard explains that he isn't lying, and that he does have a flat tire after all.",Howard explains that it is easy to manipulate people if you know them well enough.,Howard explains that he just made a lucky guess.,Howard explains that he lies a lot.,Howard explains that Leonard is the one who did all of the work.,3,What is Howard's response when Leonard says that Howard is good at coming up with excuses?,135869,The Big Bang Theory,35.48-46.3,s09e19_seg02_clip_08,Howard explains that he lies a lot. 13831,a blue folder,a clip board,a patient's x-rays,a tablet,she doesn't have anything in her hands,0,What does Cameron have in her hands when she is walking in the hospital hallway with Chase?,135870,House M.D.,73.77-82.06,house_s06e07_seg02_clip_04,a blue folder 13832,Do you want to go grab some drinks at the bar down the street?,Are you cheating?,Do you want to play strip Gin next?,How did you get so good at Gin?,We were playing Gin?,4,What did Chandler ask Monica after she said Gin and laid down her cards,135871,Friends,54.55-72.18,friends_s04e01_seg02_clip_19,We were playing Gin? 13833,with his cane,with the key he stole,breaking the door,breaking a window,calling a locksmith ,1,How does house get inside of the apartment after foreman has trouble breaking in?,135872,House M.D.,24.76-33.31,house_s05e05_seg02_clip_05,with the key he stole 13834,Taub,Foreman,House,Thirteen,Cameron,1,Which doctor hangs the fluid bag before handing it over to Chase?,135873,House M.D.,29.48-37.31,house_s01e13_seg02_clip_10,Foreman 13835,A white board ,A vending machine ,A window ,A car,A fish tank,0,What does house walk to after he gets up,135874,House M.D.,48.89-56.97,house_s01e04_seg02_clip_17,A white board 13836,He was afraid The Captain would hit himself.,He was afraid he might hit Ted.,He thought it might hit a window.,He was worried it would pierce the leather chair.,He was worried it might nick the wood on the table.,1,Why did Ted take the Mace away from The Captain before he put the mace away? ,135875,How I Met You Mother,30.51-43.33,met_s06e17_seg02_clip_13,He was afraid he might hit Ted. 13837,The X-Men (Sheldon's team).,The Fantastic Five.,The Three Musketeers ,A rock band.,The scientist group for WWII that beat Enigma. ,0,How does Leonard suggest they can be like after Penny says Sheldon needs help?,135876,The Big Bang Theory,18.62-26.31,s03e18_seg02_clip_04,The X-Men (Sheldon's team). 13838,Drink,pill,nightquil,pannies,condem,0,What does Castle hand beckett before she says No! Handcuffs,135877,Castle,72.52-81.02,castle_s03e14_seg02_clip_18,Drink 13839,no loudness,no socks,no tresspassing,"no shoes, no shirt, no Sheldon",no boys,3,What did Penny say when she told Sheldon about the new policy?,135878,The Big Bang Theory,18.32-30.64,s02e07_seg02_clip_06,"no shoes, no shirt, no Sheldon" 13840,Howard,Penny,Sheldon,Dr. Millstone,Leonard.,3,Who came in to the office after knocking on the door?,135879,The Big Bang Theory,48.53-58.3,s03e04_seg02_clip_04,Dr. Millstone 13841,Her keys,Her purse and jacket,Her jacket,Her hat,A box,1,What does Robin pick up when she leaves the apartment?,135880,How I Met You Mother,56.1-59.05,met_s06e09_seg02_clip_04,Her purse and jacket 13842,On an end table.,The floor.,On the coffee table.,The couch.,In the arm chair.,3,Where did Mona sit after she came into Ross's apartment? ,135881,Friends,6.08-13.28,friends_s08e11_seg02_clip_04,The couch. 13843,He likes to talk about playboys.,He talks about a playboy.,He is talking about playboys.,"Castle says ""playboy is up to his neck in this"".",He tells her about a playboy.,3,What does Castle say to Beckett when they are walking down the hall?,135882,Castle,58.07-90.02,castle_s07e22_seg02_clip_15,"Castle says ""playboy is up to his neck in this""." 13844,Joey,Monica,Phoebe,Ross,Rachael ,0,Who turned off the television after a scene with Chandler appeared on the television?,135883,Friends,31.93-42.43,friends_s05e19_seg02_clip_19,Joey 13845,She used to be a lot worse and now she isn't as bad,She used to play her own games instead of House's,She would have gotten it right before ,She treats House with respect now,She has the courage to voice her own opinions now,2,Why does House say that Amber has changed after she gives him an incorrect diagnosis?,135884,House M.D.,55.52-87.25,house_s04e12_seg02_clip_22,She would have gotten it right before 13846,Because she forgot something in her car,Because nobody was home,Because Leonard was talking tool loudly on the phone,Because she was mad at Sheldon from a fight,Because Raj is a bad singer,4,Why did Penny look annoyed when she opened the door? ,135885,The Big Bang Theory,19.68-38.74,s02e15_seg01_clip_00,Because Raj is a bad singer 13847,a blue towel,a pink pillow,a yellow caution sign,a black blanket,a computer monitor,0,What is behind George's head when Cameron says the theory fits?,135886,House M.D.,42.76-53.22,house_s03e06_seg02_clip_17,a blue towel 13848,The American Association of Rheumatology ,The American Association of Cancer,The American Association of Smoking,The American Association of Handicapped Doctors,The American Association of Geniuses,0,Who does Foreman say wants House to speak in Atlantic City after Foreman ends his call?,135887,House M.D.,23.15-32.49,house_s08e06_seg02_clip_08,The American Association of Rheumatology 13849,A messy room,A dead body,Two people in bed,An old person ,A crying baby,2,What did Izzie discover when she opened the door? ,135888,Grey's Anatomy,45.51-55.13,grey_s02e10_seg02_clip_20,Two people in bed 13850,Red,Blue,Yellow,Pink,Green,1,What is the color of Esposito's shirt when he is with Ryan?,135889,Castle,42.27-51.37,castle_s02e21_seg02_clip_17,Blue 13851,Pillows,Action figures,Dolls,Corndogs,Nintendo,3,What is Ross playing with when he is with Phoebe,135890,Friends,0-6.41,friends_s09e04_seg02_clip_03,Corndogs 13852,laugh,gag,Cough,swallow,spit,2,What does Kutner tell Maggie to do when he removes the scope?,135891,House M.D.,0-10.61,house_s04e10_seg02_clip_15,Cough 13853,He tells him to be cool,He tells him to wear it out,He tells him to throw it away,He tells him to burn it,He tells him to go away,0,What does Barney tell Marshall when he learns that Marshall has a trench coat?,135892,How I Met You Mother,4.8-7.8,met_s03e08_seg02_clip_04,He tells him to be cool 13854,on the elevator ,Into the apartment,through some doors ,up some more stairs ,in the basement. ,1,Where did Sheldon and Beverley go after they came up stairs?,135893,The Big Bang Theory,0-22.31,s02e15_seg02_clip_12,Into the apartment 13855,Rachel calls herself too cool for school. ,Rachel calls herself a fun cheerleader. ,Rachel calls herself a clown. ,Rachel calls herself sexy beast. ,Rachel calls herself a pathetic loser. ,4,What does Rachel call herself before she sits on the step with Ross?,135894,Friends,0-4.65,friends_s04e16_seg02_clip_19,Rachel calls herself a pathetic loser. 13856,Lily is kissing him.,Lily's tickling him.,Ted keeps laughing.,Barney keeps cursing.,He thinks Barney's euphemisms are funny.,4,Why is Marshall amused when Barney's talking to Ted?,135895,How I Met You Mother,0-13.92,met_s03e01_seg02_clip_12,He thinks Barney's euphemisms are funny. 13857,Yellow.,Black.,White.,Blue.,Green.,3,What color is Joey's shirt when Rachel is freaking out?,135896,Friends,0-2.1,friends_s09e20_seg02_clip_04,Blue. 13858,Someone kicking House's ass,Some listening to House,Making fun of Chase,Going around hospital policy,Using medical equipment for the wrong reason,0,What did House ask Cameron that she was encouraging when they were talking?,135897,House M.D.,23.33-33.01,house_s04e04_seg02_clip_02,Someone kicking House's ass 13859,Barney is reading a shampoo bottle,Barney is reading a newspaper,Barney is reading a novel,Barney is reading a magazine,Barney is reading a receipt,3,What is Barney reading before Marshall comes in?,135898,How I Met You Mother,0-30.61,met_s06e12_seg02_clip_07,Barney is reading a magazine 13860,Cancer,Asperger's,Cushings,Lukemia,Amnesia ,1,What disease did Wilson say House wished he had when he walked up to him? ,135899,House M.D.,25.73-31.6,house_s03e04_seg02_clip_25,Asperger's 13861,Bing-a-ling.,Baby.,Pumpkin.,Sweetiekins.,Short-stuff.,0,What does Janice call Chandler before falling asleep?,135900,Friends,23.66-29.65,friends_s03e03_seg02_clip_10,Bing-a-ling. 13862,hungry cat,tiger,constipated moose,small dog,big dog,2,What did Leonard say Sheldon sounded like when he was trying to open the jar?,135901,The Big Bang Theory,9.3-16.75,s02e09_seg02_clip_12,constipated moose 13863,Penny and Leonard were laying down.,Penny and Leonard were dancing.,Penny and Leonard were on the floor.,Penny and Leonard were ordering pizza.,Penny and Leonard were standing up.,0,What were Penny and Leonard doing before the light came on?,135902,The Big Bang Theory,30.75-33.94,s04e13_seg02_clip_11,Penny and Leonard were laying down. 13864,Beckett,Ryan,Lanie,Matilda,Esposito,0,Who was walking in the door when Castle was on the couch?,135903,Castle,0-11.1,castle_s06e14_seg02_clip_26,Beckett 13865,Uncaring.,Cold hearted.,Dead inside.,Depressing.,Unsympathetic.,2,What does Joey say Chandler is when Chandler doesn't cry over his old school pictures?,135904,Friends,43.82-51.32,friends_s06e14_seg02_clip_04,Dead inside. 13866,She runs away. ,She moves a knife away from Janice that is on the table. ,She starts crying. ,She kicks her out. ,She starts yelling at her. ,1,What does Monica do after Janice asks who the luck guy is that she is engaged to?,135905,Friends,41.42-51.62,friends_s07e07_seg02_clip_01,She moves a knife away from Janice that is on the table. 13867,Superman,The Flash,Spiderman,Aquaman,The Blob,1,What character was Sheldon dressed as when he was with Leonard?,135906,The Big Bang Theory,0-12.1,s04e11_seg02_clip_07,The Flash 13868,The coffee maker.,The refrigerator.,The microwave.,The dishwasher.,The stove.,1,What appliance did Howard touch after talking to Bernadette?,135907,The Big Bang Theory,55.97-60.18,s10e06_seg02_clip_04,The refrigerator. 13869,Sheldon was implying that the role was stolen from Penny by a more famous actor.,Sheldon was implying that Penny was too ugly for the role. ,Sheldon was implying that the casting director hated Penny. ,Sheldon was implying that he thought Penny was not very talented at singing or acting. ,Sheldon was implying that Penny forgot her lines. ,3,What did Sheldon mean when he said that he knew why Penny didn't originally get the role?,135908,The Big Bang Theory,0-16.15,s01e10_seg01_clip_02,Sheldon was implying that he thought Penny was not very talented at singing or acting. 13870,green,blue,White,grey,red,2,"What color is the shirt Castle is wearing when he say's ""She put one...""?",135909,Castle,0-9.6,castle_s07e04_seg02_clip_26,White 13871,Water Bottle,Coffee mug,A medical journal,Prescription Medicine,Tennis Ball,2,What was House holding when he was sitting down?,135910,House M.D.,0-6.77,house_s03e15_seg02_clip_25,A medical journal 13872,bottle,dog,chair,lamp,ball,2,"What did Marshall kick before Amy said ""Hi Marshall""?",135911,How I Met You Mother,0-8.78,met_s02e02_seg02_clip_05,chair 13873,Eating a box of donuts while sitting behind Dr. Cuddy's desk.,Sitting on the sofa.,Laying on the sofa with feet stretched out.,Sitting in the chair with his feet on the table.,Watering Dr. Cuddy's plants. ,3,What is Dr. House doing when Dr. Cuddy turns puts her black bag on the desk?,135912,House M.D.,6.57-16.07,house_s02e22_seg02_clip_03,Sitting in the chair with his feet on the table. 13874,What are you going to do now?,Bye.,Good luck.,Wait. I have his address.,Does Sheldon know what you are up to?,3,What did Stuart say after Penny started to leave?,135913,The Big Bang Theory,18.37-26.25,s03e16_seg02_clip_15,Wait. I have his address. 13875,Picked up the puppy.,Jumped up off the couch.,Answered the door.,Answered her phone.,Sat down.,1,What did Monica do after Chandler said he's rich because he found a talking puppy?,135914,Friends,11.71-19.21,friends_s06e14_seg02_clip_04,Jumped up off the couch. 13876,She smiles at Beckett. ,She vomits. ,She hits Castle. ,She puts a hand on her hip. ,She hits Beckett. ,3,What does Lanie do after she makes a funny face?,135915,Castle,72.09-78.36,castle_s06e12_seg02_clip_07,She puts a hand on her hip. 13877,Gave him Breakfast in bed,Gave him a massage,Cooked him dinner,Cleans his house everyday,She is very responsible with his money,0,What does Penny mention shes done for Leonard when they are talking?,135916,The Big Bang Theory,35.66-41.86,s07e06_seg02_clip_00,Gave him Breakfast in bed 13878,patient's room,restaurant,hallway,bedroom,Cuddy's office,4,Where are Foreman and Cuddy when they are talking and Cuddy is sitting down?,135917,House M.D.,0.95-3.61,house_s04e16_seg02_clip_12,Cuddy's office 13879,a cat learning to use the toilet,a dog going to school,a dog jumping,a bird singing,a parrot talking,0,What did Sheldon liken Leonard's idea to when Leonard told his idea of the app?,135918,The Big Bang Theory,25.69-61.9,s04e12_seg01_clip_01,a cat learning to use the toilet 13880,Paulo,Barry,Her father,Gunther,Jacob,0,Who does Rachel introduce to all her friends when she walks in holding a candle?,135919,Friends,0.3-9.44,friends_s01e07_seg02_clip_16,Paulo 13881,Captain Victoria Gates,Captain Vulcan Simmons,Bracken,Castle,Captain Luke ,0,Who takes Beckett off the case after she was discussing it in the hallway with Castle?,135920,Castle,41.41-59.42,castle_s06e22_seg02_clip_04,Captain Victoria Gates 13882,Everyone has on a band T-shirt.,Everyone is wearing nothing.,Mouth covers and hair covers.,Everyone has on a white coat.,Everyone has on a red scarf.,2,What is everyone conscious in the room wearing when they are performing surgery?,135921,Grey's Anatomy,0-8.18,grey_s01e02_seg02_clip_03,Mouth covers and hair covers. 13883,Penny flees with Sheldon ,Penny kiss Leonard,Penny flees to her apartment,Penny gets angry with Leonard ,Penny says sorry,2,What does Penny after Sheldon close the door?,135922,The Big Bang Theory,33.61-43.82,s01e09_seg02_clip_08,Penny flees to her apartment 13884,House said he has eyes in the back of his head.,House said he would know the sound of her shoes anywhere.,House said Cuddy was the only one that came by anymore.,House said there was a scent given off by wounded feral cats.,"House said it was easy, he knows everything.",3,How did House respond when Cuddy asked him how he knew it was her?,135923,House M.D.,78.76-83.14,house_s04e01_seg02_clip_25,House said there was a scent given off by wounded feral cats. 13885,Cry,Smile,Dance,Sing,Scream,1,What did Derek do before he saw Meredith?,135924,Grey's Anatomy,24.39-34.05,grey_s01e01_seg02_clip_05,Smile 13886,On the sidewalk.,In his car.,Sitting on bench outside.,Under a tree.,Sitting on a large rock.,1,Where was Castle when Alexis went into the house?,135925,Castle,21.04-26.08,castle_s06e07_seg02_clip_12,In his car. 13887,eat,sit down,stand up,drink,pace around the room,2,"What did Raj do after he said ""I'll see you around"" ?",135926,The Big Bang Theory,54.21-63.04,s05e01_seg02_clip_11,stand up 13888,He said nothing.,He laughed at her.,He was crying.,He said no way.,Ted said he was going in the kitchen to do push-ups.,4,What did Ted say after Robin said she may be deported?,135927,How I Met You Mother,58.31-61.38,met_s05e05_seg02_clip_00,Ted said he was going in the kitchen to do push-ups. 13889,walked away,shook his head,kissed Monica,wiped a tear,smiled,4,How did Chandler react when the other couple put their arms around each other after Monica yelled at them?,135928,Friends,50.35-60.42,friends_s08e03_seg02_clip_12,smiled 13890,Dinosaurs,Atoms,Planets,Bugs,Video Games,2,What did Zack tell Leonard the magazine was about when Penny handed it to him,135929,The Big Bang Theory,50.7-57.46,s04e11_seg01_clip_00,Planets 13891,Yes Phoebe.,"Yes, let me go in first Phoebe.",Oh. I already went in though.,No Phoebe.,He's not really my type,4,"What did Joey say, after Phoebe suggested Joey goes into the hospital room first?",135930,Friends,35.71-43.38,friends_s08e23-24_seg02_clip_16,He's not really my type 13892,Chandler told Joey that he would really miss the duck.,Ross disagreed with Joey and said that the duck was always causing trouble.,The vet came into the room and said that the duck was fine.,Chandler agreed with Joey.,"Ross, Chandler, and Joey thought about their memories with the duck while the memories played on screen. ",4,"What happened after Joey said, ""He was such a good duck?""",135931,Friends,48.31-84.87,friends_s04e22_seg02_clip_18,"Ross, Chandler, and Joey thought about their memories with the duck while the memories played on screen. " 13893,Brain,Heart,Stomach,Lungs,Gallbladder,1,Where is the virus affecting after being discovered it wasn't bacterial?,135932,House M.D.,60.79-64.19,house_s01e04_seg02_clip_17,Heart 13894,Joey,Chandler,Monica,Kerry,Bill,0,Who does Rachel question after Phoebe hangs up?,135933,Friends,45.02-49.82,friends_s05e14_seg02_clip_12,Joey 13895,Cal tech,Devry university,NYU ,Hudson university,Cornell,3,Where did castle say Dr. Marion is a professor at when talking to beckett?,135934,Castle,77.43-84.62,castle_s08e17_seg02_clip_07,Hudson university 13896,Smelly Cat,Phoebe,Rachel,Santa Claus,Chandler Bing,2,Who did Ross bring back to the Coffee shop when running into them?,135935,Friends,1.89-5.04,friends_s06e15-16_seg02_clip_04,Rachel 13897,That someone was stalking the victim directly,That someone was picking up the victim's mail,That the victim was a prostitute,That the victim was a former felon,That the victim was a principal,1,What do the detectives discover when the woman mentions the victim?,135936,Castle,0-7.2,castle_s02e05_seg02_clip_20,That someone was picking up the victim's mail 13898,House said the first casualty of the case is his and Wilson's friendship.,House informed Wilson that the case's first casualty was in the hospital morgue.,House told Wilson the case's first casualty was House's appetite.,House let Wilson know the first casualty of this case is in the ambulance.,House told Wilson that the first casualty of this case is her sense of humor.,4,What did House say that the first casualty of this case is before walking away from his talk with Wilson?,135937,House M.D.,0-2.73,house_s02e03_seg02_clip_03,House told Wilson that the first casualty of this case is her sense of humor. 13899,That's not an experiment. You saw what happened last night.,That isn't funny.,What makes you think I would do that?,Did you hear what he just said Leonard?,Sounds like a fun experiment.,0,What did Penny say after Dave said they were going to do an experiment to see the effects of tequila shots on a gorgeous 22 year old woman?,135938,The Big Bang Theory,29.65-38.78,s02e11_seg02_clip_09,That's not an experiment. You saw what happened last night. 13900,Under the table ,Next to Chandler,Behind the couch ,By the bar,Behind Ross ,2,Where is Rachel standing when looking at the frame? ,135939,Friends,1.55-62.03,friends_s02e09_seg02_clip_02,Behind the couch 13901,A pink dress. ,A black dress. ,A blue dress. ,A white dress. ,A green dress. ,0,What is Rachel wearing when she is sitting next to Ross at the table?,135940,Friends,0-1.22,friends_s02e24_seg02_clip_14,A pink dress. 13902,11th,12th,10th,13th,14th,1,What number is written on the page when Beckett opens the book?,135941,Castle,18.43-23.96,castle_s02e05_seg02_clip_17,12th 13903,The elevator,Rachel's office.,The lobby.,The bathroom.,The freebie room.,0,Where did Joey see Ralph Lauren before he left his sister with Rachel?,135942,Friends,32.5-37.07,friends_s08e10_seg02_clip_04,The elevator 13904,That he was kidnapped by a Russian spy when he left the hotel room to get some breakfast and it had taken him years to get away. ,That he really couldn't stand Castle's mom and he just had to leave. ,Hunt just couldn't see himself settling down with one person. ,Hunt left and didn't know that Castle's mom was pregnant but he hadn't really wanted to be a father anyway. ,He had just finished a job at the UN but the next day things went south and he had to get out of the city fast. ,4,Why does Hunt tell Castle that he had to leave his mom after their night together. ,135943,Castle,20.26-51.31,castle_s05e16_seg02_clip_21,He had just finished a job at the UN but the next day things went south and he had to get out of the city fast. 13905,A puppy.,A photo album.,Some cash.,A letter.,Some coffee.,1,What did Monica give Chandler after she told him this would get him going good?,135944,Friends,19.81-25.81,friends_s06e14_seg02_clip_04,A photo album. 13906,Wilson punches House.,Wilson is disgusted House plans to run a DNA test.,Wilson hugs Cuddy.,Wilson walks away from the table.,Wilson tranquilizes House.,1,When House collects the cups left by the parents after they depart how does WIlson react?,135945,House M.D.,73.03-98.03,house_s01e02_seg02_clip_19,Wilson is disgusted House plans to run a DNA test. 13907,Give wilson a hug,Turn away,Shake his cane at Wilson,Hit Wilson,Drink his coffee,1,What does House do after asking Wilson if he may have made deeper errors?,135946,House M.D.,44.63-54.3,house_s02e14_seg02_clip_19,Turn away 13908,Castle was sleeping in a coach.,Castle was not in the room.,Castle was seated beside Ryan.,"Castle was standing close to a coffee machine,",Castle was standing behind Ryan and another person seated beside Ryan.,4,Where was Castle when Ryan was questioning Val?,135947,Castle,24.23-26.06,castle_s04e19_seg02_clip_02,Castle was standing behind Ryan and another person seated beside Ryan. 13909,a reciept,a call log,security footage,a sketch of similar woman,a family photo,3,"what does ryan place against a picture of a woman when talking to becket, esposito, and castle?",135948,Castle,19.13-29.6,castle_s07e19_seg02_clip_23,a sketch of similar woman 13910,A glass with a straw in it,a cup,a coffee mug,a metal bottle,a beer bottle,0,"What is Phoebe holding in her hand when she says ""Cool aunt Phoebe"" ?",135949,Friends,0-9.57,friends_s04e22_seg02_clip_18,A glass with a straw in it 13911,Castle asks Beckett to cross-reference the information Helen provides.,Castle laughs at Sam's passion.,Castle thinks Helen is lying.,Castle thinks it is very commendable.,Castle doesn't think much about Helen's comment.,3,How does Castle respond when Helen talks about Sam's passion?,135950,Castle,70.37-82.63,castle_s02e10_seg02_clip_05,Castle thinks it is very commendable. 13912,He sits on Monica's lap. ,He sits in Phoebe's lap. ,He walks up to the counter for coffee. ,He falls down. ,He sits down on the arm of the couch. ,4,What does Chandler do after he walks into the coffee house?,135951,Friends,36.02-42.92,friends_s02e12-13_seg02_clip_28,He sits down on the arm of the couch. 13913,Foreman is waiting on test results to determine what steps to take.,Foreman can't diagnose what Stevie's problem is.,Foreman is waiting for a needed piece of equipment from another hospital.,Foreman needs Stevie's parents to sign a consent form to treat Stevie.,Foreman is waiting to see for the hospital lawyer to contact him about treating Stevie.,3,Why can't Foreman help Stevie when Stevie is in extreme pain?,135952,House M.D.,43.24-45.51,house_s03e13_seg02_clip_02,Foreman needs Stevie's parents to sign a consent form to treat Stevie. 13914,"""Grandma""","""Old Lady""","""Lurker""","""Ms.""","""Maam""",2,What did Phoebe call the old lady when she was sitting at the slot machine?,135953,Friends,0-3.45,friends_s05e23-24_seg02_clip_28,"""Lurker""" 13915,His age.,His mother and father dying.,His job.,The number of siblings he had.,His feelings. ,1,What did Denny lie about to Izzie before he died?,135954,Grey's Anatomy,65.99-75.55,grey_s03e04_seg02_clip_16,His mother and father dying. 13916,Bernadette,Sheldon's mother,Leonard,A neighbor,Amy,2,Who was listening outside the door when Penny and Sheldon were talking?,135955,The Big Bang Theory,2.43-7.89,s02e03_seg02_clip_06,Leonard 13917,A gold chain.,A pearl necklace.,Diamond earrings.,A headband.,A nose ring.,3,What accessory does Izzie wear when talking about cancer?,135956,Grey's Anatomy,38.41-58.58,grey_s02e08_seg02_clip_14,A headband. 13918,A gun,A polaroid picture,A knife,An xray ,A stack of files ,1,What did house hold up when talking to Foreman and Chase,135957,House M.D.,39.6-47.33,house_s03e05_seg02_clip_20,A polaroid picture 13919,Time waits for no one.,The early bird gets the worm.,"You can lead a horse to water, but you can't make it drink.",We will we will rock you.,"We didn'tt choose this, we were chosen.",4,What was the mantra that Stryker chanted when he led the Alien Abduction Support Group?,135958,Castle,76.07-87.32,castle_s03e09_seg02_clip_08,"We didn'tt choose this, we were chosen." 13920,Phoebe,Jill,Joey,Chandler,Ross,0,Who else is with monica and rachel when they are cleaning out the bedroom?,135959,Friends,44.55-50.35,friends_s06e06_seg02_clip_04,Phoebe 13921,The driver robs the biker and takes his bag,The driver calls 911,The biker gets up and gets back on the bike,The biker rolls over and asks for help,The driver is stuck in the car,0,What happens after the car crashes into the biker?,135960,Castle,24.32-31.34,castle_s02e08_seg02_clip_00,The driver robs the biker and takes his bag 13922,A scarf,A bathing suit,A hat ,A suit and tie,A Police uniform,3,What is Montgomery wearing when he talks to Beckett about a direct order?,135961,Castle,0-11.87,castle_s03e13_seg02_clip_19,A suit and tie 13923,Bernadette ,Leonard,Amy,Raj,Sheldon,4,Who brought Penny something to drink when she was on the couch?,135962,The Big Bang Theory,50.96-54.93,s07e01_seg02_clip_11,Sheldon 13924,A cellist.,An opera singer.,A violinist.,A ballet dancer.,An Attorney.,3,What did Randall say that Jade was before his son snatched his arm away? ,135963,Castle,49.61-63.26,castle_s06e18_seg02_clip_24,A ballet dancer. 13925,What is the universe?,What are particles. ,What are atoms.,What is matter made of?,What is physics.,4,What does Sheldon say one must ask about after Penny asks what are subatomic particles?,135964,The Big Bang Theory,51.62-60.02,s03e10_seg02_clip_14,What is physics. 13926,Rachel had to eliminate Chandler's sister from the possible job candidates.,Rachel really didn't want to hire anyone because her office was already crowded.,Rachel had been hoping for a raise and hiring someone would end any chance of it.,Rachel had narrowed the choice down to two people but couldn't decide which one to hire.,Rachel felt obligated to hire the one her boss liked but she preferred the other candidate.,3,Why was Rachel feeling torn when she began talking about who to hire?,135965,Friends,0-5.42,friends_s07e04_seg02_clip_05,Rachel had narrowed the choice down to two people but couldn't decide which one to hire. 13927,30 years old.,15 years old.,10 years old.,20 years old.,25 years old.,0,How old did Chandler say Mr. Gellar's tux was when he was talking to Monica's parents?,135966,Friends,50.47-59.03,friends_s07e14_seg02_clip_03,30 years old. 13928,Rachel ask many questions.,Rachel stand and walk around.,Rachel sang.,Rachel touched her head.,Rachel call to her mom.,3,What did Rachel after puting the cup on the table?,135967,Friends,58.25-59.75,friends_s01e20_seg02_clip_19,Rachel touched her head. 13929,That he always has to go to his mother's home.,That he needs a glass of wine,That he wants a new church home,That he is going to the liquor store.,Why he is not head of the department.,4,What does Ross disclose after he gives the news?,135968,Friends,8.06-14.89,friends_s08e12_seg02_clip_00,Why he is not head of the department. 13930,She said he was a good person,She told him he had nice eyes,She said she liked his jacket,She told him he was really smart,She said he smelled good,3,What compliment did Penny give Leonard when he asked her if her being drunk and her problem with Kurt had something to do with her kissing him,135969,The Big Bang Theory,0-56.14,s01e06_seg02_clip_15,She told him he was really smart 13931,takes Ross's I pad ,pours Joey coffee,takes a phone call ,gives Monica a hug,runs out of the room ,4,What does Chandler do after Joey enters the room? ,135970,Friends,2.39-11.03,friends_s03e10_seg02_clip_13,runs out of the room 13932,watching Bailey.,"He says ""checking out the new chief candidate.",Looking at a new patient.,Checking out a new nurse.,Watching a new procedure.,1,"How does George respond when Izzie asks ""what are we doing?""",135971,Grey's Anatomy,45.76-49.84,grey_s03e18_seg02_clip_03,"He says ""checking out the new chief candidate." 13933,Took off his glasses,Put clothes on,Put a shirt on,Put pants on,Took shoes off,0,What did Chandler do before sitting down in the steam room?,135972,Friends,33.62-38.42,friends_s07e03_seg02_clip_07,Took off his glasses 13934,"A classic Korean meal including pork strips, kimchi, and sticky rice balls.",A series of orchids in glass vases set against the backdrop of a large window.,An image of the Golden Gate Bridge as it appears at sunrise.,The iconic Hollywood sign in the Hollywood Hills.,A pagoda style building with a small monument in front of it.,4,What is the subject of the first picture Castle sees after he enters the Hungry Orchid Korean Restaurant? ,135973,Castle,88.38-93.03,castle_s08e14_seg02_clip_02,A pagoda style building with a small monument in front of it. 13935,Because he is using the restroom,Because he is mad at Sheldon,Because he is kissing Penny,Because Leonard is on the phone,Because Leonard doesn't like Sheldon,2,Why does Leonard say that it's not a good time when Sheldon knocks on the door?,135974,The Big Bang Theory,5.4-9.6,s03e01_seg02_clip_03,Because he is kissing Penny 13936,House is gambling.,House is eating dinner.,House is talking to colleagues.,House is drinking wine.,House is working.,0,What is House doing when he is sitting at the table?,135975,House M.D.,80.57-89.57,house_s02e19_seg02_clip_15,House is gambling. 13937,He was laying down on the floor stretching out his hamstring,He was sitting on a stool up at the bar,He was sitting on the couch next to Chandler at the Coffee House,He was laying on the couch in their apartment watching Bay Watch,He was sitting next to Phoebe at the kitchen table at Monica's,2,Where was Joey when Chandler asked him to go get him a colon,135976,Friends,0-8.14,friends_s06e04_seg02_clip_09,He was sitting on the couch next to Chandler at the Coffee House 13938,A schizophrenic homeless man,A bipolar Vet,A delusional doctor,a schizophrenic black man,a biopolar mom,0,who does masters want to help beyond the diagnosis when talking to house about what they should do after they cure the patient?,135977,House M.D.,26.71-36.5,house_s07e17_seg02_clip_12,A schizophrenic homeless man 13939,turkey sandwich,grilled cheese sandwich with a face on it,tuna sandwich,pasta,protein shake,1,What did Sheldon's mother make for Sheldon when he visited?,135978,The Big Bang Theory,0-17.65,s03e01_seg02_clip_14,grilled cheese sandwich with a face on it 13940,Ordered a pizza,Picked up a brush,Called Monica,Took a shower,Grabbed a tissue,4,What did Rachel do after Ross left the room?,135979,Friends,1.65-11.56,friends_s03e21_seg02_clip_15,Grabbed a tissue 13941,That they didn't invite her to the game,That they're late for dinner,That Ross likes Rachel,That Candler went to the game,That Rachel is late,1,"Why is Monica upset when she hears Joey, Phoebe and Ross in the hallways",135980,Friends,3.01-60.27,friends_s10e08_seg02_clip_09,That they're late for dinner 13942,A window. ,A drink machine. ,The elevator. ,Flowers. ,A couch. ,3,What was Wilson standing by when he was talking to House on the phone? ,135981,House M.D.,2.3-6.91,house_s04e06_seg02_clip_15,Flowers. 13943,Jenny,Penny,Carrie,Connie,Sandra,0,Who did Castle say is a lucky girl after Ryan showed him the engagement ring?,135982,Castle,72.77-91.19,castle_s03e11_seg02_clip_00,Jenny 13944,Moves her game piece.,Stands up.,Crosses her legs.,Picks are card from the board game.,Takes a sip of her drink.,2,What does Penny do after she says she has to bring up her friend at the airport?,135983,The Big Bang Theory,56.64-59.1,s03e07_seg01_clip_00,Crosses her legs. 13945,Because Detective Beckett is arresting someone and thinks a person is behind her. ,Because Detective Beckett thinks that her gun fell out its hoister. ,Because Detective Beckett is peeking into Simmons car and he walks up and catches her in the act. ,Because Detective Beckett is focusing on a file and she thinks the noise might be a fire in the kitchen. ,Because Detective Beckett thinks she hears a gun fire and it startles her. ,2,Why does Detective Beckett jump with surprise when she hears a noise?,135984,Castle,0-10.2,castle_s06e22_seg02_clip_06,Because Detective Beckett is peeking into Simmons car and he walks up and catches her in the act. 13946,quarks,atoms,neurons,centrinos,particles,4,What does Sheldon say he works with that are smaller then the Locus coeruleus when he mentions physics?,135985,The Big Bang Theory,53.96-62.02,s05e16_seg02_clip_12,particles 13947,She gets a drink. ,She starts crying. ,She starts laughing. ,She makes some food. ,Ross comes out of the other room. ,4,What happens after Rachel puts down the phone?,135986,Friends,45.16-48.52,friends_s09e03_seg02_clip_02,Ross comes out of the other room. 13948,Blake,The flamethrower,The crispy one,The Phantom,An arsonist,3,What is the pseudonym given to the unknown arsonist after Beckett accuses Farguson?,135987,Castle,15.69-50.3,castle_s06e11_seg02_clip_07,The Phantom 13949,Bit into his Donut.,Sat down in the chair.,Looked back at the woman.,Walked toward the door.,Hugged the woman.,2,What did Marshall do after he looked into the window?,135988,How I Met You Mother,0-6.49,met_s02e17_seg02_clip_18,Looked back at the woman. 13950,Wilson,Foreman,Chase,Cuddy,Taub,0,Who advises House to start small and take a chance before he leaves the room?,135989,House M.D.,42.44-60.28,house_s03e15_seg02_clip_25,Wilson 13951,An hour ago.,10 minutes ago.,5 minutes ago.,3 hours ago.,20 minutes ago.,2,When did Nina say her trial was supposed to begin when she asked the officer what was going on?,135990,Castle,25.73-29.94,castle_s08e10_seg02_clip_15,5 minutes ago. 13952,Sheldon clap his hands.,Sheldon eat his food.,Sheldon took out his phone.,Sheldon took Howard's food.,Sheldon throw his food in teh trash.,2,What did Sheldon after making a comment about the girls?,135991,The Big Bang Theory,0-26.04,s08e05_seg01_clip_01,Sheldon took out his phone. 13953,On the couch. ,On the floor. ,On the arm of the couch. ,On the coffee table. ,On the counter. ,2,Where does Monica sit when she is holding a newspaper?,135992,Friends,65.58-73.49,friends_s08e21_seg01_clip_00,On the arm of the couch. 13954,Keeps it.,Deletes it.,Analyzes it more.,Copies it.,Emails it.,1,What does Castle do with the file when he is looking at his screen?,135993,Castle,41.86-46.51,castle_s04e23_seg02_clip_25,Deletes it. 13955,At Central Perk,At Monica's ,At work,In the doctor's office,In the elevator,4,Where was Ross when he heard that someone passed away?,135994,Friends,6.55-12.51,friends_s08e07_seg02_clip_02,In the elevator 13956,Amber.,Taub.,Cuddy.,Dobson.,Brennan.,0,Who crawled under the table and toward the door when the doctors were talking? ,135995,House M.D.,91.18-100.45,house_s04e03_seg02_clip_10,Amber. 13957,,Three,One ,Four,Two,4,How many red books were on the coffee table when Beckett and Castle were talking about marriage?,135996,Castle,5.97-11.03,castle_s06e19_seg02_clip_00,Two 13958,A coat.,A dress.,A robe.,Jeans.,A towel.,4,What was Rachel wearing when she asked if they hated her shoes?,135997,Friends,0-5.89,friends_s03e12_seg01_clip_00,A towel. 13959,House's patient said he couldn't tell him his real name.,House's patient said he couldn't remember it.,House's patient said that Ferris Bueller was his real name.,House's patient said no.,House's patient said It wasn't important.,3,What did House's patient say after House asked him to tell him his real name?,135998,House M.D.,0-11.04,house_s07e17_seg02_clip_17,House's patient said no. 13960,A paper towel.,A tortilla chip.,A napkin.,A book.,A stick.,1,What does Raj put in the flame when he is sitting by Leonard?,135999,The Big Bang Theory,0-5.96,s09e03_seg02_clip_15,A tortilla chip. 13961,his neighbor upstairs,that guy he met on the street,guy from his old job,his doctor,his uncle,2,Who did Joey say called for Chandler when he was sleeping?,136000,Friends,0-9.72,friends_s01e15_seg02_clip_13,guy from his old job 13962,blue,white,yellow,black,green,0,What color is the shirt House wearing when he's talking to the patient?,136001,House M.D.,0.92-9.66,house_s01e14_seg02_clip_16,blue 13963,Robin was in his house.,Robin was in the woods.,Robin was in the street.,Robin was in a train.,Robin was in te park,3,Where was Robin when riding a bike?,136002,How I Met You Mother,29.59-58.02,met_s04e03_seg02_clip_12,Robin was in a train. 13964,On a desk,In a chair,On the floor,On the window seal,On the patients bed,0,Where is House sitting when he speaks to Ramon about God?,136003,House M.D.,7.87-16.18,house_s07e08_seg02_clip_01,On a desk 13965,move,rent,buy a house,get new jobs,quit their jobs,2,What did Lily and Marshall decide to do when speaking to their friends?,136004,How I Met You Mother,51.77-60.55,met_s03e07_seg02_clip_14,buy a house 13966,The messiest.,The messiers.,The messees.,The cleaner.,The cleanest.,2,What does Chandler say the messers become when talking to Joey?,136005,Friends,0-8.24,friends_s05e14_seg02_clip_10,The messees. 13967,Gabriel stole Dave's wallet.,Gabriel stole Dave's cellphone.,Gabriel stole Dave's laptop.,Gabriel stole Dave's key card.,Gabriel stole Dave's car keys.,3,What did Gabriel steal when he was working with Dave?,136006,Castle,34.5-37.6,castle_s08e21_seg02_clip_03,Gabriel stole Dave's key card. 13968,the manager ,ross,mr. green,chandler,the waiter,4,Who comes up to rachel and joeys table after rachel says the first wow? ,136007,Friends,5.8-11.9,friends_s08e16_seg02_clip_16,the waiter 13969,A turkey sandwich,A piece of pizza,A croissant,A blueberry muffin,A bagel with cream cheese,1,What was Marshall eating when he was talking to Ted?,136008,How I Met You Mother,31.64-38.88,met_s05e05_seg02_clip_12,A piece of pizza 13970,watch,floor,window,phone,at Castle,4,Where did Beckett look after she stopped talking?,136009,Castle,7.2-15.3,castle_s05e24_seg02_clip_04,at Castle 13971,She whistled to castle,She keeps winking at castle,She is the only one here alone,She is wearing the same pin,She is wearing sunglasses inside,2,Why does castle think the lady in the green outfit is the person that he is supposed to make contact with when he is with beckett?,136010,Castle,48.33-51.98,castle_s02e24_seg02_clip_05,She is the only one here alone 13972,She hold onto the jail bars,She closes her eyes,SHe bangs her fists on the jail bars,She tells him not to talk to her and sits down,She turns her back to him and keeps standing.,3,What does Nina do after Castle says he is sorry for the bad joke?,136011,Castle,36.48-43.5,castle_s08e10_seg02_clip_15,She tells him not to talk to her and sits down 13973,House seen Emily in the hospital,House seen Emily at the park,House seen Emily at the movie theater,House seen Emily at the carnival,House seen Emily in the festival,0,Where did House see Emily at when she is waiting?,136012,House M.D.,0-14.32,house_s08e11_seg02_clip_23,House seen Emily in the hospital 13974,Why are you asking me?,You didn't ask her the right way. ,Nothing.,Everything.,You picked the wrong place to go. ,0,What did Sheldon say after Leonard asked what did he do wrong?,136013,The Big Bang Theory,49-54.89,s02e01_seg02_clip_04,Why are you asking me? 13975,his clothes,his hair,his new paper he wrote,his mother,his car,2,What did Kathy like when she sat talking to Sheldon?,136014,The Big Bang Theory,23.5-35.1,s02e06_seg02_clip_16,his new paper he wrote 13976,Sleeping on the bed,Sitting on the chair,Leaning on the wall,Standing beside the board,Sitting on the table,3,Where was Chase when he analysed the patient symptoms. ,136015,House M.D.,37.78-52.79,house_s06e18_seg02_clip_22,Standing beside the board 13977,badges,guns,papers,phones,handcuffs,2,what were both male agents holding in their hands after they started talking,136016,Castle,81.47-90.02,castle_s07e01_seg02_clip_16,papers 13978,House has to figure out where to go next in his department,House has to figure out where his department is going,House has to figure out how long his department has,House has to figure out which doctor he is not hiring ,House has to figure out how long he is keeping each doctor,3,What doea House have to figure out when it comes to his department?,136017,House M.D.,27.93-32.74,house_s06e07_seg02_clip_04,House has to figure out which doctor he is not hiring 13979,The onions being peeled for the reception meal. ,The Klingon would've made them cry. ,The beauty of his love for Amy. ,The beauty of being alone. ,The beauty of the scenery. ,1,What does Sheldon say would've made them cry after he is done with his speech?,136018,The Big Bang Theory,53.02-53.02,s05e24_seg02_clip_14,The Klingon would've made them cry. 13980,He tells him to find his children,He tells him to go to hell,He tells him to stop visiting him,He apologizes ,He tells him to take care of his company,3,What does the man tell Eddie when he starts to leave?,136019,House M.D.,11.57-21.81,house_s06e10_seg02_clip_22,He apologizes 13981,Joey says he's going to a strip club.,Joey says he's going to see a play.,Joey says he's going to see a musical.,Joey says he's going to see a movie.,Joey says he's going to church.,3,Where does Joey say he's going before he exits the apartment?,136020,Friends,22.28-42.72,friends_s08e21_seg02_clip_02,Joey says he's going to see a movie. 13982,House knocks Chase up against the wall,House knocks Chase to the floor,House breaks Chase's leg,House cuts off Chase's head,House hits Chase in the back,3,What does House do to Chase after his cane changes into a weapon,136021,House M.D.,39.43-49.15,house_s07e15_seg02_clip_11,House cuts off Chase's head 13983,Yellow.,Pink,Beige.,White.,Black.,1,What color was Bernadette's sweater when she hugged and kissed Howard? ,136022,The Big Bang Theory,42.3-46.53,s09e16_seg02_clip_12,Pink 13984,A picture of a T-Rex. ,A picture of Bigfoot. ,A picture of Slenderman. ,A picture of a mammoth. ,A picture of the Loch Ness Monster. ,4,What is on the wall behind Marshall when he is talking on the phone with Marcus? ,136023,How I Met You Mother,45.38-61.77,met_s06e15_seg02_clip_08,A picture of the Loch Ness Monster. 13985,A note with a message on it.,A Beyonce CD,Her car keys.,Her jacket.,A map of where they need to go. ,1,What does Raj hand Penny after she says she is going to show them how we finish a quest Nebraska?,136024,The Big Bang Theory,53.04-62.04,s04e19_seg02_clip_15,A Beyonce CD 13986,George,Ashley,Mark,Bill,Maria,1,Who does Alexis say she's rat-sitting for when Richard comes in?,136025,Castle,2.73-8.19,castle_s03e08_seg02_clip_00,Ashley 13987,a bike joke, a dog joke,a cat joke,a car joke,a horse joke,4,What joke did Sheldon mention when he was trying to cheer Amy up?,136026,The Big Bang Theory,34.84-54.02,s06e23_seg02_clip_14,a horse joke 13988,Standing in the kitchen.,Sitting in the living room.,Standing in the living room.,Standing in the bedroom.,Sitting in the kitchen.,2,Where were Joey and Ross when Ross was fixing Joey's bow tie?,136027,Friends,18.62-24.63,friends_s07e18_seg02_clip_06,Standing in the living room. 13989,Rachel is a terrible roommate.,Chandler and Monica are moving in together.,Monica is unhappy with their friendship.,Chandler is jealous of their friendship.,Monica doesn't have rent money for the month.,1,What were Monica and Chandler talking about when Rachel walks in?,136028,Friends,37.78-56.99,friends_s06e02_seg02_clip_04,Chandler and Monica are moving in together. 13990,Ties,His shirt,His hair,His mascara,Alexis doesn't help Castle,0,What does Alexis help Castle with when he's looking at himself in the mirror?,136029,Castle,77.32-91.5,castle_s02e14_seg02_clip_18,Ties 13991,Taub,Cuddy,Foreman,Chase,Cameron,0,Who tried to get into the room when House and Wilson was examining Cuddy's child?,136030,House M.D.,20.69-37.61,house_s07e05_seg02_clip_14,Taub 13992,He says he wants his mother,Nothing he is silent,He says he wants to live in Bermuda,He says he is thirsty,He says he needs to cancel his membership at the planetarium,4,What does Sheldin say after the start of the scene?,136031,The Big Bang Theory,3.84-64.04,s01e08_seg02_clip_00,He says he needs to cancel his membership at the planetarium 13993,Derek and George were talking in the hallway,Derek and George were talking in a room,Derek and George were talking in a surgery room,Derek and George were talking in the break room,Derek and George didn't speak to each other,0,Where were Derek and George speaking after Derek left the surgery room?,136032,Grey's Anatomy,29.87-43.41,grey_s01e07_seg02_clip_19,Derek and George were talking in the hallway 13994,Michael Gallagher,Johanna Beckett,Tim Gallagher,Kate Beckett,Jessie Esposito,3,Who does Castle think might have hired the sniper when he is looking at his screen?,136033,Castle,33.02-46.05,castle_s04e23_seg02_clip_25,Kate Beckett 13995,House wanted to see if Cuddy would talk to herself.,House wanted to make Cuddy feel lonely.,House wanted to give Cuddy time to see how she felt about him.,House wanted to see how long Cuddy could go without talking to him.,House wanted Cuddy to deal with situation however she wanted.,4,Why did House want to leave Cuddy alone when she was in her office?,136034,House M.D.,34.34-37.72,house_s07e13_seg02_clip_26,House wanted Cuddy to deal with situation however she wanted. 13996,A mug,A badge,A pen,A piece of paper,A lucky charm bracelet,0,What is Castle holding when he's talking to Beckett?,136035,Castle,62.88-71.2,castle_s04e04_seg02_clip_25,A mug 13997,Phoebe tells the stripper that her dance was very sexy.,Phoebe tells the stripper that her dance was very sensual.,Phoebe tells the stripper that her dance was very hot.,Phoebe tells the stripper that her dance was very exotic.,Phoebe tells the stripper that her dance was very beautiful.,3,What compliment does Phoebe give the stripper when she puts money in the stripper's underwear?,136036,Friends,0-8.47,friends_s04e14_seg02_clip_12,Phoebe tells the stripper that her dance was very exotic. 13998,rachel was in the middle of the club selling ravioli,rachel was standing up,rachel was stuck in line at the store,rachel was taking a shower ,rachel was running around with a dagger,1,where was rachel when ross was holding the baby,136037,Friends,0-17.09,friends_s10e01_seg02_clip_20,rachel was standing up 13999,It was a settlement between Mr. and Mrs. Stinson.,Lily won lots of money in a lottery.,Lily found a full set of furniture on the road.,Marshall gave her the cash needed to furnish the apartment. ,Lily used her savings from years of hard work.,0,How was Lily able to furnish her apartment after the argument between Mr. and Mrs. Stinson?,136038,How I Met You Mother,0-75.02,met_s02e05_seg02_clip_19,It was a settlement between Mr. and Mrs. Stinson. 14000,Because Stuart didn't wait for Raj to build the crib. ,Because Raj is emotionally needy. ,Because Stuart doesn't care that Raj is the one who bought the crib. ,Because Raj was Howard and Bernadette's friend before Stuart. ,Because Raj doesn't like Stuart. ,2,Why is Raj upset when Stuart tells him that he already built the crib? ,136039,The Big Bang Theory,18.8-44.05,s10e10_seg02_clip_10,Because Stuart doesn't care that Raj is the one who bought the crib. 14001,Chandler's Birthday,Monica's Birthday,Valentine's Day,Their anniversary,Christmas,2,What day is when Monica confirms her gift for Chandler?,136040,Friends,0-3.86,friends_s08e15_seg02_clip_06,Valentine's Day 14002,Because she thought the hospital would be more cheerful in that color. ,Because she thought she was handing him a prescription sheet.,Becasue she wanted to show him what color she was painting her house.,Because she thought it was his favorite color.,Because she wanted to show him it was now pale goldenrod.,4,Why did Jodi hand House a paint sample sheet after she said her mucous was no longer yellow?,136041,House M.D.,9.62-31.15,house_s01e03_seg02_clip_03,Because she wanted to show him it was now pale goldenrod. 14003,She says he is wasting his life with no regard for it.,She says he reminds her of her dad who abused her.,She says she was abused by a drug addicted brother.,She says she was abused by a drug addicted mom.,She says she was abused by a drug addicted foster parent.,0,Why does Amber say she has a problem with drug a person who is a drug addict after House asks her about it?,136042,House M.D.,52.21-79.67,house_s04e09_seg02_clip_07,She says he is wasting his life with no regard for it. 14004,A gun.,A photograph.,A microphone.,A camera.,A laptop.,1,What did Beckett put in front of Darren on the table after Leslie started crying?,136043,Castle,71.04-80.42,castle_s04e17_seg02_clip_02,A photograph. 14005,He is drinking water.,He is drinking a beer.,He is drinking milk,He is drinking a gatoraid.,He is drinking coffee.,1,What is Ross drinking when Rachel steps into the hallway?,136044,Friends,28.04-36.89,friends_s04e16_seg02_clip_18,He is drinking a beer. 14006,Marshall,Lily,Ted,Frank,Melissa,1,"Which of the three friends was the first to touch Robin's purse after she labeled herself ""Vice Girl""?",136045,How I Met You Mother,31.72-40.43,met_s06e14_seg02_clip_00,Lily 14007,hugged him,cried,sat down,drank a beer,he stormed off,4,what did sheldon do after he asked leonard why doesnt he take his side,136046,The Big Bang Theory,20.45-29.91,s06e09_seg02_clip_01,he stormed off 14008,The man is tired,The man is teaching a class on safety,The man tripps,The man liked laying down,The man is spooning with a girl,1,Why is the instructor on the ground when Ross enters?,136047,Friends,0-5.51,friends_s06e17_seg02_clip_16,The man is teaching a class on safety 14009,"Howard says oh no, not her again. ",Howard says the eagle has landed. ,Howard says he just wants her to go away. ,Howard says he doesn't want to have anything to do with them again. ,Howard says he doesn't like Bernadette anymore. ,1,What does Howard say after he gets a text message?,136048,The Big Bang Theory,51.18-53.46,s04e23_seg02_clip_01,Howard says the eagle has landed. 14010,A nurse came in to check Pete's vital signs.,The orderly came in and wheeled Pete down to surgery.,The orderlies wheeled in another hospital bed with Pete's brother in it.,The electricity went out.,A florist delivered Pete some flowers.,2,What happened in Pete's hospital room after Derek left?,136049,Grey's Anatomy,69.03-103.02,grey_s03e10_seg02_clip_24,The orderlies wheeled in another hospital bed with Pete's brother in it. 14011,a comic book,a bat,Leonard's ring,a glass of wine,money,3,What was Penny holding when Raj walked toward her?,136050,The Big Bang Theory,7.53-12.95,s07e06_seg02_clip_05,a glass of wine 14012,The woman,Penny,Howard,Andres,Elliot Wong,4,Who would Leonard be replacing on the Physics Department String quartet as a cellist after the person he is replacing after a mishap with High Radiation research?,136051,The Big Bang Theory,11.8-23.61,s01e05_seg01_clip_02,Elliot Wong 14013,The car rental agent.,Benny Stryker.,The maintenance man.,The elevator attendant.,The bellboy.,1,Who did Ryan say was a suspect after he came into the office?,136052,Castle,22.06-38.71,castle_s03e09_seg02_clip_08,Benny Stryker. 14014,He was typing,He was eating,he was sleeping,He was reading,He was getting a massage,4,What was House doing when Cuddy came in?,136053,House M.D.,0-8.82,house_s06e13_seg02_clip_19,He was getting a massage 14015,Ryan,Cuddy,Cameron,House,Marco,3,Who was reviewing the patient's test results when he said it has got to be cancer?,136054,House M.D.,70.63-77.34,house_s02e13_seg02_clip_18,House 14016,House pours granola.,House pours coffee.,House pours sugar.,House pours cereal.,House pours yogurt.,3,What does House pour before he pours milk?,136055,House M.D.,0-2.76,house_s06e15_seg02_clip_00,House pours cereal. 14017,She was driving.,She was eating.,She was laughing at the radio.,She was sleeping.,She was drinking from a bottle of water.,0,What was Thirteen doing before she spoke to House.,136056,House M.D.,35.11-41.41,house_s07e18_seg02_clip_08,She was driving. 14018,Captain Gates said Sam's building was in Harlem,Captain Gates said Sam's building was in Brooklyn,Captain Gates said Sam's building was in Queens,Captain Gates said Sam's building was in Manhattan,Captain Gates said Sam's building was in the Bronx,2,Where did Captain Gates say Sam's building was when she was talking over the speaker phone,136057,Castle,44.38-52.61,castle_s04e08_seg02_clip_14,Captain Gates said Sam's building was in Queens 14019,that Leonard has been reading too much Freud,that it was a brillant analysis,that he can't wait to tell Amy,that Leonard should keep his thoughts to himself,that it is literally the stupidest thing he has ever heard,4,How does Sheldon say he feels about Leonards insight before he get from his chair?,136058,The Big Bang Theory,22.41-31.37,s06e02_seg02_clip_08,that it is literally the stupidest thing he has ever heard 14020,By a coffee machine in the break room.,On the other side of House's desk.,Near the nurse's station.,By the vending machine. ,Near a patient's hospital bed. ,1,Where was Cameron standing when she was talking with House about firing Chase?,136059,House M.D.,22.75-32.08,house_s01e14_seg02_clip_21,On the other side of House's desk. 14021,Drawing blood.,Pushing IV meds.,Listening to his heart.,Placing a tourniquet.,Checking blood pressure.,0,What is Chase doing when Clancy is telling him that he thinks his parents think he's crazy?,136060,House M.D.,62.35-86.93,house_s03e02_seg02_clip_08,Drawing blood. 14022,The Fan Experience. ,A reunion show. ,A YouTube show. ,A petition to get Nebula 9 airing again. ,The end of a Nebula 9 era. ,0,What did Annabelle ask Winters to be a part of when she was still alive?,136061,Castle,69.48-75.92,castle_s05e06_seg02_clip_02,The Fan Experience. 14023,Sheldon yells at her so she will change her mind. ,Sheldon breaks up with her. ,Sheldon agrees with her. ,Sheldon kicks her out. ,Sheldon thinks that Amy is confused and explains who Indiana Jones is. ,4,How does Sheldon respond when Amy says Indiana Jones would've turned out exactly the same even without Indiana Jones?,136062,The Big Bang Theory,20.16-30.36,s07e04_seg01_clip_01,Sheldon thinks that Amy is confused and explains who Indiana Jones is. 14024,Chang,Yang,Tong,Bing,Dong,0,Who did Foreman say was the only candidate that House had responded to when he was sitting in the office with Wilson?,136063,House M.D.,48.98-62.9,house_s07e05_seg02_clip_22,Chang 14025,the city's biggest crime boss,undercover detectives,Federal agents,the Mafia,Homeland Security,2,Who pulled up in the black car to talk to McMurty after Mickey leaves on the video?,136064,Castle,70.64-91.51,castle_s05e08_seg02_clip_18,Federal agents 14026,For making him laugh,For being gentle,For giving him medication,For believing him,For allowing him to leave ,3,Why did Mr Walker thank Meredith after she examined him? ,136065,Grey's Anatomy,40.51-48.16,grey_s01e09_seg02_clip_21,For believing him 14027,Beckett's mom lived next door to Simmons in Washington Heights.,Beckett's mom turned Simmons in for dealing drugs.,Beckett's mom testified agianst Simmons.,Beckett's mom started a campaign against drug dealers in Washington Heights.,Beckett's mom was good friends with Simmons mom.,3,Why does Beckett think Simmons may have targeted her mom after finding out he ran the drug trade there?,136066,Castle,21.22-44.66,castle_s03e13_seg02_clip_06,Beckett's mom started a campaign against drug dealers in Washington Heights. 14028,A bottle of soda.,A can of beer,A hat,A wallet.,A bottle of liquor in a paper bag,4,What gives Jerry to Barney after exit the bar?,136067,How I Met You Mother,11.41-17.41,met_s06e21_seg02_clip_09,A bottle of liquor in a paper bag 14029,Leonard says he just didn't think Sheldon's joke was funny.,Leonard says he can't take Sheldon's side because he never understands it. ,"Leonard said, I do care about you Sheldon. ","Leonard said, don't leave tell me what you want. ","Leonard said, Sheldon creeps him out. ",1,What does Leonard say to Sheldon after Sheldon storms off feeling rejected by Leonard?,136068,The Big Bang Theory,22.12-29.81,s06e09_seg02_clip_01,Leonard says he can't take Sheldon's side because he never understands it. 14030,Izzy blew a fuse,The electric was turned off,They were having a celebration,They lightbulb blew,It was a surprise party,0,Why were they sitting in the dark when Cristina walked in?,136069,Grey's Anatomy,44.11-58.07,grey_s03e18_seg02_clip_21,Izzy blew a fuse 14031,Chip.,Taggy.,Tagman.,Chipster.,Chippy.,4,What did Rachel call Tag when she found of picture on his desk?,136070,Friends,49.97-54.02,friends_s07e12_seg02_clip_10,Chippy. 14032,Outside the bar/restaurant.,At the doctor's office.,At home.,In the mall. ,On the computer.,0,Where was Marshall when he found out his father died?,136071,How I Met You Mother,39.67-64.61,met_s06e13_seg02_clip_18,Outside the bar/restaurant. 14033,He works at an office,He works for customs,He does not work,He works at an airport,He works at a shipping yard,1,What does Mr. Kopek do for work that she shrugs off Beckett's accusations after Beckett says he signed the custom's form,136072,Castle,56.07-82.3,castle_s02e14_seg02_clip_25,He works for customs 14034,Cleaned the table,Looked at Chandler,Sat next to Phobe,Turned on the TV,Washed a plate,1,What did Monica do after Phobe said London was stupid?,136073,Friends,36.12-40.44,friends_s05e02_seg02_clip_03,Looked at Chandler 14035,A babydoll,A computer bag,A stuffed animal,A coffee,A newspaper ,0,What is Susan holding when she's talking to Ross?,136074,Friends,0-4.76,friends_s01e16-17_seg02_clip_08,A babydoll 14036,House cuts a small incision on her face,House cuts a button off of Cameron's bouse,House cuts a hair on Cameron's face,House cuts a small cut on Cameron's sleeve,House doesn't use the surgical tool,1,What does House cut on Cameron when he is using the tool on her to demonstrate it's abilities?,136075,House M.D.,58.31-67.66,house_s02e24_seg02_clip_22,House cuts a button off of Cameron's bouse 14037,A coat.,An IV bag.,A handbag.,An umbrella.,A stethescope.,1,What was put on a hook before Park said antibiotics would stop the infection?,136076,House M.D.,56.78-62.06,house_s08e14_seg02_clip_05,An IV bag. 14038,A plate of cookies,A fridge,A stack of boxes,A coffee maker,A bookshelf,4,What was behind Jerry when Beckette asked him about the blue butterfly?,136077,Castle,6.26-15.19,castle_s04e14_seg02_clip_18,A bookshelf 14039,There at the hospital.,On their way.,Upstairs with Cuddy.,In the break room.,On the phone.,0,Where did the pharmacist say the inspector was when House was trying to get the steroid from him?,136078,House M.D.,35.65-38.36,house_s04e14_seg02_clip_22,There at the hospital. 14040,Sheldon's cell phone.,A plate of food.,A styrofoam take-out carton.,A map.,Utensils for Sheldon's friends.,2,What is Sheldon holding when he walks towards Leonard and Penny?,136079,The Big Bang Theory,3.84-7.38,s02e07_seg02_clip_04,A styrofoam take-out carton. 14041,Castle is talking to Amber,Castle is talking to Cynthia,Castle is talking to Trudy,Castle is talking to Carlie,Castle is talking to Olivia,0,Who is Castle talking to before she starts talking about hands,136080,Castle,0-10.07,castle_s04e08_seg02_clip_14,Castle is talking to Amber 14042,She sits on the couch,She sits on the floor,She sits on a bean bag,She sits at the kitchen table,She sits in a wheelchair,0,Where does Meredith sit after saying the life you save could be your own?,136081,Grey's Anatomy,7.97-19.19,grey_s01e03_seg02_clip_25,She sits on the couch 14043,Howard was braiding Raj's hair.,Howard was tie dying his boxers.,Howard was shining his belt buckles.,Howard was reading Archie comic books.,Howard was alphabatizing his DVD collection.,0,How does Leonard say Howard spent last night after Sheldon admits following Howards advice?,136082,The Big Bang Theory,24.08-37.42,s07e05_seg02_clip_06,Howard was braiding Raj's hair. 14044,He was leaving.,He hated them both.,He found her joke offensive.,He wanted to sleep.,He was in love with them,4,Why did Bert tell Penny and Amy to leave after Penny told a joke?,136083,The Big Bang Theory,14.17-25.26,s10e03_seg02_clip_15,He was in love with them 14045,Kidney stones caused the pancreatitis,Gallstones caused the pancreatitis,High blood pressure caused the pancreatitis,Low blood pressure caused the pancreatitis,Anemina caused the pancreatitis,1,What caused pancreatitis in the patient when the doctors discovered she had it?,136084,House M.D.,0-6.31,house_s03e09_seg02_clip_02,Gallstones caused the pancreatitis 14046,Pink.,Yellow.,Blue.,Green.,Black.,0,What color scarf was Phoebe wearing when she and Rachel were looking at the apartment?,136085,Friends,14.58-18.61,friends_s07e10_seg02_clip_18,Pink. 14047,Cerebral malaria.,Meningitis.,Ebola.,Epstein Barr.,Myalgic encephalomyelitis.,0,What did Foreman say was wrong with Fletch after he saw it under the mircroscope?,136086,House M.D.,25.63-30.51,house_s02e10_seg02_clip_25,Cerebral malaria. 14048,Bye bye,Okay,See you later,Yup,Toodles,3,What did penny say before walking out front door,136087,The Big Bang Theory,54.3-59.02,s05e14_seg02_clip_05,Yup 14049,Not knowing the dance steps.,Not knowing how to lead.,Not knowing where to put his hands.,Not knowing how to move his feet.,Not knowing the song they are dancing to.,1,What does Joey admit to now knowing before he starts to dance with Monica?,136088,Friends,44.1-50.48,friends_s04e04_seg02_clip_13,Not knowing how to lead. 14050,Disorientation. ,Death.,Blindness.,Sickness.,Rape.,4,What did Wilson imply would happen to the woman if Foreman and House were right when he was talking to House?,136089,House M.D.,17.21-23.26,house_s02e15_seg02_clip_15,Rape. 14051,Phoebe,Joey,Julie ,Rachel,Chandler,4,Who shoes Ross a watch when they are trying to hurry Ross up in the kitchen?,136090,Friends,29.65-45.68,friends_s02e02_seg02_clip_19,Chandler 14052,He sits down in front of his computer. ,He leans over Becket's desk to review a bunch of photos. ,He crosses over to look at the evidence board.,He picks up his cell phone. ,He reaches for a subway map. ,2,"What does Castle do when he says,"" But what about something of value to them?""",136091,Castle,57.73-62.58,castle_s05e03_seg02_clip_19,He crosses over to look at the evidence board. 14053,A book bag,A cup of coffee,A clip board,A model airplane,an I pad,2,what is Sheldon holding when he is singing? ,136092,The Big Bang Theory,32.64-41.46,s06e11_seg02_clip_10,A clip board 14054,Lanie,Castle,The wedding planner,Beckett's fiance,Kate,0,Who was calling when Beckett's phone rang?,136093,Castle,0-7.6,castle_s06e23_seg02_clip_15,Lanie 14055,"When Rachel responds to hearing that Ross didn't get a cat, the color of her shirt is navy.","When Rachel responds to hearing that Ross didn't get a cat, the color of her shirt is brown.","When Rachel responds to hearing that Ross didn't get a cat, the color of her shirt is pink.","When Rachel responds to hearing that Ross didn't get a cat, the color of her shirt is black.","When Rachel responds to hearing that Ross didn't get a cat, the color of her shirt is purple.",3,What color is Rachel's shirt when she responds to hearing that Ross didn't get a cat?,136094,Friends,0-6.01,friends_s02e07_seg02_clip_18,"When Rachel responds to hearing that Ross didn't get a cat, the color of her shirt is black." 14056,He told her she should have minded her own business,He told her that not all lies are bad but some bad ones are necessary.,He told her the immediate uncomfortable truths and pointed out she already knew the truth.,He told her to that if everyone told the truth everybody would hate each other.,He told her that some people don't want to know the truth.,2,How did House try to prove his point to Adams after she was insistent that no one should ever lie after she told Bob to tell his wife the truth?,136095,House M.D.,77.87-86.42,house_s08e05_seg02_clip_15,He told her the immediate uncomfortable truths and pointed out she already knew the truth. 14057,Do they have good coffee here?,How are you today?,Where did you meet my daughter?,Do you know what time it is?,What's your problem?,4,What does Paul ask Ross after they first meet and shake hands?,136096,Friends,0-12.82,friends_s06e21_seg02_clip_03,What's your problem? 14058,He looks happy,He looks disappointed,He looks really very excited,He looks proud,He looks drunk,1,How does Raf look after Charlie Sheen speaks to him?,136097,The Big Bang Theory,0-44.55,s02e04_seg02_clip_07,He looks disappointed 14059,A game show,An online soap,A comedy series,A go go dancer,A play on Broadway ,1,What did Leisha say the agent wanted to get her an audition for when talking to Chase?,136098,House M.D.,41.41-47.18,house_s08e12_seg02_clip_11,An online soap 14060,An oncologist ,A cardiologist ,A nutritionalist,A rheumatologist,A nephrologist,2,What kind of new staff member does House ask Wilson's opinion about after he sits down and they both sip their coffees?,136099,House M.D.,41.78-56.46,house_s03e22_seg02_clip_09,A nutritionalist 14061,Ross,Rachel,Monica,Joey,Chandler,2,Who is phoebe giving a massage to when she is in her apartment?,136100,Friends,26.41-42.64,friends_s08e14_seg02_clip_20,Monica 14062,The cafeteria,The lockerroom,The bathroom,A patient's room,The nurse's station,2,Where does Alex go after talking to Meredith?,136101,Grey's Anatomy,32.65-38.41,grey_s02e12_seg02_clip_03,The bathroom 14063,eating a bagel,pouring a glass of juice,making a sandwich,washing dishes,drink a beer,1,What is Leonard doing when he comes out of the refrigerator,136102,The Big Bang Theory,16.28-37.78,s03e19_seg02_clip_00,pouring a glass of juice 14064,Raj was pouring syrup on his pancakes.,Raj was putting ketchup on his burger.,Raj was spreading butter on his bread.,Raj was putting salt on his fries.,Raj was putting mustard on his sandwich.,2,What was Raj doing with his food when Sheldon asked him for his opinion on his argument with Howard?,136103,The Big Bang Theory,24.82-29.47,s03e02_seg02_clip_10,Raj was spreading butter on his bread. 14065,Red,Black,Green,Purple,Yellow,2,What color purse was Phoebe holding when her car caught on fire? ,136104,Friends,2.07-7.38,friends_s03e23_seg02_clip_03,Green 14066,A bat.,The arm of the chair.,A knife.,A camera.,A gun.,4,What was the criminal in the image holding in his left hand when Beckett said get rid of all the traffic?,136105,Castle,8.5-12.97,castle_s02e18_seg02_clip_20,A gun. 14067,Drinks coffee,Folds a newspaper,Examines an xray,Opens her purse,Takes out her gun,0,What does Beckett do after she walks through the room?,136106,Castle,0.86-10.37,castle_s04e05_seg02_clip_05,Drinks coffee 14068,Leave,Join him ,Write a letter of recommendation ,Stop him,Yell,3,What does Foreman ask House if he is going to do when he has a job interview? ,136107,House M.D.,30.83-41.41,house_s03e23_seg02_clip_14,Stop him 14069,Nothing.,A box of chocolate.,A key.,A different cookie recipe.,The last cookie from the recipe.,4,What gift did Phoebe give Monica and Chandler after letting them know the cookie recipe she wanted burned up in the fire?,136108,Friends,39.06-55.23,friends_s07e03_seg02_clip_03,The last cookie from the recipe. 14070,Dempsey's buried safe.,Dempsey's hidden safe.,Dempsey's secret safe.,Donald's secret safe.,Sullivan's secret safe.,2,What was Joe talking about when he said to Vera there was no way they could crack it?,136109,Castle,15.31-20.56,castle_s04e14_seg02_clip_14,Dempsey's secret safe. 14071,Blue,Red,White,Pink,Yellow,4,What color are the flowers on the tables at the coffee shop when Monica and Phoebe are there by the coffee table and Chandler and Ross are at the bar?,136110,Friends,17.93-27.85,friends_s09e17_seg02_clip_02,Yellow 14072,He broke his thumb.,He broke his wrist.,He broke his elbow.,He broke his knuckle.,He broke his nose.,0,Which injury does Ross have when talking to Joey in the waiting room?,136111,Friends,15.82-27.6,friends_s09e02_seg02_clip_16,He broke his thumb. 14073,She made a phone call.,She looked out the window.,She closed a book.,She put on her jacket.,She picked up her purse.,2,What did Beckett do after Tom pointed his finger?,136112,Castle,17.41-21.07,castle_s04e22_seg02_clip_11,She closed a book. 14074,Nothing,A marker,A napkin,A pen,A dry eraser,4,What did gates hand beckett when they were talking in the precinct?,136113,Castle,3.55-12.07,castle_s04e12_seg02_clip_26,A dry eraser 14075,Milk,Soda,Coffee,Wine,Vodka,4,What is Monica drinking when she is talking to Rachel?,136114,Friends,0.3-5.31,friends_s09e12_seg02_clip_13,Vodka 14076,Standing in the doorway.,Sitting behind his desk.,In the bathroom.,On the couch.,Looking out the window.,1,"Where is Chandler when Joey tells him, anyway, I thought you should know.",136115,Friends,0-4.27,friends_s02e23_seg02_clip_13,Sitting behind his desk. 14077,Clipboard and pencil.,Paper and pen.,Headset and pencil.,Notebook and pencil.,Tablet and pen.,0,What is the producer holding when he tells Joey to dance with the girl over there?,136116,Friends,45.07-47.46,friends_s06e10_seg02_clip_07,Clipboard and pencil. 14078,Face to face,On the other side of the room,A stone's throw away,Several yards,About a twenty miles,0,How close is the woman to House when she tells him that he'll run out of hope?,136117,House M.D.,28.37-32.78,house_s04e08_seg02_clip_26,Face to face 14079,opened a wooden chest,opened the closet door,opened a drawer,opened the bedroom door,closed the front door,1,What did Tim do after telling Beckett that Ed was a professional Santa?,136118,Castle,43.21-46.36,castle_s05e09_seg02_clip_04,opened the closet door 14080,Opened the refrigerator door,Jumped out the window,Took off his clothes,Sat down,Jumped on the counter,3,What did Barney do after Abby said something about stealing attenention away from America?,136119,How I Met You Mother,10.87-18.92,met_s03e19_seg02_clip_18,Sat down 14081,Coughing.,Laughing.,Fussing.,Taub was holding the white board that House was writing on.,Nothing.,3,What was Taub doing when House was writing on the white board?,136120,House M.D.,47.19-75.69,house_s07e23_seg02_clip_11,Taub was holding the white board that House was writing on. 14082,Ross hears a cat,Ross hears Rachel yell,Ross forgot something in the room,Ross wanted to go to bed,Ross just wandered in there,1,Why does Ross race back into the room after he leaves?,136121,Friends,8.25-12.88,friends_s03e21_seg02_clip_15,Ross hears Rachel yell 14083,The cafeteria,A restaurant ,The park,The hospital break room,foremans house,1,Where are hamilton and foreman when they talk about whether or not foreman is happy working with house?,136122,House M.D.,42.19-51.92,house_s01e09_seg02_clip_17,A restaurant 14084,Chloe's boyfriend started an altercation because he didn't like her dancing there,A fire at the club,A foiled terrorist attack at the club,A robbery at the club,A carjacking in the club's parking lot,0,What incident did Kitty refer to after Beckett asked for further connections?,136123,Castle,35.78-49.65,castle_s03e01_seg02_clip_19,Chloe's boyfriend started an altercation because he didn't like her dancing there 14085,Drinking coffee.,Reading a book.,Sipping wine.,Enjoying her foot massage.,Watching TV.,1,What was Beckett doing when Castle asked her about getting married?,136124,Castle,1.38-5.06,castle_s06e19_seg02_clip_00,Reading a book. 14086,Chase said Laura was not getting any air,Chase said Patty was not getting any air,Chase said Leona was not getting any air,Chase said Linda was not getting any air,Chase said Lily was not getting any air,2,Who was Chase referring to when he say she was not getting any air when he called for a crash cart?,136125,House M.D.,60.84-67.76,house_s02e23_seg02_clip_20,Chase said Leona was not getting any air 14087,They are both dressed in swimsuits,They are both blonde,They are both older and heavier ,They are both redheads,They are both dressed as clowns,2,What is different about Rachel and Monica when after Rachel came into the house,136126,Friends,0-7.13,friends_s05e08_seg02_clip_06,They are both older and heavier 14088,American,Chinese,Mexican,BBQ,Japanese,0,What type of food was served after the announcement Castle made?,136127,Castle,0-72.41,castle_s08e13_seg02_clip_26,American 14089,Amy said she received a bonus from her job.,Amy said she got the job she applied for.,Amy said the new shoes she ordered had arrived.,Amy said the weather was going to be nice today.,Amy said the wildebeest was in the curry.,4,What was the good news Amy reported to Penny when Penny was putting her feet in the air?,136128,The Big Bang Theory,56.02-59.37,s04e22_seg02_clip_03,Amy said the wildebeest was in the curry. 14090,A white board,A door,A clock,A mirror,A table,0,What is behind Chase when he mentions that'd mean someone had to agree to sleep with him?,136129,House M.D.,6.9-9.66,house_s03e23_seg02_clip_14,A white board 14091,List of suspects,Overhead video of the crime scene,Access to evidence,DNA report,Bomb forensics report,1,What does Beckett need from the FBI before she can solve the case?,136130,Castle,67.64-78.22,castle_s04e19_seg02_clip_06,Overhead video of the crime scene 14092,Inside the library,Inside the mall,Outside the Szechuan Dragon,Outside the city park,Inside a hotel lobby ,2,Where did Ross find Monica before bringing her to the coffee shop?,136131,Friends,3.92-22.13,friends_s03e01_seg02_clip_08,Outside the Szechuan Dragon 14093,House ignored Chase.,House rolled on the floor laughing.,House went outside.,House answered the phone,House fell alseep.,0,Where did House do after Chase said Newsweek's calling? ,136132,House M.D.,51.75-57.71,house_s02e04_seg02_clip_13,House ignored Chase. 14094,Bra.,Underpants.,Shoes.,Shorts.,Pants.,1,What did Monica ask the girl dancer that she forgot to put on when she is looking up to her?,136133,Friends,20.15-24.39,friends_s06e10_seg02_clip_07,Underpants. 14095,Penny pours wine.,Penny pours sugar.,"Penny pours orange juice,",Penny pours milk.,Penny pours soup.,3,What does Penny pour into her coffee mug after putting her phone down?,136134,The Big Bang Theory,16.23-18.03,s06e08_seg02_clip_01,Penny pours milk. 14096,The news stand.,A bar.,Central Perk.,At the movie theater.,At the subway terminal.,2,Where is Joey working when a fan walks up to Phoebe and asks who she is?,136135,Friends,54.62-60.03,friends_s06e14_seg02_clip_04,Central Perk. 14097,They are hugging Kiki,They are hugging Rachel's sister,They are hugging Ross's mother,They are hugging Joanne,They are hugging Melissa,2,Who is hugging Ross and Monica when they are talking about Dr. Burke,136136,Friends,0-7.5,friends_s02e16_seg02_clip_03,They are hugging Ross's mother 14098,House is at home,House is at a restaurant,House is at a palace,House is in his office,House is in his home,3,Where is House talking to Dr Spain at when he is siting down?,136137,House M.D.,4.01-16.47,house_s01e19_seg02_clip_12,House is in his office 14099,He was hungry.,He like hot dogs.,He wouldn't let him down.,He needed a beer.,He liked his tie.,2,What did Marcus say to Foreman when he made him a promise?,136138,House M.D.,18.11-31.16,house_s06e12_seg02_clip_23,He wouldn't let him down. 14100,In the bathroom. ,In the kitchen. ,On his couch. ,On his bed. ,On the balcony. ,2,Where was Ross when Mona knocked on the door? ,136139,Friends,0-9,friends_s08e11_seg02_clip_04,On his couch. 14101,He laughed and said that Chandler cracks him up.,He looked angry.,He laughed and walked away.,He laughed and said that Ross cracks him up.,He looked disinterested.,0,How did Gunther respond when Ross showed him something in the magazine?,136140,Friends,28.63-37.19,friends_s06e12_seg02_clip_07,He laughed and said that Chandler cracks him up. 14102,a flag.,A microphone.,A radio.,A vase.,A pitcher of water.,1,What was on the podium when the doctor spoke.,136141,Grey's Anatomy,15.85-23.09,grey_s03e05_seg02_clip_03,A microphone. 14103,She fell on the floor.,She ran away.,She jumped in the air.,She screamed.,She dropped her gun.,3,What did Alexis do after Castle jumped up off the chair?,136142,Castle,52.21-54.39,castle_s04e22_seg02_clip_26,She screamed. 14104,HIs resignation letter,A computer screen,A wall,A drawing ,Beckett's eyes,3,What is Castle looking at when Beckett asks if he is ready to talk?,136143,Castle,54.91-64.82,castle_s07e23_seg02_clip_02,A drawing 14105,with the witness,behind closed doors,out of sight,at the office,stay hidden,0,Where did Castle say it would be best for Beckett to stay before saying they want him dead?,136144,Castle,26.22-41.74,castle_s05e08_seg02_clip_18,with the witness 14106,A sticky note.,An envelop.,A folder.,A picture.,A pen.,0,What was on the bag after Cameron opened the door?,136145,House M.D.,0-6.85,house_s03e15_seg02_clip_00,A sticky note. 14107,He kicks Ross's chair. ,He puts his fist up. ,He punches Ross. ,He smacks Ross in the head. ,He kicks Ross out. ,1,What does Joey do after Ross waves his hand around?,136146,Friends,23.19-29.29,friends_s10e10_seg02_clip_07,He puts his fist up. 14108,Feel his stomach,Give him an X-Ray,Give him an MRI,Take his blood pressure,Take his temperature,2,What does the patient force the doctors to do when they reach the exam room?,136147,House M.D.,34.68-54.94,house_s05e09_seg02_clip_17,Give him an MRI 14109,A jacket,A cup of coffee,A newspaper,A bag,A phone,2,What does Joey put down on the table right before Monica asks him about his outfit?,136148,Friends,40.72-45.95,friends_s03e22_seg02_clip_10,A newspaper 14110,Took an important call.,Went to his room.,Went to the kitchen.,Picked up his phone.,Ordered Chinese food.,3,What did Sheldon do after he complimented Leonard?,136149,The Big Bang Theory,12.27-20.56,s04e05_seg01_clip_00,Picked up his phone. 14111,At the table eating ,Sitting on the couch ,Monica and Chandler was in the bathroom ,In the bedroom ,They was on the balcony ,0,Where were Monica and Chandler when Phoebe came into the apartment?,136150,Friends,28.33-35.42,friends_s07e16_seg02_clip_04,At the table eating 14112,GoodRoom goes online.,BigLibrary goes online.,Kingfish goes online.,FishRoom goes online.,Slayer goes online.,2,What happens on the computer after Beckett suggests that Castle's father has an ulterior motive?,136151,Castle,14.13-34.65,castle_s06e12_seg02_clip_22,Kingfish goes online. 14113,A wine glass,Her hair,Some flowers,A piece of string,Her necklace,1,What did Rachel play with after Mrs. Green said something about Mrs. K?,136152,Friends,52.52-60.03,friends_s08e20_seg02_clip_03,Her hair 14114,Green.,Pink.,Yellow.,Black.,White.,1,What is the color of Penny's sweater when she is speaking with Stuart?,136153,The Big Bang Theory,0-4.65,s02e22_seg02_clip_08,Pink. 14115,They were ashamed that the men didn't want their attention,They smiled and seemed happy,They avoided eye contact and looked suspicious,They were angry ,They shook and looked afraid,2,How did the girls react to the question when they were asked about Jade?,136154,Castle,26.63-57.31,castle_s06e18_seg02_clip_11,They avoided eye contact and looked suspicious 14116,Sheldon is laying on the floor,Sheldon is sitting at the desk,Sheldon is standing next to the kitchen counter,Sheldon is sitting on the couch,Sheldon is sitting in a chair,3,Where is Sheldon when Leonard ask what he is doing,136155,The Big Bang Theory,0-11.36,s08e13_seg02_clip_00,Sheldon is sitting on the couch 14117,In a park,In a restaurant,In a Casino,In a hotel,In a hospital,2,Where is Castle when he is with Esposito?,136156,Castle,43.69-53.34,castle_s04e08_seg02_clip_10,In a Casino 14118,He leans his head on Moira's shoulder.,He grabs Moira's hand.,He stands up and sits on the bed.,He gives Moira a kiss on the forehead.,He gives Moira a hug.,1,What does Chase do before saying I'll be here as much as you need?,136157,House M.D.,80.12-90.02,house_s08e12_seg02_clip_20,He grabs Moira's hand. 14119,A laptop,A file,A shoebox,A medical bag,A folded blanket,2,What does House have under his arm when he walks in the patient's room?,136158,House M.D.,60.09-89.02,house_s04e05_seg02_clip_22,A shoebox 14120,Beckett got a cup of coffee,Beckett fell on the floor,Beckett took off her clothes,Beckett closed the door,Beckett shot herself,3,What did Beckett do after opening the door?,136159,Castle,23.31-28.79,castle_s04e08_seg02_clip_25,Beckett closed the door 14121,A magazine.,A book.,A notebook.,A cup of coffee.,A bag.,1,What was Raj holding when there was a knock at the door?,136160,The Big Bang Theory,9.77-15.26,s04e07_seg02_clip_00,A book. 14122,Because Lily wants being loved.,Because Lily is small.,Because Lily is happy.,Because Lily loves Marshall.,Because Lily wants to kiss Marshall.,4,Where Lily jumped over Marshall when they stand on the hallway?,136161,How I Met You Mother,4.64-58.02,met_s02e03_seg02_clip_03,Because Lily wants to kiss Marshall. 14123,how to dance,picking out an outfit,social graces,tying leonards tie,how to pick up girls,3,what does penny help leonard with before he goes to a dinner party?,136162,The Big Bang Theory,4.96-13.65,s04e15_seg02_clip_00,tying leonards tie 14124,A shoe box,Amirror,A pink bag,A pot of soup,There was nothing in her hand,2,What was Phoebe holding in her hand when she walked through the door?,136163,Friends,0-4.05,friends_s05e21_seg02_clip_12,A pink bag 14125,The bald man says he needs help.,The bald man doesn't say anything.,The bald man introduces himself.,"The bald man says ""thanks"".",The bald man says he is upset.,3,What is the first thing the bald man says when he enters the room?,136164,House M.D.,4.3-13.33,house_s01e14_seg02_clip_15,"The bald man says ""thanks""." 14126,They find chemicals and drugs,They find a gun collection,They find a knife collection,They find several types of poison,They find a variety of cleaning supplies,0,What dangerous items do Chase and Adams find in the basement when they look there?,136165,House M.D.,17.48-22.55,house_s08e19_seg02_clip_06,They find chemicals and drugs 14127,Bernadette smacks Howard.,Bernadette begins to giggle.,Bernadette orders her food.,Bernadette drinks wine.,Bernadette gives Amy a pound.,1,What does Bernadette do after Howard says he make girls laugh?,136166,The Big Bang Theory,40.44-47.38,s07e12_seg02_clip_12,Bernadette begins to giggle. 14128,popping pills,eating a sandwich,drinking water,smoking a cigar,eating a bagel,4,"what is house doing when he arrives at the lab to check on cameron, chase, and foremans results?",136167,House M.D.,0-9.77,house_s03e03_seg02_clip_09,eating a bagel 14129,Howard names Leonard. ,Howard names Penny. ,Howard names Sheldon. ,Howard names Eddie Crispo. ,Howard names Bernadette. ,3,Who does Howard name when Raj tells Howard to name one dangerous guy he knows?,136168,The Big Bang Theory,26.89-29.31,s03e17_seg02_clip_02,Howard names Eddie Crispo. 14130,To speak with the patients in the bus. ,To check the other accident victims. ,To take a break. ,To speak to the trapped patient Hanna.,To check with the police to see if they found more victims. ,3,Where does Cuddy go after she walks away from House?,136169,House M.D.,50.28-64.91,house_s06e21_seg02_clip_18,To speak to the trapped patient Hanna. 14131,a napkin,a choker,a scarf,a necklace,a man's tie,3,What is Phoebe wearing around her neck when standing next to Joey?,136170,Friends,11.79-17.06,friends_s08e03_seg02_clip_11,a necklace 14132,Building a robot,Playing cards,Playing World of Warcraft,Playing Jenga,Reading comic books,3,"What are Howard, Raj and Sheldon doing when they are talking about Sheldon being a robot?",136171,The Big Bang Theory,35.51-45.58,s01e03_seg02_clip_05,Playing Jenga 14133,Bladder,Heart,Liver,Kidney,Lungs ,0,Which organ does Cuddy say they fixed when discussing the baby? ,136172,House M.D.,0-10.01,house_s03e17_seg02_clip_15,Bladder 14134,The bald guy was kissing the ground.,The bald guy was playing with a yo-yo.,The bald guy was playing cards.,The bald guy was slamming his head on the ground.,The bald guy was shaking.,4,What was the bald guy in the white shirt doing when he was laying on the ground?,136173,House M.D.,72.62-74.61,house_s03e18_seg02_clip_19,The bald guy was shaking. 14135,Jerry danced with Robin.,Jerry ran to the bathroom.,Jerry hugged Lily.,Jerry widens his eyes in surprise.,Jerry sat on the floor.,3,What does Jerry do after Lily says they had an amazing night together?,136174,How I Met You Mother,2.57-4.85,met_s06e19_seg02_clip_06,Jerry widens his eyes in surprise. 14136,his neck ,his spleen,his butt,his leg,his heart ,1,What did Daniel ask was the cause of his pain when House entered the room?,136175,House M.D.,48.61-54.46,house_s05e15_seg02_clip_13,his spleen 14137,making tea,making cereal,drinking milk,eating a sandwich,drinking wine,0,"what is amy doing in the kitchen when leonard, raj, and howard arrive to the apartment?",136176,The Big Bang Theory,0-6.65,s05e19_seg01_clip_01,making tea 14138,Pain,Appendicitis ,Blindness,Personality Disorder ,Multiple Organ Failure ,4,What symptom suggests HIV when Cameron is brainstorming?,136177,House M.D.,0.46-28.99,house_s03e23_seg02_clip_14,Multiple Organ Failure 14139,Apple ,Lemon,Lime ,Grape,Orange,4,Which fruit does the boy's mom say he used on his garden when talking to Chase about the pesticide? ,136178,House M.D.,80.62-87.16,house_s01e08_seg02_clip_08,Orange 14140,She can't live without her limbs,She can't bear the pain,She's a dancer,Nobody will take care of her,She did not find it necessary. ,2,Why did penelope said no when Chase told her they need to amputate her limbs,136179,House M.D.,10.69-28.15,house_s05e23_seg02_clip_21,She's a dancer 14141,She is taking a break. ,She is waiting on tables. ,She is cooking at the stove. ,She is going in the cooler. ,She is going in the freezer. ,2,Where is Monica when she is at work?,136180,Friends,70.02-70.02,friends_s04e10_seg02_clip_15,She is cooking at the stove. 14142,he was holding a mixtape from LL Cool J,he was holding a Easter egg,he was holding he was holding his own hands together,he was holding a ink pen in his right hand,he was holding a steak knife,3,what type of object was Ross holding when he was sitting?,136181,Friends,0-14.26,friends_s04e21_seg02_clip_01,he was holding a ink pen in his right hand 14143,green,black,yellow,red,blue,3,What color file is laying on the desk beside House's arm when Wilson comes in?,136182,House M.D.,0-8.75,house_s03e22_seg02_clip_09,red 14144,Asked him if he was always so nice.,Started washing dishes.,Sat down on the couch.,Left the coffee house to meet friends.,Made him a sandwich.,2,What did Rachel do after Ross took the broom from her.,136183,Friends,0-10.73,friends_s01e02_seg02_clip_12,Sat down on the couch. 14145,The woman wants a relationship. ,The woman wants to hookup with him without having a relationship. ,The woman wants to get married. ,The woman wants to dance. ,The woman wants him to meet her friends. ,1,Why is Ted so happy when he is talking with the woman?,136184,How I Met You Mother,0-10.05,met_s03e12_seg02_clip_08,The woman wants to hookup with him without having a relationship. 14146,Portable cup holders.,Designer shoes.,Cap sleeves.,Chocolate Twizzlers.,Spiderman Boxers.,2,What item does Raj endorse after the women leave the apartment?,136185,The Big Bang Theory,58.82-98.04,s05e08_seg01_clip_01,Cap sleeves. 14147,sheldon wants to show the dolls,sheldon wants to show the equations,sheldon wants to show the video he made.,sheldon wants to show the drawing he made,sheldon wants to show his butt,2,what does sheldon wants to show amy after he asks if she wants to see it?,136186,The Big Bang Theory,0-7.41,s08e17_seg02_clip_09,sheldon wants to show the video he made. 14148,turned and started to leave the room,helped him unlock the handcuffs,smile at him,danced in front of him,at a piece of cake,0,What did Rachel do after she told Chandler to get himself out of the handcuffs?,136187,Friends,38.57-48.36,friends_s04e03_seg02_clip_10,turned and started to leave the room 14149,bored,happy,nonchalant,upset,tired,3,What was Barney's reaction when the wheel did not stop on $1?,136188,How I Met You Mother,24.22-44.6,met_s02e20_seg02_clip_07,upset 14150,They're bigger than Amy's.,They're a tad asymmetrical.,To put his shirt on.,She's disgusting him.,He's not impressed.,1,What does Sheldon say after Penny shows him her breasts?,136189,The Big Bang Theory,13.23-18.28,s07e11_seg02_clip_09,They're a tad asymmetrical. 14151,Because she is naive.,Because if she knew what people really thought she wouldn't be able to do her job.,Because she only chooses to believe what she wants to believe.,Because it makes her feel civilized.,Because she it makes her feel superior to ignore the ugly truths.,3,"Why did House tell Adams that she chooses to ignore the truth when she was telling Chase, Parks and House that everyone should always tell the truth?",136190,House M.D.,84.62-90.02,house_s08e05_seg02_clip_15,Because it makes her feel civilized. 14152,She is wearing a mask.,Contacts and she changed her face.,She is wearing stage makeup to change her face.,A wig and glasses.,She has on a big hat and sunglasses.,3,What disguise is Marilyn wearing when Castle says she did not want to be recognized?,136191,Castle,81.9-87.69,castle_s07e21_seg02_clip_19,A wig and glasses. 14153,Monica is happy Ross is taking her and smiles.,Monica is sad Ross is taking her and starts to cry.,Monica is scared about Ross taking her and looks worried.,Monica is mad Ross is taking her and frowns.,Monica is confused about Ross taking her and has a puzzled look on her face.,0,How does Monica react when Ross tells her he will take her to the wedding with him?,136192,Friends,4.58-21.97,friends_s07e11_seg02_clip_06,Monica is happy Ross is taking her and smiles. 14154,Jacket,Shoes,Keys,Nothing,Book Bag,2,What does Leonard put on table by the door when he walks in the house?,136193,The Big Bang Theory,56.96-59.03,s07e10_seg02_clip_05,Keys 14155,A highlighter. ,A pen. ,A pencil. ,A red marker. ,A colored pencil. ,3,What is Lily using to write with when she is sitting on a chair?,136194,How I Met You Mother,17.06-17.88,met_s06e01_seg02_clip_08,A red marker. 14156,"House told his team they were wearing ""Workin' For The Weekend"" t-shirts.","House said to his team that they were wearing, ""Frankie Says Relax"" t-shirts.",House had said the team was wearing nappies and bibs with their formula on their faces.,House said they were wearing their hearts on their sleeves and braces on their teeth.,House told them they were wearing exclusive prep school uniforms that their Daddies paid for.,1,What did House say his team was wearing when he was treating a 73-year-old woman who had gone through the same progression of symptoms (as the current case)?,136195,House M.D.,18.12-21.29,house_s02e17_seg02_clip_04,"House said to his team that they were wearing, ""Frankie Says Relax"" t-shirts." 14157,sat down,leaned over her,walked out,yelled,kissed her,1,What did House do before Cuddy started talking?,136196,House M.D.,11.16-17.21,house_s06e14_seg02_clip_20,leaned over her 14158,he gets out of the taxi and waltz with Penny,he gets on his dispatch radio,he throws them out the taxi,he drives around in circles,he talks to them about Dancing with the Stars,1,What does the taxi driver do after Sheldon explains what a waltz is,136197,The Big Bang Theory,45.38-63.02,s04e21_seg02_clip_09,he gets on his dispatch radio 14159,Gates,Castle,Esposito,Ryan,Hunt and Beckett,4,Who walked in Wyndham office after He said he open all week?,136198,Castle,28.01-33.78,castle_s04e20_seg02_clip_25,Hunt and Beckett 14160,Flowers,Pizza,Magazines,Radio,Wine,0,What was behind Erica on the counter when she went in to labor? ,136199,Friends,7.32-14.65,friends_s10e16_seg02_clip_18,Flowers 14161,A hamburger,a toothbrush,a plastic doll,a knife,a bottle of wine,0,what is in lily's hand is holding when Barney tells everyone to sit down,136200,How I Met You Mother,49.03-59.07,met_s02e20_seg02_clip_07,A hamburger 14162,Stood up,Rolled their dice,Ate their dinners,Walked out of the apartment,Picked up their cell phones,2,What did Howard and Raj and Leonard all do at the same time before Sheldon said fascinating?,136201,The Big Bang Theory,76.71-82.04,s02e20_seg01_clip_02,Ate their dinners 14163,His socks.,His Shirt.,His Pants.,His sweater.,His gloves.,0,What did Howard put it in the hamper before taking off his watch?,136202,The Big Bang Theory,5.36-12.73,s10e04_seg02_clip_10,His socks. 14164,He needs Castle to go with him and he takes him as a hostage. ,Something isn't wrong. ,Something is wrong and he knows why. ,He isn't sure what's going on but he needs Beckett to go with him. ,Something's wrong and he doesn't know why. ,4,What are Gage's survival skills telling him when he is talking to Beckett in the van?,136203,Castle,1.76-6.16,castle_s04e16_seg02_clip_14,Something's wrong and he doesn't know why. 14165,Cristina kisses Burke.,Cristina looks up at Burke and closes her eyes.,Cristina looks out the window.,Cristina dances with Meredith.,Cristina screams at Alex.,1,What does Cristina do when she asks Burke if she can have sex with someone else?,136204,Grey's Anatomy,2.74-4.57,grey_s02e06_seg02_clip_11,Cristina looks up at Burke and closes her eyes. 14166,wiping paint off of his face,fixing his gun,adjusting his gear,looking out of the door,nothing,3,What is Sheldon doing when everyone is discussing options?,136205,The Big Bang Theory,22.32-26.9,s02e16_seg01_clip_00,looking out of the door 14167,Chandler discovers he has two copies of the Annie soundtrack.,Chandler discovers he has two copies of the Rent soundtrack.,Chandler discovers he has two copies of the Sound of Music soundtrack.,Chandler discovers he has two copies of the Les Miserables soundtrack.,Chandler discovers he has two copies of the Hamilton soundtrack.,0,What does Chandler discover he has two copies of when sorting through CDs?,136206,Friends,16.17-26.24,friends_s08e17_seg02_clip_09,Chandler discovers he has two copies of the Annie soundtrack. 14168,Poison.,A fall down stairs.,The car accident.,A bar fight.,A beating from the last week.,4,Why did Cristina say the patient had a kidney bleed before she mentioned the accident?,136207,Grey's Anatomy,0-7.2,grey_s02e02_seg02_clip_08,A beating from the last week. 14169,Cuddy interrupts House's lecture.,Foreman interrupts House's lecture.,Taug interrupts House's lecture.,Foreman interrupts House's lecture.,Cameron interrupts House's lecture.,0,Who interrupts House's lecture after House talks about Buddy?,136208,House M.D.,58.44-77.76,house_s04e02_seg02_clip_00,Cuddy interrupts House's lecture. 14170,He goes from his chair to close the door.,He goes from his chair to look out the window,He goes from his chair to stand directly behind Castle/,He goes to sit in his chair.,He goes to stand by the coffee machine,2,Where does Slaughter move to after Castle answers the phone?,136209,Castle,35.38-42.01,castle_s08e06_seg02_clip_05,He goes from his chair to stand directly behind Castle/ 14171,from not using enough lotion,never washing her hands,from arthritis,from her days as a dishwasher,playing crummy guitar,4,How did Rachel say that Phoebe got callousy fingers when she was laying on the massage table?,136210,Friends,3.8-13.32,friends_s09e21_seg02_clip_16,playing crummy guitar 14172,A week.,Weeks.,Days.,Months.,Years.,1,How long did Cynthia say she knew something was wrong before she said her husband said it was stress? ,136211,Castle,52.45-60.28,castle_s04e03_seg02_clip_25,Weeks. 14173,Derek didn't offer George anything,Derek offered George a promotion,Derek offered George a handshake,Derek offered to tell others what George did,Derek offered his friendship to George,2,What did Derek offer George after he told him that he did the right thing?,136212,Grey's Anatomy,55.75-68.1,grey_s01e07_seg02_clip_19,Derek offered George a handshake 14174,Reading a newspaper,Taking a shower,Drinking a coffee,Looking out of the window,Eating cereal,4,What is Phoebe doing right after Monica is said something about going to sleep?,136213,Friends,28.06-35.49,friends_s03e22_seg02_clip_10,Eating cereal 14175,She gets a phone call,Rachel,She notices a stain on the floor,The baby in the room,Nothing distracts her,3,What distracts the woman when she's rummaging through her purse?,136214,Friends,10.89-19.53,friends_s09e08_seg02_clip_01,The baby in the room 14176,"""Let's go have ice cream, Katie.""","""Let's get the hell to a bar, Katie.""","""Let's go driving, Katie.""","""Let's go swimming, Katie.""","""Let's get the hell out of here, Katie.""",4,What does Beckett's dad say to her when they are at her mom's funeral reception?,136215,Castle,37.73-44.63,castle_s05e03_seg02_clip_26,"""Let's get the hell out of here, Katie.""" 14177,punch his face,knock him out,put a pie in his face,shake his hand,laugh with him,0,What did Leonard offer to do instead of opening the jar when Sheldon asked for help?,136216,The Big Bang Theory,37.83-42.8,s02e09_seg02_clip_12,punch his face 14178,Peg Leg Anoine,Hardy,Captain Spanky,Duke Luke,Crab Salad Jefferson,0,What was the name of the pirate Sheldon mentions after Penny tells Howard what the letter said?,136217,The Big Bang Theory,0.93-17.68,s06e19_seg02_clip_14,Peg Leg Anoine 14179,Slammed House into the wall.,Threw House to the floor.,Slammed House on a table.,Slammed House on a gurney. ,Swung a pole at House.,0,What did Zombie Chase do after he turned around?,136218,House M.D.,17.82-23.77,house_s07e15_seg02_clip_11,Slammed House into the wall. 14180,patient,Vending machine,table,wheelchair,water fountain,1,"What does Kutner and House walk past after Kutnet says ""Calcium's normal""?",136219,House M.D.,65.17-68.08,house_s04e13_seg02_clip_06,Vending machine 14181,He forgot his lunch.,The Department of Homeland Security caught him trying to buy uranium.,Raj made a joke at his expense.,Howard stole his seat at the table.,His tea is too cold.,1,Why is Sheldon in a bad mood when he sits down?,136220,The Big Bang Theory,0-14.29,s04e18_seg02_clip_16,The Department of Homeland Security caught him trying to buy uranium. 14182,To sit next to Raj on the sofa.,To sit next to Sheldon on the sofa.,To stand in the hall.,To stand by the front door.,To sit on the floor.,0,Where did Howard go after he got a jar out of the fridge?,136221,The Big Bang Theory,6.17-11.76,s01e15_seg02_clip_13,To sit next to Raj on the sofa. 14183,He was a fraud.,He stole something.,He framed someone.,He was behind the murders.,He ran over someone.,3,What does the Nurse say people would think when she is defending Heller?,136222,Castle,4.09-22.27,castle_s05e17_seg02_clip_24,He was behind the murders. 14184,At the hospital,In line at the grocery store,In his apartment,In his car,In the line of duty.,4,George and Alex are taking Pete towards the elevator when he tells him he got shot where?,136223,Grey's Anatomy,2.02-17.68,grey_s02e05_seg02_clip_04,In the line of duty. 14185,She shoved him down.,She hit his arm.,She slapped his butt.,She took his beer.,She slapped his face.,4,What did Rachel do to Joey after she told him he would die?,136224,Friends,42.11-49.13,friends_s07e03_seg02_clip_05,She slapped his face. 14186,Behind House,In front of House,Behind the computer,Near a couch,Behind the glass of a patient's room,0,Where was Cameron standing when they were reviewing the patient's microcytes?,136225,House M.D.,80.39-89.8,house_s03e02_seg02_clip_12,Behind House 14187,running,standing,walking,reading,sitting,4,What was Foreman doing before he started talking?,136226,House M.D.,17.21-26.05,house_s06e14_seg02_clip_20,sitting 14188,John Dean.,Johnny Doyle.,Jimmy Dean.,James Doyle.,Jimmy Doyle.,4,Who did Joe say was going to help them when he was discussing his plan with Vera?,136227,Castle,30.62-37.18,castle_s04e14_seg02_clip_14,Jimmy Doyle. 14189,Raj is talking about voyager the space probe.,Raj is talking about voyager the Star Trek tv show.,Raj is talking about voyager the race car.,Raj is talking about voyager the burger bar.,Raj is talking about voyager the the paranormal film.,0,Which voyager is Raj referring to when he confides in Sheldon about his fears?,136228,The Big Bang Theory,11.46-26.45,s08e06_seg02_clip_16,Raj is talking about voyager the space probe. 14190,Because Rachel is the singer.,Because Monica is the singer.,Because she is the singer.,Because Chandler is the singer.,Because Joey is the singer.,2,Why is Phoebe upset when the crowd loves Monica?,136229,Friends,10.24-16.01,friends_s09e13_seg02_clip_22,Because she is the singer. 14191,His phone,A drink,A cup of ice cream,His laptop,A menu,2,What was on the table in front of Sheldon when he was talking to Penny about why he always knocks before opening a door?,136230,The Big Bang Theory,2.62-11.34,s10e05_seg02_clip_13,A cup of ice cream 14192,Reading a magazine,Taking his medicine,Writing a note,Watching televsion,Getting dressed,1,What is house doing when discussing the tumor?,136231,House M.D.,66-74.72,house_s01e07_seg02_clip_06,Taking his medicine 14193,a cabinet,the wall,the bed,the counter,the door,2,What is Ross leaning on when Rachel asks Ross something?,136232,Friends,1.38-4.13,friends_s08e22_seg02_clip_07,the bed 14194,Unfortunate hair.,Adrienne Turner.,Missy Goldberg.,Chandler's and Ross's secret pact.,Playing in a band.,0,What does Chandler believe is the foundation of his friendship with Ross after Ross accuses Chandler of breaking the pact?,136233,Friends,20.96-34.25,friends_s10e11_seg02_clip_15,Unfortunate hair. 14195,Burke,Bailey,Derek,Richard,Sloan,0,Which doctor won the game of rock paper scissors when it was being played?,136234,Grey's Anatomy,42.72-55.86,grey_s03e24_seg02_clip_12,Burke 14196,A solid wall.,A tarp.,A window.,Sheets of plastic.,A curtain.,2,What was behind the bound woman when the criminal was in her face?,136235,Castle,9.84-14.32,castle_s02e18_seg02_clip_20,A window. 14197,Charles,Mike,Kyle,David,William,3,Who was Phoebe talking to after the scene with Ross and Monica?,136236,Friends,53.12-60.03,friends_s07e11_seg02_clip_17,David 14198,A bottle of wine.,Her new boyfriend.,The television.,A waitress.,Shamrocks.,4,What does Cindy stand in front of before leaving with Ted?,136237,How I Met You Mother,26.4-34.82,met_s06e01_seg02_clip_11,Shamrocks. 14199,He did research. ,He knows from experience. ,He learned it from Ryan. ,He learned it from his mom. ,He learned it from his ex. ,0,How does Castle know about adult role playing when he is talking with Beckett?,136238,Castle,75.77-81.25,castle_s04e17_seg02_clip_03,He did research. 14200,Joey interrupts and gives the answer before Mike can respond.,Joey holds up 6 fingers behind Phoebe's back.,Joey traces the number seven in the air.,Joey points to the number 7 on the front of the menu.,Joey mouths the word 'seven'.,1,What does Joey do when Phoebe asks Mike how many sisters Joey has?,136239,Friends,43.26-46.68,friends_s09e03_seg02_clip_12,Joey holds up 6 fingers behind Phoebe's back. 14201,reading a book ,eating ,hugging,sleeping ,painting ,2,What are Lilly and Marshall doing when they are in bed? ,136240,How I Met You Mother,46.27-53.39,met_s02e13_seg02_clip_13,hugging 14202,House,Taub,a naked woman,Tubbs,a dog,1,Who is already in the locker room when Masters walks in?,136241,House M.D.,26.11-33.76,house_s07e06_seg02_clip_25,Taub 14203,Amber,Josh,Will ,Grant,Amy ,0,What was one of the people that House was hallucinating when he said he not ok? ,136242,House M.D.,0-2.16,house_s05e24_seg02_clip_25,Amber 14204,That he is dating one woman. ,That he is dating three women. ,That he is dating two women. ,That he is a scientist. ,That he is smart. ,2,What does Raj say is the only cool thing about himself when he is speaking with Emily?,136243,The Big Bang Theory,46.22-49.82,s07e19_seg02_clip_15,That he is dating two women. 14205,She pushed him off the roof.,She poisoned him.,She kicked him in the crotch.,She ran him over with a car.,She shot him.,4,What did Mrs. Linden do when she caused Samuel to go to the hospital?,136244,Grey's Anatomy,33.76-43.66,grey_s02e04_seg02_clip_12,She shot him. 14206,What the man's name was,Who killed him,If he can be revived,What he was hit with,If Lanie is free for lunch on Saturday,3,What does Alexis want to know after she sees the full extent of the wound on the body?,136245,Castle,25.66-40.06,castle_s07e21_seg02_clip_08,What he was hit with 14207,She gives Meredith the IV.,She gives George the IV.,She leaves immediately.,She tells her to mind her own business.,She gives Meredith a shot.,0,What did Izzie do after Meredith asked her what kind of mood Addison was in?,136246,Grey's Anatomy,39.34-53.76,grey_s02e06_seg02_clip_03,She gives Meredith the IV. 14208,They were talking over the phone.,She was standing in front of him.,She was standing behind him.,She was sitting next to him.,She was sitting behind him.,1,Where was Izzie after she started talking to George?,136247,Grey's Anatomy,14-25.01,grey_s03e24_seg02_clip_20,She was standing in front of him. 14209,Cuddy needs help getting something from the top of the cabinet in her office.,Cuddy needs Foreman to wash her leggings.,Cuddy needs Foreman to iron her shirts.,Cuddy needs help moving furniture.,Cuddy needs Foreman to get her some coffee.,2,"Why does Cuddy need Foreman, according to House, after House and Thirteen come into the room with Foreman and the patient sitting up in bed?",136248,House M.D.,55.04-90.22,house_s04e05_seg02_clip_20,Cuddy needs Foreman to iron her shirts. 14210,House informed Cuddy that her UV activated eyeglasses were a smokescreen.,House said that he knew Cuddy's new cigar interest was a smokescreen.,House told Cuddy that he knew that her cleavage was a smokescreen.,House told Cuddy that her firefighter boyfriend's text to him was a smokescreen.,House said to Cuddy that her very red lipstick was just a smokescreen.,2,"When House was in Cuddy's office talking about a pain prescription, after that, what did House say he knew was a smokescreen?",136249,House M.D.,2.22-4.44,house_s03e08_seg02_clip_18,House told Cuddy that he knew that her cleavage was a smokescreen. 14211,black,red,gray,orange,blue,1,what color t-shirt is leonard wearing when talking to the group,136250,The Big Bang Theory,28.85-33.19,s02e22_seg01_clip_00,red 14212,Monica,Ross,Chandler,Russel Crowe,Rachel,3,Who did Rachel mention before Phoebe talked about Monica's soul mate?,136251,Friends,14.73-21.45,friends_s08e16_seg02_clip_00,Russel Crowe 14213,The patient is on th floor,The patient is on the bed,The patient is not in the room,The patient is in the restroom,The patient is on a chair,0,Where is the patient when house is with him in the patient room?,136252,House M.D.,0-2.4,house_s02e06_seg02_clip_23,The patient is on th floor 14214,the moon,earth,mars,Jupiter,International Space station,4,Where was the space shuttle docking when Howard and his friends were at the comic book store?,136253,The Big Bang Theory,26.05-34.73,s02e22_seg01_clip_00,International Space station 14215,Physics Bowl,Math quizz,Science quizz,Star Wars game,Star Trek game,0,"What were Howard, Leonard, Raj and Sheldon practicing when Penny was drilling them? ",136254,The Big Bang Theory,18.25-29.5,s01e13_seg02_clip_01,Physics Bowl 14216,Her neck,Her wrist,Her shirt,Her sweater,Her hair,1,What does Rachel give Mindy to smell when they're talking on the couch?,136255,Friends,38.3-47.21,friends_s01e20_seg02_clip_14,Her wrist 14217,Beckett says Horn was worried his opponent would use his family history to blackmail him.,Beckett says Horn was worried his team would lose the election.,Beckett says Horn was worried the campaign would find out about the blackmail payments.,Beckett says Horn was worried his opponent would ruin his campaign.,Beckett says Horn was worried his campaign would discover he's been having an affair.,2,What does Beckett say Horn was worried about when talking to Castle in the car?,136256,Castle,27.01-30.61,castle_s01e03_seg02_clip_16,Beckett says Horn was worried the campaign would find out about the blackmail payments. 14218,Eating Snacks,Playing video games,Watching Television,Making a Phone Call,Writing in a Book,4,What is Sheldon doing when he is talking to Leonard?,136257,The Big Bang Theory,0-23.08,s05e10_seg02_clip_02,Writing in a Book 14219,playing the piano,listening to music,dancing with his cane,self medicating,talking with a patient,0,What was House doing when Wilson walked into the hospital room,136258,House M.D.,16.17-26.51,house_s03e15_seg02_clip_08,playing the piano 14220,a donut,a cup of coffee,a bar towel,papers,keys,2,What was Rachel holding when she was talking to Ross from the bar?,136259,Friends,12.49-14.57,friends_s02e07_seg02_clip_18,a bar towel 14221,a hard drive,a check,cash,a flash drive,a computer ,3,What did Layla give to her friend Ana when they met? ,136260,Castle,38.82-52.81,castle_s07e12_seg02_clip_13,a flash drive 14222,He saved Joey from a scam artist.,He says he made good friends with Joey,Him and Joey started a business together,He saved Joey from getting hit by a car,He says he punched Joey and knocked him out,4,What does Marshall say he did to Joey when he was talking to Joey?,136261,How I Met You Mother,21.88-32.97,met_s02e01_seg02_clip_14,He says he punched Joey and knocked him out 14223,At a restaurant,At a bar,At a cafe,At a table,At a game,1,Where are Wilson and House sitting after House has done some stupid things?,136262,House M.D.,63.38-78.45,house_s07e16_seg02_clip_12,At a bar 14224,A monitor ,a rifle ,a file folder ,a masked man ,a picture ,0,What is behind Beckett when she is in the van after running from the apartment?,136263,Castle,62.58-65.8,castle_s04e16_seg02_clip_13,A monitor 14225,George apologized for getting poor grades.,George apologized for hitting his father.,George apologized for staying out late.,George apologized for lying.,George apologized for hitting his mom.,3,Why did George apologize to his father after confessing the truth?,136264,Grey's Anatomy,62.43-74.68,grey_s03e12_seg02_clip_16,George apologized for lying. 14226,She texted a friend.,She sat down.,She stood up.,She took her pills.,She dropped her paper and pen on the table,4,What did cameron do after she asked something about coughing?,136265,House M.D.,21.78-30.4,house_s02e07_seg02_clip_06,She dropped her paper and pen on the table 14227,They had to put an oxygen mask on Tucker,They had to do an emergency cat scan,Wilson ran in with an EKG machine,They ended up discharging Tucker,Tucker needed his leg amputated in emergency surgery,0,What happened after Melissa finally entered the room?,136266,House M.D.,65.62-73.31,house_s06e09_seg02_clip_05,They had to put an oxygen mask on Tucker 14228,he was using a tablet ,he was using a laptop,he was using a beeper,He was using his cellphone,he wasn't using anything,3,What was Ryan using when he was relaying to Montgomery at the crime scene?,136267,Castle,8.6-18.5,castle_s03e06_seg02_clip_14,He was using his cellphone 14229,Pointed to something.,Did sign language.,Typed it on a computer.,Wrote it on a board.,Blinked his eyes.,3,How did Gabriel communicate to the doctors when he had a question for them?,136268,House M.D.,18.88-22.57,house_s01e13_seg02_clip_10,Wrote it on a board. 14230,Do we have a baby name yet?,He said what is the baby's name.,He said where are you going?,"He said, what is the matter?","He said, what's wrong?",0,What did Chandler say when Faith walked through the door?,136269,Friends,36.31-39.67,friends_s04e18_seg02_clip_01,Do we have a baby name yet? 14231,Castle is afraid of the dark,She doesn't want Castle to follow her at all.,Castle is supposed to stay outside,She is a cop with a gun,Kate is hoping to apprehend luca without any help.,3,Why does Kate enter the room first when she and Castle enter the tile business?,136270,Castle,67.5-79.28,castle_s07e10_seg02_clip_21,She is a cop with a gun 14232,Enver Kotta.,Tory Ellis.,Brett Zaretsky.,Carter Wexland. ,Ross De Koning. ,2,Who does Ryan say represents Tommy Fulton after saying that they also do contract work at a festival?,136271,Castle,3.15-10.35,castle_s06e21_seg02_clip_22,Brett Zaretsky. 14233,El Salvador.,Costa Rica.,Balize.,Guatemala.,Nicaragua.,2,Where did Beckett say Gregs-Baker was based out of after she and Castle talked to the Tory?,136272,Castle,69.23-73.76,castle_s06e09_seg02_clip_03,Balize. 14234,House was playing with a piece of string.,House was playing with paperclips.,House was playing with a pen.,House was playing with a handheld game.,House was playing with a calculator.,0,What was House playing with when he was sitting in his chair?,136273,House M.D.,51.63-56.88,house_s04e01_seg02_clip_25,House was playing with a piece of string. 14235,Dartboard,Poster,Nothing,Drawing,Wreathe,2,What was on the door behind Joey when he was trying to convince Erica he wasn't Drake,136274,Friends,33.67-41.15,friends_s02e12-13_seg02_clip_16,Nothing 14236,The Hostess.,The waitress.,Phoebe.,The busboy.,The waiter.,4,Who does Chandler say he thinks will sneeze on his fish after trying to be funny?,136275,Friends,45.23-56.79,friends_s02e05_seg02_clip_07,The waiter. 14237,A drink.,A phone.,Plastic silverware.,A book.,A uniform.,3,What does Sheldon have underneath his arm when he passes the group with his lunch?,136276,The Big Bang Theory,37.53-46.84,s01e13_seg02_clip_06,A book. 14238,House,Cameron,Chase,Doug,Harvey,1,Who walks up to the table when the doctors tell Maggie to open her eyes?,136277,House M.D.,14.14-30.81,house_s04e10_seg02_clip_15,Cameron 14239,George's father hugs George.,George's father hugs Alex.,George's father dances with Alex.,George's father hugs Izzie.,George's father widens his eyes in pride.,4,What does George's dad do after Cristina says he raised a good person?,136278,Grey's Anatomy,4.43-7.52,grey_s03e08_seg02_clip_25,George's father widens his eyes in pride. 14240,He dances.,He jumps out of the car.,He glares at Howard.,He steals his kite back.,He hits Sheldon. ,2,What does Raj do after Sheldon brags about having his kite?,136279,The Big Bang Theory,28.23-35.59,s03e06_seg02_clip_02,He glares at Howard. 14241,Two men grab Hunt,He got arrested ,The security closed the door,Another woman walked in,A man walked in with a gun,1,What happen after Wyndham called security?,136280,Castle,35.84-42.84,castle_s04e20_seg02_clip_25,He got arrested 14242,They are wearing suntan lotion,They are wearing fake mustaches,They are wearing war paint,They are wearing ape masks,They are wearing women's makeup,3,What are the guys wearing on their faces when Penny calls,136281,The Big Bang Theory,0-17.37,s01e11_seg02_clip_09,They are wearing ape masks 14243,A scarf cut her button.,A pair of scissors cut Cameron's button.,A zipper cut her button.,A knife cut Cameron's button.,A monkey cut her button.,3,What cuts Cameron's button when House is talking to his patient about a operation?,136282,House M.D.,58.31-61.43,house_s02e24_seg02_clip_22,A knife cut Cameron's button. 14244,He got on his laptop.,He threw the paper away.,He looked at the monitor.,He opened the desk drawer.,He crumpled up the paper.,2,What did Castle do after he wrote down three numbers?,136283,Castle,3.19-7.28,castle_s03e20_seg02_clip_18,He looked at the monitor. 14245,Leonard is holding a piece of toast.,Leonard is holding a K-cup.,Leonard is holding a bottle of water.,Leonard is holding a tea bag.,Leonard is holding a bowl.,3,What is Leonard holding when talking to Penny at the kitchen island?,136284,The Big Bang Theory,0-2.4,s06e08_seg02_clip_01,Leonard is holding a tea bag. 14246,They are both on the couch. ,They are both in the car. ,They are both sitting at a desk. ,They are sitting in a booth. ,They are sitting on the floor. ,0,Where is Ryan when he questioning Eric?,136285,Castle,19.33-21.63,castle_s05e21_seg02_clip_16,They are both on the couch. 14247,A computer,A framed photograph,A trashcan,A vending machine,A sign,3,What is behind Leslie when she's talking to Leonard about intercourse?,136286,The Big Bang Theory,51.27-61.04,s01e13_seg02_clip_07,A vending machine 14248,blue,white,grey,Blak,red,3,"What color is Howard's shirt when he say's ""Space i beautiful...""?",136287,The Big Bang Theory,0-9.92,s06e02_seg02_clip_13,Blak 14249,The crime scene.,The police station.,An elevator.,A coffee shop.,Her living room.,1,Where was Gates when she was talking on the phone with Ryan?,136288,Castle,37.9-45.48,castle_s07e14_seg02_clip_13,The police station. 14250,Sheldon asked Penny and Leonard to sing him a song.,Sheldon asked Penny and Leonard to tell him about the news.,Sheldon asked Penny and Leonard to tell him about the weather.,Sheldon asked Penny and Leonard to inform Amy how much they enjoy adhering to strict bathroom rules.,Sheldon asked Penny and Leonard to make him food.,3,What did Sheldon ask Penny and Leonard to tell Amy when he busted into the room?,136289,The Big Bang Theory,0-8.55,s10e05_seg01_clip_01,Sheldon asked Penny and Leonard to inform Amy how much they enjoy adhering to strict bathroom rules. 14251,On the floor.,On the bed.,On the couch.,In the chair by the fireplace.,On the coffee table.,2,Where was Castle sitting when Alexis walked into the room?,136290,Castle,43.95-87.02,castle_s04e22_seg02_clip_26,On the couch. 14252,He fainted,He cried,He laughed,He screamed,He trembled,3,How did the patient reacted when he was in pain? ,136291,House M.D.,21.57-25.8,house_s01e21_seg02_clip_19,He screamed 14253,He got angry,He laughed loudly,He screamed,He moved around,He fell asleep,3,How did Jeff react after House gave him an injection?,136292,House M.D.,5.5-26.01,house_s02e06_seg02_clip_22,He moved around 14254,Jumps up and down.,Dumps a cup of coffee.,Looks at a book.,Throws something away.,Washes his hands.,3,When Chase gets up from the table after talking to Foreman what does he do?,136293,House M.D.,42.31-56.72,house_s02e19_seg02_clip_15,Throws something away. 14255,Esposito.,Beckett and Tom Dempsey.,Ryan.,A blonde girl.,A dead body.,1,Who is Castle looking at when the scene starts?,136294,Castle,0-8.95,castle_s04e14_seg02_clip_05,Beckett and Tom Dempsey. 14256,She said it was 10:00.,She said it was 9:00.,She said it was 8:00.,She said it was 11:00.,She said it was 9:30.,1, What time did Beckett say it was when she looked down at her watch?,136295,Castle,34.78-40.36,castle_s02e17_seg02_clip_13,She said it was 9:00. 14257,810,702,A4,306,603,3,What was the number on the door behind Howard when he was talking to Stuart?,136296,The Big Bang Theory,2.76-10.12,s08e01_seg02_clip_15,306 14258,Watching a movie,Playing cards,Having a drink,dancing ,Playing dress up,2,"What was Penny, Amy and Bernadette when they was in Seldon apartment?",136297,The Big Bang Theory,0-65.36,s10e13_seg02_clip_00,Having a drink 14259,Barney kicked Ted in the nuts.,Barney kicked Ted's butt.,Barney kicked Ted's legs.,Barney kicked Ted's stomach.,Barney kicked Ted's left hand.,0,Where did Barney kick Ted when he wanted to make Marshall laugh?,136298,How I Met You Mother,25.97-28.33,met_s06e14_seg02_clip_14,Barney kicked Ted in the nuts. 14260,A scapel,A pen,a chocolate bar,a pizza,a drumstick,0,What is Chase flipping in his hand in when he is talking?,136299,House M.D.,0-8.8,house_s08e20_seg02_clip_05,A scapel 14261,Blue,Red,Green,Orange,Yellow,1,"What color is the saw blade on Sheldon's bot when he, Raj and Leonard are in the lab with Kripke and his bot?",136300,The Big Bang Theory,39.81-43.87,s02e12_seg02_clip_14,Red 14262,get more sprite,put a cherry in it,put pineapple in it,get more alcohol,get an umbrella,4,What did Sheldon ask Penny to do when he wanted a drink?,136301,The Big Bang Theory,49.45-57.17,s04e17_seg02_clip_02,get an umbrella 14263,To monitor the safety of Carol and Timmy.,To see if Carol and Ike had left the house.,To see if Carol and Timmy had left the house.,To see if Timmy was left home alone.,To see if Ike had left the house.,2,Why did Beckett call the surveillance team when Esposito is going to Carol?,136302,Castle,67.43-74.38,castle_s02e21_seg02_clip_17,To see if Carol and Timmy had left the house. 14264,A pillow,A football,A hockey stick,The phone,A shoe,3,What does Joey toss to Chandler when Chandler is sitting on a stool at the counter?,136303,Friends,12.97-17.29,friends_s01e15_seg02_clip_13,The phone 14265,upset,happy,peaceful,bored,tired,0,How did Howard feel when he realized it was Penny coming to see him?,136304,The Big Bang Theory,46.49-59.61,s02e12_seg02_clip_08,upset 14266,Monica is at the restaurant.,Monica is at her apartment.,Monica is at the coffee house.,Monica is on the train.,Monica is at a movie.,2,Where is Monica when Phoebe is talking to her?,136305,Friends,0-8.64,friends_s09e17_seg02_clip_02,Monica is at the coffee house. 14267,Beckett thought it was weird that they hadn't talked to Otis Williams.,Beckett thought it was weird that he brought her coffee.,Beckett thought it was weird that the Addison's contributed to the DA's campaign.,Beckett thought it was weird that Castle did some research.,They agreed on something.,4,Why did Beckett tell Castle something was weird before she took a coffee mug from him?,136306,Castle,0-8.9,castle_s03e19_seg02_clip_18,They agreed on something. 14268,Sheldon assumed his relationship with his mom on the same trajectory.,Sheldon assumed his relationship with Amy would continue on the same trajectory.,Sheldon assumed his friendship with Leonard on the same trajectory.,Sheldon assumed his career would continue on the same trajectory.,Sheldon assumed his tenure at Yale would continue on the same trajectory.,3,What did Sheldon assume would continue on the same upward trajectory when talking to Raj?,136307,The Big Bang Theory,0-15.87,s08e06_seg02_clip_16,Sheldon assumed his career would continue on the same trajectory. 14269,Great,Awesome,Wonderful,Awful,Stupid,2,What did Diana say House had been after exiting the room?,136308,House M.D.,42.81-47.61,house_s06e08_seg02_clip_07,Wonderful 14270,A glass of wine.,A menu.,A glass of water.,A cup of coffee.,His napkin.,2,What does Mr. Green have in his hand before he asks what kind of person is allergic to lobster?,136309,Friends,27.1-33.41,friends_s03e07_seg02_clip_08,A glass of water. 14271,Sickness,Message,Doorbell,Call,Emotions,3,Why does the lady excuse herself before walking away from the couple?,136310,Castle,47.85-60.74,castle_s06e14_seg02_clip_17,Call 14272,A cup,A knife,A gun,A plate,A paper,4,What did Castle have in his hand when he arrived at the table of people? ,136311,Castle,43.25-48.89,castle_s08e14_seg02_clip_05,A paper 14273,microscope,magazine,book,texts,webpage,0,What is Dr Taub looking thru just before house walks in?,136312,House M.D.,0-9.3,house_s04e10_seg02_clip_24,microscope 14274,Ryan thought Dave stabbed Gabriel.,Ryan thought Dave argued with Gabriel.,Ryan thought Dave strangled Gabriel.,Ryan thought Dave shot Gabriel with a shotgun.,Ryan thought Dave kicked Gabriel.,0,What did Ryan think Dave did to Gabriel before Dave lost Gabriel in a storm?,136313,Castle,52.19-53.96,castle_s08e21_seg02_clip_03,Ryan thought Dave stabbed Gabriel. 14275,The patient said so on tape,The patient records everything,Cameron says it,The Doctors all say so,House does not like recordings,1,Why does House think the patient is losing his memory after he finds recordings?,136314,House M.D.,41.88-46.53,house_s03e03_seg02_clip_09,The patient records everything 14276,She had a falling out with Foreman,House abused her,She had a mental breakdown,She committed homicide,House fired her husband,4,What caused Cameron to leave the team before they had this conversation?,136315,House M.D.,0-41.31,house_s06e07_seg02_clip_07,House fired her husband 14277,Monica is upset because Rachel's ring really belongs to her.,Monica is upset because Rachel stole her idea when she had the ring made.,Monica is upset because Rachel's boyfriend first offered the ring to her.,Monica is upset because the ring belongs to her mother.,Monica is upset because Rachel went into Monica's things and took it.,0,Why is Monica upset when Rachel shows off her ring?,136316,Friends,11.02-17.12,friends_s04e05_seg02_clip_19,Monica is upset because Rachel's ring really belongs to her. 14278,Emma,Ross,Joey,Chandler,Monica ,0,Who was Rachel talking about when she was talking to Pheobe?,136317,Friends,0-13.45,friends_s10e09_seg02_clip_06,Emma 14279,On an elevator,Through revolving doors,Through a tunnel,Through sliding doors,On horseback,3,How do Beckett and Castle enter when they go to interview the suspects,136318,Castle,56.98-59.24,castle_s05e06_seg02_clip_21,Through sliding doors 14280,white,yellow,green,pink,purple,1,What color mug is on the table in front of Monica when she is sitting on the couch?,136319,Friends,50.96-58.59,friends_s09e15_seg02_clip_11,yellow 14281,Wilson,an x-ray machine,House,Cuddy,a pillow,4,What is behind Moira's head when Chase says something about Mary Knoller?,136320,House M.D.,11.25-20.26,house_s08e12_seg02_clip_21,a pillow 14282,Marshall gave Ted the keys to the truck so that he would be able to drive away.,Marshall gave Ted a beer.,Marshall gave Ted his sword.,Marshall gave Ted a movie to watch at his new place.,Marshall gave Ted some money to help with the moving expenses.,2,What did Marshall give Ted after Ted said that he was almost done?,136321,How I Met You Mother,18-26.55,met_s02e18_seg02_clip_00,Marshall gave Ted his sword. 14283,sleeping,Eating a sandwich,Watching tv,Looking through the fridge,Reading a piece of paper,4,What is Joey doing when Chandler and Phoebe are talking?,136322,Friends,2.17-8.99,friends_s03e12_seg02_clip_08,Reading a piece of paper 14284,anya mussy,ann mishkin,annie mishkin,anya mushin,Anya mishkin,4,Who did ryan find after scrubbing traffic cam footage?,136323,Castle,20-27.72,castle_s08e11_seg02_clip_23,Anya mishkin 14285,Shledon,Mrs Wolowitz,Mike,Raj,Penny,2,Who spoke right before Mrs Wolowitz yelled?,136324,The Big Bang Theory,36-49.43,s07e09_seg02_clip_13,Mike 14286,Ryan,Esposito,Beckett,Montgomery,Gates,2,Who else agrees to stay with Brandon after Castle decides to stay?,136325,Castle,20.25-37.73,castle_s08e12_seg02_clip_23,Beckett 14287,Chandler was grateful.,Chandler didn't want to take the big white dog as a gift.,Chandler was unhappy about Joey giving him the big white dog.,Chandler paid for the big white dog.,Chandler was disappointed about the big white dog.,1,What is Chandler's reaction when Joey gives him the big white dog?,136326,Friends,14.02-23.9,friends_s06e06_seg02_clip_17,Chandler didn't want to take the big white dog as a gift. 14288,Marshal sent to sit in a center row seat.,Marshall went to the bathroom.,Marshall went to sit with the panelists.,Marshall went to sit in a back row seat.,Marshall went to sit in a front row seat.,4,Where did Marshall go after he left the stage?,136327,How I Met You Mother,0-7.96,met_s06e23_seg01_clip_01,Marshall went to sit in a front row seat. 14289,Makes the patient drink it,Makes Cuddy drink it,Makes Cameron drink it,Makes Foreman drink it,Makes Wilson drink it,0,What does House do with the alcohol after he pours a drink?,136328,House M.D.,0-11.27,house_s02e01_seg02_clip_14,Makes the patient drink it 14290,Two. ,Three. ,One. ,Four. ,Zero. ,2,How many people are in the interview room before Beckett and Castle enter? ,136329,Castle,22.47-29.22,castle_s04e03_seg02_clip_24,One. 14291,he was in the shower ,he was sitting on the sofa,he was on the bed,he was on the stove ,he was on his face,1,Where was Joey before he began to talk?,136330,Friends,0-7.85,friends_s03e15_seg02_clip_06,he was sitting on the sofa 14292,An ice bucket with champagne in it.,A can of beer with the label torn off.,A t-shirt he grabbed from the floor.,An orange he pulled from his pocket.,An empty coffee cup.,0,What did Joey place between his legs after Rachel stood up?,136331,Friends,33.61-43.41,friends_s10e03_seg02_clip_22,An ice bucket with champagne in it. 14293,Buying a house,Getting money,Throwing a party,Going out to dinner,Spending all the money on their wedding,4,What is Chandler opposed to when talking to Monica,136332,Friends,0-8.78,friends_s07e02_seg02_clip_14,Spending all the money on their wedding 14294,She slaps magazine on her stomach.,She slaps a belt on her stomach.,She slaps an envelope on her stomach.,She slaps a glove on her stomach.,She slaps a piece of paper on her stomach.,4,What does the blonde actress in the movie slap on the stomach of the brunette actress after they're done talking?,136333,Castle,61.42-64.63,castle_s05e14_seg02_clip_11,She slaps a piece of paper on her stomach. 14295,Sheldon's sister,Raj,Howard,Bernadette,Penny,4,Who joins Leonard and Sheldon on the couch after entering the apartment?,136334,The Big Bang Theory,17.54-23.39,s03e03_seg02_clip_11,Penny 14296,sexy,cute,childish,tiring,irritating,2,What did Bernadette call Howard when he was trying to make Raj jealous?,136335,The Big Bang Theory,38.29-47.56,s08e21_seg02_clip_03,childish 14297,Her hat.,Her lab coat. ,Her stethoscope. ,Her eyeglasses. ,Her earrings. ,3,What does Cameron remove when she is talking to Dr. House? ,136336,House M.D.,15.3-22.06,house_s02e04_seg02_clip_01,Her eyeglasses. 14298,Rachel asked him to eat it all.,Ross didn't want to share with Rachel.,Joey dared him to eat it all.,So Rachel wouldn't try it and know it tasted bad.,Ross thought it tasted good.,3,Why did Ross eat the whole dessert after Monica left the table?,136337,Friends,7.75-24.5,friends_s06e09_seg02_clip_17,So Rachel wouldn't try it and know it tasted bad. 14299,She is having flash backs. ,She is crying. ,She is laughing. ,She is hallucinating. ,She is pacing. ,4,What is Saya doing when she is talking to Beckett about her family's history?,136338,Castle,8-16,castle_s06e18_seg02_clip_23,She is pacing. 14300,Wilson brought Eve a make up manniquin,Wilson brought Eve a Little Pony toy,Wilson brought Eve miniature princess,Wilson brought Eve a stuffed animal,Wilson brought Eve a my pretty nail kit,3,What did Wilson bring Eve when she needed to be cheered up,136339,House M.D.,60.3-75.26,house_s07e07_seg02_clip_13,Wilson brought Eve a stuffed animal 14301,They are at a coffee shop ,They are at a laundromat. ,They are at a concert.,They are at a book store.,They are at a library. ,0,Where are Raj and Sheldon when they are trying to get Raj a woman?,136340,The Big Bang Theory,1.22-7.32,s04e22_seg02_clip_13,They are at a coffee shop 14302,H&M,Ralph Lauren,Abercrombie & Fitch,Central Perk,Starbucks,1,Where Does Rachel reveal as her place of employment after Phoebe enters the room?,136341,Friends,5.61-9.75,friends_s06e13_seg02_clip_10,Ralph Lauren 14303,Wilson looked for a new hospital to work for.,Wilson looked for a house to buy.,Wilson called for apartments and set up interviews.,Wilson bought a new car.,Wilson bought a plane ticket.,2,What did Wilson say he did after he thought he was going to follow Sam to Baltimore? ,136342,House M.D.,44.51-47.63,house_s06e18_seg02_clip_13,Wilson called for apartments and set up interviews. 14304,He says she is wanted nowhere because she lost.,He says she is wanted in the winner's area.,He says she is wanted where all little kids die.,He says she is wanted in losing area.,He says she is wanted where all good things die.,3,"Where does House tell Amber she is wanted when he calls her a manipulating, female dog?",136343,House M.D.,45.01-55.36,house_s04e09_seg02_clip_07,He says she is wanted in losing area. 14305,The left leg.,The heart.,The lungs.,The right arm.,The brain.,4,Where does the infection spread after the heart of the patient is restarted?,136344,House M.D.,32.13-37.64,house_s04e16_seg02_clip_12,The brain. 14306,Bernadette,The moving guys,Sheldon's neighbors,Sheldon and Leonard,The building superintendent,3,Who was pulling the time machine from the top of the stairs when Penny walked out of her apartment?,136345,The Big Bang Theory,38.17-42.87,s01e14_seg02_clip_01,Sheldon and Leonard 14307,Freak out,Talk to Chandler,Dance,Walk,Get out,4,What can't Monica do when Chandler breaks the key?,136346,Friends,5.36-12.5,friends_s06e01_seg02_clip_19,Get out 14308,A box full of all the things from his desk.,A chicken.,A dog.,A very thick book.,A document for him to sign.,0,What is Marshall holding when Ted comes downstairs to talk to him?,136347,How I Met You Mother,50.24-58.93,met_s03e15_seg02_clip_07,A box full of all the things from his desk. 14309,Anna Smithers,Annika Smith,Annika Smythe,Ann Smite,Anna KaSmythe,2,Whose picture does Esposito point out after he and Beckett get to the board?,136348,Castle,36.09-43.3,castle_s08e07_seg02_clip_09,Annika Smythe 14310,Variety,New York Daily Mail,New York Magazine,Paper Magazine,Vogue,2,What magazine was Phoebe reading when she scooted next to Ross to show him an article?,136349,Friends,36.41-44.05,friends_s08e10_seg02_clip_01,New York Magazine 14311,Because he wanted to ridicule Leonard,Because it is an offensive term,Because he was trying to sound sophisticated,Because he wanted to offend Leonard,Because he doesn't like Indians,1,Why did Sheldon say Indian burns were insensitively named after Leonard told him to call it off,136350,The Big Bang Theory,0-26.37,s02e12_seg02_clip_14,Because it is an offensive term 14312,He says his nipples can cut glass.,He doesn't look weird.,Joey doesn't tell him to close the window.,He thinks fairy's are flying in through the windows.,He thinks people are watching him through the window.,0,Why does Chandler look weird after Joey tells him to close the window?,136351,Friends,40.13-50.23,friends_s03e17_seg02_clip_02,He says his nipples can cut glass. 14313,Sydney had a breakdown.,Sydney was harming herself.,Sydney was becoming addicted to painkillers.,Sydney was disturbing the other doctors.,Sydney was refusing to eat.,0,Why did the hospital give Sydney time off after she lost a kid in the hospital?,136352,Grey's Anatomy,20.96-22.75,grey_s03e07_seg02_clip_25,Sydney had a breakdown. 14314,She was busy with other patients.,She was working on a crossword puzzle.,She was filing.,She was on the phone.,She had to go to the bathroom.,1,"Why did the receptionist tell Leonard and Sheldon to ""hold on"" before she would help them?",136353,The Big Bang Theory,25.32-29.6,s01e01_seg01_clip_00,She was working on a crossword puzzle. 14315,Stroke.,Sepsis.,Transplant rejection.,CVA,COPD.,3,What did Dr. Burke say Denny died of when ask what the company line said he died of?,136354,Grey's Anatomy,75.17-81.51,grey_s03e05_seg02_clip_03,CVA 14316,It was Ross face on the baby.,The baby looked like him.,The baby peed on him.,He couldn't stop the baby crying.,The baby needed to be changed.,0,Why was joey making a face when he was looking at the baby? .,136355,Friends,28.82-43.57,friends_s08e14_seg02_clip_00,It was Ross face on the baby. 14317,A fart.,Sex with a loud girl.,A long fart.,He's an Alvin and The Chipmunks fan.,He's got a squeaky toy.,1,What does Ted's dad mean when he mentions a real squeaker?,136356,How I Met You Mother,24.76-42.53,met_s02e03_seg02_clip_19,Sex with a loud girl. 14318,Shopping bags.,A robot.,A new computer.,Comic books.,A video game system. ,0,What is in Leonard's hand when he walks in and asks what everyone thinks?,136357,The Big Bang Theory,0-3.72,s04e18_seg02_clip_01,Shopping bags. 14319,On his lap top,Texting,Sleeping,Watching a movie,Walking away,2,What is Ross doing when the girl is knocking on the window? ,136358,Friends,59.17-66.52,friends_s04e10_seg02_clip_15,Sleeping 14320,Beckett is leaning over a sink.,Beckett is leaning over a chair.,Beckett is leaning over a flower pot.,Beckett is leaning over a garbage can.,Beckett is leaning over a table.,4,What is Beckett leaning over when she is talking to a suspect about a girl?,136359,Castle,1.32-4.4,castle_s05e07_seg02_clip_15,Beckett is leaning over a table. 14321,He tells him he's quitting,He chides him,He says he's going to report him,He closes the door,He takes House's cane,3,What does Foreman do when he catches House playing with the piano in a room?,136360,House M.D.,86.91-96.03,house_s03e15_seg02_clip_15,He closes the door 14322,Blows his nose,Hits pause on the video,Answers his phone,Bangs his fist on the table,Tries to steal a vase,1,What does Stalkerazzi do right before Beckett asks him to leave the room?,136361,Castle,6.28-13.9,castle_s08e20_seg02_clip_10,Hits pause on the video 14323,Mr. Carbino said he is the killer.,Mr. Carbino said that 15 G's is not the amount to kill somebody.,Mr. Carbino said that he hired the killer.,Mr. Carbino said that the killer is dead now.,Mr. Carbino said that he is a professional killer.,1,What said Mr. Carbino when Beckett said that he threaten to kill somebody that is dead now?,136362,Castle,12.74-18.66,castle_s03e01_seg02_clip_15,Mr. Carbino said that 15 G's is not the amount to kill somebody. 14324,A book,A coffee mug,A purse,A guitar,A napkin,3,What is Phoebe holding when she is sitting by Ross?,136363,Friends,55.19-59.35,friends_s02e14_seg02_clip_06,A guitar 14325,Jerry.,Ted.,Robin,Lily.,Barney,3,Who was taking liquor before Marshall say Lawyer?,136364,How I Met You Mother,8.1-14.11,met_s06e14_seg02_clip_12,Lily. 14326,Taub told Foreman that House pulled it out of no where.,Taub told Foreman that isn't the final diagnosis. ,Taub told Foreman that the patient was misdiagnosed with diphtheria.,Taub told Foreman that diphtheria is the main diagnosis with many underlying health issues.,"Taub told Foreman he doesn't understand the diagnosis, because the patient had been vaccinated.",0,"How did Taub respond after Foreman asked, ""Diphtheria""?",136365,House M.D.,0-5.99,house_s08e08_seg02_clip_23,Taub told Foreman that House pulled it out of no where. 14327,she was embarressed,She was upset ,she was sad it took a long time,She was happy and wanted to hang out with him.,she was mad,3,How was Masters reaction when Lane woke up?,136366,House M.D.,48.85-88.02,house_s07e16_seg02_clip_21,She was happy and wanted to hang out with him. 14328,Davis Herner,Harry Davis,David Ferdinand,David Hernand,David Horner,3,Who did Ryan say was so angry that the vein in his head was throbbing when he was discussing an appeal of Francisco's decision with Castle?,136367,Castle,5.9-18.6,castle_s04e13_seg02_clip_02,David Hernand 14329,House ,Julia,Cameron,13,Wilson ,1,Who has Cuddy asked to be Rachel guardian after telling her she has three kids of her own? ,136368,House M.D.,53.84-63.04,house_s07e15_seg02_clip_06,Julia 14330,to bribe elise,To tell elise i love you,to silence elise,To give elise a heads up about coming clean,Richie didn't call,3,Why does castle think richie called elise before he died?,136369,Castle,57.84-65.58,castle_s07e19_seg02_clip_23,To give elise a heads up about coming clean 14331,Bernadette has allergies. ,Howard makes her sick. ,Howard brought a virus home with him. ,Bernadette is pregnant. ,Bernadette is getting sick. ,4,Why does Bernadette sneeze when she is with Howard?,136370,The Big Bang Theory,15.03-18.34,s06e04_seg02_clip_01,Bernadette is getting sick. 14332,Rachel throws a hissy fit so they won't leave her,Rachel blocks the door with a chair,Rachel asks Julie to tell them all about herself to prevent them from leaving,Rachel orders a pizza so they will stay to eat,Rachel pretends to be injured so that they will not leave,2,How does Rachel stop the group before they can leave for the night?,136371,Friends,38.07-59.03,friends_s02e04_seg02_clip_14,Rachel asks Julie to tell them all about herself to prevent them from leaving 14333,Talking on the phone,watching TV,Yelling at Raj,Drinking tea,Eating food,1,What was Penny doing on the couch before Leonard came in?,136372,The Big Bang Theory,3.9-8.7,s07e12_seg02_clip_10,watching TV 14334,She is with Leslie. ,She is with Penny. ,She is with Howard. ,She is with Amy. ,She is with Sheldon. ,4,Who is Bernadette with when she is in the car?,136373,The Big Bang Theory,0-10.8,s08e11_seg02_clip_03,She is with Sheldon. 14335,Izzie tries to send them to hematology,Izzie tries to send them home,Izzie tries to send them to another hospital,Izzie tries to send them to the waiting room,Izzie tries to send them to the ER,0,Where does Izzie try to send Dustin and Caroline when they tell her their daughter has leukemia?,136374,Grey's Anatomy,53.78-58.1,grey_s03e20_seg02_clip_03,Izzie tries to send them to hematology 14336,Sheldon says that Leonard's analogy is flawed.,Sheldon splashes water on Leonard's face.,Sheldon tells Leonard that his idea is interesting.,Sheldon gets up and walks away from Leonard.,Sheldon tells Leonard that sexual desires are nothing new for him.,3,What does Sheldon do after Leonard says something about sexual desires?,136375,The Big Bang Theory,21.57-31.37,s06e02_seg02_clip_08,Sheldon gets up and walks away from Leonard. 14337,To the movies.,To the zoo.,To work.,Into the kitchen.,Downstairs.,4,Where did Ted have to go when Marshall called?,136376,How I Met You Mother,26.67-34.74,met_s03e15_seg02_clip_07,Downstairs. 14338,orange,yellow,red,brown,purple,1,"What is the color of the neon light person's hair, when Marilyn is speaking?",136377,Castle,19.61-28.73,castle_s04e12_seg02_clip_08,yellow 14339,Because Monica told Phoebe and Joey that she wasn't cooking Christmas dinner that year.,Because she couldn't afford to buy a Christmas tree,Because a man dressed like Santa Claus walked by drinking a bottle of whiskey,Because Joey asked Phoebe to go get some rope for the tree,Because nobody wanted the dead brown tree that Phoebe was trying to sell,4,Why did Phoebe get upset after Monica came to pick out her Christmas tree,136378,Friends,34.57-50.5,friends_s03e10_seg02_clip_14,Because nobody wanted the dead brown tree that Phoebe was trying to sell 14340,He says that he thinks they should see other people.,He says that he has already made plans.,He says that he went to see a psychic.,He says that he needs closure from his ex-girlfriend.,He says he wants to hang out with the guys.,0,What was Chandler's response to Monica after she suggests they celebrate their anniversary?,136379,Friends,10.72-23.01,friends_s05e23-24_seg02_clip_02,He says that he thinks they should see other people. 14341,Because she found out that her dad had left her mom.,Because she got stood up for lunch that day,Because a man got a promotion over her at her place of employment.,Becuase her husband had just asked for a divorce.,Because her husband was in bed with the neighbor's dog walker,4,Why was Rachel mad at men when she walked into the coffee shop?,136380,Friends,25.97-43.09,friends_s06e15-16_seg02_clip_38,Because her husband was in bed with the neighbor's dog walker 14342,Castle does not want to be with Beckett.,Castle thinks Lee may have been a former convict.,Castle thinks Tyson still has connections to current prisoners.,Castle thinks Tyson began planning the crime while still in prison.,Castle thinks the shooter may have connected with Lee in prison.,4,Why does Castle want to go through four years' worth of prison records after he was invited to go to Chinatown?,136381,Castle,16.84-65.54,castle_s04e04_seg02_clip_11,Castle thinks the shooter may have connected with Lee in prison. 14343,Chandler was watching the fight. ,Ross was watching the fight. ,Monica was helping Ross cook. ,Ross cooked a turkey burger for Chandler. ,Ross cooked a veggie burger for Phoebe. ,3,What is Ross doing after Phoebe tells Ross to talk about something else?,136382,Friends,2.28-8.57,friends_s03e24_seg02_clip_12,Ross cooked a turkey burger for Chandler. 14344,Monica tells Ethan she is 27.,Monica tells Ethan she is 30.,Monica tells Ethan she is 25.,Monica tells Ethan she is 29.,Monica tells Ethan she is 35.,2,How old does Monica tell Ethan she is when lying in bed?,136383,Friends,0-9.86,friends_s01e22_seg02_clip_10,Monica tells Ethan she is 25. 14345,Try your best not to cry,If I were you I would be so pissed,I think you're handling it really well,Congratulations,"I wish I was in your position, you're so lucky!",2,What does Joey say about Rachel's scenario when they are talking?,136384,Friends,10.5-13.21,friends_s04e20_seg02_clip_08,I think you're handling it really well 14346,Damian's childhood friend was lost to violence,Damian's mother was lost to violence,Damian's girlfriend was lost to violence,Damian's sister was lost to violence,Damian's father was lost to violence,4,Who else is revealed as having been lost to violence after Esposito runs the background check on Damian?,136385,Castle,77.51-89.6,castle_s03e15_seg02_clip_05,Damian's father was lost to violence 14347,becasue she only bought one bag,because she ate it all,because she gave all the candy to a little girl ,because a kid haggled her out of all the candy,becasue she wanted to get rid of all the candy,2,Why did Rachel run out of candy after she told Moncia she needed more?,136386,Friends,2.07-9.44,friends_s08e06_seg02_clip_04,because she gave all the candy to a little girl 14348,6 summers he went out,3 summer he went out.,4 summers he went out,1 summer he went out.,2 summers he went out.,4,How long did Chandler go out with Julie Graff when he was dating her?,136387,Friends,29.3-47.29,friends_s07e06_seg02_clip_04,2 summers he went out. 14349,I don't know who these people are.,You're my son.,"Wow, that was along time ago.",Is this a picture of you?,Where did you get this?,1,What did Sam say after viewing the photograph?,136388,How I Met You Mother,28.37-40.56,met_s06e02_seg02_clip_11,You're my son. 14350,Right after Lily takes a shower,Right after Lily makes breakfast,Right after Lily gets sick,Right after Lily cries,Right after Lily smiles,2,When does Lily announce Ted's location when Robin and Barney are visiting her?,136389,How I Met You Mother,32.41-45.62,met_s06e24_seg02_clip_07,Right after Lily gets sick 14351,In bedroom,In the kitchen ,at the hospital ,In the bathroom,At Penny's ,3,Where is Bernadette when she was throwing up?,136390,The Big Bang Theory,0-18.92,s10e05_seg02_clip_02,In the bathroom 14352,yellow,red,blue,white,orange,3,"What color is the pendent that Phoebe is wearing after Monica tell her ""good work""?",136391,Friends,5.89-15.51,friends_s08e16_seg02_clip_05,white 14353,To comfort him.,To annoy him.,To wake him up.,To make him mad.,To make him learn. ,0,Why did Rita hug Castle when she was talking softly?,136392,Castle,71-76.01,castle_s08e11_seg02_clip_22,To comfort him. 14354,Gavin is hiding behind the curtains.,Gavin is hiding behind the desk.,Gavin is hiding behind the couch.,Gavin is hiding behind the bed.,Gavin is hiding behind the shower curtain.,0,What is Gavin hiding behind when Molly and Rachel are talking to each other?,136393,Friends,19.54-21.12,friends_s09e13_seg02_clip_10,Gavin is hiding behind the curtains. 14355,The patient is Cameron's sister,The patient is Taub's wife,The patient is Chase,The patient is Cudddy's ex-husband,The patient is Foreman,4,Who is the patient that Cameron is working with before she left the room,136394,House M.D.,0-9.54,house_s02e21_seg02_clip_17,The patient is Foreman 14356,100 Dollars,A Check,Medical advice,Mortgage papers,Hospital sheets,1,What was house refusing to take from wibberly when he tried handing something back to him?,136395,House M.D.,5.5-91.66,house_s06e11_seg02_clip_24,A Check 14357,5:00,2:00,1:35,Noon,9:00,0,What time is Rachel's plane pulling away from the gate when she complains about it?,136396,Friends,48.92-55.52,friends_s01e09_seg02_clip_15,5:00 14358,She says they could be wrong about her mother,She says it won't make Irene any better,She says it may push Irene off the deep end,She says Irene would be more cooperative if she wasn't agitated,She says it makes no difference in the scheme of things,1,"Why does ""13"" tell Amber she needs to leave it alone when she keeps trying to tell Irene her mother is dead?",136397,House M.D.,0-16.02,house_s04e04_seg02_clip_10,She says it won't make Irene any better 14359,1 hour,2 hours,3 hours,4 hours,15 minutes,0,"How late are Phoebe, Ross and Joey when they show up to Thanksgiving dinner",136398,Friends,0-42.19,friends_s10e08_seg02_clip_09,1 hour 14360,The basketball courts,The diner,The movie theater,The mall,The park,0,Where do Taub and Foreman plan to meet after work when in the lab?,136399,House M.D.,13.92-26.89,house_s07e06_seg02_clip_10,The basketball courts 14361,Rachel sits on her desk and looks at Tag happily.,Rachel walks out the door.,Rachel hugs Ross.,Rachel plays chess with Monica.,Rachel dances with Ross.,0,What does Rachel do after she clears her desk?,136400,Friends,19.48-25.09,friends_s07e09_seg02_clip_02,Rachel sits on her desk and looks at Tag happily. 14362,ted asks lawrence what he thinks about his hat ,ted asks what lawrence thinks of his boots,ted asks lawrence what he thinks about his shirt ,ted asks lawrence what he thinks about his pants,ted asks lawrence what he thinks of his gloves,1,what does ted ask lawrence about when he sees him,136401,How I Met You Mother,42.48-48.93,met_s03e19_seg02_clip_14,ted asks what lawrence thinks of his boots 14363,Water nymph,Ice Dragon,Infinite Sheldon,Water Demon,Lesser Warlord of Kaaa,2,What Card did Sheldon put down when it was his turn,136402,The Big Bang Theory,11.37-25.5,s04e11_seg01_clip_00,Infinite Sheldon 14364,box,paper,book,cup,file,3,What does House put on the table when he is talking to the group?,136403,House M.D.,6.98-12.09,house_s08e15_seg02_clip_23,cup 14365,Detective Esposito said the security guard discovered the body.,Detective Esposito said Beckett discovered the body.,Detective Esposito said a homeless guy discovered the body.,Detective Esposito said Castle discovered the body.,Detective Esposito said some students discovered the body.,2,Who did Detective Esposito say found the body when he was identifying the wounds on it?,136404,Castle,4.21-15.45,castle_s01e06_seg02_clip_00,Detective Esposito said a homeless guy discovered the body. 14366,His gym bag was covered in it.,He bought a neon lamp.,He wore neon makeup., He bought a Thorian blaster and shot it.,Someone mailed him a letter with neon on it.,3,Why did Winters say his hand was glowing after Castle asked?,136405,Castle,25.5-50.19,castle_s05e06_seg02_clip_23, He bought a Thorian blaster and shot it. 14367,Howard walked in last. ,Leonard walked in last. ,Amy walked in last. ,Raj walked in last. ,Bernadette walked in last. ,2,Who walked in last when Penny opened the door?,136406,The Big Bang Theory,24.81-34.11,s09e05_seg02_clip_13,Amy walked in last. 14368,A pair of scrubs,A patient's file,A box of office supplies,A Magazine,A box of tissues,3,What does Cuddy hand over to House when he enters her office?,136407,House M.D.,3.23-9.68,house_s02e04_seg02_clip_00,A Magazine 14369,The crime scene. ,More words. ,A phone number. ,A picture of a man. ,A photo of a car. ,3,What does Beckett put up on the murder board after she speaks with Saya?,136408,Castle,83.57-88.9,castle_s06e18_seg02_clip_23,A picture of a man. 14370,Because Elise's mother died of breast cancer.,Because Elise realizes she could be pregnant.,Because Elise is in pain.,Because Elise knows she will have to have a mastectomy.,Because Cameron tells Elise that she has breast cancer.,0,Why is Elise so worried after her mammogram?,136409,House M.D.,5.81-12.04,house_s01e07_seg02_clip_06,Because Elise's mother died of breast cancer. 14371,tim cabot,martha stewert,sheldon cooper,reiko ross,mandy allen,0,who did Ryan tell Becket was not on the guest list after handing her a picture?,136410,Castle,17.95-22.55,castle_s05e09_seg02_clip_20,tim cabot 14372,"Phoebe says she doesn't care and that she'll be her ""something blue.""",Phoebe says that she thinks she'll be hot.,Phoebe says that she likes the cold.,Phoebe says that she likes the snow.,Phoebe says that she can't feel cold. ,0,What does Phoebe tell Chandler in response to his question of whether or not she'll be cold when she takes off her jacket before her wedding?,136411,Friends,16.29-39.23,friends_s10e12_seg02_clip_25,"Phoebe says she doesn't care and that she'll be her ""something blue.""" 14373,Scratched his foot,Massaged his foot,Took his sock off,Tickled his foot,Bumped his foot,0,What did Beckett do after Castle could not reach his foot?,136412,Castle,0-10.47,castle_s05e19_seg02_clip_00,Scratched his foot 14374,Chandler does a back flip.,Chandler does a thumbs up.,Chandler does a jumping jack.,Chandler waves his arms.,Chandler spits on the ground.,1,What motion does Chandler make after Monica says love it?,136413,Friends,9.24-14.01,friends_s10e15_seg02_clip_07,Chandler does a thumbs up. 14375,A chair,A door,The couch,The wall,The TV,1,What did Joey run into when he was dancing with the man in coveralls?,136414,Friends,50.72-57.63,friends_s04e04_seg02_clip_11,A door 14376,Next to the microphone.,At the counter.,On the couch.,On the sidewalk outside.,In a chair.,0,Where was Rachel when she introduced Stephanie? ,136415,Friends,5.44-11.21,friends_s02e06_seg02_clip_12,Next to the microphone. 14377,He compares it to Raj's relationship with himself. ,He compares it to Sheldon and Amy's relationship. ,He asks by comparing it to computer software. ,He compares it to Bernadette and Howard. ,He compares it to a baseball game. ,2,"How does Leonard ask Penny for a trial run together, when discussing getting back together?",136416,The Big Bang Theory,52.5-63.26,s05e14_seg02_clip_00,He asks by comparing it to computer software. 14378,His own people. ,His neighbors. ,His wife. ,His husband. ,His best friend. ,0,Who does Gage say is setting him up when he is talking to Beckett about Pandora?,136417,Castle,55.02-57.22,castle_s04e16_seg02_clip_14,His own people. 14379,a monitor,a needle,a painting ,a bottle of wine,a stack of boxes,0,What was behind Foreman when he was talking to Cameron about taking Kutner's place?,136418,House M.D.,0-8.73,house_s05e21_seg02_clip_06,a monitor 14380,House is talking to Robert,House is talking to Cameron,House is talking to Chase,House is talking to Foreman,House is talking to himself,3,Who is House talking to when he is walking?,136419,House M.D.,0-11.94,house_s01e08_seg02_clip_00,House is talking to Foreman 14381,"Robin, Ted, Marshall and Lily.",Robin.,"Lily,",Marshall.,Lily and Robin.,0,"Who followed Barney after saying, coming let's go?",136420,How I Met You Mother,0-60.81,met_s02e09_seg01_clip_00,"Robin, Ted, Marshall and Lily." 14382,A gym bag. ,A grocer bag. ,A shopping bag. ,A purse. ,A wallet. ,3,What is Monica carrying when she is making a funny face walking through the living room?,136421,Friends,60.48-62.03,friends_s08e10_seg02_clip_06,A purse. 14383,He was given a shot. ,He got bit by a snake.,He got operated on. ,He passed out and fell on the floor. ,He was carried out on a stretcher.,3,What happened to Jeff after House said something to him about symptoms?,136422,House M.D.,91.03-100.03,house_s02e06_seg02_clip_22,He passed out and fell on the floor. 14384,On the desk,By the window,On the floor,Next to Ramon's bed,On Ramon's bed,3,Where was Marisa sitting before Ramon and House started discussing the deal Ramon made with God?,136423,House M.D.,3.94-10.93,house_s07e08_seg02_clip_01,Next to Ramon's bed 14385,Richard,Preston,Bailey,Derek,Cristina,2,Who was the on-call resident Izzy needed to wake up when she needed help with a patient?,136424,Grey's Anatomy,48.84-80.47,grey_s01e01_seg02_clip_09,Bailey 14386,Castle said it must have been easy as pie.,Castle said it was a quid pro quo.,Castle said it was par for the course.,Castle said it was like taking candy from a baby.,Castle said it was just correcting a karmic injustice.,4,How did Castle describe taking from Hixton when he was talking to Easley about guessing six numbers?,136425,Castle,0-12.34,castle_s03e14_seg02_clip_21,Castle said it was just correcting a karmic injustice. 14387,Chandler,Rachael,Ross,Bobby,Phoebe,3,"What person did Joey bring to see Dina, after she was talking to Rachel?",136426,Friends,0-5.61,friends_s08e10_seg02_clip_13,Bobby 14388,Because the labs were processed incorrectly.,Because Foreman treated Matty.,Because there was no infection to begin with.,Because there were two bacterias and one was killing the other.,The samples were compromised.,1,Why did House say the cultures were not growing when House was discussing Matty and Nick's case with everyone?,136427,House M.D.,0-7.59,house_s03e21_seg02_clip_18,Because Foreman treated Matty. 14389,Red,Blue,Green,Yellow,Black,4,What was the color of Ashley's Jacket when she was beside the bed with Tucker,136428,House M.D.,17.05-18.7,house_s06e09_seg02_clip_00,Black 14390,A folder,A cup,A bunny,A gun,A knife,0,What does Beckett hand Esposito when in her office,136429,Castle,56.6-64.42,castle_s08e07_seg02_clip_02,A folder 14391,House,House wife,House girlfriend,Geimer,Cameron's protege,4,Who is on the phone after House answers it?,136430,House M.D.,30.48-38.39,house_s03e03_seg02_clip_09,Cameron's protege 14392,She wanted the USB,She hated Castle,She wanted to silence Castle,Castle threatened to hurt her,She was trying to intimidate Castle,0,Why was Sofia pointing the gun at Castle when she was in his office?,136431,Castle,5.45-14.07,castle_s07e12_seg02_clip_23,She wanted the USB 14393,That he needs to see a therapist.,That the dream does not mean that Joey is in love with Monica.,That the three of them should sit down to discuss his dream.,That he needs to go talk to Rachel.,That he should take a trip.,1,What is Monica's response after Joey explains his ream?t,136432,Friends,32.17-42.79,friends_s05e16_seg02_clip_08,That the dream does not mean that Joey is in love with Monica. 14394,Ross is worried that the shot won't work and he'll die.,Ross worries that the Dr. will have a squirt gun.,Ross worries that the Doctor will give him a shot.,Ross is afraid that the allergic reaction will kill him before the doctor arrives.,Ross is afraid that Monica will think he's a baby for being afraid of needles. ,2,What does Ross worry about when he waits for the doctor to arrive?,136433,Friends,0-7.08,friends_s02e06_seg02_clip_07,Ross worries that the Doctor will give him a shot. 14395,In 1947,In 1818,In 2017,In 2014,In 1948,0,According to the Bartender what year was it when the missionaries started telling stories?,136434,Castle,19.78-25.63,castle_s07e07_seg02_clip_19,In 1947 14396,His girlfriend was working.,He told her he was working.,He told her he was with friends.,His girlfriend was with friends.,His girlfriend was upset with him.,1,What was the reason that Leonard gave Penny when she asked why he didn't contact his girlfriend to pick them up?,136435,The Big Bang Theory,13.02-22.33,s04e19_seg02_clip_15,He told her he was working. 14397,they got on the elevator,their partner brought out a criminal,they kept waiting ,they sat on the floor,they quit their job,1,what happened after the agents finished waiting for the elevator,136436,Castle,20.48-30.27,castle_s03e18_seg02_clip_16,their partner brought out a criminal 14398,He is sitting on the floor going through folders.,He is laying on the sofa with his head on a pillow reading a magazine.,He is sitting in the recliner eating a candy bar.,He is sitting on the sofa with his arms on his lap and his hands folded against his face.,He is sitting on the sofa with a glass of beer.,3,What is Dr. House doing when Dr. Wilson says no breakfast?,136437,House M.D.,0-6.68,house_s06e05_seg02_clip_18,He is sitting on the sofa with his arms on his lap and his hands folded against his face. 14399,book.,tray.,drink.,cigarette.,pen.,2,What does Raj hold when approach Mrs. Davis?,136438,The Big Bang Theory,0-35.09,s07e01_seg02_clip_11,drink. 14400,A stack of papers,Their phones,A computer screen,A whiteboard,A burning building,3,What are Beckett and Castle looking at when discussing the bombing?,136439,Castle,19.81-27.91,castle_s04e19_seg02_clip_23,A whiteboard 14401,Because he was feeling good.,House was biting his teeth because he was feeling pain.,Because he was taking alcohol,Because he did not want to be heard,He was not biting his teeth,1,Why was House biting his teeth when he was operating the wound?,136440,House M.D.,100.63-149.66,house_s07e22_seg02_clip_08,House was biting his teeth because he was feeling pain. 14402,Rachel shushes Chandler because she doesn't want to hear his voice.,Rachel shushes Chandler because Monica will hear him.,Rachel shushes Chandler because the boots will hear him.,Rachel shushes Chandler because they don't actually cost that much.,Rachel shushes Chandler because they were worth the money.,2,Why does Rachel shush Chandler when Chandler tells Monica to return them?,136441,Friends,32.65-57.82,friends_s08e10_seg01_clip_00,Rachel shushes Chandler because the boots will hear him. 14403,She had no choice,She wants space,She has extra money to spend,She wants to be alone,She is getting a divorce,4,Why is Zoey renting an apartment when she is married?,136442,How I Met You Mother,0-15.37,met_s06e15_seg02_clip_17,She is getting a divorce 14404,they were closed,he didn't wear good clothes,he was loud,he ate too much,he had three strikes,4,What was the reason Penny gave when she told Sheldon he was banished? ,136443,The Big Bang Theory,0-12,s02e07_seg02_clip_06,he had three strikes 14405,They checked out,Still pending,Still need to reconfirm alibis,They did not check out,They all lied,0,How does the cast and crew's alibis check when asking Esposito?,136444,Castle,3.92-6.53,castle_s03e18_seg02_clip_08,They checked out 14406,Murder,Theft,Kidnapping,treason,cheating,1,What crime did the boy admit to after seeing the video?,136445,Castle,37.36-57.17,castle_s05e11_seg02_clip_20,Theft 14407,Her laptop,A pen and notebook,Her phone,Her purse,A stapler,1,What did Page grab off of her desk when Sheldon mentioned Leonard being on the verge of giving out secrets to a spy?,136446,The Big Bang Theory,44.31-54.06,s04e07_seg02_clip_10,A pen and notebook 14408,he was playing drums with his pencil,he was chewing on a pencil,he was skimming through a magazine,he was writing in his notebook,he was sleeping,2,What was Chase doing when Dr House walked in?,136447,House M.D.,3.73-6.52,house_s01e14_seg02_clip_00,he was skimming through a magazine 14409,Phoebe walked over to Rachel and sat on the chair next to her.,Phoebe walked past Rachel and into the kitchen.,Phoebe walked right back out of the apartment.,Phoebe walked up to Rachel and gave her a hug.,Phoebe walked past Rachel and into her bedroom.,4,Where did Phoebe go after Rachel asked her to talk for a second?,136448,Friends,0-9,friends_s06e07_seg02_clip_12,Phoebe walked past Rachel and into her bedroom. 14410,Intenstine,Kidneys,Gallbladder,Ovaries,Stomach,1,What organs of the patient are friend according to Chase before Taub says he's in a coma?,136449,House M.D.,20.71-24.5,house_s07e14_seg02_clip_16,Kidneys 14411,Amber said it was unusual that Sam was bringing someone with him,Amber said it was unusual that Sam called himself,Amber said it was unusual that he wanted a different girl,Amber said it was unusual that he wanted a straight massage,Amber said it was unusual that Nadine confirmed the appointment,4,What did Amber say was unusual about Sam appointment when Ryan asked her,136450,Castle,24.71-36.14,castle_s04e08_seg02_clip_14,Amber said it was unusual that Nadine confirmed the appointment 14412,Barney told Robin that he needs to get some dental work as well.,Barney told Robin that she should brush her teeth daily.,Barney told Robin that she should take better care of her teeth.,Barney told Robin that her teeth look fantastic.,Barney told Robin that he is glad that she got her teeth fixed.,3,What did Barney say after Robin told him that the dentist drilled her hard and filled all of her cavities?,136451,How I Met You Mother,0-10.26,met_s04e01_seg02_clip_12,Barney told Robin that her teeth look fantastic. 14413,Infect House with Matty's illness.,Take Matty off all medication.,Infect Nick with Matty's illness.,Send samples to a reknown lab in England.,Check all the kids in Matty's class to see if they have it too.,2,How did House suggest they try and figure out what is wrong with Matty when he and everyone are discussing how to diagnose Matty?,136452,House M.D.,47.32-51.34,house_s03e21_seg02_clip_18,Infect Nick with Matty's illness. 14414,House is in a bedroom.,House is in an operating room.,House is in a kitchen.,House is in the waiting room.,House is in his office.,4,Where is House when he is getting a massage?,136453,House M.D.,0-7.98,house_s06e13_seg02_clip_19,House is in his office. 14415,Ross says he is going to call Rachel.,Ross says he is going to call Phoebe.,Ross says he is going to call Joey.,Ross says he is going to call Chandler.,Ross says he is going to call Joan.,4,Who is Ross saying he is going to talk to next after agreeing to take Monica to the wedding?,136454,Friends,14.04-20.44,friends_s07e11_seg02_clip_06,Ross says he is going to call Joan. 14416,Castro,Obama,Clinton,Putin,Merkel,0,What world leader did House mention before he talked about fixing her heart?,136455,House M.D.,32.22-42.06,house_s03e24_seg02_clip_20,Castro 14417,House hit his walking cane on something.,House played very loud music.,House turned his alarm on and set it for a minute.,House tapped Margo's head.,House threw water on Margo's face.,0,How did House wake Margo up when she was sleeping?,136456,House M.D.,22.09-24.39,house_s02e11_seg02_clip_19,House hit his walking cane on something. 14418,In the shower,In bed,In the hospital,In the car,Outside,4,Where are Cristina and Burke when their conversation is taking place?,136457,Grey's Anatomy,1.65-25.39,grey_s02e13_seg02_clip_20,Outside 14419,Foreman was embarrassed about being incorrect.,"Foreman felt that Taub had a point, but was still being unhelpful.",Foreman felt defensive of his diagnosis.,Foreman blamed Thirteen and Kutner for his own incorrect diagnoses. ,Foreman felt that he had failed as a doctor.,1,"How did Foreman feel when Taub said that Foreman, Kutner, and Thirteen were wrong?",136458,House M.D.,77.46-88.02,house_s05e01_seg02_clip_19,"Foreman felt that Taub had a point, but was still being unhelpful." 14420,Castle doesn't tell Caldwell anything,Castle tells Hayley to shoot Caldwell,Castle tells Hayley to record Caldwell,Castle tells Hayley to follow Caldwell,Castle tells Hayley to let Caldwell go,4,What does Castle tell Hayley to do when Caldwell notices their set up?,136459,Castle,79.31-85.74,castle_s08e13_seg02_clip_21,Castle tells Hayley to let Caldwell go 14421,reading a book,watching tv,reading the paper,looking at a magazine,on the computer,0,what is burke doing when cristina approaches him in his hospital room?,136460,Grey's Anatomy,0-9.92,grey_s03e02_seg02_clip_07,reading a book 14422,Runs away quickly,Shakes George's Hand,Checks his cellphone,Stares blankly,Grabs an appetizer,1,What does Ted do after introducing himself?,136461,How I Met You Mother,0-4.66,met_s06e08_seg02_clip_03,Shakes George's Hand 14423,Robin met her biological father,Robin met Ted,Robin met Gael,Robin met Raj,Robin met Jill,2,Who did Robin meet when she went to Argentina?,136462,How I Met You Mother,13.82-43.8,met_s03e01_seg02_clip_16,Robin met Gael 14424,A coffee pt.,A coffee mug.,A sugar jar.,A spoon.,A paper towel.,1,What was House holding in his left hand when Cameron said it didn't explain the PRCA?,136463,House M.D.,10.8-17.1,house_s02e06_seg02_clip_20,A coffee mug. 14425,he wasnt carrying anything,he was carrying a suitcase,he was carrying a backpack,he was carrying a soda bottle,he was carrying a giant stormtrooper ,4,What was Barney carrying around the apartment with him when Lily and him were listening to music?,136464,How I Met You Mother,29.59-38.37,met_s02e05_seg02_clip_12,he was carrying a giant stormtrooper 14426,They kiss.,They wave.,They shake.,They hug.,They high five.,0,What do Raj and Lucy do after Raj says he thinks she's wonderful?,136465,The Big Bang Theory,0.9-9.55,s06e23_seg02_clip_11,They kiss. 14427,Seven ,Six,Eight,,All of them ,0,How many parties did Paul point out after Castle handed him the paper?,136466,Castle,10.8-23.86,castle_s05e11_seg02_clip_07,Seven 14428,Help people,Stop being an ass,Stop limping,Stop smoking,Get a leather jacket,1,What is Wilson's advice to House when they are helping patients?,136467,House M.D.,0-17.01,house_s01e19_seg02_clip_17,Stop being an ass 14429,A pan,oven mits,A potato,A cup,A flower,1,What was Sheldon holding after he gave Amy a hug?,136468,The Big Bang Theory,0.3-9.63,s10e06_seg02_clip_04,oven mits 14430,Cuddy,House,Adams,Park,Foreman,4,Who was standing in the observation room window when Chase stood up?,136469,House M.D.,65.08-70.09,house_s08e09_seg02_clip_13,Foreman 14431,singer,social media celeb,actress,political leader,religious leader,1,what kind of celebrity do we find out the victim was after questiong carlos. ,136470,Castle,40.51-90.02,castle_s07e05_seg02_clip_02,social media celeb 14432,I am leaving Bernadette,Bye guys see ya.,Have fun tomorrow.,Don't wait up.,At least my mother made her boyfriend climb out the window.,4,What does Howard saying after closing the door?,136471,The Big Bang Theory,0.7-12.96,s06e04_seg02_clip_16,At least my mother made her boyfriend climb out the window. 14433,He lost his monocle,He wants to divorce his wife,He wants to sleep with the woman to his left,He wants to invest in bitcoin,He looks like a Bond Villain,4,Why does Ted wish the man with a monocle good luck before he leaves?,136472,How I Met You Mother,13.52-16.75,met_s06e08_seg02_clip_05,He looks like a Bond Villain 14434,House gave Wilson a bowl of food,House gave Wilson a cup of tea,House gave Wilson a spoon of cough syrup,House gave Wilson a back massage,House gave Wilson a foot massage,0,What did House give Wilson when he came into the room?,136473,House M.D.,0-10.92,house_s08e19_seg02_clip_12,House gave Wilson a bowl of food 14435,club 81,monkey club,tundra,studio 54,club doom,4,What was the name of the club the vicitm was going to before she died,136474,Castle,33.76-90.02,castle_s07e05_seg02_clip_02,club doom 14436,Beckett points at a little box,Beckett points at a dog,Beckett points at a cat,Beckett points at a newspaper,Beckett points at Castle. ,0,What does Beckett point at after Castle mentions how nice the neighborhood used to be?,136475,Castle,1.84-7.82,castle_s03e10_seg02_clip_24,Beckett points at a little box 14437,Cried,Happy,Mad,Livid,Surprised,4,How did Penny act after she found out she was really on the phone with Sheldon?,136476,The Big Bang Theory,0-54.71,s02e17_seg02_clip_09,Surprised 14438,Gates is sitting in the hallway.,Gates is sitting on the floor.,Gates is sitting at the desk.,Gates is sitting on a stool.,Gates is not sitting. ,2,Where is Gate sitting when talking to Esposito and Ryan?,136477,Castle,71-79.19,castle_s06e22_seg02_clip_15,Gates is sitting at the desk. 14439,Joey asks political questions.,Joey asks mathematical questions.,Joey asks geographical questions.,Joey asks medical questions.,Joey asks sexual questions.,4,What kind of questions does Joey ask when he gives the prospective roommate a quiz?,136478,Friends,38.87-67.02,friends_s06e03_seg02_clip_19,Joey asks sexual questions. 14440,Hayley is wearing leather boots.,Hayley is wearing tennis shoes.,Hayley is wearing stilletos.,Hayley is wearing dress flats.,Hayley is wearing flip flops. ,0,What kind of shoes is Hayley wearing when Castle and Slaughter walk into the office?,136479,Castle,79.57-86.02,castle_s08e06_seg02_clip_09,Hayley is wearing leather boots. 14441,In an old unsolved death,On the transplant list,With a drug dealer,With the pitching coach,In his other pants,4,Where does House say he has another explanation before Hank talks about being given a drug by his pitching coach?,136480,House M.D.,28.92-51.51,house_s01e12_seg02_clip_08,In his other pants 14442,Bacteria.,Smoke.,Parasites.,Vegetations.,Dust.,3,What are obstructing the patient's mitral valve according to Chase when talking to the other doctors?,136481,House M.D.,5.22-15.66,house_s02e14_seg02_clip_06,Vegetations. 14443,they are in a resturant,they are in Becketts office,they are in the corener's office ,they are in a church,they are in the interrogation room,4,Where is Beckett and Castle when they are interrogating Father Low?,136482,Castle,44-54.07,castle_s03e03_seg02_clip_16,they are in the interrogation room 14444,Any time,Sure thing,No problem,"Next time, dinner's on you",My pleasure,4,What is Wyatt's response when Leonard thanks him for dinner?,136483,The Big Bang Theory,53.46-58.43,s04e09_seg02_clip_06,My pleasure 14445,Janice is becoming depressed.,Janice is starting to sweat.,Janice is getting angry.,Janice is starting to cry.,Janice is feeling nervous.,3,How is Janice reacting when she's sitting on the couch with Chandler?,136484,Friends,1.12-10.08,friends_s01e05_seg02_clip_15,Janice is starting to cry. 14446,A fire is on the wall.,A pig is on the wall.,A dog is on the wall.,A stork is on the wall.,A cat is on the wall.,3,What is on the wall behind Chandler when he walks into the hospital?,136485,Friends,9.6-14.71,friends_s05e03_seg02_clip_05,A stork is on the wall. 14447,red,blue,Black,white,grey,2,"What color is the shirt Joey is wearing when he say's ""I want you to...""?",136486,Friends,0-6.97,friends_s04e05_seg02_clip_17,Black 14448,Sheldon and Amy were in front of the Picasso exhibit at the museum.,Sheldon and Amy were at their usual table at the Chinese restaurant.,Sheldon and Amy were walking by the fountain in the park.,Sheldon and Amy were at the supermarket deli counter.,Sheldon and Amy were sitting on the couch in the living room.,4,Where were Sheldon and Amy when Sheldon asked to speak to smart Amy?,136487,The Big Bang Theory,16.31-19.39,s04e21_seg02_clip_13,Sheldon and Amy were sitting on the couch in the living room. 14449,12:00 AM on fifth day he was in prison.,11:00 PM on third day he was in prison.,12:00 AM on second day he was in prison.,12:00 AM on first day he was in prison.,12:00 AM on third day he was in prison.,4,What exactly does Mark say was Collier died when he tells Castle?,136488,Castle,73.62-82.71,castle_s05e17_seg02_clip_24,12:00 AM on third day he was in prison. 14450,House said the patient would have 2 strokes.,House said the patient would have another stroke.,House said the patient would have 3 strokes.,House said the patient would have 6 strokes.,House said the patient would have 5 strokes.,1,How many more strokes did House say the patient he had would get after the patient had a blood clot and stroke?,136489,House M.D.,76.23-78.91,house_s02e11_seg02_clip_13,House said the patient would have another stroke. 14451,Start talking,Unbutton his shirt,Get out of bed,Button his shirt,Open his eyes,3,What surprising thing does the patient with the head injury do after House finishes examining hiim?,136490,House M.D.,86.12-113.8,house_s03e15_seg02_clip_25,Button his shirt 14452,Cristina was looking at the patient's pelvis.,Cristina was looking to the right at the patient's arm.,Cristina was looking down at the patient's heart.,Cristina was looking at the patient's brain.,Cristina was looking at the patient's leg.,2,Where was Cristina looking when she was examining a patient's body?,136491,Grey's Anatomy,0-2.76,grey_s03e09_seg02_clip_23,Cristina was looking down at the patient's heart. 14453,bored,happy,sad,Shocked,hungry,3,How did Penny feel when Raj started speaking to her for the first time?,136492,The Big Bang Theory,0-15.56,s01e08_seg02_clip_05,Shocked 14454,Co-Workers,Family,Friends,Clients,Neighbors,3,What did Beckett and Castle neglect to check when they vetted the travel agent?,136493,Castle,0-11.44,castle_s02e14_seg02_clip_18,Clients 14455,Sheldon's birthday gift.,A test subject.,Her new pet.,An apology present for Penny.,An animal she found.,1,Who does Amy reveal the monkey is when talking into her recorder?,136494,The Big Bang Theory,6.44-16.53,s07e05_seg02_clip_08,A test subject. 14456,Priya locks Leonard in the closet,Priya walks toward Leonard.,"Priya leaves, leaving Leonard lost in his own room",Priya takes Leonard's wallet and leaves,Leonard trips over a table and falls,1,What happens after Leonard walks toward the middle of the room?,136495,The Big Bang Theory,2.42-7.57,s04e18_seg02_clip_03,Priya walks toward Leonard. 14457,Foreman said a depressed person would not leave their house.,Foreman had talked to the patient and he seemed fine.,Foreman was is in denial.,Foreman felt that the patient's actions were not diagnostic of depression.,Foreman said a depressed person would have low energy levels.,3,Why did Foreman feel House's patient was not depressed after House told Foreman his patient blacked out and pissed himself?,136496,House M.D.,5.01-7.28,house_s02e12_seg02_clip_21,Foreman felt that the patient's actions were not diagnostic of depression. 14458,Chase,Cameron,Cuddy,the baby's mother,Foreman,0,Who does House encounter after he leaves Brent?,136497,House M.D.,76.83-81.2,house_s02e22_seg02_clip_19,Chase 14459,Cameron says that she'll turn Sebastian's favorite show on. ,Cameron tells Sebastian that they've found a cure. ,Cameron says that they're making Sebastian's favorite food. ,Cameron complements Sebastian's hair. ,Cameron say's Sebastian will be comfortable and they'll go to dinner. ,4,"Why does Sebastian say thank you, after grabbing Cameron's hand?",136498,House M.D.,9.01-21.73,house_s02e04_seg02_clip_15,Cameron say's Sebastian will be comfortable and they'll go to dinner. 14460,A pen,A file,A pencil,A book,A stapler,1,What is House holding before figuring out how to treat the black female victim?,136499,House M.D.,0-72.82,house_s03e05_seg02_clip_20,A file 14461,In the room across the hall from House. ,In the bed to House's left. ,In the bed to House's right. ,"On the other side of the room, facing House. ",Standing in the corner of the room. ,1,"Where is the killer that House awakens, after Cameron alludes to him?",136500,House M.D.,17.1-25.66,house_s02e24_seg02_clip_04,In the bed to House's left. 14462,Sheldon says he is not hungry. ,Sheldon says he is not okay. ,Sheldon says he is never enough. ,Sheldon says he is shallow. ,Sheldon says he is fine. ,4,How does Sheldon respond when Leonard asks him if he's okay?,136501,The Big Bang Theory,4.57-6,s04e23_seg02_clip_01,Sheldon says he is fine. 14463,To get his autograph.,To photograph him.,To speak with him.,To sign books.,To hug him.,3,What do people ask of Castle Lookalike sometimes when is talking with Beckett and Castle?,136502,Castle,66.17-69.77,castle_s05e05_seg02_clip_22,To sign books. 14464,She is preventing him from living a lifelong dream,She is mean,She is rude,He doesnt like her,Because of her attitude,0,What is the first reason Ted gives Zoey for why he hates her before Marshall calls them?,136503,How I Met You Mother,24.65-33.3,met_s06e15_seg02_clip_17,She is preventing him from living a lifelong dream 14465,A bar,A cafe,A pool ,The park,The movies,1,Where do beckett and castle go when they go to look for the contact of the ally?,136504,Castle,17.78-23.25,castle_s02e24_seg02_clip_05,A cafe 14466," Agent Page verified Raj's name, introduced herself and flashed her badge.",Agent Page kissed Raj.,Agent Page grabbed Raj.,Agent Page sang to Raj.,Agent Page asked to see Penny.,0,What did Agent Page do after Raj opened the door?,136505,The Big Bang Theory,22.27-27.77,s04e07_seg02_clip_00," Agent Page verified Raj's name, introduced herself and flashed her badge." 14467,monica shirt was white looking when she was next to chandler,monica shirt was dark brown gold when she was next to chandler,monica shirt was dark gold when she was next to chandler,monica shirt was amber when she was next to chandler,monica shirt was black when she was next to chandler,0,what color was the monica shirt when she was next to chandler,136506,Friends,33.87-61.03,friends_s10e10_seg02_clip_07,monica shirt was white looking when she was next to chandler 14468,Castle pointed at his neck.,Castle pointed at his mouth.,Castle pointed at his nose.,Castle pointed at his ears.,Castle pointed at his stomach.,2,What body part did Castle point to when he was staring at Ryan?,136507,Castle,77.64-80.15,castle_s02e02_seg02_clip_03,Castle pointed at his nose. 14469,He is a killer.,Shoot him not me.,"Lady, Listen you don't wanna do this, all right. He's not worth it.",Take him to the station,Stop don't move.,2,What Castle said before he was short?,136508,Castle,32.15-38.15,castle_s08e13_seg02_clip_21,"Lady, Listen you don't wanna do this, all right. He's not worth it." 14470,Leonard,Sheldon,Amy,Penny,Raj,1,Who was Adam interviewing when he was in Leonard and Sheldon's apartment?,136509,The Big Bang Theory,48.63-54.33,s09e07_seg02_clip_02,Sheldon 14471,laptop,wallett,bag,paper,phone,3,What did Marshall pick up off the ground when he was talking to Lily?,136510,How I Met You Mother,18.59-23.32,met_s05e01_seg02_clip_11,paper 14472,He went to the dirty store. ,He went to the grocery store. ,He went to the outlet store. ,He went to the mall. ,He went to work. ,0,Where did Leonard go when he wasn't with Penny?,136511,The Big Bang Theory,0-11.16,s08e17_seg02_clip_03,He went to the dirty store. 14473,Watching TV,Making food in the kitchen,Taking a nap on the couch,Reading a book,Talking on the phone,4,What is Rachel doing when she's in Ross' living room?,136512,Friends,41.19-45.77,friends_s09e03_seg02_clip_02,Talking on the phone 14474,Dances alone,Leaves,Gets in a food fight,Asks a woman to dance,Goes to the buffet,3,What does Ross do after leaving the kid's table?,136513,Friends,0-10,friends_s08e01_seg02_clip_14,Asks a woman to dance 14475,The door hits Joey's foot and he grabs it.,He falls forward into the room he was on is way in when she opened it.,"He looks surprised, he was about to knock when she opened the door.",He says know that's service and walks right into the room.,"He falls backward on the ground, he was leaning on the opposite side of it.",4,What does Joey do when Rachel opens the door?,136514,Friends,30.7-35.67,friends_s09e23-24_seg02_clip_41,"He falls backward on the ground, he was leaning on the opposite side of it." 14476,Lily,Marshall,Barney,Robin,Scooter,2,Who tells Ted to 'spacesuit' up when they are in the bar?,136515,How I Met You Mother,2.71-10.54,met_s03e03_seg02_clip_13,Barney 14477,Blimpie,McDonalds,Long John Silvers,Slim Pickins,Ruby Tuesday,3,Where did Chandler say that he would take Monica to dinner when they move to Tulsa?,136516,Friends,12.01-20.11,friends_s09e03_seg02_clip_10,Slim Pickins 14478,lawrence calls walter in to give walter some tea,lawrence calls walter in to see what he thinks of marshalls hat,lawrence calls walter in to get him some tea,lawrence calls walter in to find where he put the painting,lawrence calls walter in to see what he thinks of tods boots,4,why does lawrence call in walter when tod asks about his boot,136517,How I Met You Mother,44.83-58.01,met_s03e19_seg02_clip_14,lawrence calls walter in to see what he thinks of tods boots 14479,They are hiding from Leonard. ,They are trying to learn magic. ,They are trying to learn the basics of life. ,They are hiding from Sheldon. ,They are trying to break into a locked room. ,4,Why are Howard and Raj being do sneaky when they are together?,136518,The Big Bang Theory,0-42.81,s06e08_seg02_clip_07,They are trying to break into a locked room. 14480,A phone.,A camera.,A couple of scissors.,A microphone.,A cup of coffee.,2,What was on the table next to the black object when House told Cameron to freeze it?,136519,House M.D.,10.38-15.13,house_s02e23_seg02_clip_06,A couple of scissors. 14481,Raj gets his information from a friend speaking about it.,Raj gets his information from a telephone call.,Raj gets his information from a letter.,Raj gets his information from a formal paper invitation.,Raj gets his information from the computer.,4,How does Raj get his information when he describes the mixer party?,136520,The Big Bang Theory,0-5.33,s03e12_seg02_clip_01,Raj gets his information from the computer. 14482,Waiting forever for your food.,Being rejected in person.,Being kicked out of the bar.,The bar being out of his favorite drinks.,Losing his preferred seat.,1,What does Raj realize is worse than online rejection after arriving at the bar?,136521,The Big Bang Theory,33.35-43.84,s07e04_seg02_clip_17,Being rejected in person. 14483,He looked out the peep hole.,He opened the door.,He came out from behind the door.,He grabbed her arm.,He sat at the table.,2,What did Chandler do after Rachael slammed the door?,136522,Friends,48.39-51.27,friends_s04e01_seg02_clip_19,He came out from behind the door. 14484,Eat cake,Sing happy birthday,Open presents,Say something to Emma on her 18th birthday,Go pick up a cake,3,What does Ross want Joey to do after he wakes up? ,136523,Friends,14.41-20.49,friends_s10e04_seg02_clip_01,Say something to Emma on her 18th birthday 14485,purple,blue,green,pink,gold,3,what color shirt was foreman wearing when talking to house,136524,House M.D.,15.51-24.92,house_s05e02_seg02_clip_01,pink 14486,A shopping bag.,A phone.,A tie.,A cup of juice.,A newspaper.,4,What was Chandler holding when he asked Ross what he was doing Friday?,136525,Friends,22.02-25.74,friends_s03e12_seg01_clip_00,A newspaper. 14487,Yellow,Black,White ,Red,Red,4,What color is Eve's hat when Wilson walks in?,136526,House M.D.,69.1-74.38,house_s07e07_seg02_clip_13,Red 14488,A scalpel.,More IV fluids.,A vasodilator medication.,A vasoconstrictor medication.,The curtains.,4,What does Chase's female colleague tell the others to get when Brandon's blood pressure drops,136527,House M.D.,55.01-61.59,house_s01e03_seg02_clip_21,The curtains. 14489,wife,phone call,parents,Lawyer,money,3,What does the man ask for after seeing the video?,136528,Castle,2.7-15.75,castle_s05e11_seg02_clip_20,Lawyer 14490,They are searching the suspects apartment,They are searching the drive-on logs at the studio,They are searching the suspects car,They are searching the suspects office at the studio,They are searching Tyllers ex-wife's house,1,Where does Esposito say detective Mendez is searching for evidence when he enters the break room?,136529,Castle,48.16-57.62,castle_s08e14_seg02_clip_17,They are searching the drive-on logs at the studio 14491,Brent tries to run out on fatherhood ,House and Brent get drunk together ,House and Brent try desperately to save the baby,Brent tries to convince House the baby is really sickq,House berrates Brent for being a drunk,4,What is the main activity occurring when this scene takes place?,136530,House M.D.,18.77-35.36,house_s02e22_seg02_clip_19,House berrates Brent for being a drunk 14492,He walks away,He said he knows a friend that dresses up as Bo Peep,He ignores her question,He tells her he has always wanted to try role playing,He tells her he did a little research,4,What does Castle do when Beckett asks how he knows about the role playing sub culture?,136531,Castle,78.97-83.53,castle_s04e17_seg02_clip_03,He tells her he did a little research 14493,Cuddy turned and went down the staircase.,Cuddy went back to her office.,Cuddy went to grab some lunch.,Cuddy went to the nurse's station.,Cuddy went to check on another patient.,0,Where did Cuddy go after she told House to foam the lung?,136532,House M.D.,37.84-48.07,house_s07e02_seg02_clip_09,Cuddy turned and went down the staircase. 14494,White,green,blue,grey,black,0,"What color is Derek's jacket when Izzie say's ""I wish I knew.""?",136533,Grey's Anatomy,98.3-108.02,grey_s02e05_seg02_clip_18,White 14495,Beckett,Ryan,Esposito,Sarah,Howard,0,Who was Castle talking to when he was on the computer?,136534,Castle,79.13-89.92,castle_s06e11_seg02_clip_10,Beckett 14496,soda,water,tea,coffee,beer ,3,What was Castle pouring when he was talking to his mother? ,136535,Castle,0-18.1,castle_s04e22_seg02_clip_07,coffee 14497,A pile of fruit,A folding table,The telephone,Her coat,Her guitar,3,What did Phobe set down before Monica stood up and walked across the kitchen?,136536,Friends,33.64-43.38,friends_s07e16_seg02_clip_04,Her coat 14498,Dr. Cooper.,Alex.,Amy.,Raj.,Sheldon.,2,Who holds a green cup when sat on front Sheldon?,136537,The Big Bang Theory,23.32-63.02,s06e12_seg02_clip_03,Amy. 14499,Sheldon,Penny,Bernadette,Howard,No one,2,Who sat down next to Raj when they told them the time travel element?,136538,The Big Bang Theory,13.14-18.83,s07e18_seg02_clip_17,Bernadette 14500,a letter,his wallet,his phone,money,condoms,4,What did Joey pull out of his pocket before Ross walked out of the apartment?,136539,Friends,0-5.49,friends_s08e03_seg02_clip_12,condoms 14501,A computer,A picture,A newspaper ,A candy bar,A phone,4,What does Beckett point to when interrogating the suspect?,136540,Castle,41.29-49.03,castle_s02e03_seg02_clip_23,A phone 14502,He looked under the table.,He grabbed a pool stick.,He sat down.,He drank a beer.,He turned around.,4,What did Wesley do after House and Beckett turned around?,136541,Castle,18.55-22.52,castle_s02e22_seg02_clip_20,He turned around. 14503,Sheldon was walking up the stairs with the other 4 guys.,Sheldon was in the laundry room of his apartment building.,Sheldon was at the comic book store.,Sheldon was in front of the stove in his kitchen.,Sheldon was in the park near the jungle gym.,0,Where was Sheldon when he was talking about Aquaman's telepathic powers?,136542,The Big Bang Theory,41.2-44.56,s04e11_seg02_clip_05,Sheldon was walking up the stairs with the other 4 guys. 14504,Dino would have eaten the Flintstones if he was a Velociraptor.,Dino lived in the wrong period to be a Velociraptor.,"If Dino was a velociraptor, he would have been much, much larger.",Dino was way to small to be a velociraptor.,"Dino had wings, so he must have been a pterodactyl.",0,How does Ross say he knows that Dino was not a Velociraptor when he's on the phone with Tony?,136543,Friends,5.19-13.43,friends_s02e17_seg02_clip_08,Dino would have eaten the Flintstones if he was a Velociraptor. 14505,In the cafeteria,In the elevator,On a bicycle,In the operating room,In her office,3,Where is Cuddy when she says she is going again?,136544,House M.D.,1.35-6.3,house_s03e17_seg02_clip_23,In the operating room 14506,Blue.,White.,Purple.,Green.,Yellow.,1,What color shirt does Rachel have on when she stands up?,136545,Friends,18.3-28.04,friends_s06e05_seg02_clip_17,White. 14507,Exercise.,He was afraid of Joey.,It started raining.,He saw Rachel.,He saw his car.,4,Why did Ross start running when they were outside?,136546,Friends,12.41-17.81,friends_s07e14_seg02_clip_20,He saw his car. 14508,Robbing dealers,Driving by,Dumpster diving,Selling drugs,Walking by,4,What was the man in the tan coat doing before Slaughter snapped his fingers?,136547,Castle,4.73-7.31,castle_s08e06_seg02_clip_09,Walking by 14509,Danny takes Rachel to sit at his couch,Danny takes Rachel to his kitchen,Danny takes Rachel to wait in the hallway to talk,Danny takes Rachel to walk home,Danny doesn't take Rachel anywhere,0,Where does Danny take Rachel after he asks her about her siblings?,136548,Friends,22.81-37.07,friends_s05e10_seg02_clip_16,Danny takes Rachel to sit at his couch 14510,The courthouse,Las Vegas,A church,A boat,Another country,0,Where did everyone go after Lily and Marshall were told how they might be able to get a wedding license?,136549,How I Met You Mother,21.52-46.37,met_s02e08_seg02_clip_07,The courthouse 14511,The anniversary ring.,The engagement ring.,The wedding ring.,Diamond earrings.,Diamong necklace.,2,What did Ross give to Chandler when he enters his apartment?,136550,Friends,0-7.25,friends_s04e22_seg02_clip_00,The wedding ring. 14512,Alexis described it as an experiment from decades ago?,Alexis described it as an archaic experiment.,Alexis described it as an experiment from the last century.,Alexis described it as a crazy hippie-time experiment.,Alexis described it as a '70s thing.,4,How did Alexis date it when Castle mentioned The Stanford Prison Experiment?,136551,Castle,80.78-83.3,castle_s08e03_seg02_clip_16,Alexis described it as a '70s thing. 14513,Her hair.,Her forehead.,Her stomach.,Her shoulder.,Her back.,2,What did Joey touch when Rachel came into the room? ,136552,Friends,61.66-67.02,friends_s08e14_seg02_clip_00,Her stomach. 14514,A phone,A newspaper,A bottle of water,A red mug,A file,3,What was House holding in his left hand when he walks into his office and looks at the white board?,136553,House M.D.,16.91-26.26,house_s02e19_seg02_clip_08,A red mug 14515,A medical folder,A cane,A pillow,A folded blanket,A bag,1,What is next to House when he is sitting on the couch?,136554,House M.D.,80.23-90.15,house_s03e11_seg02_clip_18,A cane 14516,Starts to cry.,He leaves the room.,Hangs up the phone.,He does push-ups.,He starts to yell.,1,What does George do after delivering a message?,136555,Grey's Anatomy,0-15.36,grey_s02e08_seg02_clip_14,He leaves the room. 14517,Cameron suggest she was faking the twitching.,Cameron suggests the machine stopped it.,Cameron suggests that they should run more tests.,Cameron suggests that House is insane.,Cameron suggests that the machine is magical.,0,What does Cameron suggest as a reason that the patient's twitching stopped when the machine was going after House tells the group that the patient saw him starting and stopping the machine?,136556,House M.D.,77.76-92.03,house_s02e13_seg02_clip_19,Cameron suggest she was faking the twitching. 14518,Chandler.,Joey.,Sheldon.,Ross.,Leonard.,1,"Who is Phoebe's host after Phoebe gave Rachel ""the nice room?""",136557,Friends,16.48-39.67,friends_s06e18_seg02_clip_07,Joey. 14519,More than she wants a million dollars,More than she wants to get married,More than she wants a baby,More than she wants to admit,More than she can say,1,How bad did Phoebe say she wants Monica back after Monica stood up from the chair?,136558,Friends,6.72-18.89,friends_s10e12_seg02_clip_20,More than she wants to get married 14520,Put on dialysis again ,Total body irradiation ,Start her on chemo ,Put her on methadone ,Give her new blood ,1,Which treatment does House want the team to run on the patient after she failed the timed bleeding test?,136559,House M.D.,0-13.65,house_s05e13_seg02_clip_04,Total body irradiation 14521,Out the door. ,Through the curtain. ,To the cash register. ,To the coffee house. ,To the restaurant. ,1,Where does the man in the hat go after he is done talking to Richard?,136560,Friends,25.63-35.4,friends_s03e13_seg02_clip_00,Through the curtain. 14522,Phoebe peeked out of the door and greeted her.,Monica peeked out of the door and greeted her.,Rachel peeked out of the door and greeted her.,Monica and Phoebe peeked out of the door and greeted her.,Ross and Chandler peeked out of the door and greeted her.,2,Who greeted Ross' mother when he was talking to her in the hallway?,136561,Friends,41.02-59.03,friends_s08e23-24_seg02_clip_05,Rachel peeked out of the door and greeted her. 14523,1965.,1964.,1966.,1968.,1967.,4,What year was the GTO auto repair manual for when Beckett and Castle discovered she it at Tracy's house?,136562,Castle,44.17-49.69,castle_s04e15_seg02_clip_15,1967. 14524,House wanted to do a brain biopsy on a 48 year old dead man..,It was certain they would find something.,The numbers pointed House to that decision.,It was what his medical books said.,He flipped a coin.,0,tWhat was the reason House said they should do a brain biopsy when they were discussing options of what to do?,136563,House M.D.,18.49-33.45,house_s04e04_seg02_clip_04,House wanted to do a brain biopsy on a 48 year old dead man.. 14525,House,Cameron,Wilson,Cuddy,Foreman,0,Who is with Chase when he is in a patient's room mointoring her heart?,136564,House M.D.,59.82-68.1,house_s02e14_seg02_clip_19,House 14526,Mike,Charlie,Ross,Joey,Monica,1,Who was close by and overheard Rachael and Phoebe's conversation when they were talking?,136565,Friends,38.88-45.73,friends_s09e22_seg02_clip_07,Charlie 14527,That Christmas was overrated ,Thas she need not look any further than the brown tree she presented to her,That her apartment was too small for a Christmas Tree,That Phoebe had hated Christmas since she was a little girl,That she used to have a small Christmas tree that she kept outside her box when she was living on the street,1,What did Phoebe tell Monica after she said she was there to pick out her Christmas Tree,136566,Friends,29.76-44.79,friends_s03e10_seg02_clip_14,Thas she need not look any further than the brown tree she presented to her 14528,Barney,Phil,Lilly,Marshall,Robin,0,Who says they are afraid of getting the burger pregnant after Lilly says she wants the burger inside of her,136567,How I Met You Mother,34.99-45.11,met_s04e02_seg02_clip_17,Barney 14529,Pink,Black and yellow,Blue and White,Red,Yellow and green,2,What color is the scrub hat Addison is wearing when preforming surgery?,136568,Grey's Anatomy,56.97-62.92,grey_s03e25_seg02_clip_12,Blue and White 14530,happy,sad,irritated,hurt,gloomy,0,How did Sheldon feel when Alicia passed the quizz?,136569,The Big Bang Theory,23.61-35.12,s02e19_seg02_clip_03,happy 14531,Castle went through some papers.,Castle had got on the computer.,Castle went to use the bathroom,Castle made a phone call,He took pictures of another phone,4,What did Castle do before he walked out the office?,136570,Castle,91.17-98.03,castle_s08e09_seg02_clip_04,He took pictures of another phone 14532,smoking and drinking,sleeping,eating,reading,drawing,0,What is House doing with his patient when they are sitting in the dark in the hospital room?,136571,House M.D.,59.29-68.98,house_s03e24_seg02_clip_24,smoking and drinking 14533,Rachel,Joey,Ross,Chandler,Phoebe,3,Who asks about getting Emma after Amy said she should get her?,136572,Friends,31.2-48.54,friends_s09e08_seg02_clip_11,Chandler 14534,help her fold clothes,keep a secret,turn on the drier,turn on the washer,leave,1,What did Penny ask Sheldon when they were doing laundry?,136573,The Big Bang Theory,35.41-46.33,s02e01_seg02_clip_02,keep a secret 14535,His hotel.,His garage.,His fence in his yard.,In his dressing room.,On the set of his show.,0,Where did WInters say he shot a hole in the wall before he sat down? ,136574,Castle,34-55.86,castle_s05e06_seg02_clip_23,His hotel. 14536,He is happy,He is sad,He is angry,He is alarmed,He is jealous,0,How does Castle react after seeing Esposito smiling?,136575,Castle,89.31-93.03,castle_s08e05_seg02_clip_03,He is happy 14537,Megan Brooks gave Lopez a phone,Megan Brooks gave Lopez a paper,She gave Lopez a book,She did nothing,She gave Ryan a hug,1,What did Megan Brooks do when she was talking to Lopez about his speech?,136576,Castle,27.78-36.37,castle_s07e18_seg02_clip_02,Megan Brooks gave Lopez a paper 14538,That she is in love with him,That he can get himself out of the handcuffs,That she is in love with Monica,That she is quitting her job,That she wants to go jogging,1,What is Rachel saying after Chandler is done talking?,136577,Friends,35.3-40.05,friends_s04e03_seg02_clip_10,That he can get himself out of the handcuffs 14539,Tommy told Olivia he didn't want the children going down there and getting hurt.,Tommy told Olivia that no one was supposed to ever know about the bunker.,Tommy told Olivia that he knew she never would have approved the bunker.,Tommy told Olivia he didn't want to worry her and didn't want the city to know.,"Tommy told Olivia he wanted to tell her, he was just waiting for the right time.",3,Why did Tommy say he didn't tell his wife about the bunker after she turned to him for an explanation?,136578,House M.D.,19.75-35.37,house_s08e08_seg02_clip_05,Tommy told Olivia he didn't want to worry her and didn't want the city to know. 14540,Thomas gave Beckett a phone number,Thomas gave Beckett coffee,Thomas poured drink into Beckett mouth,Thomas gave Beckett Tea,Thomas gave Beckett can of soda,2,What did Thomas do when Beckett was sitting on a chair?,136579,Castle,65-74.86,castle_s06e22_seg02_clip_18,Thomas poured drink into Beckett mouth 14541,A stack of books. ,A puppy.,A cardboard box. ,A baseball bat. ,A lap top. ,2,What does Leonard pick up before he leaves the room? ,136580,The Big Bang Theory,32.21-42.22,s06e07_seg02_clip_08,A cardboard box. 14542,You really really need to consider your options.,There are some many fish in the sea!,Just go out and explore.,Don't settle down too early.,This is your time. You're young You're weird. Chicks did that.,4,What does Ross say after agreeing with Joey?,136581,Friends,32.98-41.3,friends_s03e18_seg02_clip_09,This is your time. You're young You're weird. Chicks did that. 14543,He is mad because he had a fight with Leonard. ,Amy doesn't get anything for Sheldon. ,He is mad because he had a fight with Amy. ,Amy knows he doesn't like Christmas and every year she forces him to celebrate it. ,He is mad because he has to buy something for Amy. ,3,Why is Sheldon so mad when he is with Bernadette?,136582,The Big Bang Theory,45.62-60.02,s08e11_seg02_clip_03,Amy knows he doesn't like Christmas and every year she forces him to celebrate it. 14544,Foreman,Henry,Steven,Paul,William,0,Who was House talking to when he was at the door way?,136583,House M.D.,0-5.51,house_s03e05_seg02_clip_05,Foreman 14545,He found his birth certificate,That was going to be his son's name if he had one,It was suggested by Alexis,He liked the name after hearing it at the store,He reminds him of his favorite TV character,1,Why does Castle name the baby Cosmo after arriving with a couple of things?,136584,Castle,58.54-63.49,castle_s06e10_seg02_clip_04,That was going to be his son's name if he had one 14546,That she felt sick too.,That she was going home.,That she thought the doctors weren't doing enough.,That she thought she had done this to him.,That she thought he had cancer. ,3,What did the female friend of the patient say to the male doctor when they were talking in the hospital?,136585,House M.D.,0-9.62,house_s01e03_seg02_clip_03,That she thought she had done this to him. 14547,Rope,Phone,Bullet,Gun,Scissors,3,What is in Becketts hand when she is talking to nurse Lockett?,136586,Castle,1.82-8.18,castle_s05e17_seg02_clip_24,Gun 14548,Mandy's mother said she was going to sue everyone.,Mandy's mother said the body was not that of Mandy.,Mandy's mother said she wanted all of Mandy's things.,Mandy's mother said she wanted her body released immediately.,Mandy's mother said she wanted to talk to Roy Montgomery.,1,Why did Lanie have a problem when she called Beckett?,136587,Castle,75.23-82.79,castle_s06e13_seg02_clip_04,Mandy's mother said the body was not that of Mandy. 14549,A white dress. ,A red dress. ,A blue dress. ,A yellow dress. ,An orange dress. ,0,What are Monica and Phoebe looking at when they are sitting on the couch?,136588,Friends,32.19-33.98,friends_s07e17_seg02_clip_10,A white dress. 14550,A 3D printer,A thermos,His leg,A stack of books,A TV,0,What does Raj have his hand on when Roger walked up to him?,136589,The Big Bang Theory,31.2-32.73,s06e14_seg02_clip_09,A 3D printer 14551,They are performing the needle aspiration on the patient's arm,They are performing the needle aspiration on the patient's buttock,They are performing the needle aspiration on the patient's penis,They are performing the needle aspiration on the patient's leg,They are performing the needle aspiration on the patient's neck,2,Which body part are they performing the needle aspiration before they discuss relationships,136590,Grey's Anatomy,0-14.06,grey_s02e10_seg02_clip_08,They are performing the needle aspiration on the patient's penis 14552,"Park meant that House believed in a higher power, not random chance.",Park meant that House was intrigued by coincidences.,Park meant that House would get angry with Adams if Adams mentioned coincidences.,Park meant that House would have already considered that it might be a coincidence.,Park meant that House wouldn't accept coincidence as part of a diagnosis.,4,What did Park mean when she brought up House's opinion on coincidences?,136591,House M.D.,0-13.64,house_s08e20_seg02_clip_05,Park meant that House wouldn't accept coincidence as part of a diagnosis. 14553,cans,cellphone,microphone,telephone,nothing ,2,What was Taub speaking into when he was talking to Jackson?,136592,House M.D.,14.13-20.51,house_s05e16_seg02_clip_02,microphone 14554,His video game system.,A tool-kit.,A pizza.,A candle making set.,Everything they need to make jewelry molds.,4, What does Howard bring when he visits the girls?,136593,The Big Bang Theory,18.31-28.07,s07e07_seg02_clip_09,Everything they need to make jewelry molds. 14555,How can they improve Ross's looks?,How funny is Ross?,How dumb is Ross?,How can Ross gain forgiveness from his girlfriend?,How can Ross ask a girl out?,2,What does Chandler tell Ross is the most important question when the three men are talking in the apartment?,136594,Friends,2.52-11.35,friends_s03e16_seg02_clip_03,How dumb is Ross? 14556,She said she can hear you. ,She stormed into his bedroom.,She told Bernadette he wasn't there.,She asked was he okay.,She said she thought Howard must not be feeling well. ,0,What was Howard's mothers reaction after he told her to tell Bernadette that he wasn't home?,136595,The Big Bang Theory,34.66-44.39,s05e05_seg02_clip_12,She said she can hear you. 14557,Penny put the bowl in teh microwave.,Penny served food to Leonard.,Penny put the bowl in the fridge.,Penny drop the bowl on the floor.,Penny stir and tasted the food.,4,What did Penny after she finished to pour all the food in the bowl?,136596,The Big Bang Theory,30.61-68.03,s05e07_seg02_clip_08,Penny stir and tasted the food. 14558,Ross apologizes because he ruined Monica's kitchen.,Ross apologizes because he scared Monica.,Ross apologizes because he had his feet on Monica's coffee table.,Ross apologizes because he lost Monica's keys.,Ross apologizes because he damaged Monica's robe.,1,Why does Ross apologize to Monica when talking in the kitchen?,136597,Friends,56.13-60.03,friends_s03e20_seg02_clip_16,Ross apologizes because he scared Monica. 14559,I sometimes cheat.,I like to cheat.,Cheaters are great.,I love play with cheaters.,I don't play with cheaters.,4,What was saying Ross when talking to Monica?,136598,Friends,51.93-54.25,friends_s03e09_seg02_clip_10,I don't play with cheaters. 14560,He was holding a food menu.,He was holding his phone.,He was holding a glass.,He was holding a bat.,He was holding a ball.,0,What was Ross holding when he said same for me?,136599,Friends,0-4.62,friends_s02e05_seg02_clip_07,He was holding a food menu. 14561,cake,steak,salad,shrimp,lobster,4,What was Joy eating that she burped up before going to the restroom with Bernadette?,136600,The Big Bang Theory,29.25-39.29,s04e05_seg02_clip_13,lobster 14562,He answers his phone.,He starts taking notes.,He gets a refill for hos coffee.,He starts to pace.,He sits down.,0,What does Castle do before he leaves the room?,136601,Castle,76.27-84.35,castle_s08e17_seg02_clip_02,He answers his phone. 14563,Leonard is holding his cell phone.,Leonard is holding a baseball bat. ,Leonard is holding a shovel.,Leonard is holding a coat hanger.,Leonard is holding a mock lightsaber.,4,What is Leonard holding when he comes out of the bedroom?,136602,The Big Bang Theory,18.71-40.48,s01e02_seg02_clip_04,Leonard is holding a mock lightsaber. 14564,got dressed,left,got off the bed,covered herself,Threw her hands up,4,What did Rachel do when the doctor was holding the clipboard?,136603,Friends,46.69-49.43,friends_s08e22_seg02_clip_08,Threw her hands up 14565,Red,Black,White,Blue,Yellow,0,"What color was the vehicle they passed when Howard said, ""Tell me some things you like""? ",136604,The Big Bang Theory,28.23-30.71,s07e03_seg02_clip_06,Red 14566,The papparazzi.,A clown.,The pizza man.,Espisito,A man on a bike. ,0,Who takes a photo of Beckett and Castle when they are walking?,136605,Castle,62.12-69.77,castle_s04e13_seg02_clip_03,The papparazzi. 14567,A tea kettle,A vase of flowers,A clock,A box,A purse,1,What was on the table by the window when Monica and Phoebe were talking about how well Monica knew Phoebe?,136606,Friends,10.73-18.86,friends_s03e14_seg02_clip_10,A vase of flowers 14568,Meredith pushes a solution into the patient's IV and turns off the machines.,Meredith removes the IV from the patient's arm.,Meredith gives the patient a shot and begins drawing blood.,Meredith picks up the scalpel and begins cutting away at the tumor.,Meredith unplugs the machine that's pumping the patient's heart.,0,What does Meredith do after Richard says he will take care of the procedure?,136607,Grey's Anatomy,30.97-40.86,grey_s02e15_seg02_clip_20,Meredith pushes a solution into the patient's IV and turns off the machines. 14569,Serena tells Castle she is going to find her sister.,Serena tells Castle she is going to wait for Castle at home.,Serena tells Castle she is going back to her hotel.,Serena tells Castle she is going to lunch with Beckett.,Serena tells Castle she is going back to California.,2,Where does Serena tell Castle she is going before leaving the police precinct?,136608,Castle,40.9-45.13,castle_s04e05_seg02_clip_26,Serena tells Castle she is going back to her hotel. 14570,Ted starts crying,Ted stands up,Ted goes to sleep,Ted yells at Robin,Ted closes his book,4,What does Ted do after Robin enters the apartment?,136609,How I Met You Mother,37.22-42.62,met_s06e13_seg02_clip_15,Ted closes his book 14571,Chase was worried the patient would blame him for the incident.,Chase was concerned that he would have to be the one to tell House the bad news.,Chase expressed concern about the patient going through so much pain.,Chase informed Foreman that the patient couldn't have a 3rd hip replacement surgery.,Chase told Foreman that their malpractice insurance would increase.,4,Why was Chase concerned Powell may fall and break a hip after Foreman mentioned worry over Powell's heart rate over 130? ,136610,House M.D.,61.4-63.72,house_s03e03_seg02_clip_01,Chase told Foreman that their malpractice insurance would increase. 14572,On a kitchen barstool. ,"On a beach towel, at the beach. ",On a red leather couch. ,On a Barker lounger. ,On a deck chair. ,2,"What is Rachel sitting on when she says,""How do you know where Dr. Drake Ramoray leaves off and Joey Tribbiani begins?""",136611,Friends,15.75-22.05,friends_s06e15-16_seg02_clip_27,On a red leather couch. 14573,Anita?,House,Cuddy,Wilson,Chase,4,Who is Foreman talking to when he says that his patient is still sick?,136612,House M.D.,0-6.23,house_s08e12_seg02_clip_19,Chase 14574,Chase checks the closet first,Chase checks the medicine cabinet first,Chase checks the kitchen cabinets first,Chase checks the refrigerator first,Chase checks the kitchen drawers first,3,Where is the first place Chase checks when they get into their patient's apartment,136613,House M.D.,59.95-71.13,house_s07e08_seg02_clip_05,Chase checks the refrigerator first 14575,Are you going to ever love me?,Ready to stop cheating?,Ready for a divorce?,Are you ready to go,Why are you in here?,3,WHat does Addison ask Derek after getting on the elevator?,136614,Grey's Anatomy,17.72-25.9,grey_s02e08_seg02_clip_18,Are you ready to go 14576,In the first row.,In the second row.,Third row.,Fourth row.,There are no musks.,0,Where does Howard say the musks are located after Leonard opens the case?,136615,The Big Bang Theory,22.51-24.01,s02e21_seg02_clip_04,In the first row. 14577,Rachel pours herself a glass of water.,Rachel pours herself a glass of white wine.,Rachel pours herself a glass of tea.,Rachel pours herself a glass of red wine.,Rachel pours herself a cup of coffee.,3,What sort of drink does Rachel pour for herself when listening to Ross and Julie?,136616,Friends,25.74-62.03,friends_s02e01_seg02_clip_03,Rachel pours herself a glass of red wine. 14578,that she has typhus,that she has the messles,that she has HIV,that she has small pox. ,that she has cancer,3,what does taub believe the patient has after doing his examination?,136617,House M.D.,54.77-66.79,house_s07e07_seg02_clip_04,that she has small pox. 14579,They laugh,They roll their eyes,They applaud ,They all leave the living room,They throw pillows at him,0,"What does Penny, Raj, Bernadette, Leonard, and Sheldon do after hearing Howard's Al Pacino impersonation? ",136618,The Big Bang Theory,14.11-23.41,s06e23_seg02_clip_06,They laugh 14580,It can make one-millimeter incisions,It can do non invasive incisions,It can make one-nanometer incisions,It can go through the first laye of skin like butter,There is no surgical tool,0,What is the new surgerical tool capable of when House is testing it out on Cameron?,136619,House M.D.,8.46-12.02,house_s02e24_seg02_clip_22,It can make one-millimeter incisions 14581,She eats an apple. ,She closes the door. ,She walks upstairs. ,She gets something from the fridge. ,She sits down next to him. ,4,What does Alexis do when she is talking to Castle in their apartment?,136620,Castle,0.35-5.3,castle_s04e13_seg02_clip_27,She sits down next to him. 14582,Monica picks up a lemon.,Monica picks up a watermelon.,Monica picks up a block of cheese.,Monica picks up a potato.,Monica picks up a bottle of water.,0,What does Monica pick up after grabbing the grater?,136621,Friends,19.61-20.84,friends_s03e09_seg01_clip_00,Monica picks up a lemon. 14583,She may try to poison him.,"Then she want give him the information he needs,",She has already killed a cop.,She has deadly skills. She can use a sniper rifle and skilled Krav Maga.,She will ruin his reputation.,3,Why does Mason want Castle to be concerned when he says that Kendall is angry?,136622,Castle,2.25-9,castle_s08e14_seg02_clip_17,She has deadly skills. She can use a sniper rifle and skilled Krav Maga. 14584,His bedroom.,The bathroom.,Towards the front door.,Leaving the coffee shop.,Walking into his apartment. ,0,Where is Chandler going when Kathy thanks him for her gift?,136623,Friends,0-5.8,friends_s04e06_seg02_clip_19,His bedroom. 14585,Behind Charlie to her left.,Behind Ross to his right.,Directly behind Ross.,Behind Ross to his left.,Behind Charlie to her right.,3,Where is the TV when Charlie asked Ross why did he break up?,136624,Friends,50.75-57.48,friends_s09e23-24_seg02_clip_20,Behind Ross to his left. 14586,Pendleton ,Pulitzer.,Superbowl.,Nobel prize,Harpers,3,What Prize did Benjamin say he had before he sat down? ,136625,Friends,24.11-40.28,friends_s10e06_seg02_clip_12,Nobel prize 14587,Sheldon is sitting with Raj.,Penny is sitting with Raj.,Amy is sitting with Raj.,Leonard is sitting with Raj.,Stuart is sitting with Raj.,2,Who is sitting with Raj when Howard and Bernadette enter the apartment?,136626,The Big Bang Theory,1.85-7.1,s07e07_seg02_clip_09,Amy is sitting with Raj. 14588,They have their talk on Tuesday,They have their talk on Thursday,They have their talk on Friday,They have their talk on Monday,They have their talk on Wednesday,4,When are Taub and Rachel having their talk when they discuss their marriage?,136627,House M.D.,35.71-40.81,house_s06e18_seg02_clip_17,They have their talk on Wednesday 14589,"He said that Wilson nurtures his clients too much, making them feel like insecure babies.",He says that Wilson needs them to absolutely sure so he can manipulate them.,He said Wilson is not direct enough in his approach and should take his blunt approach instead.,"He says that Wilson needs them to feel good about saying ""yes"", prolonging the issues.","He says that Wilson needs them to feel good about saying ""yes"", so he could get what he wants.",3,"What is House's issue about Wilson's approach when it comes to getting patients to say ""yes""?",136628,House M.D.,80.52-82.7,house_s03e21_seg02_clip_02,"He says that Wilson needs them to feel good about saying ""yes"", prolonging the issues." 14590,6 pm,2 pm,3pm,1 pm,Between 5 and 7 pm,4,What was the time of death when the person died?,136629,Castle,6.83-10.92,castle_s03e08_seg02_clip_02,Between 5 and 7 pm 14591,In a chair. ,On the couch. ,On the floor. ,On a table. ,On the counter. ,2,Where is Phoebe sitting when she is in the coffee house?,136630,Friends,58.09-59.68,friends_s01e05_seg02_clip_00,On the floor. 14592,Phoebe says she could just hug her forever.,Phoebe says she could just steal her.,Phoebe says she could just look at her for days.,Phoebe says she could just take her for a ride.,Phoebe says she could squeeze the baby's little head.,4,What does Phoebe say she could do after she says the baby is so cute?,136631,Friends,23.15-30.06,friends_s08e23-24_seg02_clip_35,Phoebe says she could squeeze the baby's little head. 14593,She felt misunderstood.,She felt happy., She felt sad.,She felt confused.,She felt embarrassed.,4,How did Meredith feel when she was talking to Derek?,136632,Grey's Anatomy,46.01-69.48,grey_s01e01_seg02_clip_05,She felt embarrassed. 14594,Took Beckett's gun.,Sat his gun down.,Got back in the driver's seat.,Parked the car.,Pulled out a knife.,1,What did Gage do after Castle told him to make time?,136633,Castle,84.66-91.57,castle_s04e16_seg02_clip_13,Sat his gun down. 14595,Ryan said Adam killed Squirrelstein.,Ryan said Adam killed the gunman.,Ryan said Adam killed another robber.,Ryan said Adam killed a jogger.,Ryan said Adam killed a police officer.,0,Who did Ryan say Adam killed after he said Adam didn't kill Goldstein?,136634,Castle,58.52-64.2,castle_s03e04_seg02_clip_23,Ryan said Adam killed Squirrelstein. 14596,They don't like to stand. ,They needed to take a nap. ,They don't like to behave properly in stores. ,Sheldon is trying to decide between the xbox one and the ps4. ,They don't like to sleep at home. ,3,Why are Amy and Sheldon on the floor when they are at the store?,136635,The Big Bang Theory,53.72-60.02,s07e19_seg02_clip_15,Sheldon is trying to decide between the xbox one and the ps4. 14597,Cleaning the table.,Eating a sandwich,Looking at the paper.,Sweeping the floor.,Mopping.,2,What was Leonard doing before Sheldon took the paper?,136636,The Big Bang Theory,0-60.29,s03e16_seg02_clip_04,Looking at the paper. 14598,Cameron,Wilson ,Foreman,Cuddy,Rachel ,4,Who was Tuab having dinner with when he was eating Chinese food. ,136637,House M.D.,42.64-47.17,house_s05e03_seg02_clip_12,Rachel 14599,Do his laundry,Call 911,Leave immediately,Tuck Ted back into bed,Take off his shoe and sock to get the coin,4,What does Beckett think the killer did right after shooting Ted?,136638,Castle,21.49-31.79,castle_s06e12_seg02_clip_07,Take off his shoe and sock to get the coin 14600,an ice pack,a nurse,a gown,his x-rays,a syringe,4,Where did Cuddy say she was going after House said he remembered a thigh muscle being there when he had his pants down?,136639,House M.D.,7.6-19.22,house_s02e13_seg02_clip_18,a syringe 14601,A striped coat,A red coat,A black coat,A silver coat,A green coat,4,What color coat was Martha wearing after entering the police station? ,136640,Castle,24.69-30.32,castle_s06e02_seg02_clip_15,A green coat 14602,Ted compliments her feet,Ted compliments her hair,Ted compliments her eyes,Ted compliments her smile,Ted compliments her hands,2,"When talking to Barney, What part of Ronin's body does Ted compliment before kissing her?",136641,How I Met You Mother,0-15.51,met_s02e01_seg02_clip_02,Ted compliments her eyes 14603,A News Paper Ad.,A Broadway Casting Ad for a Private Book Club Party.,A magazine ad.,An online ad.,A commercial ad.,1,"Where did Castle find his name ""Richard Castle"" printed before there is a video of him purchasing earrings?",136642,Castle,9.9-16.65,castle_s05e05_seg02_clip_22,A Broadway Casting Ad for a Private Book Club Party. 14604,She was standing at the counter.,She was sitting at a table.,She was over by the restroom.,She was standing at the entrance.,She was lounging on the couch.,0,Where was the girl Joey referred to when he pointed her out to Monica?,136643,Friends,3.74-13.6,friends_s09e04_seg02_clip_00,She was standing at the counter. 14605,coloring a picture,on the phone ,checking her email,playing with cards,writing a letter ,3,what is the girl at house's desk doing when adams is talking to him about a patient,136644,House M.D.,4.45-8.01,house_s08e17_seg02_clip_03,playing with cards 14606,Monica has a child.,Monica has a new toy.,Monica has a kite.,Monica has a play.,Monica has a playboy.,4,What does Monica have when Ross and the others come over?,136645,Friends,41.57-50.35,friends_s04e13_seg02_clip_08,Monica has a playboy. 14607,An elevator.,An office room.,The closet., The bathroom. ,The cafeteria.,0,What does Beckett walk out of before she meets Ryan and Esposito?,136646,Castle,63.23-70.74,castle_s05e24_seg02_clip_21,An elevator. 14608,a tablet ,a clipboard,a picture,he has a black folder,a laptop,3,What does Brant have in his hands when he was with Hayes in his patient room?,136647,House M.D.,0-7.2,house_s08e15_seg02_clip_22,he has a black folder 14609,He had a mother in Idaho,He had no living family,He was adopted ,He had a wife ,He has older children in college,0,What was Alyssa's response when asked if Mr. Hayes had family?,136648,Castle,17.08-30.47,castle_s04e05_seg02_clip_02,He had a mother in Idaho 14610,He didn't like those plates,He wanted to save them until the queen came.,He hoped she forgets about them.,He was buying her new plates.,He didn't want her to know they were broken.,4,Why did Chandler tell Monica they shouldn't use the plates until after a long time?,136649,Friends,49.83-57.53,friends_s09e08_seg02_clip_22,He didn't want her to know they were broken. 14611,Green,Blue,Grey,Red,Tan,3,"What color is the sheet that Leslie is wraped when she say's ""Boy,your heart's...""?",136650,The Big Bang Theory,0-9.95,s02e16_seg02_clip_04,Red 14612,Cans of diet soda for everybody,Glasses of wine and wine bottles,Books for everybody to read,A pitcher of alcohol and blue cups,The Dungeons and Dragons rule book,3,What does Penny bring into the living room when the whole gang is playing Dungeons and Dragons?,136651,The Big Bang Theory,29.12-36.32,s06e23_seg02_clip_06,A pitcher of alcohol and blue cups 14613,They made Monica vice president of the company.,They made Monica a manager.,They did not give Monica any other promotion.,They made Monica head of purchasing.,They made Monica CEO.,3,Which other promotion besides head lunch chef did Monica receive when she spoke to her boss?,136652,Friends,23.41-35.42,friends_s02e05_seg02_clip_03,They made Monica head of purchasing. 14614,to get their son a cast,to get their son a ballon,to get their son a movie ,to get their son an MRI ,to get their son some food ,3,What did House tell his team to do when the team was confronted by the couple ,136653,House M.D.,0-6.84,house_s05e16_seg02_clip_02,to get their son an MRI 14615,Clowns,Flowers,White dots,Triangles,Stripes,2,What was on Ross's cup when he and Joey were in the coffee shop sitting on the couch?,136654,Friends,44.97-46.71,friends_s07e17_seg02_clip_08,White dots 14616,To show up Raj,He's always wanted one,He likes pain,To try to have sex with a girl,Because he lost a bet ,3,Why is Howard getting a tattoo before Raj tries to talk him out of it?,136655,The Big Bang Theory,47.94-58.46,s03e03_seg02_clip_11,To try to have sex with a girl 14617,mourge,zoo,doctors,mecanic,vet,4,where did ross tell chandler and joey where he came from after coming into the coffee shop?,136656,Friends,33.32-38.4,friends_s01e21_seg02_clip_07,vet 14618,He promised to be on the ski trip in order to talk to a client.,He has been late to work too many times in the last month.,They were making a decision and it might put him at a disadvantage if he didn't show up.,He would be the only employee not at the company annual retreat.,He would have to buy the office bagels for a month if he missed the meeting.,2,Why did Ted say he didn't want to call the firm to tell them he missed his flight after arriving at the airport late?,136657,How I Met You Mother,0-62.8,met_s02e15_seg02_clip_00,They were making a decision and it might put him at a disadvantage if he didn't show up. 14619,Sitting on the couch,Sitting at the desk,Standing in the kitchen,Sitting on the floor,Standing near the door,0,Where is Leonard in the apartment when Lesley and Sheldon are arguing,136658,The Big Bang Theory,30.86-49.37,s02e02_seg02_clip_15,Sitting on the couch 14620,Nothing,Chandler,girlfriend,perfect,Monivs ,1,What reason did Monica and Phoebe agree when chandler asked ?,136659,Friends,24.91-58.61,friends_s02e08_seg02_clip_14,Chandler 14621,files ,coda,ruler,pen,coffee mug,4,What was was Beckett holding when she was talking to Castle? ,136660,Castle,0-13.65,castle_s05e06_seg02_clip_06,coffee mug 14622,On a stool in the kitchen,On the ottoman,Next to Leonard,In the armchair,On the sofa next to Howard.,4,Where did Raj sit when he he asked about the name 'Buzz'?,136661,The Big Bang Theory,31.65-37.64,s05e15_seg02_clip_07,On the sofa next to Howard. 14623,She sat beside Phoebe.,She sat on the floor.,She stood by Monica.,She sat on the sofa.,She laid on the sofa.,3,Where did Rachel go after she walking into the room?,136662,Friends,0-9.98,friends_s02e19_seg02_clip_13,She sat on the sofa. 14624,Book.,Magazine.,Ring.,Tray.,Bag.,1,What holds Bernadette when she sits on a chair?,136663,The Big Bang Theory,3.48-57.98,s08e12_seg02_clip_02,Magazine. 14625,Raj gave her a lot of money. ,Raj handed her a glass of wine.,Raj bought her a new car.,Raj bought her a new house.,Raj gave her tickets for a round trip to Paris.,1,How did Raj show his thanks to Bernadette when she said thank you before sitting down?,136664,The Big Bang Theory,1.77-59.02,s07e10_seg02_clip_05,Raj handed her a glass of wine. 14626,Ross is sitting on a bar stool.,Ross is sitting on the floor.,Ross is sitting on a couch.,Ross is sitting on a recliner.,Ross is sitting at the kitchen chair.,2,Where is Ross sitting when Rachel comes in to talk to him?,136665,Friends,0-10.44,friends_s05e16_seg02_clip_14,Ross is sitting on a couch. 14627,She was scared.,She was crying.,She was laughing.,She was tired.,She fell. ,0,Why was Rachel cowering to Joey when watching the movie?,136666,Friends,2.94-10.54,friends_s08e12_seg02_clip_21,She was scared. 14628,jealous,happy,tired,angry,upset,0,How did Howard feel when Raj was working on the space probe?,136667,The Big Bang Theory,14.21-38.29,s08e21_seg02_clip_03,jealous 14629,4,10,34,8,20,2,how many civilian casualties did adams say there were when watching a video of a bombing with the team?,136668,House M.D.,6.58-13.63,house_s08e15_seg02_clip_00,34 14630,On the seat,On the table,On the wall,On the compter,On the tray,0,Where did Mason place his hands when he got to the seat?,136669,Castle,50.3-55.95,castle_s08e14_seg02_clip_05,On the seat 14631,Alexis ID,Malcoms files,Castles past files,Hayleys files,Nothing,1,What did hayley tell alexis to delete when talking about malcom?,136670,Castle,31.17-35.62,castle_s08e14_seg02_clip_18,Malcoms files 14632,Searched Vikram,Shot VIkram,handcuffed vikram,pushed Vikram,Took Vikram's wallet,0,What did Beckett do when Vikram explained that he was just a data cruncher at AG's office?,136671,Castle,54.47-63.93,castle_s08e02_seg02_clip_02,Searched Vikram 14633,her glasses,brush,Hand cream,glass of water,a book,2,What does Bernadette pick up when she is explaining things aren't the same for Sheldon?,136672,The Big Bang Theory,4.13-8.56,s05e21_seg02_clip_10,Hand cream 14634,Pepsi.,Lemonade.,Orange juice.,Milk.,Tomato juice.,2,What beverage is Sydney offering people when she is walking around the waiting room?,136673,Grey's Anatomy,16.28-20.69,grey_s03e15_seg02_clip_23,Orange juice. 14635,I think you have been bribed to say that.,Do they pay you to say that?,Do you really believe that?,"Okay, are they listening as she looks up and points to the ceiling.",No way.,3,What does Phoebe do and ask the receptionist after the receptionist says she thinks this is a great place to work?,136674,Friends,22.18-30.68,friends_s09e21_seg02_clip_06,"Okay, are they listening as she looks up and points to the ceiling." 14636,Penny's Apartment.,Sheldon's apartment.,The Lobby of Leonard's building.,The cafeteria.,In the college hallway. ,3,Where is Dave and Penny when they are talking about tequila shots?,136675,The Big Bang Theory,30.03-35.74,s02e11_seg02_clip_09,The cafeteria. 14637,Gets up,Eats a donut,Drinks a cup of coffee,Reads the newspaper,Shakes Wilson's hand,2,What does House do before the mom and dad come over?,136676,House M.D.,5.39-11.27,house_s01e02_seg02_clip_19,Drinks a cup of coffee 14638,Black,White,Color-blind,Hispanic,Asian,2,What race does Martha tell Alexis to enter when she is updating her profile?,136677,Castle,38.82-54.26,castle_s02e08_seg02_clip_00,Color-blind 14639,Because was an accident.,Because Leonard was upset.,Because Leonard wanted to show that Superman is vulnerable.,Because Leonard is silly.,Because Leonard wanted to spill the content of the bottle.,2,Why Leonard throw a bottle after pointing one?,136678,The Big Bang Theory,23.88-62.02,s01e05_seg01_clip_00,Because Leonard wanted to show that Superman is vulnerable. 14640,An oil painting,A computer,A yearbook,A blanket,A monkey,2,What did Rachel set on the couch before Ross said she didn't photograph well,136679,Friends,0-8.14,friends_s08e09_seg02_clip_15,A yearbook 14641,Laura Cambridge's,George Washington's,Selena's,John Lennon's,The pope's,0,who's murder are then talking about when they are in the room?,136680,Castle,4.57-91.36,castle_s04e12_seg02_clip_20,Laura Cambridge's 14642,They are in Penny's apartment. ,They are in Amy's apartment. ,They are in Bernadette's apartment. ,They are at Howard's house. ,They are at Sheldon's apartment. ,0,"Where are Bernadette, Amy, and Penny when they are hanging out?",136681,The Big Bang Theory,3.06-16.23,s08e07_seg01_clip_00,They are in Penny's apartment. 14643,Monica and Chanler were talking about Rachel ,Monica and Chanler were talking about going to Chanler's company party,Monica and Chanler were talking about Joey,Monica and Chanler were not talking at all,Monica and Chanler were talking about Ross,1,What were Monica and Chaler talking about after they walked into the apartment?,136682,Friends,6.51-12.72,friends_s08e10_seg02_clip_06,Monica and Chanler were talking about going to Chanler's company party 14644,Cristina realized Burke was angry with her. ,Cristina and Burke had never met before. ,Cristina was surprised when Burke called her Meredith by mistake. ,The surprise Cristina had was because she thought Burke had been fired. ,Cristina realized that Burke had a crush on her. ,0,Why was Cristina surprised when she and Burke were talking? ,136683,Grey's Anatomy,0.87-12.64,grey_s03e04_seg02_clip_12,Cristina realized Burke was angry with her. 14645,She couldn't prove anything at all,he had done nothing wrong,because she didn't want to implicate Scarlett as her source ,She wanted to tail him,she didn't want to scare the perp off ,2,Why did Becket arrest the perp when walking on the street,136684,Castle,0-23.47,castle_s02e09_seg02_clip_19,because she didn't want to implicate Scarlett as her source 14646,He is holding a notepad with her script,a blanket,A stuffed animal,a dvd,a remote,0,What is marshall holding when Lilly is talking to Robin on the phone?,136685,How I Met You Mother,55.78-59.03,met_s06e05_seg02_clip_17,He is holding a notepad with her script 14647,Rubbed Heathers left hand,Rubbed Heathers right hand,Kissed Heather,Hugged Heather,Slap Heather,0,"What Did Heather's mom (woman next to heather (non doctor)) do to Heather after Heather said ""I like it""?",136686,Grey's Anatomy,19.22-28.39,grey_s03e12_seg02_clip_03,Rubbed Heathers left hand 14648,A teenager.,A toddler.,A child.,A baby.,An adult.,3,Who is Mr Mason's son revealed to be before Chase finishes discussing his treatment?,136687,House M.D.,52.97-54.75,house_s02e22_seg02_clip_14,A baby. 14649,blue,red,green,yellow,black,2,what color beading was the couple sitting on when talking,136688,House M.D.,0-8.8,house_s07e18_seg02_clip_25,green 14650,Chandler says he can believe it,Chandler doesn't react at all,Chandler says he can't believe it either,Chandler says he didn't hear anything,Chandler wasn't paying attention to Rachel,0,How does Chandler react to Rachel when she asks him if he could believe that?,136689,Friends,33.2-42.02,friends_s03e10_seg01_clip_00,Chandler says he can believe it 14651,Because the crowd screams at her.,Because the crowd hates her.,Because the crowd loves her.,Because the crowd hits her.,Because the crowd misses her.,2,Why is Monica excited when Chandler shows up?,136690,Friends,7.68-12.49,friends_s09e13_seg02_clip_22,Because the crowd loves her. 14652,Soda.,Boogers.,Apple Juice.,Wine.,Food.,3,What did Joey say came out of his nose after laughing so hard?,136691,Friends,54.25-58.03,friends_s08e12_seg02_clip_10,Wine. 14653,to go to his place,to go to a sporting event,to attend a lecture,to have breakfast,"get a hamburger ""or something""",4,What did Richard ask Monica when they were in the video store?,136692,Friends,36.62-42.72,friends_s03e13_seg02_clip_00,"get a hamburger ""or something""" 14654,A jacket,A cup,A plate,A book,A file,4,What did Stella have in her hand when she was standing in front of Ted?,136693,How I Met You Mother,9.3-12.91,met_s03e13_seg02_clip_13,A file 14655,In the infectious disease service,In the mourge,In her room,She checked out of the hospital,In surgery,0,Where goes George O'Malley tell Miss Larson her mother is after she asks Debbie?,136694,Grey's Anatomy,0-9.79,grey_s02e14_seg02_clip_19,In the infectious disease service 14656,House for his little games,Cuddy for making the team,Wilson for not guiding them,Cameron for allowing treatment ,Chase for leaving them alone,0,Who does Foreman blame for the doctors issues after wanting to get back to medicine? ,136695,House M.D.,51.99-74.08,house_s04e06_seg02_clip_11,House for his little games 14657,6 people was in the room when chandler and phoebe was talking,56 people was in the room when chandler and phoebe was talking,21 people was in the room when chandler and phoebe was talking,35 people was in the room when chandler and phoebe was talking,31 people was in the room when chandler and phoebe was talking,0,how many people was in the room when chandler and phoebe was talking,136696,Friends,17.7-44.55,friends_s10e10_seg02_clip_07,6 people was in the room when chandler and phoebe was talking 14658,A candy bar,A beer bottle,A newspaper ,A glass,A briefcase,3,What is Barney holding when his friend's nose starts to bleed?,136697,How I Met You Mother,15.16-20.11,met_s03e18_seg02_clip_13,A glass 14659,Howard,Penny,Bernadette,Sheldon,his sister,3,Who did Raj point at when that person walked into the apartment carrying a takeout container?,136698,The Big Bang Theory,27.16-31.74,s01e08_seg02_clip_12,Sheldon 14660,99.,30.,45.,55.,10.,3,What number does Joey have on his shirt when he talks to Monica?,136699,Friends,16.33-20.75,friends_s09e04_seg02_clip_00,55. 14661,Ties.,Cereal boxes.,Jackets.,Pants.,Tux.,1,What did House say was at the cleaners when Wilson invited him to dinner?,136700,House M.D.,64.54-69.88,house_s06e17_seg02_clip_10,Cereal boxes. 14662,Ted play music on the table.,Ted stands up..,Ted walks out the door.,Ted dances with Robin.,Ted leans his head towards Robin.,4,What does Ted do when he mentions Dr. Frankenstein?,136701,How I Met You Mother,0-1.51,met_s03e08_seg02_clip_12,Ted leans his head towards Robin. 14663,6ft Asian black hair,5ft Caucasian black hair,6ft Caucasian black hair,5ft Asian black hair,6ft Caucasian blond hair,2,Decribe the guy Harvey claims he saw after Laura left for work.,136702,Castle,51.31-57.62,castle_s04e12_seg02_clip_05,6ft Caucasian black hair 14664,French fries,Sandwich,Candy bar,Onion Rings,Pudding,4,What is Phoebe eating before Cliff says oh my God?,136703,Friends,0-9.76,friends_s08e23-24_seg02_clip_28,Pudding 14665,Noel,Bud,Mark,Frank,Richard,0,What is DuPre's first name after Beckett gives Mr. Kopek the form he signed?,136704,Castle,47.93-61.05,castle_s02e14_seg02_clip_25,Noel 14666,A paper.,A necklace.,A potato.,A ring.,A knife.,3,"What did Chandler pull out of his pocket before he said :Monica, will you marry me""?",136705,Friends,41.76-50.73,friends_s06e24-25_seg02_clip_41,A ring. 14667,there were 20,there were 1,there were 4,there were 3,there was none,2,how many people were standing behind Chandler when she was on the couch?,136706,Friends,0-18.19,friends_s03e23_seg02_clip_08,there were 4 14668,Monica says she will make the restaurant reviewer try her chicken noodle soup.,Monica says she will make the restaurant reviewer eat some of her popcorn.,Monica says she will make the restaurant reviewer try her bouillabaisse once more.,Monica says she will make the restaurant reviewer try her chocolate cake.,Monica says she will make the restaurant reviewer try her cookies.,2,How does Monica say she plans on getting her revenge after she explains her method to Joey?,136707,Friends,0-24.72,friends_s08e21_seg02_clip_02,Monica says she will make the restaurant reviewer try her bouillabaisse once more. 14669,The patient is thrashing and struggling.,The patient is smiling and laughing.,The patient is snifflinf and sobbing.,The patient is singing and dancing.,The patient is dozing and snoring.,0,How is the patient behaving when she's on the operating room table?,136708,House M.D.,8.42-14.85,house_s03e14_seg02_clip_23,The patient is thrashing and struggling. 14670,Beckett feels scared.,Beckett feels important.,Beckett feels like she is on the outside.,Beckett feels relieved.,Beckett feels loved.,2,"When Beckett pours her heart out to Lanie, what does she feel like when it comes to Castle and Alexis?",136709,Castle,31.69-41.06,castle_s06e07_seg02_clip_16,Beckett feels like she is on the outside. 14671,She pulls out her phone and calls his boss.,She yells at him and storms out.,She begins to argue with him.,She ignores him and talks to the technician instead.,She says no and leaves the room.,4,What does Cristina do after Bailey asks her if she has a problem?,136710,Grey's Anatomy,20.26-30.16,grey_s03e15_seg02_clip_21,She says no and leaves the room. 14672,Rachel talked to Central Perk's newest waitress.,Rachel talked to her boss.,Rachel talked to co-worker.,Rachel talked to Caitlin.,Rachel talked to the pizza boy.,3,Who was Rachel talking to before she met up with her friends?,136711,Friends,0-20.78,friends_s05e19_seg02_clip_17,Rachel talked to Caitlin. 14673,Sheldon told the rock to die peacefully.,Sheldon told the rock to never come back.,Sheldon told the rock to get lost.,Sheldon told the rock to kill a person.,Sheldon told the rock to feel free to take out a pigeon.,4,What did Sheldon say the rock can do freely before he casts it away?,136712,The Big Bang Theory,6.2-12.39,s10e09_seg02_clip_06,Sheldon told the rock to feel free to take out a pigeon. 14674,An extra pair of arms ,A maxi dress,An orange jumpsuit,A gray shirt,A black shirt,3,What was Ted wearing in the hallway when he was talking to Robin about the breakup?,136713,How I Met You Mother,13.23-58.79,met_s03e01_seg02_clip_16,A gray shirt 14675,the staples,the tube,the stitches,The scope,the camera,3,What does Kutner Tell Maggie he's going to remove when he's talking to her?,136714,House M.D.,1.52-7.58,house_s04e10_seg02_clip_15,The scope 14676,Because he is done with having male roommates and he is ready to branch out.,"Because he wants someone who is young, hot, and different.",Because he wants someone to learn from who is different than him.,Because he wants someone who will help raise his ducklings.,Because he wants someone he could fall in love with.,2,Why does Joey say he wants a girl roommate when he talks to Chandler? ,136715,Friends,31.63-62.03,friends_s06e03_seg02_clip_03,Because he wants someone to learn from who is different than him. 14677,House said his patient was fine.,House said his patient was suffering from leg pain.,House said his patient was coming down with a cold.,House said his patient was depressed.,House said his patient was feeling terrible.,3,How did House say his patient was doing when he was getting some coffee?,136716,House M.D.,0-1.82,house_s02e12_seg02_clip_21,House said his patient was depressed. 14678,sports wear,a farmers outfit,a cowboy outfit,pajamas,a tuxedo,4,what is joey wearing when he is giving out cologne samples at a department store?,136717,Friends,9.15-17.7,friends_s02e02_seg02_clip_04,a tuxedo 14679,I might,"No, I think I'll be okay",Let me grab a mask,Sophie you are fine,Your daughter is here.,1,What is George's response to Sophie after she asks him if he will catch her disease?,136718,Grey's Anatomy,38.73-47.63,grey_s02e14_seg02_clip_19,"No, I think I'll be okay" 14680,She remembered they had met before,She remembered it was his birthday,She reminded him it was Friday,She brought him a book she borrowed,She told him it was his wife's birthday,0,"Why did Taub say ""that memory of yours"" when speaking to Masters?",136719,House M.D.,41.86-55.81,house_s07e06_seg02_clip_25,She remembered they had met before 14681,Typing at a computer,Filling out paperwork,Driving a car,Eating dinner,Putting on makeup,2,What is Beckett doing when she hears the voicemail message on the phone?,136720,Castle,28.05-34.77,castle_s06e02_seg02_clip_23,Driving a car 14682,Taub,a suicidal woman,a dog,a cat,Cuddy's child,4,Who was Wilson and House examining when Wilson told House that it's a dime?,136721,House M.D.,0-9.4,house_s07e05_seg02_clip_14,Cuddy's child 14683,They are at the movies. ,They are in the apartment. ,They are in the car. ,They are at their favorite bar. ,They are in the store. ,3,"Where do Lily, Marshall, and Ted when they comfort Robin over the breakup?",136722,How I Met You Mother,25.02-37.22,met_s03e16_seg02_clip_10,They are at their favorite bar. 14684,Prints. ,Paint chips. ,Blood. ,DNA. ,Synthetic fibers. ,4,What did CSU find when they were processing the tarp and clothes?,136723,Castle,10.05-12.68,castle_s05e11_seg02_clip_03,Synthetic fibers. 14685,Because Denny can't go to the library.,Because Denny can't go to the chapel.,Because Denny can't go to his home.,Because Denny can't go to his job.,Because Denny can't go to the Super Bowl game.,2,Why Denny is upset with Burke when he is on a bed?,136724,Grey's Anatomy,42.45-48.38,grey_s02e24_seg02_clip_07,Because Denny can't go to his home. 14686,Sheldon is being videotaped.,Priya is being videotaped.,Barry is being videotaped.,Stuart is being videotaped.,Amy is being videotaped.,0,Who is being videotaped when they are in Sheldon's kitchen?,136725,The Big Bang Theory,35.35-46.21,s09e07_seg02_clip_06,Sheldon is being videotaped. 14687,He was looking for the waiter,He was thirsty,He needed to hail a cab,He had a call to make,He had to pee,4,Why did Chandler get up from the table when Him and Monica were having dinner With Phoebe and Gary?,136726,Friends,31.22-39.99,friends_s05e17_seg02_clip_17,He had to pee 14688,on Ross's head,on Joey's head,on the table in front of them,on Monica's head,on the baby's head,2,Where is the green party hat sitting when Joey is talking to Ross?,136727,Friends,5.6-8.81,friends_s07e14_seg02_clip_20,on the table in front of them 14689,50 years old,79 years old,14 years old,44 years old,66 years old,1,how old was the lady that house told she was pregnant when wilson was reminiscing on the story?,136728,House M.D.,54.57-58.54,house_s08e21_seg02_clip_15,79 years old 14690,Atlantic Net,Toro Net,Aloe Tera,Peace Mine,Red Cross,0,What company is mentioned when the meeting is taking place?,136729,House M.D.,8.18-20.24,house_s06e13_seg02_clip_07,Atlantic Net 14691,She falls asleep.,She falls off the couch.,She gets a cramp in her leg.,Joey tries to kiss her.,She picks up her wine glass and notices it is almost empty.,1,What happens to Rachel after she crosses her legs?,136730,Friends,36.66-44.68,friends_s06e15-16_seg02_clip_27,She falls off the couch. 14692,A nerd.,"A rough, rake, rapscallion.",A heretic.,A playboy.,A womanizer.,1,What names did Ted call the doorman after he called him a scoundrel?,136731,How I Met You Mother,0-10.37,met_s06e17_seg02_clip_13,"A rough, rake, rapscallion." 14693,Leonard,Penny,Raj,Howards,Bernadette ,0,Who interupted when Amy and Sheldon were recording? ,136732,The Big Bang Theory,42.5-47.46,s05e14_seg01_clip_01,Leonard 14694,He made fun of her,He left,He yelled at her,He hugged her,He cried,3,What did Ross do after Rachel said she didn't want to have to get a separate room for him too?,136733,Friends,6.93-11.98,friends_s03e07_seg02_clip_14,He hugged her 14695,Raj is sitting across from Amy.,Priya is sitting across from Amy.,Dave is sitting across from Amy.,Stuart is sitting across from Amy.,Barry is sitting across from Amy.,2,Who is sitting across the table from Amy when she is eating dinner?,136734,The Big Bang Theory,0-6.77,s09e10_seg02_clip_11,Dave is sitting across from Amy. 14696,calls for backup ,runs out of the room ,pulls a gun ,smacks him ,jumps away from him,4,What does Castle do when D'andre stands up ? ,136735,Castle,41.6-51.33,castle_s03e04_seg02_clip_04,jumps away from him 14697,The voice.,The name tag.,The lab coat.,The smell.,The face.,0,How did Joe know who was in the bed beside him when he was talking about being sick?,136736,House M.D.,11.83-20.94,house_s02e20_seg02_clip_16,The voice. 14698,She says that the person is a girlfriend of one of her friends. ,She recognizes the person in the picture. ,She says the person in the picture is a long time enemy. ,She doesn't recognize the person in the picture. ,She says she doesn't recognize the person but Castle should. ,3,How does Jane respond after she is given a picture to look at?,136737,Castle,0-2.28,castle_s05e10_seg02_clip_24,She doesn't recognize the person in the picture. 14699,Marshall was eating pizza.,Marshall was eating chicken wings.,Marshall was eating chips.,Marshall was eating candy.,Marshall was eating french fries. ,1,What was Marshall eating when they were watching the Super Bowl XXXV11?,136738,How I Met You Mother,8.47-17.54,met_s02e14_seg02_clip_03,Marshall was eating chicken wings. 14700,Yellow,White,Black,Purple,Red,4,What color shirt was Cameron wearing when she said Cyproheptadine would kill the patient? ,136739,House M.D.,62.35-70.54,house_s02e12_seg02_clip_21,Red 14701,Because Sheldon thought that Mythbusters was a stupid show.,"Because Sheldon had been impressed by Howard's apparent cleverness, so was disillusioned once he learned the truth.",Because Sheldon thought that television would rot his brain.,Because Sheldon had been jealous of Howard's idea but no longer knew how to feel. ,Because Sheldon didn't know what Mythbusters was.,1,Why did Sheldon seem taken aback when Howard said he got his idea from Mythbusters?,136740,The Big Bang Theory,27.41-47.97,s09e03_seg02_clip_15,"Because Sheldon had been impressed by Howard's apparent cleverness, so was disillusioned once he learned the truth." 14702,House is uncomfortable and tries to use humor to deescalate the situation.,House picks up a chair and throws it across the patio.,House calls security on the parents.,House throws soda on the parents.,House resigns from the case.,0,How does House react after being accused of being a poor doctor by a patient's dad?,136741,House M.D.,12.74-25.98,house_s01e02_seg02_clip_19,House is uncomfortable and tries to use humor to deescalate the situation. 14703,the surgery,the patient reading,the brain surgery,the new product for surgery,the website,2,what was Forman referring to when he said it worked?,136742,House M.D.,0-12.76,house_s07e16_seg02_clip_21,the brain surgery 14704,A computer,An outlet,A projector,A wireless charger,A smart TV,2,What does Castle connect his cell phone to after he arrives at his home with Beckett,136743,Castle,53.29-58.26,castle_s03e16_seg02_clip_23,A projector 14705,Tonight is about cancer.,Tonight is all about the donors.,Tonight is all about the kids starving out there.,Tonight is all about sick people all over the world.,Tonight is all about my friend Carolyn Decker and her Pure Water Project.,4,What does Lopez say when a reporter asks about him running for President?,136744,Castle,59.1-67.69,castle_s07e18_seg02_clip_02,Tonight is all about my friend Carolyn Decker and her Pure Water Project. 14706,A glass. ,A book. ,Her purse. ,A pillow. ,A game. ,4,What is Amy holding when she is sitting on Sheldon's couch?,136745,The Big Bang Theory,42.99-45.1,s06e04_seg02_clip_01,A game. 14707,Phoebe leaves first when they are talking in the kitchen,Monica leaves first when they are talking in the kitchen,Both of them leave first when they are talking in the kitchen,None of them leave first when they are talking in the kitchen,Someone walks in before they could walk in the kitchen,0,Who leaves first when Phoebe and Monica are talking in the kitchen?,136746,Friends,46.82-50.12,friends_s04e09_seg02_clip_06,Phoebe leaves first when they are talking in the kitchen 14708,Her butt.,His friend Barney.,Ted.,Her ex-boyfriend from high-school.,Justin Timberlake.,0,Who does Marshall suggest Lily have a baby with when he's freaking out?,136747,How I Met You Mother,0-7.25,met_s06e01_seg02_clip_11,Her butt. 14709,He sighs,nothing,Yeah good for you,He snorts,He sings,2,What does Leonard say after Sheldin speaks,136748,The Big Bang Theory,4.43-59.02,s01e14_seg02_clip_09,Yeah good for you 14710,Beckett arrested Damian for selling drugs.,Beckett arrested Damian for obstruction of justice.,Beckett arrested Damian because she thought he was a bad influence on Castle.,Beckett arrested Damian for trespassing.,Beckett believes Damian killed someone.,4,Why did Beckett arrest Damian before Castle went to talk to him?,136749,Castle,4.4-11.45,castle_s03e15_seg02_clip_16,Beckett believes Damian killed someone. 14711,A pen.,A folder.,A cellphone.,A computer.,A camera.,1,What was in front of Westfield before he sat down in the chair?,136750,Castle,46.42-50.06,castle_s03e09_seg02_clip_20,A folder. 14712,"House told Chase to ""go get some gooder book learnin' boy.""",House suggested Chase to re-run the patient's CBC count and do a urinalysis.,"House had said great, then instructed Chase to do a colonoscopy.",House informed Chase he needed to revisit the boy's family history medical records.,House told Chase to get out his copy of Physicians Desk Reference and research.,2,"When Chase had told House that all the young boy had was a tummy ache, what did House tell him to do after Chase said that?",136751,House M.D.,51.18-53.45,house_s02e17_seg02_clip_04,"House had said great, then instructed Chase to do a colonoscopy." 14713,wilson ,house ,park ,taub,cuddy ,3,who is walking with chase when they leave the patients room,136752,House M.D.,2.64-8.8,house_s08e15_seg02_clip_12,taub 14714,worried,sad,terrified,anxious,happy,4,How does Meredith feel after sitting on the couch with George?,136753,Grey's Anatomy,15.4-27.02,grey_s01e03_seg02_clip_25,happy 14715,Penny.,Raj.,Leonard.,Stuart.,Bernadette.,1,"Who is standing next to Zack before Leonard says, ""Zack""?",136754,The Big Bang Theory,39.68-46.44,s04e11_seg02_clip_04,Raj. 14716,the blanket,the cost of the oil,the tip,happy ending,the table rental,2,What did Phoebe say was not included when Rachel was getting the free massage?,136755,Friends,33.97-47.29,friends_s09e21_seg02_clip_16,the tip 14717,Derek told Meredith to wear a shirt with her apology on it,Derek told Meredith to corner him in the on-call room,Derek told Meredith to use the elevator to apologize to George,Derek told Meredith to send him a letter everyday for a month,Derek told Meredith to use care but be firm and apologize ,2,What advice did Derek give Meredith before he left the room,136756,Grey's Anatomy,46.36-68.9,grey_s02e20_seg02_clip_23,Derek told Meredith to use the elevator to apologize to George 14718,Holds her hand,Kisses her,Yells at her,Hugs her,Smiles at her,3,What does Ross do to Rachel after he talks about his near death experience?,136757,Friends,0-10.98,friends_s05e20_seg02_clip_16,Hugs her 14719,May I have more wine?,Is that chicken?,Is that veal?,What time is it?,Please pass the gravy.,2,What does Phoebe ask when her plate is put down in front of her?,136758,Friends,42.07-51.59,friends_s09e07_seg02_clip_15,Is that veal? 14720,She says that he wears it. ,She says that he sells it. ,She says that he smells it. ,She says that he brings it to work. ,She says that he carries it around with him all the time. ,0,What does Penny say Howard does with Bernadette's underwear when the girls are hanging out?,136759,The Big Bang Theory,17.46-24.2,s08e07_seg01_clip_00,She says that he wears it. 14721,kick him,nothing,kiss,Open the door,blame him ,3,What did Ross need Rachel do when he stayed outdoor,136760,Friends,0-54.21,friends_s02e08_seg02_clip_14,Open the door 14722,She feigned surprise even though it was obvious she knew.,She was surprised and had no idea what they were talking about.,She was shocked and proceeded to vomit and then faint.,She was angry they had went into her house to begin with.,She was embarrassed and did not know they would go in the house.,1,How did Lida react when Taub and Park told her what they found in her house?,136761,House M.D.,58.89-72.58,house_s08e18_seg02_clip_03,She was surprised and had no idea what they were talking about. 14723,Marshall hates the test proctor,Marshall has second thoughts about becoming a lawyer.,Marshall is trying to finish filling out the test.,Marshall accidentally glued his hand to the test booklet.,Marshall was holding the wrong test.,2,Why doesn't Marshall want to hand his paper in when time is up?,136762,How I Met You Mother,52.1-61.1,met_s03e08_seg02_clip_00,Marshall is trying to finish filling out the test. 14724,House begins banging on the observation window glass.,House calls down to the OR on the intercom.,House starts shouting for the nurses to close the patient up.,House calls Wilson on his cell phone.,House crawls from his wheelchair to try and reach the OR.,1,What does House do after Foreman begins examining the patient's tissue under the microscope?,136763,House M.D.,9.41-15.24,house_s03e13_seg02_clip_18,House calls down to the OR on the intercom. 14725,Gunshot to the head.,Slicing his throat.,Pills,Jumping off a bridge.,Drowning,2,What is the simplest way for Gabe to kill himself according to House when he and Gabe are talking about which option would be best for his death?,136764,House M.D.,0-4.87,house_s03e07_seg02_clip_22,Pills 14726,A phone,Some papers,A key,Some folders,A laptop,3,What is Bailey holding when she is talking to Meredith?,136765,Grey's Anatomy,10.58-19.33,grey_s01e01_seg02_clip_05,Some folders 14727,a newspaper ,a book ,a card ,the mail ,X ray of his brain ,4,What is Sheldon and Beverley looking at when coming up the stairs?,136766,The Big Bang Theory,0-3.62,s02e15_seg02_clip_12,X ray of his brain 14728,Phoebe,Ross,Joey,Chandler,Rachel,2,Who takes the longest to read the poem when they are in Chandler's kitchen?,136767,Friends,0-16.44,friends_s03e12_seg02_clip_08,Joey 14729,Marshal is sitting on the couch,Marshal is sitting at the apartment table,Marshal is sitting at the piano,Marshal is sitting at the work table,Marshal is sitting in the leather chair,1,Where is Marshall sitting when he is discussing toothpaste,136768,How I Met You Mother,44.86-51.65,met_s02e09_seg02_clip_01,Marshal is sitting at the apartment table 14730,Bo Bo Papa,Yo Yo Mama,House,Mr. Yo Yo,Mrs. Yo Bo,1,Who had left the bag and note on the table that Cameron found after she walked into the room?,136769,House M.D.,0-8.68,house_s03e15_seg02_clip_00,Yo Yo Mama 14731,Sam went to a University.,Sam went to his house.,Sam went to the docks.,Sam went Burger King.,Sam went to a shoe store.,2,Where did Sam go after securing a property?,136770,Castle,23.45-25.75,castle_s04e08_seg02_clip_10,Sam went to the docks. 14732,take his right hand off of the steering wheel to gesture,take his left hand off of the steering wheel to gesture,points at Raj,take both hands off of the steering wheel,"stares at Raj, while driving",1,"What does Howard do when he says ""No, not like us"" ?",136771,The Big Bang Theory,23.69-32,s08e01_seg02_clip_02,take his left hand off of the steering wheel to gesture 14733,House said Dominika was adjusting his belt.,House said Dominika was washing his feet.,House said Dominika was tying his shoes.,House said Dominika was installing the cable.,House said Dominika was putting a bandage on his leg.,3,What did House say Dominika was doing when she was under his desk?,136772,House M.D.,77.53-80.53,house_s07e17_seg02_clip_15,House said Dominika was installing the cable. 14734,He was threatening to kill him with a gun shot.,He was threatening to kill him squished by machine that compacts the garbage.,He was threatening to kill him with a knife.,He was threatening to kill him by chocking him.,He wasn't threatening to kill him.,1,How was the man in the brown jacket threatening to kill the man in the green sweater after he had thrown him in the garbage truck?,136773,Castle,29.71-56.26,castle_s04e21_seg02_clip_13,He was threatening to kill him squished by machine that compacts the garbage. 14735,Because he thinks Sheldon was acting perfectly normal.,Because he thinks Sheldon is not capable of human emotion.,Because he thinks Sheldon is crazy and only appears sad.,Because he thinks Sheldon is happy.,Because he thinks sadness is weak.,2,Why does Leonard argue after Penny says Sheldon is sad?,136774,The Big Bang Theory,31.51-36.91,s05e15_seg02_clip_13,Because he thinks Sheldon is crazy and only appears sad. 14736,He opened the door.,He got a drink of water.,He took medicine.,He took a seat.,He started crying,2,What did House do when he was staring into the window of the doors?,136775,House M.D.,36.28-46.03,house_s03e07_seg02_clip_24,He took medicine. 14737,I do'nt know I put it in the thing,Nothing,Good,Nice ,Bye ,0,What did Douglas say about name on flooer when Chandler asked him ?,136776,Friends,25.42-66.03,friends_s01e16-17_seg02_clip_09,I do'nt know I put it in the thing 14738,Dugan's stomach,Dugan's heart,Dugan's red blood cell count,Dugan's vision,Dugan's kidneys,4,What does Foreman tell tell Dugan is wrong with him besides his liver when he's talking to Dugan in the hospital bed?,136777,House M.D.,83.55-96.03,house_s07e06_seg02_clip_10,Dugan's kidneys 14739,They met through a friend,He met her online,He hired her as a prostitute,House introduced her to him,They met on the trani,2,How did Wilson and Debbie meet when he was telling his story?,136778,House M.D.,63.26-91.03,house_s05e05_seg02_clip_13,He hired her as a prostitute 14740,Sending a message from earth to aliens?,Naming a new star,Interstellar space travel ,Finding a new girlfriend,A boyfriend for Cinnamon.,0,What does Raj tell the guys he's working on when asked?,136779,The Big Bang Theory,1.46-4.39,s08e21_seg01_clip_01,Sending a message from earth to aliens? 14741,chandeliers,rings,flowers,candles,clipboard,4,What is Leslie holding when Castle is talking to her about room availability?,136780,Castle,40.49-49.69,castle_s06e14_seg02_clip_17,clipboard 14742,A Swedish flag,A Brazilian flag,An Italian flag,An American flag,A Japanese flag,3,What country's flag sticker is on the back of Leonard's laptop when his friends are looking on?,136781,The Big Bang Theory,1.62-47.9,s02e18_seg02_clip_05,An American flag 14743,he cas to call in on his radio receiver ,he looks it up on his phone ,he pulls out a laptop ,he opens the door so he can kick them out ,he grabs a phonebook to look it up,0,What does the driver have to do when Sheldon asks to take him where they can waltz? ,136782,The Big Bang Theory,47.6-51.38,s04e21_seg02_clip_09,he cas to call in on his radio receiver 14744,He sipped her coffee,He sat on her guitar,He stole her smelly cat song,He set up Ross with the perfect woman,He set up Rachel with the perfect woman,3,What did Joey do that angered Phoebe after he told her?,136783,Friends,0-9.92,friends_s09e14_seg02_clip_04,He set up Ross with the perfect woman 14745,penny,sheldon,raj,howard,a dog,1,who held up the indiana jones dvd when talking,136784,The Big Bang Theory,41.85-48.73,s07e04_seg01_clip_01,sheldon 14746,Leonard crawled through to the end after he was hit with a laser beam.,Leonard stood up because he lost the game..,Leonard crawled back to the beginning to start going through the beams again.,Leonard called 911 because the laser beam burnt him.,Leonard sat on floor and cried because he lost.,1,What happened after Leonard's ankle was hit by a laser beam? ,136785,The Big Bang Theory,38.36-45.84,s02e18_seg01_clip_00,Leonard stood up because he lost the game.. 14747,He cried,He laughed,He screamed,He laughed,He fainted,2,What did Will do when the doctors were in the room?,136786,House M.D.,64.72-74.36,house_s08e14_seg02_clip_21,He screamed 14748,They shared a cab from the airport.,They were sharing a park bench.,They were at the lunch counter of the coffee shop,They were checking out books at the library.,They were in an elevator.,4,Where were Castle and Vasiliy when they started talking about results and bosses?,136787,Castle,0-9.96,castle_s08e11_seg02_clip_14,They were in an elevator. 14749,playing videos games ,They're playing cards,Talking and having lunch,working on a project ,laughing ,2,What are the guys doing when they see Sheldon?,136788,The Big Bang Theory,0-41.55,s01e13_seg02_clip_06,Talking and having lunch 14750,Esposito,Beckett,Parker,Mary,Ryan,1,Who is driving the car when Castle is riding along?,136789,Castle,31.21-45.04,castle_s06e02_seg02_clip_23,Beckett 14751,Stacks of books,Halloween decorations,A Christmas tree,Flowers,A bar,3,What can you see behind Castle when he is talking to Beckett about getting shot?,136790,Castle,20.22-29.62,castle_s04e01_seg02_clip_06,Flowers 14752,On the box to the right of the guitar.,On the ground by the guitar.,On the hood of the car.,On top of the board games.,On the shelf behind the bike.,0,Where was the globe when Ross and Mr. Geller were looking for something to give Monica?,136791,Friends,15.87-25.94,friends_s07e13_seg02_clip_13,On the box to the right of the guitar. 14753,bernard,einstiene,donetello,clintion,gepetto,4,who did chandler call joey after reading the paper?,136792,Friends,21.01-23.71,friends_s04e02_seg02_clip_03,gepetto 14754,she was looking at her foot,she ws looking at tv,she was looking at her toes,she was looking at her butt,she was looking at her eyes,1,what was Monica looking at on the wall when her head was turned?,136793,Friends,0-14.61,friends_s03e23_seg02_clip_08,she ws looking at tv 14755,A lost puppy,A poor excuse for a man,As a man child,A pimple face,Someone too good for her,2,How does House describe Cuddy's date when speaking with her?,136794,House M.D.,0-11.43,house_s06e21_seg02_clip_18,As a man child 14756,Eve,Sophia,Ashley,Mia,Mary,2,Who was with Tucker when Wilson got to his bed?,136795,House M.D.,6.05-15.4,house_s06e09_seg02_clip_00,Ashley 14757,Bitter.,Bland.,Strong.,Sweet.,Spicy.,0,How does the patient say the cheese he's been eating tastes when House asks him about it?,136796,House M.D.,71.79-82.24,house_s02e14_seg02_clip_06,Bitter. 14758,Ross fell off a ship,Ross was hit by a blimp.,Ross fell of a construction site,Ross got ran over,Ross died in a wildfire.,1,"What does Ross cite Chandler wrote when reporting his ""cause of death.""",136797,Friends,26.15-37.2,friends_s09e17_seg02_clip_05,Ross was hit by a blimp. 14759,Beckett says 400 pounds,Beckett says 800 pounds,Beckett says 200 pounds,Beckett says 1000 pounds,Beckett says 500 pounds,1,How many pounds of ammo does Beckett say would have to get past the loading dock when she discusses a case with Castle in the living room?,136798,Castle,0-16.84,castle_s03e22_seg02_clip_16,Beckett says 800 pounds 14760,Joey was wearing a towel.,Joey was wearing a suit.,Joey was wearing a shirt and pants. ,Joey was wearing a dress. ,Joey was wearing nothing. ,0,What was Joey wearing before Charlton Heston started talking to him?,136799,Friends,0-11.71,friends_s04e14_seg02_clip_14,Joey was wearing a towel. 14761,Joey picks out the chairs with fish on them.,Joey picks out the chairs with birds on them.,Joey picks out the chairs with ladybugs on them.,Joey picks out the chairs with squirrels on them.,Joey picks out the chairs with turtles on them.,2,Which chair does Joey pickout for the apartment when shopping for dining room chairs?,136800,Friends,11.4-18.53,friends_s01e12_seg02_clip_11,Joey picks out the chairs with ladybugs on them. 14762,Howard is moving out. ,Howard is moving back in. ,Howard is staying put. ,Howard is getting rid of old stuff. ,Howard is returning things. ,0,Why are the guys packing up when they are in Howard's room?,136801,The Big Bang Theory,6.88-22.21,s06e07_seg02_clip_08,Howard is moving out. 14763,He starts kicking the suspect. ,He starts punching the suspect. ,He starts yelling at the suspect. ,He sits down next to the suspect. ,He sets the suspect free. ,3,What does Esposito do after he shuts the door?,136802,Castle,13.5-23.41,castle_s03e09_seg02_clip_04,He sits down next to the suspect. 14764,That the woman in the picture is not Lara.,That Lara was killed by Ana.,"That Ana was with Vega, not Lara.",That Lara never left Cuba.,That Ana had helped Lara.,0,What is Esposito's answer after Castle mentions there has to be an explanation?,136803,Castle,28.03-35.16,castle_s02e15_seg02_clip_17,That the woman in the picture is not Lara. 14765,Dress shirts,Hats,Towels,Ties,Robes,4,What is seen hung up on Howard's closet after he yells at his mom?,136804,The Big Bang Theory,50.18-57.05,s05e12_seg02_clip_03,Robes 14766,Penny walk away.,Penny was cleaning te table.,Penny prepared coffee.,Penny was chewing.,Penny vaccum the room.,3,What was doing Penny when Leonard was talking?,136805,The Big Bang Theory,0-42.18,s05e07_seg02_clip_08,Penny was chewing. 14767,60 years,50 years,25 years,35 years,40 years ,1,How long does the young doctor say it has been since there was a case of ergot poisoning when everyone is trying to figure out what was wrong with a patient?,136806,House M.D.,62.85-72.94,house_s04e04_seg02_clip_22,50 years 14768,Ross says he is tired,Ross says he and Rachel should never have let Emma watch the baby,Ross says he wants a divorce,Ross says he is dying,Ross says he is leaving,1,What does Ross say he and Rachel should not have done after he discovers something wrong with his baby?,136807,Friends,44.86-54.62,friends_s10e05_seg02_clip_17,Ross says he and Rachel should never have let Emma watch the baby 14769,She hit her head ,She dislocated her shoulder,She broke a tooth,She didn't slip,She hurt her backside,1,What happened when Penny slipped in the shower?,136808,The Big Bang Theory,21.97-27.69,s03e08_seg02_clip_01,She dislocated her shoulder 14770,Masters changed the subject.,Masters said for him not to worry about it.,Masters said she appreciated his apology.,Masters said no apology was necessary.,Masters smiled and left the room.,3,How did Masters respond after Driscoll apologized to her?,136809,House M.D.,12.39-20.35,house_s07e10_seg02_clip_07,Masters said no apology was necessary. 14771,She says that Foreman wouldn't know because he's not a woman.,"She says that ""Extreme stress can cause high blood pressure, which can cause bleeding.""","She says that ""Extreme stress can cause nose bleeds.""",She told Foreman that she knows from experience.,Cameron informs Foreman that the patient directly complained about the harsh conditions of the treatment.,1,How does Cameron support her argument that their treatment has been torturing the female patient after Foreman disagrees that their treatment hasn't been harsh?,136810,House M.D.,37.98-49.88,house_s02e18_seg02_clip_06,"She says that ""Extreme stress can cause high blood pressure, which can cause bleeding.""" 14772,Foreman,Wilson,Chase,13,Masters,2,Who was standing behind Taub when they were with House's patient,136811,House M.D.,67.67-73.82,house_s08e06_seg02_clip_23,Chase 14773,texting,sewing,cleaning,cooking,Driving the car,4,What is Rachel doing when she and Ross are talking?,136812,Friends,0-4.65,friends_s10e04_seg02_clip_18,Driving the car 14774,Because he had exciting plans that day,Because he was thinking about the woman from the night before,Because he was happy it was Friday,Because he got to sleep in,Because he had a great dream and was thinking about it,1,Why did Dr. House smile after waking up?,136813,House M.D.,9.24-17.55,house_s05e24_seg02_clip_00,Because he was thinking about the woman from the night before 14775,He adjusts his button mic,He hugs him,He starts to cry ,He yells at him,He runs out of the van ,0,What does Esposito do before Castle leaves the van?,136814,Castle,54.17-63.67,castle_s02e01_seg02_clip_16,He adjusts his button mic 14776,She is mocking her and the way she walks.,She is staring at her.,She is acting very strange.,Tina is imitating Beckett and the way she walks.,She wants to be like her.,3,What is Tina doing when Beckett turns around ?,136815,Castle,0-34.66,castle_s07e22_seg02_clip_15,Tina is imitating Beckett and the way she walks. 14777,House doesn't do anything,House calls for a nurse,House calls for Chase,House calls for Cameron,House calls for Foreman,1,What does House do when his patient is on the floor?,136816,House M.D.,5.6-7.6,house_s02e06_seg02_clip_23,House calls for a nurse 14778,Barney was talking to Ted.,Barney was holding a bottle.,Barney was eating.,Barney was drinking,Barney was holding a glass.,4,What was doing Barney when standing behind a couple?,136817,How I Met You Mother,5.19-61.03,met_s03e18_seg02_clip_13,Barney was holding a glass. 14779,He falls asleep. ,He raises his champagne glass. ,He hugs Phoebe. ,He kisses Phoebe. ,He slaps Monica. ,1,What does Chandler do after Phoebe raises her champagne glass?,136818,Friends,5.87-10.4,friends_s10e12_seg02_clip_10,He raises his champagne glass. 14780,That she is the stupidest person she has ever met,That she is dumb,That she is so stupid,That she is the dumbest person she has ever known,That she is a true friend for telling her the truth,2,What does Rachel say to Mindy after Mindy tells Rachel that her and Barry are engaged?,136819,Friends,23.11-35,friends_s01e20_seg02_clip_14,That she is so stupid 14781,Beckett and Castle put on gloves.,Beckett and Castle put on lotion.,Beckett and Castle put on ChapStick.,Beckett and Castle put on matching jackets.,Beckett and Castle put on bandannas.,0,What did Beckett and Castle put on after they crossed the yellow tape at a crime scene?,136820,Castle,59.17-67.36,castle_s03e08_seg02_clip_00,Beckett and Castle put on gloves. 14782,Cuddy,Foreman,Cameron,Olivia,No one,2,Who did chase say was never going to rat on house when talking to volger?,136821,House M.D.,25.87-35.68,house_s01e16_seg02_clip_22,Cameron 14783,His wallet. ,A bouquet of flowers. ,A sweater. ,A diamond ring. ,A red box containing a necklace. ,4,What does Raj give the girl when they sit on the sofa? ,136822,The Big Bang Theory,34.43-42.5,s05e04_seg02_clip_13,A red box containing a necklace. 14784,A glass animal cage.,A glass table.,A glass mirror.,A glass figurine on the shelf.,A glass window.,0,What kind of glass shattered after a bullet was fired near Castle?,136823,Castle,28.4-36.78,castle_s02e14_seg02_clip_23,A glass animal cage. 14785,She asks him to keep looking. ,She says it look like a nerd. ,She says it looks like a jerk. ,She doesn't like it. ,She says it looks half dead.,4,What does Amy say about the turtle after Sheldon points one out?,136824,The Big Bang Theory,24.23-30.22,s08e17_seg02_clip_01,She says it looks half dead. 14786,Because Alexis has a headache.,Because Alexis could turn on the light.,Because Alexis could not find him in the closet.,Because Alexis could not find her book.,Because Alexis is not safe at home.,2,Why Alexis was disappointed after looking in the closet?,136825,Castle,8.24-19.69,castle_s03e08_seg02_clip_10,Because Alexis could not find him in the closet. 14787,In a bucket,In a box,In a bag,In a briefcase ,Wrapped in a blanket ,1,Where did House have the patients supplies and medications before dropping them on the table?,136826,House M.D.,16.65-23.86,house_s04e11_seg02_clip_01,In a box 14788,Two,One,Three,Five,Four,0,How many numbers does Ryan count before Esposito looks at the test results?,136827,Castle,86.52-92.1,castle_s08e05_seg02_clip_03,Two 14789,she starts to apologize to her,she yells back at her,she slams the door on her,she tells cuddy why she is acting that way,she starts to cry uncontrolably.,2,how does the patient respond to cuddy's after she lashes out?,136828,House M.D.,11.16-21.4,house_s07e20_seg02_clip_17,she slams the door on her 14790,A paper cup.,A comic book.,A tennis racket.,A potted plant.,A bowl of soup. ,1,What was Howard holding onto when he was talking to Raj?,136829,The Big Bang Theory,0-3.03,s09e11_seg02_clip_06,A comic book. 14791,Amy would rather be at the movies.,Amy would rather be in her lab.,Amy would rather be sitting on Sheldons lap.,Amy would rather be on a tropical beach.,Amy would rather be at the cool table.,4,Where does Sheldon think Amy would rather be when she is sitting and laughing with two co-workers?,136830,The Big Bang Theory,44.39-51.06,s07e05_seg02_clip_06,Amy would rather be at the cool table. 14792,He felt angry.,He felt happy.,He felt excited. ,He felt strong.,He felt hopeful. ,0,How did Sheldon feel after Kripke asked him a rhetorical question.,136831,The Big Bang Theory,8.7-32.78,s03e09_seg02_clip_01,He felt angry. 14793,Closes the blinds,Yells in the hallway,Walks in as a doctor,Opens door and runs into room,Calls on the phone.,3,What does Joey do after Phoebe lets Cliff know he probably had a dream about it?,136832,Friends,42.41-50.04,friends_s08e23-24_seg02_clip_28,Opens door and runs into room 14794,nate,jhon,luke,Robert,doc,3,what is the name of the man that is in the room when they are talking?,136833,Castle,13.25-91.36,castle_s04e12_seg02_clip_20,Robert 14795,Alex is nowhere to be seen.,"Alex is to Izzie's left, waiting for an assignment.",Alex is with Meredith in the OR with the bomb.,Alex is walking with Richard.,"Alex is to Izzie's right, waiting for an assigment.",1,Where is Alex when Izzie is asking Richard for an assignment?,136834,Grey's Anatomy,77.72-89.85,grey_s02e17_seg02_clip_08,"Alex is to Izzie's left, waiting for an assignment." 14796,Frozen,True lies,Miss Congeniality,Undercover Brother,Coming to America,2,"What movie did Chandler say was on the television, when he was eavesdropping near the wall?",136835,Friends,13.87-27.1,friends_s10e01_seg02_clip_02,Miss Congeniality 14797,Casino floor,Charlies office,Stage,In a restaurant ,A bank,0,Where did the security footage have charlie when it was being reviewed by the boys?,136836,Castle,0.88-4.85,castle_s04e08_seg02_clip_13,Casino floor 14798,In the cabinet under the island.,Under the kitchen cabinet.,Behind the refrigerator.,Next to the stove.,Behind the microwave.,1,Where did Phoebe find Bob the rat after she came in the apartment?,136837,Friends,37.52-43.77,friends_s09e12_seg02_clip_06,Under the kitchen cabinet. 14799,Behind the White Board,By the wall ,Back under the table,Beside House,To the hallway,2,Where does Amber move the chair after she stands up?,136838,House M.D.,48.2-57.96,house_s04e12_seg02_clip_22,Back under the table 14800,Smith's hands were in his trench coat pockets.,Smith's hands were on his head.,Smith's hands were on his hips.,Smith's hands were in his pants pockets.,Smith's hands were in the air. ,0,Where was Smith's hands when talking to Beckett and Castle?,136839,Castle,0-8.19,castle_s06e22_seg02_clip_15,Smith's hands were in his trench coat pockets. 14801,He hears sirens outside and starts to run out of the building,The electromagnet gets his gun,A police officer comes in and shoots him in the leg,A police dog runs in and knocks him to the ground,Beckett is able to overpower him when he is distracted,4,How is Mason stopped before he can kill anyone?,136840,Castle,55.87-69.26,castle_s08e22_seg02_clip_24,Beckett is able to overpower him when he is distracted 14802,Thirteen,Remy,Wilson,House,Cuddy,0,Who was laying down when they were having their pulse checked? ,136841,House M.D.,0-5.79,house_s05e09_seg02_clip_15,Thirteen 14803,Sneezes.,Vomits.,Farts.,Passes out.,Falls over. ,1,What does Wilson do after having his picture taken?,136842,House M.D.,9.41-16.84,house_s08e20_seg02_clip_09,Vomits. 14804,Purple,Yellow,Green,Blue,White,0,What color pants was the pregnant woman wearing when police escorted her out of the area?,136843,House M.D.,12.04-15.48,house_s05e09_seg02_clip_16,Purple 14805,Monica said that she would need five thousand dollars.,Monica said that she would need five hundred dollars.,Monica said that she would need one hundred dollars. ,Monica said that she would need one thousand dollars. ,Monica said that she did not want to borrow money from Phoebe.,1,What amount of money did Monica say that she needed after Phoebe offered to lend her some money?,136844,Friends,4.5-12.91,friends_s04e06_seg02_clip_02,Monica said that she would need five hundred dollars. 14806,An old lady.,A kid enters first.,A employee.,Howard was the first one that entered in the theater.,A kid.,3,Who appeared first when the door of the theater opened?,136845,The Big Bang Theory,11.44-60.21,s01e11_seg02_clip_08,Howard was the first one that entered in the theater. 14807,Steroid damage could take years.,Steroids and cocaine are linked.,The client's past cocaine usage caused his kidney damage.,The patient's denial of steroid usage hinders treatment.,Steroids are evident.,0,How does House summarize the medical root cause when he is speaking to the patient and Lola?,136846,House M.D.,72.57-76.65,house_s01e12_seg02_clip_07,Steroid damage could take years. 14808,Scene jumps to Beckett talking about Unis's search of Jesse Friedman's place.,"Castle said ""your welcome""","The commisioner said "" you are free to go""","The attendant said ""have a nice day""",Becket takes her bag and leaves,0,What happened after BEckett said thank you?,136847,Castle,1.35-2.7,castle_s04e19_seg02_clip_23,Scene jumps to Beckett talking about Unis's search of Jesse Friedman's place. 14809,Sheldon is laughing at Howard's stupidity. ,Sheldon is amused. ,Sheldon is shocked and concerned. ,Sheldon feels betrayed. ,Sheldon is feeling angry and vengeful. ,2,What is that look on Sheldon's face after Howard says that he has something from NASA that they don't know about?,136848,The Big Bang Theory,13.97-15.53,s04e01_seg02_clip_00,Sheldon is shocked and concerned. 14810,work with Sheldon,write a book,have a class,go back to school,make an app,4,"What did Leonard want to do when he was eating with Raj, Sheldon, and Howard?",136849,The Big Bang Theory,0-23.52,s04e12_seg01_clip_01,make an app 14811,Sucked a lollipop,Bent over,Licked his toe,Kissed his hand,Got into the unit,4,What did Joey explain to Chandler after having attempted to make a sale of a unit?,136850,Friends,0-10.5,friends_s04e02_seg02_clip_16,Got into the unit 14812,Blue,Yellow,Red,Black,White,1,What is the color of House's shirt when he is flying in the plane?,136851,House M.D.,55.86-76.58,house_s03e18_seg02_clip_02,Yellow 14813,Lily followed Marshall outside.,Lily followed Barney outside.,Lily remained inside.,Lily went to the bathroom.,Lily followed Marshall to his car.,0,What did Lily do when Marshall went outside?,136852,How I Met You Mother,54.3-59.03,met_s06e14_seg02_clip_15,Lily followed Marshall outside. 14814,Cristina said the patient would go blind.,Cristina said the patient would die.,Cristina said the patient would go into shock.,Cristina said the patient would have a heart attack.,Cristina said the patient would stroke out.,4,What did Cristina say would happen to the patient when she was questioning Dr. Grey?,136853,Grey's Anatomy,14.84-17.6,grey_s03e09_seg02_clip_23,Cristina said the patient would stroke out. 14815,A spiderman toy.,A batman action figure.,A rocketship machine.,A claw machine.,A lottery machine.,2,What is Raj standing by when talking to Stuart?,136854,The Big Bang Theory,22.76-27.78,s07e03_seg02_clip_07,A rocketship machine. 14816,Marshall tells Ted to laugh as if Marshall had said something funny.,Marshall was telling a funny story about his night at the bar.,Ted was telling a funny story about his night at the bar.,Ted had tripped awkwardly right before they ran into Brad.,They were laughing about a funny looking person they saw on the street.,0,Why were Marshall and Ted laughing when they ran into Brad?,136855,How I Met You Mother,14.63-22.88,met_s02e05_seg02_clip_19,Marshall tells Ted to laugh as if Marshall had said something funny. 14817,Dropped her glass.,Threw a plate.,Started crying.,Blow a raspberry.,Went after him.,3,What did Rachel do to make Ross walk back in the door after he had walked out of the apartment?,136856,Friends,5.94-15.85,friends_s04e20_seg02_clip_05,Blow a raspberry. 14818,Liver failure,Brain failure,Stomach cancer,Kidney failure,Heart failure,0,Why does the doctors believe the patient is hallucinating when he is asleep?,136857,House M.D.,25.09-44.89,house_s08e17_seg02_clip_17,Liver failure 14819,House said because of his shoes,House said because of his tattoo,House said because of his shirt,House said because of his hair,House said because of his personality,1,Why did House said the man has no Chance when it comes to being hired?,136858,House M.D.,5.34-10.68,house_s01e19_seg02_clip_12,House said because of his tattoo 14820,In the kitchen,In the bathroom,In the bedroom,In the living room,In the hallwayy,0,"Where is Joey, Rachel, and Chandler sitting when Ross is in the living room?",136859,Friends,39.62-46.88,friends_s04e12_seg02_clip_05,In the kitchen 14821,A toy dinosaur,A stuffed bear,A stuffed monkey,A barbie doll,A musical love bug,4,What toy does Ross send Rachel when she is at her desk at work?,136860,Friends,24.81-52.72,friends_s03e12_seg02_clip_08,A musical love bug 14822,"It implies that House did get through the door, and thus was right. ",It implies that House and Stacy are hiding from Wilson.,"It implies that Wilson was right, and House didn't get through the door. ",It implies that Stacy has a crush on Wilson. ,It implies that House and Stacy had just had an argument. ,0,What does House laying next to Stacy imply about the sentence House started before the elevator door closed?,136861,House M.D.,20.71-29.45,house_s02e07_seg02_clip_14,"It implies that House did get through the door, and thus was right. " 14823,Reading a magazine.,Reading the newspaper.,Drinking coffee.,Trying to sleep.,Reflecting to himself.,0,What was Ross doing when he was sitting on the couch in the coffee shop?,136862,Friends,0-3.75,friends_s09e12_seg02_clip_06,Reading a magazine. 14824,Because he just had sex with himself.,Because he just had sex with Cuddy.,Because he just had sex with Masters.,Because he just had sex with Rachel.,Because he just had sex with Maya.,3,"Why did Taub say ""that was amazing"" when he was fastening his belt?",136863,House M.D.,80.1-83.74,house_s07e09_seg02_clip_12,Because he just had sex with Rachel. 14825,House shouted at the father,House pulled a toy out of the kid's nose,House shouted st the kid again,House hit the kid,House hit the father,1,What did House do after shouting at the kid?,136864,House M.D.,39.79-49.55,house_s01e15_seg02_clip_18,House pulled a toy out of the kid's nose 14826,Cameron was worried about getting fired,Foreman was worried about getting fired,Chase was worried about getting fired,Robin was worried about getting fired,Jessica was worried about getting fired,2,Who was worried they were getting fired before they discussed the heart transplant,136865,House M.D.,32.64-41.2,house_s01e14_seg02_clip_20,Chase was worried about getting fired 14827,She isn't comfortable around little kids.,She is mad at Howard.,The vest doesn't fit her correctly.,Bernadette has to work instead.,She would rather be the magician.,0,Why does Bernadette say she doesn't want to be Howard's assistant after handing him the rings?,136866,The Big Bang Theory,53.46-59.74,s05e12_seg02_clip_03,She isn't comfortable around little kids. 14828,That the suspect got away with the painting,That the suspect dressed in drag,That the suspect is a high school student ,That the suspect has a history of drug use,That the suspect has a petty theft history,0,What does the team say happened when the theft of a work of art occured?,136867,Castle,50.78-77.09,castle_s04e05_seg02_clip_02,That the suspect got away with the painting 14829,He punches Joey. ,He walks out. ,He takes off his coat. ,He pushes Joey. ,He stands up. ,4,What does Ross do after Joey shakes his head at him?,136868,Friends,8.82-12.29,friends_s03e16_seg02_clip_03,He stands up. 14830,Her badge.,A coffee cup.,A notepad.,Her gun.,A piece of paper. ,1,What does Beckett hold up before she asks what else they know?,136869,Castle,63.94-66.29,castle_s05e07_seg02_clip_00,A coffee cup. 14831,Monica told Joey to win over the guy who controls C.H.E.E.S.E. and kiss some serious robot ass.,Monica kissed Joey.,Monica told Joey that she loved him.,Monica made Joey a cake.,Monica gave Joey some cookies.,0,How did Monica help Joey feel better before he left the apartment?,136870,Friends,0-21.66,friends_s06e21_seg02_clip_12,Monica told Joey to win over the guy who controls C.H.E.E.S.E. and kiss some serious robot ass. 14832,A radio., A potted plant.,A bed.,A pile of clothes.,A fridge.,1,What does Chandler stand next to when Monica says he's loud?,136871,Friends,0-9.61,friends_s09e14_seg02_clip_15, A potted plant. 14833,A yellow legal pad.,A laptop,An ipad,A small pad and pen,His phone,3,What was Castle using to take notes when Beckett was questioning the suspect?,136872,Castle,3.4-12.33,castle_s01e02_seg02_clip_19,A small pad and pen 14834,In a week.,Within three days.,Within two weeks.,Two months.,Six months.,0,When did House say the male patient will die when he is talking to Wilson?,136873,House M.D.,13.02-17.68,house_s02e15_seg02_clip_15,In a week. 14835,That she is at the mercy of her primitive biological urges,How are you doing?,It's good to see you,What took you so long?,How has your day been?,0,What does Sheldon say about Penny after Penny opens the door?,136874,The Big Bang Theory,14.41-17.71,s03e01_seg02_clip_03,That she is at the mercy of her primitive biological urges 14836,He's 600 pounds,He's 400 pounds,He's 460 pounds,He's 700 pounds,He's 100 pounds,0,What is the exception that Cuddy lists after saying the man in the coma has anything wrong with him?,136875,House M.D.,1.92-8.64,house_s03e06_seg02_clip_00,He's 600 pounds 14837,He is rearranging the kitchen. ,He is fixing himself a sandwich. ,He is getting something to drink. ,He is putting the dishes away. ,He is washing the dishes. ,1,What is Howard doing when Bernadette walks into the kitchen?,136876,The Big Bang Theory,0-14.11,s09e07_seg02_clip_02,He is fixing himself a sandwich. 14838,get out of here,come here,I like you,stay away,Married,4,What does Marshall say when the lady comes to him in a bikini?,136877,How I Met You Mother,20.78-25.47,met_s05e02_seg02_clip_02,Married 14839,Rachel is in the park.,Rachel is at the coffee shop.,Rachel is on the train.,Rachel is in the apartment.,Rachel is on the street.,3,Where is Rachel when she screams at Monica?,136878,Friends,10.62-16.82,friends_s07e01_seg02_clip_17,Rachel is in the apartment. 14840,A tiger.,A lion.,A wolf.,A fox.,A wild dog.,0,What animal starts pacing after Ruth finishes talking?,136879,Castle,12.59-21.13,castle_s04e10_seg02_clip_25,A tiger. 14841,Esposito didn't hand Castle anything,Esposito handed Castle a picture of the crime scene,Espsotio handed Castle a recording,Espositio handed Castle a financial document,Esposito handed Castle the file of Hank Walters,4,What did Esposito hand Castle after he picked it up from the printer?,136880,Castle,42.87-49.32,castle_s03e14_seg02_clip_23,Esposito handed Castle the file of Hank Walters 14842,In the garbage ,On the table.,In a truck,In a purse,On Joey's head.,1,Where did Rachel place her mug before she stood up?,136881,Friends,43.19-47.36,friends_s08e07_seg02_clip_02,On the table. 14843,chair,phone,folder,pillow,keys,2,What was Rachel holding before she started talking?,136882,Friends,0-7.38,friends_s07e09_seg02_clip_02,folder 14844,Ross has a cigarette in his mouth,Ross doesn't have anything in his mouth,Ross has a candy in his mouth,Ross has a toothpick in his mouth,Ross has food in his mouth,0,What does Ross have hin his mouth after he removes his glasses?,136883,Friends,0-5.66,friends_s02e22_seg02_clip_13,Ross has a cigarette in his mouth 14845,Raj nods his head.,Raj sends an email.,Raj walks way.,Raj says yes.,Raj sprays some cologne.,0,What does Raj do to confirm that Howard has a lot of cologne after Leonard opens the case?,136884,The Big Bang Theory,21.31-22.51,s02e21_seg02_clip_04,Raj nods his head. 14846," Leonard, Raj and Howard were sitting on a table."," Leonard, Raj and Howard were sitting on a couch."," Leonard, Raj and Howard were sitting on a small blanket."," Leonard, Raj and Howard were sitting on top of a water bed."," Leonard, Raj and Howard where sitting on chairs in the cafeteria.",4,"Where were Leonard, Raj and Howard sitting when discussing Sheldon's weird behavior?",136885,The Big Bang Theory,51.06-59.06,s04e03_seg02_clip_10," Leonard, Raj and Howard where sitting on chairs in the cafeteria." 14847,She's perfect.,So pretty.,Our little girl.,I love her.,Can I hold her,0,What did Ross say after the doctor showed them the baby? ,136886,Friends,45.32-51.02,friends_s08e23-24_seg02_clip_32,She's perfect. 14848,He was washing his car.,He was going to bed.,He was going to the store.,He was cleaning the fridge.,She doesn't have to reimburse him.,4,What did Sheldon tell Penny before he took the paper from Leonard?,136887,The Big Bang Theory,0-57.15,s03e16_seg02_clip_04,She doesn't have to reimburse him. 14849,Ryan mistakes the camera crew for Castle's fans.,Ryan mistakes the camera crew for fans of the band.,Ryan mistakes the camera crew for the press.,Ryan mistakes the camera crew for crime scene investigators.,Ryan mistakes the camera crew for private security.,2,Who does Ryan mistake the camera crew for when talking to the other officers?,136888,Castle,18.34-23.98,castle_s05e07_seg02_clip_00,Ryan mistakes the camera crew for the press. 14850,Monica loved painting ,Monica thought the can would make the place look nicer,Monica thought Joey had said Christmas cookie,Monica loved snow,Monica loved Christmas,2,Why was Monica excited when she heard about Joey's great news?,136889,Friends,33.69-43.23,friends_s03e10_seg02_clip_13,Monica thought Joey had said Christmas cookie 14851,Rachel was sitting to his left.,Rachel was sitting to his right.,Rachel was standing behind him.,Rachel was sitting behind him.,Rachel was standing in front of him.,1,"Where was Rachel when Joey said, ""No guys around, huh""?",136890,Friends,0-6,friends_s02e12-13_seg02_clip_28,Rachel was sitting to his right. 14852,1,Zero,4,8,3,1,How many people do Beckett and the team find in the basement when they storm it?,136891,Castle,21.85-29.58,castle_s03e20_seg02_clip_18,Zero 14853,milk addiction,caffeine addiction,coffee addiction,mild Dr Pepper addiction,sugar addiction,3,What kind of addiction did Sheldon say his mother had when he was fighting for the ring?,136892,The Big Bang Theory,0-21.1,s03e17_seg02_clip_13,mild Dr Pepper addiction 14854,Lucky to be rich.,Lucky to be a man.,Lucky to be alive.,Lucky to be a friend.,Lucky to be a husband.,2,What does Ryan to Castle he is lucky to be before walking out with Espisito?,136893,Castle,0-11.63,castle_s08e06_seg02_clip_07,Lucky to be alive. 14855,skateboard,motorcycle helmet,backpack,clock,toolbox,1,what did Castle notice the neighbor kid was holding after Becket held the photo up?,136894,Castle,19.33-25.77,castle_s05e09_seg02_clip_20,motorcycle helmet 14856,She hugs him,She yells at him,She leaves,She wacks him on the head,She rubs him on the back,2,What does Penny do after Howard asks for a minute?,136895,The Big Bang Theory,35.36-41.57,s01e05_seg01_clip_00,She leaves 14857,Cuddy is holding a paper bag.,Cuddy is holding her cell phone.,Cuddy is holding a box.,Cuddy is holding her purse.,Cuddy is holding a file folder.,1,What is Cuddy holding when she walks into the clinic?,136896,House M.D.,31.29-34.05,house_s06e13_seg02_clip_10,Cuddy is holding her cell phone. 14858,green teapot,plate,book,napkin,table cloth,0,What does Sheldon put on the table when he comes over to sit down?,136897,The Big Bang Theory,13.21-18.61,s06e12_seg02_clip_02,green teapot 14859,He asks another question,He takes off his jacket,He sits down,He leaves,He dances,3,"What does Lucas do after he says ""Who the hell doesn't like roses?""",136898,House M.D.,24.49-34.47,house_s05e03_seg02_clip_12,He leaves 14860,Ryan put a backpack in the locker .,Ryan put a key in a locker.,Ryan put his shoes in the locker.,Ryan put a towel in the locker.,Ryan put a basketball in the locker.,1,What did Ryan put in a locker before the FBI showed up?,136899,Castle,20.97-24.16,castle_s08e13_seg02_clip_16,Ryan put a key in a locker. 14861,USA,Australia ,England,America,Britannia ,2,What country did Leonard say sucked when he was advising Penny on what to say,136900,The Big Bang Theory,2.7-13.52,s06e08_seg02_clip_01,England 14862,A secretary,A cat,A lion,A nurse,A fireman,3,What is Mona dressed as when she calls Ross her hero?,136901,Friends,0-5.99,friends_s08e06_seg02_clip_16,A nurse 14863,In the E.R,In his office,In the hospital hallway,In a meeting,In a restaurant ,2,"Where were Wilson when he was talking to Cameron, Foreman, Chase?",136902,House M.D.,2.28-10.02,house_s03e18_seg02_clip_04,In the hospital hallway 14864,James,House,John,Jack,Mia,1,Who came into the room when the patient was waiting? ,136903,House M.D.,7.68-13.56,house_s02e14_seg02_clip_02,House 14865,Let me go,I am next please,I forget my name,I am rage Envy,I just remember.,3,What did Lily said on stage after the bell rang?,136904,How I Met You Mother,19.9-23.22,met_s02e16_seg02_clip_07,I am rage Envy 14866,The Zoo.,The pool.,Colorado.,The beach.,The museum.,3,Where does Monica say she likes to go when Rachel asks what her favorite thing about summer is?,136905,Friends,48.32-60.03,friends_s03e22_seg02_clip_13,The beach. 14867,Green. ,Pink. ,Blue. ,Black. ,Red. ,4,What color are Phoebe's toenails when she is giving someone a massage?,136906,Friends,10.7-14.15,friends_s04e04_seg02_clip_06,Red. 14868,Hixton had discovered the books were missing and began searching the mansion.,He was scared Hixton's bad luck would become his.,Hixton asked him about the missing books.,Hixton found out they were forgeries.,Easley found out they weren't worth as much as he previously thought.,1,What did Easley say was the true reason he returned the books before Castle started talking about 100 million?,136907,Castle,66.99-74.04,castle_s03e14_seg02_clip_21,He was scared Hixton's bad luck would become his. 14869,Priya kisses Leonard,"Priya begins playing with leonard's vest, while she gets closer.",Priya pulls Leonard closer,priya plays with Leonard's hair,Leonard grabs priya and kisses her.,1,what happens after Priya grabs hold of Leonard?,136908,The Big Bang Theory,9.99-16.35,s04e18_seg02_clip_03,"Priya begins playing with leonard's vest, while she gets closer." 14870,The real wife feels indifferent because her husband was a jerk anyways.,The real wife feels extremely shocked.,The real wife feels sad.,The real wife feels annoyed with Castle.,The real wife feels suspicious of Beckett.,1,How does the real wife feel when she discovers that her deceased husband was cheating on her?,136909,Castle,47.31-73.44,castle_s02e10_seg02_clip_03,The real wife feels extremely shocked. 14871,Ross was doing a #1 when he was talking to Monica and Chandler,Ross was chilies when he was talking to Monica and Chandler,Ross was sitting down on the sofa when he was talking to Monica and Chandler,Ross was talking to stone cold when he was talking to Monica and Chandler,Ross was talking to the rock when he was talking to Monica and Chandler,2,what was Ross doing when he was talking to Monica and Chandler,136910,Friends,28.68-61.03,friends_s10e10_seg02_clip_07,Ross was sitting down on the sofa when he was talking to Monica and Chandler 14872,She is working on Sheldon. ,She is working on a smoking monkey. ,She is working on a rat with emphysema. ,She is working on a mouse with glaucoma. ,Amy is working on one celled organisms. ,4,How does Amy answer Bernadette after she asks her what she is working on?,136911,The Big Bang Theory,4.9-7.35,s08e07_seg01_clip_00,Amy is working on one celled organisms. 14873,Rachel said this was about the doctor's appointment.,Rachel said this was about him stealing her wind.,Rachel said this was about the movie.,Rachel said this was about the mall closing soon.,Rachel said this was about the lightning-bearer.,1,What did Rachel say this was about when Ross said that they had to go?,136912,Friends,29.77-39.7,friends_s02e19_seg02_clip_04,Rachel said this was about him stealing her wind. 14874,Adams said detections could be seen at any age,Chase said that calcifications could be hard to detect in people under 50,Chase said that bone damage could be hard to detect,Adams and chase were not discussing detections,Adams said brain matter could be hard to detect,1,What did Chase say could be hard to detect in people under 50 when talking to Adams,136913,House M.D.,0-60.53,house_s08e08_seg02_clip_08,Chase said that calcifications could be hard to detect in people under 50 14875,Lingerie.,A coat.,Jeans.,A skirt.,A long shirt,0,Waht was Rachel wearing after she came out of the bathroom? ,136914,Friends,55.07-77.02,friends_s04e18_seg02_clip_12,Lingerie. 14876,Heller,Castle,Esposito,Adam,Keller,0,Who does Nurse Lockheart say she is protecting when she is speaking to Beckett?,136915,Castle,2.27-15.45,castle_s05e17_seg02_clip_24,Heller 14877,Chandler feigns being calm.,Chandler storms away.,Chandler screams at Ross.,Chandler runs to the bathroom.,Chandler cries.,0,How does Chandler react after Monica's confession?,136916,Friends,18.7-47.63,friends_s05e23-24_seg02_clip_05,Chandler feigns being calm. 14878,He needs prior approval,It is against the patient's best interest,It is not hospital policy,There's no evidence,They don't have the equipment ,3,Why does House object to brain surgery when Cameron goes to seek father's consent?,136917,House M.D.,55.48-59.54,house_s03e19_seg02_clip_20,There's no evidence 14879,oxygen mask,feeding tube,breathing tube,scuba gear,nothing ,2,What did House's patient have inserted into his mouth when he was in the hospital bed? ,136918,House M.D.,4.92-9.02,house_s08e06_seg02_clip_23,breathing tube 14880,The new weather man.,The new sports reporter.,An up and coming actor.,Her supervisor.,Her new assistant.,1,Who introduces himself after Robin takes a drink?,136919,How I Met You Mother,34.58-43.31,met_s03e11_seg01_clip_02,The new sports reporter. 14881,852 chances,100 chances,800 chances,832 chances,632 chances,3,How many chances does House say he has been given before he used every one of them?,136920,House M.D.,66.76-77.57,house_s06e08_seg02_clip_11,832 chances 14882,in a toilet,on a bed,on a table,on the floor in the hay,on the arm of a chair,3,Where does Foreman notice the vomit before saying what do you make of this?,136921,House M.D.,29.89-37.03,house_s06e17_seg02_clip_04,on the floor in the hay 14883,They are at their apartment,They are in the park,They are in the car,They are at the movies,They are in a restaurant,0,Where are Howard and Bernadette after he is off the phone,136922,The Big Bang Theory,12.58-21.16,s08e15_seg02_clip_00,They are at their apartment 14884,She has OCD,She has anger issues,She is falling asleep,She is insane,She loves the cup,0,Why does Nadia become irritated when House moves her cup?,136923,House M.D.,8.08-14.25,house_s07e12_seg02_clip_23,She has OCD 14885,because she could get the job she wanted,because they were finally going to get some dinner,because she won a debate with Chandler,because they decided to adopt,because she didn't have to gain weight,3,Why did Monica get excited when she and Chandler were talking about family,136924,Friends,25.02-38.55,friends_s09e22_seg02_clip_21,because they decided to adopt 14886,That Lily is very ugly,That Lily's throwing up all over the place,That Lily's exploding from both ends like a busted fire hydrant,That Lily is not nice,That Lily is about to get married,2,What does Ted say on the answering machine to Lily that Marshall said when she's sitting on the couch?,136925,How I Met You Mother,0-8.4,met_s06e24_seg02_clip_07,That Lily's exploding from both ends like a busted fire hydrant 14887,monica,joey,leroy,rebecca,monty,1,Who was chandler talking to when ross walked into the coffee shop?,136926,Friends,29.19-32.37,friends_s01e21_seg02_clip_07,joey 14888,A remote,A cell phone,A fork,A notebook,A bottle,4,What object is Howard holding when the guys are standing around the island?,136927,The Big Bang Theory,34.38-43.86,s01e08_seg01_clip_03,A bottle 14889,"""Just what needs to be done.""","""Don't interrupt me when I'm talking to God!""","""Dearly Beloved, we are gathered here-""","""Do you take this man?""","""You don't get a say""",1,What did Joey say to Rachel after she told him that what he was doing was crazy?,136928,Friends,14.76-19.77,friends_s08e10_seg02_clip_13,"""Don't interrupt me when I'm talking to God!""" 14890,Kissed her on the lips,Kissed her on the cheek,Kissed her on the hand,Kissed her on the forehead,Kissed her on the nose,3,What did castle do to Alexis before he walked into the office?,136929,Castle,11.32-14.49,castle_s02e10_seg02_clip_20,Kissed her on the forehead 14891,Ross scurries in the window after Phoebe says she's sorry.,An alley cat scurries in the window after Phoebe says she's sorry.,A large gray rat scurries in the window after Phoebe says she's sorry.,A gigantic cockroach scurries in the window after Phoebe says she's sorry.,The monkey scurries in the window after Phoebe says she's sorry.,4,What scurries in the open window after Phoebe says she's sorry?,136930,Friends,55.23-61.03,friends_s01e19_seg02_clip_12,The monkey scurries in the window after Phoebe says she's sorry. 14892,Castle has a snake around his neck.,Castle has a chain necklace around his neck.,Castle has a scarf around his neck.,Castle has a pearl necklace around his neck.,Castle has a blanket around his neck.,2,What does Castle have around his neck when he talks to Kyle about zombies?,136931,Castle,0-19.79,castle_s04e22_seg02_clip_25,Castle has a scarf around his neck. 14893,Howard told Leonard to go pick up his lunch.,Howard told Leonard that he would never beat his score.,Howard told Leonard to grab a napking because he just got served.,Howard told Leonard to compare their scores.,Howard told Leonard to copy his dance moves.,2,What did Howard tell Leonard after he finished playing the game?,136932,The Big Bang Theory,12.3-20.11,s01e02_seg02_clip_12,Howard told Leonard to grab a napking because he just got served. 14894,Vasiliy could not think of any other alternatives.,Vasiliy liked to see people suffer.,Vasiliy had run out of options.,Vasiliy hated peaceful solutions.,Vasiliy felt pain was the only way to get the truth.,4,Why did Vasiliy want to use pain when he was disagreeing with Castle?,136933,Castle,0-2.67,castle_s08e11_seg02_clip_17,Vasiliy felt pain was the only way to get the truth. 14895,Sheldon was not aware of anything,Sheldon was not aware of the fact that he is tall,Sheldon was not aware that a friend should be supportive if their friend is proud of something they really suck at,Sheldon was not aware that Leonard was his friend,Sheldon was not aware of the fact that he likes water,2,What wasn't Sheldon aware of when Leonard told him?,136934,The Big Bang Theory,29.57-39.23,s01e10_seg02_clip_01,Sheldon was not aware that a friend should be supportive if their friend is proud of something they really suck at 14896,a cigar,a note,a pen,his pills,a piece of gum,1,what does house pull out from his coat after he asks adams to stay behind in his office?,136935,House M.D.,54.01-63.47,house_s08e06_seg02_clip_06,a note 14897,Bernadette and Amy,Sheldon and Leonard,Sheldon and Raj,Sheldon and Howard,Sheldon and Amy,0,Who is hanging out with Penny when she is home?,136936,The Big Bang Theory,0-13.78,s08e07_seg01_clip_00,Bernadette and Amy 14898,Izzie was too scared to talk about it.,It made Izzie feel uncomfortable.,Izzie did not want to put pressure on herself.,Izzie did not want to be judged by others.,Izzie did not want to bother others with her problems,0,Why did Izzie not want to talk about whether she could be a surgeon again when she was with others?,136937,Grey's Anatomy,73.59-77.6,grey_s03e07_seg02_clip_25,Izzie was too scared to talk about it. 14899,The bathroom ,The shower,The kitchen,From outside ,From the window,2,Where does Raj come from when He comes out to talk to Penny and Leonard,136938,The Big Bang Theory,23.57-33.5,s07e09_seg02_clip_08,The kitchen 14900,Joey tells Chandler to take off his shirt.,Joey tells Chandler to take off his hat.,Joey tells Chandler to take off his pants.,Joey tells Chandler to take off his socks.,Joey tells Chandler to go home.,2,What does Joey tell Chandler to do before he leaves the room?,136939,Friends,0-12.92,friends_s06e15-16_seg02_clip_10,Joey tells Chandler to take off his pants. 14901,Prince Edward Island,New York City Harbor,Cuba,between Rhode Island and Southern Maine,Buffalo,3,Where does Mundy suggest the dinghy was launched before they found it?,136940,Castle,57.63-75.78,castle_s07e01_seg02_clip_16,between Rhode Island and Southern Maine 14902,A TV remote,A pillow,A crystal ball,A cell phone,A bucket of chicken,3,What was Phobe holding when she said something was wrong?,136941,Friends,52.48-58.59,friends_s10e17-18_seg02_clip_33,A cell phone 14903,Chase,Nurse Regina,House,Taub,13,1,Who tells Cuddy the pharm tech is waiting for her after Cuddy talks to Chase?,136942,House M.D.,28.99-37.73,house_s06e13_seg02_clip_10,Nurse Regina 14904,10,9,8,7,6,0,How many people were sitting at the conference table when Bauman got mad?,136943,How I Met You Mother,10.53-28.88,met_s03e15_seg02_clip_03,10 14905,How else are they going to learn?,I'm not arguing with her ,I am only asking her questions,I want her to understand my concerns ,Let me handle this ,0,What did Sheldon say after Howard asked him why are you arguing with the dmv?,136944,The Big Bang Theory,0-53.39,s02e05_seg02_clip_09,How else are they going to learn? 14906,red,black,blue,grey,pink,1,What color is Judy's dress when she is standing at the podium?,136945,How I Met You Mother,53.71-59.03,met_s06e14_seg02_clip_14,black 14907,Smith told Beckett and Castle to stay inside their homes.,Smith told Beckett and Castle to get a new identity. ,Smith told Beckett and Castle to run or disappear or they will get killed. ,Smith told Beckett and Castle to do nothing.,Smith told Beckett and Castle to tell the higher authorities. ,2,What advice did Smith give Beckett and Castle before walking away?,136946,Castle,11.38-25.94,castle_s06e22_seg02_clip_15,Smith told Beckett and Castle to run or disappear or they will get killed. 14908,Lower east side,Upper east side,China town,Bronx,Untraceable ,0,Where did ryan trace the payphone call when informing beckett and castle?,136947,Castle,54.48-59.02,castle_s07e08_seg02_clip_02,Lower east side 14909,A blanket,A newspaper,A photograph,A laptop,A tissue,4,What is Sheldon holding when he said something about moss green?,136948,The Big Bang Theory,0-5.12,s01e11_seg02_clip_08,A tissue 14910,Two pictures.,One picture.,Three pictures.,Four pictures.,No pictures.,2,How many pictures were above the bed when Ross was getting up? ,136949,Friends,13.76-17.73,friends_s09e23-24_seg02_clip_20,Three pictures. 14911,watch a movie,go out,eat dinner,come home,go to the comic book store,3,What did Sheldon want Leonard to do when Sheldon was visiting?,136950,The Big Bang Theory,0-22.51,s06e15_seg02_clip_08,come home 14912,Joey,Monica,Phoebe,Chandler,Ross,2,Who does Rachel walk by before she sits on the couch?,136951,Friends,0-6.56,friends_s02e19_seg02_clip_13,Phoebe 14913,Sheldon hugged Beverly.,Sheldon proposed to Amy.,Sheldon joined in the hug of Penny and Leonard.,Sheldon went back to his seat.,Sheldon broke out in song.,2,What did Sheldon do after Beverly pronounced Penny and Leonard as husband and wife?,136952,The Big Bang Theory,50.42-63.38,s10e01_seg02_clip_16,Sheldon joined in the hug of Penny and Leonard. 14914,Kate proposes that the scene have more heat.,Kate proposes that the scene be sadder..,Kate proposes that they do nothing about the scene.,Kate proposes the scene have more comedy.,Kate proposes the scene have more drama.,0,What does Kate propose the scene have more of when discussing the scene with Joey?,136953,Friends,6.74-24.31,friends_s03e20_seg02_clip_10,Kate proposes that the scene have more heat. 14915,House took some pain pills.,House spun the ball on his desk.,House put his cellphone in his pocket.,House took a drink of coffee.,House turned on his laptop.,0,What did House do after Amber told him the patient was throwing his life away?,136954,House M.D.,72.47-81.47,house_s04e09_seg02_clip_07,House took some pain pills. 14916,A PET scan.,An MRI.,A CT scan.,An ultrasound.,A biopsy.,0,What test does Cuddy say that she wants to run on House when she is discussing his symptoms with Cameron?,136955,House M.D.,29.58-47.79,house_s03e02_seg02_clip_08,A PET scan. 14917,She pulls something out of the oven. ,She looks in the fridge. ,She washes dishes. ,She sits down at the table. ,She eats an apple. ,1,What does Rachel do after she walks into the kitchen?,136956,Friends,33.47-37.81,friends_s07e17_seg02_clip_10,She looks in the fridge. 14918,Janey gave the patient a hug,Janey gently touched the patient shoulder,Janey gave House a paper,Janey walked away,Janey did nothing,1,What did Janey do when she was standing by the patient bed talking to House?,136957,House M.D.,53.33-59.49,house_s08e06_seg02_clip_23,Janey gently touched the patient shoulder 14919,George walks away from Derek.,George kicks Derek.,George stands up and looks at Derek.,George passes out.,George hugs Meredith.,2,What does George do when Derek tells him to look out for her?,136958,Grey's Anatomy,0-4.1,grey_s02e02_seg02_clip_20,George stands up and looks at Derek. 14920,They were not doing anything else.,Writing on loose papers.,Just sitting there.,Writing on their hands.,Writing in notebooks.,4,"What were Phoebe, Monica, and Rachel doing when they were taking the quiz?",136959,Friends,1.71-52.18,friends_s02e19_seg02_clip_13,Writing in notebooks. 14921,a textbook,a file with an address and picture,evidence bag,her mug,a gun,1,what does ryan hand beckett when he is given a file?,136960,Castle,77.86-87.37,castle_s02e10_seg02_clip_20,a file with an address and picture 14922,Behind House,Behind Amber,By the doorway,Sitting in the hallway,In front of window?,1,Where is the white board when Amber sits down across from House?,136961,House M.D.,5.49-12.81,house_s04e12_seg02_clip_22,Behind Amber 14923,bored,happy,joyful,angry,reluctant,4,How did Leonard feel when Sheldon joined him?,136962,The Big Bang Theory,52.61-61.9,s04e12_seg01_clip_01,reluctant 14924,A fire-extinguisher mounted on the wall.,An empty desk with Randy's name plate sitting on it.,A photocopy machine.,A secretary working at her desk.,Two clocks one with NY time and one with UK time.,3,What can you see outside the door of Marshall's office when Randy is asking to be fired?,136963,How I Met You Mother,0.92-7.68,met_s06e07_seg02_clip_13,A secretary working at her desk. 14925,bored,hurt,angry,sad,irritated,4,How did Penny feel when Leonard told her the pact involved her?,136964,The Big Bang Theory,0-24.91,s03e05_seg02_clip_03,irritated 14926,sad,fake surprised,sympathetic,emotionless,giggly,1,What are Phoebe and Joey's expression after Ross tells them Rachel's pregnant?,136965,Friends,4.03-8.68,friends_s08e03_seg02_clip_11,fake surprised 14927,Leonard,Penny,Raj,Howard,no one,1,Who is Sheldon with when he is face timing Amy on the phone?,136966,The Big Bang Theory,20.16-22.95,s04e17_seg02_clip_03,Penny 14928,pink,grey,red,green,black,0,"What color is the shirt Foreman is wearing when he say's ""The chowder...""?",136967,House M.D.,80.88-90.37,house_s03e15_seg02_clip_04,pink 14929,He is talking to Robin,He is eating ,He is running on the treadmill,He is using his laptop,He is watching TV,3,What is Barney doing when Ted walks into the room?,136968,How I Met You Mother,4.3-7.98,met_s05e05_seg02_clip_00,He is using his laptop 14930,Howard spoke of the lovely nursery he was going to make for the baby. ,Howard mentioned how he'd soon be buying diapers. ,Howard mentioned Bernadette's breasts getting bigger. ,The benefit Howard mentioned was Bernadette being able to eat whatever she wanted. ,Howard spoke of Bernadette's ankles getting thicker. ,2,What did Howard mention as one of the benefits of Bernadette's pregnancy when they hugged? ,136969,The Big Bang Theory,36.56-50.15,s09e16_seg02_clip_12,Howard mentioned Bernadette's breasts getting bigger. 14931,Orange.,Blue.,Red.,Gray.,White.,1,What color was the folder that Taub was holding as he walked away after house said to let a woman vomit through the MRI?,136970,House M.D.,59.8-64.27,house_s05e04_seg02_clip_23,Blue. 14932,A bottle of pills,A prescription pad,His phone,A pager,Nail clippers,0,What did House take out of his pocket after the patient told him he loves cows?,136971,House M.D.,35.7-64.16,house_s02e14_seg02_clip_02,A bottle of pills 14933,Brian,James,Adam,Joey,Mia,3,Who was sitting beside Chandler when he collected the newspaper? ,136972,Friends,0-2.4,friends_s04e02_seg02_clip_03,Joey 14934,Take off shoes,Wash his hands,Walk out room,Put on hat,Pick up box,4,What did Sheldon do after Penny said freaky?,136973,The Big Bang Theory,26.6-36.25,s03e03_seg02_clip_11,Pick up box 14935,Sheldon will travel far away.,Sheldon want to end the relationship.,"Sheldon told, ""Ihate you"".","Sheldon said, ""I love you, too"".",Because quit his job.,3,Why Amy was surprised when Sheldon talked to her?,136974,The Big Bang Theory,6.72-64.02,s08e08_seg02_clip_16,"Sheldon said, ""I love you, too""." 14936,Alex's dad reveals Alex had a sip of champagne. ,Alex's dad reveals Alex had a sip of whiskey. ,Alex's dad reveals Alex had a glass of red wine. ,Alex's dad reveals Alex had 2 beers.,Alex's dad reveals Alex had a shot of bourbon. ,0,How much does Alex's dad reveal Alex has had to drink when House is diagnosing her condition?,136975,House M.D.,8.5-12.97,house_s02e13_seg02_clip_02,Alex's dad reveals Alex had a sip of champagne. 14937,Alex dances with Izzie.,Alex hugs Izzie.,Alex nods his head at Izzie.,Alex walks out the door.,Alex sits on the floor.,2,What does Alex do after Izzie asks if she can buy him a drink?,136976,Grey's Anatomy,51.34-55.32,grey_s03e08_seg02_clip_25,Alex nods his head at Izzie. 14938,She said celery creeps her out,She said spiders creep her out,She said mice creep her out,Picking out other people's sex clothes,She said she doesn't get creeped out,3,What did Monica say creeps her out after Rachel asked for her opinion?,136977,Friends,14.41-23.41,friends_s04e18_seg02_clip_03,Picking out other people's sex clothes 14939,Ryan said basketball hoops are just what the kids need to get outside.,Ryan said basketball hoops are an eyesore on such a beautiful property.,Ryan said basketball hoops are an invitation for kids to jump the fence and play.,Ryan said basketball hoops are frequently stolen and resold.,Ryan said basketball hoops are just an invitation for burglars to break in.,4,What was Ryan's response when Castle noticed Roger and Joanna had moved the basketball hoop away from the townhouse?,136978,Castle,81.85-84.53,castle_s08e10_seg02_clip_11,Ryan said basketball hoops are just an invitation for burglars to break in. 14940,"When House saw Cameron, he quickly looked away then ignored her completely.",House stopped what he was doing and asked Cameron why she wasn't ready yet.,House stopped mid-sentence and exhaled a breath of admiraton upon seeing Cameron.,"After House looked at Cameron, he told her that she looked like a trollop.","Upon seeing Cameron, House pointed at her and laughed.",2,How did House react after he saw Cameron in her red formal gown?,136979,House M.D.,3.17-6.79,house_s02e17_seg02_clip_04,House stopped mid-sentence and exhaled a breath of admiraton upon seeing Cameron. 14941,Beckett and Castle were at her desk,Beckett and Castle were at the library,Beckett and Castle were at the airport,Beckett and Castle were at a computer store,Beckett and Castle were in he captain's office,1,Where are Beckett and Castle when they were sitting at a computer,136980,Castle,16.87-26.45,castle_s06e12_seg02_clip_22,Beckett and Castle were at the library 14942,Monica is on a plane.,Monica is in the kitchen.,Monica is at Ralph Lauren.,Monica is at the coffee shop.,Monica is at the mall.,0,Where is Monica when she tells Chandler about eating with Richard?,136981,Friends,14.24-28.93,friends_s05e23-24_seg02_clip_05,Monica is on a plane. 14943,A hallway.,An office.,A kitchen.,A lab.,A garden.,3,Where was Wilson when House told him to inform him when the results cam in results? ,136982,House M.D.,28.04-32.05,house_s02e22_seg02_clip_14,A lab. 14944,Sophia,Emma,Olivia,Ashley,Mia,3,"Who was WIlson talking to when he said ""How long have you been having it.""?",136983,House M.D.,50.61-59.96,house_s06e09_seg02_clip_00,Ashley 14945,That girls are the only ones who need to be honest ,That honesty is truly the best policy,That honesty is never good,That one should only be honest if the other person is going to find out anyway,That honesty is good unless it's going to get you in trouble,4,How does Joey feel about honesty when giving advice to Ross in the apartment?,136984,Friends,16.7-26.79,friends_s03e16_seg02_clip_03,That honesty is good unless it's going to get you in trouble 14946,They were in Cuddy's office.,They were in the theater room,They were seated around a table in their office.,Thy were standing in the corridor.,They were not together.,2,Where were the physicians when Kuter asked House if he was feeling ok?,136985,House M.D.,0-2.49,house_s04e15_seg02_clip_07,They were seated around a table in their office. 14947,Kripke found an error in Sheldon't latest paper.,A new robot battle competition has been scheduled. ,Professor Rothman's retirement party is going to be moved up. ,The lunch room has been quarantined.,Kripke is getting promoted. ,2,What did Kripke tell Sheldon after he came to Sheldon's office?,136986,The Big Bang Theory,46-59.73,s05e14_seg02_clip_08,Professor Rothman's retirement party is going to be moved up. 14948,apron,glasses,gloves,hat,purse,3,What was Emily wearing before she started talking?,136987,House M.D.,0-8.06,house_s08e11_seg02_clip_23,hat 14949,Stuart has a poster in his hand ,Stuart has a comic book in his hand ,Stuart has a rubic cube in his hand,Stuart has a martian in his hand,Stuart has a clipboard in his hand,4,What does Stuart have in his hand when he comes out the back room,136988,The Big Bang Theory,3.7-12.97,s08e24_seg02_clip_00,Stuart has a clipboard in his hand 14950,Wilson said he thought he was going to follow Sam to Delaware.,Wilson said he thought he was going to follow Sam to St. Louis.,Wilson said he thought he was going to follow Sam to Arizona.,Wilson said he thought he was going to follow Sam to Baltimore.,Wilson said he thought he was going to follow Sam to Pittsburgh.,3,Where did Wilson say he thought he was going to follow Sam when he adjusting his suit?,136989,House M.D.,42.29-45.85,house_s06e18_seg02_clip_13,Wilson said he thought he was going to follow Sam to Baltimore. 14951,Sprite,Water,Milk,Wine,Beer ,2,Which beverage does Amber Volakis say the patient requested when trying to figure out a diagnosis with the other doctors?,136990,House M.D.,66.06-73.86,house_s04e04_seg02_clip_22,Milk 14952,Her coat. ,A tissue. ,A stuffed animal. ,A medicine bottle. ,An air horn. ,1,What is Bernadette holding when she is hugging Howard?,136991,The Big Bang Theory,0-1.2,s06e04_seg02_clip_01,A tissue. 14953,Between 6 and 8 PM.,Between 7 and 9 PM,Between 4 and 6 AM,Between 3 and 5 PM,Between 930 and 1130 PM,4,What time did Castle say that Lyla was killing when discussing the case?,136992,Castle,58.54-66.9,castle_s03e19_seg02_clip_15,Between 930 and 1130 PM 14954,Fireplace,Electric blanket,Portable heater,Central heating,He was staying cold.,2,What did Master say when Chase asked how the patient stayed warm?,136993,House M.D.,6.75-11.7,house_s07e18_seg02_clip_08,Portable heater 14955,Phobe's back,Chandlers arm,The telephone,her leg,A dirty sink,3,What was Monica rubbing when Chandler said they were leaving tomorrow,136994,Friends,52.8-57.44,friends_s09e03_seg02_clip_13,her leg 14956,A knife,A gun,A body,Muddy tire tracks,A baseball bat,3,What did Beckett notice other than the blood on the ground after her and Castle approached the crime scene?,136995,Castle,33.37-37.94,castle_s04e03_seg02_clip_01,Muddy tire tracks 14957,An astronaut ,Spiderman,Thor,A garbageman,Superman,4,What is Zack dressed as when he's in the hallway?,136996,The Big Bang Theory,0-7.75,s04e11_seg02_clip_09,Superman 14958,Joey is stressed,Joey is tired,Joey and rachel are on a date,Joey is bored,Joey wants to talk about cars,2,Why doesn't joey want to talk about roommate stuff when he is with rachel at the restaurant?,136997,Friends,17.83-22.67,friends_s08e12_seg02_clip_06,Joey and rachel are on a date 14959,Penny ,Amy,Raj,Leonard.,Bernadette,3,Who thinks Sheldon is afraid of change after he vetos getting a dining room table?,136998,The Big Bang Theory,8.17-15.49,s07e16_seg01_clip_01,Leonard. 14960,Castle admires Fallon.,Castle likes Fallon.,Castle thinks Fallon is a jackhole.,Castle emulates Fallon.,Castle wants to be like Fallon.,2,How does Castle feel about Agent Fallon after Fallon asks Beckett for help?,136999,Castle,37.86-65.27,castle_s03e17_seg02_clip_18,Castle thinks Fallon is a jackhole. 14961,trash ,t-shirts,trees,wind chimes ,flags,4,What's blowing in the breeze outside when Thatcher is talking to Grey?,137000,Grey's Anatomy,15.88-19.15,grey_s03e22_seg02_clip_14,flags 14962,Christmas.,Labor Day.,Thanksgiving.,Boxing Day.,Halloween.,4,What holiday does Barney reference before Ted corrects him?,137001,How I Met You Mother,0-10.22,met_s03e09_seg02_clip_02,Halloween. 14963,Lily,Robin,Ted,Barney,Honey,4,Who was Marshall on the phone with before the scene with Barney and Honey?,137002,How I Met You Mother,15.26-61.03,met_s06e15_seg02_clip_15,Honey 14964,Jesse was at a bar and Mandy came in and threw herself at him.,Jesse was at a tattoo convention and Mandy was there.,Jesse ran into Mandy at a party.,Mandy called Jesse and asked him to take her back.,Mandy told a friend to tell Jesse she was in town.,0,How did Jesse hook up with Mandy again after they broke up?,137003,Castle,26.71-32.49,castle_s06e13_seg02_clip_04,Jesse was at a bar and Mandy came in and threw herself at him. 14965,Rachel reveals that Ross has ten children.,Rachel reveals that Ross is gay.,Rachel reveals that Ross is bisexual.,Rachel reveals that Ross is in love with her.,Rachel reveals that Ross has been married to multiple women.,4,What does Rachel reveal about Ross after she sits down?,137004,Friends,36.02-60.03,friends_s06e21_seg02_clip_15,Rachel reveals that Ross has been married to multiple women. 14966,At the Mall.,In the back of a taxi.,Outside Monica's apartment.,At the coffee shop.,In Joey and Chandler's apartment. ,1,Where are Joey and Chandler when Phoebe tells them she is sorry about their shopping?,137005,Friends,51.65-59.03,friends_s02e09_seg02_clip_17,In the back of a taxi. 14967,punched him,laid down,Stood up,started working,made a call,2,What did House do after Wilson was done talking?,137006,House M.D.,38.65-42.79,house_s02e13_seg02_clip_19,Stood up 14968,Sheldon closed the door and reopened it. ,Sheldon got undressed. ,Sheldon took Amy to his room.,Sheldon stood by the door shocked.,Sheldon worked on his laptop.,4,What did Sheldon do when Amy was laying on the couch dressed as Snow White?,137007,The Big Bang Theory,42.78-53.47,s06e18_seg02_clip_16,Sheldon worked on his laptop. 14969,At the computer desk.,On the couch.,At the table.,On the floor.,In the armchair.,1,Where was Howard sitting before Sheldon entered the room?,137008,The Big Bang Theory,45.28-62.02,s07e09_seg02_clip_08,On the couch. 14970,kissing ross,pouring wine into glasses,cuddling with ross,eating popcorn,sleeping,1,what is ross's date doing when they are sitting together on the couch?,137009,Friends,62.81-69.02,friends_s07e19_seg02_clip_14,pouring wine into glasses 14971,Curious,Sad,Happy ,Jealous,Delighted ,3,How does Rachael feel when she sees Joey with another woman?,137010,Friends,17.11-25.2,friends_s09e22_seg02_clip_07,Jealous 14972,Raymond and Jeezy,Paul and Mike,Monica and Phoebe,Kanye and Kim,Kid and Rock,2,who was sitting on both sides of Ross when he was sitting on the couch?,137011,Friends,15.15-34.16,friends_s04e21_seg02_clip_01,Monica and Phoebe 14973,She goes to get coffee. ,She goes to the fire department. ,She goes to the police station. ,She goes to stay at Ross's. ,She goes into Joey's apartment and catches him pretending to be the fire inspector. ,4,What does Phoebe do after the fire inspector calls her?,137012,Friends,16.21-34.52,friends_s06e18_seg02_clip_10,She goes into Joey's apartment and catches him pretending to be the fire inspector. 14974,Pete,Derek,Yang,Meredith,Jake,2,Who was the Chief talking about when he spoke to Dr. Bailey?,137013,Grey's Anatomy,0-26.79,grey_s03e10_seg02_clip_24,Yang 14975,sick,happy,bored,envious,angry,3,How did Penny feel when she saw Leonard's makeup?,137014,The Big Bang Theory,18.24-45.13,s06e13_seg01_clip_00,envious 14976,Mr. Albrook said Erika inherited a large amount of money from her grandmother.,Mr. Albrook said Erika had a very large trust fund.,Mr. Albrook said Erika won a jackpot at a casino a few months ago.,Mr. Albrook said Erika wasn't rich but she wasn't having any problems.,Mr. Albrook said Erika had plenty of money in her bank account for Europe.,4,What was Mr. Albrooks answer when Beckett asked if Erika had money problems?,137015,Castle,85.97-90.02,castle_s05e24_seg02_clip_04,Mr. Albrook said Erika had plenty of money in her bank account for Europe. 14977,Tell everyone Sheldon's research is a lie,Tell everyone his secrets,Ban him from Comic-con for life,Burn his books,Blind him with a hot spoon,4,What did Siebert say he would do to Sheldon when he didn't attend the party?,137016,The Big Bang Theory,21.58-33.83,s04e15_seg01_clip_02,Blind him with a hot spoon 14978,It sounds like a soda product.,"It needs more ""punch"".",It sounds way too derivative. ,It's not a good name.,It's better than his first idea.,3,What does Howard say about Sheldon's name for the group after Sheldon gets off the couch?,137017,The Big Bang Theory,0-16.53,s03e18_seg02_clip_06,It's not a good name. 14979,Secretary Reed gives the order,Bronson gives the order,Valkyrie gives the order,The President gives the order,Omaha gives the order,0,Who gives the order for the strike when the group listens on the audio feed?,137018,Castle,70.21-80.5,castle_s06e02_seg02_clip_16,Secretary Reed gives the order 14980,he sat down,he kissed him,he shot him,he made a phone call,he patted the other white males arm,4,what did the shite male do after he said luckily you passed,137019,Castle,0-9.45,castle_s04e21_seg02_clip_13,he patted the other white males arm 14981,A handbag.,A paper script,A plate.,A remote control.,A book.,1,What was Penny holding when Sheldon said Shelly-bean? ,137020,The Big Bang Theory,0-7.25,s04e14_seg02_clip_15,A paper script 14982,Castle gets a text message. ,Castle sees a note taped to the car door. ,Castle sees a message spray-painted on the sidewalk. ,Castle sees a message written on the back windshield of the car. ,Castle finds a recording device with an audio message. ,3,Where does Castle see a message after the car is found? ,137021,Castle,20.1-25.71,castle_s07e15_seg02_clip_00,Castle sees a message written on the back windshield of the car. 14983,House sits at the table.,House pulls books off the bookshelf.,House walks back and forth in the room.,House drinks coffee.,House asks Taub more questions.,2,What does House do when Taub tells him the results?,137022,House M.D.,48.04-53.57,house_s06e18_seg02_clip_17,House walks back and forth in the room. 14984,The surgery was on the mans knee.,The surgery was in the vein of the mans arm.,The surgery was in the vein of the mans leg.,The surgery was on the mans back.,The surgery was in a vein in the mans neck.,2,Where on the mans body was the surgery that has left him in so much pain even after the surgery is complete.,137023,House M.D.,55.84-77.02,house_s01e21_seg02_clip_19,The surgery was in the vein of the mans leg. 14985,In the bathroom,Sitting in the front row,Stuck in traffic,Beside Monica,On a plane,3,Where is Mrs. Geller when Monica walks down the isle?,137024,Friends,54.25-58.03,friends_s07e23-24_seg02_clip_38,Beside Monica 14986,A large black transvestite.,Sheldon,Penny,Raj,Howard,0,Who answered the door after Leonard knocked on the door?,137025,The Big Bang Theory,27.6-35.66,s03e22_seg02_clip_00,A large black transvestite. 14987,grocery store,the comic book store,the library,the apartment,Penny's,1,Where did Leonard suggest to go besides the clubs when they were all eating together?,137026,The Big Bang Theory,55.38-66.04,s02e20_seg01_clip_02,the comic book store 14988,House has had too much caffeine.,House is coming down from heroin.,The patient is coming down from heroin.,The machine needs to be calibrated.,The photographs were over-developed.,2,Why does Taub say the Echocardiogram photographs are fuzzy after House took them?,137027,House M.D.,17.77-25.38,house_s04e09_seg02_clip_16,The patient is coming down from heroin. 14989,She slapped her.,She hugged her.,She pushed her.,She kissed her.,She walked past her.,1,What did Phoebe do to Rachel after she walked out of the kitchen?,137028,Friends,22.02-28.22,friends_s07e10_seg02_clip_18,She hugged her. 14990,Monica is wearing a pink chef coat when she is speaking to the customers,Monica is wearing a brown chef coat when she is speaking to the customers,Monica is wearing a red chef coat when she is speaking to the customers,Monica is wearing a yellow chef coat when she is speaking to the customers,Monica is wearing a blue chef coat when she is speaking to the customers,4,What color chef coat is Monica wearing when she is speaking to the customers,137029,Friends,22.42-31.6,friends_s09e19_seg02_clip_17,Monica is wearing a blue chef coat when she is speaking to the customers 14991,brown,white,grey,Blue,black,3,"What color is Marshall's shirt when he say's ""I'm in trouble...""?",137030,How I Met You Mother,52.41-62.03,met_s03e15_seg02_clip_07,Blue 14992,That she is secretly poisoning herself.,That she is cutting herself.,That she is lying to herself.,That she is stealing from the hospital.,That she is trying to escape the hospital.,0,What does Christina think one of her patients did when she is talking to Izzie?,137031,Grey's Anatomy,0-7.65,grey_s02e04_seg02_clip_12,That she is secretly poisoning herself. 14993,threw his papers on the table,threw his papers on the floor,threw his papers at Cameron,burned his papers,did origami with his papers,0,What did Dr House do after questioning Cameron about a book?,137032,House M.D.,51.73-56.86,house_s01e14_seg02_clip_00,threw his papers on the table 14994,Upper Right,Top,Bottom,Upper Left ,Lower Left,0,Where is the word PORT located on the doorframe after they walk through the door?,137033,Castle,15.25-25.56,castle_s07e16_seg02_clip_20,Upper Right 14995,Eating,Taking a shower,Hugging,Sleeping,Swimming,1,What are Ted and Robin doing in the bathroom when Marshall comes in?,137034,How I Met You Mother,16.93-26.86,met_s02e01_seg02_clip_03,Taking a shower 14996,Eric started to laugh.,Beckett burped.,Some shot a gun at the window.,The door bell rang.,Fire alarm went off.,2,What happened when Beckett and Eric almost kissed?,137035,Castle,61.49-67.97,castle_s05e21_seg02_clip_19,Some shot a gun at the window. 14997,Alexis is sitting on the floor.,Alexis is sitting next to Martha on the couch,Alexis is sitting by Castle in a swimming pool.,Alexis is sitting in a cab.,Alexis is sitting at her desk at school.,1,Where is Alexis sitting when she is talking to Castle.,137036,Castle,15.64-22.09,castle_s03e17_seg02_clip_10,Alexis is sitting next to Martha on the couch 14998,The picture was on the building's ceiling.,The picture was located on the elevator door.,The picture was on the floor.,The picture was on the building's front entrance door.,The picture was on the stairs.,1,Where was the picture of Izzie located after the elevator door closed?,137037,Grey's Anatomy,51.33-54.93,grey_s01e04_seg02_clip_11,The picture was located on the elevator door. 14999,Taub asked the patient why he did not tell them that he was married.,Taub asked the patient why did not love his wife,Taub asked the patient why he left his wife behind,Taub asked the patient why his wife looked weak,Taub asked the patient where they lived.,0,What did Taub ask the patient after Chase prescribed a medication for them and left the room?,137038,House M.D.,80.1-88.02,house_s07e18_seg02_clip_10,Taub asked the patient why he did not tell them that he was married. 15000,Sydney acted mean towards everyone.,Sydney acted like everything was fine by putting a smile on her face.,Sydney acted depressed.,Sydney acted jovial.,Sydney acted competent.,1,How did Sydney act after she came back to the hospital from her time off?,137039,Grey's Anatomy,24.08-28.99,grey_s03e07_seg02_clip_25,Sydney acted like everything was fine by putting a smile on her face. 15001,Sheldon went to Penny's apartment to clean while Penny was sleeping.,Sheldon went to Penny's apartment to organize her shampoo.,Sheldon went to Penny's apartment to read a magazine.,Sheldon went to Penny's apartment to leave her a surprise birthday gift.,Sheldon went to Penny's apartment to spend the night with Amy.,0,Why did Sheldon go to Penny's apartment after everyone has gone to sleep?,137040,The Big Bang Theory,45.24-68.03,s01e02_seg02_clip_04,Sheldon went to Penny's apartment to clean while Penny was sleeping. 15002,Her other children,A puppy,A snake,A briefcase,Her mother,0,Who is on the couch when Shelley asks House to look at her son?,137041,House M.D.,22.01-31.69,house_s01e10_seg02_clip_09,Her other children 15003,The lady is wearing a blue business suit,The lady is wearing a red dress,The lady is wearing a white robe,The lady is wearing a green wrap dress,The lady is wearing a polk-dot coat,2,What is the lady wearing that is standing next to Alexis when she is sitting in front of her computer,137042,Castle,0-8.91,castle_s08e14_seg02_clip_18,The lady is wearing a white robe 15004,a flddle,a ukulele,an electric guitar,a guitar,a flute,3,What is Phoebe playing when Monica come's out from the restaurant?,137043,Friends,0-5.4,friends_s09e19_seg02_clip_17,a guitar 15005,A violin.,A saxaphone.,A flute.,A horn.,A guitar.,4,What did Phoebe carry with her when she left the restaurant?,137044,Friends,19.51-24.61,friends_s06e14_seg02_clip_05,A guitar. 15006,Rachel claimed they would have 2 pizzas.,Rachel claimed they would have 3 pizzas.,Rachel claimed they would have 5 pizzas.,Rachel claimed they would have 10 pizzas.,Rachel claimed they would have 9 pizzas.,3,How many pizzas did Rachel claim the friends would have when they hung out?,137045,Friends,0-18.61,friends_s05e19_seg02_clip_17,Rachel claimed they would have 10 pizzas. 15007,She tried to dance on his feet.,Because the little girl did a split.,Rachel tried to cut in.,Phoebe tried to cut in.,The little girl and really and e couldn't keep up.,0,Why was Ross surprised when he started dancing with the little girl?,137046,Friends,25.12-36.29,friends_s08e01_seg02_clip_18,She tried to dance on his feet. 15008,he was investigating a crime scene,he was hostage,he was at a victims home,he was on call,he was at the police station,0,Where was Esposito when Ryan apperared with K-9 back up?,137047,Castle,17.71-26.8,castle_s07e20_seg02_clip_17,he was investigating a crime scene 15009,He was away on business.,He was on tape going in and leaving the movie theater.,He was sitting at the coffee shop and several witnesses saw him.,He was working late and his secretary vouched for him.,He ordered pizza the night of Marie's murder and signed for it at 8:25.,4,Why did Beckett say Carter alibied out when she and Castle were walking in the hallway?,137048,Castle,12.6-18.91,castle_s03e09_seg02_clip_08,He ordered pizza the night of Marie's murder and signed for it at 8:25. 15010,Sweeping the floor.,Reading a book.,Eating a sandwich.,Cleaning the table.,Sitting on the couch.,4,What was Leonard doing when Penny handed him the paper?,137049,The Big Bang Theory,0-25.43,s03e16_seg02_clip_04,Sitting on the couch. 15011,Marshall was sitting next to the dining room table.,Marshall was standing in the kitchen.,Marshall was standing by the window in the living room.,Marshall was lying down in bed.,Marshall was lying down on the floor.,0,Where was Marshall when he was speaking with his parents?,137050,How I Met You Mother,0.6-9.3,met_s06e13_seg02_clip_15,Marshall was sitting next to the dining room table. 15012,to Timbuktu,the hill,for cover.,out the door,IKEA,4,Where does Raj say everyone is running before Penny takes a bite of food?,137051,The Big Bang Theory,4.52-8.82,s07e16_seg01_clip_01,IKEA 15013,Barney and Ted were standing by the refreshment table,Barney and Ted were standing by the bar,Barney and Ted were standing by the DJ booth,Barney and Ted were standing at the top of the stairs,Barney and Ted were standing near the restrooms,3,Where were Barney and Ted standing before walking towards the woman in the red dress,137052,How I Met You Mother,0-8.17,met_s03e10_seg02_clip_08,Barney and Ted were standing at the top of the stairs 15014,Ross order one mushroom pizza,Ross ordered one pepperoni pizza,Ross ordered one sausge pizza,Ross didn't order any pizza,Ross ordered one vegetarian pizza,4,What kind of pizza did Ross order when the pizza delivery arrived at the apartment?,137053,Friends,46.52-51.48,friends_s05e19_seg02_clip_04,Ross ordered one vegetarian pizza 15015,Black.,Blue.,Yellow.,Green.,Purple.,3,What is the color or Sheldon's shirt when he's talking to Howard?,137054,The Big Bang Theory,54-58.07,s02e22_seg02_clip_08,Green. 15016,Beckett starts crying,Beckett tries to call back,Beckett gets up from her seat quickly,Beckett throws her phone,Beckett calls Esposito,2,What does Beckett do after the man hangs up?,137055,Castle,43.24-49.61,castle_s04e07_seg02_clip_02,Beckett gets up from her seat quickly 15017,Her boyfriend died last night. ,Emily's condition is deteriorating and not receiving help from Dr. Stevens.,Emily's health has miraculously improved.,She was having trouble finding Emily's mother.,She really needed some time off to go visit her parents who were getting older. ,1,What makes Izzie anxious about after she is told that she will have to handle it herself? ,137056,Grey's Anatomy,24.76-42.76,grey_s02e11_seg02_clip_21,Emily's condition is deteriorating and not receiving help from Dr. Stevens. 15018,He drinks his water,He walks out the door,He kicks off his slippers,He walks back to Leonard,He laughs ,3,What does Sheldin do after he says Im on fire tonite?,137057,The Big Bang Theory,20.95-59.02,s01e14_seg02_clip_09,He walks back to Leonard 15019,A cane.,A wallet.,A baseball bat.,A folder.,A phone.,0,What is House holding when he said something to Nolan about big news?,137058,House M.D.,38.28-45.59,house_s06e20_seg02_clip_24,A cane. 15020,eating food,pouring wine,making cookies,drying her dishes,cleaning the counters,3,what is penny doing when she is talking to leonard in her apartment?,137059,The Big Bang Theory,0-9.83,s02e12_seg02_clip_08,drying her dishes 15021,calling for help,working,reading,writing a report,flirting,4,What was Alex doing when he was looking after a patient?,137060,Grey's Anatomy,0-19.83,grey_s02e14_seg02_clip_04,flirting 15022,Joey said he eats a lot of meat.,Joey said he eats a lot of cake.,Joey said he eats a lot of candy.,Joey said he eats a lot of vegetables.,Joey said he eats a lot of chips.,0,What did Joey say he eats a lot of when he was talking to Phoebe?,137061,Friends,14.34-17.33,friends_s04e16_seg02_clip_13,Joey said he eats a lot of meat. 15023,Stella gestures with her hands and picks up the bowl of popcorn.,Stella screams at Ted.,Stella walks out the door.,Stella smacks Ted on the cheek.,Stella runs to the bathroom.,0,What does Stella do when she tells Ted to go to his room?,137062,How I Met You Mother,5.46-7.28,met_s04e01_seg02_clip_13,Stella gestures with her hands and picks up the bowl of popcorn. 15024,Making dinner.,Drying dishes.,Putting away dishes.,Talking to Raj.,They weren't there.,1,What are Penny and Leonard doing when Sheldon is talking?,137063,The Big Bang Theory,7.7-19.45,s05e05_seg02_clip_07,Drying dishes. 15025,Raj offered to buy dinner,Raj offered to buy the bloody head,Raj offered to buy a drink,Raj offered to buy a ring,Raj offered to buy nothing,1,What did Raj offer to buy Emily when they are in the store?,137064,The Big Bang Theory,41.06-49.7,s08e24_seg02_clip_00,Raj offered to buy the bloody head 15026,At the table with all the food on it.,In the hallway.,In the bedroom.,In the bathroom.,In the basement.,0,"Where did Rachael repeat the phrase ""talking to Rome"" after handing phone over?",137065,Friends,14.57-19.89,friends_s01e08_seg02_clip_02,At the table with all the food on it. 15027,A small red cooler.,A vase with flowers.,A picture frame with a photo of Meredith's mom.,Test tubes filled with blood.,A blood pressure cuff,0,What is sitting on the table after George drags Meredith and her chair out of the office?,137066,Grey's Anatomy,34.89-37.68,grey_s01e02_seg02_clip_07,A small red cooler. 15028,Marshall.,Robin.,Hammond.,Lily.,Ted.,1,Who sat in middle of Ted and Lily when rrived Barney?,137067,How I Met You Mother,6.1-61.03,met_s02e10_seg02_clip_11,Robin. 15029,Beckett hugged the Crime scene tech. ,Beckett left the room.,Beckett sat on the floor.,Beckett sprayed the trajectory light.,Beckett started crying. ,3,What did Beckett do after asking the Crime scene Tech to see the trajectory?,137068,Castle,48.37-57.68,castle_s03e13_seg02_clip_03,Beckett sprayed the trajectory light. 15030,They made objects move,They were possessed ,They cast spells,They took mushrooms,They stabbed people ,3,Why does House say that teenage witches were stoned to death when arguing with Cole?,137069,House M.D.,13.3-18.81,house_s04e04_seg02_clip_22,They took mushrooms 15031,The screamed,The cried,They laughed,The danced,The frowned,2,"How did Nora and House reacted when Nora said ""It'll be fun, like a sleepover.""",137070,House M.D.,72.55-85.46,house_s06e10_seg02_clip_18,They laughed 15032,Amy is talking to Leonard.,Raj is talking to Leonard.,Priya is talking to Leonard.,Sheldon is talking to Leonard.,Bernadette is talking to Leonard.,0,Who is Amy talking to when she is sitting on the couch?,137071,The Big Bang Theory,21.97-24.1,s09e21_seg02_clip_10,Amy is talking to Leonard. 15033,"Sky finds the words ironic because Hayley said if anyone was going to die first, it was going to be Sky.",Sky finds the words ironic because Hayley said she was going to live forever.,Sky finds the words ironic because Hayley said she'd never done a deal with a drug dealer in her life.,"Sky believes Hayley was using drugs again, and Hayley had once told her if she didn't get clean, she'd end up dead.","Sky finds to words ironic because Hayley said she'd never drink again, but alcoholism did her in.",3,Why does Sky find the words Hayley told her to be ironic when Sky is speaking to Beckett and Castle about Hayley's death?,137072,Castle,0-35.04,castle_s02e07_seg02_clip_10,"Sky believes Hayley was using drugs again, and Hayley had once told her if she didn't get clean, she'd end up dead." 15034,home,toilet,coffe house,bar,park,2,where did Chandler wil go when he told with Ross and Joey,137073,Friends,32.76-59.03,friends_s02e21_seg02_clip_12,coffe house 15035,His brother's keeper,His Dad's caregiver,His mom's favorite,His sister's brother,Hi Aunt's nurse,0,What does Leopold say he is not when he's talking to Beckett?,137074,Castle,23.47-28.07,castle_s05e17_seg02_clip_17,His brother's keeper 15036,She has seen Howard's mom burp him. ,She has seen Howard's mom wipe his mouth. ,She has seen Howard's mom brush his teeth. ,She has seen Howard's mom change his clothes. ,She has seen Howard's mom give him medicine. ,0,What does Penny say she has seen when she was with Howard and his mother?,137075,The Big Bang Theory,11.27-12.71,s06e07_seg02_clip_05,She has seen Howard's mom burp him. 15037,On the couch,The kitchen counter,The table,Connects it to a projector,On the bed,3,Where does Castle put his phone when he talks to Beckett?,137076,Castle,50.13-58.26,castle_s03e16_seg02_clip_23,Connects it to a projector 15038,Ross,Chandler,Phoebe,Rachel,Joey,3,Who is Monica talking to when she is upset and crying?,137077,Friends,0-13.67,friends_s10e10_seg02_clip_16,Rachel 15039,Robin screamed.,Robin danced with Ted.,Robin throws her arm up by her head on the pillow.,Robin cried.,Robin ran to the door.,2,What does Robin do before she says that blew her mind?,137078,How I Met You Mother,6.36-10.9,met_s03e08_seg02_clip_12,Robin throws her arm up by her head on the pillow. 15040,Castle is angry that Simmons is making very rude comments to Beckett.,Castle is angry that Simmons has brought a team of lawyers with him.,Castle is angry that Simmons refuses to say a word.,Castle is angry that Simmons insists he knows nothing.,Castle is angry that Simmons puts his feet up on the table.,0,Why does Castle get angry at Simmons when he and Beckett are Interagating him?,137079,Castle,68.09-80.03,castle_s03e13_seg02_clip_06,Castle is angry that Simmons is making very rude comments to Beckett. 15041,A bottle of water,A can of soda.,A juice box.,A mug of coffee., A bottle of beer.,4,What was Rachel Drinking when she was on the leather chair?,137080,Friends,47.91-53.09,friends_s07e13_seg02_clip_13, A bottle of beer. 15042,Nothing.,Red sandals.,Pink slippers.,White sneakers.,Blue sandals.,4,What is Phoebe wearing on her feet when she is sitting on the coach?,137081,Friends,1.45-3.77,friends_s08e19_seg02_clip_13,Blue sandals. 15043,Glasses,A pill bottle,IV Equipment,A chart and pen,A cup of water,3,What is Thirteen holding when she is in the room with Valerie?,137082,House M.D.,5.77-7.1,house_s06e11_seg02_clip_16,A chart and pen 15044,Run away.,Face your fear.,Scream like a little girl.,Get your mother.,Make a plan.,1,What does Joey say when Chandler is afraid?,137083,Friends,11.29-16.48,friends_s03e04_seg02_clip_06,Face your fear. 15045,One,Four,Five,Three,Two,3,How many times did the lab run the test before they got the results?,137084,House M.D.,24.49-33.13,house_s03e06_seg02_clip_00,Three 15046,House is in the bathroom,House is standing,House is at his apartment,House is sleeping,House is sitting down,4,"Where is House when he is talking to Annette, the lawyer, and Carmen?",137085,House M.D.,0-11.71,house_s01e20_seg02_clip_07,House is sitting down 15047,Yellow and white,Yellow and purple,Yellow and black,Orange and black,Black and blue,2,What color is the rabbi wearing when he is at the alter?,137086,Friends,18.86-21.47,friends_s07e23-24_seg02_clip_38,Yellow and black 15048,Bronson was in love with clouded judgement. ,Someone close to Bronson framed him.,Someone with his training wouldn't be that sloppy with encrypted information.,He secured all of his data in another location.,Bronson never lied before.,2,Why does Beckett think Bronson was being set up after speaking with Mccord?,137087,Castle,31.04-34.06,castle_s06e01_seg02_clip_24,Someone with his training wouldn't be that sloppy with encrypted information. 15049,start dancing ,They all rushed out ,walked in another room ,start jumping ,hug up to each other,1,What happened after Sheldon said I guess we're done here?,137088,The Big Bang Theory,0-5.12,s02e23_seg02_clip_11,They all rushed out 15050,The racetrack,A restaurant,A park ,At home,The airport,4,Where were Ross and Emily at when they parted ways?,137089,Friends,0-11.74,friends_s04e17_seg02_clip_08,The airport 15051,A bunny ,A puppy,A newspaper ,A pill bottle,A tray of drinks,4,What does Ross have in his hand when talking to Rachel in the cafe,137090,Friends,0-9.15,friends_s06e15-16_seg02_clip_38,A tray of drinks 15052,A book,Papers,A file folder,A labtop,A phone,1,What did Benjamin pull out of his briefcase when he sat down at the table?,137091,Friends,38.14-47.3,friends_s10e06_seg02_clip_12,Papers 15053,nothing,book,laptop,coffee cup,envelope,4,What is Castle holding when he and Beckett are talking to the Captain?,137092,Castle,73.62-80.98,castle_s04e19_seg02_clip_06,envelope 15054,Esposito sees a rifle pointing at him.,Esposito sees a gun pointing at him.,Esposito is afraid.,Esposito sees Timmy and Carol.,Esposito sees Ike and Carol.,1,Why didn't Esposito open the front door when he is downstairs?,137093,Castle,98.46-107.02,castle_s02e21_seg02_clip_17,Esposito sees a gun pointing at him. 15055,She leaves the room.,She removes the locus coeruleus.,She gives him the scalpel.,She calls him fat.,She gives him her gloves.,2,"What does Amy do after telling Sheldon to ""Have at it""?",137094,The Big Bang Theory,21.4-31.33,s05e16_seg02_clip_12,She gives him the scalpel. 15056,July.,June.,March.,April.,December.,1,What month did Robin say she got married when Ted asked?,137095,How I Met You Mother,31.63-37.22,met_s02e09_seg02_clip_09,June. 15057,A wedding proposal,Possible Pain,Their anniversary,Court,Kids,1,What does Sheldon say he wants to prepare Amy for when they are talking?,137096,The Big Bang Theory,35.17-58.13,s10e05_seg02_clip_13,Possible Pain 15058,After Raj left what did Penny and Bernadette say to each other?,How did Penny express her sarcasm to Raj?,Why are Penny and Bernadette such smartalics?,How did Raj feel after he left?,"Penny said to Raj, ""solder is a metal you melt to make science things"".",4,What did Penny say to Raj about solder after Raj asked where were the guys?,137097,The Big Bang Theory,6.73-14.06,s09e19_seg02_clip_07,"Penny said to Raj, ""solder is a metal you melt to make science things""." 15059,Masters says she wants to see the pads of the patient's feet,Masters says she wants to see the skin around the back of the patient's neck,Masters says she wants to see the color of the mucus membranes in the patient's nose,Masters says she wants to see the rash under the patient's arm,Masters says she wants to see the palm of the patient's hands,3,What did Masters tell Broda she wanted to look at when she sees the patient,137098,House M.D.,0-7.92,house_s07e07_seg02_clip_13,Masters says she wants to see the rash under the patient's arm 15060,a lab,on the street ,A bar,A museum,A school ,2,Where are beckett and castle talking to wesley when they ask him questions? ,137099,Castle,1.77-6.18,castle_s02e22_seg02_clip_20,A bar 15061,Howard is talking with Raj. ,Howard is talking with Bernadette. ,Howard is talking with his mom. ,Howard is talking with Sheldon. ,Howard is talking with Leonard. ,1,Who is Howard talking to on the computer when he is in space?,137100,The Big Bang Theory,0-7.68,s06e02_seg02_clip_13,Howard is talking with Bernadette. 15062,grey,green,red,black,orange,2,"What color is the shirt Beckett is wearing when she say's ""Dr. Barker...""?",137101,Castle,0-9.8,castle_s04e13_seg02_clip_07,red 15063,He continues to dance. ,He stop dancing. ,He falls. ,He laughs. ,He cries. ,1,What does Chandler do after Phoebe points at him when he is dancing?,137102,Friends,48.14-54.04,friends_s03e17_seg02_clip_16,He stop dancing. 15064,Drop the gun,Throw the gun away,Put the gun back in the holster,Go get a shot of Tequila,Lick his finger,4,What does Castle do after smelling the Tequila on his finger?,137103,Castle,40.06-47.71,castle_s03e07_seg02_clip_01,Lick his finger 15065,She put it back in the folder.,She walked away.,She took it from him.,She turned her head away.,She wrote something on it.,2,What did Beckett do when Castle showed her a photo?,137104,Castle,35.72-39.29,castle_s03e11_seg02_clip_15,She took it from him. 15066,Recliner,Chair,Table,Floor,Couch,4,What is Ross sitting on before he stands up,137105,Friends,0-18.92,friends_s02e14_seg02_clip_07,Couch 15067,waffles ,eggs,pancakes ,cupcakes ,cereal,4,What was Lily eating when she was in the kitchen,137106,How I Met You Mother,1.53-8.26,met_s03e08_seg02_clip_11,cereal 15068,Shiny red.,Royal blue.,Jet black.,Metallic silver.,Clear glass.,3,What color is the shaving cream can that Castle is holding when he puts shaving cream into Espisito's hand?,137107,Castle,66.9-69.77,castle_s02e23_seg02_clip_01,Metallic silver. 15069,a glass of Merlot,The fish ,The vegetarian option,white wine,"whiskey, neat",3,What does Rachel order for Ross when she is on the plane?,137108,Friends,33.09-43.18,friends_s05e01_seg02_clip_18,white wine 15070,The pact was to not drink and Phoebe was bringing wine. ,Phoebe was going to not show up for the party. ,The pact was to bring food and Phoebe wasn't going to show up empty handed. ,Phoebe was going to ask a guy to the party. ,Phoebe was going to bring Ross to the party. ,3,How was Phoebe going to break the pact before the party? ,137109,Friends,0-11.9,friends_s01e10_seg02_clip_05,Phoebe was going to ask a guy to the party. 15071,Beckett knows the SAM.,The SAM has weird interests.,Beckett must use a strong female hand to interrogate the prisoner.,Castle made a funny rhyme.,"The description of the crime, using caramel, is unusual.",4,Why is Beckett surprised when she reads the folder?,137110,Castle,9-23.86,castle_s02e16_seg02_clip_16,"The description of the crime, using caramel, is unusual." 15072,Rachel pulled on Ross's shirt.,Rachel pulled her hamstring.,Rachel pulled a fire alarm.,Rachel pulled on the couch.,Rachel pulled the stair railing.,2,What did Rachel pull when she got up to help Ross?,137111,Friends,25.35-27.14,friends_s05e16_seg02_clip_17,Rachel pulled a fire alarm. 15073,Talk to Monica,Talk to Rachel,Talk to Phoebe,Talk to Ross,Talk to Joey ,1,What was Ross supposed to do before coming to Monica's apartment,137112,Friends,0-45.34,friends_s10e17-18_seg02_clip_15,Talk to Rachel 15074,at the counter.,she is on the couch.,in a chair.,on a foot stool.,on the floor. ,1,Where is monica sitting when Chanlder and her are talking about keeping his stuff there?,137113,Friends,19.44-24.46,friends_s07e21_seg02_clip_05,she is on the couch. 15075,Victim was playing in glue,Victim was wearing a wire,Victim was wearing a bandage,Victim worked in construction,Victim tried to fix a broken object,1,Why did Lanie say the victim had adhesive on his chest when showing Beckett and Castle a body?,137114,Castle,23.41-34.66,castle_s06e19_seg02_clip_05,Victim was wearing a wire 15076,vision test,more blood test,xray,Get an ultrasound of her ovaries,hearing test,3,What does House want the doctors to do when they finish the meeting?,137115,House M.D.,0-11.88,house_s01e10_seg02_clip_09,Get an ultrasound of her ovaries 15077,Into an interrogation room,To the park,To an ice cream parlor,To her mother's house,Out into the hallway,0,Where did Gary take Phoebe after he asked if he could talk to her for a second?,137116,Friends,17.29-26.47,friends_s05e21_seg02_clip_12,Into an interrogation room 15078,Howards says he bought it on sale for $5.00 dollars. ,Howards says it is a collectible and it's priceless. ,Howard says it's worth $500 dollars. ,Howards says it's worth more than Sheldon's total bank account. ,Howard says it's rare and worth a million dollars. ,2,How much does Howard tell Sheldon his helmet is worth after Sheldon admits to taking it?,137117,The Big Bang Theory,56.54-61.45,s06e09_seg02_clip_01,Howard says it's worth $500 dollars. 15079,butt,arm,back,leg,face,0,What part of Phoebe's body did the tranquilizer dart land when animal control shot her?,137118,Friends,20.16-39.39,friends_s01e19_seg02_clip_15,butt 15080,Gray,Red and blue,Dark blue,Red,Yellow,2,What a color is Ross' tie when he is at her apartment talking to her about her relationship with Joshua?,137119,Friends,23.91-28.04,friends_s04e20_seg02_clip_04,Dark blue 15081,7.,6.,8.,5.,9.,0,How many months did House say it would be before the patient's baby is born?,137120,House M.D.,67.07-71.57,house_s05e11_seg02_clip_17,7. 15082,Last year.,Last month.,Last week.,A month ago.,2 weeks ago.,2,When did Lucas say he made the video when he was showing to Beckett and Castle?,137121,Castle,39.45-42.26,castle_s06e15_seg02_clip_23,Last week. 15083,Jump,Fall,Eat,Caugh,Snort,0,"What does Penny do after Amy says the word ""pyramid""?",137122,The Big Bang Theory,8.55-21.16,s07e11_seg01_clip_00,Jump 15084,On a spin cycle. ,A dentist chair.,On a sofa.,In a rocking chair. ,A bar stool. ,4,Where does Sheldon sit after he walks into the room? ,137123,The Big Bang Theory,41.91-51.6,s06e07_seg02_clip_08,A bar stool. 15085,Sam.,Marshall.,Barney.,Ryan.,Lily.,4,Who is sitting next to Ted when he is at the bar?,137124,How I Met You Mother,0-6.09,met_s06e07_seg02_clip_11,Lily. 15086,Wilson was wearing a sombrero,Wilson was wearing a cowboy hat.,Wilson was wearing a brown hat with antlers on it.,Wilson was wearing a viking helmet.,Wilson was wearing a baseball cap.,2,What was Wilson wearing on the top of his head when he approached House with a cup in hand?,137125,House M.D.,79.86-85.6,house_s04e10_seg02_clip_22,Wilson was wearing a brown hat with antlers on it. 15087,Upstairs.,Backyard.,Front porch.,Garage.,Storage.,0,Where did Esposito search after he searched Carol's house downstairs?,137126,Castle,49.77-55.65,castle_s02e21_seg02_clip_17,Upstairs. 15088,Take a break and rest for later,To run more tests,Wants to double the dosage,Start to prepare a gentle death,Finish the antibiotics ,2,How does House order the team to treat when nothing is working on the volleyball player?,137127,House M.D.,0-13.41,house_s01e21_seg02_clip_11,Wants to double the dosage 15089,Because the host thinks she is old.,Because the host thinks she is famous.,Because the host thinks she is nice.,Because the host thinks she is mean.,Because the host thinks she is young.,0,Why is Penny upset when she is at the restaurant?,137128,The Big Bang Theory,17.18-27.61,s09e15_seg02_clip_07,Because the host thinks she is old. 15090,House crawls to the OR.,House takes his wheelchair down the stairs.,House asks a passing nurse to push him to the OR.,House pulls the fire alarm.,House goes back to the observation room and uses the intercom.,1,What does House do when he's unable to call the elevator?,137129,House M.D.,54.69-64.1,house_s03e13_seg02_clip_18,House takes his wheelchair down the stairs. 15091,Bailey said that Dr Burke was off of the case.,Bailey said that the Chief was taking over the case.,Bailey said that she would anser the questions.,Bailey said that Meredith had to answer the questions.,Bailey said that Meredith should ask Yang.,0,Why did Baliey tell Meredith to talk to Dr Shepherd after Meredith told her that Katie's parents had questions?,137130,Grey's Anatomy,12.88-23.93,grey_s01e01_seg02_clip_05,Bailey said that Dr Burke was off of the case. 15092,That he told Rachel that Ross accepted an out of state job offer.,That he put poop in Ross' shoes.,That he told Rachel that Ross was leaving her,That he told Phoebe that Ross had a dream about her,That he posted that Ross died.,4,What does Chandler affirm when Ross tells him that he is upset with him?,137131,Friends,17.44-25.57,friends_s09e17_seg02_clip_05,That he posted that Ross died. 15093,The Brains,The Fantastic Five,C-Men,The New Avengers,"HIQs (as in, ""High IQs"")",2,"WHat does Sheldon name his ""group"" after getting up from the chair?",137132,The Big Bang Theory,5.02-9.15,s03e18_seg02_clip_06,C-Men 15094,To let Sheldon lock her up. ,To scare Sheldon. ,To weird Sheldon out. ,To make it up to Sheldon for lying to him. ,To make Sheldon happy. ,3,Why is Amy dressed up like a school girl when he comes over?,137133,The Big Bang Theory,63.53-77.01,s07e21_seg02_clip_15,To make it up to Sheldon for lying to him. 15095,Monica,Joey,Phoebe,Chandler,Mona,3,Who tells ross that they shouldve gotten to the hospital sooner when they find out only semi private rooms are available,137134,Friends,0-4.38,friends_s08e23-24_seg01_clip_01,Chandler 15096,An energy drink.,Wine.,A bottle of water.,A bottle of soda.,A cold beer.,2,What is Barney drinking when mocking Ted's tattoo?,137135,How I Met You Mother,33.09-50.1,met_s03e01_seg02_clip_12,A bottle of water. 15097,Wilson said that could not work.,Wilson was afraid that the steroids would trash the patient's immune system.,Wilson was scared she would die.,Wilson did not show any concern.,Wilson told House that that was the right medication for the patient.,1,What was Wilson worried about after House told Cuddy what prescription was good for the patient?,137136,House M.D.,22.15-37.84,house_s04e16_seg02_clip_13,Wilson was afraid that the steroids would trash the patient's immune system. 15098,Taub took something out of the garbage ,Chase took something out of the garbage ,13 took something out of the garbage ,Masters took something out of the garbage ,Foreman took something out of the garbage ,0,Who took something out of the garbage when they group was in the conference room,137137,House M.D.,15.49-25.06,house_s05e18_seg02_clip_06,Taub took something out of the garbage 15099,A gun,A lock of Beckett's hair,A pen,A hint,The diamond ,4,What does Castle take after Beckett reveals her theory?,137138,Castle,0-12.16,castle_s06e08_seg02_clip_11,The diamond 15100,a ring,a jacket,a new necklace,a bracelet ,her shoes,3,what does castle put on beckett after beckett gets off the phone?,137139,Castle,32.79-39.88,castle_s08e01_seg02_clip_01,a bracelet 15101,Raj tells her it must be like reality tv.,Raj tells her it must be fake.,Raj tells her it must come from her.,Raj tells her it must not be like her mom.,Raj tells her it must have drama an excitement.,2,How does Raj tell penny to be romantic when sitting in the living room?,137140,The Big Bang Theory,3.91-13.25,s07e06_seg02_clip_05,Raj tells her it must come from her. 15102,Two,Three,One,Four,Five,2,How many medals are on the wall framed when the Detective suggested not using an authority figure?,137141,Castle,7.74-11.83,castle_s07e04_seg02_clip_04,One 15103,At the beach,At sea,At the docks,At the port of entry,At the international bridge,1,Where was Castle found after the man states he was on a ship?,137142,Castle,22.56-25.84,castle_s07e02_seg02_clip_08,At sea 15104,She starts drinking.,She starts burping.,She starts cutting with her knife.,She starts eating with her hands.,She leaves the table.,2,What does Amy do after Rachel tells her she's got to stop doing that?,137143,Friends,0-6.07,friends_s09e08_seg02_clip_11,She starts cutting with her knife. 15105,On his wrist.,On the stand in front of him.,On the chair next to him.,On the table.,He kept it in his hand.,1,Where did House put his cane after Foreman stated that sarcoidosis wasn't environmental?,137144,House M.D.,20.21-26.18,house_s03e05_seg02_clip_12,On the stand in front of him. 15106,He sits down,He takes some pills in front of the patient,He opens the medical file,He opens the blinds,He closes the door,1,What does House do before talking to the patient?,137145,House M.D.,10.78-18.86,house_s03e10_seg02_clip_21,He takes some pills in front of the patient 15107,Dolan says they should meet in about two hours.,Dolan says they should meet in about 30 minutes.,Dolan says they should meet in about 45 minutes.,Dolan says they should meet in about an hour.,Dolan says they should meet in about 15 minutes.,4,When does Dolan say they should meet before he hangs up the phone?,137146,Castle,55.9-67.18,castle_s05e08_seg02_clip_24,Dolan says they should meet in about 15 minutes. 15108,Following Cuddy around ,Sleeping in the break room,At home drinking whiskey ,Standing outside on the roof,Sitting in his office alone,4,Where is House when Wilson comes to tell him that the patient is leaving the hospital?,137147,House M.D.,41.84-63.21,house_s03e01_seg02_clip_23,Sitting in his office alone 15109,To make coffee,To her desk,To her car,To her room,To the backdoor ,0,Where did Mccord walk to after greeting Castle? ,137148,Castle,64.96-75.79,castle_s06e02_seg02_clip_15,To make coffee 15110,Running down the street yelling about hotdogs.,Sleeping in his bed.,Breaking dishes in the Kitchen.,Doing Karate in the hallway.,Swimming laps in the pool.,3,What is Ted doing when Marshall considers him as a sperm donor?,137149,How I Met You Mother,8.4-14.71,met_s06e13_seg02_clip_15,Doing Karate in the hallway. 15111,In the desk chair,On the kitchen counter,On the back of the door,Behind the couch,Near the telescope,0,Where does Sheldon place his bag before he starts speaking with Leonard,137150,The Big Bang Theory,0-15.12,s02e02_seg02_clip_15,In the desk chair 15112,Stacy things House should use gender-neutral language. ,Stacy ignores House and changes the subject. ,Stacy expresses praise and calls the rat smart. ,Stacy thinks the rat's behavior is delusional side effects.,Stacy says the rat's dumb because it wants to die. ,2,"How does Stacy view the rat's ability to eat around the pill, after House shows it to her?",137151,House M.D.,53.84-61.2,house_s02e07_seg02_clip_14,Stacy expresses praise and calls the rat smart. 15113,She was poisoned. ,She was shot. ,She was stabbed. ,She was hit by a car. , She was put in an altitude chamber. ,4,How does Esposito say the victim died when he is interrogating the suspect?,137152,Castle,33.31-38.71,castle_s03e09_seg02_clip_04, She was put in an altitude chamber. 15114,The last day of grad school,His anniversary.,His big promotion day.,The first day of grad school.,His birthday.,4,What special day is it for Leonard when he's with Howard?,137153,The Big Bang Theory,17.41-60.02,s01e16_seg02_clip_14,His birthday. 15115,Sitting in House's office.,Laying in a hospital bed.,Sitting in the cafeteria.,Sitting in the waiting room.,Laying on a couch.,1,Where was Afsoun when House asked why him?,137154,House M.D.,5.81-9.38,house_s07e23_seg02_clip_11,Laying in a hospital bed. 15116,Working.,Playing a video game.,Looking at comic books.,Eating lunch.,Riding in the car. ,1,What are Raj and Howard doing when Raj tells Howard they need ground rules for their double date?,137155,The Big Bang Theory,0-5.04,s07e20_seg02_clip_04,Playing a video game. 15117,Their date,Their meal,Their vows,Their baby class,Their book club reading,2,What had Monica and Chandler just finished when they entered the coffee shop?,137156,Friends,39.55-45.45,friends_s07e21_seg02_clip_18,Their vows 15118,Chase quickly ran to the patient's room because the patient was begging for food.,Chase ran to the patient's room because House was verbally berating a patient.,Chase stopped and ran to the patient's room because he was trying to jump out of the window.,Chase had run into the patient's room because his father was assaulting him.,Chase ran in there because the patient started screaming for a nurse to help him.,4,Why did Chase stop what he was doing and run to the patient's room when he was standing at the hospital nurse's station?,137157,House M.D.,87.38-91.03,house_s02e03_seg02_clip_03,Chase ran in there because the patient started screaming for a nurse to help him. 15119,House ,Chase,Cuddy,Wilson ,Cameron ,4,Who was in the patient room with Foreman when he was examining his patient? ,137158,House M.D.,11.72-22.99,house_s03e11_seg02_clip_18,Cameron 15120,Monica is standing on the balcony. ,Monica is standing in the bathroom. ,Monica is standing in the hallway. ,Monica is standing behind the couch. ,Monica is standing behind the coffee table. ,3,"Where is Monica standing when her, Ross, and Rachel are having a discussion about rumors?",137159,Friends,0-7.04,friends_s08e09_seg02_clip_14,Monica is standing behind the couch. 15121,Wilson did not notice any dents,Wilson did not notice any rings,Wilson did not notice any tattoo,Wilson did not notice any bruises,Wilson did not notice any clubbing,4,What did Wilson say that he did not notice on the judges fingers when he is talking to House?,137160,House M.D.,13.65-20.48,house_s01e09_seg02_clip_11,Wilson did not notice any clubbing 15122,"Sheldon is worried that alcohol will spill, and disrupt the game",Sheldon says that alcohol impairs their judgment,It is against their apartment's rules,Sheldon says that the characters in the game do not consume alcohol so neither will they,Sheldon does not like the taste of alcohol,1,Why doesn't Sheldon allow the consumption of alcohol when they are playing Dungeons & Dragons? ,137161,The Big Bang Theory,30.91-38.41,s06e23_seg02_clip_06,Sheldon says that alcohol impairs their judgment 15123,so he could sleep with her,so he could do his job,so he could go home,so he could make her feel better,so he could take a nap,1,why did house lie to cuddy when he was caring for a patient?,137162,House M.D.,0-7.57,house_s07e07_seg02_clip_04,so he could do his job 15124,Standing in front of Beckett.,Sitting on the couch.,Standing behind Beckett.,In the next room.,Walking out the door.,2,Where was Castle when Sorenson approached Beckett?,137163,Castle,67.35-73.15,castle_s01e09_seg02_clip_01,Standing behind Beckett. 15125,Chandler,Rachel,Monica,Joey,Ross,4,Who has never done laundry before when they are in the laundromat?,137164,Friends,0.92-21.97,friends_s01e05_seg02_clip_12,Ross 15126,She can never tell how he feels about her ,He is too wrestly with his sister,She caught him wearing women's underpants,He calls his mom too much,His sister is always around,1,Why is Rachel concerned about her relationship with Danny when she is talking to Ross and Monica?,137165,Friends,10.89-40.66,friends_s05e10_seg02_clip_11,He is too wrestly with his sister 15127,Joey is upset with Chandler because he ate Joey's pizza.,Joey is upset with Chandler because he went behind Joey's back.,Joey is upset with Chandler because he stole Joey's commercial gig.,Joey is upset with Chandler because he went through Joey's belongings.,Joey is upset with Chandler because he told Joey's secrets to Monica.,1,Why is Joey upset with Chandler when talking in the living room?,137166,Friends,0-5.68,friends_s04e07_seg02_clip_21,Joey is upset with Chandler because he went behind Joey's back. 15128,Sheldon said they're good to wipe away sweat.,Sheldon said they're good for surrendering.,Sheldon said they're good for hitting people.,Sheldon said they're good as a plate.,Sheldon said they were good for wiping away tears.,4,What did Sheldon say white flags are good for when filming his flag show?,137167,The Big Bang Theory,0-41.8,s08e10_seg02_clip_11,Sheldon said they were good for wiping away tears. 15129,Wrote a note. ,Took a sip of drink.,Jumped up from the table. ,Started typing on his phone. ,Shook his head in agreement.,4,What did Raj do after Howard said we could sell that sign all over Pasadena?,137168,The Big Bang Theory,22.42-32.21,s02e07_seg02_clip_06,Shook his head in agreement. 15130,Chandler,Rachel,Monica,Joey,Ross,1,Who walks in the door when Phoebe is leaving?,137169,Friends,6-8.7,friends_s02e20_seg02_clip_12,Rachel 15131,A toy spaceship.,A laptop.,A remote control.,Bottle of water. ,Tea kettle.,2,What was Sheldon holding before he said go to Mars?,137170,The Big Bang Theory,12.46-17.5,s08e17_seg02_clip_09,A remote control. 15132,"Castle said Alexis was so mad, she wouldn't even talk to anyone on the phone.",Castle said Alexis was angry and writing a letter to the Dean.,Castle said Alexis was deeply hurt and won't come out of the bedroom.,"Castle said Alexis was so upset, Gram gave her a sedative to help her sleep.",Castle said Alexis was in denial and is calling admissions to point out the mistake.,4,How did Castle describe Alexis's reaction after she was rejected by Stanford?,137171,Castle,85-91.4,castle_s04e03_seg02_clip_00,Castle said Alexis was in denial and is calling admissions to point out the mistake. 15133,barney laughs,Ted drinks his beer,Lilly throws up,Ted makes a funny face,Ted falls on the floor,3,What happens after Lilly gives a big grin to the crowd?,137172,How I Met You Mother,1.74-5.51,met_s06e07_seg02_clip_11,Ted makes a funny face 15134,Ross used a lamp to separate his cereal from the duck.,Ross moved to a different seat.,Ross went to eat at his apartment.,Ross shared his cereal with the duck.,Ross decided to eat something else.,0,What did Ross do after the duck attempted to eat some of his cereal?,137173,Friends,69.62-73.97,friends_s04e22_seg02_clip_18,Ross used a lamp to separate his cereal from the duck. 15135,White.,Black.,Red.,Purple.,Green.,1,What color shirt was Joey wearing when he was talking to Chandler about the car back firing?,137174,Friends,36.29-42.8,friends_s05e20_seg02_clip_13,Black. 15136,Ross is holding a puppy.,Ross is holding a baby.,Ross is holding a kitten .,Ross is holding a diaper.,Ross is holding a bottle.,1,What is Ross holding when Rachel puts down her bag ?,137175,Friends,4.58-6.71,friends_s10e01_seg02_clip_20,Ross is holding a baby. 15137,Thor.,Spiderman.,Superman.,The Hulk.,Batman.,3,What movie was Sheldon and Leonard watching when they were sitting on the couch?,137176,The Big Bang Theory,0-13.5,s04e05_seg01_clip_00,The Hulk. 15138,Workers were using a jackhammer to fix the street. ,Neighbors were playing loud music.,The smoke alarm was going off.,The sound of the train was keeping her up.,A dog was barking.,2,Why did Phoebe have earmuffs on when she was at her apartment?,137177,Friends,27.01-31.06,friends_s07e12_seg02_clip_10,The smoke alarm was going off. 15139,Raj and Sheldon.,Howard and Leonard.,Raj and Howard.,Leonard and Raj.,Sheldon and Leonard.,1,Who is sitting at the bar when Sheldon gives Penny his order for a drink?,137178,The Big Bang Theory,27.46-45.16,s01e08_seg02_clip_08,Howard and Leonard. 15140,Joey was sitting in the middle,Joey was sitting on the roof,Joey was sitting on the counter top,Joey was sitting on nails,Joey was not sitting at all,0,Where was Joey sitting when his friend was driving?,137179,Friends,0-7.67,friends_s02e09_seg02_clip_17,Joey was sitting in the middle 15141,blood pressure,Temperature ,Blood smears,vitamin c levels,nothing,2,What does house tell chase to check again when they are talking about their patient?,137180,House M.D.,18.66-31.86,house_s01e19_seg02_clip_20,Blood smears 15142,Potential disease in the colon.,A mole scratching it's way out. ,A tumor.,A troll with disease treasures.,A leprechaun or she has complement factor-H deficiency. ,4,What does House say is in the patient's colon after he says Cameron's guess is wrong?,137181,House M.D.,20.51-27.89,house_s03e22_seg02_clip_12,A leprechaun or she has complement factor-H deficiency. 15143,He played the violin,He kissed Monica,He shook his head,He hugged Joey,He lay on the floor,2,What did Chandler do after Rachel said thief?,137182,Friends,30.46-32.92,friends_s07e11_seg01_clip_00,He shook his head 15144,In the living room.,In a coffee house.,In a theater.,In the bedroom.,At a bar.,2,Where are Chandler and Joey when they are talking about being asleep or in a dream?,137183,Friends,0-36.56,friends_s08e22_seg02_clip_10,In a theater. 15145,House wanted to do a skin graft on his patient.,House wanted to use foam to fill 1/4 of his patient's lung.,House wanted to run a tox screen on the girl.,House wanted to run another test for amyloidosis.,House said he wanted to suture the lung.,1,What did House say he wanted to do when he was taking to Cuddy outside the OR?,137184,House M.D.,8.01-17.8,house_s07e02_seg02_clip_09,House wanted to use foam to fill 1/4 of his patient's lung. 15146,The TV,A picture,A dog statue,Out the window,A shelf,2,What is Rachel looking at when she is in Joeys apartment?,137185,Friends,34.01-44.24,friends_s06e15-16_seg02_clip_22,A dog statue 15147,A blue dot.,A blue hat.,A red scarf.,A bug.,A red dot.,4,What appears on Cuddy's head when she discusses a goal?,137186,House M.D.,46.93-55.68,house_s03e09_seg02_clip_00,A red dot. 15148,What's the occasion?,How her job is going.,Why is she being so nice to them.,What happened to that guy she was seeing.,How is her sister doing.,0,What does Howard ask after Penny starts handing out food?,137187,The Big Bang Theory,21.6-26.04,s02e19_seg02_clip_11,What's the occasion? 15149,Piano keyboard,guitar,drum,flute,clarinet,0,What musical instrument does House play before having the patient play?,137188,House M.D.,49.96-57.17,house_s03e15_seg02_clip_17,Piano keyboard 15150,Ross answers the room phone.,Ross leans in and kisses Charlie.,Ross reaches for the nightstand.,Ross hops off the bed.,Ross lies back on the pillow.,3,What does Ross do after he comments on Charlie's necklace?,137189,Friends,7.34-16.82,friends_s09e23-24_seg02_clip_20,Ross hops off the bed. 15151,A Castle Lookalike was paid to buy the earrings.,Castle's twin brother bought the earrings.,A man who had surgery to look like Castle bought the earrings.,Castle bought the earrings for Beckett.,Castle paid the Castle Lookalike to buy the earrings. ,0,How is there a video made of Detective Castle buying earrings when he denies it?,137190,Castle,77.87-90.02,castle_s05e05_seg02_clip_22,A Castle Lookalike was paid to buy the earrings. 15152,Ted is sitting behind Robin on a bench.,Ted is sitting beside Robin on a sofa.,Ted is sitting beside Robin on a chair.,Ted is sitting beside Robin on a bench.,Ted is sitting beside Marshall on a bench.,3,Where is Ted sitting when Robin said to him that doesn't hold a candle to his Crocodile Dundee thing?,137191,How I Met You Mother,39.84-43.97,met_s06e14_seg02_clip_15,Ted is sitting beside Robin on a bench. 15153,On the couch in Central Perk.,Outside Central Perk,At the counter in Central Perk.,On the couch at Monica's.,In the kitchen at the table at Monica's,1,Where was Phoebe when she said she hates Central Perk? ,137192,Friends,0-4.8,friends_s02e06_seg02_clip_12,Outside Central Perk 15154,About what they going to do for christmas,that Sheldon mom knowing that they are staying together,About what they going to eat for dinner,About finding a new place,about their friends,1,What was Amy and Sheldon talking about when they were in the car?,137193,The Big Bang Theory,0-43.23,s10e12_seg02_clip_06,that Sheldon mom knowing that they are staying together 15155,The bar,The restroom.,Home.,To get a taxi.,To get something to eat,0,Where did Robin go when she got up from the table? ,137194,How I Met You Mother,27.71-34.64,met_s03e17_seg02_clip_01,The bar 15156,Sushi,A pizza,A sandwich,Fruit salad,Fish and chips,2,What food does Castle say he wants after Alexis proposes Chinese?,137195,Castle,10.13-22.22,castle_s04e13_seg02_clip_27,A sandwich 15157,"House grins and says ""You're on reality TV!""",House says that he is diagnosing her for fun and it's all game of life and death.,"House answers ""No"" but you will.",He says he's had better times because this is very serious.,House says that he is diagnosing her with something that is going to kill her to save her life.,4,How does House respond to Foreman's question if he was enjoying the serious situation after House puts the camera on him while being amused?,137196,House M.D.,29.12-40.19,house_s03e22_seg02_clip_12,House says that he is diagnosing her with something that is going to kill her to save her life. 15158,A plate of food,A bunch of flower,His shoes,A stone,A watering can,1,What did Ted pick from the fence when he pulled Stellar closer. ,137197,How I Met You Mother,0-6.71,met_s03e13_seg02_clip_17,A bunch of flower 15159,very excitedly,very angrily,very enthusiastically,very tearfully,very scaredly,1,how is cuddy talking to her patient after her patient comes to the door?,137198,House M.D.,0-6.98,house_s07e20_seg02_clip_17,very angrily 15160,Monica pointed her flashlight at the light switch.,Monica pointed her flashlight at the dryer.,"Monica pointed her flashlight at a sign that said, ""Danger High Voltage.""",Monica pointed her flashlight at the steps to see where she was walking.,Monica pointed her flashlight at the washing machine.,2,Where did Monica first point her flashlight when she entered the basement?,137199,Friends,40.77-42.2,friends_s01e19_seg02_clip_14,"Monica pointed her flashlight at a sign that said, ""Danger High Voltage.""" 15161,He clapped his hands.,He rubbed his eyes.,He raised his arm up.,He grabbed the prize.,He went and sat down.,2,What did Chandler do after Phoebe gave Monica the prize?,137200,Friends,11.6-14.57,friends_s10e08_seg02_clip_15,He raised his arm up. 15162,Bye,Good,"Not you, relax",perfect,Nice,2,what did Mr. Douglas say when he told with Chandler,137201,Friends,7.92-66.03,friends_s01e16-17_seg02_clip_09,"Not you, relax" 15163,That they get surveillance footage,That they get multiple witness accounts,That they search the premise for weapons,That they talk to the club owner,That they talk to the person who found the body.,4,What does Beckett suggest when the scene begins?,137202,Castle,0-3.69,castle_s04e05_seg02_clip_02,That they talk to the person who found the body. 15164,Muscles ,Butt,Ego,Head,House,3,What does the girl ask if it can get any bigger after seeing an image of it?,137203,Castle,0-14.19,castle_s07e23_seg02_clip_00,Head 15165,I feel special ,Nobody at all?,Only me,awww ,Me either.,4,What did Leonard say after Penny said that she didn't think of anyone else?,137204,The Big Bang Theory,0-31.04,s03e01_seg02_clip_02,Me either. 15166,At a tennis match.,In France.,At a football game. ,Playing laser tag. ,Riding a bike. ,3,Where does Barney wish he was when he's lying in bed sick?,137205,How I Met You Mother,5.89-11.17,met_s02e11_seg02_clip_09,Playing laser tag. 15167,Because there is a whistle blower,Because Barney hear the polica car,Because there is a horror movie,Because Barney saw a ghost,Because Barney saw his boss,1,Why Barney looks afraid when hear an siren?,137206,How I Met You Mother,55.82-59.73,met_s06e21_seg02_clip_09,Because Barney hear the polica car 15168,Raj's apartment.,A church.,Leonard's office.,A Roof. ,Penny's apartment. ,3,Where is Leonard and Raj when Leonard tells Raj they are ready to start?,137207,The Big Bang Theory,0-3.71,s05e24_seg02_clip_11,A Roof. 15169,marshall is indiferent about the painting ,marsall hates the painting,marshall loves the painting,marshall likes the painting,marshall doesn't like the painting,2,how does marshall feel about the painting when he knows it could have been in a trashcan ,137208,How I Met You Mother,2.34-9.67,met_s03e19_seg02_clip_14,marshall loves the painting 15170,She is scratching her head.,She is slapping her fiance'.,She is doing sign language.,She is rubbing her eye.,She is picking her nose.,2,What is Cathy doing with her hand after she introduces her fiance to Ted?,137209,How I Met You Mother,35.24-43.48,met_s03e08_seg02_clip_18,She is doing sign language. 15171,She was sitting on a blanket. ,She was sitting in Monica's apartment couch.,She was sitting on a park bench.,She was sitting on Joey's chair.,She was sitting next to Joey on the orange couch.,4,Where was Phoebe sitting when she told Joey he was ruining the plan?,137210,Friends,0-6.51,friends_s09e14_seg02_clip_04,She was sitting next to Joey on the orange couch. 15172,Ice cream,A dog,A taxi,A wedding dress,The television,3,What does Monica stare at after putting away the plate?,137211,Friends,0-8.41,friends_s04e20_seg02_clip_07,A wedding dress 15173,Monica wasn't excited at all,Monica was excited because she had a date,Monica was excited because she had a good day at work,Monica was excited because she was enjoying her day,Monica was exicited because her first review came out on the newspaper,4,What was Monica so excited to share when she first saw Phoebe?,137212,Friends,2.4-6.6,friends_s04e09_seg02_clip_06,Monica was exicited because her first review came out on the newspaper 15174,At the movies ,In their home,In a cafe,At the police station,At the community pool,3,Where are Castle and Beckett when they are discussing Jenna?,137213,Castle,0-4.75,castle_s02e03_seg02_clip_11,At the police station 15175,Wasting time drawing.,Standing around.,Hiking.,Playing charades.,Watching T.V.,4,What were Joey and his friend doing after the opening sequence?,137214,Friends,7.5-14.71,friends_s02e15_seg02_clip_08,Watching T.V. 15176,A monitor.,A food cart.,A wheelchair.,A gurney.,A IV pole.,0,What was the nurse in the white scrubs pushing across the room before Cuddy walked to House?,137215,House M.D.,73.16-79.6,house_s04e05_seg02_clip_16,A monitor. 15177,a thermometer,a stress ball,a piece of gum,his cellphone,hand sanitizer ,3,what does sheldon pull out from his pocket after leonard tells him he is getting enraged?,137216,The Big Bang Theory,8.58-18.49,s10e02_seg02_clip_07,his cellphone 15178,A picture frame.,A cup of coffee.,A book.,A circuit.,A chair.,3,What is Sheldon holding when talking to Howard about computer pieces ? ,137217,The Big Bang Theory,10.09-14.5,s08e22_seg02_clip_06,A circuit. 15179,He looked excited and asked if that was a metaphor.,He looked concerned and asked if he could show him.,He looked concerned and asked if that was a metaphor.,He laughed and asked if that was a metaphor.,He looked angry and asked if he was serious.,2,How did Castle respond when Dunne mentioned a fluffy red jockstrap?,137218,Castle,60.79-67.49,castle_s05e09_seg02_clip_06,He looked concerned and asked if that was a metaphor. 15180,They pound on the table and clap.,They eat cake. ,They talk on cell phones.,They type on lap tops. ,They sit quietly.,0,What are the people doing when they gather around the conference table? ,137219,Castle,45.91-55.81,castle_s06e19_seg02_clip_03,They pound on the table and clap. 15181,A bag,A folder,A pen,A book ,A tube,1,What was Hayes holding when he was standing beside the bed.,137220,House M.D.,0-15.3,house_s08e15_seg02_clip_22,A folder 15182,The hallway,House's office,The operating room,The lunch room,The lecture hall,4,Where does House tell 13 to meet him when she gathers the rest of the gang to meet with him?,137221,House M.D.,24.93-28.49,house_s04e05_seg02_clip_22,The lecture hall 15183,Chandlers mom and sister,Chandlers mom and aunt,Chandlers mom and stepmom,Chandlers mom and grandmother,Chandlers mom and dad,4,Who are the two females that are with chandler when he is walking down the isle?,137222,Friends,0-7.54,friends_s07e23-24_seg02_clip_38,Chandlers mom and dad 15184,He suggests her work is lame.,He suggests her work is meaningless.,He suggests her work is profitless.,He suggests her work is entry-level.,He suggests her work requires less intelligence.,0,Why is Rachel offended by Ross' remark after she mocks him?,137223,Friends,30.08-48.69,friends_s03e14_seg02_clip_15,He suggests her work is lame. 15185,She is dancing. ,She is laying in a hospital bed. ,She is playing solitaire. ,She is showering. ,She is getting physical therapy. ,1,What is Lupe doing when Foreman walks into her room?,137224,House M.D.,54.75-63.21,house_s03e20_seg02_clip_19,She is laying in a hospital bed. 15186,Beer bottles.,A puppy.,Amy's sweater.,Money.,Her phone. ,0,What is Penny picking up when Leonard enters the apartment?,137225,The Big Bang Theory,38.35-41.42,s03e06_seg02_clip_02,Beer bottles. 15187,He's holding a cup of coffee.,He's holding a magazine.,He's holding a bagel.,He's holding a book.,He's holding a slice of pie.,1,What is Chandler holding when he's talking to Joey?,137226,Friends,0-8.8,friends_s06e04_seg02_clip_09,He's holding a magazine. 15188,hug Amy,make Amy laugh,make Amy sing,cheer Amy up,kiss Amy,3,What was Sheldon trying to do when he came in the room?,137227,The Big Bang Theory,0-19.99,s06e23_seg02_clip_14,cheer Amy up 15189,Beckett says that Chloe has a suite at the Motor Inn.,Beckett says that Chloe has a suite at the Hilton Hotel.,Beckett says that Chloe has a suite at the Weston Hotel.,Beckett says that Chloe has a suite at the Beaumont Hotel.,Beckett says that Chloe has a suite at the Ludovico Hotel.,3,Where does Beckett say Chloe has a suite after Natalie interjects? ,137228,Castle,18.45-29.26,castle_s03e11_seg02_clip_17,Beckett says that Chloe has a suite at the Beaumont Hotel. 15190,"No,no.",Yes yes.,Even though.,Not now.,Sleep on it.,0,What did Mason Wood say after Castle said not too many murders there?,137229,Castle,15.51-16.93,castle_s08e14_seg02_clip_05,"No,no." 15191,Phoebe told Rachel to flip a coin.,Phoebe told Rachel to hire the cute guy.,Phoebe told Rachel to hire the candidate who had gone to the better college.,Phoebe told Rachel to pick the one that she got along with better.,Phoebe told Rachel to hire the one that was more qualified.,4,Who did Phoebe tell Rachel to hire after Rachel asked her what to do?,137230,Friends,19.1-28.23,friends_s07e04_seg02_clip_05,Phoebe told Rachel to hire the one that was more qualified. 15192,drink,movies,food ,folders,nothing ,3,"What did Taub, Kutner, and 13 grab from the table right before they left the office?",137231,House M.D.,5.85-12.15,house_s05e15_seg02_clip_13,folders 15193,His two hands.,A red pillow.,A white flag.,He didn't wipe his eyes.,His shirt.,2,What did Sheldon use to wipe his eyes when he was filming a video?,137232,The Big Bang Theory,40.89-45.78,s08e10_seg02_clip_11,A white flag. 15194,House concludes that they should perform x-rays on Ian.,House says that they will compare the Ian's results to his other patient's results. ,House says that they should vote on what to do next. ,House says that they will check the Ian's coronary arteries. ,House concludes that nothing can be done to save Ian.,3,"What does House finally conclude about the correct course of action, after Wilson says there's no time to be wrong?",137233,House M.D.,82.2-90.28,house_s02e17_seg02_clip_16,House says that they will check the Ian's coronary arteries. 15195,It was staged,It happened a long time ago ,It is hard,It will never be solved,It is a mess,0,What does castle think about the murder when talking to beckett at the precinct?,137234,Castle,13.98-18.34,castle_s07e13_seg02_clip_15,It was staged 15196,red,white,black,blue,grey,0,"What color is Robin's shirt when she say's ""You're breaking up with...""?",137235,How I Met You Mother,11.89-21.89,met_s03e16_seg02_clip_10,red 15197,Manhattan,New England,California,New Jersey,the Bronx,3,Where did Monica say the band and photographer were coming from after Joey said the bridges and tunnels were closed?,137236,Friends,34.26-46.42,friends_s10e12_seg02_clip_20,New Jersey 15198,Sean told Chandler.,Ross told Chandler.,Sam told Chandler.,Joey told Chandler.,Phoebe told Chandler.,3,Who does Chandler say told him that Monica was dating the nurse when he talked to him?,137237,Friends,9-29.41,friends_s05e03_seg02_clip_05,Joey told Chandler. 15199,He wants her to take Castle with her,He needs to leave too,He hates this place,He needs the overtime,He needs some sleep,3,What does Esposito say he needs when Beckett nearly sacrifices going on her date?,137238,Castle,55.82-70,castle_s02e14_seg02_clip_18,He needs the overtime 15200,Marshall,Stay-at-Home Jerome,Crazy Jerry,Ted,Robin,2,Who does Barney say he wants to hang out with after Jerry says he wants to hang out? ,137239,How I Met You Mother,0.31-10.71,met_s06e21_seg02_clip_04,Crazy Jerry 15201,The sun was shining through the window.,It was snowing.,It was hailing.,It was lightening.,It was raining.,4,"While Rachel was sitting in the window, when was going on the other side of the window?",137240,Friends,47.18-61.77,friends_s02e08_seg02_clip_18,It was raining. 15202,"Where is Raj, anyway?",Doesn't it make you wonder?,I bet it upsets you.,Do you think they will tell us about it?,"If I could, I would, but I can't, so I shan't.",4,What did Sheldon say after Leonard told him to just let it go?,137241,The Big Bang Theory,54.51-63.02,s05e01_seg01_clip_00,"If I could, I would, but I can't, so I shan't." 15203,Ashley,Adam,Allen,Armin,Arin ,0,Who does alexis breakup with over the phone before castle walks into the room?,137242,Castle,10.2-14.45,castle_s04e07_seg02_clip_27,Ashley 15204,wallet,bug sweeper,crime scene,dead body,new evidence,1,What did Ryan say he found when he called Beckett?,137243,Castle,12.85-22.03,castle_s04e13_seg02_clip_08,bug sweeper 15205,A glass of wine. ,A sandwich. ,A beer. ,A cocktail. ,A bottle of water. ,1,What does Lily have in her hand when she is sitting on the couch with pillows?,137244,How I Met You Mother,42.09-45.12,met_s06e01_seg02_clip_08,A sandwich. 15206,Because Leonard is always double crossing her. ,Because Leonard is very sad. ,Because Leonard looks like he's up to no good. ,Because Leonard looks like he did something wrong. ,Because Leonard seems really happy. ,4,Why is Penny suspicious when she sees Leonard in the hallway? ,137245,The Big Bang Theory,0-6.41,s06e12_seg02_clip_07,Because Leonard seems really happy. 15207,Leonard says he wants to use the bathroom in his own home. ,Leonard says he wants to be a bad boy and say no. ,Leonard says he wants to go home. ,Leonard says he wants to stay a good guy. ,Leonard says he wants to remain faithful to Sheldon. ,3,What explanation does Leonard give when he says he is passing on sex?,137246,The Big Bang Theory,5.62-6.5,s05e07_seg02_clip_14,Leonard says he wants to stay a good guy. 15208,Her hand ,The wall ,Her desk,A piece of paper ,The whiteboard ,4,What is Beckett writing on when talking to House about the case,137247,Castle,0-5.34,castle_s03e19_seg02_clip_18,The whiteboard 15209,Offers to help setup the place,Argues with the manager,Calls the owner on his phone,Says he will have her fired,Offer some extra money to join,4,What does Castle try to do to get in the show after being told he can not?,137248,Castle,32.67-48.31,castle_s08e08_seg02_clip_06,Offer some extra money to join 15210,Yogurt,Fruit,A bagel,Raisins,It was empty,2,What was on the plate when House stood up? ,137249,House M.D.,20.89-23.93,house_s04e02_seg02_clip_09,A bagel 15211,Fills it with medicine.,Sets in on the table.,Hides it behind his back.,Holds it up to Ross arm.,Shows it to Ross. ,2,What does the doctor do with the needle before Monica asks Ross to be brave?,137250,Friends,51.35-59.03,friends_s02e06_seg02_clip_07,Hides it behind his back. 15212,Foreman is talking to Kutner,Foreman is talking to 13,Foreman is talking to Terzi,Foreman is talking to Chase,Foreman is talking to Taub,3,Who is Foreman talking to about being boring when he is sitting in front of a microscope,137251,House M.D.,0-9.69,house_s05e05_seg02_clip_20,Foreman is talking to Chase 15213,Prison tattoo database,Facebook database,Mexico's prison database,On social media,On old case files,0,Where should Beckett be able to find a record of the tattoo after being given Roman's description?,137252,Castle,13.51-17.56,castle_s06e10_seg02_clip_04,Prison tattoo database 15214,Lily's mug is purple,Lily's mug is red,Lily's mug is blue,Lily's mug is black,Lily's mug is yellow,4,What color mug is Lily using before Marshall talks brushing his teeth,137253,How I Met You Mother,48.4-59.03,met_s02e09_seg02_clip_01,Lily's mug is yellow 15215,Castle was excited to work with Ryan and Esposito again.,Castle was excited to be back in a place where he could use his own judgment.,Castle was excited to get off the whole orderly thing and onto the trail of the true killer.,Castle was excited to be back to using his brain to help his colleagues.,Castle was excited to be back to working more closely with Beckett.,2,Why was Castle excited when he was walking into the room?,137254,Castle,29.61-35.44,castle_s08e21_seg02_clip_07,Castle was excited to get off the whole orderly thing and onto the trail of the true killer. 15216,John Travolta,Brooke Shields,Dolly Parton,Beyonce,the silhouette chick on truck's mudflaps,4,What does Barney say he fantasized about when he talked to Marshall?,137255,How I Met You Mother,38.87-46.58,met_s05e02_seg02_clip_02,the silhouette chick on truck's mudflaps 15217,She jumps up with joy.,"She shouts to her boyfriend ""I miss you too.""",She goes to get coffee.,She puts on her coat.,She jumps on one foot.,1,What does Phoebe do after Monica explains her feelings about her relationship?,137256,Friends,0-9.98,friends_s07e18_seg02_clip_08,"She shouts to her boyfriend ""I miss you too.""" 15218,That's right. I got mine,Good night,Bye honey,ta da,see ya,0,What did Monica say to Chandler right before leaving the room?,137257,Friends,0-52.41,friends_s09e05_seg02_clip_14,That's right. I got mine 15219,Robin takes off her suit.,Robin takes off her boot.,Robin takes off her sweater.,Robin takes off her pants.,Robin takes off her shirt.,1,What does Robin start taking off when she is in the restaurant bathroom?,137258,How I Met You Mother,23.25-28.45,met_s03e03_seg02_clip_10,Robin takes off her boot. 15220,Nihil absorbibo,Nihil exsorbibo,Nayhil exsorbibo,Nayhil Absorbibo,Neehil exsorbibo,1,"What does Sheldon say when giving the Latin phrase for ""I'll suck nothing""?",137259,The Big Bang Theory,13.95-19.54,s03e02_seg02_clip_10,Nihil exsorbibo 15221,Orange.,Blue.,Black.,Red.,Yellow.,3,What color jacket was Phoebe wearing when she picked up the newspaper?,137260,Friends,18.65-23.85,friends_s02e10_seg01_clip_00,Red. 15222,He told him those were not Vicodin,He told him that he was in pain,He told him to mind his business,House told him that if Cuddy ask she should be told that blocking pain helps memory to focus.,He ignored his question.,3,What did House tell Taub when he asked him why he was taking so much Vicodin?,137261,House M.D.,33.62-39.44,house_s04e15_seg02_clip_07,House told him that if Cuddy ask she should be told that blocking pain helps memory to focus. 15223,The winner of the Design Your Own Flag competition,The sponsors of his new adventure,The origins of what flags are,How many flags there are in the world,His professional credentials ,0,What does Sheldon want to announce after he starts taping his new episode,137262,The Big Bang Theory,0-18.28,s06e07_seg01_clip_00,The winner of the Design Your Own Flag competition 15224,Paul goes to the other room,Paul goes to sleep,Paul runs away,Paul starts reading,Paul faints,3,What does Paul do after Castle hands him the papers?,137263,Castle,7.65-14.85,castle_s05e11_seg02_clip_07,Paul starts reading 15225,Martin the Janitor.,Ed the Principal.,Joe the School Bus Driver.,Tom the bum who hung outside the school.,Jane his Social Worker.,0,Who is with Chandler in a picture on parents day when Monica pulls out a photo album?,137264,Friends,25.51-33.92,friends_s06e14_seg02_clip_04,Martin the Janitor. 15226,Because Lily is afraid.,Because Lily has mental disorder.,Because Lily's mom is in the room.,Because there is a thief in the apartment.,Because Lily is jealous.,4,Why Lily is upset under the desk when Marshall is talking with the woman?,137265,How I Met You Mother,0-31.37,met_s02e07_seg02_clip_14,Because Lily is jealous. 15227,Cuddy and Lucas are moving in together.,The zombies are here.,McDonalds was closed.,He bought a lizzard.,He ran a marathon.,0,What did Nolan tell House he didn't mention when House was Getting it all of his chest?,137266,House M.D.,33.12-45.59,house_s06e20_seg02_clip_24,Cuddy and Lucas are moving in together. 15228,35.,30.,15.,25.,20.,4,How many years did Ryan say his father did not tak to his brother when Beckett was calling Mrs. Lewis' son?,137267,Castle,57.17-62.57,castle_s07e23_seg02_clip_09,20. 15229,On his chest,Over her mouth,On Cuddy's shoulder,On his waist,In his pocket,3,Where did House put his left hand after the doctors left?,137268,House M.D.,47.91-55.35,house_s06e14_seg02_clip_20,On his waist 15230,he is going to go full force.,he is going to step aside.,he is going to set up the competition.,he is going to use a prop.,he is going to reschedule it. ,1,how does Joey plan to ease tension when he tells ross and chandler about the audition?,137269,Friends,16.23-31.28,friends_s05e18_seg02_clip_10,he is going to step aside. 15231,Nothing.,The telephone.,Her beer.,A magazine.,The TV remote.,4,What did Monica set when she opened the armrest on the chair?,137270,Friends,43.33-49.13,friends_s07e13_seg02_clip_13,The TV remote. 15232,It was bleeding.,It was dead.,It roared at him.,He thought it ate his friends.,It was running away.,3,Why does Ryan panic after he gets to the tiger?,137271,Castle,61.6-71.49,castle_s04e10_seg02_clip_25,He thought it ate his friends. 15233,The injured woman tripped.,The injured woman attacked the policemen.,The policemen handcuffed the injured woman. ,Castle handcuffed the injured woman.,Esposito grabbed a baton. ,1,What happened after the policemen walked out with the injured woman?,137272,Castle,72.02-78.74,castle_s08e01_seg02_clip_25,The injured woman attacked the policemen. 15234,Lawrence connects a heart rate monitor.,Lawrence connects wires.,Lawrence connects a defibrillator.,Lawrence connect tubes together.,Lawrence connects a catheter.,3,What does Lawrence connect together before filling up Amber's lungs?,137273,House M.D.,53.57-55.13,house_s04e16_seg02_clip_08,Lawrence connect tubes together. 15235,They laugh at him,They boo him off stage,They yell at him,They clang silverware on their glasses,They do not pay attention to him,3,What do the guests do before Ross attempts to give his best man speech?,137274,Friends,12.26-16.35,friends_s08e02_seg02_clip_12,They clang silverware on their glasses 15236,water bottle,nothing,french fries,a plate, a pepsi,0,What is Sheldin carrying after the scene starts?,137275,The Big Bang Theory,2.91-83.02,s02e03_seg02_clip_16,water bottle 15237,To focus on something else for the pain.,Because it's a beautiful necklace.,Because Chase gave Cameron the necklace.,Chase was just making small talk.,Chase wanted Cameron to know he was thinking about her.,0,Why did Chase tell Dan to look at Cameron's necklace after he started Dan's treatment?,137276,House M.D.,34.6-38.1,house_s01e02_seg02_clip_17,To focus on something else for the pain. 15238,A file,A briefcase,A badge,A bunny,A gun ,0,What does Castle have in his hand when he and Beckett leave the interrogation room?,137277,Castle,75.62-82.37,castle_s03e20_seg02_clip_24,A file 15239,Rachel says its a girl.,Rachel says the babies name is Emma.,Rachel says Ross is home.,Rachel says she has to go to the bathroom.,Rachel says hello.,1,What does Rachel say after Amy calls the baby Emmett.,137278,Friends,26.25-64.03,friends_s09e08_seg02_clip_01,Rachel says the babies name is Emma. 15240,Thirty points.,Plus twenty points.,Minus twenty points.,Ten points.,Minus ten points.,2,How many points does Taub receive after he suggests that House does an MRA?,137279,House M.D.,73.61-79.95,house_s04e09_seg02_clip_16,Minus twenty points. 15241,Rats are sacred.,We love rats.,The shelter won't take them.,I am being paid to raise them.,We killed their mother.,4,Why does Phoebe tell Rachel she is responsible for the rat babies after they are found in the shoebox?,137280,Friends,34.83-46.63,friends_s09e12_seg02_clip_13,We killed their mother. 15242,Ross,Chandler,"Phoebe's ex-husband, Duncan","Phoebe's biological father, Frank Sr.",Rachel,3,Who sat down next to Phoebe when she is sitting on the couch?,137281,Friends,40.01-49.31,friends_s05e13_seg02_clip_17,"Phoebe's biological father, Frank Sr." 15243,2.,1.,3.,4.,None.,0,How many guitars are on the stage when Leslie is playing at the coffee shop?,137282,Friends,42.92-45.52,friends_s03e14_seg02_clip_10,2. 15244,Rachel runs down the street.,Rachel cries.,Rachel falls on the floor.,Rachel is freaked out.,Rachel jumps on a train.,3,When the man reaches for her how does Rachel respond after?,137283,Friends,47.45-52.1,friends_s09e14_seg02_clip_15,Rachel is freaked out. 15245,A yoga mat.,A child's chair.,A pillow.,A set of paint.,A pile of papers.,4,What was House holding as he walked away after telling the lady playing the game with the white controller to stay there?,137284,House M.D.,0-4.84,house_s08e14_seg02_clip_05,A pile of papers. 15246,A can,A bowl,His pants,A book,The TV remote,1,What did Joey pick up after the maintenance man said there was no gas leak?,137285,Friends,0.57-5.15,friends_s08e03_seg02_clip_10,A bowl 15247,A window with bullet holes,Inside the fridge,The computer,The bedroom,Inside the bathroom,0,What does Esposito first look at when canvasing the apartment,137286,Castle,0-9.25,castle_s06e12_seg02_clip_19,A window with bullet holes 15248,Martha.,Beckett.,Annie.,Gates.,Lannie.,1,What person does Alexis say the earrings are for when they are looking at them?,137287,Castle,0-6.42,castle_s05e14_seg02_clip_11,Beckett. 15249,Driver of a truck.,Owner of a bike.,Mom of a kid.,Cop and a woman.,Fat guy.,0,Who was Beckett and Castle talking when enter in a house ?,137288,Castle,83.74-89.15,castle_s01e05_seg02_clip_08,Driver of a truck. 15250,2 years ago,12 years ago,a long time ago,6 months ago,1 year ago,2,What time was the pact made when Leonard and Howard agreed to this pact?,137289,The Big Bang Theory,0-12,s03e05_seg02_clip_03,a long time ago 15251,House empties the patient's stomach.,House listens to the patient's stomach.,House X-rays the patient's stomach.,House palpates the patient's stomach.,House swabs the patient's stomach.,4,What does House do to the patient's stomach before cutting into it with the scalpel?,137290,House M.D.,13.37-20.8,house_s03e14_seg02_clip_23,House swabs the patient's stomach. 15252,he goes off and charts. ,he in turn walks away. ,he goes after her. ,he leans on the wall. ,He glentches his fist and bites his lip. ,4,What does Burke do after Christina walks away. ,137291,Grey's Anatomy,2.65-14.14,grey_s03e06_seg02_clip_07,He glentches his fist and bites his lip. ================================================ FILE: data/open_ended_qa/ActivityNet_QA.csv ================================================ ,video_id,answer,question,video_name,question_id,question_type 1,v_1QIUV7WYKXg,no,is the athlete wearing trousers,v_1QIUV7WYKXg,v_1QIUV7WYKXg_3,3 2,v_9eniCub7u60,yes,does the girl in black clothes have long hair,v_9eniCub7u60,v_9eniCub7u60_2,3 3,v_FADShG5lyB8,no,is the man wearing long sleeves,v_FADShG5lyB8,v_FADShG5lyB8_10,3 4,v_5k2Ot6-wOgc,no,is the man in black outdoors,v_5k2Ot6-wOgc,v_5k2Ot6-wOgc_3,3 5,v_mV07bEBkIcM,yes,is the person in white a man,v_mV07bEBkIcM,v_mV07bEBkIcM_7,3 6,v_X_K7Aa3Aa-E,no,is the person in white a man,v_X_K7Aa3Aa-E,v_X_K7Aa3Aa-E_3,3 7,v_X2toGKgWMpE,yes,is the person in white a man,v_X2toGKgWMpE,v_X2toGKgWMpE_2,3 8,v_98ukqD62X5s,yes,is the person in yellow clothes a man,v_98ukqD62X5s,v_98ukqD62X5s_2,3 9,v_4LF0hL-mgks,no,is the person first appears in the video outdoor,v_4LF0hL-mgks,v_4LF0hL-mgks_3,3 10,v_mUmSJps9WJI,yes,does the person in black have short hair,v_mUmSJps9WJI,v_mUmSJps9WJI_2,3 11,v_12Nafz_Yet4,yes,does the person in black have short hair,v_12Nafz_Yet4,v_12Nafz_Yet4_2,3 12,v_NvRH4SoF09c,yes,does the person in black have short hair,v_NvRH4SoF09c,v_NvRH4SoF09c_2,3 13,v_nhQTxZlzG1Q,no,does the person in black have short hair,v_nhQTxZlzG1Q,v_nhQTxZlzG1Q_3,3 14,v_A0b_pqaKCX8,no,does the person in black have short hair,v_A0b_pqaKCX8,v_A0b_pqaKCX8_3,3 15,v_CDecXoRSpIc,no,does the person in black t-shirt have long hair,v_CDecXoRSpIc,v_CDecXoRSpIc_3,3 16,v_Znb6Y9m_PsQ,no,is the person in black t-shirt plaing outdoors,v_Znb6Y9m_PsQ,v_Znb6Y9m_PsQ_3,3 17,v_Znb6Y9m_PsQ,yes,is the person in black t-shirt plaing outdoors,v_Znb6Y9m_PsQ,v_Znb6Y9m_PsQ_2,3 18,v_26U3SkeZU6M,yes,does the person in blue have short hair,v_26U3SkeZU6M,v_26U3SkeZU6M_2,3 19,v_vQ82ItCG1x4,yes,does the person in blue have short hair,v_vQ82ItCG1x4,v_vQ82ItCG1x4_2,3 20,v_-vY2uUmv6Dk,no,does the person in green have long hair,v_-vY2uUmv6Dk,v_-vY2uUmv6Dk_3,3 21,v_Y_nyVFn70Lk,yes,does the person in green have short hair,v_Y_nyVFn70Lk,v_Y_nyVFn70Lk_2,3 22,v_-vY2uUmv6Dk,yes,does the person in green have short hair,v_-vY2uUmv6Dk,v_-vY2uUmv6Dk_2,3 23,v_OlR9S70AA74,yes,does the person in green pants have short hair,v_OlR9S70AA74,v_OlR9S70AA74_2,3 24,v_aNsj5OrEGLY,no,is the person in the video wearing long sleeves,v_aNsj5OrEGLY,v_aNsj5OrEGLY_3,3 25,v_a2IvS0xbNGQ,no,does the person in orange clothes have long hair,v_a2IvS0xbNGQ,v_a2IvS0xbNGQ_3,3 26,v_gOnp3DZxeKU,yes,does the person in purple have short hair,v_gOnp3DZxeKU,v_gOnp3DZxeKU_8,3 27,v_nGKc2t-NMYc,no,does the person in purple have short hair,v_nGKc2t-NMYc,v_nGKc2t-NMYc_3,3 28,v_AguxVxEWEs0,no,does the person in white clothes have long hair,v_AguxVxEWEs0,v_AguxVxEWEs0_3,3 29,v_nYl_tYmijlM,no,does the person in white clothes have long hair,v_nYl_tYmijlM,v_nYl_tYmijlM_3,3 30,v_YMOYyt3kSOs,yes,does the person in white clothes have long hair,v_YMOYyt3kSOs,v_YMOYyt3kSOs_2,3 31,v_afMQA352X_A,no,is the person wearing white trouser,v_afMQA352X_A,v_afMQA352X_A_3,3 32,v_AguxVxEWEs0,yes,is the person in white clothes a man,v_AguxVxEWEs0,v_AguxVxEWEs0_2,3 33,v_vzUeFzhVYLg,yes,does the person in white clothes have short hair,v_vzUeFzhVYLg,v_vzUeFzhVYLg_2,3 34,v_N5Dt3ycaun4,yes,does the person in white clothes have short hair,v_N5Dt3ycaun4,v_N5Dt3ycaun4_2,3 35,v_30hcRe-5_3M,yes,does the person in white clothes have short hair,v_30hcRe-5_3M,v_30hcRe-5_3M_2,3 36,v_W2Mh01F3K5c,no,is the person in white wearing long sleeves,v_W2Mh01F3K5c,v_W2Mh01F3K5c_3,3 37,v_A8RQcVFtovg,no,is the person in white trouser a woman ,v_A8RQcVFtovg,v_A8RQcVFtovg_3,3 38,v_mxn6WcmdNpA,yes,does the person in yellow clothes have long hair,v_mxn6WcmdNpA,v_mxn6WcmdNpA_2,3 39,v_98ukqD62X5s,no,does the person in yellow clothes have long hair,v_98ukqD62X5s,v_98ukqD62X5s_3,3 40,v_mxn6WcmdNpA,no,does the person in yellow clothes have short hair,v_mxn6WcmdNpA,v_mxn6WcmdNpA_3,3 41,v__jV5sAOOHLk,yes,does the person in white clothes have long hair,v__jV5sAOOHLk,v__jV5sAOOHLk_7,3 42,v__QBTD1bLSI0,no,does the person in white clothes have long hair,v__QBTD1bLSI0,v__QBTD1bLSI0_3,3 43,v__QBTD1bLSI0,yes,does the person in white clothes have short hair,v__QBTD1bLSI0,v__QBTD1bLSI0_2,3 44,v_JR9LosQmMvg,no,is the athlete indoors,v_JR9LosQmMvg,v_JR9LosQmMvg_3,3 45,v_Jix3poZOeZA,no,is the athlete indoors,v_Jix3poZOeZA,v_Jix3poZOeZA_3,3 46,v_jEOtcfk220s,yes,is the athlete in the video indoors,v_jEOtcfk220s,v_jEOtcfk220s_2,3 47,v_4LpqPUWHH5k,yes,is the athlete in the video indoors,v_4LpqPUWHH5k,v_4LpqPUWHH5k_2,3 48,v_JH9qiuPCkY4,no,is the athlete in the video indoors,v_JH9qiuPCkY4,v_JH9qiuPCkY4_3,3 49,v_5UZ2ft8Y3sI,yes,is the athlete in the video indoors,v_5UZ2ft8Y3sI,v_5UZ2ft8Y3sI_2,3 50,v_5dN-MpXG9OE,yes,is the athlete in the video indoors,v_5dN-MpXG9OE,v_5dN-MpXG9OE_2,3 51,v_jibbgUBuuSA,no,is the athlete in the video indoors,v_jibbgUBuuSA,v_jibbgUBuuSA_3,3 52,v_JR9LosQmMvg,yes,is the athlete outdoors,v_JR9LosQmMvg,v_JR9LosQmMvg_2,3 53,v_s6fEIuHPJ4Y,yes,is the athlete outdoors,v_s6fEIuHPJ4Y,v_s6fEIuHPJ4Y_2,3 54,v_Jix3poZOeZA,yes,is the athlete outdoors,v_Jix3poZOeZA,v_Jix3poZOeZA_2,3 55,v_sRNqK_QZbMs,yes,is the athlete outdoors,v_sRNqK_QZbMs,v_sRNqK_QZbMs_2,3 56,v_svNcNLEPKMc,no,is the athlete outdoors,v_svNcNLEPKMc,v_svNcNLEPKMc_3,3 57,v_snhPrCNubYA,yes,is the athlete outdoors,v_snhPrCNubYA,v_snhPrCNubYA_2,3 58,v_sEcXR5b8HyY,no,is the athlete outdoors,v_sEcXR5b8HyY,v_sEcXR5b8HyY_3,3 59,v_St1RRi-aeNM,yes,is the athlete outdoors,v_St1RRi-aeNM,v_St1RRi-aeNM_2,3 60,v_sPK-sbHIb3w,no,is the athlete outdoors,v_sPK-sbHIb3w,v_sPK-sbHIb3w_3,3 61,v_3Nd3Aai1bVA,no,is the athlete playing indoors,v_3Nd3Aai1bVA,v_3Nd3Aai1bVA_3,3 62,v_nciIPwJTok8,yes,is the person in blue clothes a man,v_nciIPwJTok8,v_nciIPwJTok8_2,3 63,v_jbCQY7V7O1s,no,is the man in the video outdoors,v_jbCQY7V7O1s,v_jbCQY7V7O1s_3,3 64,v_5oyenoaVB-w,yes,is the man in the video outdoors,v_5oyenoaVB-w,v_5oyenoaVB-w_2,3 65,v_mixxaL3Bdv8,yes,is the person in orange clothes outdoors,v_mixxaL3Bdv8,v_mixxaL3Bdv8_2,3 66,v_JB-ynj70saA,yes,is the person in black pants indoors,v_JB-ynj70saA,v_JB-ynj70saA_2,3 67,v_JB-ynj70saA,no,is the person in black pants outdoors,v_JB-ynj70saA,v_JB-ynj70saA_3,3 68,v_SJ7jk5XAjng,no,is the person in the game indoors,v_SJ7jk5XAjng,v_SJ7jk5XAjng_3,3 69,v_SJ7jk5XAjng,yes,is the person in the game outdoors,v_SJ7jk5XAjng,v_SJ7jk5XAjng_2,3 70,v_-crpjVnFv0U,no,is the person in the video a chinese,v_-crpjVnFv0U,v_-crpjVnFv0U_8,3 71,v_d_A-ylxNbFU,no,is the person in the video a chinese,v_d_A-ylxNbFU,v_d_A-ylxNbFU_6,3 72,v_cVFVREeD6hM,no,is the person in the video a chinese,v_cVFVREeD6hM,v_cVFVREeD6hM_7,3 73,v_cTxVTEzQDr8,no,is the person in the video a chinese,v_cTxVTEzQDr8,v_cTxVTEzQDr8_9,3 74,v_JGPhQX97OSE,yes,is the person on the court indoors,v_JGPhQX97OSE,v_JGPhQX97OSE_2,3 75,v_JGPhQX97OSE,no,is the person on the court outdoors,v_JGPhQX97OSE,v_JGPhQX97OSE_3,3 76,v_rSGboODhu04,no,is the person standing outdoors,v_rSGboODhu04,v_rSGboODhu04_3,3 77,v_RXDVJlb97OI,no,is the person standing outdoors,v_RXDVJlb97OI,v_RXDVJlb97OI_3,3 78,v_kD_EJjQCLoY,no,is the person standing outdoors,v_kD_EJjQCLoY,v_kD_EJjQCLoY_3,3 79,v_jhy6npIdn5o,no,is the person standing outdoors,v_jhy6npIdn5o,v_jhy6npIdn5o_3,3 80,v_SjlILJ2st-I,no,is the player indoors,v_SjlILJ2st-I,v_SjlILJ2st-I_3,3 81,v_2CegApogJd4,no,is the person playing dodgeball outdoors,v_2CegApogJd4,v_2CegApogJd4_3,3 82,v_fbr7v8RMkf8,yes,are there many people in the ski resort,v_fbr7v8RMkf8,v_fbr7v8RMkf8_7,3 83,v_fh21bbDSVmA,no,are there many people in the stands,v_fh21bbDSVmA,v_fh21bbDSVmA_8,3 84,v_dGT_KGb0gyw,yes,are they indoors,v_dGT_KGb0gyw,v_dGT_KGb0gyw_8,3 85,v_chmegNbBTNc,day,is it day or night in the video,v_chmegNbBTNc,v_chmegNbBTNc_9,8 86,v_40BPDWojssc,no,is the person in black wearing a hat,v_40BPDWojssc,v_40BPDWojssc_3,3 87,v_mXqmRAUsn9U,yes,is the person in blue wearing a hat,v_mXqmRAUsn9U,v_mXqmRAUsn9U_2,3 88,v_ys4_S3JHQjs,yes,is the person in blue wearing a hat,v_ys4_S3JHQjs,v_ys4_S3JHQjs_2,3 89,v_DUi-hLMpQQo,yes,is the person in blue wearing a hat,v_DUi-hLMpQQo,v_DUi-hLMpQQo_2,3 90,v_AguxVxEWEs0,no,is the person in blue wearing a watch,v_AguxVxEWEs0,v_AguxVxEWEs0_10,3 91,v_62M1FRXsUiM,no,is the person in blue wearing a watch,v_62M1FRXsUiM,v_62M1FRXsUiM_10,3 92,v_xMNmGr96O9U,yes,is the person in gray wearing a hat,v_xMNmGr96O9U,v_xMNmGr96O9U_2,3 93,v_dN8LBey17O8,yes,is the person in gray wearing a hat,v_dN8LBey17O8,v_dN8LBey17O8_7,3 94,v_Ye_uVlSo1HI,yes,is the person in gray wearing a hat,v_Ye_uVlSo1HI,v_Ye_uVlSo1HI_2,3 95,v_AjizhJc_reI,yes,is the person in pink wearing a hat,v_AjizhJc_reI,v_AjizhJc_reI_2,3 96,v_ZAX6OojMg38,yes,is the person in red wearing a hat,v_ZAX6OojMg38,v_ZAX6OojMg38_2,3 97,v__V62aT_K8Zw,yes,does the person wearing a hat have a long beard,v__V62aT_K8Zw,v__V62aT_K8Zw_2,3 98,v_TXSOSSGJYO0,no,is the person in gray wearing a hat,v_TXSOSSGJYO0,v_TXSOSSGJYO0_3,3 99,v_U2cCOj3LiAA,no,is the person in the video wearing a hat,v_U2cCOj3LiAA,v_U2cCOj3LiAA_3,3 100,v_LWt2FuU0uC4,yes,is the athlete wearing shorts,v_LWt2FuU0uC4,v_LWt2FuU0uC4_2,3 101,v_LzPppxSWYNY,yes,is the athlete wearing shorts,v_LzPppxSWYNY,v_LzPppxSWYNY_2,3 102,v_LWt2FuU0uC4,no,is the athlete wearing pant,v_LWt2FuU0uC4,v_LWt2FuU0uC4_3,3 103,v_LzPppxSWYNY,no,is the athlete wearing pant,v_LzPppxSWYNY,v_LzPppxSWYNY_3,3 104,v_EDDbcCBnTQM,yes,does the man wear sunglasses,v_EDDbcCBnTQM,v_EDDbcCBnTQM_2,3 105,v_GSrBZXLSwWI,yes,is the person in a black t-shirt wearing hat,v_GSrBZXLSwWI,v_GSrBZXLSwWI_2,3 106,v_1YU4MSK80cQ,no,is the person in a black vest playing outdoors,v_1YU4MSK80cQ,v_1YU4MSK80cQ_3,3 107,v_1YU4MSK80cQ,yes,is the person in a black vest playing outdoors,v_1YU4MSK80cQ,v_1YU4MSK80cQ_2,3 108,v_4_jDgRsOGvY,yes,is the man in black wearing a hat ,v_4_jDgRsOGvY,v_4_jDgRsOGvY_2,3 109,v_28WDlVOgslg,yes,is the man in black wearing glasses,v_28WDlVOgslg,v_28WDlVOgslg_6,3 110,v_40BPDWojssc,yes,is the man in black wearing glasses,v_40BPDWojssc,v_40BPDWojssc_2,3 111,v_otMw5GJWYWs,no,is the man in black wearing glasses,v_otMw5GJWYWs,v_otMw5GJWYWs_3,3 112,v_ojTFTIwsa_c,no,is the man in black wearing glasses,v_ojTFTIwsa_c,v_ojTFTIwsa_c_3,3 113,v_gsQ-OEvrxjo,yes,is the man in black wearing glasses,v_gsQ-OEvrxjo,v_gsQ-OEvrxjo_10,3 114,v__kmjpSZb3OI,yes,is the man in black wearing glasses,v__kmjpSZb3OI,v__kmjpSZb3OI_2,3 115,v_X6CBZwwRdQQ,yes,is the man in black wearing glasses,v_X6CBZwwRdQQ,v_X6CBZwwRdQQ_2,3 116,v_ojTFTIwsa_c,yes,does the person in black wear a hat,v_ojTFTIwsa_c,v_ojTFTIwsa_c_2,3 117,v_xMNmGr96O9U,no,does the person in black wear a hat,v_xMNmGr96O9U,v_xMNmGr96O9U_10,3 118,v_xND_kp-aYXw,no,does the person in black wear a hat,v_xND_kp-aYXw,v_xND_kp-aYXw_3,3 119,v_X6CBZwwRdQQ,no,does the person in black wear a hat,v_X6CBZwwRdQQ,v_X6CBZwwRdQQ_3,3 120,v_96vBhCFBbQk,no,is the person in blue wearing earrings,v_96vBhCFBbQk,v_96vBhCFBbQk_3,3 121,v_16czjUF1AA4,yes,is the person in blue wearing earrings,v_16czjUF1AA4,v_16czjUF1AA4_7,3 122,v_mXqmRAUsn9U,no,is the person in blue wearing glasses,v_mXqmRAUsn9U,v_mXqmRAUsn9U_3,3 123,v_DUi-hLMpQQo,no,is the person in blue wearing glasses,v_DUi-hLMpQQo,v_DUi-hLMpQQo_3,3 124,v_uJ4OZfCjViM,no,is the person in blue wearing shoes,v_uJ4OZfCjViM,v_uJ4OZfCjViM_3,3 125,v_pVoM_kUQ4_E,yes,is the person in blue wearing sunglasses,v_pVoM_kUQ4_E,v_pVoM_kUQ4_E_6,3 126,v_TGffgRXc1eQ,no,is the person in blue wear a watch on his right hand,v_TGffgRXc1eQ,v_TGffgRXc1eQ_3,3 127,v_xMNmGr96O9U,no,is the person in gray wearing glasses,v_xMNmGr96O9U,v_xMNmGr96O9U_3,3 128,v_Ye_uVlSo1HI,no,is the person in gray wearing glasses,v_Ye_uVlSo1HI,v_Ye_uVlSo1HI_3,3 129,v_mkGUacg0GRc,no,is the person in gray wearing long sleeves,v_mkGUacg0GRc,v_mkGUacg0GRc_3,3 130,v_LYTWYSqsTCE,no,is the person in gray wearing long sleeves,v_LYTWYSqsTCE,v_LYTWYSqsTCE_3,3 131,v_mkGUacg0GRc,yes,is the person in gray wearing short sleeves,v_mkGUacg0GRc,v_mkGUacg0GRc_2,3 132,v_LYTWYSqsTCE,yes,is the person in gray wearing short sleeves,v_LYTWYSqsTCE,v_LYTWYSqsTCE_2,3 133,v_0w4OkBenR_k,no,is the person in purple wearing trousers,v_0w4OkBenR_k,v_0w4OkBenR_k_3,3 134,v_nP1Bk-vJgVg,no,is the person in purple wearing trousers,v_nP1Bk-vJgVg,v_nP1Bk-vJgVg_3,3 135,v_hxErUs42bBI,yes,is the person in red wearing a hat,v_hxErUs42bBI,v_hxErUs42bBI_2,3 136,v_mSR-HpiJ0No,yes,is the person in red wearing earrings,v_mSR-HpiJ0No,v_mSR-HpiJ0No_2,3 137,v_0q9yZPTBbus,yes,is the person in red wearing earrings,v_0q9yZPTBbus,v_0q9yZPTBbus_2,3 138,v_9k19UUJtldg,no,is the person in red wearing glasses,v_9k19UUJtldg,v_9k19UUJtldg_9,3 139,v_x6pYeqq3O08,yes,is the person in red wearing glasses,v_x6pYeqq3O08,v_x6pYeqq3O08_2,3 140,v_XxW4XWySzOw,no,is the person in red wearing glasses,v_XxW4XWySzOw,v_XxW4XWySzOw_10,3 141,v_ZAX6OojMg38,no,is the person in red wearing glasses,v_ZAX6OojMg38,v_ZAX6OojMg38_3,3 142,v_mSR-HpiJ0No,no,is the person in red wearing a hat,v_mSR-HpiJ0No,v_mSR-HpiJ0No_3,3 143,v_390iVq_urQM,yes,is the person in red wearing a hat,v_390iVq_urQM,v_390iVq_urQM_2,3 144,v_x6pYeqq3O08,no,is the person in red wearing a hat,v_x6pYeqq3O08,v_x6pYeqq3O08_3,3 145,v_p1QGn0IzfW0,yes,is the person in red wearing t-shirt,v_p1QGn0IzfW0,v_p1QGn0IzfW0_2,3 146,v_cYvFlrAnlzA,no,is the person in white wearing a hat,v_cYvFlrAnlzA,v_cYvFlrAnlzA_6,3 147,v_-eJT11AuOa0,yes,is the person in white wearing a hat,v_-eJT11AuOa0,v_-eJT11AuOa0_8,3 148,v_X52XHYKeLiE,no,is the person in white wearing glasses,v_X52XHYKeLiE,v_X52XHYKeLiE_3,3 149,v_nYl_tYmijlM,yes,is the person in white wearing glasses,v_nYl_tYmijlM,v_nYl_tYmijlM_2,3 150,v_NDq29HQJVP0,no,is the person in white wearing glasses,v_NDq29HQJVP0,v_NDq29HQJVP0_3,3 151,v_xizEiQZfJa4,no,is the person in white wearing gloves,v_xizEiQZfJa4,v_xizEiQZfJa4_3,3 152,v_X52XHYKeLiE,yes,is the person in white wearing gloves,v_X52XHYKeLiE,v_X52XHYKeLiE_2,3 153,v_1494UwmvAJM,no,is the person in white wearing a hat,v_1494UwmvAJM,v_1494UwmvAJM_3,3 154,v_NDq29HQJVP0,yes,is the person in white wearing a hat,v_NDq29HQJVP0,v_NDq29HQJVP0_2,3 155,v_mnNgZ-D5cKc,yes,is the person in white wearing a hat,v_mnNgZ-D5cKc,v_mnNgZ-D5cKc_2,3 156,v_lUmjnFf7IPQ,no,is the person in white wearing long sleeves,v_lUmjnFf7IPQ,v_lUmjnFf7IPQ_3,3 157,v_lUmjnFf7IPQ,yes,is the person in white wearing short sleeves,v_lUmjnFf7IPQ,v_lUmjnFf7IPQ_2,3 158,v_Oh3-DvDCpZ4,no,is the person in white wearing a watch,v_Oh3-DvDCpZ4,v_Oh3-DvDCpZ4_3,3 159,v_836UrVGw6GI,no,is the person in white wearing a watch,v_836UrVGw6GI,v_836UrVGw6GI_3,3 160,v_y0ca-LbQErY,yes,is the person in white wearing a watch,v_y0ca-LbQErY,v_y0ca-LbQErY_2,3 161,v_QIUxLD27NuI,yes,is the person in white wearing glasses,v_QIUxLD27NuI,v_QIUxLD27NuI_2,3 162,v_i5qTK0mInTc,yes,is the person in white wearing glasses,v_i5qTK0mInTc,v_i5qTK0mInTc_2,3 163,v_hQqoh0YxJYs,yes,is the person in yellow wearing a hat,v_hQqoh0YxJYs,v_hQqoh0YxJYs_2,3 164,v_zYjLA99koBk,yes,is the person in yellow wearing a hat,v_zYjLA99koBk,v_zYjLA99koBk_6,3 165,v_udSHsodv3gY,yes,is the person in the video wearing glasses,v_udSHsodv3gY,v_udSHsodv3gY_2,3 166,v_d_A-ylxNbFU,no,is the person in the video wearing glasses,v_d_A-ylxNbFU,v_d_A-ylxNbFU_9,3 167,v_aPI0nPvzJlE,no,is the person in the video wearing glasses,v_aPI0nPvzJlE,v_aPI0nPvzJlE_7,3 168,v_QXN6odBnVmI,no,is the person in a black t-shirt wearing a hat,v_QXN6odBnVmI,v_QXN6odBnVmI_7,3 169,v_Znb6Y9m_PsQ,no,is the person in a black t-shirt wearing a hat,v_Znb6Y9m_PsQ,v_Znb6Y9m_PsQ_8,3 170,v_qgUHRwC3194,no,is the person in a white t-shirt wearing a hat,v_qgUHRwC3194,v_qgUHRwC3194_7,3 171,v_ZLG1Exv8HrY,no,is the person in a white t-shirt wearing a hat,v_ZLG1Exv8HrY,v_ZLG1Exv8HrY_9,3 172,v_-pK2JheWido,no,do the skier have any safety measure,v_-pK2JheWido,v_-pK2JheWido_10,3 173,v__jIXs7AFTxw,no,is the person in white wearing a hat,v__jIXs7AFTxw,v__jIXs7AFTxw_3,3 174,v_Db9VWkgMpbE,no,is the woman in the video wearing glasses,v_Db9VWkgMpbE,v_Db9VWkgMpbE_10,3 175,v_v6DdLg_Xnkg,yes,do both hands been used when wearing the contact lenses,v_v6DdLg_Xnkg,v_v6DdLg_Xnkg_2,3 176,v_iZT4XgzUHm4,no,does the computer been used when reparing the bicycle,v_iZT4XgzUHm4,v_iZT4XgzUHm4_3,3 177,v_V9mLJJn8Lvw,no,does the pen been used during packing the book,v_V9mLJJn8Lvw,v_V9mLJJn8Lvw_3,3 178,v_iAes5SVj_Fg,no,does the pen been used during fight,v_iAes5SVj_Fg,v_iAes5SVj_Fg_3,3 179,v_vBOFzuS-Djo,no,does the pen been used during diving,v_vBOFzuS-Djo,v_vBOFzuS-Djo_3,3 180,v_i_LT0ef1n-Y,no,does the pen been used during skateboarding,v_i_LT0ef1n-Y,v_i_LT0ef1n-Y_3,3 181,v_V9mLJJn8Lvw,yes,does packing book need paper,v_V9mLJJn8Lvw,v_V9mLJJn8Lvw_2,3 182,v_iAes5SVj_Fg,yes,does fighting need arm strength,v_iAes5SVj_Fg,v_iAes5SVj_Fg_2,3 183,v_G25py7yEVyo,no,is the person in white shaking hands outdoors,v_G25py7yEVyo,v_G25py7yEVyo_3,3 184,v_G25py7yEVyo,yes,is the person in white shaking hands outdoors,v_G25py7yEVyo,v_G25py7yEVyo_2,3 185,v_8_fjIZkNHms,yes,does fishing need arm strength,v_8_fjIZkNHms,v_8_fjIZkNHms_2,3 186,v_7vcihMnmssI,yes,does fishing need arm strength,v_7vcihMnmssI,v_7vcihMnmssI_2,3 187,v_7LbBmVX33I4,yes,does makeup need arm strength,v_7LbBmVX33I4,v_7LbBmVX33I4_2,3 188,v_qObVIn_GI10,yes,is the person in the video wearing a ring on the left hand,v_qObVIn_GI10,v_qObVIn_GI10_2,3 189,v_uLphvdhunTY,no,is the person in the video wearing a watch with the left hand,v_uLphvdhunTY,v_uLphvdhunTY_3,3 190,v_0jdSl5-lMpY,yes,is the person in the video wearing a watch with the left hand,v_0jdSl5-lMpY,v_0jdSl5-lMpY_2,3 191,v_zYjLA99koBk,outdoor,does the boating scene take place indoors or outdoors,v_zYjLA99koBk,v_zYjLA99koBk_10,6 192,v_7IwHwDuQdyU,yes,does this sport need leg strength ,v_7IwHwDuQdyU,v_7IwHwDuQdyU_2,3 193,v_QX5e5Mla660,no,is the person in green wearing a hat,v_QX5e5Mla660,v_QX5e5Mla660_3,3 194,v_hxErUs42bBI,no,is the person in red wearing a hat,v_hxErUs42bBI,v_hxErUs42bBI_3,3 195,v_0e7d39SwHCA,no,is the person in white wearing a hat,v_0e7d39SwHCA,v_0e7d39SwHCA_3,3 196,v_QIUxLD27NuI,no,is the person in yellow wearing glasses,v_QIUxLD27NuI,v_QIUxLD27NuI_3,3 197,v_i5qTK0mInTc,no,is the person in yellow wearing glasses,v_i5qTK0mInTc,v_i5qTK0mInTc_3,3 198,v_hQqoh0YxJYs,no,is the person in yellow wearing a hat,v_hQqoh0YxJYs,v_hQqoh0YxJYs_3,3 199,v_TnP6coXzbLY,no,is the person in the video wearing a microphone,v_TnP6coXzbLY,v_TnP6coXzbLY_3,3 200,v_Y05GAiavfOg,yes,is the person in the video wearing shoes,v_Y05GAiavfOg,v_Y05GAiavfOg_9,3 201,v_Ynvd8OuXKGw,good looking,how about the dance in the video,v_Ynvd8OuXKGw,v_Ynvd8OuXKGw_7,8 202,v_SGAUpoTMSnA,bit dangerous,how dangerous is the sport of kayaking,v_SGAUpoTMSnA,v_SGAUpoTMSnA_10,8 203,v_5LGh56euaZs,secondary,how difficult is to dive,v_5LGh56euaZs,v_5LGh56euaZs_10,8 204,v_9snScUyE8_4,simple,how difficult is the operation,v_9snScUyE8_4,v_9snScUyE8_4_8,8 205,v_9SIPJd4Hls4,simple,how difficult is the operation,v_9SIPJd4Hls4,v_9SIPJd4Hls4_9,8 206,v_sRNqK_QZbMs,much simpler,how difficult is the activity in the video,v_sRNqK_QZbMs,v_sRNqK_QZbMs_10,8 207,v_SidTquTAtyk,more difficult,how difficult is the activity of flying a kite in the video,v_SidTquTAtyk,v_SidTquTAtyk_10,8 208,v_StGxFfLiYNU,much simpler,how difficult is to pile sand,v_StGxFfLiYNU,v_StGxFfLiYNU_10,8 209,v_RlRrktN5iH4,simple,how difficult is the activity in the video,v_RlRrktN5iH4,v_RlRrktN5iH4_10,8 210,v_nbOsU2Vmp1U,simple,how difficult is the operation,v_nbOsU2Vmp1U,v_nbOsU2Vmp1U_8,8 211,v_40BPDWojssc,simple,how difficult is the operation,v_40BPDWojssc,v_40BPDWojssc_7,8 212,v_16czjUF1AA4,difficulty,how difficult is the sport in the video,v_16czjUF1AA4,v_16czjUF1AA4_10,8 213,v_UzmsAb15Bso,low,how safe is the activity of skateboarding,v_UzmsAb15Bso,v_UzmsAb15Bso_10,8 214,v_8kaQq1mR2ys,secondary,how safe is the activity of swimming,v_8kaQq1mR2ys,v_8kaQq1mR2ys_10,8 215,v_e0yu4WgiZUM,secondary,how safe is the activity of swimming,v_e0yu4WgiZUM,v_e0yu4WgiZUM_8,8 216,v_ETbbYC0OhL0,unsafe,how safe is the activity in the video ,v_ETbbYC0OhL0,v_ETbbYC0OhL0_8,8 217,v_rrpEOrMpBuE,sunny,what weather is it in the video,v_rrpEOrMpBuE,v_rrpEOrMpBuE_10,8 218,v_JR9LosQmMvg,sunny,what weather is it in the video,v_JR9LosQmMvg,v_JR9LosQmMvg_8,8 219,v_jDlvGWOdcqU,sunny,what weather is it in the video,v_jDlvGWOdcqU,v_jDlvGWOdcqU_10,8 220,v_rsU73H6VyG8,cloudy,what weather is it in the video,v_rsU73H6VyG8,v_rsU73H6VyG8_9,8 221,v_Jhcis4S2Vsg,sunny,what weather is it in the video,v_Jhcis4S2Vsg,v_Jhcis4S2Vsg_9,8 222,v_JY9oOSfjj_E,sunny,what weather is it in the video,v_JY9oOSfjj_E,v_JY9oOSfjj_E_10,8 223,v_lUil9HfTzJ0,sunny,what weather is it in the video,v_lUil9HfTzJ0,v_lUil9HfTzJ0_6,8 224,v_K1OsjA-f17E,sunny,what weather is it in the video,v_K1OsjA-f17E,v_K1OsjA-f17E_9,8 225,v_Jix3poZOeZA,sunny,what weather is it in the video,v_Jix3poZOeZA,v_Jix3poZOeZA_9,8 226,v_jBlG0L_M96g,sunny,what weather is it in the video,v_jBlG0L_M96g,v_jBlG0L_M96g_10,8 227,v_rWfQj0X8WU4,sunny,what weather is it in the video,v_rWfQj0X8WU4,v_rWfQj0X8WU4_9,8 228,v_RXT17X7lRoQ,sunny,what weather is it in the video,v_RXT17X7lRoQ,v_RXT17X7lRoQ_9,8 229,v_K1LiXUpoSmI,sunny,what weather is it in the video,v_K1LiXUpoSmI,v_K1LiXUpoSmI_9,8 230,v_kBTqTp0SKq8,sunny,what weather is it in the video,v_kBTqTp0SKq8,v_kBTqTp0SKq8_9,8 231,v_jWODw4vy45M,sunny,what weather is it in the video,v_jWODw4vy45M,v_jWODw4vy45M_9,8 232,v_s6fEIuHPJ4Y,2,how many athletes are there,v_s6fEIuHPJ4Y,v_s6fEIuHPJ4Y_7,7 233,v_jibbgUBuuSA,1,how many athletes are there in the video,v_jibbgUBuuSA,v_jibbgUBuuSA_7,7 234,v_svNcNLEPKMc,5,how many athletes are there in the video,v_svNcNLEPKMc,v_svNcNLEPKMc_7,7 235,v_V90CMuokf0c,1,how many people in black are there in the video,v_V90CMuokf0c,v_V90CMuokf0c_8,7 236,v_vHnZ3NrZER0,1,how many people in black are there in the video,v_vHnZ3NrZER0,v_vHnZ3NrZER0_8,7 237,v_7BUr2cN8CLs,1,how many blonde women are in the video,v_7BUr2cN8CLs,v_7BUr2cN8CLs_8,7 238,v_IclzwpxVvIk,1,how many blonde women are in the video,v_IclzwpxVvIk,v_IclzwpxVvIk_8,7 239,v_ikUNgSw4Gys,1,how many blonde women are in the video,v_ikUNgSw4Gys,v_ikUNgSw4Gys_8,7 240,v_XI7qJHE61zo,2,how many people in blue are there in the video,v_XI7qJHE61zo,v_XI7qJHE61zo_8,7 241,v_sfbgZOHLkII,2,how many people are riding camels in video,v_sfbgZOHLkII,v_sfbgZOHLkII_7,7 242,v_dN8LBey17O8,2,how many parking lots are there in the video,v_dN8LBey17O8,v_dN8LBey17O8_6,7 243,v_BBKSKU6dGGk,2,how many parking lots are there in the video,v_BBKSKU6dGGk,v_BBKSKU6dGGk_9,7 244,v_ZAX6OojMg38,1,how many cats are there in the video,v_ZAX6OojMg38,v_ZAX6OojMg38_9,7 245,v_FKtYeu2bJpA,3,how many chairs are there in video,v_FKtYeu2bJpA,v_FKtYeu2bJpA_8,7 246,v_26U3SkeZU6M,1,how many people are there in video,v_26U3SkeZU6M,v_26U3SkeZU6M_7,7 247,v_mvRoVXRGVGw,2,how many people are there in video,v_mvRoVXRGVGw,v_mvRoVXRGVGw_7,7 248,v_96vBhCFBbQk,1,how many people are there in video,v_96vBhCFBbQk,v_96vBhCFBbQk_8,7 249,v_9MN6GNhvwzA,2,how many people are there in video,v_9MN6GNhvwzA,v_9MN6GNhvwzA_8,7 250,v_9ZVWD0ZKXZg,2,how many people are there in video,v_9ZVWD0ZKXZg,v_9ZVWD0ZKXZg_7,7 251,v_mZYWfmsYQPA,1,how many people are there in video,v_mZYWfmsYQPA,v_mZYWfmsYQPA_9,7 252,v_Ki1bs5X_S5k,1,how many children are playing,v_Ki1bs5X_S5k,v_Ki1bs5X_S5k_8,7 253,v_4JmFOPoKluM,4,how many children are there in the video,v_4JmFOPoKluM,v_4JmFOPoKluM_6,7 254,v_k3WPc9HmtLM,1,how many children are there in the video,v_k3WPc9HmtLM,v_k3WPc9HmtLM_7,7 255,v_J9KjpzKM8oc,1,how many children are there in the video,v_J9KjpzKM8oc,v_J9KjpzKM8oc_7,7 256,v_H2fG7JRRMAs,3,how many children are there in the video,v_H2fG7JRRMAs,v_H2fG7JRRMAs_8,7 257,v_5mWZY2XkWSQ,2,how many children are there in the video,v_5mWZY2XkWSQ,v_5mWZY2XkWSQ_7,7 258,v_rMj2JWNJzkw,1,how many coaches are there,v_rMj2JWNJzkw,v_rMj2JWNJzkw_7,7 259,v_k6pN0WRr2Ws,2,how many coaches are there,v_k6pN0WRr2Ws,v_k6pN0WRr2Ws_7,7 260,v_4LpqPUWHH5k,1,how many coaches have appeared in the video,v_4LpqPUWHH5k,v_4LpqPUWHH5k_7,7 261,v_LjPKKqe-VO0,1,how many coaches have appeared in the video,v_LjPKKqe-VO0,v_LjPKKqe-VO0_7,7 262,v_sRNqK_QZbMs,1,how many coaches have appeared in the video,v_sRNqK_QZbMs,v_sRNqK_QZbMs_7,7 263,v_8kaQq1mR2ys,1,how many disabled people are in the video,v_8kaQq1mR2ys,v_8kaQq1mR2ys_6,7 264,v_0lbv0AE5gJQ,1,how many disabled people are in the video,v_0lbv0AE5gJQ,v_0lbv0AE5gJQ_8,7 265,v_vzUeFzhVYLg,1,how many people are diving in the video,v_vzUeFzhVYLg,v_vzUeFzhVYLg_6,7 266,v_HJWwqjLf1I4,4,how many people are diving in the video,v_HJWwqjLf1I4,v_HJWwqjLf1I4_8,7 267,v_hQqoh0YxJYs,1,how many dogs are there in the video,v_hQqoh0YxJYs,v_hQqoh0YxJYs_6,7 268,v_8_fjIZkNHms,1,how many dogs are there in the video,v_8_fjIZkNHms,v_8_fjIZkNHms_6,7 269,v_hIHeMA1oRrY,1,how many dogs are there in the video,v_hIHeMA1oRrY,v_hIHeMA1oRrY_6,7 270,v_1xtKGlUp4Vg,1,how many dogs are there in the video,v_1xtKGlUp4Vg,v_1xtKGlUp4Vg_8,7 271,v_IGT0dIKDGCw,1,how many dogs are there in the video,v_IGT0dIKDGCw,v_IGT0dIKDGCw_8,7 272,v_1vTHJMMPZN0,3,how many dogs are there in the video,v_1vTHJMMPZN0,v_1vTHJMMPZN0_6,7 273,v_jWODw4vy45M,2,how many dogs are there in the video,v_jWODw4vy45M,v_jWODw4vy45M_7,7 274,v_uJAL31wAD2A,1,how many dogs are there in the video,v_uJAL31wAD2A,v_uJAL31wAD2A_6,7 275,v_28LdZLfdmMQ,4,how many ducks are there in the video,v_28LdZLfdmMQ,v_28LdZLfdmMQ_10,7 276,v_v6P6bBPBXYw,2,how many goalkeepers are there in the video,v_v6P6bBPBXYw,v_v6P6bBPBXYw_8,7 277,v_VFC-V06hVj0,1,how many people with hats are there in the video,v_VFC-V06hVj0,v_VFC-V06hVj0_8,7 278,v_K5jY2chByPw,1,how many horses are there,v_K5jY2chByPw,v_K5jY2chByPw_7,7 279,v_hvrKRg166eQ,3,how many hosts are there in the video,v_hvrKRg166eQ,v_hvrKRg166eQ_6,7 280,v_HWFosaUWoSI,1,how many houses are there in the video,v_HWFosaUWoSI,v_HWFosaUWoSI_6,7 281,v_paRAKx8svJ8,4,how many judges are there in the video,v_paRAKx8svJ8,v_paRAKx8svJ8_6,7 282,v_mVAP-WyEc7w,3,how many knives are there in the video,v_mVAP-WyEc7w,v_mVAP-WyEc7w_10,7 283,v_IMMoglaJ3RY,2,how many men are there in the video,v_IMMoglaJ3RY,v_IMMoglaJ3RY_8,7 284,v_7vcihMnmssI,4,how many men are there in the video,v_7vcihMnmssI,v_7vcihMnmssI_6,7 285,v_xuvp0jKMqRU,2,how many men are there in the video,v_xuvp0jKMqRU,v_xuvp0jKMqRU_7,7 286,v_V08Q-DbT0GQ,1,how many men are there in the video,v_V08Q-DbT0GQ,v_V08Q-DbT0GQ_8,7 287,v_8teo_0gxzgk,2,how many men are there in the video,v_8teo_0gxzgk,v_8teo_0gxzgk_6,7 288,v_6VXQoPNphgI,1,how many men are there in the video,v_6VXQoPNphgI,v_6VXQoPNphgI_8,7 289,v_V2UitlmX7Uo,1,how many men are there in the video,v_V2UitlmX7Uo,v_V2UitlmX7Uo_8,7 290,v_8tCRp3NKtkI,1,how many men are there in the video,v_8tCRp3NKtkI,v_8tCRp3NKtkI_6,7 291,v_uWfQcDvel84,1,how many men are wearing hats in the video,v_uWfQcDvel84,v_uWfQcDvel84_8,7 292,v_4UdxT6Zmero,1,how many mowers are there in the video,v_4UdxT6Zmero,v_4UdxT6Zmero_7,7 293,v_UNKf15ALDh8,1,how many pairs of gloves are there in the video,v_UNKf15ALDh8,v_UNKf15ALDh8_8,7 294,v_J1QB1y3vXLY,1,how many pairs of gloves are there in the video,v_J1QB1y3vXLY,v_J1QB1y3vXLY_8,7 295,v_Ynvd8OuXKGw,1,how many people are dancing in the video,v_Ynvd8OuXKGw,v_Ynvd8OuXKGw_6,7 296,v_PTwe2IIo3To,6,how many people are dancing in the video,v_PTwe2IIo3To,v_PTwe2IIo3To_10,7 297,v_1kkc9hDshP4,3,how many people are dancing on the stage,v_1kkc9hDshP4,v_1kkc9hDshP4_8,7 298,v_IIPKxzPjrWg,2,how many people are diving in the video,v_IIPKxzPjrWg,v_IIPKxzPjrWg_8,7 299,v_QIUxLD27NuI,2,how many people are playing rubiks in the video,v_QIUxLD27NuI,v_QIUxLD27NuI_8,7 300,v_3uaQ0cULMgc,1,how many people are there in the video,v_3uaQ0cULMgc,v_3uaQ0cULMgc_8,7 301,v_QImpWj3AJcY,4,how many people are playing games in the video,v_QImpWj3AJcY,v_QImpWj3AJcY_10,7 302,v_FkbpD1zWdPw,2,how many people are playing in the video,v_FkbpD1zWdPw,v_FkbpD1zWdPw_9,7 303,v_7H1KylJRii8,1,how many people are playing in the video,v_7H1KylJRii8,v_7H1KylJRii8_7,7 304,v_K1LiXUpoSmI,2,how many people are playing in the video,v_K1LiXUpoSmI,v_K1LiXUpoSmI_7,7 305,v_1PNjVTM0Zto,1,how many people are playing tai chi in the video,v_1PNjVTM0Zto,v_1PNjVTM0Zto_7,7 306,v_m731tx8N5-Y,1,how many people are playing the piano in the video,v_m731tx8N5-Y,v_m731tx8N5-Y_7,7 307,v_ZxCdhz4ep0s,1,how many people are playing the piano in the video,v_ZxCdhz4ep0s,v_ZxCdhz4ep0s_10,7 308,v_JY9oOSfjj_E,2,how many people are skiing,v_JY9oOSfjj_E,v_JY9oOSfjj_E_7,7 309,v_6xBh3vzhgo4,1,how many people are surfing in the video,v_6xBh3vzhgo4,v_6xBh3vzhgo4_8,7 310,v_LvTwJTvluHE,1,how many people are surfing in the video,v_LvTwJTvluHE,v_LvTwJTvluHE_7,7 311,v_lUmjnFf7IPQ,3,how many people are there at the beginning of the video,v_lUmjnFf7IPQ,v_lUmjnFf7IPQ_7,7 312,v_sEcXR5b8HyY,2,how many people are there in the match,v_sEcXR5b8HyY,v_sEcXR5b8HyY_7,7 313,v_p54LLMnyg54,2,how many people are there in total,v_p54LLMnyg54,v_p54LLMnyg54_6,7 314,v_OysON6LbF6Y,2,how many people are there in total,v_OysON6LbF6Y,v_OysON6LbF6Y_6,7 315,v_46NS8dT15Hw,2,how many people are wearing blue clothes,v_46NS8dT15Hw,v_46NS8dT15Hw_6,7 316,v_an1R4BP97JY,1,how many people are wearing red clothes,v_an1R4BP97JY,v_an1R4BP97JY_8,7 317,v_er5jUsRr4y0,3,how many people are there in the bathroom,v_er5jUsRr4y0,v_er5jUsRr4y0_10,7 318,v_atGMJc-DZ7w,4,how many people are there in the beginning of the video,v_atGMJc-DZ7w,v_atGMJc-DZ7w_6,7 319,v_JsPIzRsUtlE,2,how many people are there in the field,v_JsPIzRsUtlE,v_JsPIzRsUtlE_7,7 320,v_-Fk62y-1WHo,1,how many people are there in the room,v_-Fk62y-1WHo,v_-Fk62y-1WHo_8,7 321,v_DIVaPURJHPo,1,how many people are there in the room,v_DIVaPURJHPo,v_DIVaPURJHPo_9,7 322,v_Gfu8e6R6jUU,11,how many people are there in the video,v_Gfu8e6R6jUU,v_Gfu8e6R6jUU_7,7 323,v_-eJT11AuOa0,3,how many people are there in the video,v_-eJT11AuOa0,v_-eJT11AuOa0_6,7 324,v_-YwrMtiqHKg,1,how many people are there in the video,v_-YwrMtiqHKg,v_-YwrMtiqHKg_7,7 325,v_qGtUXGG78tM,1,how many people are there in the video,v_qGtUXGG78tM,v_qGtUXGG78tM_10,7 326,v_uw9x69DT8_g,1,how many people are there in the video,v_uw9x69DT8_g,v_uw9x69DT8_g_8,7 327,v_j81ndpMC9gI,2,how many people are there in the video,v_j81ndpMC9gI,v_j81ndpMC9gI_7,7 328,v_0w4OkBenR_k,2,how many people are there in the video,v_0w4OkBenR_k,v_0w4OkBenR_k_8,7 329,v_Pv4FwH2TC6Y,1,how many people are there in the video,v_Pv4FwH2TC6Y,v_Pv4FwH2TC6Y_6,7 330,v_SJ7jk5XAjng,2,how many people are there in the video,v_SJ7jk5XAjng,v_SJ7jk5XAjng_7,7 331,v_rSGboODhu04,1,how many people are there in the video,v_rSGboODhu04,v_rSGboODhu04_7,7 332,v_JbW8efAOOt0,2,how many people are there in the video,v_JbW8efAOOt0,v_JbW8efAOOt0_7,7 333,v_lU6DMCif3eE,1,how many people are there in the video,v_lU6DMCif3eE,v_lU6DMCif3eE_6,7 334,v_mMm1LfVb8Pg,2,how many people are there in the video,v_mMm1LfVb8Pg,v_mMm1LfVb8Pg_7,7 335,v_NjD6iWI3NvM,3,how many people are there in the video,v_NjD6iWI3NvM,v_NjD6iWI3NvM_7,7 336,v_I9ficvPdpZg,2,how many people are there in the video,v_I9ficvPdpZg,v_I9ficvPdpZg_6,7 337,v_03c6QhTMDSs,1,how many people are there in the video,v_03c6QhTMDSs,v_03c6QhTMDSs_6,7 338,v_FADShG5lyB8,1,how many people are there in the video,v_FADShG5lyB8,v_FADShG5lyB8_7,7 339,v__V62aT_K8Zw,3,how many people are there in the video,v__V62aT_K8Zw,v__V62aT_K8Zw_8,7 340,v_5dN-MpXG9OE,1,how many people are there in the video,v_5dN-MpXG9OE,v_5dN-MpXG9OE_7,7 341,v_cYvFlrAnlzA,4,how many people are there in the video,v_cYvFlrAnlzA,v_cYvFlrAnlzA_7,7 342,v_lPw_BRbPw5s,3,how many people are there in the video,v_lPw_BRbPw5s,v_lPw_BRbPw5s_6,7 343,v_1dDAcUliXrQ,6,how many people are there in the video,v_1dDAcUliXrQ,v_1dDAcUliXrQ_7,7 344,v_RlRrktN5iH4,1,how many people are there in the video,v_RlRrktN5iH4,v_RlRrktN5iH4_7,7 345,v_H_IfIsKQ3Zw,6,how many people are there in the video,v_H_IfIsKQ3Zw,v_H_IfIsKQ3Zw_6,7 346,v_PJ7HOHdOdy4,3,how many people are there in the video,v_PJ7HOHdOdy4,v_PJ7HOHdOdy4_7,7 347,v_mek9Zodu8LM,4,how many people are there in the video,v_mek9Zodu8LM,v_mek9Zodu8LM_7,7 348,v_v6DdLg_Xnkg,1,how many people are there in the video,v_v6DdLg_Xnkg,v_v6DdLg_Xnkg_8,7 349,v_gsQ-OEvrxjo,2,how many people are there in the video,v_gsQ-OEvrxjo,v_gsQ-OEvrxjo_7,7 350,v_Npj77L31bhw,2,how many people are there in the video,v_Npj77L31bhw,v_Npj77L31bhw_9,7 351,v_xizEiQZfJa4,1,how many people are there in the video,v_xizEiQZfJa4,v_xizEiQZfJa4_6,7 352,v_SB0dU5oDvaE,1,how many people are there in the video,v_SB0dU5oDvaE,v_SB0dU5oDvaE_7,7 353,v_AguxVxEWEs0,2,how many people are there in the video,v_AguxVxEWEs0,v_AguxVxEWEs0_7,7 354,v_2ShsRSJ9cqE,1,how many people are there in the video,v_2ShsRSJ9cqE,v_2ShsRSJ9cqE_8,7 355,v_zPQodcasmSA,1,how many people are there in the video,v_zPQodcasmSA,v_zPQodcasmSA_7,7 356,v_K49OCArHjXI,2,how many people are there in the video,v_K49OCArHjXI,v_K49OCArHjXI_7,7 357,v_blbaWHbtqTI,2,how many people are there in the video,v_blbaWHbtqTI,v_blbaWHbtqTI_9,7 358,v_Y_nyVFn70Lk,2,how many people are there in the video,v_Y_nyVFn70Lk,v_Y_nyVFn70Lk_7,7 359,v_A0b_pqaKCX8,2,how many people are there in the video,v_A0b_pqaKCX8,v_A0b_pqaKCX8_6,7 360,v_g1na24Bd5Rs,3,how many people are there in the video,v_g1na24Bd5Rs,v_g1na24Bd5Rs_6,7 361,v_w4pO-1-FG5w,4,how many people are there in the video,v_w4pO-1-FG5w,v_w4pO-1-FG5w_9,7 362,v_QXN6odBnVmI,2,how many people are there in the video,v_QXN6odBnVmI,v_QXN6odBnVmI_6,7 363,v_s84PG-JfEwc,1,how many people are there in the video,v_s84PG-JfEwc,v_s84PG-JfEwc_7,7 364,v_oMtB-y49Yo8,3,how many people are there in the video,v_oMtB-y49Yo8,v_oMtB-y49Yo8_8,7 365,v_mUmSJps9WJI,3,how many people are there in the video,v_mUmSJps9WJI,v_mUmSJps9WJI_8,7 366,v_RtF6TGqwa7Y,1,how many people are there in the video,v_RtF6TGqwa7Y,v_RtF6TGqwa7Y_7,7 367,v_SNja9iUdAiI,5,how many people are there in the video,v_SNja9iUdAiI,v_SNja9iUdAiI_7,7 368,v_T3mcQnlsmq4,1,how many people are there in the video,v_T3mcQnlsmq4,v_T3mcQnlsmq4_7,7 369,v_WPYQ27GjFKc,6,how many people are there in the video,v_WPYQ27GjFKc,v_WPYQ27GjFKc_6,7 370,v_qaml4eEk9hY,1,how many people are there in the video,v_qaml4eEk9hY,v_qaml4eEk9hY_6,7 371,v_T3A88zsRuVs,3,how many people are there in the video,v_T3A88zsRuVs,v_T3A88zsRuVs_7,7 372,v_sH_716hH_rY,3,how many people are there in the video,v_sH_716hH_rY,v_sH_716hH_rY_7,7 373,v_7dXqXFoju2M,1,how many people are there in the video,v_7dXqXFoju2M,v_7dXqXFoju2M_6,7 374,v_H9PaZiWLgXU,1,how many people are there in the video,v_H9PaZiWLgXU,v_H9PaZiWLgXU_7,7 375,v_gWTndmDHZQc,2,how many people are there in the video,v_gWTndmDHZQc,v_gWTndmDHZQc_10,7 376,v_nDM4E9CD_y0,1,how many people are there in the video,v_nDM4E9CD_y0,v_nDM4E9CD_y0_7,7 377,v_F7K2oT7ADkk,1,how many people are there in the video,v_F7K2oT7ADkk,v_F7K2oT7ADkk_7,7 378,v_diY-XBT5cD4,1,how many people are there in the video,v_diY-XBT5cD4,v_diY-XBT5cD4_10,7 379,v_sPK-sbHIb3w,4,how many people are there in the video,v_sPK-sbHIb3w,v_sPK-sbHIb3w_7,7 380,v_0e5zwJywyqk,1,how many people are there in the video,v_0e5zwJywyqk,v_0e5zwJywyqk_6,7 381,v_aAz3YL2RMr4,5,how many people are there in the video,v_aAz3YL2RMr4,v_aAz3YL2RMr4_9,7 382,v_fh9d3gpT-8I,1,how many people are there in the video,v_fh9d3gpT-8I,v_fh9d3gpT-8I_10,7 383,v_fMVuGUBs2cs,1,how many people are there in the video,v_fMVuGUBs2cs,v_fMVuGUBs2cs_10,7 384,v_uLphvdhunTY,1,how many people are there in the video,v_uLphvdhunTY,v_uLphvdhunTY_6,7 385,v_gNUCdXGxp0w,1,how many people are there in the video,v_gNUCdXGxp0w,v_gNUCdXGxp0w_8,7 386,v_U2cCOj3LiAA,1,how many people are there in the video,v_U2cCOj3LiAA,v_U2cCOj3LiAA_6,7 387,v_0q9yZPTBbus,2,how many people are there in the video,v_0q9yZPTBbus,v_0q9yZPTBbus_7,7 388,v_FEOdYNR4gls,1,how many people are there in the video,v_FEOdYNR4gls,v_FEOdYNR4gls_9,7 389,v_Feq-2NIDl94,1,how many people are there in the video,v_Feq-2NIDl94,v_Feq-2NIDl94_7,7 390,v_4LoAbHdHWqM,2,how many people are there in the video,v_4LoAbHdHWqM,v_4LoAbHdHWqM_7,7 391,v_0k6GFx2ZCg8,1,how many people are there in the video,v_0k6GFx2ZCg8,v_0k6GFx2ZCg8_7,7 392,v_F-Z17rHI_ms,3,how many people are there in the video,v_F-Z17rHI_ms,v_F-Z17rHI_ms_6,7 393,v_jt-Vnap5KP4,1,how many people are there in the video,v_jt-Vnap5KP4,v_jt-Vnap5KP4_9,7 394,v_SPjv6P5fxug,3,how many people are there in the video,v_SPjv6P5fxug,v_SPjv6P5fxug_7,7 395,v_YHqFNnhaFAY,1,how many people are there in the video,v_YHqFNnhaFAY,v_YHqFNnhaFAY_8,7 396,v_1lwG-y_QCkc,1,how many people are there in the video,v_1lwG-y_QCkc,v_1lwG-y_QCkc_9,7 397,v_nbOsU2Vmp1U,1,how many people are there in the video,v_nbOsU2Vmp1U,v_nbOsU2Vmp1U_6,7 398,v_RXDVJlb97OI,1,how many people are there in the video,v_RXDVJlb97OI,v_RXDVJlb97OI_7,7 399,v_rnI9vGr5V1k,2,how many people are there in the video,v_rnI9vGr5V1k,v_rnI9vGr5V1k_7,7 400,v_qZtdMXkHRXw,1,how many people are there in the video,v_qZtdMXkHRXw,v_qZtdMXkHRXw_7,7 401,v_Gs79qz286QE,2,how many people are there in the video,v_Gs79qz286QE,v_Gs79qz286QE_8,7 402,v_V6Sy8zpJSuc,1,how many people are there in the video,v_V6Sy8zpJSuc,v_V6Sy8zpJSuc_8,7 403,v_nYl_tYmijlM,1,how many people are there in the video,v_nYl_tYmijlM,v_nYl_tYmijlM_8,7 404,v_wcxEkMoOmBk,4,how many people are there in the video,v_wcxEkMoOmBk,v_wcxEkMoOmBk_6,7 405,v_CKSlgK_2FP4,1,how many people are there in the video,v_CKSlgK_2FP4,v_CKSlgK_2FP4_6,7 406,v_X2toGKgWMpE,3,how many people are there in the video,v_X2toGKgWMpE,v_X2toGKgWMpE_10,7 407,v_MDsJa6Yitwc,1,how many people are there in the video,v_MDsJa6Yitwc,v_MDsJa6Yitwc_8,7 408,v_zxpQHLwZCug,1,how many people are there in the video,v_zxpQHLwZCug,v_zxpQHLwZCug_6,7 409,v_GgnM5RGNtDE,2,how many people are there in the video,v_GgnM5RGNtDE,v_GgnM5RGNtDE_8,7 410,v_OYEKKzQjaJI,1,how many people are there in the video,v_OYEKKzQjaJI,v_OYEKKzQjaJI_9,7 411,v_Y05GAiavfOg,1,how many people are there in the video,v_Y05GAiavfOg,v_Y05GAiavfOg_8,7 412,v_SGAUpoTMSnA,3,how many people are there in the video,v_SGAUpoTMSnA,v_SGAUpoTMSnA_7,7 413,v_CFbkVO5b2g0,1,how many people are there in the video,v_CFbkVO5b2g0,v_CFbkVO5b2g0_6,7 414,v_Dd5yTxwKzXw,2,how many people are there in the video,v_Dd5yTxwKzXw,v_Dd5yTxwKzXw_6,7 415,v_dGT_KGb0gyw,4,how many people are there in the video,v_dGT_KGb0gyw,v_dGT_KGb0gyw_6,7 416,v_udSHsodv3gY,1,how many people are there in the video,v_udSHsodv3gY,v_udSHsodv3gY_7,7 417,v_ryFSf08mrkA,2,how many people are there in the video,v_ryFSf08mrkA,v_ryFSf08mrkA_7,7 418,v_zEttEkAdHts,1,how many people are there in the video,v_zEttEkAdHts,v_zEttEkAdHts_6,7 419,v_EXPYu9bfNcE,2,how many people are there in the video,v_EXPYu9bfNcE,v_EXPYu9bfNcE_6,7 420,v_fhOmyyI0eQE,1,how many people are there in the video,v_fhOmyyI0eQE,v_fhOmyyI0eQE_8,7 421,v_VSsZZZHn1L0,2,how many people are there in the video,v_VSsZZZHn1L0,v_VSsZZZHn1L0_6,7 422,v_a2IvS0xbNGQ,1,how many people are there in the video,v_a2IvS0xbNGQ,v_a2IvS0xbNGQ_7,7 423,v_uJ4OZfCjViM,3,how many people are there in the video,v_uJ4OZfCjViM,v_uJ4OZfCjViM_6,7 424,v_U2eN4DbVLfE,2,how many people are there in the video,v_U2eN4DbVLfE,v_U2eN4DbVLfE_6,7 425,v_4_jDgRsOGvY,2,how many people are there in the video,v_4_jDgRsOGvY,v_4_jDgRsOGvY_7,7 426,v_I16FTpQQiic,2,how many people are there in the video,v_I16FTpQQiic,v_I16FTpQQiic_6,7 427,v_JcAAwYpJhm8,2,how many people are there in the video,v_JcAAwYpJhm8,v_JcAAwYpJhm8_7,7 428,v_JB-ynj70saA,1,how many people are there in the video,v_JB-ynj70saA,v_JB-ynj70saA_7,7 429,v_bRgvAHL3dJk,1,how many people are there in the video,v_bRgvAHL3dJk,v_bRgvAHL3dJk_8,7 430,v_oT6WUU8-dgs,1,how many people are there in the video,v_oT6WUU8-dgs,v_oT6WUU8-dgs_10,7 431,v_IxaBEVd2PZM,1,how many people are there in the video,v_IxaBEVd2PZM,v_IxaBEVd2PZM_8,7 432,v_jhy6npIdn5o,5,how many people are there in the video,v_jhy6npIdn5o,v_jhy6npIdn5o_7,7 433,v_LYTWYSqsTCE,2,how many people are there in the video,v_LYTWYSqsTCE,v_LYTWYSqsTCE_7,7 434,v_8lMncYsbrWw,1,how many people are there in the video,v_8lMncYsbrWw,v_8lMncYsbrWw_6,7 435,v_rApbE1VkEjE,1,how many people are there in the video,v_rApbE1VkEjE,v_rApbE1VkEjE_6,7 436,v_mV07bEBkIcM,2,how many people are there in the video,v_mV07bEBkIcM,v_mV07bEBkIcM_9,7 437,v_nbHBjdE8oNo,3,how many people are there in the video,v_nbHBjdE8oNo,v_nbHBjdE8oNo_9,7 438,v_4MwnHtlaEUY,1,how many people are there in the video,v_4MwnHtlaEUY,v_4MwnHtlaEUY_6,7 439,v_S6Sg1l78IW0,2,how many people are there in the video,v_S6Sg1l78IW0,v_S6Sg1l78IW0_7,7 440,v_cCDffwsJvsY,1,how many people are there in the video,v_cCDffwsJvsY,v_cCDffwsJvsY_6,7 441,v_7CM2OYr-Csw,2,how many people are there in the video,v_7CM2OYr-Csw,v_7CM2OYr-Csw_7,7 442,v_TtewPltwuXw,2,how many people are there in the video,v_TtewPltwuXw,v_TtewPltwuXw_6,7 443,v_Pjnuoa4o55c,4,how many people are there in the video,v_Pjnuoa4o55c,v_Pjnuoa4o55c_6,7 444,v_AB480dHyDeM,1,how many people are there in the video,v_AB480dHyDeM,v_AB480dHyDeM_8,7 445,v_9snScUyE8_4,2,how many people are there in the video,v_9snScUyE8_4,v_9snScUyE8_4_9,7 446,v_8IrulONeC28,2,how many people are there in the video,v_8IrulONeC28,v_8IrulONeC28_6,7 447,v_d4sX1jnL4BY,2,how many people are there in the video,v_d4sX1jnL4BY,v_d4sX1jnL4BY_6,7 448,v_DOI6tsATsE4,2,how many people are there in the video,v_DOI6tsATsE4,v_DOI6tsATsE4_6,7 449,v_7UwRRkgQSj4,1,how many people are there in the video,v_7UwRRkgQSj4,v_7UwRRkgQSj4_6,7 450,v_qObVIn_GI10,1,how many people are there in the video,v_qObVIn_GI10,v_qObVIn_GI10_7,7 451,v_WGUzmra3h_w,4,how many people are there in the video,v_WGUzmra3h_w,v_WGUzmra3h_w_6,7 452,v_ojTFTIwsa_c,1,how many people are there in the video,v_ojTFTIwsa_c,v_ojTFTIwsa_c_8,7 453,v_gkwLhml3mnA,1,how many people are there in the video,v_gkwLhml3mnA,v_gkwLhml3mnA_8,7 454,v_jbCQY7V7O1s,3,how many people are there in the video,v_jbCQY7V7O1s,v_jbCQY7V7O1s_7,7 455,v_sqv3M6MPKjQ,2,how many people are there in the video,v_sqv3M6MPKjQ,v_sqv3M6MPKjQ_7,7 456,v_ZLJ2BmBkLJg,1,how many people are there in the video,v_ZLJ2BmBkLJg,v_ZLJ2BmBkLJg_10,7 457,v_Z-sWZUYL0ZU,1,how many people are there in the video,v_Z-sWZUYL0ZU,v_Z-sWZUYL0ZU_6,7 458,v_mLFjww64sX8,2,how many people are there in the video,v_mLFjww64sX8,v_mLFjww64sX8_7,7 459,v_Z2gpcqXWNek,1,how many people are there in the video,v_Z2gpcqXWNek,v_Z2gpcqXWNek_8,7 460,v_yGTIEmZ7S2w,1,how many people are there in the video,v_yGTIEmZ7S2w,v_yGTIEmZ7S2w_8,7 461,v_kD_EJjQCLoY,1,how many people are there in the video,v_kD_EJjQCLoY,v_kD_EJjQCLoY_7,7 462,v_T0nCDJuikuA,1,how many people are there in the video,v_T0nCDJuikuA,v_T0nCDJuikuA_7,7 463,v_HPKHDze6XfA,1,how many people are there in the video,v_HPKHDze6XfA,v_HPKHDze6XfA_7,7 464,v_Son8UiVlzu0,2,how many people are there in the video,v_Son8UiVlzu0,v_Son8UiVlzu0_7,7 465,v_62M1FRXsUiM,1,how many people are there in the video,v_62M1FRXsUiM,v_62M1FRXsUiM_9,7 466,v_ZnKB0U96ZI4,2,how many people are there in the video,v_ZnKB0U96ZI4,v_ZnKB0U96ZI4_6,7 467,v_NZskwwovSZI,2,how many people are there in the video,v_NZskwwovSZI,v_NZskwwovSZI_7,7 468,v_uM7QSskmloo,1,how many people are there in the video,v_uM7QSskmloo,v_uM7QSskmloo_7,7 469,v_QJ5xv6oj1sk,1,how many people are there in the video,v_QJ5xv6oj1sk,v_QJ5xv6oj1sk_8,7 470,v_qGLRri_c6n8,1,how many people are there in the video,v_qGLRri_c6n8,v_qGLRri_c6n8_7,7 471,v__CIoHeD7KQc,1,how many people are there in the video,v__CIoHeD7KQc,v__CIoHeD7KQc_8,7 472,v_Jix3poZOeZA,1,how many people are there in the video,v_Jix3poZOeZA,v_Jix3poZOeZA_7,7 473,v_tgPD2SZo_DY,1,how many people are there in the video,v_tgPD2SZo_DY,v_tgPD2SZo_DY_6,7 474,v_4uKoAk5NCkI,3,how many people are there in the video,v_4uKoAk5NCkI,v_4uKoAk5NCkI_7,7 475,v_cVFVREeD6hM,3,how many people are there in the video,v_cVFVREeD6hM,v_cVFVREeD6hM_6,7 476,v_pYaZLHpl_Ww,1,how many people are there in the video,v_pYaZLHpl_Ww,v_pYaZLHpl_Ww_9,7 477,v_n9EdHGz7ArI,1,how many people are there in the video,v_n9EdHGz7ArI,v_n9EdHGz7ArI_6,7 478,v_ufrTSC3Dewg,2,how many people are there in the video,v_ufrTSC3Dewg,v_ufrTSC3Dewg_7,7 479,v__zqj6daJo9U,1,how many people are there in the video,v__zqj6daJo9U,v__zqj6daJo9U_10,7 480,v_qgUHRwC3194,3,how many people are there in the video,v_qgUHRwC3194,v_qgUHRwC3194_10,7 481,v_TnP6coXzbLY,1,how many people are there in the video,v_TnP6coXzbLY,v_TnP6coXzbLY_6,7 482,v_HX6BeHLQh5s,3,how many people are there in the video,v_HX6BeHLQh5s,v_HX6BeHLQh5s_6,7 483,v_Aen-RfnlK3A,1,how many people are there in the video,v_Aen-RfnlK3A,v_Aen-RfnlK3A_9,7 484,v_z8x3wUZYOaM,7,how many people are there in the video,v_z8x3wUZYOaM,v_z8x3wUZYOaM_6,7 485,v_MonWdYi3a0I,2,how many people are there in the video,v_MonWdYi3a0I,v_MonWdYi3a0I_10,7 486,v_y0ca-LbQErY,1,how many people are there in the video,v_y0ca-LbQErY,v_y0ca-LbQErY_8,7 487,v_0jdSl5-lMpY,1,how many people are there in the video,v_0jdSl5-lMpY,v_0jdSl5-lMpY_7,7 488,v_i5qTK0mInTc,4,how many people are there in the video,v_i5qTK0mInTc,v_i5qTK0mInTc_6,7 489,v_WNgI2qBvPrY,2,how many people are there in the video,v_WNgI2qBvPrY,v_WNgI2qBvPrY_6,7 490,v_X_K7Aa3Aa-E,4,how many people are there in the video,v_X_K7Aa3Aa-E,v_X_K7Aa3Aa-E_9,7 491,v_Uae2MWoldTU,1,how many people are there in the video,v_Uae2MWoldTU,v_Uae2MWoldTU_6,7 492,v_NvRH4SoF09c,1,how many people are there in the video,v_NvRH4SoF09c,v_NvRH4SoF09c_9,7 493,v_SidTquTAtyk,1,how many people are there in the video,v_SidTquTAtyk,v_SidTquTAtyk_7,7 494,v_nhQTxZlzG1Q,4,how many people are there in the video,v_nhQTxZlzG1Q,v_nhQTxZlzG1Q_6,7 495,v_sk_pnoqXxhs,3,how many people are there in the video,v_sk_pnoqXxhs,v_sk_pnoqXxhs_7,7 496,v_b0qGo-HT5iQ,2,how many people are there in the video,v_b0qGo-HT5iQ,v_b0qGo-HT5iQ_6,7 497,v_04qggWACGWk,1,how many people are there in the video,v_04qggWACGWk,v_04qggWACGWk_9,7 498,v_pKOy4HJwCqo,2,how many people are there in the video,v_pKOy4HJwCqo,v_pKOy4HJwCqo_9,7 499,v_zYjLA99koBk,3,how many people are there in the video,v_zYjLA99koBk,v_zYjLA99koBk_9,7 500,v_5c5PFa8GR-A,4,how many people are there in the video,v_5c5PFa8GR-A,v_5c5PFa8GR-A_7,7 501,v_4z0meF-_b1I,1,how many people are there in the video,v_4z0meF-_b1I,v_4z0meF-_b1I_7,7 502,v_w10Nr_wOh8g,1,how many people are there in the video,v_w10Nr_wOh8g,v_w10Nr_wOh8g_6,7 503,v_rCLGy2NA0aE,1,how many people are there in the video,v_rCLGy2NA0aE,v_rCLGy2NA0aE_7,7 504,v_HtG-i1CG2Qs,2,how many people are there in the video,v_HtG-i1CG2Qs,v_HtG-i1CG2Qs_7,7 505,v_JvPVYSb_5o8,2,how many people are there in the video,v_JvPVYSb_5o8,v_JvPVYSb_5o8_7,7 506,v__kmjpSZb3OI,1,how many people are there in the video,v__kmjpSZb3OI,v__kmjpSZb3OI_10,7 507,v_09ocXmGF-T4,2,how many people are there in the video,v_09ocXmGF-T4,v_09ocXmGF-T4_10,7 508,v_YMOYyt3kSOs,1,how many people are there in the video,v_YMOYyt3kSOs,v_YMOYyt3kSOs_7,7 509,v_9SIPJd4Hls4,1,how many people are there in the video,v_9SIPJd4Hls4,v_9SIPJd4Hls4_7,7 510,v_GOhmWfR8QBM,3,how many people are there in the video,v_GOhmWfR8QBM,v_GOhmWfR8QBM_7,7 511,v__a527xEzhkw,1,how many people are there in the video,v__a527xEzhkw,v__a527xEzhkw_10,7 512,v_JGxf-jke0e8,5,how many people are there in the video,v_JGxf-jke0e8,v_JGxf-jke0e8_7,7 513,v_Woelo4XJkHE,2,how many people are there in the video,v_Woelo4XJkHE,v_Woelo4XJkHE_6,7 514,v_4LF0hL-mgks,4,how many people are there in the video,v_4LF0hL-mgks,v_4LF0hL-mgks_7,7 515,v_3JBUWRKezUI,3,how many people are there in the video,v_3JBUWRKezUI,v_3JBUWRKezUI_8,7 516,v_GxDNGtoVjS0,1,how many people are there in the video,v_GxDNGtoVjS0,v_GxDNGtoVjS0_7,7 517,v_hRsn4nesCQo,1,how many people are there in the video,v_hRsn4nesCQo,v_hRsn4nesCQo_6,7 518,v_W2Mh01F3K5c,2,how many people are there in the video,v_W2Mh01F3K5c,v_W2Mh01F3K5c_6,7 519,v_Aj5ncX5G_2w,1,how many people are there in the video,v_Aj5ncX5G_2w,v_Aj5ncX5G_2w_8,7 520,v_Db2Dnt2OOo0,4,how many people are there in the video,v_Db2Dnt2OOo0,v_Db2Dnt2OOo0_7,7 521,v_hxErUs42bBI,3,how many people are there in the video,v_hxErUs42bBI,v_hxErUs42bBI_6,7 522,v_RgiVa9GMYxE,2,how many people are there in the video,v_RgiVa9GMYxE,v_RgiVa9GMYxE_7,7 523,v_2UhbDOd43zU,2,how many people are there in the video,v_2UhbDOd43zU,v_2UhbDOd43zU_9,7 524,v_ZJnXQw84xvo,2,how many people are there in the video,v_ZJnXQw84xvo,v_ZJnXQw84xvo_8,7 525,v_zTHkqpNFGno,1,how many people are there in the video,v_zTHkqpNFGno,v_zTHkqpNFGno_6,7 526,v_a4gI4LC1rJk,1,how many people are there in the video,v_a4gI4LC1rJk,v_a4gI4LC1rJk_10,7 527,v_BjjN_aq_wq4,5,how many people are there in the video,v_BjjN_aq_wq4,v_BjjN_aq_wq4_9,7 528,v_4j_LRkB4T6c,6,how many people are there in the video,v_4j_LRkB4T6c,v_4j_LRkB4T6c_6,7 529,v_yCpdDJAW-jU,1,how many people are there in the video,v_yCpdDJAW-jU,v_yCpdDJAW-jU_8,7 530,v_dHKeNK1uWUg,3,how many people are there in the video,v_dHKeNK1uWUg,v_dHKeNK1uWUg_6,7 531,v_Yg03CCu9GMo,1,how many people are there in the video,v_Yg03CCu9GMo,v_Yg03CCu9GMo_8,7 532,v_YRGiRmcHdUY,1,how many people are there in the video,v_YRGiRmcHdUY,v_YRGiRmcHdUY_9,7 533,v_yUvSujxnFE0,1,how many people are there in the video,v_yUvSujxnFE0,v_yUvSujxnFE0_8,7 534,v__QBTD1bLSI0,1,how many people are there in the video,v__QBTD1bLSI0,v__QBTD1bLSI0_8,7 535,v_rGOOlcdpfLg,2,how many people are there in the video,v_rGOOlcdpfLg,v_rGOOlcdpfLg_7,7 536,v_C5SXR9nMY3I,1,how many people are there in the video,v_C5SXR9nMY3I,v_C5SXR9nMY3I_6,7 537,v_teffBaLEZQg,2,how many people are there in the video,v_teffBaLEZQg,v_teffBaLEZQg_6,7 538,v_cnMvMvVBXiI,1,how many people are there in the video,v_cnMvMvVBXiI,v_cnMvMvVBXiI_8,7 539,v_Of2Umm79Kxg,1,how many people are there in the video,v_Of2Umm79Kxg,v_Of2Umm79Kxg_8,7 540,v_H0dG_1Vgw4Q,2,how many people are there in the video,v_H0dG_1Vgw4Q,v_H0dG_1Vgw4Q_6,7 541,v_-CqVpCRxwTY,1,how many people are there in the video,v_-CqVpCRxwTY,v_-CqVpCRxwTY_7,7 542,v_R-hsYQNtnn0,2,how many people are there in the video,v_R-hsYQNtnn0,v_R-hsYQNtnn0_7,7 543,v_HTYzbAFUghU,1,how many people are there in the video,v_HTYzbAFUghU,v_HTYzbAFUghU_6,7 544,v_z6pmp8TrAVo,2,how many people are there in the video,v_z6pmp8TrAVo,v_z6pmp8TrAVo_6,7 545,v_i6wR9_tkg6A,1,how many people are there in the video,v_i6wR9_tkg6A,v_i6wR9_tkg6A_6,7 546,v_p1QGn0IzfW0,4,how many people are there in the video,v_p1QGn0IzfW0,v_p1QGn0IzfW0_10,7 547,v_8A4cZXyDrkU,2,how many people are there in the video,v_8A4cZXyDrkU,v_8A4cZXyDrkU_6,7 548,v_LPRLV0eVgfY,2,how many people are there in the video,v_LPRLV0eVgfY,v_LPRLV0eVgfY_8,7 549,v_YaC68rE4lwA,1,how many people are there in the video,v_YaC68rE4lwA,v_YaC68rE4lwA_9,7 550,v_jBlG0L_M96g,1,how many people are there in the video,v_jBlG0L_M96g,v_jBlG0L_M96g_7,7 551,v_G0VWk5WqDp0,1,how many people are there in the video,v_G0VWk5WqDp0,v_G0VWk5WqDp0_6,7 552,v_zO5JMTzLDHw,1,how many people are there in the video,v_zO5JMTzLDHw,v_zO5JMTzLDHw_6,7 553,v_qiTQ02NDSlQ,1,how many people are there in the video,v_qiTQ02NDSlQ,v_qiTQ02NDSlQ_6,7 554,v_7LbBmVX33I4,1,how many people are there in the video,v_7LbBmVX33I4,v_7LbBmVX33I4_6,7 555,v_2bQx5igckJc,2,how many people are there in the video,v_2bQx5igckJc,v_2bQx5igckJc_8,7 556,v_v0azz4XzW_s,1,how many people are there in the video,v_v0azz4XzW_s,v_v0azz4XzW_s_7,7 557,v_xND_kp-aYXw,1,how many people are there in the video,v_xND_kp-aYXw,v_xND_kp-aYXw_9,7 558,v_GSrBZXLSwWI,1,how many people are there in the video,v_GSrBZXLSwWI,v_GSrBZXLSwWI_10,7 559,v_MAYrBia9Xnw,1,how many people are there in the video,v_MAYrBia9Xnw,v_MAYrBia9Xnw_7,7 560,v_Df7AnfIEhYw,2,how many people are there in the video,v_Df7AnfIEhYw,v_Df7AnfIEhYw_8,7 561,v_Nb6AQxxrihA,1,how many people are there in the video,v_Nb6AQxxrihA,v_Nb6AQxxrihA_7,7 562,v_9eniCub7u60,3,how many people are there in the video,v_9eniCub7u60,v_9eniCub7u60_8,7 563,v_X6CBZwwRdQQ,3,how many people are there in the video,v_X6CBZwwRdQQ,v_X6CBZwwRdQQ_9,7 564,v_jDlvGWOdcqU,1,how many people are there in the video,v_jDlvGWOdcqU,v_jDlvGWOdcqU_7,7 565,v_HDt5z5Y0opo,3,how many people are on the stage in the video,v_HDt5z5Y0opo,v_HDt5z5Y0opo_7,7 566,v_vQ82ItCG1x4,1,how many people are there on board,v_vQ82ItCG1x4,v_vQ82ItCG1x4_10,7 567,v_ETbbYC0OhL0,3,how many people are on the battle ring,v_ETbbYC0OhL0,v_ETbbYC0OhL0_6,7 568,v_MDWaKr7Gu5Q,4,how many people are wearing green clothes in the video,v_MDWaKr7Gu5Q,v_MDWaKr7Gu5Q_7,7 569,v_qKp2QCheLwU,1,how many people are wearing red hats,v_qKp2QCheLwU,v_qKp2QCheLwU_8,7 570,v_cTxVTEzQDr8,2,how many people are wearing red hats,v_cTxVTEzQDr8,v_cTxVTEzQDr8_8,7 571,v_qWgF9hxNbP8,3,how many people are there in the ring,v_qWgF9hxNbP8,v_qWgF9hxNbP8_8,7 572,v_qSP3_C7QWpU,3,how many people are there in the ring,v_qSP3_C7QWpU,v_qSP3_C7QWpU_7,7 573,v__SJOVswvGRc,2,how many people in red are there in the video,v__SJOVswvGRc,v__SJOVswvGRc_10,7 574,v_Y7aacWy3WDo,6,how many people are smoking in the video,v_Y7aacWy3WDo,v_Y7aacWy3WDo_9,7 575,v_TiQcZKml5Bs,1,how many people walk the dogs in video,v_TiQcZKml5Bs,v_TiQcZKml5Bs_6,7 576,v_6JZVpl2S2Mg,1,how many pictures are there in the video,v_6JZVpl2S2Mg,v_6JZVpl2S2Mg_7,7 577,v_JKJ_EvP7JwQ,2,how many pumpkins are there,v_JKJ_EvP7JwQ,v_JKJ_EvP7JwQ_7,7 578,v_VJh9W3Gcpmo,1,how many people in red are there in the video,v_VJh9W3Gcpmo,v_VJh9W3Gcpmo_8,7 579,v_i_LT0ef1n-Y,1,how many men in red are there in the video,v_i_LT0ef1n-Y,v_i_LT0ef1n-Y_8,7 580,v_iqyc2JM0uIU,1,how many men in red are there in the video,v_iqyc2JM0uIU,v_iqyc2JM0uIU_8,7 581,v_Vhn4SuPhu-0,1,how many men in red pants are there in the video,v_Vhn4SuPhu-0,v_Vhn4SuPhu-0_8,7 582,v_vBOFzuS-Djo,1,how many women in red are there in the video,v_vBOFzuS-Djo,v_vBOFzuS-Djo_8,7 583,v_uty4eGb_vvU,1,how many women in red are there in the video,v_uty4eGb_vvU,v_uty4eGb_vvU_8,7 584,v_jEOtcfk220s,3,how many judges are there,v_jEOtcfk220s,v_jEOtcfk220s_7,7 585,v_RLBfyIVpocE,1,how many judges are there,v_RLBfyIVpocE,v_RLBfyIVpocE_7,7 586,v_TGffgRXc1eQ,1,how many judges are there in the video,v_TGffgRXc1eQ,v_TGffgRXc1eQ_6,7 587,v_0mNZfG6CL74,4,how many judges are there in the video,v_0mNZfG6CL74,v_0mNZfG6CL74_8,7 588,v_LzPppxSWYNY,1,how many judges are there in the video,v_LzPppxSWYNY,v_LzPppxSWYNY_7,7 589,v_CfqnHsp6olc,2,how many judges are there on the court,v_CfqnHsp6olc,v_CfqnHsp6olc_10,7 590,v_dFGS7YCDk3Y,2,how many sails are there on the sailboat,v_dFGS7YCDk3Y,v_dFGS7YCDk3Y_7,7 591,v_2k-qlZxc9l4,7,how many seconds does the logo continue at the beginning of the video,v_2k-qlZxc9l4,v_2k-qlZxc9l4_7,7 592,v_0XTAq_xvquw,8,how many seconds does the logo continue in the video,v_0XTAq_xvquw,v_0XTAq_xvquw_8,7 593,v_snhPrCNubYA,1,how many athletes are there in the video,v_snhPrCNubYA,v_snhPrCNubYA_7,7 594,v_St1RRi-aeNM,1,how many athletes are there in the video,v_St1RRi-aeNM,v_St1RRi-aeNM_7,7 595,v_uktUeF3Fy7o,3,how many surfers are there in the video,v_uktUeF3Fy7o,v_uktUeF3Fy7o_7,7 596,v_2CegApogJd4,2,how many teams are involved in the evasive ball game,v_2CegApogJd4,v_2CegApogJd4_8,7 597,v_IDuoF51IMJ8,2,how many teams are playing in the video,v_IDuoF51IMJ8,v_IDuoF51IMJ8_8,7 598,v_8vDSV9ruYlc,1,how many towels are there in the video,v_8vDSV9ruYlc,v_8vDSV9ruYlc_6,7 599,v_Oh3-DvDCpZ4,3,how many people in white are there in the vide,v_Oh3-DvDCpZ4,v_Oh3-DvDCpZ4_7,7 600,v_utgRhyBvtRU,1,how many women in white have appeared in the video,v_utgRhyBvtRU,v_utgRhyBvtRU_8,7 601,v_6LsvBNqJuJY,2,how many women are there in the video,v_6LsvBNqJuJY,v_6LsvBNqJuJY_7,7 602,v_BFChXuwZ4wo,2,how many women are there in the video,v_BFChXuwZ4wo,v_BFChXuwZ4wo_6,7 603,v_EQrcCmgraa8,1,how many women are there in the video,v_EQrcCmgraa8,v_EQrcCmgraa8_7,7 604,v_3kxP8qOtym8,2,how many women are there in the video,v_3kxP8qOtym8,v_3kxP8qOtym8_9,7 605,v_32vYs9wKXE8,yes,does the long hair girl have black hair,v_32vYs9wKXE8,v_32vYs9wKXE8_2,3 606,v_fh9d3gpT-8I,no,does the man in the red coat have long hair,v_fh9d3gpT-8I,v_fh9d3gpT-8I_3,3 607,v_df5rlVZD0Zc,no,does the man in the red coat have long hair,v_df5rlVZD0Zc,v_df5rlVZD0Zc_3,3 608,v_DOI6tsATsE4,no,does the man in black clothes have long hair,v_DOI6tsATsE4,v_DOI6tsATsE4_3,3 609,v_DOI6tsATsE4,yes,does the man in black clothes have short hair,v_DOI6tsATsE4,v_DOI6tsATsE4_2,3 610,v_faqijFZWQlo,no,does the man in a gray coat have long hair,v_faqijFZWQlo,v_faqijFZWQlo_3,3 611,v_Npj77L31bhw,yes,is the person with a hat a man,v_Npj77L31bhw,v_Npj77L31bhw_2,3 612,v_fh9d3gpT-8I,yes,does the man in the red jacket have short hair,v_fh9d3gpT-8I,v_fh9d3gpT-8I_2,3 613,v_df5rlVZD0Zc,yes,does the man in the red jacket have short hair,v_df5rlVZD0Zc,v_df5rlVZD0Zc_2,3 614,v_FFMugev85IY,no,does the woman in red coat have long hair,v_FFMugev85IY,v_FFMugev85IY_3,3 615,v_FFMugev85IY,yes,does the woman in red coat have short hair,v_FFMugev85IY,v_FFMugev85IY_2,3 616,v_DIVaPURJHPo,yes,does the woman in white coat have long hair,v_DIVaPURJHPo,v_DIVaPURJHPo_2,3 617,v_WPYQ27GjFKc,no,does the woman in black clothes have short hair,v_WPYQ27GjFKc,v_WPYQ27GjFKc_3,3 618,v_xuvp0jKMqRU,yes,does the woman in red clothes have long hair,v_xuvp0jKMqRU,v_xuvp0jKMqRU_2,3 619,v_DIVaPURJHPo,no,does the woman in white coat have short hair,v_DIVaPURJHPo,v_DIVaPURJHPo_3,3 620,v_a2IvS0xbNGQ,yes,is the person wearing orange clothes a man,v_a2IvS0xbNGQ,v_a2IvS0xbNGQ_2,3 621,v__CIoHeD7KQc,yes,is the person in the video a man,v__CIoHeD7KQc,v__CIoHeD7KQc_2,3 622,v_MQ9Ojge7CyA,no,does the person in the video have curly hair,v_MQ9Ojge7CyA,v_MQ9Ojge7CyA_3,3 623,v_28WDlVOgslg,female,is the person in black a man or a woman,v_28WDlVOgslg,v_28WDlVOgslg_10,8 624,v_xND_kp-aYXw,female,is the person in black a man or a woman,v_xND_kp-aYXw,v_xND_kp-aYXw_6,8 625,v_R-hsYQNtnn0,no,is playing table football dangerous ,v_R-hsYQNtnn0,v_R-hsYQNtnn0_10,3 626,v_0iqx7o5WYW8,no,is playing water polo dangerous ,v_0iqx7o5WYW8,v_0iqx7o5WYW8_10,3 627,v_UzmsAb15Bso,yes,does leg strength been used in skateboarding,v_UzmsAb15Bso,v_UzmsAb15Bso_2,3 628,v_IToczVhbOc0,yes,does the pen been used during tattooing,v_IToczVhbOc0,v_IToczVhbOc0_2,3 629,v_J1QB1y3vXLY,yes,does the pen been used during tattooing,v_J1QB1y3vXLY,v_J1QB1y3vXLY_2,3 630,v_-pkfcMUIEMo,yes,is it snowing in the video,v_-pkfcMUIEMo,v_-pkfcMUIEMo_8,3 631,v_MpeN-IVIBc4,yes,does the person in the video have long hair,v_MpeN-IVIBc4,v_MpeN-IVIBc4_2,3 632,v_blbaWHbtqTI,yes,is smoking harmful to health,v_blbaWHbtqTI,v_blbaWHbtqTI_8,3 633,v_Bgi2Y85Mbwk,yes,is smoking harmful to health,v_Bgi2Y85Mbwk,v_Bgi2Y85Mbwk_6,3 634,v_wnNiWoJxfSQ,no,is the animal in the video a donkey,v_wnNiWoJxfSQ,v_wnNiWoJxfSQ_3,3 635,v_wnNiWoJxfSQ,yes,is the animal in the video a horse,v_wnNiWoJxfSQ,v_wnNiWoJxfSQ_2,3 636,v_sEcXR5b8HyY,yes,is the athlete indoors,v_sEcXR5b8HyY,v_sEcXR5b8HyY_2,3 637,v_JvPVYSb_5o8,yes,is the athlete indoors,v_JvPVYSb_5o8,v_JvPVYSb_5o8_2,3 638,v_s6fEIuHPJ4Y,no,is the athlete indoors,v_s6fEIuHPJ4Y,v_s6fEIuHPJ4Y_3,3 639,v_sRNqK_QZbMs,no,is the athlete indoors,v_sRNqK_QZbMs,v_sRNqK_QZbMs_3,3 640,v_svNcNLEPKMc,yes,is the athlete indoors,v_svNcNLEPKMc,v_svNcNLEPKMc_2,3 641,v_K7iw2_1BrIk,yes,is the athlete indoors,v_K7iw2_1BrIk,v_K7iw2_1BrIk_2,3 642,v_St1RRi-aeNM,no,is the athlete indoors,v_St1RRi-aeNM,v_St1RRi-aeNM_3,3 643,v_snhPrCNubYA,no,is the athlete indoors,v_snhPrCNubYA,v_snhPrCNubYA_3,3 644,v_sPK-sbHIb3w,yes,is the athlete indoors,v_sPK-sbHIb3w,v_sPK-sbHIb3w_2,3 645,v_jEOtcfk220s,no,is the athlete outdoors,v_jEOtcfk220s,v_jEOtcfk220s_3,3 646,v_4LpqPUWHH5k,no,is the athlete outdoors,v_4LpqPUWHH5k,v_4LpqPUWHH5k_3,3 647,v_JH9qiuPCkY4,yes,is the athlete outdoors,v_JH9qiuPCkY4,v_JH9qiuPCkY4_2,3 648,v_5UZ2ft8Y3sI,no,is the athlete outdoors,v_5UZ2ft8Y3sI,v_5UZ2ft8Y3sI_3,3 649,v_5dN-MpXG9OE,no,is the athlete outdoors,v_5dN-MpXG9OE,v_5dN-MpXG9OE_3,3 650,v_jibbgUBuuSA,yes,is the athlete outdoors,v_jibbgUBuuSA,v_jibbgUBuuSA_2,3 651,v_JvPVYSb_5o8,no,is the athlete outdoors,v_JvPVYSb_5o8,v_JvPVYSb_5o8_3,3 652,v_K7iw2_1BrIk,no,is the athlete outdoors,v_K7iw2_1BrIk,v_K7iw2_1BrIk_3,3 653,v_3Nd3Aai1bVA,yes,is the athlete playing outdoors,v_3Nd3Aai1bVA,v_3Nd3Aai1bVA_2,3 654,v_mLFjww64sX8,yes,is the barber indoors,v_mLFjww64sX8,v_mLFjww64sX8_2,3 655,v_mLFjww64sX8,no,is the barber outdoors,v_mLFjww64sX8,v_mLFjww64sX8_3,3 656,v_WINtiw-_3vg,no,does the boy have long hair,v_WINtiw-_3vg,v_WINtiw-_3vg_3,3 657,v_WINtiw-_3vg,yes,does the boy have short hair,v_WINtiw-_3vg,v_WINtiw-_3vg_2,3 658,v_kBTqTp0SKq8,no,is the child holding a stick indoors,v_kBTqTp0SKq8,v_kBTqTp0SKq8_3,3 659,v_kBTqTp0SKq8,yes,is the child holding a stick outdoors,v_kBTqTp0SKq8,v_kBTqTp0SKq8_2,3 660,v_jDlvGWOdcqU,yes,is the car indoors,v_jDlvGWOdcqU,v_jDlvGWOdcqU_2,3 661,v_jDlvGWOdcqU,no,is the car outdoors,v_jDlvGWOdcqU,v_jDlvGWOdcqU_3,3 662,v_K1LiXUpoSmI,no,is the child indoors,v_K1LiXUpoSmI,v_K1LiXUpoSmI_3,3 663,v_JcAAwYpJhm8,yes,is the child indoors,v_JcAAwYpJhm8,v_JcAAwYpJhm8_2,3 664,v_sqv3M6MPKjQ,no,is the child indoors,v_sqv3M6MPKjQ,v_sqv3M6MPKjQ_3,3 665,v_rM02KWikOo8,no,is the child indoors,v_rM02KWikOo8,v_rM02KWikOo8_3,3 666,v_sk_pnoqXxhs,yes,is the child indoors,v_sk_pnoqXxhs,v_sk_pnoqXxhs_2,3 667,v_RXT17X7lRoQ,no,is the child indoors,v_RXT17X7lRoQ,v_RXT17X7lRoQ_3,3 668,v_sqv3M6MPKjQ,yes,is the child outdoors,v_sqv3M6MPKjQ,v_sqv3M6MPKjQ_2,3 669,v_sk_pnoqXxhs,no,is the child outdoors,v_sk_pnoqXxhs,v_sk_pnoqXxhs_3,3 670,v_K1LiXUpoSmI,yes,is the child outdoors,v_K1LiXUpoSmI,v_K1LiXUpoSmI_2,3 671,v_JcAAwYpJhm8,no,is the child outdoors,v_JcAAwYpJhm8,v_JcAAwYpJhm8_3,3 672,v_rM02KWikOo8,yes,is the child outdoors,v_rM02KWikOo8,v_rM02KWikOo8_2,3 673,v_RXT17X7lRoQ,yes,is the child outdoors,v_RXT17X7lRoQ,v_RXT17X7lRoQ_2,3 674,v_k6pN0WRr2Ws,yes,is the coach indoors,v_k6pN0WRr2Ws,v_k6pN0WRr2Ws_2,3 675,v_k6pN0WRr2Ws,no,is the coach outdoors,v_k6pN0WRr2Ws,v_k6pN0WRr2Ws_3,3 676,v_DHjoAOus3xM,no,is the color of the boat red,v_DHjoAOus3xM,v_DHjoAOus3xM_3,3 677,v_DHjoAOus3xM,yes,is the color of the boat white,v_DHjoAOus3xM,v_DHjoAOus3xM_2,3 678,v_2CegApogJd4,yes,is the player playing dodgeball indoors,v_2CegApogJd4,v_2CegApogJd4_2,3 679,v_ZgdMnfTqblw,no,is play basketball difficult,v_ZgdMnfTqblw,v_ZgdMnfTqblw_9,3 680,v_gWTndmDHZQc,no,is playing guitar difficult,v_gWTndmDHZQc,v_gWTndmDHZQc_9,3 681,v_ZxCdhz4ep0s,no,is playing piano difficult,v_ZxCdhz4ep0s,v_ZxCdhz4ep0s_9,3 682,v_jWODw4vy45M,no,is the dog indoors,v_jWODw4vy45M,v_jWODw4vy45M_3,3 683,v_jWODw4vy45M,yes,is the dog outdoors,v_jWODw4vy45M,v_jWODw4vy45M_2,3 684,v_gsQ-OEvrxjo,no,is the game in the video difficult,v_gsQ-OEvrxjo,v_gsQ-OEvrxjo_9,3 685,v_QImpWj3AJcY,no,is the game in the video difficult,v_QImpWj3AJcY,v_QImpWj3AJcY_9,3 686,v_R74yolowFPs,yes,is the game in the video difficult,v_R74yolowFPs,v_R74yolowFPs_6,3 687,v_d09u-0k3LdE,yes,does the girl in the video have long hair,v_d09u-0k3LdE,v_d09u-0k3LdE_2,3 688,v_Dd5yTxwKzXw,yes,does the girl in the video have long hair,v_Dd5yTxwKzXw,v_Dd5yTxwKzXw_2,3 689,v__G4EVIG9YaE,yes,does the girl in the video have long hair,v__G4EVIG9YaE,v__G4EVIG9YaE_10,3 690,v_d09u-0k3LdE,no,does the girl in the video have short hair,v_d09u-0k3LdE,v_d09u-0k3LdE_3,3 691,v_Dd5yTxwKzXw,no,does the girl in the video have short hair,v_Dd5yTxwKzXw,v_Dd5yTxwKzXw_3,3 692,v_7CM2OYr-Csw,yes,is the kite colorful,v_7CM2OYr-Csw,v_7CM2OYr-Csw_2,3 693,v_W97fdJ2Rn9g,yes,does the lady in the video have long hair,v_W97fdJ2Rn9g,v_W97fdJ2Rn9g_2,3 694,v_W97fdJ2Rn9g,no,does the lady in the video have short hair,v_W97fdJ2Rn9g,v_W97fdJ2Rn9g_3,3 695,v_Pv4FwH2TC6Y,yes,is the lady wearing black clothes,v_Pv4FwH2TC6Y,v_Pv4FwH2TC6Y_2,3 696,v_BMy7CBVxH5M,no,is the lady wearing red clothes,v_BMy7CBVxH5M,v_BMy7CBVxH5M_3,3 697,v_Pv4FwH2TC6Y,no,is the lady wearing white clothes,v_Pv4FwH2TC6Y,v_Pv4FwH2TC6Y_3,3 698,v_SPjv6P5fxug,yes,is the bald man outdoors,v_SPjv6P5fxug,v_SPjv6P5fxug_2,3 699,v_32vYs9wKXE8,yes,is the long haired girl wearing a necklace,v_32vYs9wKXE8,v_32vYs9wKXE8_9,3 700,v_s84PG-JfEwc,no,is the person holding the rope indoors,v_s84PG-JfEwc,v_s84PG-JfEwc_3,3 701,v_s84PG-JfEwc,yes,is the man holding the rope outdoors,v_s84PG-JfEwc,v_s84PG-JfEwc_2,3 702,v_Q5HdVXF390c,no,is the person in a plaid shirt wearing a hat,v_Q5HdVXF390c,v_Q5HdVXF390c_8,3 703,v_ZlVydB9uUe4,no,is the person in a white shirt wearing a hat,v_ZlVydB9uUe4,v_ZlVydB9uUe4_8,3 704,v_zqxzFxya6T8,yes,is the person in a white shirt wearing a hat,v_zqxzFxya6T8,v_zqxzFxya6T8_6,3 705,v_PkRvgIFREJU,no,is the person wearing black clothes a man,v_PkRvgIFREJU,v_PkRvgIFREJU_3,3 706,v_pmmQuksmTvw,yes,is the person wearing black clothes a man,v_pmmQuksmTvw,v_pmmQuksmTvw_2,3 707,v_cnMvMvVBXiI,yes,is the person wearing black clothes a man,v_cnMvMvVBXiI,v_cnMvMvVBXiI_2,3 708,v_5k2Ot6-wOgc,yes,is the person in black indoors,v_5k2Ot6-wOgc,v_5k2Ot6-wOgc_2,3 709,v_72_9wLYUDGM,female,is the person in blue a man or a woman,v_72_9wLYUDGM,v_72_9wLYUDGM_9,8 710,v_16czjUF1AA4,female,is the person in blue a man or a woman,v_16czjUF1AA4,v_16czjUF1AA4_6,8 711,v_zxpQHLwZCug,no,is the perosn in blue chopping wood indoors,v_zxpQHLwZCug,v_zxpQHLwZCug_10,3 712,v_rrpEOrMpBuE,no,is the person in blue indoors,v_rrpEOrMpBuE,v_rrpEOrMpBuE_3,3 713,v_pVuuVHA3RVw,no,is the person in gray clothes a man,v_pVuuVHA3RVw,v_pVuuVHA3RVw_3,3 714,v_xS4twW2gXqc,male,is the person in red a man or a woman,v_xS4twW2gXqc,v_xS4twW2gXqc_8,8 715,v_XxW4XWySzOw,male,is the person in red a man or a woman,v_XxW4XWySzOw,v_XxW4XWySzOw_6,8 716,v_5c5PFa8GR-A,yes,is the person wearing a hat indoors,v_5c5PFa8GR-A,v_5c5PFa8GR-A_2,3 717,v_4z0meF-_b1I,no,is the person wearing a hat indoors,v_4z0meF-_b1I,v_4z0meF-_b1I_3,3 718,v_5c5PFa8GR-A,no,is the person wearing a hat outdoors,v_5c5PFa8GR-A,v_5c5PFa8GR-A_3,3 719,v_4z0meF-_b1I,yes,is the person wearing a hat outdoors,v_4z0meF-_b1I,v_4z0meF-_b1I_2,3 720,v_SPjv6P5fxug,no,is the bald person indoors,v_SPjv6P5fxug,v_SPjv6P5fxug_3,3 721,v_rnI9vGr5V1k,yes,is the person in plaid clothes indoors,v_rnI9vGr5V1k,v_rnI9vGr5V1k_2,3 722,v_rnI9vGr5V1k,no,is the person in plaid clothes outdoors,v_rnI9vGr5V1k,v_rnI9vGr5V1k_3,3 723,v_ZsVfa3JIUNU,no,is the person with a microphone wearing a hat,v_ZsVfa3JIUNU,v_ZsVfa3JIUNU_8,3 724,v_paRAKx8svJ8,no,is the person in purple a man,v_paRAKx8svJ8,v_paRAKx8svJ8_3,3 725,v_AB5cWhlQ0Kk,yes,is the person in the video a man,v_AB5cWhlQ0Kk,v_AB5cWhlQ0Kk_2,3 726,v_mvRoVXRGVGw,no,is the person in the video wearing a scarf,v_mvRoVXRGVGw,v_mvRoVXRGVGw_3,3 727,v_FADShG5lyB8,yes,is the person in the video indoors,v_FADShG5lyB8,v_FADShG5lyB8_2,3 728,v_jbCQY7V7O1s,yes,is the person in the video indoors,v_jbCQY7V7O1s,v_jbCQY7V7O1s_2,3 729,v_5oyenoaVB-w,no,is the person in the video indoors,v_5oyenoaVB-w,v_5oyenoaVB-w_3,3 730,v_CFbkVO5b2g0,no,does the man in the video have long hair,v_CFbkVO5b2g0,v_CFbkVO5b2g0_3,3 731,v_CwImmV7q1MY,no,does the man in the video have long hair,v_CwImmV7q1MY,v_CwImmV7q1MY_3,3 732,v_FADShG5lyB8,no,is the man in the video outdoors,v_FADShG5lyB8,v_FADShG5lyB8_3,3 733,v_CFbkVO5b2g0,yes,does the man in the video have short hair,v_CFbkVO5b2g0,v_CFbkVO5b2g0_2,3 734,v_CwImmV7q1MY,yes,does the man in the video have short hair,v_CwImmV7q1MY,v_CwImmV7q1MY_2,3 735,v_mnNgZ-D5cKc,no,does the person in white wear a scarf,v_mnNgZ-D5cKc,v_mnNgZ-D5cKc_3,3 736,v_F9FPK6mfh88,yes,is the man in a black coat wearing glasses,v_F9FPK6mfh88,v_F9FPK6mfh88_7,3 737,v_A9VCuZ53ObQ,yes,is the person in black clothes a man,v_A9VCuZ53ObQ,v_A9VCuZ53ObQ_2,3 738,v_AjqnGUbsduw,yes,is the person in black clothes a man,v_AjqnGUbsduw,v_AjqnGUbsduw_2,3 739,v_aGvpDyMNATI,yes,is the person in black clothes a man,v_aGvpDyMNATI,v_aGvpDyMNATI_2,3 740,v_qZMcbBsQorE,no,is the person in a gray vest wearing a hat,v_qZMcbBsQorE,v_qZMcbBsQorE_8,3 741,v_pzTqZWPubk8,no,is the person in a gray t-shirt wearing a hat,v_pzTqZWPubk8,v_pzTqZWPubk8_7,3 742,v_ZnKB0U96ZI4,no,is the person in a gray t-shirt wearing a hat,v_ZnKB0U96ZI4,v_ZnKB0U96ZI4_9,3 743,v_dKJMP8EmZjw,yes,is the man wearing a hat,v_dKJMP8EmZjw,v_dKJMP8EmZjw_6,3 744,v_-pkfcMUIEMo,yes,is the man wearing a hat,v_-pkfcMUIEMo,v_-pkfcMUIEMo_6,3 745,v_fhOmyyI0eQE,yes,is the man wearing a hat,v_fhOmyyI0eQE,v_fhOmyyI0eQE_6,3 746,v__V62aT_K8Zw,no,is the person wearing a hat a woman,v__V62aT_K8Zw,v__V62aT_K8Zw_3,3 747,v_PFeerDZbGn8,yes,is the person wearing red clothes a man,v_PFeerDZbGn8,v_PFeerDZbGn8_2,3 748,v_sNTOUuE7ZfM,no,is the person wearing a tie outdoors,v_sNTOUuE7ZfM,v_sNTOUuE7ZfM_3,3 749,v_bYxVbXzQToI,yes,is the man in the video wearing a white coat,v_bYxVbXzQToI,v_bYxVbXzQToI_2,3 750,v_P5D9S9NzQ28,yes,is the person in white clothes a man,v_P5D9S9NzQ28,v_P5D9S9NzQ28_2,3 751,v_pop8YCGQpWk,yes,is the person in white clothes a man,v_pop8YCGQpWk,v_pop8YCGQpWk_2,3 752,v_pKOy4HJwCqo,yes,is the person in white clothes a man,v_pKOy4HJwCqo,v_pKOy4HJwCqo_2,3 753,v_1vTHJMMPZN0,no,is the man at the beginning of the video wearing long sleeves ,v_1vTHJMMPZN0,v_1vTHJMMPZN0_3,3 754,v_1vTHJMMPZN0,yes,is the man at the beginning of the video wearing short sleeves ,v_1vTHJMMPZN0,v_1vTHJMMPZN0_2,3 755,v_Aen-RfnlK3A,yes,is the person in the video a woman ,v_Aen-RfnlK3A,v_Aen-RfnlK3A_2,3 756,v_4LF0hL-mgks,yes,is the person who appeared at the beginning of the video indoors,v_4LF0hL-mgks,v_4LF0hL-mgks_2,3 757,v_lPw_BRbPw5s,no,is the person in black dancing indoors,v_lPw_BRbPw5s,v_lPw_BRbPw5s_3,3 758,v_Ynvd8OuXKGw,no,does the person in black clothes have black hair,v_Ynvd8OuXKGw,v_Ynvd8OuXKGw_3,3 759,v_z8x3wUZYOaM,yes,does the person in black clothes have black hair,v_z8x3wUZYOaM,v_z8x3wUZYOaM_2,3 760,v_AjqnGUbsduw,no,does the person in black clothes have black hair,v_AjqnGUbsduw,v_AjqnGUbsduw_3,3 761,v_87F9xGaMwCw,no,does the person in black clothes have black hair,v_87F9xGaMwCw,v_87F9xGaMwCw_3,3 762,v_SidTquTAtyk,no,is the person in black indoors,v_SidTquTAtyk,v_SidTquTAtyk_3,3 763,v_T62XjoKbN8M,yes,is the person in black indoors,v_T62XjoKbN8M,v_T62XjoKbN8M_2,3 764,v_Son8UiVlzu0,yes,is the person in black indoors,v_Son8UiVlzu0,v_Son8UiVlzu0_2,3 765,v_RLBfyIVpocE,no,is the person in black indoors,v_RLBfyIVpocE,v_RLBfyIVpocE_3,3 766,v_SidTquTAtyk,yes,is the person in black outdoors,v_SidTquTAtyk,v_SidTquTAtyk_2,3 767,v_T62XjoKbN8M,no,is the person in black outdoors,v_T62XjoKbN8M,v_T62XjoKbN8M_3,3 768,v_Son8UiVlzu0,no,is the person in black outdoors,v_Son8UiVlzu0,v_Son8UiVlzu0_3,3 769,v_RLBfyIVpocE,yes,is the person in black outdoors,v_RLBfyIVpocE,v_RLBfyIVpocE_2,3 770,v_T3A88zsRuVs,yes,is the person in red indoors,v_T3A88zsRuVs,v_T3A88zsRuVs_2,3 771,v_T3A88zsRuVs,no,is the person in red outdoors,v_T3A88zsRuVs,v_T3A88zsRuVs_3,3 772,v_26U3SkeZU6M,no,does the person in blue have curly hair,v_26U3SkeZU6M,v_26U3SkeZU6M_3,3 773,v_rrpEOrMpBuE,yes,is the person in blue outdoors,v_rrpEOrMpBuE,v_rrpEOrMpBuE_2,3 774,v_nbOsU2Vmp1U,yes,is the person in the video a boy,v_nbOsU2Vmp1U,v_nbOsU2Vmp1U_2,3 775,v_NJRrhNrEMsk,yes,is the person in the video a boy,v_NJRrhNrEMsk,v_NJRrhNrEMsk_2,3 776,v_NjXCZYO3zwU,yes,is the person in the video a boy,v_NjXCZYO3zwU,v_NjXCZYO3zwU_2,3 777,v_9MN6GNhvwzA,female,is the person in the video a boy or a gril,v_9MN6GNhvwzA,v_9MN6GNhvwzA_10,8 778,v_NJRrhNrEMsk,no,is the person in the video a girl ,v_NJRrhNrEMsk,v_NJRrhNrEMsk_3,3 779,v_NjXCZYO3zwU,no,is the person in the video a girl ,v_NjXCZYO3zwU,v_NjXCZYO3zwU_3,3 780,v_nbOsU2Vmp1U,no,is the person in the video a girl ,v_nbOsU2Vmp1U,v_nbOsU2Vmp1U_3,3 781,v_CKSlgK_2FP4,no,is the person in the video a lady,v_CKSlgK_2FP4,v_CKSlgK_2FP4_3,3 782,v_CKSlgK_2FP4,yes,is the person in the video a man,v_CKSlgK_2FP4,v_CKSlgK_2FP4_2,3 783,v_-YwrMtiqHKg,no,does the person in the video have black hair,v_-YwrMtiqHKg,v_-YwrMtiqHKg_3,3 784,v_OYEKKzQjaJI,yes,does the person in the video have black hair,v_OYEKKzQjaJI,v_OYEKKzQjaJI_2,3 785,v_Y05GAiavfOg,no,does the person in the video have black hair,v_Y05GAiavfOg,v_Y05GAiavfOg_3,3 786,v_Yg03CCu9GMo,no,does the person in the video have black hair,v_Yg03CCu9GMo,v_Yg03CCu9GMo_3,3 787,v_StGxFfLiYNU,no,is the person in the video indoors,v_StGxFfLiYNU,v_StGxFfLiYNU_3,3 788,v_K5jY2chByPw,yes,is the person in the video indoors,v_K5jY2chByPw,v_K5jY2chByPw_2,3 789,v_sH_716hH_rY,no,is the person in the video indoors,v_sH_716hH_rY,v_sH_716hH_rY_3,3 790,v_MDWaKr7Gu5Q,no,is the person in the video indoors,v_MDWaKr7Gu5Q,v_MDWaKr7Gu5Q_3,3 791,v_Feq-2NIDl94,yes,is the person in the video indoors,v_Feq-2NIDl94,v_Feq-2NIDl94_2,3 792,v_4LoAbHdHWqM,yes,is the person in the video indoors,v_4LoAbHdHWqM,v_4LoAbHdHWqM_2,3 793,v_5nu47s7JrfY,yes,is the person in the video indoors,v_5nu47s7JrfY,v_5nu47s7JrfY_2,3 794,v_SGAUpoTMSnA,no,is the person in the video indoors,v_SGAUpoTMSnA,v_SGAUpoTMSnA_3,3 795,v_4JmFOPoKluM,no,is the person in the video indoors,v_4JmFOPoKluM,v_4JmFOPoKluM_3,3 796,v_4YF9R3Sz2bA,no,is the person in the video indoors,v_4YF9R3Sz2bA,v_4YF9R3Sz2bA_3,3 797,v_6JZVpl2S2Mg,yes,is the person in the video indoors,v_6JZVpl2S2Mg,v_6JZVpl2S2Mg_2,3 798,v_T0nCDJuikuA,yes,is the person in the video indoors,v_T0nCDJuikuA,v_T0nCDJuikuA_2,3 799,v_4uKoAk5NCkI,yes,is the person in the video indoors,v_4uKoAk5NCkI,v_4uKoAk5NCkI_2,3 800,v_k3WPc9HmtLM,yes,is the person in the video indoors,v_k3WPc9HmtLM,v_k3WPc9HmtLM_2,3 801,v_T3mcQnlsmq4,yes,is the person in the video indoors,v_T3mcQnlsmq4,v_T3mcQnlsmq4_2,3 802,v_04qggWACGWk,yes,is the person in the video indoors,v_04qggWACGWk,v_04qggWACGWk_2,3 803,v_6H0D8VaIli0,no,is the person in the video indoors,v_6H0D8VaIli0,v_6H0D8VaIli0_3,3 804,v_-YwrMtiqHKg,yes,does the person in the video have long hair,v_-YwrMtiqHKg,v_-YwrMtiqHKg_2,3 805,v_OYEKKzQjaJI,no,does the person in the video have long hair,v_OYEKKzQjaJI,v_OYEKKzQjaJI_3,3 806,v_Y05GAiavfOg,yes,does the person in the video have long hair,v_Y05GAiavfOg,v_Y05GAiavfOg_2,3 807,v_nbHBjdE8oNo,yes,does the person in the video have long hair,v_nbHBjdE8oNo,v_nbHBjdE8oNo_2,3 808,v_n832gDqfWl4,no,does the person in the video have long hair,v_n832gDqfWl4,v_n832gDqfWl4_3,3 809,v_d_A-ylxNbFU,no,does the person in the video have long hair,v_d_A-ylxNbFU,v_d_A-ylxNbFU_3,3 810,v_n9EdHGz7ArI,no,does the person in the video have long hair,v_n9EdHGz7ArI,v_n9EdHGz7ArI_3,3 811,v_nc_NMp3vAH0,no,does the person in the video have long hair,v_nc_NMp3vAH0,v_nc_NMp3vAH0_3,3 812,v_hyMqGr0mOfA,no,does the person in the video have long hair,v_hyMqGr0mOfA,v_hyMqGr0mOfA_3,3 813,v_Nb6AQxxrihA,yes,does the person in the video have long hair,v_Nb6AQxxrihA,v_Nb6AQxxrihA_2,3 814,v_K5jY2chByPw,no,is the person in the video outdoors,v_K5jY2chByPw,v_K5jY2chByPw_3,3 815,v_sH_716hH_rY,yes,is the person in the video outdoors,v_sH_716hH_rY,v_sH_716hH_rY_2,3 816,v_Feq-2NIDl94,no,is the person in the video outdoors,v_Feq-2NIDl94,v_Feq-2NIDl94_3,3 817,v_4LoAbHdHWqM,no,is the person in the video outdoors,v_4LoAbHdHWqM,v_4LoAbHdHWqM_3,3 818,v_5nu47s7JrfY,no,is the person in the video outdoors,v_5nu47s7JrfY,v_5nu47s7JrfY_3,3 819,v_SGAUpoTMSnA,yes,is the person in the video outdoors,v_SGAUpoTMSnA,v_SGAUpoTMSnA_2,3 820,v_4YF9R3Sz2bA,yes,is the person in the video outdoors,v_4YF9R3Sz2bA,v_4YF9R3Sz2bA_2,3 821,v_4JmFOPoKluM,yes,is the person in the video outdoors,v_4JmFOPoKluM,v_4JmFOPoKluM_2,3 822,v_StGxFfLiYNU,yes,is the person in the video outdoors,v_StGxFfLiYNU,v_StGxFfLiYNU_2,3 823,v_MDWaKr7Gu5Q,yes,is the person in the video outdoors,v_MDWaKr7Gu5Q,v_MDWaKr7Gu5Q_2,3 824,v_T0nCDJuikuA,no,is the person in the video outdoors,v_T0nCDJuikuA,v_T0nCDJuikuA_3,3 825,v_T3mcQnlsmq4,no,is the person in the video outdoors,v_T3mcQnlsmq4,v_T3mcQnlsmq4_3,3 826,v_4uKoAk5NCkI,no,is the person in the video outdoors,v_4uKoAk5NCkI,v_4uKoAk5NCkI_3,3 827,v_k3WPc9HmtLM,no,is the person in the video outdoors,v_k3WPc9HmtLM,v_k3WPc9HmtLM_3,3 828,v_6JZVpl2S2Mg,no,is the person in the video outdoors,v_6JZVpl2S2Mg,v_6JZVpl2S2Mg_3,3 829,v_04qggWACGWk,no,is the person in the video outdoors,v_04qggWACGWk,v_04qggWACGWk_3,3 830,v_6H0D8VaIli0,yes,is the person in the video outdoors,v_6H0D8VaIli0,v_6H0D8VaIli0_2,3 831,v_Df7AnfIEhYw,yes,is the person in the video outdoors,v_Df7AnfIEhYw,v_Df7AnfIEhYw_9,3 832,v_nbHBjdE8oNo,no,does the person in the video have short hair,v_nbHBjdE8oNo,v_nbHBjdE8oNo_3,3 833,v_n832gDqfWl4,yes,does the person in the video have short hair,v_n832gDqfWl4,v_n832gDqfWl4_2,3 834,v_d_A-ylxNbFU,no,does the person in the video have short hair,v_d_A-ylxNbFU,v_d_A-ylxNbFU_2,3 835,v_Yg03CCu9GMo,yes,does the person in the video have short hair,v_Yg03CCu9GMo,v_Yg03CCu9GMo_2,3 836,v_yGTIEmZ7S2w,yes,does the person in the video have short hair,v_yGTIEmZ7S2w,v_yGTIEmZ7S2w_2,3 837,v_n9EdHGz7ArI,yes,does the person in the video have short hair,v_n9EdHGz7ArI,v_n9EdHGz7ArI_2,3 838,v_Aen-RfnlK3A,no,does the person in the video have short hair,v_Aen-RfnlK3A,v_Aen-RfnlK3A_3,3 839,v_nc_NMp3vAH0,yes,does the person in the video have short hair,v_nc_NMp3vAH0,v_nc_NMp3vAH0_2,3 840,v_hyMqGr0mOfA,yes,does the person in the video have short hair,v_hyMqGr0mOfA,v_hyMqGr0mOfA_2,3 841,v_Nb6AQxxrihA,no,does the person in the video have short hair,v_Nb6AQxxrihA,v_Nb6AQxxrihA_3,3 842,v_yGTIEmZ7S2w,no,does the person in the video have straight hair,v_yGTIEmZ7S2w,v_yGTIEmZ7S2w_3,3 843,v_87F9xGaMwCw,female,is the person in white a boy or a girl,v_87F9xGaMwCw,v_87F9xGaMwCw_9,8 844,v_RgiVa9GMYxE,yes,is the person in white indoors,v_RgiVa9GMYxE,v_RgiVa9GMYxE_2,3 845,v_rWfQj0X8WU4,no,is the person in white indoors,v_rWfQj0X8WU4,v_rWfQj0X8WU4_3,3 846,v_RgiVa9GMYxE,no,is the person in white outdoors,v_RgiVa9GMYxE,v_RgiVa9GMYxE_3,3 847,v_rWfQj0X8WU4,yes,is the person in white outdoors,v_rWfQj0X8WU4,v_rWfQj0X8WU4_2,3 848,v_Db2Dnt2OOo0,yes,is the person in the video sitting,v_Db2Dnt2OOo0,v_Db2Dnt2OOo0_10,3 849,v_r2H-cnti8GI,no,is the person in the black and white coat wearing a hat,v_r2H-cnti8GI,v_r2H-cnti8GI_7,3 850,v_dU7jG8G5li0,yes,is the person in the video wearing a black coat,v_dU7jG8G5li0,v_dU7jG8G5li0_2,3 851,v_fe4r2-Y8k1U,no,is the person in the black coat indoors,v_fe4r2-Y8k1U,v_fe4r2-Y8k1U_9,3 852,v_N4qhryre_TE,yes,does the person in the black coat have long hair,v_N4qhryre_TE,v_N4qhryre_TE_2,3 853,v_Df7AnfIEhYw,no,does the person in the black coat have long hair,v_Df7AnfIEhYw,v_Df7AnfIEhYw_3,3 854,v_N4qhryre_TE,no,does the person in the black coat have short hair,v_N4qhryre_TE,v_N4qhryre_TE_3,3 855,v_Df7AnfIEhYw,yes,does the person in the black coat have short hair,v_Df7AnfIEhYw,v_Df7AnfIEhYw_2,3 856,v_QImpWj3AJcY,no,is the person in the black coat wearing a hat,v_QImpWj3AJcY,v_QImpWj3AJcY_7,3 857,v_zTHkqpNFGno,no,is the person in the black coat wearing a hat,v_zTHkqpNFGno,v_zTHkqpNFGno_9,3 858,v_ZLJ2BmBkLJg,no,is the person in the black coat wearing a hat,v_ZLJ2BmBkLJg,v_ZLJ2BmBkLJg_8,3 859,v_pmmQuksmTvw,no,is the person in black a lady,v_pmmQuksmTvw,v_pmmQuksmTvw_3,3 860,v_PkRvgIFREJU,yes,is the person in black a lady,v_PkRvgIFREJU,v_PkRvgIFREJU_2,3 861,v_cnMvMvVBXiI,no,is the person in black a lady,v_cnMvMvVBXiI,v_cnMvMvVBXiI_3,3 862,v_NvRH4SoF09c,no,is the person in black a woman,v_NvRH4SoF09c,v_NvRH4SoF09c_3,3 863,v_z8x3wUZYOaM,no,does the person in black have curly hair,v_z8x3wUZYOaM,v_z8x3wUZYOaM_3,3 864,v_lPw_BRbPw5s,yes,is the person in black dancing outdoors,v_lPw_BRbPw5s,v_lPw_BRbPw5s_2,3 865,v_PdwWFueQErM,yes,is the person in the video wearing black clothes,v_PdwWFueQErM,v_PdwWFueQErM_2,3 866,v_Of2Umm79Kxg,yes,is the person in the video wearing black clothes,v_Of2Umm79Kxg,v_Of2Umm79Kxg_2,3 867,v_BmL2XGNrxc4,no,is the person in the video wearing black clothes,v_BmL2XGNrxc4,v_BmL2XGNrxc4_3,3 868,v_penDFcEdu7U,no,is the person in the video wearing black clothes,v_penDFcEdu7U,v_penDFcEdu7U_3,3 869,v_aGvpDyMNATI,no,does the person in black have long hair,v_aGvpDyMNATI,v_aGvpDyMNATI_3,3 870,v_mUmSJps9WJI,no,does the person in black have long hair,v_mUmSJps9WJI,v_mUmSJps9WJI_3,3 871,v_Ynvd8OuXKGw,yes,does the person in black have long hair,v_Ynvd8OuXKGw,v_Ynvd8OuXKGw_2,3 872,v_mV07bEBkIcM,yes,does the person in black have long hair,v_mV07bEBkIcM,v_mV07bEBkIcM_2,3 873,v_nhQTxZlzG1Q,yes,does the person in black have long hair,v_nhQTxZlzG1Q,v_nhQTxZlzG1Q_2,3 874,v_A0b_pqaKCX8,yes,does the person in black have long hair,v_A0b_pqaKCX8,v_A0b_pqaKCX8_2,3 875,v_87F9xGaMwCw,yes,does the person in black have long hair,v_87F9xGaMwCw,v_87F9xGaMwCw_2,3 876,v_mV07bEBkIcM,no,does the person in black have straight hair,v_mV07bEBkIcM,v_mV07bEBkIcM_3,3 877,v_gsQ-OEvrxjo,no,is the person in black wearing a hat,v_gsQ-OEvrxjo,v_gsQ-OEvrxjo_3,3 878,v_qWgF9hxNbP8,yes,is the person in the black vest indoors,v_qWgF9hxNbP8,v_qWgF9hxNbP8_2,3 879,v_qWgF9hxNbP8,no,is the person in the black vest outdoors,v_qWgF9hxNbP8,v_qWgF9hxNbP8_3,3 880,v_qWgF9hxNbP8,no,is the person in the black vest wearing a hat,v_qWgF9hxNbP8,v_qWgF9hxNbP8_6,3 881,v_ZgdMnfTqblw,no,is the person in the black vest wearing a hat,v_ZgdMnfTqblw,v_ZgdMnfTqblw_10,3 882,v_G0VWk5WqDp0,no,is the person in the black vest wearing a hat,v_G0VWk5WqDp0,v_G0VWk5WqDp0_3,3 883,v_YvPoAOrjX5I,yes,is the person in a blue coat wearing a hat,v_YvPoAOrjX5I,v_YvPoAOrjX5I_2,3 884,v_qiupddjDHDg,yes,is the person in a blue coat wearing a hat,v_qiupddjDHDg,v_qiupddjDHDg_9,3 885,v_rCLGy2NA0aE,yes,is the person in a blue coat wearing a hat,v_rCLGy2NA0aE,v_rCLGy2NA0aE_8,3 886,v_qiTQ02NDSlQ,no,is the person in a blue coat wearing a hat,v_qiTQ02NDSlQ,v_qiTQ02NDSlQ_8,3 887,v_oGU7m7rCZ-Y,yes,is the person in a blue coat wearing a hat,v_oGU7m7rCZ-Y,v_oGU7m7rCZ-Y_2,3 888,v_nciIPwJTok8,no,is the person wearing a blue dress a girl,v_nciIPwJTok8,v_nciIPwJTok8_3,3 889,v_96vBhCFBbQk,no,is the person wearing a blue dress a girl,v_96vBhCFBbQk,v_96vBhCFBbQk_10,3 890,v_yRQpolWhJ6A,yes,does the person in blue have black hair,v_yRQpolWhJ6A,v_yRQpolWhJ6A_2,3 891,v_oMtB-y49Yo8,no,does the person in blue have black hair,v_oMtB-y49Yo8,v_oMtB-y49Yo8_3,3 892,v_62M1FRXsUiM,no,does the person in blue have black hair,v_62M1FRXsUiM,v_62M1FRXsUiM_3,3 893,v_YVqRQDkdA8U,yes,does the person in blue have blond hair,v_YVqRQDkdA8U,v_YVqRQDkdA8U_2,3 894,v_MVA568rRjzQ,no,does the person in blue have curly hair,v_MVA568rRjzQ,v_MVA568rRjzQ_3,3 895,v_62M1FRXsUiM,yes,does the person in blue have curly hair,v_62M1FRXsUiM,v_62M1FRXsUiM_2,3 896,v_uw9x69DT8_g,yes,is the person in the video wearing blue clothes ,v_uw9x69DT8_g,v_uw9x69DT8_g_2,3 897,v_TiQcZKml5Bs,yes,is the person in the video wearing blue clothes ,v_TiQcZKml5Bs,v_TiQcZKml5Bs_2,3 898,v_BmL2XGNrxc4,yes,is the person in the video wearing blue clothes ,v_BmL2XGNrxc4,v_BmL2XGNrxc4_2,3 899,v_BBKSKU6dGGk,yes,is the person in the video wearing blue clothes ,v_BBKSKU6dGGk,v_BBKSKU6dGGk_2,3 900,v_oMtB-y49Yo8,yes,does the person in blue have long hair,v_oMtB-y49Yo8,v_oMtB-y49Yo8_2,3 901,v_XI7qJHE61zo,no,does the person in blue have long hair,v_XI7qJHE61zo,v_XI7qJHE61zo_3,3 902,v_yRQpolWhJ6A,no,does the person in blue have short hair,v_yRQpolWhJ6A,v_yRQpolWhJ6A_3,3 903,v_XI7qJHE61zo,yes,does the person in blue have short hair,v_XI7qJHE61zo,v_XI7qJHE61zo_2,3 904,v_YVqRQDkdA8U,no,does the person in blue have short hair,v_YVqRQDkdA8U,v_YVqRQDkdA8U_3,3 905,v_16czjUF1AA4,yes,is the person in blue wearing a necklace,v_16czjUF1AA4,v_16czjUF1AA4_2,3 906,v_16czjUF1AA4,no,is the person in blue wearing a ring,v_16czjUF1AA4,v_16czjUF1AA4_3,3 907,v_N9VOdVOiPNM,yes,does the person in the blue striped clothes have long hair,v_N9VOdVOiPNM,v_N9VOdVOiPNM_2,3 908,v_N9VOdVOiPNM,no,does the person in the blue striped clothes have short hair,v_N9VOdVOiPNM,v_N9VOdVOiPNM_3,3 909,v_Nb6AQxxrihA,yes,is the person in the video wearing clothes,v_Nb6AQxxrihA,v_Nb6AQxxrihA_9,3 910,v_pVuuVHA3RVw,yes,is the person in gray clothes a lady,v_pVuuVHA3RVw,v_pVuuVHA3RVw_2,3 911,v_0e5zwJywyqk,yes,is the person in the video wearing gray clothes,v_0e5zwJywyqk,v_0e5zwJywyqk_2,3 912,v_diY-XBT5cD4,yes,is the person in the video wearing gray clothes,v_diY-XBT5cD4,v_diY-XBT5cD4_2,3 913,v_xMNmGr96O9U,male,is the person wearing gray clothes a boy or a girl,v_xMNmGr96O9U,v_xMNmGr96O9U_6,8 914,v_zKYiTA6WBS4,no,is the person in green coat wearing a hat,v_zKYiTA6WBS4,v_zKYiTA6WBS4_8,3 915,v_ZJnXQw84xvo,no,is the person in green coat wearing a hat,v_ZJnXQw84xvo,v_ZJnXQw84xvo_10,3 916,v_QX5e5Mla660,yes,is the person in green coat wearing a hat,v_QX5e5Mla660,v_QX5e5Mla660_2,3 917,v_OUxgs_QlPHE,no,does the person in a green swimsuit have black hair,v_OUxgs_QlPHE,v_OUxgs_QlPHE_3,3 918,v_OUxgs_QlPHE,yes,does the person in a green swimsuit have long hair,v_OUxgs_QlPHE,v_OUxgs_QlPHE_2,3 919,v_yCpdDJAW-jU,yes,is the person in the video wearing a hat ,v_yCpdDJAW-jU,v_yCpdDJAW-jU_2,3 920,v_mZYWfmsYQPA,no,is the person in the video wearing a hat ,v_mZYWfmsYQPA,v_mZYWfmsYQPA_3,3 921,v_nDM4E9CD_y0,yes,is the person in the video wearing a hat ,v_nDM4E9CD_y0,v_nDM4E9CD_y0_2,3 922,v_U2cCOj3LiAA,yes,is the person in the video wearing a hat ,v_U2cCOj3LiAA,v_U2cCOj3LiAA_2,3 923,v_oT6WUU8-dgs,yes,is the person in the video wearing a hat ,v_oT6WUU8-dgs,v_oT6WUU8-dgs_2,3 924,v_mvRoVXRGVGw,yes,is the person in the video wearing a hat ,v_mvRoVXRGVGw,v_mvRoVXRGVGw_2,3 925,v_Z2gpcqXWNek,no,is the person in the video wearing a hat ,v_Z2gpcqXWNek,v_Z2gpcqXWNek_3,3 926,v_yUvSujxnFE0,no,is the person in the video wearing a hat ,v_yUvSujxnFE0,v_yUvSujxnFE0_3,3 927,v_ngMxE3CnGVg,no,is the person in the video wearing a hat ,v_ngMxE3CnGVg,v_ngMxE3CnGVg_3,3 928,v_NJRrhNrEMsk,yes,is the person in the video wearing a hat ,v_NJRrhNrEMsk,v_NJRrhNrEMsk_10,3 929,v_HTYzbAFUghU,yes,is the person in the video wearing a hat ,v_HTYzbAFUghU,v_HTYzbAFUghU_2,3 930,v_z6pmp8TrAVo,no,is the person in the video wearing a hat ,v_z6pmp8TrAVo,v_z6pmp8TrAVo_3,3 931,v_YaC68rE4lwA,no,is the person in the video wearing a hat ,v_YaC68rE4lwA,v_YaC68rE4lwA_3,3 932,v_Npj77L31bhw,no,does the person in a hat have blond hair,v_Npj77L31bhw,v_Npj77L31bhw_3,3 933,v_yCpdDJAW-jU,no,is the person in the video wearing a mask ,v_yCpdDJAW-jU,v_yCpdDJAW-jU_3,3 934,v_TnP6coXzbLY,yes,is the person in the video wearing a microphone ,v_TnP6coXzbLY,v_TnP6coXzbLY_2,3 935,v_AB480dHyDeM,yes,is the person in the video wearing a necklace ,v_AB480dHyDeM,v_AB480dHyDeM_2,3 936,v_ngMxE3CnGVg,yes,is the person in the video wearing a necklace ,v_ngMxE3CnGVg,v_ngMxE3CnGVg_2,3 937,v_paRAKx8svJ8,yes,is the person in purple a lady,v_paRAKx8svJ8,v_paRAKx8svJ8_2,3 938,v_OccEAILrU7M,yes,does the person in purple have black hair,v_OccEAILrU7M,v_OccEAILrU7M_2,3 939,v_OccEAILrU7M,no,does the person in purple have long hair,v_OccEAILrU7M,v_OccEAILrU7M_3,3 940,v_nGKc2t-NMYc,yes,does the person in purple have long hair,v_nGKc2t-NMYc,v_nGKc2t-NMYc_2,3 941,v_xfV4V_AOVSM,no,is the person in purple wearing a hat,v_xfV4V_AOVSM,v_xfV4V_AOVSM_3,3 942,v_nkWMBJC2Qec,yes,is the person wearing red clothes a girl,v_nkWMBJC2Qec,v_nkWMBJC2Qec_2,3 943,v_PFeerDZbGn8,no,is the person wearing red clothes a lady,v_PFeerDZbGn8,v_PFeerDZbGn8_3,3 944,v_oKJ1BnvHbbA,yes,is the person wearing red clothes a woman,v_oKJ1BnvHbbA,v_oKJ1BnvHbbA_2,3 945,v_YHqFNnhaFAY,yes,does the person in red have black hair,v_YHqFNnhaFAY,v_YHqFNnhaFAY_2,3 946,v_Pr5K2Jh2X94,yes,does the person in red have black hair,v_Pr5K2Jh2X94,v_Pr5K2Jh2X94_2,3 947,v_oKJ1BnvHbbA,no,does the person in red have black hair,v_oKJ1BnvHbbA,v_oKJ1BnvHbbA_3,3 948,v_YHqFNnhaFAY,no,does the person in red have blond hair,v_YHqFNnhaFAY,v_YHqFNnhaFAY_3,3 949,v_z6l9utYlIrw,yes,does the person in red have blond hair,v_z6l9utYlIrw,v_z6l9utYlIrw_2,3 950,v_OFTkwnSh-sQ,yes,does the person in red have blond hair,v_OFTkwnSh-sQ,v_OFTkwnSh-sQ_2,3 951,v_nvcMYiZhUuo,no,does the person in red have blond hair,v_nvcMYiZhUuo,v_nvcMYiZhUuo_3,3 952,v_75Tc1nPmZFQ,no,does the person in red have curly hair,v_75Tc1nPmZFQ,v_75Tc1nPmZFQ_3,3 953,v_0e5zwJywyqk,no,is the person in the video wearing red clothes,v_0e5zwJywyqk,v_0e5zwJywyqk_3,3 954,v_Ar6TcWqwK-A,yes,is the person in the video wearing red clothes,v_Ar6TcWqwK-A,v_Ar6TcWqwK-A_2,3 955,v_TiQcZKml5Bs,no,is the person in the video wearing red clothes,v_TiQcZKml5Bs,v_TiQcZKml5Bs_3,3 956,v__zqj6daJo9U,no,is the person in the video wearing red clothes,v__zqj6daJo9U,v__zqj6daJo9U_3,3 957,v_wh6P2C2avqc,yes,is the person in the video wearing red clothes,v_wh6P2C2avqc,v_wh6P2C2avqc_2,3 958,v_uw9x69DT8_g,no,is the person in the video wearing red clothes,v_uw9x69DT8_g,v_uw9x69DT8_g_3,3 959,v_PdwWFueQErM,no,is the person in the video wearing red clothes,v_PdwWFueQErM,v_PdwWFueQErM_3,3 960,v_an1R4BP97JY,yes,is the person in the video wearing red clothes,v_an1R4BP97JY,v_an1R4BP97JY_2,3 961,v_xS4twW2gXqc,no,does the person in red have long hair,v_xS4twW2gXqc,v_xS4twW2gXqc_3,3 962,v_VZ5R9goklpo,no,does the person in red have long hair,v_VZ5R9goklpo,v_VZ5R9goklpo_3,3 963,v_z6l9utYlIrw,no,does the person in red have long hair,v_z6l9utYlIrw,v_z6l9utYlIrw_3,3 964,v_aH39BSM0-Ag,no,does the person in red have long hair,v_aH39BSM0-Ag,v_aH39BSM0-Ag_3,3 965,v_9ZVWD0ZKXZg,no,does the person in red have long hair,v_9ZVWD0ZKXZg,v_9ZVWD0ZKXZg_3,3 966,v_OFTkwnSh-sQ,no,does the person in red have long hair,v_OFTkwnSh-sQ,v_OFTkwnSh-sQ_3,3 967,v_XxW4XWySzOw,no,does the person in red have long hair,v_XxW4XWySzOw,v_XxW4XWySzOw_3,3 968,v_XCfrjEJkl3M,no,does the person in red have long hair,v_XCfrjEJkl3M,v_XCfrjEJkl3M_3,3 969,v_g1na24Bd5Rs,yes,is the person in red wearing a hat,v_g1na24Bd5Rs,v_g1na24Bd5Rs_2,3 970,v_xS4twW2gXqc,yes,does the person in red have short hair,v_xS4twW2gXqc,v_xS4twW2gXqc_2,3 971,v_XCfrjEJkl3M,yes,does the person in red have short hair,v_XCfrjEJkl3M,v_XCfrjEJkl3M_2,3 972,v_VZ5R9goklpo,yes,does the person in red have short hair,v_VZ5R9goklpo,v_VZ5R9goklpo_2,3 973,v_75Tc1nPmZFQ,yes,does the person in red have short hair,v_75Tc1nPmZFQ,v_75Tc1nPmZFQ_2,3 974,v_XxW4XWySzOw,yes,does the person in red have short hair,v_XxW4XWySzOw,v_XxW4XWySzOw_2,3 975,v_nvcMYiZhUuo,yes,does the person in red have short hair,v_nvcMYiZhUuo,v_nvcMYiZhUuo_2,3 976,v_g1na24Bd5Rs,no,is the person in red wearing a hat,v_g1na24Bd5Rs,v_g1na24Bd5Rs_3,3 977,v_9ZVWD0ZKXZg,yes,does the person in red have blond hair,v_9ZVWD0ZKXZg,v_9ZVWD0ZKXZg_2,3 978,v_Pr5K2Jh2X94,no,does the person in red have blond hair,v_Pr5K2Jh2X94,v_Pr5K2Jh2X94_3,3 979,v_zA2zZPyYLlU,no,is the person in the video wearing a ring,v_zA2zZPyYLlU,v_zA2zZPyYLlU_10,3 980,v_qObVIn_GI10,no,is the person in the video wearing a ring on the right hand,v_qObVIn_GI10,v_qObVIn_GI10_3,3 981,v_Au4PfoK7hyw,yes,is the person in the video wearing a skirt,v_Au4PfoK7hyw,v_Au4PfoK7hyw_2,3 982,v_nDM4E9CD_y0,no,is the person in the video wearing a watch,v_nDM4E9CD_y0,v_nDM4E9CD_y0_3,3 983,v_9MN6GNhvwzA,no,is the person in the video wearing a watch,v_9MN6GNhvwzA,v_9MN6GNhvwzA_3,3 984,v_mZYWfmsYQPA,yes,is the person in the video wearing a watch,v_mZYWfmsYQPA,v_mZYWfmsYQPA_2,3 985,v_YRGiRmcHdUY,yes,is the person in the video wearing a watch,v_YRGiRmcHdUY,v_YRGiRmcHdUY_2,3 986,v_uLphvdhunTY,yes,is the person in the video wearing a watch on the right hand,v_uLphvdhunTY,v_uLphvdhunTY_2,3 987,v_0jdSl5-lMpY,no,is the person in the video wearing a watch on the right hand,v_0jdSl5-lMpY,v_0jdSl5-lMpY_3,3 988,v_dU7jG8G5li0,no,is the person in the video wearing a white coat,v_dU7jG8G5li0,v_dU7jG8G5li0_3,3 989,v_qZtdMXkHRXw,no,is the person in white coat wearing a hat,v_qZtdMXkHRXw,v_qZtdMXkHRXw_8,3 990,v_X2toGKgWMpE,no,is the person wearing white clothes a girl,v_X2toGKgWMpE,v_X2toGKgWMpE_3,3 991,v_X_K7Aa3Aa-E,yes,is the person wearing white clothes a girl,v_X_K7Aa3Aa-E,v_X_K7Aa3Aa-E_2,3 992,v_MonWdYi3a0I,yes,is the person wearing white clothes a girl,v_MonWdYi3a0I,v_MonWdYi3a0I_2,3 993,v_P5D9S9NzQ28,no,is the person wearing white clothes a lady,v_P5D9S9NzQ28,v_P5D9S9NzQ28_3,3 994,v_penDFcEdu7U,yes,is the person wearing white clothes a lady,v_penDFcEdu7U,v_penDFcEdu7U_6,3 995,v_pop8YCGQpWk,no,is the person wearing white clothes a lady,v_pop8YCGQpWk,v_pop8YCGQpWk_3,3 996,v_pKOy4HJwCqo,no,is the person wearing white clothes a lady,v_pKOy4HJwCqo,v_pKOy4HJwCqo_3,3 997,v_prBiREYQ2vQ,no,is the person at the beginning of the video wearing white clothes,v_prBiREYQ2vQ,v_prBiREYQ2vQ_3,3 998,v_YMOYyt3kSOs,no,does the person in white have black hair,v_YMOYyt3kSOs,v_YMOYyt3kSOs_3,3 999,v_30hcRe-5_3M,no,does the person in white have curly hair,v_30hcRe-5_3M,v_30hcRe-5_3M_3,3 1000,v_wh6P2C2avqc,no,is the person in the video wearing a white clothes,v_wh6P2C2avqc,v_wh6P2C2avqc_3,3 1001,v_penDFcEdu7U,yes,is the person in the video wearing a white clothes,v_penDFcEdu7U,v_penDFcEdu7U_2,3 1002,v_BBKSKU6dGGk,no,is the person in the video wearing a white clothes,v_BBKSKU6dGGk,v_BBKSKU6dGGk_3,3 1003,v_an1R4BP97JY,no,is the person in the video wearing a white clothes,v_an1R4BP97JY,v_an1R4BP97JY_3,3 1004,v_vzUeFzhVYLg,no,does the person in white have long hair,v_vzUeFzhVYLg,v_vzUeFzhVYLg_3,3 1005,v_gkwLhml3mnA,yes,is the person in white clothes wearing a hat,v_gkwLhml3mnA,v_gkwLhml3mnA_2,3 1006,v_nnEPsdA0080,no,is the person in white wearing a hat,v_nnEPsdA0080,v_nnEPsdA0080_3,3 1007,v_xizEiQZfJa4,yes,is the person in white wearing a hat,v_xizEiQZfJa4,v_xizEiQZfJa4_2,3 1008,v_afMQA352X_A,no,is the person in white wearing a hat,v_afMQA352X_A,v_afMQA352X_A_9,3 1009,v_gkwLhml3mnA,no,is the person in white wearing a hat,v_gkwLhml3mnA,v_gkwLhml3mnA_3,3 1010,v_Oh3-DvDCpZ4,yes,is the person in white wearing a hat,v_Oh3-DvDCpZ4,v_Oh3-DvDCpZ4_2,3 1011,v_836UrVGw6GI,yes,is the person in white wearing a hat,v_836UrVGw6GI,v_836UrVGw6GI_2,3 1012,v_y0ca-LbQErY,no,is the person in white wearing a hat,v_y0ca-LbQErY,v_y0ca-LbQErY_3,3 1013,v_qSP3_C7QWpU,no,is the person in white vest wearing a hat,v_qSP3_C7QWpU,v_qSP3_C7QWpU_10,3 1014,v_XCfrjEJkl3M,yes,is the person in yellow clothes a girl,v_XCfrjEJkl3M,v_XCfrjEJkl3M_10,3 1015,v_diY-XBT5cD4,no,is the person in the video wearing yellow clothes,v_diY-XBT5cD4,v_diY-XBT5cD4_3,3 1016,v_qgUHRwC3194,yes,is the person in black shorts swimming indoors,v_qgUHRwC3194,v_qgUHRwC3194_2,3 1017,v_qgUHRwC3194,no,is the person in black shorts swimming outdoors,v_qgUHRwC3194,v_qgUHRwC3194_3,3 1018,v_YaC68rE4lwA,yes,is the person in the video wearing glasses ,v_YaC68rE4lwA,v_YaC68rE4lwA_2,3 1019,v_9MN6GNhvwzA,yes,is the person in the video wearing glasses ,v_9MN6GNhvwzA,v_9MN6GNhvwzA_2,3 1020,v_oT6WUU8-dgs,no,is the person in the video wearing glasses ,v_oT6WUU8-dgs,v_oT6WUU8-dgs_3,3 1021,v_z6pmp8TrAVo,yes,is the person in the video wearing glasses ,v_z6pmp8TrAVo,v_z6pmp8TrAVo_2,3 1022,v_BmL2XGNrxc4,yes,is the person in the video wearing glasses ,v_BmL2XGNrxc4,v_BmL2XGNrxc4_8,3 1023,v_zEttEkAdHts,no,is the person in the video wearing gloves ,v_zEttEkAdHts,v_zEttEkAdHts_8,3 1024,v_YRGiRmcHdUY,no,is the person in the video wearing gloves ,v_YRGiRmcHdUY,v_YRGiRmcHdUY_3,3 1025,v_Z2gpcqXWNek,yes,is the person in the video wearing gloves ,v_Z2gpcqXWNek,v_Z2gpcqXWNek_2,3 1026,v_Au4PfoK7hyw,no,is the person in the video wearing jeans ,v_Au4PfoK7hyw,v_Au4PfoK7hyw_3,3 1027,v_mixxaL3Bdv8,no,is the person in orange clothes indoors,v_mixxaL3Bdv8,v_mixxaL3Bdv8_3,3 1028,v_qaml4eEk9hY,no,is the person in the video wearing shoes,v_qaml4eEk9hY,v_qaml4eEk9hY_8,3 1029,v_aNsj5OrEGLY,yes,is the person in the video wearing tshirt,v_aNsj5OrEGLY,v_aNsj5OrEGLY_2,3 1030,v_CDecXoRSpIc,yes,does the person in black tshirt have short hair,v_CDecXoRSpIc,v_CDecXoRSpIc_2,3 1031,v__jV5sAOOHLk,no,does the person in black have long hair,v__jV5sAOOHLk,v__jV5sAOOHLk_3,3 1032,v_W2eumNilwuI,no,does the person have blond and long hair ,v_W2eumNilwuI,v_W2eumNilwuI_3,3 1033,v_45hcc_VI4t4,yes,does the person have blond and long hair ,v_45hcc_VI4t4,v_45hcc_VI4t4_2,3 1034,v_W2eumNilwuI,yes,does the person have blond and short hair ,v_W2eumNilwuI,v_W2eumNilwuI_2,3 1035,v_45hcc_VI4t4,no,does the person have blond and short hair ,v_45hcc_VI4t4,v_45hcc_VI4t4_3,3 1036,v_z6pmp8TrAVo,yes,does the person in video have black hair,v_z6pmp8TrAVo,v_z6pmp8TrAVo_8,3 1037,v_SjlILJ2st-I,yes,is the player outdoors,v_SjlILJ2st-I,v_SjlILJ2st-I_2,3 1038,v_2uUNiV8xmEo,no,is the person playing hockey outdoors,v_2uUNiV8xmEo,v_2uUNiV8xmEo_3,3 1039,v_2uUNiV8xmEo,yes,is the person playing hockey outdoors,v_2uUNiV8xmEo,v_2uUNiV8xmEo_2,3 1040,v_rsU73H6VyG8,no,is the player with a pole indoors,v_rsU73H6VyG8,v_rsU73H6VyG8_3,3 1041,v_rsU73H6VyG8,yes,is the player with a pole outdoors,v_rsU73H6VyG8,v_rsU73H6VyG8_2,3 1042,v_0mNZfG6CL74,no,is the sport of pommel horse dangerous,v_0mNZfG6CL74,v_0mNZfG6CL74_10,3 1043,v_huFOZ2BiM_k,no,is the sport of pommel horse dangerous,v_huFOZ2BiM_k,v_huFOZ2BiM_k_10,3 1044,v_QPEAp7nf2Tk,no,is sliding dangerous,v_QPEAp7nf2Tk,v_QPEAp7nf2Tk_10,3 1045,v_zKYiTA6WBS4,no,is blowing hair with a hair dryer dangerous,v_zKYiTA6WBS4,v_zKYiTA6WBS4_9,3 1046,v_qiupddjDHDg,yes,is repairing the roof dangerous,v_qiupddjDHDg,v_qiupddjDHDg_8,3 1047,v_zPQodcasmSA,yes,is surfing dangerous,v_zPQodcasmSA,v_zPQodcasmSA_10,3 1048,v_qSP3_C7QWpU,yes,is the game in the video dangerous,v_qSP3_C7QWpU,v_qSP3_C7QWpU_8,3 1049,v_pKOy4HJwCqo,yes,is the sport in the video dangerous,v_pKOy4HJwCqo,v_pKOy4HJwCqo_7,3 1050,v_aPI0nPvzJlE,yes,is the sport in the video dangerous,v_aPI0nPvzJlE,v_aPI0nPvzJlE_9,3 1051,v_pMtu7fOHdII,yes,is the sport in the video dangerous,v_pMtu7fOHdII,v_pMtu7fOHdII_8,3 1052,v_P6Oq6C9X0fw,yes,is the sport in the video dangerous,v_P6Oq6C9X0fw,v_P6Oq6C9X0fw_6,3 1053,v_-pK2JheWido,yes,is the sport in the video dangerous,v_-pK2JheWido,v_-pK2JheWido_7,3 1054,v_390iVq_urQM,no,is the person in red wearing a scarf,v_390iVq_urQM,v_390iVq_urQM_3,3 1055,v_H2fG7JRRMAs,indoor,does the video take place indoors or outdoors,v_H2fG7JRRMAs,v_H2fG7JRRMAs_6,6 1056,v_Z-sWZUYL0ZU,indoor,does the video take place indoors or outdoors,v_Z-sWZUYL0ZU,v_Z-sWZUYL0ZU_10,6 1057,v_g9lNpSAtHgI,indoor,does the video take place indoors or outdoors,v_g9lNpSAtHgI,v_g9lNpSAtHgI_7,6 1058,v_g1na24Bd5Rs,indoor,does the video take place indoors or outdoors,v_g1na24Bd5Rs,v_g1na24Bd5Rs_8,6 1059,v_3uaQ0cULMgc,no,is the gender of the person in the video male,v_3uaQ0cULMgc,v_3uaQ0cULMgc_3,3 1060,v_3uaQ0cULMgc,yes,is the gender of the person in the video female,v_3uaQ0cULMgc,v_3uaQ0cULMgc_2,3 1061,v_zA2zZPyYLlU,no,is the boat in the video green,v_zA2zZPyYLlU,v_zA2zZPyYLlU_3,3 1062,v_RtF6TGqwa7Y,no,is the person sitting indoors,v_RtF6TGqwa7Y,v_RtF6TGqwa7Y_3,3 1063,v_RtF6TGqwa7Y,yes,is the person sitting outdoors,v_RtF6TGqwa7Y,v_RtF6TGqwa7Y_2,3 1064,v_rSGboODhu04,yes,is the person standing indoors,v_rSGboODhu04,v_rSGboODhu04_2,3 1065,v_RXDVJlb97OI,yes,is the person standing indoors,v_RXDVJlb97OI,v_RXDVJlb97OI_2,3 1066,v_jhy6npIdn5o,yes,is the person standing indoors,v_jhy6npIdn5o,v_jhy6npIdn5o_2,3 1067,v_kD_EJjQCLoY,yes,is the person standing indoors,v_kD_EJjQCLoY,v_kD_EJjQCLoY_2,3 1068,v_lUil9HfTzJ0,yes,is the preson in a swimsuit outdoors,v_lUil9HfTzJ0,v_lUil9HfTzJ0_2,3 1069,v_lUil9HfTzJ0,no,is the preson in a swimsuit outdoors,v_lUil9HfTzJ0,v_lUil9HfTzJ0_3,3 1070,v_4UdxT6Zmero,no,is the video taken indoors,v_4UdxT6Zmero,v_4UdxT6Zmero_3,3 1071,v_4UdxT6Zmero,yes,is the video taken outdoors,v_4UdxT6Zmero,v_4UdxT6Zmero_2,3 1072,v_gZB_XrTnDCI,sunny,is the weather in the video sunny or cloudy ,v_gZB_XrTnDCI,v_gZB_XrTnDCI_9,8 1073,v_qiupddjDHDg,yes,is the weather in the video sunny,v_qiupddjDHDg,v_qiupddjDHDg_6,3 1074,v_gNUCdXGxp0w,sunny,is the weather in the video sunny or cloudy ,v_gNUCdXGxp0w,v_gNUCdXGxp0w_9,8 1075,v_Zt9qvbUnNhc,sunny,is the weather in the video sunny or cloudy ,v_Zt9qvbUnNhc,v_Zt9qvbUnNhc_9,8 1076,v_zpaS2iYrJjk,sunny,is the weather in the video sunny or cloudy ,v_zpaS2iYrJjk,v_zpaS2iYrJjk_9,8 1077,v_Q5HdVXF390c,sunny,is the weather in the video sunny or cloudy ,v_Q5HdVXF390c,v_Q5HdVXF390c_10,8 1078,v_qKp2QCheLwU,sunny,is the weather in the video sunny or cloudy ,v_qKp2QCheLwU,v_qKp2QCheLwU_10,8 1079,v_CvbL36Y8hN0,no,is the woman in the video chinese,v_CvbL36Y8hN0,v_CvbL36Y8hN0_7,3 1080,v_6LsvBNqJuJY,yes,is the woman in the video indoors,v_6LsvBNqJuJY,v_6LsvBNqJuJY_2,3 1081,v_j81ndpMC9gI,yes,is the woman in the video indoors,v_j81ndpMC9gI,v_j81ndpMC9gI_2,3 1082,v_sfbgZOHLkII,no,is the woman in the video indoors,v_sfbgZOHLkII,v_sfbgZOHLkII_3,3 1083,v_cYvFlrAnlzA,yes,does the woman in the video have long hair,v_cYvFlrAnlzA,v_cYvFlrAnlzA_2,3 1084,v_F7K2oT7ADkk,yes,does the woman in the video have long hair,v_F7K2oT7ADkk,v_F7K2oT7ADkk_2,3 1085,v_FEOdYNR4gls,no,does the woman in the video have long hair,v_FEOdYNR4gls,v_FEOdYNR4gls_3,3 1086,v_cQgP0-Id-p4,yes,does the woman in the video have long hair,v_cQgP0-Id-p4,v_cQgP0-Id-p4_2,3 1087,v_Db9VWkgMpbE,yes,does the woman in the video have long hair,v_Db9VWkgMpbE,v_Db9VWkgMpbE_2,3 1088,v_d4sX1jnL4BY,yes,does the woman in the video have long hair,v_d4sX1jnL4BY,v_d4sX1jnL4BY_2,3 1089,v_CuLC5G7yWxA,yes,does the woman in the video have long hair,v_CuLC5G7yWxA,v_CuLC5G7yWxA_2,3 1090,v_6LsvBNqJuJY,no,is the woman in the video outdoors,v_6LsvBNqJuJY,v_6LsvBNqJuJY_3,3 1091,v_j81ndpMC9gI,no,is the woman in the video outdoors,v_j81ndpMC9gI,v_j81ndpMC9gI_3,3 1092,v_sfbgZOHLkII,yes,is the woman in the video outdoors,v_sfbgZOHLkII,v_sfbgZOHLkII_2,3 1093,v_cYvFlrAnlzA,no,does the woman in the video have short hair,v_cYvFlrAnlzA,v_cYvFlrAnlzA_3,3 1094,v_F7K2oT7ADkk,no,does the woman in the video have short hair,v_F7K2oT7ADkk,v_F7K2oT7ADkk_3,3 1095,v_FEOdYNR4gls,yes,does the woman in the video have short hair,v_FEOdYNR4gls,v_FEOdYNR4gls_2,3 1096,v_cQgP0-Id-p4,no,does the woman in the video have short hair,v_cQgP0-Id-p4,v_cQgP0-Id-p4_3,3 1097,v_Db9VWkgMpbE,no,does the woman in the video have short hair,v_Db9VWkgMpbE,v_Db9VWkgMpbE_3,3 1098,v_d4sX1jnL4BY,no,does the woman in the video have short hair,v_d4sX1jnL4BY,v_d4sX1jnL4BY_3,3 1099,v_F7K2oT7ADkk,no,is the woman in the video wearing a black dress,v_F7K2oT7ADkk,v_F7K2oT7ADkk_6,3 1100,v_-CqVpCRxwTY,no,is the woman in the video wearing a black dress,v_-CqVpCRxwTY,v_-CqVpCRxwTY_3,3 1101,v_-CqVpCRxwTY,yes,is the woman in the video wearing a white dress,v_-CqVpCRxwTY,v_-CqVpCRxwTY_2,3 1102,v_DTI__3fkSzM,yes,is the woman wearing a ring on her left hand,v_DTI__3fkSzM,v_DTI__3fkSzM_8,3 1103,v_PdwWFueQErM,yes,is there a car in the video,v_PdwWFueQErM,v_PdwWFueQErM_10,3 1104,v_4uKoAk5NCkI,yes,is there a car in the video,v_4uKoAk5NCkI,v_4uKoAk5NCkI_10,3 1105,v_hvrKRg166eQ,yes,is there a cup on the table,v_hvrKRg166eQ,v_hvrKRg166eQ_2,3 1106,v_atGMJc-DZ7w,yes,is there a person with hat in the video,v_atGMJc-DZ7w,v_atGMJc-DZ7w_7,3 1107,v_qiTQ02NDSlQ,no,is making sandwichs difficult,v_qiTQ02NDSlQ,v_qiTQ02NDSlQ_10,3 1108,v_zOI9SjQpc_Q,yes,is playing football difficult,v_zOI9SjQpc_Q,v_zOI9SjQpc_Q_9,3 1109,v_Znb6Y9m_PsQ,no,is playing table football difficult,v_Znb6Y9m_PsQ,v_Znb6Y9m_PsQ_9,3 1110,v_gkwLhml3mnA,no,is playing tai chi difficult,v_gkwLhml3mnA,v_gkwLhml3mnA_10,3 1111,v_QJ5xv6oj1sk,no,is playing tai chi difficult,v_QJ5xv6oj1sk,v_QJ5xv6oj1sk_9,3 1112,v_ZnKB0U96ZI4,no,is playing tennis difficult,v_ZnKB0U96ZI4,v_ZnKB0U96ZI4_10,3 1113,v_pPt_fygNjtQ,yes,is there a man in the video,v_pPt_fygNjtQ,v_pPt_fygNjtQ_8,3 1114,v_PSB1nM3QXxg,yes,is there a man in the video,v_PSB1nM3QXxg,v_PSB1nM3QXxg_8,3 1115,v_prBiREYQ2vQ,yes,does this sport in the olympic games,v_prBiREYQ2vQ,v_prBiREYQ2vQ_8,3 1116,v_P5D9S9NzQ28,yes,does this sport in the olympic games,v_P5D9S9NzQ28,v_P5D9S9NzQ28_10,3 1117,v_aPI0nPvzJlE,yes,is there only one person in the video,v_aPI0nPvzJlE,v_aPI0nPvzJlE_2,3 1118,v_penDFcEdu7U,yes,is there only one person in the video,v_penDFcEdu7U,v_penDFcEdu7U_8,3 1119,v_p1QGn0IzfW0,yes,does this sport in the olympic games,v_p1QGn0IzfW0,v_p1QGn0IzfW0_8,3 1120,v_pop8YCGQpWk,yes,does this sport in the olympic games,v_pop8YCGQpWk,v_pop8YCGQpWk_7,3 1121,v_9TjPn_ejmFU,no,is this operation difficult,v_9TjPn_ejmFU,v_9TjPn_ejmFU_8,3 1122,v_p54LLMnyg54,yes,is the work of tiling dangerous,v_p54LLMnyg54,v_p54LLMnyg54_9,3 1123,v_li_mry59KCM,yes,is this person wearing a hat,v_li_mry59KCM,v_li_mry59KCM_2,3 1124,v_lfbspF18Wrw,no,is this person wearing a hat,v_lfbspF18Wrw,v_lfbspF18Wrw_3,3 1125,v_li_mry59KCM,no,is this person wearing glasses,v_li_mry59KCM,v_li_mry59KCM_3,3 1126,v_lfbspF18Wrw,yes,is this person wearing glasses,v_lfbspF18Wrw,v_lfbspF18Wrw_2,3 1127,v_BkDbDnvoL28,yes,is the act dangerous,v_BkDbDnvoL28,v_BkDbDnvoL28_9,3 1128,v_pVoM_kUQ4_E,no,is the act dangerous,v_pVoM_kUQ4_E,v_pVoM_kUQ4_E_8,3 1129,v_atGMJc-DZ7w,no,is the sport difficult,v_atGMJc-DZ7w,v_atGMJc-DZ7w_8,3 1130,v_hIYN8cC3pEA,yes,is the activity in the video dangerous,v_hIYN8cC3pEA,v_hIYN8cC3pEA_10,3 1131,v_p1QGn0IzfW0,yes,is the sport difficult,v_p1QGn0IzfW0,v_p1QGn0IzfW0_9,3 1132,v_Npj77L31bhw,shopkeepers and customers,what is the relationshio between the two perple in the video,v_Npj77L31bhw,v_Npj77L31bhw_10,8 1133,v_A9VCuZ53ObQ,friend,what is the relationshio between the two perple in the video,v_A9VCuZ53ObQ,v_A9VCuZ53ObQ_10,5 1134,v_Y_nyVFn70Lk,brother,what is the relationshio between the two perple in the video,v_Y_nyVFn70Lk,v_Y_nyVFn70Lk_8,8 1135,v_04qggWACGWk,bath towel,how is the feeling of person in the video ,v_04qggWACGWk,v_04qggWACGWk_7,5 1136,v_sH_716hH_rY,sunny,how is the weather in the video,v_sH_716hH_rY,v_sH_716hH_rY_6,8 1137,v_4LoAbHdHWqM,tie rope,what are the adults doing in the video,v_4LoAbHdHWqM,v_4LoAbHdHWqM_1,0 1138,v_qlK-c7hRqcA,combat training,what are all the people doing in the video,v_qlK-c7hRqcA,v_qlK-c7hRqcA_1,0 1139,v_R-hsYQNtnn0,play football on table,what are all the people doing in the video,v_R-hsYQNtnn0,v_R-hsYQNtnn0_1,0 1140,v_09ocXmGF-T4,chipping potatoes,what is person in black doing,v_09ocXmGF-T4,v_09ocXmGF-T4_1,0 1141,v_JcAAwYpJhm8,dishwashing,what is the kid doing,v_JcAAwYpJhm8,v_JcAAwYpJhm8_1,0 1142,v_rM02KWikOo8,skateboard with water,what is the kid doing,v_rM02KWikOo8,v_rM02KWikOo8_1,0 1143,v_sqv3M6MPKjQ,defoliation,what is the kid doing,v_sqv3M6MPKjQ,v_sqv3M6MPKjQ_1,0 1144,v_sk_pnoqXxhs,brush ones teeth,what is the kid doing,v_sk_pnoqXxhs,v_sk_pnoqXxhs_1,0 1145,v_RXT17X7lRoQ,baton tennis,what is the kid doing,v_RXT17X7lRoQ,v_RXT17X7lRoQ_1,0 1146,v_K1LiXUpoSmI,play ball,what is the kid doing,v_K1LiXUpoSmI,v_K1LiXUpoSmI_1,0 1147,v_MAYrBia9Xnw,performing martial arts,what is the kid doing,v_MAYrBia9Xnw,v_MAYrBia9Xnw_1,0 1148,v_Ki1bs5X_S5k,play,what is the kid doing,v_Ki1bs5X_S5k,v_Ki1bs5X_S5k_1,0 1149,v_bWZkD_s1940,dance,what's the girl in black doing in the video,v_bWZkD_s1940,v_bWZkD_s1940_1,0 1150,v_VSsZZZHn1L0,gargle,what's the girl in black doing in the video,v_VSsZZZHn1L0,v_VSsZZZHn1L0_1,0 1151,v_i_LT0ef1n-Y,slider,what is the man in red clothes doing,v_i_LT0ef1n-Y,v_i_LT0ef1n-Y_1,0 1152,v_iqyc2JM0uIU,wine dressing,what is the man in red clothes doing,v_iqyc2JM0uIU,v_iqyc2JM0uIU_1,0 1153,v_7BFbmEY3BNw,rowing,what is the man in red clothes doing,v_7BFbmEY3BNw,v_7BFbmEY3BNw_1,0 1154,v_BMy7CBVxH5M,pacify horse,what is the man doing in the video,v_BMy7CBVxH5M,v_BMy7CBVxH5M_1,0 1155,v_e-Xf13exY4E,drum,what is the man in white clothes doing,v_e-Xf13exY4E,v_e-Xf13exY4E_1,0 1156,v_ivAvKRQQy1Q,cook dish,what is the man in white clothes doing,v_ivAvKRQQy1Q,v_ivAvKRQQy1Q_1,0 1157,v_e0yLhjXQIXI,do floor exercises,what is the man in white clothes doing,v_e0yLhjXQIXI,v_e0yLhjXQIXI_1,0 1158,v_iAes5SVj_Fg,match,what's the man in blue and black pants doing,v_iAes5SVj_Fg,v_iAes5SVj_Fg_1,0 1159,v_6Xsfwn5M6qs,gymnastics in parallel bars,what is the man in blue pants doing,v_6Xsfwn5M6qs,v_6Xsfwn5M6qs_1,0 1160,v_EQWdo0FcKAo,dance,what is the man in white clothes doing,v_EQWdo0FcKAo,v_EQWdo0FcKAo_1,0 1161,v_b_mWxzi_aps,be referee,what's the person in the black and white striped shirt doing,v_b_mWxzi_aps,v_b_mWxzi_aps_1,0 1162,v_BjjN_aq_wq4,dishware,what's the person in the black and white striped shirt doing,v_BjjN_aq_wq4,v_BjjN_aq_wq4_1,0 1163,v_-YwrMtiqHKg,skin care,what is the person in the video doing,v_-YwrMtiqHKg,v_-YwrMtiqHKg_1,0 1164,v_Pjnuoa4o55c,train,what is the person in the video doing,v_Pjnuoa4o55c,v_Pjnuoa4o55c_1,0 1165,v_d09u-0k3LdE,hammer throw,what is the person in the video doing,v_d09u-0k3LdE,v_d09u-0k3LdE_1,0 1166,v_Pv4FwH2TC6Y,draw eyes shadow,what is the person in the video doing,v_Pv4FwH2TC6Y,v_Pv4FwH2TC6Y_1,0 1167,v_sH_716hH_rY,wash horse,what is the person in the video doing,v_sH_716hH_rY,v_sH_716hH_rY_1,0 1168,v_3uaQ0cULMgc,car wash,what is the person in the video doing,v_3uaQ0cULMgc,v_3uaQ0cULMgc_1,0 1169,v_lU6DMCif3eE,play musical instrument,what is the person in the video doing,v_lU6DMCif3eE,v_lU6DMCif3eE_1,0 1170,v_SGAUpoTMSnA,kayaking,what is the person in the video doing,v_SGAUpoTMSnA,v_SGAUpoTMSnA_1,0 1171,v_mvRoVXRGVGw,skiing,what is the person in the video doing,v_mvRoVXRGVGw,v_mvRoVXRGVGw_1,0 1172,v_S7CW-si2JjA,make cake,what is the person in the video doing,v_S7CW-si2JjA,v_S7CW-si2JjA_1,0 1173,v_yCpdDJAW-jU,sweep snow for cars,what is the person in the video doing,v_yCpdDJAW-jU,v_yCpdDJAW-jU_1,0 1174,v_fMVuGUBs2cs,wine dressing,what is the person in the video doing,v_fMVuGUBs2cs,v_fMVuGUBs2cs_1,0 1175,v_AsdsR27UnJ0,brush ones teeth,what is the person in the video doing,v_AsdsR27UnJ0,v_AsdsR27UnJ0_1,0 1176,v_N9VOdVOiPNM,paracentesis,what is the person in the video doing,v_N9VOdVOiPNM,v_N9VOdVOiPNM_1,0 1177,v_d_A-ylxNbFU,drink,what is the person in the video doing,v_d_A-ylxNbFU,v_d_A-ylxNbFU_1,0 1178,v_AguxVxEWEs0,practice martial arts,what is the person in the video doing,v_AguxVxEWEs0,v_AguxVxEWEs0_1,0 1179,v_aNsj5OrEGLY,make cold dishes,what is the person in the video doing,v_aNsj5OrEGLY,v_aNsj5OrEGLY_1,0 1180,v_fbr7v8RMkf8,skiing,what is the person in the video doing,v_fbr7v8RMkf8,v_fbr7v8RMkf8_1,0 1181,v_-crpjVnFv0U,dance,what is the person in the video doing,v_-crpjVnFv0U,v_-crpjVnFv0U_1,0 1182,v_YaC68rE4lwA,contain water,what is the person in the video doing,v_YaC68rE4lwA,v_YaC68rE4lwA_1,0 1183,v_eJc8bebOF2A,put shot,what is the person in the video doing,v_eJc8bebOF2A,v_eJc8bebOF2A_1,0 1184,v_K5jY2chByPw,bathe horse,what is the person in the video doing,v_K5jY2chByPw,v_K5jY2chByPw_1,0 1185,v_H9PaZiWLgXU,making cocktails,what is the person in the video doing,v_H9PaZiWLgXU,v_H9PaZiWLgXU_1,0 1186,v_qaml4eEk9hY,clean room,what is the person in the video doing,v_qaml4eEk9hY,v_qaml4eEk9hY_1,0 1187,v_p54LLMnyg54,wipe glass,what is the person in the video doing,v_p54LLMnyg54,v_p54LLMnyg54_1,0 1188,v_nDM4E9CD_y0,shovel snow,what is the person in the video doing,v_nDM4E9CD_y0,v_nDM4E9CD_y0_1,0 1189,v_0e5zwJywyqk,make spaghetti,what is the person in the video doing,v_0e5zwJywyqk,v_0e5zwJywyqk_1,0 1190,v_k3WPc9HmtLM,make cake,what is the person in the video doing,v_k3WPc9HmtLM,v_k3WPc9HmtLM_1,0 1191,v_penDFcEdu7U,dig up soil,what is the person in the video doing,v_penDFcEdu7U,v_penDFcEdu7U_1,0 1192,v_mVAP-WyEc7w,cut tomato,what is the person in the video doing,v_mVAP-WyEc7w,v_mVAP-WyEc7w_1,0 1193,v_aAz3YL2RMr4,tattoo,what is the person in the video doing,v_aAz3YL2RMr4,v_aAz3YL2RMr4_1,0 1194,v_N5Dt3ycaun4,boxing,what is the person in the video doing,v_N5Dt3ycaun4,v_N5Dt3ycaun4_1,0 1195,v_uLphvdhunTY,bodybuilding,what is the person in the video doing,v_uLphvdhunTY,v_uLphvdhunTY_1,0 1196,v_dFGS7YCDk3Y,sailing competition,what is the person in the video doing,v_dFGS7YCDk3Y,v_dFGS7YCDk3Y_1,0 1197,v_9MN6GNhvwzA,hopping hula hoop,what is the person in the video doing,v_9MN6GNhvwzA,v_9MN6GNhvwzA_1,0 1198,v_U2cCOj3LiAA,bodybuilding,what is the person in the video doing,v_U2cCOj3LiAA,v_U2cCOj3LiAA_1,0 1199,v_N4qhryre_TE,somersault,what is the person in the video doing,v_N4qhryre_TE,v_N4qhryre_TE_1,0 1200,v_FaP7unySMOs,match,what is the person in the video doing,v_FaP7unySMOs,v_FaP7unySMOs_1,0 1201,v_Feq-2NIDl94,paint fingernails,what is the person in the video doing,v_Feq-2NIDl94,v_Feq-2NIDl94_1,0 1202,v_0k6GFx2ZCg8,make sandwich,what is the person in the video doing,v_0k6GFx2ZCg8,v_0k6GFx2ZCg8_1,0 1203,v_PTwe2IIo3To,dance,what is the person in the video doing,v_PTwe2IIo3To,v_PTwe2IIo3To_1,0 1204,v_5nu47s7JrfY,make sandwich,what is the person in the video doing,v_5nu47s7JrfY,v_5nu47s7JrfY_1,0 1205,v_CKSlgK_2FP4,introduce tool,what is the person in the video doing,v_CKSlgK_2FP4,v_CKSlgK_2FP4_1,0 1206,v_Ar6TcWqwK-A,dishware,what is the person in the video doing,v_Ar6TcWqwK-A,v_Ar6TcWqwK-A_1,0 1207,v_TiQcZKml5Bs,walk dog,what is the person in the video doing,v_TiQcZKml5Bs,v_TiQcZKml5Bs_1,0 1208,v_OYEKKzQjaJI,make ice cream,what is the person in the video doing,v_OYEKKzQjaJI,v_OYEKKzQjaJI_1,0 1209,v_Y05GAiavfOg,manicure,what is the person in the video doing,v_Y05GAiavfOg,v_Y05GAiavfOg_1,0 1210,v_Dd5yTxwKzXw,make hair,what is the person in the video doing,v_Dd5yTxwKzXw,v_Dd5yTxwKzXw_1,0 1211,v_udSHsodv3gY,brushing horse,what is the person in the video doing,v_udSHsodv3gY,v_udSHsodv3gY_1,0 1212,v_zEttEkAdHts,wrapping paper,what is the person in the video doing,v_zEttEkAdHts,v_zEttEkAdHts_1,0 1213,v_fLR-b-FDjlM,play game,what is the person in the video doing,v_fLR-b-FDjlM,v_fLR-b-FDjlM_1,0 1214,v_Oyycph_Ukfg,wear shoe,what is the person in the video doing,v_Oyycph_Ukfg,v_Oyycph_Ukfg_1,0 1215,v_4YF9R3Sz2bA,skiing,what is the person in the video doing,v_4YF9R3Sz2bA,v_4YF9R3Sz2bA_1,0 1216,v_StGxFfLiYNU,play with sand,what is the person in the video doing,v_StGxFfLiYNU,v_StGxFfLiYNU_1,0 1217,v_hG4VsZQQ2_c,chopping wood,what is the person in the video doing,v_hG4VsZQQ2_c,v_hG4VsZQQ2_c_1,0 1218,v_KsFid_YVsn0,dance,what is the person in the video doing,v_KsFid_YVsn0,v_KsFid_YVsn0_1,0 1219,v_AQ3eFWxZ67U,smear sunscreen,what is the person in the video doing,v_AQ3eFWxZ67U,v_AQ3eFWxZ67U_1,0 1220,v__zqj6daJo9U,weightlifting,what is the person in the video doing,v__zqj6daJo9U,v__zqj6daJo9U_1,0 1221,v_nbHBjdE8oNo,do some washing,what is the person in the video doing,v_nbHBjdE8oNo,v_nbHBjdE8oNo_1,0 1222,v_4MwnHtlaEUY,assemble bicycle,what is the person in the video doing,v_4MwnHtlaEUY,v_4MwnHtlaEUY_1,0 1223,v_PD-FXR7O9J0,bathe dog,what is the person in the video doing,v_PD-FXR7O9J0,v_PD-FXR7O9J0_1,0 1224,v_n832gDqfWl4,shoe polish,what is the person in the video doing,v_n832gDqfWl4,v_n832gDqfWl4_1,0 1225,v_Db9VWkgMpbE,bodybuilding,what is the person in the video doing,v_Db9VWkgMpbE,v_Db9VWkgMpbE_1,0 1226,v_cCDffwsJvsY,fire,what is the person in the video doing,v_cCDffwsJvsY,v_cCDffwsJvsY_1,0 1227,v_YRGiRmcHdUY,sharpening,what is the person in the video doing,v_YRGiRmcHdUY,v_YRGiRmcHdUY_1,0 1228,v_6JZVpl2S2Mg,wear contact lenses,what is the person in the video doing,v_6JZVpl2S2Mg,v_6JZVpl2S2Mg_1,0 1229,v_stdtUoog49I,parade,what is the person in the video doing,v_stdtUoog49I,v_stdtUoog49I_1,0 1230,v_AB480dHyDeM,brush shoes,what is the person in the video doing,v_AB480dHyDeM,v_AB480dHyDeM_1,0 1231,v_MDWaKr7Gu5Q,cleaning deciduous leaves,what is the person in the video doing,v_MDWaKr7Gu5Q,v_MDWaKr7Gu5Q_1,0 1232,v_atGMJc-DZ7w,wash clothes,what is the person in the video doing,v_atGMJc-DZ7w,v_atGMJc-DZ7w_1,0 1233,v_yUvSujxnFE0,play tennis,what is the person in the video doing,v_yUvSujxnFE0,v_yUvSujxnFE0_1,0 1234,v_oT6WUU8-dgs,clink with dog,what is the person in the video doing,v_oT6WUU8-dgs,v_oT6WUU8-dgs_1,0 1235,v_NJRrhNrEMsk,tires dismantling,what is the person in the video doing,v_NJRrhNrEMsk,v_NJRrhNrEMsk_1,0 1236,v_-pkfcMUIEMo,snow removal,what is the person in the video doing,v_-pkfcMUIEMo,v_-pkfcMUIEMo_1,0 1237,v_qObVIn_GI10,squeezed juice,what is the person in the video doing,v_qObVIn_GI10,v_qObVIn_GI10_1,0 1238,v_mZYWfmsYQPA,play table tennis,what is the person in the video doing,v_mZYWfmsYQPA,v_mZYWfmsYQPA_1,0 1239,v_uw9x69DT8_g,run,what is the person in the video doing,v_uw9x69DT8_g,v_uw9x69DT8_g_1,0 1240,v_Z2gpcqXWNek,bathe dog,what is the person in the video doing,v_Z2gpcqXWNek,v_Z2gpcqXWNek_1,0 1241,v_VvsYrfEvvUw,bodybuilding,what is the person in the video doing,v_VvsYrfEvvUw,v_VvsYrfEvvUw_1,0 1242,v_fEBM3nPMen8,diving,what is the person in the video doing,v_fEBM3nPMen8,v_fEBM3nPMen8_1,0 1243,v_T0nCDJuikuA,decorating christmas tree,what is the person in the video doing,v_T0nCDJuikuA,v_T0nCDJuikuA_1,0 1244,v_fSBX-gjPblw,shooting,what is the person in the video doing,v_fSBX-gjPblw,v_fSBX-gjPblw_1,0 1245,v_uM7QSskmloo,pruning branches,what is the person in the video doing,v_uM7QSskmloo,v_uM7QSskmloo_1,0 1246,v_yGTIEmZ7S2w,javelin throw,what is the person in the video doing,v_yGTIEmZ7S2w,v_yGTIEmZ7S2w_1,0 1247,v_1dDAcUliXrQ,shuttlecock,what is the person in the video doing,v_1dDAcUliXrQ,v_1dDAcUliXrQ_1,0 1248,v_w10Nr_wOh8g,wallpaper,what is the person in the video doing,v_w10Nr_wOh8g,v_w10Nr_wOh8g_1,0 1249,v_4uKoAk5NCkI,practice stick method,what is the person in the video doing,v_4uKoAk5NCkI,v_4uKoAk5NCkI_1,0 1250,v_n9EdHGz7ArI,drink,what is the person in the video doing,v_n9EdHGz7ArI,v_n9EdHGz7ArI_1,0 1251,v_zA2zZPyYLlU,control remote control ship,what is the person in the video doing,v_zA2zZPyYLlU,v_zA2zZPyYLlU_1,0 1252,v_TnP6coXzbLY,assembling tires,what is the person in the video doing,v_TnP6coXzbLY,v_TnP6coXzbLY_1,0 1253,v_PdwWFueQErM,sweeping snow,what is the person in the video doing,v_PdwWFueQErM,v_PdwWFueQErM_1,0 1254,v_OlR9S70AA74,sailing,what is the person in the video doing,v_OlR9S70AA74,v_OlR9S70AA74_1,0 1255,v_W9H2qVnIWXs,bathe dog,what is the person in the video doing,v_W9H2qVnIWXs,v_W9H2qVnIWXs_1,0 1256,v_T3mcQnlsmq4,cut nails for cat,what is the person in the video doing,v_T3mcQnlsmq4,v_T3mcQnlsmq4_1,0 1257,v_0jdSl5-lMpY,assembly slate,what is the person in the video doing,v_0jdSl5-lMpY,v_0jdSl5-lMpY_1,0 1258,v_nc_NMp3vAH0,push ice pot,what is the person in the video doing,v_nc_NMp3vAH0,v_nc_NMp3vAH0_1,0 1259,v_wh6P2C2avqc,physical exercise,what is the person in the video doing,v_wh6P2C2avqc,v_wh6P2C2avqc_1,0 1260,v_Uae2MWoldTU,assemble christmas tree,what is the person in the video doing,v_Uae2MWoldTU,v_Uae2MWoldTU_1,0 1261,v_04qggWACGWk,hair removal,what is the person in the video doing,v_04qggWACGWk,v_04qggWACGWk_1,0 1262,v_pKOy4HJwCqo,surfing,what is the person in the video doing,v_pKOy4HJwCqo,v_pKOy4HJwCqo_1,0 1263,v_ngMxE3CnGVg,making lollipops,what is the person in the video doing,v_ngMxE3CnGVg,v_ngMxE3CnGVg_1,0 1264,v_N75m1Z4RqbA,dance,what is the person in the video doing,v_N75m1Z4RqbA,v_N75m1Z4RqbA_1,0 1265,v_1vTHJMMPZN0,surfing,what is the person in the video doing,v_1vTHJMMPZN0,v_1vTHJMMPZN0_1,0 1266,v_aPI0nPvzJlE,surfing,what is the person in the video doing,v_aPI0nPvzJlE,v_aPI0nPvzJlE_1,0 1267,v_auO4r3De6vc,match,what is the person in the video doing,v_auO4r3De6vc,v_auO4r3De6vc_1,0 1268,v_CvbL36Y8hN0,bungee jumping,what is the person in the video doing,v_CvbL36Y8hN0,v_CvbL36Y8hN0_1,0 1269,v_4j_LRkB4T6c,dance,what is the person in the video doing,v_4j_LRkB4T6c,v_4j_LRkB4T6c_1,0 1270,v_dU7jG8G5li0,make cake,what is the person in the video doing,v_dU7jG8G5li0,v_dU7jG8G5li0_1,0 1271,v_4UdxT6Zmero,weed,what is the person in the video doing,v_4UdxT6Zmero,v_4UdxT6Zmero_1,0 1272,v_Aj5ncX5G_2w,handcraft,what is the person in the video doing,v_Aj5ncX5G_2w,v_Aj5ncX5G_2w_1,0 1273,v_3JBUWRKezUI,clean glass,what is the person in the video doing,v_3JBUWRKezUI,v_3JBUWRKezUI_1,0 1274,v_-pK2JheWido,skiing,what is the person in the video doing,v_-pK2JheWido,v_-pK2JheWido_1,0 1275,v_CuLC5G7yWxA,wallpaper,what is the person in the video doing,v_CuLC5G7yWxA,v_CuLC5G7yWxA_1,0 1276,v_Db2Dnt2OOo0,tattoo,what is the person in the video doing,v_Db2Dnt2OOo0,v_Db2Dnt2OOo0_1,0 1277,v_Of2Umm79Kxg,loading chain,what is the person in the video doing,v_Of2Umm79Kxg,v_Of2Umm79Kxg_1,0 1278,v_NjXCZYO3zwU,play magic cube,what is the person in the video doing,v_NjXCZYO3zwU,v_NjXCZYO3zwU_1,0 1279,v_0lbv0AE5gJQ,wash clothes,what is the person in the video doing,v_0lbv0AE5gJQ,v_0lbv0AE5gJQ_1,0 1280,v_LL0uQO4q_wY,push ice pot,what is the person in the video doing,v_LL0uQO4q_wY,v_LL0uQO4q_wY_1,0 1281,v_cVFVREeD6hM,landscaping,what is the person in the video doing,v_cVFVREeD6hM,v_cVFVREeD6hM_1,0 1282,v_BD9CAqD1Yf8,play volleyball,what is the person in the video doing,v_BD9CAqD1Yf8,v_BD9CAqD1Yf8_1,0 1283,v_2nDJpvD-eZU,chipping potatoes,what is the person in the video doing,v_2nDJpvD-eZU,v_2nDJpvD-eZU_1,0 1284,v_Av0VsTxJd78,skiing,what is the person in the video doing,v_Av0VsTxJd78,v_Av0VsTxJd78_1,0 1285,v_b_c17BmZCCs,match,what is the person in the video doing,v_b_c17BmZCCs,v_b_c17BmZCCs_1,0 1286,v_CwImmV7q1MY,play harmonica,what is the person in the video doing,v_CwImmV7q1MY,v_CwImmV7q1MY_1,0 1287,v_HTYzbAFUghU,cooking,what is the person in the video doing,v_HTYzbAFUghU,v_HTYzbAFUghU_1,0 1288,v_z6pmp8TrAVo,dishwashing,what is the person in the video doing,v_z6pmp8TrAVo,v_z6pmp8TrAVo_1,0 1289,v_diY-XBT5cD4,wear contact lenses,what is the person in the video doing,v_diY-XBT5cD4,v_diY-XBT5cD4_1,0 1290,v_2k-qlZxc9l4,shave legs,what is the person in the video doing,v_2k-qlZxc9l4,v_2k-qlZxc9l4_1,0 1291,v_HPKHDze6XfA,taking something,what is the person in the video doing,v_HPKHDze6XfA,v_HPKHDze6XfA_1,0 1292,v_BmL2XGNrxc4,chopping wood,what is the person in the video doing,v_BmL2XGNrxc4,v_BmL2XGNrxc4_1,0 1293,v_AB5cWhlQ0Kk,decorating christmas tree,what is the person in the video doing,v_AB5cWhlQ0Kk,v_AB5cWhlQ0Kk_1,0 1294,v_Au4PfoK7hyw,perform,what is the person in the video doing,v_Au4PfoK7hyw,v_Au4PfoK7hyw_1,0 1295,v_BBKSKU6dGGk,snow removal,what is the person in the video doing,v_BBKSKU6dGGk,v_BBKSKU6dGGk_1,0 1296,v_Nb6AQxxrihA,drinking,what is the person in the video doing,v_Nb6AQxxrihA,v_Nb6AQxxrihA_1,0 1297,v_v0azz4XzW_s,play weeding machine,what is the person in the video doing,v_v0azz4XzW_s,v_v0azz4XzW_s_1,0 1298,v_Yg03CCu9GMo,wine dressing,what is the person in the video doing,v_Yg03CCu9GMo,v_Yg03CCu9GMo_1,0 1299,v_chmegNbBTNc,clean desk,what is the person in the video doing,v_chmegNbBTNc,v_chmegNbBTNc_1,0 1300,v_eKdtOKqLMRE,drum,what is the person in the video doing,v_eKdtOKqLMRE,v_eKdtOKqLMRE_1,0 1301,v_nbOsU2Vmp1U,make drink,what is the person in the video doing,v_nbOsU2Vmp1U,v_nbOsU2Vmp1U_1,0 1302,v_a4gI4LC1rJk,peeling sweet potatoes,what is the person in the video doing,v_a4gI4LC1rJk,v_a4gI4LC1rJk_1,0 1303,v_gsQ-OEvrxjo,licensing,what does the person in white clothes doing at the beginning of the video,v_gsQ-OEvrxjo,v_gsQ-OEvrxjo_1,0 1304,v_R74yolowFPs,play game,what does the person in black tshirt doing at the beginning of the video,v_R74yolowFPs,v_R74yolowFPs_1,0 1305,v_r2H-cnti8GI,play magic cube,what is the person in a black and white shirt doing,v_r2H-cnti8GI,v_r2H-cnti8GI_1,0 1306,v_G4-qjGC_3VA,pole vault,what is the person in black doing,v_G4-qjGC_3VA,v_G4-qjGC_3VA_1,0 1307,v_5k2Ot6-wOgc,bowling,what is the person in black doing,v_5k2Ot6-wOgc,v_5k2Ot6-wOgc_1,0 1308,v_lPw_BRbPw5s,dance,what is the person in black doing,v_lPw_BRbPw5s,v_lPw_BRbPw5s_1,0 1309,v_mUmSJps9WJI,decorating christmas tree,what is the person in black doing,v_mUmSJps9WJI,v_mUmSJps9WJI_1,0 1310,v_pmmQuksmTvw,match,what is the person in black doing,v_pmmQuksmTvw,v_pmmQuksmTvw_1,0 1311,v_k--dW53UQWs,bodybuilding,what is the person in black doing,v_k--dW53UQWs,v_k--dW53UQWs_1,0 1312,v_PkRvgIFREJU,skip lattices,what is the person in black doing,v_PkRvgIFREJU,v_PkRvgIFREJU_1,0 1313,v_Ynvd8OuXKGw,dance,what is the person in black doing,v_Ynvd8OuXKGw,v_Ynvd8OuXKGw_1,0 1314,v_eQ0sW4hJ9zU,introduction of lawn mower,what is the person in black doing,v_eQ0sW4hJ9zU,v_eQ0sW4hJ9zU_1,0 1315,v_3nSOFmmA7FU,hula hoop,what is the person in black doing,v_3nSOFmmA7FU,v_3nSOFmmA7FU_1,0 1316,v_mV07bEBkIcM,drum,what is the person in black doing,v_mV07bEBkIcM,v_mV07bEBkIcM_1,0 1317,v_3PsxzgeMv5w,bowling,what is the person in black doing,v_3PsxzgeMv5w,v_3PsxzgeMv5w_1,0 1318,v_otMw5GJWYWs,play bounce shoes,what is the person in black doing,v_otMw5GJWYWs,v_otMw5GJWYWs_1,0 1319,v_ojTFTIwsa_c,car wash,what is the person in black doing,v_ojTFTIwsa_c,v_ojTFTIwsa_c_1,0 1320,v_Son8UiVlzu0,yoga teaching,what is the person in black doing,v_Son8UiVlzu0,v_Son8UiVlzu0_1,0 1321,v_RLBfyIVpocE,throwing discus,what is the person in black doing,v_RLBfyIVpocE,v_RLBfyIVpocE_1,0 1322,v_Z6b4oFjIznU,balance beam,what is the person in black doing,v_Z6b4oFjIznU,v_Z6b4oFjIznU_1,0 1323,v_NvRH4SoF09c,flute,what is the person in black doing,v_NvRH4SoF09c,v_NvRH4SoF09c_1,0 1324,v_SidTquTAtyk,fly kite,what is the person in black doing,v_SidTquTAtyk,v_SidTquTAtyk_1,0 1325,v_nhQTxZlzG1Q,play game,what is the person in black doing,v_nhQTxZlzG1Q,v_nhQTxZlzG1Q_1,0 1326,v_4_jDgRsOGvY,drum,what is the person in black doing,v_4_jDgRsOGvY,v_4_jDgRsOGvY_1,0 1327,v_P6Oq6C9X0fw,skiing,what is the person in black doing,v_P6Oq6C9X0fw,v_P6Oq6C9X0fw_1,0 1328,v_Ye_uVlSo1HI,leaping,what is the person in black doing,v_Ye_uVlSo1HI,v_Ye_uVlSo1HI_1,0 1329,v_YVqRQDkdA8U,play bounce shoes,what is the person in black doing,v_YVqRQDkdA8U,v_YVqRQDkdA8U_1,0 1330,v_mek9Zodu8LM,finger guessing game,what is the person in black doing,v_mek9Zodu8LM,v_mek9Zodu8LM_1,0 1331,v_wdvQC41PGPk,blow sax,what is the person in black doing,v_wdvQC41PGPk,v_wdvQC41PGPk_1,0 1332,v_aGvpDyMNATI,javelin throw,what is the person in black doing,v_aGvpDyMNATI,v_aGvpDyMNATI_1,0 1333,v_z8x3wUZYOaM,comb ones hair,what is the person in black doing,v_z8x3wUZYOaM,v_z8x3wUZYOaM_1,0 1334,v_A0b_pqaKCX8,make face,what is the person in black doing,v_A0b_pqaKCX8,v_A0b_pqaKCX8_1,0 1335,v_xfV4V_AOVSM,weave hair,what is the person in black doing,v_xfV4V_AOVSM,v_xfV4V_AOVSM_1,0 1336,v_g1na24Bd5Rs,chat,what is the person in black doing,v_g1na24Bd5Rs,v_g1na24Bd5Rs_1,0 1337,v_xND_kp-aYXw,drum,what is the person in black doing,v_xND_kp-aYXw,v_xND_kp-aYXw_1,0 1338,v_X6CBZwwRdQQ,sunscreen,what is the person in black doing,v_X6CBZwwRdQQ,v_X6CBZwwRdQQ_1,0 1339,v_T62XjoKbN8M,push ice pot,what is the person in black doing,v_T62XjoKbN8M,v_T62XjoKbN8M_1,0 1340,v_yRQpolWhJ6A,photograph,what is the person in blue clothes doing,v_yRQpolWhJ6A,v_yRQpolWhJ6A_1,0 1341,v_ys4_S3JHQjs,rowing,what is the person in blue clothes doing,v_ys4_S3JHQjs,v_ys4_S3JHQjs_1,0 1342,v_oMtB-y49Yo8,make cake,what is the person in blue clothes doing,v_oMtB-y49Yo8,v_oMtB-y49Yo8_1,0 1343,v_96vBhCFBbQk,play magic cube,what is the person in blue clothes doing,v_96vBhCFBbQk,v_96vBhCFBbQk_1,0 1344,v_zxpQHLwZCug,chopping wood,what is the person in blue clothes doing,v_zxpQHLwZCug,v_zxpQHLwZCug_1,0 1345,v_XI7qJHE61zo,trailing ground,what is the person in blue clothes doing,v_XI7qJHE61zo,v_XI7qJHE61zo_1,0 1346,v_LsVCwr6qPmY,iron clothes,what is the person in blue clothes doing,v_LsVCwr6qPmY,v_LsVCwr6qPmY_1,0 1347,v_MVA568rRjzQ,play tennis,what is the person in blue clothes doing,v_MVA568rRjzQ,v_MVA568rRjzQ_1,0 1348,v_pVoM_kUQ4_E,perform,what is the person in blue clothes doing,v_pVoM_kUQ4_E,v_pVoM_kUQ4_E_1,0 1349,v_FWZ6wgaJ_L4,chipping,what is the person in blue clothes doing,v_FWZ6wgaJ_L4,v_FWZ6wgaJ_L4_1,0 1350,v_1px5LTVIR3A,dance,what is the person in blue clothes doing,v_1px5LTVIR3A,v_1px5LTVIR3A_1,0 1351,v_rrpEOrMpBuE,ride camel,what is the person in blue clothes doing,v_rrpEOrMpBuE,v_rrpEOrMpBuE_1,0 1352,v_62M1FRXsUiM,play harmonica,what is the person in blue clothes doing,v_62M1FRXsUiM,v_62M1FRXsUiM_1,0 1353,v_P8S8PIyPXxY,demonstrating,what is the person in blue clothes doing,v_P8S8PIyPXxY,v_P8S8PIyPXxY_1,0 1354,v_16czjUF1AA4,pole vault,what is the person in blue clothes doing,v_16czjUF1AA4,v_16czjUF1AA4_1,0 1355,v_nciIPwJTok8,car wash,what is the person in blue clothes doing,v_nciIPwJTok8,v_nciIPwJTok8_1,0 1356,v_DUi-hLMpQQo,riding,what is the person in blue clothes doing,v_DUi-hLMpQQo,v_DUi-hLMpQQo_1,0 1357,v_i6wR9_tkg6A,make light,what is the person in green clothes doing,v_i6wR9_tkg6A,v_i6wR9_tkg6A_1,0 1358,v_0w4OkBenR_k,paint fence,what is the person in purple clothes doing,v_0w4OkBenR_k,v_0w4OkBenR_k_1,0 1359,v_pPt_fygNjtQ,physical exercise,what is the person in purple clothes doing,v_pPt_fygNjtQ,v_pPt_fygNjtQ_1,0 1360,v_meNgZdu8tIk,making sandwiches,what is the person in purple clothes doing,v_meNgZdu8tIk,v_meNgZdu8tIk_1,0 1361,v_OccEAILrU7M,discus throwing,what is the person in purple clothes doing,v_OccEAILrU7M,v_OccEAILrU7M_1,0 1362,v_paRAKx8svJ8,match,what is the person in purple clothes doing,v_paRAKx8svJ8,v_paRAKx8svJ8_1,0 1363,v_nGKc2t-NMYc,gymnastics on horizontal bar,what is the person in purple clothes doing,v_nGKc2t-NMYc,v_nGKc2t-NMYc_1,0 1364,v_mSR-HpiJ0No,dance,what is the person in red clothes doing,v_mSR-HpiJ0No,v_mSR-HpiJ0No_1,0 1365,v_390iVq_urQM,water gliding,what is the person in red clothes doing,v_390iVq_urQM,v_390iVq_urQM_1,0 1366,v_nkWMBJC2Qec,play table tennis,what is the person in red clothes doing,v_nkWMBJC2Qec,v_nkWMBJC2Qec_1,0 1367,v_VJh9W3Gcpmo,drum,what is the person in red clothes doing,v_VJh9W3Gcpmo,v_VJh9W3Gcpmo_1,0 1368,v_GjcRJzPjbRI,shot put,what is the person in red clothes doing,v_GjcRJzPjbRI,v_GjcRJzPjbRI_1,0 1369,v_x6pYeqq3O08,kicking sand,what is the person in red clothes doing,v_x6pYeqq3O08,v_x6pYeqq3O08_1,0 1370,v_oKJ1BnvHbbA,javelin throw,what is the person in red clothes doing,v_oKJ1BnvHbbA,v_oKJ1BnvHbbA_1,0 1371,v_an1R4BP97JY,fertilizer application,what is the person in red clothes doing,v_an1R4BP97JY,v_an1R4BP97JY_1,0 1372,v_I16FTpQQiic,strap rope skipping,what is the person in red clothes doing in the video,v_I16FTpQQiic,v_I16FTpQQiic_1,0 1373,v_I1iUbyjWy7k,play baseball,what is the person in red clothes doing in the video,v_I1iUbyjWy7k,v_I1iUbyjWy7k_1,0 1374,v_Z-zG845frso,play volleyball,what is the person in red coat doing,v_Z-zG845frso,v_Z-zG845frso_1,0 1375,v_zpaS2iYrJjk,interview,what is the person in red coat doing,v_zpaS2iYrJjk,v_zpaS2iYrJjk_1,0 1376,v_A9VCuZ53ObQ,sit on ground,what is the person in white doing,v_A9VCuZ53ObQ,v_A9VCuZ53ObQ_1,0 1377,v_xizEiQZfJa4,play ball,what is the person in white doing,v_xizEiQZfJa4,v_xizEiQZfJa4_1,0 1378,v_nnEPsdA0080,be pulled forward,what is the person in white doing,v_nnEPsdA0080,v_nnEPsdA0080_1,0 1379,v_ghHZ9M-jx0w,play volleyball,what is the person in white doing,v_ghHZ9M-jx0w,v_ghHZ9M-jx0w_1,0 1380,v_RgiVa9GMYxE,shave,what is the person in white doing,v_RgiVa9GMYxE,v_RgiVa9GMYxE_1,0 1381,v_X52XHYKeLiE,riding,what is the person in white doing,v_X52XHYKeLiE,v_X52XHYKeLiE_1,0 1382,v_nYl_tYmijlM,drum,what is the person in white doing,v_nYl_tYmijlM,v_nYl_tYmijlM_1,0 1383,v_P5D9S9NzQ28,teaching,what is the person in white doing,v_P5D9S9NzQ28,v_P5D9S9NzQ28_1,0 1384,v_kYkvyRKxwfY,play table tennis,what is the person in white doing,v_kYkvyRKxwfY,v_kYkvyRKxwfY_1,0 1385,v_MonWdYi3a0I,play computer games,what is the person in white doing,v_MonWdYi3a0I,v_MonWdYi3a0I_1,0 1386,v_30hcRe-5_3M,play football,what is the person in white doing,v_30hcRe-5_3M,v_30hcRe-5_3M_1,0 1387,v_2UhbDOd43zU,teaching martial arts,what is the person in white doing,v_2UhbDOd43zU,v_2UhbDOd43zU_1,0 1388,v_rWfQj0X8WU4,play jumper,what is the person in white doing,v_rWfQj0X8WU4,v_rWfQj0X8WU4_1,0 1389,v_Oh3-DvDCpZ4,cooking,what is the person in white doing,v_Oh3-DvDCpZ4,v_Oh3-DvDCpZ4_1,0 1390,v_pop8YCGQpWk,match,what is the person in white doing,v_pop8YCGQpWk,v_pop8YCGQpWk_1,0 1391,v_YMOYyt3kSOs,shot put,what is the person in white doing,v_YMOYyt3kSOs,v_YMOYyt3kSOs_1,0 1392,v_lUmjnFf7IPQ,help to cut hair,what is the person in white doing,v_lUmjnFf7IPQ,v_lUmjnFf7IPQ_1,0 1393,v_X2toGKgWMpE,table tennis,what is the person in white doing,v_X2toGKgWMpE,v_X2toGKgWMpE_1,0 1394,v_AjizhJc_reI,play bumper car,what is the person in white doing,v_AjizhJc_reI,v_AjizhJc_reI_1,0 1395,v_afMQA352X_A,boxing,what is the person in white doing,v_afMQA352X_A,v_afMQA352X_A_1,0 1396,v_836UrVGw6GI,skateboard,what is the person in white doing,v_836UrVGw6GI,v_836UrVGw6GI_1,0 1397,v_y0ca-LbQErY,bike ride,what is the person in white doing,v_y0ca-LbQErY,v_y0ca-LbQErY_1,0 1398,v_V90CMuokf0c,paddle,what is the person in black clothes doing in the video,v_V90CMuokf0c,v_V90CMuokf0c_1,0 1399,v_cnMvMvVBXiI,tire repair,what is the person in black clothes doing in the video,v_cnMvMvVBXiI,v_cnMvMvVBXiI_1,0 1400,v_aH39BSM0-Ag,photograph,what is the person in black hat doing,v_aH39BSM0-Ag,v_aH39BSM0-Ag_1,0 1401,v_NNiJfr_ChH4,long jump,what is the person in black shorts doing,v_NNiJfr_ChH4,v_NNiJfr_ChH4_1,0 1402,v_qgUHRwC3194,swimming,what is the person in black shorts doing,v_qgUHRwC3194,v_qgUHRwC3194_1,0 1403,v_QXN6odBnVmI,shine shoes,what is the person in black tshirt doing,v_QXN6odBnVmI,v_QXN6odBnVmI_1,0 1404,v_GSrBZXLSwWI,make cake,what is the person in black tshirt doing,v_GSrBZXLSwWI,v_GSrBZXLSwWI_1,0 1405,v_Znb6Y9m_PsQ,play football on table,what is the person in black tshirt doing,v_Znb6Y9m_PsQ,v_Znb6Y9m_PsQ_1,0 1406,v_TXSOSSGJYO0,run,what is the person in blue clothes doing in the video,v_TXSOSSGJYO0,v_TXSOSSGJYO0_1,0 1407,v_TGffgRXc1eQ,broadcast news,what is the person in blue clothes doing in the video,v_TGffgRXc1eQ,v_TGffgRXc1eQ_1,0 1408,v_uJ4OZfCjViM,scavenging leaves,what is the person in blue clothes doing in the video,v_uJ4OZfCjViM,v_uJ4OZfCjViM_1,0 1409,v_vQ82ItCG1x4,sail,what is the person in blue clothes doing in the video,v_vQ82ItCG1x4,v_vQ82ItCG1x4_1,0 1410,v_Em4ekFj4XIs,training dog,what is the person in blue shoes doing,v_Em4ekFj4XIs,v_Em4ekFj4XIs_1,0 1411,v_UNXLfqkwKFc,use of vacuum cleaner,what is the person in blue shorts doing,v_UNXLfqkwKFc,v_UNXLfqkwKFc_1,0 1412,v_G_rVqf_hwXw,wrist wrestling,what is the person in dark blue clothes doing,v_G_rVqf_hwXw,v_G_rVqf_hwXw_1,0 1413,v_zKYiTA6WBS4,blow ones hair,what is the person in green coat doing,v_zKYiTA6WBS4,v_zKYiTA6WBS4_1,0 1414,v_ZJnXQw84xvo,play with sand,what is the person in green coat doing,v_ZJnXQw84xvo,v_ZJnXQw84xvo_1,0 1415,v_Y_nyVFn70Lk,dishwashing,what is the person in green clothes doing,v_Y_nyVFn70Lk,v_Y_nyVFn70Lk_1,0 1416,v_9UvVeUYQLgA,field shooting,what is the person in green clothes doing,v_9UvVeUYQLgA,v_9UvVeUYQLgA_1,0 1417,v_mMm1LfVb8Pg,weed,what is the person in green clothes doing,v_mMm1LfVb8Pg,v_mMm1LfVb8Pg_1,0 1418,v_d6gGZFQOxOg,weightlifting,what is the person in green clothes doing,v_d6gGZFQOxOg,v_d6gGZFQOxOg_1,0 1419,v_gZB_XrTnDCI,ride on bicycle,what is the person in green clothes doing,v_gZB_XrTnDCI,v_gZB_XrTnDCI_1,0 1420,v_prBiREYQ2vQ,match,what is the person in green clothes doing,v_prBiREYQ2vQ,v_prBiREYQ2vQ_1,0 1421,v_-vY2uUmv6Dk,rock climbing,what is the person in green clothes doing in the video,v_-vY2uUmv6Dk,v_-vY2uUmv6Dk_1,0 1422,v_ufrTSC3Dewg,play,what is the person in green clothes doing in the video,v_ufrTSC3Dewg,v_ufrTSC3Dewg_1,0 1423,v_uLsq6gQXQPM,play slide,what is the person in green clothes doing in the video,v_uLsq6gQXQPM,v_uLsq6gQXQPM_1,0 1424,v_WGUzmra3h_w,high jump,what is the person in gray clothes doing in the video,v_WGUzmra3h_w,v_WGUzmra3h_w_1,0 1425,v_brJIpRGcBFU,drive car,what is the person in gray clothes doing in the video,v_brJIpRGcBFU,v_brJIpRGcBFU_1,0 1426,v_MDsJa6Yitwc,brush wall,what is the person in gray clothes doing in the video,v_MDsJa6Yitwc,v_MDsJa6Yitwc_1,0 1427,v_uIHWHnItois,skateboarding,what is the person in orange coat doing in the video,v_uIHWHnItois,v_uIHWHnItois_1,0 1428,v_qGLRri_c6n8,slippery pulley,what is the person in pink clothes doing,v_qGLRri_c6n8,v_qGLRri_c6n8_1,0 1429,v_OysON6LbF6Y,playing harmonica,what is the person in pink clothes doing in the video,v_OysON6LbF6Y,v_OysON6LbF6Y_1,0 1430,v_gOnp3DZxeKU,cook,what is the person in purple coat doing,v_gOnp3DZxeKU,v_gOnp3DZxeKU_1,0 1431,v_xS4twW2gXqc,high jump,what is the person in red clothes doing,v_xS4twW2gXqc,v_xS4twW2gXqc_1,0 1432,v_PFeerDZbGn8,training dog,what is the person in red clothes doing,v_PFeerDZbGn8,v_PFeerDZbGn8_1,0 1433,v_75Tc1nPmZFQ,play beach volleyball,what is the person in red clothes doing,v_75Tc1nPmZFQ,v_75Tc1nPmZFQ_1,0 1434,v_T3A88zsRuVs,explain ice hockey,what is the person in red clothes doing,v_T3A88zsRuVs,v_T3A88zsRuVs_1,0 1435,v_z6l9utYlIrw,pray,what is the person in red clothes doing,v_z6l9utYlIrw,v_z6l9utYlIrw_1,0 1436,v_XxW4XWySzOw,rowing,what is the person in red clothes doing,v_XxW4XWySzOw,v_XxW4XWySzOw_1,0 1437,v_XCfrjEJkl3M,play basketball,what is the person in red clothes doing,v_XCfrjEJkl3M,v_XCfrjEJkl3M_1,0 1438,v_gr53ih2aFkE,tug of war,what is the person in red clothes doing,v_gr53ih2aFkE,v_gr53ih2aFkE_1,0 1439,v_AjqnGUbsduw,wrist wrestling,what is the person in red clothes doing,v_AjqnGUbsduw,v_AjqnGUbsduw_1,0 1440,v_GOhmWfR8QBM,dismantling gifts,what is the person in red clothes doing,v_GOhmWfR8QBM,v_GOhmWfR8QBM_1,0 1441,v_OQEKZXv6jSw,long jump,what is the person in red clothes doing,v_OQEKZXv6jSw,v_OQEKZXv6jSw_1,0 1442,v_Pr5K2Jh2X94,match,what is the person in red clothes doing,v_Pr5K2Jh2X94,v_Pr5K2Jh2X94_1,0 1443,v_YHqFNnhaFAY,skateboarding,what is the person in red clothes doing,v_YHqFNnhaFAY,v_YHqFNnhaFAY_1,0 1444,v_TtewPltwuXw,flute,what is the person in red clothes doing in the video,v_TtewPltwuXw,v_TtewPltwuXw_1,0 1445,v_tRFK1BMKaRo,weightlifting,what is the person in red clothes doing in the video,v_tRFK1BMKaRo,v_tRFK1BMKaRo_1,0 1446,v_p1QGn0IzfW0,train,what is the person in red clothes doing in the video,v_p1QGn0IzfW0,v_p1QGn0IzfW0_1,0 1447,v_VZ5R9goklpo,play game,what is the person in red clothes doing in the video,v_VZ5R9goklpo,v_VZ5R9goklpo_1,0 1448,v_hxErUs42bBI,skiing,what is the person in red clothes doing in the video,v_hxErUs42bBI,v_hxErUs42bBI_1,0 1449,v_i8hNrK3r_MY,assemble bicycle,what is the person in red pants doing in the video,v_i8hNrK3r_MY,v_i8hNrK3r_MY_1,0 1450,v_Co_cpZWbzFk,football match,what is the person in red pants doing in the video,v_Co_cpZWbzFk,v_Co_cpZWbzFk_1,0 1451,v_ZnKB0U96ZI4,play tennis,what is the person in red shorts doing,v_ZnKB0U96ZI4,v_ZnKB0U96ZI4_1,0 1452,v_CDecXoRSpIc,tire repair,what is the person in black tshirt doing in the video,v_CDecXoRSpIc,v_CDecXoRSpIc_1,0 1453,v__2txWbQfJrY,laying tile,what is the person in a tshirt doing,v__2txWbQfJrY,v__2txWbQfJrY_1,0 1454,v_cTxVTEzQDr8,skateboarding,what is the person in sunglasses doing,v_cTxVTEzQDr8,v_cTxVTEzQDr8_1,0 1455,v_b6QSzGwI9m4,explain,what is the person in sunglasses doing in the video,v_b6QSzGwI9m4,v_b6QSzGwI9m4_1,0 1456,v_vzUeFzhVYLg,play with smarthphone,what is the person in white clothes doing,v_vzUeFzhVYLg,v_vzUeFzhVYLg_1,0 1457,v_WPYQ27GjFKc,licensing,what is the person in white clothes doing,v_WPYQ27GjFKc,v_WPYQ27GjFKc_1,0 1458,v_0q9yZPTBbus,hair care,what is the person in white clothes doing,v_0q9yZPTBbus,v_0q9yZPTBbus_1,0 1459,v_W2Mh01F3K5c,spruce up,what is the person in white clothes doing,v_W2Mh01F3K5c,v_W2Mh01F3K5c_1,0 1460,v_0e7d39SwHCA,photograph,what is the person in white clothes doing,v_0e7d39SwHCA,v_0e7d39SwHCA_1,0 1461,v_C5SXR9nMY3I,gift of gift,what is the person in white clothes doing,v_C5SXR9nMY3I,v_C5SXR9nMY3I_1,0 1462,v_hyMqGr0mOfA,throwing darts,what is the person in white clothes doing,v_hyMqGr0mOfA,v_hyMqGr0mOfA_1,0 1463,v_A8RQcVFtovg,photograph,what is the person in white pants doing,v_A8RQcVFtovg,v_A8RQcVFtovg_1,0 1464,v_gkwLhml3mnA,play tai chi,what is the person in white tshirt doing,v_gkwLhml3mnA,v_gkwLhml3mnA_1,0 1465,v_ZLG1Exv8HrY,play parallel bars,what is the person in white tshirt doing,v_ZLG1Exv8HrY,v_ZLG1Exv8HrY_1,0 1466,v_OFTkwnSh-sQ,long jump,what is the person in yellow clothes doing,v_OFTkwnSh-sQ,v_OFTkwnSh-sQ_1,0 1467,v_1PNjVTM0Zto,play tai chi,what is the person in yellow clothes doing,v_1PNjVTM0Zto,v_1PNjVTM0Zto_1,0 1468,v_zYjLA99koBk,rowing,what is the person in yellow clothes doing,v_zYjLA99koBk,v_zYjLA99koBk_1,0 1469,v_QIUxLD27NuI,turn magic cube,what is the person in yellow clothes doing in the video,v_QIUxLD27NuI,v_QIUxLD27NuI_1,0 1470,v_hRsn4nesCQo,draw,what is the person in yellow clothes doing in the video,v_hRsn4nesCQo,v_hRsn4nesCQo_1,0 1471,v_i5qTK0mInTc,watch tv,what is the person in yellow clothes doing in the video,v_i5qTK0mInTc,v_i5qTK0mInTc_1,0 1472,v_a2IvS0xbNGQ,dog,what kind of animal is in the video,v_a2IvS0xbNGQ,v_a2IvS0xbNGQ_10,5 1473,v_Oyycph_Ukfg,dog,what kind of animal is in the video,v_Oyycph_Ukfg,v_Oyycph_Ukfg_9,5 1474,v_Z2gpcqXWNek,dog,what kind of animal is in the video,v_Z2gpcqXWNek,v_Z2gpcqXWNek_6,5 1475,v_ZAX6OojMg38,dog and cat,what kind of animal is in the video,v_ZAX6OojMg38,v_ZAX6OojMg38_6,5 1476,v_Znb6Y9m_PsQ,dog,what is the animal in the video,v_Znb6Y9m_PsQ,v_Znb6Y9m_PsQ_10,5 1477,v_FkbpD1zWdPw,competition archery,what is the athlete doing,v_FkbpD1zWdPw,v_FkbpD1zWdPw_1,0 1478,v_sEcXR5b8HyY,play table tennis,what is the athlete doing,v_sEcXR5b8HyY,v_sEcXR5b8HyY_1,0 1479,v_1QIUV7WYKXg,throwing javelin,what is the athlete doing,v_1QIUV7WYKXg,v_1QIUV7WYKXg_1,0 1480,v_JR9LosQmMvg,bicycle race,what is the athlete doing,v_JR9LosQmMvg,v_JR9LosQmMvg_1,0 1481,v_3Nd3Aai1bVA,bicycle race,what is the athlete doing,v_3Nd3Aai1bVA,v_3Nd3Aai1bVA_1,0 1482,v_M2Y2Cw2kwDo,diving,what is the athlete doing,v_M2Y2Cw2kwDo,v_M2Y2Cw2kwDo_1,0 1483,v_s6fEIuHPJ4Y,throw hammer,what is the athlete doing,v_s6fEIuHPJ4Y,v_s6fEIuHPJ4Y_1,0 1484,v_Jix3poZOeZA,play tennis,what is the athlete doing,v_Jix3poZOeZA,v_Jix3poZOeZA_1,0 1485,v_LWt2FuU0uC4,put shot,what is the athlete doing,v_LWt2FuU0uC4,v_LWt2FuU0uC4_1,0 1486,v_K7iw2_1BrIk,play football,what is the athlete doing,v_K7iw2_1BrIk,v_K7iw2_1BrIk_1,0 1487,v_St1RRi-aeNM,throwing discuses,what is the athlete doing,v_St1RRi-aeNM,v_St1RRi-aeNM_1,0 1488,v_tzP0lKSUv_o,weightlifting,what is the athlete doing,v_tzP0lKSUv_o,v_tzP0lKSUv_o_1,0 1489,v_snhPrCNubYA,high jump,what is the athlete doing,v_snhPrCNubYA,v_snhPrCNubYA_1,0 1490,v_JvPVYSb_5o8,weightlifting,what is the athlete doing,v_JvPVYSb_5o8,v_JvPVYSb_5o8_1,0 1491,v_LzPppxSWYNY,long jump,what is the athlete doing,v_LzPppxSWYNY,v_LzPppxSWYNY_1,0 1492,v_sRNqK_QZbMs,training,what is the athlete doing,v_sRNqK_QZbMs,v_sRNqK_QZbMs_1,0 1493,v_sPK-sbHIb3w,training,what is the athlete doing,v_sPK-sbHIb3w,v_sPK-sbHIb3w_1,0 1494,v_svNcNLEPKMc,diving,what is the athlete doing,v_svNcNLEPKMc,v_svNcNLEPKMc_1,0 1495,v_jEOtcfk220s,play volleyball,what is the athlete doing in the video,v_jEOtcfk220s,v_jEOtcfk220s_1,0 1496,v_4LpqPUWHH5k,weightlifting,what is the athlete doing in the video,v_4LpqPUWHH5k,v_4LpqPUWHH5k_1,0 1497,v_JH9qiuPCkY4,mountain bike ride,what is the athlete doing in the video,v_JH9qiuPCkY4,v_JH9qiuPCkY4_1,0 1498,v_5UZ2ft8Y3sI,ice curling,what is the athlete doing in the video,v_5UZ2ft8Y3sI,v_5UZ2ft8Y3sI_1,0 1499,v_5dN-MpXG9OE,exercise gymnastics,what is the athlete doing in the video,v_5dN-MpXG9OE,v_5dN-MpXG9OE_1,0 1500,v_jibbgUBuuSA,high jump,what is the athlete doing in the video,v_jibbgUBuuSA,v_jibbgUBuuSA_1,0 1501,v_rMj2JWNJzkw,water polo,what is the athlete doing on the water,v_rMj2JWNJzkw,v_rMj2JWNJzkw_1,0 1502,v_lOZ9bfzq89o,turn somersault,what is the athlete in green clothes doing,v_lOZ9bfzq89o,v_lOZ9bfzq89o_1,0 1503,v_u0Dc0ZtudXY,gymnastics,what is the athlete in white clothes doing in the video,v_u0Dc0ZtudXY,v_u0Dc0ZtudXY_1,0 1504,v_WdtytUagoJs,javelin throw,what is the athlete in white clothes doing in the video,v_WdtytUagoJs,v_WdtytUagoJs_1,0 1505,v_3Rzyta8op6s,throw ball,what is the bald person doing in the video,v_3Rzyta8op6s,v_3Rzyta8op6s_1,0 1506,v_SPjv6P5fxug,wrestling,what is the bald person doing,v_SPjv6P5fxug,v_SPjv6P5fxug_1,0 1507,v_W2eumNilwuI,enhanced collaboration,what are the benefits of the activity,v_W2eumNilwuI,v_W2eumNilwuI_10,8 1508,v_vBaiedxy1Uw,finger guessing game,what is the boy in blue clothes doing,v_vBaiedxy1Uw,v_vBaiedxy1Uw_1,0 1509,v_WINtiw-_3vg,blow sax,what is the boy doing in the video,v_WINtiw-_3vg,v_WINtiw-_3vg_1,0 1510,v_T62XjoKbN8M,black,what is the color of the pants of the person in blue clothes,v_T62XjoKbN8M,v_T62XjoKbN8M_8,4 1511,v_kBTqTp0SKq8,yellow,what is the color of the pants of the person in blue clothes,v_kBTqTp0SKq8,v_kBTqTp0SKq8_6,4 1512,v_meNgZdu8tIk,black,what is the color of the pants of the person in green clothes,v_meNgZdu8tIk,v_meNgZdu8tIk_8,4 1513,v_2CegApogJd4,dodgeball,what are the competitors doing,v_2CegApogJd4,v_2CegApogJd4_1,0 1514,v_EBw5-KVV_PU,dance,what is the girl doing,v_EBw5-KVV_PU,v_EBw5-KVV_PU_1,0 1515,v_5mWZY2XkWSQ,eat ice cream,what is the girl in the video doing,v_5mWZY2XkWSQ,v_5mWZY2XkWSQ_1,0 1516,v__G4EVIG9YaE,haystack,what is the girl in the video doing,v__G4EVIG9YaE,v__G4EVIG9YaE_1,0 1517,v_9eniCub7u60,dance,what is the girl in black doing,v_9eniCub7u60,v_9eniCub7u60_1,0 1518,v_9snScUyE8_4,dishware,what is the girl with blonde hair doing,v_9snScUyE8_4,v_9snScUyE8_4_1,0 1519,v_dZsk5Dp_5FE,kindling wood,what is the kid doing in the video,v_dZsk5Dp_5FE,v_dZsk5Dp_5FE_1,0 1520,v_F9FPK6mfh88,shoe polish,what is the woman in jeans doing,v_F9FPK6mfh88,v_F9FPK6mfh88_1,0 1521,v_8kaQq1mR2ys,swimming,what is the woman with long hair doing,v_8kaQq1mR2ys,v_8kaQq1mR2ys_1,0 1522,v_7dXqXFoju2M,smoking,what is the woman with long hair doing,v_7dXqXFoju2M,v_7dXqXFoju2M_1,0 1523,v_UNKf15ALDh8,tree planting,what is the woman with long hair doing,v_UNKf15ALDh8,v_UNKf15ALDh8_1,0 1524,v_7LbBmVX33I4,curly,what is the woman with long hair doing,v_7LbBmVX33I4,v_7LbBmVX33I4_1,0 1525,v_0XTAq_xvquw,make skis,what is the man in video doing,v_0XTAq_xvquw,v_0XTAq_xvquw_1,0 1526,v_CFbkVO5b2g0,play violin,what is the man in video doing,v_CFbkVO5b2g0,v_CFbkVO5b2g0_1,0 1527,v_5oyenoaVB-w,draw,what is the man in video doing,v_5oyenoaVB-w,v_5oyenoaVB-w_1,0 1528,v_0xBP-TSsqb0,grooming,what is the man in video doing,v_0xBP-TSsqb0,v_0xBP-TSsqb0_1,0 1529,v_jbCQY7V7O1s,drum,what is the man in video doing,v_jbCQY7V7O1s,v_jbCQY7V7O1s_1,0 1530,v_HX6BeHLQh5s,shoes polish,what is the man in video doing,v_HX6BeHLQh5s,v_HX6BeHLQh5s_1,0 1531,v_fQ1OuD7x3to,wipe glass,what is the man in black doing,v_fQ1OuD7x3to,v_fQ1OuD7x3to_1,0 1532,v__V62aT_K8Zw,smoking,what is the person with hat doing,v__V62aT_K8Zw,v__V62aT_K8Zw_1,0 1533,v_1lwG-y_QCkc,weed,what is the person with hat doing,v_1lwG-y_QCkc,v_1lwG-y_QCkc_1,0 1534,v_5c5PFa8GR-A,cut persons head,what is the person with hat doing,v_5c5PFa8GR-A,v_5c5PFa8GR-A_1,0 1535,v_Npj77L31bhw,tattoo,what is the person with hat doing,v_Npj77L31bhw,v_Npj77L31bhw_1,0 1536,v_JbW8efAOOt0,dance,what is the person with hat doing,v_JbW8efAOOt0,v_JbW8efAOOt0_1,0 1537,v_IYLJU87AkOg,throwing darts,what is the person with hat doing,v_IYLJU87AkOg,v_IYLJU87AkOg_1,0 1538,v_4LF0hL-mgks,dishwashing,what is the person appears at the beginning of the video doing ,v_4LF0hL-mgks,v_4LF0hL-mgks_1,0 1539,v_VpZzLvzU7_k,by cable car,what is the person with a red hat doing in the video,v_VpZzLvzU7_k,v_VpZzLvzU7_k_1,0 1540,v_JB-ynj70saA,wire walking,what is the person in black pants doing,v_JB-ynj70saA,v_JB-ynj70saA_1,0 1541,v_OcL7ZhBCkxQ,skateboarding,what is the person in black pants doing,v_OcL7ZhBCkxQ,v_OcL7ZhBCkxQ_1,0 1542,v_RlRrktN5iH4,do yoga,what is the person in black pants doing,v_RlRrktN5iH4,v_RlRrktN5iH4_1,0 1543,v_LYTWYSqsTCE,masonry wall,what is the person in gray clothes doing,v_LYTWYSqsTCE,v_LYTWYSqsTCE_1,0 1544,v_xMNmGr96O9U,bowling,what is the person in gray clothes doing,v_xMNmGr96O9U,v_xMNmGr96O9U_1,0 1545,v_mkGUacg0GRc,play bumper car,what is the person in gray clothes doing,v_mkGUacg0GRc,v_mkGUacg0GRc_1,0 1546,v_1xtKGlUp4Vg,clean dog,what is the person in gray clothes doing,v_1xtKGlUp4Vg,v_1xtKGlUp4Vg_1,0 1547,v_pVuuVHA3RVw,run,what is the person in gray clothes doing,v_pVuuVHA3RVw,v_pVuuVHA3RVw_1,0 1548,v_nvcMYiZhUuo,push car,what is the person in gray clothes doing,v_nvcMYiZhUuo,v_nvcMYiZhUuo_1,0 1549,v_a2IvS0xbNGQ,play bounce shoes,what is the person in orange clothes doing,v_a2IvS0xbNGQ,v_a2IvS0xbNGQ_1,0 1550,v_mixxaL3Bdv8,play jumper,what is the person in orange clothes doing,v_mixxaL3Bdv8,v_mixxaL3Bdv8_1,0 1551,v_vnZmsOgWs0o,skiing,what is the person in orange pants doing,v_vnZmsOgWs0o,v_vnZmsOgWs0o_1,0 1552,v_KZ1NEffR2Qg,rope skipping,what is the person in red pants doing,v_KZ1NEffR2Qg,v_KZ1NEffR2Qg_1,0 1553,v_vFO70WwrQgE,dance,what is the person in red pants doing,v_vFO70WwrQgE,v_vFO70WwrQgE_1,0 1554,v__kmjpSZb3OI,brush wall,what is the person in black clothes doing,v__kmjpSZb3OI,v__kmjpSZb3OI_1,0 1555,v_40BPDWojssc,leather shoes,what is the person in black clothes doing,v_40BPDWojssc,v_40BPDWojssc_1,0 1556,v_vHnZ3NrZER0,measurement length,what is the person in black clothes doing,v_vHnZ3NrZER0,v_vHnZ3NrZER0_1,0 1557,v__jV5sAOOHLk,car repair tires,what is the person in black clothes doing,v__jV5sAOOHLk,v__jV5sAOOHLk_1,0 1558,v_12Nafz_Yet4,boxing,what is the person in black clothes doing,v_12Nafz_Yet4,v_12Nafz_Yet4_1,0 1559,v_87F9xGaMwCw,bodybuilding,what is the person in black clothes doing,v_87F9xGaMwCw,v_87F9xGaMwCw_1,0 1560,v_ZLJ2BmBkLJg,shave,what is the person in black coat doing,v_ZLJ2BmBkLJg,v_ZLJ2BmBkLJg_1,0 1561,v_QImpWj3AJcY,play game,what is the person in black coat doing,v_QImpWj3AJcY,v_QImpWj3AJcY_1,0 1562,v_QdmcjM2fluo,pruning trees,what is the person in black coat doing,v_QdmcjM2fluo,v_QdmcjM2fluo_1,0 1563,v_zTHkqpNFGno,comb ones hair,what is the person in black coat doing,v_zTHkqpNFGno,v_zTHkqpNFGno_1,0 1564,v_zO5JMTzLDHw,tread on stilts,what is the person in black coat doing,v_zO5JMTzLDHw,v_zO5JMTzLDHw_1,0 1565,v_F-Z17rHI_ms,diving,what is the person in black swimsuit doing,v_F-Z17rHI_ms,v_F-Z17rHI_ms_1,0 1566,v_g9lNpSAtHgI,paint chair,what is the person in blue apron doing,v_g9lNpSAtHgI,v_g9lNpSAtHgI_1,0 1567,v_26U3SkeZU6M,rope skipping,what is the person in blue clothes doing,v_26U3SkeZU6M,v_26U3SkeZU6M_1,0 1568,v_mXqmRAUsn9U,skateboarding,what is the person in blue clothes doing,v_mXqmRAUsn9U,v_mXqmRAUsn9U_1,0 1569,v_YvPoAOrjX5I,play tennis,what is the person in blue clothes doing,v_YvPoAOrjX5I,v_YvPoAOrjX5I_1,0 1570,v_tgPD2SZo_DY,run,what is the person in blue clothes doing,v_tgPD2SZo_DY,v_tgPD2SZo_DY_1,0 1571,v_qiupddjDHDg,tilling,what is the person in blue coat doing,v_qiupddjDHDg,v_qiupddjDHDg_1,0 1572,v_rCLGy2NA0aE,eat ice cream,what is the person in blue coat doing,v_rCLGy2NA0aE,v_rCLGy2NA0aE_1,0 1573,v_qiTQ02NDSlQ,make sandwich,what is the person in blue coat doing,v_qiTQ02NDSlQ,v_qiTQ02NDSlQ_1,0 1574,v_oGU7m7rCZ-Y,blow sax,what is the person in blue coat doing,v_oGU7m7rCZ-Y,v_oGU7m7rCZ-Y_1,0 1575,v_teffBaLEZQg,dance hip hop,what is the person with blue hat doing,v_teffBaLEZQg,v_teffBaLEZQg_1,0 1576,v_Q5HdVXF390c,drink beer,what is the person in the plaid shirt doing,v_Q5HdVXF390c,v_Q5HdVXF390c_1,0 1577,v_2DCHbuwZNSs,dive to feed fish,what is the person in the diving suit doing,v_2DCHbuwZNSs,v_2DCHbuwZNSs_1,0 1578,v_SJ7jk5XAjng,wrist wrestling,what is the person in the game doing,v_SJ7jk5XAjng,v_SJ7jk5XAjng_1,0 1579,v_zPQodcasmSA,windsurfing,what is the person in green clothes doing,v_zPQodcasmSA,v_zPQodcasmSA_1,0 1580,v_3kxP8qOtym8,boxing practice,what is the person in gray vest doing,v_3kxP8qOtym8,v_3kxP8qOtym8_1,0 1581,v_rnI9vGr5V1k,sharpening,what is the person in the plaid shirt doing,v_rnI9vGr5V1k,v_rnI9vGr5V1k_1,0 1582,v_1IbkFHNA7fg,haircut,what is the person in the plaid shirt doing,v_1IbkFHNA7fg,v_1IbkFHNA7fg_1,0 1583,v_ldAHwbF8uWI,wrist wrestling,what is the person in red clothes doing,v_ldAHwbF8uWI,v_ldAHwbF8uWI_1,0 1584,v_03c6QhTMDSs,ride bicycle,what is the person in striped clothes doing,v_03c6QhTMDSs,v_03c6QhTMDSs_1,0 1585,v_pYaZLHpl_Ww,do shape packing,what is the person in striped shirt doing,v_pYaZLHpl_Ww,v_pYaZLHpl_Ww_1,0 1586,v_ZxCdhz4ep0s,play piano,what is the person in striped shirt doing,v_ZxCdhz4ep0s,v_ZxCdhz4ep0s_1,0 1587,v_Y7aacWy3WDo,smoking,what is the person in suit doing,v_Y7aacWy3WDo,v_Y7aacWy3WDo_1,0 1588,v_lUil9HfTzJ0,surfing,what is the person in swim suit doing,v_lUil9HfTzJ0,v_lUil9HfTzJ0_1,0 1589,v_NDq29HQJVP0,play hockey,what is the person in white doing,v_NDq29HQJVP0,v_NDq29HQJVP0_1,0 1590,v_1494UwmvAJM,eat something,what is the person in white doing,v_1494UwmvAJM,v_1494UwmvAJM_1,0 1591,v_8lMncYsbrWw,iron clothes,what is the person in white doing,v_8lMncYsbrWw,v_8lMncYsbrWw_1,0 1592,v__jIXs7AFTxw,rubbing feet,what is the person in white doing,v__jIXs7AFTxw,v__jIXs7AFTxw_1,0 1593,v_Vhn4SuPhu-0,sleep,what is the person in white doing,v_Vhn4SuPhu-0,v_Vhn4SuPhu-0_1,0 1594,v_NZskwwovSZI,play with phone,what is the person in white doing,v_NZskwwovSZI,v_NZskwwovSZI_1,0 1595,v_0jdSl5-lMpY,light roof,what is the person in white doing,v_0jdSl5-lMpY,v_0jdSl5-lMpY_10,5 1596,v_mnNgZ-D5cKc,ride bike,what is the person in white doing,v_mnNgZ-D5cKc,v_mnNgZ-D5cKc_1,0 1597,v__QBTD1bLSI0,wash hands,what is the person in white doing,v__QBTD1bLSI0,v__QBTD1bLSI0_1,0 1598,v_X_K7Aa3Aa-E,play guitar,what is the person in white doing,v_X_K7Aa3Aa-E,v_X_K7Aa3Aa-E_1,0 1599,v_ZlVydB9uUe4,pruning trees,what is the person in white shirt doing,v_ZlVydB9uUe4,v_ZlVydB9uUe4_1,0 1600,v_QJ5xv6oj1sk,play tai chi,what is the person in white shirt doing,v_QJ5xv6oj1sk,v_QJ5xv6oj1sk_1,0 1601,v_ZBP_mLWROZU,weave hair,what is the person in white uniform doing,v_ZBP_mLWROZU,v_ZBP_mLWROZU_1,0 1602,v_mxn6WcmdNpA,shoe rope,what is the person in yellow clothes doing,v_mxn6WcmdNpA,v_mxn6WcmdNpA_1,0 1603,v_98ukqD62X5s,throw spear,what is the person in yellow clothes doing,v_98ukqD62X5s,v_98ukqD62X5s_1,0 1604,v_Nc9yr4urskA,fight,what is the person in yellow clothes doing,v_Nc9yr4urskA,v_Nc9yr4urskA_1,0 1605,v_JGPhQX97OSE,play music,what is the person on the field doing,v_JGPhQX97OSE,v_JGPhQX97OSE_1,0 1606,v_pMtu7fOHdII,match,what is the person on the field doing,v_pMtu7fOHdII,v_pMtu7fOHdII_1,0 1607,v_f2DS_AVorrY,prepare for dive,what is the person on the platform doing,v_f2DS_AVorrY,v_f2DS_AVorrY_1,0 1608,v_ds3mAmUPxYA,singing,what is the person on the stage doing,v_ds3mAmUPxYA,v_ds3mAmUPxYA_1,0 1609,v_BkDbDnvoL28,perform,what is the person on the stage doing in the video,v_BkDbDnvoL28,v_BkDbDnvoL28_1,0 1610,v_BhgcXqWQhkQ,perform,what is the person on the stage doing in the video,v_BhgcXqWQhkQ,v_BhgcXqWQhkQ_1,0 1611,v_P2xT7dlyX8Y,perform,what is the person on the stage doing in the video,v_P2xT7dlyX8Y,v_P2xT7dlyX8Y_1,0 1612,v_BdRH3lpopLQ,match,what are the people on the court doing,v_BdRH3lpopLQ,v_BdRH3lpopLQ_1,0 1613,v_pzTqZWPubk8,brush ones teeth,what is the person in gray tshirt doing,v_pzTqZWPubk8,v_pzTqZWPubk8_1,0 1614,v_iZT4XgzUHm4,ride on bicycle,what is the person in helmet doing,v_iZT4XgzUHm4,v_iZT4XgzUHm4_1,0 1615,v_Bgi2Y85Mbwk,smoking,what is the person in plaid shirt doing in the video,v_Bgi2Y85Mbwk,v_Bgi2Y85Mbwk_1,0 1616,v_C7yd6yEkxXE,ride bike,what is the person in white shirt doing in the video,v_C7yd6yEkxXE,v_C7yd6yEkxXE_1,0 1617,v_LjPKKqe-VO0,exercise gymnastics,what is the person with blond hair doing,v_LjPKKqe-VO0,v_LjPKKqe-VO0_1,0 1618,v_K49OCArHjXI,diving,what is the person with goggles doing,v_K49OCArHjXI,v_K49OCArHjXI_1,0 1619,v_45hcc_VI4t4,tread,what is the person with blond hair doing,v_45hcc_VI4t4,v_45hcc_VI4t4_1,0 1620,v_bRgvAHL3dJk,face,what is the person with blond hair doing,v_bRgvAHL3dJk,v_bRgvAHL3dJk_1,0 1621,v_0Um-HgjcnXY,bicycle race,what is the player doing,v_0Um-HgjcnXY,v_0Um-HgjcnXY_1,0 1622,v_SjlILJ2st-I,bicycle race,what is the player doing,v_SjlILJ2st-I,v_SjlILJ2st-I_1,0 1623,v_2uUNiV8xmEo,hockey game,what is the player doing,v_2uUNiV8xmEo,v_2uUNiV8xmEo_1,0 1624,v_rsU73H6VyG8,high jump,what is the athlete doing with the pole,v_rsU73H6VyG8,v_rsU73H6VyG8_1,0 1625,v_rMj2JWNJzkw,helmet,what is on the athlete's head,v_rMj2JWNJzkw,v_rMj2JWNJzkw_9,5 1626,v_Jix3poZOeZA,hat,what is on the athlete's head,v_Jix3poZOeZA,v_Jix3poZOeZA_10,5 1627,v_3oy4P1gyU4k,play billiards,what is the second appeared person in the video doing,v_3oy4P1gyU4k,v_3oy4P1gyU4k_1,0 1628,v_BWAedc31WdY,shave,what is the man with short hair in video doing,v_BWAedc31WdY,v_BWAedc31WdY_1,0 1629,v_6VXQoPNphgI,gymnastics,what is the man with short hair in video doing,v_6VXQoPNphgI,v_6VXQoPNphgI_1,0 1630,v_RtF6TGqwa7Y,knit sweater,what is the sitting man doing,v_RtF6TGqwa7Y,v_RtF6TGqwa7Y_1,0 1631,v_rSGboODhu04,make salad,what is the standing person doing,v_rSGboODhu04,v_rSGboODhu04_1,0 1632,v_RXDVJlb97OI,dance,what is the standing person doing,v_RXDVJlb97OI,v_RXDVJlb97OI_1,0 1633,v_jhy6npIdn5o,decorating christmas tree,what is the standing person doing,v_jhy6npIdn5o,v_jhy6npIdn5o_1,0 1634,v_kD_EJjQCLoY,assemble bicycle,what is the standing person doing,v_kD_EJjQCLoY,v_kD_EJjQCLoY_1,0 1635,v_Df7AnfIEhYw,play,what are the two people doing in the video,v_Df7AnfIEhYw,v_Df7AnfIEhYw_1,0 1636,v_8_fjIZkNHms,use stick,what is the woman in purple doing,v_8_fjIZkNHms,v_8_fjIZkNHms_1,0 1637,v_iuc48VIWLJY,skiing leather ring,what is the woman in purple doing,v_iuc48VIWLJY,v_iuc48VIWLJY_1,0 1638,v_FmfAB-ppHBs,light cigarette,what are they doing,v_FmfAB-ppHBs,v_FmfAB-ppHBs_1,0 1639,v_Flm_SCK10GQ,wrist wrestling,what are they doing,v_Flm_SCK10GQ,v_Flm_SCK10GQ_1,0 1640,v__fLhtWSCaSo,tree pruning,what are they doing in the video,v__fLhtWSCaSo,v__fLhtWSCaSo_1,0 1641,v_jDlvGWOdcqU,tire change,what is the guy in jeans doing,v_jDlvGWOdcqU,v_jDlvGWOdcqU_1,0 1642,v_6LsvBNqJuJY,tattoo,what is the woman doing in the video,v_6LsvBNqJuJY,v_6LsvBNqJuJY_1,0 1643,v_j81ndpMC9gI,cut nails for cat,what is the woman doing in the video,v_j81ndpMC9gI,v_j81ndpMC9gI_1,0 1644,v_hIHeMA1oRrY,sunscreen,what is the woman doing in the video,v_hIHeMA1oRrY,v_hIHeMA1oRrY_1,0 1645,v_cYvFlrAnlzA,table tennis,what is the woman doing in the video,v_cYvFlrAnlzA,v_cYvFlrAnlzA_1,0 1646,v_F7K2oT7ADkk,wash clothes,what is the woman doing in the video,v_F7K2oT7ADkk,v_F7K2oT7ADkk_1,0 1647,v_FEOdYNR4gls,performing gymnastics,what is the woman doing in the video,v_FEOdYNR4gls,v_FEOdYNR4gls_1,0 1648,v_d4sX1jnL4BY,diving,what is the woman doing in the video,v_d4sX1jnL4BY,v_d4sX1jnL4BY_1,0 1649,v_-CqVpCRxwTY,play roller skating,what is the woman doing in the video,v_-CqVpCRxwTY,v_-CqVpCRxwTY_1,0 1650,v_sfbgZOHLkII,ride camel,what is the woman doing in the video,v_sfbgZOHLkII,v_sfbgZOHLkII_1,0 1651,v_vezvHLPR3P0,throw hammer,what is the woman in white clothes doing,v_vezvHLPR3P0,v_vezvHLPR3P0_1,0 1652,v_8A4cZXyDrkU,wheel change,what is the woman in white clothes doing,v_8A4cZXyDrkU,v_8A4cZXyDrkU_1,0 1653,v_DTI__3fkSzM,knit sweater,what is the woman in black clothes doing,v_DTI__3fkSzM,v_DTI__3fkSzM_1,0 1654,v__SJOVswvGRc,play football,what is the woman in red clothes doing,v__SJOVswvGRc,v__SJOVswvGRc_1,0 1655,v_8IrulONeC28,play game,what is the woman in red clothes doing,v_8IrulONeC28,v_8IrulONeC28_1,0 1656,v_uty4eGb_vvU,dance tai chi sword,what is the woman in red clothes doing,v_uty4eGb_vvU,v_uty4eGb_vvU_1,0 1657,v_cQgP0-Id-p4,wrists,what is the woman in white clothes doing,v_cQgP0-Id-p4,v_cQgP0-Id-p4_1,0 1658,v_ETbbYC0OhL0,wrestling,what is the woman with purple hair doing,v_ETbbYC0OhL0,v_ETbbYC0OhL0_1,0 1659,v_a_EqAwUOxpM,be manicure,what is the person doing in the video,v_a_EqAwUOxpM,v_a_EqAwUOxpM_1,0 1660,v_Aen-RfnlK3A,make sandwich biscuits,what is the person doing in the video,v_Aen-RfnlK3A,v_Aen-RfnlK3A_1,0 1661,v_mZYWfmsYQPA,reaction capacity,what benefit can this exercise bring,v_mZYWfmsYQPA,v_mZYWfmsYQPA_8,8 1662,v_CwImmV7q1MY,gray,what color of the clothes does the man wear in the video,v_CwImmV7q1MY,v_CwImmV7q1MY_8,4 1663,v_V6Sy8zpJSuc,gray,what color of the clothes does the person with hat wear,v_V6Sy8zpJSuc,v_V6Sy8zpJSuc_7,4 1664,v_oKJ1BnvHbbA,black,what color of the pants does the person in yellow clothes wear,v_oKJ1BnvHbbA,v_oKJ1BnvHbbA_6,4 1665,v_YMOYyt3kSOs,black,what color of the pants does the person in white clothes wear,v_YMOYyt3kSOs,v_YMOYyt3kSOs_8,4 1666,v_y0ca-LbQErY,blue,what color of the pants does the person in white clothes wear,v_y0ca-LbQErY,v_y0ca-LbQErY_6,4 1667,v_1QIUV7WYKXg,green,what color of the clothes does the athlete wear,v_1QIUV7WYKXg,v_1QIUV7WYKXg_7,4 1668,v_2-AMrzL7V-U,red,what color of the clothes does the athlete wear,v_2-AMrzL7V-U,v_2-AMrzL7V-U_7,4 1669,v_EDDbcCBnTQM,white,what color of the clothes does the man wear,v_EDDbcCBnTQM,v_EDDbcCBnTQM_7,4 1670,v_OysON6LbF6Y,black,what color of the clothes does the man wear,v_OysON6LbF6Y,v_OysON6LbF6Y_9,4 1671,v_0XTAq_xvquw,black,what color of the clothes does the man wear in the video,v_0XTAq_xvquw,v_0XTAq_xvquw_7,4 1672,v_lU6DMCif3eE,black,what color of the clothes does the person wear in the video,v_lU6DMCif3eE,v_lU6DMCif3eE_7,4 1673,v_mZYWfmsYQPA,black,what color of the clothes does the person wear in the video,v_mZYWfmsYQPA,v_mZYWfmsYQPA_10,4 1674,v_nbOsU2Vmp1U,black,what color of the clothes does the person wear in the video,v_nbOsU2Vmp1U,v_nbOsU2Vmp1U_10,4 1675,v_1PNjVTM0Zto,yellow,what color of the clothes does the person wear in the video,v_1PNjVTM0Zto,v_1PNjVTM0Zto_8,4 1676,v_nbHBjdE8oNo,black and white,what color of the clothes does the person wear in the video,v_nbHBjdE8oNo,v_nbHBjdE8oNo_6,4 1677,v_n832gDqfWl4,white,what color of the clothes does the person wear in the video,v_n832gDqfWl4,v_n832gDqfWl4_9,4 1678,v_d_A-ylxNbFU,black,what color of the clothes does the person wear in the video,v_d_A-ylxNbFU,v_d_A-ylxNbFU_7,4 1679,v_ngMxE3CnGVg,black,what color of the clothes does the person wear in the video,v_ngMxE3CnGVg,v_ngMxE3CnGVg_6,4 1680,v_45hcc_VI4t4,red,what color of the clothes does the person with blond hair wear,v_45hcc_VI4t4,v_45hcc_VI4t4_6,4 1681,v_3i3SUPsyZtA,white,what color of the clothes does the cook wear,v_3i3SUPsyZtA,v_3i3SUPsyZtA_7,4 1682,v_1px5LTVIR3A,blue,what color of the clothes does the dancer wear,v_1px5LTVIR3A,v_1px5LTVIR3A_8,4 1683,v_FEOdYNR4gls,black,what color of the clothes does the woman wear,v_FEOdYNR4gls,v_FEOdYNR4gls_8,4 1684,v_li_mry59KCM,black,what color of the clothes does the person wear,v_li_mry59KCM,v_li_mry59KCM_7,4 1685,v_laU1Hvm5Dis,blue,what color of the clothes does the person wear,v_laU1Hvm5Dis,v_laU1Hvm5Dis_7,4 1686,v_lfbspF18Wrw,blue,what color of the clothes does the person wear,v_lfbspF18Wrw,v_lfbspF18Wrw_6,4 1687,v_FkbpD1zWdPw,orange,what color of the clothes does the athlete wear,v_FkbpD1zWdPw,v_FkbpD1zWdPw_7,4 1688,v_836UrVGw6GI,yellow,what color of the hat does the person in white clothes wear,v_836UrVGw6GI,v_836UrVGw6GI_7,4 1689,v_mXqmRAUsn9U,green,what color of the hat does the person in blue clothes wear,v_mXqmRAUsn9U,v_mXqmRAUsn9U_6,4 1690,v_PD-FXR7O9J0,yellow,what color is the dog,v_PD-FXR7O9J0,v_PD-FXR7O9J0_8,4 1691,v_uJAL31wAD2A,yellow,what color is the dog,v_uJAL31wAD2A,v_uJAL31wAD2A_7,4 1692,v_DTI__3fkSzM,black and white,what color is the clothes that the woman is making,v_DTI__3fkSzM,v_DTI__3fkSzM_10,4 1693,v_Pjnuoa4o55c,pink,what color is the ball,v_Pjnuoa4o55c,v_Pjnuoa4o55c_9,4 1694,v_oMtB-y49Yo8,green,what color is the bowl in the video,v_oMtB-y49Yo8,v_oMtB-y49Yo8_6,4 1695,v_a4gI4LC1rJk,blue,what color is the bowl in the video,v_a4gI4LC1rJk,v_a4gI4LC1rJk_7,4 1696,v_atGMJc-DZ7w,black,what color is the bucket,v_atGMJc-DZ7w,v_atGMJc-DZ7w_10,4 1697,v_8teo_0gxzgk,black,what color is the car in the video,v_8teo_0gxzgk,v_8teo_0gxzgk_7,4 1698,v_A_Sr0mCX2rI,blue,what color is the car in the video,v_A_Sr0mCX2rI,v_A_Sr0mCX2rI_6,4 1699,v_qaml4eEk9hY,gray,what color is the carpet in the video,v_qaml4eEk9hY,v_qaml4eEk9hY_10,4 1700,v_OQEKZXv6jSw,yellow,what color is the chair in the video,v_OQEKZXv6jSw,v_OQEKZXv6jSw_10,4 1701,v_qKp2QCheLwU,white,what color of the clothes does the person with red hat wear,v_qKp2QCheLwU,v_qKp2QCheLwU_7,4 1702,v_32vYs9wKXE8,purple,what color is the comb,v_32vYs9wKXE8,v_32vYs9wKXE8_8,4 1703,v_z8x3wUZYOaM,blue,what color is the comb in the video,v_z8x3wUZYOaM,v_z8x3wUZYOaM_10,4 1704,v_nbHBjdE8oNo,brown,what color is the cup in the video,v_nbHBjdE8oNo,v_nbHBjdE8oNo_10,4 1705,v_hyMqGr0mOfA,orange,what color is the dart,v_hyMqGr0mOfA,v_hyMqGr0mOfA_8,4 1706,v_hIHeMA1oRrY,yellow,what color is the dog's fur,v_hIHeMA1oRrY,v_hIHeMA1oRrY_7,4 1707,v_ikUNgSw4Gys,pink,what color is the clothes of the blonde woman,v_ikUNgSw4Gys,v_ikUNgSw4Gys_7,4 1708,v_UvOEuhS0V3E,white,what color is the clothes of the woman with long hair,v_UvOEuhS0V3E,v_UvOEuhS0V3E_7,4 1709,v_7dXqXFoju2M,yellow,what color is the clothes of the woman with long hair,v_7dXqXFoju2M,v_7dXqXFoju2M_7,4 1710,v_VFC-V06hVj0,red,what color is the clothes of the woman with hat,v_VFC-V06hVj0,v_VFC-V06hVj0_10,4 1711,v_FADShG5lyB8,brown,what color is the floor,v_FADShG5lyB8,v_FADShG5lyB8_8,4 1712,v_3PsxzgeMv5w,yellow,what color is the floor,v_3PsxzgeMv5w,v_3PsxzgeMv5w_6,4 1713,v_TtewPltwuXw,black,what color is the flute,v_TtewPltwuXw,v_TtewPltwuXw_9,4 1714,v_RXT17X7lRoQ,black,what color is the english caption appearing at the beginning of the video,v_RXT17X7lRoQ,v_RXT17X7lRoQ_6,4 1715,v_kMtjk1KFvXQ,black and white,what color is the girl's clothes,v_kMtjk1KFvXQ,v_kMtjk1KFvXQ_7,4 1716,v_e4kS-n7_LRU,blue,what color is the girl's clothes,v_e4kS-n7_LRU,v_e4kS-n7_LRU_6,4 1717,v_vBaiedxy1Uw,black,what color is the hair of the boy in blue clothes,v_vBaiedxy1Uw,v_vBaiedxy1Uw_10,4 1718,v_1xtKGlUp4Vg,white,what color is the dog's fur,v_1xtKGlUp4Vg,v_1xtKGlUp4Vg_7,4 1719,v_XxW4XWySzOw,yellow,what color is the hair of the person in red clothes,v_XxW4XWySzOw,v_XxW4XWySzOw_9,4 1720,v_x6pYeqq3O08,yellow,what color is the hair of the person in red clothes,v_x6pYeqq3O08,v_x6pYeqq3O08_10,4 1721,v_1494UwmvAJM,black,what color is the hair of the person in white clothes,v_1494UwmvAJM,v_1494UwmvAJM_9,4 1722,v_ZLJ2BmBkLJg,golden,what color is the hair of the person in black coat,v_ZLJ2BmBkLJg,v_ZLJ2BmBkLJg_7,4 1723,v_QdmcjM2fluo,brown,what color is the hair of the person in black coat,v_QdmcjM2fluo,v_QdmcjM2fluo_7,4 1724,v_zTHkqpNFGno,black,what color is the hair of the person in black coat,v_zTHkqpNFGno,v_zTHkqpNFGno_8,4 1725,v_otMw5GJWYWs,golden,what color is the hair of the person in black clothes,v_otMw5GJWYWs,v_otMw5GJWYWs_6,4 1726,v_xND_kp-aYXw,red,what color is the hair of the person in black clothes,v_xND_kp-aYXw,v_xND_kp-aYXw_7,4 1727,v_X6CBZwwRdQQ,white,what color is the hair of the person in black clothes,v_X6CBZwwRdQQ,v_X6CBZwwRdQQ_8,4 1728,v_qWgF9hxNbP8,black,what color is the hair of the person in black vest,v_qWgF9hxNbP8,v_qWgF9hxNbP8_9,4 1729,v_qiupddjDHDg,white,what color is the hair of the person in blue coat,v_qiupddjDHDg,v_qiupddjDHDg_7,4 1730,v_qiTQ02NDSlQ,black,what color is the hair of the person in blue coat,v_qiTQ02NDSlQ,v_qiTQ02NDSlQ_9,4 1731,v_zxpQHLwZCug,white,what color is the hair of the person in blue clothes,v_zxpQHLwZCug,v_zxpQHLwZCug_8,4 1732,v_pzTqZWPubk8,black,what color is the hair of the person in gray tshirt,v_pzTqZWPubk8,v_pzTqZWPubk8_8,4 1733,v_qZMcbBsQorE,black,what color is the hair of the person in gray vest,v_qZMcbBsQorE,v_qZMcbBsQorE_9,4 1734,v_zPQodcasmSA,golden,what color is the hair of the person in green clothes,v_zPQodcasmSA,v_zPQodcasmSA_9,4 1735,v_zKYiTA6WBS4,golden,what color is the hair of the person in green clothes,v_zKYiTA6WBS4,v_zKYiTA6WBS4_7,4 1736,v_ZJnXQw84xvo,golden,what color is the hair of the person in green clothes,v_ZJnXQw84xvo,v_ZJnXQw84xvo_7,4 1737,v_xfV4V_AOVSM,black,what color is the hair of the person in purple clothes,v_xfV4V_AOVSM,v_xfV4V_AOVSM_8,4 1738,v_nGKc2t-NMYc,yellow,what color is the hair of the person in purple clothes,v_nGKc2t-NMYc,v_nGKc2t-NMYc_10,4 1739,v_Z-zG845frso,golden,what color is the hair of the person in red coat,v_Z-zG845frso,v_Z-zG845frso_7,4 1740,v_zpaS2iYrJjk,black,what color is the hair of the person in red coat,v_zpaS2iYrJjk,v_zpaS2iYrJjk_7,4 1741,v_gr53ih2aFkE,yellow,what color is the hair of the person in red clothes,v_gr53ih2aFkE,v_gr53ih2aFkE_9,4 1742,v_GOhmWfR8QBM,golden,what color is the hair of the person in red clothes,v_GOhmWfR8QBM,v_GOhmWfR8QBM_9,4 1743,v_qZtdMXkHRXw,black,what color is the hair of the person in white clothes,v_qZtdMXkHRXw,v_qZtdMXkHRXw_10,4 1744,v_ghHZ9M-jx0w,golden,what color is the hair of the person in white clothes,v_ghHZ9M-jx0w,v_ghHZ9M-jx0w_8,4 1745,v_G25py7yEVyo,golden,what color is the hair of the person in white clothes,v_G25py7yEVyo,v_G25py7yEVyo_7,4 1746,v_X52XHYKeLiE,yellow,what color is the hair of the person in white clothes,v_X52XHYKeLiE,v_X52XHYKeLiE_9,4 1747,v_Znb6Y9m_PsQ,brown,what color is the hair of the person in black tshirt,v_Znb6Y9m_PsQ,v_Znb6Y9m_PsQ_7,4 1748,v_aGvpDyMNATI,black,what color is the hat of the person in black clothes,v_aGvpDyMNATI,v_aGvpDyMNATI_7,4 1749,v_ys4_S3JHQjs,white,what color is the hat of the person in black clothes,v_ys4_S3JHQjs,v_ys4_S3JHQjs_9,4 1750,v_ZAX6OojMg38,white,what color is the hat of the person in red clothes,v_ZAX6OojMg38,v_ZAX6OojMg38_7,4 1751,v_ojTFTIwsa_c,black,what color is the hat of the person in black clothes,v_ojTFTIwsa_c,v_ojTFTIwsa_c_6,4 1752,v_GsPE54bMFwE,black,what color is the hat of the person in black vest,v_GsPE54bMFwE,v_GsPE54bMFwE_6,4 1753,v_CKSlgK_2FP4,white,what color is the hat of the person in white clothes,v_CKSlgK_2FP4,v_CKSlgK_2FP4_8,4 1754,v_BMy7CBVxH5M,white,what color is the horse in the video,v_BMy7CBVxH5M,v_BMy7CBVxH5M_6,4 1755,v_P5D9S9NzQ28,purple,what color is the coat of the lady,v_P5D9S9NzQ28,v_P5D9S9NzQ28_6,4 1756,v_d4sX1jnL4BY,yellow,what color is the hair of the man in the video,v_d4sX1jnL4BY,v_d4sX1jnL4BY_8,4 1757,v_uWfQcDvel84,white,what color are the pants of the man with hat,v_uWfQcDvel84,v_uWfQcDvel84_7,4 1758,v_8IrulONeC28,black,what color are the pants of the man in yellow clothes,v_8IrulONeC28,v_8IrulONeC28_7,4 1759,v_QXN6odBnVmI,blue,what color are the pants of the person in black tshirt,v_QXN6odBnVmI,v_QXN6odBnVmI_8,4 1760,v_ZnKB0U96ZI4,black,what color are the pants of the person in gray tshirt,v_ZnKB0U96ZI4,v_ZnKB0U96ZI4_8,4 1761,v_nYl_tYmijlM,black,what color are the pants of the person in white clothes,v_nYl_tYmijlM,v_nYl_tYmijlM_6,4 1762,v_ZLG1Exv8HrY,black,what color are the pants of the person in white tshirt,v_ZLG1Exv8HrY,v_ZLG1Exv8HrY_7,4 1763,v_Feq-2NIDl94,white,what color is the nail polish,v_Feq-2NIDl94,v_Feq-2NIDl94_8,4 1764,v_woI_zP55qWo,black,what color are the trousers of the diving man,v_woI_zP55qWo,v_woI_zP55qWo_7,4 1765,v_uLphvdhunTY,yellow,what color is the person's clothes in the video,v_uLphvdhunTY,v_uLphvdhunTY_8,4 1766,v_uM7QSskmloo,yellow,what color is the person's clothes in the video,v_uM7QSskmloo,v_uM7QSskmloo_9,4 1767,v_Of2Umm79Kxg,black,what color is the person's clothes in the video,v_Of2Umm79Kxg,v_Of2Umm79Kxg_6,4 1768,v_Yg03CCu9GMo,white,what color is the person's clothes in the video,v_Yg03CCu9GMo,v_Yg03CCu9GMo_7,4 1769,v_udSHsodv3gY,green,what color is the person's coat in the video,v_udSHsodv3gY,v_udSHsodv3gY_8,4 1770,v_zEttEkAdHts,red,what color is the person's coat in the video,v_zEttEkAdHts,v_zEttEkAdHts_7,4 1771,v_YaC68rE4lwA,blue,what color is the person's clothes in the video,v_YaC68rE4lwA,v_YaC68rE4lwA_8,4 1772,v_U2cCOj3LiAA,gray,what color is the person's clothes in the video,v_U2cCOj3LiAA,v_U2cCOj3LiAA_8,4 1773,v_Y05GAiavfOg,white,what color is the person's clothes in the video,v_Y05GAiavfOg,v_Y05GAiavfOg_6,4 1774,v_oT6WUU8-dgs,black,what color is the person's clothes in the video,v_oT6WUU8-dgs,v_oT6WUU8-dgs_8,4 1775,v_TnP6coXzbLY,red,what color is the person's clothes in the video,v_TnP6coXzbLY,v_TnP6coXzbLY_8,4 1776,v_Uae2MWoldTU,black,what color is the person's clothes in the video,v_Uae2MWoldTU,v_Uae2MWoldTU_8,4 1777,v_yUvSujxnFE0,red,what color is the person's clothes in the video,v_yUvSujxnFE0,v_yUvSujxnFE0_6,4 1778,v_z6pmp8TrAVo,gray,what color is the person's clothes in the video,v_z6pmp8TrAVo,v_z6pmp8TrAVo_7,4 1779,v_W2Mh01F3K5c,red,what color are the gloves of the person in white clothes,v_W2Mh01F3K5c,v_W2Mh01F3K5c_10,4 1780,v_Q5HdVXF390c,brown,what color is the hair of the person in plaid shirt,v_Q5HdVXF390c,v_Q5HdVXF390c_7,4 1781,v_pYaZLHpl_Ww,brown,what color is the hair of the person in striped shirt,v_pYaZLHpl_Ww,v_pYaZLHpl_Ww_8,4 1782,v_ZxCdhz4ep0s,brown,what color is the hair of the person in striped shirt,v_ZxCdhz4ep0s,v_ZxCdhz4ep0s_7,4 1783,v_vFO70WwrQgE,black,what color is the hair of the person in red clothes,v_vFO70WwrQgE,v_vFO70WwrQgE_10,4 1784,v_Zt9qvbUnNhc,black,what color is the hair of the person in red shorts,v_Zt9qvbUnNhc,v_Zt9qvbUnNhc_7,4 1785,v_3uaQ0cULMgc,golden,what color is the person's hair in the video,v_3uaQ0cULMgc,v_3uaQ0cULMgc_7,4 1786,v_9MN6GNhvwzA,black,what color is the person's hair in the video,v_9MN6GNhvwzA,v_9MN6GNhvwzA_7,4 1787,v_mvRoVXRGVGw,yellow,what color is the person's hair in the video,v_mvRoVXRGVGw,v_mvRoVXRGVGw_6,4 1788,v_n9EdHGz7ArI,golden,what color is the person's hair in the video,v_n9EdHGz7ArI,v_n9EdHGz7ArI_10,4 1789,v_04qggWACGWk,black,what color is the person's hair in the video,v_04qggWACGWk,v_04qggWACGWk_8,4 1790,v_ngMxE3CnGVg,yellow,what color is the person's hair in the video,v_ngMxE3CnGVg,v_ngMxE3CnGVg_9,4 1791,v_Vhn4SuPhu-0,black,what color is the hair of the person in white clothes,v_Vhn4SuPhu-0,v_Vhn4SuPhu-0_10,4 1792,v_X_K7Aa3Aa-E,yellow,what color is the hair of the person in white clothes,v_X_K7Aa3Aa-E,v_X_K7Aa3Aa-E_7,4 1793,v_yCpdDJAW-jU,pink,what color is the person's hat in the video,v_yCpdDJAW-jU,v_yCpdDJAW-jU_6,4 1794,v_nDM4E9CD_y0,red,what color is the person's hat in the video,v_nDM4E9CD_y0,v_nDM4E9CD_y0_9,4 1795,v_HTYzbAFUghU,white,what color is the person's hat in the video,v_HTYzbAFUghU,v_HTYzbAFUghU_8,4 1796,v_zO5JMTzLDHw,black,what color are the pants of the person in black coat,v_zO5JMTzLDHw,v_zO5JMTzLDHw_8,4 1797,v_xMNmGr96O9U,black,what color are the pants of the person in black clothes,v_xMNmGr96O9U,v_xMNmGr96O9U_8,4 1798,v_AguxVxEWEs0,white,what color are the pants of the person in blue clothes,v_AguxVxEWEs0,v_AguxVxEWEs0_9,4 1799,v_ZlVydB9uUe4,gray,what color are the pants of the person in white shirt,v_ZlVydB9uUe4,v_ZlVydB9uUe4_7,4 1800,v_zqxzFxya6T8,blue,what color are the pants of the person in white shirt,v_zqxzFxya6T8,v_zqxzFxya6T8_8,4 1801,v_VJh9W3Gcpmo,gray,what color are the pants of the person in red clothes,v_VJh9W3Gcpmo,v_VJh9W3Gcpmo_10,4 1802,v_YRGiRmcHdUY,black,what color is the person's pants in the video,v_YRGiRmcHdUY,v_YRGiRmcHdUY_6,4 1803,v_yGTIEmZ7S2w,black,what color is the person's pants in the video,v_yGTIEmZ7S2w,v_yGTIEmZ7S2w_7,4 1804,v__jV5sAOOHLk,black,what color are the shoes of the person in black clothes,v__jV5sAOOHLk,v__jV5sAOOHLk_9,4 1805,v_d6gGZFQOxOg,blue,what color are the shoes of the person in green clothes,v_d6gGZFQOxOg,v_d6gGZFQOxOg_7,4 1806,v_Ar6TcWqwK-A,white,what color is the person's shoes in the video,v_Ar6TcWqwK-A,v_Ar6TcWqwK-A_6,4 1807,v_Oh3-DvDCpZ4,white,what color is the plate in the video,v_Oh3-DvDCpZ4,v_Oh3-DvDCpZ4_6,4 1808,v_vzUeFzhVYLg,blue,what color is the pool,v_vzUeFzhVYLg,v_vzUeFzhVYLg_8,4 1809,v_A9VCuZ53ObQ,white,what color is the quilt in the video,v_A9VCuZ53ObQ,v_A9VCuZ53ObQ_8,4 1810,v_TGffgRXc1eQ,red,what color is the referee's clothes,v_TGffgRXc1eQ,v_TGffgRXc1eQ_7,4 1811,v_XxW4XWySzOw,yellow,what color is the ship in the video,v_XxW4XWySzOw,v_XxW4XWySzOw_8,4 1812,v_zA2zZPyYLlU,red,what color is the ship in the video,v_zA2zZPyYLlU,v_zA2zZPyYLlU_7,4 1813,v_0xBP-TSsqb0,brown,what color is the sofa in the video,v_0xBP-TSsqb0,v_0xBP-TSsqb0_10,4 1814,v_f1d7_TKXNYQ,red,what color is the sportsman's coat,v_f1d7_TKXNYQ,v_f1d7_TKXNYQ_9,4 1815,v_vQ82ItCG1x4,red,what color is the table,v_vQ82ItCG1x4,v_vQ82ItCG1x4_8,4 1816,v__CIoHeD7KQc,yellow,what color is the table in the video,v__CIoHeD7KQc,v__CIoHeD7KQc_6,4 1817,v_V9mLJJn8Lvw,yellow,what color is the table in the video,v_V9mLJJn8Lvw,v_V9mLJJn8Lvw_7,4 1818,v_8vDSV9ruYlc,white,what color is the towel in the video,v_8vDSV9ruYlc,v_8vDSV9ruYlc_7,4 1819,v_ojTFTIwsa_c,green,what color is the towel in the video,v_ojTFTIwsa_c,v_ojTFTIwsa_c_9,4 1820,v_46NS8dT15Hw,blue,what color is the toy in the video,v_46NS8dT15Hw,v_46NS8dT15Hw_8,4 1821,v_Ynvd8OuXKGw,green,what color is the tree in the video,v_Ynvd8OuXKGw,v_Ynvd8OuXKGw_8,4 1822,v_YVqRQDkdA8U,green,what color is the tree in the video,v_YVqRQDkdA8U,v_YVqRQDkdA8U_7,4 1823,v_UNXLfqkwKFc,black,what color is the vacuum cleaner in the video,v_UNXLfqkwKFc,v_UNXLfqkwKFc_10,4 1824,v_Z6b4oFjIznU,blue,what color is the sponge pad in the video,v_Z6b4oFjIznU,v_Z6b4oFjIznU_8,4 1825,v_-YwrMtiqHKg,white,what color is the wall in the video,v_-YwrMtiqHKg,v_-YwrMtiqHKg_6,4 1826,v_v0azz4XzW_s,red,what color is the mower,v_v0azz4XzW_s,v_v0azz4XzW_s_10,4 1827,v_CuLC5G7yWxA,black,what color is the woman wearing in the video,v_CuLC5G7yWxA,v_CuLC5G7yWxA_6,4 1828,v_Pv4FwH2TC6Y,black,what color is the woman's hair,v_Pv4FwH2TC6Y,v_Pv4FwH2TC6Y_9,4 1829,v_-CqVpCRxwTY,yellow,what color is the woman's hair in the video,v_-CqVpCRxwTY,v_-CqVpCRxwTY_10,4 1830,v_FPf7mAgdy0I,yellow,what color is the woman's hair in the video,v_FPf7mAgdy0I,v_FPf7mAgdy0I_8,4 1831,v_W97fdJ2Rn9g,yellow,what color is the woman's hair in the video,v_W97fdJ2Rn9g,v_W97fdJ2Rn9g_7,4 1832,v_vezvHLPR3P0,black,what color are the pants of the woman in white clothes,v_vezvHLPR3P0,v_vezvHLPR3P0_10,4 1833,v_utgRhyBvtRU,black,what color are the pants of the woman in white clothes,v_utgRhyBvtRU,v_utgRhyBvtRU_7,4 1834,v_8A4cZXyDrkU,red,what color is this car,v_8A4cZXyDrkU,v_8A4cZXyDrkU_7,4 1835,v_fh9d3gpT-8I,black,what color are the pants of the man wearing,v_fh9d3gpT-8I,v_fh9d3gpT-8I_7,4 1836,v_fhOmyyI0eQE,gray,what color are the pants of the man wearing,v_fhOmyyI0eQE,v_fhOmyyI0eQE_7,4 1837,v_fh21bbDSVmA,blue,what color are the pants of the man wearing,v_fh21bbDSVmA,v_fh21bbDSVmA_9,4 1838,v__kmjpSZb3OI,gray,what color are the pants of the person in black clothes,v__kmjpSZb3OI,v__kmjpSZb3OI_6,4 1839,v_mSR-HpiJ0No,black,what color are the pants of the person in red clothes,v_mSR-HpiJ0No,v_mSR-HpiJ0No_10,4 1840,v_FFMugev85IY,black,what color of the pants does the woman wear,v_FFMugev85IY,v_FFMugev85IY_8,4 1841,v_penDFcEdu7U,black,what color of the pants does the woman wear,v_penDFcEdu7U,v_penDFcEdu7U_10,4 1842,v_87F9xGaMwCw,white,what color are the shoes of the person in black clothes,v_87F9xGaMwCw,v_87F9xGaMwCw_8,4 1843,v_Oh3-DvDCpZ4,hat,what does the person in white wear,v_Oh3-DvDCpZ4,v_Oh3-DvDCpZ4_10,5 1844,v_y0ca-LbQErY,dynamic bicycle,what does the person in white wear,v_y0ca-LbQErY,v_y0ca-LbQErY_9,5 1845,v_mek9Zodu8LM,white glove,what does the person in black wear on the hand,v_mek9Zodu8LM,v_mek9Zodu8LM_6,5 1846,v_SB0dU5oDvaE,glove,what does the person in black wear on the hand,v_SB0dU5oDvaE,v_SB0dU5oDvaE_9,5 1847,v_X2toGKgWMpE,chat,what happened after the billiards,v_X2toGKgWMpE,v_X2toGKgWMpE_5,2 1848,v_75Tc1nPmZFQ,rest,what happened after playing volleyball,v_75Tc1nPmZFQ,v_75Tc1nPmZFQ_5,2 1849,v_mvRoVXRGVGw,lying on ground,what happened after skiing,v_mvRoVXRGVGw,v_mvRoVXRGVGw_5,2 1850,v_836UrVGw6GI,introduce people,what happened after stepping on the skateboard,v_836UrVGw6GI,v_836UrVGw6GI_5,2 1851,v_JH9qiuPCkY4,motorcycle jump,what happened after the athlete went uphill,v_JH9qiuPCkY4,v_JH9qiuPCkY4_5,2 1852,v_JR9LosQmMvg,jump up,what happened after the athlete went uphill,v_JR9LosQmMvg,v_JR9LosQmMvg_5,2 1853,v_xizEiQZfJa4,take cell phone,what happened after playing ball,v_xizEiQZfJa4,v_xizEiQZfJa4_5,2 1854,v_XxW4XWySzOw,play with mud,what happened after the boating,v_XxW4XWySzOw,v_XxW4XWySzOw_5,2 1855,v_mSR-HpiJ0No,rest,what happened after the dance,v_mSR-HpiJ0No,v_mSR-HpiJ0No_5,2 1856,v_xND_kp-aYXw,rest,what happened after the drumming,v_xND_kp-aYXw,v_xND_kp-aYXw_5,2 1857,v_mV07bEBkIcM,and then drums,what happened after the drumming,v_mV07bEBkIcM,v_mV07bEBkIcM_5,2 1858,v_K7iw2_1BrIk,audience left,what happened after the game,v_K7iw2_1BrIk,v_K7iw2_1BrIk_5,2 1859,v_b_c17BmZCCs,audience came to court,what happened after the game,v_b_c17BmZCCs,v_b_c17BmZCCs_5,2 1860,v_dFGS7YCDk3Y,raise hand to celebrate,what happened after the game,v_dFGS7YCDk3Y,v_dFGS7YCDk3Y_5,2 1861,v_xS4twW2gXqc,rest,what happened after the high jump,v_xS4twW2gXqc,v_xS4twW2gXqc_5,2 1862,v_rsU73H6VyG8,cheer,what happened after the high jump,v_rsU73H6VyG8,v_rsU73H6VyG8_5,2 1863,v_9MN6GNhvwzA,hopping hula hoop,what happened after taking the hula hoop,v_9MN6GNhvwzA,v_9MN6GNhvwzA_5,2 1864,v_yCpdDJAW-jU,throw snowball,what happened to the person in the video after sweeping the snow,v_yCpdDJAW-jU,v_yCpdDJAW-jU_5,2 1865,v_f6vZaMgqDvQ,to ground,what happened after the show,v_f6vZaMgqDvQ,v_f6vZaMgqDvQ_5,2 1866,v_BkDbDnvoL28,video end,what happened after the show,v_BkDbDnvoL28,v_BkDbDnvoL28_5,2 1867,v_7rwDYzqfGgU,audience applauded,what happened after the show,v_7rwDYzqfGgU,v_7rwDYzqfGgU_5,2 1868,v_nDM4E9CD_y0,then shovel snow,what happened after shoveling the snow,v_nDM4E9CD_y0,v_nDM4E9CD_y0_5,2 1869,v_pmmQuksmTvw,pole vault,what happened after the athlete started running,v_pmmQuksmTvw,v_pmmQuksmTvw_5,2 1870,v_Pr5K2Jh2X94,jump into sand pit,what happened after the athlete started running,v_Pr5K2Jh2X94,v_Pr5K2Jh2X94_5,2 1871,v_-eJT11AuOa0,talk to passer by,what happened after walking the dog,v_-eJT11AuOa0,v_-eJT11AuOa0_5,2 1872,v_aGvpDyMNATI,run up,what happened to the person in black before throwing the javelin,v_aGvpDyMNATI,v_aGvpDyMNATI_5,2 1873,v_MVA568rRjzQ,serve,what happened before playing tennis,v_MVA568rRjzQ,v_MVA568rRjzQ_5,2 1874,v_16bJAOf1SJI,take ball,what happened before the ball game,v_16bJAOf1SJI,v_16bJAOf1SJI_5,2 1875,v_N75m1Z4RqbA,go on court,what happened before the dance,v_N75m1Z4RqbA,v_N75m1Z4RqbA_5,2 1876,v_n9EdHGz7ArI,introduction of products,what happened before drinking,v_n9EdHGz7ArI,v_n9EdHGz7ArI_5,2 1877,v_Nb6AQxxrihA,drink drink,what happened before drinking,v_Nb6AQxxrihA,v_Nb6AQxxrihA_5,2 1878,v_BMy7CBVxH5M,clean horse,what happened before the end of the video,v_BMy7CBVxH5M,v_BMy7CBVxH5M_5,2 1879,v_JKJ_EvP7JwQ,lens shaky,what happened before the end of the video,v_JKJ_EvP7JwQ,v_JKJ_EvP7JwQ_5,2 1880,v_PSB1nM3QXxg,end of demonstration,what happened before the end of the video,v_PSB1nM3QXxg,v_PSB1nM3QXxg_5,2 1881,v_32vYs9wKXE8,comb ones hair,what happened before the hair was made up,v_32vYs9wKXE8,v_32vYs9wKXE8_5,2 1882,v_xfV4V_AOVSM,wash hair,what happened before the hair was made up,v_xfV4V_AOVSM,v_xfV4V_AOVSM_5,2 1883,v_WGUzmra3h_w,start,what happened before the high jump,v_WGUzmra3h_w,v_WGUzmra3h_w_5,2 1884,v_snhPrCNubYA,run up,what happened before the jumper's takeoff,v_snhPrCNubYA,v_snhPrCNubYA_5,2 1885,v_Yg03CCu9GMo,add ice,what happened before the person in the video mopped the floor,v_Yg03CCu9GMo,v_Yg03CCu9GMo_5,2 1886,v_16czjUF1AA4,prepare for start,what happened before the pole vault,v_16czjUF1AA4,v_16czjUF1AA4_5,2 1887,v_26U3SkeZU6M,shedding rope,what happened before the rope skipping,v_26U3SkeZU6M,v_26U3SkeZU6M_5,2 1888,v_DIVaPURJHPo,check rope,what happened before the rope skipping,v_DIVaPURJHPo,v_DIVaPURJHPo_5,2 1889,v_390iVq_urQM,take skates,what happened before the skating,v_390iVq_urQM,v_390iVq_urQM_5,2 1890,v_28LdZLfdmMQ,get ready,what happened before the skating,v_28LdZLfdmMQ,v_28LdZLfdmMQ_5,2 1891,v_rMj2JWNJzkw,coach guidance,what happened before the start of the game,v_rMj2JWNJzkw,v_rMj2JWNJzkw_5,2 1892,v_RXT17X7lRoQ,referee throws the ball,what happened before the start of the game,v_RXT17X7lRoQ,v_RXT17X7lRoQ_5,2 1893,v_T3mcQnlsmq4,cat peppermint,what happened before the man in the video cut the cat's nails,v_T3mcQnlsmq4,v_T3mcQnlsmq4_5,2 1894,v_98ukqD62X5s,prepare starting,what happened before throwing the javelin,v_98ukqD62X5s,v_98ukqD62X5s_5,2 1895,v_WdtytUagoJs,start,what happened before throwing the javelin,v_WdtytUagoJs,v_WdtytUagoJs_5,2 1896,v_vFO70WwrQgE,shoulder shoulder,what happened before the man in the striped short sleeve washed his hands,v_vFO70WwrQgE,v_vFO70WwrQgE_5,2 1897,v_d_A-ylxNbFU,showcase wine,what happened to the person in the video before drinking,v_d_A-ylxNbFU,v_d_A-ylxNbFU_5,2 1898,v_W9H2qVnIWXs,blower,what happened after bathing the dog,v_W9H2qVnIWXs,v_W9H2qVnIWXs_5,2 1899,v_fh9d3gpT-8I,blow up drum,what happened after the man explained,v_fh9d3gpT-8I,v_fh9d3gpT-8I_5,2 1900,v_fhOmyyI0eQE,pruning trees,what happened after the man explained,v_fhOmyyI0eQE,v_fhOmyyI0eQE_5,2 1901,v_UzmsAb15Bso,squat,what happened to the man in a sweater before falling down,v_UzmsAb15Bso,v_UzmsAb15Bso_5,2 1902,v_AguxVxEWEs0,wrestling,what happened before the person in blue turned,v_AguxVxEWEs0,v_AguxVxEWEs0_5,2 1903,v_P8S8PIyPXxY,demonstrating,what happened before the person in blue turned,v_P8S8PIyPXxY,v_P8S8PIyPXxY_5,2 1904,v_YHqFNnhaFAY,almost hit by car,what happened after the person in red went downhill,v_YHqFNnhaFAY,v_YHqFNnhaFAY_5,2 1905,v_OQEKZXv6jSw,run up,what happened to the person in the red clothes before jumping,v_OQEKZXv6jSw,v_OQEKZXv6jSw_5,2 1906,v_-crpjVnFv0U,rest,what happened to the person in the video after the dance,v_-crpjVnFv0U,v_-crpjVnFv0U_5,2 1907,v_OYEKKzQjaJI,production process,what happened to the person in the video before eating the ice cream,v_OYEKKzQjaJI,v_OYEKKzQjaJI_5,2 1908,v_wdvQC41PGPk,button button,what happened to the person in the video before playing,v_wdvQC41PGPk,v_wdvQC41PGPk_5,2 1909,v_yUvSujxnFE0,throw ball,what happened to the person in the video before playing the ball,v_yUvSujxnFE0,v_yUvSujxnFE0_5,2 1910,v_OFTkwnSh-sQ,run up,what happened before the person in yellow jumped,v_OFTkwnSh-sQ,v_OFTkwnSh-sQ_5,2 1911,v_jibbgUBuuSA,be interviewed,what happened after the success of the athlete's attempt,v_jibbgUBuuSA,v_jibbgUBuuSA_5,2 1912,v_ghHZ9M-jx0w,go out,hat happened after the man in white got the ball,v_ghHZ9M-jx0w,v_ghHZ9M-jx0w_5,2 1913,v_3PsxzgeMv5w,down,what happened when the bowling pin is thrown out of bowling balls,v_3PsxzgeMv5w,v_3PsxzgeMv5w_5,2 1914,v_5k2Ot6-wOgc,all down,what happened when the bowling pin is thrown out of bowling balls,v_5k2Ot6-wOgc,v_5k2Ot6-wOgc_5,2 1915,v_GOhmWfR8QBM,christmas tree fell down,what happened when the person in red stood up,v_GOhmWfR8QBM,v_GOhmWfR8QBM_5,2 1916,v_CKSlgK_2FP4,sharpening,what happened to the person in the video after picking up the tool,v_CKSlgK_2FP4,v_CKSlgK_2FP4_5,2 1917,v_BmL2XGNrxc4,chopping wood,what happened to the person in the video after picking up the tool,v_BmL2XGNrxc4,v_BmL2XGNrxc4_5,2 1918,v_7vcihMnmssI,hole,what is the bald person doing,v_7vcihMnmssI,v_7vcihMnmssI_1,0 1919,v_vzUeFzhVYLg,diver,what is above the pool,v_vzUeFzhVYLg,v_vzUeFzhVYLg_4,1 1920,v_ZLJ2BmBkLJg,plain white cloth,what's behind the person in the black coat ,v_ZLJ2BmBkLJg,v_ZLJ2BmBkLJg_4,1 1921,v_zO5JMTzLDHw,national flag,what's behind the person in the black coat ,v_zO5JMTzLDHw,v_zO5JMTzLDHw_4,1 1922,v_sqv3M6MPKjQ,hair drier,what is behind the child,v_sqv3M6MPKjQ,v_sqv3M6MPKjQ_4,1 1923,v_sk_pnoqXxhs,white woman,what is behind the child,v_sk_pnoqXxhs,v_sk_pnoqXxhs_4,1 1924,v_Pv4FwH2TC6Y,wall column,what is behind the lady,v_Pv4FwH2TC6Y,v_Pv4FwH2TC6Y_4,1 1925,v_b0qGo-HT5iQ,visual acuity chart,what is behind the lady,v_b0qGo-HT5iQ,v_b0qGo-HT5iQ_4,1 1926,v_-pkfcMUIEMo,shovel,what is behind the person,v_-pkfcMUIEMo,v_-pkfcMUIEMo_4,1 1927,v_4_jDgRsOGvY,wall,what is behind the man in black,v_4_jDgRsOGvY,v_4_jDgRsOGvY_4,1 1928,v_0xBP-TSsqb0,sofa,what is behind the man in the video,v_0xBP-TSsqb0,v_0xBP-TSsqb0_4,1 1929,v_CwImmV7q1MY,living room,what is behind the man in the video,v_CwImmV7q1MY,v_CwImmV7q1MY_4,1 1930,v_ZlVydB9uUe4,tree,what's behind the person in the white shirt,v_ZlVydB9uUe4,v_ZlVydB9uUe4_4,1 1931,v_mixxaL3Bdv8,grassland,what's behind the person in orange,v_mixxaL3Bdv8,v_mixxaL3Bdv8_4,1 1932,v_St1RRi-aeNM,iron block,what is behind the athletes,v_St1RRi-aeNM,v_St1RRi-aeNM_4,1 1933,v_Co_cpZWbzFk,house,what is behind the audience,v_Co_cpZWbzFk,v_Co_cpZWbzFk_4,1 1934,v_JsPIzRsUtlE,automobile,what is behind the audience,v_JsPIzRsUtlE,v_JsPIzRsUtlE_4,1 1935,v_e-Xf13exY4E,mirror,what is behind the man in black,v_e-Xf13exY4E,v_e-Xf13exY4E_4,1 1936,v_W2eumNilwuI,wall,what is behind the man in black,v_W2eumNilwuI,v_W2eumNilwuI_4,1 1937,v_YVqRQDkdA8U,ground,what is behind the man in black pants,v_YVqRQDkdA8U,v_YVqRQDkdA8U_4,1 1938,v_w4pO-1-FG5w,mirror,what is behind the boy,v_w4pO-1-FG5w,v_w4pO-1-FG5w_4,1 1939,v_WINtiw-_3vg,billboard,what is behind the boy,v_WINtiw-_3vg,v_WINtiw-_3vg_4,1 1940,v_cCimLg-8Dy4,enclosure,what is behind the chair,v_cCimLg-8Dy4,v_cCimLg-8Dy4_4,1 1941,v_MAYrBia9Xnw,television,what is behind the child,v_MAYrBia9Xnw,v_MAYrBia9Xnw_4,1 1942,v_jhy6npIdn5o,window,what is behind the christmas tree,v_jhy6npIdn5o,v_jhy6npIdn5o_4,1 1943,v_Uae2MWoldTU,blue plastic film,what is behind the christmas tree,v_Uae2MWoldTU,v_Uae2MWoldTU_4,1 1944,v_blbaWHbtqTI,wall,what is behind the person who appears first,v_blbaWHbtqTI,v_blbaWHbtqTI_4,1 1945,v_Dd5yTxwKzXw,hair stylist,what is behind the girl in the video,v_Dd5yTxwKzXw,v_Dd5yTxwKzXw_4,1 1946,v_udSHsodv3gY,wooden doors,what is behind the horse,v_udSHsodv3gY,v_udSHsodv3gY_4,1 1947,v_sH_716hH_rY,small house,what is behind the horse,v_sH_716hH_rY,v_sH_716hH_rY_4,1 1948,v_dN8LBey17O8,house,what is behind the lawn,v_dN8LBey17O8,v_dN8LBey17O8_4,1 1949,v_xfV4V_AOVSM,table,what is behind the man in a purple clothes,v_xfV4V_AOVSM,v_xfV4V_AOVSM_4,1 1950,v_pPt_fygNjtQ,shelf,what is behind the man in a purple clothes,v_pPt_fygNjtQ,v_pPt_fygNjtQ_4,1 1951,v_pYaZLHpl_Ww,coloured lights,what is behind the man in a striped clothes,v_pYaZLHpl_Ww,v_pYaZLHpl_Ww_4,1 1952,v_lPw_BRbPw5s,small window,what is behind the person in black,v_lPw_BRbPw5s,v_lPw_BRbPw5s_4,1 1953,v_mUmSJps9WJI,sofa,what is behind the person in black,v_mUmSJps9WJI,v_mUmSJps9WJI_4,1 1954,v_Ynvd8OuXKGw,fountain,what is behind the person in black,v_Ynvd8OuXKGw,v_Ynvd8OuXKGw_4,1 1955,v_3nSOFmmA7FU,audience,what is behind the person in black,v_3nSOFmmA7FU,v_3nSOFmmA7FU_4,1 1956,v_mV07bEBkIcM,wall,what is behind the person in black,v_mV07bEBkIcM,v_mV07bEBkIcM_4,1 1957,v_96vBhCFBbQk,table,what is behind the person in blue,v_96vBhCFBbQk,v_96vBhCFBbQk_4,1 1958,v_MVA568rRjzQ,glass,what is behind the person in blue,v_MVA568rRjzQ,v_MVA568rRjzQ_4,1 1959,v_1px5LTVIR3A,blue screen,what is behind the person in blue,v_1px5LTVIR3A,v_1px5LTVIR3A_4,1 1960,v_62M1FRXsUiM,wall,what is behind the person in blue,v_62M1FRXsUiM,v_62M1FRXsUiM_4,1 1961,v_16czjUF1AA4,spectator seats,what is behind the person in blue,v_16czjUF1AA4,v_16czjUF1AA4_4,1 1962,v_kBTqTp0SKq8,wall,what is behind the person in blue,v_kBTqTp0SKq8,v_kBTqTp0SKq8_4,1 1963,v_xS4twW2gXqc,audience,what is behind the person in red,v_xS4twW2gXqc,v_xS4twW2gXqc_4,1 1964,v_T3A88zsRuVs,guardrail net,what is behind the person in red,v_T3A88zsRuVs,v_T3A88zsRuVs_4,1 1965,v_gr53ih2aFkE,tree,what is behind the person in red,v_gr53ih2aFkE,v_gr53ih2aFkE_4,1 1966,v_4j_LRkB4T6c,mirror,what is behind the person in red,v_4j_LRkB4T6c,v_4j_LRkB4T6c_4,1 1967,v_26U3SkeZU6M,wall,what is behind the person in blue,v_26U3SkeZU6M,v_26U3SkeZU6M_4,1 1968,v_TGffgRXc1eQ,screen,what is behind the person in blue,v_TGffgRXc1eQ,v_TGffgRXc1eQ_4,1 1969,v_teffBaLEZQg,cabinet,what is behind the person in a blue hat,v_teffBaLEZQg,v_teffBaLEZQg_4,1 1970,v_jbCQY7V7O1s,wall,what is behind the man in the video,v_jbCQY7V7O1s,v_jbCQY7V7O1s_4,1 1971,v_Y7aacWy3WDo,kitchen,what is behind the person in yellow,v_Y7aacWy3WDo,v_Y7aacWy3WDo_4,1 1972,v_prBiREYQ2vQ,wood,what is behind the person in yellow,v_prBiREYQ2vQ,v_prBiREYQ2vQ_4,1 1973,v_JB-ynj70saA,door,what is behind the person in black pants,v_JB-ynj70saA,v_JB-ynj70saA_4,1 1974,v_hIYN8cC3pEA,vehicle,what is behind the people in red clothes,v_hIYN8cC3pEA,v_hIYN8cC3pEA_4,1 1975,v_GOhmWfR8QBM,christmas tree,what is behind the people in red clothes,v_GOhmWfR8QBM,v_GOhmWfR8QBM_4,1 1976,v_40BPDWojssc,chair,what is behind the people in black clothes,v_40BPDWojssc,v_40BPDWojssc_4,1 1977,v_V90CMuokf0c,yellow bag,what is behind the people in black clothes,v_V90CMuokf0c,v_V90CMuokf0c_4,1 1978,v_MDWaKr7Gu5Q,blower,what is behind the people in green clothes,v_MDWaKr7Gu5Q,v_MDWaKr7Gu5Q_4,1 1979,v_i6wR9_tkg6A,cabinet,what is behind the people in green clothes,v_i6wR9_tkg6A,v_i6wR9_tkg6A_4,1 1980,v_i8hNrK3r_MY,glass cabinet,what is behind the people in the green clothes,v_i8hNrK3r_MY,v_i8hNrK3r_MY_4,1 1981,v_lU6DMCif3eE,two pieces of exhibition board,what is behind the person in the video,v_lU6DMCif3eE,v_lU6DMCif3eE_4,1 1982,v_fEBM3nPMen8,fish,what is behind the person in the video,v_fEBM3nPMen8,v_fEBM3nPMen8_4,1 1983,v_YaC68rE4lwA,wall,what is behind the person in the video,v_YaC68rE4lwA,v_YaC68rE4lwA_4,1 1984,v_0e5zwJywyqk,shelf,what is behind the person in the video,v_0e5zwJywyqk,v_0e5zwJywyqk_4,1 1985,v_uLphvdhunTY,wall,what is behind the person in the video,v_uLphvdhunTY,v_uLphvdhunTY_4,1 1986,v_9MN6GNhvwzA,goods shelves,what is behind the person in the video,v_9MN6GNhvwzA,v_9MN6GNhvwzA_4,1 1987,v_U2cCOj3LiAA,treadmill,what is behind the person in the video,v_U2cCOj3LiAA,v_U2cCOj3LiAA_4,1 1988,v_0k6GFx2ZCg8,window curtains,what is behind the person in the video,v_0k6GFx2ZCg8,v_0k6GFx2ZCg8_4,1 1989,v_OYEKKzQjaJI,wall,what is behind the person in the video,v_OYEKKzQjaJI,v_OYEKKzQjaJI_4,1 1990,v_Y05GAiavfOg,sofa,what is behind the person in the video,v_Y05GAiavfOg,v_Y05GAiavfOg_4,1 1991,v_n832gDqfWl4,wall,what is behind the person in the video,v_n832gDqfWl4,v_n832gDqfWl4_4,1 1992,v_6JZVpl2S2Mg,wall,what is behind the person in the video,v_6JZVpl2S2Mg,v_6JZVpl2S2Mg_4,1 1993,v_mvRoVXRGVGw,snow mountain,what is behind the person in the video,v_mvRoVXRGVGw,v_mvRoVXRGVGw_4,1 1994,v_aPI0nPvzJlE,mountain,what is behind the person in the video,v_aPI0nPvzJlE,v_aPI0nPvzJlE_4,1 1995,v_NjXCZYO3zwU,chair,what is behind the person in the video,v_NjXCZYO3zwU,v_NjXCZYO3zwU_4,1 1996,v_HTYzbAFUghU,table,what is behind the person in the video,v_HTYzbAFUghU,v_HTYzbAFUghU_4,1 1997,v_Au4PfoK7hyw,television,what is behind the person in the video,v_Au4PfoK7hyw,v_Au4PfoK7hyw_4,1 1998,v_-eJT11AuOa0,car,what is behind the people in white clothes,v_-eJT11AuOa0,v_-eJT11AuOa0_7,5 1999,v_cYvFlrAnlzA,television,what is behind the people in white clothes,v_cYvFlrAnlzA,v_cYvFlrAnlzA_4,1 2000,v_RgiVa9GMYxE,wall,what is behind the people in white clothes,v_RgiVa9GMYxE,v_RgiVa9GMYxE_4,1 2001,v_u0Dc0ZtudXY,stand,what's behind the field,v_u0Dc0ZtudXY,v_u0Dc0ZtudXY_4,1 2002,v_RtF6TGqwa7Y,window,what is behind the sitting person,v_RtF6TGqwa7Y,v_RtF6TGqwa7Y_4,1 2003,v_JvPVYSb_5o8,wall,what is behind the sitting person,v_JvPVYSb_5o8,v_JvPVYSb_5o8_4,1 2004,v_V2UitlmX7Uo,door,what is behind the standing person,v_V2UitlmX7Uo,v_V2UitlmX7Uo_4,1 2005,v_FKtYeu2bJpA,practice basketball,what is he doing,v_FKtYeu2bJpA,v_FKtYeu2bJpA_1,0 2006,v_FtRGOgg0Qh8,ride on bicycle,what is he doing,v_FtRGOgg0Qh8,v_FtRGOgg0Qh8_1,0 2007,v_MQ9Ojge7CyA,diving,what is he doing in the video,v_MQ9Ojge7CyA,v_MQ9Ojge7CyA_1,0 2008,v__CIoHeD7KQc,experimentalize,what is he doing in the video,v__CIoHeD7KQc,v__CIoHeD7KQc_1,0 2009,v_ZBP_mLWROZU,mirror,what is in front of the person in a black coat,v_ZBP_mLWROZU,v_ZBP_mLWROZU_4,1 2010,v_QdmcjM2fluo,tree,what is in front of the person in a black coat,v_QdmcjM2fluo,v_QdmcjM2fluo_4,1 2011,v_gWTndmDHZQc,guitar,what is in front of the person in a black shirt,v_gWTndmDHZQc,v_gWTndmDHZQc_4,1 2012,v_Znb6Y9m_PsQ,table football,what is in front of the person in a black tshirt,v_Znb6Y9m_PsQ,v_Znb6Y9m_PsQ_4,1 2013,v_g9lNpSAtHgI,chair,what is in front of the person in a blue apron,v_g9lNpSAtHgI,v_g9lNpSAtHgI_4,1 2014,v_qiTQ02NDSlQ,bread,what is in front of the person in a blue coat,v_qiTQ02NDSlQ,v_qiTQ02NDSlQ_4,1 2015,v_rM02KWikOo8,rope,what is in front of the child,v_rM02KWikOo8,v_rM02KWikOo8_4,1 2016,v_Z-sWZUYL0ZU,cabinet,what is in front of the person in gray,v_Z-sWZUYL0ZU,v_Z-sWZUYL0ZU_4,1 2017,v_F9FPK6mfh88,men in white,what is in front of the lady in jeans,v_F9FPK6mfh88,v_F9FPK6mfh88_4,1 2018,v_CFbkVO5b2g0,microphone,what is in front of the man,v_CFbkVO5b2g0,v_CFbkVO5b2g0_4,1 2019,v_QImpWj3AJcY,glass,what's in front of the person in black,v_QImpWj3AJcY,v_QImpWj3AJcY_4,1 2020,v_H2fG7JRRMAs,poker,what's in front of the person in black,v_H2fG7JRRMAs,v_H2fG7JRRMAs_4,1 2021,v_faqijFZWQlo,computer,what is in front of the man in a black hat,v_faqijFZWQlo,v_faqijFZWQlo_10,5 2022,v_qZMcbBsQorE,disk,what is in front of the person in a gray vest,v_qZMcbBsQorE,v_qZMcbBsQorE_4,1 2023,v_U2eN4DbVLfE,table,what is in front of the person in a gray coat,v_U2eN4DbVLfE,v_U2eN4DbVLfE_4,1 2024,v_OccEAILrU7M,grassland,what is in front of the person in purple clothes,v_OccEAILrU7M,v_OccEAILrU7M_4,1 2025,v_paRAKx8svJ8,judges,what is in front of the person in purple clothes,v_paRAKx8svJ8,v_paRAKx8svJ8_4,1 2026,v_Z-zG845frso,ball net,what is in front of the person in red coat,v_Z-zG845frso,v_Z-zG845frso_4,1 2027,v_fh9d3gpT-8I,drum kit,what is in front of the person in red coat,v_fh9d3gpT-8I,v_fh9d3gpT-8I_4,1 2028,v_dHKeNK1uWUg,cobra,what is in front of the person in red coat,v_dHKeNK1uWUg,v_dHKeNK1uWUg_4,1 2029,v_mSR-HpiJ0No,mirror,what is in front of the person in red clothes,v_mSR-HpiJ0No,v_mSR-HpiJ0No_4,1 2030,v_nkWMBJC2Qec,ball table,what is in front of the person in red clothes,v_nkWMBJC2Qec,v_nkWMBJC2Qec_4,1 2031,v_0q9yZPTBbus,mirror,what is in front of the person in red clothes,v_0q9yZPTBbus,v_0q9yZPTBbus_4,1 2032,v_9ZVWD0ZKXZg,stone,what is in front of the person in red clothes,v_9ZVWD0ZKXZg,v_9ZVWD0ZKXZg_4,1 2033,v_x6pYeqq3O08,sand,what is in front of the person in red clothes,v_x6pYeqq3O08,v_x6pYeqq3O08_4,1 2034,v_qKp2QCheLwU,audience,what is in front of the person in a red hat,v_qKp2QCheLwU,v_qKp2QCheLwU_4,1 2035,v_2DCHbuwZNSs,shoal of fish,what is the front of the man wearing a diving suit,v_2DCHbuwZNSs,v_2DCHbuwZNSs_4,1 2036,v_R74yolowFPs,tree,what is in front of the person in a white hat,v_R74yolowFPs,v_R74yolowFPs_4,1 2037,v_DOI6tsATsE4,white coat man,what is in front of the man in black clothes,v_DOI6tsATsE4,v_DOI6tsATsE4_4,1 2038,v_zxpQHLwZCug,wood,what is in front of the person in blue clothes,v_zxpQHLwZCug,v_zxpQHLwZCug_4,1 2039,v_FWZ6wgaJ_L4,pool,what is in front of the person in blue clothes,v_FWZ6wgaJ_L4,v_FWZ6wgaJ_L4_4,1 2040,v_mXqmRAUsn9U,road,what is in front of the person in blue clothes,v_mXqmRAUsn9U,v_mXqmRAUsn9U_4,1 2041,v_nciIPwJTok8,vehicle,what is in front of the person in blue clothes,v_nciIPwJTok8,v_nciIPwJTok8_4,1 2042,v_u_vLZxgO9Rw,stand,what is in front of the man in green clothes,v_u_vLZxgO9Rw,v_u_vLZxgO9Rw_4,1 2043,v_xMNmGr96O9U,bowling,what is in front of the person in gray clothes,v_xMNmGr96O9U,v_xMNmGr96O9U_4,1 2044,v_A8RQcVFtovg,grassland,what is in front of the person in gray clothes,v_A8RQcVFtovg,v_A8RQcVFtovg_4,1 2045,v_Ye_uVlSo1HI,table,what is in front of the person in gray clothes,v_Ye_uVlSo1HI,v_Ye_uVlSo1HI_4,1 2046,v_g1na24Bd5Rs,table,what is in front of the person in gray clothes,v_g1na24Bd5Rs,v_g1na24Bd5Rs_4,1 2047,v_XxW4XWySzOw,water,what is in front of the person in red clothes,v_XxW4XWySzOw,v_XxW4XWySzOw_4,1 2048,v_9k19UUJtldg,tennis table,what is in front of the person in red clothes,v_9k19UUJtldg,v_9k19UUJtldg_4,1 2049,v_z6l9utYlIrw,railing,what is in front of the person in red clothes,v_z6l9utYlIrw,v_z6l9utYlIrw_4,1 2050,v_TtewPltwuXw,tea table,what is in front of the person in red clothes,v_TtewPltwuXw,v_TtewPltwuXw_4,1 2051,v_YHqFNnhaFAY,road,what is in front of the person in red clothes,v_YHqFNnhaFAY,v_YHqFNnhaFAY_4,1 2052,v_oKJ1BnvHbbA,grassland,what is in front of the person in red clothes,v_oKJ1BnvHbbA,v_oKJ1BnvHbbA_4,1 2053,v_ZAX6OojMg38,cat,what is in front of the person in red clothes,v_ZAX6OojMg38,v_ZAX6OojMg38_4,1 2054,v_1494UwmvAJM,flower receptacle,what is in front of the person in white clothes,v_1494UwmvAJM,v_1494UwmvAJM_4,1 2055,v_X_K7Aa3Aa-E,fire pile,what is in front of the person in white clothes,v_X_K7Aa3Aa-E,v_X_K7Aa3Aa-E_4,1 2056,v_mnNgZ-D5cKc,road,what is in front of the person in white clothes,v_mnNgZ-D5cKc,v_mnNgZ-D5cKc_4,1 2057,v_ys4_S3JHQjs,men in blue,what is in front of the person in black clothes,v_ys4_S3JHQjs,v_ys4_S3JHQjs_4,1 2058,v_oMtB-y49Yo8,cake,what is in front of the person in black clothes,v_oMtB-y49Yo8,v_oMtB-y49Yo8_4,1 2059,v_3PsxzgeMv5w,bowling pin,what is in front of the person in black clothes,v_3PsxzgeMv5w,v_3PsxzgeMv5w_4,1 2060,v_otMw5GJWYWs,floor,what is in front of the person in black clothes,v_otMw5GJWYWs,v_otMw5GJWYWs_4,1 2061,v_ojTFTIwsa_c,vehicle,what is in front of the person in black clothes,v_ojTFTIwsa_c,v_ojTFTIwsa_c_4,1 2062,v_z8x3wUZYOaM,table,what is in front of the person in black clothes,v_z8x3wUZYOaM,v_z8x3wUZYOaM_4,1 2063,v_NvRH4SoF09c,hillside,what is in front of the person in black clothes,v_NvRH4SoF09c,v_NvRH4SoF09c_4,1 2064,v_AjqnGUbsduw,white man,what is in front of the person in black clothes,v_AjqnGUbsduw,v_AjqnGUbsduw_4,1 2065,v_A0b_pqaKCX8,glass,what is in front of the person in black clothes,v_A0b_pqaKCX8,v_A0b_pqaKCX8_4,1 2066,v_8lMncYsbrWw,ironing table,what is in front of the person in white clothes,v_8lMncYsbrWw,v_8lMncYsbrWw_4,1 2067,v_ZgdMnfTqblw,basketball box,what is in front of the person in a black vest,v_ZgdMnfTqblw,v_ZgdMnfTqblw_4,1 2068,v_gsQ-OEvrxjo,table,what is in front of the person in white clothes,v_gsQ-OEvrxjo,v_gsQ-OEvrxjo_4,1 2069,v_xizEiQZfJa4,wall,what is in front of the person in white clothes,v_xizEiQZfJa4,v_xizEiQZfJa4_4,1 2070,v_AguxVxEWEs0,man in blue,what is in front of the person in white clothes,v_AguxVxEWEs0,v_AguxVxEWEs0_4,1 2071,v_X52XHYKeLiE,grassland,what is in front of the person in white clothes,v_X52XHYKeLiE,v_X52XHYKeLiE_4,1 2072,v_nYl_tYmijlM,drum,what is in front of the person in white clothes,v_nYl_tYmijlM,v_nYl_tYmijlM_4,1 2073,v_kYkvyRKxwfY,table tennis table,what is in front of the person in white clothes,v_kYkvyRKxwfY,v_kYkvyRKxwfY_4,1 2074,v_X2toGKgWMpE,ball table,what is in front of the person in white clothes,v_X2toGKgWMpE,v_X2toGKgWMpE_4,1 2075,v_Oh3-DvDCpZ4,food,what is in front of the person in white clothes,v_Oh3-DvDCpZ4,v_Oh3-DvDCpZ4_4,1 2076,v_YMOYyt3kSOs,network,what is in front of the person in white clothes,v_YMOYyt3kSOs,v_YMOYyt3kSOs_4,1 2077,v_AjizhJc_reI,red clothes,what is in front of the person in white clothes,v_AjizhJc_reI,v_AjizhJc_reI_4,1 2078,v_y0ca-LbQErY,floor,what is in front of the person in white clothes,v_y0ca-LbQErY,v_y0ca-LbQErY_4,1 2079,v_nvcMYiZhUuo,cruise,what is in front of the person in white clothes,v_nvcMYiZhUuo,v_nvcMYiZhUuo_4,1 2080,v_PkRvgIFREJU,light pole,what is in front of the person in striped clothes,v_PkRvgIFREJU,v_PkRvgIFREJU_4,1 2081,v_1kkc9hDshP4,sound,what is in front of the person in pink clothes,v_1kkc9hDshP4,v_1kkc9hDshP4_4,1 2082,v_k3WPc9HmtLM,table,what is in front of the sitting person at the beginning,v_k3WPc9HmtLM,v_k3WPc9HmtLM_4,1 2083,v_qZtdMXkHRXw,chair,what is in front of the person in a white coat,v_qZtdMXkHRXw,v_qZtdMXkHRXw_4,1 2084,v_MpeN-IVIBc4,wall,what is in front of the woman in the video,v_MpeN-IVIBc4,v_MpeN-IVIBc4_4,1 2085,v_Aen-RfnlK3A,agitation machine,what is in front of the woman in the video,v_Aen-RfnlK3A,v_Aen-RfnlK3A_4,1 2086,v_afMQA352X_A,man in camouflage,what is in front of the person in white clothes,v_afMQA352X_A,v_afMQA352X_A_4,1 2087,v_Y_nyVFn70Lk,kitchen sink,what is in front of the person in green clothes,v_Y_nyVFn70Lk,v_Y_nyVFn70Lk_4,1 2088,v_2_H3lxMWvPo,two cattles,what is in front of the audience,v_2_H3lxMWvPo,v_2_H3lxMWvPo_4,1 2089,v_4LpqPUWHH5k,court,what is in front of the audience,v_4LpqPUWHH5k,v_4LpqPUWHH5k_4,1 2090,v_JGPhQX97OSE,court,what is in front of the audience,v_JGPhQX97OSE,v_JGPhQX97OSE_4,1 2091,v_5UZ2ft8Y3sI,court,what is in front of the audience,v_5UZ2ft8Y3sI,v_5UZ2ft8Y3sI_4,1 2092,v_JR9LosQmMvg,court,what is in front of the audience,v_JR9LosQmMvg,v_JR9LosQmMvg_4,1 2093,v_Jhcis4S2Vsg,court,what is in front of the audience,v_Jhcis4S2Vsg,v_Jhcis4S2Vsg_4,1 2094,v_BkDbDnvoL28,enclosure,what is in front of the audience,v_BkDbDnvoL28,v_BkDbDnvoL28_4,1 2095,v_K7iw2_1BrIk,football field,what is in front of the audience,v_K7iw2_1BrIk,v_K7iw2_1BrIk_4,1 2096,v_A9VCuZ53ObQ,man in white,what is in front of the person in black clothes,v_A9VCuZ53ObQ,v_A9VCuZ53ObQ_4,1 2097,v_JcAAwYpJhm8,pool,what is in front of the child,v_JcAAwYpJhm8,v_JcAAwYpJhm8_4,1 2098,v_Ki1bs5X_S5k,wine bottle,what is in front of the child,v_Ki1bs5X_S5k,v_Ki1bs5X_S5k_4,1 2099,v_1IbkFHNA7fg,basket,what is in front of the person in a plaid shirt,v_1IbkFHNA7fg,v_1IbkFHNA7fg_4,1 2100,v_f8SWWURHV1M,piano,what is in front of the little girl,v_f8SWWURHV1M,v_f8SWWURHV1M_4,1 2101,v_Q5HdVXF390c,beer,what is in front of the person in a plaid shirt,v_Q5HdVXF390c,v_Q5HdVXF390c_4,1 2102,v_QIUxLD27NuI,timer,what is in front of the person in yellow clothes,v_QIUxLD27NuI,v_QIUxLD27NuI_4,1 2103,v_mxn6WcmdNpA,counter,what is in front of the person in yellow clothes,v_mxn6WcmdNpA,v_mxn6WcmdNpA_4,1 2104,v_i5qTK0mInTc,table,what is in front of the person in yellow clothes,v_i5qTK0mInTc,v_i5qTK0mInTc_4,1 2105,v_rSGboODhu04,table,what is in front of the standing person,v_rSGboODhu04,v_rSGboODhu04_4,1 2106,v__QBTD1bLSI0,wash basin,what is in front of the person in white clothes,v__QBTD1bLSI0,v__QBTD1bLSI0_4,1 2107,v_v-UmNR5yeDc,wine bottle,what is on the cupboard,v_v-UmNR5yeDc,v_v-UmNR5yeDc_4,1 2108,v_OysON6LbF6Y,bottle,what is on the cupboard,v_OysON6LbF6Y,v_OysON6LbF6Y_4,1 2109,v_VZ5R9goklpo,ball,what is on the ground,v_VZ5R9goklpo,v_VZ5R9goklpo_4,1 2110,v_lPw_BRbPw5s,hat,what's on the head of the person in blue,v_lPw_BRbPw5s,v_lPw_BRbPw5s_9,5 2111,v_JH9qiuPCkY4,helmet,what does the player in the video wear on his head,v_JH9qiuPCkY4,v_JH9qiuPCkY4_9,5 2112,v_4H9MMsj4mcM,hat,what does the player in the video wear on his head,v_4H9MMsj4mcM,v_4H9MMsj4mcM_6,5 2113,v_kD_EJjQCLoY,wrist watch,what is on the left hand of the standing person,v_kD_EJjQCLoY,v_kD_EJjQCLoY_9,5 2114,v_eiN5XPmwcEM,wall,what is on the left of the man,v_eiN5XPmwcEM,v_eiN5XPmwcEM_4,1 2115,v_rCLGy2NA0aE,trash,what is on the left of the person in blue,v_rCLGy2NA0aE,v_rCLGy2NA0aE_4,1 2116,v_2ShsRSJ9cqE,steel pipe,what is on the left of the person in a hat,v_2ShsRSJ9cqE,v_2ShsRSJ9cqE_4,1 2117,v_P8S8PIyPXxY,model,what is on the left of the person in blue clothes,v_P8S8PIyPXxY,v_P8S8PIyPXxY_4,1 2118,v_mkGUacg0GRc,row of tires,what is on the left of the person in gray clothes,v_mkGUacg0GRc,v_mkGUacg0GRc_4,1 2119,v_0jdSl5-lMpY,wall,what is on the left of the person in white clothes,v_0jdSl5-lMpY,v_0jdSl5-lMpY_4,1 2120,v_PTwe2IIo3To,mirror,what is on the left of the person in yellow clothes,v_PTwe2IIo3To,v_PTwe2IIo3To_4,1 2121,v_zTHkqpNFGno,table,what is on the left of the person in black coat,v_zTHkqpNFGno,v_zTHkqpNFGno_4,1 2122,v_30hcRe-5_3M,spectator seats,what is on the left of the person in white clothes,v_30hcRe-5_3M,v_30hcRe-5_3M_4,1 2123,v_1QIUV7WYKXg,bunker,what is on the left of the atelete,v_1QIUV7WYKXg,v_1QIUV7WYKXg_4,1 2124,v_C5SXR9nMY3I,christmas tree,what is on the left of the chair,v_C5SXR9nMY3I,v_C5SXR9nMY3I_4,1 2125,v_vHnZ3NrZER0,switch,what is on the left of the door,v_vHnZ3NrZER0,v_vHnZ3NrZER0_4,1 2126,v_nDM4E9CD_y0,house,what is on the left of the person in the video,v_nDM4E9CD_y0,v_nDM4E9CD_y0_4,1 2127,v_nc_NMp3vAH0,audience,what is on the left of the person in the video,v_nc_NMp3vAH0,v_nc_NMp3vAH0_4,1 2128,v__zqj6daJo9U,stool,what is on the left of the person in the video,v__zqj6daJo9U,v__zqj6daJo9U_4,1 2129,v_8tCRp3NKtkI,grassland,what is on the left of the road,v_8tCRp3NKtkI,v_8tCRp3NKtkI_4,1 2130,v_qgUHRwC3194,swimming pool,what is on the left side of the person in white shirt,v_qgUHRwC3194,v_qgUHRwC3194_4,1 2131,v_yCpdDJAW-jU,glove,what is on the person's hand in the video,v_yCpdDJAW-jU,v_yCpdDJAW-jU_7,5 2132,v_aNsj5OrEGLY,bracelet,what is on the person's hand in the video,v_aNsj5OrEGLY,v_aNsj5OrEGLY_8,5 2133,v_OYEKKzQjaJI,spoon,what is on the person's hand in the video,v_OYEKKzQjaJI,v_OYEKKzQjaJI_6,6 2134,v_-YwrMtiqHKg,milk,what is on the person's hand in the video,v_-YwrMtiqHKg,v_-YwrMtiqHKg_10,5 2135,v_YRGiRmcHdUY,knife,what is on the person's hand in the video,v_YRGiRmcHdUY,v_YRGiRmcHdUY_8,5 2136,v_hxErUs42bBI,window,what is on the right of the person in red clothes,v_hxErUs42bBI,v_hxErUs42bBI_4,1 2137,v_1xtKGlUp4Vg,hair drier,what is on the right of the person in gray clothes,v_1xtKGlUp4Vg,v_1xtKGlUp4Vg_4,1 2138,v_pVuuVHA3RVw,surround masses,what is on the right of the person in gray clothes,v_pVuuVHA3RVw,v_pVuuVHA3RVw_4,1 2139,v_T62XjoKbN8M,auditorium,what is on the right of the person in black clothes,v_T62XjoKbN8M,v_T62XjoKbN8M_4,1 2140,v_Son8UiVlzu0,silverware cadets,what is on the right of the person in black clothes,v_Son8UiVlzu0,v_Son8UiVlzu0_4,1 2141,v_87F9xGaMwCw,wall,what is on the right of the person in black clothes,v_87F9xGaMwCw,v_87F9xGaMwCw_4,1 2142,v_xND_kp-aYXw,piano frame,what is on the right of the person in black clothes,v_xND_kp-aYXw,v_xND_kp-aYXw_4,1 2143,v_X6CBZwwRdQQ,chair,what is on the right of the person in black clothes,v_X6CBZwwRdQQ,v_X6CBZwwRdQQ_4,1 2144,v_mMm1LfVb8Pg,fence,what is on the right of the person in green clothes,v_mMm1LfVb8Pg,v_mMm1LfVb8Pg_4,1 2145,v_ufrTSC3Dewg,grassland,what is on the right of the person in green clothes,v_ufrTSC3Dewg,v_ufrTSC3Dewg_4,1 2146,v_zKYiTA6WBS4,hair drier,what is on the right of the person in a green coat,v_zKYiTA6WBS4,v_zKYiTA6WBS4_4,1 2147,v_QX5e5Mla660,audience,what is on the right of the person in a green coat,v_QX5e5Mla660,v_QX5e5Mla660_4,1 2148,v__V62aT_K8Zw,man in a suit,what is on the right of the person in a hat,v__V62aT_K8Zw,v__V62aT_K8Zw_4,1 2149,v_2UhbDOd43zU,table and chair,what is on the right of the person in white clothes,v_2UhbDOd43zU,v_2UhbDOd43zU_4,1 2150,v_zqxzFxya6T8,horse,what is on the right of the person in white shirt,v_zqxzFxya6T8,v_zqxzFxya6T8_4,1 2151,v_DTI__3fkSzM,guardrail,what is on the right of the woman in black clothes,v_DTI__3fkSzM,v_DTI__3fkSzM_4,1 2152,v_eLh51DwDp-E,chair,what is on the right of the woman in black clothes,v_eLh51DwDp-E,v_eLh51DwDp-E_4,1 2153,v_tzP0lKSUv_o,screen,what is on the right of the athlete,v_tzP0lKSUv_o,v_tzP0lKSUv_o_4,1 2154,v_LzPppxSWYNY,referee,what is on the right of the athlete,v_LzPppxSWYNY,v_LzPppxSWYNY_4,1 2155,v_TiQcZKml5Bs,tree,what is on the right of the person in the video,v_TiQcZKml5Bs,v_TiQcZKml5Bs_4,1 2156,v_2k-qlZxc9l4,glass table,what is on the right of the person in the video,v_2k-qlZxc9l4,v_2k-qlZxc9l4_4,1 2157,v_HQVSLlKhupk,sea,what is the right side of the field,v_HQVSLlKhupk,v_HQVSLlKhupk_4,1 2158,v_I1iUbyjWy7k,tree,what is the right side of the field,v_I1iUbyjWy7k,v_I1iUbyjWy7k_4,1 2159,v_qWgF9hxNbP8,audience,what is on the right side of the stage,v_qWgF9hxNbP8,v_qWgF9hxNbP8_4,1 2160,v_qSP3_C7QWpU,audience,what is on the right side of the stage,v_qSP3_C7QWpU,v_qSP3_C7QWpU_4,1 2161,v_bYxVbXzQToI,wine glass,what is on the round table,v_bYxVbXzQToI,v_bYxVbXzQToI_4,1 2162,v_Bgi2Y85Mbwk,material science,what is on the shelf,v_Bgi2Y85Mbwk,v_Bgi2Y85Mbwk_4,1 2163,v_JY9oOSfjj_E,glove,what does the standing person have on the hand,v_JY9oOSfjj_E,v_JY9oOSfjj_E_9,5 2164,v_bRgvAHL3dJk,seasoning,what is on the table,v_bRgvAHL3dJk,v_bRgvAHL3dJk_4,1 2165,v_WPYQ27GjFKc,card,what is on the table,v_WPYQ27GjFKc,v_WPYQ27GjFKc_4,1 2166,v_Woelo4XJkHE,ice cream,what is on the table,v_Woelo4XJkHE,v_Woelo4XJkHE_4,1 2167,v_CDecXoRSpIc,tool,what is on the table,v_CDecXoRSpIc,v_CDecXoRSpIc_4,1 2168,v_chmegNbBTNc,bowl,what is on the table,v_chmegNbBTNc,v_chmegNbBTNc_4,1 2169,v__a527xEzhkw,down by sally gardens,what is she doing in the video,v__a527xEzhkw,v__a527xEzhkw_1,0 2170,v_MpeN-IVIBc4,spray painting,what is she doing in the video,v_MpeN-IVIBc4,v_MpeN-IVIBc4_1,0 2171,v_fe4r2-Y8k1U,wood,what is behind the man in black,v_fe4r2-Y8k1U,v_fe4r2-Y8k1U_4,1 2172,v_df5rlVZD0Zc,tree,what is behind the person in red clothes,v_df5rlVZD0Zc,v_df5rlVZD0Zc_4,1 2173,v_03c6QhTMDSs,club signs,what is behind the person in striped clothes,v_03c6QhTMDSs,v_03c6QhTMDSs_4,1 2174,v_mLFjww64sX8,mirror,what is behind the bald man,v_mLFjww64sX8,v_mLFjww64sX8_4,1 2175,v_ZJnXQw84xvo,sea,what is behind the person in a green coat,v_ZJnXQw84xvo,v_ZJnXQw84xvo_4,1 2176,v_FaP7unySMOs,wall,what is behind the person in the video,v_FaP7unySMOs,v_FaP7unySMOs_4,1 2177,v_-pK2JheWido,wood,what is behind the person who appears at the beginning of the video,v_-pK2JheWido,v_-pK2JheWido_4,1 2178,v_mLFjww64sX8,help man shave,what is the barber doing,v_mLFjww64sX8,v_mLFjww64sX8_1,0 2179,v_WINtiw-_3vg,relax,what's the benefit of this activity,v_WINtiw-_3vg,v_WINtiw-_3vg_10,8 2180,v_wdvQC41PGPk,relax,what's the benefit of this activity,v_wdvQC41PGPk,v_wdvQC41PGPk_10,8 2181,v_VpZzLvzU7_k,relax,what's the benefit of this activity,v_VpZzLvzU7_k,v_VpZzLvzU7_k_8,8 2182,v_vqyQF-1Zc_E,relax,what's the benefit of this activity,v_vqyQF-1Zc_E,v_vqyQF-1Zc_E_9,8 2183,v_Co_cpZWbzFk,decompression,what's the benefit of this activity,v_Co_cpZWbzFk,v_Co_cpZWbzFk_8,8 2184,v_wh6P2C2avqc,physical fitness,what's the benefit of this activity,v_wh6P2C2avqc,v_wh6P2C2avqc_10,8 2185,v_VvsYrfEvvUw,exercise muscles,what's the benefit of this activity,v_VvsYrfEvvUw,v_VvsYrfEvvUw_9,8 2186,v_wnNiWoJxfSQ,relieve stress,what's the benefit of this activity,v_wnNiWoJxfSQ,v_wnNiWoJxfSQ_7,8 2187,v_TiQcZKml5Bs,relax,what's the benefit of this activity,v_TiQcZKml5Bs,v_TiQcZKml5Bs_10,8 2188,v_iQnnCZTl_7U,laugh,what is the woman with blond hair doing,v_iQnnCZTl_7U,v_iQnnCZTl_7U_1,0 2189,v_7UwRRkgQSj4,put on shoes,what is the woman with blond hair doing,v_7UwRRkgQSj4,v_7UwRRkgQSj4_1,0 2190,v_ikUNgSw4Gys,lingual nail,what is the woman with blond hair doing,v_ikUNgSw4Gys,v_ikUNgSw4Gys_1,0 2191,v_7CM2OYr-Csw,fly kite,what is the woman with blond hair doing,v_7CM2OYr-Csw,v_7CM2OYr-Csw_1,0 2192,v_IsV1n_kLpvs,cut roof tin,what is the man with blond hair doing,v_IsV1n_kLpvs,v_IsV1n_kLpvs_1,0 2193,v_er5jUsRr4y0,gargle,what is the man with blond hair doing,v_er5jUsRr4y0,v_er5jUsRr4y0_1,0 2194,v_8tCRp3NKtkI,skip lattices,what is the man with blond hair doing,v_8tCRp3NKtkI,v_8tCRp3NKtkI_1,0 2195,v_-8SgY4vW4xM,table,what's under the dog,v_-8SgY4vW4xM,v_-8SgY4vW4xM_4,1 2196,v_6Xsfwn5M6qs,gymnastic mat,what's under the parallel bars,v_6Xsfwn5M6qs,v_6Xsfwn5M6qs_4,1 2197,v_DHjoAOus3xM,water,what's under the ship,v_DHjoAOus3xM,v_DHjoAOus3xM_4,1 2198,v_kBTqTp0SKq8,play game,what is the boy with a stick doing,v_kBTqTp0SKq8,v_kBTqTp0SKq8_1,0 2199,v_hQqoh0YxJYs,siberian husky,what is the breed of the dog,v_hQqoh0YxJYs,v_hQqoh0YxJYs_10,8 2200,v_1xtKGlUp4Vg,poodle,what is the breed of the dog,v_1xtKGlUp4Vg,v_1xtKGlUp4Vg_10,5 2201,v_ZAX6OojMg38,swimming,what is the cat doing in the video,v_ZAX6OojMg38,v_ZAX6OojMg38_1,0 2202,v_MAGeYoFuCgo,cooking noodles,what is the chef doing,v_MAGeYoFuCgo,v_MAGeYoFuCgo_1,0 2203,v_3i3SUPsyZtA,make egg roll,what is the chef doing,v_3i3SUPsyZtA,v_3i3SUPsyZtA_1,0 2204,v_k6pN0WRr2Ws,collar exercises,what is the coach doing,v_k6pN0WRr2Ws,v_k6pN0WRr2Ws_1,0 2205,v_Son8UiVlzu0,black,what color is the hair of the person in black,v_Son8UiVlzu0,v_Son8UiVlzu0_8,4 2206,v_7UwRRkgQSj4,black and white,what color are the shoes of the woman with blond hair,v_7UwRRkgQSj4,v_7UwRRkgQSj4_7,4 2207,v_j81ndpMC9gI,black,what color is the cat,v_j81ndpMC9gI,v_j81ndpMC9gI_6,4 2208,v_sqv3M6MPKjQ,white,what color is the kid's clothes,v_sqv3M6MPKjQ,v_sqv3M6MPKjQ_8,4 2209,v_2_H3lxMWvPo,black,what color is the cow in the video,v_2_H3lxMWvPo,v_2_H3lxMWvPo_7,4 2210,v_SB0dU5oDvaE,black,what color is the dog,v_SB0dU5oDvaE,v_SB0dU5oDvaE_6,4 2211,v_Z2gpcqXWNek,black,what color is the dog in the video,v_Z2gpcqXWNek,v_Z2gpcqXWNek_7,4 2212,v_UNKf15ALDh8,yellow,what color is the gloves of the woman with long hair,v_UNKf15ALDh8,v_UNKf15ALDh8_10,4 2213,v_m731tx8N5-Y,purple,what color is the clothes of the bald person,v_m731tx8N5-Y,v_m731tx8N5-Y_8,4 2214,v_SPjv6P5fxug,white,what color is the clothes of the bald person,v_SPjv6P5fxug,v_SPjv6P5fxug_8,4 2215,v_MDWaKr7Gu5Q,black,what color is the hair of the person in white clothes,v_MDWaKr7Gu5Q,v_MDWaKr7Gu5Q_8,4 2216,v_4z0meF-_b1I,orange,what color is the clothes of the person with a hat,v_4z0meF-_b1I,v_4z0meF-_b1I_6,4 2217,v_A8RQcVFtovg,black,what color is the hair of the person in white,v_A8RQcVFtovg,v_A8RQcVFtovg_10,4 2218,v_hQqoh0YxJYs,black,what color is the hair of the person in yellow,v_hQqoh0YxJYs,v_hQqoh0YxJYs_8,4 2219,v_XCfrjEJkl3M,black,what color are the pants of the person in white clothes,v_XCfrjEJkl3M,v_XCfrjEJkl3M_9,4 2220,v_WXH-Tj0-g4w,gray,what color are the pants of the person in orange clothes,v_WXH-Tj0-g4w,v_WXH-Tj0-g4w_7,4 2221,v_RLBfyIVpocE,black,what color are the pants of the person in black clothes,v_RLBfyIVpocE,v_RLBfyIVpocE_6,4 2222,v_eg2s5lOfKGI,red,what color are the pants of the person in red,v_eg2s5lOfKGI,v_eg2s5lOfKGI_9,4 2223,v_uty4eGb_vvU,red,what color are the pants of the person in red,v_uty4eGb_vvU,v_uty4eGb_vvU_7,4 2224,v_1dDAcUliXrQ,yellow,what color is the badminton,v_1dDAcUliXrQ,v_1dDAcUliXrQ_8,4 2225,v_CDncYtx6Lwc,red,what color is the nail polish,v_CDncYtx6Lwc,v_CDncYtx6Lwc_6,4 2226,v_5dN-MpXG9OE,black,what is the color of the athlete's pants in the video,v_5dN-MpXG9OE,v_5dN-MpXG9OE_6,4 2227,v_16bJAOf1SJI,yellow,what is the color of the ball,v_16bJAOf1SJI,v_16bJAOf1SJI_7,4 2228,v_VZ5R9goklpo,yellow,what is the color of the ball,v_VZ5R9goklpo,v_VZ5R9goklpo_8,4 2229,v_X2toGKgWMpE,green,what is the color of the table,v_X2toGKgWMpE,v_X2toGKgWMpE_8,4 2230,v_nkWMBJC2Qec,purple,what is the color of the table,v_nkWMBJC2Qec,v_nkWMBJC2Qec_10,4 2231,v_IYLJU87AkOg,red,what is the color of the cabinet door in the video,v_IYLJU87AkOg,v_IYLJU87AkOg_9,4 2232,v_S7CW-si2JjA,brown,what is the color of the cake,v_S7CW-si2JjA,v_S7CW-si2JjA_6,4 2233,v_Woelo4XJkHE,white,what is the color of the car,v_Woelo4XJkHE,v_Woelo4XJkHE_9,4 2234,v_nciIPwJTok8,black,what is the color of the car,v_nciIPwJTok8,v_nciIPwJTok8_7,4 2235,v_NjXCZYO3zwU,red,what is the color of the chair in the video,v_NjXCZYO3zwU,v_NjXCZYO3zwU_8,4 2236,v_MAGeYoFuCgo,blue,what is the color of the chef's clothes,v_MAGeYoFuCgo,v_MAGeYoFuCgo_8,4 2237,v_mVAP-WyEc7w,white,what is the color of the chopping board,v_mVAP-WyEc7w,v_mVAP-WyEc7w_6,4 2238,v_k6pN0WRr2Ws,yellow,what is the color of the coach's clothes,v_k6pN0WRr2Ws,v_k6pN0WRr2Ws_6,4 2239,v_nbOsU2Vmp1U,transparent,what is the color of the cup,v_nbOsU2Vmp1U,v_nbOsU2Vmp1U_9,4 2240,v_RXDVJlb97OI,white,what is the color of the curtains,v_RXDVJlb97OI,v_RXDVJlb97OI_6,4 2241,v_SNja9iUdAiI,black,what is the color of the helmet,v_SNja9iUdAiI,v_SNja9iUdAiI_8,4 2242,v_-vY2uUmv6Dk,yellow,what is the color of the helmet,v_-vY2uUmv6Dk,v_-vY2uUmv6Dk_10,4 2243,v_72_9wLYUDGM,yellow,what is the color of the horizontal bar,v_72_9wLYUDGM,v_72_9wLYUDGM_8,4 2244,v_nGKc2t-NMYc,yellow,what is the color of the horizontal bar,v_nGKc2t-NMYc,v_nGKc2t-NMYc_8,4 2245,v_rM02KWikOo8,red,what is the color of the life jacket,v_rM02KWikOo8,v_rM02KWikOo8_6,4 2246,v_mUmSJps9WJI,black,what color are the pants of the person in black clothes,v_mUmSJps9WJI,v_mUmSJps9WJI_9,4 2247,v_xND_kp-aYXw,gray,what color are the pants of the person in black clothes,v_xND_kp-aYXw,v_xND_kp-aYXw_8,4 2248,v_rnI9vGr5V1k,blue,what is the color of the people wearing glasses,v_rnI9vGr5V1k,v_rnI9vGr5V1k_6,4 2249,v_RlRrktN5iH4,pink,what color is the clothes of the person in black pants,v_RlRrktN5iH4,v_RlRrktN5iH4_6,4 2250,v_T3mcQnlsmq4,black,what is the color of the person's clothes in the video,v_T3mcQnlsmq4,v_T3mcQnlsmq4_8,4 2251,v_4uKoAk5NCkI,white,what is the color of the person's clothes in the video,v_4uKoAk5NCkI,v_4uKoAk5NCkI_6,4 2252,v_NJRrhNrEMsk,yellow,what is the color of the person's hair in the video,v_NJRrhNrEMsk,v_NJRrhNrEMsk_9,4 2253,v_OYEKKzQjaJI,black,what is the color of the person's hair in the video,v_OYEKKzQjaJI,v_OYEKKzQjaJI_7,4 2254,v_6JZVpl2S2Mg,black,what is the color of the person's hair in the video,v_6JZVpl2S2Mg,v_6JZVpl2S2Mg_6,4 2255,v_Nb6AQxxrihA,yellow,what is the color of the person's hair in the video,v_Nb6AQxxrihA,v_Nb6AQxxrihA_10,4 2256,v_K5jY2chByPw,blue,what is the color of the person's pants in the video,v_K5jY2chByPw,v_K5jY2chByPw_6,4 2257,v_sH_716hH_rY,black,what is the color of the person's pants in the video,v_sH_716hH_rY,v_sH_716hH_rY_8,4 2258,v_5nu47s7JrfY,black,what is the color of the pot,v_5nu47s7JrfY,v_5nu47s7JrfY_6,4 2259,v_jEOtcfk220s,white,what is the color of the referee's clothes,v_jEOtcfk220s,v_jEOtcfk220s_6,4 2260,v_LzPppxSWYNY,orange,what is the color of the referee's clothes,v_LzPppxSWYNY,v_LzPppxSWYNY_8,4 2261,v_xS4twW2gXqc,white,what color are the shoes of the person in red clothes,v_xS4twW2gXqc,v_xS4twW2gXqc_9,4 2262,v_JvPVYSb_5o8,white,what is the color of the sitting person's clothes,v_JvPVYSb_5o8,v_JvPVYSb_5o8_6,4 2263,v_k3WPc9HmtLM,black,what is the color of the sitting person's clothes at the beginning,v_k3WPc9HmtLM,v_k3WPc9HmtLM_6,4 2264,v_jibbgUBuuSA,blue,what is the color of the sportsman's clothes,v_jibbgUBuuSA,v_jibbgUBuuSA_6,4 2265,v_svNcNLEPKMc,black,what is the color of the sportsman's clothes,v_svNcNLEPKMc,v_svNcNLEPKMc_8,4 2266,v_snhPrCNubYA,black,what is the color of the sportsman's clothes,v_snhPrCNubYA,v_snhPrCNubYA_8,4 2267,v_St1RRi-aeNM,red,what is the color of the sportsman's clothes,v_St1RRi-aeNM,v_St1RRi-aeNM_8,4 2268,v_M2Y2Cw2kwDo,green,what is the color of the springboard,v_M2Y2Cw2kwDo,v_M2Y2Cw2kwDo_8,4 2269,v_JY9oOSfjj_E,yellow,what is the color of the standing man's clothes,v_JY9oOSfjj_E,v_JY9oOSfjj_E_6,4 2270,v_rSGboODhu04,black,what is the color of the standing person's clothes,v_rSGboODhu04,v_rSGboODhu04_6,4 2271,v_kD_EJjQCLoY,green,what is the color of the standing person's clothes,v_kD_EJjQCLoY,v_kD_EJjQCLoY_6,4 2272,v_n9EdHGz7ArI,yellow,what is the color of the table,v_n9EdHGz7ArI,v_n9EdHGz7ArI_8,4 2273,v_nciIPwJTok8,yellow,what is the color of the towel,v_nciIPwJTok8,v_nciIPwJTok8_9,4 2274,v_mnNgZ-D5cKc,red,what color are the socks of the person in white clothes,v_mnNgZ-D5cKc,v_mnNgZ-D5cKc_7,4 2275,v_JKJ_EvP7JwQ,white,what is the color of the wall,v_JKJ_EvP7JwQ,v_JKJ_EvP7JwQ_6,4 2276,v_mMm1LfVb8Pg,red,what is the color of the weeding machine,v_mMm1LfVb8Pg,v_mMm1LfVb8Pg_8,4 2277,v_brJIpRGcBFU,red,what is the color of the weeding machine,v_brJIpRGcBFU,v_brJIpRGcBFU_7,4 2278,v_SidTquTAtyk,black,what color are the pants of the person in black clothes,v_SidTquTAtyk,v_SidTquTAtyk_8,4 2279,v_lUmjnFf7IPQ,black,what color are the pants of the person in black clothes,v_lUmjnFf7IPQ,v_lUmjnFf7IPQ_8,4 2280,v_SNja9iUdAiI,much much safer,how dangerous is the activity of fencing,v_SNja9iUdAiI,v_SNja9iUdAiI_10,8 2281,v_N4qhryre_TE,difficulty,how difficult is the activity,v_N4qhryre_TE,v_N4qhryre_TE_8,8 2282,v_96vBhCFBbQk,secondary,how difficult is the activity,v_96vBhCFBbQk,v_96vBhCFBbQk_9,8 2283,v_nDM4E9CD_y0,simple,how difficult is the activity,v_nDM4E9CD_y0,v_nDM4E9CD_y0_10,8 2284,v_sNTOUuE7ZfM,much simpler,how difficult is the the dance,v_sNTOUuE7ZfM,v_sNTOUuE7ZfM_10,8 2285,v_RXDVJlb97OI,secondary,how difficult is the the dance,v_RXDVJlb97OI,v_RXDVJlb97OI_10,8 2286,v_4j_LRkB4T6c,simple,how difficult is the the dance,v_4j_LRkB4T6c,v_4j_LRkB4T6c_10,8 2287,v_lPw_BRbPw5s,simple,how difficult is the the dance,v_lPw_BRbPw5s,v_lPw_BRbPw5s_10,8 2288,v_T0nCDJuikuA,much simpler,how difficult is the activity of decorating a christmas tree,v_T0nCDJuikuA,v_T0nCDJuikuA_10,8 2289,v_LYTWYSqsTCE,secondary,how difficult is to build a wall,v_LYTWYSqsTCE,v_LYTWYSqsTCE_10,8 2290,v_S6Sg1l78IW0,secondary,how difficult is to play the musical instrument,v_S6Sg1l78IW0,v_S6Sg1l78IW0_10,8 2291,v_4H9MMsj4mcM,secondary,how difficult is to ride a horse,v_4H9MMsj4mcM,v_4H9MMsj4mcM_10,8 2292,v_jEOtcfk220s,secondary,how difficult is the sport in the video ,v_jEOtcfk220s,v_jEOtcfk220s_9,8 2293,v_rMj2JWNJzkw,secondary,how difficult is the sport in the video ,v_rMj2JWNJzkw,v_rMj2JWNJzkw_10,8 2294,v_rsU73H6VyG8,secondary,how difficult is the sport in the video ,v_rsU73H6VyG8,v_rsU73H6VyG8_10,8 2295,v_s6fEIuHPJ4Y,much higher,how difficult is the sport in the video ,v_s6fEIuHPJ4Y,v_s6fEIuHPJ4Y_10,8 2296,v_s9PkkDEl6aY,simple,how difficult is the sport in the video ,v_s9PkkDEl6aY,v_s9PkkDEl6aY_10,8 2297,v_Jhcis4S2Vsg,secondary,how difficult is the sport in the video ,v_Jhcis4S2Vsg,v_Jhcis4S2Vsg_10,8 2298,v_RLBfyIVpocE,secondary,how difficult is the sport in the video ,v_RLBfyIVpocE,v_RLBfyIVpocE_10,8 2299,v_jibbgUBuuSA,much higher,how difficult is the sport in the video ,v_jibbgUBuuSA,v_jibbgUBuuSA_10,8 2300,v_k6pN0WRr2Ws,simple,how difficult is the sport in the video ,v_k6pN0WRr2Ws,v_k6pN0WRr2Ws_10,8 2301,v_s84PG-JfEwc,secondary,how difficult is the sport in the video ,v_s84PG-JfEwc,v_s84PG-JfEwc_10,8 2302,v_RXT17X7lRoQ,secondary,how difficult is the sport in the video ,v_RXT17X7lRoQ,v_RXT17X7lRoQ_10,8 2303,v_rM02KWikOo8,secondary,how difficult is the sport in the video ,v_rM02KWikOo8,v_rM02KWikOo8_10,8 2304,v_30hcRe-5_3M,difficulty,how difficult is the sport in the video ,v_30hcRe-5_3M,v_30hcRe-5_3M_9,8 2305,v_28LdZLfdmMQ,difficulty,how difficult is the sport in the video ,v_28LdZLfdmMQ,v_28LdZLfdmMQ_9,8 2306,v_xND_kp-aYXw,simple,how difficult is the play ,v_xND_kp-aYXw,v_xND_kp-aYXw_10,8 2307,v_62M1FRXsUiM,simple,how difficult is the play ,v_62M1FRXsUiM,v_62M1FRXsUiM_7,8 2308,v_MQ9Ojge7CyA,difficulty,how difficult is the sport in the video ,v_MQ9Ojge7CyA,v_MQ9Ojge7CyA_9,8 2309,v_87F9xGaMwCw,simple,how difficult is the sport in the video ,v_87F9xGaMwCw,v_87F9xGaMwCw_10,8 2310,v_sPK-sbHIb3w,more difficult,how difficult is the activity in the video ,v_sPK-sbHIb3w,v_sPK-sbHIb3w_10,8 2311,v_WXH-Tj0-g4w,simple,how difficult is the operation in the video ,v_WXH-Tj0-g4w,v_WXH-Tj0-g4w_9,8 2312,v_NjXCZYO3zwU,secondary,how difficult is the operation in the video ,v_NjXCZYO3zwU,v_NjXCZYO3zwU_10,8 2313,v_n832gDqfWl4,simple,how difficult is the operation in the video ,v_n832gDqfWl4,v_n832gDqfWl4_8,8 2314,v_MpeN-IVIBc4,difficulty,how difficult is the operation in the video ,v_MpeN-IVIBc4,v_MpeN-IVIBc4_9,8 2315,v_nciIPwJTok8,simple,how difficult is the operation in the video ,v_nciIPwJTok8,v_nciIPwJTok8_8,8 2316,v_hQqoh0YxJYs,perform,what is the dog doing in the video,v_hQqoh0YxJYs,v_hQqoh0YxJYs_1,0 2317,v_Uae2MWoldTU,christmas,what festival is in the video,v_Uae2MWoldTU,v_Uae2MWoldTU_9,8 2318,v_vnZmsOgWs0o,s,what is the first letter of the first sentence at the beginning of the video,v_vnZmsOgWs0o,v_vnZmsOgWs0o_6,8 2319,v_V6Sy8zpJSuc,s,what is the first letter of the first sentence at the beginning of the video,v_V6Sy8zpJSuc,v_V6Sy8zpJSuc_10,8 2320,v_V08Q-DbT0GQ,e,what is the first letter of the first sentence at the beginning of the video,v_V08Q-DbT0GQ,v_V08Q-DbT0GQ_10,8 2321,v_blbaWHbtqTI,smoking,what is the person who first appears in the video doing,v_blbaWHbtqTI,v_blbaWHbtqTI_1,0 2322,v_wh6P2C2avqc,exercise bike,what is the fitness equipment in the video,v_wh6P2C2avqc,v_wh6P2C2avqc_9,5 2323,v_390iVq_urQM,skate,what is under the feet of the person in red,v_390iVq_urQM,v_390iVq_urQM_4,1 2324,v_uWfQcDvel84,lawn,what is under the feet of the man with a hat,v_uWfQcDvel84,v_uWfQcDvel84_4,1 2325,v_nhQTxZlzG1Q,cement floor,what is under the feet of the person in black clothes,v_nhQTxZlzG1Q,v_nhQTxZlzG1Q_4,1 2326,v_nGKc2t-NMYc,horizontal bar,what is under the feet of the person in purple clothes,v_nGKc2t-NMYc,v_nGKc2t-NMYc_4,1 2327,v_pKOy4HJwCqo,surf board,what is under the feet of the person in white clothes,v_pKOy4HJwCqo,v_pKOy4HJwCqo_4,1 2328,v_vezvHLPR3P0,circular site,what is under the feet of the woman in white clothes,v_vezvHLPR3P0,v_vezvHLPR3P0_4,1 2329,v_utgRhyBvtRU,sand,what is under the feet of the woman in white clothes,v_utgRhyBvtRU,v_utgRhyBvtRU_4,1 2330,v_ikUNgSw4Gys,woman in white,what is under the feet of the person in the video,v_ikUNgSw4Gys,v_ikUNgSw4Gys_4,1 2331,v_F7K2oT7ADkk,water basin,what is in front of the woman,v_F7K2oT7ADkk,v_F7K2oT7ADkk_4,1 2332,v_Feq-2NIDl94,table,what is in front of the woman,v_Feq-2NIDl94,v_Feq-2NIDl94_4,1 2333,v_svNcNLEPKMc,pool,what is in front of the athlete,v_svNcNLEPKMc,v_svNcNLEPKMc_4,1 2334,v_snhPrCNubYA,trampoline,what is in front of the athlete,v_snhPrCNubYA,v_snhPrCNubYA_4,1 2335,v_sPK-sbHIb3w,rim,what is in front of the athlete,v_sPK-sbHIb3w,v_sPK-sbHIb3w_4,1 2336,v_jEOtcfk220s,volleyball court,what is in front of the audience,v_jEOtcfk220s,v_jEOtcfk220s_4,1 2337,v_SPjv6P5fxug,enclosure,what is in front of the bald person,v_SPjv6P5fxug,v_SPjv6P5fxug_4,1 2338,v_VFC-V06hVj0,blue dress man,what is in front of the camel,v_VFC-V06hVj0,v_VFC-V06hVj0_4,1 2339,v_MAGeYoFuCgo,pool,what is in front of the chef,v_MAGeYoFuCgo,v_MAGeYoFuCgo_4,1 2340,v__G4EVIG9YaE,tree,what is in front of the girl in the video,v__G4EVIG9YaE,v__G4EVIG9YaE_4,1 2341,v_BMy7CBVxH5M,house,what is in front of the horse,v_BMy7CBVxH5M,v_BMy7CBVxH5M_4,1 2342,v_ryFSf08mrkA,garden,what is in front of the house,v_ryFSf08mrkA,v_ryFSf08mrkA_4,1 2343,v_uM7QSskmloo,tree,what is in front of the house,v_uM7QSskmloo,v_uM7QSskmloo_4,1 2344,v_4UdxT6Zmero,grassland,what is in front of the house,v_4UdxT6Zmero,v_4UdxT6Zmero_4,1 2345,v_09ocXmGF-T4,carrot,what is in front of the boy,v_09ocXmGF-T4,v_09ocXmGF-T4_4,1 2346,v_rsU73H6VyG8,pads,what is in front of the player with a long pole,v_rsU73H6VyG8,v_rsU73H6VyG8_4,1 2347,v_rMj2JWNJzkw,pool,what is in front of the pavilion,v_rMj2JWNJzkw,v_rMj2JWNJzkw_4,1 2348,v_YRGiRmcHdUY,table,what is in front of the person in the video,v_YRGiRmcHdUY,v_YRGiRmcHdUY_4,1 2349,v_Pjnuoa4o55c,wall,what is in front of the person in the video,v_Pjnuoa4o55c,v_Pjnuoa4o55c_4,1 2350,v_3uaQ0cULMgc,automobile,what is in front of the person in the video,v_3uaQ0cULMgc,v_3uaQ0cULMgc_4,1 2351,v_qaml4eEk9hY,vacuum cleaner,what is in front of the person in the video,v_qaml4eEk9hY,v_qaml4eEk9hY_4,1 2352,v_5nu47s7JrfY,cooking bench,what is in front of the person in the video,v_5nu47s7JrfY,v_5nu47s7JrfY_4,1 2353,v_nbOsU2Vmp1U,table,what is in front of the person in the video,v_nbOsU2Vmp1U,v_nbOsU2Vmp1U_4,1 2354,v_a4gI4LC1rJk,kitchen sink,what is in front of the person in the video,v_a4gI4LC1rJk,v_a4gI4LC1rJk_4,1 2355,v_zEttEkAdHts,notes,what is in front of the person in the video,v_zEttEkAdHts,v_zEttEkAdHts_4,1 2356,v_nbHBjdE8oNo,window,what is in front of the person in the video,v_nbHBjdE8oNo,v_nbHBjdE8oNo_4,1 2357,v_AB480dHyDeM,table,what is in front of the person in the video,v_AB480dHyDeM,v_AB480dHyDeM_4,1 2358,v_oT6WUU8-dgs,table,what is in front of the person in the video,v_oT6WUU8-dgs,v_oT6WUU8-dgs_4,1 2359,v_qObVIn_GI10,juicer,what is in front of the person in the video,v_qObVIn_GI10,v_qObVIn_GI10_4,1 2360,v_mZYWfmsYQPA,table tennis table,what is in front of the person in the video,v_mZYWfmsYQPA,v_mZYWfmsYQPA_4,1 2361,v_Z2gpcqXWNek,dog,what is in front of the person in the video,v_Z2gpcqXWNek,v_Z2gpcqXWNek_4,1 2362,v_yGTIEmZ7S2w,grassland,what is in front of the person in the video,v_yGTIEmZ7S2w,v_yGTIEmZ7S2w_4,1 2363,v_AB5cWhlQ0Kk,television,what is in front of the person in the video,v_AB5cWhlQ0Kk,v_AB5cWhlQ0Kk_4,1 2364,v_T3mcQnlsmq4,blanket,what is in front of the person in the video,v_T3mcQnlsmq4,v_T3mcQnlsmq4_4,1 2365,v_n9EdHGz7ArI,table,what is in front of the person in the video,v_n9EdHGz7ArI,v_n9EdHGz7ArI_4,1 2366,v_04qggWACGWk,bathing pool,what is in front of the person in the video,v_04qggWACGWk,v_04qggWACGWk_4,1 2367,v_ngMxE3CnGVg,table,what is in front of the person in the video,v_ngMxE3CnGVg,v_ngMxE3CnGVg_4,1 2368,v_LL0uQO4q_wY,curling runway,what is in front of the person in the video,v_LL0uQO4q_wY,v_LL0uQO4q_wY_4,1 2369,v_Aj5ncX5G_2w,tool,what is in front of the person in the video,v_Aj5ncX5G_2w,v_Aj5ncX5G_2w_4,1 2370,v_yCpdDJAW-jU,vehicle,what is in front of the person in the video,v_yCpdDJAW-jU,v_yCpdDJAW-jU_4,1 2371,v_Of2Umm79Kxg,wheel,what is in front of the person in the video,v_Of2Umm79Kxg,v_Of2Umm79Kxg_4,1 2372,v_z6pmp8TrAVo,kitchen sink,what is in front of the person in the video,v_z6pmp8TrAVo,v_z6pmp8TrAVo_4,1 2373,v_BBKSKU6dGGk,vehicle,what is in front of the person in the video,v_BBKSKU6dGGk,v_BBKSKU6dGGk_4,1 2374,v_v0azz4XzW_s,stone,what is in front of the person in the video,v_v0azz4XzW_s,v_v0azz4XzW_s_4,1 2375,v_Yg03CCu9GMo,bar counter,what is in front of the person in the video,v_Yg03CCu9GMo,v_Yg03CCu9GMo_4,1 2376,v_Nb6AQxxrihA,table,what is in front of the person in the video,v_Nb6AQxxrihA,v_Nb6AQxxrihA_4,1 2377,v_s6fEIuHPJ4Y,protective net,what is in front of the athlete at the beginning of the video,v_s6fEIuHPJ4Y,v_s6fEIuHPJ4Y_4,1 2378,v_f6vZaMgqDvQ,stand,what is in front of the playing field,v_f6vZaMgqDvQ,v_f6vZaMgqDvQ_4,1 2379,v_ldAHwbF8uWI,opponent,what is in front of the person in red,v_ldAHwbF8uWI,v_ldAHwbF8uWI_4,1 2380,v_RLBfyIVpocE,guardrail net,what is in front of the referee,v_RLBfyIVpocE,v_RLBfyIVpocE_4,1 2381,v_b_mWxzi_aps,contestant,what is in front of the referee,v_b_mWxzi_aps,v_b_mWxzi_aps_4,1 2382,v_pop8YCGQpWk,bunker,what is in front of the runner when he starts,v_pop8YCGQpWk,v_pop8YCGQpWk_4,1 2383,v_pmmQuksmTvw,hopping viaduct,what is in front of the runner when he starts,v_pmmQuksmTvw,v_pmmQuksmTvw_4,1 2384,v_3oy4P1gyU4k,pool table,what is in front of the second person appears in the video,v_3oy4P1gyU4k,v_3oy4P1gyU4k_4,1 2385,v_zA2zZPyYLlU,water,what is in front of the boat in the video,v_zA2zZPyYLlU,v_zA2zZPyYLlU_4,1 2386,v_hQqoh0YxJYs,stand,what is in front of the field,v_hQqoh0YxJYs,v_hQqoh0YxJYs_4,1 2387,v_kMtjk1KFvXQ,balance beam,what is the girl doing,v_kMtjk1KFvXQ,v_kMtjk1KFvXQ_1,0 2388,v_v6P6bBPBXYw,billboard,what is behind the goal,v_v6P6bBPBXYw,v_v6P6bBPBXYw_4,1 2389,v_x6pYeqq3O08,curly hair,what is the hairstyle of the person in red clothes,v_x6pYeqq3O08,v_x6pYeqq3O08_9,5 2390,v_PD-FXR7O9J0,pet dog,what is the role of the dog,v_PD-FXR7O9J0,v_PD-FXR7O9J0_9,8 2391,v_P8S8PIyPXxY,hairstylist,what is the job of the person in blue clothes,v_P8S8PIyPXxY,v_P8S8PIyPXxY_8,8 2392,v_sPK-sbHIb3w,coach,what is the job of the person in blue clothes,v_sPK-sbHIb3w,v_sPK-sbHIb3w_6,8 2393,v_CfqnHsp6olc,referee,what is the job of the person in yellow clothes,v_CfqnHsp6olc,v_CfqnHsp6olc_6,5 2394,v_w4pO-1-FG5w,haircut,what is the lady doing in the video,v_w4pO-1-FG5w,v_w4pO-1-FG5w_1,0 2395,v_CDncYtx6Lwc,nail polish,what is the lady doing in the video,v_CDncYtx6Lwc,v_CDncYtx6Lwc_1,0 2396,v_W97fdJ2Rn9g,make up,what is the lady doing in the video,v_W97fdJ2Rn9g,v_W97fdJ2Rn9g_1,0 2397,v_uktUeF3Fy7o,tree,what is on the left of the river,v_uktUeF3Fy7o,v_uktUeF3Fy7o_4,1 2398,v_uJAL31wAD2A,tree,what is on the left of the river,v_uJAL31wAD2A,v_uJAL31wAD2A_4,1 2399,v_NjD6iWI3NvM,take exercise,what is the little boy in the video doing,v_NjD6iWI3NvM,v_NjD6iWI3NvM_1,0 2400,v_raxeBxPQqlk,play darts,what is the little boy in the video doing,v_raxeBxPQqlk,v_raxeBxPQqlk_1,0 2401,v_Woelo4XJkHE,eat ice cream,what is the little boy in the video doing,v_Woelo4XJkHE,v_Woelo4XJkHE_1,0 2402,v_e4kS-n7_LRU,eat ice cream,what is the little girl doing,v_e4kS-n7_LRU,v_e4kS-n7_LRU_1,0 2403,v_f8SWWURHV1M,play piano,what is the little girl in the video doing,v_f8SWWURHV1M,v_f8SWWURHV1M_1,0 2404,v_eiN5XPmwcEM,shave,what is the man doing,v_eiN5XPmwcEM,v_eiN5XPmwcEM_1,0 2405,v_EDDbcCBnTQM,water spray,what is the man doing,v_EDDbcCBnTQM,v_EDDbcCBnTQM_1,0 2406,v_KXcVYfMuUGw,training dog,what is the man doing,v_KXcVYfMuUGw,v_KXcVYfMuUGw_1,0 2407,v_FADShG5lyB8,bodybuilding,what is the man doing in the video,v_FADShG5lyB8,v_FADShG5lyB8_1,0 2408,v_dKJMP8EmZjw,sailing,what is the man doing in the video,v_dKJMP8EmZjw,v_dKJMP8EmZjw_1,0 2409,v_dskswWtslKc,surfing,what is the man doing in the video,v_dskswWtslKc,v_dskswWtslKc_1,0 2410,v_e0yu4WgiZUM,swimming,what is the man doing in the video,v_e0yu4WgiZUM,v_e0yu4WgiZUM_1,0 2411,v_fe4r2-Y8k1U,tell about,what is the man in a black coat doing,v_fe4r2-Y8k1U,v_fe4r2-Y8k1U_1,0 2412,v_fhOmyyI0eQE,pruning trees,what is the man in a blue coat doing,v_fhOmyyI0eQE,v_fhOmyyI0eQE_1,0 2413,v_faqijFZWQlo,phone,what is the person in a gray coat doing,v_faqijFZWQlo,v_faqijFZWQlo_1,0 2414,v_df5rlVZD0Zc,run,what is the man in a red coat doing,v_df5rlVZD0Zc,v_df5rlVZD0Zc_1,0 2415,v_fh9d3gpT-8I,blow up drum,what is the man in a red coat doing,v_fh9d3gpT-8I,v_fh9d3gpT-8I_1,0 2416,v_7H1KylJRii8,wine dressing,what is the man in a striped shirt doing,v_7H1KylJRii8,v_7H1KylJRii8_1,0 2417,v_DHjoAOus3xM,rowing,what is the man in a white coat doing,v_DHjoAOus3xM,v_DHjoAOus3xM_1,0 2418,v_fh21bbDSVmA,gymnastics competition,what is the man in a white coat doing,v_fh21bbDSVmA,v_fh21bbDSVmA_1,0 2419,v_fvEaC-fTR4A,play football on table,what is the man in black doing,v_fvEaC-fTR4A,v_fvEaC-fTR4A_1,0 2420,v_DOI6tsATsE4,show turns eye,what is the man in black doing,v_DOI6tsATsE4,v_DOI6tsATsE4_1,0 2421,v_laU1Hvm5Dis,guard net,what is in front of this person,v_laU1Hvm5Dis,v_laU1Hvm5Dis_4,1 2422,v_0XTAq_xvquw,ski,what is in front of the video,v_0XTAq_xvquw,v_0XTAq_xvquw_4,1 2423,v_5oyenoaVB-w,drawing board,what is in front of the video,v_5oyenoaVB-w,v_5oyenoaVB-w_4,1 2424,v_2ShsRSJ9cqE,welding,what is the man in a hat doing,v_2ShsRSJ9cqE,v_2ShsRSJ9cqE_1,0 2425,v_qKp2QCheLwU,play musical instrument,what is the man in a red hat doing,v_qKp2QCheLwU,v_qKp2QCheLwU_1,0 2426,v_9SIPJd4Hls4,make salad,what is the man in a red hat doing,v_9SIPJd4Hls4,v_9SIPJd4Hls4_1,0 2427,v_kistIwzeQOU,wallpaper,what is the person in white clothes doing,v_kistIwzeQOU,v_kistIwzeQOU_1,0 2428,v_e0yu4WgiZUM,buoy,what is on the right side of the man,v_e0yu4WgiZUM,v_e0yu4WgiZUM_4,1 2429,v_uWfQcDvel84,weed,what is the person in a hat doing in the video,v_uWfQcDvel84,v_uWfQcDvel84_1,0 2430,v_5c5PFa8GR-A,watch,what is the person in a hat wearing on the right hand,v_5c5PFa8GR-A,v_5c5PFa8GR-A_9,5 2431,v_sNTOUuE7ZfM,dance,what is the person with a tie doing,v_sNTOUuE7ZfM,v_sNTOUuE7ZfM_1,0 2432,v_0xBP-TSsqb0,hair hoop,what does the man in the video wear on his head,v_0xBP-TSsqb0,v_0xBP-TSsqb0_7,5 2433,v_jbCQY7V7O1s,headset,what does the man in the video wear on his head,v_jbCQY7V7O1s,v_jbCQY7V7O1s_9,5 2434,v_IGT0dIKDGCw,flying discses,what is the person with a hat doing,v_IGT0dIKDGCw,v_IGT0dIKDGCw_1,0 2435,v_IGPZFun1Ok4,gambling,what is the person with a hat doing,v_IGPZFun1Ok4,v_IGPZFun1Ok4_1,0 2436,v_FxpP7lqvm30,explain games rule,what is the person with a microphone doing,v_FxpP7lqvm30,v_FxpP7lqvm30_1,0 2437,v_nvcMYiZhUuo,high,how dangerous is this activity in the video,v_nvcMYiZhUuo,v_nvcMYiZhUuo_9,8 2438,v_YHqFNnhaFAY,high,how dangerous is this activity in the video,v_YHqFNnhaFAY,v_YHqFNnhaFAY_7,8 2439,v_yRQpolWhJ6A,security,how safe is this sport in the video,v_yRQpolWhJ6A,v_yRQpolWhJ6A_8,8 2440,v_NNiJfr_ChH4,secondary,how safe is this sport in the video,v_NNiJfr_ChH4,v_NNiJfr_ChH4_9,8 2441,v_Ye_uVlSo1HI,secondary,how safe is this sport in the video,v_Ye_uVlSo1HI,v_Ye_uVlSo1HI_10,8 2442,v_AguxVxEWEs0,secondary,how safe is this sport in the video,v_AguxVxEWEs0,v_AguxVxEWEs0_8,8 2443,v_nnEPsdA0080,danger,how safe is this sport in the video,v_nnEPsdA0080,v_nnEPsdA0080_10,8 2444,v_Z6b4oFjIznU,secondary,how safe is this sport in the video,v_Z6b4oFjIznU,v_Z6b4oFjIznU_7,8 2445,v_a2IvS0xbNGQ,danger,how safe is this sport in the video,v_a2IvS0xbNGQ,v_a2IvS0xbNGQ_9,8 2446,v_oKJ1BnvHbbA,secondary,how safe is this sport in the video,v_oKJ1BnvHbbA,v_oKJ1BnvHbbA_10,8 2447,v_aH39BSM0-Ag,secondary,how safe is this sport in the video,v_aH39BSM0-Ag,v_aH39BSM0-Ag_8,8 2448,v_OQEKZXv6jSw,secondary,how safe is this sport in the video,v_OQEKZXv6jSw,v_OQEKZXv6jSw_8,8 2449,v__l251ZuOCYU,secondary,how safe is this sport in the video,v__l251ZuOCYU,v__l251ZuOCYU_8,8 2450,v_aGvpDyMNATI,secondary,how safe is this sport in the video,v_aGvpDyMNATI,v_aGvpDyMNATI_9,8 2451,v_YMOYyt3kSOs,secondary,how safe is this sport in the video,v_YMOYyt3kSOs,v_YMOYyt3kSOs_9,8 2452,v_YVqRQDkdA8U,secondary,how safe is this sport in the video,v_YVqRQDkdA8U,v_YVqRQDkdA8U_9,8 2453,v_AjizhJc_reI,secondary,how safe is this sport in the video,v_AjizhJc_reI,v_AjizhJc_reI_9,8 2454,v_otMw5GJWYWs,secondary,how safe is this sport in the video,v_otMw5GJWYWs,v_otMw5GJWYWs_9,8 2455,v_ys4_S3JHQjs,secondary,how safe is this sport in the video,v_ys4_S3JHQjs,v_ys4_S3JHQjs_8,8 2456,v_oflwFZj9PNY,secondary,how safe is this sport in the video,v_oflwFZj9PNY,v_oflwFZj9PNY_9,8 2457,v_y0ca-LbQErY,secondary,how safe is this sport in the video,v_y0ca-LbQErY,v_y0ca-LbQErY_7,8 2458,v_nP1Bk-vJgVg,secondary,how safe is this sport in the video,v_nP1Bk-vJgVg,v_nP1Bk-vJgVg_9,8 2459,v_BdRH3lpopLQ,volleyball,what is the name of the ball in video,v_BdRH3lpopLQ,v_BdRH3lpopLQ_6,5 2460,v_X_K7Aa3Aa-E,guitar,what is the name of the instrument in the video,v_X_K7Aa3Aa-E,v_X_K7Aa3Aa-E_10,5 2461,v_prBiREYQ2vQ,long distance run,what is the name of the sport in the video,v_prBiREYQ2vQ,v_prBiREYQ2vQ_6,8 2462,v_bBRzBh0gAZQ,long jump,what is the name of the sport in the video,v_bBRzBh0gAZQ,v_bBRzBh0gAZQ_8,8 2463,v_WPYQ27GjFKc,twenty one points,what is the name of the activity in the video,v_WPYQ27GjFKc,v_WPYQ27GjFKc_10,8 2464,v_b_mWxzi_aps,wrist wrestling,what is the name of the activity in the video,v_b_mWxzi_aps,v_b_mWxzi_aps_7,8 2465,v_P5D9S9NzQ28,tennis sports,what is the name of the activity in the video,v_P5D9S9NzQ28,v_P5D9S9NzQ28_8,8 2466,v_pcLGX5qvUcI,ice hockey movement,what is the name of the activity in the video,v_pcLGX5qvUcI,v_pcLGX5qvUcI_6,8 2467,v_pmmQuksmTvw,pole vault,what is the name of the activity in the video,v_pmmQuksmTvw,v_pmmQuksmTvw_6,8 2468,v_pop8YCGQpWk,long jump,what is the name of the activity in the video,v_pop8YCGQpWk,v_pop8YCGQpWk_6,8 2469,v_p1QGn0IzfW0,parallel bars movement,what is the name of the activity in the video,v_p1QGn0IzfW0,v_p1QGn0IzfW0_6,8 2470,v_pKOy4HJwCqo,surfing,what is the name of the activity in the video,v_pKOy4HJwCqo,v_pKOy4HJwCqo_6,8 2471,v_-pK2JheWido,skiing,what is the name of the activity in the video,v_-pK2JheWido,v_-pK2JheWido_6,8 2472,v_Pr5K2Jh2X94,three step jump,what is the name of the activity in the video,v_Pr5K2Jh2X94,v_Pr5K2Jh2X94_6,8 2473,v_pMtu7fOHdII,ice hockey,what is the name of the activity in the video,v_pMtu7fOHdII,v_pMtu7fOHdII_6,8 2474,v_xS4twW2gXqc,705,what is the number of people in red clothes,v_xS4twW2gXqc,v_xS4twW2gXqc_7,8 2475,v_jt-Vnap5KP4,mouthpiece,what is the old man doing in the video,v_jt-Vnap5KP4,v_jt-Vnap5KP4_1,0 2476,v_d_A-ylxNbFU,budweiser,what kind of drink does the person in the video take,v_d_A-ylxNbFU,v_d_A-ylxNbFU_10,5 2477,v_Of2Umm79Kxg,wrench,what is the person in the video holding,v_Of2Umm79Kxg,v_Of2Umm79Kxg_7,8 2478,v_d_A-ylxNbFU,wall,what is behind the person in the video,v_d_A-ylxNbFU,v_d_A-ylxNbFU_4,1 2479,v_-YwrMtiqHKg,ceiling,what is on top of the person in the video,v_-YwrMtiqHKg,v_-YwrMtiqHKg_4,1 2480,v_yUvSujxnFE0,sky,what is on top of the person in the video,v_yUvSujxnFE0,v_yUvSujxnFE0_4,1 2481,v_1YU4MSK80cQ,parallel bars exercise,what's the person in a black vest doing in the video,v_1YU4MSK80cQ,v_1YU4MSK80cQ_1,0 2482,v_qWgF9hxNbP8,boxing match,what's the person in a black vest doing in the video,v_qWgF9hxNbP8,v_qWgF9hxNbP8_1,0 2483,v_ZgdMnfTqblw,play basketball,what's the person in a black vest doing in the video,v_ZgdMnfTqblw,v_ZgdMnfTqblw_1,0 2484,v_G0VWk5WqDp0,throwing javelin,what's the person in a blue hoodie doing,v_G0VWk5WqDp0,v_G0VWk5WqDp0_1,0 2485,v_Z-sWZUYL0ZU,wiping cupboard,what's the person in a gray coat doing,v_Z-sWZUYL0ZU,v_Z-sWZUYL0ZU_1,0 2486,v_qZMcbBsQorE,take exercise,what's the person in a gray vest doing,v_qZMcbBsQorE,v_qZMcbBsQorE_1,0 2487,v_V6Sy8zpJSuc,seal carpets,what's the person in a hat doing in the video,v_V6Sy8zpJSuc,v_V6Sy8zpJSuc_1,0 2488,v_qZtdMXkHRXw,throwing darts,what's the person in a white shirt doing,v_qZtdMXkHRXw,v_qZtdMXkHRXw_1,0 2489,v_Es3PxD9oi4I,water polo,what's the person in a white hat doing,v_Es3PxD9oi4I,v_Es3PxD9oi4I_1,0 2490,v_hIYN8cC3pEA,poweriser,what's the person in a white vest doing,v_hIYN8cC3pEA,v_hIYN8cC3pEA_1,0 2491,v_qSP3_C7QWpU,boxing match,what's the person in a white vest doing,v_qSP3_C7QWpU,v_qSP3_C7QWpU_1,0 2492,v_6JZVpl2S2Mg,hair rope,what is the person in the video wearing on the right hand ,v_6JZVpl2S2Mg,v_6JZVpl2S2Mg_8,5 2493,v_PJ7HOHdOdy4,wash socks,what is the unclothed person in the video doing,v_PJ7HOHdOdy4,v_PJ7HOHdOdy4_1,0 2494,v_eKdtOKqLMRE,toilet paper,what is under the person's foot in the video,v_eKdtOKqLMRE,v_eKdtOKqLMRE_4,1 2495,v_K5jY2chByPw,braided hair,what is the hairstyle of the person in the video,v_K5jY2chByPw,v_K5jY2chByPw_10,8 2496,v_YaC68rE4lwA,curly hair,what is the hairstyle of the person in the video,v_YaC68rE4lwA,v_YaC68rE4lwA_10,8 2497,v_ej_fSoVO0R8,pastry master,what is the job of the person in the video,v_ej_fSoVO0R8,v_ej_fSoVO0R8_6,8 2498,v_eKdtOKqLMRE,charlie adams,what is the job of the person in the video,v_eKdtOKqLMRE,v_eKdtOKqLMRE_6,8 2499,v_SjlILJ2st-I,audience,what is on the right of the player ,v_SjlILJ2st-I,v_SjlILJ2st-I_4,1 2500,v_W2Mh01F3K5c,decorator,what is the job the person in black clothes,v_W2Mh01F3K5c,v_W2Mh01F3K5c_8,8 2501,v_-Fk62y-1WHo,play musical instrument,what is the person doing,v_-Fk62y-1WHo,v_-Fk62y-1WHo_1,0 2502,v_FtRGOgg0Qh8,window,what is behind the person,v_FtRGOgg0Qh8,v_FtRGOgg0Qh8_4,1 2503,v_FkbpD1zWdPw,spectator seats,what is behind the athlete,v_FkbpD1zWdPw,v_FkbpD1zWdPw_4,1 2504,v_H_IfIsKQ3Zw,colleague,what is the relationship of the people in the video,v_H_IfIsKQ3Zw,v_H_IfIsKQ3Zw_9,8 2505,v_I3tqWc5wG78,friend,what is the relationship of the people in the video,v_I3tqWc5wG78,v_I3tqWc5wG78_6,8 2506,v_auO4r3De6vc,partner,what is the relationship of the person and the dog,v_auO4r3De6vc,v_auO4r3De6vc_7,8 2507,v_idkQqlwyff8,master and servant,what is the relationship of the woman and the black dog,v_idkQqlwyff8,v_idkQqlwyff8_6,8 2508,v_4LpqPUWHH5k,opponent,what is the relationship of the players in the video,v_4LpqPUWHH5k,v_4LpqPUWHH5k_10,5 2509,v_JbW8efAOOt0,friend,what is the relationship of the people in the video,v_JbW8efAOOt0,v_JbW8efAOOt0_10,8 2510,v_AjizhJc_reI,mother and daughter,what is the relationship of the person in white and the person in red,v_AjizhJc_reI,v_AjizhJc_reI_8,8 2511,v_HQVSLlKhupk,teammate,what is the relationship of the people in green,v_HQVSLlKhupk,v_HQVSLlKhupk_8,8 2512,v_sk_pnoqXxhs,whole family,what is the relationship of the people in the video,v_sk_pnoqXxhs,v_sk_pnoqXxhs_10,8 2513,v_RgiVa9GMYxE,family,what is the relationship of the people in the video,v_RgiVa9GMYxE,v_RgiVa9GMYxE_10,8 2514,v_j81ndpMC9gI,spouse,what is the relationship of the people in the video,v_j81ndpMC9gI,v_j81ndpMC9gI_10,8 2515,v_jbCQY7V7O1s,family,what is the relationship of the people in the video,v_jbCQY7V7O1s,v_jbCQY7V7O1s_10,8 2516,v_blbaWHbtqTI,smoke friend,what is the relationship of the people in the video,v_blbaWHbtqTI,v_blbaWHbtqTI_10,8 2517,v_jhy6npIdn5o,family,what is the relationship of the people in the video,v_jhy6npIdn5o,v_jhy6npIdn5o_10,8 2518,v_rGOOlcdpfLg,family,what is the relationship of the people in the video,v_rGOOlcdpfLg,v_rGOOlcdpfLg_10,8 2519,v_b0qGo-HT5iQ,doctor patient relationship,what is the relationship of the people in the video,v_b0qGo-HT5iQ,v_b0qGo-HT5iQ_7,8 2520,v_JcAAwYpJhm8,family,what is the relationship of the people in the video,v_JcAAwYpJhm8,v_JcAAwYpJhm8_10,8 2521,v_PBYg9ekd86w,friend,what is the relationship of the people in the video,v_PBYg9ekd86w,v_PBYg9ekd86w_10,8 2522,v_JGxf-jke0e8,family,what is the relationship of the people in the video,v_JGxf-jke0e8,v_JGxf-jke0e8_10,8 2523,v_NDq29HQJVP0,teammate,what is the relationship of the people in white,v_NDq29HQJVP0,v_NDq29HQJVP0_8,8 2524,v_nc_NMp3vAH0,teammate,what is the relationship of the people in white,v_nc_NMp3vAH0,v_nc_NMp3vAH0_7,8 2525,v_pVuuVHA3RVw,opponent,what is the relationship of the players,v_pVuuVHA3RVw,v_pVuuVHA3RVw_9,8 2526,v_pop8YCGQpWk,opponent,what is the relationship of the players,v_pop8YCGQpWk,v_pop8YCGQpWk_9,8 2527,v_pmmQuksmTvw,opponent,what is the relationship of the players,v_pmmQuksmTvw,v_pmmQuksmTvw_7,8 2528,v_Pr5K2Jh2X94,opponent,what is the relationship of the players,v_Pr5K2Jh2X94,v_Pr5K2Jh2X94_8,8 2529,v_cYvFlrAnlzA,friend,what is the relationship of the four people in the video,v_cYvFlrAnlzA,v_cYvFlrAnlzA_9,8 2530,v_P5D9S9NzQ28,teaching relationship,what is the relationship of the people in the video,v_P5D9S9NzQ28,v_P5D9S9NzQ28_7,8 2531,v_wcxEkMoOmBk,friend,what is the relationship of the people in the video,v_wcxEkMoOmBk,v_wcxEkMoOmBk_7,8 2532,v_i5qTK0mInTc,friend,what is the relationship of the people in the video,v_i5qTK0mInTc,v_i5qTK0mInTc_10,8 2533,v_BMy7CBVxH5M,colleague,what is the relationship of the people in the video,v_BMy7CBVxH5M,v_BMy7CBVxH5M_7,5 2534,v_WNgI2qBvPrY,mother and daughter,what is the relationship of the people in the video,v_WNgI2qBvPrY,v_WNgI2qBvPrY_7,8 2535,v_Woelo4XJkHE,father and son,what is the relationship of the people in the video,v_Woelo4XJkHE,v_Woelo4XJkHE_7,8 2536,v_I16FTpQQiic,friend,what is the relationship of the people in the video,v_I16FTpQQiic,v_I16FTpQQiic_10,8 2537,v_4UdxT6Zmero,whole family,what is the relationship of the people in the video,v_4UdxT6Zmero,v_4UdxT6Zmero_9,8 2538,v_P2xT7dlyX8Y,partner,what is the relationship of the people on the stage,v_P2xT7dlyX8Y,v_P2xT7dlyX8Y_7,8 2539,v_uIHWHnItois,friend,what is the relationship of the seven people in the video,v_uIHWHnItois,v_uIHWHnItois_9,8 2540,v_uJ4OZfCjViM,brother,what is the relationship of the three people in the video,v_uJ4OZfCjViM,v_uJ4OZfCjViM_8,8 2541,v_uktUeF3Fy7o,friend,what is the relationship of the three people in the video,v_uktUeF3Fy7o,v_uktUeF3Fy7o_9,8 2542,v_PJ7HOHdOdy4,friend,what is the relationship of the three people in the video,v_PJ7HOHdOdy4,v_PJ7HOHdOdy4_10,8 2543,v_EXPYu9bfNcE,colleague,what is the relationship of the two girls in the video,v_EXPYu9bfNcE,v_EXPYu9bfNcE_7,5 2544,v_VSsZZZHn1L0,friend,what is the relationship of the two people,v_VSsZZZHn1L0,v_VSsZZZHn1L0_7,8 2545,v_9ZVWD0ZKXZg,partner,what is the relationship of the two people,v_9ZVWD0ZKXZg,v_9ZVWD0ZKXZg_9,5 2546,v__fLhtWSCaSo,colleague,what is the relationship of the two people,v__fLhtWSCaSo,v__fLhtWSCaSo_8,8 2547,v_Df7AnfIEhYw,friend,what is the relationship of the two people,v_Df7AnfIEhYw,v_Df7AnfIEhYw_10,5 2548,v_zH1MiuiTsx8,father and son,what is the relationship of the two people in the video,v_zH1MiuiTsx8,v_zH1MiuiTsx8_10,8 2549,v_ZJnXQw84xvo,mother and daughter,what is the relationship of the two people in the video,v_ZJnXQw84xvo,v_ZJnXQw84xvo_9,8 2550,v_b_mWxzi_aps,opponent,what is the relationship of the two people in the game,v_b_mWxzi_aps,v_b_mWxzi_aps_9,8 2551,v_cQgP0-Id-p4,friend,what is the relationship of the two people in the video,v_cQgP0-Id-p4,v_cQgP0-Id-p4_8,8 2552,v_teffBaLEZQg,friend,what is the relationship of the two people in the video,v_teffBaLEZQg,v_teffBaLEZQg_8,8 2553,v_er5jUsRr4y0,friend,what is the relationship of the two people in the video,v_er5jUsRr4y0,v_er5jUsRr4y0_8,8 2554,v_afMQA352X_A,friend,what is the relationship of the two people in the video,v_afMQA352X_A,v_afMQA352X_A_7,8 2555,v_4LoAbHdHWqM,father and daughter,what is the relationship of the two people in the video,v_4LoAbHdHWqM,v_4LoAbHdHWqM_10,8 2556,v_TtewPltwuXw,friend,what is the relationship of the two people in the video,v_TtewPltwuXw,v_TtewPltwuXw_8,8 2557,v_d4sX1jnL4BY,friend,what is the relationship of the two people in the video,v_d4sX1jnL4BY,v_d4sX1jnL4BY_10,8 2558,v_AB5cWhlQ0Kk,friend,what is the relationship of the two people in the video,v_AB5cWhlQ0Kk,v_AB5cWhlQ0Kk_8,5 2559,v_ufrTSC3Dewg,father and son,what is the relationship of the two people in the video,v_ufrTSC3Dewg,v_ufrTSC3Dewg_9,8 2560,v_MonWdYi3a0I,lovers,what is the relationship of the two people in the video,v_MonWdYi3a0I,v_MonWdYi3a0I_7,8 2561,v_W2Mh01F3K5c,colleague,what is the relationship of the two people in the video,v_W2Mh01F3K5c,v_W2Mh01F3K5c_9,8 2562,v_8IrulONeC28,friend,what is the relationship of the two people in the video,v_8IrulONeC28,v_8IrulONeC28_9,5 2563,v_BdRH3lpopLQ,opponent,what is the relationship of the two teams on the field,v_BdRH3lpopLQ,v_BdRH3lpopLQ_10,5 2564,v_FaP7unySMOs,classmate,what is the relationship of the people,v_FaP7unySMOs,v_FaP7unySMOs_7,5 2565,v_ds3mAmUPxYA,partner,what is the relationship of the people,v_ds3mAmUPxYA,v_ds3mAmUPxYA_8,8 2566,v_09ocXmGF-T4,father and son,what is the relationship of the two people,v_09ocXmGF-T4,v_09ocXmGF-T4_6,8 2567,v_DOI6tsATsE4,friend,what is the relationship of the two people,v_DOI6tsATsE4,v_DOI6tsATsE4_7,5 2568,v_9eniCub7u60,dancing partner,what is the relationship of the two people,v_9eniCub7u60,v_9eniCub7u60_9,5 2569,v_iAes5SVj_Fg,friend,what is the relationship of the two people in red,v_iAes5SVj_Fg,v_iAes5SVj_Fg_6,8 2570,v_cQgP0-Id-p4,video player,what is on the right of the man in the video,v_cQgP0-Id-p4,v_cQgP0-Id-p4_4,1 2571,v_CuLC5G7yWxA,computer,what is on the right of the woman in the video,v_CuLC5G7yWxA,v_CuLC5G7yWxA_4,1 2572,v_sfbgZOHLkII,row of fences,what is on the right of the woman in the video,v_sfbgZOHLkII,v_sfbgZOHLkII_4,1 2573,v_d6gGZFQOxOg,wall,what is on the right of the person in green clothes,v_d6gGZFQOxOg,v_d6gGZFQOxOg_4,1 2574,v_penDFcEdu7U,tree,what is on the right of the person in white clothes,v_penDFcEdu7U,v_penDFcEdu7U_4,1 2575,v_AwcM25G1h-g,secondary,how dangerous is the activity of archery,v_AwcM25G1h-g,v_AwcM25G1h-g_10,8 2576,v_LjPKKqe-VO0,secondary,how dangerous is the activity of gymnastics ,v_LjPKKqe-VO0,v_LjPKKqe-VO0_10,8 2577,v_u0Dc0ZtudXY,lower,how dangerous is the activity of gymnastics ,v_u0Dc0ZtudXY,v_u0Dc0ZtudXY_10,8 2578,v_TGffgRXc1eQ,lower,how dangerous is the activity of playing football,v_TGffgRXc1eQ,v_TGffgRXc1eQ_10,8 2579,v_DIVaPURJHPo,low,how dangerous is the activity of rope skipping,v_DIVaPURJHPo,v_DIVaPURJHPo_10,8 2580,v_tgPD2SZo_DY,low,how dangerous is the activity of running,v_tgPD2SZo_DY,v_tgPD2SZo_DY_10,8 2581,v_TXSOSSGJYO0,low,how dangerous is the activity of running,v_TXSOSSGJYO0,v_TXSOSSGJYO0_10,8 2582,v_hxErUs42bBI,much higher,how dangerous is the activity of skiing,v_hxErUs42bBI,v_hxErUs42bBI_10,8 2583,v_fbr7v8RMkf8,low grade,how dangerous is the activity of skiing,v_fbr7v8RMkf8,v_fbr7v8RMkf8_8,8 2584,v_dskswWtslKc,secondary,how dangerous is the activity of surfing,v_dskswWtslKc,v_dskswWtslKc_8,8 2585,v_1vTHJMMPZN0,secondary,how dangerous is the activity of surfing,v_1vTHJMMPZN0,v_1vTHJMMPZN0_10,8 2586,v_3Nd3Aai1bVA,higher,how dangerous is the sport in the video,v_3Nd3Aai1bVA,v_3Nd3Aai1bVA_10,8 2587,v_Df7AnfIEhYw,low,how dangerous is the competition in the video,v_Df7AnfIEhYw,v_Df7AnfIEhYw_6,8 2588,v_dGT_KGb0gyw,low grade,how dangerous is the game in the video,v_dGT_KGb0gyw,v_dGT_KGb0gyw_10,8 2589,v_-vY2uUmv6Dk,higher,how dangerous is the sport in the video,v_-vY2uUmv6Dk,v_-vY2uUmv6Dk_7,8 2590,v_wE9sQbGdeAk,much higher,how dangerous is the sport in the video,v_wE9sQbGdeAk,v_wE9sQbGdeAk_10,8 2591,v_uktUeF3Fy7o,high,how dangerous is the activity of surfing,v_uktUeF3Fy7o,v_uktUeF3Fy7o_10,8 2592,v_1QIUV7WYKXg,secondary,how dangerous is the activity of throwing a javelin,v_1QIUV7WYKXg,v_1QIUV7WYKXg_10,8 2593,v_tzP0lKSUv_o,secondary,how dangerous is the activity of weightlifting ,v_tzP0lKSUv_o,v_tzP0lKSUv_o_10,8 2594,v_tRFK1BMKaRo,lower,how dangerous is the activity of weightlifting ,v_tRFK1BMKaRo,v_tRFK1BMKaRo_10,8 2595,v_JB-ynj70saA,secondary,how dangerous is the activity in the video,v_JB-ynj70saA,v_JB-ynj70saA_10,8 2596,v_SjlILJ2st-I,much more dangerous,how dangerous is the activity of cycling,v_SjlILJ2st-I,v_SjlILJ2st-I_10,8 2597,v_lYP05IRcOPE,secondary,how dangerous is the activity of drifting,v_lYP05IRcOPE,v_lYP05IRcOPE_10,8 2598,v_JR9LosQmMvg,danger,how dangerous is the sport in the video,v_JR9LosQmMvg,v_JR9LosQmMvg_9,8 2599,v_K49OCArHjXI,security,how dangerous is the sport in the video,v_K49OCArHjXI,v_K49OCArHjXI_10,8 2600,v_JvPVYSb_5o8,much higher,how dangerous is the sport in the video,v_JvPVYSb_5o8,v_JvPVYSb_5o8_10,8 2601,v_SJ7jk5XAjng,bit safe,how dangerous is the activity in the video,v_SJ7jk5XAjng,v_SJ7jk5XAjng_10,8 2602,v_SPjv6P5fxug,much more dangerous,how dangerous is the activity of wrestling,v_SPjv6P5fxug,v_SPjv6P5fxug_10,8 2603,v_C7yd6yEkxXE,protect head,what is the role of wearing hat,v_C7yd6yEkxXE,v_C7yd6yEkxXE_8,8 2604,v_V-46E7jMm-Y,secondary,how safe is this activity of archery,v_V-46E7jMm-Y,v_V-46E7jMm-Y_10,8 2605,v_afMQA352X_A,secondary,how safe is this activity of boxing,v_afMQA352X_A,v_afMQA352X_A_8,8 2606,v_f2DS_AVorrY,secondary,how safe is this activity of diving,v_f2DS_AVorrY,v_f2DS_AVorrY_10,8 2607,v_d4sX1jnL4BY,secondary,how safe is this activity of diving,v_d4sX1jnL4BY,v_d4sX1jnL4BY_7,8 2608,v_FEOdYNR4gls,low,how safe is this activity of gymnastics,v_FEOdYNR4gls,v_FEOdYNR4gls_10,8 2609,v__SJOVswvGRc,security,how safe is this activity of playing football,v__SJOVswvGRc,v__SJOVswvGRc_8,8 2610,v_ut1AoOzqL4k,secondary,how safe is this activity of long jump,v_ut1AoOzqL4k,v_ut1AoOzqL4k_10,8 2611,v_vnZmsOgWs0o,secondary,how safe is this activity of skiing,v_vnZmsOgWs0o,v_vnZmsOgWs0o_7,8 2612,v_OcL7ZhBCkxQ,commonly,how safe is this game in the video,v_OcL7ZhBCkxQ,v_OcL7ZhBCkxQ_9,8 2613,v_OlR9S70AA74,commonly,how safe is this game in the video,v_OlR9S70AA74,v_OlR9S70AA74_7,8 2614,v_OFTkwnSh-sQ,secondary,how safe is this game in the video,v_OFTkwnSh-sQ,v_OFTkwnSh-sQ_8,8 2615,v_OUxgs_QlPHE,secondary,how safe is this game in the video,v_OUxgs_QlPHE,v_OUxgs_QlPHE_10,8 2616,v_cTxVTEzQDr8,danger,how safe is this activity of skateboarding,v_cTxVTEzQDr8,v_cTxVTEzQDr8_6,8 2617,v_9UvVeUYQLgA,danger,how safe is this game in the video,v_9UvVeUYQLgA,v_9UvVeUYQLgA_8,8 2618,v_FxpP7lqvm30,secondary,how safe is this game in the video,v_FxpP7lqvm30,v_FxpP7lqvm30_10,8 2619,v_390iVq_urQM,danger,how safe is this game in the video,v_390iVq_urQM,v_390iVq_urQM_8,8 2620,v_nhQTxZlzG1Q,security,how safe is this game in the video,v_nhQTxZlzG1Q,v_nhQTxZlzG1Q_9,8 2621,v_9G172wz5Yqo,danger,how safe is this game in the video,v_9G172wz5Yqo,v_9G172wz5Yqo_6,8 2622,v_9FQ-VLkCZo8,danger,how safe is this sport in the video,v_9FQ-VLkCZo8,v_9FQ-VLkCZo8_7,8 2623,v_xS4twW2gXqc,danger,how safe is this sport in the video,v_xS4twW2gXqc,v_xS4twW2gXqc_6,8 2624,v_26U3SkeZU6M,security,how safe is this sport in the video,v_26U3SkeZU6M,v_26U3SkeZU6M_8,8 2625,v_mSR-HpiJ0No,security,how safe is this sport in the video,v_mSR-HpiJ0No,v_mSR-HpiJ0No_9,8 2626,v_nGKc2t-NMYc,danger,how safe is this sport in the video,v_nGKc2t-NMYc,v_nGKc2t-NMYc_9,8 2627,v_mXqmRAUsn9U,danger,how safe is this sport in the video,v_mXqmRAUsn9U,v_mXqmRAUsn9U_7,8 2628,v_75Tc1nPmZFQ,security,how safe is this sport in the video,v_75Tc1nPmZFQ,v_75Tc1nPmZFQ_7,8 2629,v_xizEiQZfJa4,security,how safe is this sport in the video,v_xizEiQZfJa4,v_xizEiQZfJa4_8,8 2630,v_nkWMBJC2Qec,security,how safe is this sport in the video,v_nkWMBJC2Qec,v_nkWMBJC2Qec_9,8 2631,v_9k19UUJtldg,security,how safe is this sport in the video,v_9k19UUJtldg,v_9k19UUJtldg_7,8 2632,v_N5Dt3ycaun4,danger,how safe is this sport in the video,v_N5Dt3ycaun4,v_N5Dt3ycaun4_7,8 2633,v_54TIARWo-S8,danger,how safe is this sport in the video,v_54TIARWo-S8,v_54TIARWo-S8_7,8 2634,v_9MN6GNhvwzA,security,how safe is this sport in the video,v_9MN6GNhvwzA,v_9MN6GNhvwzA_9,8 2635,v_72_9wLYUDGM,secondary,how safe is this sport in the video,v_72_9wLYUDGM,v_72_9wLYUDGM_7,8 2636,v_MVA568rRjzQ,security,how safe is this sport in the video,v_MVA568rRjzQ,v_MVA568rRjzQ_8,8 2637,v_12Nafz_Yet4,secondary,how safe is this sport in the video,v_12Nafz_Yet4,v_12Nafz_Yet4_8,8 2638,v_xMNmGr96O9U,security,how safe is this sport in the video,v_xMNmGr96O9U,v_xMNmGr96O9U_7,8 2639,v_XCfrjEJkl3M,security,how safe is this sport in the video,v_XCfrjEJkl3M,v_XCfrjEJkl3M_7,8 2640,v_30hcRe-5_3M,secondary,how safe is this sport in the video,v_30hcRe-5_3M,v_30hcRe-5_3M_8,8 2641,v_9ZVWD0ZKXZg,danger,how safe is this sport in the video,v_9ZVWD0ZKXZg,v_9ZVWD0ZKXZg_10,8 2642,v_836UrVGw6GI,danger,how safe is this sport in the video,v_836UrVGw6GI,v_836UrVGw6GI_8,8 2643,v_mZYWfmsYQPA,security,how safe is this sport in the video,v_mZYWfmsYQPA,v_mZYWfmsYQPA_7,8 2644,v_NDq29HQJVP0,danger,how safe is this sport in the video,v_NDq29HQJVP0,v_NDq29HQJVP0_9,8 2645,v_98ukqD62X5s,security,how safe is this sport in the video,v_98ukqD62X5s,v_98ukqD62X5s_8,8 2646,v_nc_NMp3vAH0,security,how safe is this sport in the video,v_nc_NMp3vAH0,v_nc_NMp3vAH0_9,8 2647,v_mnNgZ-D5cKc,danger,how safe is this sport in the video,v_mnNgZ-D5cKc,v_mnNgZ-D5cKc_8,8 2648,v_16czjUF1AA4,danger,how safe is this sport in the video,v_16czjUF1AA4,v_16czjUF1AA4_9,8 2649,v_mvRoVXRGVGw,danger,how safe is this sport in the video,v_mvRoVXRGVGw,v_mvRoVXRGVGw_8,8 2650,v_XxW4XWySzOw,danger,how safe is this sport in the video,v_XxW4XWySzOw,v_XxW4XWySzOw_7,8 2651,v_NjD6iWI3NvM,security,how safe is this sport in the video,v_NjD6iWI3NvM,v_NjD6iWI3NvM_10,8 2652,v_87F9xGaMwCw,security,how safe is this sport in the video,v_87F9xGaMwCw,v_87F9xGaMwCw_7,8 2653,v_28LdZLfdmMQ,danger,how safe is this sport in the video,v_28LdZLfdmMQ,v_28LdZLfdmMQ_8,8 2654,v_9eniCub7u60,security,how safe is this sport in the video,v_9eniCub7u60,v_9eniCub7u60_6,8 2655,v_NJRrhNrEMsk,danger,how safe is this activity in the video,v_NJRrhNrEMsk,v_NJRrhNrEMsk_8,8 2656,v_N9VOdVOiPNM,danger,how safe is this activity in the video,v_N9VOdVOiPNM,v_N9VOdVOiPNM_8,8 2657,v_mVAP-WyEc7w,danger,how safe is this activity in the video,v_mVAP-WyEc7w,v_mVAP-WyEc7w_9,8 2658,v_6O4S2CpRB0A,secondary,how safe is this activity of tug-of-war,v_6O4S2CpRB0A,v_6O4S2CpRB0A_7,8 2659,v__zqj6daJo9U,secondary,how safe is this activity of weightlifting,v__zqj6daJo9U,v__zqj6daJo9U_8,8 2660,v_iuXjatyFcwo,secondary,how safe is this activity of weightlifting,v_iuXjatyFcwo,v_iuXjatyFcwo_10,8 2661,v_P6Oq6C9X0fw,winter,what is the season in the video,v_P6Oq6C9X0fw,v_P6Oq6C9X0fw_8,8 2662,v_jhy6npIdn5o,winter,what is the season in the video,v_jhy6npIdn5o,v_jhy6npIdn5o_9,8 2663,v_-pkfcMUIEMo,winter,what is the season in the video,v_-pkfcMUIEMo,v_-pkfcMUIEMo_7,8 2664,v_yCpdDJAW-jU,winter,what is the season in the video,v_yCpdDJAW-jU,v_yCpdDJAW-jU_10,8 2665,v_PdwWFueQErM,winter,what is the season in the video,v_PdwWFueQErM,v_PdwWFueQErM_7,8 2666,v_-pK2JheWido,winter,what is the season in the video,v_-pK2JheWido,v_-pK2JheWido_8,8 2667,v_BBKSKU6dGGk,winter,what is the season in the video,v_BBKSKU6dGGk,v_BBKSKU6dGGk_7,8 2668,v_yGTIEmZ7S2w,male,what is the gender of the person in the video,v_yGTIEmZ7S2w,v_yGTIEmZ7S2w_10,8 2669,v_mLFjww64sX8,male,what is the gender of the barber,v_mLFjww64sX8,v_mLFjww64sX8_9,8 2670,v_rrpEOrMpBuE,male,what is the gender of the person with a camel,v_rrpEOrMpBuE,v_rrpEOrMpBuE_8,8 2671,v_sqv3M6MPKjQ,male,what is the gender of the kid,v_sqv3M6MPKjQ,v_sqv3M6MPKjQ_9,8 2672,v_K1LiXUpoSmI,male,what is the gender of the kid,v_K1LiXUpoSmI,v_K1LiXUpoSmI_8,8 2673,v_kBTqTp0SKq8,female,what is the gender of the kid holding a stick,v_kBTqTp0SKq8,v_kBTqTp0SKq8_8,8 2674,v_k6pN0WRr2Ws,female,what is the gender of the coach,v_k6pN0WRr2Ws,v_k6pN0WRr2Ws_8,8 2675,v_LjPKKqe-VO0,male,what is the gender of the coach,v_LjPKKqe-VO0,v_LjPKKqe-VO0_8,8 2676,v_sRNqK_QZbMs,male,what is the gender of the coach,v_sRNqK_QZbMs,v_sRNqK_QZbMs_9,8 2677,v_sPK-sbHIb3w,male,what is the gender of the coach,v_sPK-sbHIb3w,v_sPK-sbHIb3w_9,8 2678,v_2CegApogJd4,male,what is the gender of the player,v_2CegApogJd4,v_2CegApogJd4_7,8 2679,v_b0qGo-HT5iQ,male,what is the gender of the doctor,v_b0qGo-HT5iQ,v_b0qGo-HT5iQ_9,8 2680,v_TGffgRXc1eQ,male,what is the gender of the host,v_TGffgRXc1eQ,v_TGffgRXc1eQ_8,8 2681,v_SYh-j9bK_ls,female,what is the gender of the cheerleader,v_SYh-j9bK_ls,v_SYh-j9bK_ls_9,8 2682,v_03c6QhTMDSs,female,what is the gender of the person in striped closthes,v_03c6QhTMDSs,v_03c6QhTMDSs_7,8 2683,v_sNTOUuE7ZfM,male,what is the gender of the person with a tie,v_sNTOUuE7ZfM,v_sNTOUuE7ZfM_9,8 2684,v_m731tx8N5-Y,male,what is the gender of the bald person,v_m731tx8N5-Y,v_m731tx8N5-Y_9,8 2685,v_jDlvGWOdcqU,male,what is the gender of the person in jeans,v_jDlvGWOdcqU,v_jDlvGWOdcqU_8,8 2686,v_LsVCwr6qPmY,male,what is the gender of the person in blue clothes,v_LsVCwr6qPmY,v_LsVCwr6qPmY_9,8 2687,v_LYTWYSqsTCE,male,what is the gender of the person in blue clothes,v_LYTWYSqsTCE,v_LYTWYSqsTCE_9,8 2688,v_-vY2uUmv6Dk,male,what is the gender of the person in red clothes,v_-vY2uUmv6Dk,v_-vY2uUmv6Dk_9,8 2689,v_T3A88zsRuVs,male,what is the gender of the person in red clothes,v_T3A88zsRuVs,v_T3A88zsRuVs_9,8 2690,v_m73Cod-PmMQ,female,what is the gender of the person in red clothes,v_m73Cod-PmMQ,v_m73Cod-PmMQ_9,8 2691,v_4j_LRkB4T6c,female,what is the gender of the person in red clothes,v_4j_LRkB4T6c,v_4j_LRkB4T6c_7,8 2692,v_r2H-cnti8GI,male,what is the gender of the person in a black and white coat,v_r2H-cnti8GI,v_r2H-cnti8GI_6,8 2693,v_QdmcjM2fluo,male,what is the gender of the person in a black and white coat,v_QdmcjM2fluo,v_QdmcjM2fluo_6,8 2694,v_QImpWj3AJcY,male,what is the gender of the person in a black and white coat,v_QImpWj3AJcY,v_QImpWj3AJcY_6,8 2695,v_N4qhryre_TE,female,what is the gender of the person in a black and white coat,v_N4qhryre_TE,v_N4qhryre_TE_6,8 2696,v_ZLJ2BmBkLJg,male,what is the gender of the person in a black and white coat,v_ZLJ2BmBkLJg,v_ZLJ2BmBkLJg_6,8 2697,v_zTHkqpNFGno,female,what is the gender of the person in a black and white coat,v_zTHkqpNFGno,v_zTHkqpNFGno_7,8 2698,v_eg2s5lOfKGI,female,what is the gender of the person in a black and white coat,v_eg2s5lOfKGI,v_eg2s5lOfKGI_7,8 2699,v_zO5JMTzLDHw,male,what is the gender of the person in a black and white coat,v_zO5JMTzLDHw,v_zO5JMTzLDHw_7,8 2700,v_SidTquTAtyk,male,what is the gender of the person in black clothes,v_SidTquTAtyk,v_SidTquTAtyk_9,8 2701,v_mek9Zodu8LM,female,what is the gender of the person in black clothes,v_mek9Zodu8LM,v_mek9Zodu8LM_9,8 2702,v_mUmSJps9WJI,male,what is the gender of the person in black clothes,v_mUmSJps9WJI,v_mUmSJps9WJI_6,8 2703,v_Ynvd8OuXKGw,female,what is the gender of the person in black clothes,v_Ynvd8OuXKGw,v_Ynvd8OuXKGw_9,8 2704,v_mV07bEBkIcM,female,what is the gender of the person in black clothes,v_mV07bEBkIcM,v_mV07bEBkIcM_6,8 2705,v_3PsxzgeMv5w,male,what is the gender of the person in black clothes,v_3PsxzgeMv5w,v_3PsxzgeMv5w_8,8 2706,v_4_jDgRsOGvY,male,what is the gender of the person in black clothes,v_4_jDgRsOGvY,v_4_jDgRsOGvY_6,8 2707,v_Son8UiVlzu0,male,what is the gender of the person in black clothes,v_Son8UiVlzu0,v_Son8UiVlzu0_9,8 2708,v_RLBfyIVpocE,male,what is the gender of the person in black clothes,v_RLBfyIVpocE,v_RLBfyIVpocE_8,8 2709,v_nhQTxZlzG1Q,female,what is the gender of the person in black clothes,v_nhQTxZlzG1Q,v_nhQTxZlzG1Q_7,8 2710,v_YVqRQDkdA8U,female,what is the gender of the person in black clothes,v_YVqRQDkdA8U,v_YVqRQDkdA8U_6,8 2711,v_wdvQC41PGPk,male,what is the gender of the person in black clothes,v_wdvQC41PGPk,v_wdvQC41PGPk_6,8 2712,v_W2Mh01F3K5c,male,what is the gender of the person in black clothes,v_W2Mh01F3K5c,v_W2Mh01F3K5c_7,8 2713,v_z8x3wUZYOaM,female,what is the gender of the person in black clothes,v_z8x3wUZYOaM,v_z8x3wUZYOaM_7,8 2714,v_X6CBZwwRdQQ,female,what is the gender of the person in black clothes,v_X6CBZwwRdQQ,v_X6CBZwwRdQQ_10,8 2715,v_0iqx7o5WYW8,female,what is the gender of the person in a black hat,v_0iqx7o5WYW8,v_0iqx7o5WYW8_7,8 2716,v_gWTndmDHZQc,male,what is the gender of the person in a black shirt,v_gWTndmDHZQc,v_gWTndmDHZQc_6,8 2717,v_1YU4MSK80cQ,female,what is the gender of the person in a black vest,v_1YU4MSK80cQ,v_1YU4MSK80cQ_9,8 2718,v_qWgF9hxNbP8,male,what is the gender of the person in a black vest,v_qWgF9hxNbP8,v_qWgF9hxNbP8_10,8 2719,v_ZgdMnfTqblw,male,what is the gender of the person in a black vest,v_ZgdMnfTqblw,v_ZgdMnfTqblw_6,8 2720,v_g9lNpSAtHgI,female,what is the gender of the person in a blue apron,v_g9lNpSAtHgI,v_g9lNpSAtHgI_6,8 2721,v_qiupddjDHDg,male,what is the gender of the person in a blue coat,v_qiupddjDHDg,v_qiupddjDHDg_10,8 2722,v_rCLGy2NA0aE,male,what is the gender of the person in a blue coat,v_rCLGy2NA0aE,v_rCLGy2NA0aE_6,8 2723,v_oGU7m7rCZ-Y,male,what is the gender of the person in a blue coat,v_oGU7m7rCZ-Y,v_oGU7m7rCZ-Y_10,8 2724,v_YvPoAOrjX5I,male,what is the gender of the person in a blue coat,v_YvPoAOrjX5I,v_YvPoAOrjX5I_10,8 2725,v_qiTQ02NDSlQ,female,what is the gender of the person in a blue coat,v_qiTQ02NDSlQ,v_qiTQ02NDSlQ_7,8 2726,v_XI7qJHE61zo,male,what is the gender of the person in blue clothes,v_XI7qJHE61zo,v_XI7qJHE61zo_6,8 2727,v_zxpQHLwZCug,male,what is the gender of the person in blue clothes,v_zxpQHLwZCug,v_zxpQHLwZCug_7,8 2728,v_MVA568rRjzQ,male,what is the gender of the person in blue clothes,v_MVA568rRjzQ,v_MVA568rRjzQ_7,8 2729,v_T62XjoKbN8M,male,what is the gender of the person in blue clothes,v_T62XjoKbN8M,v_T62XjoKbN8M_9,8 2730,v_yRQpolWhJ6A,female,what is the gender of the person in blue clothes,v_yRQpolWhJ6A,v_yRQpolWhJ6A_9,8 2731,v_lPw_BRbPw5s,male,what is the gender of the person in blue clothes,v_lPw_BRbPw5s,v_lPw_BRbPw5s_8,8 2732,v_G_rVqf_hwXw,female,what is the gender of the person in a dark blue coat,v_G_rVqf_hwXw,v_G_rVqf_hwXw_6,8 2733,v_brJIpRGcBFU,male,what is the gender of the person in gray clothes,v_brJIpRGcBFU,v_brJIpRGcBFU_9,8 2734,v_g1na24Bd5Rs,male,what is the gender of the person in gray clothes,v_g1na24Bd5Rs,v_g1na24Bd5Rs_7,8 2735,v_mkGUacg0GRc,male,what is the gender of the person in gray clothes,v_mkGUacg0GRc,v_mkGUacg0GRc_9,8 2736,v_1xtKGlUp4Vg,female,what is the gender of the person in gray clothes,v_1xtKGlUp4Vg,v_1xtKGlUp4Vg_9,8 2737,v_ZnKB0U96ZI4,male,what is the gender of the person in a gray tshirt,v_ZnKB0U96ZI4,v_ZnKB0U96ZI4_7,8 2738,v_pzTqZWPubk8,male,what is the gender of the person in a gray tshirt,v_pzTqZWPubk8,v_pzTqZWPubk8_6,8 2739,v_qZMcbBsQorE,female,what is the gender of the person in a gray vest,v_qZMcbBsQorE,v_qZMcbBsQorE_7,8 2740,v_GjcRJzPjbRI,male,what is the gender of the person in a gray vest,v_GjcRJzPjbRI,v_GjcRJzPjbRI_9,8 2741,v_zKYiTA6WBS4,female,what is the gender of the person in a green coat,v_zKYiTA6WBS4,v_zKYiTA6WBS4_6,8 2742,v_zPQodcasmSA,male,what is the gender of the person in a green coat,v_zPQodcasmSA,v_zPQodcasmSA_8,8 2743,v_ZJnXQw84xvo,female,what is the gender of the person in a green coat,v_ZJnXQw84xvo,v_ZJnXQw84xvo_6,8 2744,v_QX5e5Mla660,male,what is the gender of the person in a green coat,v_QX5e5Mla660,v_QX5e5Mla660_6,8 2745,v_mMm1LfVb8Pg,female,what is the gender of the person in green clothes,v_mMm1LfVb8Pg,v_mMm1LfVb8Pg_9,8 2746,v_meNgZdu8tIk,male,what is the gender of the person in green clothes,v_meNgZdu8tIk,v_meNgZdu8tIk_9,8 2747,v_OFTkwnSh-sQ,male,what is the gender of the person in green clothes,v_OFTkwnSh-sQ,v_OFTkwnSh-sQ_10,8 2748,v_gZB_XrTnDCI,male,what is the gender of the person in green clothes,v_gZB_XrTnDCI,v_gZB_XrTnDCI_7,8 2749,v_gNUCdXGxp0w,female,what is the gender of the person in a green vest,v_gNUCdXGxp0w,v_gNUCdXGxp0w_7,8 2750,v_Z-sWZUYL0ZU,male,what is the gender of the person in a gray coat,v_Z-sWZUYL0ZU,v_Z-sWZUYL0ZU_8,8 2751,v_SJ7jk5XAjng,male,what is the gender of the person in a hat,v_SJ7jk5XAjng,v_SJ7jk5XAjng_9,8 2752,v_1lwG-y_QCkc,male,what is the gender of the person in a hat,v_1lwG-y_QCkc,v_1lwG-y_QCkc_8,8 2753,v_4z0meF-_b1I,male,what is the gender of the person in a hat,v_4z0meF-_b1I,v_4z0meF-_b1I_9,8 2754,v_rnI9vGr5V1k,male,what is the gender of the person in plaid clothes,v_rnI9vGr5V1k,v_rnI9vGr5V1k_8,8 2755,v_rGOOlcdpfLg,female,what is the gender of the person in a plaid coat,v_rGOOlcdpfLg,v_rGOOlcdpfLg_8,8 2756,v_Q5HdVXF390c,male,what is the gender of the person in a plaid shirt,v_Q5HdVXF390c,v_Q5HdVXF390c_6,8 2757,v_qGLRri_c6n8,female,what is the gender of the person in a pink coat,v_qGLRri_c6n8,v_qGLRri_c6n8_6,8 2758,v_1IbkFHNA7fg,male,what is the gender of the person in a plaid shirt,v_1IbkFHNA7fg,v_1IbkFHNA7fg_8,8 2759,v_gOnp3DZxeKU,female,what is the gender of the person in purple clothes,v_gOnp3DZxeKU,v_gOnp3DZxeKU_6,8 2760,v_OccEAILrU7M,male,what is the gender of the person in purple clothes,v_OccEAILrU7M,v_OccEAILrU7M_10,8 2761,v_nGKc2t-NMYc,female,what is the gender of the person in purple clothes,v_nGKc2t-NMYc,v_nGKc2t-NMYc_6,8 2762,v_Z-zG845frso,female,what is the gender of the person in a red coat,v_Z-zG845frso,v_Z-zG845frso_6,8 2763,v_zpaS2iYrJjk,female,what is the gender of the person in a red coat,v_zpaS2iYrJjk,v_zpaS2iYrJjk_6,8 2764,v_qKp2QCheLwU,male,what is the gender of the person in a red hat,v_qKp2QCheLwU,v_qKp2QCheLwU_6,8 2765,v_gkwLhml3mnA,female,what is the gender of the person in a white tshirt,v_gkwLhml3mnA,v_gkwLhml3mnA_7,8 2766,v_pYaZLHpl_Ww,female,what is the gender of the person in a striped shirt,v_pYaZLHpl_Ww,v_pYaZLHpl_Ww_6,8 2767,v_ZxCdhz4ep0s,male,what is the gender of the person in a striped shirt,v_ZxCdhz4ep0s,v_ZxCdhz4ep0s_6,8 2768,v_lUil9HfTzJ0,female,what is the gender of the person in a colorful swimsuit,v_lUil9HfTzJ0,v_lUil9HfTzJ0_9,8 2769,v_SPjv6P5fxug,female,what is the gender of the person in a colorful swimsuit,v_SPjv6P5fxug,v_SPjv6P5fxug_9,8 2770,v_qZtdMXkHRXw,male,what is the gender of the person in a white coat,v_qZtdMXkHRXw,v_qZtdMXkHRXw_6,8 2771,v_NZskwwovSZI,female,what is the gender of the person in white clothes,v_NZskwwovSZI,v_NZskwwovSZI_10,8 2772,v_XCfrjEJkl3M,male,what is the gender of the person in white clothes,v_XCfrjEJkl3M,v_XCfrjEJkl3M_8,8 2773,v_gsQ-OEvrxjo,female,what is the gender of the person in white clothes,v_gsQ-OEvrxjo,v_gsQ-OEvrxjo_6,8 2774,v_nc_NMp3vAH0,male,what is the gender of the person in white clothes,v_nc_NMp3vAH0,v_nc_NMp3vAH0_10,8 2775,v_YMOYyt3kSOs,female,what is the gender of the person in white clothes,v_YMOYyt3kSOs,v_YMOYyt3kSOs_10,8 2776,v_ghHZ9M-jx0w,female,what is the gender of the person in white clothes,v_ghHZ9M-jx0w,v_ghHZ9M-jx0w_7,8 2777,v_SGAUpoTMSnA,male,what is the gender of the person in white clothes,v_SGAUpoTMSnA,v_SGAUpoTMSnA_9,8 2778,v_N5Dt3ycaun4,male,what is the gender of the person in white clothes,v_N5Dt3ycaun4,v_N5Dt3ycaun4_10,8 2779,v_1494UwmvAJM,male,what is the gender of the person in white clothes,v_1494UwmvAJM,v_1494UwmvAJM_10,8 2780,v_xizEiQZfJa4,male,what is the gender of the person in white clothes,v_xizEiQZfJa4,v_xizEiQZfJa4_10,8 2781,v_836UrVGw6GI,male,what is the gender of the person in white clothes,v_836UrVGw6GI,v_836UrVGw6GI_10,8 2782,v_2UhbDOd43zU,male,what is the gender of the person in white clothes,v_2UhbDOd43zU,v_2UhbDOd43zU_7,8 2783,v_NDq29HQJVP0,male,what is the gender of the person in white clothes,v_NDq29HQJVP0,v_NDq29HQJVP0_7,8 2784,v_X52XHYKeLiE,female,what is the gender of the person in white clothes,v_X52XHYKeLiE,v_X52XHYKeLiE_8,8 2785,v_0jdSl5-lMpY,male,what is the gender of the person in white clothes,v_0jdSl5-lMpY,v_0jdSl5-lMpY_8,8 2786,v_mnNgZ-D5cKc,male,what is the gender of the person in white clothes,v_mnNgZ-D5cKc,v_mnNgZ-D5cKc_9,8 2787,v_lUmjnFf7IPQ,male,what is the gender of the person in white clothes,v_lUmjnFf7IPQ,v_lUmjnFf7IPQ_9,8 2788,v_RgiVa9GMYxE,male,what is the gender of the person in white clothes,v_RgiVa9GMYxE,v_RgiVa9GMYxE_8,8 2789,v_G25py7yEVyo,female,what is the gender of the person in white clothes,v_G25py7yEVyo,v_G25py7yEVyo_6,8 2790,v_Es3PxD9oi4I,male,what is the gender of the person with a white hat,v_Es3PxD9oi4I,v_Es3PxD9oi4I_9,8 2791,v_ZlVydB9uUe4,male,what is the gender of the person in a white shirt,v_ZlVydB9uUe4,v_ZlVydB9uUe4_6,8 2792,v_QJ5xv6oj1sk,male,what is the gender of the person in a white shirt,v_QJ5xv6oj1sk,v_QJ5xv6oj1sk_6,8 2793,v_zqxzFxya6T8,male,what is the gender of the person in a white shirt,v_zqxzFxya6T8,v_zqxzFxya6T8_7,8 2794,v_ZBP_mLWROZU,female,what is the gender of the person in a white suit,v_ZBP_mLWROZU,v_ZBP_mLWROZU_7,8 2795,v_qSP3_C7QWpU,male,what is the gender of the person in a white vest,v_qSP3_C7QWpU,v_qSP3_C7QWpU_6,8 2796,v_1PNjVTM0Zto,female,what is the gender of the person in yellow clothes,v_1PNjVTM0Zto,v_1PNjVTM0Zto_9,8 2797,v_gr53ih2aFkE,female,what is the gender of the person in yellow clothes,v_gr53ih2aFkE,v_gr53ih2aFkE_7,8 2798,v_zYjLA99koBk,female,what is the gender of the person in yellow clothes,v_zYjLA99koBk,v_zYjLA99koBk_8,8 2799,v_WXH-Tj0-g4w,female,what is the gender of the person in orange clothes,v_WXH-Tj0-g4w,v_WXH-Tj0-g4w_6,8 2800,v_RlRrktN5iH4,female,what is the gender of the person in black pants,v_RlRrktN5iH4,v_RlRrktN5iH4_8,8 2801,v_QXN6odBnVmI,male,what is the gender of the person in a black tshirt,v_QXN6odBnVmI,v_QXN6odBnVmI_10,8 2802,v_Znb6Y9m_PsQ,female,what is the gender of the person in a black tshirt,v_Znb6Y9m_PsQ,v_Znb6Y9m_PsQ_6,8 2803,v_ufrTSC3Dewg,male,what is the gender of the person in green clothes,v_ufrTSC3Dewg,v_ufrTSC3Dewg_8,8 2804,v_uLsq6gQXQPM,male,what is the gender of the person in green clothes,v_uLsq6gQXQPM,v_uLsq6gQXQPM_7,8 2805,v_i6wR9_tkg6A,male,what is the gender of the person in green clothes,v_i6wR9_tkg6A,v_i6wR9_tkg6A_7,8 2806,v_2vrR_5u2buU,male,what is the gender of the person in green pants,v_2vrR_5u2buU,v_2vrR_5u2buU_8,8 2807,v_mixxaL3Bdv8,male,what is the gender of the person in orange clothes,v_mixxaL3Bdv8,v_mixxaL3Bdv8_9,8 2808,v_mSR-HpiJ0No,female,what is the gender of the person in red clothes,v_mSR-HpiJ0No,v_mSR-HpiJ0No_6,8 2809,v_x6pYeqq3O08,female,what is the gender of the person in red clothes,v_x6pYeqq3O08,v_x6pYeqq3O08_6,8 2810,v_i8hNrK3r_MY,male,what is the gender of the person in red clothes,v_i8hNrK3r_MY,v_i8hNrK3r_MY_6,8 2811,v_Co_cpZWbzFk,male,what is the gender of the person in red clothes,v_Co_cpZWbzFk,v_Co_cpZWbzFk_9,8 2812,v_H0dG_1Vgw4Q,male,what is the gender of the person in a blue tshirt,v_H0dG_1Vgw4Q,v_H0dG_1Vgw4Q_7,8 2813,v_qgUHRwC3194,male,what is the gender of the person in a white tshirt,v_qgUHRwC3194,v_qgUHRwC3194_6,8 2814,v_ZLG1Exv8HrY,male,what is the gender of the person in a white tshirt,v_ZLG1Exv8HrY,v_ZLG1Exv8HrY_6,8 2815,v_P8S8PIyPXxY,female,what is the gender of the person in yellow pants,v_P8S8PIyPXxY,v_P8S8PIyPXxY_10,8 2816,v_JbW8efAOOt0,male,what is the gender of the person in a hat,v_JbW8efAOOt0,v_JbW8efAOOt0_8,8 2817,v_IYLJU87AkOg,male,what is the gender of the person in a hat,v_IYLJU87AkOg,v_IYLJU87AkOg_7,8 2818,v_2bQx5igckJc,female,what is the gender of the person with blond hair,v_2bQx5igckJc,v_2bQx5igckJc_7,8 2819,v_45hcc_VI4t4,female,what is the gender of the person with blond hair,v_45hcc_VI4t4,v_45hcc_VI4t4_9,8 2820,v_6LsvBNqJuJY,male,what is the gender of the tattooist,v_6LsvBNqJuJY,v_6LsvBNqJuJY_9,8 2821,v__jIXs7AFTxw,male,what is the gender of the person in white,v__jIXs7AFTxw,v__jIXs7AFTxw_8,8 2822,v_H_IfIsKQ3Zw,male,what is the gender of all the people in the video,v_H_IfIsKQ3Zw,v_H_IfIsKQ3Zw_7,8 2823,v_i5qTK0mInTc,female,what is the gender of all the people in the video,v_i5qTK0mInTc,v_i5qTK0mInTc_7,8 2824,v_4LoAbHdHWqM,male,what is the gender of the person in the video,v_4LoAbHdHWqM,v_4LoAbHdHWqM_6,8 2825,v_1QIUV7WYKXg,male,what is the gender of the athlete,v_1QIUV7WYKXg,v_1QIUV7WYKXg_8,8 2826,v_tzP0lKSUv_o,male,what is the gender of the athlete,v_tzP0lKSUv_o,v_tzP0lKSUv_o_8,8 2827,v_rMj2JWNJzkw,male,what is the gender of the athlete,v_rMj2JWNJzkw,v_rMj2JWNJzkw_8,8 2828,v_M2Y2Cw2kwDo,male,what is the gender of the athlete,v_M2Y2Cw2kwDo,v_M2Y2Cw2kwDo_9,8 2829,v_s6fEIuHPJ4Y,male,what is the gender of the athlete,v_s6fEIuHPJ4Y,v_s6fEIuHPJ4Y_8,8 2830,v_Jix3poZOeZA,male,what is the gender of the athlete,v_Jix3poZOeZA,v_Jix3poZOeZA_8,8 2831,v_svNcNLEPKMc,female,what is the gender of the athlete,v_svNcNLEPKMc,v_svNcNLEPKMc_9,8 2832,v_snhPrCNubYA,male,what is the gender of the athlete,v_snhPrCNubYA,v_snhPrCNubYA_9,8 2833,v_St1RRi-aeNM,female,what is the gender of the athlete,v_St1RRi-aeNM,v_St1RRi-aeNM_9,8 2834,v_JvPVYSb_5o8,male,what is the gender of the athlete,v_JvPVYSb_5o8,v_JvPVYSb_5o8_8,8 2835,v_jEOtcfk220s,female,what is the gender of the athlete in the video,v_jEOtcfk220s,v_jEOtcfk220s_8,8 2836,v_4LpqPUWHH5k,female,what is the gender of the athlete in the video,v_4LpqPUWHH5k,v_4LpqPUWHH5k_6,8 2837,v_5dN-MpXG9OE,female,what is the gender of the athlete in the video,v_5dN-MpXG9OE,v_5dN-MpXG9OE_8,8 2838,v_jibbgUBuuSA,male,what is the gender of the athlete in the video,v_jibbgUBuuSA,v_jibbgUBuuSA_8,8 2839,v_2-AMrzL7V-U,male,what is the gender of the athlete in the video,v_2-AMrzL7V-U,v_2-AMrzL7V-U_8,8 2840,v_rsU73H6VyG8,male,what is the gender of the athlete holding a pole,v_rsU73H6VyG8,v_rsU73H6VyG8_8,8 2841,v_vHnZ3NrZER0,female,what is the gender of the person in black clothes,v_vHnZ3NrZER0,v_vHnZ3NrZER0_7,8 2842,v_VJh9W3Gcpmo,male,what is the gender of the person in red clothes,v_VJh9W3Gcpmo,v_VJh9W3Gcpmo_7,8 2843,v_Vhn4SuPhu-0,male,what is the gender of the person in white clothes,v_Vhn4SuPhu-0,v_Vhn4SuPhu-0_7,8 2844,v_Zt9qvbUnNhc,male,what is the gender of the person in red shorts,v_Zt9qvbUnNhc,v_Zt9qvbUnNhc_6,8 2845,v_lOZ9bfzq89o,female,what is the gender of the athlete in green clothes,v_lOZ9bfzq89o,v_lOZ9bfzq89o_9,8 2846,v_JcAAwYpJhm8,female,what is the gender of the kid,v_JcAAwYpJhm8,v_JcAAwYpJhm8_8,8 2847,v_MAYrBia9Xnw,male,what is the gender of the kid,v_MAYrBia9Xnw,v_MAYrBia9Xnw_9,8 2848,v_teffBaLEZQg,male,what is the gender of the dancer in the video,v_teffBaLEZQg,v_teffBaLEZQg_7,8 2849,v_JGPhQX97OSE,male,what is the gender of the drummer,v_JGPhQX97OSE,v_JGPhQX97OSE_8,8 2850,v_wh6P2C2avqc,female,what is the gender of the person,v_wh6P2C2avqc,v_wh6P2C2avqc_7,8 2851,v_VvsYrfEvvUw,male,what is the gender of the person,v_VvsYrfEvvUw,v_VvsYrfEvvUw_8,8 2852,v_StGxFfLiYNU,male,what is the gender of the first person,v_StGxFfLiYNU,v_StGxFfLiYNU_9,8 2853,v_jbCQY7V7O1s,female,what is the gender of the first person,v_jbCQY7V7O1s,v_jbCQY7V7O1s_8,8 2854,v_3oy4P1gyU4k,male,what is the gender of the first person in the video,v_3oy4P1gyU4k,v_3oy4P1gyU4k_6,8 2855,v_jt-Vnap5KP4,male,what is the gender of the old person in the video,v_jt-Vnap5KP4,v_jt-Vnap5KP4_6,8 2856,v_1vTHJMMPZN0,male,what is the gender of the owner of the dog,v_1vTHJMMPZN0,v_1vTHJMMPZN0_8,8 2857,v__kmjpSZb3OI,male,what is the gender of the person in black,v__kmjpSZb3OI,v__kmjpSZb3OI_8,8 2858,v_0e5zwJywyqk,male,what is the gender of the person in gray clothes,v_0e5zwJywyqk,v_0e5zwJywyqk_7,8 2859,v_MDsJa6Yitwc,male,what is the gender of the person in gray clothes,v_MDsJa6Yitwc,v_MDsJa6Yitwc_9,8 2860,v_hGPCJb2g1tQ,male,what is the gender of the person in gray clothes,v_hGPCJb2g1tQ,v_hGPCJb2g1tQ_8,8 2861,v_1dDAcUliXrQ,female,what is the gender of the person in the video,v_1dDAcUliXrQ,v_1dDAcUliXrQ_9,8 2862,v_R-hsYQNtnn0,male,what is the gender of the person playing the game,v_R-hsYQNtnn0,v_R-hsYQNtnn0_8,8 2863,v_k3WPc9HmtLM,female,what is the gender of the sitting person at the beginning,v_k3WPc9HmtLM,v_k3WPc9HmtLM_8,8 2864,v_3nSOFmmA7FU,female,what is the gender of the person playing the hula hoop,v_3nSOFmmA7FU,v_3nSOFmmA7FU_8,8 2865,v_nkWMBJC2Qec,female,what is the gender of the person in black,v_nkWMBJC2Qec,v_nkWMBJC2Qec_6,8 2866,v_mXqmRAUsn9U,male,what is the gender of the person in blue,v_mXqmRAUsn9U,v_mXqmRAUsn9U_10,8 2867,v_-YwrMtiqHKg,female,what is the gender of the person in the video,v_-YwrMtiqHKg,v_-YwrMtiqHKg_9,8 2868,v_uw9x69DT8_g,male,what is the gender of the person in the video,v_uw9x69DT8_g,v_uw9x69DT8_g_9,8 2869,v_Of2Umm79Kxg,male,what is the gender of the person in the video,v_Of2Umm79Kxg,v_Of2Umm79Kxg_10,8 2870,v_PJ7HOHdOdy4,male,what is the gender of the person in the video,v_PJ7HOHdOdy4,v_PJ7HOHdOdy4_8,8 2871,v_yUvSujxnFE0,male,what is the gender of the person in the video,v_yUvSujxnFE0,v_yUvSujxnFE0_10,8 2872,v_K5jY2chByPw,female,what is the gender of the person in the video,v_K5jY2chByPw,v_K5jY2chByPw_8,8 2873,v_sH_716hH_rY,female,what is the gender of the person in the video,v_sH_716hH_rY,v_sH_716hH_rY_9,8 2874,v_nDM4E9CD_y0,female,what is the gender of the person in the video,v_nDM4E9CD_y0,v_nDM4E9CD_y0_8,8 2875,v_Z2gpcqXWNek,female,what is the gender of the person in the video,v_Z2gpcqXWNek,v_Z2gpcqXWNek_10,8 2876,v_uLphvdhunTY,female,what is the gender of the person in the video,v_uLphvdhunTY,v_uLphvdhunTY_7,8 2877,v_U2cCOj3LiAA,male,what is the gender of the person in the video,v_U2cCOj3LiAA,v_U2cCOj3LiAA_7,8 2878,v_z6pmp8TrAVo,male,what is the gender of the person in the video,v_z6pmp8TrAVo,v_z6pmp8TrAVo_10,8 2879,v_Ar6TcWqwK-A,female,what is the gender of the person in the video,v_Ar6TcWqwK-A,v_Ar6TcWqwK-A_9,8 2880,v_uJ4OZfCjViM,male,what is the gender of the person in the video,v_uJ4OZfCjViM,v_uJ4OZfCjViM_7,8 2881,v_0q9yZPTBbus,female,what is the gender of the person in the video,v_0q9yZPTBbus,v_0q9yZPTBbus_8,8 2882,v_4MwnHtlaEUY,male,what is the gender of the person in the video,v_4MwnHtlaEUY,v_4MwnHtlaEUY_8,8 2883,v_6JZVpl2S2Mg,female,what is the gender of the person in the video,v_6JZVpl2S2Mg,v_6JZVpl2S2Mg_9,8 2884,v_0xBP-TSsqb0,male,what is the gender of the person in the video,v_0xBP-TSsqb0,v_0xBP-TSsqb0_8,8 2885,v_T0nCDJuikuA,female,what is the gender of the person in the video,v_T0nCDJuikuA,v_T0nCDJuikuA_9,8 2886,v_HPKHDze6XfA,male,what is the gender of the person in the video,v_HPKHDze6XfA,v_HPKHDze6XfA_8,8 2887,v_uM7QSskmloo,male,what is the gender of the person in the video,v_uM7QSskmloo,v_uM7QSskmloo_8,8 2888,v_T3mcQnlsmq4,female,what is the gender of the person in the video,v_T3mcQnlsmq4,v_T3mcQnlsmq4_9,8 2889,v_TnP6coXzbLY,male,what is the gender of the person in the video,v_TnP6coXzbLY,v_TnP6coXzbLY_7,8 2890,v_tgPD2SZo_DY,female,what is the gender of the person in the video,v_tgPD2SZo_DY,v_tgPD2SZo_DY_7,8 2891,v_04qggWACGWk,female,what is the gender of the person in the video,v_04qggWACGWk,v_04qggWACGWk_6,8 2892,v_ngMxE3CnGVg,female,what is the gender of the person in the video,v_ngMxE3CnGVg,v_ngMxE3CnGVg_7,8 2893,v_lU6DMCif3eE,male,what is the gender of the person in the video,v_lU6DMCif3eE,v_lU6DMCif3eE_8,8 2894,v_udSHsodv3gY,female,what is the gender of the person in the video,v_udSHsodv3gY,v_udSHsodv3gY_9,8 2895,v_Uae2MWoldTU,male,what is the gender of the person in the video,v_Uae2MWoldTU,v_Uae2MWoldTU_7,8 2896,v_v0azz4XzW_s,male,what is the gender of the person in the video,v_v0azz4XzW_s,v_v0azz4XzW_s_8,8 2897,v_hxErUs42bBI,male,what is the gender of the person in the video,v_hxErUs42bBI,v_hxErUs42bBI_8,8 2898,v_HTYzbAFUghU,male,what is the gender of the person in the video,v_HTYzbAFUghU,v_HTYzbAFUghU_7,8 2899,v_diY-XBT5cD4,male,what is the gender of the person in the video,v_diY-XBT5cD4,v_diY-XBT5cD4_8,8 2900,v_H9PaZiWLgXU,male,what is the gender of the person in yellow,v_H9PaZiWLgXU,v_H9PaZiWLgXU_8,8 2901,v_H_JLBvfP88U,male,what is the gender of the person in yellow,v_H_JLBvfP88U,v_H_JLBvfP88U_7,8 2902,v_hIYN8cC3pEA,male,what is the gender of the jumping person,v_hIYN8cC3pEA,v_hIYN8cC3pEA_8,8 2903,v_HDt5z5Y0opo,male,what is the gender of the person performing on the stage,v_HDt5z5Y0opo,v_HDt5z5Y0opo_9,8 2904,v_4LF0hL-mgks,female,what is the gender of the person at the beginning of the video,v_4LF0hL-mgks,v_4LF0hL-mgks_6,8 2905,v_hQqoh0YxJYs,male,what is the gender of the person in yellow,v_hQqoh0YxJYs,v_hQqoh0YxJYs_7,8 2906,v_QIUxLD27NuI,male,what is the gender of the person in yellow,v_QIUxLD27NuI,v_QIUxLD27NuI_7,8 2907,v_mxn6WcmdNpA,female,what is the gender of the person in yellow,v_mxn6WcmdNpA,v_mxn6WcmdNpA_10,8 2908,v_Nc9yr4urskA,male,what is the gender of the person in yellow,v_Nc9yr4urskA,v_Nc9yr4urskA_9,8 2909,v_98ukqD62X5s,male,what is the gender of the person in yellow,v_98ukqD62X5s,v_98ukqD62X5s_10,8 2910,v_HQVSLlKhupk,male,what is the gender of the person playing football,v_HQVSLlKhupk,v_HQVSLlKhupk_7,8 2911,v_SjlILJ2st-I,male,what is the gender of the referee,v_SjlILJ2st-I,v_SjlILJ2st-I_9,8 2912,v_LWt2FuU0uC4,male,what is the gender of the referee,v_LWt2FuU0uC4,v_LWt2FuU0uC4_9,8 2913,v_LzPppxSWYNY,male,what is the gender of the referee,v_LzPppxSWYNY,v_LzPppxSWYNY_9,8 2914,v_RtF6TGqwa7Y,female,what is the gender of the sitting person,v_RtF6TGqwa7Y,v_RtF6TGqwa7Y_8,8 2915,v_rSGboODhu04,female,what is the gender of the standing person,v_rSGboODhu04,v_rSGboODhu04_8,8 2916,v_RXDVJlb97OI,female,what is the gender of the standing person,v_RXDVJlb97OI,v_RXDVJlb97OI_8,8 2917,v_kD_EJjQCLoY,male,what is the gender of the standing person,v_kD_EJjQCLoY,v_kD_EJjQCLoY_8,8 2918,v_JY9oOSfjj_E,male,what is the gender of the standing person,v_JY9oOSfjj_E,v_JY9oOSfjj_E_8,8 2919,v_uktUeF3Fy7o,female,what is the gender of the surfer in the video,v_uktUeF3Fy7o,v_uktUeF3Fy7o_8,8 2920,v_TtewPltwuXw,male,what is the gender of the two person in the video,v_TtewPltwuXw,v_TtewPltwuXw_7,8 2921,v_w10Nr_wOh8g,male,what is the gender of the person putting up wallpapers,v_w10Nr_wOh8g,v_w10Nr_wOh8g_10,8 2922,v_bYNQ0GrCt64,male,what is the gender of the weightlifter ,v_bYNQ0GrCt64,v_bYNQ0GrCt64_7,8 2923,v_tRFK1BMKaRo,female,what is the gender of the weightlifter ,v_tRFK1BMKaRo,v_tRFK1BMKaRo_8,8 2924,v_YvPoAOrjX5I,circular,what is the shape of the tennis ball in the video,v_YvPoAOrjX5I,v_YvPoAOrjX5I_9,8 2925,v__SJOVswvGRc,circular,what is the shape of the ball in the video,v__SJOVswvGRc,v__SJOVswvGRc_7,8 2926,v_yUvSujxnFE0,circular,what is the shape of the ball in the video,v_yUvSujxnFE0,v_yUvSujxnFE0_9,5 2927,v_ojTFTIwsa_c,cylinder,what is the shape of the barrel in the video,v_ojTFTIwsa_c,v_ojTFTIwsa_c_10,5 2928,v_Woelo4XJkHE,circular,what is the shape of the cup ,v_Woelo4XJkHE,v_Woelo4XJkHE_10,8 2929,v_nc_NMp3vAH0,circular,what is the shape of the curling ,v_nc_NMp3vAH0,v_nc_NMp3vAH0_8,5 2930,v_vzUeFzhVYLg,trapezoid,what is the shape of the platform ,v_vzUeFzhVYLg,v_vzUeFzhVYLg_9,5 2931,v_woI_zP55qWo,square,what is the shape of the platform ,v_woI_zP55qWo,v_woI_zP55qWo_9,8 2932,v_OUxgs_QlPHE,rectangle,what is the shape of the diving board ,v_OUxgs_QlPHE,v_OUxgs_QlPHE_7,8 2933,v_1494UwmvAJM,circular,what is the shape of the table,v_1494UwmvAJM,v_1494UwmvAJM_7,8 2934,v_n9EdHGz7ArI,square,what is the shape of the table,v_n9EdHGz7ArI,v_n9EdHGz7ArI_7,8 2935,v_VZ5R9goklpo,square,what is the shape of the table,v_VZ5R9goklpo,v_VZ5R9goklpo_9,8 2936,v_chmegNbBTNc,rectangle,what is the shape of the table,v_chmegNbBTNc,v_chmegNbBTNc_7,8 2937,v_Ye_uVlSo1HI,rectangle,what is the shape of the table in the video,v_Ye_uVlSo1HI,v_Ye_uVlSo1HI_6,8 2938,v_Z6b4oFjIznU,rectangle,what is the shape of the sponge cushion in the video,v_Z6b4oFjIznU,v_Z6b4oFjIznU_9,8 2939,v_AjizhJc_reI,t shirt,what kind of hat does the person in red wear,v_AjizhJc_reI,v_AjizhJc_reI_10,5 2940,v_-CqVpCRxwTY,long,what is the hairstyle of the woman in the video,v_-CqVpCRxwTY,v_-CqVpCRxwTY_9,8 2941,v_3dWw9GLcOeA,snow,what is the top of the roof,v_3dWw9GLcOeA,v_3dWw9GLcOeA_4,1 2942,v_qiupddjDHDg,roof,what is the under the person in a blue coat,v_qiupddjDHDg,v_qiupddjDHDg_4,1 2943,v_QXN6odBnVmI,chair,what is the under the person in a white shirt,v_QXN6odBnVmI,v_QXN6odBnVmI_4,1 2944,v_QJ5xv6oj1sk,grassland,what is the under the person in a white shirt,v_QJ5xv6oj1sk,v_QJ5xv6oj1sk_4,1 2945,v_SidTquTAtyk,grassland,what is the under the person in black clothes,v_SidTquTAtyk,v_SidTquTAtyk_4,1 2946,v_aGvpDyMNATI,runway,what is the under the person in black clothes,v_aGvpDyMNATI,v_aGvpDyMNATI_4,1 2947,v_aH39BSM0-Ag,chair,what is the under the person in gray clothes,v_aH39BSM0-Ag,v_aH39BSM0-Ag_4,1 2948,v_75Tc1nPmZFQ,sand,what is the under the person in red clothes,v_75Tc1nPmZFQ,v_75Tc1nPmZFQ_4,1 2949,v_m73Cod-PmMQ,chair,what is the under the person in red clothes,v_m73Cod-PmMQ,v_m73Cod-PmMQ_4,1 2950,v_4uKoAk5NCkI,pads,what is the under the person in the video,v_4uKoAk5NCkI,v_4uKoAk5NCkI_4,1 2951,v_5dN-MpXG9OE,balance beam,what is the under the athlete in the video,v_5dN-MpXG9OE,v_5dN-MpXG9OE_4,1 2952,v_hGPCJb2g1tQ,introduction equipment,what happed in the video,v_hGPCJb2g1tQ,v_hGPCJb2g1tQ_1,0 2953,v_DHjoAOus3xM,clear,what is the weather in the video,v_DHjoAOus3xM,v_DHjoAOus3xM_9,8 2954,v_mkGUacg0GRc,sunny,what is the weather in the video,v_mkGUacg0GRc,v_mkGUacg0GRc_6,8 2955,v_mMm1LfVb8Pg,sunny,what is the weather in the video,v_mMm1LfVb8Pg,v_mMm1LfVb8Pg_10,8 2956,v_4YF9R3Sz2bA,sunny,what is the weather in the video,v_4YF9R3Sz2bA,v_4YF9R3Sz2bA_9,8 2957,v_uWfQcDvel84,sunny,what is the weather in the video,v_uWfQcDvel84,v_uWfQcDvel84_10,8 2958,v_6G8m-vsGTA8,sunny,what is the weather in the video,v_6G8m-vsGTA8,v_6G8m-vsGTA8_9,8 2959,v_EDDbcCBnTQM,sunny,what is the weather in the video,v_EDDbcCBnTQM,v_EDDbcCBnTQM_10,8 2960,v_stdtUoog49I,sunny,what is the weather in the video,v_stdtUoog49I,v_stdtUoog49I_10,8 2961,v_m73Cod-PmMQ,snow,what is the weather in the video,v_m73Cod-PmMQ,v_m73Cod-PmMQ_7,8 2962,v_6H0D8VaIli0,sunny,what is the weather in the video,v_6H0D8VaIli0,v_6H0D8VaIli0_9,8 2963,v_GjcRJzPjbRI,sunny,what is the weather like in the video,v_GjcRJzPjbRI,v_GjcRJzPjbRI_8,8 2964,v_Erje-PwY9hE,sunny,what is the weather like in the video,v_Erje-PwY9hE,v_Erje-PwY9hE_6,8 2965,v_fe4r2-Y8k1U,sunny,what is the weather outdoors,v_fe4r2-Y8k1U,v_fe4r2-Y8k1U_10,8 2966,v_DIVaPURJHPo,rope skipping,what is the woman in a white coat doing,v_DIVaPURJHPo,v_DIVaPURJHPo_1,0 2967,v_VFC-V06hVj0,ride camel,what is the woman in a hat doing,v_VFC-V06hVj0,v_VFC-V06hVj0_1,0 2968,v_xuvp0jKMqRU,preside over program,what is the woman in red clothes doing,v_xuvp0jKMqRU,v_xuvp0jKMqRU_1,0 2969,v_FFMugev85IY,hand drums,what is the woman in a red coat doing,v_FFMugev85IY,v_FFMugev85IY_1,0 2970,v_Db9VWkgMpbE,fitness equipment,what's in front of the woman in the video,v_Db9VWkgMpbE,v_Db9VWkgMpbE_4,1 2971,v_8AUTKSqcmiM,archery,what is the woman with a white hat doing,v_8AUTKSqcmiM,v_8AUTKSqcmiM_1,0 2972,v_nbHBjdE8oNo,relatives,what is the relationship of the people in the video,v_nbHBjdE8oNo,v_nbHBjdE8oNo_8,8 2973,v_li_mry59KCM,in repair,what is this person doing,v_li_mry59KCM,v_li_mry59KCM_1,0 2974,v_laU1Hvm5Dis,practice ball,what is this person doing,v_laU1Hvm5Dis,v_laU1Hvm5Dis_1,0 2975,v_lfbspF18Wrw,make biscuits,what is this person doing,v_lfbspF18Wrw,v_lfbspF18Wrw_1,0 2976,v_6JZVpl2S2Mg,how to wear contact lenses,what is this video about,v_6JZVpl2S2Mg,v_6JZVpl2S2Mg_10,8 2977,v_rnI9vGr5V1k,introduction of cutting tools,what is this video about,v_rnI9vGr5V1k,v_rnI9vGr5V1k_10,8 2978,v_kD_EJjQCLoY,how to set up cars,what is this video about,v_kD_EJjQCLoY,v_kD_EJjQCLoY_10,8 2979,v_3oy4P1gyU4k,billiard game,what is this video about,v_3oy4P1gyU4k,v_3oy4P1gyU4k_9,5 2980,v_kpOAGEYHts8,rules of playing cards,what is this woman doing,v_kpOAGEYHts8,v_kpOAGEYHts8_1,0 2981,v_kkji9hespu0,food program,what is this woman doing,v_kkji9hespu0,v_kkji9hespu0_1,0 2982,v__CIoHeD7KQc,chair,what is under the person in the video,v__CIoHeD7KQc,v__CIoHeD7KQc_4,1 2983,v_12Nafz_Yet4,yoga mat,what is under the person in black clothes,v_12Nafz_Yet4,v_12Nafz_Yet4_4,1 2984,v_RlRrktN5iH4,blanket,what is under the person in black pants,v_RlRrktN5iH4,v_RlRrktN5iH4_4,1 2985,v_PBYg9ekd86w,coaster,what is under the cup,v_PBYg9ekd86w,v_PBYg9ekd86w_4,1 2986,v_XI7qJHE61zo,floor,what is under the feet of the person in blue,v_XI7qJHE61zo,v_XI7qJHE61zo_4,1 2987,v_XCfrjEJkl3M,board,what is under the feet of the person in red,v_XCfrjEJkl3M,v_XCfrjEJkl3M_4,1 2988,v_a_EqAwUOxpM,paper,what is under the hand of the person in the video,v_a_EqAwUOxpM,v_a_EqAwUOxpM_4,1 2989,v_a2IvS0xbNGQ,grassland,what is under the person in orange clothes,v_a2IvS0xbNGQ,v_a2IvS0xbNGQ_4,1 2990,v_nnEPsdA0080,lake,what is under the person in white clothes,v_nnEPsdA0080,v_nnEPsdA0080_4,1 2991,v_gkwLhml3mnA,stage,what is under the person in white clothes,v_gkwLhml3mnA,v_gkwLhml3mnA_4,1 2992,v_836UrVGw6GI,skate,what is under the person in white clothes,v_836UrVGw6GI,v_836UrVGw6GI_4,1 2993,v_1PNjVTM0Zto,inverted reflection in water,what is under the person in yellow clothes,v_1PNjVTM0Zto,v_1PNjVTM0Zto_4,1 2994,v_98ukqD62X5s,rubber runway,what is under the person in yellow clothes,v_98ukqD62X5s,v_98ukqD62X5s_4,1 2995,v_zYjLA99koBk,hovercraft,what is under the person in yellow clothes,v_zYjLA99koBk,v_zYjLA99koBk_4,1 2996,v_rSGboODhu04,necklace,what does standing person wear on the neck,v_rSGboODhu04,v_rSGboODhu04_9,5 2997,v_nvcMYiZhUuo,dog,what kind of animal is in the video,v_nvcMYiZhUuo,v_nvcMYiZhUuo_10,5 2998,v_X52XHYKeLiE,horse,what kind of animal is in the video,v_X52XHYKeLiE,v_X52XHYKeLiE_7,5 2999,v_oT6WUU8-dgs,dog,what kind of animal is in the video,v_oT6WUU8-dgs,v_oT6WUU8-dgs_6,5 3000,v_W9H2qVnIWXs,labrador,what kind of dog is it in the video,v_W9H2qVnIWXs,v_W9H2qVnIWXs_6,8 3001,v_3uaQ0cULMgc,short,what hairstyle is the person in the video,v_3uaQ0cULMgc,v_3uaQ0cULMgc_6,8 3002,v_-YwrMtiqHKg,glass,what is the material of the bowl in the video,v_-YwrMtiqHKg,v_-YwrMtiqHKg_8,5 3003,v_3uaQ0cULMgc,blue jeans,what kind of pants does the person wear in the video ,v_3uaQ0cULMgc,v_3uaQ0cULMgc_9,5 3004,v__jIXs7AFTxw,jeans,what kind of pants does the person in white wear,v__jIXs7AFTxw,v__jIXs7AFTxw_6,5 3005,v_40BPDWojssc,leather shoes,what color of shoes does the person in black wear,v_40BPDWojssc,v_40BPDWojssc_8,5 3006,v_pop8YCGQpWk,jump,what kind of sport is this activity,v_pop8YCGQpWk,v_pop8YCGQpWk_10,8 3007,v_Pr5K2Jh2X94,jumping project,what kind of sport is this activity,v_Pr5K2Jh2X94,v_Pr5K2Jh2X94_9,8 3008,v_4_jDgRsOGvY,jeans,what kind of pants does the person in black clothes wear,v_4_jDgRsOGvY,v_4_jDgRsOGvY_8,5 3009,v_mV07bEBkIcM,black,what kind of pants does the person in black clothes wear,v_mV07bEBkIcM,v_mV07bEBkIcM_10,4 3010,v_30hcRe-5_3M,black,what color of pants does the person in white clothes wear,v_30hcRe-5_3M,v_30hcRe-5_3M_7,4 3011,v_XI7qJHE61zo,jeans,what kind of pants does the person in blue clothes wear,v_XI7qJHE61zo,v_XI7qJHE61zo_7,8 3012,v_mXqmRAUsn9U,jeans,what kind of pants does the person in blue clothes wear,v_mXqmRAUsn9U,v_mXqmRAUsn9U_8,5 3013,v_YHqFNnhaFAY,jeans,what kind of pants does the person in red clothes wear,v_YHqFNnhaFAY,v_YHqFNnhaFAY_10,5 3014,v_3dWw9GLcOeA,winter,what season does video occur,v_3dWw9GLcOeA,v_3dWw9GLcOeA_7,8 3015,v_aGvpDyMNATI,gym shoes,what kind of shoes does the person in black clothes wear,v_aGvpDyMNATI,v_aGvpDyMNATI_8,5 3016,v_X52XHYKeLiE,boots,what kind of shoes does the person in white clothes wear,v_X52XHYKeLiE,v_X52XHYKeLiE_10,8 3017,v_JKJ_EvP7JwQ,day,what time is it in video,v_JKJ_EvP7JwQ,v_JKJ_EvP7JwQ_10,8 3018,v_jWODw4vy45M,day,what time is it in video,v_jWODw4vy45M,v_jWODw4vy45M_10,8 3019,v_p1QGn0IzfW0,artistic gymnastics,which sport type does this activity belong to,v_p1QGn0IzfW0,v_p1QGn0IzfW0_7,8 3020,v_blbaWHbtqTI,night,when is the video been taken,v_blbaWHbtqTI,v_blbaWHbtqTI_7,8 3021,v_X_K7Aa3Aa-E,night,when is the video been taken,v_X_K7Aa3Aa-E,v_X_K7Aa3Aa-E_8,8 3022,v_3Rzyta8op6s,bar,where does the person in the video play,v_3Rzyta8op6s,v_3Rzyta8op6s_10,6 3023,v_A0b_pqaKCX8,home,where is the person in the video,v_A0b_pqaKCX8,v_A0b_pqaKCX8_8,6 3024,v_2CegApogJd4,basketball court,where do the athletes play dodgeball,v_2CegApogJd4,v_2CegApogJd4_10,6 3025,v_NvRH4SoF09c,hillside,where is the man in the video,v_NvRH4SoF09c,v_NvRH4SoF09c_8,6 3026,v_NjD6iWI3NvM,outdoor,where is the place in the video,v_NjD6iWI3NvM,v_NjD6iWI3NvM_6,6 3027,v_Nb6AQxxrihA,kitchen,where is the place in the video,v_Nb6AQxxrihA,v_Nb6AQxxrihA_6,6 3028,v_ikUNgSw4Gys,indoor,where is the blonde woman,v_ikUNgSw4Gys,v_ikUNgSw4Gys_6,6 3029,v_teffBaLEZQg,home,where is the dancing place in video,v_teffBaLEZQg,v_teffBaLEZQg_9,6 3030,v_U2cCOj3LiAA,gym,where is the place in the video,v_U2cCOj3LiAA,v_U2cCOj3LiAA_9,6 3031,v_uLphvdhunTY,gym,where is the place in the video,v_uLphvdhunTY,v_uLphvdhunTY_9,6 3032,v_9FQ-VLkCZo8,hockey field,where is the place in the video,v_9FQ-VLkCZo8,v_9FQ-VLkCZo8_6,6 3033,v_HX6BeHLQh5s,indoor,where is the place in the video,v_HX6BeHLQh5s,v_HX6BeHLQh5s_9,6 3034,v_H_IfIsKQ3Zw,suburb,where is the place in the video,v_H_IfIsKQ3Zw,v_H_IfIsKQ3Zw_8,6 3035,v_brJIpRGcBFU,road,where is the place in the video,v_brJIpRGcBFU,v_brJIpRGcBFU_8,6 3036,v_w4pO-1-FG5w,barber shop,where is the place in the video,v_w4pO-1-FG5w,v_w4pO-1-FG5w_6,6 3037,v_hIHeMA1oRrY,beach,where is the place in the video,v_hIHeMA1oRrY,v_hIHeMA1oRrY_9,6 3038,v_vzUeFzhVYLg,natatorium,where is the place in the video,v_vzUeFzhVYLg,v_vzUeFzhVYLg_7,6 3039,v_WPYQ27GjFKc,casino,where is the place in the video,v_WPYQ27GjFKc,v_WPYQ27GjFKc_7,6 3040,v_wnNiWoJxfSQ,grassland,where is the place in the video,v_wnNiWoJxfSQ,v_wnNiWoJxfSQ_6,6 3041,v_HQVSLlKhupk,beach,where is the place in the video,v_HQVSLlKhupk,v_HQVSLlKhupk_10,6 3042,v_bWZkD_s1940,gym,where is the place in the video,v_bWZkD_s1940,v_bWZkD_s1940_9,6 3043,v_WINtiw-_3vg,in street,where is the place in the video,v_WINtiw-_3vg,v_WINtiw-_3vg_9,6 3044,v_Vxw3yFCV2iA,sea,where is the place in the video,v_Vxw3yFCV2iA,v_Vxw3yFCV2iA_6,6 3045,v_-vY2uUmv6Dk,mountain,where is the place in the video,v_-vY2uUmv6Dk,v_-vY2uUmv6Dk_6,6 3046,v_HTSxgkgecS0,mountain,where is the place in the video,v_HTSxgkgecS0,v_HTSxgkgecS0_9,6 3047,v_woI_zP55qWo,swimming pool,where is the place in the video,v_woI_zP55qWo,v_woI_zP55qWo_6,6 3048,v_VpZzLvzU7_k,snow land,where is the place in the video,v_VpZzLvzU7_k,v_VpZzLvzU7_k_6,6 3049,v_hG4VsZQQ2_c,mountain,where is the place in the video,v_hG4VsZQQ2_c,v_hG4VsZQQ2_c_9,6 3050,v_VSsZZZHn1L0,bedroom,where is the place in the video,v_VSsZZZHn1L0,v_VSsZZZHn1L0_8,6 3051,v_HJWwqjLf1I4,sea,where is the place in the video,v_HJWwqjLf1I4,v_HJWwqjLf1I4_7,6 3052,v_W2eumNilwuI,gym,where is the place in the video,v_W2eumNilwuI,v_W2eumNilwuI_8,6 3053,v_wh6P2C2avqc,indoor,where is the place in the video,v_wh6P2C2avqc,v_wh6P2C2avqc_6,6 3054,v_hQqoh0YxJYs,grass,where is the place in the video,v_hQqoh0YxJYs,v_hQqoh0YxJYs_9,6 3055,v_0q9yZPTBbus,barber shop,where is the place in the video,v_0q9yZPTBbus,v_0q9yZPTBbus_10,6 3056,v_hIYN8cC3pEA,parking lot,where is the place in the video,v_hIYN8cC3pEA,v_hIYN8cC3pEA_9,6 3057,v_vSv1qMMt4Bk,outdoor,where is the place in the video,v_vSv1qMMt4Bk,v_vSv1qMMt4Bk_10,6 3058,v_bYNQ0GrCt64,indoor,where is the place in the video,v_bYNQ0GrCt64,v_bYNQ0GrCt64_9,6 3059,v_WGUzmra3h_w,gym,where is the place in the video,v_WGUzmra3h_w,v_WGUzmra3h_w_9,6 3060,v_VvsYrfEvvUw,outdoor,where is the place in the video,v_VvsYrfEvvUw,v_VvsYrfEvvUw_6,6 3061,v_HPKHDze6XfA,parking lot,where is the place in the video,v_HPKHDze6XfA,v_HPKHDze6XfA_9,6 3062,v_vqyQF-1Zc_E,snow land,where is the place in the video,v_vqyQF-1Zc_E,v_vqyQF-1Zc_E_8,6 3063,v_huFOZ2BiM_k,gym,where is the place in the video,v_huFOZ2BiM_k,v_huFOZ2BiM_k_9,6 3064,v_wE9sQbGdeAk,swimming pool,where is the place in the video,v_wE9sQbGdeAk,v_wE9sQbGdeAk_6,6 3065,v_HtG-i1CG2Qs,toilet,where is the place in the video,v_HtG-i1CG2Qs,v_HtG-i1CG2Qs_9,6 3066,v_H33jSILKmfI,gym,where is the place in the video,v_H33jSILKmfI,v_H33jSILKmfI_7,6 3067,v_vQ82ItCG1x4,sea,where is the place in the video,v_vQ82ItCG1x4,v_vQ82ItCG1x4_6,6 3068,v_CfqnHsp6olc,gym,where is the place in the video,v_CfqnHsp6olc,v_CfqnHsp6olc_8,6 3069,v_Woelo4XJkHE,indoor,where is the place in the video,v_Woelo4XJkHE,v_Woelo4XJkHE_8,6 3070,v_CaeZoHNHul0,bedroom,where is the place in the video,v_CaeZoHNHul0,v_CaeZoHNHul0_10,6 3071,v_hRsn4nesCQo,studio,where is the place in the video,v_hRsn4nesCQo,v_hRsn4nesCQo_9,6 3072,v_wdvQC41PGPk,in street,where is the place in the video,v_wdvQC41PGPk,v_wdvQC41PGPk_8,6 3073,v_VZ5R9goklpo,gym,where is the place in the video,v_VZ5R9goklpo,v_VZ5R9goklpo_6,6 3074,v_wLXty2wzuJg,natatorium,where is the place in the video,v_wLXty2wzuJg,v_wLXty2wzuJg_8,6 3075,v_HTYzbAFUghU,kitchen,where is the place in the video,v_HTYzbAFUghU,v_HTYzbAFUghU_9,6 3076,v_hGPCJb2g1tQ,park,where is the place in the video,v_hGPCJb2g1tQ,v_hGPCJb2g1tQ_9,6 3077,v_chmegNbBTNc,indoor,where is the place in the video,v_chmegNbBTNc,v_chmegNbBTNc_6,6 3078,v_ufrTSC3Dewg,park,where is the game played in the video,v_ufrTSC3Dewg,v_ufrTSC3Dewg_10,6 3079,v_Pv4FwH2TC6Y,outdoor,where is the video taken,v_Pv4FwH2TC6Y,v_Pv4FwH2TC6Y_8,6 3080,v_B4Zp5XN97Gc,outdoor,where is the video taken,v_B4Zp5XN97Gc,v_B4Zp5XN97Gc_10,6 3081,v_BdRH3lpopLQ,court,where is the video taken,v_BdRH3lpopLQ,v_BdRH3lpopLQ_8,6 3082,v_Pjnuoa4o55c,indoor,where is the video taken,v_Pjnuoa4o55c,v_Pjnuoa4o55c_7,6 3083,v_AsdsR27UnJ0,indoor,where is the video taken,v_AsdsR27UnJ0,v_AsdsR27UnJ0_9,6 3084,v_PFeerDZbGn8,outdoor,where is the video taken,v_PFeerDZbGn8,v_PFeerDZbGn8_10,6 3085,v_aNsj5OrEGLY,kitchen,where is the video taken,v_aNsj5OrEGLY,v_aNsj5OrEGLY_9,6 3086,v_75Tc1nPmZFQ,sand,where is the video taken,v_75Tc1nPmZFQ,v_75Tc1nPmZFQ_6,6 3087,v_-p7aui3nAnc,road,where is the video taken,v_-p7aui3nAnc,v_-p7aui3nAnc_10,6 3088,v_96vBhCFBbQk,home,where is the video taken,v_96vBhCFBbQk,v_96vBhCFBbQk_6,6 3089,v_mVAP-WyEc7w,indoor,where is the video taken,v_mVAP-WyEc7w,v_mVAP-WyEc7w_8,6 3090,v_prBiREYQ2vQ,outdoor,where is the video taken,v_prBiREYQ2vQ,v_prBiREYQ2vQ_7,6 3091,v_9k19UUJtldg,hall,where is the video taken,v_9k19UUJtldg,v_9k19UUJtldg_6,6 3092,v_pPt_fygNjtQ,gym,where is the video taken,v_pPt_fygNjtQ,v_pPt_fygNjtQ_9,6 3093,v_amgpZtvd9h0,indoor,where is the video taken,v_amgpZtvd9h0,v_amgpZtvd9h0_10,6 3094,v_PTwe2IIo3To,dancing room,where is the video taken,v_PTwe2IIo3To,v_PTwe2IIo3To_8,6 3095,v_PD-FXR7O9J0,home,where is the video taken,v_PD-FXR7O9J0,v_PD-FXR7O9J0_10,6 3096,v_Au4PfoK7hyw,indoor,where is the video taken,v_Au4PfoK7hyw,v_Au4PfoK7hyw_10,6 3097,v_72_9wLYUDGM,indoor,where is the video taken,v_72_9wLYUDGM,v_72_9wLYUDGM_6,6 3098,v_PBYg9ekd86w,swimming pool,where is the video taken,v_PBYg9ekd86w,v_PBYg9ekd86w_7,6 3099,v_BkDbDnvoL28,playground,where is the video taken,v_BkDbDnvoL28,v_BkDbDnvoL28_6,6 3100,v_nbHBjdE8oNo,kitchen,where is the video taken,v_nbHBjdE8oNo,v_nbHBjdE8oNo_7,6 3101,v_n832gDqfWl4,outdoor,where is the video taken,v_n832gDqfWl4,v_n832gDqfWl4_7,6 3102,v_XCfrjEJkl3M,basketball court,where is the video taken,v_XCfrjEJkl3M,v_XCfrjEJkl3M_6,6 3103,v_PkRvgIFREJU,street,where is the video taken,v_PkRvgIFREJU,v_PkRvgIFREJU_10,6 3104,v_pVoM_kUQ4_E,grass,where is the video taken,v_pVoM_kUQ4_E,v_pVoM_kUQ4_E_7,6 3105,v_aPI0nPvzJlE,outdoor,where is the video taken,v_aPI0nPvzJlE,v_aPI0nPvzJlE_10,6 3106,v_9snScUyE8_4,kitchen,where is the video taken,v_9snScUyE8_4,v_9snScUyE8_4_7,6 3107,v_62M1FRXsUiM,home,where is the video taken,v_62M1FRXsUiM,v_62M1FRXsUiM_8,6 3108,v_an1R4BP97JY,outdoor,where is the video taken,v_an1R4BP97JY,v_an1R4BP97JY_10,6 3109,v_pop8YCGQpWk,court,where is the video taken,v_pop8YCGQpWk,v_pop8YCGQpWk_8,6 3110,v_n9EdHGz7ArI,indoor,where is the video taken,v_n9EdHGz7ArI,v_n9EdHGz7ArI_9,6 3111,v_PSB1nM3QXxg,outdoor,where is the video taken,v_PSB1nM3QXxg,v_PSB1nM3QXxg_7,6 3112,v_pVuuVHA3RVw,outdoor,where is the video taken,v_pVuuVHA3RVw,v_pVuuVHA3RVw_7,6 3113,v_26U3SkeZU6M,indoor,where is the video taken,v_26U3SkeZU6M,v_26U3SkeZU6M_10,6 3114,v_9SIPJd4Hls4,home,where is the video taken,v_9SIPJd4Hls4,v_9SIPJd4Hls4_8,6 3115,v_PdwWFueQErM,outdoor,where is the video taken,v_PdwWFueQErM,v_PdwWFueQErM_8,6 3116,v_atGMJc-DZ7w,outdoor,where is the video taken,v_atGMJc-DZ7w,v_atGMJc-DZ7w_9,6 3117,v_Nc9yr4urskA,outdoor,where is the video taken,v_Nc9yr4urskA,v_Nc9yr4urskA_8,6 3118,v_Pr5K2Jh2X94,court,where is the video taken,v_Pr5K2Jh2X94,v_Pr5K2Jh2X94_7,6 3119,v_BD9CAqD1Yf8,beach,where is the video taken,v_BD9CAqD1Yf8,v_BD9CAqD1Yf8_6,6 3120,v_b_c17BmZCCs,court,where is the video taken,v_b_c17BmZCCs,v_b_c17BmZCCs_6,6 3121,v_nbOsU2Vmp1U,hotel,where is the video taken,v_nbOsU2Vmp1U,v_nbOsU2Vmp1U_7,6 3122,v_Av0VsTxJd78,outdoor,where is the video taken,v_Av0VsTxJd78,v_Av0VsTxJd78_7,6 3123,v_BFChXuwZ4wo,tattoo shop,where is the video taken,v_BFChXuwZ4wo,v_BFChXuwZ4wo_10,6 3124,v_87F9xGaMwCw,gym,where is the video taken,v_87F9xGaMwCw,v_87F9xGaMwCw_6,6 3125,v_nciIPwJTok8,car wash,where is the video taken,v_nciIPwJTok8,v_nciIPwJTok8_6,6 3126,v_penDFcEdu7U,park,where is the video taken,v_penDFcEdu7U,v_penDFcEdu7U_7,6 3127,v_pmmQuksmTvw,court,where is the video taken,v_pmmQuksmTvw,v_pmmQuksmTvw_9,6 3128,v_7dXqXFoju2M,shower room,where is the woman with long hair,v_7dXqXFoju2M,v_7dXqXFoju2M_10,6 3129,v_mSR-HpiJ0No,gym,where is the person in red clothes,v_mSR-HpiJ0No,v_mSR-HpiJ0No_8,6 3130,v_VJh9W3Gcpmo,stage,where is the person in red clothes,v_VJh9W3Gcpmo,v_VJh9W3Gcpmo_6,6 3131,v_x6pYeqq3O08,sandy beach,where is the person in red clothes,v_x6pYeqq3O08,v_x6pYeqq3O08_8,6 3132,v__V62aT_K8Zw,room,where does the person with a hat speak,v__V62aT_K8Zw,v__V62aT_K8Zw_7,6 3133,v__V62aT_K8Zw,chair,where does the person with a hat speak,v__V62aT_K8Zw,v__V62aT_K8Zw_10,6 3134,v_A8RQcVFtovg,grass,where is the person in white clothes,v_A8RQcVFtovg,v_A8RQcVFtovg_9,6 3135,v_Ynvd8OuXKGw,rooftop,where is the person in black clothes,v_Ynvd8OuXKGw,v_Ynvd8OuXKGw_10,6 3136,v_ojTFTIwsa_c,car wash,where is the person in black clothes,v_ojTFTIwsa_c,v_ojTFTIwsa_c_7,6 3137,v_AjqnGUbsduw,wrists,where is the person in black clothes,v_AjqnGUbsduw,v_AjqnGUbsduw_8,6 3138,v_aGvpDyMNATI,javelin throw,where is the person in black clothes,v_aGvpDyMNATI,v_aGvpDyMNATI_6,6 3139,v_nvcMYiZhUuo,cave,where is the person in black clothes,v_nvcMYiZhUuo,v_nvcMYiZhUuo_8,6 3140,v_yRQpolWhJ6A,road,where is the person in blue clothes,v_yRQpolWhJ6A,v_yRQpolWhJ6A_7,6 3141,v_OFTkwnSh-sQ,stadium,where is the person in red clothes,v_OFTkwnSh-sQ,v_OFTkwnSh-sQ_7,6 3142,v_oKJ1BnvHbbA,stadium,where is the person in red clothes,v_oKJ1BnvHbbA,v_oKJ1BnvHbbA_7,6 3143,v_OQEKZXv6jSw,stadium,where is the person in red clothes,v_OQEKZXv6jSw,v_OQEKZXv6jSw_7,6 3144,v_YHqFNnhaFAY,road,where is the person in red clothes,v_YHqFNnhaFAY,v_YHqFNnhaFAY_6,6 3145,v_vHnZ3NrZER0,indoor,where is the person in black clothes,v_vHnZ3NrZER0,v_vHnZ3NrZER0_6,6 3146,v_V90CMuokf0c,board,where is the person in black clothes in the video,v_V90CMuokf0c,v_V90CMuokf0c_6,6 3147,v_oMtB-y49Yo8,kitchen,where is the person in the video,v_oMtB-y49Yo8,v_oMtB-y49Yo8_7,6 3148,v_YaC68rE4lwA,shower room,where is the person in the video,v_YaC68rE4lwA,v_YaC68rE4lwA_7,6 3149,v_aAz3YL2RMr4,tattoo shop,where is the person in the video,v_aAz3YL2RMr4,v_aAz3YL2RMr4_7,6 3150,v_AB5cWhlQ0Kk,living room,where is the person in the video,v_AB5cWhlQ0Kk,v_AB5cWhlQ0Kk_10,6 3151,v_Ar6TcWqwK-A,kitchen,where is the person in the video,v_Ar6TcWqwK-A,v_Ar6TcWqwK-A_7,6 3152,v_Y05GAiavfOg,home,where is the person in the video,v_Y05GAiavfOg,v_Y05GAiavfOg_7,6 3153,v_OYEKKzQjaJI,room,where is the person in the video,v_OYEKKzQjaJI,v_OYEKKzQjaJI_8,6 3154,v__zqj6daJo9U,gym,where is the person in the video,v__zqj6daJo9U,v__zqj6daJo9U_9,6 3155,v_oT6WUU8-dgs,home,where is the person in the video,v_oT6WUU8-dgs,v_oT6WUU8-dgs_9,6 3156,v__jIXs7AFTxw,home,where is the person in the video,v__jIXs7AFTxw,v__jIXs7AFTxw_10,6 3157,v_yGTIEmZ7S2w,grass,where is the person in the video,v_yGTIEmZ7S2w,v_yGTIEmZ7S2w_9,6 3158,v_Aen-RfnlK3A,kitchen,where is the person in the video,v_Aen-RfnlK3A,v_Aen-RfnlK3A_8,6 3159,v_A_Sr0mCX2rI,plain,where is the person in the video,v_A_Sr0mCX2rI,v_A_Sr0mCX2rI_8,6 3160,v_Yg03CCu9GMo,bar,where is the person in the video,v_Yg03CCu9GMo,v_Yg03CCu9GMo_10,6 3161,v_Aj5ncX5G_2w,desk,where is the person in the video,v_Aj5ncX5G_2w,v_Aj5ncX5G_2w_9,6 3162,v_hxErUs42bBI,ski field,where is the person in the video,v_hxErUs42bBI,v_hxErUs42bBI_7,6 3163,v_yUvSujxnFE0,tennis court,where is the person in the video,v_yUvSujxnFE0,v_yUvSujxnFE0_7,6 3164,v_otMw5GJWYWs,gym,where is the person in the video,v_otMw5GJWYWs,v_otMw5GJWYWs_7,6 3165,v__kmjpSZb3OI,home,where is the person in the video,v__kmjpSZb3OI,v__kmjpSZb3OI_7,6 3166,v_Of2Umm79Kxg,room,where is the person in the video,v_Of2Umm79Kxg,v_Of2Umm79Kxg_9,6 3167,v_v0azz4XzW_s,grass,where is the person in the video,v_v0azz4XzW_s,v_v0azz4XzW_s_9,6 3168,v_Oh3-DvDCpZ4,kitchen,where is the person in white clothes,v_Oh3-DvDCpZ4,v_Oh3-DvDCpZ4_8,6 3169,v_0k6GFx2ZCg8,kitchen,where are the sandwiches been made in the video,v_0k6GFx2ZCg8,v_0k6GFx2ZCg8_10,6 3170,v_TiQcZKml5Bs,in street,where is the dog walk in the video,v_TiQcZKml5Bs,v_TiQcZKml5Bs_9,6 3171,v_I1iUbyjWy7k,baseball field,where is the place to play baseball in the video,v_I1iUbyjWy7k,v_I1iUbyjWy7k_9,6 3172,v_TGffgRXc1eQ,gym,where is the place to play football in the video,v_TGffgRXc1eQ,v_TGffgRXc1eQ_9,6 3173,v_TXSOSSGJYO0,street,where is the running taken place in the video,v_TXSOSSGJYO0,v_TXSOSSGJYO0_9,6 3174,v_tgPD2SZo_DY,gym,where is the running taken place in the video,v_tgPD2SZo_DY,v_tgPD2SZo_DY_9,6 3175,v_G4-qjGC_3VA,playground,where does the scene taken in the video ,v_G4-qjGC_3VA,v_G4-qjGC_3VA_10,6 3176,v_WdtytUagoJs,playground,where does the scene taken in the video ,v_WdtytUagoJs,v_WdtytUagoJs_10,6 3177,v_uIHWHnItois,road,where is the person skateboarding in the video,v_uIHWHnItois,v_uIHWHnItois_10,6 3178,v_UJGK_TKrl4E,gym,where is the training taken place in the video,v_UJGK_TKrl4E,v_UJGK_TKrl4E_8,6 3179,v_ys4_S3JHQjs,lakeside,where is in the video,v_ys4_S3JHQjs,v_ys4_S3JHQjs_7,6 3180,v__CIoHeD7KQc,laboratory,where is in the video,v__CIoHeD7KQc,v__CIoHeD7KQc_10,6 3181,v_nYl_tYmijlM,room,where is in the video,v_nYl_tYmijlM,v_nYl_tYmijlM_9,6 3182,v_z6l9utYlIrw,church,where is in the video,v_z6l9utYlIrw,v_z6l9utYlIrw_7,6 3183,v_Z2gpcqXWNek,shower room,where is in the video,v_Z2gpcqXWNek,v_Z2gpcqXWNek_9,6 3184,v_NZskwwovSZI,tattoo shop,where is in the video,v_NZskwwovSZI,v_NZskwwovSZI_8,6 3185,v_Z6b4oFjIznU,gym,where is in the video,v_Z6b4oFjIznU,v_Z6b4oFjIznU_6,6 3186,v_YVqRQDkdA8U,park,where is in the video,v_YVqRQDkdA8U,v_YVqRQDkdA8U_8,6 3187,v_AjizhJc_reI,amusement park,where is in the video,v_AjizhJc_reI,v_AjizhJc_reI_7,6 3188,v_yCpdDJAW-jU,road,where is in the video,v_yCpdDJAW-jU,v_yCpdDJAW-jU_9,6 3189,v__QBTD1bLSI0,kitchen,where is in the video,v__QBTD1bLSI0,v__QBTD1bLSI0_9,6 3190,v_z6pmp8TrAVo,kitchen,where is in the video,v_z6pmp8TrAVo,v_z6pmp8TrAVo_9,6 3191,v_MQ9Ojge7CyA,swimming pool,where is the video taken ,v_MQ9Ojge7CyA,v_MQ9Ojge7CyA_7,6 3192,v_09ocXmGF-T4,kitchen,where is the video taken ,v_09ocXmGF-T4,v_09ocXmGF-T4_7,6 3193,v_54TIARWo-S8,outdoor,where is the video taken ,v_54TIARWo-S8,v_54TIARWo-S8_9,6 3194,v_MonWdYi3a0I,indoor,where is the video taken ,v_MonWdYi3a0I,v_MonWdYi3a0I_8,6 3195,v_mnNgZ-D5cKc,racetrack,where is the video taken ,v_mnNgZ-D5cKc,v_mnNgZ-D5cKc_6,6 3196,v_MpeN-IVIBc4,indoor,where is the video taken ,v_MpeN-IVIBc4,v_MpeN-IVIBc4_7,6 3197,v_a4gI4LC1rJk,kitchen,where is the video taken ,v_a4gI4LC1rJk,v_a4gI4LC1rJk_9,6 3198,v_bRgvAHL3dJk,kitchen,where is the video taken ,v_bRgvAHL3dJk,v_bRgvAHL3dJk_6,6 3199,v_EQWdo0FcKAo,indoor,where is the video taken ,v_EQWdo0FcKAo,v_EQWdo0FcKAo_10,6 3200,v_Vhn4SuPhu-0,bedroom,where is the man in white,v_Vhn4SuPhu-0,v_Vhn4SuPhu-0_6,6 3201,v_X52XHYKeLiE,horse yard,where is the video taken ,v_X52XHYKeLiE,v_X52XHYKeLiE_6,6 3202,v_32vYs9wKXE8,indoor,where is the video taken ,v_32vYs9wKXE8,v_32vYs9wKXE8_7,6 3203,v_A9VCuZ53ObQ,room,where is the video taken ,v_A9VCuZ53ObQ,v_A9VCuZ53ObQ_7,6 3204,v_xfV4V_AOVSM,barber shop,where is the video taken ,v_xfV4V_AOVSM,v_xfV4V_AOVSM_6,6 3205,v_mvRoVXRGVGw,snow mountain,where is the video taken ,v_mvRoVXRGVGw,v_mvRoVXRGVGw_9,6 3206,v_N9VOdVOiPNM,indoor,where is the video taken ,v_N9VOdVOiPNM,v_N9VOdVOiPNM_7,6 3207,v_nGKc2t-NMYc,training ground,where is the video taken ,v_nGKc2t-NMYc,v_nGKc2t-NMYc_7,6 3208,v_nnEPsdA0080,lake,where is the video taken ,v_nnEPsdA0080,v_nnEPsdA0080_7,6 3209,v_390iVq_urQM,outdoor,where is the video taken ,v_390iVq_urQM,v_390iVq_urQM_6,6 3210,v_mUmSJps9WJI,home,where is the video taken ,v_mUmSJps9WJI,v_mUmSJps9WJI_7,6 3211,v_N5Dt3ycaun4,indoor,where is the video taken ,v_N5Dt3ycaun4,v_N5Dt3ycaun4_8,6 3212,v_1494UwmvAJM,indoor,where is the video taken ,v_1494UwmvAJM,v_1494UwmvAJM_6,6 3213,v_9MN6GNhvwzA,supermarket,where is the video taken ,v_9MN6GNhvwzA,v_9MN6GNhvwzA_6,6 3214,v_28WDlVOgslg,home,where is the video taken ,v_28WDlVOgslg,v_28WDlVOgslg_8,6 3215,v_40BPDWojssc,office,where is the video taken ,v_40BPDWojssc,v_40BPDWojssc_6,6 3216,v_mxn6WcmdNpA,market,where is the video taken ,v_mxn6WcmdNpA,v_mxn6WcmdNpA_7,6 3217,v_MVA568rRjzQ,tennis room,where is the video taken ,v_MVA568rRjzQ,v_MVA568rRjzQ_6,6 3218,v_mV07bEBkIcM,indoor,where is the video taken ,v_mV07bEBkIcM,v_mV07bEBkIcM_8,6 3219,v_xMNmGr96O9U,bowling room,where is the video taken ,v_xMNmGr96O9U,v_xMNmGr96O9U_9,6 3220,v_a_EqAwUOxpM,manicure shop,where is the video taken ,v_a_EqAwUOxpM,v_a_EqAwUOxpM_9,6 3221,v_16bJAOf1SJI,game place,where is the video taken ,v_16bJAOf1SJI,v_16bJAOf1SJI_9,6 3222,v_mZYWfmsYQPA,indoor,where is the video taken ,v_mZYWfmsYQPA,v_mZYWfmsYQPA_6,6 3223,v_NDq29HQJVP0,playground,where is the video taken ,v_NDq29HQJVP0,v_NDq29HQJVP0_6,6 3224,v_N4qhryre_TE,indoor,where is the video taken ,v_N4qhryre_TE,v_N4qhryre_TE_9,6 3225,v_30hcRe-5_3M,indoor,where is the video taken ,v_30hcRe-5_3M,v_30hcRe-5_3M_10,6 3226,v_98ukqD62X5s,outdoor,where is the video taken ,v_98ukqD62X5s,v_98ukqD62X5s_6,6 3227,v_X_K7Aa3Aa-E,outdoor,where is the video taken ,v_X_K7Aa3Aa-E,v_X_K7Aa3Aa-E_6,6 3228,v_nhQTxZlzG1Q,outdoor,where is the video taken ,v_nhQTxZlzG1Q,v_nhQTxZlzG1Q_8,6 3229,v_N75m1Z4RqbA,indoor,where is the video taken ,v_N75m1Z4RqbA,v_N75m1Z4RqbA_6,6 3230,v__fLhtWSCaSo,outdoor,where is the video taken ,v__fLhtWSCaSo,v__fLhtWSCaSo_7,6 3231,v_X2toGKgWMpE,indoor,where is the video taken ,v_X2toGKgWMpE,v_X2toGKgWMpE_6,6 3232,v_NjXCZYO3zwU,indoor,where is the video taken ,v_NjXCZYO3zwU,v_NjXCZYO3zwU_9,6 3233,v_X6CBZwwRdQQ,seaside,where is the video taken ,v_X6CBZwwRdQQ,v_X6CBZwwRdQQ_7,6 3234,v_xizEiQZfJa4,outdoor,where is the video taken ,v_xizEiQZfJa4,v_xizEiQZfJa4_9,6 3235,v_836UrVGw6GI,outdoor,where is the video taken ,v_836UrVGw6GI,v_836UrVGw6GI_6,6 3236,v_28LdZLfdmMQ,aquatic,where is the video taken ,v_28LdZLfdmMQ,v_28LdZLfdmMQ_7,6 3237,v_nDM4E9CD_y0,outdoor,where is the video taken ,v_nDM4E9CD_y0,v_nDM4E9CD_y0_6,6 3238,v_kpOAGEYHts8,chess and card room,where is the woman,v_kpOAGEYHts8,v_kpOAGEYHts8_9,6 3239,v_dFGS7YCDk3Y,sea,where does the game take place,v_dFGS7YCDk3Y,v_dFGS7YCDk3Y_8,6 3240,v_4LF0hL-mgks,kitchen,where is the video taken ,v_4LF0hL-mgks,v_4LF0hL-mgks_9,6 3241,v_1IbkFHNA7fg,left,which hand of the person in plaid clothes wears a watch,v_1IbkFHNA7fg,v_1IbkFHNA7fg_10,8 3242,v_cnMvMvVBXiI,left hand,which hand of the person in black wears a watch,v_cnMvMvVBXiI,v_cnMvMvVBXiI_9,5 3243,v_lU6DMCif3eE,left hand,which hand of the person in the video wears a watch,v_lU6DMCif3eE,v_lU6DMCif3eE_9,5 3244,v_Son8UiVlzu0,left hand,which hand of the person in black wears a watch,v_Son8UiVlzu0,v_Son8UiVlzu0_6,8 3245,v_FaP7unySMOs,black man,who wins the game,v_FaP7unySMOs,v_FaP7unySMOs_10,5 3246,v_vnZmsOgWs0o,stimulate,why does the person like skiing,v_vnZmsOgWs0o,v_vnZmsOgWs0o_9,8 3247,v_M2Y2Cw2kwDo,reduce drag,why does the athlete raise hand,v_M2Y2Cw2kwDo,v_M2Y2Cw2kwDo_6,8 3248,v_snhPrCNubYA,give yourself inertia,why does the athlete run up ,v_snhPrCNubYA,v_snhPrCNubYA_6,8 3249,v_LzPppxSWYNY,increase jump distance,why does the athlete run up ,v_LzPppxSWYNY,v_LzPppxSWYNY_6,8 3250,v_3Nd3Aai1bVA,protect head,why does the athlete wear a helmet,v_3Nd3Aai1bVA,v_3Nd3Aai1bVA_6,8 3251,v_JR9LosQmMvg,protect head,why does the athlete wear a helmet,v_JR9LosQmMvg,v_JR9LosQmMvg_10,8 3252,v_k6pN0WRr2Ws,physical exercise,why does the person in the video do aerobics,v_k6pN0WRr2Ws,v_k6pN0WRr2Ws_9,8 3253,v_JB-ynj70saA,poor balance,why does the person in black pants fall down,v_JB-ynj70saA,v_JB-ynj70saA_9,8 3254,v_MDWaKr7Gu5Q,for beauty,why does the person in the video clean up the fallen leaves,v_MDWaKr7Gu5Q,v_MDWaKr7Gu5Q_6,8 3255,v_uw9x69DT8_g,physical exercise,why does the person in the video run,v_uw9x69DT8_g,v_uw9x69DT8_g_6,8 3256,v_SGAUpoTMSnA,avoid injury,why does the person in the video wear a helmet,v_SGAUpoTMSnA,v_SGAUpoTMSnA_6,8 3257,v_rGOOlcdpfLg,for sake of beauty,why does the person make up,v_rGOOlcdpfLg,v_rGOOlcdpfLg_6,8 3258,v_zTHkqpNFGno,for sake of beauty,why does the person in black comb the hair,v_zTHkqpNFGno,v_zTHkqpNFGno_10,8 3259,v_vHnZ3NrZER0,beautiful,why does the person put up wallpapers,v_vHnZ3NrZER0,v_vHnZ3NrZER0_9,8 3260,v_j81ndpMC9gI,anti damage,why does the person cut nail for the cat,v_j81ndpMC9gI,v_j81ndpMC9gI_9,8 3261,v_T3mcQnlsmq4,avoid hurt somenon,why does the person cut nail for the cat,v_T3mcQnlsmq4,v_T3mcQnlsmq4_10,8 3262,v_6G8m-vsGTA8,beauty,why does the person have a haircut,v_6G8m-vsGTA8,v_6G8m-vsGTA8_8,8 3263,v_5c5PFa8GR-A,beautiful,why does the person have a haircut,v_5c5PFa8GR-A,v_5c5PFa8GR-A_8,8 3264,v_fLR-b-FDjlM,match,why does the person play game,v_fLR-b-FDjlM,v_fLR-b-FDjlM_6,8 3265,v_W9H2qVnIWXs,keep health,why does the person give bath to the dog,v_W9H2qVnIWXs,v_W9H2qVnIWXs_8,8 3266,v_16bJAOf1SJI,entertainment,why does the person play ball,v_16bJAOf1SJI,v_16bJAOf1SJI_6,8 3267,v_ryFSf08mrkA,for sake of beauty,why does the person trim the bushes,v_ryFSf08mrkA,v_ryFSf08mrkA_10,8 3268,v_4z0meF-_b1I,beauty,why does the person weed,v_4z0meF-_b1I,v_4z0meF-_b1I_10,8 3269,v_v6DdLg_Xnkg,convenient,why does the person wear contact lenses,v_v6DdLg_Xnkg,v_v6DdLg_Xnkg_9,8 3270,v_7rwDYzqfGgU,wonderful performance,why does the audience applaud,v_7rwDYzqfGgU,v_7rwDYzqfGgU_8,8 3271,v_ZLJ2BmBkLJg,for sake of beauty,why does the person in black shave the beard,v_ZLJ2BmBkLJg,v_ZLJ2BmBkLJg_9,8 3272,v_SjlILJ2st-I,protect head,why does the player wear a helmet,v_SjlILJ2st-I,v_SjlILJ2st-I_6,8 3273,v_rM02KWikOo8,prevent drowning,why does the person wear a life jacket,v_rM02KWikOo8,v_rM02KWikOo8_9,8 3274,v_uIHWHnItois,male,what is the gender of the skateboarder in the video,v_uIHWHnItois,v_uIHWHnItois_8,8 3275,v_6H0D8VaIli0,male,what is the gender of the person who performs street dance in the video,v_6H0D8VaIli0,v_6H0D8VaIli0_8,8 3276,v_j81ndpMC9gI,male,what is the gender of the person on the left side of the woman,v_j81ndpMC9gI,v_j81ndpMC9gI_8,8 3277,v_gCHo9vxfEzM,female,what is the gender of all the people in red,v_gCHo9vxfEzM,v_gCHo9vxfEzM_6,8 3278,v_JGxf-jke0e8,female,what is the gender of the adult next to the basin,v_JGxf-jke0e8,v_JGxf-jke0e8_8,8 3279,v_zOI9SjQpc_Q,male,what is the gender of the player 9,v_zOI9SjQpc_Q,v_zOI9SjQpc_Q_6,8 3280,v_LvTwJTvluHE,male,what is the gender of the person wearing green swimming trunks,v_LvTwJTvluHE,v_LvTwJTvluHE_9,8 3281,v_R74yolowFPs,male,what is the gender of the person who wears dark green short sleeves,v_R74yolowFPs,v_R74yolowFPs_7,8 3282,v_rM02KWikOo8,male,what is the gender of the adult in the water,v_rM02KWikOo8,v_rM02KWikOo8_8,8 3283,v_JH9qiuPCkY4,male,what is the gender of the athlete in the video,v_JH9qiuPCkY4,v_JH9qiuPCkY4_8,8 3284,v_sk_pnoqXxhs,male,what is the gender of the person who films,v_sk_pnoqXxhs,v_sk_pnoqXxhs_9,8 3285,v_MAGeYoFuCgo,female,what is the gender of the chef,v_MAGeYoFuCgo,v_MAGeYoFuCgo_9,8 3286,v_0lbv0AE5gJQ,male,what is the gender of the person with disabilities,v_0lbv0AE5gJQ,v_0lbv0AE5gJQ_9,8 3287,v_j6BCgvUusWs,female,what is the gender of the first officer,v_j6BCgvUusWs,v_j6BCgvUusWs_8,8 3288,v_lYP05IRcOPE,male,what is the gender of the first drifting person,v_lYP05IRcOPE,v_lYP05IRcOPE_9,8 3289,v_PkRvgIFREJU,male,what is the gender of the first person who jumps the grid,v_PkRvgIFREJU,v_PkRvgIFREJU_7,8 3290,v_K1OsjA-f17E,male,what is the gender of the first person wearing a hat,v_K1OsjA-f17E,v_K1OsjA-f17E_8,8 3291,v_hvrKRg166eQ,male,what is the gender of the host on the left,v_hvrKRg166eQ,v_hvrKRg166eQ_7,8 3292,v_rWfQj0X8WU4,male,what is the gender of the person standing on the ground at the end of the video,v_rWfQj0X8WU4,v_rWfQj0X8WU4_8,8 3293,v_JsPIzRsUtlE,male,what is the gender of the person in the middle of the field,v_JsPIzRsUtlE,v_JsPIzRsUtlE_8,8 3294,v_LL0uQO4q_wY,male,what is the gender of the person who pushes the curling pot,v_LL0uQO4q_wY,v_LL0uQO4q_wY_7,8 3295,v_K7iw2_1BrIk,male,what is the gender of the person holding the box,v_K7iw2_1BrIk,v_K7iw2_1BrIk_8,8 3296,v_Jdu5AqaWfz8,male,what is the gender of the person with the rope on his body,v_Jdu5AqaWfz8,v_Jdu5AqaWfz8_8,8 3297,v_1kkc9hDshP4,female,what is the gender of the person who dances on the stage,v_1kkc9hDshP4,v_1kkc9hDshP4_9,8 3298,v_PBYg9ekd86w,female,what is the gender of the person who is not in the pool,v_PBYg9ekd86w,v_PBYg9ekd86w_9,8 3299,v_PdwWFueQErM,male,what is the gender of the person who sweeps the snow,v_PdwWFueQErM,v_PdwWFueQErM_6,8 3300,v_s9PkkDEl6aY,female,what is the gender of the person standing on the stage,v_s9PkkDEl6aY,v_s9PkkDEl6aY_8,8 3301,v_4uKoAk5NCkI,female,what is the gender of the person near the window in the video,v_4uKoAk5NCkI,v_4uKoAk5NCkI_8,8 3302,v_G4-qjGC_3VA,male,what is the gender of the person wearing black clothes,v_G4-qjGC_3VA,v_G4-qjGC_3VA_6,8 3303,v_JB-ynj70saA,male,what is the gender of the person wearing black pants,v_JB-ynj70saA,v_JB-ynj70saA_8,8 3304,v_Mk7Yjq1U8OI,female,what is the gender of the person with blue trousers in the first picture,v_Mk7Yjq1U8OI,v_Mk7Yjq1U8OI_9,8 3305,v_GOhmWfR8QBM,female,what is the gender of the person wearing red clothes,v_GOhmWfR8QBM,v_GOhmWfR8QBM_8,8 3306,v_GgnM5RGNtDE,male,what is the gender of the person wearing blue short sleeves,v_GgnM5RGNtDE,v_GgnM5RGNtDE_7,8 3307,v_Gs79qz286QE,male,what is the gender of the person wearing blue swim trunks,v_Gs79qz286QE,v_Gs79qz286QE_6,8 3308,v_2ShsRSJ9cqE,male,what is the gender of the person in the welding,v_2ShsRSJ9cqE,v_2ShsRSJ9cqE_9,8 3309,v_hRsn4nesCQo,male,what is the gender of the person wearing yellow clothes,v_hRsn4nesCQo,v_hRsn4nesCQo_7,8 3310,v_I9ficvPdpZg,male,what is the gender of the person wearing white clothes on the stage,v_I9ficvPdpZg,v_I9ficvPdpZg_7,8 3311,v_mvRoVXRGVGw,female,what is the gender of the person lying on the ground in the video,v_mvRoVXRGVGw,v_mvRoVXRGVGw_10,8 3312,v_3Rzyta8op6s,female,what is the gender of the person on the left side of the person with the bald head in the video,v_3Rzyta8op6s,v_3Rzyta8op6s_6,8 3313,v_G0VWk5WqDp0,male,what is the gender of the person wearing a blue vest,v_G0VWk5WqDp0,v_G0VWk5WqDp0_7,8 3314,v_FnPS6zn5S7M,female,what is the gender of the person wearing a gymnastics suit,v_FnPS6zn5S7M,v_FnPS6zn5S7M_9,8 3315,v_GSrBZXLSwWI,female,what is the gender of the person wearing black short sleeves,v_GSrBZXLSwWI,v_GSrBZXLSwWI_6,8 3316,v_HtG-i1CG2Qs,female,what is the gender of the person wearing blue clothes,v_HtG-i1CG2Qs,v_HtG-i1CG2Qs_8,8 3317,v_SNja9iUdAiI,female,what is the gender of the person with the pigtail,v_SNja9iUdAiI,v_SNja9iUdAiI_9,8 3318,v_jBlG0L_M96g,male,what is the gender of the person who is on the jumper,v_jBlG0L_M96g,v_jBlG0L_M96g_8,8 3319,v_PTwe2IIo3To,male,what is the gender of the lead dancer,v_PTwe2IIo3To,v_PTwe2IIo3To_6,8 3320,v_2DCHbuwZNSs,male,what is the gender of the person who takes off the respirator,v_2DCHbuwZNSs,v_2DCHbuwZNSs_8,8 3321,v_I16FTpQQiic,male,what is the gender of the person who tied the hair,v_I16FTpQQiic,v_I16FTpQQiic_7,8 3322,v_5oyenoaVB-w,female,what is the gender of the person washing face in the video,v_5oyenoaVB-w,v_5oyenoaVB-w_9,8 3323,v_KT8DUDFc3Xg,woman,what is the gender of the person whose shoes have been cleaned,v_KT8DUDFc3Xg,v_KT8DUDFc3Xg_9,8 3324,v_I3tqWc5wG78,female,what is the gender of the person with curly hair in black clothes,v_I3tqWc5wG78,v_I3tqWc5wG78_10,8 3325,v_JR9LosQmMvg,male,what is the gender of the security officer on the court,v_JR9LosQmMvg,v_JR9LosQmMvg_7,8 3326,v_0e7d39SwHCA,male,what is the gender of the skateboarder,v_0e7d39SwHCA,v_0e7d39SwHCA_8,8 3327,v_sEcXR5b8HyY,male,what is the gender of the athlete in the prologue,v_sEcXR5b8HyY,v_sEcXR5b8HyY_9,8 3328,v_S6Sg1l78IW0,male,what is the gender of the person on the right of the standing woman,v_S6Sg1l78IW0,v_S6Sg1l78IW0_8,8 3329,v_Nb6AQxxrihA,female,what is the gender of the villain in the video,v_Nb6AQxxrihA,v_Nb6AQxxrihA_8,8 3330,v_Jhcis4S2Vsg,male,what is the gender of the winning person in the video,v_Jhcis4S2Vsg,v_Jhcis4S2Vsg_8,8 3331,v_W9H2qVnIWXs,circular,what is the shape of the red obstacle that the dog has jumped over,v_W9H2qVnIWXs,v_W9H2qVnIWXs_10,8 3332,v_YRGiRmcHdUY,rectangle,what is the shape of the sharpening tool in the video,v_YRGiRmcHdUY,v_YRGiRmcHdUY_7,8 3333,v_nciIPwJTok8,square,what is the shape of the towel,v_nciIPwJTok8,v_nciIPwJTok8_10,8 3334,v_ngMxE3CnGVg,circular,what is the shape of the lollipop,v_ngMxE3CnGVg,v_ngMxE3CnGVg_8,5 3335,v_CKSlgK_2FP4,rectangle,what is the shape of the white sharpening board,v_CKSlgK_2FP4,v_CKSlgK_2FP4_9,8 3336,v_AB480dHyDeM,rectangle,what is the shape of the basin in the video,v_AB480dHyDeM,v_AB480dHyDeM_7,8 3337,v_wnNiWoJxfSQ,cylindrical,what is the shape of the bottom of the club,v_wnNiWoJxfSQ,v_wnNiWoJxfSQ_10,5 3338,v_Y_nyVFn70Lk,circular,what is the shape of the bowl in the video,v_Y_nyVFn70Lk,v_Y_nyVFn70Lk_10,8 3339,v_wdvQC41PGPk,rectangle,what is the shape of the box,v_wdvQC41PGPk,v_wdvQC41PGPk_7,5 3340,v_z6l9utYlIrw,circular,what is the shape of the person wearing red clothes,v_z6l9utYlIrw,v_z6l9utYlIrw_8,5 3341,v_VSsZZZHn1L0,square,what is the shape of the cabinet on the wall,v_VSsZZZHn1L0,v_VSsZZZHn1L0_9,5 3342,v_vQ82ItCG1x4,triangle,what is the shape of the canvas,v_vQ82ItCG1x4,v_vQ82ItCG1x4_7,5 3343,v_WPYQ27GjFKc,circular,what is the shape of the chips,v_WPYQ27GjFKc,v_WPYQ27GjFKc_8,8 3344,v_aAz3YL2RMr4,circular,what is the shape of the cup in the video,v_aAz3YL2RMr4,v_aAz3YL2RMr4_10,8 3345,v_AB5cWhlQ0Kk,rectangle,what is the shape of the wall decorations in the video,v_AB5cWhlQ0Kk,v_AB5cWhlQ0Kk_6,8 3346,v_JKJ_EvP7JwQ,triangle,what is the shape of the eyes on the pumpkin,v_JKJ_EvP7JwQ,v_JKJ_EvP7JwQ_8,8 3347,v__QBTD1bLSI0,ellipse,what is the shape of the sink in the video,v__QBTD1bLSI0,v__QBTD1bLSI0_10,8 3348,v_nP1Bk-vJgVg,circular,what is the shape of hockey in the video,v_nP1Bk-vJgVg,v_nP1Bk-vJgVg_7,8 3349,v_7CM2OYr-Csw,triangle,what is the shape of the kite,v_7CM2OYr-Csw,v_7CM2OYr-Csw_10,8 3350,v_mUmSJps9WJI,circular,what is the shape of the lights on the christmas tree,v_mUmSJps9WJI,v_mUmSJps9WJI_10,8 3351,v_Aj5ncX5G_2w,cylinder,what is the shape of the paint bucket in the video,v_Aj5ncX5G_2w,v_Aj5ncX5G_2w_7,5 3352,v_KXcVYfMuUGw,circular,what is the shape of the plate,v_KXcVYfMuUGw,v_KXcVYfMuUGw_7,8 3353,v_OcL7ZhBCkxQ,circular,what is the shape of the wheel of the skateboard of the man in black pants,v_OcL7ZhBCkxQ,v_OcL7ZhBCkxQ_7,8 3354,v_wCexKIuAj3A,round,what is the shape of the smoke that the white-bearded man spit out,v_wCexKIuAj3A,v_wCexKIuAj3A_6,5 3355,v_OccEAILrU7M,circular,what is the shape of the things under the feet of the purple dressed person in the video,v_OccEAILrU7M,v_OccEAILrU7M_8,8 3356,v__2txWbQfJrY,square,what is the shape of the tiles in the video,v__2txWbQfJrY,v__2txWbQfJrY_9,8 3357,v_ZAX6OojMg38,square,what is the shape of the tiles next to the swimming pool in the video,v_ZAX6OojMg38,v_ZAX6OojMg38_10,8 3358,v_fvEaC-fTR4A,cylinder,what is the shape of the video handle,v_fvEaC-fTR4A,v_fvEaC-fTR4A_8,8 3359,v_w10Nr_wOh8g,square,what is the shape of the wallpaper,v_w10Nr_wOh8g,v_w10Nr_wOh8g_9,8 3360,v_nnEPsdA0080,dragon boat,what is the boat in the video,v_nnEPsdA0080,v_nnEPsdA0080_8,5 3361,v_JsPIzRsUtlE,brown,what is the shoes' color of the person in the filed with sunglasses,v_JsPIzRsUtlE,v_JsPIzRsUtlE_6,4 3362,v_vBOFzuS-Djo,diving,what is the short hair baby doing,v_vBOFzuS-Djo,v_vBOFzuS-Djo_1,0 3363,v_IMMoglaJ3RY,weed,what is the short hair man doing,v_IMMoglaJ3RY,v_IMMoglaJ3RY_1,0 3364,v_eQ0sW4hJ9zU,hard to catch fire,what is the shortcoming of the old-fashioned lawn mower,v_eQ0sW4hJ9zU,v_eQ0sW4hJ9zU_6,8 3365,v_ivAvKRQQy1Q,wood,what is the material of shovel in the video ,v_ivAvKRQQy1Q,v_ivAvKRQQy1Q_10,8 3366,v_Es3PxD9oi4I,2 people,what's on the side of the pool,v_Es3PxD9oi4I,v_Es3PxD9oi4I_4,1 3367,v_5nu47s7JrfY,simple,how easy is breakfast in the video,v_5nu47s7JrfY,v_5nu47s7JrfY_10,8 3368,v_P6Oq6C9X0fw,ski,what is under the skier's foot,v_P6Oq6C9X0fw,v_P6Oq6C9X0fw_4,1 3369,v_E_UkQGk7QAE,skiing air cushion,what do the people in the video ski with,v_E_UkQGk7QAE,v_E_UkQGk7QAE_7,5 3370,v_Av0VsTxJd78,sedan,what is the skiing person on the right side of the video,v_Av0VsTxJd78,v_Av0VsTxJd78_4,1 3371,v_dskswWtslKc,good,how good about man's surfing skills,v_dskswWtslKc,v_dskswWtslKc_10,8 3372,v_4JmFOPoKluM,wooden house,what is behind the small door in the video,v_4JmFOPoKluM,v_4JmFOPoKluM_4,1 3373,v_wE9sQbGdeAk,scuba diving,what is the specific name of this sport,v_wE9sQbGdeAk,v_wE9sQbGdeAk_8,8 3374,v_-EIsT868Trw,sunglasses,what type of glasses does the man in green wear,v_-EIsT868Trw,v_-EIsT868Trw_8,5 3375,v_HTSxgkgecS0,drifting,what is the name of this sport,v_HTSxgkgecS0,v_HTSxgkgecS0_6,8 3376,v_tgPD2SZo_DY,treadmill,what is the sports equipment in the video,v_tgPD2SZo_DY,v_tgPD2SZo_DY_8,5 3377,v_5dN-MpXG9OE,braid of double twist,what is the hairstyle of the athlete in the video,v_5dN-MpXG9OE,v_5dN-MpXG9OE_9,5 3378,v_S6Sg1l78IW0,flute,what is the standing woman doing,v_S6Sg1l78IW0,v_S6Sg1l78IW0_1,0 3379,v_8vDSV9ruYlc,out of flatness,what is the state of the wallpaper before applying glue,v_8vDSV9ruYlc,v_8vDSV9ruYlc_10,8 3380,v_46NS8dT15Hw,slipper,what is the style of the boy's shoes in blue,v_46NS8dT15Hw,v_46NS8dT15Hw_9,5 3381,v_AjqnGUbsduw,stripe,what is the style of the dress that the referee wears in the video,v_AjqnGUbsduw,v_AjqnGUbsduw_6,8 3382,v_eJc8bebOF2A,suit,what is the style of the referee's clothes,v_eJc8bebOF2A,v_eJc8bebOF2A_6,5 3383,v_oT6WUU8-dgs,wood,what is the material of the table in the video,v_oT6WUU8-dgs,v_oT6WUU8-dgs_7,8 3384,v_jt-Vnap5KP4,lattice,what is the pattern of the tablecloth on the table in the video,v_jt-Vnap5KP4,v_jt-Vnap5KP4_7,8 3385,v_BWAedc31WdY,cleanser,what is the third step shown in the video,v_BWAedc31WdY,v_BWAedc31WdY_8,8 3386,v_uM7QSskmloo,cutting machine,what is the tool for pruning branches in the video,v_uM7QSskmloo,v_uM7QSskmloo_10,5 3387,v_eg2s5lOfKGI,air conditioner,what is the top of the clock,v_eg2s5lOfKGI,v_eg2s5lOfKGI_4,1 3388,v_dKJMP8EmZjw,two little funny birds,what is the top of the sailing boat,v_dKJMP8EmZjw,v_dKJMP8EmZjw_4,1 3389,v_UNKf15ALDh8,sapling,what is the top of the soil,v_UNKf15ALDh8,v_UNKf15ALDh8_4,1 3390,v_7UwRRkgQSj4,blonde,what is the top of the staircase,v_7UwRRkgQSj4,v_7UwRRkgQSj4_4,1 3391,v_7BFbmEY3BNw,cave,what is the top of the video at the beginning of the ship,v_7BFbmEY3BNw,v_7BFbmEY3BNw_4,1 3392,v_zA2zZPyYLlU,spider man toy,what is the toy in the video,v_zA2zZPyYLlU,v_zA2zZPyYLlU_8,5 3393,v_U2eN4DbVLfE,male,what is the gender of the two people who wrestle the wrist,v_U2eN4DbVLfE,v_U2eN4DbVLfE_7,8 3394,v_VvsYrfEvvUw,vest,what is the type of clothes that people wear in the video,v_VvsYrfEvvUw,v_VvsYrfEvvUw_10,5 3395,v_KsFid_YVsn0,tango,what is the type of dance in the video,v_KsFid_YVsn0,v_KsFid_YVsn0_6,8 3396,v_HWFosaUWoSI,villa,what is the type of the house in the video,v_HWFosaUWoSI,v_HWFosaUWoSI_8,8 3397,v_zH1MiuiTsx8,wooden boat,what is the underneath of the person in an orange life jacket,v_zH1MiuiTsx8,v_zH1MiuiTsx8_4,1 3398,v_F-Z17rHI_ms,springboard,what is the underneath of the person in the black swimsuit,v_F-Z17rHI_ms,v_F-Z17rHI_ms_4,1 3399,v_QPEAp7nf2Tk,slide,what is the underneath of the person in the striped pants,v_QPEAp7nf2Tk,v_QPEAp7nf2Tk_4,1 3400,v_gNUCdXGxp0w,horse,what is the underneath of the person person wearing a green vest,v_gNUCdXGxp0w,v_gNUCdXGxp0w_4,1 3401,v_lUmjnFf7IPQ,cardboard,what is the underneath of the tramp,v_lUmjnFf7IPQ,v_lUmjnFf7IPQ_4,1 3402,v_2uUNiV8xmEo,grassland,what is the underneath of the contestant,v_2uUNiV8xmEo,v_2uUNiV8xmEo_4,1 3403,v_b6QSzGwI9m4,protective pad,what is the underneath of the elbow,v_b6QSzGwI9m4,v_b6QSzGwI9m4_4,1 3404,v_RXDVJlb97OI,tigers head,what is the upper right corner of the video interface,v_RXDVJlb97OI,v_RXDVJlb97OI_9,5 3405,v_cCDffwsJvsY,plastic bag,what is the charge of the igniter,v_cCDffwsJvsY,v_cCDffwsJvsY_7,5 3406,v_aNsj5OrEGLY,onion,what is the next vegetable when handling tomatoes,v_aNsj5OrEGLY,v_aNsj5OrEGLY_4,1 3407,v_SYh-j9bK_ls,basketball court,what is the venue for the video,v_SYh-j9bK_ls,v_SYh-j9bK_ls_6,6 3408,v_SB0dU5oDvaE,sofa,what is behind the person who wears red clothes at the beginning of the video ,v_SB0dU5oDvaE,v_SB0dU5oDvaE_4,1 3409,v_gWTndmDHZQc,play guitar, what do people who wear black shirts at the beginning of the video,v_gWTndmDHZQc,v_gWTndmDHZQc_1,0 3410,v_zqxzFxya6T8,riding, what are the people wearing green shirts doing at the beginning of the video,v_zqxzFxya6T8,v_zqxzFxya6T8_1,0 3411,v_HowkVy5fOyk,introduction of bullfighting,what is the video talking about,v_HowkVy5fOyk,v_HowkVy5fOyk_9,8 3412,v_diY-XBT5cD4,painting,what is behind the wall in the video,v_diY-XBT5cD4,v_diY-XBT5cD4_4,1 3413,v_dKJMP8EmZjw,clear,what is the weather when sailing,v_dKJMP8EmZjw,v_dKJMP8EmZjw_8,8 3414,v_3Nd3Aai1bVA,sunny,how is the weather during the match,v_3Nd3Aai1bVA,v_3Nd3Aai1bVA_8,8 3415,v_k-I4zLbgdpM,sunny,what is the weather in the place where the two girls perform,v_k-I4zLbgdpM,v_k-I4zLbgdpM_7,8 3416,v_IxaBEVd2PZM,sunny,how is the weather outside the window,v_IxaBEVd2PZM,v_IxaBEVd2PZM_9,8 3417,v_7BFbmEY3BNw,cloudy,what is the weather outside the cave,v_7BFbmEY3BNw,v_7BFbmEY3BNw_10,8 3418,v_hyMqGr0mOfA,paper,what's on the right wall of the man in white,v_hyMqGr0mOfA,v_hyMqGr0mOfA_4,1 3419,v_utgRhyBvtRU,play volleyball,what is the woman in white doing in the video,v_utgRhyBvtRU,v_utgRhyBvtRU_1,0 3420,v_KMK3_VeODlk,game,what is the woman in a pink vest doing,v_KMK3_VeODlk,v_KMK3_VeODlk_1,0 3421,v_G25py7yEVyo,take step,what is the woman in a red skirt doing at the beginning of the vedio,v_G25py7yEVyo,v_G25py7yEVyo_1,0 3422,v_dGT_KGb0gyw,play,what is the woman in a yellow coat doing,v_dGT_KGb0gyw,v_dGT_KGb0gyw_1,0 3423,v_eg2s5lOfKGI,do aerobics,what is the woman in the blue dress doing,v_eg2s5lOfKGI,v_eg2s5lOfKGI_1,0 3424,v_cAiig_569fI,play volleyball,what is the woman in the blue vest doing,v_cAiig_569fI,v_cAiig_569fI_1,0 3425,v_7rwDYzqfGgU,perform,what is the woman in the center of the court doing,v_7rwDYzqfGgU,v_7rwDYzqfGgU_1,0 3426,v_IIPKxzPjrWg,learn diving,what is the woman in the tights doing,v_IIPKxzPjrWg,v_IIPKxzPjrWg_1,0 3427,v_DIVaPURJHPo,short,what is the woman wearing in a white coat doing,v_DIVaPURJHPo,v_DIVaPURJHPo_6,5 3428,v_FPf7mAgdy0I,weave hair,what is the woman with yellow hair doing,v_FPf7mAgdy0I,v_FPf7mAgdy0I_1,0 3429,v_kkji9hespu0,soup spoon,what does the woman have in her right hand when she is cooking,v_kkji9hespu0,v_kkji9hespu0_7,5 3430,v_FnPS6zn5S7M,gymnastics competition,what is the women in a gymnastic suit doing,v_FnPS6zn5S7M,v_FnPS6zn5S7M_1,0 3431,v_ej_fSoVO0R8,english,what is the word on the cake,v_ej_fSoVO0R8,v_ej_fSoVO0R8_9,8 3432,v_Erje-PwY9hE,banana,what is the yellow canoe like,v_Erje-PwY9hE,v_Erje-PwY9hE_8,5 3433,v_Gfu8e6R6jUU,dancing partner,what is their relationship,v_Gfu8e6R6jUU,v_Gfu8e6R6jUU_6,8 3434,v_KXMZHfCwTO0,small house,what is there not far away from the bald man,v_KXMZHfCwTO0,v_KXMZHfCwTO0_9,5 3435,v_oGU7m7rCZ-Y,sax,what is this instrument in the video,v_oGU7m7rCZ-Y,v_oGU7m7rCZ-Y_9,5 3436,v_MonWdYi3a0I,board,what is undef the feet of the person wearing a white dress,v_MonWdYi3a0I,v_MonWdYi3a0I_4,1 3437,v_DUi-hLMpQQo,horse,what's under the girl in the jeans,v_DUi-hLMpQQo,v_DUi-hLMpQQo_4,1 3438,v_M2Y2Cw2kwDo,pool,what's underneath the athlete,v_M2Y2Cw2kwDo,v_M2Y2Cw2kwDo_4,1 3439,v_G_rVqf_hwXw,table,what is under the arm of the man in a grey coat,v_G_rVqf_hwXw,v_G_rVqf_hwXw_4,1 3440,v_IToczVhbOc0,pads,what is under the bald woman's left hand,v_IToczVhbOc0,v_IToczVhbOc0_4,1 3441,v_PD-FXR7O9J0,pool,what is under the bathtub,v_PD-FXR7O9J0,v_PD-FXR7O9J0_4,1 3442,v_EXPYu9bfNcE,workbench,what is under the black dog,v_EXPYu9bfNcE,v_EXPYu9bfNcE_4,1 3443,v_J9KjpzKM8oc,drifting air cushion,what is under the butts of all the people with helmets in the video,v_J9KjpzKM8oc,v_J9KjpzKM8oc_4,1 3444,v_45hcc_VI4t4,pedal,what is under the feet of the girl with yellow hair,v_45hcc_VI4t4,v_45hcc_VI4t4_4,1 3445,v_NDq29HQJVP0,grassland,what is under the feet of the man in white,v_NDq29HQJVP0,v_NDq29HQJVP0_4,1 3446,v_N5Dt3ycaun4,yoga mat,what is under the feet of the person in white,v_N5Dt3ycaun4,v_N5Dt3ycaun4_4,1 3447,v_Jdu5AqaWfz8,bridge frame,what is under the feet of the person with the rope at the beginning,v_Jdu5AqaWfz8,v_Jdu5AqaWfz8_4,1 3448,v_FADShG5lyB8,fitness equipment,what is under the foot of the man,v_FADShG5lyB8,v_FADShG5lyB8_4,1 3449,v_GgnM5RGNtDE,rope,what is under the foot of the man in blue short sleeves,v_GgnM5RGNtDE,v_GgnM5RGNtDE_4,1 3450,v_72_9wLYUDGM,sponge pad,what is under the girl in blue,v_72_9wLYUDGM,v_72_9wLYUDGM_4,1 3451,v_e4kS-n7_LRU,child seat,what is under the girl's body,v_e4kS-n7_LRU,v_e4kS-n7_LRU_4,1 3452,v_CDncYtx6Lwc,paper,what is under the hand,v_CDncYtx6Lwc,v_CDncYtx6Lwc_4,1 3453,v_vBaiedxy1Uw,pool,what is under the mirror,v_vBaiedxy1Uw,v_vBaiedxy1Uw_4,1 3454,v_gZB_XrTnDCI,bicycle,what is under the people in the green clothes,v_gZB_XrTnDCI,v_gZB_XrTnDCI_4,1 3455,v_9UvVeUYQLgA,earth,what is under the people wearing military green clothes,v_9UvVeUYQLgA,v_9UvVeUYQLgA_4,1 3456,v_HJWwqjLf1I4,seaweed,what is under the peoson wearing yellow,v_HJWwqjLf1I4,v_HJWwqjLf1I4_4,1 3457,v_GsPE54bMFwE,skate,what is under the person in black short sleeves,v_GsPE54bMFwE,v_GsPE54bMFwE_4,1 3458,v_Gfu8e6R6jUU,stage,what is under the person with a purple hat,v_Gfu8e6R6jUU,v_Gfu8e6R6jUU_4,1 3459,v_pVoM_kUQ4_E,table,what is under the pumpkin,v_pVoM_kUQ4_E,v_pVoM_kUQ4_E_4,1 3460,v_Oyycph_Ukfg,stool,what is under the sitting person,v_Oyycph_Ukfg,v_Oyycph_Ukfg_4,1 3461,v_lUil9HfTzJ0,surf board,what is under the swimsuit person,v_lUil9HfTzJ0,v_lUil9HfTzJ0_4,1 3462,v_V6Sy8zpJSuc,sealing layer,what is under the tape,v_V6Sy8zpJSuc,v_V6Sy8zpJSuc_4,1 3463,v_VjMMwpgOCPo,gymnastic mat,what is under the uneven bars,v_VjMMwpgOCPo,v_VjMMwpgOCPo_4,1 3464,v_2nDJpvD-eZU,marble,what is under the water tank,v_2nDJpvD-eZU,v_2nDJpvD-eZU_4,1 3465,v_Vhn4SuPhu-0,bed,what is under the white man's body,v_Vhn4SuPhu-0,v_Vhn4SuPhu-0_4,1 3466,v_jDlvGWOdcqU,lifting jack,what is underneath the undersupported car,v_jDlvGWOdcqU,v_jDlvGWOdcqU_4,1 3467,v_eiN5XPmwcEM,necklace,what's on the man's neck,v_eiN5XPmwcEM,v_eiN5XPmwcEM_7,5 3468,v_m731tx8N5-Y,brand,what is wearing on the neck of the man beating a drum,v_m731tx8N5-Y,v_m731tx8N5-Y_6,5 3469,v_vQ82ItCG1x4,sailboat,what kind of ship is the man in blue on,v_vQ82ItCG1x4,v_vQ82ItCG1x4_9,5 3470,v_32vYs9wKXE8,braided hair,what kind of braid is this,v_32vYs9wKXE8,v_32vYs9wKXE8_10,5 3471,v_pPt_fygNjtQ,ponytail,what kind of braid is the man in purple,v_pPt_fygNjtQ,v_pPt_fygNjtQ_6,5 3472,v_TnP6coXzbLY,bicycle,what kind of car are the tyres suitable for in the video,v_TnP6coXzbLY,v_TnP6coXzbLY_9,5 3473,v_CFbkVO5b2g0,stripe,what kind of clothes are the men playing the violin,v_CFbkVO5b2g0,v_CFbkVO5b2g0_8,8 3474,v_1kkc9hDshP4,pink,what kind of clothes are the people on the stage wearing,v_1kkc9hDshP4,v_1kkc9hDshP4_7,4 3475,v_BjjN_aq_wq4,black and white,what kind of clothes are the second people wearing,v_BjjN_aq_wq4,v_BjjN_aq_wq4_6,4 3476,v_CDncYtx6Lwc,dress,what kind of clothes does the lady wear in the video,v_CDncYtx6Lwc,v_CDncYtx6Lwc_10,5 3477,v_eg2s5lOfKGI,dress,what is the dress of the lady in red,v_eg2s5lOfKGI,v_eg2s5lOfKGI_8,5 3478,v_VSsZZZHn1L0,vest,what kind of clothes does the girl wear,v_VSsZZZHn1L0,v_VSsZZZHn1L0_10,5 3479,v_wh6P2C2avqc,vest,what kind of clothes do the exercisers wear,v_wh6P2C2avqc,v_wh6P2C2avqc_8,5 3480,v_dGT_KGb0gyw,black,what kind of coat is the man wearing the wine in his hand,v_dGT_KGb0gyw,v_dGT_KGb0gyw_7,4 3481,v_k--dW53UQWs,take deep breath,what does the fitness person do before they pull the equipment,v_k--dW53UQWs,v_k--dW53UQWs_5,2 3482,v_cYvFlrAnlzA,sunglasses,what kind of glasses are people wearing white clothes,v_cYvFlrAnlzA,v_cYvFlrAnlzA_10,5 3483,v_0mNZfG6CL74,pommeled horse,what kind of gymnastics is the game in the video,v_0mNZfG6CL74,v_0mNZfG6CL74_7,8 3484,v_kpOAGEYHts8,shoulder hair,what kind of hair does this woman have,v_kpOAGEYHts8,v_kpOAGEYHts8_7,8 3485,v_28WDlVOgslg,butterfly,what kind of hairpin is the girl wearing pink,v_28WDlVOgslg,v_28WDlVOgslg_9,5 3486,v_vqyQF-1Zc_E,peaked cap,what kind of hat do girls wear in black,v_vqyQF-1Zc_E,v_vqyQF-1Zc_E_7,5 3487,v_DHjoAOus3xM,white,what kind of hat is the man wearing a pair of pulp,v_DHjoAOus3xM,v_DHjoAOus3xM_8,4 3488,v_e4kS-n7_LRU,sweet canister,what kind of ice cream does the little girl eat,v_e4kS-n7_LRU,v_e4kS-n7_LRU_7,5 3489,v_eQ0sW4hJ9zU,new type lawn mower,what kind of lawn mower is better,v_eQ0sW4hJ9zU,v_eQ0sW4hJ9zU_8,5 3490,v_eiN5XPmwcEM,white,what race is the man,v_eiN5XPmwcEM,v_eiN5XPmwcEM_8,4 3491,v_A9VCuZ53ObQ,wood,what kind of material is the cabinet in the video,v_A9VCuZ53ObQ,v_A9VCuZ53ObQ_9,5 3492,v_fe4r2-Y8k1U,short,what kind of pants do the people wear in a black coat,v_fe4r2-Y8k1U,v_fe4r2-Y8k1U_8,5 3493,v_EETygPQ-j08,jeans,what pants does the blue girl wear,v_EETygPQ-j08,v_EETygPQ-j08_8,5 3494,v_EQrcCmgraa8,white,what kind of race is the woman in pink,v_EQrcCmgraa8,v_EQrcCmgraa8_10,8 3495,v_li_mry59KCM,fixator,what kind of place is the board in,v_li_mry59KCM,v_li_mry59KCM_8,5 3496,v_Ep5LuX_2gfI,scientific research ship,what kind of ship is the ship that appears in the video,v_Ep5LuX_2gfI,v_Ep5LuX_2gfI_10,5 3497,v_w4pO-1-FG5w,sandals,what kind of shoes do the boys wear,v_w4pO-1-FG5w,v_w4pO-1-FG5w_7,5 3498,v_vSv1qMMt4Bk,leather boots,what kind of shoes does the woman with the black hat wear,v_vSv1qMMt4Bk,v_vSv1qMMt4Bk_7,8 3499,v_54TIARWo-S8,three step jump,what kind of sport does it belong to,v_54TIARWo-S8,v_54TIARWo-S8_8,8 3500,v_eVkp83uGf3Y,throw hammer,what kind of sport is the man wearing a red vest,v_eVkp83uGf3Y,v_eVkp83uGf3Y_1,0 3501,v_huFOZ2BiM_k,pommeled horse,what kind of sports belongs to gymnastics,v_huFOZ2BiM_k,v_huFOZ2BiM_k_6,8 3502,v__SJOVswvGRc,blue,what kind of trousers are the children in black,v__SJOVswvGRc,v__SJOVswvGRc_6,4 3503,v_F9FPK6mfh88,white,what kind of trousers are the men in black coats wearing,v_F9FPK6mfh88,v_F9FPK6mfh88_9,4 3504,v_4j_LRkB4T6c,blue shorts,what kind of trousers does the man wearing yellow clothes look like,v_4j_LRkB4T6c,v_4j_LRkB4T6c_9,5 3505,v_9TjPn_ejmFU,pink,what kind of trousers do the children in blue and white stripes wear,v_9TjPn_ejmFU,v_9TjPn_ejmFU_9,4 3506,v_1YU4MSK80cQ,black,what kind of vest does the man wear on parallel bars,v_1YU4MSK80cQ,v_1YU4MSK80cQ_8,4 3507,v_eVkp83uGf3Y,funny video,what kind of video is this,v_eVkp83uGf3Y,v_eVkp83uGf3Y_6,8 3508,v_3PsxzgeMv5w,b,what letter is the beginning of the word on the wall,v_3PsxzgeMv5w,v_3PsxzgeMv5w_7,8 3509,v_A0b_pqaKCX8,glass,what is the material of the cup worn by the person in black,v_A0b_pqaKCX8,v_A0b_pqaKCX8_7,5 3510,v_OUxgs_QlPHE,pvc material,what material is the swimming circle in the video,v_OUxgs_QlPHE,v_OUxgs_QlPHE_9,8 3511,v_7vcihMnmssI,roast fish,what may the man do when he is transferred to a fish,v_7vcihMnmssI,v_7vcihMnmssI_9,8 3512,v_SYh-j9bK_ls,basketball match,what may be playing in the video,v_SYh-j9bK_ls,v_SYh-j9bK_ls_10,8 3513,v_DUi-hLMpQQo,jeans,what pants does the girl wear in black clothes,v_DUi-hLMpQQo,v_DUi-hLMpQQo_9,5 3514,v_e-Xf13exY4E,jeans,what pants does the man wear in black clothes,v_e-Xf13exY4E,v_e-Xf13exY4E_10,5 3515,v_KPRymTsPCC0,no,what plants can be seen in the desert,v_KPRymTsPCC0,v_KPRymTsPCC0_7,3 3516,v_Y05GAiavfOg,sitting,what posture is the person in the video,v_Y05GAiavfOg,v_Y05GAiavfOg_10,5 3517,v_GsPE54bMFwE,summer,what season is in the video,v_GsPE54bMFwE,v_GsPE54bMFwE_7,8 3518,v_WGUzmra3h_w,circular,what shape is the basketball frame,v_WGUzmra3h_w,v_WGUzmra3h_w_10,8 3519,v_wcxEkMoOmBk,circular,what shape is the mirror,v_wcxEkMoOmBk,v_wcxEkMoOmBk_10,5 3520,v_OQEKZXv6jSw,gym shoes,what shoes does the man wear in the video,v_OQEKZXv6jSw,v_OQEKZXv6jSw_9,5 3521,v_aH39BSM0-Ag,gym shoes,what shoes does the man wear in white socks,v_aH39BSM0-Ag,v_aH39BSM0-Ag_6,5 3522,v_n832gDqfWl4,leather shoes,what shoes does the man wipe in the video,v_n832gDqfWl4,v_n832gDqfWl4_6,5 3523,v_N75m1Z4RqbA,leather shoes,what shoes do the boy wear in black,v_N75m1Z4RqbA,v_N75m1Z4RqbA_10,8 3524,v_EPsSfOEd3BU,pole vault,what sports are there on the playground,v_EPsSfOEd3BU,v_EPsSfOEd3BU_10,8 3525,v_hvrKRg166eQ,cheerleading,what sports do the news mainly introduce,v_hvrKRg166eQ,v_hvrKRg166eQ_9,5 3526,v_N9VOdVOiPNM,spider,what tattoos are there in the neck of people wearing blue stripes,v_N9VOdVOiPNM,v_N9VOdVOiPNM_9,8 3527,v_NjXCZYO3zwU,black,what color of clothes do people wear in the video,v_NjXCZYO3zwU,v_NjXCZYO3zwU_6,4 3528,v_fbr7v8RMkf8,evening,what time does skiing take place,v_fbr7v8RMkf8,v_fbr7v8RMkf8_6,8 3529,v_eQwLUJ3P7wI,afternoon,what time does this video capture in a day,v_eQwLUJ3P7wI,v_eQwLUJ3P7wI_10,8 3530,v_Dd5yTxwKzXw,hair drier,what tools are used in the video,v_Dd5yTxwKzXw,v_Dd5yTxwKzXw_8,5 3531,v_BmL2XGNrxc4,axe,what tools do the people use to split the wood in the video,v_BmL2XGNrxc4,v_BmL2XGNrxc4_6,5 3532,v_i8hNrK3r_MY,movement type,what type of bicycle is in the video,v_i8hNrK3r_MY,v_i8hNrK3r_MY_10,8 3533,v_fLR-b-FDjlM,racing moto,what type of play is playing,v_fLR-b-FDjlM,v_fLR-b-FDjlM_8,8 3534,v_zA2zZPyYLlU,remote control boat,what type of ship is it in the video,v_zA2zZPyYLlU,v_zA2zZPyYLlU_9,5 3535,v_EPsSfOEd3BU,audience,hat is the front of the female athlete at the beginning of the video,v_EPsSfOEd3BU,v_EPsSfOEd3BU_4,1 3536,v_6G8m-vsGTA8,table,what is the person with the camera before the start,v_6G8m-vsGTA8,v_6G8m-vsGTA8_4,1 3537,v_cAiig_569fI,day,when did the woman in blue vest play volleyball,v_cAiig_569fI,v_cAiig_569fI_8,8 3538,v_sEcXR5b8HyY,2012,when is the game in the prelude,v_sEcXR5b8HyY,v_sEcXR5b8HyY_6,8 3539,v_m73Cod-PmMQ,winter,when is the season for the video,v_m73Cod-PmMQ,v_m73Cod-PmMQ_6,8 3540,v_E_UkQGk7QAE,afternoon,when is the skiing period of the day,v_E_UkQGk7QAE,v_E_UkQGk7QAE_10,8 3541,v_i6wR9_tkg6A,halloween,when is the watermelon light used in the video,v_i6wR9_tkg6A,v_i6wR9_tkg6A_10,8 3542,v_ECZb_tQZ4Pg,casinos,where are the boys in black playing cards,v_ECZb_tQZ4Pg,v_ECZb_tQZ4Pg_10,6 3543,v_dHKeNK1uWUg,carpet,where is the man in red sitting,v_dHKeNK1uWUg,v_dHKeNK1uWUg_9,6 3544,v_cYvFlrAnlzA,home,where are the four people playing the game in the video,v_cYvFlrAnlzA,v_cYvFlrAnlzA_8,6 3545,v_iKclcQEl4zI,indoor,where are the girls in the orange dress,v_iKclcQEl4zI,v_iKclcQEl4zI_6,6 3546,v_iZT4XgzUHm4,track,where are the helmets of the people riding a bicycle,v_iZT4XgzUHm4,v_iZT4XgzUHm4_6,6 3547,v_UNKf15ALDh8,field,where are the long haired women planting trees,v_UNKf15ALDh8,v_UNKf15ALDh8_6,6 3548,v_iqyc2JM0uIU,indoor,where does the red man drink,v_iqyc2JM0uIU,v_iqyc2JM0uIU_10,6 3549,v_a2IvS0xbNGQ,park,where are the people in orange,v_a2IvS0xbNGQ,v_a2IvS0xbNGQ_8,6 3550,v__SJOVswvGRc,grass,where are the people in red kicks playing,v__SJOVswvGRc,v__SJOVswvGRc_9,6 3551,v_KZ1NEffR2Qg,park path,where are the people in red pants skipping,v_KZ1NEffR2Qg,v_KZ1NEffR2Qg_6,6 3552,v_ldAHwbF8uWI,table,where are the people in red wrenches,v_ldAHwbF8uWI,v_ldAHwbF8uWI_7,6 3553,v_UzmsAb15Bso,road,where are the people in the video on the skateboard,v_UzmsAb15Bso,v_UzmsAb15Bso_6,6 3554,v_WXH-Tj0-g4w,outdoor,where are the places to be photographed,v_WXH-Tj0-g4w,v_WXH-Tj0-g4w_8,6 3555,v_Ep5LuX_2gfI,board,where did the diver come up from the sea,v_Ep5LuX_2gfI,v_Ep5LuX_2gfI_5,2 3556,v_kistIwzeQOU,roof,where did the man in white put the wall cloth,v_kistIwzeQOU,v_kistIwzeQOU_9,6 3557,v_li_mry59KCM,table,where did the man put the tools on board last,v_li_mry59KCM,v_li_mry59KCM_10,6 3558,v_bBRzBh0gAZQ,bunker,where did the participants drop in after their takeoff,v_bBRzBh0gAZQ,v_bBRzBh0gAZQ_6,6 3559,v_-crpjVnFv0U,stage,where did the people dance in the video,v_-crpjVnFv0U,v_-crpjVnFv0U_10,6 3560,v_cCDffwsJvsY,grassland,where did the people live in the video,v_cCDffwsJvsY,v_cCDffwsJvsY_8,6 3561,v_vFO70WwrQgE,parking lot,where did the people wearing red pants start dancing at the beginning of the video,v_vFO70WwrQgE,v_vFO70WwrQgE_6,6 3562,v_cQgP0-Id-p4,indoor,where did the two people break their wrists in the video,v_cQgP0-Id-p4,v_cQgP0-Id-p4_10,6 3563,v_Ko7Nt8UDP4Q,bread machine,where did they put the bread,v_Ko7Nt8UDP4Q,v_Ko7Nt8UDP4Q_10,8 3564,v_iuXjatyFcwo,gym,where is the man wearing blue shorts lifting weight,v_iuXjatyFcwo,v_iuXjatyFcwo_6,6 3565,v_d_A-ylxNbFU,home,where does the man drink wine in the video,v_d_A-ylxNbFU,v_d_A-ylxNbFU_8,6 3566,v_UNXLfqkwKFc,indoor,where does the man in blue shorts use a vacuum cleaner,v_UNXLfqkwKFc,v_UNXLfqkwKFc_6,6 3567,v_cTxVTEzQDr8,road,where does the man in sunglasses play skateboards,v_cTxVTEzQDr8,v_cTxVTEzQDr8_7,6 3568,v_cVFVREeD6hM,yard,where does the man in the video be greening,v_cVFVREeD6hM,v_cVFVREeD6hM_9,6 3569,v_zEttEkAdHts,indoor,where does the man make wrapping paper in video,v_zEttEkAdHts,v_zEttEkAdHts_10,6 3570,v_qGtUXGG78tM,outdoor,where does the man with dark blue pants trim their trees,v_qGtUXGG78tM,v_qGtUXGG78tM_9,6 3571,v_k--dW53UQWs,gym,where do the bodybuilding people work out,v_k--dW53UQWs,v_k--dW53UQWs_8,6 3572,v_e0yu4WgiZUM,swimming pool,where do the boys swim,v_e0yu4WgiZUM,v_e0yu4WgiZUM_10,6 3573,v_Ki1bs5X_S5k,park,where do the children play,v_Ki1bs5X_S5k,v_Ki1bs5X_S5k_6,6 3574,v_EBw5-KVV_PU,stage,where do the girls dance,v_EBw5-KVV_PU,v_EBw5-KVV_PU_10,6 3575,v_IxaBEVd2PZM,indoor,where do the girls with the long pigtails dance ballet,v_IxaBEVd2PZM,v_IxaBEVd2PZM_6,6 3576,v_CwImmV7q1MY,home,where do the men play the harmonica in the video,v_CwImmV7q1MY,v_CwImmV7q1MY_6,6 3577,v_cnMvMvVBXiI,workshop,where do the people in black repair the tires,v_cnMvMvVBXiI,v_cnMvMvVBXiI_6,6 3578,v_iQnnCZTl_7U,kitchen,where do the young men make a cake,v_iQnnCZTl_7U,v_iQnnCZTl_7U_10,6 3579,v_FmfAB-ppHBs,living room,where do they smoke,v_FmfAB-ppHBs,v_FmfAB-ppHBs_9,6 3580,v_12Nafz_Yet4,outdoor,where does boxing happen,v_12Nafz_Yet4,v_12Nafz_Yet4_10,6 3581,v_er5jUsRr4y0,toilet,where does it happen,v_er5jUsRr4y0,v_er5jUsRr4y0_7,6 3582,v_cK0-WcGXacQ,court,where does the black dress throw the discus,v_cK0-WcGXacQ,v_cK0-WcGXacQ_7,6 3583,v_dZsk5Dp_5FE,wood,where does the child split the wood,v_dZsk5Dp_5FE,v_dZsk5Dp_5FE_7,6 3584,v_e4kS-n7_LRU,car,where does the little girl eat ice cream,v_e4kS-n7_LRU,v_e4kS-n7_LRU_8,6 3585,v_laU1Hvm5Dis,meadow,where does the man practice the ball,v_laU1Hvm5Dis,v_laU1Hvm5Dis_9,6 3586,v_IGT0dIKDGCw,grass,where does the man with a hat fly the frisbee,v_IGT0dIKDGCw,v_IGT0dIKDGCw_6,6 3587,v_jt-Vnap5KP4,vehicle,where does the old man sit in the video,v_jt-Vnap5KP4,v_jt-Vnap5KP4_8,6 3588,v_dKJMP8EmZjw,seaside,where does the sailing take place,v_dKJMP8EmZjw,v_dKJMP8EmZjw_9,6 3589,v_vBOFzuS-Djo,swimming pool,where does the short - hair baby dive,v_vBOFzuS-Djo,v_vBOFzuS-Djo_6,6 3590,v_Es3PxD9oi4I,swimming pool,where does the sport go on,v_Es3PxD9oi4I,v_Es3PxD9oi4I_6,6 3591,v_KMK3_VeODlk,basketball court,where does the woman in a pink vest make the game,v_KMK3_VeODlk,v_KMK3_VeODlk_6,6 3592,v_FxpP7lqvm30,street,where does this sports match happen,v_FxpP7lqvm30,v_FxpP7lqvm30_9,6 3593,v_laU1Hvm5Dis,circle,where has this man been around,v_laU1Hvm5Dis,v_laU1Hvm5Dis_6,6 3594,v_-EIsT868Trw,railway bridge,where is the bungee jumping,v_-EIsT868Trw,v_-EIsT868Trw_7,6 3595,v_OccEAILrU7M,court,where is in the video,v_OccEAILrU7M,v_OccEAILrU7M_7,6 3596,v__a527xEzhkw,home,where is she in the video,v__a527xEzhkw,v__a527xEzhkw_6,6 3597,v_IToczVhbOc0,indoor,where is the bald woman,v_IToczVhbOc0,v_IToczVhbOc0_6,6 3598,v_FtRGOgg0Qh8,bedroom,where is the bike riding,v_FtRGOgg0Qh8,v_FtRGOgg0Qh8_9,6 3599,v_iixZLnyLuN8,indoor,where is the black hair girl eating the canister,v_iixZLnyLuN8,v_iixZLnyLuN8_6,6 3600,v_fQ1OuD7x3to,home,where is the black man wiping the glass in the video,v_fQ1OuD7x3to,v_fQ1OuD7x3to_9,6 3601,v_Ki13JIVwMdk,indoor,where is the black-and-white dog,v_Ki13JIVwMdk,v_Ki13JIVwMdk_6,6 3602,v_IsV1n_kLpvs,outdoor,where is the blonde man,v_IsV1n_kLpvs,v_IsV1n_kLpvs_6,6 3603,v_9TjPn_ejmFU,ground,where is the child wearing blue and white stripes,v_9TjPn_ejmFU,v_9TjPn_ejmFU_10,6 3604,v_9TjPn_ejmFU,outdoor,where is the child with blue and white stripes,v_9TjPn_ejmFU,v_9TjPn_ejmFU_7,6 3605,v_qlK-c7hRqcA,suburb,where is the closest place to fight in the video,v_qlK-c7hRqcA,v_qlK-c7hRqcA_7,6 3606,v_dHKeNK1uWUg,basket,where is the cobra,v_dHKeNK1uWUg,v_dHKeNK1uWUg_7,6 3607,v_v6DdLg_Xnkg,indoor,where is the curly hair woman in the video,v_v6DdLg_Xnkg,v_v6DdLg_Xnkg_6,6 3608,v_9eniCub7u60,room,where is the dancing field,v_9eniCub7u60,v_9eniCub7u60_7,6 3609,v_uJAL31wAD2A,river,where is the drift in the video,v_uJAL31wAD2A,v_uJAL31wAD2A_8,6 3610,v_TtewPltwuXw,home,where is the flute in the video,v_TtewPltwuXw,v_TtewPltwuXw_10,6 3611,v_fvEaC-fTR4A,indoor,where is the football match on the table,v_fvEaC-fTR4A,v_fvEaC-fTR4A_9,6 3612,v__G4EVIG9YaE,tree,where is the girl in the video,v__G4EVIG9YaE,v__G4EVIG9YaE_7,6 3613,v_VfhDSTKBwgc,bedroom,where is the grey coat man,v_VfhDSTKBwgc,v_VfhDSTKBwgc_6,6 3614,v_L5IbDi09Yb4,board,where is the light,v_L5IbDi09Yb4,v_L5IbDi09Yb4_6,6 3615,v_Co_cpZWbzFk,beach,where is the location of playing football in the video,v_Co_cpZWbzFk,v_Co_cpZWbzFk_10,6 3616,v_H9PaZiWLgXU,kitchen,where is the location of the cocktail,v_H9PaZiWLgXU,v_H9PaZiWLgXU_10,6 3617,v_hyMqGr0mOfA,restaurant,where is the location of the dart in the video,v_hyMqGr0mOfA,v_hyMqGr0mOfA_9,6 3618,v_uJ4OZfCjViM,doorway,where is the location of the deciduous video in the video,v_uJ4OZfCjViM,v_uJ4OZfCjViM_10,6 3619,v_9UvVeUYQLgA,training ground,where is the location of the field shooting,v_9UvVeUYQLgA,v_9UvVeUYQLgA_10,6 3620,v_udSHsodv3gY,horse yard,where is the location of the horse in the video,v_udSHsodv3gY,v_udSHsodv3gY_10,6 3621,v_v-UmNR5yeDc,bar,where is the location of the referee,v_v-UmNR5yeDc,v_v-UmNR5yeDc_8,6 3622,v_0e7d39SwHCA,road,where is the location of the skateboard in the video,v_0e7d39SwHCA,v_0e7d39SwHCA_9,6 3623,v_u_vLZxgO9Rw,gym,where is the location of the skipping rope in the video,v_u_vLZxgO9Rw,v_u_vLZxgO9Rw_9,6 3624,v_0iqx7o5WYW8,swimming pool,where is the location of the sport,v_0iqx7o5WYW8,v_0iqx7o5WYW8_8,6 3625,v_P2xT7dlyX8Y,opera,where is the location of the video,v_P2xT7dlyX8Y,v_P2xT7dlyX8Y_8,6 3626,v_tRFK1BMKaRo,gym,where is the location of the weightlifting in the video,v_tRFK1BMKaRo,v_tRFK1BMKaRo_9,6 3627,v_I16FTpQQiic,park,where is the location to strap the rope skipping in the video,v_I16FTpQQiic,v_I16FTpQQiic_9,6 3628,v_vBaiedxy1Uw,shower room,where is the long hair girl in the video,v_vBaiedxy1Uw,v_vBaiedxy1Uw_6,6 3629,v_8teo_0gxzgk,car,where is the long hair man sitting,v_8teo_0gxzgk,v_8teo_0gxzgk_8,6 3630,v_UvOEuhS0V3E,indoor,where is the long hair woman smear the lipstick,v_UvOEuhS0V3E,v_UvOEuhS0V3E_6,6 3631,v_ut1AoOzqL4k,track and field ground,where is the man in a black vest in the long jump,v_ut1AoOzqL4k,v_ut1AoOzqL4k_6,6 3632,v_df5rlVZD0Zc,field,where is the man in a red coat running,v_df5rlVZD0Zc,v_df5rlVZD0Zc_9,6 3633,v_eVkp83uGf3Y,sports meeting,where is the man in a red vest,v_eVkp83uGf3Y,v_eVkp83uGf3Y_7,6 3634,v_VjMMwpgOCPo,gym,where is the man in black and white,v_VjMMwpgOCPo,v_VjMMwpgOCPo_6,6 3635,v_YvPoAOrjX5I,tennis court,where is the man in the blue dress,v_YvPoAOrjX5I,v_YvPoAOrjX5I_7,6 3636,v_uWfQcDvel84,outdoor,where is the man in the hat weeding,v_uWfQcDvel84,v_uWfQcDvel84_6,6 3637,v_Ye_uVlSo1HI,outdoor,where is the man in the striped dress,v_Ye_uVlSo1HI,v_Ye_uVlSo1HI_7,6 3638,v_EDDbcCBnTQM,lawn,where is the man standing,v_EDDbcCBnTQM,v_EDDbcCBnTQM_8,6 3639,v_V2UitlmX7Uo,subway,where is the man standing in the video,v_V2UitlmX7Uo,v_V2UitlmX7Uo_6,6 3640,v_wCexKIuAj3A,studio,where is the man wearing a black suit,v_wCexKIuAj3A,v_wCexKIuAj3A_7,6 3641,v_V08Q-DbT0GQ,kitchen,where is the man who wears glasses in the video,v_V08Q-DbT0GQ,v_V08Q-DbT0GQ_6,6 3642,v_IGPZFun1Ok4,indoor,where is the man with a hat gambling,v_IGPZFun1Ok4,v_IGPZFun1Ok4_6,6 3643,v_KWpATsiXF_M,bullring,where is the man with a stick in bullfighting in the field,v_KWpATsiXF_M,v_KWpATsiXF_M_9,6 3644,v_DOI6tsATsE4,head,where is the man's right hand in black,v_DOI6tsATsE4,v_DOI6tsATsE4_9,5 3645,v_v6P6bBPBXYw,indoor,where is the number 1 man in the video,v_v6P6bBPBXYw,v_v6P6bBPBXYw_6,6 3646,v_V-46E7jMm-Y,field,where is the old man wearing a black dress in the video,v_V-46E7jMm-Y,v_V-46E7jMm-Y_6,6 3647,v_OcL7ZhBCkxQ,road,where is the person in black pants,v_OcL7ZhBCkxQ,v_OcL7ZhBCkxQ_8,6 3648,v_oGU7m7rCZ-Y,road,where is the person in the blue coat,v_oGU7m7rCZ-Y,v_oGU7m7rCZ-Y_8,6 3649,v_OlR9S70AA74,sea,where is the person in the green pants,v_OlR9S70AA74,v_OlR9S70AA74_6,6 3650,v_oflwFZj9PNY,gym,where is the person in the red and black dress,v_oflwFZj9PNY,v_oflwFZj9PNY_7,6 3651,v_nP1Bk-vJgVg,cudgel court,where is the person in the white shirt,v_nP1Bk-vJgVg,v_nP1Bk-vJgVg_8,6 3652,v_uw9x69DT8_g,home,where is the person running in the video,v_uw9x69DT8_g,v_uw9x69DT8_g_7,6 3653,v_V6Sy8zpJSuc,indoor,where is the person wearing a hat in the video,v_V6Sy8zpJSuc,v_V6Sy8zpJSuc_6,6 3654,v_V9mLJJn8Lvw,indoor,where is the person wearing a sweater in the video,v_V9mLJJn8Lvw,v_V9mLJJn8Lvw_6,6 3655,v_aH39BSM0-Ag,court,where is the person wearing a white hat on the field,v_aH39BSM0-Ag,v_aH39BSM0-Ag_9,6 3656,v_NNiJfr_ChH4,runway,where is the person wearing black shorts,v_NNiJfr_ChH4,v_NNiJfr_ChH4_7,6 3657,v_kPn9NzU4W48,basketball court,where is the person wearing the red and white shoes,v_kPn9NzU4W48,v_kPn9NzU4W48_8,6 3658,v_W9H2qVnIWXs,bathroom,where is the place for a dog to take a bath,v_W9H2qVnIWXs,v_W9H2qVnIWXs_7,6 3659,v_0lbv0AE5gJQ,outdoor,where is the place for the man to wash the clothes in the video,v_0lbv0AE5gJQ,v_0lbv0AE5gJQ_10,6 3660,v_I3tqWc5wG78,indoor,where is the place for the party,v_I3tqWc5wG78,v_I3tqWc5wG78_8,6 3661,v_I2XqSiNerwg,square,where is the place the white-haired person performing,v_I2XqSiNerwg,v_I2XqSiNerwg_7,6 3662,v_i8hNrK3r_MY,bicycle shop,where is the place to assemble the bicycle in the video,v_i8hNrK3r_MY,v_i8hNrK3r_MY_8,6 3663,v_Uae2MWoldTU,home,where is the place to assemble the christmas tree in the video,v_Uae2MWoldTU,v_Uae2MWoldTU_10,6 3664,v_TnP6coXzbLY,bicycle shop,where is the place to assemble the tyres in the video,v_TnP6coXzbLY,v_TnP6coXzbLY_10,6 3665,v_u0Dc0ZtudXY,gym,where is the place to do gymnastics in the video,v_u0Dc0ZtudXY,v_u0Dc0ZtudXY_9,6 3666,v_uLsq6gQXQPM,mountain,where is the place to play the slide in the video,v_uLsq6gQXQPM,v_uLsq6gQXQPM_9,6 3667,v_CKSlgK_2FP4,kitchen,where is the place where a white man is located,v_CKSlgK_2FP4,v_CKSlgK_2FP4_7,6 3668,v_hvrKRg166eQ,guide room,where is the place where the host is located,v_hvrKRg166eQ,v_hvrKRg166eQ_8,6 3669,v_i6wR9_tkg6A,kitchen,where is the place where the man in the green clothes makes the light,v_i6wR9_tkg6A,v_i6wR9_tkg6A_9,6 3670,v_i5qTK0mInTc,living room,where is the place where the people in the yellow clothes look at the tv,v_i5qTK0mInTc,v_i5qTK0mInTc_8,6 3671,v_fLR-b-FDjlM,prairie track,where is the playground,v_fLR-b-FDjlM,v_fLR-b-FDjlM_10,6 3672,v_uty4eGb_vvU,lakeside,where is the red dress woman dancing the tai chi sword,v_uty4eGb_vvU,v_uty4eGb_vvU_6,6 3673,v_IMMoglaJ3RY,lawn,where is the short hair man standing,v_IMMoglaJ3RY,v_IMMoglaJ3RY_6,6 3674,v_AtbTioB1_Kw,playground,where is the training field in the video,v_AtbTioB1_Kw,v_AtbTioB1_Kw_9,6 3675,v_3LwQ2yq85LU,seaside,where is the video shot,v_3LwQ2yq85LU,v_3LwQ2yq85LU_10,6 3676,v_d6gGZFQOxOg,indoor,where is the weightlifting of the people in the video,v_d6gGZFQOxOg,v_d6gGZFQOxOg_6,6 3677,v_ivAvKRQQy1Q,kitchen,where is the white man in the video,v_ivAvKRQQy1Q,v_ivAvKRQQy1Q_6,6 3678,v_vezvHLPR3P0,stadium,where is the white woman throwing the hammer,v_vezvHLPR3P0,v_vezvHLPR3P0_6,6 3679,v_IIPKxzPjrWg,swimming pool,where is the woman in a tight suit diving,v_IIPKxzPjrWg,v_IIPKxzPjrWg_6,6 3680,v_cAiig_569fI,sandy beach,where is the woman in the blue vest playing volleyball,v_cAiig_569fI,v_cAiig_569fI_6,6 3681,v_iuc48VIWLJY,snowfield,where is the woman in the purple coat,v_iuc48VIWLJY,v_iuc48VIWLJY_6,6 3682,v_Db9VWkgMpbE,gym,where is the woman in the video,v_Db9VWkgMpbE,v_Db9VWkgMpbE_8,6 3683,v_utgRhyBvtRU,outdoor,where is the woman in white,v_utgRhyBvtRU,v_utgRhyBvtRU_6,6 3684,v_VFC-V06hVj0,camel,where is the woman sitting on,v_VFC-V06hVj0,v_VFC-V06hVj0_6,6 3685,v_ILmZg0vz0Hg,indoor,where is the woman with glasses,v_ILmZg0vz0Hg,v_ILmZg0vz0Hg_6,6 3686,v_DTI__3fkSzM,in street,where could the woman be,v_DTI__3fkSzM,v_DTI__3fkSzM_6,6 3687,v_fEBM3nPMen8,seabed,where may the diver be,v_fEBM3nPMen8,v_fEBM3nPMen8_6,6 3688,v_1PNjVTM0Zto,aged,what age range is tai chi popular in china,v_1PNjVTM0Zto,v_1PNjVTM0Zto_10,8 3689,v_eMgC7I-GcgA,tropic,which climate zone is the most likely place in the video,v_eMgC7I-GcgA,v_eMgC7I-GcgA_9,8 3690,v_nkWMBJC2Qec,japan,which country is the person in black,v_nkWMBJC2Qec,v_nkWMBJC2Qec_8,8 3691,v_bBRzBh0gAZQ,srb,which country won the first place in the rankings,v_bBRzBh0gAZQ,v_bBRzBh0gAZQ_9,8 3692,v_diY-XBT5cD4,left eye,which eye is the person wearing first in the video,v_diY-XBT5cD4,v_diY-XBT5cD4_7,5 3693,v_b0qGo-HT5iQ,right eye,whose eye is wearing contact lenses,v_b0qGo-HT5iQ,v_b0qGo-HT5iQ_8,5 3694,v_Feq-2NIDl94,thumb,which finger is the first bag to use,v_Feq-2NIDl94,v_Feq-2NIDl94_9,5 3695,v_KXcVYfMuUGw,ones right hand,which hand does this man ues to throw the plate,v_KXcVYfMuUGw,v_KXcVYfMuUGw_9,8 3696,v_lUmjnFf7IPQ,left hand,which hand wears the hand ring on the man in black,v_lUmjnFf7IPQ,v_lUmjnFf7IPQ_10,5 3697,v_kYkvyRKxwfY,ones right hand,which hand of the man in white is playing table tennis,v_kYkvyRKxwfY,v_kYkvyRKxwfY_10,5 3698,v_3JBUWRKezUI,left,which hand of the man is the sucker on the hand of spiderman,v_3JBUWRKezUI,v_3JBUWRKezUI_6,8 3699,v_BFChXuwZ4wo,left,which hand of the man is tattooed on a grey vest,v_BFChXuwZ4wo,v_BFChXuwZ4wo_9,8 3700,v_f1d7_TKXNYQ,ones right hand,which hand is the javelin used by an athlete,v_f1d7_TKXNYQ,v_f1d7_TKXNYQ_8,5 3701,v_YRGiRmcHdUY,ones right hand,which hand of the man is the knife in the video,v_YRGiRmcHdUY,v_YRGiRmcHdUY_10,8 3702,v_Pv4FwH2TC6Y,left hand,which hand of the lady is wearing a ring,v_Pv4FwH2TC6Y,v_Pv4FwH2TC6Y_10,8 3703,v_5nu47s7JrfY,left,which hand is the person wearing the ring in the video,v_5nu47s7JrfY,v_5nu47s7JrfY_8,8 3704,v_a4gI4LC1rJk,left hand,which hand is the person with a knife in the video,v_a4gI4LC1rJk,v_a4gI4LC1rJk_6,8 3705,v_0lbv0AE5gJQ,left,which hand of the man is unhealthy in the video,v_0lbv0AE5gJQ,v_0lbv0AE5gJQ_7,8 3706,v_2nDJpvD-eZU,right,which hand is used with a peeler in the video,v_2nDJpvD-eZU,v_2nDJpvD-eZU_7,8 3707,v_3nSOFmmA7FU,right,which hand of the man is wearing a ring,v_3nSOFmmA7FU,v_3nSOFmmA7FU_6,8 3708,v_sRNqK_QZbMs,left hand,which hand is wearing a watch on the coach,v_sRNqK_QZbMs,v_sRNqK_QZbMs_6,5 3709,v_3i3SUPsyZtA,left,which hand of the chef is wearing a watch,v_3i3SUPsyZtA,v_3i3SUPsyZtA_8,8 3710,v_LvTwJTvluHE,left hand,which hand of the people in the green swimming trunks wears a watch,v_LvTwJTvluHE,v_LvTwJTvluHE_6,8 3711,v_LsVCwr6qPmY,left hand,which hand of the person in blue is wearing a watch,v_LsVCwr6qPmY,v_LsVCwr6qPmY_8,8 3712,v_LWt2FuU0uC4,ones right hand,which hand of the referee is holding a flag,v_LWt2FuU0uC4,v_LWt2FuU0uC4_10,8 3713,v_b6QSzGwI9m4,ones right hand,which hand is the one with the decorations on,v_b6QSzGwI9m4,v_b6QSzGwI9m4_9,5 3714,v_StGxFfLiYNU,right hand,which hand of the man on the spot wears a bracelet,v_StGxFfLiYNU,v_StGxFfLiYNU_7,8 3715,v_pVoM_kUQ4_E,left hand,which hand wears gloves when the blue man performs,v_pVoM_kUQ4_E,v_pVoM_kUQ4_E_9,5 3716,v_Feq-2NIDl94,left,which hand's fingernails have been dyed,v_Feq-2NIDl94,v_Feq-2NIDl94_6,8 3717,v_pmmQuksmTvw,ger,which is the first country on the list,v_pmmQuksmTvw,v_pmmQuksmTvw_8,8 3718,v_BjjN_aq_wq4,leather gloves,what kind of gloves are the first people to wear gloves to wash the dishes,v_BjjN_aq_wq4,v_BjjN_aq_wq4_7,5 3719,v_u0Dc0ZtudXY,balance beam,which kind of gymnastics is the sport in the video,v_u0Dc0ZtudXY,v_u0Dc0ZtudXY_8,8 3720,v_FWZ6wgaJ_L4,left,which hand of the man in blue is wearing a watch,v_FWZ6wgaJ_L4,v_FWZ6wgaJ_L4_10,8 3721,v_kTqt7ry3eVM,second dives,which one is the second,v_kTqt7ry3eVM,v_kTqt7ry3eVM_8,8 3722,v_sNTOUuE7ZfM,left hand,which one is the man wearing a wrist watch with a tie,v_sNTOUuE7ZfM,v_sNTOUuE7ZfM_6,5 3723,v_I9ficvPdpZg,white,which pigment used firstlly by the person in white clothes,v_I9ficvPdpZg,v_I9ficvPdpZg_10,4 3724,v_CuLC5G7yWxA,bedroom,which room is a wallpaper for a woman in the video,v_CuLC5G7yWxA,v_CuLC5G7yWxA_10,6 3725,v_7UwRRkgQSj4,right,which shoe is not a pair of shoelaces for the blonde woman,v_7UwRRkgQSj4,v_7UwRRkgQSj4_10,8 3726,v_KT8DUDFc3Xg,left foot,which shoes are the shoes that are wiped,v_KT8DUDFc3Xg,v_KT8DUDFc3Xg_8,8 3727,v_1lwG-y_QCkc,right,which side of the trousers is hung with the key,v_1lwG-y_QCkc,v_1lwG-y_QCkc_10,8 3728,v_Ki1bs5X_S5k,her father,who is playing with the child,v_Ki1bs5X_S5k,v_Ki1bs5X_S5k_10,8 3729,v_dHKeNK1uWUg,india,who is the man in the video,v_dHKeNK1uWUg,v_dHKeNK1uWUg_10,8 3730,v_kyx4MMmBr3A,silverware,who is the person who arrives at the end of the line,v_kyx4MMmBr3A,v_kyx4MMmBr3A_8,8 3731,v__l251ZuOCYU,red jersey,who received the ball after the referee's service,v__l251ZuOCYU,v__l251ZuOCYU_6,8 3732,v_er5jUsRr4y0,blonde man,who wears glasses,v_er5jUsRr4y0,v_er5jUsRr4y0_6,8 3733,v_cQgP0-Id-p4,woman,who won the two wrists in the video,v_cQgP0-Id-p4,v_cQgP0-Id-p4_6,8 3734,v_03c6QhTMDSs,ring finger,whose finger of the left hand wears a ring,v_03c6QhTMDSs,v_03c6QhTMDSs_10,5 3735,v_7vcihMnmssI,catch fish,why are four men happy in the video,v_7vcihMnmssI,v_7vcihMnmssI_8,8 3736,v_8kaQq1mR2ys,dive,why are long hair women's hair wet,v_8kaQq1mR2ys,v_8kaQq1mR2ys_8,8 3737,v_mSR-HpiJ0No,pregnant,why does the man in red have big stomachs,v_mSR-HpiJ0No,v_mSR-HpiJ0No_7,8 3738,v_yGTIEmZ7S2w,to throw far away,why are the man running in the video,v_yGTIEmZ7S2w,v_yGTIEmZ7S2w_6,8 3739,v_fSBX-gjPblw,motion,why are the man shooting in the video,v_fSBX-gjPblw,v_fSBX-gjPblw_6,8 3740,v_afMQA352X_A,sparring,why are the man wearing camouflages defended,v_afMQA352X_A,v_afMQA352X_A_10,8 3741,v_VJh9W3Gcpmo,match,why are the man wearing red clothes playing drums,v_VJh9W3Gcpmo,v_VJh9W3Gcpmo_9,8 3742,v_YMOYyt3kSOs,to throw shot,why are the man wearing white clothes around,v_YMOYyt3kSOs,v_YMOYyt3kSOs_6,8 3743,v_nYl_tYmijlM,be happy with drum,why are the man wearing white clothes immersed in it,v_nYl_tYmijlM,v_nYl_tYmijlM_7,8 3744,v_AguxVxEWEs0,fight,why are the man wrestling in the video,v_AguxVxEWEs0,v_AguxVxEWEs0_6,8 3745,v_9k19UUJtldg,happy,why are so many people playing,v_9k19UUJtldg,v_9k19UUJtldg_8,8 3746,v_7dXqXFoju2M,get rid of blues,why are the long hair women drinking,v_7dXqXFoju2M,v_7dXqXFoju2M_8,8 3747,v_Y_nyVFn70Lk,in washing up,why are the people in green standing in front of the sink,v_Y_nyVFn70Lk,v_Y_nyVFn70Lk_6,8 3748,v__QBTD1bLSI0,some water on hands,why are the people in white wiping their hands,v__QBTD1bLSI0,v__QBTD1bLSI0_7,8 3749,v_a2IvS0xbNGQ,wear jump shoes,why are the people wearing orange rotations in the air,v_a2IvS0xbNGQ,v_a2IvS0xbNGQ_6,8 3750,v_A9VCuZ53ObQ,in fight,why are the two people falling down in the video,v_A9VCuZ53ObQ,v_A9VCuZ53ObQ_6,8 3751,v_8IrulONeC28,match,why are the two people in the video pushing the round,v_8IrulONeC28,v_8IrulONeC28_10,5 3752,v_7lxP-hWFA24,play,why are there so many people in the park,v_7lxP-hWFA24,v_7lxP-hWFA24_8,8 3753,v_KZ1NEffR2Qg,someones good at skipping rope,why are they playing happily,v_KZ1NEffR2Qg,v_KZ1NEffR2Qg_7,8 3754,v_HJWwqjLf1I4,for entertainment,why does everyone dive in the video ,v_HJWwqjLf1I4,v_HJWwqjLf1I4_6,8 3755,v_MQ9Ojge7CyA,win,why does he laugh in the video,v_MQ9Ojge7CyA,v_MQ9Ojge7CyA_8,8 3756,v_mLFjww64sX8,easy to shave,why does the barber lift the head of the bald headed man,v_mLFjww64sX8,v_mLFjww64sX8_6,8 3757,v_IsV1n_kLpvs,beautiful,why does the blonde man cut the tin of the roof,v_IsV1n_kLpvs,v_IsV1n_kLpvs_9,8 3758,v_VfhDSTKBwgc,make darts,why does the man in grey insert needles in the middle of the paper,v_VfhDSTKBwgc,v_VfhDSTKBwgc_9,8 3759,v_dZsk5Dp_5FE,labor saving,why grey the hand spin the wood,v_dZsk5Dp_5FE,v_dZsk5Dp_5FE_10,8 3760,v_raxeBxPQqlk,darts are easy to targets,why does the little boy change his dart head,v_raxeBxPQqlk,v_raxeBxPQqlk_6,8 3761,v_R-hsYQNtnn0,express happiness,why does the man in blue shirt get off the pole after winning the game,v_R-hsYQNtnn0,v_R-hsYQNtnn0_6,8 3762,v_0iqx7o5WYW8,score,why does the man in the black hat pass the ball after the ball,v_0iqx7o5WYW8,v_0iqx7o5WYW8_6,8 3763,v_IGPZFun1Ok4,win in gambling,why does the man with a hat shake hands with others,v_IGPZFun1Ok4,v_IGPZFun1Ok4_10,8 3764,v_fQ1OuD7x3to,be covered by people,why did the video end up,v_fQ1OuD7x3to,v_fQ1OuD7x3to_10,8 3765,v_8_fjIZkNHms,blindfolded eyes,why does the woman of the purple coat hit the dog,v_8_fjIZkNHms,v_8_fjIZkNHms_8,8 3766,v_IIPKxzPjrWg,to challenge themselves,why does anyone like diving,v_IIPKxzPjrWg,v_IIPKxzPjrWg_10,8 3767,v_7-UlUnaBjXU,stimulate,why does anyone like to ride a cross-country motorcycle,v_7-UlUnaBjXU,v_7-UlUnaBjXU_8,8 3768,v_0mNZfG6CL74,prevent skidding,why do the athletes apply dry powder,v_0mNZfG6CL74,v_0mNZfG6CL74_6,8 3769,v_tzP0lKSUv_o,express joy,why do the athletes hold their fist after weightlifting,v_tzP0lKSUv_o,v_tzP0lKSUv_o_6,8 3770,v_1QIUV7WYKXg,speed up javelin,why do the athletes run forward,v_1QIUV7WYKXg,v_1QIUV7WYKXg_6,8 3771,v_svNcNLEPKMc,more beautiful,why do the athletes stand upside down,v_svNcNLEPKMc,v_svNcNLEPKMc_6,8 3772,v_St1RRi-aeNM,give discus inertia,why do the athletes turn two laps,v_St1RRi-aeNM,v_St1RRi-aeNM_6,8 3773,v_lOZ9bfzq89o,trampoline,why do the athletes wearing green clothes take off in situ,v_lOZ9bfzq89o,v_lOZ9bfzq89o_6,8 3774,v_UJGK_TKrl4E,to express courtesy,why does the black and black helmets shake hands with the man in white,v_UJGK_TKrl4E,v_UJGK_TKrl4E_6,8 3775,v_FxpP7lqvm30,guide children,why do you choose children and adults to play in a game,v_FxpP7lqvm30,v_FxpP7lqvm30_6,8 3776,v_sqv3M6MPKjQ,blower is too heavy,why do the children fall down,v_sqv3M6MPKjQ,v_sqv3M6MPKjQ_6,8 3777,v_StGxFfLiYNU,greeting,why do the children in blue have to wave,v_StGxFfLiYNU,v_StGxFfLiYNU_6,8 3778,v_E_UkQGk7QAE,cold prevention,why do the children wear hats in purple clothes,v_E_UkQGk7QAE,v_E_UkQGk7QAE_9,8 3779,v_EBw5-KVV_PU,end,why do the girls make a salute in the end,v_EBw5-KVV_PU,v_EBw5-KVV_PU_9,8 3780,v_8teo_0gxzgk,happy,why do the long hair men clench their fist,v_8teo_0gxzgk,v_8teo_0gxzgk_9,8 3781,v_UvOEuhS0V3E,be more beautiful,why do the long hair women want to smear lipstick,v_UvOEuhS0V3E,v_UvOEuhS0V3E_9,8 3782,v_kistIwzeQOU,decorating house,why does the man in white wear a wall cloth,v_kistIwzeQOU,v_kistIwzeQOU_7,8 3783,v_fhOmyyI0eQE,trees are not neat,why does the man prune trees,v_fhOmyyI0eQE,v_fhOmyyI0eQE_9,8 3784,v_EDDbcCBnTQM,protect,why does the man sprinkled water on a wooden fence,v_EDDbcCBnTQM,v_EDDbcCBnTQM_6,8 3785,v_e0yu4WgiZUM,protect eye,why does the man wear glasses for swimming,v_e0yu4WgiZUM,v_e0yu4WgiZUM_6,8 3786,v_V08Q-DbT0GQ,hungry,why does the man wear glasses to cook noodles,v_V08Q-DbT0GQ,v_V08Q-DbT0GQ_9,8 3787,v_0xBP-TSsqb0,avoid messing,why does the man wear hoops in the video,v_0xBP-TSsqb0,v_0xBP-TSsqb0_6,8 3788,v_uWfQcDvel84,for sake of beauty,why does the man wearing hats want to weed,v_uWfQcDvel84,v_uWfQcDvel84_9,8 3789,v__zqj6daJo9U,thanks to audience,why does the man bow to the camera in the video,v__zqj6daJo9U,v__zqj6daJo9U_7,8 3790,v_0k6GFx2ZCg8,easy eat,why does the man cut sandwiches in the video,v_0k6GFx2ZCg8,v_0k6GFx2ZCg8_6,8 3791,v_k--dW53UQWs,arm force,why does the man fit in with fitness,v_k--dW53UQWs,v_k--dW53UQWs_6,8 3792,v_1IbkFHNA7fg,happy,why does the man in a suit have to clap their hands,v_1IbkFHNA7fg,v_1IbkFHNA7fg_6,8 3793,v_VjMMwpgOCPo,take part,why does the man in black and white wear uneven bars,v_VjMMwpgOCPo,v_VjMMwpgOCPo_9,8 3794,v_lUmjnFf7IPQ,do public welfare,why does the man in black wear haircuts for tramps,v_lUmjnFf7IPQ,v_lUmjnFf7IPQ_6,8 3795,v_T62XjoKbN8M,reduce friction,why does the man in black wear the runway,v_T62XjoKbN8M,v_T62XjoKbN8M_6,8 3796,v_SidTquTAtyk,increase difficulty,why does the man in black wear three kites,v_SidTquTAtyk,v_SidTquTAtyk_6,8 3797,v_LsVCwr6qPmY,for sake of beauty,why does the man in blue clothes iron the collar,v_LsVCwr6qPmY,v_LsVCwr6qPmY_6,8 3798,v_HtG-i1CG2Qs,keep healthy,why does the man in blue clothes wash their hands after using the toilet,v_HtG-i1CG2Qs,v_HtG-i1CG2Qs_6,8 3799,v_zxpQHLwZCug,burning fire,why does the man in blue cut wood,v_zxpQHLwZCug,v_zxpQHLwZCug_9,8 3800,v_mMm1LfVb8Pg,convenient weeding,why does the man in blue open the tires,v_mMm1LfVb8Pg,v_mMm1LfVb8Pg_6,8 3801,v_2CegApogJd4,express victory,why does the man in blue wear clapping with their teammates,v_2CegApogJd4,v_2CegApogJd4_6,8 3802,v_1xtKGlUp4Vg,keep health,why does the man in gray dress to clean their dogs,v_1xtKGlUp4Vg,v_1xtKGlUp4Vg_6,8 3803,v_OUxgs_QlPHE,to dive,why does the man in green swimsuits prepare for diving,v_OUxgs_QlPHE,v_OUxgs_QlPHE_6,8 3804,v_PJ7HOHdOdy4,scoop water,why does the man in purple clothes pick up the cup,v_PJ7HOHdOdy4,v_PJ7HOHdOdy4_6,8 3805,v_0w4OkBenR_k,record results,why does the man in purple wear themselves to the fence,v_0w4OkBenR_k,v_0w4OkBenR_k_6,8 3806,v_I1iUbyjWy7k,speed up,why does the man in red clothes run after striking the ball,v_I1iUbyjWy7k,v_I1iUbyjWy7k_6,8 3807,v_Z-zG845frso,physical exercise,why does the man in red shirts want to play volleyball,v_Z-zG845frso,v_Z-zG845frso_9,8 3808,v_OQEKZXv6jSw,jump far,why does the man in red want to run,v_OQEKZXv6jSw,v_OQEKZXv6jSw_6,8 3809,v_uktUeF3Fy7o,unsteadiness of gravity,why does the man in the purple life jacket fall down,v_uktUeF3Fy7o,v_uktUeF3Fy7o_6,8 3810,v_2k-qlZxc9l4,curettage,why does the man in the video apply hair cream,v_2k-qlZxc9l4,v_2k-qlZxc9l4_6,8 3811,v_tRFK1BMKaRo,protect waist,why does the man in the video fasten their belts on their waist,v_tRFK1BMKaRo,v_tRFK1BMKaRo_6,8 3812,v_0e5zwJywyqk,eatting,why does the man in the video make spaghetti,v_0e5zwJywyqk,v_0e5zwJywyqk_10,5 3813,v_v0azz4XzW_s,entertainment,why does the man in the video play a weeding machine,v_v0azz4XzW_s,v_v0azz4XzW_s_6,8 3814,v_HPKHDze6XfA,make car light,why does the man in the video remove the snow,v_HPKHDze6XfA,v_HPKHDze6XfA_6,8 3815,v_T3mcQnlsmq4,make manicure easier,why does the man in the video suck cat peppermint for the cat,v_T3mcQnlsmq4,v_T3mcQnlsmq4_6,8 3816,v_qObVIn_GI10,squeezing apple,why does the man in the video take the lid to press the apple,v_qObVIn_GI10,v_qObVIn_GI10_6,8 3817,v_T0nCDJuikuA,test light bulb,why does the man in the video use the light bulb,v_T0nCDJuikuA,v_T0nCDJuikuA_6,8 3818,v_3uaQ0cULMgc,car dirty,why does the man in the video wash their cars,v_3uaQ0cULMgc,v_3uaQ0cULMgc_10,8 3819,v_2DCHbuwZNSs,protect eye,why does the man in the video wear submersible glasses,v_2DCHbuwZNSs,v_2DCHbuwZNSs_6,8 3820,v_YaC68rE4lwA,mouth leaking,why does the man in video cover their mouths,v_YaC68rE4lwA,v_YaC68rE4lwA_6,8 3821,v_zEttEkAdHts,beautiful,why does the man in videos need paper money to make wrapping paper,v_zEttEkAdHts,v_zEttEkAdHts_9,8 3822,v_KsFid_YVsn0,beautiful,why does the man in videos need to arrange neatly before dancing,v_KsFid_YVsn0,v_KsFid_YVsn0_9,8 3823,v_LL0uQO4q_wY,reduce friction,why does the man in videos want to scatter something on the curling runway,v_LL0uQO4q_wY,v_LL0uQO4q_wY_6,8 3824,v_8lMncYsbrWw,clothing leveling,why does the man in white clothes ironing,v_8lMncYsbrWw,v_8lMncYsbrWw_8,8 3825,v_2uUNiV8xmEo,be attacked,why does the man in white dress attack red players,v_2uUNiV8xmEo,v_2uUNiV8xmEo_6,8 3826,v_QJ5xv6oj1sk,take exercise,why does the man in white shirts want to play tai chi,v_QJ5xv6oj1sk,v_QJ5xv6oj1sk_10,8 3827,v_mnNgZ-D5cKc,match,why does the man in white wear bicycles,v_mnNgZ-D5cKc,v_mnNgZ-D5cKc_10,8 3828,v_Vhn4SuPhu-0,interest,why does the man in white go roller-skating,v_Vhn4SuPhu-0,v_Vhn4SuPhu-0_9,8 3829,v_0q9yZPTBbus,easy blow,why does the man who wear white clothes tie their hair,v_0q9yZPTBbus,v_0q9yZPTBbus_6,8 3830,v_0jdSl5-lMpY,fixed thread,why does the man who wear white clothes nail a nail before pulling the purple line,v_0jdSl5-lMpY,v_0jdSl5-lMpY_6,8 3831,v_836UrVGw6GI,entertainment,why does the man who wear white clothes skate on the skateboard,v_836UrVGw6GI,v_836UrVGw6GI_9,5 3832,v_OFTkwnSh-sQ,farther of the jump,why does the man in yellow have to run,v_OFTkwnSh-sQ,v_OFTkwnSh-sQ_6,8 3833,v_diY-XBT5cD4,angry,why does the man play dolls in the video,v_diY-XBT5cD4,v_diY-XBT5cD4_6,8 3834,v_J1QB1y3vXLY,have personality,why does the man want to get tattoos,v_J1QB1y3vXLY,v_J1QB1y3vXLY_9,8 3835,v_T3A88zsRuVs,avoid freezing hands,why does the man wear gloves in the video,v_T3A88zsRuVs,v_T3A88zsRuVs_6,8 3836,v_pzTqZWPubk8,protect teeth,why does the man wearing gray shorts brush their teeth,v_pzTqZWPubk8,v_pzTqZWPubk8_9,8 3837,v_ufrTSC3Dewg,pick up speed,why does the man in green run before pushing a round plate,v_ufrTSC3Dewg,v_ufrTSC3Dewg_6,8 3838,v_HTSxgkgecS0,safety guarantee,why does the man wear life jackets during drifting,v_HTSxgkgecS0,v_HTSxgkgecS0_8,8 3839,v_oflwFZj9PNY,you can jump farther,why does the man in red and black want to run,v_oflwFZj9PNY,v_oflwFZj9PNY_6,8 3840,v__jV5sAOOHLk,others car broke down,why does the man in black fix the tire with someone else,v__jV5sAOOHLk,v__jV5sAOOHLk_8,8 3841,v_NNiJfr_ChH4,because long jump,why does the man wearing black shorts run,v_NNiJfr_ChH4,v_NNiJfr_ChH4_8,8 3842,v_ZgdMnfTqblw,physical exercise,why does the man wearing black vests play basketball,v_ZgdMnfTqblw,v_ZgdMnfTqblw_8,8 3843,v_oGU7m7rCZ-Y,to blow sax,why does the man wearing blue coats want to install sax,v_oGU7m7rCZ-Y,v_oGU7m7rCZ-Y_6,8 3844,v_A_Sr0mCX2rI,put on hat,why does the man wearing camouflage wear glasses,v_A_Sr0mCX2rI,v_A_Sr0mCX2rI_7,8 3845,v_2ShsRSJ9cqE,welding,why does the man wearing caps put stainless steel shelves,v_2ShsRSJ9cqE,v_2ShsRSJ9cqE_6,8 3846,v_QoRlOa6R1LY,take exercise,why does the man wearing gray helmets want to rock,v_QoRlOa6R1LY,v_QoRlOa6R1LY_10,8 3847,v_1lwG-y_QCkc,beauty,why does the man wearing hats want to weed,v_1lwG-y_QCkc,v_1lwG-y_QCkc_6,8 3848,v_uIHWHnItois,reduce center of gravity,why does the man wearing orange wear bow after they slide forward,v_uIHWHnItois,v_uIHWHnItois_6,8 3849,v_mixxaL3Bdv8,protect head,why does the man wearing orange wear helmets,v_mixxaL3Bdv8,v_mixxaL3Bdv8_6,8 3850,v_1dDAcUliXrQ,hamper ball,why does the man wearing purple and red clothes try to lift their hair,v_1dDAcUliXrQ,v_1dDAcUliXrQ_6,8 3851,v_ZLG1Exv8HrY,physical exercise,why does the man wearing white short sleeves play the parallel bars,v_ZLG1Exv8HrY,v_ZLG1Exv8HrY_8,8 3852,v_H9PaZiWLgXU,decorate,why does the man wearing yellow cilps some lemon slices after putting the ice,v_H9PaZiWLgXU,v_H9PaZiWLgXU_6,8 3853,v_5oyenoaVB-w,acne treatment,why does the man who wash their faces in the video want to do this,v_5oyenoaVB-w,v_5oyenoaVB-w_8,8 3854,v_0e7d39SwHCA,encouragement,why does the man who wear purple clothes and white clothes fall down when they fall down,v_0e7d39SwHCA,v_0e7d39SwHCA_6,8 3855,v_hIYN8cC3pEA,balance,why does the man who wear white vests want to wave after jumping,v_hIYN8cC3pEA,v_hIYN8cC3pEA_6,8 3856,v_GsPE54bMFwE,challenging,why does the man with green hats want to play fancy skateboarding,v_GsPE54bMFwE,v_GsPE54bMFwE_10,8 3857,v_qlK-c7hRqcA,bullet dodging,why does the man with striped shirts wear yellow cloth to squatting down after tires,v_qlK-c7hRqcA,v_qlK-c7hRqcA_6,8 3858,v_vBOFzuS-Djo,interesting,why do the short-haired babies want to dive,v_vBOFzuS-Djo,v_vBOFzuS-Djo_9,8 3859,v_NvRH4SoF09c,cheerful mood,why do the ten perso in black flute on the hillside,v_NvRH4SoF09c,v_NvRH4SoF09c_7,8 3860,v_IclzwpxVvIk,more beautiful,why do the black-haired women want to make up,v_IclzwpxVvIk,v_IclzwpxVvIk_10,8 3861,v_3i3SUPsyZtA,bring eggs together,why do the chef knock the handle of the round pot,v_3i3SUPsyZtA,v_3i3SUPsyZtA_6,8 3862,v_HQVSLlKhupk,imbalance of body,why do the goalkeepers in white clothes fall down,v_HQVSLlKhupk,v_HQVSLlKhupk_6,8 3863,v_j6BCgvUusWs,satisfy greed,why do the guests in the video gamble,v_j6BCgvUusWs,v_j6BCgvUusWs_10,8 3864,v_1px5LTVIR3A,thank,why do the little boys in white have to bow,v_1px5LTVIR3A,v_1px5LTVIR3A_6,8 3865,v_A8RQcVFtovg,put child down,why does the man in gray go back,v_A8RQcVFtovg,v_A8RQcVFtovg_6,8 3866,v_A0b_pqaKCX8,drink green liquid,why does the man in black dress up,v_A0b_pqaKCX8,v_A0b_pqaKCX8_10,8 3867,v_stdtUoog49I,let people pass through,why does the man ride the electric car to disperse the crowd,v_stdtUoog49I,v_stdtUoog49I_6,8 3868,v_Jdu5AqaWfz8,pursuit of stimulation,why does the man who wear gray coats cut branches,v_Jdu5AqaWfz8,v_Jdu5AqaWfz8_10,8 3869,v_GxDNGtoVjS0,better growth,why does the people who wear gray coats cut branches,v_GxDNGtoVjS0,v_GxDNGtoVjS0_10,8 3870,v_0Um-HgjcnXY,excitement,why do the players in orange dress swing their fists,v_0Um-HgjcnXY,v_0Um-HgjcnXY_6,8 3871,v_HDt5z5Y0opo,to win,why does the short-hair player press his body on the players,v_HDt5z5Y0opo,v_HDt5z5Y0opo_6,8 3872,v_LWt2FuU0uC4,ball inertia,why does the third player have to turn around two laps,v_LWt2FuU0uC4,v_LWt2FuU0uC4_6,8 3873,v_JKJ_EvP7JwQ,halloween decoration,why do they carve the face on the pumpkin,v_JKJ_EvP7JwQ,v_JKJ_EvP7JwQ_9,8 3874,v_ILmZg0vz0Hg,beautiful,why do they decorate the box,v_ILmZg0vz0Hg,v_ILmZg0vz0Hg_10,8 3875,v_30hcRe-5_3M,match,why do they play football in the video,v_30hcRe-5_3M,v_30hcRe-5_3M_6,5 3876,v_JGPhQX97OSE,active atmosphere,why do they play music before the ball game begins,v_JGPhQX97OSE,v_JGPhQX97OSE_10,8 3877,v_mXqmRAUsn9U,entertainment,why do they play skateboards,v_mXqmRAUsn9U,v_mXqmRAUsn9U_9,8 3878,v_N5Dt3ycaun4,match,why do they want to do boxing,v_N5Dt3ycaun4,v_N5Dt3ycaun4_9,8 3879,v_12Nafz_Yet4,match,why do they want to do boxing in the video,v_12Nafz_Yet4,v_12Nafz_Yet4_9,8 3880,v_K1OsjA-f17E,for beauty,why do they want to wash the car,v_K1OsjA-f17E,v_K1OsjA-f17E_10,8 3881,v_JcAAwYpJhm8,keep clean,why do they want to wash the dishes,v_JcAAwYpJhm8,v_JcAAwYpJhm8_9,8 3882,v_JH9qiuPCkY4,protect their heads,why do they wear helmets,v_JH9qiuPCkY4,v_JH9qiuPCkY4_10,8 3883,v_IMMoglaJ3RY,good growth of plants,why do they weed the grass,v_IMMoglaJ3RY,v_IMMoglaJ3RY_10,8 3884,v_AjqnGUbsduw,almost power,why does the man in white have a standoff with the man in gray,v_AjqnGUbsduw,v_AjqnGUbsduw_9,8 3885,v_uM7QSskmloo,maintain level,why does someone in the video pull the rope before pruning branches,v_uM7QSskmloo,v_uM7QSskmloo_6,8 3886,v_6LsvBNqJuJY,beauty,why do they have tattoos,v_6LsvBNqJuJY,v_6LsvBNqJuJY_8,8 3887,v_09ocXmGF-T4,dinner,why do they have to cut potatoes,v_09ocXmGF-T4,v_09ocXmGF-T4_9,8 3888,v_utgRhyBvtRU,encourage each other,why does the woman in white high five her teammates,v_utgRhyBvtRU,v_utgRhyBvtRU_9,8 3889,v_EPsSfOEd3BU,increase speed of shot,why do athletes have to turn around,v_EPsSfOEd3BU,v_EPsSfOEd3BU_6,8 3890,v_6xBh3vzhgo4,irritation,why does the woman in a life jacket want to surf in the video,v_6xBh3vzhgo4,v_6xBh3vzhgo4_9,8 3891,v_uty4eGb_vvU,physical exercise,why does the woman in red dress want to dance the taiji sword,v_uty4eGb_vvU,v_uty4eGb_vvU_9,8 3892,v_FPf7mAgdy0I,good looking,why does the woman in the video make hair,v_FPf7mAgdy0I,v_FPf7mAgdy0I_6,8 3893,v_sfbgZOHLkII,protect head,why does the woman in the video wear helmets,v_sfbgZOHLkII,v_sfbgZOHLkII_6,8 3894,v_8A4cZXyDrkU,tire broken,why does the woman in white have to change tires,v_8A4cZXyDrkU,v_8A4cZXyDrkU_8,8 3895,v_vezvHLPR3P0,take part,why does the woman in white have to throw the hammer,v_vezvHLPR3P0,v_vezvHLPR3P0_9,8 3896,v_fMVuGUBs2cs,work,why do they adjust the wine,v_fMVuGUBs2cs,v_fMVuGUBs2cs_6,8 3897,v_K5jY2chByPw,keep clean,why do they clean up the horse,v_K5jY2chByPw,v_K5jY2chByPw_9,8 3898,v_1kkc9hDshP4,art of display,why do they dance on the street,v_1kkc9hDshP4,v_1kkc9hDshP4_6,8 3899,v_eg2s5lOfKGI,healthy,why do they do aerobics,v_eg2s5lOfKGI,v_eg2s5lOfKGI_10,8 3900,v_e0yLhjXQIXI,motion,why do they do the flipping action,v_e0yLhjXQIXI,v_e0yLhjXQIXI_10,8 3901,v_f2DS_AVorrY,prevent cramps,why do they do warm-up exercises,v_f2DS_AVorrY,v_f2DS_AVorrY_6,8 3902,v__G4EVIG9YaE,fear tree be frozen,why do they give the trees a pile of trees in the video,v__G4EVIG9YaE,v__G4EVIG9YaE_8,8 3903,v_xuvp0jKMqRU,convenient engraving,why do they have to draw a picture on the pumpkin,v_xuvp0jKMqRU,v_xuvp0jKMqRU_6,8 3904,v_FWZ6wgaJ_L4,clean,why do they have to wash it,v_FWZ6wgaJ_L4,v_FWZ6wgaJ_L4_6,8 3905,v_f1d7_TKXNYQ,ranking,why do they look at the distance from the javelin flying,v_f1d7_TKXNYQ,v_f1d7_TKXNYQ_6,8 3906,v_32vYs9wKXE8,teaching video,why do they make hair,v_32vYs9wKXE8,v_32vYs9wKXE8_6,8 3907,v_7LbBmVX33I4,dress up,why do they need a curl,v_7LbBmVX33I4,v_7LbBmVX33I4_8,8 3908,v_FmfAB-ppHBs,test,why do they order cigarettes,v_FmfAB-ppHBs,v_FmfAB-ppHBs_6,8 3909,v_-Fk62y-1WHo,record video,why do they play an instrument,v_-Fk62y-1WHo,v_-Fk62y-1WHo_6,8 3910,v_62M1FRXsUiM,video recording,why do they play the harmonica,v_62M1FRXsUiM,v_62M1FRXsUiM_6,8 3911,v_FKtYeu2bJpA,improve skills,why do they practice basketball,v_FKtYeu2bJpA,v_FKtYeu2bJpA_6,8 3912,v_qObVIn_GI10,healthy,why do they press your own juice,v_qObVIn_GI10,v_qObVIn_GI10_10,8 3913,v_FtRGOgg0Qh8,take exercise,why do they ride a bike,v_FtRGOgg0Qh8,v_FtRGOgg0Qh8_6,8 3914,v_EXPYu9bfNcE,clean,why do they rinse the dog,v_EXPYu9bfNcE,v_EXPYu9bfNcE_9,8 3915,v_eiN5XPmwcEM,beautiful,why do they shave your beard,v_eiN5XPmwcEM,v_eiN5XPmwcEM_10,8 3916,v_98ukqD62X5s,match,why do they throw a javelin,v_98ukqD62X5s,v_98ukqD62X5s_7,5 3917,v_QIUxLD27NuI,recording time,why do they use a timer in the video,v_QIUxLD27NuI,v_QIUxLD27NuI_6,8 3918,v_8vDSV9ruYlc,stick wallpaper,why do they use glue on the wall,v_8vDSV9ruYlc,v_8vDSV9ruYlc_9,8 3919,v_UNXLfqkwKFc,convenient,why do they use vacuum cleaners to clean up the garbage,v_UNXLfqkwKFc,v_UNXLfqkwKFc_9,8 3920,v_jDlvGWOdcqU,accident prevention,why do they want to change tires regularly,v_jDlvGWOdcqU,v_jDlvGWOdcqU_9,8 3921,v_3JBUWRKezUI,clean and beautiful,why do they want to clean up the floor glass,v_3JBUWRKezUI,v_3JBUWRKezUI_10,8 3922,v_0XTAq_xvquw,convenient imitation,why do they want to display the tools before the video starts,v_0XTAq_xvquw,v_0XTAq_xvquw_6,8 3923,v_2UhbDOd43zU,convenient viewing,why do they want to hold the upper half of the person in the black dress,v_2UhbDOd43zU,v_2UhbDOd43zU_6,8 3924,v_xS4twW2gXqc,match,why do they want to jump high in red,v_xS4twW2gXqc,v_xS4twW2gXqc_10,8 3925,v_9UvVeUYQLgA,entertainment,why do they want to live in a real battle,v_9UvVeUYQLgA,v_9UvVeUYQLgA_6,8 3926,v_dU7jG8G5li0,greeting new year,why do they want to make a cake,v_dU7jG8G5li0,v_dU7jG8G5li0_9,8 3927,v_V6Sy8zpJSuc,beautify environment,why do they want to make a carpet,v_V6Sy8zpJSuc,v_V6Sy8zpJSuc_9,8 3928,v_xfV4V_AOVSM,well done,why do they want to make it,v_xfV4V_AOVSM,v_xfV4V_AOVSM_10,8 3929,v_Aj5ncX5G_2w,art,why do they want to make the table legs in the video,v_Aj5ncX5G_2w,v_Aj5ncX5G_2w_6,8 3930,v_zPQodcasmSA,keep weight,why do they want to master the rope,v_zPQodcasmSA,v_zPQodcasmSA_6,8 3931,v_SJ7jk5XAjng,prevent being injury,why do they want to move your wrist before the wrench is on the wrist,v_SJ7jk5XAjng,v_SJ7jk5XAjng_6,8 3932,v_ZBP_mLWROZU,to be beautiful,why do they want to pick it loose,v_ZBP_mLWROZU,v_ZBP_mLWROZU_6,8 3933,v_FkbpD1zWdPw,sport project,why do they want to play archery,v_FkbpD1zWdPw,v_FkbpD1zWdPw_6,8 3934,v_nkWMBJC2Qec,match,why do they want to play ping-pong,v_nkWMBJC2Qec,v_nkWMBJC2Qec_7,8 3935,v_75Tc1nPmZFQ,match,why do they want to play volleyball,v_75Tc1nPmZFQ,v_75Tc1nPmZFQ_9,5 3936,v_Flm_SCK10GQ,competition,why do they want to pull the wrist,v_Flm_SCK10GQ,v_Flm_SCK10GQ_6,8 3937,v_nc_NMp3vAH0,match,why do they want to push the ice pot,v_nc_NMp3vAH0,v_nc_NMp3vAH0_6,8 3938,v_2k-qlZxc9l4,beautiful,why do they want to shave your legs,v_2k-qlZxc9l4,v_2k-qlZxc9l4_10,8 3939,v_7OcxT66BxX0,perform,why do they want to sing,v_7OcxT66BxX0,v_7OcxT66BxX0_8,8 3940,v_S7CW-si2JjA,make cake tasty,why do they want to smear the cream in the cake,v_S7CW-si2JjA,v_S7CW-si2JjA_10,8 3941,v_4LF0hL-mgks,bowl is dirty,why do they want to wash the dishes,v_4LF0hL-mgks,v_4LF0hL-mgks_10,8 3942,v_X6CBZwwRdQQ,for sunscreen,why do they want to wipe out sunscreen,v_X6CBZwwRdQQ,v_X6CBZwwRdQQ_6,8 3943,v_lYP05IRcOPE,protect head,why do they wear helmets,v_lYP05IRcOPE,v_lYP05IRcOPE_6,8 3944,v_0Um-HgjcnXY,protect head,why do they wear helmets in this competition,v_0Um-HgjcnXY,v_0Um-HgjcnXY_9,8 3945,v_4MwnHtlaEUY,for safety,why do they wear helmets on a bike,v_4MwnHtlaEUY,v_4MwnHtlaEUY_10,8 3946,v_fQ1OuD7x3to,dirty,why does the man in black wipe the glass,v_fQ1OuD7x3to,v_fQ1OuD7x3to_6,8 3947,v_7UwRRkgQSj4,pregnant,why does the blonde woman have a big belly,v_7UwRRkgQSj4,v_7UwRRkgQSj4_9,8 3948,v_MAGeYoFuCgo,filter out water,why does the chef turn the noodles,v_MAGeYoFuCgo,v_MAGeYoFuCgo_6,8 3949,v_ut1AoOzqL4k,excitement,why does the man in a black vest hold a fist in his right hand,v_ut1AoOzqL4k,v_ut1AoOzqL4k_9,8 3950,v_dN8LBey17O8,grass is too high,why does the man in grey make a lawn,v_dN8LBey17O8,v_dN8LBey17O8_9,8 3951,v_8AUTKSqcmiM,interest,why does anyone like archery,v_8AUTKSqcmiM,v_8AUTKSqcmiM_8,8 3952,v_HowkVy5fOyk,anger,why does the cow rush to the red cloth,v_HowkVy5fOyk,v_HowkVy5fOyk_7,8 3953,v_IGT0dIKDGCw,happy,why does the dog wags its tail,v_IGT0dIKDGCw,v_IGT0dIKDGCw_10,8 3954,v_udSHsodv3gY,to express comfort,why does the horse nod,v_udSHsodv3gY,v_udSHsodv3gY_6,8 3955,v_KXcVYfMuUGw,take part,why does the man train the dog on the sand,v_KXcVYfMuUGw,v_KXcVYfMuUGw_8,8 3956,v_9FQ-VLkCZo8,game lost,why does the number 20 in green dress bow with no head,v_9FQ-VLkCZo8,v_9FQ-VLkCZo8_9,8 3957,v_5dN-MpXG9OE,strengthen proficiency,why does the player do this in the video,v_5dN-MpXG9OE,v_5dN-MpXG9OE_10,8 3958,v_2-AMrzL7V-U,record performance,why does the referee measure the distance,v_2-AMrzL7V-U,v_2-AMrzL7V-U_6,8 3959,v_FnPS6zn5S7M,fear of hindering people,why does the referee want to dodge,v_FnPS6zn5S7M,v_FnPS6zn5S7M_6,8 3960,v_7BUr2cN8CLs,curling,why does this sport call it,v_7BUr2cN8CLs,v_7BUr2cN8CLs_9,5 3961,v_9ZVWD0ZKXZg,challenge stimulus,why go rock climbing,v_9ZVWD0ZKXZg,v_9ZVWD0ZKXZg_6,8 3962,v_7UwRRkgQSj4,tired out,why does the blonde woman gasp after tying her shoelaces,v_7UwRRkgQSj4,v_7UwRRkgQSj4_8,8 3963,v_vFO70WwrQgE,more practice,why does dance so neat,v_vFO70WwrQgE,v_vFO70WwrQgE_9,8 3964,v_26U3SkeZU6M,physical exercise,why does he skip the rope in the video,v_26U3SkeZU6M,v_26U3SkeZU6M_6,8 3965,v_cK0-WcGXacQ,inertia,why does the black man spin after throwing the discus,v_cK0-WcGXacQ,v_cK0-WcGXacQ_9,8 3966,v_8tCRp3NKtkI,end performance,why is the blonde man bowed,v_8tCRp3NKtkI,v_8tCRp3NKtkI_9,8 3967,v_Y7aacWy3WDo,brain is damaged,why is the blood flow out,v_Y7aacWy3WDo,v_Y7aacWy3WDo_6,8 3968,v_vBaiedxy1Uw,guessing victory,why is the blue boy splashing water on the long hair girl,v_vBaiedxy1Uw,v_vBaiedxy1Uw_9,8 3969,v_2_H3lxMWvPo,escape,why is the cow running forward,v_2_H3lxMWvPo,v_2_H3lxMWvPo_6,8 3970,v_Y7aacWy3WDo,because of smoking,why does the human body in the video become that,v_Y7aacWy3WDo,v_Y7aacWy3WDo_8,8 3971,v_idkQqlwyff8,entertainment,why does the old man in blue knock on the toy,v_idkQqlwyff8,v_idkQqlwyff8_10,8 3972,v_Npj77L31bhw,because of tattoo pain,why does the man who wear hats hold the middle finger,v_Npj77L31bhw,v_Npj77L31bhw_6,8 3973,v_7H1KylJRii8,large density,why is the red wine precipitated,v_7H1KylJRii8,v_7H1KylJRii8_9,8 3974,v_1PNjVTM0Zto,strong body,why is tai chi popular with many people,v_1PNjVTM0Zto,v_1PNjVTM0Zto_6,8 3975,v_a_EqAwUOxpM,because its done,why do they show nail art in the video,v_a_EqAwUOxpM,v_a_EqAwUOxpM_6,8 3976,v_VFC-V06hVj0,experience,why is the woman wearing a hat riding a camel,v_VFC-V06hVj0,v_VFC-V06hVj0_9,8 3977,v_iuc48VIWLJY,stimulate,why is the women's skiing leather ring,v_iuc48VIWLJY,v_iuc48VIWLJY_9,8 3978,v_v6P6bBPBXYw,goal,why is the yellow team celebrating,v_v6P6bBPBXYw,v_v6P6bBPBXYw_9,8 3979,v_IDuoF51IMJ8,celebrate victory,why do the people in gray vests get together,v_IDuoF51IMJ8,v_IDuoF51IMJ8_10,8 3980,v_7IwHwDuQdyU,interest,why do the girls in blue vests practice gymnastics,v_7IwHwDuQdyU,v_7IwHwDuQdyU_8,8 3981,v_3LwQ2yq85LU,avoid injury,why does the man in a sword suit wear a helmet,v_3LwQ2yq85LU,v_3LwQ2yq85LU_6,8 3982,v_AwcM25G1h-g,protect head,why do the women in red vests wear helmets ,v_AwcM25G1h-g,v_AwcM25G1h-g_6,8 3983,v_V-46E7jMm-Y,entertainment,why does the old man wear black sweaters for archery,v_V-46E7jMm-Y,v_V-46E7jMm-Y_9,8 3984,v_2vrR_5u2buU,express excitement,why does the man who wear doll clothes roll forward,v_2vrR_5u2buU,v_2vrR_5u2buU_6,8 3985,v_nvcMYiZhUuo,because you want to dive,why do they be equipped with scuba diving equipment,v_nvcMYiZhUuo,v_nvcMYiZhUuo_6,8 3986,v__2txWbQfJrY,fixed ceramic tile,why do they spread cement before laying tiles in the video,v__2txWbQfJrY,v__2txWbQfJrY_8,8 3987,v_2bQx5igckJc,easy understand,why do they want to display finished products after the end of green subtitles,v_2bQx5igckJc,v_2bQx5igckJc_6,8 3988,v_2nDJpvD-eZU,avoid enzyme change,why do they want to put things in the tank,v_2nDJpvD-eZU,v_2nDJpvD-eZU_6,8 3989,v_Aen-RfnlK3A,for eatting,why do they put the things into the oven,v_Aen-RfnlK3A,v_Aen-RfnlK3A_7,8 3990,v_SB0dU5oDvaE,convenient for walking,why need they shovel the snow,v_SB0dU5oDvaE,v_SB0dU5oDvaE_10,8 3991,v_sk_pnoqXxhs,prevent fall,why does the woman support the children,v_sk_pnoqXxhs,v_sk_pnoqXxhs_6,8 3992,v_Bgi2Y85Mbwk,yes,is the container darkened when the liquid in the smoking container is used up in the video,v_Bgi2Y85Mbwk,v_Bgi2Y85Mbwk_8,3 3993,v_FPf7mAgdy0I,yes,is the woman with yellow hair making hair,v_FPf7mAgdy0I,v_FPf7mAgdy0I_2,3 3994,v_FPf7mAgdy0I,no,is the woman with yellow hair putting on make-up,v_FPf7mAgdy0I,v_FPf7mAgdy0I_3,3 3995,v_iZT4XgzUHm4,accelerate,what happened before the helmet-wearing person rode their bikes up the hill,v_iZT4XgzUHm4,v_iZT4XgzUHm4_5,2 3996,v_a2IvS0xbNGQ,air rotation,what happened to the person in the orange suit after the bounce,v_a2IvS0xbNGQ,v_a2IvS0xbNGQ_5,2 3997,v_mixxaL3Bdv8,back somersault,what happened to the person in the orange dress after the third jump,v_mixxaL3Bdv8,v_mixxaL3Bdv8_5,2 3998,v_vnZmsOgWs0o,skiing,what happened to the person in the orange pants before he fell,v_vnZmsOgWs0o,v_vnZmsOgWs0o_5,2 3999,v_gOnp3DZxeKU,take oil,what happened to the person in purple when he came in,v_gOnp3DZxeKU,v_gOnp3DZxeKU_5,2 4000,v_Ye_uVlSo1HI,table collapsed,what happened after the person in red jumped,v_Ye_uVlSo1HI,v_Ye_uVlSo1HI_5,2 4001,v_i8hNrK3r_MY,assembled rear tire,what happened when the person in the red pants assembles the front tire,v_i8hNrK3r_MY,v_i8hNrK3r_MY_5,2 4002,v_0q9yZPTBbus,tie up hair,what happened to the person in white after he blew his hair,v_0q9yZPTBbus,v_0q9yZPTBbus_5,2 4003,v_gkwLhml3mnA,open your hands,what happened to the person in white after he retracted his right foot,v_gkwLhml3mnA,v_gkwLhml3mnA_5,2 4004,v_RgiVa9GMYxE,shave sideburns,what happened to the person in white before he bowed his head,v_RgiVa9GMYxE,v_RgiVa9GMYxE_5,2 4005,v_YMOYyt3kSOs,circle,what happened to the person in white before he threw the shot put,v_YMOYyt3kSOs,v_YMOYyt3kSOs_5,2 4006,v_ZLG1Exv8HrY,upside up,what happened when the person in white shorts jumps on a parallel bar,v_ZLG1Exv8HrY,v_ZLG1Exv8HrY_5,2 4007,v_rApbE1VkEjE,turn head,what happened to the person in the yellow jacket after he bent over six times,v_rApbE1VkEjE,v_rApbE1VkEjE_5,2 4008,v_9FQ-VLkCZo8,rest,what happened to the person after the game with the green clothes,v_9FQ-VLkCZo8,v_9FQ-VLkCZo8_5,2 4009,v_A8RQcVFtovg,step back,what happened when the person in the gray put the kid down,v_A8RQcVFtovg,v_A8RQcVFtovg_5,2 4010,v_0e5zwJywyqk,chilli powder,what happened when the person in gray put the onions in the pot,v_0e5zwJywyqk,v_0e5zwJywyqk_5,2 4011,v_penDFcEdu7U,explain,what happened when the person in the white coat mowed the ground,v_penDFcEdu7U,v_penDFcEdu7U_5,2 4012,v_R74yolowFPs,stride left foot,what happened to the ink-green short-sleeved person before pushing the disk,v_R74yolowFPs,v_R74yolowFPs_5,2 4013,v_45hcc_VI4t4,straighten back,what happened to the person with the yellow hair after the camera switch,v_45hcc_VI4t4,v_45hcc_VI4t4_5,2 4014,v_NDq29HQJVP0,rest,what happened after the white person played hockey,v_NDq29HQJVP0,v_NDq29HQJVP0_5,2 4015,v_GxDNGtoVjS0,cut off,what happened after the person in the video took the scissors,v_GxDNGtoVjS0,v_GxDNGtoVjS0_5,2 4016,v_K49OCArHjXI,anjali mudra,what happened to the person who don't wear flippers after they give out their thumbs,v_K49OCArHjXI,v_K49OCArHjXI_5,2 4017,v_CuLC5G7yWxA,look at effect,what happened to the woman in the video after the wallpaper,v_CuLC5G7yWxA,v_CuLC5G7yWxA_5,2 4018,v_SJ7jk5XAjng,active wrist,what happened to the woman in the game in front of the wrenches,v_SJ7jk5XAjng,v_SJ7jk5XAjng_5,2 4019,v_kBTqTp0SKq8,toys have been raised,what happened after the child with the stick hit the toy for the second time,v_kBTqTp0SKq8,v_kBTqTp0SKq8_5,2 4020,v_cCimLg-8Dy4,waving,what happened to the girl in black after she was blindfolded,v_cCimLg-8Dy4,v_cCimLg-8Dy4_5,2 4021,v_P5D9S9NzQ28,teaching by step,what happened when the person in white hands a ball to a girl,v_P5D9S9NzQ28,v_P5D9S9NzQ28_5,2 4022,v_i6wR9_tkg6A,pulp,what happened to the person in green after he cut the watermelon,v_i6wR9_tkg6A,v_i6wR9_tkg6A_5,2 4023,v_zPQodcasmSA,grasp rope,what happened when the person in the green put his foot in the anklet,v_zPQodcasmSA,v_zPQodcasmSA_5,2 4024,v_G_rVqf_hwXw,be pulled down,what happened to the person in the blue jacket after he left his arm,v_G_rVqf_hwXw,v_G_rVqf_hwXw_5,2 4025,v_5oyenoaVB-w,nearly fall,what happened when the person in the video saw the woman,v_5oyenoaVB-w,v_5oyenoaVB-w_5,2 4026,v_KsFid_YVsn0,hand in hand,what happened when the person walks up to a woman,v_KsFid_YVsn0,v_KsFid_YVsn0_5,2 4027,v_Q5HdVXF390c,stand up,what happened to the person in the plaid shirts after they left the glass,v_Q5HdVXF390c,v_Q5HdVXF390c_5,2 4028,v_hIYN8cC3pEA,wave,what happened after the person in the white vest jumped,v_hIYN8cC3pEA,v_hIYN8cC3pEA_5,2 4029,v_ZBP_mLWROZU,pine,what happened when the person in the white suit fixed his hair,v_ZBP_mLWROZU,v_ZBP_mLWROZU_5,2 4030,v_SNja9iUdAiI,return to place,what happened after the person with the pigtail hit his opponent for the first time,v_SNja9iUdAiI,v_SNja9iUdAiI_5,2 4031,v_qSP3_C7QWpU,fell to ground,what happened after the person in the red vest was lifted,v_qSP3_C7QWpU,v_qSP3_C7QWpU_5,2 4032,v_uJAL31wAD2A,wear sunglasses,what happened when the person in the striped bikini took off his sunglasses,v_uJAL31wAD2A,v_uJAL31wAD2A_5,2 4033,v_4YF9R3Sz2bA,skiing down hill,what happened when the person who made the video sat on the air cushion,v_4YF9R3Sz2bA,v_4YF9R3Sz2bA_5,2 4034,v_4LF0hL-mgks,wash dishes,what happened after the person who first appeared on the video sat down,v_4LF0hL-mgks,v_4LF0hL-mgks_5,2 4035,v_Of2Umm79Kxg,and put it back again,what happened when the person in the video took the gear off,v_Of2Umm79Kxg,v_Of2Umm79Kxg_5,2 4036,v_Df7AnfIEhYw,fall on air cushion,what happened when the person in the white coat was picked up,v_Df7AnfIEhYw,v_Df7AnfIEhYw_5,2 4037,v_kYkvyRKxwfY,lose ball,what happened after the white person hit the ball on the sphere,v_kYkvyRKxwfY,v_kYkvyRKxwfY_5,2 4038,v_ZlVydB9uUe4,close scissors,what happened when the person in the white shirt stood up,v_ZlVydB9uUe4,v_ZlVydB9uUe4_5,2 4039,v_nP1Bk-vJgVg,goal,what happened when the person in a white uniform throws a ball at the net,v_nP1Bk-vJgVg,v_nP1Bk-vJgVg_5,2 4040,v_QXN6odBnVmI,changing right hand,what happened after the black short-sleeved person wiped five times with his left hand,v_QXN6odBnVmI,v_QXN6odBnVmI_5,2 4041,v_gZB_XrTnDCI,rotary handlebar,what happened to the green person after he jumped,v_gZB_XrTnDCI,v_gZB_XrTnDCI_5,2 4042,v_Uae2MWoldTU,turn on light,what happened after the person in the video assembled the christmas tree,v_Uae2MWoldTU,v_Uae2MWoldTU_5,2 4043,v_a4gI4LC1rJk,put sweet potato in bowls,what happened to the person in the video after he peeled the potatoes,v_a4gI4LC1rJk,v_a4gI4LC1rJk_5,2 4044,v_T0nCDJuikuA,electrified,what happened when the person in the video hung up the light bulb,v_T0nCDJuikuA,v_T0nCDJuikuA_5,2 4045,v_A0b_pqaKCX8,vomit,what happened to the person in black after he drank the green liquid,v_A0b_pqaKCX8,v_A0b_pqaKCX8_5,2 4046,v_A9VCuZ53ObQ,fall,what happened when the person in black lifted the man in white,v_A9VCuZ53ObQ,v_A9VCuZ53ObQ_5,2 4047,v_lUmjnFf7IPQ,help him cut his hair,what happened when the person in black called the bum,v_lUmjnFf7IPQ,v_lUmjnFf7IPQ_5,2 4048,v_Gs79qz286QE,fall into water,what happened to the person in the blue swim trunks when he jumped,v_Gs79qz286QE,v_Gs79qz286QE_5,2 4049,v_uIHWHnItois,bend,what happened when the person in the orange slide forward,v_uIHWHnItois,v_uIHWHnItois_5,2 4050,v_-vY2uUmv6Dk,stretch leg,what happened when the person in the long purple sleeves got up,v_-vY2uUmv6Dk,v_-vY2uUmv6Dk_5,2 4051,v_T3A88zsRuVs,take off gloves,what happened to the person in red when he was explaining it to someone,v_T3A88zsRuVs,v_T3A88zsRuVs_5,2 4052,v_2nDJpvD-eZU,put into water tank,what happened to the person in the video after they cut the potatoes,v_2nDJpvD-eZU,v_2nDJpvD-eZU_5,2 4053,v_4j_LRkB4T6c,start dancing,what happened when the person in white walked into the line,v_4j_LRkB4T6c,v_4j_LRkB4T6c_5,2 4054,v_Oh3-DvDCpZ4,well cooked,what happened after the white person stirred the dish,v_Oh3-DvDCpZ4,v_Oh3-DvDCpZ4_5,2 4055,v_otMw5GJWYWs,unable to stand firmly,what happened when the person in white leaves a man's help,v_otMw5GJWYWs,v_otMw5GJWYWs_5,2 4056,v_fbr7v8RMkf8,slide down slope,what happened when the person sit on cushions,v_fbr7v8RMkf8,v_fbr7v8RMkf8_5,2 4057,v_04qggWACGWk,put on leg,what happened after the person in the video put hair cream on his hand,v_04qggWACGWk,v_04qggWACGWk_5,2 4058,v_qgUHRwC3194,black pants swimmers,what happened to the person in the white short sleeve after he turned around,v_qgUHRwC3194,v_qgUHRwC3194_5,2 4059,v_uw9x69DT8_g,go on running,what happened after the person in the video rubbed his eyes with his hands,v_uw9x69DT8_g,v_uw9x69DT8_g_5,2 4060,v_diY-XBT5cD4,kicking doll,"what happened to the person in the video, daiwan, after the contact lenses",v_diY-XBT5cD4,v_diY-XBT5cD4_5,2 4061,v_an1R4BP97JY,be cuddle,what happened after the fertilizer was put in the soil,v_an1R4BP97JY,v_an1R4BP97JY_5,2 4062,v_jbCQY7V7O1s,go out of room,what happened to the first person who showed up after he finished talking,v_jbCQY7V7O1s,v_jbCQY7V7O1s_5,2 4063,v_GjcRJzPjbRI,shot put,what happened after the person in the grey vest turned and got up,v_GjcRJzPjbRI,v_GjcRJzPjbRI_5,2 4064,v_Bgi2Y85Mbwk,puff out smoke,what happened after the person in the video took a sip,v_Bgi2Y85Mbwk,v_Bgi2Y85Mbwk_5,2 4065,v_paRAKx8svJ8,start of the game,what happened when the person in the purple posed,v_paRAKx8svJ8,v_paRAKx8svJ8_5,2 4066,v_pVoM_kUQ4_E,audience applauded,what happened after the pumpkin lamp was modeled,v_pVoM_kUQ4_E,v_pVoM_kUQ4_E_5,2 4067,v_AsdsR27UnJ0,control by foot,what happened when you stick your toothbrush on the back of the beam in the video,v_AsdsR27UnJ0,v_AsdsR27UnJ0_5,2 4068,v_cQgP0-Id-p4,celebrate,what happened to the person in the video after she won,v_cQgP0-Id-p4,v_cQgP0-Id-p4_5,2 4069,v_FEOdYNR4gls,pick up,what happened when a woman dropped a prop on the floor,v_FEOdYNR4gls,v_FEOdYNR4gls_5,2 4070,v_rSGboODhu04,stir,what happened when you put the vegetables in,v_rSGboODhu04,v_rSGboODhu04_5,2 4071,v_z8x3wUZYOaM,tissue,what is the box on the table in the video,v_z8x3wUZYOaM,v_z8x3wUZYOaM_8,5 4072,v_iqyc2JM0uIU,bartender,what might a man in red do for a living,v_iqyc2JM0uIU,v_iqyc2JM0uIU_6,8 4073,v_-CqVpCRxwTY,lake,what is the woman in the video,v_-CqVpCRxwTY,v_-CqVpCRxwTY_4,1 4074,v_CvbL36Y8hN0,swimming pool,what is the woman behind the bungee in the video,v_CvbL36Y8hN0,v_CvbL36Y8hN0_4,1 4075,v_brJIpRGcBFU,automative lighting,what is above the car,v_brJIpRGcBFU,v_brJIpRGcBFU_4,1 4076,v_CfqnHsp6olc,audiences stand,what is above the football field,v_CfqnHsp6olc,v_CfqnHsp6olc_4,1 4077,v_fLR-b-FDjlM,sky,what is above the main character of the game,v_fLR-b-FDjlM,v_fLR-b-FDjlM_4,1 4078,v_idkQqlwyff8,star shaped toy,what is above the red boy at the beginning of the video,v_idkQqlwyff8,v_idkQqlwyff8_4,1 4079,v_iuc48VIWLJY,tree,what is above the snow,v_iuc48VIWLJY,v_iuc48VIWLJY_4,1 4080,v_9eniCub7u60,ceiling,what is above the top of their heads,v_9eniCub7u60,v_9eniCub7u60_4,1 4081,v_Vxw3yFCV2iA,water sled,what is at the feet of the athletes,v_Vxw3yFCV2iA,v_Vxw3yFCV2iA_4,1 4082,v_A_Sr0mCX2rI,vehicle,what is behind the camouflage,v_A_Sr0mCX2rI,v_A_Sr0mCX2rI_4,1 4083,v_v6DdLg_Xnkg,red cloth,what is behind the curly woman,v_v6DdLg_Xnkg,v_v6DdLg_Xnkg_4,1 4084,v_er5jUsRr4y0,mirror,what is behind the fat man,v_er5jUsRr4y0,v_er5jUsRr4y0_4,1 4085,v_EBw5-KVV_PU,curtain,what is behind the girl,v_EBw5-KVV_PU,v_EBw5-KVV_PU_4,1 4086,v_vSv1qMMt4Bk,automobile,what is behind the woman wearing a white hat,v_vSv1qMMt4Bk,v_vSv1qMMt4Bk_4,1 4087,v_LPRLV0eVgfY,grassland,what is behind the person wearing crimson clothes,v_LPRLV0eVgfY,v_LPRLV0eVgfY_4,1 4088,v_eVkp83uGf3Y,safety net,what's behind the man in a red vest,v_eVkp83uGf3Y,v_eVkp83uGf3Y_4,1 4089,v_kistIwzeQOU,door,what is behind the man in white,v_kistIwzeQOU,v_kistIwzeQOU_4,1 4090,v_f1d7_TKXNYQ,spectator seats,what is behind the man running in the video,v_f1d7_TKXNYQ,v_f1d7_TKXNYQ_4,1 4091,v_xuvp0jKMqRU,pumpkin shed,what is behind the man wearing glasses,v_xuvp0jKMqRU,v_xuvp0jKMqRU_4,1 4092,v_1YU4MSK80cQ,horizontal bar,what is behind the man in a black vest,v_1YU4MSK80cQ,v_1YU4MSK80cQ_4,1 4093,v_mek9Zodu8LM,television,what is behind the person in a white dress,v_mek9Zodu8LM,v_mek9Zodu8LM_4,1 4094,v_IIPKxzPjrWg,oxygen bottle,what is behind the woman in tights,v_IIPKxzPjrWg,v_IIPKxzPjrWg_4,1 4095,v_IxaBEVd2PZM,wall,what is behind the woman who stays long,v_IxaBEVd2PZM,v_IxaBEVd2PZM_4,1 4096,v_4LoAbHdHWqM,chair,what is behind the adults in the video,v_4LoAbHdHWqM,v_4LoAbHdHWqM_4,1 4097,v_Ki13JIVwMdk,carpet,what is behind the black and white hair dog,v_Ki13JIVwMdk,v_Ki13JIVwMdk_4,1 4098,v_KXMZHfCwTO0,vehicle,what is behind the bald man,v_KXMZHfCwTO0,v_KXMZHfCwTO0_4,1 4099,v_L5IbDi09Yb4,big bottle,what is behind the bald head,v_L5IbDi09Yb4,v_L5IbDi09Yb4_4,1 4100,v_IDuoF51IMJ8,spectator seats,what is behind the basketball hoop,v_IDuoF51IMJ8,v_IDuoF51IMJ8_4,1 4101,v_CaeZoHNHul0,cabinet,what is behind the brunette girl,v_CaeZoHNHul0,v_CaeZoHNHul0_4,1 4102,v_IclzwpxVvIk,door,what is the rear of the brunette woman,v_IclzwpxVvIk,v_IclzwpxVvIk_4,1 4103,v_J1QB1y3vXLY,chair,what is behind the blonde woman,v_J1QB1y3vXLY,v_J1QB1y3vXLY_4,1 4104,v_zA2zZPyYLlU,spider man,what is behind the ship in the video,v_zA2zZPyYLlU,v_zA2zZPyYLlU_6,5 4105,v_KPRymTsPCC0,desert,what is behind the boys wearing glasses,v_KPRymTsPCC0,v_KPRymTsPCC0_4,1 4106,v_VfhDSTKBwgc,bed,what is behind the cardboard,v_VfhDSTKBwgc,v_VfhDSTKBwgc_4,1 4107,v_bBRzBh0gAZQ,personal information,what is behind the contestants,v_bBRzBh0gAZQ,v_bBRzBh0gAZQ_4,1 4108,v_0lbv0AE5gJQ,house,what is behind the disabled in the video,v_0lbv0AE5gJQ,v_0lbv0AE5gJQ_4,1 4109,v_woI_zP55qWo,tree,what is behind the diving platform,v_woI_zP55qWo,v_woI_zP55qWo_4,1 4110,v_3LwQ2yq85LU,painted wall,what is behind the fencing person in the second picture,v_3LwQ2yq85LU,v_3LwQ2yq85LU_4,1 4111,v_VSsZZZHn1L0,door,what is behind the girl in black,v_VSsZZZHn1L0,v_VSsZZZHn1L0_4,1 4112,v_I9ficvPdpZg,house,what is behind the glass window on the stage,v_I9ficvPdpZg,v_I9ficvPdpZg_4,1 4113,v_VJh9W3Gcpmo,red curtain,what is behind the green toy,v_VJh9W3Gcpmo,v_VJh9W3Gcpmo_4,1 4114,v_2bQx5igckJc,both hands,what is behind the head of the blond hair,v_2bQx5igckJc,v_2bQx5igckJc_4,1 4115,v_k-I4zLbgdpM,wood,what is behind the left-handed injured little girl standing to explain,v_k-I4zLbgdpM,v_k-I4zLbgdpM_4,1 4116,v_wcxEkMoOmBk,television,what is behind the woman in blue dress,v_wcxEkMoOmBk,v_wcxEkMoOmBk_4,1 4117,v_SYh-j9bK_ls,audience,what is behind the cheerleaders,v_SYh-j9bK_ls,v_SYh-j9bK_ls_4,1 4118,v_NjD6iWI3NvM,tree,what is behind the little boy,v_NjD6iWI3NvM,v_NjD6iWI3NvM_4,1 4119,v_oGU7m7rCZ-Y,street,what is behind the person wearing a blue jacket,v_oGU7m7rCZ-Y,v_oGU7m7rCZ-Y_4,1 4120,v_H33jSILKmfI,chair,what is behind the person in a black suit with a blue shirt,v_H33jSILKmfI,v_H33jSILKmfI_4,1 4121,v_N9VOdVOiPNM,mirror,what is behind the person wearing blue striped clothes,v_N9VOdVOiPNM,v_N9VOdVOiPNM_4,1 4122,v_rGOOlcdpfLg,wall,what is behind the person wearing a plaid jacket,v_rGOOlcdpfLg,v_rGOOlcdpfLg_4,1 4123,v_zpaS2iYrJjk,automobile,what is behind the person in a red shirt,v_zpaS2iYrJjk,v_zpaS2iYrJjk_4,1 4124,v_KT8DUDFc3Xg,lot of boxes,what is behind the person wearing red,v_KT8DUDFc3Xg,v_KT8DUDFc3Xg_4,1 4125,v_H_IfIsKQ3Zw,tree,what is behind the person in white,v_H_IfIsKQ3Zw,v_H_IfIsKQ3Zw_4,1 4126,v_6H0D8VaIli0,wall,what is behind the person holding the instrument in the video,v_6H0D8VaIli0,v_6H0D8VaIli0_4,1 4127,v_wdvQC41PGPk,wall,what is behind the person who plays the saxophone,v_wdvQC41PGPk,v_wdvQC41PGPk_4,1 4128,v_YvPoAOrjX5I,white man,what is behind the person in blue,v_YvPoAOrjX5I,v_YvPoAOrjX5I_4,1 4129,v_OlR9S70AA74,sea,what is behind the person wearing green pants,v_OlR9S70AA74,v_OlR9S70AA74_4,1 4130,v_BhgcXqWQhkQ,steps,what is behind the people on the stage,v_BhgcXqWQhkQ,v_BhgcXqWQhkQ_4,1 4131,v_AQ3eFWxZ67U,bookcase,what is behind the person sitting in the office in the video,v_AQ3eFWxZ67U,v_AQ3eFWxZ67U_4,1 4132,v_kD_EJjQCLoY,cabinet,what is behind the person who stood at the beginning of the video,v_kD_EJjQCLoY,v_kD_EJjQCLoY_4,1 4133,v_H9PaZiWLgXU,oven,what is behind the person wearing yellow clothes,v_H9PaZiWLgXU,v_H9PaZiWLgXU_4,1 4134,v_K1OsjA-f17E,car,what is behind the person wearing sunglasses,v_K1OsjA-f17E,v_K1OsjA-f17E_4,1 4135,v_I16FTpQQiic,tree,what is behind the person in red,v_I16FTpQQiic,v_I16FTpQQiic_4,1 4136,v_OUxgs_QlPHE,swimming pool,what is behind the person wearing a green swimsuit,v_OUxgs_QlPHE,v_OUxgs_QlPHE_4,1 4137,v_UNXLfqkwKFc,wall,what is behind the photo on the table,v_UNXLfqkwKFc,v_UNXLfqkwKFc_4,1 4138,v_JKJ_EvP7JwQ,wall,what is behind the pumpkin,v_JKJ_EvP7JwQ,v_JKJ_EvP7JwQ_4,1 4139,v_H_JLBvfP88U,audience,what is behind the railing,v_H_JLBvfP88U,v_H_JLBvfP88U_4,1 4140,v_uty4eGb_vvU,guardrail,what is behind the red woman,v_uty4eGb_vvU,v_uty4eGb_vvU_4,1 4141,v_9SIPJd4Hls4,cabinet,what is behind the person wearing a red hat,v_9SIPJd4Hls4,v_9SIPJd4Hls4_4,1 4142,v_wCexKIuAj3A,glass,what is behind the red sofa,v_wCexKIuAj3A,v_wCexKIuAj3A_4,1 4143,v_W9H2qVnIWXs,wall,what is behind the dog in the rubber band,v_W9H2qVnIWXs,v_W9H2qVnIWXs_4,1 4144,v_wE9sQbGdeAk,oxygen bottle,what is behind the diver,v_wE9sQbGdeAk,v_wE9sQbGdeAk_4,1 4145,v_IMMoglaJ3RY,enclosure,what is behind a short hair man,v_IMMoglaJ3RY,v_IMMoglaJ3RY_4,1 4146,v_EETygPQ-j08,railing,what is behind the sofa seat,v_EETygPQ-j08,v_EETygPQ-j08_4,1 4147,v_rWfQj0X8WU4,stone,what is behind the bouncer,v_rWfQj0X8WU4,v_rWfQj0X8WU4_4,1 4148,v_cAiig_569fI,shed,what is behind the volleyball court,v_cAiig_569fI,v_cAiig_569fI_4,1 4149,v__jIXs7AFTxw,chair,what is behind the white clothes,v__jIXs7AFTxw,v__jIXs7AFTxw_4,1 4150,v_I2XqSiNerwg,telegraph pole,what is behind the white haired person,v_I2XqSiNerwg,v_I2XqSiNerwg_4,1 4151,v_7rwDYzqfGgU,audience,what is behind the woman in the center of the field,v_7rwDYzqfGgU,v_7rwDYzqfGgU_4,1 4152,v_j81ndpMC9gI,wall,what is behind the woman in the video,v_j81ndpMC9gI,v_j81ndpMC9gI_4,1 4153,v_ILmZg0vz0Hg,ornament,what is behind the woman wearing glasses,v_ILmZg0vz0Hg,v_ILmZg0vz0Hg_4,1 4154,v_hG4VsZQQ2_c,grass,what is behind the people of zhangmutou,v_hG4VsZQQ2_c,v_hG4VsZQQ2_c_4,1 4155,v_EDDbcCBnTQM,tree,what is behind the wooden fence,v_EDDbcCBnTQM,v_EDDbcCBnTQM_4,1 4156,v_wh6P2C2avqc,wall,what is behind the exerciser,v_wh6P2C2avqc,v_wh6P2C2avqc_4,1 4157,v_EQWdo0FcKAo,white walls,what is behind the person in black who dances alone,v_EQWdo0FcKAo,v_EQWdo0FcKAo_4,1 4158,v_MQ9Ojge7CyA,water,what is below the person in the video,v_MQ9Ojge7CyA,v_MQ9Ojge7CyA_4,1 4159,v_7vcihMnmssI,river,what is below the ice,v_7vcihMnmssI,v_7vcihMnmssI_4,1 4160,v_8kaQq1mR2ys,swimming pool,what is under the pedal,v_8kaQq1mR2ys,v_8kaQq1mR2ys_4,1 4161,v_p1QGn0IzfW0,springboard,what is the following when the person in red takes off,v_p1QGn0IzfW0,v_p1QGn0IzfW0_4,1 4162,v_7IwHwDuQdyU,gymnastic mat,what is under the girl in a blue vest,v_7IwHwDuQdyU,v_7IwHwDuQdyU_4,1 4163,v_HWFosaUWoSI,red,what color is the wall outside the house,v_HWFosaUWoSI,v_HWFosaUWoSI_7,4 4164,v_7BFbmEY3BNw,water,what did drip in the cave,v_7BFbmEY3BNw,v_7BFbmEY3BNw_7,5 4165,v_I3tqWc5wG78,table,what is behind the person wearing the sweater chain,v_I3tqWc5wG78,v_I3tqWc5wG78_4,1 4166,v_9TjPn_ejmFU,board,what is the front of the child wearing blue and white stripes,v_9TjPn_ejmFU,v_9TjPn_ejmFU_4,1 4167,v_-p7aui3nAnc,performers,what is the front of the child holding a plastic bag,v_-p7aui3nAnc,v_-p7aui3nAnc_4,1 4168,v_32vYs9wKXE8,dresser,what is the front of the long hair girl,v_32vYs9wKXE8,v_32vYs9wKXE8_4,1 4169,v_UvOEuhS0V3E,mirror,what is the front of the long hair woman,v_UvOEuhS0V3E,v_UvOEuhS0V3E_4,1 4170,v_oflwFZj9PNY,runway,what is the front of the person wearing red and black clothes,v_oflwFZj9PNY,v_oflwFZj9PNY_4,1 4171,v_rApbE1VkEjE,snow,what is in front of the person wearing a yellow scorpion,v_rApbE1VkEjE,v_rApbE1VkEjE_4,1 4172,v_pzTqZWPubk8,water tap,what is the front of the person wearing a black tie,v_pzTqZWPubk8,v_pzTqZWPubk8_4,1 4173,v_sNTOUuE7ZfM,woman,what is the front of the person wearing the tie,v_sNTOUuE7ZfM,v_sNTOUuE7ZfM_4,1 4174,v_r2H-cnti8GI,magic cube,what is the front of the person wearing a black and white shirt,v_r2H-cnti8GI,v_r2H-cnti8GI_4,1 4175,v_kPn9NzU4W48,opponent,what is the person wearing red and white shoes,v_kPn9NzU4W48,v_kPn9NzU4W48_4,1 4176,v_ej_fSoVO0R8,table,what is in front of the person wearing a white apron,v_ej_fSoVO0R8,v_ej_fSoVO0R8_4,1 4177,v_nP1Bk-vJgVg,ball net,what is the front of the person wearing a white helmet,v_nP1Bk-vJgVg,v_nP1Bk-vJgVg_4,1 4178,v_gOnp3DZxeKU,pot,what is in front of the person wearing a purple shirt,v_gOnp3DZxeKU,v_gOnp3DZxeKU_4,1 4179,v_9G172wz5Yqo,snow land,what is the front of the red girl,v_9G172wz5Yqo,v_9G172wz5Yqo_4,1 4180,v_iQnnCZTl_7U,toaster oven,what is in front of the gray woman,v_iQnnCZTl_7U,v_iQnnCZTl_7U_4,1 4181,v_FnPS6zn5S7M,referee,what is the front of a woman wearing a gym suit,v_FnPS6zn5S7M,v_FnPS6zn5S7M_4,1 4182,v_FFMugev85IY,drum,what is the front of the woman in a red shirt,v_FFMugev85IY,v_FFMugev85IY_4,1 4183,v_fMVuGUBs2cs,wine glass,what is the front of this person,v_fMVuGUBs2cs,v_fMVuGUBs2cs_4,1 4184,v_5k2Ot6-wOgc,bowling pin,what is in front of the person in black,v_5k2Ot6-wOgc,v_5k2Ot6-wOgc_4,1 4185,v_ZsVfa3JIUNU,microphone,what is the front of the person wearing black glasses,v_ZsVfa3JIUNU,v_ZsVfa3JIUNU_4,1 4186,v_ZnKB0U96ZI4,tennis,what is the front of the person wearing red shorts,v_ZnKB0U96ZI4,v_ZnKB0U96ZI4_4,1 4187,v_SGAUpoTMSnA,car,what is the front of the person wearing white clothes before launching,v_SGAUpoTMSnA,v_SGAUpoTMSnA_4,1 4188,v_HowkVy5fOyk,bullfighting field,what is in front of the audience in the video,v_HowkVy5fOyk,v_HowkVy5fOyk_4,1 4189,v_4LF0hL-mgks,pool,what is in front of the person who appeared at the beginning of the video,v_4LF0hL-mgks,v_4LF0hL-mgks_4,1 4190,v_ds3mAmUPxYA,microphone,what is the front of the two people,v_ds3mAmUPxYA,v_ds3mAmUPxYA_4,1 4191,v_K5jY2chByPw,wall,what is the front of the horse,v_K5jY2chByPw,v_K5jY2chByPw_4,1 4192,v_eQwLUJ3P7wI,car,what is in front of the person who started the video at the beginning of the video,v_eQwLUJ3P7wI,v_eQwLUJ3P7wI_4,1 4193,v_G0VWk5WqDp0,playground,what is the front of the person wearing a blue vest,v_G0VWk5WqDp0,v_G0VWk5WqDp0_4,1 4194,v_IGPZFun1Ok4,bet,what is the front of the red man,v_IGPZFun1Ok4,v_IGPZFun1Ok4_4,1 4195,v_OQEKZXv6jSw,runway,what is in front of the person wearing red,v_OQEKZXv6jSw,v_OQEKZXv6jSw_4,1 4196,v_16bJAOf1SJI,ball table,what is in front of the person wearing the blue and white plaid,v_16bJAOf1SJI,v_16bJAOf1SJI_4,1 4197,v_rnI9vGr5V1k,grinder machine,what is the front of the person wearing the plaid clothes,v_rnI9vGr5V1k,v_rnI9vGr5V1k_4,1 4198,v_HX6BeHLQh5s,table,what is the man in front of the video,v_HX6BeHLQh5s,v_HX6BeHLQh5s_4,1 4199,v_OFTkwnSh-sQ,runway,what is in front of the person wearing yellow clothes,v_OFTkwnSh-sQ,v_OFTkwnSh-sQ_4,1 4200,v_Z6b4oFjIznU,balance beam,what is in front of the person on the balance beam,v_Z6b4oFjIznU,v_Z6b4oFjIznU_4,1 4201,v_Npj77L31bhw,glove,what is the front of the person wearing the hat,v_Npj77L31bhw,v_Npj77L31bhw_4,1 4202,v_ghHZ9M-jx0w,scoreboard,what is the person in front of the whistle in his mouth,v_ghHZ9M-jx0w,v_ghHZ9M-jx0w_4,1 4203,v_G25py7yEVyo,audience,what is in front of the person wearing a red skirt,v_G25py7yEVyo,v_G25py7yEVyo_4,1 4204,v_LvTwJTvluHE,sandy beach,what is in front of the person wearing green swimming trunks,v_LvTwJTvluHE,v_LvTwJTvluHE_4,1 4205,v_GxDNGtoVjS0,tree,what is in front of the person wearing a gray coat,v_GxDNGtoVjS0,v_GxDNGtoVjS0_4,1 4206,v_GjcRJzPjbRI,scoreboard,what is the front of the person wearing a yellow vest,v_GjcRJzPjbRI,v_GjcRJzPjbRI_4,1 4207,v_OcL7ZhBCkxQ,ground,what is the front of the person wearing black pants,v_OcL7ZhBCkxQ,v_OcL7ZhBCkxQ_4,1 4208,v_GSrBZXLSwWI,machine,what is the front of the person wearing black short sleeves,v_GSrBZXLSwWI,v_GSrBZXLSwWI_4,1 4209,v_NJRrhNrEMsk,vehicle,what is the person in front of the video,v_NJRrhNrEMsk,v_NJRrhNrEMsk_4,1 4210,v_GcjzvBatqb4,pull rope,what is in front of the person wearing orange clothes,v_GcjzvBatqb4,v_GcjzvBatqb4_4,1 4211,v_K49OCArHjXI,fish,what is in front of people with goggles,v_K49OCArHjXI,v_K49OCArHjXI_4,1 4212,v_HDt5z5Y0opo,audience,what is under the table,v_HDt5z5Y0opo,v_HDt5z5Y0opo_4,1 4213,v_0w4OkBenR_k,lawn,what is in front of the railing,v_0w4OkBenR_k,v_0w4OkBenR_k_4,1 4214,v_PdwWFueQErM,tree,what is in front of the snow sweeper,v_PdwWFueQErM,v_PdwWFueQErM_4,1 4215,v_eMgC7I-GcgA,launch,what is in front of the surfers,v_eMgC7I-GcgA,v_eMgC7I-GcgA_4,1 4216,v_Jix3poZOeZA,guardrail net,what is the front of the tennis court,v_Jix3poZOeZA,v_Jix3poZOeZA_4,1 4217,v_KsFid_YVsn0,tree,what is the front of the video at the beginning of the woman,v_KsFid_YVsn0,v_KsFid_YVsn0_4,1 4218,v_kkji9hespu0,boiler,what is this woman in front of,v_kkji9hespu0,v_kkji9hespu0_4,1 4219,v_C7yd6yEkxXE,wood,what is behind the yard,v_C7yd6yEkxXE,v_C7yd6yEkxXE_4,1 4220,v__l251ZuOCYU,audience,what is behind them in the video midfield,v__l251ZuOCYU,v__l251ZuOCYU_4,1 4221,v_IMMoglaJ3RY,potted plant,what is in the middle of the lawn,v_IMMoglaJ3RY,v_IMMoglaJ3RY_9,5 4222,v_UNXLfqkwKFc,watch,what is the left hand of a person wearing blue shorts,v_UNXLfqkwKFc,v_UNXLfqkwKFc_7,5 4223,v_IYLJU87AkOg,photo,what is in the middle of the hula hoop on the wall,v_IYLJU87AkOg,v_IYLJU87AkOg_10,5 4224,v_a_EqAwUOxpM,minions,what is the nail in the video,v_a_EqAwUOxpM,v_a_EqAwUOxpM_7,5 4225,v_3dWw9GLcOeA,ring,what is the bird's mouth,v_3dWw9GLcOeA,v_3dWw9GLcOeA_6,5 4226,v_Npj77L31bhw,lattice,what pants are worn by people wearing hats,v_Npj77L31bhw,v_Npj77L31bhw_7,8 4227,v_NJRrhNrEMsk,jeans,what pants are the people wearing in the video,v_NJRrhNrEMsk,v_NJRrhNrEMsk_7,8 4228,v_KZ1NEffR2Qg,blue sneakers,what shoes are worn by people wearing red trousers,v_KZ1NEffR2Qg,v_KZ1NEffR2Qg_9,8 4229,v_wLXty2wzuJg,swimming,what is mr. bean doing in the video,v_wLXty2wzuJg,v_wLXty2wzuJg_1,0 4230,v_AsdsR27UnJ0,mirror,what is next to the first fixed toothbrush,v_AsdsR27UnJ0,v_AsdsR27UnJ0_7,6 4231,v_f2DS_AVorrY,big tree,what is next to the diving platform,v_f2DS_AVorrY,v_f2DS_AVorrY_4,1 4232,v_9FQ-VLkCZo8,play hockey,what is the number 43 wearing green clothes,v_9FQ-VLkCZo8,v_9FQ-VLkCZo8_1,0 4233,v_elD1P_1oiUk,tree,what are the left and right sides of the river,v_elD1P_1oiUk,v_elD1P_1oiUk_4,1 4234,v_-8SgY4vW4xM,bracelet,what is in the hand of the person in the video,v_-8SgY4vW4xM,v_-8SgY4vW4xM_10,5 4235,v_Ko7Nt8UDP4Q,refrigerator,what is the right side of the person who opened the refrigerator,v_Ko7Nt8UDP4Q,v_Ko7Nt8UDP4Q_4,1 4236,v_JbW8efAOOt0,sofa,what is the right side of the stereo,v_JbW8efAOOt0,v_JbW8efAOOt0_4,1 4237,v_idkQqlwyff8,line,what does the black man hold on his hand,v_idkQqlwyff8,v_idkQqlwyff8_9,5 4238,v_qlK-c7hRqcA,yellow paint,what's on the blue car,v_qlK-c7hRqcA,v_qlK-c7hRqcA_8,5 4239,v_yRQpolWhJ6A,ceiling,what is above the person wearing blue clothes,v_yRQpolWhJ6A,v_yRQpolWhJ6A_4,1 4240,v_KPRymTsPCC0,iron chain,what is the camel,v_KPRymTsPCC0,v_KPRymTsPCC0_9,5 4241,v_4LoAbHdHWqM,patch,what is the child wearing on the face in the video,v_4LoAbHdHWqM,v_4LoAbHdHWqM_9,5 4242,v_6G8m-vsGTA8,glasses,what is the face of the person driving in the video,v_6G8m-vsGTA8,v_6G8m-vsGTA8_7,5 4243,v_W97fdJ2Rn9g,ring,what is on the finger,v_W97fdJ2Rn9g,v_W97fdJ2Rn9g_4,1 4244,v_TnP6coXzbLY,tool,what is the front wall of the person in the video,v_TnP6coXzbLY,v_TnP6coXzbLY_4,1 4245,v__2txWbQfJrY,glove,what does the short-sleeved man have on his hand,v__2txWbQfJrY,v__2txWbQfJrY_6,5 4246,v_LPRLV0eVgfY,dolly,what do you hold on the hands of people wearing crimson clothes,v_LPRLV0eVgfY,v_LPRLV0eVgfY_9,5 4247,v_1px5LTVIR3A,hu la hoop,what is the hand of a person dancing in blue,v_1px5LTVIR3A,v_1px5LTVIR3A_9,5 4248,v_NvRH4SoF09c,wrist watch,what does the person in black have on his hand,v_NvRH4SoF09c,v_NvRH4SoF09c_10,5 4249,v_JsPIzRsUtlE,glove,what are the people wearing in the middle of the field,v_JsPIzRsUtlE,v_JsPIzRsUtlE_9,5 4250,v_ldAHwbF8uWI,microphone,what do you take in the hands of people standing in taichung,v_ldAHwbF8uWI,v_ldAHwbF8uWI_10,5 4251,v_-vY2uUmv6Dk,safety hat,what is on the head of a person wearing dark purple clothes,v_-vY2uUmv6Dk,v_-vY2uUmv6Dk_4,1 4252,v_f8SWWURHV1M,plastic flowers,what's on the little girl's head,v_f8SWWURHV1M,v_f8SWWURHV1M_8,5 4253,v_wnNiWoJxfSQ,hat,what is on the head of a person wearing a purple dress,v_wnNiWoJxfSQ,v_wnNiWoJxfSQ_4,1 4254,v_LYTWYSqsTCE,glasses,what is wearing on the head of a person in gray,v_LYTWYSqsTCE,v_LYTWYSqsTCE_6,5 4255,v_Ki1bs5X_S5k,hat,what is the girl wearing a blue dress on the head,v_Ki1bs5X_S5k,v_Ki1bs5X_S5k_9,5 4256,v_IYLJU87AkOg,lamp,what is the head of the person wearing the hat,v_IYLJU87AkOg,v_IYLJU87AkOg_4,1 4257,v_KWpATsiXF_M,hat,what is the person wearing the long stick in the field,v_KWpATsiXF_M,v_KWpATsiXF_M_8,5 4258,v_RLBfyIVpocE,hat,what is wearing on the referee's head,v_RLBfyIVpocE,v_RLBfyIVpocE_9,5 4259,v_EXPYu9bfNcE,watch,what is the fat woman's left hand,v_EXPYu9bfNcE,v_EXPYu9bfNcE_10,5 4260,v_7BUr2cN8CLs,curling brush,what is the last blonde woman on the left hand of the video,v_7BUr2cN8CLs,v_7BUr2cN8CLs_4,1 4261,v_s9PkkDEl6aY,wrist watch,what does the person standing on the table wear on his left hand,v_s9PkkDEl6aY,v_s9PkkDEl6aY_9,5 4262,v_JGPhQX97OSE,watch,what is the second person on the left hand of the team,v_JGPhQX97OSE,v_JGPhQX97OSE_9,5 4263,v_3Rzyta8op6s,watch,what is in the hand of the person on the left side of the bald head in the video,v_3Rzyta8op6s,v_3Rzyta8op6s_8,5 4264,v_sRNqK_QZbMs,coach,what is the left side of the athlete with a black helmet,v_sRNqK_QZbMs,v_sRNqK_QZbMs_4,1 4265,v_lYP05IRcOPE,bushes,what is the left side of the person drifting,v_lYP05IRcOPE,v_lYP05IRcOPE_4,1 4266,v_7OcxT66BxX0,microphone,what is the left side of the man wearing a black hat,v_7OcxT66BxX0,v_7OcxT66BxX0_4,1 4267,v_PSB1nM3QXxg,vehicle,what is the left side of the person with a purple belt around the waist,v_PSB1nM3QXxg,v_PSB1nM3QXxg_4,1 4268,v_qGLRri_c6n8,lawn,what is the left side of the person wearing a pink shirt,v_qGLRri_c6n8,v_qGLRri_c6n8_4,1 4269,v_8teo_0gxzgk,long hair man,what is the left side of the white man,v_8teo_0gxzgk,v_8teo_0gxzgk_4,1 4270,v_dGT_KGb0gyw,man in white,what is the left side of the woman in a yellow shirt,v_dGT_KGb0gyw,v_dGT_KGb0gyw_4,1 4271,v_E_UkQGk7QAE,child,what is the left side of the woman in light blue clothes,v_E_UkQGk7QAE,v_E_UkQGk7QAE_4,1 4272,v_-EIsT868Trw,coach,what is the left side of the gray woman,v_-EIsT868Trw,v_-EIsT868Trw_4,1 4273,v_uIHWHnItois,tree,what is the left side of the person wearing orange clothes,v_uIHWHnItois,v_uIHWHnItois_4,1 4274,v_zOI9SjQpc_Q,audience,what is the left side of the 9th player,v_zOI9SjQpc_Q,v_zOI9SjQpc_Q_4,1 4275,v_LWt2FuU0uC4,referee,what is the left side of the athlete after the shot put,v_LWt2FuU0uC4,v_LWt2FuU0uC4_4,1 4276,v_LjPKKqe-VO0,coach,what is the left side of the blond-haired person,v_LjPKKqe-VO0,v_LjPKKqe-VO0_4,1 4277,v_SNja9iUdAiI,basketball box,what is the left side of the person who keeps the donkey,v_SNja9iUdAiI,v_SNja9iUdAiI_4,1 4278,v_S7CW-si2JjA,saw,what is the left side of the cake at the beginning of the video,v_S7CW-si2JjA,v_S7CW-si2JjA_4,1 4279,v_K1LiXUpoSmI,enclosure,what is the left side of the child,v_K1LiXUpoSmI,v_K1LiXUpoSmI_4,1 4280,v_2CegApogJd4,audience,what is the left side of the contestant,v_2CegApogJd4,v_2CegApogJd4_4,1 4281,v_hIHeMA1oRrY,road,what is the left side of the dog,v_hIHeMA1oRrY,v_hIHeMA1oRrY_4,1 4282,v_bYNQ0GrCt64,shelf,what is on the left side of the door in the video,v_bYNQ0GrCt64,v_bYNQ0GrCt64_4,1 4283,v_VvsYrfEvvUw,grassland,what is on the left side of the exerciser,v_VvsYrfEvvUw,v_VvsYrfEvvUw_4,1 4284,v_V08Q-DbT0GQ,plate,what is the left side of the fork,v_V08Q-DbT0GQ,v_V08Q-DbT0GQ_4,1 4285,v_JGxf-jke0e8,yellow basin,what is the left side of the green basin,v_JGxf-jke0e8,v_JGxf-jke0e8_4,1 4286,v_HWFosaUWoSI,tree,what is the left side of the house in the video,v_HWFosaUWoSI,v_HWFosaUWoSI_4,1 4287,v_N4qhryre_TE,audience,what is the left side of the person wearing a black jacket,v_N4qhryre_TE,v_N4qhryre_TE_4,1 4288,v_NNiJfr_ChH4,men in black,what is the left side of the person wearing blue clothes,v_NNiJfr_ChH4,v_NNiJfr_ChH4_4,1 4289,v_KZ1NEffR2Qg,street lamp,what is the left side of the person wearing red pants,v_KZ1NEffR2Qg,v_KZ1NEffR2Qg_4,1 4290,v_qGtUXGG78tM,tree,what is the left side of the person wearing dark blue pants,v_qGtUXGG78tM,v_qGtUXGG78tM_4,1 4291,v_Ep5LuX_2gfI,mountain,what is on the left side of the ocean when the video starts,v_Ep5LuX_2gfI,v_Ep5LuX_2gfI_4,1 4292,v_CKSlgK_2FP4,seasoning,what is on the left side of the oven,v_CKSlgK_2FP4,v_CKSlgK_2FP4_4,1 4293,v_N75m1Z4RqbA,audience,what is the left side of the person wearing black clothes,v_N75m1Z4RqbA,v_N75m1Z4RqbA_4,1 4294,v_NZskwwovSZI,table,what is the left side of the person wearing white clothes,v_NZskwwovSZI,v_NZskwwovSZI_4,1 4295,v_WdtytUagoJs,audiences stand,what is on the left side of the playground,v_WdtytUagoJs,v_WdtytUagoJs_4,1 4296,v_8A4cZXyDrkU,spare tire,what is the left side of the red car,v_8A4cZXyDrkU,v_8A4cZXyDrkU_4,1 4297,v_JY9oOSfjj_E,tree,what is the left side of the ski run,v_JY9oOSfjj_E,v_JY9oOSfjj_E_4,1 4298,v_uLsq6gQXQPM,grass,what is the left side of the slide,v_uLsq6gQXQPM,v_uLsq6gQXQPM_4,1 4299,v_aAz3YL2RMr4,tattoo artist,what is on the left side of the tattooed person,v_aAz3YL2RMr4,v_aAz3YL2RMr4_4,1 4300,v_3Nd3Aai1bVA,audience,what is the left side of the track,v_3Nd3Aai1bVA,v_3Nd3Aai1bVA_4,1 4301,v_huFOZ2BiM_k,dry powder plate,what is the left side of the uneven bars,v_huFOZ2BiM_k,v_huFOZ2BiM_k_4,1 4302,v_6VXQoPNphgI,black hair woman,what is the left side of the woman facing the mirror in the video,v_6VXQoPNphgI,v_6VXQoPNphgI_4,1 4303,v_ETbbYC0OhL0,audience,what is the left side of the purple-haired female,v_ETbbYC0OhL0,v_ETbbYC0OhL0_4,1 4304,v_wLXty2wzuJg,circle,what is on the little girl's hair,v_wLXty2wzuJg,v_wLXty2wzuJg_4,1 4305,v_7H1KylJRii8,watch,what is worn on the man wearing a striped shirt,v_7H1KylJRii8,v_7H1KylJRii8_10,5 4306,v_0XTAq_xvquw,glove,what is the man wearing on the screen,v_0XTAq_xvquw,v_0XTAq_xvquw_9,5 4307,v_jBlG0L_M96g,glove,what does the person on the jumper wear,v_jBlG0L_M96g,v_jBlG0L_M96g_9,5 4308,v_IDuoF51IMJ8,ball,what is the white man wearing on his hand,v_IDuoF51IMJ8,v_IDuoF51IMJ8_9,5 4309,v_H0dG_1Vgw4Q,barbell,what is above the person wearing blue short sleeves,v_H0dG_1Vgw4Q,v_H0dG_1Vgw4Q_4,1 4310,v_SPjv6P5fxug,earring,what is wearing on the ear of a person wearing a swimsuit,v_SPjv6P5fxug,v_SPjv6P5fxug_6,5 4311,v_I9ficvPdpZg,microphone,what is the woman in the right hand on the stage,v_I9ficvPdpZg,v_I9ficvPdpZg_8,5 4312,v_ECZb_tQZ4Pg,watch,what do black man wear on their right hand,v_ECZb_tQZ4Pg,v_ECZb_tQZ4Pg_8,5 4313,v__kmjpSZb3OI,wall,what is the right side of the person in black clothes,v__kmjpSZb3OI,v__kmjpSZb3OI_4,1 4314,v_46NS8dT15Hw,tree,what is the right side of the boy in blue,v_46NS8dT15Hw,v_46NS8dT15Hw_4,1 4315,v__SJOVswvGRc,white man,what is the right side of the child in black,v__SJOVswvGRc,v__SJOVswvGRc_4,1 4316,v_tgPD2SZo_DY,wall,what is the right side of the person wearing blue clothes,v_tgPD2SZo_DY,v_tgPD2SZo_DY_4,1 4317,v_zV08tITKFMM,audience,what is the right side of the person wearing a golden coat,v_zV08tITKFMM,v_zV08tITKFMM_4,1 4318,v_hRsn4nesCQo,table,what is the right side of the person wearing gray clothes,v_hRsn4nesCQo,v_hRsn4nesCQo_4,1 4319,v_3kxP8qOtym8,chair,what is the right side of the person wearing a gray vest,v_3kxP8qOtym8,v_3kxP8qOtym8_4,1 4320,v_ZxCdhz4ep0s,audience,what is the right side of the person wearing a striped shirt,v_ZxCdhz4ep0s,v_ZxCdhz4ep0s_4,1 4321,v_TXSOSSGJYO0,house,what is the right side of the man wearing gray clothes,v_TXSOSSGJYO0,v_TXSOSSGJYO0_4,1 4322,v_0e7d39SwHCA,haystack,what is the right side of the person wearing purple clothes,v_0e7d39SwHCA,v_0e7d39SwHCA_4,1 4323,v_iAes5SVj_Fg,mirror,what is the right side of the man wearing black pants,v_iAes5SVj_Fg,v_iAes5SVj_Fg_4,1 4324,v_R-hsYQNtnn0,cabinet,what is the right side of the person wearing a blue shirt,v_R-hsYQNtnn0,v_R-hsYQNtnn0_4,1 4325,v_zPQodcasmSA,sail,what is the right side of the person in green,v_zPQodcasmSA,v_zPQodcasmSA_4,1 4326,v_hGPCJb2g1tQ,wall,what is the right side of the person wearing blue clothes in the video,v_hGPCJb2g1tQ,v_hGPCJb2g1tQ_4,1 4327,v_ZLG1Exv8HrY,parallel bar,what is the right side of the person wearing white short sleeves,v_ZLG1Exv8HrY,v_ZLG1Exv8HrY_4,1 4328,v_cTxVTEzQDr8,large building,what is the right side of the person wearing sunglasses,v_cTxVTEzQDr8,v_cTxVTEzQDr8_4,1 4329,v__2txWbQfJrY,ceramic tile,what is the right side of the person wearing short sleeves,v__2txWbQfJrY,v__2txWbQfJrY_4,1 4330,v__fLhtWSCaSo,person wearing a hat,what is the right side of the person wearing the stripe,v__fLhtWSCaSo,v__fLhtWSCaSo_4,1 4331,v_Zt9qvbUnNhc,pond,what is the right side of the person wearing red shorts,v_Zt9qvbUnNhc,v_Zt9qvbUnNhc_4,1 4332,v_T0nCDJuikuA,row of clothes,what is the right side of the christmas tree,v_T0nCDJuikuA,v_T0nCDJuikuA_4,1 4333,v_LsVCwr6qPmY,iron,what is the right side of the person in blue,v_LsVCwr6qPmY,v_LsVCwr6qPmY_4,1 4334,v_LYTWYSqsTCE,masonry,what is the right side of the person wearing gray clothes,v_LYTWYSqsTCE,v_LYTWYSqsTCE_4,1 4335,v_HPKHDze6XfA,wall,what is the right side of the car that is opened,v_HPKHDze6XfA,v_HPKHDze6XfA_4,1 4336,v_G4-qjGC_3VA,audience,what is the right side of the person wearing black clothes,v_G4-qjGC_3VA,v_G4-qjGC_3VA_4,1 4337,v_vqyQF-1Zc_E,wood,what is on the right side of the ski resort,v_vqyQF-1Zc_E,v_vqyQF-1Zc_E_4,1 4338,v_bWZkD_s1940,sound,what is on the right side of the white sign,v_bWZkD_s1940,v_bWZkD_s1940_4,1 4339,v_WGUzmra3h_w,pads,what is on the right side of the basketball box,v_WGUzmra3h_w,v_WGUzmra3h_w_4,1 4340,v_qlK-c7hRqcA,house,what is the right side of the blue car,v_qlK-c7hRqcA,v_qlK-c7hRqcA_4,1 4341,v_7-UlUnaBjXU,audience,what is on the right side of the off-road motorcycle,v_7-UlUnaBjXU,v_7-UlUnaBjXU_4,1 4342,v_raxeBxPQqlk,television,what is the right side of the window where the darts are released,v_raxeBxPQqlk,v_raxeBxPQqlk_4,1 4343,v_1lwG-y_QCkc,tree,what is the right side of the lawn,v_1lwG-y_QCkc,v_1lwG-y_QCkc_4,1 4344,v_Mk7Yjq1U8OI,small house,what is the right side of the person with blue pants in the first picture,v_Mk7Yjq1U8OI,v_Mk7Yjq1U8OI_4,1 4345,v_Gs79qz286QE,ladder,what is the right side of the person wearing blue swimming trunks,v_Gs79qz286QE,v_Gs79qz286QE_4,1 4346,v_MDsJa6Yitwc,wall,what is the right side of the person wearing gray clothes facing the camera,v_MDsJa6Yitwc,v_MDsJa6Yitwc_4,1 4347,v_2vrR_5u2buU,cameraman,what is the right side of the runway,v_2vrR_5u2buU,v_2vrR_5u2buU_4,1 4348,v_vQ82ItCG1x4,canvas,what is above the sailboat,v_vQ82ItCG1x4,v_vQ82ItCG1x4_4,1 4349,v_Oh3-DvDCpZ4,shrimp meat,what's on the soup in the video,v_Oh3-DvDCpZ4,v_Oh3-DvDCpZ4_9,8 4350,v_HtG-i1CG2Qs,hand washing box,what is the top of the faucet,v_HtG-i1CG2Qs,v_HtG-i1CG2Qs_4,1 4351,v_PFeerDZbGn8,awning,what is the judge's seat above,v_PFeerDZbGn8,v_PFeerDZbGn8_4,1 4352,v_W2Mh01F3K5c,stairs,what is above the person in white clothes,v_W2Mh01F3K5c,v_W2Mh01F3K5c_4,1 4353,v_H33jSILKmfI,american flag,what is hanging on the wall behind the person wearing a suit,v_H33jSILKmfI,v_H33jSILKmfI_9,5 4354,v_w10Nr_wOh8g,socket,what is on the wall to the right of the chair,v_w10Nr_wOh8g,v_w10Nr_wOh8g_4,1 4355,v_BWAedc31WdY,cosmetics,what is on the sink,v_BWAedc31WdY,v_BWAedc31WdY_4,1 4356,v_WNgI2qBvPrY,cake,what is on the white table,v_WNgI2qBvPrY,v_WNgI2qBvPrY_4,1 4357,v_ILmZg0vz0Hg,clothes,what might be in this box,v_ILmZg0vz0Hg,v_ILmZg0vz0Hg_9,5 4358,v__a527xEzhkw,door,what is the right side of the person in the video,v__a527xEzhkw,v__a527xEzhkw_4,1 4359,v_Ko7Nt8UDP4Q,romaine lettuce,what is the green one,v_Ko7Nt8UDP4Q,v_Ko7Nt8UDP4Q_7,8 4360,v_fSBX-gjPblw,gym,what is the event venue in the video,v_fSBX-gjPblw,v_fSBX-gjPblw_10,6 4361,v_4JmFOPoKluM,watch,what do adults wear on their left hand,v_4JmFOPoKluM,v_4JmFOPoKluM_10,5 4362,v_RlRrktN5iH4,make body pliable,what are the benefits of practicing yoga,v_RlRrktN5iH4,v_RlRrktN5iH4_9,8 4363,v_w10Nr_wOh8g,rabbit,what is the animal at the bottom left of the wallpaper,v_w10Nr_wOh8g,v_w10Nr_wOh8g_8,5 4364,v_NjD6iWI3NvM,dog,what is the animal species that appears in the video,v_NjD6iWI3NvM,v_NjD6iWI3NvM_8,5 4365,v_16bJAOf1SJI,circular,what is the appearance of the ball,v_16bJAOf1SJI,v_16bJAOf1SJI_8,8 4366,v_sEcXR5b8HyY,red baffle,what is behind the athlete in red clothes in the prologue,v_sEcXR5b8HyY,v_sEcXR5b8HyY_4,1 4367,v_huFOZ2BiM_k,male,what is the gender of the athletes in the competition pommel horse project,v_huFOZ2BiM_k,v_huFOZ2BiM_k_7,8 4368,v_4H9MMsj4mcM,horse running yard,what is in front of the audience,v_4H9MMsj4mcM,v_4H9MMsj4mcM_4,1 4369,v_C27eI-S1Vkw,wall,what is behind the dummy,v_C27eI-S1Vkw,v_C27eI-S1Vkw_4,1 4370,v_cVFVREeD6hM,house,what is behind the person wearing black clothes in the video,v_cVFVREeD6hM,v_cVFVREeD6hM_4,1 4371,v_AsdsR27UnJ0,mirror,what is behind the person holding the toothbrush in the video,v_AsdsR27UnJ0,v_AsdsR27UnJ0_4,1 4372,v_6LsvBNqJuJY,wall,what is the back of the woman at the beginning of the video,v_6LsvBNqJuJY,v_6LsvBNqJuJY_4,1 4373,v_FPf7mAgdy0I,window,what is behind the yellow-haired woman,v_FPf7mAgdy0I,v_FPf7mAgdy0I_4,1 4374,v_jBlG0L_M96g,house,what is behind the basketball box,v_jBlG0L_M96g,v_jBlG0L_M96g_4,1 4375,v_RXT17X7lRoQ,grassland,what is the back of the child in the first photo,v_RXT17X7lRoQ,v_RXT17X7lRoQ_4,1 4376,v_k6pN0WRr2Ws,shelf,what is behind the coach,v_k6pN0WRr2Ws,v_k6pN0WRr2Ws_4,1 4377,v_auO4r3De6vc,spectator seats,what is behind the judges' seats,v_auO4r3De6vc,v_auO4r3De6vc_4,1 4378,v_s9PkkDEl6aY,wall,what is behind the last row of children,v_s9PkkDEl6aY,v_s9PkkDEl6aY_4,1 4379,v_RXDVJlb97OI,bed,what is behind the person who stood at the beginning of the video,v_RXDVJlb97OI,v_RXDVJlb97OI_4,1 4380,v_0iqx7o5WYW8,network,what is behind the pole,v_0iqx7o5WYW8,v_0iqx7o5WYW8_4,1 4381,v_0mNZfG6CL74,personnel,what is behind the referee,v_0mNZfG6CL74,v_0mNZfG6CL74_4,1 4382,v_S6Sg1l78IW0,photo,what is behind the woman standing,v_S6Sg1l78IW0,v_S6Sg1l78IW0_4,1 4383,v_fhOmyyI0eQE,wall,what is behind the trees,v_fhOmyyI0eQE,v_fhOmyyI0eQE_4,1 4384,v_UJGK_TKrl4E,stand,what is behind the referee at the beginning of the video,v_UJGK_TKrl4E,v_UJGK_TKrl4E_4,1 4385,v_AtbTioB1_Kw,banana tree,what is behind the video trainer,v_AtbTioB1_Kw,v_AtbTioB1_Kw_4,1 4386,v_tRFK1BMKaRo,british flag,what is behind the weightlifter,v_tRFK1BMKaRo,v_tRFK1BMKaRo_4,1 4387,v_9FQ-VLkCZo8,spectator seats,what is behind the person wearing white clothes,v_9FQ-VLkCZo8,v_9FQ-VLkCZo8_4,1 4388,v_54TIARWo-S8,playground,what is behind the person wearing yellow clothes,v_54TIARWo-S8,v_54TIARWo-S8_4,1 4389,v_BdRH3lpopLQ,audience,what is behind the referee facing the camera,v_BdRH3lpopLQ,v_BdRH3lpopLQ_4,1 4390,v_L5IbDi09Yb4,very excited,what is the state of the bald head when talking,v_L5IbDi09Yb4,v_L5IbDi09Yb4_9,8 4391,v_IToczVhbOc0,tattoo,what is the bald woman doing,v_IToczVhbOc0,v_IToczVhbOc0_1,0 4392,v_Es3PxD9oi4I,red ball,what is the ball after the yellow ball in the video is replaced,v_Es3PxD9oi4I,v_Es3PxD9oi4I_5,2 4393,v_Pjnuoa4o55c,tennis,what is the ball trained in the video,v_Pjnuoa4o55c,v_Pjnuoa4o55c_8,8 4394,v_Npj77L31bhw,black,what color is the beard of a person wearing a hat,v_Npj77L31bhw,v_Npj77L31bhw_8,4 4395,v_s84PG-JfEwc,shore,what is behind the person who is pulling the rope,v_s84PG-JfEwc,v_s84PG-JfEwc_4,1 4396,v_Nc9yr4urskA,red,what color is the belt of a person wearing yellow clothes,v_Nc9yr4urskA,v_Nc9yr4urskA_7,4 4397,v_IxaBEVd2PZM,physical exercise,what is good for ballet dancing,v_IxaBEVd2PZM,v_IxaBEVd2PZM_10,8 4398,v_bWZkD_s1940,release pressure,what are the benefits of dancing,v_bWZkD_s1940,v_bWZkD_s1940_10,8 4399,v_bYNQ0GrCt64,exercise muscles,what are the benefits of lifting a barbell,v_bYNQ0GrCt64,v_bYNQ0GrCt64_10,8 4400,v_UNKf15ALDh8,purify air,what is good for planting trees,v_UNKf15ALDh8,v_UNKf15ALDh8_9,8 4401,v_wLXty2wzuJg,relieve stress,what are the benefits of swimming,v_wLXty2wzuJg,v_wLXty2wzuJg_10,8 4402,v_7BUr2cN8CLs,exercise balance,what is the benefit of the curling exercise,v_7BUr2cN8CLs,v_7BUr2cN8CLs_10,8 4403,v_VZ5R9goklpo,relax,what are the benefits of this game,v_VZ5R9goklpo,v_VZ5R9goklpo_10,8 4404,v_paRAKx8svJ8,9,what is the largest number that appears after the video background,v_paRAKx8svJ8,v_paRAKx8svJ8_7,7 4405,v_3dWw9GLcOeA,play,what are the birds doing,v_3dWw9GLcOeA,v_3dWw9GLcOeA_1,0 4406,v_FADShG5lyB8,exercise,what happened to men after they got on fitness equipment,v_FADShG5lyB8,v_FADShG5lyB8_5,2 4407,v_e-Xf13exY4E,drum kit,what is the man's instrument in black,v_e-Xf13exY4E,v_e-Xf13exY4E_6,5 4408,v_CaeZoHNHul0,play violin,what are the brunette woman doing in the video,v_CaeZoHNHul0,v_CaeZoHNHul0_1,0 4409,v_vSv1qMMt4Bk,make report,what is the brunette woman in the video doing,v_vSv1qMMt4Bk,v_vSv1qMMt4Bk_1,0 4410,v_Ki13JIVwMdk,yelling,what are the black and white hair dogs doing,v_Ki13JIVwMdk,v_Ki13JIVwMdk_1,0 4411,v_IclzwpxVvIk,make up,what is the blonde woman doing,v_IclzwpxVvIk,v_IclzwpxVvIk_1,0 4412,v_4z0meF-_b1I,eradicator,what is the front of the person when the person wearing the hat weeds,v_4z0meF-_b1I,v_4z0meF-_b1I_4,1 4413,v_meNgZdu8tIk,mat cloth,what is below the sandwich,v_meNgZdu8tIk,v_meNgZdu8tIk_4,1 4414,v_p54LLMnyg54,river,what is below the person,v_p54LLMnyg54,v_p54LLMnyg54_4,1 4415,v_V9mLJJn8Lvw,paper,what is below the book at the beginning of the video,v_V9mLJJn8Lvw,v_V9mLJJn8Lvw_4,1 4416,v_dU7jG8G5li0,board,what is under the cake,v_dU7jG8G5li0,v_dU7jG8G5li0_4,1 4417,v_jibbgUBuuSA,pads,what is below the height measuring rod,v_jibbgUBuuSA,v_jibbgUBuuSA_4,1 4418,v_mVAP-WyEc7w,chopping block,what is under the knife,v_mVAP-WyEc7w,v_mVAP-WyEc7w_4,1 4419,v_elD1P_1oiUk,stone and water grass,what is there at the bottom of the river,v_elD1P_1oiUk,v_elD1P_1oiUk_7,5 4420,v_dFGS7YCDk3Y,water,what is below the sailboat,v_dFGS7YCDk3Y,v_dFGS7YCDk3Y_4,1 4421,v_1vTHJMMPZN0,seawater,what is below the surfboard,v_1vTHJMMPZN0,v_1vTHJMMPZN0_4,1 4422,v_9ZVWD0ZKXZg,rock climbing,what are the boys in red dress doing,v_9ZVWD0ZKXZg,v_9ZVWD0ZKXZg_1,0 4423,v_KPRymTsPCC0,camel,what is the boy wearing glasses,v_KPRymTsPCC0,v_KPRymTsPCC0_6,5 4424,v_5mWZY2XkWSQ,crew cut,what is the boy's hairstyle,v_5mWZY2XkWSQ,v_5mWZY2XkWSQ_8,8 4425,v_04qggWACGWk,beauty,what is the reason for people in the video to do this,v_04qggWACGWk,v_04qggWACGWk_10,8 4426,v_3i3SUPsyZtA,refrigerator,what is the right side of the chef,v_3i3SUPsyZtA,v_3i3SUPsyZtA_4,1 4427,v_e4kS-n7_LRU,female,what is the gender of the child in the video,v_e4kS-n7_LRU,v_e4kS-n7_LRU_10,8 4428,v_5UZ2ft8Y3sI,glove,what do the chinese team's throwing curlers wear on their left hand,v_5UZ2ft8Y3sI,v_5UZ2ft8Y3sI_9,5 4429,v_5LGh56euaZs,cold,what is the climate in the video,v_5LGh56euaZs,v_5LGh56euaZs_8,8 4430,v_LL0uQO4q_wY,red,what color clothes are people wearing curlers,v_LL0uQO4q_wY,v_LL0uQO4q_wY_9,4 4431,v_NZskwwovSZI,black,what color clothes do people wearing red hats wear,v_NZskwwovSZI,v_NZskwwovSZI_6,4 4432,v_JB-ynj70saA,white,what is the color of the clothes of people wearing black trousers,v_JB-ynj70saA,v_JB-ynj70saA_6,4 4433,v_mek9Zodu8LM,red,what is the color of the bow tie of a person wearing black clothes,v_mek9Zodu8LM,v_mek9Zodu8LM_8,4 4434,v_FmfAB-ppHBs,black,what color is the man clothes for cigarettes,v_FmfAB-ppHBs,v_FmfAB-ppHBs_8,4 4435,v_rrpEOrMpBuE,blue,what is the color of the camel person pants,v_rrpEOrMpBuE,v_rrpEOrMpBuE_6,4 4436,v_m73Cod-PmMQ,blue,what is the color of the clothes of a child wearing a white hat,v_m73Cod-PmMQ,v_m73Cod-PmMQ_8,4 4437,v_jWODw4vy45M,white,what is the color of the dog's tail,v_jWODw4vy45M,v_jWODw4vy45M_6,4 4438,v_6G8m-vsGTA8,black,what is the color of the hat of the person driving in the video,v_6G8m-vsGTA8,v_6G8m-vsGTA8_6,4 4439,v_5oyenoaVB-w,green,what is the color of the facial cleanser in the video,v_5oyenoaVB-w,v_5oyenoaVB-w_6,4 4440,v_5mWZY2XkWSQ,black,what is the color of the girl's hair in the video,v_5mWZY2XkWSQ,v_5mWZY2XkWSQ_6,4 4441,v_7lxP-hWFA24,red,what color is the girl's shoes wearing striped clothes,v_7lxP-hWFA24,v_7lxP-hWFA24_7,4 4442,v_mixxaL3Bdv8,black,what is the color of the helmet of a person wearing orange clothes,v_mixxaL3Bdv8,v_mixxaL3Bdv8_8,4 4443,v_8kaQq1mR2ys,black,what color is the long-haired woman's glasses,v_8kaQq1mR2ys,v_8kaQq1mR2ys_7,4 4444,v_jbCQY7V7O1s,gray,what is the color of men's clothes in the video,v_jbCQY7V7O1s,v_jbCQY7V7O1s_6,4 4445,v_QoRlOa6R1LY,orange,what color is the top of the person wearing a gray helmet,v_QoRlOa6R1LY,v_QoRlOa6R1LY_9,4 4446,v_eiN5XPmwcEM,black,what is the color of a man's hair,v_eiN5XPmwcEM,v_eiN5XPmwcEM_9,4 4447,v_i6wR9_tkg6A,green,what color is the man's hat in green,v_i6wR9_tkg6A,v_i6wR9_tkg6A_8,4 4448,v_jDlvGWOdcqU,black,what is the color of the clothes of people wearing jeans,v_jDlvGWOdcqU,v_jDlvGWOdcqU_6,4 4449,v_5k2Ot6-wOgc,black,what is the color of a man in black,v_5k2Ot6-wOgc,v_5k2Ot6-wOgc_6,4 4450,v_qGtUXGG78tM,orange,what color is the person's hat wearing dark blue pants,v_qGtUXGG78tM,v_qGtUXGG78tM_8,4 4451,v_rGOOlcdpfLg,black,what is the color of a person wearing a plaid jacket,v_rGOOlcdpfLg,v_rGOOlcdpfLg_9,4 4452,v_ryFSf08mrkA,gray,what is the color of the person wearing a mask,v_ryFSf08mrkA,v_ryFSf08mrkA_6,4 4453,v_jhy6npIdn5o,black,what is the color of the hair of a person who didn’t wear a hat at the beginning of the video,v_jhy6npIdn5o,v_jhy6npIdn5o_6,4 4454,v_4YF9R3Sz2bA,blue,what is the color of the air cushion of the person who shoots the video,v_4YF9R3Sz2bA,v_4YF9R3Sz2bA_6,4 4455,v_stdtUoog49I,green,what is the color of the clothes of the person riding the electric car,v_stdtUoog49I,v_stdtUoog49I_8,4 4456,v_zH1MiuiTsx8,blue,what color is the top of the person wearing an orange life jacket,v_zH1MiuiTsx8,v_zH1MiuiTsx8_7,4 4457,v_gWTndmDHZQc,black,what color is the man's hat in a black shirt,v_gWTndmDHZQc,v_gWTndmDHZQc_8,4 4458,v_CDecXoRSpIc,blue,what is the color of the pants of the person who is repairing the tire,v_CDecXoRSpIc,v_CDecXoRSpIc_9,4 4459,v_zV08tITKFMM,pink,what color is the person's socks wearing a gold coat,v_zV08tITKFMM,v_zV08tITKFMM_7,4 4460,v_T0nCDJuikuA,red,what is the color of the person's socks in the video,v_T0nCDJuikuA,v_T0nCDJuikuA_8,4 4461,v_T3A88zsRuVs,gray,what is the color of the hat of a person wearing red,v_T3A88zsRuVs,v_T3A88zsRuVs_8,4 4462,v_v-UmNR5yeDc,black and white,what style is the referee wearing,v_v-UmNR5yeDc,v_v-UmNR5yeDc_6,4 4463,v_lUil9HfTzJ0,red,what is the color of a swimsuit that the person in a swimsuit,v_lUil9HfTzJ0,v_lUil9HfTzJ0_8,4 4464,v_sNTOUuE7ZfM,black,what is the color of the shoes of a person wearing a tie,v_sNTOUuE7ZfM,v_sNTOUuE7ZfM_8,4 4465,v_SJ7jk5XAjng,white,what is the color of the women's clothes in the video,v_SJ7jk5XAjng,v_SJ7jk5XAjng_8,4 4466,v_E_UkQGk7QAE,yellow,what color is the woman's hair in light blue clothes,v_E_UkQGk7QAE,v_E_UkQGk7QAE_6,4 4467,v_sfbgZOHLkII,black,what is the color of the woman's helmet in the video,v_sfbgZOHLkII,v_sfbgZOHLkII_8,4 4468,v_6xBh3vzhgo4,yellow,what color is the life jacket worn by women in the video,v_6xBh3vzhgo4,v_6xBh3vzhgo4_6,4 4469,v_BdRH3lpopLQ,white,what is the color of the clothes on the clothes with a number of 16,v_BdRH3lpopLQ,v_BdRH3lpopLQ_7,4 4470,v_MpeN-IVIBc4,black,what color dress does the person wear in the video,v_MpeN-IVIBc4,v_MpeN-IVIBc4_10,4 4471,v_MpeN-IVIBc4,yellow,what color is the person's hair in the video,v_MpeN-IVIBc4,v_MpeN-IVIBc4_6,4 4472,v_sEcXR5b8HyY,white,what is the color of table tennis in the prologue,v_sEcXR5b8HyY,v_sEcXR5b8HyY_8,4 4473,v_JGxf-jke0e8,white,what is the color of the adult clothes on the edge of the basin,v_JGxf-jke0e8,v_JGxf-jke0e8_6,4 4474,v_J9KjpzKM8oc,yellow,what is the color of the air cushion in the video,v_J9KjpzKM8oc,v_J9KjpzKM8oc_6,4 4475,v_JbW8efAOOt0,white,what is the english font color at the beginning of the video,v_JbW8efAOOt0,v_JbW8efAOOt0_6,4 4476,v_JR9LosQmMvg,white,what is the final english font color of the video,v_JR9LosQmMvg,v_JR9LosQmMvg_6,4 4477,v_Jhcis4S2Vsg,black,what is the color of the winning person's clothes in the video,v_Jhcis4S2Vsg,v_Jhcis4S2Vsg_6,4 4478,v_KMK3_VeODlk,orange,what color ball is the man wearing red pants,v_KMK3_VeODlk,v_KMK3_VeODlk_8,4 4479,v_1IbkFHNA7fg,white,what is the color of the basket,v_1IbkFHNA7fg,v_1IbkFHNA7fg_9,4 4480,v_5c5PFa8GR-A,red,what is the color of the bed,v_5c5PFa8GR-A,v_5c5PFa8GR-A_6,4 4481,v_4MwnHtlaEUY,black,what is the color of the bicycle seat,v_4MwnHtlaEUY,v_4MwnHtlaEUY_7,4 4482,v_IsV1n_kLpvs,gray,what color is the blond man's vest,v_IsV1n_kLpvs,v_IsV1n_kLpvs_7,4 4483,v_OYEKKzQjaJI,red,what color is the bowl in the video,v_OYEKKzQjaJI,v_OYEKKzQjaJI_10,4 4484,v_HQVSLlKhupk,green,what color is the left hand bracelet of a person wearing blue clothes,v_HQVSLlKhupk,v_HQVSLlKhupk_9,4 4485,v_VpZzLvzU7_k,black,what is the color of the cable car,v_VpZzLvzU7_k,v_VpZzLvzU7_k_9,4 4486,v_KPRymTsPCC0,white,what color is the hair on the camel,v_KPRymTsPCC0,v_KPRymTsPCC0_8,4 4487,v_mkGUacg0GRc,black,what is the color of the car of a person wearing a gray suit,v_mkGUacg0GRc,v_mkGUacg0GRc_8,4 4488,v_OcL7ZhBCkxQ,white,what color is the car next to the road in the video,v_OcL7ZhBCkxQ,v_OcL7ZhBCkxQ_10,4 4489,v_WXH-Tj0-g4w,black,what is the color of the pushed car,v_WXH-Tj0-g4w,v_WXH-Tj0-g4w_10,4 4490,v_H2fG7JRRMAs,red,what color is the back of the card in the video,v_H2fG7JRRMAs,v_H2fG7JRRMAs_9,4 4491,v_MAYrBia9Xnw,gray,what is the color of the child's clothes,v_MAYrBia9Xnw,v_MAYrBia9Xnw_8,4 4492,v_K1LiXUpoSmI,purple,what is the color of the child's coat,v_K1LiXUpoSmI,v_K1LiXUpoSmI_6,4 4493,v_JcAAwYpJhm8,black,what is the color of the child's hair,v_JcAAwYpJhm8,v_JcAAwYpJhm8_6,4 4494,v_s9PkkDEl6aY,green,what is the color of clothes the person standing on the platform,v_s9PkkDEl6aY,v_s9PkkDEl6aY_6,4 4495,v_LjPKKqe-VO0,black,what color of clothes does the coach wear,v_LjPKKqe-VO0,v_LjPKKqe-VO0_9,4 4496,v_sRNqK_QZbMs,black,what is the color of the coach's pants,v_sRNqK_QZbMs,v_sRNqK_QZbMs_8,4 4497,v_H_JLBvfP88U,black,what color is the cow,v_H_JLBvfP88U,v_H_JLBvfP88U_9,4 4498,v_lYP05IRcOPE,green,what is the color of the staff's helmet,v_lYP05IRcOPE,v_lYP05IRcOPE_8,4 4499,v_FtRGOgg0Qh8,red,what color is the cyclist's clothes,v_FtRGOgg0Qh8,v_FtRGOgg0Qh8_8,4 4500,v_5LGh56euaZs,black,what is the color of the diving suit in the video,v_5LGh56euaZs,v_5LGh56euaZs_6,4 4501,v_NjD6iWI3NvM,yellow,what is the color of the dog,v_NjD6iWI3NvM,v_NjD6iWI3NvM_9,4 4502,v_MonWdYi3a0I,yellow,what color is the dog in the video,v_MonWdYi3a0I,v_MonWdYi3a0I_6,4 4503,v_IGT0dIKDGCw,white,what color is the dog in the video,v_IGT0dIKDGCw,v_IGT0dIKDGCw_7,4 4504,v_KXMZHfCwTO0,black and white,what color is the hair on the dog,v_KXMZHfCwTO0,v_KXMZHfCwTO0_7,4 4505,v_KXcVYfMuUGw,black and white,what color is this dog's hair,v_KXcVYfMuUGw,v_KXcVYfMuUGw_6,4 4506,v_IclzwpxVvIk,blue,what color is the door in the video,v_IclzwpxVvIk,v_IclzwpxVvIk_7,4 4507,v_w4pO-1-FG5w,yellow,what is the color of the drawer,v_w4pO-1-FG5w,v_w4pO-1-FG5w_8,4 4508,v_SGAUpoTMSnA,green,what is the color of the hat of the first kayaking person,v_SGAUpoTMSnA,v_SGAUpoTMSnA_8,4 4509,v_K1OsjA-f17E,black,what is the color of the first person wearing a hat,v_K1OsjA-f17E,v_K1OsjA-f17E_6,4 4510,v_StGxFfLiYNU,white,what is the color of the first person's hair,v_StGxFfLiYNU,v_StGxFfLiYNU_8,4 4511,v_75Tc1nPmZFQ,yellow,what color is the flag on the sand,v_75Tc1nPmZFQ,v_75Tc1nPmZFQ_8,4 4512,v_IIPKxzPjrWg,red,what color is the flipper in the video,v_IIPKxzPjrWg,v_IIPKxzPjrWg_7,4 4513,v_IGPZFun1Ok4,blue,what color is the table,v_IGPZFun1Ok4,v_IGPZFun1Ok4_7,4 4514,v_N75m1Z4RqbA,yellow,what color is the woman hair dancing,v_N75m1Z4RqbA,v_N75m1Z4RqbA_8,4 4515,v_EETygPQ-j08,white,what color is the blue girl roller skate,v_EETygPQ-j08,v_EETygPQ-j08_6,4 4516,v_7IwHwDuQdyU,blue,what is the color of the gym mat,v_7IwHwDuQdyU,v_7IwHwDuQdyU_7,4 4517,v_FnPS6zn5S7M,black and white,what color gymnastics suit is worn by a woman wearing a gym suit,v_FnPS6zn5S7M,v_FnPS6zn5S7M_8,4 4518,v_mLFjww64sX8,brown,what is the color of the barber's pants,v_mLFjww64sX8,v_mLFjww64sX8_8,4 4519,v_SjlILJ2st-I,red,what is the color of the helmet of the first player,v_SjlILJ2st-I,v_SjlILJ2st-I_8,4 4520,v_cCDffwsJvsY,yellow,what is the color of the ignition,v_cCDffwsJvsY,v_cCDffwsJvsY_10,4 4521,v_SYh-j9bK_ls,black,what is the color of the clothes of the cheerleaders,v_SYh-j9bK_ls,v_SYh-j9bK_ls_8,4 4522,v_rWfQj0X8WU4,black,what is the color of the pants that the video finally stood on the ground,v_rWfQj0X8WU4,v_rWfQj0X8WU4_6,4 4523,v_JH9qiuPCkY4,white,what is the color of the final athlete's clothes,v_JH9qiuPCkY4,v_JH9qiuPCkY4_6,4 4524,v_4LoAbHdHWqM,pink,what is the color of the love border in the video,v_4LoAbHdHWqM,v_4LoAbHdHWqM_8,4 4525,v_K7iw2_1BrIk,red,what is the color of the clothes of the person holding the box in his hand,v_K7iw2_1BrIk,v_K7iw2_1BrIk_6,4 4526,v_HPKHDze6XfA,brown,what color is the clothes worn by men in the video,v_HPKHDze6XfA,v_HPKHDze6XfA_10,4 4527,v_Pho9Hgdvc0g,purple,what color hat is worn by the person sitting on the boat,v_Pho9Hgdvc0g,v_Pho9Hgdvc0g_7,4 4528,v_jBlG0L_M96g,red,what is the color of the knee pads of a person who is stepping on a bouncer,v_jBlG0L_M96g,v_jBlG0L_M96g_6,4 4529,v_s84PG-JfEwc,black,what is the color of the person's pants that pull the rope,v_s84PG-JfEwc,v_s84PG-JfEwc_6,4 4530,v_I16FTpQQiic,black,what color is the person's pants in white clothes,v_I16FTpQQiic,v_I16FTpQQiic_8,4 4531,v_K49OCArHjXI,blue,what is the color of the sleeves of the person wearing the ankle,v_K49OCArHjXI,v_K49OCArHjXI_6,4 4532,v_CFbkVO5b2g0,white,what is the color of the microphone,v_CFbkVO5b2g0,v_CFbkVO5b2g0_7,4 4533,v_5UZ2ft8Y3sI,black,what is the hair color of the news host,v_5UZ2ft8Y3sI,v_5UZ2ft8Y3sI_6,4 4534,v_j6BCgvUusWs,white,what is the color of the dealer's sleeves,v_j6BCgvUusWs,v_j6BCgvUusWs_6,4 4535,v_KWpATsiXF_M,yellow,what color is the other side of the pink cloth,v_KWpATsiXF_M,v_KWpATsiXF_M_7,4 4536,v_6H0D8VaIli0,white,what is the color of the pants of the street dancers in the video,v_6H0D8VaIli0,v_6H0D8VaIli0_6,4 4537,v_NJRrhNrEMsk,gray,what is the color of the people's clothes in the video,v_NJRrhNrEMsk,v_NJRrhNrEMsk_6,4 4538,v_MVA568rRjzQ,white,what color pants are worn by people wearing white clothes,v_MVA568rRjzQ,v_MVA568rRjzQ_9,4 4539,v_JGPhQX97OSE,blue,what is the color of the clothes on the court,v_JGPhQX97OSE,v_JGPhQX97OSE_6,4 4540,v_RgiVa9GMYxE,black,what is the color of the clothes of the person holding the mobile phone,v_RgiVa9GMYxE,v_RgiVa9GMYxE_6,4 4541,v_NNiJfr_ChH4,golden,what color is the hair of a person wearing black shorts,v_NNiJfr_ChH4,v_NNiJfr_ChH4_6,4 4542,v_NvRH4SoF09c,black,what color is the pants of a person wearing black clothes,v_NvRH4SoF09c,v_NvRH4SoF09c_6,4 4543,v_LPRLV0eVgfY,black,what color pants are the people who push the swing,v_LPRLV0eVgfY,v_LPRLV0eVgfY_6,4 4544,v_OcL7ZhBCkxQ,blue,what color is the wheel of a skateboarder wearing black pants,v_OcL7ZhBCkxQ,v_OcL7ZhBCkxQ_6,4 4545,v_N9VOdVOiPNM,yellow,what color is the hair of a person wearing a blue striped dress,v_N9VOdVOiPNM,v_N9VOdVOiPNM_6,4 4546,v_Jix3poZOeZA,black,what is the color of the athlete's clothes,v_Jix3poZOeZA,v_Jix3poZOeZA_6,4 4547,v_s6fEIuHPJ4Y,green,what is the color of the protective net,v_s6fEIuHPJ4Y,v_s6fEIuHPJ4Y_6,4 4548,v_LWt2FuU0uC4,blue,what is the color of the clothes worn by the referee,v_LWt2FuU0uC4,v_LWt2FuU0uC4_8,4 4549,v_9ZVWD0ZKXZg,red and black,what color is the shoes in red,v_9ZVWD0ZKXZg,v_9ZVWD0ZKXZg_8,4 4550,v_XI7qJHE61zo,black,what color is the person wearing blue clothes,v_XI7qJHE61zo,v_XI7qJHE61zo_10,4 4551,v_KT8DUDFc3Xg,black,what color shoes are you wearing in red,v_KT8DUDFc3Xg,v_KT8DUDFc3Xg_10,4 4552,v_J1QB1y3vXLY,blue,what color is the short-haired men's gloves,v_J1QB1y3vXLY,v_J1QB1y3vXLY_7,4 4553,v_RtF6TGqwa7Y,purple,what is the color of the person's pants sitting,v_RtF6TGqwa7Y,v_RtF6TGqwa7Y_6,4 4554,v_sPK-sbHIb3w,white,what is the color of the 69th athlete's clothes,v_sPK-sbHIb3w,v_sPK-sbHIb3w_8,4 4555,v_rsU73H6VyG8,blue,what is the color of the athlete's clothes with long poles,v_rsU73H6VyG8,v_rsU73H6VyG8_6,4 4556,v_Jdu5AqaWfz8,green,what is the color of the staff's clothes,v_Jdu5AqaWfz8,v_Jdu5AqaWfz8_6,4 4557,v_S6Sg1l78IW0,red,what is the color of the woman's clothes standing,v_S6Sg1l78IW0,v_S6Sg1l78IW0_6,4 4558,v_OFTkwnSh-sQ,orange,what color is the road cone in the video,v_OFTkwnSh-sQ,v_OFTkwnSh-sQ_9,4 4559,v_cAiig_569fI,white,what is the color of the tent,v_cAiig_569fI,v_cAiig_569fI_7,4 4560,v_2nDJpvD-eZU,green,what is the color of the pad under the peeled skin,v_2nDJpvD-eZU,v_2nDJpvD-eZU_9,4 4561,v_OUxgs_QlPHE,pink,what color is the towel in the video,v_OUxgs_QlPHE,v_OUxgs_QlPHE_8,4 4562,v_i5qTK0mInTc,gray,what color is the pants for people wearing yellow clothes,v_i5qTK0mInTc,v_i5qTK0mInTc_9,4 4563,v_MDsJa6Yitwc,white,what color is the wall of the person wearing the gray clothes,v_MDsJa6Yitwc,v_MDsJa6Yitwc_7,4 4564,v_IMMoglaJ3RY,red,what color is the weeder in the video,v_IMMoglaJ3RY,v_IMMoglaJ3RY_7,4 4565,v_fMVuGUBs2cs,red,what color is the wine after the adjustment,v_fMVuGUBs2cs,v_fMVuGUBs2cs_7,4 4566,v_ILmZg0vz0Hg,white,what color is the dress of a woman wearing glasses,v_ILmZg0vz0Hg,v_ILmZg0vz0Hg_7,4 4567,v_I9ficvPdpZg,purple,what color is the woman's clothes on the stage,v_I9ficvPdpZg,v_I9ficvPdpZg_9,4 4568,v_KsFid_YVsn0,black,what color is the leather shoes worn by women in the video,v_KsFid_YVsn0,v_KsFid_YVsn0_8,4 4569,v_KMK3_VeODlk,red,what color is the word on the wall on the right side of the woman wearing a pink vest,v_KMK3_VeODlk,v_KMK3_VeODlk_4,1 4570,v_Mk7Yjq1U8OI,white,what is the color of the clothes of the person who started the blue pants,v_Mk7Yjq1U8OI,v_Mk7Yjq1U8OI_8,4 4571,v_LYTWYSqsTCE,black,what is the color of the pants of a person wearing blue clothes,v_LYTWYSqsTCE,v_LYTWYSqsTCE_8,4 4572,v_kyx4MMmBr3A,earth,what is the composition of this runway,v_kyx4MMmBr3A,v_kyx4MMmBr3A_9,5 4573,v_WNgI2qBvPrY,wash milk,what is the cosmetics in the video,v_WNgI2qBvPrY,v_WNgI2qBvPrY_9,8 4574,v_2_H3lxMWvPo,india,what is the country of the person in the video,v_2_H3lxMWvPo,v_2_H3lxMWvPo_9,8 4575,v_2_H3lxMWvPo,fight,what is the cow in the video doing,v_2_H3lxMWvPo,v_2_H3lxMWvPo_1,0 4576,v_2_H3lxMWvPo,height,how dangerous is the bullfighting competition,v_2_H3lxMWvPo,v_2_H3lxMWvPo_10,8 4577,v_MAYrBia9Xnw,much more dangerous,how dangerous is it to performing martial arts indoors,v_MAYrBia9Xnw,v_MAYrBia9Xnw_10,8 4578,v_0Um-HgjcnXY,higher,how dangerous is this game,v_0Um-HgjcnXY,v_0Um-HgjcnXY_10,8 4579,v_lUil9HfTzJ0,secondary,how dangerous is the sport of surfing this sport,v_lUil9HfTzJ0,v_lUil9HfTzJ0_10,8 4580,v_St1RRi-aeNM,much much safer,how dangerous is it to throw a discus,v_St1RRi-aeNM,v_St1RRi-aeNM_10,8 4581,v_LvTwJTvluHE,secondary,how dangerous is surfing,v_LvTwJTvluHE,v_LvTwJTvluHE_10,8 4582,v_3PsxzgeMv5w,secondary,what is the difficulty coefficient of bowling,v_3PsxzgeMv5w,v_3PsxzgeMv5w_9,8 4583,v_sqv3M6MPKjQ,more difficult,how easy is it to blow off the leaves,v_sqv3M6MPKjQ,v_sqv3M6MPKjQ_10,8 4584,v_MDWaKr7Gu5Q,secondary,how easy is it to clean up the leaves,v_MDWaKr7Gu5Q,v_MDWaKr7Gu5Q_10,8 4585,v_svNcNLEPKMc,more difficult,how difficult is the athlete's diving in the video,v_svNcNLEPKMc,v_svNcNLEPKMc_10,8 4586,v_MAGeYoFuCgo,simple,how easy is this noodle making,v_MAGeYoFuCgo,v_MAGeYoFuCgo_10,8 4587,v_45hcc_VI4t4,simple,how difficult is it to step on the pedal,v_45hcc_VI4t4,v_45hcc_VI4t4_8,8 4588,v_rSGboODhu04,simple,how easy is the practice of salad in the video,v_rSGboODhu04,v_rSGboODhu04_10,8 4589,v_K7iw2_1BrIk,secondary,how difficult is the movement in the video,v_K7iw2_1BrIk,v_K7iw2_1BrIk_9,8 4590,v_16bJAOf1SJI,simple,how difficult is this game to operate,v_16bJAOf1SJI,v_16bJAOf1SJI_10,8 4591,v_N75m1Z4RqbA,secondary,how difficult is this dance,v_N75m1Z4RqbA,v_N75m1Z4RqbA_7,8 4592,v_X2toGKgWMpE,simple,how easy is this entertainment,v_X2toGKgWMpE,v_X2toGKgWMpE_9,8 4593,v_Son8UiVlzu0,much simpler,how difficult is this practice method,v_Son8UiVlzu0,v_Son8UiVlzu0_10,8 4594,v_3nSOFmmA7FU,high,how easy is it to change the number of hula hoops at the same time,v_3nSOFmmA7FU,v_3nSOFmmA7FU_10,8 4595,v_WINtiw-_3vg,clockwise,what is the direction of the billboard rotation,v_WINtiw-_3vg,v_WINtiw-_3vg_6,8 4596,v_cK0-WcGXacQ,anti clockwise,what is the direction of the black athlete's rotation,v_cK0-WcGXacQ,v_cK0-WcGXacQ_6,8 4597,v_vzUeFzhVYLg,forward,what is the direction of the diver when it flips,v_vzUeFzhVYLg,v_vzUeFzhVYLg_10,8 4598,v_VvsYrfEvvUw,up and down,what is the direction of the exercise person moving,v_VvsYrfEvvUw,v_VvsYrfEvvUw_7,8 4599,v_fSBX-gjPblw,front,the direction of the person shooting in the video,v_fSBX-gjPblw,v_fSBX-gjPblw_4,1 4600,v_prBiREYQ2vQ,5000 meters,what is the long distance run,v_prBiREYQ2vQ,v_prBiREYQ2vQ_9,8 4601,v_b0qGo-HT5iQ,wear contact lenses,what are the doctors in the video doing,v_b0qGo-HT5iQ,v_b0qGo-HT5iQ_1,0 4602,v_ZAX6OojMg38,oxygen mask,what is the dog diving in the video,v_ZAX6OojMg38,v_ZAX6OojMg38_8,5 4603,v_ldAHwbF8uWI,blue shirt,what kind of clothes do the people in red clothes wear,v_ldAHwbF8uWI,v_ldAHwbF8uWI_9,5 4604,v_CuLC5G7yWxA,very good,what is the effect of the wallpaper in the video,v_CuLC5G7yWxA,v_CuLC5G7yWxA_7,8 4605,v_aNsj5OrEGLY,supply lemon juice,what is the role of lemon in the video,v_aNsj5OrEGLY,v_aNsj5OrEGLY_10,8 4606,v_BWAedc31WdY,clean and tidy,what is the role of shaving,v_BWAedc31WdY,v_BWAedc31WdY_10,8 4607,v_wE9sQbGdeAk,protect eye,what is the role of the glasses worn by divers,v_wE9sQbGdeAk,v_wE9sQbGdeAk_7,8 4608,v_wcxEkMoOmBk,fixed hairstyle,what is the role of water sprayed after curling,v_wcxEkMoOmBk,v_wcxEkMoOmBk_9,8 4609,v_fMVuGUBs2cs,straw,what is the final addition to the wine glass,v_fMVuGUBs2cs,v_fMVuGUBs2cs_9,5 4610,v_lOZ9bfzq89o,front rollover,what did the green-shirted athlete finally turn to be called,v_lOZ9bfzq89o,v_lOZ9bfzq89o_10,8 4611,v_lfbspF18Wrw,cry sadly,what happened to this man,v_lfbspF18Wrw,v_lfbspF18Wrw_10,8 4612,v_jWODw4vy45M,wood,what is the environment of the dog in the video,v_jWODw4vy45M,v_jWODw4vy45M_8,8 4613,v_Ki13JIVwMdk,very angry,what is the expression when a black and white dog is called,v_Ki13JIVwMdk,v_Ki13JIVwMdk_10,8 4614,v_IclzwpxVvIk,smile,what is the expression of a brunette woman in the makeup process,v_IclzwpxVvIk,v_IclzwpxVvIk_9,8 4615,v_mek9Zodu8LM,more fair,what is the fairness of guessing this game,v_mek9Zodu8LM,v_mek9Zodu8LM_10,8 4616,v_L5IbDi09Yb4,its pretty,what kind of feeling does the creature on the sea bottom give,v_L5IbDi09Yb4,v_L5IbDi09Yb4_8,8 4617,v_lfbspF18Wrw,eager,what is the mood of this person waiting for cookies,v_lfbspF18Wrw,v_lfbspF18Wrw_8,8 4618,v_Nc9yr4urskA,road,what is the foot of a person wearing yellow clothes,v_Nc9yr4urskA,v_Nc9yr4urskA_4,1 4619,v_dZsk5Dp_5FE,fat,what is the size of the child,v_dZsk5Dp_5FE,v_dZsk5Dp_5FE_8,8 4620,v_5k2Ot6-wOgc,a,what is the initial letter of the red english word at the beginning,v_5k2Ot6-wOgc,v_5k2Ot6-wOgc_8,8 4621,v_5nu47s7JrfY,w,what is the first letter of the english sentence that appears first in the video,v_5nu47s7JrfY,v_5nu47s7JrfY_9,8 4622,v_4UdxT6Zmero,t,what is the initial letter of white english that appears at the beginning,v_4UdxT6Zmero,v_4UdxT6Zmero_10,8 4623,v_V9mLJJn8Lvw,c,what is the first letter of the first line of the book cover,v_V9mLJJn8Lvw,v_V9mLJJn8Lvw_10,8 4624,v_zpaS2iYrJjk,smoking,what is the first person being interviewed doing,v_zpaS2iYrJjk,v_zpaS2iYrJjk_8,8 4625,v_aNsj5OrEGLY,cucumber,what is the first person in the video to deal with,v_aNsj5OrEGLY,v_aNsj5OrEGLY_7,5 4626,v_S7CW-si2JjA,s,what is the initial letter of the english sentence at the beginning of the video,v_S7CW-si2JjA,v_S7CW-si2JjA_8,8 4627,v_FEOdYNR4gls,woodiness,what is the material of the floor,v_FEOdYNR4gls,v_FEOdYNR4gls_6,8 4628,v_H9PaZiWLgXU,yellow,what color is the flower on the table,v_H9PaZiWLgXU,v_H9PaZiWLgXU_9,4 4629,v_kyx4MMmBr3A,bicycle,what is under the foot of person wearing red clothes,v_kyx4MMmBr3A,v_kyx4MMmBr3A_4,1 4630,v_7CM2OYr-Csw,lawn,what is under the blond girl's foot,v_7CM2OYr-Csw,v_7CM2OYr-Csw_4,1 4631,v_IsV1n_kLpvs,ladder,what is under the blond man's feet,v_IsV1n_kLpvs,v_IsV1n_kLpvs_4,1 4632,v_IGT0dIKDGCw,grassland,what is under the dog's foot,v_IGT0dIKDGCw,v_IGT0dIKDGCw_4,1 4633,v_UzmsAb15Bso,skate,what is under the foot of the person wearing a sweater,v_UzmsAb15Bso,v_UzmsAb15Bso_4,1 4634,v_eJc8bebOF2A,circle,what is under the foot of the person who pushes the shot,v_eJc8bebOF2A,v_eJc8bebOF2A_4,1 4635,v_6xBh3vzhgo4,skate,what is under the woman’s foot wearing a life jacket,v_6xBh3vzhgo4,v_6xBh3vzhgo4_4,1 4636,v_V-46E7jMm-Y,grassland,what is under the foot of the old man wearing a black sweater,v_V-46E7jMm-Y,v_V-46E7jMm-Y_4,1 4637,v_iKclcQEl4zI,sponge pad,what is under the girl in orange dress,v_iKclcQEl4zI,v_iKclcQEl4zI_4,1 4638,v_VpZzLvzU7_k,ski,what is under the feet of people in orange clothes,v_VpZzLvzU7_k,v_VpZzLvzU7_k_4,1 4639,v_vnZmsOgWs0o,ski,what is under the foot of the person wearing orange pants,v_vnZmsOgWs0o,v_vnZmsOgWs0o_4,1 4640,v_Em4ekFj4XIs,meadow,what is under the foot of the person wearing black shorts,v_Em4ekFj4XIs,v_Em4ekFj4XIs_4,1 4641,v_28LdZLfdmMQ,skate,what is under the foot of the person wearing purple pants,v_28LdZLfdmMQ,v_28LdZLfdmMQ_4,1 4642,v_e0yLhjXQIXI,floor,what is under the purple trousers girl's feet,v_e0yLhjXQIXI,v_e0yLhjXQIXI_4,1 4643,v_eiN5XPmwcEM,mustache,what is the shape of the man's beard after shaving,v_eiN5XPmwcEM,v_eiN5XPmwcEM_6,8 4644,v_gCHo9vxfEzM,audience,what is in front of the person wearing the red dress at the most front,v_gCHo9vxfEzM,v_gCHo9vxfEzM_4,1 4645,v_7dXqXFoju2M,mirror,what is in front of a long-haired woman,v_7dXqXFoju2M,v_7dXqXFoju2M_4,1 4646,v_BFChXuwZ4wo,mirror,what is in front of the place where people wearing gray vests enter the store,v_BFChXuwZ4wo,v_BFChXuwZ4wo_4,1 4647,v_BmL2XGNrxc4,chopped wood,what is in front of the wood that has not been smashed,v_BmL2XGNrxc4,v_BmL2XGNrxc4_4,1 4648,v_2-AMrzL7V-U,bunker,what is in front of the person wearing red clothes during the long jump,v_2-AMrzL7V-U,v_2-AMrzL7V-U_4,1 4649,v_P5D9S9NzQ28,ball frame,what is in front of the person who wears white clothes at the beginning of the video,v_P5D9S9NzQ28,v_P5D9S9NzQ28_4,1 4650,v_F7K2oT7ADkk,mirror,what is in front of the woman's head,v_F7K2oT7ADkk,v_F7K2oT7ADkk_9,6 4651,v_8AUTKSqcmiM,target,what is in front of the archery player,v_8AUTKSqcmiM,v_8AUTKSqcmiM_4,1 4652,v_FKtYeu2bJpA,chair,what is in front of the basketball hoop,v_FKtYeu2bJpA,v_FKtYeu2bJpA_4,1 4653,v__jV5sAOOHLk,bicycle,what is in front of the person in black clothes,v__jV5sAOOHLk,v__jV5sAOOHLk_4,1 4654,v_-crpjVnFv0U,audience,what is in front of the person dancing in the video,v_-crpjVnFv0U,v_-crpjVnFv0U_4,1 4655,v_uJ4OZfCjViM,tree,what is in front of the fallen leaf pile,v_uJ4OZfCjViM,v_uJ4OZfCjViM_4,1 4656,v_HTSxgkgecS0,river,what is in front of the ducks,v_HTSxgkgecS0,v_HTSxgkgecS0_4,1 4657,v_j6BCgvUusWs,gambling table,what is in front of the dealer,v_j6BCgvUusWs,v_j6BCgvUusWs_4,1 4658,v_an1R4BP97JY,bag,what is in front of the fertilizer in the video,v_an1R4BP97JY,v_an1R4BP97JY_4,1 4659,v_b_c17BmZCCs,cross bar,what is in front of the first row of auditoriums,v_b_c17BmZCCs,v_b_c17BmZCCs_4,1 4660,v_SJ7jk5XAjng,table,what is in front of the people in the game,v_SJ7jk5XAjng,v_SJ7jk5XAjng_4,1 4661,v_3Rzyta8op6s,table,what is in front of the bald head in the video,v_3Rzyta8op6s,v_3Rzyta8op6s_4,1 4662,v_li_mry59KCM,equip them with modern machines,what is in front of this person,v_li_mry59KCM,v_li_mry59KCM_4,1 4663,v_QoRlOa6R1LY,rock,what is in front of the person wearing a gray helmet,v_QoRlOa6R1LY,v_QoRlOa6R1LY_4,1 4664,v_8vDSV9ruYlc,wall,what is in front of the person taking the towel,v_8vDSV9ruYlc,v_8vDSV9ruYlc_4,1 4665,v_pMtu7fOHdII,enclosure,what is in front of the onlookers,v_pMtu7fOHdII,v_pMtu7fOHdII_4,1 4666,v_WXH-Tj0-g4w,grassland,what is the front of the persosn wearing orange-red clothes in the video,v_WXH-Tj0-g4w,v_WXH-Tj0-g4w_4,1 4667,v_Ar6TcWqwK-A,pool,what is in front of the person at the beginning of the video,v_Ar6TcWqwK-A,v_Ar6TcWqwK-A_4,1 4668,v_5c5PFa8GR-A,table,what is in front of the person who is being cut,v_5c5PFa8GR-A,v_5c5PFa8GR-A_4,1 4669,v_pcLGX5qvUcI,goal,what is in front of the person who wears skates at the beginning of the video,v_pcLGX5qvUcI,v_pcLGX5qvUcI_4,1 4670,v_cK0-WcGXacQ,auditorium,what is in front of the stadium,v_cK0-WcGXacQ,v_cK0-WcGXacQ_4,1 4671,v_StGxFfLiYNU,sea,what is in front of the sand,v_StGxFfLiYNU,v_StGxFfLiYNU_4,1 4672,v_BjjN_aq_wq4,window,what is in front of the second person,v_BjjN_aq_wq4,v_BjjN_aq_wq4_4,1 4673,v_fbr7v8RMkf8,wood,what is in front of the ski resort,v_fbr7v8RMkf8,v_fbr7v8RMkf8_4,1 4674,v_dskswWtslKc,craft,what is in front of the surf man,v_dskswWtslKc,v_dskswWtslKc_4,1 4675,v_P2xT7dlyX8Y,audience,what is in front of the person who plays the violin on the stage,v_P2xT7dlyX8Y,v_P2xT7dlyX8Y_4,1 4676,v_dZsk5Dp_5FE,wood pile,what is in front of the firewood,v_dZsk5Dp_5FE,v_dZsk5Dp_5FE_4,1 4677,v_9snScUyE8_4,window,what is in front of the yellow-haired girl,v_9snScUyE8_4,v_9snScUyE8_4_4,1 4678,v_6Xsfwn5M6qs,protective effect,what is the role of gym mats,v_6Xsfwn5M6qs,v_6Xsfwn5M6qs_10,8 4679,v_72_9wLYUDGM,do horizontal bar gymnastics,what are the girls in blue doing,v_72_9wLYUDGM,v_72_9wLYUDGM_1,0 4680,v_WNgI2qBvPrY,do homework,what is the girl wearing purple clothes doing in the video,v_WNgI2qBvPrY,v_WNgI2qBvPrY_1,0 4681,v_7IwHwDuQdyU,gymnastics,what are the girls in blue vests doing,v_7IwHwDuQdyU,v_7IwHwDuQdyU_1,0 4682,v_d09u-0k3LdE,playground,what is the girl in the video,v_d09u-0k3LdE,v_d09u-0k3LdE_4,1 4683,v_kMtjk1KFvXQ,main committee,what is the right side of this girl,v_kMtjk1KFvXQ,v_kMtjk1KFvXQ_4,1 4684,v_28WDlVOgslg,floor,what is the girl in pink clothes below,v_28WDlVOgslg,v_28WDlVOgslg_4,1 4685,v_iKclcQEl4zI,somersault,what are the girls in white short sleeves doing,v_iKclcQEl4zI,v_iKclcQEl4zI_1,0 4686,v_VfhDSTKBwgc,origami,what are the gray men doing,v_VfhDSTKBwgc,v_VfhDSTKBwgc_1,0 4687,v_-EIsT868Trw,bungee jumping,what are the gray women doing,v_-EIsT868Trw,v_-EIsT868Trw_1,0 4688,v_f6vZaMgqDvQ,asymmetrical bars,what is this gymnastics performance,v_f6vZaMgqDvQ,v_f6vZaMgqDvQ_8,8 4689,v_laU1Hvm5Dis,bob,what hairstyle does this person leave,v_laU1Hvm5Dis,v_laU1Hvm5Dis_10,8 4690,v_4JmFOPoKluM,shoulder length hair,what is the hairstyle of a child wearing a red trench coat,v_4JmFOPoKluM,v_4JmFOPoKluM_8,8 4691,v_EPsSfOEd3BU,ponytail,what is the hairstyle of a female athlete,v_EPsSfOEd3BU,v_EPsSfOEd3BU_8,5 4692,v_1YU4MSK80cQ,single cauda,what is the hairstyle of a person wearing a black vest,v_1YU4MSK80cQ,v_1YU4MSK80cQ_6,5 4693,v_4LpqPUWHH5k,crew cut,what is the hair style of the coach in the video,v_4LpqPUWHH5k,v_4LpqPUWHH5k_9,8 4694,v_4uKoAk5NCkI,single cauda,what is the hairstyle of the person in the video near the window,v_4uKoAk5NCkI,v_4uKoAk5NCkI_9,5 4695,v_xfV4V_AOVSM,curly hair,what is the hairstyle of a person wearing purple clothes,v_xfV4V_AOVSM,v_xfV4V_AOVSM_7,8 4696,v_N4qhryre_TE,curly hair,what is the hairstyle of a man wearing a black jacket,v_N4qhryre_TE,v_N4qhryre_TE_7,8 4697,v_j6BCgvUusWs,single cauda,what is the hair style of the second dealer,v_j6BCgvUusWs,v_j6BCgvUusWs_9,8 4698,v_kkji9hespu0,short hair,what is this woman's hairstyle,v_kkji9hespu0,v_kkji9hespu0_8,8 4699,v_kyx4MMmBr3A,lime,what is the white color that is difficult to put on the side of the runway,v_kyx4MMmBr3A,v_kyx4MMmBr3A_10,5 4700,v_I1iUbyjWy7k,white,what color is the hat worn by people wearing blue clothes,v_I1iUbyjWy7k,v_I1iUbyjWy7k_8,4 4701,v_0e5zwJywyqk,electromagnetic furnace,what is the heating tool for cooking in the video,v_0e5zwJywyqk,v_0e5zwJywyqk_9,5 4702,v_Yg03CCu9GMo,glass,what material is the goblet in the video,v_Yg03CCu9GMo,v_Yg03CCu9GMo_9,5 4703,v_6H0D8VaIli0,opponent,what is the relationship between people in the middle of the scene in the video,v_6H0D8VaIli0,v_6H0D8VaIli0_10,5 4704,v_er5jUsRr4y0,clerk,what is the identity of a fat man,v_er5jUsRr4y0,v_er5jUsRr4y0_9,8 4705,v_fe4r2-Y8k1U,athletes,what is the identity of a person wearing a black shirt when he is young,v_fe4r2-Y8k1U,v_fe4r2-Y8k1U_6,8 4706,v_vSv1qMMt4Bk,reporter,what is the identity of a brunette woman,v_vSv1qMMt4Bk,v_vSv1qMMt4Bk_8,8 4707,v_Es3PxD9oi4I,referee,what is the identity of the people on the side of the pool,v_Es3PxD9oi4I,v_Es3PxD9oi4I_7,5 4708,v_jEOtcfk220s,p,what is the initials of the english words on the wall in the video,v_jEOtcfk220s,v_jEOtcfk220s_10,8 4709,v_OysON6LbF6Y,guitar,what is the instrument in the hands of men,v_OysON6LbF6Y,v_OysON6LbF6Y_7,5 4710,v_xuvp0jKMqRU,pumpkin,what is the news in the video,v_xuvp0jKMqRU,v_xuvp0jKMqRU_10,5 4711,v_zV08tITKFMM,matador,what is the occupation of a person wearing gold clothes,v_zV08tITKFMM,v_zV08tITKFMM_10,8 4712,v_ZBP_mLWROZU,barber,what is the occupation of a person wearing a white suit,v_ZBP_mLWROZU,v_ZBP_mLWROZU_9,8 4713,v_eJc8bebOF2A,athletes,what is the occupation of the person who pushes the shot,v_eJc8bebOF2A,v_eJc8bebOF2A_7,8 4714,v_bRgvAHL3dJk,cooker,what is the occupation of a yellow-haired person,v_bRgvAHL3dJk,v_bRgvAHL3dJk_10,8 4715,v_qWgF9hxNbP8,referee,what is the occupation of a person who takes a whistle,v_qWgF9hxNbP8,v_qWgF9hxNbP8_7,8 4716,v_HTYzbAFUghU,cook,what is the occupation of a man in the video,v_HTYzbAFUghU,v_HTYzbAFUghU_10,8 4717,v_IToczVhbOc0,tattoo artist,what is the occupation of a man wearing glasses,v_IToczVhbOc0,v_IToczVhbOc0_9,8 4718,v_GcjzvBatqb4,fitness coach,what is the position of a person wearing orange clothes,v_GcjzvBatqb4,v_GcjzvBatqb4_10,8 4719,v_wcxEkMoOmBk,curly hair,what is the woman wearing a gray dress in the video,v_wcxEkMoOmBk,v_wcxEkMoOmBk_1,0 4720,v_w4pO-1-FG5w,barber,what is the career of a woman in the video,v_w4pO-1-FG5w,v_w4pO-1-FG5w_10,8 4721,v_7H1KylJRii8,decorating umbrella,what is the last cup on the video,v_7H1KylJRii8,v_7H1KylJRii8_4,1 4722,v_i_LT0ef1n-Y,enclosure,what is the last shot behind the red man,v_i_LT0ef1n-Y,v_i_LT0ef1n-Y_4,1 4723,v_4MwnHtlaEUY,bicycle,what is the last person in the video,v_4MwnHtlaEUY,v_4MwnHtlaEUY_4,1 4724,v_jt-Vnap5KP4,table,what is the left hand side of the person in the video,v_jt-Vnap5KP4,v_jt-Vnap5KP4_4,1 4725,v_atGMJc-DZ7w,basin,what is the left side of the little girl who is kneeling,v_atGMJc-DZ7w,v_atGMJc-DZ7w_4,1 4726,v_0Um-HgjcnXY,audience,what is the left side of the contestant,v_0Um-HgjcnXY,v_0Um-HgjcnXY_4,1 4727,v_Pr5K2Jh2X94,track,what is the left side of the athlete before the start,v_Pr5K2Jh2X94,v_Pr5K2Jh2X94_4,1 4728,v_B4Zp5XN97Gc,enclosure,what is the left side of the person who first digs the ground with a spade,v_B4Zp5XN97Gc,v_B4Zp5XN97Gc_4,1 4729,v_FxpP7lqvm30,group of children,what is the left side of the man holding the microphone,v_FxpP7lqvm30,v_FxpP7lqvm30_4,1 4730,v_rrpEOrMpBuE,enclosure,what is the left side of the person who started wearing blue clothes at the beginning of the video,v_rrpEOrMpBuE,v_rrpEOrMpBuE_4,1 4731,v_dU7jG8G5li0,good,what is the level of people making cakes in the video,v_dU7jG8G5li0,v_dU7jG8G5li0_10,8 4732,v_rWfQj0X8WU4,secondary,how safe is the motion in the video,v_rWfQj0X8WU4,v_rWfQj0X8WU4_10,8 4733,v_JKJ_EvP7JwQ,twinkle,what is the light in the pumpkin,v_JKJ_EvP7JwQ,v_JKJ_EvP7JwQ_1,0 4734,v_KXMZHfCwTO0,dog,what is the little animal that walks on the grass,v_KXMZHfCwTO0,v_KXMZHfCwTO0_6,5 4735,v_9G172wz5Yqo,skiing,what is the little girl wearing a red dress,v_9G172wz5Yqo,v_9G172wz5Yqo_1,0 4736,v_k-I4zLbgdpM,gymnastic performance,what is the left-handed injured girl doing,v_k-I4zLbgdpM,v_k-I4zLbgdpM_1,0 4737,v_-eJT11AuOa0,dog,what animal is the logo of the video,v_-eJT11AuOa0,v_-eJT11AuOa0_4,1 4738,v_v-UmNR5yeDc,finger guessing game,what is the long hair woman in the video doing,v_v-UmNR5yeDc,v_v-UmNR5yeDc_1,0 4739,v_W97fdJ2Rn9g,beautiful arched eyebrows,what is the shape of the makeup artist's eyebrows,v_W97fdJ2Rn9g,v_W97fdJ2Rn9g_9,8 4740,v_AwcM25G1h-g,hosting news,what is the male host doing,v_AwcM25G1h-g,v_AwcM25G1h-g_1,0 4741,v_iqyc2JM0uIU,variety of wine,what is behind the red man,v_iqyc2JM0uIU,v_iqyc2JM0uIU_4,1 4742,v_ivAvKRQQy1Q,wall,what is behind the white man,v_ivAvKRQQy1Q,v_ivAvKRQQy1Q_4,1 4743,v_Ko7Nt8UDP4Q,sandwich,what is the person who opened the refrigerator doing,v_Ko7Nt8UDP4Q,v_Ko7Nt8UDP4Q_1,0 4744,v_s84PG-JfEwc,skateboard of water skiing,what are the people who are pulling the rope,v_s84PG-JfEwc,v_s84PG-JfEwc_1,0 4745,v_7OcxT66BxX0,sing,what is the man wearing a black hat doing,v_7OcxT66BxX0,v_7OcxT66BxX0_1,0 4746,v_iixZLnyLuN8,hold girl,what is the man wearing a flower shirt doing,v_iixZLnyLuN8,v_iixZLnyLuN8_1,0 4747,v_rApbE1VkEjE,snow removal,what are the people wearing yellow scorpions doing,v_rApbE1VkEjE,v_rApbE1VkEjE_1,0 4748,v_iuXjatyFcwo,exercise weight lifting,what are the men in blue shorts doing,v_iuXjatyFcwo,v_iuXjatyFcwo_1,0 4749,v_fvEaC-fTR4A,table,what is in front of the man in black,v_fvEaC-fTR4A,v_fvEaC-fTR4A_4,1 4750,v_iuXjatyFcwo,barbell,what is in front of the man wearing blue shorts,v_iuXjatyFcwo,v_iuXjatyFcwo_4,1 4751,v_hvrKRg166eQ,table,what is in front of the man holding the paper in his right hand,v_hvrKRg166eQ,v_hvrKRg166eQ_4,1 4752,v_dN8LBey17O8,mowing lawn,what are the men in grey clothes doing,v_dN8LBey17O8,v_dN8LBey17O8_1,0 4753,v_elD1P_1oiUk,drift,what are the men in light blue shorts doing,v_elD1P_1oiUk,v_elD1P_1oiUk_1,0 4754,v_KT8DUDFc3Xg,shoeshine,what are the people in red dress doing,v_KT8DUDFc3Xg,v_KT8DUDFc3Xg_1,0 4755,v_kyx4MMmBr3A,cross country race,what are the people in red dress doing,v_kyx4MMmBr3A,v_kyx4MMmBr3A_1,0 4756,v_zV08tITKFMM,red cloth,what is the person in the golden dress holding in his hand,v_zV08tITKFMM,v_zV08tITKFMM_9,5 4757,v_32vYs9wKXE8,weave hair,what are the people wearing the ring,v_32vYs9wKXE8,v_32vYs9wKXE8_1,0 4758,v_4z0meF-_b1I,drive car,what did the person wearing the hat do at the beginning,v_4z0meF-_b1I,v_4z0meF-_b1I_1,0 4759,v_8IrulONeC28,women in red clothes,what is the left side of the yellow man at the beginning of the video,v_8IrulONeC28,v_8IrulONeC28_4,1 4760,v_Pho9Hgdvc0g,dog,what is the left side of the man on the bridge,v_Pho9Hgdvc0g,v_Pho9Hgdvc0g_4,1 4761,v_fQ1OuD7x3to,rag,what is on the black man's shoulder,v_fQ1OuD7x3to,v_fQ1OuD7x3to_4,1 4762,v_V2UitlmX7Uo,play guitar,what are the men standing in the video,v_V2UitlmX7Uo,v_V2UitlmX7Uo_1,0 4763,v_KXcVYfMuUGw,sand,what is under this person's foot,v_KXcVYfMuUGw,v_KXcVYfMuUGw_4,1 4764,v_ut1AoOzqL4k,three step jump,what is the man wearing a black vest in the video,v_ut1AoOzqL4k,v_ut1AoOzqL4k_1,0 4765,v_UzmsAb15Bso,slider,what is the man wearing a sweater in the video,v_UzmsAb15Bso,v_UzmsAb15Bso_1,0 4766,v_U2eN4DbVLfE,ring,what is the right hand of a man wearing a gray sweater,v_U2eN4DbVLfE,v_U2eN4DbVLfE_9,5 4767,v_QoRlOa6R1LY,rock climbing,what are the people wearing gray helmets doing,v_QoRlOa6R1LY,v_QoRlOa6R1LY_1,0 4768,v_7-UlUnaBjXU,ride cross country motorcycle,what are the men in white helmets doing,v_7-UlUnaBjXU,v_7-UlUnaBjXU_1,0 4769,v_7lxP-hWFA24,microphone,what is ahead of the man who is playing the guitar,v_7lxP-hWFA24,v_7lxP-hWFA24_4,1 4770,v_wE9sQbGdeAk,diving,what is the man with a beard in the video doing,v_wE9sQbGdeAk,v_wE9sQbGdeAk_1,0 4771,v_JbW8efAOOt0,bracelet,what does the person wearing the hat wear on the right hand,v_JbW8efAOOt0,v_JbW8efAOOt0_9,5 4772,v_KWpATsiXF_M,bullfight,what are the people in the field holding a long stick,v_KWpATsiXF_M,v_KWpATsiXF_M_1,0 4773,v_KWpATsiXF_M,horse,what is the person riding with the long stick in the field,v_KWpATsiXF_M,v_KWpATsiXF_M_4,1 4774,v_IDuoF51IMJ8,throw ball,what are the men wearing white,v_IDuoF51IMJ8,v_IDuoF51IMJ8_1,0 4775,v_hvrKRg166eQ,broadcast,what is the man holding the paper in his right hand in the video,v_hvrKRg166eQ,v_hvrKRg166eQ_1,0 4776,v_iixZLnyLuN8,black hair girl,what is on the man's leg wearing a flower shirt,v_iixZLnyLuN8,v_iixZLnyLuN8_4,1 4777,v_eVkp83uGf3Y,1154,what is the number of men wearing red vests,v_eVkp83uGf3Y,v_eVkp83uGf3Y_8,8 4778,v_7H1KylJRii8,bartender,what is the occupation of a man wearing a striped shirt,v_7H1KylJRii8,v_7H1KylJRii8_8,5 4779,v_Pho9Hgdvc0g,walk dog,what is the purpose of the men on the bridge,v_Pho9Hgdvc0g,v_Pho9Hgdvc0g_10,8 4780,v_AwcM25G1h-g,female host,what is on the left side of the male host,v_AwcM25G1h-g,v_AwcM25G1h-g_4,1 4781,v_chmegNbBTNc,woodiness,what is the material of the table,v_chmegNbBTNc,v_chmegNbBTNc_8,8 4782,v_2nDJpvD-eZU,how to cut potatoes,what does english mean when the video starts,v_2nDJpvD-eZU,v_2nDJpvD-eZU_10,8 4783,v_HowkVy5fOyk,pray,what does the final gesture of the bullfighter mean in the video,v_HowkVy5fOyk,v_HowkVy5fOyk_10,8 4784,v_7CM2OYr-Csw,happy,what is the mood of the little girl when flying a kite,v_7CM2OYr-Csw,v_7CM2OYr-Csw_9,8 4785,v_kBTqTp0SKq8,happy,what is the mood of people wearing blue clothes,v_kBTqTp0SKq8,v_kBTqTp0SKq8_10,8 4786,v_6LsvBNqJuJY,happy,what is the mood of the woman at the beginning of the video,v_6LsvBNqJuJY,v_6LsvBNqJuJY_10,8 4787,v_J9KjpzKM8oc,happy,what is the mood of all the people wearing helmets in the video,v_J9KjpzKM8oc,v_J9KjpzKM8oc_10,8 4788,v_jibbgUBuuSA,happy,what is the mood of the athlete after the success of the high jump,v_jibbgUBuuSA,v_jibbgUBuuSA_9,8 4789,v_kTqt7ry3eVM,very pleased,what is the mood of the person who receives the prize on the podium,v_kTqt7ry3eVM,v_kTqt7ry3eVM_10,8 4790,v_5k2Ot6-wOgc,happy,what is the mood of a person in black after playing bowling,v_5k2Ot6-wOgc,v_5k2Ot6-wOgc_9,8 4791,v_6G8m-vsGTA8,happy,what is the mood of people driving in the video,v_6G8m-vsGTA8,v_6G8m-vsGTA8_10,8 4792,v_KPRymTsPCC0,happy,what is the mood of a woman wearing glasses,v_KPRymTsPCC0,v_KPRymTsPCC0_10,8 4793,v_7BUr2cN8CLs,happy,what is the mood of the last blonde woman in the video,v_7BUr2cN8CLs,v_7BUr2cN8CLs_6,8 4794,v_eLh51DwDp-E,ballet dancer,what is the most likely female occupation in black,v_eLh51DwDp-E,v_eLh51DwDp-E_7,8 4795,v_a_EqAwUOxpM,yellow,what is the color of the nail in the video,v_a_EqAwUOxpM,v_a_EqAwUOxpM_8,4 4796,v_AtbTioB1_Kw,long rod,what is the name of the sport in the video,v_AtbTioB1_Kw,v_AtbTioB1_Kw_8,8 4797,v_d6gGZFQOxOg,secondary,what is the safety factor of weightlifting,v_d6gGZFQOxOg,v_d6gGZFQOxOg_8,8 4798,v_OccEAILrU7M,secondary,what is the safety factor for this sport in the video,v_OccEAILrU7M,v_OccEAILrU7M_9,8 4799,v_xfV4V_AOVSM,four thousand and six hundred,what is the name of the barber shop,v_xfV4V_AOVSM,v_xfV4V_AOVSM_9,8 4800,v_kTqt7ry3eVM,first,what is the name of the third person who dive,v_kTqt7ry3eVM,v_kTqt7ry3eVM_7,8 4801,v_W2eumNilwuI,korea,what is the nationality of a person wearing green shoes,v_W2eumNilwuI,v_W2eumNilwuI_9,8 4802,v_jWODw4vy45M,walk,what is the dog closest to the camera doing,v_jWODw4vy45M,v_jWODw4vy45M_1,0 4803,v_kpOAGEYHts8,recreational machines,what is the back row of this woman,v_kpOAGEYHts8,v_kpOAGEYHts8_4,1 4804,v_WdtytUagoJs,29,what is the number behind the javelin thrower,v_WdtytUagoJs,v_WdtytUagoJs_6,8 4805,v_VpZzLvzU7_k,2,what is the number of people who can take a cable car,v_VpZzLvzU7_k,v_VpZzLvzU7_k_7,7 4806,v_f1d7_TKXNYQ,1951,what is the number on the athlete's chest,v_f1d7_TKXNYQ,v_f1d7_TKXNYQ_7,8 4807,v_wdvQC41PGPk,330,what is the number on the iron gate in the distance,v_wdvQC41PGPk,v_wdvQC41PGPk_9,8 4808,v_AtbTioB1_Kw,1144,what is the number on the trainer's clothes,v_AtbTioB1_Kw,v_AtbTioB1_Kw_10,8 4809,v_C27eI-S1Vkw,circle,what is the item tied to the hair in the video,v_C27eI-S1Vkw,v_C27eI-S1Vkw_9,5 4810,v_idkQqlwyff8,knock toy,what are the blue old men doing,v_idkQqlwyff8,v_idkQqlwyff8_1,0 4811,v_7F-mVWMP2vM,spinning,what are the old people in blue sweaters doing,v_7F-mVWMP2vM,v_7F-mVWMP2vM_1,0 4812,v_V-46E7jMm-Y,archery,what are the old people wearing black sweaters in the video,v_V-46E7jMm-Y,v_V-46E7jMm-Y_1,0 4813,v_C27eI-S1Vkw,tie up hair,what is the operator in the video doing,v_C27eI-S1Vkw,v_C27eI-S1Vkw_1,0 4814,v_MpeN-IVIBc4,mans head,what is the spray painting,v_MpeN-IVIBc4,v_MpeN-IVIBc4_8,8 4815,v_NDq29HQJVP0,red,what color pants are worn by people wearing white clothes,v_NDq29HQJVP0,v_NDq29HQJVP0_10,4 4816,v_8vDSV9ruYlc,grass,what is the pattern of the wallpaper,v_8vDSV9ruYlc,v_8vDSV9ruYlc_8,5 4817,v_lfbspF18Wrw,oven,what is behind this person,v_lfbspF18Wrw,v_lfbspF18Wrw_4,1 4818,v_4JmFOPoKluM,tug of war,what do people in the video do on the road,v_4JmFOPoKluM,v_4JmFOPoKluM_1,0 4819,v_GxDNGtoVjS0,cut tree,what are the people in the gray coat doing,v_GxDNGtoVjS0,v_GxDNGtoVjS0_1,0 4820,v_H33jSILKmfI,standing,what is the person on the right side of the black line in the video,v_H33jSILKmfI,v_H33jSILKmfI_1,0 4821,v_I3tqWc5wG78,party,what is the person in the video participating in,v_I3tqWc5wG78,v_I3tqWc5wG78_7,8 4822,v_AB480dHyDeM,brush,what is the person in the video who is taking the shoes,v_AB480dHyDeM,v_AB480dHyDeM_9,5 4823,v_2vrR_5u2buU,pole vault,what are the people wearing doll clothes,v_2vrR_5u2buU,v_2vrR_5u2buU_1,0 4824,v_Vxw3yFCV2iA,practice water sled,what are the people wearing gloves in the video,v_Vxw3yFCV2iA,v_Vxw3yFCV2iA_1,0 4825,v_U2eN4DbVLfE,wrist wrestling,what are the people wearing the gray sweater in the video,v_U2eN4DbVLfE,v_U2eN4DbVLfE_1,0 4826,v_BFChXuwZ4wo,tattoo,what are the people wearing the gray vest in the video,v_BFChXuwZ4wo,v_BFChXuwZ4wo_1,0 4827,v_I3tqWc5wG78,make salad,what are the people wearing the sweater chain in the video,v_I3tqWc5wG78,v_I3tqWc5wG78_1,0 4828,v_V9mLJJn8Lvw,package book,what are the people wearing sweaters in the video,v_V9mLJJn8Lvw,v_V9mLJJn8Lvw_1,0 4829,v_bBRzBh0gAZQ,match,what are the people wearing the vest in the video,v_bBRzBh0gAZQ,v_bBRzBh0gAZQ_1,0 4830,v_ej_fSoVO0R8,cake,what are the people in white aprons doing,v_ej_fSoVO0R8,v_ej_fSoVO0R8_1,0 4831,v_bYxVbXzQToI,play guitar,what are the people wearing white coats in the video,v_bYxVbXzQToI,v_bYxVbXzQToI_1,0 4832,v_4YF9R3Sz2bA,ski slope,what was the person who shot the video,v_4YF9R3Sz2bA,v_4YF9R3Sz2bA_4,1 4833,v_Db2Dnt2OOo0,door,what is the person behind the tattoo in the video,v_Db2Dnt2OOo0,v_Db2Dnt2OOo0_4,1 4834,v_5LGh56euaZs,diving,what are the people in the video with goggles doing,v_5LGh56euaZs,v_5LGh56euaZs_1,0 4835,v_amgpZtvd9h0,teach hair,what are the people who are taking the card in the video,v_amgpZtvd9h0,v_amgpZtvd9h0_1,0 4836,v_I3tqWc5wG78,camera,what is the tool for taking pictures of people wearing black clothes and curls,v_I3tqWc5wG78,v_I3tqWc5wG78_9,5 4837,v_6G8m-vsGTA8,haircut,what did the person holding the camera do at the beginning,v_6G8m-vsGTA8,v_6G8m-vsGTA8_1,0 4838,v_I2XqSiNerwg,perform,what are the white hair people in the video doing,v_I2XqSiNerwg,v_I2XqSiNerwg_1,0 4839,v_qObVIn_GI10,apple juice,what is the juice in the video,v_qObVIn_GI10,v_qObVIn_GI10_8,5 4840,v_ZsVfa3JIUNU,male,what is the gender of the person taking the microphone,v_ZsVfa3JIUNU,v_ZsVfa3JIUNU_6,8 4841,v_zH1MiuiTsx8,male,what is the gender of a person wearing an orange life jacket,v_zH1MiuiTsx8,v_zH1MiuiTsx8_6,8 4842,v_u_vLZxgO9Rw,female,what is the gender of a person who is waving a yellow ribbon,v_u_vLZxgO9Rw,v_u_vLZxgO9Rw_8,8 4843,v_vBOFzuS-Djo,short hair baby,what is above the platform,v_vBOFzuS-Djo,v_vBOFzuS-Djo_4,1 4844,v_iZT4XgzUHm4,national flag,what is the starting point of the track,v_iZT4XgzUHm4,v_iZT4XgzUHm4_4,1 4845,v_Ki13JIVwMdk,half squat,what is the posture of a dog in black and white hair,v_Ki13JIVwMdk,v_Ki13JIVwMdk_9,8 4846,v_J1QB1y3vXLY,hold right leg,what is the posture of the blonde woman at the beginning of the video,v_J1QB1y3vXLY,v_J1QB1y3vXLY_6,8 4847,v_KT8DUDFc3Xg,squatting,what is the posture of the person in red clothes wiping the shoes,v_KT8DUDFc3Xg,v_KT8DUDFc3Xg_6,8 4848,v_m731tx8N5-Y,lead singer,what might be the position of the bald person in the band,v_m731tx8N5-Y,v_m731tx8N5-Y_10,8 4849,v_CFbkVO5b2g0,stand,what is the posture of the man playing the piano,v_CFbkVO5b2g0,v_CFbkVO5b2g0_10,8 4850,v_AQ3eFWxZ67U,doctor,what is the position of the person sitting in the office,v_AQ3eFWxZ67U,v_AQ3eFWxZ67U_7,5 4851,v_3kxP8qOtym8,trainer,what is the occupation of the sparring person,v_3kxP8qOtym8,v_3kxP8qOtym8_10,5 4852,v_CDncYtx6Lwc,beautiful,what is the purpose of nail polish,v_CDncYtx6Lwc,v_CDncYtx6Lwc_9,8 4853,v_CDecXoRSpIc,safe of car,what is the purpose of this work,v_CDecXoRSpIc,v_CDecXoRSpIc_8,8 4854,v_L5IbDi09Yb4,life buoy,what is the red and white circle,v_L5IbDi09Yb4,v_L5IbDi09Yb4_10,5 4855,v_7LbBmVX33I4,bed,what is behind the curly-haired woman,v_7LbBmVX33I4,v_7LbBmVX33I4_4,1 4856,v_Flm_SCK10GQ,sandbag,what is the rear of the boys,v_Flm_SCK10GQ,v_Flm_SCK10GQ_4,1 4857,v_cnMvMvVBXiI,door,what is behind the car in the video,v_cnMvMvVBXiI,v_cnMvMvVBXiI_4,1 4858,v_7F-mVWMP2vM,woven goods,what is the rear of the old man in a blue sweater,v_7F-mVWMP2vM,v_7F-mVWMP2vM_4,1 4859,v_FmfAB-ppHBs,television,what is the rear of the smoke,v_FmfAB-ppHBs,v_FmfAB-ppHBs_4,1 4860,v_BD9CAqD1Yf8,house,what is behind the two cars side by side,v_BD9CAqD1Yf8,v_BD9CAqD1Yf8_4,1 4861,v_kkji9hespu0,pepper,what is red in the oil pan,v_kkji9hespu0,v_kkji9hespu0_6,5 4862,v_e-Xf13exY4E,partner,what is the relationship between men in black and men in white,v_e-Xf13exY4E,v_e-Xf13exY4E_7,8 4863,v_8_fjIZkNHms,master and servant,what is the relationship between a dog and a purple woman,v_8_fjIZkNHms,v_8_fjIZkNHms_10,8 4864,v_-eJT11AuOa0,friend,what is the relationship between the owner of the dog and the two people on the roadside,v_-eJT11AuOa0,v_-eJT11AuOa0_10,5 4865,v_iixZLnyLuN8,father and daughter,what is the relationship between men and brunette girls wearing floral shirts,v_iixZLnyLuN8,v_iixZLnyLuN8_9,8 4866,v_e0yLhjXQIXI,teammate,what is the relationship between red girls and girls in pink,v_e0yLhjXQIXI,v_e0yLhjXQIXI_8,8 4867,v_9snScUyE8_4,mother and daughter,what is the relationship between yellow-haired girls and those wearing glasses,v_9snScUyE8_4,v_9snScUyE8_4_10,8 4868,v_BD9CAqD1Yf8,companion,what is the relationship between a group of people in the video,v_BD9CAqD1Yf8,v_BD9CAqD1Yf8_7,5 4869,v_PFeerDZbGn8,partnership,what is the relationship between people and dogs,v_PFeerDZbGn8,v_PFeerDZbGn8_9,8 4870,v_i_LT0ef1n-Y,friend,what is the relationship between a red man and a black man,v_i_LT0ef1n-Y,v_i_LT0ef1n-Y_6,8 4871,v_5c5PFa8GR-A,friend,what is the relationship between the person wearing the hat and the person being cut,v_5c5PFa8GR-A,v_5c5PFa8GR-A_10,5 4872,v_V2UitlmX7Uo,stranger,what is the relationship between the standing man and the woman sitting,v_V2UitlmX7Uo,v_V2UitlmX7Uo_9,8 4873,v_vBOFzuS-Djo,mother and daughter,what is the relationship between a woman in red and a short-haired baby,v_vBOFzuS-Djo,v_vBOFzuS-Djo_7,8 4874,v_VFC-V06hVj0,friend,what is the relationship between a woman wearing a hat and a woman behind her,v_VFC-V06hVj0,v_VFC-V06hVj0_7,8 4875,v_k3WPc9HmtLM,family,what is the relationship between adults and children in the video,v_k3WPc9HmtLM,v_k3WPc9HmtLM_10,8 4876,v_zOI9SjQpc_Q,teammate,what is the relationship between all athletes wearing yellow clothes,v_zOI9SjQpc_Q,v_zOI9SjQpc_Q_10,8 4877,v_GjcRJzPjbRI,competitor,what is the relationship between everyone who throws a shot in the video,v_GjcRJzPjbRI,v_GjcRJzPjbRI_7,8 4878,v_8AUTKSqcmiM,friend,what is the relationship between the archers in the video,v_8AUTKSqcmiM,v_8AUTKSqcmiM_10,5 4879,v_IclzwpxVvIk,friend,what is the relationship between a blonde woman and a brunette woman,v_IclzwpxVvIk,v_IclzwpxVvIk_6,8 4880,v_ikUNgSw4Gys,shopkeepers and shopkeepers,what is the relationship between a blonde woman and a white woman,v_ikUNgSw4Gys,v_ikUNgSw4Gys_9,8 4881,v_vBaiedxy1Uw,brother and sister,what is the relationship between a blue boy and a long-haired girl,v_vBaiedxy1Uw,v_vBaiedxy1Uw_7,8 4882,v_oMtB-y49Yo8,friend,what is the relationship between people in blue clothes and people in black clothes,v_oMtB-y49Yo8,v_oMtB-y49Yo8_9,8 4883,v_7vcihMnmssI,friend,what is the relationship between the four men,v_7vcihMnmssI,v_7vcihMnmssI_10,5 4884,v_9FQ-VLkCZo8,teammate,what is the relationship between green clothes boys,v_9FQ-VLkCZo8,v_9FQ-VLkCZo8_8,5 4885,v_UvOEuhS0V3E,friend,what is the relationship between a long-haired woman and a short-haired man,v_UvOEuhS0V3E,v_UvOEuhS0V3E_10,8 4886,v_hIHeMA1oRrY,friend,what is the relationship between black pants men and green pants men,v_hIHeMA1oRrY,v_hIHeMA1oRrY_10,8 4887,v_uLsq6gQXQPM,father and son,what is the relationship between people with orange clothes and green shirts,v_uLsq6gQXQPM,v_uLsq6gQXQPM_8,8 4888,v_p54LLMnyg54,colleague,what is the relationship between the people who appear,v_p54LLMnyg54,v_p54LLMnyg54_7,8 4889,v_5k2Ot6-wOgc,friend,what is the relationship between the person in black and the person behind him,v_5k2Ot6-wOgc,v_5k2Ot6-wOgc_10,5 4890,v_YvPoAOrjX5I,friend,what is the relationship between a person wearing blue and a person wearing white,v_YvPoAOrjX5I,v_YvPoAOrjX5I_8,8 4891,v_AjqnGUbsduw,opponent,what is the relationship between a person wearing white clothes and a person wearing black clothes,v_AjqnGUbsduw,v_AjqnGUbsduw_7,5 4892,v_2uUNiV8xmEo,opponent,what is the relationship between a person in white and a person in red,v_2uUNiV8xmEo,v_2uUNiV8xmEo_10,5 4893,v_JsPIzRsUtlE,opponent,what is the relationship between people in the middle of the field,v_JsPIzRsUtlE,v_JsPIzRsUtlE_10,8 4894,v_TXSOSSGJYO0,friend,what is the relationship between people running in the video,v_TXSOSSGJYO0,v_TXSOSSGJYO0_7,8 4895,v_0iqx7o5WYW8,teammate,what is the relationship between people wearing black hats,v_0iqx7o5WYW8,v_0iqx7o5WYW8_9,5 4896,v_nP1Bk-vJgVg,teammate,what is the relationship between people wearing black ball suits in the video,v_nP1Bk-vJgVg,v_nP1Bk-vJgVg_10,8 4897,v_A_Sr0mCX2rI,friend,what is the relationship between people wearing camouflage and people wearing glasses,v_A_Sr0mCX2rI,v_A_Sr0mCX2rI_10,5 4898,v_cVFVREeD6hM,colleague,what is the relationship between people wearing green clothes in the video,v_cVFVREeD6hM,v_cVFVREeD6hM_10,8 4899,v_A8RQcVFtovg,relatives,what is the relationship between wearing gray clothes and children wearing white clothes,v_A8RQcVFtovg,v_A8RQcVFtovg_8,5 4900,v_gCHo9vxfEzM,dancing partner,what is the relationship between people wearing red clothes on the stage,v_gCHo9vxfEzM,v_gCHo9vxfEzM_10,8 4901,v_aH39BSM0-Ag,teammate,what is the relationship between people wearing white hats on the video,v_aH39BSM0-Ag,v_aH39BSM0-Ag_10,8 4902,v_wLXty2wzuJg,colleague,what is the relationship between people wearing white short sleeves,v_wLXty2wzuJg,v_wLXty2wzuJg_7,8 4903,v_H_JLBvfP88U,colleague,what is the relationship between people wearing hats on the bullfighting ground,v_H_JLBvfP88U,v_H_JLBvfP88U_8,8 4904,v_0e7d39SwHCA,opponent,what is the relationship between purple clothes and black sleeves,v_0e7d39SwHCA,v_0e7d39SwHCA_7,5 4905,v_K1LiXUpoSmI,family,what is the relationship between adults and children who play,v_K1LiXUpoSmI,v_K1LiXUpoSmI_10,8 4906,v_3Rzyta8op6s,opponent,what is the relationship between the bald head in the video and the person across the table,v_3Rzyta8op6s,v_3Rzyta8op6s_9,5 4907,v_oKJ1BnvHbbA,opponent,what is the relationship between black clothes person and red clothes person,v_oKJ1BnvHbbA,v_oKJ1BnvHbbA_9,8 4908,v_UJGK_TKrl4E,opponent,what is the relationship between black and black helmets and white people,v_UJGK_TKrl4E,v_UJGK_TKrl4E_7,8 4909,v_Ki1bs5X_S5k,mother and daughter,what is the relationship between a child and a girl in blue,v_Ki1bs5X_S5k,v_Ki1bs5X_S5k_7,8 4910,v_paRAKx8svJ8,colleague,what is the relationship between the judges,v_paRAKx8svJ8,v_paRAKx8svJ8_9,8 4911,v_KsFid_YVsn0,dancing partner,what is the relationship between men and women in the video,v_KsFid_YVsn0,v_KsFid_YVsn0_7,8 4912,v_fvEaC-fTR4A,opponent,what is the relationship between a black man and a red man opposite,v_fvEaC-fTR4A,v_fvEaC-fTR4A_10,8 4913,v_eQwLUJ3P7wI,friend,what is the relationship between the owner of the dog and the photographer,v_eQwLUJ3P7wI,v_eQwLUJ3P7wI_9,8 4914,v_bBRzBh0gAZQ,opponent,what is the relationship between the various contestants,v_bBRzBh0gAZQ,v_bBRzBh0gAZQ_7,8 4915,v_vFO70WwrQgE,friend,what is the relationship between people who are dancing in the video,v_vFO70WwrQgE,v_vFO70WwrQgE_7,8 4916,v_ghHZ9M-jx0w,teammate,what is the relationship between people in orange clothes and white people,v_ghHZ9M-jx0w,v_ghHZ9M-jx0w_10,8 4917,v_eMgC7I-GcgA,friend,what is the relationship between people on motorboats and people surfing,v_eMgC7I-GcgA,v_eMgC7I-GcgA_7,8 4918,v_cTxVTEzQDr8,friend,what is the relationship between the people who appeared in the video last time,v_cTxVTEzQDr8,v_cTxVTEzQDr8_10,8 4919,v_PkRvgIFREJU,companion,what is the relationship between people who jump in the grid,v_PkRvgIFREJU,v_PkRvgIFREJU_9,8 4920,v_u_vLZxgO9Rw,teammate,what is the relationship between people who skip rope in the video,v_u_vLZxgO9Rw,v_u_vLZxgO9Rw_7,8 4921,v_K7iw2_1BrIk,teammate,what is the relationship between the person holding the box in hand,v_K7iw2_1BrIk,v_K7iw2_1BrIk_10,8 4922,v_BkDbDnvoL28,partner,what is the relationship between the performers,v_BkDbDnvoL28,v_BkDbDnvoL28_7,5 4923,v_BhgcXqWQhkQ,partner,what is the relationship between the performers on the stage,v_BhgcXqWQhkQ,v_BhgcXqWQhkQ_8,5 4924,v_3PsxzgeMv5w,friend,what is the relationship between a person wearing black clothes and a person on his right,v_3PsxzgeMv5w,v_3PsxzgeMv5w_10,5 4925,v_IDuoF51IMJ8,opponent,what is the relationship between the purple team and the grey team,v_IDuoF51IMJ8,v_IDuoF51IMJ8_6,8 4926,v_J1QB1y3vXLY,shopkeeper and customer,what is the relationship between short hair men and blonde women,v_J1QB1y3vXLY,v_J1QB1y3vXLY_10,8 4927,v_uJAL31wAD2A,friend,what is the relationship between a striped bikini person and a purple bikini person,v_uJAL31wAD2A,v_uJAL31wAD2A_10,8 4928,v_6VXQoPNphgI,friend,what is the relationship between two black women in the video,v_6VXQoPNphgI,v_6VXQoPNphgI_10,5 4929,v_12Nafz_Yet4,opponent,what is the relationship between these two boxing people,v_12Nafz_Yet4,v_12Nafz_Yet4_6,5 4930,v_k-I4zLbgdpM,teammate,what is the relationship between the two performing girls,v_k-I4zLbgdpM,v_k-I4zLbgdpM_8,8 4931,v_pPt_fygNjtQ,teaching relationship,what is the relationship between the two woman in the video,v_pPt_fygNjtQ,v_pPt_fygNjtQ_10,8 4932,v_aAz3YL2RMr4,friend,what is the relationship between the two of them in the video,v_aAz3YL2RMr4,v_aAz3YL2RMr4_8,8 4933,v_b6QSzGwI9m4,opponent,what is the relationship between the two people involved in the competition,v_b6QSzGwI9m4,v_b6QSzGwI9m4_6,8 4934,v_kYkvyRKxwfY,opponent,what is the relationship between the two people playing table tennis,v_kYkvyRKxwfY,v_kYkvyRKxwfY_8,8 4935,v_H33jSILKmfI,friend,what is the relationship between two people wearing suits,v_H33jSILKmfI,v_H33jSILKmfI_8,8 4936,v_U2eN4DbVLfE,masses and journalists,what is the relationship between the two men in the wrist of the video,v_U2eN4DbVLfE,v_U2eN4DbVLfE_8,8 4937,v_NZskwwovSZI,boss and the customer,what is the relationship between two people in the video,v_NZskwwovSZI,v_NZskwwovSZI_9,8 4938,v_Es3PxD9oi4I,competitor,what is the relationship between these two teams,v_Es3PxD9oi4I,v_Es3PxD9oi4I_10,5 4939,v_6O4S2CpRB0A,opponent,what is the relationship between the two teams at both ends of the hemp rope,v_6O4S2CpRB0A,v_6O4S2CpRB0A_6,5 4940,v_b_c17BmZCCs,opponent,what is the relationship between the two teams in the competition,v_b_c17BmZCCs,v_b_c17BmZCCs_8,8 4941,v_pMtu7fOHdII,opponent,what is the relationship between the two teams participating in the competition,v_pMtu7fOHdII,v_pMtu7fOHdII_9,8 4942,v_dGT_KGb0gyw,partner,what is the relationship between two women,v_dGT_KGb0gyw,v_dGT_KGb0gyw_9,8 4943,v_ETbbYC0OhL0,competitor,what is the relationship between the two women in the ring,v_ETbbYC0OhL0,v_ETbbYC0OhL0_7,5 4944,v_iKclcQEl4zI,friend,what is the relationship between white short-sleeved girls and orange-shirt girls,v_iKclcQEl4zI,v_iKclcQEl4zI_9,8 4945,v_8A4cZXyDrkU,friend,what is the relationship between a white woman and a black man,v_8A4cZXyDrkU,v_8A4cZXyDrkU_10,5 4946,v_KXMZHfCwTO0,colleague,what is the relationship between the two working people,v_KXMZHfCwTO0,v_KXMZHfCwTO0_10,8 4947,v_qlK-c7hRqcA,teammate,what is the relationship between people who are yellow strips in the video,v_qlK-c7hRqcA,v_qlK-c7hRqcA_9,8 4948,v_46NS8dT15Hw,father and son,what is the relationship between two people wearing blue clothes,v_46NS8dT15Hw,v_46NS8dT15Hw_7,8 4949,v_5mWZY2XkWSQ,mother and daughter,what is the relationship between women and girls in the video,v_5mWZY2XkWSQ,v_5mWZY2XkWSQ_10,8 4950,v_54TIARWo-S8,classmate,what is the relationship between the person wearing yellow clothes and the person wearing pink clothes,v_54TIARWo-S8,v_54TIARWo-S8_6,5 4951,v_iQnnCZTl_7U,friend,what is the relationship between a young man and a man wearing glasses,v_iQnnCZTl_7U,v_iQnnCZTl_7U_6,8 4952,v_HDt5z5Y0opo,referee and player,what is the relationship between people with striped clothes and people without shirts,v_HDt5z5Y0opo,v_HDt5z5Y0opo_8,8 4953,v_m731tx8N5-Y,microphone,what is the right side of the bald person,v_m731tx8N5-Y,v_m731tx8N5-Y_4,1 4954,v_DIVaPURJHPo,table,what is the woman's right side when skipping,v_DIVaPURJHPo,v_DIVaPURJHPo_4,1 4955,v_3JBUWRKezUI,spider man,what is the right side of the hulk,v_3JBUWRKezUI,v_3JBUWRKezUI_4,1 4956,v_jWODw4vy45M,grass,what is the right side of the dog closest to the camera,v_jWODw4vy45M,v_jWODw4vy45M_4,1 4957,v_stdtUoog49I,row of cars,what is the right side of the parade,v_stdtUoog49I,v_stdtUoog49I_4,1 4958,v_6O4S2CpRB0A,hemp rope,what is the right side of the tug-of-war athlete's waist when tug-of-war,v_6O4S2CpRB0A,v_6O4S2CpRB0A_4,1 4959,v_Erje-PwY9hE,forest,what is the right side of the little girl with curly hair,v_Erje-PwY9hE,v_Erje-PwY9hE_4,1 4960,v_fh21bbDSVmA,stand,what is the right side of the man in a white shirt,v_fh21bbDSVmA,v_fh21bbDSVmA_4,1 4961,v_cCDffwsJvsY,fence,what is the right side of the person who makes the fire,v_cCDffwsJvsY,v_cCDffwsJvsY_4,1 4962,v_PJ7HOHdOdy4,green brush,what is the right hand side of the person wearing beige clothes,v_PJ7HOHdOdy4,v_PJ7HOHdOdy4_4,1 4963,v_FEOdYNR4gls,wall,what is the woman's right side,v_FEOdYNR4gls,v_FEOdYNR4gls_4,1 4964,v_5mWZY2XkWSQ,casement window,what is the right side of the girl in the video,v_5mWZY2XkWSQ,v_5mWZY2XkWSQ_4,1 4965,v_faqijFZWQlo,black hat man,what is the right side of the man who is wearing a white shirt,v_faqijFZWQlo,v_faqijFZWQlo_4,1 4966,v_-Fk62y-1WHo,bed,what is the right side of the score,v_-Fk62y-1WHo,v_-Fk62y-1WHo_4,1 4967,v_fEBM3nPMen8,much higher,what is the risk factor for diving,v_fEBM3nPMen8,v_fEBM3nPMen8_9,8 4968,v_LsVCwr6qPmY,security,what is the risk factor for ironing clothes,v_LsVCwr6qPmY,v_LsVCwr6qPmY_10,8 4969,v_0XTAq_xvquw,higher,what is the risk factor for making skis,v_0XTAq_xvquw,v_0XTAq_xvquw_10,8 4970,v_cAiig_569fI,lower,what is the risk factor for playing volleyball,v_cAiig_569fI,v_cAiig_569fI_9,8 4971,v_fhOmyyI0eQE,low grade,what is the risk factor for trimming trees,v_fhOmyyI0eQE,v_fhOmyyI0eQE_10,8 4972,v_uw9x69DT8_g,low,what is the risk factor for running on a treadmill,v_uw9x69DT8_g,v_uw9x69DT8_g_10,8 4973,v_teffBaLEZQg,lower,what is the risk factor for sports dance,v_teffBaLEZQg,v_teffBaLEZQg_10,8 4974,v_LL0uQO4q_wY,security,what is the risk factor for pushing the curling machine,v_LL0uQO4q_wY,v_LL0uQO4q_wY_10,8 4975,v_FADShG5lyB8,low,what is the risk factor for this fitness,v_FADShG5lyB8,v_FADShG5lyB8_9,8 4976,v_hGPCJb2g1tQ,lower,what is the risk factor for walking a wooden bridge,v_hGPCJb2g1tQ,v_hGPCJb2g1tQ_10,8 4977,v_UJGK_TKrl4E,lower,what is the risk factor for fencing,v_UJGK_TKrl4E,v_UJGK_TKrl4E_10,8 4978,v_FFMugev85IY,low,what is the risk factor for drumming,v_FFMugev85IY,v_FFMugev85IY_10,8 4979,v_2vrR_5u2buU,secondary,what is the risk factor for the pole vault,v_2vrR_5u2buU,v_2vrR_5u2buU_10,8 4980,v_fh21bbDSVmA,secondary,what is the risk factor for pommel horses,v_fh21bbDSVmA,v_fh21bbDSVmA_7,8 4981,v_C7yd6yEkxXE,higher,what is the risk factor for practicing car technology,v_C7yd6yEkxXE,v_C7yd6yEkxXE_7,8 4982,v_df5rlVZD0Zc,low grade,what is the risk factor for running,v_df5rlVZD0Zc,v_df5rlVZD0Zc_8,8 4983,v_m73Cod-PmMQ,much higher,what is the risk factor for skiing in the video,v_m73Cod-PmMQ,v_m73Cod-PmMQ_10,8 4984,v_H33jSILKmfI,lower,what is the risk factor for taekwondo,v_H33jSILKmfI,v_H33jSILKmfI_10,8 4985,v_0w4OkBenR_k,low,what is the risk factor of brush railing,v_0w4OkBenR_k,v_0w4OkBenR_k_10,8 4986,v_uJAL31wAD2A,much higher,what is the risk factor for drifting,v_uJAL31wAD2A,v_uJAL31wAD2A_9,8 4987,v_U2cCOj3LiAA,lower,what is the risk factor for fitness,v_U2cCOj3LiAA,v_U2cCOj3LiAA_10,8 4988,v_dFGS7YCDk3Y,secondary,what is the risk factor for the speed hydrofoil competition,v_dFGS7YCDk3Y,v_dFGS7YCDk3Y_10,8 4989,v_1YU4MSK80cQ,poisoning,what is the risk factor for parallel bars exercise,v_1YU4MSK80cQ,v_1YU4MSK80cQ_10,8 4990,v_u_vLZxgO9Rw,low,what is the risk factor for skipping this sport,v_u_vLZxgO9Rw,v_u_vLZxgO9Rw_10,8 4991,v_uLsq6gQXQPM,lower,what is the risk factor for the slide,v_uLsq6gQXQPM,v_uLsq6gQXQPM_10,8 4992,v_U2eN4DbVLfE,low,what is the risk factor for the wrist wrench,v_U2eN4DbVLfE,v_U2eN4DbVLfE_10,8 4993,v_LPRLV0eVgfY,security,what is the risk factor for swinging this game,v_LPRLV0eVgfY,v_LPRLV0eVgfY_10,8 4994,v_f6vZaMgqDvQ,secondary,what is the risk factor for the uneven bars,v_f6vZaMgqDvQ,v_f6vZaMgqDvQ_9,8 4995,v_I2XqSiNerwg,low,what is the risk factor of the program performed by white-haired people,v_I2XqSiNerwg,v_I2XqSiNerwg_10,8 4996,v_VpZzLvzU7_k,much much higher,what is the risk factor for this sport in the video,v_VpZzLvzU7_k,v_VpZzLvzU7_k_10,8 4997,v_vqyQF-1Zc_E,lower,what is the risk factor for this sport in the video,v_vqyQF-1Zc_E,v_vqyQF-1Zc_E_10,8 4998,v_hyMqGr0mOfA,lower,what is the risk factor for throwing darts,v_hyMqGr0mOfA,v_hyMqGr0mOfA_10,8 4999,v_Vxw3yFCV2iA,much higher,what is the risk factor for water skiing,v_Vxw3yFCV2iA,v_Vxw3yFCV2iA_9,8 5000,v_mkGUacg0GRc,much safer,how dangerous is the game of bumper cars,v_mkGUacg0GRc,v_mkGUacg0GRc_10,8 5001,v_M2Y2Cw2kwDo,much higher,what is the danger of diving,v_M2Y2Cw2kwDo,v_M2Y2Cw2kwDo_10,8 5002,v_snhPrCNubYA,much more dangerous,what is the danger of high jump,v_snhPrCNubYA,v_snhPrCNubYA_10,8 5003,v_mixxaL3Bdv8,much more dangerous,how dangerous is it to playing a bouncer in the video,v_mixxaL3Bdv8,v_mixxaL3Bdv8_10,8 5004,v_sEcXR5b8HyY,much safer,how dangerous is it to playing table tennis,v_sEcXR5b8HyY,v_sEcXR5b8HyY_10,8 5005,v_LzPppxSWYNY,security,what is the danger of the long jump sport,v_LzPppxSWYNY,v_LzPppxSWYNY_10,8 5006,v_J9KjpzKM8oc,secondary,how dangerous is this activity in the video,v_J9KjpzKM8oc,v_J9KjpzKM8oc_9,8 5007,v_w10Nr_wOh8g,removal of bubbles,what is the role of the brush,v_w10Nr_wOh8g,v_w10Nr_wOh8g_7,8 5008,v_CDncYtx6Lwc,nail polish,what is the role of the cotton swab,v_CDncYtx6Lwc,v_CDncYtx6Lwc_7,8 5009,v_C27eI-S1Vkw,fixed hair,what is the role of the operator's card issuance,v_C27eI-S1Vkw,v_C27eI-S1Vkw_8,8 5010,v_-vY2uUmv6Dk,protect,what is the role of the rope,v_-vY2uUmv6Dk,v_-vY2uUmv6Dk_8,8 5011,v_W97fdJ2Rn9g,natural lashes,what is the role of brush mascara,v_W97fdJ2Rn9g,v_W97fdJ2Rn9g_8,8 5012,v_OlR9S70AA74,control direction,what is the role of the sail in the video,v_OlR9S70AA74,v_OlR9S70AA74_8,8 5013,v_v6DdLg_Xnkg,high,what is the safety factor for wearing contact lenses,v_v6DdLg_Xnkg,v_v6DdLg_Xnkg_10,8 5014,v_7-UlUnaBjXU,secondary,what is the safety factor of riding a cross-country motorcycle,v_7-UlUnaBjXU,v_7-UlUnaBjXU_10,8 5015,v_V90CMuokf0c,secondary,what is the safety factor for boating,v_V90CMuokf0c,v_V90CMuokf0c_10,8 5016,v_-EIsT868Trw,secondary,what is the safety factor for bungee jumping,v_-EIsT868Trw,v_-EIsT868Trw_9,8 5017,v_iZT4XgzUHm4,low,what is the safety factor of the cycling competition in the video,v_iZT4XgzUHm4,v_iZT4XgzUHm4_10,8 5018,v_IIPKxzPjrWg,secondary,what is the safety factor for diving,v_IIPKxzPjrWg,v_IIPKxzPjrWg_9,8 5019,v_wCexKIuAj3A,lower,what is the safety factor of smoking,v_wCexKIuAj3A,v_wCexKIuAj3A_9,8 5020,v_IToczVhbOc0,much higher,what is the safety factor for tattoos,v_IToczVhbOc0,v_IToczVhbOc0_10,8 5021,v_CvbL36Y8hN0,danger,what is the safety factor for bungee jumping,v_CvbL36Y8hN0,v_CvbL36Y8hN0_8,8 5022,v_7LbBmVX33I4,higher,what is the hair safety factor,v_7LbBmVX33I4,v_7LbBmVX33I4_10,8 5023,v_e0yLhjXQIXI,secondary,what is the safety factor for flipping,v_e0yLhjXQIXI,v_e0yLhjXQIXI_9,8 5024,v_d09u-0k3LdE,danger,what is the safety factor of the hammer thrower in the video,v_d09u-0k3LdE,v_d09u-0k3LdE_7,8 5025,v_VfhDSTKBwgc,low,what is the safety factor for throwing a needle,v_VfhDSTKBwgc,v_VfhDSTKBwgc_7,8 5026,v_6xBh3vzhgo4,secondary,what is the safety factor of skateboarding,v_6xBh3vzhgo4,v_6xBh3vzhgo4_7,8 5027,v_iuc48VIWLJY,much higher,what is the safety factor of the ski apron,v_iuc48VIWLJY,v_iuc48VIWLJY_10,8 5028,v_iKclcQEl4zI,secondary,what is the safety factor of the flip,v_iKclcQEl4zI,v_iKclcQEl4zI_10,8 5029,v_V2UitlmX7Uo,high,what is the safety factor of taking the subway,v_V2UitlmX7Uo,v_V2UitlmX7Uo_10,8 5030,v_8_fjIZkNHms,low,what is the safety factor of a purple woman using a stick,v_8_fjIZkNHms,v_8_fjIZkNHms_9,8 5031,v_6VXQoPNphgI,secondary,what is the safety factor for this type of gymnastics,v_6VXQoPNphgI,v_6VXQoPNphgI_6,8 5032,v_vezvHLPR3P0,lower,what is the safety factor for throwing a hammer,v_vezvHLPR3P0,v_vezvHLPR3P0_7,8 5033,v_FkbpD1zWdPw,10,what is the score of the woman who first shot the arrow,v_FkbpD1zWdPw,v_FkbpD1zWdPw_10,7 5034,v_5LGh56euaZs,floating ice,what is in the video on the sea,v_5LGh56euaZs,v_5LGh56euaZs_4,1 5035,v_Mk7Yjq1U8OI,summer,which season is the video happening,v_Mk7Yjq1U8OI,v_Mk7Yjq1U8OI_6,8 5036,v_rApbE1VkEjE,winter,what is the season in which the events in the video occur,v_rApbE1VkEjE,v_rApbE1VkEjE_8,8 5037,v_IsV1n_kLpvs,lower,what is the safety factor of the trimming machine in the video,v_IsV1n_kLpvs,v_IsV1n_kLpvs_10,8 5038,v_4JmFOPoKluM,female,what is the gender of a child wearing a red trench coat,v_4JmFOPoKluM,v_4JmFOPoKluM_7,8 5039,v_RXT17X7lRoQ,female,what is the gender of the child sitting in the penultimate photo,v_RXT17X7lRoQ,v_RXT17X7lRoQ_8,8 5040,v_-p7aui3nAnc,male,what is the gender of a child holding a plastic bag,v_-p7aui3nAnc,v_-p7aui3nAnc_6,8 5041,v_hyMqGr0mOfA,male,what is the gender of the person who throws the dart,v_hyMqGr0mOfA,v_hyMqGr0mOfA_7,8 5042,v_TiQcZKml5Bs,male,what is the gender of a dog walking,v_TiQcZKml5Bs,v_TiQcZKml5Bs_7,8 5043,v_3LwQ2yq85LU,male,what is the gender of the fencing person,v_3LwQ2yq85LU,v_3LwQ2yq85LU_8,8 5044,v_cCimLg-8Dy4,female,what is the gender of a blindfolded girl who helps black clothes,v_cCimLg-8Dy4,v_cCimLg-8Dy4_6,8 5045,v_u0Dc0ZtudXY,female,what is the gender of people doing gymnastics,v_u0Dc0ZtudXY,v_u0Dc0ZtudXY_7,8 5046,v_4UdxT6Zmero,male,what is the gender of the person using the lawn mower in the video,v_4UdxT6Zmero,v_4UdxT6Zmero_6,8 5047,v_3JBUWRKezUI,male,what is the gender of a person who is dressed as batman,v_3JBUWRKezUI,v_3JBUWRKezUI_9,8 5048,v_s84PG-JfEwc,male,what is the gender of the person pulling the rope,v_s84PG-JfEwc,v_s84PG-JfEwc_8,8 5049,v_rApbE1VkEjE,male,what is the gender of a person wearing a yellow scorpion,v_rApbE1VkEjE,v_rApbE1VkEjE_7,8 5050,v_hG4VsZQQ2_c,male,what is the gender of zhangmutou,v_hG4VsZQQ2_c,v_hG4VsZQQ2_c_7,8 5051,v_K49OCArHjXI,male,what is the gender of a person who does not wear an ankle,v_K49OCArHjXI,v_K49OCArHjXI_8,8 5052,v_5UZ2ft8Y3sI,female,what is the gender of the news host,v_5UZ2ft8Y3sI,v_5UZ2ft8Y3sI_8,8 5053,v_1px5LTVIR3A,female,what is the gender of a person dancing in blue,v_1px5LTVIR3A,v_1px5LTVIR3A_10,8 5054,v_LPRLV0eVgfY,female,what is the gender of a person wearing crimson clothes,v_LPRLV0eVgfY,v_LPRLV0eVgfY_7,8 5055,v_GxDNGtoVjS0,male,what is the gender of a person wearing a gray coat,v_GxDNGtoVjS0,v_GxDNGtoVjS0_6,8 5056,v_HWFosaUWoSI,male,what is the gender of a person wearing white clothes,v_HWFosaUWoSI,v_HWFosaUWoSI_9,8 5057,v_GsPE54bMFwE,male,what is the gender of a person wearing white short sleeves,v_GsPE54bMFwE,v_GsPE54bMFwE_8,8 5058,v_sfbgZOHLkII,male,what is the gender of the person wearing white clothes in the video,v_sfbgZOHLkII,v_sfbgZOHLkII_9,8 5059,v_stdtUoog49I,male,what is the gender of the person riding the electric car,v_stdtUoog49I,v_stdtUoog49I_9,8 5060,v_VjMMwpgOCPo,female,what is the gender of a person wearing black and white clothes,v_VjMMwpgOCPo,v_VjMMwpgOCPo_7,8 5061,v_UJGK_TKrl4E,male,what is the gender of a person wearing a black suit and a black helmet,v_UJGK_TKrl4E,v_UJGK_TKrl4E_9,8 5062,v_zV08tITKFMM,male,what gender is the person wearing a golden coat,v_zV08tITKFMM,v_zV08tITKFMM_6,8 5063,v_QoRlOa6R1LY,female,what is the gender of a person wearing a gray helmet,v_QoRlOa6R1LY,v_QoRlOa6R1LY_6,8 5064,v_ryFSf08mrkA,male,what is the gender of the person wearing the mask,v_ryFSf08mrkA,v_ryFSf08mrkA_8,8 5065,v_TXSOSSGJYO0,female,what is the gender of the person wearing pink shoes in the video,v_TXSOSSGJYO0,v_TXSOSSGJYO0_6,8 5066,v_oflwFZj9PNY,male,what is the gender of a person wearing red and black clothes,v_oflwFZj9PNY,v_oflwFZj9PNY_10,8 5067,v_SB0dU5oDvaE,male,what is the gender of the person who started wearing red clothes at the beginning of the video,v_SB0dU5oDvaE,v_SB0dU5oDvaE_8,8 5068,v_MDWaKr7Gu5Q,male,what is the gender of a person wearing white clothes,v_MDWaKr7Gu5Q,v_MDWaKr7Gu5Q_9,8 5069,v_qGtUXGG78tM,male,what is the gender of a person wearing dark blue pants,v_qGtUXGG78tM,v_qGtUXGG78tM_6,8 5070,v_QPEAp7nf2Tk,female,what is the gender of a person wearing striped pants,v_QPEAp7nf2Tk,v_QPEAp7nf2Tk_6,8 5071,v_jhy6npIdn5o,male,what is the gender of the person who did not wear a hat at the beginning of the video,v_jhy6npIdn5o,v_jhy6npIdn5o_8,8 5072,v_3kxP8qOtym8,female,what is the gender of the sparring person,v_3kxP8qOtym8,v_3kxP8qOtym8_8,8 5073,v_0k6GFx2ZCg8,female,what is the gender of a person who makes a sandwich,v_0k6GFx2ZCg8,v_0k6GFx2ZCg8_8,8 5074,v_5LGh56euaZs,male,what is the gender of the person with goggles in the video,v_5LGh56euaZs,v_5LGh56euaZs_9,8 5075,v_hIHeMA1oRrY,male,what is the gender of the person who is sunscreen,v_hIHeMA1oRrY,v_hIHeMA1oRrY_8,8 5076,v_2uUNiV8xmEo,male,what is the gender of the fallen player,v_2uUNiV8xmEo,v_2uUNiV8xmEo_7,8 5077,v_qObVIn_GI10,white,what color is the juicer in the video,v_qObVIn_GI10,v_qObVIn_GI10_9,4 5078,v_7CM2OYr-Csw,white,what color is the line of the kite,v_7CM2OYr-Csw,v_7CM2OYr-Csw_8,4 5079,v_7BUr2cN8CLs,black,what color is the blond woman's clothes at the end of the video,v_7BUr2cN8CLs,v_7BUr2cN8CLs_7,4 5080,v_-pkfcMUIEMo,green,what color are the leaves shown,v_-pkfcMUIEMo,v_-pkfcMUIEMo_9,4 5081,v_HTSxgkgecS0,red,what color is the life jacket worn by people in the video,v_HTSxgkgecS0,v_HTSxgkgecS0_7,4 5082,v_nnEPsdA0080,black,what color is the life jacket worn by the person in white clothes,v_nnEPsdA0080,v_nnEPsdA0080_9,4 5083,v__fLhtWSCaSo,orange,what color is the lift truck,v__fLhtWSCaSo,v__fLhtWSCaSo_10,4 5084,v_wLXty2wzuJg,yellow,what color is the girl's swimsuit,v_wLXty2wzuJg,v_wLXty2wzuJg_9,4 5085,v_2k-qlZxc9l4,red,what color is the logo at the beginning of the video,v_2k-qlZxc9l4,v_2k-qlZxc9l4_8,4 5086,v_dU7jG8G5li0,yellow,what color is the lower layer of the cake,v_dU7jG8G5li0,v_dU7jG8G5li0_6,4 5087,v_dKJMP8EmZjw,red,what color is the man wearing,v_dKJMP8EmZjw,v_dKJMP8EmZjw_7,4 5088,v_i_LT0ef1n-Y,red,what color is the clothes of the man tongue out,v_i_LT0ef1n-Y,v_i_LT0ef1n-Y_10,4 5089,v_iuXjatyFcwo,black,what color is the hair of the man in blue shorts,v_iuXjatyFcwo,v_iuXjatyFcwo_7,4 5090,v_cQgP0-Id-p4,black,what color is the clothes the man wearing in the video,v_cQgP0-Id-p4,v_cQgP0-Id-p4_9,4 5091,v_V08Q-DbT0GQ,black,what color is the man's clothes wearing glasses in the video,v_V08Q-DbT0GQ,v_V08Q-DbT0GQ_7,4 5092,v__V62aT_K8Zw,white,what color is the beard of the man wearing a hat,v__V62aT_K8Zw,v__V62aT_K8Zw_9,4 5093,v_IDuoF51IMJ8,purple,what color is the clothes of the man with white hat,v_IDuoF51IMJ8,v_IDuoF51IMJ8_7,4 5094,v_V2UitlmX7Uo,black,what color is the hair of the man standing in the video,v_V2UitlmX7Uo,v_V2UitlmX7Uo_7,4 5095,v_QImpWj3AJcY,gray,what color is the pants of the person wearing a black jacket,v_QImpWj3AJcY,v_QImpWj3AJcY_8,4 5096,v_ZgdMnfTqblw,black,what color is the pants of the person wearing a black vest,v_ZgdMnfTqblw,v_ZgdMnfTqblw_7,4 5097,v_7BFbmEY3BNw,black,what color is the glasses of the man in red clothes,v_7BFbmEY3BNw,v_7BFbmEY3BNw_6,4 5098,v_UzmsAb15Bso,blue,what color is the pants of the man wearing sweatshirt in the video,v_UzmsAb15Bso,v_UzmsAb15Bso_7,4 5099,v_6O4S2CpRB0A,red,what color is the mark in the middle of the twine,v_6O4S2CpRB0A,v_6O4S2CpRB0A_10,4 5100,v_fLR-b-FDjlM,white,what color is the motorcycle,v_fLR-b-FDjlM,v_fLR-b-FDjlM_7,4 5101,v_4UdxT6Zmero,red,what color is the mower in the video,v_4UdxT6Zmero,v_4UdxT6Zmero_8,4 5102,v_CfqnHsp6olc,white,what color is the pants of the number 2 player,v_CfqnHsp6olc,v_CfqnHsp6olc_9,4 5103,v_zOI9SjQpc_Q,blue,what color is the pants of the number 9 player,v_zOI9SjQpc_Q,v_zOI9SjQpc_Q_7,4 5104,v_idkQqlwyff8,brown,what color are the glasses of the old man in blue clothes in the video,v_idkQqlwyff8,v_idkQqlwyff8_7,4 5105,v_g9lNpSAtHgI,white,what color is the spray paint in the video,v_g9lNpSAtHgI,v_g9lNpSAtHgI_9,4 5106,v_Aj5ncX5G_2w,blue,what color is the paint on the leg of the table,v_Aj5ncX5G_2w,v_Aj5ncX5G_2w_10,4 5107,v_hG4VsZQQ2_c,blue,what color are the pants of the wood cutter,v_hG4VsZQQ2_c,v_hG4VsZQQ2_c_8,4 5108,v_3LwQ2yq85LU,orange,what color is the parachutist's parachute,v_3LwQ2yq85LU,v_3LwQ2yq85LU_7,4 5109,v_W2eumNilwuI,blue,what color are the clothes of the person throwing the rope,v_W2eumNilwuI,v_W2eumNilwuI_7,4 5110,v_aH39BSM0-Ag,white,what color was the ball played by the man in the white ha,v_aH39BSM0-Ag,v_aH39BSM0-Ag_7,4 5111,v_yRQpolWhJ6A,black,what color is the clothes of the person wearing umbrellas,v_yRQpolWhJ6A,v_yRQpolWhJ6A_6,4 5112,v_vnZmsOgWs0o,blue,what color are the clothes of the person wearing orange pants,v_vnZmsOgWs0o,v_vnZmsOgWs0o_10,4 5113,v_R-hsYQNtnn0,black,what color is the coat of the man in the white shirt,v_R-hsYQNtnn0,v_R-hsYQNtnn0_9,4 5114,v_sk_pnoqXxhs,black,what color is the cameraman's clothes,v_sk_pnoqXxhs,v_sk_pnoqXxhs_8,4 5115,v_AsdsR27UnJ0,blue,what color are the clothes of the man with the toothbrush in his hand,v_AsdsR27UnJ0,v_AsdsR27UnJ0_6,4 5116,v_G_rVqf_hwXw,golden,what color is the hair of the person in a dark gray coat,v_G_rVqf_hwXw,v_G_rVqf_hwXw_10,4 5117,v_qGLRri_c6n8,golden,what color is the hair of the person wearing the pink coat,v_qGLRri_c6n8,v_qGLRri_c6n8_9,4 5118,v_QPEAp7nf2Tk,black,what color is the hair of the person in striped pants,v_QPEAp7nf2Tk,v_QPEAp7nf2Tk_7,4 5119,v_ZsVfa3JIUNU,black,what color is the hair of the person holding the microphone,v_ZsVfa3JIUNU,v_ZsVfa3JIUNU_7,4 5120,v_2ShsRSJ9cqE,gray,what color is the hat of the person in the welding,v_2ShsRSJ9cqE,v_2ShsRSJ9cqE_7,4 5121,v_QX5e5Mla660,black,what color are the pants of the person in the green coat,v_QX5e5Mla660,v_QX5e5Mla660_9,4 5122,v_nhQTxZlzG1Q,black,what color are the shoes of the person in black,v_nhQTxZlzG1Q,v_nhQTxZlzG1Q_10,4 5123,v_03c6QhTMDSs,black,what color are the shoes of a man in striped clothes,v_03c6QhTMDSs,v_03c6QhTMDSs_8,4 5124,v_PFeerDZbGn8,yellow,what color is the dog's plate,v_PFeerDZbGn8,v_PFeerDZbGn8_6,4 5125,v_y0ca-LbQErY,black,what color is the radio in the video,v_y0ca-LbQErY,v_y0ca-LbQErY_10,4 5126,v_iqyc2JM0uIU,black,what color is the bracelet of the person in the red,v_iqyc2JM0uIU,v_iqyc2JM0uIU_7,4 5127,v_pVuuVHA3RVw,yellow,what color is the hat of the man in red in the video,v_pVuuVHA3RVw,v_pVuuVHA3RVw_10,4 5128,v_Co_cpZWbzFk,red,what color is the roof of the house in the video,v_Co_cpZWbzFk,v_Co_cpZWbzFk_7,4 5129,v_DIVaPURJHPo,colorful,what color is the rope that fixes the goal,v_DIVaPURJHPo,v_DIVaPURJHPo_7,4 5130,v_amgpZtvd9h0,blue,what color is the rubber band on the girl's hair,v_amgpZtvd9h0,v_amgpZtvd9h0_8,4 5131,v_vqyQF-1Zc_E,red,what color is the rubber band that the girl in black is sitting on,v_vqyQF-1Zc_E,v_vqyQF-1Zc_E_6,4 5132,v_dN8LBey17O8,yellow,what color is the ruler,v_dN8LBey17O8,v_dN8LBey17O8_8,4 5133,v_OlR9S70AA74,black and white,what color is the sailboat with green pants,v_OlR9S70AA74,v_OlR9S70AA74_9,4 5134,v_dFGS7YCDk3Y,gray,what color are the sails of the sailboat,v_dFGS7YCDk3Y,v_dFGS7YCDk3Y_6,4 5135,v_0k6GFx2ZCg8,red,what color is the sandwich tray,v_0k6GFx2ZCg8,v_0k6GFx2ZCg8_9,4 5136,v_ivAvKRQQy1Q,black,what color is the saucepan used by the person in white,v_ivAvKRQQy1Q,v_ivAvKRQQy1Q_7,4 5137,v_cK0-WcGXacQ,red,what color are the discus thrower's shoes,v_cK0-WcGXacQ,v_cK0-WcGXacQ_10,4 5138,v_oflwFZj9PNY,green,what color are the shoes of the person in red and black,v_oflwFZj9PNY,v_oflwFZj9PNY_8,4 5139,v_df5rlVZD0Zc,black,what color are the shorts of the man in the red coat,v_df5rlVZD0Zc,v_df5rlVZD0Zc_6,4 5140,v_vSv1qMMt4Bk,blue,what color is the shovel of the man who shovels snow,v_vSv1qMMt4Bk,v_vSv1qMMt4Bk_6,4 5141,v_7-UlUnaBjXU,blue,what color is the field for cross-country biking,v_7-UlUnaBjXU,v_7-UlUnaBjXU_7,4 5142,v_1vTHJMMPZN0,green,what color is the skateboard of the last surfer in the video,v_1vTHJMMPZN0,v_1vTHJMMPZN0_7,4 5143,v_hxErUs42bBI,black,what color hat does the skier wear,v_hxErUs42bBI,v_hxErUs42bBI_9,4 5144,v_huFOZ2BiM_k,white,what color is the pommel horse's sports equipment,v_huFOZ2BiM_k,v_huFOZ2BiM_k_8,4 5145,v_Vxw3yFCV2iA,red,what color is the stick of the person wearing black gloves,v_Vxw3yFCV2iA,v_Vxw3yFCV2iA_7,4 5146,v_fEBM3nPMen8,black,what color are the diving suits,v_fEBM3nPMen8,v_fEBM3nPMen8_10,4 5147,v_AQ3eFWxZ67U,red and white,what color is the sunshade in the video,v_AQ3eFWxZ67U,v_AQ3eFWxZ67U_10,4 5148,v_Df7AnfIEhYw,blue,what color is the surface of the air cushion,v_Df7AnfIEhYw,v_Df7AnfIEhYw_7,4 5149,v__jIXs7AFTxw,white,what color is the lamp in the video,v__jIXs7AFTxw,v__jIXs7AFTxw_9,4 5150,v_7F-mVWMP2vM,white,what color is the thread woven in the video,v_7F-mVWMP2vM,v_7F-mVWMP2vM_6,4 5151,v_I2XqSiNerwg,black,what color are the clothes of the three men with the white lights on their backs,v_I2XqSiNerwg,v_I2XqSiNerwg_8,4 5152,v_wCexKIuAj3A,purple,what color is the tie of the person in a black suit,v_wCexKIuAj3A,v_wCexKIuAj3A_8,4 5153,v_7vcihMnmssI,red,what color are the tools used to punch holes,v_7vcihMnmssI,v_7vcihMnmssI_7,4 5154,v_0q9yZPTBbus,white,what color is the towel on the head of the person in red,v_0q9yZPTBbus,v_0q9yZPTBbus_9,4 5155,v_iixZLnyLuN8,blue,what color is the toy in the black hair girl's hand,v_iixZLnyLuN8,v_iixZLnyLuN8_7,4 5156,v_DOI6tsATsE4,red,what color is the trademark of the person in black,v_DOI6tsATsE4,v_DOI6tsATsE4_8,4 5157,v_f2DS_AVorrY,black,what color are the underpants worn by the athletes,v_f2DS_AVorrY,v_f2DS_AVorrY_7,4 5158,v_8tCRp3NKtkI,black,what color is the watch of the blond person,v_8tCRp3NKtkI,v_8tCRp3NKtkI_7,4 5159,v_WNgI2qBvPrY,white,what color are the wings on the little girl's back,v_WNgI2qBvPrY,v_WNgI2qBvPrY_8,4 5160,v_xuvp0jKMqRU,yellow,what color is the hair of the woman in red,v_xuvp0jKMqRU,v_xuvp0jKMqRU_8,4 5161,v_bYxVbXzQToI,red,what color is the clothes worn by the lady with short curls,v_bYxVbXzQToI,v_bYxVbXzQToI_6,4 5162,v_iuc48VIWLJY,black,what color are the purple woman's pants,v_iuc48VIWLJY,v_iuc48VIWLJY_7,4 5163,v_C5SXR9nMY3I,purple,what color is the wrapping paper,v_C5SXR9nMY3I,v_C5SXR9nMY3I_7,4 5164,v_6Xsfwn5M6qs,white,what color is the wrist guard on the hands of a man in blue pants,v_6Xsfwn5M6qs,v_6Xsfwn5M6qs_6,4 5165,v_iQnnCZTl_7U,white,what color are the young man's clothes,v_iQnnCZTl_7U,v_iQnnCZTl_7U_7,4 5166,v_28WDlVOgslg,pink,what color is nails of the girl in the pink,v_28WDlVOgslg,v_28WDlVOgslg_7,4 5167,v_MQ9Ojge7CyA,red,what color is pants of the person,v_MQ9Ojge7CyA,v_MQ9Ojge7CyA_6,4 5168,v_eVkp83uGf3Y,green,what color is the pants of the man wearing in the red vest,v_eVkp83uGf3Y,v_eVkp83uGf3Y_10,4 5169,v_54TIARWo-S8,black,what color is the pants of the boy with the pink dress wear,v_54TIARWo-S8,v_54TIARWo-S8_10,4 5170,v_LsVCwr6qPmY,black,what color is pants of the person in blue,v_LsVCwr6qPmY,v_LsVCwr6qPmY_7,4 5171,v_12Nafz_Yet4,white,what color is the pants of the person in red and black,v_12Nafz_Yet4,v_12Nafz_Yet4_7,4 5172,v_lOZ9bfzq89o,red,what color is the pants of the athlete in green,v_lOZ9bfzq89o,v_lOZ9bfzq89o_7,4 5173,v_Db9VWkgMpbE,black,what color is the pants does the woman wear in the video,v_Db9VWkgMpbE,v_Db9VWkgMpbE_7,4 5174,v_1lwG-y_QCkc,black,what color is the pants of the man in the hat,v_1lwG-y_QCkc,v_1lwG-y_QCkc_7,4 5175,v_EQWdo0FcKAo,white,what color is the first dancer,v_EQWdo0FcKAo,v_EQWdo0FcKAo_8,4 5176,v_3nSOFmmA7FU,white,what color is the shoes of the hula hoop man,v_3nSOFmmA7FU,v_3nSOFmmA7FU_9,4 5177,v_26U3SkeZU6M,purple,what color is the shoes of the person in blue,v_26U3SkeZU6M,v_26U3SkeZU6M_9,4 5178,v_98ukqD62X5s,white,what color is the shoes of the person in red,v_98ukqD62X5s,v_98ukqD62X5s_9,4 5179,v_k--dW53UQWs,black,what color is the shoes of the bodybuilder,v_k--dW53UQWs,v_k--dW53UQWs_9,4 5180,v_xizEiQZfJa4,white,what color is the socks of the person in white,v_xizEiQZfJa4,v_xizEiQZfJa4_7,4 5181,v_FWZ6wgaJ_L4,green,what color towel is hanging on the faucet,v_FWZ6wgaJ_L4,v_FWZ6wgaJ_L4_9,4 5182,v_dHKeNK1uWUg,gray,what color is the pants does the person in red wear,v_dHKeNK1uWUg,v_dHKeNK1uWUg_8,4 5183,v_dskswWtslKc,black,what color is the pants of the surfer man,v_dskswWtslKc,v_dskswWtslKc_9,4 5184,v_96vBhCFBbQk,silver,what color is the watch of the person in blue,v_96vBhCFBbQk,v_96vBhCFBbQk_7,4 5185,v_fe4r2-Y8k1U,red,what color is the chair of the person in the black coat,v_fe4r2-Y8k1U,v_fe4r2-Y8k1U_7,4 5186,v_P2xT7dlyX8Y,black,what color are the clothes of the person playing the violins,v_P2xT7dlyX8Y,v_P2xT7dlyX8Y_6,4 5187,v_9k19UUJtldg,black,what color is the pants of the man in red,v_9k19UUJtldg,v_9k19UUJtldg_10,4 5188,v_EBw5-KVV_PU,ballet,what kind of dance are the woman doing,v_EBw5-KVV_PU,v_EBw5-KVV_PU_6,5 5189,v_qlK-c7hRqcA,squat,what does the man with the striped shirt do when he arrived near the tire,v_qlK-c7hRqcA,v_qlK-c7hRqcA_5,2 5190,v_eLh51DwDp-E,take off shoes,what does woman wearing black clothes do after wearing shoes,v_eLh51DwDp-E,v_eLh51DwDp-E_5,2 5191,v_ETbbYC0OhL0,lift her up,what did purple hair women do before falling down on purple dress woman,v_ETbbYC0OhL0,v_ETbbYC0OhL0_5,2 5192,v_-8SgY4vW4xM,shaving cutter head,what did she change when she shaved her dog's body in the video,v_-8SgY4vW4xM,v_-8SgY4vW4xM_8,5 5193,v_-8SgY4vW4xM,scissors,what thing is the she use to repair the dog's hairstyle in the video,v_-8SgY4vW4xM,v_-8SgY4vW4xM_7,5 5194,v_-8SgY4vW4xM,carding,what did she do to pick up the dog's tail in the video,v_-8SgY4vW4xM,v_-8SgY4vW4xM_6,8 5195,v_4JmFOPoKluM,take off long rope,what did the people do after they won the tug-of-war,v_4JmFOPoKluM,v_4JmFOPoKluM_9,8 5196,v_mLFjww64sX8,round to other side,what happened when the barber raised the head of the bald person,v_mLFjww64sX8,v_mLFjww64sX8_5,2 5197,v_8tCRp3NKtkI,jump,what does the blond man do after he steps on a grid,v_8tCRp3NKtkI,v_8tCRp3NKtkI_8,8 5198,v_KPRymTsPCC0,stop,what did the boy do when seeing the building,v_KPRymTsPCC0,v_KPRymTsPCC0_5,2 5199,v_s6fEIuHPJ4Y,hand ring,what does the first player wear on his left hand,v_s6fEIuHPJ4Y,v_s6fEIuHPJ4Y_9,5 5200,v_Dd5yTxwKzXw,photo display,what does the girl do after she finished her hair in the video,v_Dd5yTxwKzXw,v_Dd5yTxwKzXw_5,2 5201,v_eQwLUJ3P7wI,pull dog down,what does the long hair man do before the video ended,v_eQwLUJ3P7wI,v_eQwLUJ3P7wI_5,2 5202,v_FtRGOgg0Qh8,lying on ground,what does he do after the bike ride,v_FtRGOgg0Qh8,v_FtRGOgg0Qh8_5,2 5203,v_eJc8bebOF2A,two circles of rotation,what does the man do before the shot put,v_eJc8bebOF2A,v_eJc8bebOF2A_5,2 5204,v_ej_fSoVO0R8,rolling skin,what does this person do before putting a cake on an orange skin,v_ej_fSoVO0R8,v_ej_fSoVO0R8_5,2 5205,v_qiTQ02NDSlQ,feed bread,what does the person in the blue jacket do after he took the bread,v_qiTQ02NDSlQ,v_qiTQ02NDSlQ_5,2 5206,v_Ko7Nt8UDP4Q,hat,what did the man in yellow clothes wear on his head,v_Ko7Nt8UDP4Q,v_Ko7Nt8UDP4Q_8,5 5207,v_eKdtOKqLMRE,drumstick,what did the man throw away after the show,v_eKdtOKqLMRE,v_eKdtOKqLMRE_8,5 5208,v_Y7aacWy3WDo,earring,what does the person wearing a floral dress wear,v_Y7aacWy3WDo,v_Y7aacWy3WDo_10,5 5209,v_oMtB-y49Yo8,glasses,what does the person in blue wear,v_oMtB-y49Yo8,v_oMtB-y49Yo8_10,5 5210,v_Ko7Nt8UDP4Q,pocket knife,what does the person who opened the refrigerator take with his right hand when he danced,v_Ko7Nt8UDP4Q,v_Ko7Nt8UDP4Q_6,5 5211,v_EQrcCmgraa8,photo,what's on the wall behind the man in the white shoes,v_EQrcCmgraa8,v_EQrcCmgraa8_4,1 5212,v_Ar6TcWqwK-A,make face,what did the person in the video do after turning on the lights,v_Ar6TcWqwK-A,v_Ar6TcWqwK-A_8,8 5213,v_eKdtOKqLMRE,take off your shirt,what did the person in the video do before he go on the stage,v_eKdtOKqLMRE,v_eKdtOKqLMRE_5,2 5214,v_MDsJa6Yitwc,smile,what does the person wearing a gray dress touch when he touched the lens,v_MDsJa6Yitwc,v_MDsJa6Yitwc_6,8 5215,v_QIUxLD27NuI,watch,what does the person wearing green clothes wear in their left hand,v_QIUxLD27NuI,v_QIUxLD27NuI_9,5 5216,v_fvEaC-fTR4A,appearance of name,what happened to the screen after the table football match ended in the video,v_fvEaC-fTR4A,v_fvEaC-fTR4A_5,2 5217,v_eVkp83uGf3Y,circle,what does the red vest man do before throwing the hammer,v_eVkp83uGf3Y,v_eVkp83uGf3Y_5,2 5218,v__2txWbQfJrY,press ceramic tile,what does the short sleeves person do after laying down the tiles,v__2txWbQfJrY,v__2txWbQfJrY_7,8 5219,v_UzmsAb15Bso,flexibility," 5220,what are the benefits of skateboarding",v_UzmsAb15Bso,v_UzmsAb15Bso_9,8 5221,v_6O4S2CpRB0A,team consciousness," 5222,what are the benefits of the tug of war",v_6O4S2CpRB0A,v_6O4S2CpRB0A_9,8 5223,v_Ar6TcWqwK-A,throw away tissue,what happened after the person wiped the cup in the video,v_Ar6TcWqwK-A,v_Ar6TcWqwK-A_5,2 5224,v_5oyenoaVB-w,scarf,what does the person at the beginning of the video wear after wearing the car,v_5oyenoaVB-w,v_5oyenoaVB-w_10,5 5225,v_7rwDYzqfGgU,jump,what does the woman in the center do,v_7rwDYzqfGgU,v_7rwDYzqfGgU_9,8 5226,v_ej_fSoVO0R8,basketball,what shape does the woman make the cake,v_ej_fSoVO0R8,v_ej_fSoVO0R8_8,5 5227,v_FPf7mAgdy0I,hairpin,what does the blond woman take before the hair,v_FPf7mAgdy0I,v_FPf7mAgdy0I_5,2 5228,v__fLhtWSCaSo,branches and leaves fell,what happened after they pruned leaves in the video,v__fLhtWSCaSo,v__fLhtWSCaSo_5,2 5229,v_FmfAB-ppHBs,release white smoke,what do they do after they had cigarettes,v_FmfAB-ppHBs,v_FmfAB-ppHBs_5,2 5230,v_elD1P_1oiUk,rugby,what does the person throw at the man in light blue shorts before drifting,v_elD1P_1oiUk,v_elD1P_1oiUk_5,2 5231,v_amgpZtvd9h0,ring,what does the woman with the hairpin have on her hand,v_amgpZtvd9h0,v_amgpZtvd9h0_7,5 5232,v_UNKf15ALDh8,squat,what does the long hair woman do when planting trees,v_UNKf15ALDh8,v_UNKf15ALDh8_7,8 5233,v_z6l9utYlIrw,prayers,what does the man in red do,v_z6l9utYlIrw,v_z6l9utYlIrw_10,8 5234,v_H_IfIsKQ3Zw,make phone,what does the person in white clothes do at the beginning,v_H_IfIsKQ3Zw,v_H_IfIsKQ3Zw_1,0 5235,v_4MwnHtlaEUY,watch,what does the person in the video use to see the time,v_4MwnHtlaEUY,v_4MwnHtlaEUY_9,5 5236,v_k-I4zLbgdpM,gymnastics suit,what clothes do two girls wear,v_k-I4zLbgdpM,v_k-I4zLbgdpM_9,5 5237,v_Jdu5AqaWfz8,glove,what does the staff have on their hand,v_Jdu5AqaWfz8,v_Jdu5AqaWfz8_9,5 5238,v_6LsvBNqJuJY,glove,what does the tattoo artist have on his hand,v_6LsvBNqJuJY,v_6LsvBNqJuJY_6,5 5239,v_8IrulONeC28,right handed rod,what do two men in the video have in common,v_8IrulONeC28,v_8IrulONeC28_8,8 5240,v__fLhtWSCaSo,lift truck,what do they take in the video,v__fLhtWSCaSo,v__fLhtWSCaSo_6,5 5241,v_EQrcCmgraa8,unload barbell,what does the woman do before putting the barbell on the shelf,v_EQrcCmgraa8,v_EQrcCmgraa8_5,2 5242,v_1dDAcUliXrQ,feathered pat,what's in the hands of those in pink,v_1dDAcUliXrQ,v_1dDAcUliXrQ_4,1 5243,v_utgRhyBvtRU,physical energy," 5244,what are the benefits of playing volleyball",v_utgRhyBvtRU,v_utgRhyBvtRU_10,8 5245,v_k--dW53UQWs,treadmill,what kind of equipment does the fitness person have on the left,v_k--dW53UQWs,v_k--dW53UQWs_4,1 5246,v_eQ0sW4hJ9zU,plug igniter,what do you need to do before you start a new mower,v_eQ0sW4hJ9zU,v_eQ0sW4hJ9zU_5,2 5247,v_-pK2JheWido,ski,what does he tread on while skiing,v_-pK2JheWido,v_-pK2JheWido_9,6 5248,v_a_EqAwUOxpM,pen,what do you use to paint the nail in the video,v_a_EqAwUOxpM,v_a_EqAwUOxpM_10,5 5249,v_ECZb_tQZ4Pg,suit,what clothes do the girls in glasses wear,v_ECZb_tQZ4Pg,v_ECZb_tQZ4Pg_9,5 5250,v_RgiVa9GMYxE,ring,what does the person with the phone have on his hand ,v_RgiVa9GMYxE,v_RgiVa9GMYxE_9,8 5251,v_s84PG-JfEwc,glove,what does the person with the rope have on his hand,v_s84PG-JfEwc,v_s84PG-JfEwc_9,5 5252,v_k3WPc9HmtLM,glove,what was on the hands of the person who was sitting at beginning,v_k3WPc9HmtLM,v_k3WPc9HmtLM_9,5 5253,v_rrpEOrMpBuE,hat,what does the person with the camel wear on his head,v_rrpEOrMpBuE,v_rrpEOrMpBuE_9,5 5254,v_ryFSf08mrkA,headset,what does the person wearing a mask wear on his head,v_ryFSf08mrkA,v_ryFSf08mrkA_9,5 5255,v_0w4OkBenR_k,straw hat,what does the person in purple wear on his head,v_0w4OkBenR_k,v_0w4OkBenR_k_9,5 5256,v_3kxP8qOtym8,hair hoop,what's on the head of the trainer,v_3kxP8qOtym8,v_3kxP8qOtym8_6,5 5257,v_S6Sg1l78IW0,watch,what does the standing woman have on her left hand,v_S6Sg1l78IW0,v_S6Sg1l78IW0_9,5 5258,v_rnI9vGr5V1k,wrist watch,what does the person wearing a plaid dress wear on his right hand,v_rnI9vGr5V1k,v_rnI9vGr5V1k_9,5 5259,v_b6QSzGwI9m4,wrist watch,what does the person wearing sunglasses wear on his wrist,v_b6QSzGwI9m4,v_b6QSzGwI9m4_8,5 5260,v_Em4ekFj4XIs,training skills,what does the blue shoe trainer do before the dog was trained to take the frisbee,v_Em4ekFj4XIs,v_Em4ekFj4XIs_5,2 5261,v_uty4eGb_vvU,physical energy,what are the benefits of taichi sword,v_uty4eGb_vvU,v_uty4eGb_vvU_10,8 5262,v_7OcxT66BxX0,harmonica,what does the man with the black hat have on his left hand,v_7OcxT66BxX0,v_7OcxT66BxX0_10,5 5263,v_ut1AoOzqL4k,plastic track,what is the foot of a man in a black vest when he ran,v_ut1AoOzqL4k,v_ut1AoOzqL4k_4,1 5264,v_kistIwzeQOU,flat shovel,what's in the right hand when the man in white is putting up the wall cloth,v_kistIwzeQOU,v_kistIwzeQOU_8,5 5265,v_bYxVbXzQToI,enjoy,what is the expression of someone wearing a white jacket while playing the guitar,v_bYxVbXzQToI,v_bYxVbXzQToI_8,8 5266,v_8AUTKSqcmiM,physical exercise,what's the benefit of archery,v_8AUTKSqcmiM,v_8AUTKSqcmiM_9,8 5267,v_J9KjpzKM8oc,life jacket,what is wearing on all the people wearing helmets in the video,v_J9KjpzKM8oc,v_J9KjpzKM8oc_8,5 5268,v_iAes5SVj_Fg,physical exercise,what's the benefit of the competition,v_iAes5SVj_Fg,v_iAes5SVj_Fg_9,8 5269,v_7-UlUnaBjXU,accelerate,what do you need to go uphill,v_7-UlUnaBjXU,v_7-UlUnaBjXU_9,8 5270,v_KXMZHfCwTO0,pine soil,what does the bald man do,v_KXMZHfCwTO0,v_KXMZHfCwTO0_1,0 5271,v_f1d7_TKXNYQ,movement of hand,what did the athlete do after throwing the javelin,v_f1d7_TKXNYQ,v_f1d7_TKXNYQ_10,8 5272,v_JvPVYSb_5o8,wristwatch,what does the athlete wear on his left hand,v_JvPVYSb_5o8,v_JvPVYSb_5o8_9,5 5273,v_kMtjk1KFvXQ,protective pad,what's under the balance beam,v_kMtjk1KFvXQ,v_kMtjk1KFvXQ_8,5 5274,v_7F-mVWMP2vM,hands on ability,what are the benefits of weaving,v_7F-mVWMP2vM,v_7F-mVWMP2vM_9,8 5275,v_7F-mVWMP2vM,needle,what are the needs of the weaving,v_7F-mVWMP2vM,v_7F-mVWMP2vM_10,5 5276,v_Dd5yTxwKzXw,curly,what hairstyle does the girl do in the video,v_Dd5yTxwKzXw,v_Dd5yTxwKzXw_7,8 5277,v_6Xsfwn5M6qs,physical exercise,what are the benefits of parallel bars gymnastics,v_6Xsfwn5M6qs,v_6Xsfwn5M6qs_9,8 5278,v_DUi-hLMpQQo,scissors,what does the person who wears blue in the video do,v_DUi-hLMpQQo,v_DUi-hLMpQQo_6,5 5279,v_otMw5GJWYWs,obstacle,what does the person in black cross over,v_otMw5GJWYWs,v_otMw5GJWYWs_8,5 5280,v_kMtjk1KFvXQ,vaulting horse,what does the person in blue behind the girl do,v_kMtjk1KFvXQ,v_kMtjk1KFvXQ_10,8 5281,v_kTqt7ry3eVM,podium,what are the person standing in the red swimsuit when they receive the prize,v_kTqt7ry3eVM,v_kTqt7ry3eVM_4,1 5282,v_lfbspF18Wrw,yellow ironing cloth,what does this person take when he take out of soda dry,v_lfbspF18Wrw,v_lfbspF18Wrw_9,5 5283,v_4YF9R3Sz2bA,glove,what does the person on the right side of the person who shot the video wear,v_4YF9R3Sz2bA,v_4YF9R3Sz2bA_8,5 5284,v_K49OCArHjXI,scarf,what does a flipper wear on his head,v_K49OCArHjXI,v_K49OCArHjXI_9,5 5285,v_Pr5K2Jh2X94,achievement is effective,what does the referee mean when he raises the white flag,v_Pr5K2Jh2X94,v_Pr5K2Jh2X94_10,8 5286,v_i_LT0ef1n-Y,coordination,what are the benefits of skateboarding,v_i_LT0ef1n-Y,v_i_LT0ef1n-Y_9,8 5287,v_8A4cZXyDrkU,lifting jack,what do he need to use the roof when changing wheel,v_8A4cZXyDrkU,v_8A4cZXyDrkU_9,5 5288,v_8_fjIZkNHms,man in green,what is the right side of the purple woman in the video,v_8_fjIZkNHms,v_8_fjIZkNHms_4,1 5289,v_KMK3_VeODlk,avoid opponents ball,what does the woman in a pink tank do in addition to playing,v_KMK3_VeODlk,v_KMK3_VeODlk_10,8 5290,v_eLh51DwDp-E,wear ballet shoes,what does this video teach us,v_eLh51DwDp-E,v_eLh51DwDp-E_10,8 5291,v_4z0meF-_b1I,glasses,what is wearing on the face of the person wearing a hat at the beginning of the video,v_4z0meF-_b1I,v_4z0meF-_b1I_8,5 5292,v_sfbgZOHLkII,desert,what kind of environment does a camel live in,v_sfbgZOHLkII,v_sfbgZOHLkII_10,6 5293,v_fh21bbDSVmA,pommeled horse,what kind of gymnastics does the man do,v_fh21bbDSVmA,v_fh21bbDSVmA_6,8 5294,v_1IbkFHNA7fg,clap hands,what happens to the person in a suit after the brick,v_1IbkFHNA7fg,v_1IbkFHNA7fg_5,2 5295,v_BD9CAqD1Yf8,play volleyball,what happens after the group of people at the beginning of the video appeared,v_BD9CAqD1Yf8,v_BD9CAqD1Yf8_5,2 5296,v_BdRH3lpopLQ,hold together,what happens after a team played the ball,v_BdRH3lpopLQ,v_BdRH3lpopLQ_5,2 5297,v_p54LLMnyg54,continue down,what happens after wiping a window,v_p54LLMnyg54,v_p54LLMnyg54_5,2 5298,v_N5Dt3ycaun4,embrace,what happens after boxing,v_N5Dt3ycaun4,v_N5Dt3ycaun4_5,2 5299,v_KT8DUDFc3Xg,shoeshine surface,what happens when the red man wiped the inside of his shoe,v_KT8DUDFc3Xg,v_KT8DUDFc3Xg_5,2 5300,v_hGPCJb2g1tQ,black container,what happens after digging pits in people wearing gray clothes and hats,v_hGPCJb2g1tQ,v_hGPCJb2g1tQ_5,2 5301,v_MQ9Ojge7CyA,rest,what happens after diving,v_MQ9Ojge7CyA,v_MQ9Ojge7CyA_5,2 5302,v_FaP7unySMOs,put cup down,what happens after drinking water,v_FaP7unySMOs,v_FaP7unySMOs_5,2 5303,v_1494UwmvAJM,vertical thumb,what happens after eating,v_1494UwmvAJM,v_1494UwmvAJM_5,2 5304,v_HJWwqjLf1I4,swimming,what happens after everyone in the video got into the water,v_HJWwqjLf1I4,v_HJWwqjLf1I4_5,2 5305,v_KXcVYfMuUGw,dog catches the plate,what happens after the man threw out the plate,v_KXcVYfMuUGw,v_KXcVYfMuUGw_5,2 5306,v_nGKc2t-NMYc,then training,what happens to purple clothes after practicing horizontal bar gymnastics,v_nGKc2t-NMYc,v_nGKc2t-NMYc_5,2 5307,v_wnNiWoJxfSQ,running,what happens after hitting the ball,v_wnNiWoJxfSQ,v_wnNiWoJxfSQ_5,2 5308,v_30hcRe-5_3M,clapping,what happens after playing football,v_30hcRe-5_3M,v_30hcRe-5_3M_5,2 5309,v_XCfrjEJkl3M,listen to coach,what happens after playing basketball,v_XCfrjEJkl3M,v_XCfrjEJkl3M_5,2 5310,v_MonWdYi3a0I,bathe dog,what happens after using the computer,v_MonWdYi3a0I,v_MonWdYi3a0I_5,2 5311,v_X_K7Aa3Aa-E,chat,what happens after playing the guitar,v_X_K7Aa3Aa-E,v_X_K7Aa3Aa-E_5,2 5312,v_f8SWWURHV1M,twist and a smile,what happens after playing the piano,v_f8SWWURHV1M,v_f8SWWURHV1M_5,2 5313,v_Feq-2NIDl94,pinch with perturbed,what happens after putting the note in the bow,v_Feq-2NIDl94,v_Feq-2NIDl94_5,2 5314,v_zEttEkAdHts,fixed with adhesive paper,what happens after placing the banknote on the gift,v_zEttEkAdHts,v_zEttEkAdHts_5,2 5315,v_F7K2oT7ADkk,wash clothes,what happens after putting the soap back on the stage,v_F7K2oT7ADkk,v_F7K2oT7ADkk_5,2 5316,v_9ZVWD0ZKXZg,boy comes down,what happens after rock climbing,v_9ZVWD0ZKXZg,v_9ZVWD0ZKXZg_5,2 5317,v_vSv1qMMt4Bk,snow fall,what happens after shoveling snow,v_vSv1qMMt4Bk,v_vSv1qMMt4Bk_5,2 5318,v_wh6P2C2avqc,do bike ride,what happens after sitting on fitness equipment,v_wh6P2C2avqc,v_wh6P2C2avqc_5,2 5319,v_vqyQF-1Zc_E,slide,what happens after sitting on the rubber band,v_vqyQF-1Zc_E,v_vqyQF-1Zc_E_5,2 5320,v_dskswWtslKc,mans hand,what happens after surfing halfway,v_dskswWtslKc,v_dskswWtslKc_5,2 5321,v_zOI9SjQpc_Q,ball goal net,what happens after the number 9 player kicked the ball,v_zOI9SjQpc_Q,v_zOI9SjQpc_Q_5,2 5322,v_J9KjpzKM8oc,need some help to correct,what happens after the air cushion stuck on the stone,v_J9KjpzKM8oc,v_J9KjpzKM8oc_5,2 5323,v_QImpWj3AJcY,cup was removed,what happens after the ball entered the cup,v_QImpWj3AJcY,v_QImpWj3AJcY_5,2 5324,v_Pjnuoa4o55c,ball is bounced back,what happens after playing the ball,v_Pjnuoa4o55c,v_Pjnuoa4o55c_5,2 5325,v_rrpEOrMpBuE,camel came over,what happens after waving,v_rrpEOrMpBuE,v_rrpEOrMpBuE_5,2 5326,v_kyx4MMmBr3A,pulverized people lead,what happens after the start of the biking,v_kyx4MMmBr3A,v_kyx4MMmBr3A_5,2 5327,v_3dWw9GLcOeA,fly back to roof,what happens after the bird first slid off the roof,v_3dWw9GLcOeA,v_3dWw9GLcOeA_5,2 5328,v_r2H-cnti8GI,stop timing,what happens to the black and white jacket when the rubik's cube was placed on the table,v_r2H-cnti8GI,v_r2H-cnti8GI_5,2 5329,v_EXPYu9bfNcE,blow dry,what happens after the black dog was flushed,v_EXPYu9bfNcE,v_EXPYu9bfNcE_5,2 5330,v_iixZLnyLuN8,play with toys,what happens to the brunette girl after eating the cone,v_iixZLnyLuN8,v_iixZLnyLuN8_5,2 5331,v__jV5sAOOHLk,change tire,what happens to the person in black clothes after they removed the tires,v__jV5sAOOHLk,v__jV5sAOOHLk_5,2 5332,v_cnMvMvVBXiI,fixed tire,what happens to the person wearing black clothes after pushing the car,v_cnMvMvVBXiI,v_cnMvMvVBXiI_5,2 5333,v_CDecXoRSpIc,remove rubber ring,what happens to the person in black clothes putting the tire on the machine,v_CDecXoRSpIc,v_CDecXoRSpIc_5,2 5334,v_g1na24Bd5Rs,drink milk tea,what happens after the person in black sat down,v_g1na24Bd5Rs,v_g1na24Bd5Rs_5,2 5335,v_Ki13JIVwMdk,go to black dog,what happens after the black and white dog barked,v_Ki13JIVwMdk,v_Ki13JIVwMdk_5,2 5336,v_J1QB1y3vXLY,smile,what happens after the blond woman opened her mouth,v_J1QB1y3vXLY,v_J1QB1y3vXLY_5,2 5337,v_8tCRp3NKtkI,bow,what happens after the blond man jumped the grid,v_8tCRp3NKtkI,v_8tCRp3NKtkI_5,2 5338,v_7UwRRkgQSj4,shoelace,what happens to blond women wearing good shoes,v_7UwRRkgQSj4,v_7UwRRkgQSj4_5,2 5339,v_IclzwpxVvIk,powdery base,what happens to the blond woman after she finished her eyes,v_IclzwpxVvIk,v_IclzwpxVvIk_5,2 5340,v_JcAAwYpJhm8,cup fell into water,what happens after the blue cup fell into the pool,v_JcAAwYpJhm8,v_JcAAwYpJhm8_5,2 5341,v_rCLGy2NA0aE,turn head,what happens after the blue man came down from the chair,v_rCLGy2NA0aE,v_rCLGy2NA0aE_5,2 5342,v_jEOtcfk220s,blue team serve,what happens after the blue team scored,v_jEOtcfk220s,v_jEOtcfk220s_5,2 5343,v_ys4_S3JHQjs,get home,what happens after a boater in black,v_ys4_S3JHQjs,v_ys4_S3JHQjs_5,2 5344,v_raxeBxPQqlk,throwing darts,what happens after the boy changed his dart head,v_raxeBxPQqlk,v_raxeBxPQqlk_5,2 5345,v_Y7aacWy3WDo,blood flow,what happens after the brain .is cut,v_Y7aacWy3WDo,v_Y7aacWy3WDo_5,2 5346,v_nciIPwJTok8,car scrubbing,what happens after the car wash,v_nciIPwJTok8,v_nciIPwJTok8_5,2 5347,v_WPYQ27GjFKc,take out chips,what happens after the card was issued,v_WPYQ27GjFKc,v_WPYQ27GjFKc_5,2 5348,v_W2Mh01F3K5c,smooth and smooth,what happens after the cement was painted on the wall,v_W2Mh01F3K5c,v_W2Mh01F3K5c_5,2 5349,v_aNsj5OrEGLY,treatment of chili,what happens after the tomatoes are diced,v_aNsj5OrEGLY,v_aNsj5OrEGLY_5,2 5350,v_sRNqK_QZbMs,start training,what happens after the coach's demonstration,v_sRNqK_QZbMs,v_sRNqK_QZbMs_5,2 5351,v_Jhcis4S2Vsg,discus collision,what happens after the contestant launched the discus in the video,v_Jhcis4S2Vsg,v_Jhcis4S2Vsg_5,2 5352,v_pMtu7fOHdII,fight,what happens after the participants got together,v_pMtu7fOHdII,v_pMtu7fOHdII_5,2 5353,v_zKYiTA6WBS4,perm hand,what happens after the person in the black jacket curled hair,v_zKYiTA6WBS4,v_zKYiTA6WBS4_5,2 5354,v_Son8UiVlzu0,tutoring cadets,what happens to the person wearing black clothes after the demonstration ,v_Son8UiVlzu0,v_Son8UiVlzu0_5,2 5355,v_0lbv0AE5gJQ,wash clothes,what happens after the disabled finished washing a white dress,v_0lbv0AE5gJQ,v_0lbv0AE5gJQ_5,2 5356,v_Znb6Y9m_PsQ,eat ball,what happens to the dog in the video after jumping to the desk,v_Znb6Y9m_PsQ,v_Znb6Y9m_PsQ_5,2 5357,v_ZAX6OojMg38,dog planer,what happens to the dog in the video after jumping to the desk,v_ZAX6OojMg38,v_ZAX6OojMg38_5,2 5358,v_7H1KylJRii8,wine precipitation,what happens after pouring wine in the cup,v_7H1KylJRii8,v_7H1KylJRii8_5,2 5359,v_9G172wz5Yqo,start skiing,what happens after taking the elevator,v_9G172wz5Yqo,v_9G172wz5Yqo_5,2 5360,v_WNgI2qBvPrY,wash ones face,what happens at the end of the game,v_WNgI2qBvPrY,v_WNgI2qBvPrY_5,2 5361,v_tzP0lKSUv_o,clenching fist,what happens after the weightlifting of the athletes,v_tzP0lKSUv_o,v_tzP0lKSUv_o_5,2 5362,v_dU7jG8G5li0,assemble cake,what happens after the english word is engraved,v_dU7jG8G5li0,v_dU7jG8G5li0_5,2 5363,v_W97fdJ2Rn9g,clip eyelash,what happens after you put your eyelashes on,v_W97fdJ2Rn9g,v_W97fdJ2Rn9g_5,2 5364,v_Nc9yr4urskA,push people,what happens after the fight,v_Nc9yr4urskA,v_Nc9yr4urskA_5,2 5365,v_3Nd3Aai1bVA,brace with feet,what happens after passing the first corner of the game in the first place,v_3Nd3Aai1bVA,v_3Nd3Aai1bVA_5,2 5366,v_kD_EJjQCLoY,take off faucet,what happens after winning the front whee,v_kD_EJjQCLoY,v_kD_EJjQCLoY_5,2 5367,v_VZ5R9goklpo,grab ball,what happens after the game starts,v_VZ5R9goklpo,v_VZ5R9goklpo_5,2 5368,v__G4EVIG9YaE,lay by small tree,what happens after they draw up the stack in video,v__G4EVIG9YaE,v__G4EVIG9YaE_5,2 5369,v_-pK2JheWido,start skiing,what happens after the girl stand at the starting point,v_-pK2JheWido,v_-pK2JheWido_5,2 5370,v_EETygPQ-j08,stop roller skating,what happens after the blue girl help the sofa chair,v_EETygPQ-j08,v_EETygPQ-j08_5,2 5371,v_cVFVREeD6hM,do edge decoration,what happens after landscaping in the video,v_cVFVREeD6hM,v_cVFVREeD6hM_5,2 5372,v_1xtKGlUp4Vg,nail clipper,what happens to the gray hair person after combing the dog,v_1xtKGlUp4Vg,v_1xtKGlUp4Vg_5,2 5373,v_rnI9vGr5V1k,look at blade,what happens to the person in the plaid dress after wore the knife,v_rnI9vGr5V1k,v_rnI9vGr5V1k_5,2 5374,v_b_mWxzi_aps,start of the game,what happens when the hand goes down,v_b_mWxzi_aps,v_b_mWxzi_aps_5,2 5375,v_62M1FRXsUiM,chat,what happens after playing the harmonica,v_62M1FRXsUiM,v_62M1FRXsUiM_5,2 5376,v_brJIpRGcBFU,evade automatically,what happens to the mower after it hit an obstacle,v_brJIpRGcBFU,v_brJIpRGcBFU_5,2 5377,v_5LGh56euaZs,snowball,what happens after the person in the video get on a huge ice floe,v_5LGh56euaZs,v_5LGh56euaZs_5,2 5378,v_pcLGX5qvUcI,slide out of site,what happens after the skates put down the hockey stick,v_pcLGX5qvUcI,v_pcLGX5qvUcI_5,2 5379,v_F-Z17rHI_ms,diving,what happens after the man in the gray suit stand on his head,v_F-Z17rHI_ms,v_F-Z17rHI_ms_5,2 5380,v_H33jSILKmfI,punching,what happens after the kicker kicked his leg,v_H33jSILKmfI,v_H33jSILKmfI_5,2 5381,v_b0qGo-HT5iQ,open ones eyes,what happens after the woman closed her eyes,v_b0qGo-HT5iQ,v_b0qGo-HT5iQ_5,2 5382,v_Pv4FwH2TC6Y,video end,what happens after the woman finishes her eye shadow,v_Pv4FwH2TC6Y,v_Pv4FwH2TC6Y_5,2 5383,v_Pho9Hgdvc0g,be interviewed,what happens after the woman riding a wheelbarrow,v_Pho9Hgdvc0g,v_Pho9Hgdvc0g_5,2 5384,v_s9PkkDEl6aY,go down table,what happens after the leader at the station ended,v_s9PkkDEl6aY,v_s9PkkDEl6aY_5,2 5385,v_8teo_0gxzgk,blonde womens car wash,what happened after the man with long hair clenches his fist,v_8teo_0gxzgk,v_8teo_0gxzgk_5,2 5386,v_8kaQq1mR2ys,splash,what happens to the long-haired woman after diving,v_8kaQq1mR2ys,v_8kaQq1mR2ys_5,2 5387,v_96vBhCFBbQk,look computer desktop,what happens after the rubik's cube,v_96vBhCFBbQk,v_96vBhCFBbQk_5,2 5388,v_li_mry59KCM,board stands up,what happens after the man finish the plate,v_li_mry59KCM,v_li_mry59KCM_5,2 5389,v_VfhDSTKBwgc,inserting needle,what happens when the man in gray folded his paper,v_VfhDSTKBwgc,v_VfhDSTKBwgc_5,2 5390,v_1vTHJMMPZN0,drive car,what happens after the man teased the dog,v_1vTHJMMPZN0,v_1vTHJMMPZN0_5,2 5391,v_ZLJ2BmBkLJg,keep shaving,what happens after the guy in the black jacket touched the shaving bubble,v_ZLJ2BmBkLJg,v_ZLJ2BmBkLJg_5,2 5392,v_7OcxT66BxX0,leave,what happens after the man in the black hat put down the microphone,v_7OcxT66BxX0,v_7OcxT66BxX0_5,2 5393,v_qiupddjDHDg,tilling,what happens after the person wearing the blue vest got another shovel,v_qiupddjDHDg,v_qiupddjDHDg_5,2 5394,v_rGOOlcdpfLg,take out gun,what happens after the guy in the plaid coat twisted over the clothespin,v_rGOOlcdpfLg,v_rGOOlcdpfLg_5,2 5395,v_qGLRri_c6n8,turn around,what happens after the man in the pink shirt raise his hands,v_qGLRri_c6n8,v_qGLRri_c6n8_5,2 5396,v_nnEPsdA0080,be pulled by ship,what happens after the man in white pulled the rope,v_nnEPsdA0080,v_nnEPsdA0080_5,2 5397,v_qZtdMXkHRXw,throwing darts,what happens after the person in the white jacket lowered his head,v_qZtdMXkHRXw,v_qZtdMXkHRXw_5,2 5398,v_ZJnXQw84xvo,tapping bucket,what happens after the man in the white jacket turned the bucket upside down,v_ZJnXQw84xvo,v_ZJnXQw84xvo_5,2 5399,v_H9PaZiWLgXU,cilping some lemon slices,what happens to the man in the yellow dress after putting ice in the cup,v_H9PaZiWLgXU,v_H9PaZiWLgXU_5,2 5400,v__zqj6daJo9U,bow to lens,what happens after successful weight lifting in the video,v__zqj6daJo9U,v__zqj6daJo9U_5,2 5401,v_jBlG0L_M96g,jump,what happens to the man who stepped on the jumper after he scores,v_jBlG0L_M96g,v_jBlG0L_M96g_5,2 5402,v_lfbspF18Wrw,eat up,what happens after this guy took the cookie out ,v_lfbspF18Wrw,v_lfbspF18Wrw_5,2 5403,v_Oyycph_Ukfg,tie shoelaces,what happens when a man puts his shoes on his feet,v_Oyycph_Ukfg,v_Oyycph_Ukfg_5,2 5404,v_laU1Hvm5Dis,throw ball out,what happens after this man turns six laps,v_laU1Hvm5Dis,v_laU1Hvm5Dis_5,2 5405,v_HX6BeHLQh5s,shoes getting clean,what happens after the man wiped his shoes,v_HX6BeHLQh5s,v_HX6BeHLQh5s_5,2 5406,v_IYLJU87AkOg,throw it to wall,what happens to the man wearing a hat after throwing darts for the first time,v_IYLJU87AkOg,v_IYLJU87AkOg_5,2 5407,v_6G8m-vsGTA8,drive car,what happens after the man with the camera cut his head,v_6G8m-vsGTA8,v_6G8m-vsGTA8_5,2 5408,v_EDDbcCBnTQM,regulating nozzle,what happens after the man stopped spraying water,v_EDDbcCBnTQM,v_EDDbcCBnTQM_5,2 5409,v_ZsVfa3JIUNU,start tug of war,what happens to the person who took the microphone after the interview,v_ZsVfa3JIUNU,v_ZsVfa3JIUNU_5,2 5410,v_j81ndpMC9gI,cut nails for cat,what happens after spreading catnip,v_j81ndpMC9gI,v_j81ndpMC9gI_5,2 5411,v_28WDlVOgslg,nail polish,what happens after paint nails,v_28WDlVOgslg,v_28WDlVOgslg_5,2 5412,v_5nu47s7JrfY,frying eggs,what happens after pouring oil into the pan,v_5nu47s7JrfY,v_5nu47s7JrfY_5,2 5413,v_V9mLJJn8Lvw,adhesive tape,what happens after origami,v_V9mLJJn8Lvw,v_V9mLJJn8Lvw_5,2 5414,v_nkWMBJC2Qec,rest,what happens after playing table tennis,v_nkWMBJC2Qec,v_nkWMBJC2Qec_5,2 5415,v_TnP6coXzbLY,blow up,what happens to the people in the video after assembling the tires,v_TnP6coXzbLY,v_TnP6coXzbLY_5,2 5416,v_zO5JMTzLDHw,go back to walk,what happens after the man in the black jacket salut,v_zO5JMTzLDHw,v_zO5JMTzLDHw_5,2 5417,v_Gfu8e6R6jUU,dance,what happens after the person wearing black shoes clapping,v_Gfu8e6R6jUU,v_Gfu8e6R6jUU_5,2 5418,v_U2cCOj3LiAA,stretch leg,what happens after the man in the video pull the rope,v_U2cCOj3LiAA,v_U2cCOj3LiAA_5,2 5419,v_-p7aui3nAnc,shot switching,what happens after the performers stopped performing,v_-p7aui3nAnc,v_-p7aui3nAnc_5,2 5420,v_YRGiRmcHdUY,continue to grind knife,what happens after the man in the video grinds his knife,v_YRGiRmcHdUY,v_YRGiRmcHdUY_5,2 5421,v_GcjzvBatqb4,stop,what happens after the orange guy pulled four times,v_GcjzvBatqb4,v_GcjzvBatqb4_5,2 5422,v_I1iUbyjWy7k,run,what happens to the man in red after he play the ball,v_I1iUbyjWy7k,v_I1iUbyjWy7k_5,2 5423,v_KMK3_VeODlk,hit each other,what happens after the person wearing the vest threw the ball out,v_KMK3_VeODlk,v_KMK3_VeODlk_5,2 5424,v_uLphvdhunTY,hand down,what happens after the man in the video pull the rope,v_uLphvdhunTY,v_uLphvdhunTY_5,2 5425,v_I3tqWc5wG78,stir,what happens after the man in the sweater chain pours the sauce,v_I3tqWc5wG78,v_I3tqWc5wG78_5,2 5426,v_IDuoF51IMJ8,grey team celebrates,what happens after the man wearing the white head was hit by the ball,v_IDuoF51IMJ8,v_IDuoF51IMJ8_5,2 5427,v_HTSxgkgecS0,draw rubber rafts,what happens after the person wearing the white hair change his direction,v_HTSxgkgecS0,v_HTSxgkgecS0_5,2 5428,v_LPRLV0eVgfY,push left dolls,what happens to the person in the pink after he push the right swing,v_LPRLV0eVgfY,v_LPRLV0eVgfY_5,2 5429,v_8_fjIZkNHms,dog ran away,what happens to the purple lady after she hit the dog,v_8_fjIZkNHms,v_8_fjIZkNHms_5,2 5430,v_nc_NMp3vAH0,wait for,what happens after pushing curling,v_nc_NMp3vAH0,v_nc_NMp3vAH0_5,2 5431,v_TtewPltwuXw,speak,what happens after the man in red stop playing the flute,v_TtewPltwuXw,v_TtewPltwuXw_5,2 5432,v_8IrulONeC28,block gliding,what happens after the red woman push a round block,v_8IrulONeC28,v_8IrulONeC28_5,2 5433,v_qKp2QCheLwU,walk away,what happens after the man in the red hat salut,v_qKp2QCheLwU,v_qKp2QCheLwU_5,2 5434,v_iqyc2JM0uIU,put slice of lemon,what happens after the man in the red pour the finished wine into the cup,v_iqyc2JM0uIU,v_iqyc2JM0uIU_5,2 5435,v_pPt_fygNjtQ,speed up,what happens to the person in the purple on the bike,v_pPt_fygNjtQ,v_pPt_fygNjtQ_5,2 5436,v_pop8YCGQpWk,jump into sand pit,what happens after the player start,v_pop8YCGQpWk,v_pop8YCGQpWk_5,2 5437,v_f1d7_TKXNYQ,look javelin distance,what happens after the man who is running throw the javelin,v_f1d7_TKXNYQ,v_f1d7_TKXNYQ_5,2 5438,v_9SIPJd4Hls4,cooling,what happens after mixing salad,v_9SIPJd4Hls4,v_9SIPJd4Hls4_5,2 5439,v_x6pYeqq3O08,rest,what happens after kicking the sand,v_x6pYeqq3O08,v_x6pYeqq3O08_5,2 5440,v_3oy4P1gyU4k,eliminated,what happens after the second video player appear after playing billiards,v_3oy4P1gyU4k,v_3oy4P1gyU4k_5,2 5441,v_zA2zZPyYLlU,smoothly,what happens after the ship in the video sailed,v_zA2zZPyYLlU,v_zA2zZPyYLlU_5,2 5442,v_zYjLA99koBk,water is flooded,what happens to the boat in the video after it slip backwards,v_zYjLA99koBk,v_zYjLA99koBk_5,2 5443,v_mxn6WcmdNpA,get up to pay,what happens after tied shoe rope,v_mxn6WcmdNpA,v_mxn6WcmdNpA_5,2 5444,v_n832gDqfWl4,change pair of shoes,what happens after wipe shoes,v_n832gDqfWl4,v_n832gDqfWl4_5,2 5445,v_vBOFzuS-Djo,go ashore,what happens after the short hair baby dive ,v_vBOFzuS-Djo,v_vBOFzuS-Djo_5,2 5446,v_BWAedc31WdY,flushing razor,what happens to the short hair man after trimming the beard,v_BWAedc31WdY,v_BWAedc31WdY_5,2 5447,v_3Rzyta8op6s,emotional excitement,what happens after the ball in the video is throw,v_3Rzyta8op6s,v_3Rzyta8op6s_5,2 5448,v_BBKSKU6dGGk,throw snow on edge,what happens after shoveling into snow,v_BBKSKU6dGGk,v_BBKSKU6dGGk_5,2 5449,v_N4qhryre_TE,interview,what happens after the somersault,v_N4qhryre_TE,v_N4qhryre_TE_5,2 5450,v_atGMJc-DZ7w,pour out washing powder,what happens to the little girl who was sitting on her clothes,v_atGMJc-DZ7w,v_atGMJc-DZ7w_5,2 5451,v_Jdu5AqaWfz8,start bungee jumping,what happens after the staff put down the rope,v_Jdu5AqaWfz8,v_Jdu5AqaWfz8_5,2 5452,v_JY9oOSfjj_E,start skiing,what happens after the standing man pulled the rope,v_JY9oOSfjj_E,v_JY9oOSfjj_E_5,2 5453,v_W2eumNilwuI,takeoff,what happens after the rope start,v_W2eumNilwuI,v_W2eumNilwuI_5,2 5454,v_PkRvgIFREJU,skip lattices,what happens after the stones were throw,v_PkRvgIFREJU,v_PkRvgIFREJU_5,2 5455,v_pYaZLHpl_Ww,packing,what happens to the man in the striped shirt after he take out the bottle,v_pYaZLHpl_Ww,v_pYaZLHpl_Ww_5,2 5456,v_kTqt7ry3eVM,got third,what happens after the person in the red swimsuit finished jumping water,v_kTqt7ry3eVM,v_kTqt7ry3eVM_5,2 5457,v_Aj5ncX5G_2w,darkened,what happens after the table leg was burned in the video,v_Aj5ncX5G_2w,v_Aj5ncX5G_2w_5,2 5458,v_PBYg9ekd86w,drink water,what happens after the table tennis ball was thrown into the cup,v_PBYg9ekd86w,v_PBYg9ekd86w_5,2 5459,v_8vDSV9ruYlc,caterpillar wallpaper,what happens when the towel holder finishes the glue,v_8vDSV9ruYlc,v_8vDSV9ruYlc_5,2 5460,v_4JmFOPoKluM,lose match,what happens after the children and adults tug of war,v_4JmFOPoKluM,v_4JmFOPoKluM_5,2 5461,v_gr53ih2aFkE,run,what happens after they win the tug of war,v_gr53ih2aFkE,v_gr53ih2aFkE_5,2 5462,v_zV08tITKFMM,cow fell down,what happens after the man in gold spun twice,v_zV08tITKFMM,v_zV08tITKFMM_5,2 5463,v_3uaQ0cULMgc,inside car,what happens when the person in video open the trunk,v_3uaQ0cULMgc,v_3uaQ0cULMgc_5,2 5464,v_qObVIn_GI10,lid pressure,what happens when people in video put the apple in the juicer,v_qObVIn_GI10,v_qObVIn_GI10_5,2 5465,v_F9FPK6mfh88,shoe polish,what happens when pour water on the rag,v_F9FPK6mfh88,v_F9FPK6mfh88_5,2 5466,v_4LpqPUWHH5k,throw barbell,what happens after the players lifted weights in video,v_4LpqPUWHH5k,v_4LpqPUWHH5k_5,2 5467,v_8A4cZXyDrkU,screwing nut,what happens after the white woman looked at the manual,v_8A4cZXyDrkU,v_8A4cZXyDrkU_5,2 5468,v_7F-mVWMP2vM,fabric line,what happens when tie the white line,v_7F-mVWMP2vM,v_7F-mVWMP2vM_5,2 5469,v_sk_pnoqXxhs,hold child,what happens to the water after the woman cleaned her baby,v_sk_pnoqXxhs,v_sk_pnoqXxhs_5,2 5470,v_kkji9hespu0,cook noodles,what happens to the woman after the water was boiling,v_kkji9hespu0,v_kkji9hespu0_5,2 5471,v_hG4VsZQQ2_c,continue to split wood,what happens to the wood splitter after he helped the wood,v_hG4VsZQQ2_c,v_hG4VsZQQ2_c_5,2 5472,v_sH_716hH_rY,clean horses hind leg,what happens when the person with the yellow brush washes the front leg of the horse,v_sH_716hH_rY,v_sH_716hH_rY_5,2 5473,v__l251ZuOCYU,very happy,what happens when the yellow streak in the video goes into the ball,v__l251ZuOCYU,v__l251ZuOCYU_5,2 5474,v_v6P6bBPBXYw,hold together,what happens after the yellow team scored,v_v6P6bBPBXYw,v_v6P6bBPBXYw_5,2 5475,v_9snScUyE8_4,dishware,what happens to the vlond girl after talking,v_9snScUyE8_4,v_9snScUyE8_4_5,2 5476,v_QoRlOa6R1LY,man jump down,what happens after the third subtitle appears,v_QoRlOa6R1LY,v_QoRlOa6R1LY_5,2 5477,v_w10Nr_wOh8g,cutting wallpaper,what happens after you post two wallpaper,v_w10Nr_wOh8g,v_w10Nr_wOh8g_5,2 5478,v_nbHBjdE8oNo,chat,what happens after washing,v_nbHBjdE8oNo,v_nbHBjdE8oNo_5,2 5479,v_v6DdLg_Xnkg,wear good left eye,what happens after wearing the contact lens of the right eye,v_v6DdLg_Xnkg,v_v6DdLg_Xnkg_5,2 5480,v_rWfQj0X8WU4,start jumping,what happens after wearing a jumper,v_rWfQj0X8WU4,v_rWfQj0X8WU4_5,2 5481,v_v-UmNR5yeDc,punches,what happens after the umpire begins,v_v-UmNR5yeDc,v_v-UmNR5yeDc_5,2 5482,v_U2eN4DbVLfE,speech,what happens to the wrist of the person wearing a gray sweater,v_U2eN4DbVLfE,v_U2eN4DbVLfE_5,2 5483,v_qZMcbBsQorE,jump,what happens before the person wearing the gray vest stand up,v_qZMcbBsQorE,v_qZMcbBsQorE_5,2 5484,v_oKJ1BnvHbbA,run up,what happens to the person in the red dress before throwing the javelin,v_oKJ1BnvHbbA,v_oKJ1BnvHbbA_5,2 5485,v_xMNmGr96O9U,take ball,what happens before playing bowling,v_xMNmGr96O9U,v_xMNmGr96O9U_5,2 5486,v_12Nafz_Yet4,exhibition,what happens before boxing,v_12Nafz_Yet4,v_12Nafz_Yet4_5,2 5487,v_WXH-Tj0-g4w,garden cart,what happens before you clean up the garbage,v_WXH-Tj0-g4w,v_WXH-Tj0-g4w_5,2 5488,v_mUmSJps9WJI,dismantling light bulb,what happens before the christmas tree,v_mUmSJps9WJI,v_mUmSJps9WJI_5,2 5489,v_woI_zP55qWo,go to diver,what happens before diving,v_woI_zP55qWo,v_woI_zP55qWo_5,2 5490,v_eg2s5lOfKGI,step by step,what happens before the exercise,v_eg2s5lOfKGI,v_eg2s5lOfKGI_5,2 5491,v_RlRrktN5iH4,sit down on your knees,what happens before yoga,v_RlRrktN5iH4,v_RlRrktN5iH4_5,2 5492,v_ngMxE3CnGVg,preparation materials,what happens before making lollipops,v_ngMxE3CnGVg,v_ngMxE3CnGVg_5,2 5493,v_HPKHDze6XfA,snow removal,what happens before opening the door,v_HPKHDze6XfA,v_HPKHDze6XfA_5,2 5494,v_zxpQHLwZCug,bend,what happens before the man in blue cut wood,v_zxpQHLwZCug,v_zxpQHLwZCug_5,2 5495,v_mXqmRAUsn9U,get off car,what happens before skateboarding ,v_mXqmRAUsn9U,v_mXqmRAUsn9U_5,2 5496,v_LL0uQO4q_wY,let curling round legs,what happens before the third roll of curling,v_LL0uQO4q_wY,v_LL0uQO4q_wY_5,2 5497,v_IMMoglaJ3RY,weed,what happens before weeding weeds into garbage bags,v_IMMoglaJ3RY,v_IMMoglaJ3RY_5,2 5498,v_mnNgZ-D5cKc,garden cart,what happens before riding,v_mnNgZ-D5cKc,v_mnNgZ-D5cKc_5,2 5499,v_X52XHYKeLiE,wear gloves,what happens before riding,v_X52XHYKeLiE,v_X52XHYKeLiE_5,2 5500,v__a527xEzhkw,fermation,what happens before she plays the harmonica in video,v__a527xEzhkw,v__a527xEzhkw_5,2 5501,v_-8SgY4vW4xM,shaving cutter,what happens before she shaved the dog in the video,v_-8SgY4vW4xM,v_-8SgY4vW4xM_5,2 5502,v_ryFSf08mrkA,put down saw,what happens before you stop shooting,v_ryFSf08mrkA,v_ryFSf08mrkA_5,2 5503,v_FkbpD1zWdPw,rest,what happens before the archery competition,v_FkbpD1zWdPw,v_FkbpD1zWdPw_5,2 5504,v_4H9MMsj4mcM,pony fell down,what happens to the athlete before he get off the horse,v_4H9MMsj4mcM,v_4H9MMsj4mcM_5,2 5505,v_JvPVYSb_5o8,take deep breath,what happens before the athlete lift the barbell completely,v_JvPVYSb_5o8,v_JvPVYSb_5o8_5,2 5506,v_RLBfyIVpocE,circle,what happens before the athlete throw the discus,v_RLBfyIVpocE,v_RLBfyIVpocE_5,2 5507,v_s6fEIuHPJ4Y,circle,what happens before the athlete throw the hammer,v_s6fEIuHPJ4Y,v_s6fEIuHPJ4Y_5,2 5508,v_M2Y2Cw2kwDo,raise ones hands,what happens before the athlete jump into the water,v_M2Y2Cw2kwDo,v_M2Y2Cw2kwDo_5,2 5509,v_St1RRi-aeNM,turn two laps,what happens before the athletes throw the discus,v_St1RRi-aeNM,v_St1RRi-aeNM_5,2 5510,v_e-Xf13exY4E,drum,what happens before the black man knock,v_e-Xf13exY4E,v_e-Xf13exY4E_5,2 5511,v_ikUNgSw4Gys,open ones mouth,what happens before the blond woman's tongue is caught,v_ikUNgSw4Gys,v_ikUNgSw4Gys_5,2 5512,v_IsV1n_kLpvs,explanation usage,what happens to a blond man climbing up a ladder,v_IsV1n_kLpvs,v_IsV1n_kLpvs_5,2 5513,v_vBaiedxy1Uw,finger guessing game,what happens to the blue boy before he throw water at the girl with long hair,v_vBaiedxy1Uw,v_vBaiedxy1Uw_5,2 5514,v_5mWZY2XkWSQ,wave,what happens before the boy come to the table,v_5mWZY2XkWSQ,v_5mWZY2XkWSQ_5,2 5515,v_jDlvGWOdcqU,pull hand brake,what happens before the car is supported,v_jDlvGWOdcqU,v_jDlvGWOdcqU_5,2 5516,v_rM02KWikOo8,floating on water,what happens to the kid before he go skateboarding,v_rM02KWikOo8,v_rM02KWikOo8_5,2 5517,v_k6pN0WRr2Ws,open sound,what happens before the coach do the aerobics,v_k6pN0WRr2Ws,v_k6pN0WRr2Ws_5,2 5518,v_S7CW-si2JjA,cut cake,what happens before the cream is wiped,v_S7CW-si2JjA,v_S7CW-si2JjA_5,2 5519,v_NJRrhNrEMsk,air pressure,what happens before the tire is removed,v_NJRrhNrEMsk,v_NJRrhNrEMsk_5,2 5520,v_JGxf-jke0e8,go to woman,what happens to the dog before it is touch,v_JGxf-jke0e8,v_JGxf-jke0e8_5,2 5521,v_nbOsU2Vmp1U,introduce,what happens before making a drink,v_nbOsU2Vmp1U,v_nbOsU2Vmp1U_5,2 5522,v_9UvVeUYQLgA,prepare weapon,what happens before the field shooting,v_9UvVeUYQLgA,v_9UvVeUYQLgA_5,2 5523,v_XI7qJHE61zo,sweep floor,what happens before we mop the floor,v_XI7qJHE61zo,v_XI7qJHE61zo_5,2 5524,v_72_9wLYUDGM,prepare bar,what happens before the horizontal bar gymnastics,v_72_9wLYUDGM,v_72_9wLYUDGM_5,2 5525,v_LzPppxSWYNY,run up,what happens to the athlete before he jump,v_LzPppxSWYNY,v_LzPppxSWYNY_5,2 5526,v_9TjPn_ejmFU,dipping pigment,what happens before the kid in the blue and white stripes paint the board,v_9TjPn_ejmFU,v_9TjPn_ejmFU_5,2 5527,v_PTwe2IIo3To,dance,what happens before the lady in gray stops,v_PTwe2IIo3To,v_PTwe2IIo3To_5,2 5528,v_-EIsT868Trw,squat,what happens before the gray woman jumps,v_-EIsT868Trw,v_-EIsT868Trw_5,2 5529,v_e4kS-n7_LRU,sleep,what happens before the little girl licks the ice cream,v_e4kS-n7_LRU,v_e4kS-n7_LRU_5,2 5530,v_NjXCZYO3zwU,count,what happens before the magic cube is completed,v_NjXCZYO3zwU,v_NjXCZYO3zwU_5,2 5531,v_G0VWk5WqDp0,pull hands back,what happens before the blue vest is thrown out,v_G0VWk5WqDp0,v_G0VWk5WqDp0_5,2 5532,v_3kxP8qOtym8,punches,what happened before the man in the gray vest kicked his foot,v_3kxP8qOtym8,v_3kxP8qOtym8_5,2 5533,v_uWfQcDvel84,tidy wire,what happened before the man in the hat pushed the weeder,v_uWfQcDvel84,v_uWfQcDvel84_5,2 5534,v_CwImmV7q1MY,hold harmonica,what happened to the man in the video playing the harmonica,v_CwImmV7q1MY,v_CwImmV7q1MY_5,2 5535,v_s84PG-JfEwc,floating in water,what happened before the man pulling the rope began to draw water,v_s84PG-JfEwc,v_s84PG-JfEwc_5,2 5536,v_IGPZFun1Ok4,bet on,what happened before the man in the hat shook hands,v_IGPZFun1Ok4,v_IGPZFun1Ok4_5,2 5537,v_mZYWfmsYQPA,introduction of pang ball,what happened before playing table tennis,v_mZYWfmsYQPA,v_mZYWfmsYQPA_5,2 5538,v_N9VOdVOiPNM,display ornaments,what happened before the piercings,v_N9VOdVOiPNM,v_N9VOdVOiPNM_5,2 5539,v_FKtYeu2bJpA,explanation skills,what happened before practicing basketball,v_FKtYeu2bJpA,v_FKtYeu2bJpA_5,2 5540,v_uty4eGb_vvU,stand straight,what happened before the red woman dance tai chi sword,v_uty4eGb_vvU,v_uty4eGb_vvU_5,2 5541,v_vQ82ItCG1x4,erect canvas,what happened to the sailboat before driving,v_vQ82ItCG1x4,v_vQ82ItCG1x4_5,2 5542,v_40BPDWojssc,dipping shoe oil,what happened before the shoeshine,v_40BPDWojssc,v_40BPDWojssc_5,2 5543,v_EPsSfOEd3BU,circle,what happened to female athletes before shot put out,v_EPsSfOEd3BU,v_EPsSfOEd3BU_5,2 5544,v_LWt2FuU0uC4,fooling around,what happened before the third player threw the shot,v_LWt2FuU0uC4,v_LWt2FuU0uC4_5,2 5545,v_mVAP-WyEc7w,sharpening,what happened before cutting tomatoes,v_mVAP-WyEc7w,v_mVAP-WyEc7w_5,2 5546,v_JsPIzRsUtlE,measuring distance,what happened before the tug of war started,v_JsPIzRsUtlE,v_JsPIzRsUtlE_5,2 5547,v_fMVuGUBs2cs,step by step,what happened before the bartending,v_fMVuGUBs2cs,v_fMVuGUBs2cs_5,2 5548,v_0XTAq_xvquw,display tools,what happened before the video is shown,v_0XTAq_xvquw,v_0XTAq_xvquw_5,2 5549,v_0jdSl5-lMpY,nail nail,what happened to the person in white before he pulled the purple line,v_0jdSl5-lMpY,v_0jdSl5-lMpY_5,2 5550,v_vezvHLPR3P0,rotate,what happened before the white woman threw the hammer,v_vezvHLPR3P0,v_vezvHLPR3P0_5,2 5551,v_ILmZg0vz0Hg,speak,what happened to the woman with the glasses before she decorated the box,v_ILmZg0vz0Hg,v_ILmZg0vz0Hg_5,2 5552,v_Flm_SCK10GQ,pre match preparation,what happened before pulled wrist,v_Flm_SCK10GQ,v_Flm_SCK10GQ_5,2 5553,v_IIPKxzPjrWg,wearing frog shoe,what happened to the girl in the tights before she went diving,v_IIPKxzPjrWg,v_IIPKxzPjrWg_5,2 5554,v_6LsvBNqJuJY,pose,what happened after the beginning of the woman's tattoo in the video,v_6LsvBNqJuJY,v_6LsvBNqJuJY_5,2 5555,v_B4Zp5XN97Gc,display tools,what happened behind the weeding machine screen,v_B4Zp5XN97Gc,v_B4Zp5XN97Gc_5,2 5556,v_eiN5XPmwcEM,smear shaving blister,what happened to the man before shaving his beard,v_eiN5XPmwcEM,v_eiN5XPmwcEM_5,2 5557,v_P2xT7dlyX8Y,play violin,what happened before the audience appeared,v_P2xT7dlyX8Y,v_P2xT7dlyX8Y_5,2 5558,v_jhy6npIdn5o,send message,what happened before decorating the christmas tree,v_jhy6npIdn5o,v_jhy6npIdn5o_5,2 5559,v_uM7QSskmloo,pull rope,what happened to the person in the video before pruning branches,v_uM7QSskmloo,v_uM7QSskmloo_5,2 5560,v_wcxEkMoOmBk,select curler,what happened before curling hair,v_wcxEkMoOmBk,v_wcxEkMoOmBk_5,2 5561,v_ufrTSC3Dewg,run,what happened to the man in green before he pushed the plate round,v_ufrTSC3Dewg,v_ufrTSC3Dewg_5,2 5562,v_ECZb_tQZ4Pg,stake,what happened before the licensing of girls wearing glasses,v_ECZb_tQZ4Pg,v_ECZb_tQZ4Pg_5,2 5563,v_X6CBZwwRdQQ,introduce,what happened before rubbing sunscreen ,v_X6CBZwwRdQQ,v_X6CBZwwRdQQ_5,2 5564,v_Db2Dnt2OOo0,prepare tools,what happened before tattoo in the video,v_Db2Dnt2OOo0,v_Db2Dnt2OOo0_5,2 5565,v__2txWbQfJrY,cement,what happened before the person in the short sleeves tiled the tile,v__2txWbQfJrY,v__2txWbQfJrY_5,2 5566,v_gCHo9vxfEzM,squat,what happened to the red person after the rotation,v_gCHo9vxfEzM,v_gCHo9vxfEzM_5,2 5567,v_JbW8efAOOt0,start dancing,what happened after the people in the video held their hands,v_JbW8efAOOt0,v_JbW8efAOOt0_5,2 5568,v_Aen-RfnlK3A,become biscuit,what happens when she puts it in the oven at video,v_Aen-RfnlK3A,v_Aen-RfnlK3A_5,2 5569,v_2bQx5igckJc,display product,what happened after the green subtitles in the video,v_2bQx5igckJc,v_2bQx5igckJc_5,2 5570,v_HWFosaUWoSI,display front door,what happens after the pictures in video show the garage,v_HWFosaUWoSI,v_HWFosaUWoSI_5,2 5571,v_K5jY2chByPw,pacify horse,what happened after the person in the video wiped the leg of the horse,v_K5jY2chByPw,v_K5jY2chByPw_5,2 5572,v_a_EqAwUOxpM,showcase,what happened after the manicure in the video,v_a_EqAwUOxpM,v_a_EqAwUOxpM_5,2 5573,v__CIoHeD7KQc,explain,what happened in the video before he did the experiment,v__CIoHeD7KQc,v__CIoHeD7KQc_5,2 5574,v_nvcMYiZhUuo,water preparation,what happened before they dive in the video,v_nvcMYiZhUuo,v_nvcMYiZhUuo_5,2 5575,v_m731tx8N5-Y,open mouth and sing,what happened to the bald man after he got his head close to the microphone,v_m731tx8N5-Y,v_m731tx8N5-Y_5,2 5576,v_SPjv6P5fxug,fall down,what happens after the bald man rides another man,v_SPjv6P5fxug,v_SPjv6P5fxug_5,2 5577,v_7vcihMnmssI,go fishing,what happened to the bald man after he made the hole,v_7vcihMnmssI,v_7vcihMnmssI_5,2 5578,v_er5jUsRr4y0,gargle with fat man,what happened to blond man after using mouthwash,v_er5jUsRr4y0,v_er5jUsRr4y0_5,2 5579,v_7LbBmVX33I4,spray liquid,what happened to the curly hair woman before clipping her hair,v_7LbBmVX33I4,v_7LbBmVX33I4_5,2 5580,v_df5rlVZD0Zc,on tree,what happened to the man in the red jacket before running,v_df5rlVZD0Zc,v_df5rlVZD0Zc_5,2 5581,v_dHKeNK1uWUg,cobra attack,what happened to the man in the red dress blowing a musical instrument,v_dHKeNK1uWUg,v_dHKeNK1uWUg_5,2 5582,v_1YU4MSK80cQ,feet shaking,what happened when the man in the black vest lifted his feet over the parallel bars,v_1YU4MSK80cQ,v_1YU4MSK80cQ_5,2 5583,v_7lxP-hWFA24,bubble,what happened to the man in the hat before he played the guitar,v_7lxP-hWFA24,v_7lxP-hWFA24_5,2 5584,v_KWpATsiXF_M,use long stick,what happened to the person with the stick when the cow ran over him,v_KWpATsiXF_M,v_KWpATsiXF_M_5,2 5585,v_i_LT0ef1n-Y,slider,what happened to the red man after he spit out his tongue,v_i_LT0ef1n-Y,v_i_LT0ef1n-Y_5,2 5586,v_SGAUpoTMSnA,with boat overhead,what happened to the red kayaker before he went in the water,v_SGAUpoTMSnA,v_SGAUpoTMSnA_5,2 5587,v_-CqVpCRxwTY,photograph,what happened after the woman played skating in the video,v_-CqVpCRxwTY,v_-CqVpCRxwTY_5,2 5588,v_VFC-V06hVj0,camel stopped,what happened to the woman in the hat before she got off the camel,v_VFC-V06hVj0,v_VFC-V06hVj0_5,2 5589,v_AwcM25G1h-g,helmet,what happened to the woman in the red vest before she shot,v_AwcM25G1h-g,v_AwcM25G1h-g_5,2 5590,v_8AUTKSqcmiM,replacement,what happened to the woman in the white hat after she shot the arrow,v_8AUTKSqcmiM,v_8AUTKSqcmiM_5,2 5591,v_54TIARWo-S8,long jump,what happened to the boy in the pink suit after his first long jump,v_54TIARWo-S8,v_54TIARWo-S8_5,2 5592,v_MpeN-IVIBc4,prepare pigments,what happened before her spray painting,v_MpeN-IVIBc4,v_MpeN-IVIBc4_5,2 5593,v_d4sX1jnL4BY,raise your right hand,what happened to the man in the video before the floating sea,v_d4sX1jnL4BY,v_d4sX1jnL4BY_5,2 5594,v_wCexKIuAj3A,blow out cigarette smoke,what happened to the white beard man after he smoked,v_wCexKIuAj3A,v_wCexKIuAj3A_5,2 5595,v_ut1AoOzqL4k,hand clenched fist,what happened to the man in the black vest after the long jump,v_ut1AoOzqL4k,v_ut1AoOzqL4k_5,2 5596,v_6Xsfwn5M6qs,somersault,what happened to the man in blue pants before he landed,v_6Xsfwn5M6qs,v_6Xsfwn5M6qs_5,2 5597,v_wLXty2wzuJg,swimming,what happened to mr. bean after he saw the swim trunks,v_wLXty2wzuJg,v_wLXty2wzuJg_5,2 5598,v_QX5e5Mla660,support body with two hands,what happened to the person in black before he turned,v_QX5e5Mla660,v_QX5e5Mla660_5,2 5599,v_T62XjoKbN8M,frictional runway,what happened to the person in black before he started pushing the ice pot,v_T62XjoKbN8M,v_T62XjoKbN8M_5,2 5600,v_GSrBZXLSwWI,scraping,what happens when the person in black shorts cramps into a chocolate sauce,v_GSrBZXLSwWI,v_GSrBZXLSwWI_5,2 5601,v_2CegApogJd4,clap with your teammates,what happened to the person in blue after the game,v_2CegApogJd4,v_2CegApogJd4_5,2 5602,v_HtG-i1CG2Qs,wash hands,what happened after the person in the blue went to the bathroom,v_HtG-i1CG2Qs,v_HtG-i1CG2Qs_5,2 5603,v_oflwFZj9PNY,run up,what happened to the person in red and black before the long jump,v_oflwFZj9PNY,v_oflwFZj9PNY_5,2 5604,v_jt-Vnap5KP4,talk to others,what happened to the person in the video after he played the organ,v_jt-Vnap5KP4,v_jt-Vnap5KP4_5,2 5605,v_fe4r2-Y8k1U,celebrate,what happened to the person in the video after they reached the top of the mountain,v_fe4r2-Y8k1U,v_fe4r2-Y8k1U_5,2 5606,v_Z2gpcqXWNek,dry it,what happened after the person in the video showered the dog,v_Z2gpcqXWNek,v_Z2gpcqXWNek_5,2 5607,v_AB5cWhlQ0Kk,decorating christmas tree,what happened to the person in the video after they installed the christmas tree,v_AB5cWhlQ0Kk,v_AB5cWhlQ0Kk_5,2 5608,v_oT6WUU8-dgs,clink with dog,what happened to the person in the video before he drank water,v_oT6WUU8-dgs,v_oT6WUU8-dgs_5,2 5609,v_VjMMwpgOCPo,somersault,what happened to the person in black and white before he hit the ground,v_VjMMwpgOCPo,v_VjMMwpgOCPo_5,2 5610,v_lPw_BRbPw5s,hand over nose,what happened to the person in black after the dance,v_lPw_BRbPw5s,v_lPw_BRbPw5s_5,2 5611,v_NvRH4SoF09c,turn to landscape,what happened to the person in black after he played the flute,v_NvRH4SoF09c,v_NvRH4SoF09c_5,2 5612,v_P6Oq6C9X0fw,fall down,what happened when the person in black went skiing,v_P6Oq6C9X0fw,v_P6Oq6C9X0fw_5,2 5613,v_oMtB-y49Yo8,make cake,what happened to the person in black before he baked the cake,v_oMtB-y49Yo8,v_oMtB-y49Yo8_5,2 5614,v_3nSOFmmA7FU,horst hula hoop,what happened to the person in black before the hula hoop,v_3nSOFmmA7FU,v_3nSOFmmA7FU_5,2 5615,v_QdmcjM2fluo,pruning trees,what happened to the person in the black jacket after he got down,v_QdmcjM2fluo,v_QdmcjM2fluo_5,2 5616,v_ZnKB0U96ZI4,ball hit the knee,what happened after the person in the black shorts hit the ball,v_ZnKB0U96ZI4,v_ZnKB0U96ZI4_5,2 5617,v_NNiJfr_ChH4,run up,what happened to the person in black shorts before the long jump,v_NNiJfr_ChH4,v_NNiJfr_ChH4_5,2 5618,v_OcL7ZhBCkxQ,steady and steady,what happened when the person in the black pants ran down the hill,v_OcL7ZhBCkxQ,v_OcL7ZhBCkxQ_5,2 5619,v_ZgdMnfTqblw,jump up,what happened to the person in the black vest before he threw the ball,v_ZgdMnfTqblw,v_ZgdMnfTqblw_5,2 5620,v_uJ4OZfCjViM,swing,what happened to the person in blue after he had swept the leaves,v_uJ4OZfCjViM,v_uJ4OZfCjViM_5,2 5621,v_oGU7m7rCZ-Y,sax,what happened to the person in the blue jacket before he played the saxophone,v_oGU7m7rCZ-Y,v_oGU7m7rCZ-Y_5,2 5622,v_R-hsYQNtnn0,release pole,what happened after the person in blue shirt won the game,v_R-hsYQNtnn0,v_R-hsYQNtnn0_5,2 5623,v_UNXLfqkwKFc,press button,what happened to the person in blue shorts before he pushed the vacuum,v_UNXLfqkwKFc,v_UNXLfqkwKFc_5,2 5624,v_A_Sr0mCX2rI,wear glasses,what happens when the person in camouflage wears a hat,v_A_Sr0mCX2rI,v_A_Sr0mCX2rI_5,2 5625,v_qGtUXGG78tM,start pruning trees,what happens when the guy in the dark blue pants looks at the camera,v_qGtUXGG78tM,v_qGtUXGG78tM_5,2 5626,v_2vrR_5u2buU,roll forward,what happened to the man in the puppet suit before he walked off the mat,v_2vrR_5u2buU,v_2vrR_5u2buU_5,2 5627,v_Z-sWZUYL0ZU,spray cleaning solution,what happened to the person in the gray jacket after he got the towel wet,v_Z-sWZUYL0ZU,v_Z-sWZUYL0ZU_5,2 5628,v_BFChXuwZ4wo,make face,what happened to the person in the gray vest when he first came in,v_BFChXuwZ4wo,v_BFChXuwZ4wo_5,2 5629,v_OlR9S70AA74,turn around,what happened to the person in the green pants after the sailboat,v_OlR9S70AA74,v_OlR9S70AA74_5,2 5630,v_LvTwJTvluHE,fall,what happens to the person in green trunks when they first surf,v_LvTwJTvluHE,v_LvTwJTvluHE_5,2 5631,v_mkGUacg0GRc,middle of tyres,what happened to the car of the person in the gray suit after the game,v_mkGUacg0GRc,v_mkGUacg0GRc_5,2 5632,v_0w4OkBenR_k,selfie,what happened to the person in the purple after the paint,v_0w4OkBenR_k,v_0w4OkBenR_k_5,2 5633,v_OccEAILrU7M,rotate,what happened to the person in purple before he threw the discus,v_OccEAILrU7M,v_OccEAILrU7M_5,2 5634,v_1dDAcUliXrQ,tease hair,what happened to the person wearing purple clothes after scoring for the second time,v_1dDAcUliXrQ,v_1dDAcUliXrQ_5,2 5635,v_kPn9NzU4W48,talk to screen,what happened to the person in the red and white shoes before he started boxing,v_kPn9NzU4W48,v_kPn9NzU4W48_5,2 5636,v_Co_cpZWbzFk,throw ball,what happened to the person in the red pants after he got the ball,v_Co_cpZWbzFk,v_Co_cpZWbzFk_5,2 5637,v_Zt9qvbUnNhc,run up,what happens to the person in red shorts before they flip over,v_Zt9qvbUnNhc,v_Zt9qvbUnNhc_5,2 5638,v_ZxCdhz4ep0s,standing bow,what happened to the person in the striped shirt after he played the piano,v_ZxCdhz4ep0s,v_ZxCdhz4ep0s_5,2 5639,v_QPEAp7nf2Tk,climb up,what happened to the person wearing striped pants after sliding down the slide,v_QPEAp7nf2Tk,v_QPEAp7nf2Tk_5,2 5640,v_AjizhJc_reI,stalemate,what happened after the person in the white suit hit someone,v_AjizhJc_reI,v_AjizhJc_reI_5,2 5641,v_hyMqGr0mOfA,take down darts,what happened to the person in white after he threw the darts,v_hyMqGr0mOfA,v_hyMqGr0mOfA_5,2 5642,v_cYvFlrAnlzA,high five,what happened after the person in white won the game,v_cYvFlrAnlzA,v_cYvFlrAnlzA_5,2 5643,v_8lMncYsbrWw,tidy,what happened after the person in white ironed his suit,v_8lMncYsbrWw,v_8lMncYsbrWw_5,2 5644,v_y0ca-LbQErY,drink,what happens after the person in white rides a spinning bike,v_y0ca-LbQErY,v_y0ca-LbQErY_5,2 5645,v_zqxzFxya6T8,horse,what happened to the person in the white shirt before he rode,v_zqxzFxya6T8,v_zqxzFxya6T8_5,2 5646,v_C7yd6yEkxXE,forward,what happened to the person wearing the white short sleeves after crossing the slope,v_C7yd6yEkxXE,v_C7yd6yEkxXE_5,2 5647,v_QIUxLD27NuI,put down magic cube,what happened to the person wearing yellow clothes after spelling rubik's cube,v_QIUxLD27NuI,v_QIUxLD27NuI_5,2 5648,v_hQqoh0YxJYs,dance,what happened to the person in yellow before he threw the plate,v_hQqoh0YxJYs,v_hQqoh0YxJYs_5,2 5649,v_wE9sQbGdeAk,take off shoes,what happened to the person with the yellow glasses after he unplugged the oxygen tank,v_wE9sQbGdeAk,v_wE9sQbGdeAk_5,2 5650,v_0e7d39SwHCA,hand in hand,what happened after the person in the purple clothes and the person in the white clothes fell,v_0e7d39SwHCA,v_0e7d39SwHCA_5,2 5651,v_5c5PFa8GR-A,scratching nose,what happened to the person who was being cut off before the gesture,v_5c5PFa8GR-A,v_5c5PFa8GR-A_5,2 5652,v_stdtUoog49I,dispel crowd,what happened to the person who rode the electric car before the parade passed,v_stdtUoog49I,v_stdtUoog49I_5,2 5653,v_pzTqZWPubk8,toothpaste,what happened to the person with a black tie after brushing his teeth,v_pzTqZWPubk8,v_pzTqZWPubk8_5,2 5654,v_uktUeF3Fy7o,fall,what happened to the person in the purple life jacket after he first put it on his shoulder,v_uktUeF3Fy7o,v_uktUeF3Fy7o_5,2 5655,v_lUil9HfTzJ0,waving hand,what happened at the beginning of the third piece of surfing,v_lUil9HfTzJ0,v_lUil9HfTzJ0_5,2 5656,v_aAz3YL2RMr4,bright smile,what happens after the tattoo artist has tattooed on the hand of someone,v_aAz3YL2RMr4,v_aAz3YL2RMr4_5,2 5657,v_KXMZHfCwTO0,dogs before him,what happened to the bald person after he worked,v_KXMZHfCwTO0,v_KXMZHfCwTO0_5,2 5658,v_4LoAbHdHWqM,pull rope,what happened to the person before the child hit love,v_4LoAbHdHWqM,v_4LoAbHdHWqM_5,2 5659,v_46NS8dT15Hw,fixed toy,what happened to the adult in blue after the boy hit the toy,v_46NS8dT15Hw,v_46NS8dT15Hw_5,2 5660,v_6O4S2CpRB0A,low down barycenter,what happened to the athlete's body size after the tug of war started,v_6O4S2CpRB0A,v_6O4S2CpRB0A_5,2 5661,v_f2DS_AVorrY,warm up exercise,what happened to the athlete before jumping,v_f2DS_AVorrY,v_f2DS_AVorrY_5,2 5662,v_1QIUV7WYKXg,run forward,what happened to the athlete before he threw the javelin,v_1QIUV7WYKXg,v_1QIUV7WYKXg_5,2 5663,v_u0Dc0ZtudXY,back somersault,what happened to the athlete in white before he hit the ground,v_u0Dc0ZtudXY,v_u0Dc0ZtudXY_5,2 5664,v_IToczVhbOc0,group photo,what happened to the bald woman behind the tattoo,v_IToczVhbOc0,v_IToczVhbOc0_5,2 5665,v_4_jDgRsOGvY,throw drumbeat,what happened after the naked man finally finished playing the drum set,v_4_jDgRsOGvY,v_4_jDgRsOGvY_5,2 5666,v_3JBUWRKezUI,land on ground,what happened to batman after spider-man landed ,v_3JBUWRKezUI,v_3JBUWRKezUI_5,2 5667,v_prBiREYQ2vQ,lens conversion,what happened after the long distance run started,v_prBiREYQ2vQ,v_prBiREYQ2vQ_5,2 5668,v__kmjpSZb3OI,satisfactory smile,what happened to the person in black after he painted it,v__kmjpSZb3OI,v__kmjpSZb3OI_5,2 5669,v_CaeZoHNHul0,erect violin,what happened to the brunette woman before she played the piano,v_CaeZoHNHul0,v_CaeZoHNHul0_5,2 5670,v_UJGK_TKrl4E,handshake,what happened when the person in the black helmet raised his hat,v_UJGK_TKrl4E,v_UJGK_TKrl4E_5,2 5671,v_7BUr2cN8CLs,orange clothes male clenched fist,what happened to the person in black after making a fist,v_7BUr2cN8CLs,v_7BUr2cN8CLs_5,2 5672,v_gsQ-OEvrxjo,open,what happened to the person in the black suit after he had finished reading the cards,v_gsQ-OEvrxjo,v_gsQ-OEvrxjo_5,2 5673,v_SidTquTAtyk,add two kites,what happened to the person in the black after the kite first landed,v_SidTquTAtyk,v_SidTquTAtyk_5,2 5674,v_sEcXR5b8HyY,fall,what happened to the athlete in black when he catch the ball,v_sEcXR5b8HyY,v_sEcXR5b8HyY_5,2 5675,v_gWTndmDHZQc,weigh it down,what happened to the person with the black shirt after he got the guitar,v_gWTndmDHZQc,v_gWTndmDHZQc_5,2 5676,v_7CM2OYr-Csw,kite flew high,what happened to the blond girl after putting on the long line,v_7CM2OYr-Csw,v_7CM2OYr-Csw_5,2 5677,v_mMm1LfVb8Pg,pull off tires,what happened to the person in blue suit weed cutter approaching the tires,v_mMm1LfVb8Pg,v_mMm1LfVb8Pg_5,2 5678,v_DUi-hLMpQQo,black clothes people waved,what happened to the person in blue shirt when the scissors operated,v_DUi-hLMpQQo,v_DUi-hLMpQQo_5,2 5679,v_iuXjatyFcwo,stand up,what happens when the person in blue shorts raises the pole to the top of his head,v_iuXjatyFcwo,v_iuXjatyFcwo_5,2 5680,v_WINtiw-_3vg,turn around,what happened to the boy after playing saxophone,v_WINtiw-_3vg,v_WINtiw-_3vg_5,2 5681,v_9k19UUJtldg,test ball,what happened to the little boy in blue before he hit the ball,v_9k19UUJtldg,v_9k19UUJtldg_5,2 5682,v_sfbgZOHLkII,stand up,what happened to the camel after the woman sat down,v_sfbgZOHLkII,v_sfbgZOHLkII_5,2 5683,v_HowkVy5fOyk,rush to red cloth,what happens to the cow when it sees a red cloth,v_HowkVy5fOyk,v_HowkVy5fOyk_6,8 5684,v_K1LiXUpoSmI,hit himself,what happened after the kid's second serve,v_K1LiXUpoSmI,v_K1LiXUpoSmI_5,2 5685,v_MAYrBia9Xnw,get blow out,what happened to the child after he posed,v_MAYrBia9Xnw,v_MAYrBia9Xnw_5,2 5686,v_StGxFfLiYNU,wave,what happened to the kid in blue when he saw the camera,v_StGxFfLiYNU,v_StGxFfLiYNU_5,2 5687,v_LjPKKqe-VO0,kick off cushion,what happened to the coach after the blond man jumped on the pole,v_LjPKKqe-VO0,v_LjPKKqe-VO0_5,2 5688,v_2_H3lxMWvPo,run forward,what happened to the cow after it was brought up,v_2_H3lxMWvPo,v_2_H3lxMWvPo_5,2 5689,v_bWZkD_s1940,circle,what happened to the dancing girl after she threw the stick ,v_bWZkD_s1940,v_bWZkD_s1940_5,2 5690,v_cK0-WcGXacQ,rotate,what happened before the discus thrower threw the discus,v_cK0-WcGXacQ,v_cK0-WcGXacQ_5,2 5691,v_vzUeFzhVYLg,takeoff,what happened to the diving person before the diving,v_vzUeFzhVYLg,v_vzUeFzhVYLg_5,2 5692,v_fEBM3nPMen8,fish bite,what happened after the diver got into the water,v_fEBM3nPMen8,v_fEBM3nPMen8_5,2 5693,v_TiQcZKml5Bs,run,what happened after the person in the video took the dog,v_TiQcZKml5Bs,v_TiQcZKml5Bs_5,2 5694,v_IGT0dIKDGCw,bite frisbee,what happened to the dog after the man in the hat threw the frisbee,v_IGT0dIKDGCw,v_IGT0dIKDGCw_5,2 5695,v_PD-FXR7O9J0,lift dog,what happened after flushing the dog,v_PD-FXR7O9J0,v_PD-FXR7O9J0_5,2 5696,v_E_UkQGk7QAE,applause,what happened at the end of the skiing,v_E_UkQGk7QAE,v_E_UkQGk7QAE_5,2 5697,v_FxpP7lqvm30,children shook hands,what happened after the game,v_FxpP7lqvm30,v_FxpP7lqvm30_5,2 5698,v_OysON6LbF6Y,clapping,what happens after the harmonica is over,v_OysON6LbF6Y,v_OysON6LbF6Y_5,2 5699,v_pVuuVHA3RVw,video end,what happened after the run,v_pVuuVHA3RVw,v_pVuuVHA3RVw_5,2 5700,v_svNcNLEPKMc,handstand,what happened before the first athlete dived,v_svNcNLEPKMc,v_svNcNLEPKMc_5,2 5701,v_2DCHbuwZNSs,shake hand,what happened to the first person to feed the fish in the video after they fed the fish,v_2DCHbuwZNSs,v_2DCHbuwZNSs_5,2 5702,v_BjjN_aq_wq4,picture change,what happened after the first person appeared washing dishes,v_BjjN_aq_wq4,v_BjjN_aq_wq4_5,2 5703,v_cTxVTEzQDr8,try again,what happened after the first person wearing the red hat fell,v_cTxVTEzQDr8,v_cTxVTEzQDr8_5,2 5704,v_dZsk5Dp_5FE,fall down,what happened to the first firewood when the video started,v_dZsk5Dp_5FE,v_dZsk5Dp_5FE_5,2 5705,v_dGT_KGb0gyw,clap hand to celebrate,what happened after the game,v_dGT_KGb0gyw,v_dGT_KGb0gyw_5,2 5706,v_fLR-b-FDjlM,role pause,what happened after the game was over,v_fLR-b-FDjlM,v_fLR-b-FDjlM_5,2 5707,v_kMtjk1KFvXQ,do somersault,what happened to this girl before the balance beam,v_kMtjk1KFvXQ,v_kMtjk1KFvXQ_5,2 5708,v_d09u-0k3LdE,pirouette,what happened to the girl in the video before the chain ball was thrown,v_d09u-0k3LdE,v_d09u-0k3LdE_5,2 5709,v_7IwHwDuQdyU,raise hand,what happened to the girl in the blue vest after she made a move,v_7IwHwDuQdyU,v_7IwHwDuQdyU_5,2 5710,v_k-I4zLbgdpM,carry out performance,what happened after the little girl with the injured middle finger explained,v_k-I4zLbgdpM,v_k-I4zLbgdpM_5,2 5711,v_EBw5-KVV_PU,pendulum poss,what happened to the girls before they danced,v_EBw5-KVV_PU,v_EBw5-KVV_PU_5,2 5712,v_V08Q-DbT0GQ,eat noodles,what happened after the person with glasses drank with the boys in black,v_V08Q-DbT0GQ,v_V08Q-DbT0GQ_5,2 5713,v_HQVSLlKhupk,fall,what happened to the goalkeeper after the ball flew to the goal,v_HQVSLlKhupk,v_HQVSLlKhupk_5,2 5714,v_0mNZfG6CL74,dry powder,what happened to the gymnast after the wrestling,v_0mNZfG6CL74,v_0mNZfG6CL74_5,2 5715,v_V90CMuokf0c,drive to right,what happened to the hull after the man in black paddled on the left side,v_V90CMuokf0c,v_V90CMuokf0c_5,2 5716,v_CDncYtx6Lwc,pick up phone,what happened to the woman after she drank the water,v_CDncYtx6Lwc,v_CDncYtx6Lwc_5,2 5717,v_w4pO-1-FG5w,shave,what happened when the woman in the video took out her shaving irons,v_w4pO-1-FG5w,v_w4pO-1-FG5w_5,2 5718,v_4UdxT6Zmero,weeds are gone,what happened to the person using the lawn mower after finishing the grass,v_4UdxT6Zmero,v_4UdxT6Zmero_5,2 5719,v_SYh-j9bK_ls,right man stands up,what happened when the left half of the squad got up,v_SYh-j9bK_ls,v_SYh-j9bK_ls_5,2 5720,v_Woelo4XJkHE,laugh,what happened to the boy after eating an ice cream,v_Woelo4XJkHE,v_Woelo4XJkHE_5,2 5721,v_-Fk62y-1WHo,stop recording,what happened after the little boy played,v_-Fk62y-1WHo,v_-Fk62y-1WHo_5,2 5722,v_NjD6iWI3NvM,amuse dog,what happened before the boy did the exercise,v_NjD6iWI3NvM,v_NjD6iWI3NvM_5,2 5723,v_09ocXmGF-T4,adults chipping potatoes,what happened to the boy before he touched the potato ,v_09ocXmGF-T4,v_09ocXmGF-T4_5,2 5724,v_1px5LTVIR3A,bow,what happened to the little boy in the white suit before he left,v_1px5LTVIR3A,v_1px5LTVIR3A_5,2 5725,v_UNKf15ALDh8,loose soil,what happened to the woman with long hair before planting trees,v_UNKf15ALDh8,v_UNKf15ALDh8_5,2 5726,v_7dXqXFoju2M,drink,what happened to the long hair woman after she smoked a cigarette,v_7dXqXFoju2M,v_7dXqXFoju2M_5,2 5727,v_IxaBEVd2PZM,trot,what happened to the woman with the long braid before she went to ballet,v_IxaBEVd2PZM,v_IxaBEVd2PZM_5,2 5728,v_dKJMP8EmZjw,ship opened,what happened after the man got on the boat,v_dKJMP8EmZjw,v_dKJMP8EmZjw_5,2 5729,v_ivAvKRQQy1Q,put in plate,what happened after the white man finished cooking,v_ivAvKRQQy1Q,v_ivAvKRQQy1Q_5,2 5730,v_AQ3eFWxZ67U,jump into pool,what happened after the man came to the pool,v_AQ3eFWxZ67U,v_AQ3eFWxZ67U_5,2 5731,v_CFbkVO5b2g0,string string,what happened to this man before he played the instrument,v_CFbkVO5b2g0,v_CFbkVO5b2g0_5,2 5732,v_xuvp0jKMqRU,draw on pumpkin,what happened to the man before the pumpkin carving,v_xuvp0jKMqRU,v_xuvp0jKMqRU_5,2 5733,v_DOI6tsATsE4,white male nodding,what happened to the man in black before the show,v_DOI6tsATsE4,v_DOI6tsATsE4_5,2 5734,v_yRQpolWhJ6A,happy,what happened after the person in blue shook hands,v_yRQpolWhJ6A,v_yRQpolWhJ6A_5,2 5735,v_dN8LBey17O8,height of grass,what happened to the person in gray before he mowed the lawn,v_dN8LBey17O8,v_dN8LBey17O8_5,2 5736,v_iuc48VIWLJY,skiing leather ring,what happened to the man in the black hat after he left,v_iuc48VIWLJY,v_iuc48VIWLJY_5,2 5737,v_0iqx7o5WYW8,pass ball,what happened when the person in the black hat grabbed the ball,v_0iqx7o5WYW8,v_0iqx7o5WYW8_5,2 5738,v_zH1MiuiTsx8,stop rowing,what happened after the person in the blue jacket drew the paddle,v_zH1MiuiTsx8,v_zH1MiuiTsx8_5,2 5739,v_YvPoAOrjX5I,laugh,what happened after the person in blue sent the ball,v_YvPoAOrjX5I,v_YvPoAOrjX5I_5,2 5740,v_teffBaLEZQg,single hand support,what happened after the person wearing a blue hat fell,v_teffBaLEZQg,v_teffBaLEZQg_5,2 5741,v_faqijFZWQlo,haircut,what happened when the person in a gray jacket entered the house,v_faqijFZWQlo,v_faqijFZWQlo_5,2 5742,v_u_vLZxgO9Rw,squat,what happened before the man in green jumped rope,v_u_vLZxgO9Rw,v_u_vLZxgO9Rw_5,2 5743,v_TXSOSSGJYO0,raise hand,what happened to the man in gray after he lifted his feet,v_TXSOSSGJYO0,v_TXSOSSGJYO0_5,2 5744,v__V62aT_K8Zw,draw,what happened to the person in the hat after he smoked,v__V62aT_K8Zw,v__V62aT_K8Zw_5,2 5745,v_V6Sy8zpJSuc,hold down,what happened after the person in the hat laid out the carpet,v_V6Sy8zpJSuc,v_V6Sy8zpJSuc_5,2 5746,v_1lwG-y_QCkc,go to machine,what happened to the person in the hat before the engine,v_1lwG-y_QCkc,v_1lwG-y_QCkc_5,2 5747,v_2ShsRSJ9cqE,set up shelf,what happened before the person in the hat soldered it,v_2ShsRSJ9cqE,v_2ShsRSJ9cqE_5,2 5748,v_4z0meF-_b1I,start weeding,what happened when the person in the hat got out,v_4z0meF-_b1I,v_4z0meF-_b1I_5,2 5749,v_Z-zG845frso,jump up,what happened to the person in the red jacket before he hit the ball,v_Z-zG845frso,v_Z-zG845frso_5,2 5750,v_0xBP-TSsqb0,wear hoop,what happened to the man in the video after combing his hair,v_0xBP-TSsqb0,v_0xBP-TSsqb0_5,2 5751,v_bYxVbXzQToI,tune stringed instrument,what happened to the person in the white coat after he sat down,v_bYxVbXzQToI,v_bYxVbXzQToI_5,2 5752,v_C5SXR9nMY3I,tape,what happened to the person in the white coat after he wrapped the wrapping paper,v_C5SXR9nMY3I,v_C5SXR9nMY3I_5,2 5753,v_afMQA352X_A,be blocked,what happened when the person in the white threw a punch at the man in front of him,v_afMQA352X_A,v_afMQA352X_A_5,2 5754,v_H_IfIsKQ3Zw,assembly of steel,what happened to the person in white after the phone call,v_H_IfIsKQ3Zw,v_H_IfIsKQ3Zw_5,2 5755,v_NZskwwovSZI,relax with mobile phone,what happens to the person in white after get tattoos,v_NZskwwovSZI,v_NZskwwovSZI_5,2 5756,v_sNTOUuE7ZfM,make face,what happened to the person in the tie after the dance,v_sNTOUuE7ZfM,v_sNTOUuE7ZfM_5,2 5757,v_gNUCdXGxp0w,horse is moving,what happened to the person in the green vest after he mentioned the bridle,v_gNUCdXGxp0w,v_gNUCdXGxp0w_5,2 5758,v_e0yu4WgiZUM,swivel,what happened when the man swam to the wall,v_e0yu4WgiZUM,v_e0yu4WgiZUM_5,2 5759,v_Ko7Nt8UDP4Q,big mother,what happened to the person who opened the refrigerator after he had finished eating sandwich,v_Ko7Nt8UDP4Q,v_Ko7Nt8UDP4Q_5,2 5760,v_m73Cod-PmMQ,turn and half squat down,what happens when the person in the black scarf shows up in front of the camera,v_m73Cod-PmMQ,v_m73Cod-PmMQ_5,2 5761,v_7-UlUnaBjXU,motorcycle jump,what happened after the person wearing a white helmet accelerated up the slope,v_7-UlUnaBjXU,v_7-UlUnaBjXU_5,2 5762,v_-pkfcMUIEMo,piled to corner,what happened after the person shoveled the snow,v_-pkfcMUIEMo,v_-pkfcMUIEMo_5,2 5763,v_HowkVy5fOyk,audience cheered,what happened after the matador show ,v_HowkVy5fOyk,v_HowkVy5fOyk_5,2 5764,v_fh21bbDSVmA,others come on field,what happened after the gymnastic performance of the man in the white,v_fh21bbDSVmA,v_fh21bbDSVmA_5,2 5765,v_iAes5SVj_Fg,audience applauded,what happened to the man in yellow after the flip,v_iAes5SVj_Fg,v_iAes5SVj_Fg_5,2 5766,v_jWODw4vy45M,lens deflection,what happened after the dog closest to the camera walked ,v_jWODw4vy45M,v_jWODw4vy45M_5,2 5767,v_CfqnHsp6olc,put ball,what happened to the number 10 player before he played football,v_CfqnHsp6olc,v_CfqnHsp6olc_5,2 5768,v_EQWdo0FcKAo,in dialogue,what happened to the old person before he danced with the man in white,v_EQWdo0FcKAo,v_EQWdo0FcKAo_5,2 5769,v_V-46E7jMm-Y,aim,what happened to the old person in the black suit before he shot,v_V-46E7jMm-Y,v_V-46E7jMm-Y_5,2 5770,v_C27eI-S1Vkw,go through last,what happened to the operator after the hair was tied up,v_C27eI-S1Vkw,v_C27eI-S1Vkw_5,2 5771,v_0Um-HgjcnXY,fist,what happened after the orange player won,v_0Um-HgjcnXY,v_0Um-HgjcnXY_5,2 5772,v_bBRzBh0gAZQ,takeoff,what happened after the contestants started running,v_bBRzBh0gAZQ,v_bBRzBh0gAZQ_5,2 5773,v_vHnZ3NrZER0,measurement length,what happened to the person in black before he cut the paper,v_vHnZ3NrZER0,v_vHnZ3NrZER0_5,2 5774,v_Ynvd8OuXKGw,putting camera,what happened to the person in black before he danced,v_Ynvd8OuXKGw,v_Ynvd8OuXKGw_5,2 5775,v_ojTFTIwsa_c,wiping car with foam,what happened to the person in black before the car wash,v_ojTFTIwsa_c,v_ojTFTIwsa_c_5,2 5776,v_JB-ynj70saA,fall,what happened after the person with the black pants came down the second time,v_JB-ynj70saA,v_JB-ynj70saA_5,2 5777,v_1kkc9hDshP4,dance together,what happened to the person in purple when he came by,v_1kkc9hDshP4,v_1kkc9hDshP4_5,2 5778,v_p1QGn0IzfW0,grasp parallel bars,what happened to the person in red when he jumped,v_p1QGn0IzfW0,v_p1QGn0IzfW0_5,2 5779,v_GsPE54bMFwE,squat down,what happened to the person in the white short sleeves before the rotation,v_GsPE54bMFwE,v_GsPE54bMFwE_5,2 5780,v_87F9xGaMwCw,shut down machine,what happened after the person wearing black clothes for fitness,v_87F9xGaMwCw,v_87F9xGaMwCw_5,2 5781,v_uLsq6gQXQPM,climb stairs,what happened to the the person in green after he played the slide,v_uLsq6gQXQPM,v_uLsq6gQXQPM_5,2 5782,v_Y_nyVFn70Lk,washing spoon,what happened to the person in green after they washed the dishes,v_Y_nyVFn70Lk,v_Y_nyVFn70Lk_5,2 5783,v_OUxgs_QlPHE,dive preparation,what happened to the person in the green bathing suit before he went in the dive,v_OUxgs_QlPHE,v_OUxgs_QlPHE_5,2 5784,v_MDsJa6Yitwc,touch lens,what happened to the person in gray after he painted the wall,v_MDsJa6Yitwc,v_MDsJa6Yitwc_5,2 5785,v_b6QSzGwI9m4,shake table,what happened to the person in the orange suit after he went on the court,v_b6QSzGwI9m4,v_b6QSzGwI9m4_5,2 5786,v_VJh9W3Gcpmo,be smashed in drum,what happened to the person in red after he played the drums,v_VJh9W3Gcpmo,v_VJh9W3Gcpmo_5,2 5787,v_I16FTpQQiic,anchor jump rope,what happened to the person in red before he jumped,v_I16FTpQQiic,v_I16FTpQQiic_5,2 5788,v_zpaS2iYrJjk,hit masses,what happened to the person in the red jacket after the interview with the crowd,v_zpaS2iYrJjk,v_zpaS2iYrJjk_5,2 5789,v_L5IbDi09Yb4,see undersea biology,what happened to the person wearing diving suits after going to sea,v_L5IbDi09Yb4,v_L5IbDi09Yb4_5,2 5790,v_aPI0nPvzJlE,fall into river,what happened to the person in the video while he was surfing,v_aPI0nPvzJlE,v_aPI0nPvzJlE_5,2 5791,v_0k6GFx2ZCg8,cut sandwiches,what happened when the person in the video finished adding the material,v_0k6GFx2ZCg8,v_0k6GFx2ZCg8_5,2 5792,v_4uKoAk5NCkI,bow,what happened to the person in the video after the practice,v_4uKoAk5NCkI,v_4uKoAk5NCkI_5,2 5793,v_udSHsodv3gY,horse nodding,what happened after the person in the video brushed his horse,v_udSHsodv3gY,v_udSHsodv3gY_5,2 5794,v_Au4PfoK7hyw,put down flute,what happened to the person in the video after the perform,v_Au4PfoK7hyw,v_Au4PfoK7hyw_5,2 5795,v_-YwrMtiqHKg,wash face,what happened after the person in the video did the skin care,v_-YwrMtiqHKg,v_-YwrMtiqHKg_5,2 5796,v_k3WPc9HmtLM,put on bread,what happened to the person in the video after they finished the cream,v_k3WPc9HmtLM,v_k3WPc9HmtLM_5,2 5797,v_AB480dHyDeM,display shoes,what happened after the person in the video washed his shoes,v_AB480dHyDeM,v_AB480dHyDeM_5,2 5798,v_z6pmp8TrAVo,laugh,what happened after the person in the video washed the dishes,v_z6pmp8TrAVo,v_z6pmp8TrAVo_5,2 5799,v_chmegNbBTNc,touch liquid,what happened to the person in the video before he wiped the table,v_chmegNbBTNc,v_chmegNbBTNc_5,2 5800,v_yGTIEmZ7S2w,run up,what happened to the person in the video before the javelin was thrown,v_yGTIEmZ7S2w,v_yGTIEmZ7S2w_5,2 5801,v_YaC68rE4lwA,mouth leaking,what happened to the person in the video before he covered his mouth,v_YaC68rE4lwA,v_YaC68rE4lwA_5,2 5802,v_nYl_tYmijlM,immerse in it,what happened to the person in white after he played the drums,v_nYl_tYmijlM,v_nYl_tYmijlM_5,2 5803,v_i5qTK0mInTc,sit on sofa,what happened after the person in yellow turned on the tv,v_i5qTK0mInTc,v_i5qTK0mInTc_5,2 5804,v_JGPhQX97OSE,leave court,what happened after the person on the field played,v_JGPhQX97OSE,v_JGPhQX97OSE_5,2 5805,v_KZ1NEffR2Qg,to everyone ju gong,what happened to the person in the red pants after he jumped the rope,v_KZ1NEffR2Qg,v_KZ1NEffR2Qg_5,2 5806,v_GgnM5RGNtDE,start dancing,what happened to the person in the blue short sleeves after he stepped on the rope,v_GgnM5RGNtDE,v_GgnM5RGNtDE_5,2 5807,v_Y05GAiavfOg,display finger,what happened after the person in the video had his nails manicured,v_Y05GAiavfOg,v_Y05GAiavfOg_5,2 5808,v_aH39BSM0-Ag,throw out again,what happened to the person in the white hat after he picked up the ball,v_aH39BSM0-Ag,v_aH39BSM0-Ag_5,2 5809,v_I9ficvPdpZg,turn picture back,what happened to the person in the white coat after he painted the paint,v_I9ficvPdpZg,v_I9ficvPdpZg_5,2 5810,v_Npj77L31bhw,middle finger,what happened after the person wearing a hat tattooed,v_Npj77L31bhw,v_Npj77L31bhw_5,2 5811,v_HDt5z5Y0opo,pressing on player,what happened to the person with the short hair and the guy with the long hair,v_HDt5z5Y0opo,v_HDt5z5Y0opo_5,2 5812,v_Jix3poZOeZA,pick up racket,what happened after the player hit the first goal,v_Jix3poZOeZA,v_Jix3poZOeZA_5,2 5813,v_sPK-sbHIb3w,throw ball out,what happened to the athlete before shooting,v_sPK-sbHIb3w,v_sPK-sbHIb3w_5,2 5814,v_huFOZ2BiM_k,handstand,what happened before the athlete wearing a red trousers fell to the ground,v_huFOZ2BiM_k,v_huFOZ2BiM_k_5,2 5815,v_Vxw3yFCV2iA,get up slowly,what happened to the athlete after he caught the rope,v_Vxw3yFCV2iA,v_Vxw3yFCV2iA_5,2 5816,v_PJ7HOHdOdy4,pick up cup,what happened when person in the purple walked up to the bathroom table,v_PJ7HOHdOdy4,v_PJ7HOHdOdy4_5,2 5817,v_idkQqlwyff8,takeoff,what happened to the boy in red before the old person in blue knocked on the toy,v_idkQqlwyff8,v_idkQqlwyff8_5,2 5818,v_ldAHwbF8uWI,lose to opponent,what happened to the person in red after he pulled his wrist,v_ldAHwbF8uWI,v_ldAHwbF8uWI_5,2 5819,v_7BFbmEY3BNw,rowing,what happened when the person in red got out of the cave,v_7BFbmEY3BNw,v_7BFbmEY3BNw_5,2 5820,v_2-AMrzL7V-U,measuring distance,what happened to the referee after the first long jum,v_2-AMrzL7V-U,v_2-AMrzL7V-U_5,2 5821,v_FnPS6zn5S7M,backward dodge,what happened to the judge before the woman in the gym suit hit the ground,v_FnPS6zn5S7M,v_FnPS6zn5S7M_5,2 5822,v_H2fG7JRRMAs,concealed cards,what happens when the card shaper gets a good card,v_H2fG7JRRMAs,v_H2fG7JRRMAs_5,2 5823,v_blbaWHbtqTI,puff out smoke,what happened to the second person who showed up smoking,v_blbaWHbtqTI,v_blbaWHbtqTI_5,2 5824,v_SjlILJ2st-I,get first,what happened to the second player on the left when the game started,v_SjlILJ2st-I,v_SjlILJ2st-I_5,2 5825,v_6VXQoPNphgI,roll in sky,what happens to the man with short hair every time they land,v_6VXQoPNphgI,v_6VXQoPNphgI_5,2 5826,v_PdwWFueQErM,sweeping snow,what happened before the snow sweeper picked up his tools,v_PdwWFueQErM,v_PdwWFueQErM_5,2 5827,v_K1OsjA-f17E,start car wash,what happened to the staff after stopped the car,v_K1OsjA-f17E,v_K1OsjA-f17E_5,2 5828,v_V2UitlmX7Uo,grab railing,what happened to the standing person playing the guitar,v_V2UitlmX7Uo,v_V2UitlmX7Uo_5,2 5829,v_RXDVJlb97OI,twist butt,what happened to the person who stood after twist,v_RXDVJlb97OI,v_RXDVJlb97OI_5,2 5830,v_S6Sg1l78IW0,put down flute,what happened to the standing woman after playing,v_S6Sg1l78IW0,v_S6Sg1l78IW0_5,2 5831,v_6H0D8VaIli0,handshake,what happened after the hip hop contest in the video,v_6H0D8VaIli0,v_6H0D8VaIli0_5,2 5832,v_03c6QhTMDSs,demo bicycles,what happened to the person wearing striped clothes after the explanation was over,v_03c6QhTMDSs,v_03c6QhTMDSs_5,2 5833,v_VSsZZZHn1L0,gargle,what happened to the girl in a striped dress after pouring mouthwash,v_VSsZZZHn1L0,v_VSsZZZHn1L0_5,2 5834,v_eMgC7I-GcgA,fall,what happened to the surfers after the flips,v_eMgC7I-GcgA,v_eMgC7I-GcgA_5,2 5835,v_AtbTioB1_Kw,throw long pole,what happened after the trainer ran a certain distance,v_AtbTioB1_Kw,v_AtbTioB1_Kw_5,2 5836,v_bYNQ0GrCt64,lift barbell,what happened to the weight lifter after he held the barbell,v_bYNQ0GrCt64,v_bYNQ0GrCt64_5,2 5837,v_tRFK1BMKaRo,cross leg,what happened to the weight lifter lifting the barbell,v_tRFK1BMKaRo,v_tRFK1BMKaRo_5,2 5838,v__jIXs7AFTxw,wear socks,what happened to the person in the white suit after he wiped his feet,v__jIXs7AFTxw,v__jIXs7AFTxw_5,2 5839,v__QBTD1bLSI0,wipe hands,what happened to the person in white after he washed his hands,v__QBTD1bLSI0,v__QBTD1bLSI0_5,2 5840,v_e0yLhjXQIXI,site,what happened to the person in white after he flipped,v_e0yLhjXQIXI,v_e0yLhjXQIXI_5,2 5841,v_AjqnGUbsduw,stalemate,what happened to the person in white and the gray man after the wrench,v_AjqnGUbsduw,v_AjqnGUbsduw_5,2 5842,v_2UhbDOd43zU,hold black clothes man,what happened to the person in white before the person in black practiced for the first time,v_2UhbDOd43zU,v_2UhbDOd43zU_5,2 5843,v_Vhn4SuPhu-0,sleep,what happened to the person in white before the person in black practiced for the first time,v_Vhn4SuPhu-0,v_Vhn4SuPhu-0_5,2 5844,v_QJ5xv6oj1sk,turn around,what happened to the person in white shirt after he lifted his hand for the fourth time,v_QJ5xv6oj1sk,v_QJ5xv6oj1sk_5,2 5845,v_iKclcQEl4zI,run up,what happened to the girl in white sleeves before the last flip,v_iKclcQEl4zI,v_iKclcQEl4zI_5,2 5846,v_cAiig_569fI,hit ball,what happened to the woman in the blue vest after she jumped,v_cAiig_569fI,v_cAiig_569fI_5,2 5847,v__SJOVswvGRc,kick ball out,what happened to the woman in red when she caught the ball,v__SJOVswvGRc,v__SJOVswvGRc_5,2 5848,v_Db9VWkgMpbE,motion,what happened to the woman in the video before she drank water,v_Db9VWkgMpbE,v_Db9VWkgMpbE_5,2 5849,v_utgRhyBvtRU,clapping,what happened to the woman in white before she lay down for the second time,v_utgRhyBvtRU,v_utgRhyBvtRU_5,2 5850,v_6xBh3vzhgo4,skater surfers,what happened to the woman in the life jacket after the speedboat started,v_6xBh3vzhgo4,v_6xBh3vzhgo4_5,2 5851,v_DTI__3fkSzM,continue to weave sweater,what happened to the girl who turned,v_DTI__3fkSzM,v_DTI__3fkSzM_5,2 5852,v_1PNjVTM0Zto,raise hand,what happened to the person in yellow clothes before moving his feet for the first time,v_1PNjVTM0Zto,v_1PNjVTM0Zto_5,2 5853,v_iQnnCZTl_7U,clapping,what happened to the person in young after he finished the cake,v_iQnnCZTl_7U,v_iQnnCZTl_7U_5,2 5854,v_kpOAGEYHts8,put cards in box,what happened to the woman before the deal,v_kpOAGEYHts8,v_kpOAGEYHts8_5,2 5855,v_zTHkqpNFGno,fiddle with hair,what happened to the person in the black coat after he combed the bangs,v_zTHkqpNFGno,v_zTHkqpNFGno_5,2 5856,v_LYTWYSqsTCE,go away,what happened to the person in gray after the third wall,v_LYTWYSqsTCE,v_LYTWYSqsTCE_5,2 5857,v_hIHeMA1oRrY,refresh,what happened to the woman in the video after she put on her sunscreen,v_hIHeMA1oRrY,v_hIHeMA1oRrY_5,2 5858,v_CvbL36Y8hN0,psychological adjustment,what happened to the woman in the video before the bungee jump,v_CvbL36Y8hN0,v_CvbL36Y8hN0_5,2 5859,v_bRgvAHL3dJk,join noodles,what happens when the blond person fry shrimp and clams,v_bRgvAHL3dJk,v_bRgvAHL3dJk_5,2 5860,v_qWgF9hxNbP8,fall off stage,what happened to the person in undressed after they were thrown to the ground,v_qWgF9hxNbP8,v_qWgF9hxNbP8_5,2 5861,v_VpZzLvzU7_k,skidding,what happened after getting off the cable car,v_VpZzLvzU7_k,v_VpZzLvzU7_k_5,2 5862,v_hxErUs42bBI,forward,what happened after the person in red waved his hand,v_hxErUs42bBI,v_hxErUs42bBI_5,2 5863,v_HTYzbAFUghU,stir by spatula,what happened when the person in the video put the egg liquid into the pot,v_HTYzbAFUghU,v_HTYzbAFUghU_5,2 5864,v_3LwQ2yq85LU,someone is parachuting,what happened to the swordsman fencing on the battlements,v_3LwQ2yq85LU,v_3LwQ2yq85LU_5,2 5865,v_lYP05IRcOPE,fall off air cushion,what happened to the second person drifted to the front of the staff,v_lYP05IRcOPE,v_lYP05IRcOPE_5,2 5866,v_Z6b4oFjIznU,finish up job,what happened when the person on the balance beam came down from the balance beam,v_Z6b4oFjIznU,v_Z6b4oFjIznU_5,2 5867,v_H_JLBvfP88U,chasing people,what happened after the cow came out of the door,v_H_JLBvfP88U,v_H_JLBvfP88U_5,2 5868,v_3i3SUPsyZtA,stir,what happened after the chef poured the eggs into the round pan,v_3i3SUPsyZtA,v_3i3SUPsyZtA_5,2 5869,v_MAGeYoFuCgo,spaghetti,what happened to the chef after he poured the noodles into the filter bucket,v_MAGeYoFuCgo,v_MAGeYoFuCgo_5,2 5870,v_sqv3M6MPKjQ,fall,what happened when the child approached the flower bed,v_sqv3M6MPKjQ,v_sqv3M6MPKjQ_5,2 5871,v_5UZ2ft8Y3sI,bump into pot,what happened after the curling was thrown out,v_5UZ2ft8Y3sI,v_5UZ2ft8Y3sI_5,2 5872,v_FFMugev85IY,continue knocking,what happened when the drums stopped,v_FFMugev85IY,v_FFMugev85IY_5,2 5873,v_j6BCgvUusWs,ask for note,what happened after the first dealer finished the card,v_j6BCgvUusWs,v_j6BCgvUusWs_5,2 5874,v_amgpZtvd9h0,bow hairstyle,what happened after the hair of girl was braided,v_amgpZtvd9h0,v_amgpZtvd9h0_5,2 5875,v_ds3mAmUPxYA,play musical instrument,what happened when the last person raised his baton,v_ds3mAmUPxYA,v_ds3mAmUPxYA_5,2 5876,v_9eniCub7u60,two people dance,what happened after the little boy ran out,v_9eniCub7u60,v_9eniCub7u60_5,2 5877,v_Av0VsTxJd78,skiing,what happened after someone lifted up the window,v_Av0VsTxJd78,v_Av0VsTxJd78_5,2 5878,v_YVqRQDkdA8U,fall down,what happened after the person in blue jumped,v_YVqRQDkdA8U,v_YVqRQDkdA8U_5,2 5879,v_TGffgRXc1eQ,cross hand,what happened when the person in blue raised his hand ,v_TGffgRXc1eQ,v_TGffgRXc1eQ_5,2 5880,v_Mk7Yjq1U8OI,ball landed,what happened to the person who started playing blue pants for the fifth time,v_Mk7Yjq1U8OI,v_Mk7Yjq1U8OI_5,2 5881,v_PFeerDZbGn8,dog chases plate,what happened after the person threw out the plate,v_PFeerDZbGn8,v_PFeerDZbGn8_5,2 5882,v_auO4r3De6vc,dog came back with something,what happened after the owner dropped the plate,v_auO4r3De6vc,v_auO4r3De6vc_5,2 5883,v_z6l9utYlIrw,be gone,what happened after the person wearing red clothes got up,v_z6l9utYlIrw,v_z6l9utYlIrw_5,2 5884,v_hRsn4nesCQo,dipping pigment,what happened to the person in gray after he turned around,v_hRsn4nesCQo,v_hRsn4nesCQo_5,2 5885,v_BhgcXqWQhkQ,video end,what happened when the person on the stage stooped down to say thank you,v_BhgcXqWQhkQ,v_BhgcXqWQhkQ_5,2 5886,v_RtF6TGqwa7Y,speak,what happened to the person who was sitting with his head up,v_RtF6TGqwa7Y,v_RtF6TGqwa7Y_5,2 5887,v_2uUNiV8xmEo,attack,what happened to the player in white after he fell,v_2uUNiV8xmEo,v_2uUNiV8xmEo_5,2 5888,v_I2XqSiNerwg,swing rod,what happened after the person in white took out the pole,v_I2XqSiNerwg,v_I2XqSiNerwg_5,2 5889,v_hvrKRg166eQ,raise your left hand,what happened after the woman waved in the middle,v_hvrKRg166eQ,v_hvrKRg166eQ_5,2 5890,v_5dN-MpXG9OE,back somersault,what happened after the player in the video jumped forward,v_5dN-MpXG9OE,v_5dN-MpXG9OE_5,2 5891,v_Ki1bs5X_S5k,plaything,what happened after the kid hit the bottle with a stick,v_Ki1bs5X_S5k,v_Ki1bs5X_S5k_5,2 5892,v_v0azz4XzW_s,touch ones head,what happens when people in video do not turn on the switch,v_v0azz4XzW_s,v_v0azz4XzW_s_5,2 5893,v_kistIwzeQOU,stand on bench,what happened before the man wearing white clothes put on a wall cloth,v_kistIwzeQOU,v_kistIwzeQOU_5,2 5894,v_UvOEuhS0V3E,rouge lips,what happens to a long hair woman before a short hair man eats something,v_UvOEuhS0V3E,v_UvOEuhS0V3E_5,2 5895,v_lOZ9bfzq89o,original takeoff,what happened to the athlete in green before he doubled over,v_lOZ9bfzq89o,v_lOZ9bfzq89o_5,2 5896,v_FWZ6wgaJ_L4,rinse,what happened to the person wearing blue clothes after cutting things out,v_FWZ6wgaJ_L4,v_FWZ6wgaJ_L4_5,2 5897,v_G4-qjGC_3VA,straighten rod,what happened before the person in black jumped up,v_G4-qjGC_3VA,v_G4-qjGC_3VA_5,2 5898,v_LsVCwr6qPmY,ironing sleeves,what happened after the person in blue ironed his collar,v_LsVCwr6qPmY,v_LsVCwr6qPmY_5,2 5899,v_H0dG_1Vgw4Q,squating,what happens when the person in blue shorts picks up a barbell,v_H0dG_1Vgw4Q,v_H0dG_1Vgw4Q_5,2 5900,v_4MwnHtlaEUY,start riding,what happened after the person in the video assembled the bicycle,v_4MwnHtlaEUY,v_4MwnHtlaEUY_5,2 5901,v_lU6DMCif3eE,open mouth ventilation,what happened to the person in the video after blowing the first paragraph,v_lU6DMCif3eE,v_lU6DMCif3eE_5,2 5902,v_VvsYrfEvvUw,support yourself,what happened to the person in the video after holding the parallel bars,v_VvsYrfEvvUw,v_VvsYrfEvvUw_5,2 5903,v_6JZVpl2S2Mg,dark bigger,what happened when the person in the video put the pupil on,v_6JZVpl2S2Mg,v_6JZVpl2S2Mg_5,2 5904,v_cCDffwsJvsY,light,what happened to the person in the video after he took out the ignition,v_cCDffwsJvsY,v_cCDffwsJvsY_5,2 5905,v_qaml4eEk9hY,mice,what happened to the person in the video after the first turn,v_qaml4eEk9hY,v_qaml4eEk9hY_5,2 5906,v_meNgZdu8tIk,smear oil,what happened to the person in the video before he baked the sandwich,v_meNgZdu8tIk,v_meNgZdu8tIk_5,2 5907,v_g9lNpSAtHgI,lacquer,what happened to the person in the video before he painted the chair,v_g9lNpSAtHgI,v_g9lNpSAtHgI_5,2 5908,v_2k-qlZxc9l4,coated hair cream,what happened to the person in the video before shaving hair of his legs,v_2k-qlZxc9l4,v_2k-qlZxc9l4_5,2 5909,v_G25py7yEVyo,handshake,what happened when the person in white took the flowers,v_G25py7yEVyo,v_G25py7yEVyo_5,2 5910,v_nhQTxZlzG1Q,rest,what happens after the person in black play games,v_nhQTxZlzG1Q,v_nhQTxZlzG1Q_5,2 5911,v_z8x3wUZYOaM,throw away,what happened to the person wearing black clothes after pulling hair,v_z8x3wUZYOaM,v_z8x3wUZYOaM_5,2 5912,v_SB0dU5oDvaE,dog jumped up,what happened after the person in black shoveled the snow,v_SB0dU5oDvaE,v_SB0dU5oDvaE_5,2 5913,v_tgPD2SZo_DY,counterclockwise running,what happened to the person in blue after he ran off with the needle,v_tgPD2SZo_DY,v_tgPD2SZo_DY_5,2 5914,v_pKOy4HJwCqo,back to lens,what happened to the person in the dark green suit facing the camera,v_pKOy4HJwCqo,v_pKOy4HJwCqo_5,2 5915,v_MDWaKr7Gu5Q,push leaves off,what happens to the person in green when they blow away the fallen leaves,v_MDWaKr7Gu5Q,v_MDWaKr7Gu5Q_5,2 5916,v_d6gGZFQOxOg,squat,what happened to the person in green before he lifted the weight,v_d6gGZFQOxOg,v_d6gGZFQOxOg_5,2 5917,v_09ocXmGF-T4,yes,does the boy in black teach the boy to peel potatoes,v_09ocXmGF-T4,v_09ocXmGF-T4_2,3 5918,v_Flm_SCK10GQ,no,does the person on the right win,v_Flm_SCK10GQ,v_Flm_SCK10GQ_10,3 5919,v_KPRymTsPCC0,no,is the boy with glasses come here alone,v_KPRymTsPCC0,v_KPRymTsPCC0_3,3 5920,v_F7K2oT7ADkk,yes,is the bubble in the pool big,v_F7K2oT7ADkk,v_F7K2oT7ADkk_8,3 5921,v_S7CW-si2JjA,yes,is the cake on the table,v_S7CW-si2JjA,v_S7CW-si2JjA_2,3 5922,v_S7CW-si2JjA,no,is the cake under the table,v_S7CW-si2JjA,v_S7CW-si2JjA_3,3 5923,v_VFC-V06hVj0,yes,does it necessary to hold a camel during the ride,v_VFC-V06hVj0,v_VFC-V06hVj0_2,3 5924,v_e4kS-n7_LRU,yes,does the car in the video run,v_e4kS-n7_LRU,v_e4kS-n7_LRU_9,3 5925,v_brJIpRGcBFU,yes,is the car introduced in the video convenient for people,v_brJIpRGcBFU,v_brJIpRGcBFU_10,3 5926,v_g9lNpSAtHgI,yes,is the chair in the video made of wood,v_g9lNpSAtHgI,v_g9lNpSAtHgI_10,3 5927,v_MAGeYoFuCgo,yes,does the chef cook noodles in the room,v_MAGeYoFuCgo,v_MAGeYoFuCgo_2,3 5928,v_MAGeYoFuCgo,no,does the chef cook noodles outside,v_MAGeYoFuCgo,v_MAGeYoFuCgo_3,3 5929,v_3i3SUPsyZtA,yes,does the chef wear a black watch in his left hand,v_3i3SUPsyZtA,v_3i3SUPsyZtA_2,3 5930,v_3i3SUPsyZtA,no,does the chef wear a white watch in his left hand,v_3i3SUPsyZtA,v_3i3SUPsyZtA_3,3 5931,v_Ki1bs5X_S5k,no,does the child hold a flower,v_Ki1bs5X_S5k,v_Ki1bs5X_S5k_3,3 5932,v_Ki1bs5X_S5k,yes,does the child hold a stick,v_Ki1bs5X_S5k,v_Ki1bs5X_S5k_2,3 5933,v_MAYrBia9Xnw,yes,does the child perform martial arts indoors,v_MAYrBia9Xnw,v_MAYrBia9Xnw_2,3 5934,v_MAYrBia9Xnw,no,does the child perform martial arts outdoors,v_MAYrBia9Xnw,v_MAYrBia9Xnw_3,3 5935,v_dZsk5Dp_5FE,yes,is the child's clothes light gray,v_dZsk5Dp_5FE,v_dZsk5Dp_5FE_2,3 5936,v_AB5cWhlQ0Kk,yes,is putting christmas tree in first then decorating in the video,v_AB5cWhlQ0Kk,v_AB5cWhlQ0Kk_9,3 5937,v_chmegNbBTNc,yes,does the cloth that wipes the table blue,v_chmegNbBTNc,v_chmegNbBTNc_2,3 5938,v_chmegNbBTNc,no,does the cloth that wipes the table white,v_chmegNbBTNc,v_chmegNbBTNc_3,3 5939,v_BdRH3lpopLQ,yes,is the clothes with the number 19 color white,v_BdRH3lpopLQ,v_BdRH3lpopLQ_2,3 5940,v_FkbpD1zWdPw,yes,does the girl playing in the archery,v_FkbpD1zWdPw,v_FkbpD1zWdPw_2,3 5941,v_pzTqZWPubk8,no,is the complexity of brushing teeth high,v_pzTqZWPubk8,v_pzTqZWPubk8_10,3 5942,v_Jhcis4S2Vsg,no,is the contestant indoors in the video,v_Jhcis4S2Vsg,v_Jhcis4S2Vsg_3,3 5943,v_Jhcis4S2Vsg,yes,is the contestant outdoors in the video,v_Jhcis4S2Vsg,v_Jhcis4S2Vsg_2,3 5944,v_2_H3lxMWvPo,no,does the cow fight in the video indoors,v_2_H3lxMWvPo,v_2_H3lxMWvPo_3,3 5945,v_2_H3lxMWvPo,yes,does the cow fight in the video outdoors,v_2_H3lxMWvPo,v_2_H3lxMWvPo_2,3 5946,v_Erje-PwY9hE,no,does the crocodile appear in the video,v_Erje-PwY9hE,v_Erje-PwY9hE_3,3 5947,v_PBYg9ekd86w,no,is the cup black,v_PBYg9ekd86w,v_PBYg9ekd86w_3,3 5948,v_PBYg9ekd86w,yes,is the cup red,v_PBYg9ekd86w,v_PBYg9ekd86w_2,3 5949,v_vHnZ3NrZER0,no,do you use cups for measuring length,v_vHnZ3NrZER0,v_vHnZ3NrZER0_3,3 5950,v_FtRGOgg0Qh8,yes,is the cyclist an adult,v_FtRGOgg0Qh8,v_FtRGOgg0Qh8_2,3 5951,v_bWZkD_s1940,no,does the dance girl's dance successful,v_bWZkD_s1940,v_bWZkD_s1940_6,3 5952,v_1494UwmvAJM,yes,is the dessert delicious in the video,v_1494UwmvAJM,v_1494UwmvAJM_8,3 5953,v_Zt9qvbUnNhc,no,is the somersault in the video difficult,v_Zt9qvbUnNhc,v_Zt9qvbUnNhc_10,3 5954,v_an1R4BP97JY,no,is the fertilizer application in the video difficult,v_an1R4BP97JY,v_an1R4BP97JY_9,3 5955,v_ZLG1Exv8HrY,no,is the playing the parallel bars in the video difficult,v_ZLG1Exv8HrY,v_ZLG1Exv8HrY_10,3 5956,v_r2H-cnti8GI,yes,is the playing a magic cube in a video game in the video difficult,v_r2H-cnti8GI,v_r2H-cnti8GI_10,3 5957,v_2UhbDOd43zU,yes,is this martial art in the video difficult,v_2UhbDOd43zU,v_2UhbDOd43zU_10,3 5958,v_R74yolowFPs,yes,does the disc in the video roll out with a stick,v_R74yolowFPs,v_R74yolowFPs_2,3 5959,v_Ep5LuX_2gfI,shallow sea,is the diver in the deep sea or in the shallow sea,v_Ep5LuX_2gfI,v_Ep5LuX_2gfI_8,6 5960,v_b0qGo-HT5iQ,no,does the doctor wear glasses,v_b0qGo-HT5iQ,v_b0qGo-HT5iQ_10,3 5961,v_-8SgY4vW4xM,no,is the dog black,v_-8SgY4vW4xM,v_-8SgY4vW4xM_3,3 5962,v_auO4r3De6vc,no,is the dog in the video all pure color,v_auO4r3De6vc,v_auO4r3De6vc_8,3 5963,v_eQwLUJ3P7wI,no,is the dog red,v_eQwLUJ3P7wI,v_eQwLUJ3P7wI_3,3 5964,v_PD-FXR7O9J0,yes,does dog listen to you in the shower,v_PD-FXR7O9J0,v_PD-FXR7O9J0_7,3 5965,v_-8SgY4vW4xM,yes,is the dog white,v_-8SgY4vW4xM,v_-8SgY4vW4xM_2,3 5966,v_v-UmNR5yeDc,yes,does the long-haired lady wear black clothes,v_v-UmNR5yeDc,v_v-UmNR5yeDc_2,3 5967,v_PJ7HOHdOdy4,yes,does the person in the middle wear purple clothes,v_PJ7HOHdOdy4,v_PJ7HOHdOdy4_2,3 5968,v_PJ7HOHdOdy4,no,does the person in the middle wear purple clothes,v_PJ7HOHdOdy4,v_PJ7HOHdOdy4_3,3 5969,v_BdRH3lpopLQ,no,is the number 19 on the clothes color black,v_BdRH3lpopLQ,v_BdRH3lpopLQ_3,3 5970,v_CaeZoHNHul0,t shirt,does brunette girl wear long sleeves or short sleeves,v_CaeZoHNHul0,v_CaeZoHNHul0_8,5 5971,v_v-UmNR5yeDc,no,does the long-haired lady wear white clothes,v_v-UmNR5yeDc,v_v-UmNR5yeDc_3,3 5972,v_W9H2qVnIWXs,yes,is the person that is bathing dog wearing red,v_W9H2qVnIWXs,v_W9H2qVnIWXs_2,3 5973,v_CaeZoHNHul0,yes,is the black-haired girl's eyes closed when she plays the piano,v_CaeZoHNHul0,v_CaeZoHNHul0_7,3 5974,v_vSv1qMMt4Bk,no,is the female presiding long hair,v_vSv1qMMt4Bk,v_vSv1qMMt4Bk_3,3 5975,v_HQVSLlKhupk,no,is the fence at the edge of the site green,v_HQVSLlKhupk,v_HQVSLlKhupk_3,3 5976,v_HQVSLlKhupk,yes,is the fence at the edge of the site yellow,v_HQVSLlKhupk,v_HQVSLlKhupk_2,3 5977,v_pcLGX5qvUcI,yes,is the number on the back of a skater's shirt 23,v_pcLGX5qvUcI,v_pcLGX5qvUcI_2,3 5978,v_pcLGX5qvUcI,no,is the number behind the skater's shirt 32,v_pcLGX5qvUcI,v_pcLGX5qvUcI_3,3 5979,v_BjjN_aq_wq4,no,is the first person wearing black,v_BjjN_aq_wq4,v_BjjN_aq_wq4_3,3 5980,v_BjjN_aq_wq4,yes,is the first person wearing a yellow clothes,v_BjjN_aq_wq4,v_BjjN_aq_wq4_2,3 5981,v_blbaWHbtqTI,no,is the first person wearing shorts,v_blbaWHbtqTI,v_blbaWHbtqTI_3,3 5982,v_blbaWHbtqTI,yes,is the first person wearing trousers,v_blbaWHbtqTI,v_blbaWHbtqTI_2,3 5983,v_k--dW53UQWs,no,is the fitness person standing,v_k--dW53UQWs,v_k--dW53UQWs_3,3 5984,v_3oy4P1gyU4k,no,is the game in the video a basketball match,v_3oy4P1gyU4k,v_3oy4P1gyU4k_3,3 5985,v_3oy4P1gyU4k,yes,is the game in the video a billiard game,v_3oy4P1gyU4k,v_3oy4P1gyU4k_2,3 5986,v_C5SXR9nMY3I,sitting,is the gift holder standing or sitting,v_C5SXR9nMY3I,v_C5SXR9nMY3I_10,8 5987,v_cCimLg-8Dy4,yes,does the blindfolded girl hit the toy,v_cCimLg-8Dy4,v_cCimLg-8Dy4_8,3 5988,v_N75m1Z4RqbA,yes,is the girl dancing long hair,v_N75m1Z4RqbA,v_N75m1Z4RqbA_9,3 5989,v_e0yLhjXQIXI,no,is the girl in black doing swivel movement,v_e0yLhjXQIXI,v_e0yLhjXQIXI_3,3 5990,v_28WDlVOgslg,no,is the girl in pink clothes curly hair,v_28WDlVOgslg,v_28WDlVOgslg_3,3 5991,v_WNgI2qBvPrY,yes,is the girl in purple clothes long hair,v_WNgI2qBvPrY,v_WNgI2qBvPrY_2,3 5992,v_kMtjk1KFvXQ,yes,is this girl participating in the competition,v_kMtjk1KFvXQ,v_kMtjk1KFvXQ_2,3 5993,v__G4EVIG9YaE,yes,is the girl in the video around the tree pile,v__G4EVIG9YaE,v__G4EVIG9YaE_9,3 5994,v_Dd5yTxwKzXw,yes,is the girl in the video beautiful,v_Dd5yTxwKzXw,v_Dd5yTxwKzXw_9,3 5995,v_d09u-0k3LdE,no,is the girl in the video chinese,v_d09u-0k3LdE,v_d09u-0k3LdE_9,3 5996,v_5mWZY2XkWSQ,yes,is the girl in the video indoors,v_5mWZY2XkWSQ,v_5mWZY2XkWSQ_2,3 5997,v_5mWZY2XkWSQ,no,is the girl in the video outdoors,v_5mWZY2XkWSQ,v_5mWZY2XkWSQ_3,3 5998,v__G4EVIG9YaE,no,is the girl in the video wearing a black coat,v__G4EVIG9YaE,v__G4EVIG9YaE_3,3 5999,v__G4EVIG9YaE,yes,is the girl in the video wearing a camouflage coat,v__G4EVIG9YaE,v__G4EVIG9YaE_2,3 6000,v_bWZkD_s1940,yes,is the girl wearing a black dress in the video long hair,v_bWZkD_s1940,v_bWZkD_s1940_2,3 6001,v_VSsZZZHn1L0,no,is the girl with the headband wearing a striped dress,v_VSsZZZHn1L0,v_VSsZZZHn1L0_3,3 6002,v_VSsZZZHn1L0,yes,is the girl with the headband wearing black clothes,v_VSsZZZHn1L0,v_VSsZZZHn1L0_2,3 6003,v_amgpZtvd9h0,yes,is the girl wearing a striped dress,v_amgpZtvd9h0,v_amgpZtvd9h0_2,3 6004,v_hGPCJb2g1tQ,no,is the dress of the girl standing on the equipment yellow,v_hGPCJb2g1tQ,v_hGPCJb2g1tQ_3,3 6005,v_k-I4zLbgdpM,yes,is the little girl with the injured middle finger performing gymnastics,v_k-I4zLbgdpM,v_k-I4zLbgdpM_2,3 6006,v_cCimLg-8Dy4,no,is the girl with black clothes in the hands of sugar,v_cCimLg-8Dy4,v_cCimLg-8Dy4_3,3 6007,v_cCimLg-8Dy4,long hair,is the girl with black clothes long hair or short hair,v_cCimLg-8Dy4,v_cCimLg-8Dy4_9,8 6008,v_28WDlVOgslg,yes,is the girl with pink clothes yellow hair,v_28WDlVOgslg,v_28WDlVOgslg_2,3 6009,v_9snScUyE8_4,yes,is the girl with yellow hair straight,v_9snScUyE8_4,v_9snScUyE8_4_2,3 6010,v_d09u-0k3LdE,yes,is the girl's action standard in the video,v_d09u-0k3LdE,v_d09u-0k3LdE_10,3 6011,v_EBw5-KVV_PU,yes,is the girl's dress black,v_EBw5-KVV_PU,v_EBw5-KVV_PU_2,3 6012,v_EETygPQ-j08,yes,is the blue girl's protective gear pink,v_EETygPQ-j08,v_EETygPQ-j08_2,3 6013,v_Oyycph_Ukfg,no,is the glove pure color,v_Oyycph_Ukfg,v_Oyycph_Ukfg_7,3 6014,v_rMj2JWNJzkw,yes,is the goal on the water,v_rMj2JWNJzkw,v_rMj2JWNJzkw_2,3 6015,v__l251ZuOCYU,yes,is the goalkeeper wrestling in the video,v__l251ZuOCYU,v__l251ZuOCYU_9,3 6016,v__fLhtWSCaSo,yes,is the grass green,v__fLhtWSCaSo,v__fLhtWSCaSo_2,3 6017,v_AQ3eFWxZ67U,yes,is the person next to the slide in the video wearing a green dress,v_AQ3eFWxZ67U,v_AQ3eFWxZ67U_2,3 6018,v_brJIpRGcBFU,yes,is the gray person using a machine to mow the grass,v_brJIpRGcBFU,v_brJIpRGcBFU_2,3 6019,v_-eJT11AuOa0,yes,is the person waist up wearing a t - shirt,v_-eJT11AuOa0,v_-eJT11AuOa0_9,3 6020,v_GSrBZXLSwWI,yes,did you use a hairdryer to make the cake in the video,v_GSrBZXLSwWI,v_GSrBZXLSwWI_9,3 6021,v_C27eI-S1Vkw,long,is the hair of a dummy long or short,v_C27eI-S1Vkw,v_C27eI-S1Vkw_6,8 6022,v_C27eI-S1Vkw,no,is the hair of a dummy red,v_C27eI-S1Vkw,v_C27eI-S1Vkw_3,3 6023,v_C27eI-S1Vkw,straight,is the hair of a dummy straight or curly hair,v_C27eI-S1Vkw,v_C27eI-S1Vkw_10,8 6024,v_qZMcbBsQorE,yes,is the hair of a person wearing a gray vest tied up,v_qZMcbBsQorE,v_qZMcbBsQorE_2,3 6025,v_tRFK1BMKaRo,yes,is the hair of a weightlifter black,v_tRFK1BMKaRo,v_tRFK1BMKaRo_2,3 6026,v_C27eI-S1Vkw,yes,is the dummy's hair yellow,v_C27eI-S1Vkw,v_C27eI-S1Vkw_2,3 6027,v_tRFK1BMKaRo,no,is the weight of the person's hair yellow,v_tRFK1BMKaRo,v_tRFK1BMKaRo_3,3 6028,v_amgpZtvd9h0,no,does the person with the hairpin wear a striped suit,v_amgpZtvd9h0,v_amgpZtvd9h0_3,3 6029,v_ufrTSC3Dewg,yes,is the hat in green clothes black,v_ufrTSC3Dewg,v_ufrTSC3Dewg_2,3 6030,v_ufrTSC3Dewg,no,is the hat in green clothes white,v_ufrTSC3Dewg,v_ufrTSC3Dewg_3,3 6031,v_3Rzyta8op6s,no,does the bald head in the video wear a watch,v_3Rzyta8op6s,v_3Rzyta8op6s_3,3 6032,v_vnZmsOgWs0o,yes,is the helmet used during the skiing,v_vnZmsOgWs0o,v_vnZmsOgWs0o_2,3 6033,v_UzmsAb15Bso,no,is the helmet used during the sliding,v_UzmsAb15Bso,v_UzmsAb15Bso_3,3 6034,v_WGUzmra3h_w,short sleeve,is the high jumper wearing long sleeves or short sleeves,v_WGUzmra3h_w,v_WGUzmra3h_w_7,8 6035,v_BhgcXqWQhkQ,no,is the instrument in the video the same,v_BhgcXqWQhkQ,v_BhgcXqWQhkQ_3,3 6036,v_7CM2OYr-Csw,no,is the kite black,v_7CM2OYr-Csw,v_7CM2OYr-Csw_3,3 6037,v_CDncYtx6Lwc,no,is the lady wearing a bracelet in the video,v_CDncYtx6Lwc,v_CDncYtx6Lwc_3,3 6038,v_BMy7CBVxH5M,yes,is the lady wearing a purple dress,v_BMy7CBVxH5M,v_BMy7CBVxH5M_2,3 6039,v_CDncYtx6Lwc,yes,is the lady wearing a ring in the video,v_CDncYtx6Lwc,v_CDncYtx6Lwc_2,3 6040,v_penDFcEdu7U,yes,is the lady working with gloves,v_penDFcEdu7U,v_penDFcEdu7U_9,3 6041,v_7BUr2cN8CLs,yes,did the blonde hair woman at the end of the video clench,v_7BUr2cN8CLs,v_7BUr2cN8CLs_2,3 6042,v_7BUr2cN8CLs,no,did the blonde hair woman at the end of the video angry,v_7BUr2cN8CLs,v_7BUr2cN8CLs_3,3 6043,v_zxpQHLwZCug,yes,is the left wrist worn by a person in blue,v_zxpQHLwZCug,v_zxpQHLwZCug_2,3 6044,v_eKdtOKqLMRE,no,is the light on the stage always on,v_eKdtOKqLMRE,v_eKdtOKqLMRE_9,3 6045,v_NjD6iWI3NvM,yes,is the little boy in the video curly hair,v_NjD6iWI3NvM,v_NjD6iWI3NvM_2,3 6046,v_NjD6iWI3NvM,no,is the little boy in the video straight hair ,v_NjD6iWI3NvM,v_NjD6iWI3NvM_3,3 6047,v_Woelo4XJkHE,no,is the little boy long hair,v_Woelo4XJkHE,v_Woelo4XJkHE_3,3 6048,v_Woelo4XJkHE,yes,is the little boy short hair,v_Woelo4XJkHE,v_Woelo4XJkHE_2,3 6049,v_e4kS-n7_LRU,no,is the little girl black,v_e4kS-n7_LRU,v_e4kS-n7_LRU_3,3 6050,v_k-I4zLbgdpM,no,is the little girl injured in her left middle finger dancing,v_k-I4zLbgdpM,v_k-I4zLbgdpM_3,3 6051,v_f8SWWURHV1M,yes,is the little girl long hair,v_f8SWWURHV1M,v_f8SWWURHV1M_2,3 6052,v_f8SWWURHV1M,yes,is the little girl playing the piano to the score,v_f8SWWURHV1M,v_f8SWWURHV1M_10,3 6053,v_f8SWWURHV1M,yes,is the little girl playing the piano indoors,v_f8SWWURHV1M,v_f8SWWURHV1M_9,3 6054,v_f8SWWURHV1M,no,is the little girl short hair,v_f8SWWURHV1M,v_f8SWWURHV1M_3,3 6055,v_e4kS-n7_LRU,yes,is the little girl white,v_e4kS-n7_LRU,v_e4kS-n7_LRU_2,3 6056,v_f8SWWURHV1M,yes,is the little girl's hair golden,v_f8SWWURHV1M,v_f8SWWURHV1M_6,3 6057,v_7dXqXFoju2M,yes,is the long hair woman looking in the mirror,v_7dXqXFoju2M,v_7dXqXFoju2M_2,3 6058,v_7dXqXFoju2M,no,is the woman with long hair taking pictures,v_7dXqXFoju2M,v_7dXqXFoju2M_3,3 6059,v_2-AMrzL7V-U,no,is the long jump game played indoors,v_2-AMrzL7V-U,v_2-AMrzL7V-U_3,3 6060,v_2-AMrzL7V-U,yes,is the long jump game played doors,v_2-AMrzL7V-U,v_2-AMrzL7V-U_2,3 6061,v_dN8LBey17O8,yes,is the machine that mages the lawn red,v_dN8LBey17O8,v_dN8LBey17O8_2,3 6062,v_dN8LBey17O8,no,is the machine that mages the lawn white,v_dN8LBey17O8,v_dN8LBey17O8_3,3 6063,v_W97fdJ2Rn9g,double fold eyelids,is the makeup person a single eyelid or a double eyelid,v_W97fdJ2Rn9g,v_W97fdJ2Rn9g_10,8 6064,v_r2H-cnti8GI,yes,is the person in a black and white coat playing the magic cube in one hand,v_r2H-cnti8GI,v_r2H-cnti8GI_2,3 6065,v_r2H-cnti8GI,yes,is the person in a black and white coat playing the magic cube in the room,v_r2H-cnti8GI,v_r2H-cnti8GI_9,3 6066,v_fe4r2-Y8k1U,yes,is the person in a black coat an old person,v_fe4r2-Y8k1U,v_fe4r2-Y8k1U_2,3 6067,v_ZLJ2BmBkLJg,yes,is the person wearing a black shirt shaving his beard,v_ZLJ2BmBkLJg,v_ZLJ2BmBkLJg_2,3 6068,v_F9FPK6mfh88,no,is the person in a black coat wearing trousers,v_F9FPK6mfh88,v_F9FPK6mfh88_8,3 6069,v_fe4r2-Y8k1U,no,is the person in a black coat young,v_fe4r2-Y8k1U,v_fe4r2-Y8k1U_3,3 6070,v_gWTndmDHZQc,no,is the person in the black shirt wearing a hat,v_gWTndmDHZQc,v_gWTndmDHZQc_3,3 6071,v_GsPE54bMFwE,yes,is the person in a black vest with a hat,v_GsPE54bMFwE,v_GsPE54bMFwE_9,3 6072,v_rCLGy2NA0aE,no,is the person in a blue coat eating biscuits,v_rCLGy2NA0aE,v_rCLGy2NA0aE_3,3 6073,v_zV08tITKFMM,no,is the person in a gold coat wearing a hat,v_zV08tITKFMM,v_zV08tITKFMM_8,3 6074,v_GxDNGtoVjS0,yes,is the person in the gray jacket cutting trees outside,v_GxDNGtoVjS0,v_GxDNGtoVjS0_8,3 6075,v_GxDNGtoVjS0,no,is the person in the gray coat wearing a hat,v_GxDNGtoVjS0,v_GxDNGtoVjS0_9,3 6076,v_zPQodcasmSA,yes,is the person in a green coat surfing in the sea,v_zPQodcasmSA,v_zPQodcasmSA_2,3 6077,v_zPQodcasmSA,no,is the person in a green suit surfing in the river,v_zPQodcasmSA,v_zPQodcasmSA_3,3 6078,v_qGLRri_c6n8,yes,is the person in a pink coat wearing a hat,v_qGLRri_c6n8,v_qGLRri_c6n8_8,3 6079,v_NZskwwovSZI,yes,is the person in a red hat a man,v_NZskwwovSZI,v_NZskwwovSZI_2,3 6080,v_qKp2QCheLwU,yes,is the person in a red hat wearing a glove,v_qKp2QCheLwU,v_qKp2QCheLwU_9,3 6081,v_eVkp83uGf3Y,yes,is the person wearing a red vest throwing a throw away,v_eVkp83uGf3Y,v_eVkp83uGf3Y_9,3 6082,v_ZxCdhz4ep0s,yes,is the person in a striped shirt playing the piano indoors,v_ZxCdhz4ep0s,v_ZxCdhz4ep0s_2,3 6083,v_ZxCdhz4ep0s,no,is the person in a striped shirt playing the piano outside,v_ZxCdhz4ep0s,v_ZxCdhz4ep0s_3,3 6084,v_ZxCdhz4ep0s,no,is the person in a striped shirt wearing a hat,v_ZxCdhz4ep0s,v_ZxCdhz4ep0s_8,3 6085,v_C5SXR9nMY3I,yes,is the person in a white coat a lady,v_C5SXR9nMY3I,v_C5SXR9nMY3I_2,3 6086,v_C5SXR9nMY3I,no,is the person in a white coat a person,v_C5SXR9nMY3I,v_C5SXR9nMY3I_3,3 6087,v_rApbE1VkEjE,yes,is the person in a yellow coat wearing a hat,v_rApbE1VkEjE,v_rApbE1VkEjE_9,3 6088,v_A9VCuZ53ObQ,no,is the person in black without a beard,v_A9VCuZ53ObQ,v_A9VCuZ53ObQ_3,3 6089,v_gr53ih2aFkE,yes,is the person in blue a referee,v_gr53ih2aFkE,v_gr53ih2aFkE_8,3 6090,v_XI7qJHE61zo,yes,is the person in blue black,v_XI7qJHE61zo,v_XI7qJHE61zo_9,3 6091,v_1px5LTVIR3A,no,is the person in blue dancing on the grass,v_1px5LTVIR3A,v_1px5LTVIR3A_3,3 6092,v_Mk7Yjq1U8OI,yes,is the person in blue in the first frame outdoors,v_Mk7Yjq1U8OI,v_Mk7Yjq1U8OI_2,3 6093,v_qiTQ02NDSlQ,no,is the person in blue jacket making sandwiches outside,v_qiTQ02NDSlQ,v_qiTQ02NDSlQ_3,3 6094,v_Mk7Yjq1U8OI,no,is the person in blue pants in the first frame indoors,v_Mk7Yjq1U8OI,v_Mk7Yjq1U8OI_3,3 6095,v_Ko7Nt8UDP4Q,yes,is the person in brown clothes making a sandwich,v_Ko7Nt8UDP4Q,v_Ko7Nt8UDP4Q_2,3 6096,v_Ko7Nt8UDP4Q,no,is the person in brown clothes making salad,v_Ko7Nt8UDP4Q,v_Ko7Nt8UDP4Q_3,3 6097,v_G_rVqf_hwXw,yes,is the person in dark blue writhing his wrist indoors,v_G_rVqf_hwXw,v_G_rVqf_hwXw_8,3 6098,v_-pK2JheWido,no,is the person in pink clothes a boy,v_-pK2JheWido,v_-pK2JheWido_3,3 6099,v_1kkc9hDshP4,no,is the person in pink dancing on the grass,v_1kkc9hDshP4,v_1kkc9hDshP4_3,3 6100,v_gr53ih2aFkE,yes,is the person in red tug-of-war outside,v_gr53ih2aFkE,v_gr53ih2aFkE_6,3 6101,v_gCHo9vxfEzM,yes,is the person in red on the stage holding something in his hand,v_gCHo9vxfEzM,v_gCHo9vxfEzM_9,3 6102,v_Zt9qvbUnNhc,yes,is the person in red pants somersault outside,v_Zt9qvbUnNhc,v_Zt9qvbUnNhc_2,3 6103,v_kyx4MMmBr3A,no,is the person in red playing,v_kyx4MMmBr3A,v_kyx4MMmBr3A_3,3 6104,v_Zt9qvbUnNhc,no,is the person in red shorts doing a somersault indoors,v_Zt9qvbUnNhc,v_Zt9qvbUnNhc_3,3 6105,v_qiupddjDHDg,yes,is the person in the blue shirt using the shovel to lift the tile,v_qiupddjDHDg,v_qiupddjDHDg_2,3 6106,v_Z-sWZUYL0ZU,no,is the person in the gray coat scrubbing the cupboard with a brush,v_Z-sWZUYL0ZU,v_Z-sWZUYL0ZU_3,3 6107,v_Z-sWZUYL0ZU,yes,is the person in the grey shirt wiping the cupboard with a towel,v_Z-sWZUYL0ZU,v_Z-sWZUYL0ZU_2,3 6108,v_rGOOlcdpfLg,no,is the person in the plaid jacket outside,v_rGOOlcdpfLg,v_rGOOlcdpfLg_3,3 6109,v_OysON6LbF6Y,no,is the person in the camera all the time,v_OysON6LbF6Y,v_OysON6LbF6Y_10,3 6110,v_Q5HdVXF390c,no,is the person in the plaid shirt drinking beer in a bottle,v_Q5HdVXF390c,v_Q5HdVXF390c_3,3 6111,v_Q5HdVXF390c,yes,is the person in the plaid shirt drinking beer in a glass,v_Q5HdVXF390c,v_Q5HdVXF390c_2,3 6112,v_1IbkFHNA7fg,no,is the person in the plaid standing in the haircut,v_1IbkFHNA7fg,v_1IbkFHNA7fg_3,3 6113,v_28LdZLfdmMQ,yes,is the person in the purple pants wearing a hat,v_28LdZLfdmMQ,v_28LdZLfdmMQ_2,3 6114,v_df5rlVZD0Zc,yes,is the person in the red shirt wearing white socks,v_df5rlVZD0Zc,v_df5rlVZD0Zc_7,3 6115,v_aAz3YL2RMr4,yes,is the person in the tattoo a man,v_aAz3YL2RMr4,v_aAz3YL2RMr4_2,3 6116,v_0xBP-TSsqb0,yes,is the person in the video with a beard,v_0xBP-TSsqb0,v_0xBP-TSsqb0_2,3 6117,v_N5Dt3ycaun4,yes,is the person in white a referee,v_N5Dt3ycaun4,v_N5Dt3ycaun4_6,3 6118,v_ZBP_mLWROZU,no,is the person in white knitting his own hair,v_ZBP_mLWROZU,v_ZBP_mLWROZU_3,3 6119,v_ZBP_mLWROZU,yes,is the person in the white suit knitting someone else's hair,v_ZBP_mLWROZU,v_ZBP_mLWROZU_2,3 6120,v_zYjLA99koBk,yes,is the person in yellow a hovercraft,v_zYjLA99koBk,v_zYjLA99koBk_2,3 6121,v_PTwe2IIo3To,yes,is the person in yellow a lady,v_PTwe2IIo3To,v_PTwe2IIo3To_2,3 6122,v_zYjLA99koBk,no,is the person in yellow a wooden boat,v_zYjLA99koBk,v_zYjLA99koBk_3,3 6123,v_lYP05IRcOPE,yes,is the person on the air cushion wearing a helmet,v_lYP05IRcOPE,v_lYP05IRcOPE_2,3 6124,v_lYP05IRcOPE,no,is the person on the air cushion wearing a mask,v_lYP05IRcOPE,v_lYP05IRcOPE_3,3 6125,v_Z6b4oFjIznU,no,is the person on the balance wood black hair,v_Z6b4oFjIznU,v_Z6b4oFjIznU_3,3 6126,v_Z6b4oFjIznU,yes,is the person on the balance wood long hair,v_Z6b4oFjIznU,v_Z6b4oFjIznU_2,3 6127,v_jBlG0L_M96g,no,is the person on the jumper indoors,v_jBlG0L_M96g,v_jBlG0L_M96g_3,3 6128,v_HowkVy5fOyk,no,is the person on the sand a gladiator,v_HowkVy5fOyk,v_HowkVy5fOyk_3,3 6129,v_HowkVy5fOyk,yes,is the person on the sand a matador,v_HowkVy5fOyk,v_HowkVy5fOyk_2,3 6130,v_Pho9Hgdvc0g,yes,is the person on the side of the bridge wearing a green clothes,v_Pho9Hgdvc0g,v_Pho9Hgdvc0g_2,3 6131,v_Pho9Hgdvc0g,no,is the person on the side of the bridge wearing a white clothes,v_Pho9Hgdvc0g,v_Pho9Hgdvc0g_3,3 6132,v_fh21bbDSVmA,yes,is the person playing indoors,v_fh21bbDSVmA,v_fh21bbDSVmA_10,3 6133,v_eJc8bebOF2A,yes,is the person pushing the shot,v_eJc8bebOF2A,v_eJc8bebOF2A_2,3 6134,v_df5rlVZD0Zc,no,is the running path of the person in the red jacket straight,v_df5rlVZD0Zc,v_df5rlVZD0Zc_10,3 6135,v_fh9d3gpT-8I,no,is the person standing up to the blow,v_fh9d3gpT-8I,v_fh9d3gpT-8I_9,3 6136,v_dskswWtslKc,no,is the person surfing far away from the shore,v_dskswWtslKc,v_dskswWtslKc_7,3 6137,v_e0yu4WgiZUM,no,is the person swimming crawl,v_e0yu4WgiZUM,v_e0yu4WgiZUM_3,3 6138,v_16bJAOf1SJI,no,is the person wearing a blue and white grid wearing a ring,v_16bJAOf1SJI,v_16bJAOf1SJI_3,3 6139,v_CFbkVO5b2g0,t shirt,is the person playing the piano wearing a suit or a t-shirt,v_CFbkVO5b2g0,v_CFbkVO5b2g0_9,5 6140,v_QoRlOa6R1LY,no,is the person wearing a gray helmet climbing indoors,v_QoRlOa6R1LY,v_QoRlOa6R1LY_3,3 6141,v_3kxP8qOtym8,no,is the person wearing a gray vest practising outside,v_3kxP8qOtym8,v_3kxP8qOtym8_3,3 6142,v_9UvVeUYQLgA,yes,is the person wearing a green dress wearing a mask,v_9UvVeUYQLgA,v_9UvVeUYQLgA_2,3 6143,v_9UvVeUYQLgA,no,is the person wearing a green dress wearing a watch,v_9UvVeUYQLgA,v_9UvVeUYQLgA_3,3 6144,v_QoRlOa6R1LY,yes,is the person wearing a grey helmet climbing outside,v_QoRlOa6R1LY,v_QoRlOa6R1LY_2,3 6145,v_3kxP8qOtym8,yes,is the person in the gray vest practicing indoors,v_3kxP8qOtym8,v_3kxP8qOtym8_2,3 6146,v_9SIPJd4Hls4,female,is the person wearing a hat a boy or a girl,v_9SIPJd4Hls4,v_9SIPJd4Hls4_10,8 6147,v__V62aT_K8Zw,yes,is the person wearing a hat an old person,v__V62aT_K8Zw,v__V62aT_K8Zw_6,3 6148,v_kistIwzeQOU,no,is the person wearing a hat in white,v_kistIwzeQOU,v_kistIwzeQOU_3,3 6149,v__fLhtWSCaSo,yes,is the person wearing a hat wearing jeans,v__fLhtWSCaSo,v__fLhtWSCaSo_9,3 6150,v_F-Z17rHI_ms,no,does the person in the long black sleeves dive,v_F-Z17rHI_ms,v_F-Z17rHI_ms_10,3 6151,v_elD1P_1oiUk,female,is the person wearing a red hat a male or a female,v_elD1P_1oiUk,v_elD1P_1oiUk_10,8 6152,v_fh9d3gpT-8I,yes,is the person wearing a short sleeve,v_fh9d3gpT-8I,v_fh9d3gpT-8I_8,3 6153,v_sNTOUuE7ZfM,yes,is the person wearing a tie indoors,v_sNTOUuE7ZfM,v_sNTOUuE7ZfM_2,3 6154,v_0XTAq_xvquw,yes,is the person wearing a watch on the left hand of the video,v_0XTAq_xvquw,v_0XTAq_xvquw_2,3 6155,v_0XTAq_xvquw,no,is the person wearing a watch on the right hand in the video,v_0XTAq_xvquw,v_0XTAq_xvquw_3,3 6156,v_afMQA352X_A,yes,is the person in white a man,v_afMQA352X_A,v_afMQA352X_A_2,3 6157,v_kistIwzeQOU,yes,is the person in white wearing glasses,v_kistIwzeQOU,v_kistIwzeQOU_2,3 6158,v_rApbE1VkEjE,no,is the person in the yellow jacket removing snow with a broom,v_rApbE1VkEjE,v_rApbE1VkEjE_3,3 6159,v_PTwe2IIo3To,no,is the person in the yellow suit a person,v_PTwe2IIo3To,v_PTwe2IIo3To_3,3 6160,v_ZsVfa3JIUNU,yes,is the person in orange short sleeves tug-of-war,v_ZsVfa3JIUNU,v_ZsVfa3JIUNU_2,3 6161,v_ZsVfa3JIUNU,no,is the person wearing an orange short sleeve playing ball,v_ZsVfa3JIUNU,v_ZsVfa3JIUNU_3,3 6162,v_f2DS_AVorrY,yes,is the diving person a person,v_f2DS_AVorrY,v_f2DS_AVorrY_2,3 6163,v_IYLJU87AkOg,yes,is the person with a hat blindfolded,v_IYLJU87AkOg,v_IYLJU87AkOg_2,3 6164,v_JbW8efAOOt0,yes,is the person with a hat in the room,v_JbW8efAOOt0,v_JbW8efAOOt0_2,3 6165,v_IYLJU87AkOg,no,is the person with a hat not blindfolded,v_IYLJU87AkOg,v_IYLJU87AkOg_3,3 6166,v_JbW8efAOOt0,no,is the person with a hat outdoors,v_JbW8efAOOt0,v_JbW8efAOOt0_3,3 6167,v_PSB1nM3QXxg,yes,is the person with the purple belt around his waist a boy,v_PSB1nM3QXxg,v_PSB1nM3QXxg_2,3 6168,v_KWpATsiXF_M,no,is the person with a stick riding on a cow in the field,v_KWpATsiXF_M,v_KWpATsiXF_M_3,3 6169,v_KWpATsiXF_M,yes,is the person with a stick riding on a horse in the field,v_KWpATsiXF_M,v_KWpATsiXF_M_2,3 6170,v_oKJ1BnvHbbA,yes,is the person with black clothes behind the red clothes,v_oKJ1BnvHbbA,v_oKJ1BnvHbbA_8,3 6171,v_brJIpRGcBFU,no,does the grey person use his hands to mow the grass,v_brJIpRGcBFU,v_brJIpRGcBFU_3,3 6172,v_z8x3wUZYOaM,yes,is the person holding his face combed,v_z8x3wUZYOaM,v_z8x3wUZYOaM_9,3 6173,v_eQwLUJ3P7wI,yes,is the person with long hair a person,v_eQwLUJ3P7wI,v_eQwLUJ3P7wI_2,3 6174,v_Jdu5AqaWfz8,yes,is the person with the rope in the room,v_Jdu5AqaWfz8,v_Jdu5AqaWfz8_2,3 6175,v_Jdu5AqaWfz8,no,is the person with the rope outside,v_Jdu5AqaWfz8,v_Jdu5AqaWfz8_3,3 6176,v_bWZkD_s1940,sitting,is the person with white hair standing or sitting,v_bWZkD_s1940,v_bWZkD_s1940_8,8 6177,v_bRgvAHL3dJk,yes,is the person with yellow hair a man,v_bRgvAHL3dJk,v_bRgvAHL3dJk_2,3 6178,v_eiN5XPmwcEM,no,is the person's beard black,v_eiN5XPmwcEM,v_eiN5XPmwcEM_3,3 6179,v_eiN5XPmwcEM,yes,is the person's beard long,v_eiN5XPmwcEM,v_eiN5XPmwcEM_2,3 6180,v_gCHo9vxfEzM,yes,do people on stage have their hair tied up,v_gCHo9vxfEzM,v_gCHo9vxfEzM_7,3 6181,v_uktUeF3Fy7o,yes,is the person's pants in a yellow life jacket black,v_uktUeF3Fy7o,v_uktUeF3Fy7o_2,3 6182,v_uktUeF3Fy7o,no,is the person's pants in a yellow life jacket white,v_uktUeF3Fy7o,v_uktUeF3Fy7o_3,3 6183,v_EDDbcCBnTQM,no,is the person's sunglasses red,v_EDDbcCBnTQM,v_EDDbcCBnTQM_3,3 6184,v__fLhtWSCaSo,no,is the meadow black,v__fLhtWSCaSo,v__fLhtWSCaSo_3,3 6185,v__l251ZuOCYU,yes,is the meadow green in the video,v__l251ZuOCYU,v__l251ZuOCYU_7,3 6186,v_HX6BeHLQh5s,no,is the men not with a tie in the video,v_HX6BeHLQh5s,v_HX6BeHLQh5s_3,3 6187,v_HX6BeHLQh5s,yes,is the men with a tie in the video,v_HX6BeHLQh5s,v_HX6BeHLQh5s_2,3 6188,v_g9lNpSAtHgI,no,is the method of spray painting in video frequency complex,v_g9lNpSAtHgI,v_g9lNpSAtHgI_8,3 6189,v_7OcxT66BxX0,no,is it necessary to use a computer to get a microphone,v_7OcxT66BxX0,v_7OcxT66BxX0_3,3 6190,v_GcjzvBatqb4,no,is the action in video difficult,v_GcjzvBatqb4,v_GcjzvBatqb4_8,3 6191,v_HTSxgkgecS0,yes,is the neck of the duck black,v_HTSxgkgecS0,v_HTSxgkgecS0_2,3 6192,v_HTSxgkgecS0,no,is the neck of the duck white,v_HTSxgkgecS0,v_HTSxgkgecS0_3,3 6193,v_xuvp0jKMqRU,yes,is the news program live,v_xuvp0jKMqRU,v_xuvp0jKMqRU_9,3 6194,v_CfqnHsp6olc,yes,is the no. 10 player playing football,v_CfqnHsp6olc,v_CfqnHsp6olc_2,3 6195,v_CfqnHsp6olc,no,is the no. 10 player playing the ball,v_CfqnHsp6olc,v_CfqnHsp6olc_3,3 6196,v_FmfAB-ppHBs,yes,is the operation safe for the smoke,v_FmfAB-ppHBs,v_FmfAB-ppHBs_10,3 6197,v_WXH-Tj0-g4w,yes,is the orange red dress person long hair in the video,v_WXH-Tj0-g4w,v_WXH-Tj0-g4w_2,3 6198,v_w10Nr_wOh8g,yes,is the pants in the working people wearing white,v_w10Nr_wOh8g,v_w10Nr_wOh8g_2,3 6199,v_stdtUoog49I,yes,is the parade outdoors,v_stdtUoog49I,v_stdtUoog49I_2,3 6200,v_FADShG5lyB8,yes,is the pedal of the sports equipment black,v_FADShG5lyB8,v_FADShG5lyB8_6,3 6201,v_ikUNgSw4Gys,no,is the pen used in the process of lingual nail,v_ikUNgSw4Gys,v_ikUNgSw4Gys_3,3 6202,v_HJWwqjLf1I4,yes,is the people in blue with oxygen cans,v_HJWwqjLf1I4,v_HJWwqjLf1I4_2,3 6203,v_HJWwqjLf1I4,no,is the people in blue without any oxygen cans,v_HJWwqjLf1I4,v_HJWwqjLf1I4_3,3 6204,v_BkDbDnvoL28,yes,is the perforpersonce difficult in the video,v_BkDbDnvoL28,v_BkDbDnvoL28_8,3 6205,v_f6vZaMgqDvQ,no,is the performer the same person,v_f6vZaMgqDvQ,v_f6vZaMgqDvQ_6,3 6206,v_f6vZaMgqDvQ,no,is the performer wearing the same color,v_f6vZaMgqDvQ,v_f6vZaMgqDvQ_10,3 6207,v_KXcVYfMuUGw,no,is the person a boy,v_KXcVYfMuUGw,v_KXcVYfMuUGw_3,3 6208,v_KXcVYfMuUGw,yes,is the person a girl,v_KXcVYfMuUGw,v_KXcVYfMuUGw_2,3 6209,v_6G8m-vsGTA8,yes,is the person holding the camera in the room at the beginning,v_6G8m-vsGTA8,v_6G8m-vsGTA8_2,3 6210,v_ZLJ2BmBkLJg,no,is the person in a black coat shears,v_ZLJ2BmBkLJg,v_ZLJ2BmBkLJg_3,3 6211,v_g9lNpSAtHgI,yes,is the person in a blue apron a golden hair,v_g9lNpSAtHgI,v_g9lNpSAtHgI_2,3 6212,v_rCLGy2NA0aE,yes,is the person in a blue coat eating ice cream,v_rCLGy2NA0aE,v_rCLGy2NA0aE_2,3 6213,v_Gs79qz286QE,no,is the person in a blue swimsuit wearing a hat,v_Gs79qz286QE,v_Gs79qz286QE_7,3 6214,v_GjcRJzPjbRI,no,is the person in a gray vest playing basketball,v_GjcRJzPjbRI,v_GjcRJzPjbRI_3,3 6215,v_GjcRJzPjbRI,yes,is the person in a gray vest throwing a shot,v_GjcRJzPjbRI,v_GjcRJzPjbRI_2,3 6216,v_NZskwwovSZI,no,is the person in a red hat wearing a long sleeve,v_NZskwwovSZI,v_NZskwwovSZI_3,3 6217,v_MonWdYi3a0I,yes,is the person in a white dress wearing a necklace,v_MonWdYi3a0I,v_MonWdYi3a0I_9,3 6218,v_ZlVydB9uUe4,yes,is the person in a white shirt cut out of the tree outside,v_ZlVydB9uUe4,v_ZlVydB9uUe4_9,3 6219,v_N4qhryre_TE,no,is the person in black wearing a necklace,v_N4qhryre_TE,v_N4qhryre_TE_10,3 6220,v_1kkc9hDshP4,yes,is the person in pink dancing on the stage,v_1kkc9hDshP4,v_1kkc9hDshP4_2,3 6221,v_GOhmWfR8QBM,yes,is the person in red dispersontling gifts in the room,v_GOhmWfR8QBM,v_GOhmWfR8QBM_6,3 6222,v_g1na24Bd5Rs,yes,is the person in red in a good mood,v_g1na24Bd5Rs,v_g1na24Bd5Rs_9,3 6223,v_12Nafz_Yet4,no,is the person in the black dress curly hair,v_12Nafz_Yet4,v_12Nafz_Yet4_3,3 6224,v_rCLGy2NA0aE,yes,is the person in the blue coat eating the ice cream outside,v_rCLGy2NA0aE,v_rCLGy2NA0aE_9,3 6225,v_SNja9iUdAiI,yes,is the person in the braid indoors,v_SNja9iUdAiI,v_SNja9iUdAiI_2,3 6226,v_JsPIzRsUtlE,yes,is the person in the field outside,v_JsPIzRsUtlE,v_JsPIzRsUtlE_2,3 6227,v_JsPIzRsUtlE,no,is the person in the filed in the room,v_JsPIzRsUtlE,v_JsPIzRsUtlE_3,3 6228,v_H2fG7JRRMAs,yes,is the person in the green skirt holding a wine,v_H2fG7JRRMAs,v_H2fG7JRRMAs_10,3 6229,v_OysON6LbF6Y,yes,is the person in the pink dress sitting,v_OysON6LbF6Y,v_OysON6LbF6Y_2,3 6230,v_OysON6LbF6Y,no,is the person in the pink dress standing,v_OysON6LbF6Y,v_OysON6LbF6Y_3,3 6231,v_gOnp3DZxeKU,yes,is the person in the purple coat cooking in the room,v_gOnp3DZxeKU,v_gOnp3DZxeKU_9,3 6232,v_B4Zp5XN97Gc,yes,is the person in the screen with a shovel dug the same,v_B4Zp5XN97Gc,v_B4Zp5XN97Gc_7,3 6233,v_aAz3YL2RMr4,no,is the person in the tattoo long hair,v_aAz3YL2RMr4,v_aAz3YL2RMr4_3,3 6234,v_0lbv0AE5gJQ,yes,is the person in the video a disabled person,v_0lbv0AE5gJQ,v_0lbv0AE5gJQ_2,3 6235,v_eKdtOKqLMRE,yes,is the person in the video a fat person,v_eKdtOKqLMRE,v_eKdtOKqLMRE_2,3 6236,v_eKdtOKqLMRE,no,is the person in the video a thin person,v_eKdtOKqLMRE,v_eKdtOKqLMRE_3,3 6237,v_a4gI4LC1rJk,yes,is the person in the video cut the skin of the sweet potato with a knife,v_a4gI4LC1rJk,v_a4gI4LC1rJk_2,3 6238,v_a4gI4LC1rJk,no,is the person in the video cut the skin of the sweet potato with scissors,v_a4gI4LC1rJk,v_a4gI4LC1rJk_3,3 6239,v_3LwQ2yq85LU,no,is the person in the video fencing indoors,v_3LwQ2yq85LU,v_3LwQ2yq85LU_3,3 6240,v_3LwQ2yq85LU,yes,is the person in the video fencing outdoors,v_3LwQ2yq85LU,v_3LwQ2yq85LU_2,3 6241,v_fEBM3nPMen8,yes,is the person in the video in the water,v_fEBM3nPMen8,v_fEBM3nPMen8_2,3 6242,v_2k-qlZxc9l4,yes,is the person in the video shaving in the bathtub,v_2k-qlZxc9l4,v_2k-qlZxc9l4_2,3 6243,v_2k-qlZxc9l4,no,is the person in the video shaving on the sofa,v_2k-qlZxc9l4,v_2k-qlZxc9l4_3,3 6244,v_Db2Dnt2OOo0,yes,is the person in the video tattooed in black,v_Db2Dnt2OOo0,v_Db2Dnt2OOo0_2,3 6245,v_Db2Dnt2OOo0,no,is the person in the video tattooed in white,v_Db2Dnt2OOo0,v_Db2Dnt2OOo0_3,3 6246,v_Av0VsTxJd78,yes,is the person in the video used to ski with a car,v_Av0VsTxJd78,v_Av0VsTxJd78_2,3 6247,v_AB5cWhlQ0Kk,no,is the person in the video white hair,v_AB5cWhlQ0Kk,v_AB5cWhlQ0Kk_3,3 6248,v_Nc9yr4urskA,yes,is the person in the yellow dress curly hair,v_Nc9yr4urskA,v_Nc9yr4urskA_2,3 6249,v_Nc9yr4urskA,no,is the person in the yellow dress straight hair,v_Nc9yr4urskA,v_Nc9yr4urskA_3,3 6250,v_H_JLBvfP88U,no,is the person in yellow clothes without necklaces,v_H_JLBvfP88U,v_H_JLBvfP88U_3,3 6251,v_H_JLBvfP88U,yes,is the person in yellow clothes with necklaces,v_H_JLBvfP88U,v_H_JLBvfP88U_2,3 6252,v_HTYzbAFUghU,no,is the person not wearing a hat in the video,v_HTYzbAFUghU,v_HTYzbAFUghU_3,3 6253,v_75Tc1nPmZFQ,male,is the person of the yellow dress a boy or a girl,v_75Tc1nPmZFQ,v_75Tc1nPmZFQ_10,8 6254,v_pMtu7fOHdII,yes,is the person on number 14 wearing a dark blue dress,v_pMtu7fOHdII,v_pMtu7fOHdII_2,3 6255,v_pMtu7fOHdII,no,is the person on number 14 wearing a white dress,v_pMtu7fOHdII,v_pMtu7fOHdII_3,3 6256,v_4H9MMsj4mcM,yes,is the person in the video on the racetrack alone,v_4H9MMsj4mcM,v_4H9MMsj4mcM_2,3 6257,v_fEBM3nPMen8,no,is the person on the video on the shore,v_fEBM3nPMen8,v_fEBM3nPMen8_3,3 6258,v_lU6DMCif3eE,yes,is the person playing an instrument indoors in the video,v_lU6DMCif3eE,v_lU6DMCif3eE_2,3 6259,v_1dDAcUliXrQ,yes,is the person playing badminton indoors in the video,v_1dDAcUliXrQ,v_1dDAcUliXrQ_2,3 6260,v_1dDAcUliXrQ,no,is the person playing badminton outside in the video,v_1dDAcUliXrQ,v_1dDAcUliXrQ_3,3 6261,v_lU6DMCif3eE,no,is the person playing the instrument outside in the video,v_lU6DMCif3eE,v_lU6DMCif3eE_3,3 6262,v_KT8DUDFc3Xg,yes,is the person polishing shoes a man,v_KT8DUDFc3Xg,v_KT8DUDFc3Xg_2,3 6263,v_KT8DUDFc3Xg,no,is the person polishing shoes a woman,v_KT8DUDFc3Xg,v_KT8DUDFc3Xg_3,3 6264,v_JY9oOSfjj_E,no,is the person sitting on the air cushion indoors,v_JY9oOSfjj_E,v_JY9oOSfjj_E_3,3 6265,v_JY9oOSfjj_E,yes,is the person sitting on the air cushion outside,v_JY9oOSfjj_E,v_JY9oOSfjj_E_2,3 6266,v_s9PkkDEl6aY,no,is the person standing on the platform outside,v_s9PkkDEl6aY,v_s9PkkDEl6aY_3,3 6267,v_s9PkkDEl6aY,yes,is the person standing on the table in the room,v_s9PkkDEl6aY,v_s9PkkDEl6aY_2,3 6268,v_SNja9iUdAiI,no,is the person with the braid outside,v_SNja9iUdAiI,v_SNja9iUdAiI_3,3 6269,v_jBlG0L_M96g,yes,is the person stepping on the jumper outside,v_jBlG0L_M96g,v_jBlG0L_M96g_2,3 6270,v_Db2Dnt2OOo0,no,is the person tattooed in the video whole body,v_Db2Dnt2OOo0,v_Db2Dnt2OOo0_6,3 6271,v_AsdsR27UnJ0,no,is the person using a non electric toothbrush in the video,v_AsdsR27UnJ0,v_AsdsR27UnJ0_3,3 6272,v_AsdsR27UnJ0,yes,is the person using an electric toothbrush in the video,v_AsdsR27UnJ0,v_AsdsR27UnJ0_2,3 6273,v_H_IfIsKQ3Zw,no,is the person wearing white clothes without glasses,v_H_IfIsKQ3Zw,v_H_IfIsKQ3Zw_3,3 6274,v_H_IfIsKQ3Zw,yes,is the person weaing white with glasses,v_H_IfIsKQ3Zw,v_H_IfIsKQ3Zw_2,3 6275,v_r2H-cnti8GI,no,is the person wearing a black and white coat playing the magic cube in two hands,v_r2H-cnti8GI,v_r2H-cnti8GI_3,3 6276,v_G4-qjGC_3VA,no,is the person wearing a black clothes poling vault in the indoor ,v_G4-qjGC_3VA,v_G4-qjGC_3VA_3,3 6277,v_G4-qjGC_3VA,yes,is the person wearing a black clothes poling vault in the outdoor ,v_G4-qjGC_3VA,v_G4-qjGC_3VA_2,3 6278,v_zTHkqpNFGno,yes,is the person wearing a black coat combing his hair in the room,v_zTHkqpNFGno,v_zTHkqpNFGno_2,3 6279,v_zTHkqpNFGno,no,is the person wearing a black coat combing the hair outside,v_zTHkqpNFGno,v_zTHkqpNFGno_3,3 6280,v_QImpWj3AJcY,yes,is the person wearing a black coat doing a game indoors,v_QImpWj3AJcY,v_QImpWj3AJcY_2,3 6281,v_QImpWj3AJcY,no,is the person in the black jacket playing games outside,v_QImpWj3AJcY,v_QImpWj3AJcY_3,3 6282,v_zO5JMTzLDHw,no,is the person in the black jacket walking on stilts indoors,v_zO5JMTzLDHw,v_zO5JMTzLDHw_3,3 6283,v_zO5JMTzLDHw,yes,is the person in the black jacket walking on stilts outside,v_zO5JMTzLDHw,v_zO5JMTzLDHw_2,3 6284,v_QdmcjM2fluo,yes,is the person wearing a black coat wearing gloves,v_QdmcjM2fluo,v_QdmcjM2fluo_8,3 6285,v_zO5JMTzLDHw,no,is the person wearing a black coat with his hat,v_zO5JMTzLDHw,v_zO5JMTzLDHw_9,3 6286,v_3nSOFmmA7FU,yes,is the person wearing a black dress acting indoors,v_3nSOFmmA7FU,v_3nSOFmmA7FU_2,3 6287,v_mek9Zodu8LM,yes,is the person wearing a black dress guessing the punch in the room,v_mek9Zodu8LM,v_mek9Zodu8LM_2,3 6288,v_mek9Zodu8LM,no,is the person wearing a black dress guessing the punch outside,v_mek9Zodu8LM,v_mek9Zodu8LM_3,3 6289,v_gsQ-OEvrxjo,yes,is the person wearing a black dress not wearing a hat,v_gsQ-OEvrxjo,v_gsQ-OEvrxjo_2,3 6290,v_3nSOFmmA7FU,no,is the person wearing a black dress performing outdoors,v_3nSOFmmA7FU,v_3nSOFmmA7FU_3,3 6291,v_gWTndmDHZQc,yes,is the person wearing a black shirt not wearing a hat,v_gWTndmDHZQc,v_gWTndmDHZQc_2,3 6292,v_gWTndmDHZQc,yes,is the person wearing a black shirt playing the guitar in the room,v_gWTndmDHZQc,v_gWTndmDHZQc_7,3 6293,v_QXN6odBnVmI,yes,is the person in black short-sleeved in the room polishing shoes,v_QXN6odBnVmI,v_QXN6odBnVmI_9,3 6294,v_F-Z17rHI_ms,yes,is the person wearing a black swimsuit female,v_F-Z17rHI_ms,v_F-Z17rHI_ms_2,3 6295,v_F-Z17rHI_ms,yes,is the person in the black bathing suit diving indoor,v_F-Z17rHI_ms,v_F-Z17rHI_ms_7,3 6296,v_F-Z17rHI_ms,no,is the person wearing a black swimsuit male,v_F-Z17rHI_ms,v_F-Z17rHI_ms_3,3 6297,v_G0VWk5WqDp0,yes,is the person wearing a black vest not wearing a hat,v_G0VWk5WqDp0,v_G0VWk5WqDp0_2,3 6298,v_ZgdMnfTqblw,yes,is the person wearing a black vest playing basketball indoors,v_ZgdMnfTqblw,v_ZgdMnfTqblw_2,3 6299,v_ZgdMnfTqblw,no,is the person wearing a black vest playing basketball outdoors,v_ZgdMnfTqblw,v_ZgdMnfTqblw_3,3 6300,v_g9lNpSAtHgI,no,is the person wearing a blue apron black hair,v_g9lNpSAtHgI,v_g9lNpSAtHgI_3,3 6301,v_MVA568rRjzQ,yes,is the person wearing a blue clothes short hair,v_MVA568rRjzQ,v_MVA568rRjzQ_2,3 6302,v_oGU7m7rCZ-Y,no,is the person wearing a blue coat wearing glasses,v_oGU7m7rCZ-Y,v_oGU7m7rCZ-Y_3,3 6303,v_1px5LTVIR3A,yes,is the person wearing a blue dress dancing on the stage,v_1px5LTVIR3A,v_1px5LTVIR3A_2,3 6304,v_P8S8PIyPXxY,yes,is the person wearing a blue dress wearing glasses,v_P8S8PIyPXxY,v_P8S8PIyPXxY_2,3 6305,v_P8S8PIyPXxY,no,is the person wearing a blue dress with a watch,v_P8S8PIyPXxY,v_P8S8PIyPXxY_3,3 6306,v_qiupddjDHDg,no,is the person wearing a blue jacket using a knife to lift the tile,v_qiupddjDHDg,v_qiupddjDHDg_3,3 6307,v_A_Sr0mCX2rI,no,is the person wearing a camouflage suit long hair,v_A_Sr0mCX2rI,v_A_Sr0mCX2rI_3,3 6308,v_A_Sr0mCX2rI,yes,is the person wearing a camouflage wearing a hat,v_A_Sr0mCX2rI,v_A_Sr0mCX2rI_9,3 6309,v_Uae2MWoldTU,yes,is the person wearing a christmas hat in the video,v_Uae2MWoldTU,v_Uae2MWoldTU_2,3 6310,v_b6QSzGwI9m4,no,is the person in the sunglasses wearing white clothes,v_b6QSzGwI9m4,v_b6QSzGwI9m4_3,3 6311,v_Y7aacWy3WDo,no,is the person in the broken dress blonde hair,v_Y7aacWy3WDo,v_Y7aacWy3WDo_3,3 6312,v_Y7aacWy3WDo,yes,is the person in the broken dress curly hair,v_Y7aacWy3WDo,v_Y7aacWy3WDo_2,3 6313,v_A8RQcVFtovg,yes,is the person wearing a gray dress wearing a slipper,v_A8RQcVFtovg,v_A8RQcVFtovg_7,3 6314,v_pzTqZWPubk8,yes,is the person wearing a gray short sleeve brushing his teeth in the room,v_pzTqZWPubk8,v_pzTqZWPubk8_2,3 6315,v_zV08tITKFMM,yes,is the person wearing a gray suit live in the studio,v_zV08tITKFMM,v_zV08tITKFMM_2,3 6316,v_zV08tITKFMM,no,is the person wearing a gray suit live outside,v_zV08tITKFMM,v_zV08tITKFMM_3,3 6317,v_Pjnuoa4o55c,yes,is the person wearing a gray suit wearing a hat,v_Pjnuoa4o55c,v_Pjnuoa4o55c_2,3 6318,v_qZMcbBsQorE,no,is the person wearing a gray vest with hair dishevelled ,v_qZMcbBsQorE,v_qZMcbBsQorE_3,3 6319,v_qZMcbBsQorE,yes,is the person in the grey vest doing exercise indoors,v_qZMcbBsQorE,v_qZMcbBsQorE_6,3 6320,v_zKYiTA6WBS4,yes,is the person wearing a green coat blowing his hair indoors,v_zKYiTA6WBS4,v_zKYiTA6WBS4_10,3 6321,v_p54LLMnyg54,yes,is the person wearing a green coat in the video,v_p54LLMnyg54,v_p54LLMnyg54_2,3 6322,v_ZJnXQw84xvo,no,is the person wearing a green coat playing with sand in the room,v_ZJnXQw84xvo,v_ZJnXQw84xvo_3,3 6323,v_ZJnXQw84xvo,yes,is the person wearing a green coat playing with sand outside,v_ZJnXQw84xvo,v_ZJnXQw84xvo_2,3 6324,v_cVFVREeD6hM,no,is the person wearing a green dress in the video long hair,v_cVFVREeD6hM,v_cVFVREeD6hM_3,3 6325,v_cVFVREeD6hM,yes,is the person wearing a green dress in the video short hair,v_cVFVREeD6hM,v_cVFVREeD6hM_2,3 6326,v_gZB_XrTnDCI,yes,is the person wearing a green suit wearing a helmet,v_gZB_XrTnDCI,v_gZB_XrTnDCI_2,3 6327,v_gNUCdXGxp0w,yes,is the person wearing a green vest not wearing a hat,v_gNUCdXGxp0w,v_gNUCdXGxp0w_2,3 6328,v_gNUCdXGxp0w,no,is the person wearing a green vest riding indoors,v_gNUCdXGxp0w,v_gNUCdXGxp0w_6,3 6329,v_gNUCdXGxp0w,no,is the person wearing a green vest wearing a hat,v_gNUCdXGxp0w,v_gNUCdXGxp0w_3,3 6330,v_gNUCdXGxp0w,yes,is the person wearing a green vest wearing glasses,v_gNUCdXGxp0w,v_gNUCdXGxp0w_10,3 6331,v_Z-sWZUYL0ZU,no,is the person wearing a grey coat wearing gloves,v_Z-sWZUYL0ZU,v_Z-sWZUYL0ZU_7,3 6332,v_AB480dHyDeM,no,is the person wearing a hand chain in the video,v_AB480dHyDeM,v_AB480dHyDeM_3,3 6333,v_Pjnuoa4o55c,no,is the person wearing a hat in blue,v_Pjnuoa4o55c,v_Pjnuoa4o55c_3,3 6334,v_2ShsRSJ9cqE,no,is the person wearing a hat in the outdoor welding,v_2ShsRSJ9cqE,v_2ShsRSJ9cqE_3,3 6335,v_2ShsRSJ9cqE,yes,is the person wearing a hat welds in the room,v_2ShsRSJ9cqE,v_2ShsRSJ9cqE_2,3 6336,v_Q5HdVXF390c,yes,is the person wearing a plaid shirt drinking beer outside,v_Q5HdVXF390c,v_Q5HdVXF390c_9,3 6337,v_Au4PfoK7hyw,yes,is the person wearing a leaky backpack in the video,v_Au4PfoK7hyw,v_Au4PfoK7hyw_9,3 6338,v_ryFSf08mrkA,yes,is the person wearing a mask outdoors,v_ryFSf08mrkA,v_ryFSf08mrkA_2,3 6339,v_qGLRri_c6n8,no,is the person in the pink jacket sliding a pulley indoors,v_qGLRri_c6n8,v_qGLRri_c6n8_3,3 6340,v_qGLRri_c6n8,yes,is the person in the pink jacket sliding a pulley outside,v_qGLRri_c6n8,v_qGLRri_c6n8_2,3 6341,v_gOnp3DZxeKU,yes,is the person in the purple jacket wearing an apron,v_gOnp3DZxeKU,v_gOnp3DZxeKU_2,3 6342,v_nP1Bk-vJgVg,yes,is the person wearing a purple dress wearing a helmet,v_nP1Bk-vJgVg,v_nP1Bk-vJgVg_2,3 6343,v_xfV4V_AOVSM,yes,is the person wearing a purple dress wearing a necklace,v_xfV4V_AOVSM,v_xfV4V_AOVSM_2,3 6344,v_oflwFZj9PNY,no,is the person in red and black hair blond,v_oflwFZj9PNY,v_oflwFZj9PNY_3,3 6345,v_oflwFZj9PNY,yes,is the person wearing a red and black dress short hair,v_oflwFZj9PNY,v_oflwFZj9PNY_2,3 6346,v_kPn9NzU4W48,yes,is the person wearing a red and white shoe wearing a boxing glove,v_kPn9NzU4W48,v_kPn9NzU4W48_2,3 6347,v_kPn9NzU4W48,no,is the person wearing a red and white shoe wearing a hat,v_kPn9NzU4W48,v_kPn9NzU4W48_3,3 6348,v_kTqt7ry3eVM,yes,is the person wearing a red swimsuit a tie of hair,v_kTqt7ry3eVM,v_kTqt7ry3eVM_2,3 6349,v_p54LLMnyg54,no,is the person wearing a red coat in the video,v_p54LLMnyg54,v_p54LLMnyg54_3,3 6350,v_zpaS2iYrJjk,no,is the person wearing a red coat interviewed indoors,v_zpaS2iYrJjk,v_zpaS2iYrJjk_3,3 6351,v_zpaS2iYrJjk,yes,is the person wearing a red coat interviewed outdoors,v_zpaS2iYrJjk,v_zpaS2iYrJjk_2,3 6352,v_Z-zG845frso,no,is the person wearing a red coat playing volleyball in the room,v_Z-zG845frso,v_Z-zG845frso_3,3 6353,v_Z-zG845frso,yes,is the person wearing a red coat playing volleyball outside,v_Z-zG845frso,v_Z-zG845frso_2,3 6354,v_Z-zG845frso,no,is the person wearing a red coat wearing shoes,v_Z-zG845frso,v_Z-zG845frso_8,3 6355,v_Ye_uVlSo1HI,yes,is the person wearing a red dress jumps first,v_Ye_uVlSo1HI,v_Ye_uVlSo1HI_9,3 6356,v_kyx4MMmBr3A,yes,is the person wearing a red suit a match,v_kyx4MMmBr3A,v_kyx4MMmBr3A_2,3 6357,v_kTqt7ry3eVM,no,is the person wearing a red swimsuit left short hair,v_kTqt7ry3eVM,v_kTqt7ry3eVM_3,3 6358,v_C5SXR9nMY3I,trousers,is the person wearing a skirt or a pair of pants in the video,v_C5SXR9nMY3I,v_C5SXR9nMY3I_9,5 6359,v_pYaZLHpl_Ww,no,is the man in the striped shirt packing outside,v_pYaZLHpl_Ww,v_pYaZLHpl_Ww_3,3 6360,v_pYaZLHpl_Ww,yes,is the man in the striped shirt packing indoors,v_pYaZLHpl_Ww,v_pYaZLHpl_Ww_2,3 6361,v_pYaZLHpl_Ww,yes,is the person wearing a striped shirt wearing a ring,v_pYaZLHpl_Ww,v_pYaZLHpl_Ww_7,3 6362,v_b6QSzGwI9m4,yes,is the man in the sunglasses wearing red,v_b6QSzGwI9m4,v_b6QSzGwI9m4_2,3 6363,v_ej_fSoVO0R8,no,is the person wearing a white apron a teacher,v_ej_fSoVO0R8,v_ej_fSoVO0R8_3,3 6364,v_ej_fSoVO0R8,yes,is the person wearing a white apron a woman,v_ej_fSoVO0R8,v_ej_fSoVO0R8_2,3 6365,v_G25py7yEVyo,yes,is the person wearing a white clothes in a good mood,v_G25py7yEVyo,v_G25py7yEVyo_9,3 6366,v_bYxVbXzQToI,no,is the person wearing a white coat a lady in the video,v_bYxVbXzQToI,v_bYxVbXzQToI_3,3 6367,v_qZtdMXkHRXw,yes,is the person wearing a white coat throwing dart in the room,v_qZtdMXkHRXw,v_qZtdMXkHRXw_9,3 6368,v_MonWdYi3a0I,no,is the person wearing a white dress a boy,v_MonWdYi3a0I,v_MonWdYi3a0I_3,3 6369,v_ghHZ9M-jx0w,yes,is the person wearing a white dress playing volleyball in the room,v_ghHZ9M-jx0w,v_ghHZ9M-jx0w_6,3 6370,v_zqxzFxya6T8,yes,is the person wearing a white shirt taking a horse,v_zqxzFxya6T8,v_zqxzFxya6T8_2,3 6371,v_QJ5xv6oj1sk,no,is the person wearing a white shirt playing tai chi in the room,v_QJ5xv6oj1sk,v_QJ5xv6oj1sk_3,3 6372,v_QJ5xv6oj1sk,yes,is the person wearing a white shirt playing tai chi outside,v_QJ5xv6oj1sk,v_QJ5xv6oj1sk_2,3 6373,v_zqxzFxya6T8,yes,is the person wearing a white shirt riding a horse outside,v_zqxzFxya6T8,v_zqxzFxya6T8_10,3 6374,v_zqxzFxya6T8,no,is the person in the white shirt taking a cow,v_zqxzFxya6T8,v_zqxzFxya6T8_3,3 6375,v_qSP3_C7QWpU,yes,is the person wearing a white vest playing a game indoors,v_qSP3_C7QWpU,v_qSP3_C7QWpU_2,3 6376,v_qSP3_C7QWpU,no,is the person wearing a white vest playing a game outdoors,v_qSP3_C7QWpU,v_qSP3_C7QWpU_3,3 6377,v_prBiREYQ2vQ,yes,is the person wearing a yellow dress at the beginning of the video,v_prBiREYQ2vQ,v_prBiREYQ2vQ_2,3 6378,v_-crpjVnFv0U,no,is the person wearing a yellow dress in the video long hair,v_-crpjVnFv0U,v_-crpjVnFv0U_3,3 6379,v_-crpjVnFv0U,yes,is the person wearing a yellow dress in the video short hair,v_-crpjVnFv0U,v_-crpjVnFv0U_2,3 6380,v_gr53ih2aFkE,yes,is the person wearing a yellow dress wearing shoes,v_gr53ih2aFkE,v_gr53ih2aFkE_2,3 6381,v_45hcc_VI4t4,no,is the person wearing a yellow hair in the video wearing a watch,v_45hcc_VI4t4,v_45hcc_VI4t4_10,3 6382,v_rApbE1VkEjE,yes,is the person wearing a yellow jacket with a shovel in the snow,v_rApbE1VkEjE,v_rApbE1VkEjE_2,3 6383,v_1PNjVTM0Zto,yes,is the person wearing a yellow suit a very slow punch,v_1PNjVTM0Zto,v_1PNjVTM0Zto_2,3 6384,v_1PNjVTM0Zto,yes,is the person wearing a yellow suit punching fast,v_1PNjVTM0Zto,v_1PNjVTM0Zto_3,3 6385,v_zH1MiuiTsx8,no,is the person wearing an orange life jacket wearing a hat,v_zH1MiuiTsx8,v_zH1MiuiTsx8_8,3 6386,v_Of2Umm79Kxg,no,is the person wearing black pants in the video,v_Of2Umm79Kxg,v_Of2Umm79Kxg_3,3 6387,v_LvTwJTvluHE,no,is the person wearing green swimming trunks indoors,v_LvTwJTvluHE,v_LvTwJTvluHE_3,3 6388,v_LvTwJTvluHE,yes,is the person wearing green swimming trunksoutdoors,v_LvTwJTvluHE,v_LvTwJTvluHE_2,3 6389,v_OlR9S70AA74,no,is the person wearing green trousers a blonde hair,v_OlR9S70AA74,v_OlR9S70AA74_3,3 6390,v_GcjzvBatqb4,yes,is the person in the orange suit sitting and playing sports,v_GcjzvBatqb4,v_GcjzvBatqb4_2,3 6391,v_GcjzvBatqb4,no,is the person in the orange suit doing sports standing up,v_GcjzvBatqb4,v_GcjzvBatqb4_3,3 6392,v_-pK2JheWido,yes,is the person wearing pink clothes a girl,v_-pK2JheWido,v_-pK2JheWido_2,3 6393,v_28LdZLfdmMQ,no,is the person wearing the purple pants wearing the wristband,v_28LdZLfdmMQ,v_28LdZLfdmMQ_3,3 6394,v_m73Cod-PmMQ,yes,is the person wearing the red down jacket indoor at the beginning of the video,v_m73Cod-PmMQ,v_m73Cod-PmMQ_2,3 6395,v_m73Cod-PmMQ,no,is the person wearing the red down jacket outdoor at the beginning of the video ,v_m73Cod-PmMQ,v_m73Cod-PmMQ_3,3 6396,v_Oyycph_Ukfg,yes,is the person wearing trousers in the video,v_Oyycph_Ukfg,v_Oyycph_Ukfg_8,3 6397,v_N5Dt3ycaun4,no,is the person wearing white clothes long hair,v_N5Dt3ycaun4,v_N5Dt3ycaun4_3,3 6398,v_2bQx5igckJc,no,is the person with a blonde hair short hair,v_2bQx5igckJc,v_2bQx5igckJc_3,3 6399,v_f2DS_AVorrY,no,is the person diving a woman,v_f2DS_AVorrY,v_f2DS_AVorrY_3,3 6400,v_C5SXR9nMY3I,long,is the person wapping a gift long hair or short hair,v_C5SXR9nMY3I,v_C5SXR9nMY3I_8,8 6401,v_K49OCArHjXI,no,is the person with a goggle on the water,v_K49OCArHjXI,v_K49OCArHjXI_3,3 6402,v_2bQx5igckJc,yes,is the person with a golden hair long hair,v_2bQx5igckJc,v_2bQx5igckJc_2,3 6403,v_PSB1nM3QXxg,no,is the person with a purple belt on the waist a girl,v_PSB1nM3QXxg,v_PSB1nM3QXxg_3,3 6404,v_Gfu8e6R6jUU,yes,is the person with a purple hat dancing in the room,v_Gfu8e6R6jUU,v_Gfu8e6R6jUU_10,3 6405,v_VpZzLvzU7_k,yes,is the person with a red hat long hair,v_VpZzLvzU7_k,v_VpZzLvzU7_k_2,3 6406,v_VpZzLvzU7_k,no,is the person with a red hat short hair,v_VpZzLvzU7_k,v_VpZzLvzU7_k_3,3 6407,v_K49OCArHjXI,yes,is the person with the goggle under water,v_K49OCArHjXI,v_K49OCArHjXI_2,3 6408,v_ghHZ9M-jx0w,yes,is the person with whistle in the video the referee,v_ghHZ9M-jx0w,v_ghHZ9M-jx0w_9,3 6409,v_I2XqSiNerwg,yes,is the person with white hair wearing a white clothes,v_I2XqSiNerwg,v_I2XqSiNerwg_2,3 6410,v_I2XqSiNerwg,no,is the person with white hair wearing a yellow clothes,v_I2XqSiNerwg,v_I2XqSiNerwg_3,3 6411,v_bRgvAHL3dJk,no,is the person with yellow hair a woman,v_bRgvAHL3dJk,v_bRgvAHL3dJk_3,3 6412,v_MVA568rRjzQ,yes,does the person in blue clothes have black hair,v_MVA568rRjzQ,v_MVA568rRjzQ_10,3 6413,v_0mNZfG6CL74,no,is the person's pants on the sports equipment black,v_0mNZfG6CL74,v_0mNZfG6CL74_3,3 6414,v_0mNZfG6CL74,yes,is the person's pants on the sports equipment white,v_0mNZfG6CL74,v_0mNZfG6CL74_2,3 6415,v_Pho9Hgdvc0g,yes,is the person's pose sitting on the boat dangerous,v_Pho9Hgdvc0g,v_Pho9Hgdvc0g_8,3 6416,v_P2xT7dlyX8Y,no,is the pianist wearing short sleeves,v_P2xT7dlyX8Y,v_P2xT7dlyX8Y_3,3 6417,v_CaeZoHNHul0,left,is the piano in the left shoulder or the right shoulder,v_CaeZoHNHul0,v_CaeZoHNHul0_9,8 6418,v_fSBX-gjPblw,no,is the place to be shot fixed,v_fSBX-gjPblw,v_fSBX-gjPblw_3,3 6419,v_G4-qjGC_3VA,no,is the pole jump difficult,v_G4-qjGC_3VA,v_G4-qjGC_3VA_7,3 6420,v_JKJ_EvP7JwQ,yes,is the pumpkin in the room,v_JKJ_EvP7JwQ,v_JKJ_EvP7JwQ_2,3 6421,v_JKJ_EvP7JwQ,no,is the pumpkin outside,v_JKJ_EvP7JwQ,v_JKJ_EvP7JwQ_3,3 6422,v_4H9MMsj4mcM,yes,is the racetrack indoors,v_4H9MMsj4mcM,v_4H9MMsj4mcM_9,3 6423,v_AQ3eFWxZ67U,no,is the person wearing red dress on the side of the slide in the video,v_AQ3eFWxZ67U,v_AQ3eFWxZ67U_3,3 6424,v_ldAHwbF8uWI,yes,is the red dress very strong,v_ldAHwbF8uWI,v_ldAHwbF8uWI_2,3 6425,v_PTwe2IIo3To,yes,"except the lead dancer, are all other ladies ",v_PTwe2IIo3To,v_PTwe2IIo3To_9,3 6426,v_zxpQHLwZCug,no,is the right wrist worn by the person wearing blue clothes,v_zxpQHLwZCug,v_zxpQHLwZCug_3,3 6427,v_qGLRri_c6n8,no,is the sliding pulley dangerous,v_qGLRri_c6n8,v_qGLRri_c6n8_10,3 6428,v_zH1MiuiTsx8,no,is the rowing wooden boat dangerous,v_zH1MiuiTsx8,v_zH1MiuiTsx8_9,3 6429,v_ZlVydB9uUe4,no,is the cutting trees with scissors dangerous,v_ZlVydB9uUe4,v_ZlVydB9uUe4_10,3 6430,v_zqxzFxya6T8,no,is riding horse dangerous,v_zqxzFxya6T8,v_zqxzFxya6T8_9,3 6431,v_QdmcjM2fluo,no,is the pruning trees dangrous,v_QdmcjM2fluo,v_QdmcjM2fluo_10,3 6432,v_qgUHRwC3194,no,is the swimming dangerous,v_qgUHRwC3194,v_qgUHRwC3194_9,3 6433,v_qaml4eEk9hY,no,is the using the vacuum cleaner dangerous,v_qaml4eEk9hY,v_qaml4eEk9hY_9,3 6434,v_G_rVqf_hwXw,no,is the wrist wrestling dangerous,v_G_rVqf_hwXw,v_G_rVqf_hwXw_9,3 6435,v_Erje-PwY9hE,no,is the river polluted,v_Erje-PwY9hE,v_Erje-PwY9hE_7,3 6436,v_elD1P_1oiUk,no,is the river very deep,v_elD1P_1oiUk,v_elD1P_1oiUk_6,3 6437,v_dskswWtslKc,yes,is the rope connected to the board of the surfboard red,v_dskswWtslKc,v_dskswWtslKc_6,3 6438,v_-eJT11AuOa0,no,is the rope holding a dog orange,v_-eJT11AuOa0,v_-eJT11AuOa0_3,3 6439,v_dKJMP8EmZjw,no,is the sail of a sailboat red,v_dKJMP8EmZjw,v_dKJMP8EmZjw_3,3 6440,v_DTI__3fkSzM,yes,is the scarf worn by women in black clothes red,v_DTI__3fkSzM,v_DTI__3fkSzM_2,3 6441,v_DTI__3fkSzM,no,is the scarf worn by women in black clothes white,v_DTI__3fkSzM,v_DTI__3fkSzM_3,3 6442,v_G0VWk5WqDp0,outdoor,is the scene appearing in the video indoors or outdoors,v_G0VWk5WqDp0,v_G0VWk5WqDp0_8,6 6443,v_6xBh3vzhgo4,no,is the shark appearing in the video,v_6xBh3vzhgo4,v_6xBh3vzhgo4_3,3 6444,v_zA2zZPyYLlU,yes,is the ship in the video red,v_zA2zZPyYLlU,v_zA2zZPyYLlU_2,3 6445,v_pYaZLHpl_Ww,no,is the shirt of a striped shirt complex,v_pYaZLHpl_Ww,v_pYaZLHpl_Ww_10,3 6446,v_AwcM25G1h-g,no,is the shirt of the male host blue,v_AwcM25G1h-g,v_AwcM25G1h-g_3,3 6447,v_AwcM25G1h-g,yes,is the shirt of the male host white,v_AwcM25G1h-g,v_AwcM25G1h-g_2,3 6448,v_dFGS7YCDk3Y,no,is the shore of the sea flat,v_dFGS7YCDk3Y,v_dFGS7YCDk3Y_9,3 6449,v_6VXQoPNphgI,yes,is the short hair man not wearing a coat,v_6VXQoPNphgI,v_6VXQoPNphgI_2,3 6450,v_raxeBxPQqlk,yes,is the short sleeved worn by a little boy grey,v_raxeBxPQqlk,v_raxeBxPQqlk_2,3 6451,v_EPsSfOEd3BU,no,is the shot black,v_EPsSfOEd3BU,v_EPsSfOEd3BU_3,3 6452,v_EPsSfOEd3BU,yes,is the shot yellow,v_EPsSfOEd3BU,v_EPsSfOEd3BU_2,3 6453,v_DHjoAOus3xM,no,is the size of the two ships the same,v_DHjoAOus3xM,v_DHjoAOus3xM_7,3 6454,v_R74yolowFPs,no,is the skateboard in the video thrown out with a hand,v_R74yolowFPs,v_R74yolowFPs_3,3 6455,v_QPEAp7nf2Tk,no,is the person on the slide in the middle age,v_QPEAp7nf2Tk,v_QPEAp7nf2Tk_3,3 6456,v_Oyycph_Ukfg,yes,is the socks black,v_Oyycph_Ukfg,v_Oyycph_Ukfg_2,3 6457,v_Oyycph_Ukfg,no,is the socks white,v_Oyycph_Ukfg,v_Oyycph_Ukfg_3,3 6458,v_ZsVfa3JIUNU,yes,is the speaker interviewing outdoors,v_ZsVfa3JIUNU,v_ZsVfa3JIUNU_9,3 6459,v_ghHZ9M-jx0w,no,is the sport in the video playing basketball,v_ghHZ9M-jx0w,v_ghHZ9M-jx0w_3,3 6460,v_ghHZ9M-jx0w,yes,is the sport in the video playing volleyball,v_ghHZ9M-jx0w,v_ghHZ9M-jx0w_2,3 6461,v_tzP0lKSUv_o,yes,is the sportsman wearing a blue clothes,v_tzP0lKSUv_o,v_tzP0lKSUv_o_2,3 6462,v_tzP0lKSUv_o,no,is the sportsman wearing a yellow clothes,v_tzP0lKSUv_o,v_tzP0lKSUv_o_3,3 6463,v_G0VWk5WqDp0,yes,is the standard pose for throwing a javelin by a person in a blue vest,v_G0VWk5WqDp0,v_G0VWk5WqDp0_9,3 6464,v_S6Sg1l78IW0,yes,is the standing woman indoors,v_S6Sg1l78IW0,v_S6Sg1l78IW0_2,3 6465,v_a4gI4LC1rJk,ripe,is the sweet potato raw or ripe in the video,v_a4gI4LC1rJk,v_a4gI4LC1rJk_8,5 6466,v_Aj5ncX5G_2w,no,is the table leg black in the video,v_Aj5ncX5G_2w,v_Aj5ncX5G_2w_3,3 6467,v_Aj5ncX5G_2w,yes,is the table leg in the video white,v_Aj5ncX5G_2w,v_Aj5ncX5G_2w_2,3 6468,v_Db2Dnt2OOo0,yes,is the tattoo pattern in the video good,v_Db2Dnt2OOo0,v_Db2Dnt2OOo0_9,3 6469,v__2txWbQfJrY,yes,is the tile in the video white,v__2txWbQfJrY,v__2txWbQfJrY_10,3 6470,v_CDecXoRSpIc,day,is the time during the day or at night in the video,v_CDecXoRSpIc,v_CDecXoRSpIc_7,8 6471,v_mVAP-WyEc7w,yes,is the tomato red in the video,v_mVAP-WyEc7w,v_mVAP-WyEc7w_2,3 6472,v_mVAP-WyEc7w,no,is the tomato yellow in the video,v_mVAP-WyEc7w,v_mVAP-WyEc7w_3,3 6473,v_vqyQF-1Zc_E,yes,is the tool for skiing a rubber band,v_vqyQF-1Zc_E,v_vqyQF-1Zc_E_2,3 6474,v_cCDffwsJvsY,yes,is the tool used by people a lighter,v_cCDffwsJvsY,v_cCDffwsJvsY_2,3 6475,v_Erje-PwY9hE,yes,is the tortoise appearing in the video,v_Erje-PwY9hE,v_Erje-PwY9hE_2,3 6476,v_46NS8dT15Hw,yes,is the toy hanging on the tree,v_46NS8dT15Hw,v_46NS8dT15Hw_10,3 6477,v_fbr7v8RMkf8,no,is the tree next to the deciduous tree,v_fbr7v8RMkf8,v_fbr7v8RMkf8_10,3 6478,v_gr53ih2aFkE,no,is the tug of war difficult,v_gr53ih2aFkE,v_gr53ih2aFkE_10,3 6479,v_ZsVfa3JIUNU,no,is the tug of war dangerous,v_ZsVfa3JIUNU,v_ZsVfa3JIUNU_10,3 6480,v_b_mWxzi_aps,yes,is the two player in the game fixed,v_b_mWxzi_aps,v_b_mWxzi_aps_2,3 6481,v_b_mWxzi_aps,no,is the two player in the game not fixed,v_b_mWxzi_aps,v_b_mWxzi_aps_3,3 6482,v__CIoHeD7KQc,yes,is the video first explained after the experiment,v__CIoHeD7KQc,v__CIoHeD7KQc_9,3 6483,v_4MwnHtlaEUY,yes,is the video indoors at the beginning,v_4MwnHtlaEUY,v_4MwnHtlaEUY_2,3 6484,v_4MwnHtlaEUY,no,is the video outdoors at the beginning,v_4MwnHtlaEUY,v_4MwnHtlaEUY_3,3 6485,v_BD9CAqD1Yf8,no,is playing badminton on the beach in the video,v_BD9CAqD1Yf8,v_BD9CAqD1Yf8_3,3 6486,v_BD9CAqD1Yf8,yes,is playing volleyball on the beach in the video,v_BD9CAqD1Yf8,v_BD9CAqD1Yf8_2,3 6487,v_8vDSV9ruYlc,yes,is the wallpaper green,v_8vDSV9ruYlc,v_8vDSV9ruYlc_2,3 6488,v_8vDSV9ruYlc,no,is the wallpaper red,v_8vDSV9ruYlc,v_8vDSV9ruYlc_3,3 6489,v_2nDJpvD-eZU,no,is the water in the water tank in the video cloudy,v_2nDJpvD-eZU,v_2nDJpvD-eZU_3,3 6490,v_2nDJpvD-eZU,yes,is the water in the water tank transparent in the video,v_2nDJpvD-eZU,v_2nDJpvD-eZU_2,3 6491,v_0iqx7o5WYW8,no,is the water polo green in the video,v_0iqx7o5WYW8,v_0iqx7o5WYW8_3,3 6492,v_0iqx7o5WYW8,yes,is the water polo in the video orange,v_0iqx7o5WYW8,v_0iqx7o5WYW8_2,3 6493,v_BBKSKU6dGGk,yes,is the weather cold in the video,v_BBKSKU6dGGk,v_BBKSKU6dGGk_8,3 6494,v_dskswWtslKc,no,is the weather in the surfing a rainy day,v_dskswWtslKc,v_dskswWtslKc_3,3 6495,v_dFGS7YCDk3Y,no,is the weather rainy during the game,v_dFGS7YCDk3Y,v_dFGS7YCDk3Y_3,3 6496,v_fhOmyyI0eQE,yes,is the weather sunny at this time,v_fhOmyyI0eQE,v_fhOmyyI0eQE_2,3 6497,v_dskswWtslKc,yes,is the weather sunny in surfing,v_dskswWtslKc,v_dskswWtslKc_2,3 6498,v_dFGS7YCDk3Y,yes,is the weather sunny in the game,v_dFGS7YCDk3Y,v_dFGS7YCDk3Y_2,3 6499,v_CKSlgK_2FP4,older,is the white man young or old,v_CKSlgK_2FP4,v_CKSlgK_2FP4_10,8 6500,v_WNgI2qBvPrY,long sleeves,is the white shirt long sleeved or short sleeved,v_WNgI2qBvPrY,v_WNgI2qBvPrY_10,8 6501,v_fMVuGUBs2cs,yes,is the rectification in the bar,v_fMVuGUBs2cs,v_fMVuGUBs2cs_2,3 6502,v_v-UmNR5yeDc,woman,is the winner of a guessing game a man or a lady,v_v-UmNR5yeDc,v_v-UmNR5yeDc_10,8 6503,v_b_mWxzi_aps,yes,is the winner wearing the white dress,v_b_mWxzi_aps,v_b_mWxzi_aps_10,3 6504,v_FEOdYNR4gls,yes,is the woman acting outdoors,v_FEOdYNR4gls,v_FEOdYNR4gls_7,3 6505,v_amgpZtvd9h0,yes,is the woman behind the girl a lady,v_amgpZtvd9h0,v_amgpZtvd9h0_4,1 6506,v_-CqVpCRxwTY,no,is the woman chinese in the video,v_-CqVpCRxwTY,v_-CqVpCRxwTY_8,3 6507,v_KMK3_VeODlk,no,is the woman in a pink vest gather and watch,v_KMK3_VeODlk,v_KMK3_VeODlk_3,3 6508,v_KMK3_VeODlk,yes,is the woman in a pink vest playing games,v_KMK3_VeODlk,v_KMK3_VeODlk_2,3 6509,v_KMK3_VeODlk,no,is the woman in a pink vest playing with both hands,v_KMK3_VeODlk,v_KMK3_VeODlk_9,3 6510,v_WPYQ27GjFKc,yes,is the woman in black dress middle hair,v_WPYQ27GjFKc,v_WPYQ27GjFKc_2,3 6511,v_Db9VWkgMpbE,no,is the woman in the video with only herself in the gym,v_Db9VWkgMpbE,v_Db9VWkgMpbE_9,3 6512,v_CuLC5G7yWxA,no,is the woman in the video growing up,v_CuLC5G7yWxA,v_CuLC5G7yWxA_3,3 6513,v_CvbL36Y8hN0,yes,is the woman in the video scared before jumping,v_CvbL36Y8hN0,v_CvbL36Y8hN0_6,3 6514,v_FFMugev85IY,no,is the woman knocking on the drum,v_FFMugev85IY,v_FFMugev85IY_7,3 6515,v_S6Sg1l78IW0,no,is the woman standing outside,v_S6Sg1l78IW0,v_S6Sg1l78IW0_3,3 6516,v_eLh51DwDp-E,no,is the woman wearing a black dress with a scarf,v_eLh51DwDp-E,v_eLh51DwDp-E_3,3 6517,v_hIHeMA1oRrY,yes,is the woman wearing a hand chain in the right hand of the video,v_hIHeMA1oRrY,v_hIHeMA1oRrY_2,3 6518,v_b_mWxzi_aps,yes,is the woman who holds the competitor's hands in the video a lady,v_b_mWxzi_aps,v_b_mWxzi_aps_6,3 6519,v_Bgi2Y85Mbwk,yes,is there a band in a shop,v_Bgi2Y85Mbwk,v_Bgi2Y85Mbwk_10,3 6520,v_Oyycph_Ukfg,yes,is there a bell on the neck of a dog,v_Oyycph_Ukfg,v_Oyycph_Ukfg_10,3 6521,v_eLh51DwDp-E,yes,is there a bookshelf in the room,v_eLh51DwDp-E,v_eLh51DwDp-E_8,3 6522,v_Bgi2Y85Mbwk,yes,is there a burning smoke in the video,v_Bgi2Y85Mbwk,v_Bgi2Y85Mbwk_9,3 6523,v_7F-mVWMP2vM,no,is there a candle on the table,v_7F-mVWMP2vM,v_7F-mVWMP2vM_3,3 6524,v_Db9VWkgMpbE,yes,does anyone in the video have coaching,v_Db9VWkgMpbE,v_Db9VWkgMpbE_6,3 6525,v_-eJT11AuOa0,yes,is there a collar on the dog's neck,v_-eJT11AuOa0,v_-eJT11AuOa0_2,3 6526,v_PkRvgIFREJU,yes,is there a dress in the video,v_PkRvgIFREJU,v_PkRvgIFREJU_8,3 6527,v_1lwG-y_QCkc,yes,is there a dry leaf on the lawn,v_1lwG-y_QCkc,v_1lwG-y_QCkc_2,3 6528,v_Ep5LuX_2gfI,yes,is there fish on the bottom of the sea,v_Ep5LuX_2gfI,v_Ep5LuX_2gfI_2,3 6529,v_7H1KylJRii8,yes,is there fruit on the table,v_7H1KylJRii8,v_7H1KylJRii8_2,3 6530,v_amgpZtvd9h0,yes,is there a hat for a girl's cloth,v_amgpZtvd9h0,v_amgpZtvd9h0_9,3 6531,v_Av0VsTxJd78,yes,is there a helicopter in the video,v_Av0VsTxJd78,v_Av0VsTxJd78_6,3 6532,v_gCHo9vxfEzM,no,is dancing difficult for all people on the stage,v_gCHo9vxfEzM,v_gCHo9vxfEzM_8,3 6533,v_Z-zG845frso,no,is the playing volleyball difficult,v_Z-zG845frso,v_Z-zG845frso_10,3 6534,v_zO5JMTzLDHw,yes,is the stilt walking difficult,v_zO5JMTzLDHw,v_zO5JMTzLDHw_10,3 6535,v_hG4VsZQQ2_c,no,is there a high risk factor for chopping wood,v_hG4VsZQQ2_c,v_hG4VsZQQ2_c_10,3 6536,v_QoRlOa6R1LY,yes,is the climbing dangerous ,v_QoRlOa6R1LY,v_QoRlOa6R1LY_8,3 6537,v_gZB_XrTnDCI,yes,is the action dangerous for the green clothing person to ride a bike,v_gZB_XrTnDCI,v_gZB_XrTnDCI_8,3 6538,v_auO4r3De6vc,yes,is there a lady among the dog trainers in the video,v_auO4r3De6vc,v_auO4r3De6vc_10,3 6539,v_an1R4BP97JY,yes,is there a lavender in the video,v_an1R4BP97JY,v_an1R4BP97JY_6,3 6540,v_DTI__3fkSzM,yes,are there a lot of pedestrians outside,v_DTI__3fkSzM,v_DTI__3fkSzM_7,3 6541,v_1vTHJMMPZN0,yes,are there many people on the beach,v_1vTHJMMPZN0,v_1vTHJMMPZN0_9,3 6542,v_Ar6TcWqwK-A,yes,is there a microwave on the table,v_Ar6TcWqwK-A,v_Ar6TcWqwK-A_10,3 6543,v_e-Xf13exY4E,no,is there a pattern on a man's white clothes,v_e-Xf13exY4E,v_e-Xf13exY4E_3,3 6544,v_AtbTioB1_Kw,yes,is there a person wearing beige pants in the video,v_AtbTioB1_Kw,v_AtbTioB1_Kw_7,3 6545,v_BD9CAqD1Yf8,yes,is there a person wearing sunglasses in the video,v_BD9CAqD1Yf8,v_BD9CAqD1Yf8_8,3 6546,v_fMVuGUBs2cs,yes,is there a piece of ice in the wine,v_fMVuGUBs2cs,v_fMVuGUBs2cs_8,3 6547,v_-pkfcMUIEMo,no,is there a pull on the zipper for men's clothes,v_-pkfcMUIEMo,v_-pkfcMUIEMo_10,3 6548,v_BD9CAqD1Yf8,no,is there a purple car in the video,v_BD9CAqD1Yf8,v_BD9CAqD1Yf8_9,3 6549,v_KsFid_YVsn0,yes,is there a red flower on the woman's head in the video,v_KsFid_YVsn0,v_KsFid_YVsn0_2,3 6550,v_7F-mVWMP2vM,yes,is there a red item on the table,v_7F-mVWMP2vM,v_7F-mVWMP2vM_2,3 6551,v_pVuuVHA3RVw,yes,is there a running program at the olympic games,v_pVuuVHA3RVw,v_pVuuVHA3RVw_8,3 6552,v_BMy7CBVxH5M,no,is there a saddle on the horse's back,v_BMy7CBVxH5M,v_BMy7CBVxH5M_9,3 6553,v_GxDNGtoVjS0,yes,is there a scissors in the hand of the person with a gray coat,v_GxDNGtoVjS0,v_GxDNGtoVjS0_2,3 6554,v_eJc8bebOF2A,yes,is there a sign on the person's clothes who pushs the shot,v_eJc8bebOF2A,v_eJc8bebOF2A_8,3 6555,v_HWFosaUWoSI,yes,is there a siwmming pool in the house in the video,v_HWFosaUWoSI,v_HWFosaUWoSI_2,3 6556,v_BBKSKU6dGGk,yes,is there snow in the tree in the video,v_BBKSKU6dGGk,v_BBKSKU6dGGk_10,3 6557,v_4_jDgRsOGvY,yes,is there a tattoo on the no shirt person ,v_4_jDgRsOGvY,v_4_jDgRsOGvY_9,3 6558,v_hG4VsZQQ2_c,yes,is there a tattoo on the right shoulder of the person spliting firewood,v_hG4VsZQQ2_c,v_hG4VsZQQ2_c_2,3 6559,v_b0qGo-HT5iQ,yes,is there a tool in the hand of a doctor,v_b0qGo-HT5iQ,v_b0qGo-HT5iQ_2,3 6560,v_7H1KylJRii8,no,is there a tv on the table,v_7H1KylJRii8,v_7H1KylJRii8_3,3 6561,v_eMgC7I-GcgA,no,is there a very serious pollution in the sea area,v_eMgC7I-GcgA,v_eMgC7I-GcgA_3,3 6562,v_H9PaZiWLgXU,yes,is there a watch on the left hand of the person wearing yellow,v_H9PaZiWLgXU,v_H9PaZiWLgXU_2,3 6563,v_H9PaZiWLgXU,no,is there a watch on the right hand of the person wearing yellow,v_H9PaZiWLgXU,v_H9PaZiWLgXU_3,3 6564,v_H2fG7JRRMAs,yes,is there a wathch on the hand of the dealer,v_H2fG7JRRMAs,v_H2fG7JRRMAs_7,3 6565,v_eQ0sW4hJ9zU,yes,is there a white haired old man in the video,v_eQ0sW4hJ9zU,v_eQ0sW4hJ9zU_2,3 6566,v_elD1P_1oiUk,yes,is there a woman in the video,v_elD1P_1oiUk,v_elD1P_1oiUk_2,3 6567,v_R74yolowFPs,yes,is there a yellow disk in the video,v_R74yolowFPs,v_R74yolowFPs_9,3 6568,v_KsFid_YVsn0,no,is there a yellow flower on the woman's head in the video,v_KsFid_YVsn0,v_KsFid_YVsn0_3,3 6569,v_paRAKx8svJ8,no,is there judges appearing black hair,v_paRAKx8svJ8,v_paRAKx8svJ8_8,3 6570,v_H2fG7JRRMAs,yes,is there a child in the video,v_H2fG7JRRMAs,v_H2fG7JRRMAs_2,3 6571,v_BFChXuwZ4wo,no,is there not sunglasses on the head of the grey vest person,v_BFChXuwZ4wo,v_BFChXuwZ4wo_3,3 6572,v_1lwG-y_QCkc,no,is there any waste paper on the lawn,v_1lwG-y_QCkc,v_1lwG-y_QCkc_3,3 6573,v_BkDbDnvoL28,yes,is there anyone on the side of the team being protected,v_BkDbDnvoL28,v_BkDbDnvoL28_2,3 6574,v_FWZ6wgaJ_L4,yes,is there anything that has not been cut on the left side of the blue dress person,v_FWZ6wgaJ_L4,v_FWZ6wgaJ_L4_7,3 6575,v_BMy7CBVxH5M,yes,is there green grass on the roof,v_BMy7CBVxH5M,v_BMy7CBVxH5M_10,3 6576,v_H2fG7JRRMAs,no,is there no child in the video,v_H2fG7JRRMAs,v_H2fG7JRRMAs_3,3 6577,v_KXMZHfCwTO0,yes,is there no leaves on the small tree,v_KXMZHfCwTO0,v_KXMZHfCwTO0_2,3 6578,v_BkDbDnvoL28,no,is there no one on the side of each team,v_BkDbDnvoL28,v_BkDbDnvoL28_3,3 6579,v_B4Zp5XN97Gc,no,is there no picture of shovel digging in the video,v_B4Zp5XN97Gc,v_B4Zp5XN97Gc_3,3 6580,v_GxDNGtoVjS0,no,is there no scissors in the hand of the person with a gray coat,v_GxDNGtoVjS0,v_GxDNGtoVjS0_3,3 6581,v_HWFosaUWoSI,no,is there no swimming pool in the house in the video,v_HWFosaUWoSI,v_HWFosaUWoSI_3,3 6582,v_b0qGo-HT5iQ,no,is there no tools in the hands of the doctor,v_b0qGo-HT5iQ,v_b0qGo-HT5iQ_3,3 6583,v_Ep5LuX_2gfI,no,is there no waterweeds on the bottom of the sea,v_Ep5LuX_2gfI,v_Ep5LuX_2gfI_3,3 6584,v_eQ0sW4hJ9zU,no,is there only a white haired old person in the video,v_eQ0sW4hJ9zU,v_eQ0sW4hJ9zU_3,3 6585,v_QX5e5Mla660,no,is there only one person dancing in the video,v_QX5e5Mla660,v_QX5e5Mla660_10,3 6586,v_KXMZHfCwTO0,no,is there some leaves on a small tree,v_KXMZHfCwTO0,v_KXMZHfCwTO0_3,3 6587,v_pMtu7fOHdII,yes,is there this sport at the winter olympics,v_pMtu7fOHdII,v_pMtu7fOHdII_7,3 6588,v_aPI0nPvzJlE,no,are there three person in the video,v_aPI0nPvzJlE,v_aPI0nPvzJlE_3,3 6589,v_Em4ekFj4XIs,no,is this dog big ,v_Em4ekFj4XIs,v_Em4ekFj4XIs_8,3 6590,v_Em4ekFj4XIs,yes,is this dog a black and white,v_Em4ekFj4XIs,v_Em4ekFj4XIs_10,3 6591,v_qlK-c7hRqcA,yes,is this activity dangerous for close combating,v_qlK-c7hRqcA,v_qlK-c7hRqcA_10,3 6592,v_eMgC7I-GcgA,yes,is this area very shallow,v_eMgC7I-GcgA,v_eMgC7I-GcgA_2,3 6593,v_paRAKx8svJ8,yes,is this competition a great difficulty factor,v_paRAKx8svJ8,v_paRAKx8svJ8_10,3 6594,v_eQwLUJ3P7wI,no,is this dog a thin dog,v_eQwLUJ3P7wI,v_eQwLUJ3P7wI_8,3 6595,v_kMtjk1KFvXQ,no,is this girl practicing,v_kMtjk1KFvXQ,v_kMtjk1KFvXQ_3,3 6596,v_pcLGX5qvUcI,yes,is the difficulty of the sport high,v_pcLGX5qvUcI,v_pcLGX5qvUcI_8,3 6597,v_CDncYtx6Lwc,sitting,is this lady sitting or standing,v_CDncYtx6Lwc,v_CDncYtx6Lwc_8,8 6598,v_laU1Hvm5Dis,no,is this person a boy,v_laU1Hvm5Dis,v_laU1Hvm5Dis_3,3 6599,v_laU1Hvm5Dis,yes,is this person a girl,v_laU1Hvm5Dis,v_laU1Hvm5Dis_2,3 6600,v_PFeerDZbGn8,yes,is this performance a great difficulty factor,v_PFeerDZbGn8,v_PFeerDZbGn8_7,3 6601,v_pcLGX5qvUcI,yes,is this sport appearing at the winter olympics,v_pcLGX5qvUcI,v_pcLGX5qvUcI_7,3 6602,v_prBiREYQ2vQ,yes,is this sport helpful for physical exercise,v_prBiREYQ2vQ,v_prBiREYQ2vQ_10,3 6603,v_7IwHwDuQdyU,no,is this sport used to use sweaters,v_7IwHwDuQdyU,v_7IwHwDuQdyU_3,3 6604,v_kkji9hespu0,no,is this woman cooking dumplings,v_kkji9hespu0,v_kkji9hespu0_3,3 6605,v_kkji9hespu0,yes,is this woman cooking noodles,v_kkji9hespu0,v_kkji9hespu0_2,3 6606,v_kpOAGEYHts8,no,is this woman wearing a red coat,v_kpOAGEYHts8,v_kpOAGEYHts8_3,3 6607,v_kpOAGEYHts8,yes,is this woman wearing a white coat,v_kpOAGEYHts8,v_kpOAGEYHts8_2,3 6608,v_w4pO-1-FG5w,no,is this woman wearing an ear nail on her ear,v_w4pO-1-FG5w,v_w4pO-1-FG5w_3,3 6609,v_w4pO-1-FG5w,yes,is this woman wearing earrings on her ears,v_w4pO-1-FG5w,v_w4pO-1-FG5w_2,3 6610,v_HDt5z5Y0opo,yes,is wrestling dengerous,v_HDt5z5Y0opo,v_HDt5z5Y0opo_10,3 6611,v_0lbv0AE5gJQ,no,isn't the person in the video a disabled person,v_0lbv0AE5gJQ,v_0lbv0AE5gJQ_3,3 6612,v_40BPDWojssc,yes,is the person in black black,v_40BPDWojssc,v_40BPDWojssc_9,3 6613,v_eJc8bebOF2A,sports meeting,please guess where the events happened in the video,v_eJc8bebOF2A,v_eJc8bebOF2A_10,6 6614,v_EQrcCmgraa8,gym,please tell me where the time in the video took place.,v_EQrcCmgraa8,v_EQrcCmgraa8_6,6 6615,v_fQ1OuD7x3to,yes,is the black man cleaning the glass,v_fQ1OuD7x3to,v_fQ1OuD7x3to_2,3 6616,v_mek9Zodu8LM,take off skirt,what happened when the person in white dress lost the guessing game. ,v_mek9Zodu8LM,v_mek9Zodu8LM_5,2 6617,v_SNja9iUdAiI,right hand,which hand does the man holds stick in,v_SNja9iUdAiI,v_SNja9iUdAiI_6,8 6618,v_FaP7unySMOs,yes,is everyone in the video man,v_FaP7unySMOs,v_FaP7unySMOs_2,3 6619,v_meNgZdu8tIk,ones right hand,which hand does the man wears a ring on,v_meNgZdu8tIk,v_meNgZdu8tIk_6,5 6620,v_9G172wz5Yqo,mother and daughter,what the relationship between the girl in soft red and the girl in red,v_9G172wz5Yqo,v_9G172wz5Yqo_7,8 6621,v_DHjoAOus3xM,white men fall in water,what happened after the two ships approached,v_DHjoAOus3xM,v_DHjoAOus3xM_5,2 6622,v_AwcM25G1h-g,archery,what is the news about,v_AwcM25G1h-g,v_AwcM25G1h-g_9,8 6623,v_2bQx5igckJc,secondary,how is the difficulty of this activity,v_2bQx5igckJc,v_2bQx5igckJc_10,8 6624,v_2DCHbuwZNSs,long,what is the hairstyle of the person who removed the respirator,v_2DCHbuwZNSs,v_2DCHbuwZNSs_10,8 6625,v_ds3mAmUPxYA,marvellous,how about their performance,v_ds3mAmUPxYA,v_ds3mAmUPxYA_10,8 6626,v_iAes5SVj_Fg,leg clip,what action does the black man in the shirtless jacket use,v_iAes5SVj_Fg,v_iAes5SVj_Fg_7,8 6627,v_Erje-PwY9hE,tortoise,what two animals appeare before the birdhouse appeared in the river,v_Erje-PwY9hE,v_Erje-PwY9hE_5,2 6628,v_I2XqSiNerwg,spider,what animals are imitated by three people carrying white lights,v_I2XqSiNerwg,v_I2XqSiNerwg_9,8 6629,v_7CM2OYr-Csw,vigny,what animation is on the kite,v_7CM2OYr-Csw,v_7CM2OYr-Csw_6,5 6630,v_JGxf-jke0e8,wash clothes,what is the man beside the basin doing,v_JGxf-jke0e8,v_JGxf-jke0e8_1,0 6631,v_gCHo9vxfEzM,dance,what are everyone in red doing on the stage ,v_gCHo9vxfEzM,v_gCHo9vxfEzM_1,0 6632,v_J9KjpzKM8oc,play drifting air cushion,what are everyone wearing helmets doing in video,v_J9KjpzKM8oc,v_J9KjpzKM8oc_1,0 6633,v_zOI9SjQpc_Q,play football,what are all athletes doing in video,v_zOI9SjQpc_Q,v_zOI9SjQpc_Q_1,0 6634,v_HJWwqjLf1I4,fish,what is swimming around everyone in the video,v_HJWwqjLf1I4,v_HJWwqjLf1I4_9,5 6635,v_ECZb_tQZ4Pg,gambling table,what it is in front of the black boy,v_ECZb_tQZ4Pg,v_ECZb_tQZ4Pg_4,1 6636,v_54TIARWo-S8,long jump,what is the boy in pink doing,v_54TIARWo-S8,v_54TIARWo-S8_1,0 6637,v_KPRymTsPCC0,parade in desert,what is the guy with glasses doing,v_KPRymTsPCC0,v_KPRymTsPCC0_1,0 6638,v_9TjPn_ejmFU,wood brush,what is the kid in blue and white stripes doing,v_9TjPn_ejmFU,v_9TjPn_ejmFU_1,0 6639,v_cCimLg-8Dy4,play game,what is the girl in black doing in video,v_cCimLg-8Dy4,v_cCimLg-8Dy4_1,0 6640,v_EETygPQ-j08,pulley slippery,what is the girl in blue doing,v_EETygPQ-j08,v_EETygPQ-j08_1,0 6641,v_vqyQF-1Zc_E,skiing,what is the girl in black doing in video,v_vqyQF-1Zc_E,v_vqyQF-1Zc_E_1,0 6642,v_woI_zP55qWo,diving,what is the man doing on the high platform in the video,v_woI_zP55qWo,v_woI_zP55qWo_1,0 6643,v_dHKeNK1uWUg,musical instrument,what's the man in red doing,v_dHKeNK1uWUg,v_dHKeNK1uWUg_1,0 6644,v_EQrcCmgraa8,weightlifting,what's a man in white shoes doing,v_EQrcCmgraa8,v_EQrcCmgraa8_1,0 6645,v_V08Q-DbT0GQ,noodle,what is the man wearing glasses doing in video,v_V08Q-DbT0GQ,v_V08Q-DbT0GQ_1,0 6646,v_u_vLZxgO9Rw,rope skipping,what is the man in green doing in the vide,v_u_vLZxgO9Rw,v_u_vLZxgO9Rw_1,0 6647,v_Erje-PwY9hE,skating canoe,what is the man in yellow t-shirt doing,v_Erje-PwY9hE,v_Erje-PwY9hE_1,0 6648,v_wCexKIuAj3A,smoking,what is the man with the white beard doing in the video,v_wCexKIuAj3A,v_wCexKIuAj3A_1,0 6649,v_j6BCgvUusWs,gambling,what is the man standing at the table doing,v_j6BCgvUusWs,v_j6BCgvUusWs_1,0 6650,v_Ep5LuX_2gfI,diving,what are the people in wetsuits doing,v_Ep5LuX_2gfI,v_Ep5LuX_2gfI_1,0 6651,v_L5IbDi09Yb4,diving in sea,what is the man in wetsuits doing,v_L5IbDi09Yb4,v_L5IbDi09Yb4_1,0 6652,v_-p7aui3nAnc,street performance,what's the man doing in the middle of the road,v_-p7aui3nAnc,v_-p7aui3nAnc_1,0 6653,v_6H0D8VaIli0,street dance,what's the man doing in the middle of the place in video,v_6H0D8VaIli0,v_6H0D8VaIli0_1,0 6654,v_0iqx7o5WYW8,water polo,what are people doing in the pool in video,v_0iqx7o5WYW8,v_0iqx7o5WYW8_1,0 6655,v_v6P6bBPBXYw,play football,what are people doing in the ground in video,v_v6P6bBPBXYw,v_v6P6bBPBXYw_1,0 6656,v_uktUeF3Fy7o,surfing,what's the man in the yellow life jacket doing in the video,v_uktUeF3Fy7o,v_uktUeF3Fy7o_1,0 6657,v_Zt9qvbUnNhc,turn somersault,what is the guy in red shorts doing at the start of the video,v_Zt9qvbUnNhc,v_Zt9qvbUnNhc_1,0 6658,v_QX5e5Mla660,dance,what is the guy in white short sleeves doing at the start of the video,v_QX5e5Mla660,v_QX5e5Mla660_1,0 6659,v_HTSxgkgecS0,tackle rubber rafts,what is the guy in white hats sleeves doing in the video,v_HTSxgkgecS0,v_HTSxgkgecS0_1,0 6660,v_jBlG0L_M96g,dunk,what's the guy doing with the jumpers,v_jBlG0L_M96g,v_jBlG0L_M96g_1,0 6661,v_6O4S2CpRB0A,tug of war,what are the people doing on the grass in the video,v_6O4S2CpRB0A,v_6O4S2CpRB0A_1,0 6662,v_HDt5z5Y0opo,wrestling,what is the man on the stage undress doing in the video,v_HDt5z5Y0opo,v_HDt5z5Y0opo_1,0 6663,v_eMgC7I-GcgA,surfing,what's a guy doing on a surfboard,v_eMgC7I-GcgA,v_eMgC7I-GcgA_1,0 6664,v_PBYg9ekd86w,entertainment,what's the guy doing with the ping-pong ball in the video,v_PBYg9ekd86w,v_PBYg9ekd86w_1,0 6665,v_HJWwqjLf1I4,diving,what is the man in blue doing in the video,v_HJWwqjLf1I4,v_HJWwqjLf1I4_1,0 6666,v_HtG-i1CG2Qs,on toilet,what is the man in blue doing in the video,v_HtG-i1CG2Qs,v_HtG-i1CG2Qs_1,0 6667,v_GgnM5RGNtDE,dance,what is the man in blue t-shirt doing,v_GgnM5RGNtDE,v_GgnM5RGNtDE_1,0 6668,v_LPRLV0eVgfY,swing,what is the man in red doing,v_LPRLV0eVgfY,v_LPRLV0eVgfY_1,0 6669,v_HQVSLlKhupk,play football,what is the man in green doing in the video,v_HQVSLlKhupk,v_HQVSLlKhupk_1,0 6670,v_m73Cod-PmMQ,prepare for skiing,what is the man in red doing,v_m73Cod-PmMQ,v_m73Cod-PmMQ_1,0 6671,v_HWFosaUWoSI,climb escalator,what is the man in white doing in video,v_HWFosaUWoSI,v_HWFosaUWoSI_1,0 6672,v_I9ficvPdpZg,draw,what is the man in white doing on the stage,v_I9ficvPdpZg,v_I9ficvPdpZg_1,0 6673,v_H_JLBvfP88U,bullfight,what is the man in yellow doing in video,v_H_JLBvfP88U,v_H_JLBvfP88U_1,0 6674,v_s9PkkDEl6aY,collar exercises,what is the man standing on the platform doing,v_s9PkkDEl6aY,v_s9PkkDEl6aY_1,0 6675,v_wnNiWoJxfSQ,polo,what's the guy in purple number 2 doing in the video,v_wnNiWoJxfSQ,v_wnNiWoJxfSQ_1,0 6676,v_VjMMwpgOCPo,uneven bars,what's the person in black and white doing,v_VjMMwpgOCPo,v_VjMMwpgOCPo_1,0 6677,v_qGtUXGG78tM,pruning trees,what's the man in the dark blue pants doing,v_qGtUXGG78tM,v_qGtUXGG78tM_1,0 6678,v_W2eumNilwuI,rope skipping,what's the guy in green shoes doing,v_W2eumNilwuI,v_W2eumNilwuI_1,0 6679,v_LvTwJTvluHE,surfing,what's the guy in the green swimming trunks doing,v_LvTwJTvluHE,v_LvTwJTvluHE_1,0 6680,v_nP1Bk-vJgVg,play lacrosse,what's the guy in the green uniform doing,v_nP1Bk-vJgVg,v_nP1Bk-vJgVg_1,0 6681,v_gNUCdXGxp0w,riding,what's the guy in the green vest doing,v_gNUCdXGxp0w,v_gNUCdXGxp0w_1,0 6682,v_ryFSf08mrkA,pruning shrubs,what's the man in the mask doing,v_ryFSf08mrkA,v_ryFSf08mrkA_1,0 6683,v_WXH-Tj0-g4w,clean up garbage,what's the guy in orange doing in video,v_WXH-Tj0-g4w,v_WXH-Tj0-g4w_1,0 6684,v_oflwFZj9PNY,long jump,what's the guy in red and black doing,v_oflwFZj9PNY,v_oflwFZj9PNY_1,0 6685,v_kPn9NzU4W48,boxing,what's the guy in red and white shoes doing,v_kPn9NzU4W48,v_kPn9NzU4W48_1,0 6686,v_bYNQ0GrCt64,weightlifting,what's the guy in red shoes doing in video,v_bYNQ0GrCt64,v_bYNQ0GrCt64_1,0 6687,v_2-AMrzL7V-U,sports competition,what's the guy in red suit doing,v_2-AMrzL7V-U,v_2-AMrzL7V-U_1,0 6688,v_uJAL31wAD2A,drift,what's the man in the striped bikini doing in the video,v_uJAL31wAD2A,v_uJAL31wAD2A_1,0 6689,v_GsPE54bMFwE,sliding skateboard,what's the guy in green hat doing,v_GsPE54bMFwE,v_GsPE54bMFwE_1,0 6690,v_PSB1nM3QXxg,demonstrating,what's the guy in purple belt doing,v_PSB1nM3QXxg,v_PSB1nM3QXxg_1,0 6691,v_Gfu8e6R6jUU,dance,what's the guy in purple hat doing,v_Gfu8e6R6jUU,v_Gfu8e6R6jUU_1,0 6692,v_JGxf-jke0e8,bracelet,what are the grown-ups on the side of the basin wearing on their hands,v_JGxf-jke0e8,v_JGxf-jke0e8_9,5 6693,v_HWFosaUWoSI,good afforested environment,what are the advantages of this house,v_HWFosaUWoSI,v_HWFosaUWoSI_10,8 6694,v_huFOZ2BiM_k,gymnastics,what is the athlete wearing red pants doing in the video,v_huFOZ2BiM_k,v_huFOZ2BiM_k_1,0 6695,v_woI_zP55qWo,relieve stress,what are the benefits of diving,v_woI_zP55qWo,v_woI_zP55qWo_10,8 6696,v_Vxw3yFCV2iA,displacement pressure,what are the benefits of water sled movement,v_Vxw3yFCV2iA,v_Vxw3yFCV2iA_8,8 6697,v__jV5sAOOHLk,blow up,what's the guy in the black suit doing with the tires,v__jV5sAOOHLk,v__jV5sAOOHLk_6,8 6698,v_cK0-WcGXacQ,discus throwing,what's the black athlete doing,v_cK0-WcGXacQ,v_cK0-WcGXacQ_1,0 6699,v_2bQx5igckJc,braid,what's the blonde doing,v_2bQx5igckJc,v_2bQx5igckJc_1,0 6700,v_7lxP-hWFA24,ride bicycle,what's the boy in yellow doing,v_7lxP-hWFA24,v_7lxP-hWFA24_1,0 6701,v_9k19UUJtldg,play table tennis,what's the boy in blue doing,v_9k19UUJtldg,v_9k19UUJtldg_1,0 6702,v_46NS8dT15Hw,play toy,what's the boy in blue doing,v_46NS8dT15Hw,v_46NS8dT15Hw_1,0 6703,v_kpOAGEYHts8,chips,what are the round ones,v_kpOAGEYHts8,v_kpOAGEYHts8_6,5 6704,v_LvTwJTvluHE,yellow,what is the color of the hair of the man in the green swimming trunks,v_LvTwJTvluHE,v_LvTwJTvluHE_8,4 6705,v_Jhcis4S2Vsg,discus,what are the contestants doing in the video,v_Jhcis4S2Vsg,v_Jhcis4S2Vsg_1,0 6706,v_v6DdLg_Xnkg,wear contact lenses,what are the curls in the video doing,v_v6DdLg_Xnkg,v_v6DdLg_Xnkg_1,0 6707,v_Df7AnfIEhYw,air cushion,what's at the feet of two men,v_Df7AnfIEhYw,v_Df7AnfIEhYw_4,1 6708,v_28WDlVOgslg,manicure,what's the girl in pink doing,v_28WDlVOgslg,v_28WDlVOgslg_1,0 6709,v_CvbL36Y8hN0,operation guidance,what is the girl on the right side of video doing,v_CvbL36Y8hN0,v_CvbL36Y8hN0_10,8 6710,v_ECZb_tQZ4Pg,licensing,what's the girl with the glasses doing,v_ECZb_tQZ4Pg,v_ECZb_tQZ4Pg_1,0 6711,v_IxaBEVd2PZM,ballet,what's a woman with a long braid doing,v_IxaBEVd2PZM,v_IxaBEVd2PZM_1,0 6712,v_-Fk62y-1WHo,flute,what are the instruments played by a little boy,v_-Fk62y-1WHo,v_-Fk62y-1WHo_9,5 6713,v_Pho9Hgdvc0g,riding unicycle,what's the lady in white doing,v_Pho9Hgdvc0g,v_Pho9Hgdvc0g_1,0 6714,v_SYh-j9bK_ls,dance,what are the cheerleaders doing,v_SYh-j9bK_ls,v_SYh-j9bK_ls_1,0 6715,v_7BUr2cN8CLs,cheer,what's the blonde at the end of the video doing,v_7BUr2cN8CLs,v_7BUr2cN8CLs_1,0 6716,v_3dWw9GLcOeA,rt,what is the letter that appears at the beginning of the video,v_3dWw9GLcOeA,v_3dWw9GLcOeA_10,8 6717,v_UvOEuhS0V3E,rouge lips,what is the long-haired woman doing in the video,v_UvOEuhS0V3E,v_UvOEuhS0V3E_1,0 6718,v_eQwLUJ3P7wI,walk dog,what's the guy with long hair doing,v_eQwLUJ3P7wI,v_eQwLUJ3P7wI_1,0 6719,v_ZsVfa3JIUNU,interview,what's the guy doing with the microphone,v_ZsVfa3JIUNU,v_ZsVfa3JIUNU_1,0 6720,v_HowkVy5fOyk,bullfight,what is the man in the bullfight doing,v_HowkVy5fOyk,v_HowkVy5fOyk_1,0 6721,v_f1d7_TKXNYQ,bids gun,what is the man running in the video doing,v_f1d7_TKXNYQ,v_f1d7_TKXNYQ_1,0 6722,v_CfqnHsp6olc,gatekeepers,what is player 1 doing in the video,v_CfqnHsp6olc,v_CfqnHsp6olc_1,0 6723,v_Co_cpZWbzFk,1,what is the number on the clothes worn by people in red pants,v_Co_cpZWbzFk,v_Co_cpZWbzFk_6,7 6724,v_brJIpRGcBFU,pruning branches,what are the other functions of the car in the video,v_brJIpRGcBFU,v_brJIpRGcBFU_6,8 6725,v_JY9oOSfjj_E,skiing,what's the man doing on the air cushion,v_JY9oOSfjj_E,v_JY9oOSfjj_E_1,0 6726,v_B4Zp5XN97Gc,fork,what is the person holding the fork in the video doing,v_B4Zp5XN97Gc,v_B4Zp5XN97Gc_1,0 6727,v_-eJT11AuOa0,walk dog,what is the man with a dog doing,v_-eJT11AuOa0,v_-eJT11AuOa0_1,0 6728,v_SB0dU5oDvaE,shovel snow,what is the man in black doing in the snow,v_SB0dU5oDvaE,v_SB0dU5oDvaE_1,0 6729,v_Mk7Yjq1U8OI,play volleyball,what's the guy with the blue pants doing in the first picture,v_Mk7Yjq1U8OI,v_Mk7Yjq1U8OI_1,0 6730,v_FWZ6wgaJ_L4,paring knife,what does the blue guy use to peel it,v_FWZ6wgaJ_L4,v_FWZ6wgaJ_L4_8,5 6731,v_A_Sr0mCX2rI,touch back of brain,what's the guy in camouflage doing,v_A_Sr0mCX2rI,v_A_Sr0mCX2rI_1,0 6732,v_GcjzvBatqb4,take exercise,what's the man in orange doing,v_GcjzvBatqb4,v_GcjzvBatqb4_1,0 6733,v_-8SgY4vW4xM,shave dog,what's the guy in pink suit doing,v_-8SgY4vW4xM,v_-8SgY4vW4xM_1,0 6734,v_28LdZLfdmMQ,water gliding,what's the guy in purple pants doing,v_28LdZLfdmMQ,v_28LdZLfdmMQ_1,0 6735,v_H0dG_1Vgw4Q,weightlifting,what is the man in blue shorts doing in the video,v_H0dG_1Vgw4Q,v_H0dG_1Vgw4Q_1,0 6736,v_H2fG7JRRMAs,scoreboard,what's the guy in black jacket doing,v_H2fG7JRRMAs,v_H2fG7JRRMAs_1,0 6737,v_16bJAOf1SJI,play ball,what's the man in the blue and white grid doing,v_16bJAOf1SJI,v_16bJAOf1SJI_1,0 6738,v_Gs79qz286QE,swimming,what's the guy in the blue swimming trunks doing,v_Gs79qz286QE,v_Gs79qz286QE_1,0 6739,v_3LwQ2yq85LU,practice fencing,what's the man in the sword suit doing,v_3LwQ2yq85LU,v_3LwQ2yq85LU_1,0 6740,v_JsPIzRsUtlE,tug of war,what's the man doing in the middle of the field,v_JsPIzRsUtlE,v_JsPIzRsUtlE_1,0 6741,v_zV08tITKFMM,bullfight,what's the man in the gold coat doing,v_zV08tITKFMM,v_zV08tITKFMM_1,0 6742,v_OUxgs_QlPHE,dive preparation,what's the man in the green suit doing,v_OUxgs_QlPHE,v_OUxgs_QlPHE_1,0 6743,v_rGOOlcdpfLg,speak,what's the man in the in the plaid coat doing at first,v_rGOOlcdpfLg,v_rGOOlcdpfLg_1,0 6744,v_zH1MiuiTsx8,rowing,what's the guy in the orange life jacket doing,v_zH1MiuiTsx8,v_zH1MiuiTsx8_1,0 6745,v_SNja9iUdAiI,fencing training,what's the guy with the pigtails doing,v_SNja9iUdAiI,v_SNja9iUdAiI_1,0 6746,v_PJ7HOHdOdy4,shoelace,what do people in purple and beige wash,v_PJ7HOHdOdy4,v_PJ7HOHdOdy4_9,5 6747,v_kTqt7ry3eVM,diving,what's the man in the red bathing suit doing,v_kTqt7ry3eVM,v_kTqt7ry3eVM_1,0 6748,v_ldAHwbF8uWI,press media,who's in the arm-wrestling ring,v_ldAHwbF8uWI,v_ldAHwbF8uWI_6,8 6749,v_QPEAp7nf2Tk,slide,what's the guy in striped pants doing,v_QPEAp7nf2Tk,v_QPEAp7nf2Tk_1,0 6750,v_m731tx8N5-Y,drum,what's the bald guy doing in the video,v_m731tx8N5-Y,v_m731tx8N5-Y_1,0 6751,v_lYP05IRcOPE,drift,what is the man on the mattress doing,v_lYP05IRcOPE,v_lYP05IRcOPE_1,0 6752,v_uw9x69DT8_g,photo,what's on the right wall of the guy in the video,v_uw9x69DT8_g,v_uw9x69DT8_g_4,1 6753,v_0mNZfG6CL74,gymnastics,what is the man on the sports equipment doing in the video,v_0mNZfG6CL74,v_0mNZfG6CL74_1,0 6754,v_RtF6TGqwa7Y,necklace,what does the sitting man wear around his neck,v_RtF6TGqwa7Y,v_RtF6TGqwa7Y_9,5 6755,v_UJGK_TKrl4E,fencing,what's the man in black helmets and suit on video doing,v_UJGK_TKrl4E,v_UJGK_TKrl4E_1,0 6756,v_vFO70WwrQgE,parking lot,what is the foot of the person wearing the red pants at the beginning of the video,v_vFO70WwrQgE,v_vFO70WwrQgE_4,1 6757,v_pcLGX5qvUcI,ice hockey,what's the skater doing,v_pcLGX5qvUcI,v_pcLGX5qvUcI_1,0 6758,v_Jdu5AqaWfz8,play bungee jumping,what is the person with the rope on his back doing,v_Jdu5AqaWfz8,v_Jdu5AqaWfz8_1,0 6759,v_f6vZaMgqDvQ,artistic gymnastics,what is the performer doing in the video,v_f6vZaMgqDvQ,v_f6vZaMgqDvQ_1,0 6760,v_4H9MMsj4mcM,riding,what are the athletes doing at first in the video,v_4H9MMsj4mcM,v_4H9MMsj4mcM_1,0 6761,v_lOZ9bfzq89o,pads,what's in front of the athlete in green,v_lOZ9bfzq89o,v_lOZ9bfzq89o_4,1 6762,v_nYl_tYmijlM,rectangle,what is the shape of the curtains in the video,v_nYl_tYmijlM,v_nYl_tYmijlM_10,8 6763,v_otMw5GJWYWs,rectangle,what is the shape of the obstacle in the video,v_otMw5GJWYWs,v_otMw5GJWYWs_10,5 6764,v_J1QB1y3vXLY,tattoo,what's the man with the short hair doing,v_J1QB1y3vXLY,v_J1QB1y3vXLY_1,0 6765,v_eQ0sW4hJ9zU,need to connect wire,what are the disadvantages of the new lawn mower,v_eQ0sW4hJ9zU,v_eQ0sW4hJ9zU_7,8 6766,v_K1OsjA-f17E,car wash,what are the staff doing,v_K1OsjA-f17E,v_K1OsjA-f17E_1,0 6767,v_yRQpolWhJ6A,hair of bun,what are the hairstyles of sumo wrestlers in the video,v_yRQpolWhJ6A,v_yRQpolWhJ6A_10,5 6768,v_eMgC7I-GcgA,rope,what does the surfer use to connect to the motorboat,v_eMgC7I-GcgA,v_eMgC7I-GcgA_8,5 6769,v_Vxw3yFCV2iA,sports boat,what are the tools used for waterskiing,v_Vxw3yFCV2iA,v_Vxw3yFCV2iA_10,5 6770,v_FxpP7lqvm30,rope,what tools are used in this sports competition,v_FxpP7lqvm30,v_FxpP7lqvm30_8,5 6771,v_HX6BeHLQh5s,shoe polisher,what is the tool for brushing shoes,v_HX6BeHLQh5s,v_HX6BeHLQh5s_10,8 6772,v_8vDSV9ruYlc,wallpaper,what's the man with the towel doing,v_8vDSV9ruYlc,v_8vDSV9ruYlc_1,0 6773,v_AtbTioB1_Kw,train,what is the trainer in video doing,v_AtbTioB1_Kw,v_AtbTioB1_Kw_1,0 6774,v_d4sX1jnL4BY,seabed,what's underneath the two men in the video,v_d4sX1jnL4BY,v_d4sX1jnL4BY_4,1 6775,v_k-I4zLbgdpM,gymnastic mat,what is the mat on the grass when the two girls perform,v_k-I4zLbgdpM,v_k-I4zLbgdpM_10,5 6776,v_CDecXoRSpIc,jeans,what are the types of pants of the man repairing tires,v_CDecXoRSpIc,v_CDecXoRSpIc_10,5 6777,v_EPsSfOEd3BU,put shot,what are the female athletes doing,v_EPsSfOEd3BU,v_EPsSfOEd3BU_1,0 6778,v_ETbbYC0OhL0,white person,what kind of race is a woman with purple hair,v_ETbbYC0OhL0,v_ETbbYC0OhL0_10,8 6779,v_1kkc9hDshP4,dance,what is the woman on the stage doing,v_1kkc9hDshP4,v_1kkc9hDshP4_1,0 6780,v_ILmZg0vz0Hg,decorate some boxes,what is the woman wearing glasses doing,v_ILmZg0vz0Hg,v_ILmZg0vz0Hg_1,0 6781,v__l251ZuOCYU,play hockey,what are they doing in the middle of the video,v__l251ZuOCYU,v__l251ZuOCYU_1,0 6782,v_8teo_0gxzgk,car wash,what are two blondes doing,v_8teo_0gxzgk,v_8teo_0gxzgk_1,0 6783,v_E_UkQGk7QAE,skiing,what's the girl in the light blue dress doing,v_E_UkQGk7QAE,v_E_UkQGk7QAE_1,0 6784,v_EXPYu9bfNcE,pet beauty,what's the girl in the light purple doing,v_EXPYu9bfNcE,v_EXPYu9bfNcE_1,0 6785,v_eLh51DwDp-E,practice ballet,what are the women in black doing at the beginning,v_eLh51DwDp-E,v_eLh51DwDp-E_1,0 6786,v_6xBh3vzhgo4,skater surfers,what is the woman wearing a life jacket in video doing,v_6xBh3vzhgo4,v_6xBh3vzhgo4_1,0 6787,v_CuLC5G7yWxA,apple,what is the brand of computer in the video,v_CuLC5G7yWxA,v_CuLC5G7yWxA_9,5 6788,v_KWpATsiXF_M,many people are looking,what's in the audience,v_KWpATsiXF_M,v_KWpATsiXF_M_10,8 6789,v_2k-qlZxc9l4,shower,what might the man in the video be doing while shaving his legs,v_2k-qlZxc9l4,v_2k-qlZxc9l4_9,8 6790,v_8kaQq1mR2ys,physical energy,what can swimming do for exercise,v_8kaQq1mR2ys,v_8kaQq1mR2ys_9,8 6791,v_6VXQoPNphgI,body coordination,what does this exercise do for exercise,v_6VXQoPNphgI,v_6VXQoPNphgI_9,8 6792,v_eQ0sW4hJ9zU,advertisement,what could this video be,v_eQ0sW4hJ9zU,v_eQ0sW4hJ9zU_9,8 6793,v_pKOy4HJwCqo,surfing,which category of sports does this sport belong to,v_pKOy4HJwCqo,v_pKOy4HJwCqo_10,8 6794,v_iZT4XgzUHm4,black,what color is all bicycles,v_iZT4XgzUHm4,v_iZT4XgzUHm4_7,4 6795,v_ut1AoOzqL4k,black,what color is the man's pants in a black vest,v_ut1AoOzqL4k,v_ut1AoOzqL4k_7,4 6796,v_Ye_uVlSo1HI,red,what color is most of the cups on the table in the video,v_Ye_uVlSo1HI,v_Ye_uVlSo1HI_8,4 6797,v_cCimLg-8Dy4,white,what color is the dress that helps the blindfold,v_cCimLg-8Dy4,v_cCimLg-8Dy4_7,4 6798,v_EQWdo0FcKAo,black and white,what color is the dancer's clothes,v_EQWdo0FcKAo,v_EQWdo0FcKAo_7,4 6799,v_EBw5-KVV_PU,white,what color is the girl's shoes,v_EBw5-KVV_PU,v_EBw5-KVV_PU_7,4 6800,v_BFChXuwZ4wo,black,what color is the tattoo of the tattoo worker,v_BFChXuwZ4wo,v_BFChXuwZ4wo_8,4 6801,v_VjMMwpgOCPo,blue,what color is the gym mat in video,v_VjMMwpgOCPo,v_VjMMwpgOCPo_10,4 6802,v_3dWw9GLcOeA,green,what color is the icon appear at the beginning of video,v_3dWw9GLcOeA,v_3dWw9GLcOeA_8,4 6803,v_WGUzmra3h_w,red,what color is the pants worn by high jumpers,v_WGUzmra3h_w,v_WGUzmra3h_w_8,4 6804,v_BhgcXqWQhkQ,black,what color is the costumes of the performers on the stage,v_BhgcXqWQhkQ,v_BhgcXqWQhkQ_10,4 6805,v_qSP3_C7QWpU,black,what color is the shoes of person wearing a white vest,v_qSP3_C7QWpU,v_qSP3_C7QWpU_9,4 6806,v__zqj6daJo9U,orange,what color is the stools in the video,v__zqj6daJo9U,v__zqj6daJo9U_6,4 6807,v_4j_LRkB4T6c,black,what color is the trousers of the man in red,v_4j_LRkB4T6c,v_4j_LRkB4T6c_8,4 6808,v_b_c17BmZCCs,green,hat color is the team uniform of the two teams in the competition,v_b_c17BmZCCs,v_b_c17BmZCCs_9,4 6809,v_mxn6WcmdNpA,black,what color bag does the man in yellow carry,v_mxn6WcmdNpA,v_mxn6WcmdNpA_8,4 6810,v_e0yu4WgiZUM,black,what color of swimming trunks does the man wear,v_e0yu4WgiZUM,v_e0yu4WgiZUM_7,4 6811,v_3JBUWRKezUI,blue,what color bucket does spiderman carry,v_3JBUWRKezUI,v_3JBUWRKezUI_7,4 6812,v_28LdZLfdmMQ,purple,what colour hat does the man in purple pants wear,v_28LdZLfdmMQ,v_28LdZLfdmMQ_6,4 6813,v_PTwe2IIo3To,white,what color does the lead man wear,v_PTwe2IIo3To,v_PTwe2IIo3To_7,4 6814,v_9snScUyE8_4,purple,what color dress does the yellow hair girl wear,v_9snScUyE8_4,v_9snScUyE8_4_6,4 6815,v_2UhbDOd43zU,black,what colour of clothes does the person being taught wear,v_2UhbDOd43zU,v_2UhbDOd43zU_8,4 6816,v_pVoM_kUQ4_E,red,what color clothes does the person who took the photo on his mobile phone wear,v_pVoM_kUQ4_E,v_pVoM_kUQ4_E_10,4 6817,v_2CegApogJd4,black,what color dresses does women wear in the video,v_2CegApogJd4,v_2CegApogJd4_9,4 6818,v_0Um-HgjcnXY,green,what color does the first wrestler wear,v_0Um-HgjcnXY,v_0Um-HgjcnXY_7,4 6819,v_fSBX-gjPblw,red and white,what color dress does the grandfather in wheelchair wear,v_fSBX-gjPblw,v_fSBX-gjPblw_8,4 6820,v_2vrR_5u2buU,red,what color of clothes do the people wearing doll clothes wear,v_2vrR_5u2buU,v_2vrR_5u2buU_7,4 6821,v_pMtu7fOHdII,blue,what color clothes does the guy who started hitting wear,v_pMtu7fOHdII,v_pMtu7fOHdII_10,4 6822,v_PSB1nM3QXxg,white,what color clothes do the boys in grey wear,v_PSB1nM3QXxg,v_PSB1nM3QXxg_9,4 6823,v_jt-Vnap5KP4,black,what color clothes do the elderly wear in the video,v_jt-Vnap5KP4,v_jt-Vnap5KP4_10,4 6824,v_d09u-0k3LdE,black,what color clothes do the girls wear in the video,v_d09u-0k3LdE,v_d09u-0k3LdE_8,4 6825,v_kYkvyRKxwfY,blue,what color clothes do the people in the white dress wear across the fields,v_kYkvyRKxwfY,v_kYkvyRKxwfY_6,4 6826,v_3Rzyta8op6s,white,what color clothes do the people on the left side of the bald dress wear,v_3Rzyta8op6s,v_3Rzyta8op6s_7,4 6827,v_2uUNiV8xmEo,white,what color clothes do the fallen players wear,v_2uUNiV8xmEo,v_2uUNiV8xmEo_8,4 6828,v_kTqt7ry3eVM,white,what color of clothes does the person giving the awards wear,v_kTqt7ry3eVM,v_kTqt7ry3eVM_9,4 6829,v_f8SWWURHV1M,red,what color jacket does the little girl wear,v_f8SWWURHV1M,v_f8SWWURHV1M_7,4 6830,v_0w4OkBenR_k,green,what colour does the man in purple paint the fence,v_0w4OkBenR_k,v_0w4OkBenR_k_7,4 6831,v_FKtYeu2bJpA,red,what color does the boy wear,v_FKtYeu2bJpA,v_FKtYeu2bJpA_9,4 6832,v_Ki13JIVwMdk,black,what color dog does the black-and-white dog rush to,v_Ki13JIVwMdk,v_Ki13JIVwMdk_7,4 6833,v_mxn6WcmdNpA,golden,what color earrings do people in yellow wear,v_mxn6WcmdNpA,v_mxn6WcmdNpA_6,4 6834,v_2DCHbuwZNSs,white,what color gloves do people in a submersible suit wear ,v_2DCHbuwZNSs,v_2DCHbuwZNSs_7,4 6835,v_390iVq_urQM,black,what color gloves does person in red clothes wear in red clothes,v_390iVq_urQM,v_390iVq_urQM_10,4 6836,v_N9VOdVOiPNM,black,what color gloves does person in grey clothes wear,v_N9VOdVOiPNM,v_N9VOdVOiPNM_10,4 6837,v_2bQx5igckJc,golden,what color hair do women wear hair,v_2bQx5igckJc,v_2bQx5igckJc_9,4 6838,v_9FQ-VLkCZo8,white,what color hat is worn on the 24th wearing white,v_9FQ-VLkCZo8,v_9FQ-VLkCZo8_10,4 6839,v_lPw_BRbPw5s,blue,what color hat does the man in blue wear,v_lPw_BRbPw5s,v_lPw_BRbPw5s_7,4 6840,v_fQ1OuD7x3to,blue,what color hat does the man in black wear,v_fQ1OuD7x3to,v_fQ1OuD7x3to_8,4 6841,v_FaP7unySMOs,blue,what color hat does the man in bblack coat wear,v_FaP7unySMOs,v_FaP7unySMOs_9,4 6842,v_3Nd3Aai1bVA,blue,what color helmet does the athlete who fell in the end of the video wear,v_3Nd3Aai1bVA,v_3Nd3Aai1bVA_9,4 6843,v_DUi-hLMpQQo,white,what color horse does the person in blue ride,v_DUi-hLMpQQo,v_DUi-hLMpQQo_8,4 6844,v_7LbBmVX33I4,orange,what color is the fingernails of a woman with curly hair,v_7LbBmVX33I4,v_7LbBmVX33I4_7,4 6845,v_7OcxT66BxX0,black,what color is the suit of the man in the black hat,v_7OcxT66BxX0,v_7OcxT66BxX0_7,4 6846,v_wE9sQbGdeAk,pink,what color is the glasses of a man with a beard,v_wE9sQbGdeAk,v_wE9sQbGdeAk_9,4 6847,v_-Fk62y-1WHo,golden,what color is the musical instrument,v_-Fk62y-1WHo,v_-Fk62y-1WHo_7,4 6848,v_vHnZ3NrZER0,yellow,what color is a ruler,v_vHnZ3NrZER0,v_vHnZ3NrZER0_10,4 6849,v__a527xEzhkw,black,what color is her hair in the video,v__a527xEzhkw,v__a527xEzhkw_8,4 6850,v_0jdSl5-lMpY,red,what color is the air gun in the video,v_0jdSl5-lMpY,v_0jdSl5-lMpY_9,4 6851,v_hRsn4nesCQo,black,what color is the apron worn by the person wearing yellow clothes,v_hRsn4nesCQo,v_hRsn4nesCQo_8,4 6852,v_8AUTKSqcmiM,green,what color is the archery site,v_8AUTKSqcmiM,v_8AUTKSqcmiM_7,4 6853,v_tzP0lKSUv_o,white,what color is the athlete's socks,v_tzP0lKSUv_o,v_tzP0lKSUv_o_9,4 6854,v_40BPDWojssc,yellow,what color is behind the table,v_40BPDWojssc,v_40BPDWojssc_10,4 6855,v_Au4PfoK7hyw,yellow,what color is the background wall,v_Au4PfoK7hyw,v_Au4PfoK7hyw_6,4 6856,v_an1R4BP97JY,blue,what color is the bag in front of the fertilizer,v_an1R4BP97JY,v_an1R4BP97JY_7,4 6857,v_V90CMuokf0c,yellow,what color is the bag behind the black man in the video,v_V90CMuokf0c,v_V90CMuokf0c_7,4 6858,v_WINtiw-_3vg,pink,what color is the bag on the ground,v_WINtiw-_3vg,v_WINtiw-_3vg_7,4 6859,v_AB480dHyDeM,green,what color is the basin in the video,v_AB480dHyDeM,v_AB480dHyDeM_6,4 6860,v_0lbv0AE5gJQ,green,what color is the basin in which the person in the video washes clothes,v_0lbv0AE5gJQ,v_0lbv0AE5gJQ_6,4 6861,v_W9H2qVnIWXs,green,what color is the bath liquid,v_W9H2qVnIWXs,v_W9H2qVnIWXs_9,4 6862,v_nvcMYiZhUuo,black,what colour is the beard of the man in black,v_nvcMYiZhUuo,v_nvcMYiZhUuo_7,4 6863,v_8_fjIZkNHms,black,what colour is the beaten dog,v_8_fjIZkNHms,v_8_fjIZkNHms_7,4 6864,v_Flm_SCK10GQ,red and white,what color is the boy's clothes in the video,v_Flm_SCK10GQ,v_Flm_SCK10GQ_7,4 6865,v_Z-sWZUYL0ZU,brown,what color is the cabinet in video,v_Z-sWZUYL0ZU,v_Z-sWZUYL0ZU_9,4 6866,v_ej_fSoVO0R8,white,what color is the cake before it is coated with orange skin,v_ej_fSoVO0R8,v_ej_fSoVO0R8_10,4 6867,v_AjizhJc_reI,blue,what color is the car rided by the person in red,v_AjizhJc_reI,v_AjizhJc_reI_6,4 6868,v_YHqFNnhaFAY,red,what color is the car parked on the road in video,v_YHqFNnhaFAY,v_YHqFNnhaFAY_9,4 6869,v_hIYN8cC3pEA,blue,what color is the car driving in the video,v_hIYN8cC3pEA,v_hIYN8cC3pEA_7,4 6870,v_WPYQ27GjFKc,green,what color is the chip out,v_WPYQ27GjFKc,v_WPYQ27GjFKc_9,4 6871,v_vBOFzuS-Djo,pink,what colour is the dress of the baby with short hair,v_vBOFzuS-Djo,v_vBOFzuS-Djo_10,4 6872,v_HX6BeHLQh5s,red,what color is the clothes of the man with a tie,v_HX6BeHLQh5s,v_HX6BeHLQh5s_7,4 6873,v_iAes5SVj_Fg,black,what color is the coat of the man wearing blue black trousers,v_iAes5SVj_Fg,v_iAes5SVj_Fg_10,4 6874,v__QBTD1bLSI0,blue,what color is the collar of the person in white,v__QBTD1bLSI0,v__QBTD1bLSI0_6,4 6875,v_rMj2JWNJzkw,blue,what is the color of the dresser's clothes at the beginning of the video,v_rMj2JWNJzkw,v_rMj2JWNJzkw_6,4 6876,v_diY-XBT5cD4,blue and green,what color is the contact lens box,v_diY-XBT5cD4,v_diY-XBT5cD4_9,4 6877,v_wcxEkMoOmBk,red,what color is the curler used by the lady wearing a gray dress,v_wcxEkMoOmBk,v_wcxEkMoOmBk_8,4 6878,v_7H1KylJRii8,red,what color is the decorating umbrella on the cup,v_7H1KylJRii8,v_7H1KylJRii8_6,4 6879,v_AB5cWhlQ0Kk,red,what color is the decoration on the wall in the video,v_AB5cWhlQ0Kk,v_AB5cWhlQ0Kk_7,4 6880,v_raxeBxPQqlk,black,what color is the dog behind the little boy,v_raxeBxPQqlk,v_raxeBxPQqlk_7,4 6881,v_auO4r3De6vc,white,what color is the dog in the first race,v_auO4r3De6vc,v_auO4r3De6vc_6,4 6882,v_raxeBxPQqlk,yellow,what color is the dog under the table in the video,v_raxeBxPQqlk,v_raxeBxPQqlk_9,4 6883,v_BWAedc31WdY,gray,what color is the dress for the man with short hair,v_BWAedc31WdY,v_BWAedc31WdY_6,4 6884,v_Aen-RfnlK3A,red,what color is the dress in the video,v_Aen-RfnlK3A,v_Aen-RfnlK3A_6,4 6885,v_CaeZoHNHul0,black,what is the color of the clothes for brunette girls,v_CaeZoHNHul0,v_CaeZoHNHul0_6,4 6886,v_bRgvAHL3dJk,white,what color does the people who cook wear,v_bRgvAHL3dJk,v_bRgvAHL3dJk_7,4 6887,v_v6DdLg_Xnkg,white,what color is the curly woman's clothes in the video,v_v6DdLg_Xnkg,v_v6DdLg_Xnkg_7,4 6888,v_TiQcZKml5Bs,blue,what color is the person wearing a dog,v_TiQcZKml5Bs,v_TiQcZKml5Bs_8,4 6889,v_EPsSfOEd3BU,blue,what color is the female athlete's clothes,v_EPsSfOEd3BU,v_EPsSfOEd3BU_7,4 6890,v_bYNQ0GrCt64,gray,what color is the dress of the weightlifting person,v_bYNQ0GrCt64,v_bYNQ0GrCt64_8,4 6891,v_IxaBEVd2PZM,black,what color is the dress of the woman with a long braid,v_IxaBEVd2PZM,v_IxaBEVd2PZM_7,4 6892,v_v6P6bBPBXYw,red,what color is the dress of the man with no.7 two in the video,v_v6P6bBPBXYw,v_v6P6bBPBXYw_7,4 6893,v_4_jDgRsOGvY,white,what color is the drum of the person who is on the upper body,v_4_jDgRsOGvY,v_4_jDgRsOGvY_10,4 6894,v_uJ4OZfCjViM,black,what color is the dustpan that a red dress man carries,v_uJ4OZfCjViM,v_uJ4OZfCjViM_9,4 6895,v_hGPCJb2g1tQ,yellow,what color is the electric drill in the video,v_hGPCJb2g1tQ,v_hGPCJb2g1tQ_6,4 6896,v_x6pYeqq3O08,green,what color is the glasses of the man in red,v_x6pYeqq3O08,v_x6pYeqq3O08_7,4 6897,v_kkji9hespu0,yellow,what color is the noodles cooked by this woman,v_kkji9hespu0,v_kkji9hespu0_10,4 6898,v_4LpqPUWHH5k,red,what color is the first athlete wearing in the video,v_4LpqPUWHH5k,v_4LpqPUWHH5k_8,4 6899,v_Av0VsTxJd78,blue,what color dress does the first person wear at the beginning of the video,v_Av0VsTxJd78,v_Av0VsTxJd78_9,4 6900,v_3oy4P1gyU4k,white,what color is the clothes of the first person to appear in the video,v_3oy4P1gyU4k,v_3oy4P1gyU4k_7,4 6901,v_9UvVeUYQLgA,black,what color is the flag on the flagpole,v_9UvVeUYQLgA,v_9UvVeUYQLgA_9,4 6902,v_0mNZfG6CL74,green,what color is the flag raised by the referee before the game starts,v_0mNZfG6CL74,v_0mNZfG6CL74_9,4 6903,v_z6l9utYlIrw,white,what color is the floor tile in the video,v_z6l9utYlIrw,v_z6l9utYlIrw_9,4 6904,v_EXPYu9bfNcE,pink,what color is the flower in the bottle,v_EXPYu9bfNcE,v_EXPYu9bfNcE_8,4 6905,v_0e5zwJywyqk,silver,what color is the frying pan in the video,v_0e5zwJywyqk,v_0e5zwJywyqk_8,4 6906,v__G4EVIG9YaE,orange,what color is the girl's glove in the video,v__G4EVIG9YaE,v__G4EVIG9YaE_6,4 6907,v_iKclcQEl4zI,yellow,what color is the girl's pants in orange,v_iKclcQEl4zI,v_iKclcQEl4zI_7,4 6908,v_bWZkD_s1940,purple,what color is the dancing girl's pants,v_bWZkD_s1940,v_bWZkD_s1940_7,4 6909,v_Y_nyVFn70Lk,white,what color is the glove worn by the person in green,v_Y_nyVFn70Lk,v_Y_nyVFn70Lk_9,4 6910,v_afMQA352X_A,black,what color is the glove worn by the white man,v_afMQA352X_A,v_afMQA352X_A_6,4 6911,v_kPn9NzU4W48,blue,what color is the glove worn by the person wearing black shoes,v_kPn9NzU4W48,v_kPn9NzU4W48_7,4 6912,v_-EIsT868Trw,yellow,what color is the hair of the person in grey coat,v_-EIsT868Trw,v_-EIsT868Trw_10,4 6913,v_VfhDSTKBwgc,black,what color is the grey coat of the man's hair,v_VfhDSTKBwgc,v_VfhDSTKBwgc_10,4 6914,v_7rwDYzqfGgU,blue,what color is the ground in the center of the site,v_7rwDYzqfGgU,v_7rwDYzqfGgU_7,4 6915,v_16czjUF1AA4,blue,what color is the hair clip of the person in blue,v_16czjUF1AA4,v_16czjUF1AA4_8,4 6916,v_e0yLhjXQIXI,yellow,what color is the hair of the girl in purple pants,v_e0yLhjXQIXI,v_e0yLhjXQIXI_6,4 6917,v_AwcM25G1h-g,golden,what color is the hair of the hostess,v_AwcM25G1h-g,v_AwcM25G1h-g_8,4 6918,v_09ocXmGF-T4,yellow,what color is the hair of the little boy,v_09ocXmGF-T4,v_09ocXmGF-T4_8,4 6919,v_WdtytUagoJs,yellow,what color is the hair of the man throwing javelin,v_WdtytUagoJs,v_WdtytUagoJs_7,4 6920,v_IToczVhbOc0,black,what color is the hair of the man with glasses,v_IToczVhbOc0,v_IToczVhbOc0_7,4 6921,v_P8S8PIyPXxY,yellow,what color is the hair of the model,v_P8S8PIyPXxY,v_P8S8PIyPXxY_6,4 6922,v_H0dG_1Vgw4Q,golden,what color is the hair of the person in black vest,v_H0dG_1Vgw4Q,v_H0dG_1Vgw4Q_9,4 6923,v_r2H-cnti8GI,black,what color is the hair of the person wearing black and white coat,v_r2H-cnti8GI,v_r2H-cnti8GI_8,4 6924,v_Y7aacWy3WDo,black,what color is the hair of the person wearing broken flower,v_Y7aacWy3WDo,v_Y7aacWy3WDo_7,4 6925,v_QoRlOa6R1LY,golden,what color is the hair of the person wearing gray helmet,v_QoRlOa6R1LY,v_QoRlOa6R1LY_7,4 6926,v_9SIPJd4Hls4,yellow,what color is the hair of the person wearing red hat,v_9SIPJd4Hls4,v_9SIPJd4Hls4_6,4 6927,v_qgUHRwC3194,black,what color is the hair of the person wearing white sleeve,v_qgUHRwC3194,v_qgUHRwC3194_8,4 6928,v_QJ5xv6oj1sk,black,what color is the hair of the person wearing white shirt,v_QJ5xv6oj1sk,v_QJ5xv6oj1sk_7,4 6929,v_ZBP_mLWROZU,golden,what color is the hair of the person wearing white suit,v_ZBP_mLWROZU,v_ZBP_mLWROZU_8,4 6930,v_9G172wz5Yqo,golden,what color is the hair of the rose - red girl,v_9G172wz5Yqo,v_9G172wz5Yqo_8,4 6931,v_e-Xf13exY4E,black,what color is the hair of the man in white ,v_e-Xf13exY4E,v_e-Xf13exY4E_8,4 6932,v_GgnM5RGNtDE,golden,what color is the hair of the person in blue short sleeves,v_GgnM5RGNtDE,v_GgnM5RGNtDE_9,4 6933,v_Gs79qz286QE,black,what color is the hair of the person in the blue swimsuit,v_Gs79qz286QE,v_Gs79qz286QE_9,4 6934,v_G4-qjGC_3VA,golden,what color is the hair of the person wearing a black clothes,v_G4-qjGC_3VA,v_G4-qjGC_3VA_9,4 6935,v_OccEAILrU7M,black,what color is the hair of the person wearing a red dress,v_OccEAILrU7M,v_OccEAILrU7M_6,4 6936,v_aAz3YL2RMr4,golden,what color is the tattoo artist's hair,v_aAz3YL2RMr4,v_aAz3YL2RMr4_6,4 6937,v_4LF0hL-mgks,black,what color is the hair of the person who appeared at the beginning of the video,v_4LF0hL-mgks,v_4LF0hL-mgks_8,4 6938,v_faqijFZWQlo,white,what color is the hairdresser wear,v_faqijFZWQlo,v_faqijFZWQlo_7,4 6939,v_fvEaC-fTR4A,blue and red,what color is the handle in the video,v_fvEaC-fTR4A,v_fvEaC-fTR4A_7,4 6940,v_dZsk5Dp_5FE,orange,what color is the handle of the chopper for chopping wood,v_dZsk5Dp_5FE,v_dZsk5Dp_5FE_9,4 6941,v_ECZb_tQZ4Pg,black,what color is the hat of the boy in black clothes,v_ECZb_tQZ4Pg,v_ECZb_tQZ4Pg_7,4 6942,v_zYjLA99koBk,black,what color is the hat of the person in yellow,v_zYjLA99koBk,v_zYjLA99koBk_7,4 6943,v_oGU7m7rCZ-Y,black,what color is the hat of the man in the blue coat,v_oGU7m7rCZ-Y,v_oGU7m7rCZ-Y_7,4 6944,v_i8hNrK3r_MY,black,what color is the hat of the man in red pants,v_i8hNrK3r_MY,v_i8hNrK3r_MY_7,4 6945,v_V-46E7jMm-Y,black,what color is the hat of the old man wearing a black sweater in the video,v_V-46E7jMm-Y,v_V-46E7jMm-Y_7,4 6946,v_YvPoAOrjX5I,white,what color is the hat worn by a man in a blue coat,v_YvPoAOrjX5I,v_YvPoAOrjX5I_6,4 6947,v_C7yd6yEkxXE,green,what color is the hat worn by white short sleeves,v_C7yd6yEkxXE,v_C7yd6yEkxXE_6,4 6948,v_nP1Bk-vJgVg,white,what color is the helmet of the man in red uniform,v_nP1Bk-vJgVg,v_nP1Bk-vJgVg_6,4 6949,v_3kxP8qOtym8,red,what color is the hair hoop worn on the head of the sparring person,v_3kxP8qOtym8,v_3kxP8qOtym8_7,4 6950,v_wnNiWoJxfSQ,yellow,what color is the horse's leg on which the person wearing no. 3 black clothes sits,v_wnNiWoJxfSQ,v_wnNiWoJxfSQ_8,4 6951,v_4H9MMsj4mcM,brown,what color is the horse riding on the video,v_4H9MMsj4mcM,v_4H9MMsj4mcM_7,4 6952,v_-8SgY4vW4xM,red,what color is the human nail in pink,v_-8SgY4vW4xM,v_-8SgY4vW4xM_9,4 6953,v_aPI0nPvzJlE,brown,what color is the human surfboard in the video,v_aPI0nPvzJlE,v_aPI0nPvzJlE_8,4 6954,v_rCLGy2NA0aE,black,what color is the ice cream that people eat in blue clothes,v_rCLGy2NA0aE,v_rCLGy2NA0aE_10,4 6955,v_6VXQoPNphgI,blue,what color is the indoor gymnastic mat in the video,v_6VXQoPNphgI,v_6VXQoPNphgI_7,4 6956,v_8lMncYsbrWw,blue,what color is the ironing table,v_8lMncYsbrWw,v_8lMncYsbrWw_7,4 6957,v_IGPZFun1Ok4,yes,is the bet used during gambling,v_IGPZFun1Ok4,v_IGPZFun1Ok4_2,3 6958,v_B4Zp5XN97Gc,red,what is the color of the first one's dress who digs shovel to wear,v_B4Zp5XN97Gc,v_B4Zp5XN97Gc_8,4 6959,v_KT8DUDFc3Xg,small stool,what does the man with the shoe put his foot on,v_KT8DUDFc3Xg,v_KT8DUDFc3Xg_7,5 6960,v_H_IfIsKQ3Zw,lower,how dangrous is assembling steel houses,v_H_IfIsKQ3Zw,v_H_IfIsKQ3Zw_10,8 6961,v_I1iUbyjWy7k,lower,how dangerous is playing baseball,v_I1iUbyjWy7k,v_I1iUbyjWy7k_10,8 6962,v_JH9qiuPCkY4,motorcycle,what's under the athletes' butts in the game,v_JH9qiuPCkY4,v_JH9qiuPCkY4_4,1 6963,v_EQWdo0FcKAo,yes,are all dancers dancing together,v_EQWdo0FcKAo,v_EQWdo0FcKAo_9,3 6964,v_Bgi2Y85Mbwk,no,are all men smoking,v_Bgi2Y85Mbwk,v_Bgi2Y85Mbwk_7,3 6965,v_PBYg9ekd86w,no,are all the people in video men,v_PBYg9ekd86w,v_PBYg9ekd86w_6,3 6966,v_bBRzBh0gAZQ,no,are all the contestants men,v_bBRzBh0gAZQ,v_bBRzBh0gAZQ_3,3 6967,v_fvEaC-fTR4A,yes,are all the men playing football on the table in the video,v_fvEaC-fTR4A,v_fvEaC-fTR4A_2,3 6968,v_bBRzBh0gAZQ,yes,are all the participants women,v_bBRzBh0gAZQ,v_bBRzBh0gAZQ_2,3 6969,v_FaP7unySMOs,no,are all the people in the video women,v_FaP7unySMOs,v_FaP7unySMOs_3,3 6970,v_Av0VsTxJd78,no,are all the people in the video skiing in a car,v_Av0VsTxJd78,v_Av0VsTxJd78_3,3 6971,v_ds3mAmUPxYA,yes,are all the people on the stage wearing black clothes,v_ds3mAmUPxYA,v_ds3mAmUPxYA_2,3 6972,v_ds3mAmUPxYA,no,are all the people on the stage wearing white clothes,v_ds3mAmUPxYA,v_ds3mAmUPxYA_3,3 6973,v_TXSOSSGJYO0,no,are all the people running in the video,v_TXSOSSGJYO0,v_TXSOSSGJYO0_8,3 6974,v_Pjnuoa4o55c,yes,are all the people wearing short sleeves in the video,v_Pjnuoa4o55c,v_Pjnuoa4o55c_10,3 6975,v_J9KjpzKM8oc,no,are all the people with helmets in the video indoors,v_J9KjpzKM8oc,v_J9KjpzKM8oc_3,3 6976,v_J9KjpzKM8oc,yes,are all the people with helmets outdoors in the video,v_J9KjpzKM8oc,v_J9KjpzKM8oc_2,3 6977,v_elD1P_1oiUk,no,are all the rafts of the same color,v_elD1P_1oiUk,v_elD1P_1oiUk_8,3 6978,v_BjjN_aq_wq4,yes,are all the people in the video women,v_BjjN_aq_wq4,v_BjjN_aq_wq4_8,3 6979,v_fvEaC-fTR4A,no,are all the women playing football on the table in the video,v_fvEaC-fTR4A,v_fvEaC-fTR4A_3,3 6980,v_DOI6tsATsE4,yes,are all two of them sitting,v_DOI6tsATsE4,v_DOI6tsATsE4_10,3 6981,v_elD1P_1oiUk,no,are all women in the screen,v_elD1P_1oiUk,v_elD1P_1oiUk_3,3 6982,v_lOZ9bfzq89o,yes,are athletes wearing green clothes trained indoors,v_lOZ9bfzq89o,v_lOZ9bfzq89o_2,3 6983,v_lOZ9bfzq89o,no,are athletes wearing green clothes trained outdoors,v_lOZ9bfzq89o,v_lOZ9bfzq89o_3,3 6984,v_huFOZ2BiM_k,yes,are athletes wearing red pants with their wristbands,v_huFOZ2BiM_k,v_huFOZ2BiM_k_2,3 6985,v_1QIUV7WYKXg,yes,are athletes wearing shorts,v_1QIUV7WYKXg,v_1QIUV7WYKXg_2,3 6986,v_cK0-WcGXacQ,no,does the black athlete have long hair,v_cK0-WcGXacQ,v_cK0-WcGXacQ_3,3 6987,v_WGUzmra3h_w,no,does the boy wearing glasses have long hair,v_WGUzmra3h_w,v_WGUzmra3h_w_3,3 6988,v_WGUzmra3h_w,yes,does the boy wearing glasses have short hair,v_WGUzmra3h_w,v_WGUzmra3h_w_2,3 6989,v_-p7aui3nAnc,yes,is the child wearing plastic bags dressed in black,v_-p7aui3nAnc,v_-p7aui3nAnc_2,3 6990,v_-p7aui3nAnc,no,are children wearing plastic bags dressed in white,v_-p7aui3nAnc,v_-p7aui3nAnc_3,3 6991,v_FtRGOgg0Qh8,no,are cyclists children,v_FtRGOgg0Qh8,v_FtRGOgg0Qh8_3,3 6992,v_e0yLhjXQIXI,yes,are girls in black clothes doing somersault,v_e0yLhjXQIXI,v_e0yLhjXQIXI_2,3 6993,v_9eniCub7u60,no,does the girl in black clothes have yellow hair,v_9eniCub7u60,v_9eniCub7u60_3,3 6994,v_bWZkD_s1940,no,are girls wearing black clothes short hair,v_bWZkD_s1940,v_bWZkD_s1940_3,3 6995,v_32vYs9wKXE8,no,does the girl with long hair have curly hair,v_32vYs9wKXE8,v_32vYs9wKXE8_3,3 6996,v_WdtytUagoJs,short sleeve,are javelin throwers wearing short sleeves or long sleeves,v_WdtytUagoJs,v_WdtytUagoJs_8,8 6997,v_EQrcCmgraa8,yes,is the man in white shoes strong,v_EQrcCmgraa8,v_EQrcCmgraa8_2,3 6998,v_-pkfcMUIEMo,yes,is the man wearing black pants,v_-pkfcMUIEMo,v_-pkfcMUIEMo_2,3 6999,v_d6gGZFQOxOg,no,does theman wearing white clothes have long hair,v_d6gGZFQOxOg,v_d6gGZFQOxOg_3,3 7000,v_d6gGZFQOxOg,yes,does the man wearing white clothes have short hair,v_d6gGZFQOxOg,v_d6gGZFQOxOg_2,3 7001,v_-pkfcMUIEMo,no,is the man wearing white pants,v_-pkfcMUIEMo,v_-pkfcMUIEMo_3,3 7002,v_H0dG_1Vgw4Q,yes,does the person in blue short sleeves weightlifting indoors,v_H0dG_1Vgw4Q,v_H0dG_1Vgw4Q_8,3 7003,v_d6gGZFQOxOg,no,is the person wearing green clothes chinese,v_d6gGZFQOxOg,v_d6gGZFQOxOg_10,3 7004,v_GsPE54bMFwE,yes,is the person in green short sleeves skating outside,v_GsPE54bMFwE,v_GsPE54bMFwE_2,3 7005,v_nkWMBJC2Qec,no,is the guy wearing red clothes a boy,v_nkWMBJC2Qec,v_nkWMBJC2Qec_3,3 7006,v_Bgi2Y85Mbwk,no,are people in the video drinking from the container,v_Bgi2Y85Mbwk,v_Bgi2Y85Mbwk_3,3 7007,v_Bgi2Y85Mbwk,yes,are people in the video smoking in the video,v_Bgi2Y85Mbwk,v_Bgi2Y85Mbwk_2,3 7008,v_qaml4eEk9hY,yes,is the person in the video using a vacuum cleaner to clean the ground,v_qaml4eEk9hY,v_qaml4eEk9hY_2,3 7009,v_GOhmWfR8QBM,no,is the person in white clothes wearing shoes,v_GOhmWfR8QBM,v_GOhmWfR8QBM_10,3 7010,v_QdmcjM2fluo,yes,is the person wearing black coats trimming trees with machines,v_QdmcjM2fluo,v_QdmcjM2fluo_2,3 7011,v_QdmcjM2fluo,no,is the person wearing black coats trimming trees with scissors,v_QdmcjM2fluo,v_QdmcjM2fluo_3,3 7012,v_QXN6odBnVmI,yes,is the person wearing black short sleeves playing shoes for others,v_QXN6odBnVmI,v_QXN6odBnVmI_2,3 7013,v_QXN6odBnVmI,no,is the person wearing black short sleeves polishing their shoes,v_QXN6odBnVmI,v_QXN6odBnVmI_3,3 7014,v_vQ82ItCG1x4,no,does the person wearing blue clothes have long hair,v_vQ82ItCG1x4,v_vQ82ItCG1x4_3,3 7015,v_cTxVTEzQDr8,no,is the person wearing sunglasses wearing black clothes,v_cTxVTEzQDr8,v_cTxVTEzQDr8_3,3 7016,v_cTxVTEzQDr8,yes,is the person wearing sunglasses wearing grey clothes,v_cTxVTEzQDr8,v_cTxVTEzQDr8_2,3 7017,v_F-Z17rHI_ms,no,is the person wearing gray clothes wearing shoes,v_F-Z17rHI_ms,v_F-Z17rHI_ms_9,3 7018,v_Y_nyVFn70Lk,no,does the person wearing green clothes have blonde hair,v_Y_nyVFn70Lk,v_Y_nyVFn70Lk_3,3 7019,v_GsPE54bMFwE,no,is the person wearing green short sleeves skating indoors,v_GsPE54bMFwE,v_GsPE54bMFwE_3,3 7020,v_b_c17BmZCCs,no,do perple wearing helmets in the video games,v_b_c17BmZCCs,v_b_c17BmZCCs_10,3 7021,v_GcjzvBatqb4,yes,is the person wearing orange exercising indoors,v_GcjzvBatqb4,v_GcjzvBatqb4_7,3 7022,v_p1QGn0IzfW0,no,is the person wearing red clothes wearing long sleeves,v_p1QGn0IzfW0,v_p1QGn0IzfW0_3,3 7023,v_hIYN8cC3pEA,no,is the person wearing red pants in the video,v_hIYN8cC3pEA,v_hIYN8cC3pEA_3,3 7024,v_Co_cpZWbzFk,no,does the person wearing red pants have long hair,v_Co_cpZWbzFk,v_Co_cpZWbzFk_3,3 7025,v_Co_cpZWbzFk,yes,does the person wearing red pants have short hair,v_Co_cpZWbzFk,v_Co_cpZWbzFk_2,3 7026,v_bYNQ0GrCt64,no,is the person wearing red shoes wearing long sleeves,v_bYNQ0GrCt64,v_bYNQ0GrCt64_3,3 7027,v_bYNQ0GrCt64,yes,is the person wearing red shoes wearing short sleeves,v_bYNQ0GrCt64,v_bYNQ0GrCt64_2,3 7028,v_ZnKB0U96ZI4,yes,is the person wearing red shorts playing tennis indoors,v_ZnKB0U96ZI4,v_ZnKB0U96ZI4_2,3 7029,v_ZnKB0U96ZI4,no,is the person wearing red shorts playing tennis outdoors,v_ZnKB0U96ZI4,v_ZnKB0U96ZI4_3,3 7030,v_yUvSujxnFE0,yes,does the person wear sports headbands in the video,v_yUvSujxnFE0,v_yUvSujxnFE0_2,3 7031,v_qZtdMXkHRXw,yes,is the person wearing white blouses throwing dart on his feet,v_qZtdMXkHRXw,v_qZtdMXkHRXw_2,3 7032,v_qZtdMXkHRXw,no,is the person wearing white blouses throwing dart with their hands,v_qZtdMXkHRXw,v_qZtdMXkHRXw_3,3 7033,v_W2Mh01F3K5c,yes,is the person wearing white clothes wearing short sleeves,v_W2Mh01F3K5c,v_W2Mh01F3K5c_2,3 7034,v_ZlVydB9uUe4,no,is the person wearing white shirts trimming trees with machines,v_ZlVydB9uUe4,v_ZlVydB9uUe4_3,3 7035,v_ZlVydB9uUe4,yes,is the person wearing white shirts trimming trees with scissors,v_ZlVydB9uUe4,v_ZlVydB9uUe4_2,3 7036,v_ZLG1Exv8HrY,no,is the person wearing white short sleeves playing on the horizontal bar,v_ZLG1Exv8HrY,v_ZLG1Exv8HrY_3,3 7037,v_ZLG1Exv8HrY,yes,is the person wearing white short sleeves playing on the parallel bars,v_ZLG1Exv8HrY,v_ZLG1Exv8HrY_2,3 7038,v_gkwLhml3mnA,yes,is the person wearing white short sleeves playing tai chi indoors,v_gkwLhml3mnA,v_gkwLhml3mnA_6,3 7039,v__kmjpSZb3OI,no,does the person with black clothes have white hair,v__kmjpSZb3OI,v__kmjpSZb3OI_9,3 7040,v_ldAHwbF8uWI,no,is the person with red clothes very thin,v_ldAHwbF8uWI,v_ldAHwbF8uWI_3,3 7041,v_G25py7yEVyo,yes,is the person with red ties being interviewed,v_G25py7yEVyo,v_G25py7yEVyo_8,3 7042,v_f6vZaMgqDvQ,yes,are performers all women,v_f6vZaMgqDvQ,v_f6vZaMgqDvQ_7,3 7043,v_fSBX-gjPblw,day,is the shooting activity in the daytime or at night,v_fSBX-gjPblw,v_fSBX-gjPblw_5,2 7044,v_cK0-WcGXacQ,yes,does the sportsman in black have short hair,v_cK0-WcGXacQ,v_cK0-WcGXacQ_2,3 7045,v_FkbpD1zWdPw,no,is the boy shooting the game,v_FkbpD1zWdPw,v_FkbpD1zWdPw_3,3 7046,v_WINtiw-_3vg,long sleeves,is the dress that the boy wears long sleeves or short sleeves,v_WINtiw-_3vg,v_WINtiw-_3vg_8,8 7047,v_-Fk62y-1WHo,yes,is it a child who plays an instrument,v_-Fk62y-1WHo,v_-Fk62y-1WHo_2,3 7048,v_blbaWHbtqTI,no,are the cigarettes smoked in the video are traditional cigarettes,v_blbaWHbtqTI,v_blbaWHbtqTI_6,3 7049,v_Aen-RfnlK3A,yes,are the cookies baked before the sandwich,v_Aen-RfnlK3A,v_Aen-RfnlK3A_10,3 7050,v_atGMJc-DZ7w,no,is the crouching little girl playing,v_atGMJc-DZ7w,v_atGMJc-DZ7w_3,3 7051,v_atGMJc-DZ7w,yes,is the crouching little girl washing clothes,v_atGMJc-DZ7w,v_atGMJc-DZ7w_2,3 7052,v_1kkc9hDshP4,yes,are the dancers happy,v_1kkc9hDshP4,v_1kkc9hDshP4_10,3 7053,v_hGPCJb2g1tQ,yes,is the girl standing on the equipment wearing blue clothes,v_hGPCJb2g1tQ,v_hGPCJb2g1tQ_2,3 7054,v_5LGh56euaZs,no,is the person with the goggles in the video indoors,v_5LGh56euaZs,v_5LGh56euaZs_3,3 7055,v_5LGh56euaZs,yes,is the person with the goggles in video outdoors,v_5LGh56euaZs,v_5LGh56euaZs_2,3 7056,v_IxaBEVd2PZM,yes,are the hands use during ballet dancing,v_IxaBEVd2PZM,v_IxaBEVd2PZM_2,3 7057,v_IsV1n_kLpvs,yes,are the hands used during cutting the roof's tin,v_IsV1n_kLpvs,v_IsV1n_kLpvs_2,3 7058,v_F9FPK6mfh88,yes,does the lady in the jeans have long hair,v_F9FPK6mfh88,v_F9FPK6mfh88_2,3 7059,v_SYh-j9bK_ls,no,is the lala player outdoors,v_SYh-j9bK_ls,v_SYh-j9bK_ls_3,3 7060,v_SYh-j9bK_ls,yes,is the lara player indoors,v_SYh-j9bK_ls,v_SYh-j9bK_ls_2,3 7061,v_rGOOlcdpfLg,yes,is the person in the checked coat indoors,v_rGOOlcdpfLg,v_rGOOlcdpfLg_2,3 7062,v_ryFSf08mrkA,no,is the person in the mask indoors,v_ryFSf08mrkA,v_ryFSf08mrkA_3,3 7063,v_CwImmV7q1MY,no,is the person in the video chinese,v_CwImmV7q1MY,v_CwImmV7q1MY_9,3 7064,v_9UvVeUYQLgA,male,is the person of green clothes a boy or a girl,v_9UvVeUYQLgA,v_9UvVeUYQLgA_7,8 7065,v_f1d7_TKXNYQ,yes,is the man running in the video white,v_f1d7_TKXNYQ,v_f1d7_TKXNYQ_2,3 7066,v_HtG-i1CG2Qs,yes,does the person in blue wear red pants,v_HtG-i1CG2Qs,v_HtG-i1CG2Qs_2,3 7067,v_HtG-i1CG2Qs,no,is the person in blue wearing yellow pants,v_HtG-i1CG2Qs,v_HtG-i1CG2Qs_3,3 7068,v_P6Oq6C9X0fw,no,is the person in black wear white pants,v_P6Oq6C9X0fw,v_P6Oq6C9X0fw_3,3 7069,v_H0dG_1Vgw4Q,yes,does the guy in the blue shorts wear a hat,v_H0dG_1Vgw4Q,v_H0dG_1Vgw4Q_2,3 7070,v_H0dG_1Vgw4Q,no,does the guy in the blue shorts wear a hat,v_H0dG_1Vgw4Q,v_H0dG_1Vgw4Q_3,3 7071,v_LPRLV0eVgfY,yes,is the person in dark red clothes play on the swing outdoors,v_LPRLV0eVgfY,v_LPRLV0eVgfY_2,3 7072,v_LPRLV0eVgfY,no,is the person in deep red clothes playing on the swing indoors,v_LPRLV0eVgfY,v_LPRLV0eVgfY_3,3 7073,v_KZ1NEffR2Qg,no,is the person in red pants dancing,v_KZ1NEffR2Qg,v_KZ1NEffR2Qg_3,3 7074,v_KZ1NEffR2Qg,yes,is the person in the red pants skipping rope,v_KZ1NEffR2Qg,v_KZ1NEffR2Qg_2,3 7075,v_Gs79qz286QE,no,doesn't the guy in the blue swimming trunks wear glasses,v_Gs79qz286QE,v_Gs79qz286QE_3,3 7076,v_Gs79qz286QE,yes,is the person in the blue swimming trunks swimming indoors,v_Gs79qz286QE,v_Gs79qz286QE_10,3 7077,v_Gs79qz286QE,yes,is the person in the blue swimming trunks wearing glasses,v_Gs79qz286QE,v_Gs79qz286QE_2,3 7078,v_zH1MiuiTsx8,no,is the person in the orange life jacket rowing a hovercraft,v_zH1MiuiTsx8,v_zH1MiuiTsx8_3,3 7079,v_zH1MiuiTsx8,yes,is the man in the orange life jacket rowing a wooden boat,v_zH1MiuiTsx8,v_zH1MiuiTsx8_2,3 7080,v_stdtUoog49I,no,are the people in the parade indoors,v_stdtUoog49I,v_stdtUoog49I_3,3 7081,v_4j_LRkB4T6c,yes,are the people in the video long hair,v_4j_LRkB4T6c,v_4j_LRkB4T6c_2,3 7082,v_LL0uQO4q_wY,yes,is the person in video pushing the curling iron indoors,v_LL0uQO4q_wY,v_LL0uQO4q_wY_2,3 7083,v_LL0uQO4q_wY,no,is the person in video pushing the curling iron outdoors,v_LL0uQO4q_wY,v_LL0uQO4q_wY_3,3 7084,v_4j_LRkB4T6c,no,do people in video have short hair,v_4j_LRkB4T6c,v_4j_LRkB4T6c_3,3 7085,v_fSBX-gjPblw,yes,are the people shooting adults and children,v_fSBX-gjPblw,v_fSBX-gjPblw_2,3 7086,v_W9H2qVnIWXs,no,is the person who is bathing the dog in white,v_W9H2qVnIWXs,v_W9H2qVnIWXs_3,3 7087,v_BhgcXqWQhkQ,yes,are the performers on the stage wearing suits,v_BhgcXqWQhkQ,v_BhgcXqWQhkQ_9,3 7088,v_-p7aui3nAnc,yes,are the performers wearing performance costumes,v_-p7aui3nAnc,v_-p7aui3nAnc_7,3 7089,v_P2xT7dlyX8Y,yes,is the piano player wearing long sleeves,v_P2xT7dlyX8Y,v_P2xT7dlyX8Y_2,3 7090,v_CfqnHsp6olc,yes,are the players in the game,v_CfqnHsp6olc,v_CfqnHsp6olc_7,3 7091,v_WdtytUagoJs,no,does the athlete in the competition have long hair ,v_WdtytUagoJs,v_WdtytUagoJs_3,3 7092,v_WdtytUagoJs,yes,does the athlete in the competition have short hair ,v_WdtytUagoJs,v_WdtytUagoJs_2,3 7093,v_dKJMP8EmZjw,yes,is the sail of the sailboat white,v_dKJMP8EmZjw,v_dKJMP8EmZjw_2,3 7094,v_bYxVbXzQToI,sitting,are the short - haired women standing or sitting,v_bYxVbXzQToI,v_bYxVbXzQToI_9,8 7095,v_raxeBxPQqlk,no,are the short sleeves worn by a little boy in red,v_raxeBxPQqlk,v_raxeBxPQqlk_3,3 7096,v_K1OsjA-f17E,yes,is the staff washing the car,v_K1OsjA-f17E,v_K1OsjA-f17E_2,3 7097,v_K1OsjA-f17E,no,is the staff washing motorcycles,v_K1OsjA-f17E,v_K1OsjA-f17E_3,3 7098,v_DUi-hLMpQQo,no,are the three horses riding in the same color,v_DUi-hLMpQQo,v_DUi-hLMpQQo_10,3 7099,v_b_c17BmZCCs,no,are the three teams playing in the video,v_b_c17BmZCCs,v_b_c17BmZCCs_3,3 7100,v_AtbTioB1_Kw,yes,is the trainer in the video wearing red shoes,v_AtbTioB1_Kw,v_AtbTioB1_Kw_2,3 7101,v_AtbTioB1_Kw,no,is the trainer in the video wearing white shoes,v_AtbTioB1_Kw,v_AtbTioB1_Kw_3,3 7102,v_ETbbYC0OhL0,no,are the two fist icons appearing in the video the same color,v_ETbbYC0OhL0,v_ETbbYC0OhL0_9,3 7103,v_cQgP0-Id-p4,yes,are the two people sitting in the video,v_cQgP0-Id-p4,v_cQgP0-Id-p4_7,3 7104,v_OysON6LbF6Y,yes,are the two people wearing glasses in the video,v_OysON6LbF6Y,v_OysON6LbF6Y_8,3 7105,v_b_c17BmZCCs,yes,are the two teams playing in the video,v_b_c17BmZCCs,v_b_c17BmZCCs_2,3 7106,v_-EIsT868Trw,yes,are the woman's trousers in black,v_-EIsT868Trw,v_-EIsT868Trw_2,3 7107,v_FmfAB-ppHBs,no,are their smoke props a match,v_FmfAB-ppHBs,v_FmfAB-ppHBs_3,3 7108,v_Av0VsTxJd78,yes,is there a picture of people skiing with cars in the video,v_Av0VsTxJd78,v_Av0VsTxJd78_8,3 7109,v_B4Zp5XN97Gc,yes,is there a picture of digging the ground with a shovel in the video,v_B4Zp5XN97Gc,v_B4Zp5XN97Gc_2,3 7110,v_eQ0sW4hJ9zU,yes,is there any instruction in video,v_eQ0sW4hJ9zU,v_eQ0sW4hJ9zU_10,3 7111,v_b6QSzGwI9m4,yes,does someone in green wear appear in the video,v_b6QSzGwI9m4,v_b6QSzGwI9m4_7,3 7112,v_BFChXuwZ4wo,yes,does the person in the gray vest have sunglasses on his head,v_BFChXuwZ4wo,v_BFChXuwZ4wo_2,3 7113,v_BjjN_aq_wq4,yes,are there two persons doing the dishes together in the video,v_BjjN_aq_wq4,v_BjjN_aq_wq4_10,3 7114,v_4H9MMsj4mcM,no,are there two persons on the horse yard in the video,v_4H9MMsj4mcM,v_4H9MMsj4mcM_3,3 7115,v_f6vZaMgqDvQ,yes,are they all acting indoors,v_f6vZaMgqDvQ,v_f6vZaMgqDvQ_2,3 7116,v_ds3mAmUPxYA,yes,are they all male,v_ds3mAmUPxYA,v_ds3mAmUPxYA_9,3 7117,v_f6vZaMgqDvQ,no,are they all outdoors,v_f6vZaMgqDvQ,v_f6vZaMgqDvQ_3,3 7118,v_Gfu8e6R6jUU,yes,are they all women,v_Gfu8e6R6jUU,v_Gfu8e6R6jUU_9,3 7119,v_F9FPK6mfh88,yes,are they outdoors,v_F9FPK6mfh88,v_F9FPK6mfh88_10,3 7120,v_ds3mAmUPxYA,yes,are they singing indoors,v_ds3mAmUPxYA,v_ds3mAmUPxYA_7,3 7121,v_AsdsR27UnJ0,trousers,is the person who controls with his feet wearing trousers or shorts,v_AsdsR27UnJ0,v_AsdsR27UnJ0_10,5 7122,v_cnMvMvVBXiI,big,does the person wearing the black dress repair the tire is big or small,v_cnMvMvVBXiI,v_cnMvMvVBXiI_7,5 7123,v_NNiJfr_ChH4,yes,is the person in white wearing black pants,v_NNiJfr_ChH4,v_NNiJfr_ChH4_2,3 7124,v_NNiJfr_ChH4,no,is the person wearing white clothes wearing red pants,v_NNiJfr_ChH4,v_NNiJfr_ChH4_3,3 7125,v_P6Oq6C9X0fw,yes,is the person in black wearing blue pants,v_P6Oq6C9X0fw,v_P6Oq6C9X0fw_2,3 7126,v_C7yd6yEkxXE,shirt,is the person in a blue dress wearing a long or short sleeves,v_C7yd6yEkxXE,v_C7yd6yEkxXE_10,5 7127,v_pVoM_kUQ4_E,yes,is the person in blue wearing black pants,v_pVoM_kUQ4_E,v_pVoM_kUQ4_E_2,3 7128,v_pVoM_kUQ4_E,no,is the person in blue wearing white pants,v_pVoM_kUQ4_E,v_pVoM_kUQ4_E_3,3 7129,v_GgnM5RGNtDE,yes,is the person in blue shorts dancing indoors,v_GgnM5RGNtDE,v_GgnM5RGNtDE_6,3 7130,v_uLsq6gQXQPM,yes,is the person in green wearing blue pants blue,v_uLsq6gQXQPM,v_uLsq6gQXQPM_2,3 7131,v_uLsq6gQXQPM,no,is the person in green wearing red pants red,v_uLsq6gQXQPM,v_uLsq6gQXQPM_3,3 7132,v_pPt_fygNjtQ,no,is the person in purple wearing black pants,v_pPt_fygNjtQ,v_pPt_fygNjtQ_3,3 7133,v_pPt_fygNjtQ,yes,is the person in purple wearing gray pants,v_pPt_fygNjtQ,v_pPt_fygNjtQ_2,3 7134,v_QPEAp7nf2Tk,yes,is the guy in the striped pants on the slide outdoors,v_QPEAp7nf2Tk,v_QPEAp7nf2Tk_8,3 7135,v_bRgvAHL3dJk,short hair,does the cook have long or short hair,v_bRgvAHL3dJk,v_bRgvAHL3dJk_9,8 7136,v_FKtYeu2bJpA,yes,is the basketball player a boy,v_FKtYeu2bJpA,v_FKtYeu2bJpA_7,3 7137,v_w10Nr_wOh8g,no,are the trousers worn by people working in black,v_w10Nr_wOh8g,v_w10Nr_wOh8g_3,3 7138,v_8teo_0gxzgk,no,are two blondes wearing a hat,v_8teo_0gxzgk,v_8teo_0gxzgk_3,3 7139,v_eLh51DwDp-E,no,isn't the woman in black very young,v_eLh51DwDp-E,v_eLh51DwDp-E_9,3 7140,v_eLh51DwDp-E,yes,is the woman in black wearing an earring,v_eLh51DwDp-E,v_eLh51DwDp-E_2,3 7141,v_ETbbYC0OhL0,no,is the woman with the purple hair weak,v_ETbbYC0OhL0,v_ETbbYC0OhL0_3,3 7142,v_a_EqAwUOxpM,no,are you writing in the video,v_a_EqAwUOxpM,v_a_EqAwUOxpM_3,3 7143,v_R74yolowFPs,yes,can the video game be played indoors and outdoors,v_R74yolowFPs,v_R74yolowFPs_10,3 7144,v_Erje-PwY9hE,tourism advertisement,can this video come from,v_Erje-PwY9hE,v_Erje-PwY9hE_10,8 7145,v_Ep5LuX_2gfI,yes,can we see the sunlight from where the divers are,v_Ep5LuX_2gfI,v_Ep5LuX_2gfI_9,3 7146,v_Ep5LuX_2gfI,kelp,can you find a common food on the bottom of the sea,v_Ep5LuX_2gfI,v_Ep5LuX_2gfI_6,5 7147,v_Ep5LuX_2gfI,sea anemone,can you name the biological name of the video that appears in 36 seconds,v_Ep5LuX_2gfI,v_Ep5LuX_2gfI_7,5 7148,v_C7yd6yEkxXE,day,can you see the time in the day or in the evening,v_C7yd6yEkxXE,v_C7yd6yEkxXE_9,8 7149,v_Em4ekFj4XIs,autumn,can you speculate on the season in the video,v_Em4ekFj4XIs,v_Em4ekFj4XIs_9,8 7150,v_9TjPn_ejmFU,no,children wearing blue and white stripes wear bracelets,v_9TjPn_ejmFU,v_9TjPn_ejmFU_6,3 7151,v_b_c17BmZCCs,yes,does anyone fall down when the audience came on the court,v_b_c17BmZCCs,v_b_c17BmZCCs_7,3 7152,v__CIoHeD7KQc,yes,does he wear a watch in the video,v__CIoHeD7KQc,v__CIoHeD7KQc_7,3 7153,v_P6Oq6C9X0fw,yes,does the person in black wear accidents during skiing,v_P6Oq6C9X0fw,v_P6Oq6C9X0fw_7,3 7154,v_faqijFZWQlo,yes,does the barber wear his watch,v_faqijFZWQlo,v_faqijFZWQlo_6,3 7155,v_ECZb_tQZ4Pg,yes,does the man in black grow a beard,v_ECZb_tQZ4Pg,v_ECZb_tQZ4Pg_2,3 7156,v_ys4_S3JHQjs,yes,does the boating people wear hats in the video,v_ys4_S3JHQjs,v_ys4_S3JHQjs_6,3 7157,v_54TIARWo-S8,yes,does the boy in pink jump two times,v_54TIARWo-S8,v_54TIARWo-S8_2,3 7158,v_46NS8dT15Hw,yes,does the boy in the blue dress wear an eye mask,v_46NS8dT15Hw,v_46NS8dT15Hw_2,3 7159,v_54TIARWo-S8,no,does the boy in yellow jump two times,v_54TIARWo-S8,v_54TIARWo-S8_3,3 7160,v_GOhmWfR8QBM,yes,does the christmas tree finally fall down,v_GOhmWfR8QBM,v_GOhmWfR8QBM_2,3 7161,v_fEBM3nPMen8,no,does the diver take the fish off,v_fEBM3nPMen8,v_fEBM3nPMen8_8,3 7162,v_Em4ekFj4XIs,yes,does the dog get a frisbee,v_Em4ekFj4XIs,v_Em4ekFj4XIs_2,3 7163,v_Em4ekFj4XIs,no,does the dog get all the frisbee,v_Em4ekFj4XIs,v_Em4ekFj4XIs_3,3 7164,v_er5jUsRr4y0,no,does the fat man look happy after using mouthwash,v_er5jUsRr4y0,v_er5jUsRr4y0_3,3 7165,v_72_9wLYUDGM,yes,does the girl in blue wear a hairpin,v_72_9wLYUDGM,v_72_9wLYUDGM_2,3 7166,v_72_9wLYUDGM,no,does the girl in blue wear a necklace,v_72_9wLYUDGM,v_72_9wLYUDGM_3,3 7167,v_72_9wLYUDGM,no,does the girl in blue wear shoes,v_72_9wLYUDGM,v_72_9wLYUDGM_10,3 7168,v_9G172wz5Yqo,no,does the girls in red wear a hat,v_9G172wz5Yqo,v_9G172wz5Yqo_3,3 7169,v_09ocXmGF-T4,no,does the little boy cut a potato,v_09ocXmGF-T4,v_09ocXmGF-T4_3,3 7170,v_9G172wz5Yqo,no,does the little boy in red wear glasses,v_9G172wz5Yqo,v_9G172wz5Yqo_10,3 7171,v_kpOAGEYHts8,no,does the person come to talk to a woman,v_kpOAGEYHts8,v_kpOAGEYHts8_10,3 7172,v_A0b_pqaKCX8,yes,does the person in black drink the green liquid first and then vomit it,v_A0b_pqaKCX8,v_A0b_pqaKCX8_9,3 7173,v_GgnM5RGNtDE,yes,does the person in blue short sleeves come down from the rope at last,v_GgnM5RGNtDE,v_GgnM5RGNtDE_2,3 7174,v_GgnM5RGNtDE,no,does the person in blue short sleeves not come down from the rope at last,v_GgnM5RGNtDE,v_GgnM5RGNtDE_3,3 7175,v_G_rVqf_hwXw,yes,does the person in dark blue win the wrist at last,v_G_rVqf_hwXw,v_G_rVqf_hwXw_2,3 7176,v_16bJAOf1SJI,yes,does the person in the blue and white lattice wear a watch,v_16bJAOf1SJI,v_16bJAOf1SJI_2,3 7177,v_Es3PxD9oi4I,no,does the person in the blue hat hit the goal,v_Es3PxD9oi4I,v_Es3PxD9oi4I_3,3 7178,v_qGtUXGG78tM,yes,does the person in the dark blue pants wear a hat,v_qGtUXGG78tM,v_qGtUXGG78tM_7,3 7179,v_G_rVqf_hwXw,no,does the person in the gray coat win the wrist at last,v_G_rVqf_hwXw,v_G_rVqf_hwXw_3,3 7180,v_9SIPJd4Hls4,no,does the person in the red hat wear a necklace,v_9SIPJd4Hls4,v_9SIPJd4Hls4_3,3 7181,v_QPEAp7nf2Tk,no,does the person in the striped pants wear a hat,v_QPEAp7nf2Tk,v_QPEAp7nf2Tk_9,3 7182,v_Es3PxD9oi4I,yes,does the person in the white hat hit the goal,v_Es3PxD9oi4I,v_Es3PxD9oi4I_2,3 7183,v_0e7d39SwHCA,yes,does the person in white wear a hat,v_0e7d39SwHCA,v_0e7d39SwHCA_2,3 7184,v_AjqnGUbsduw,no,does the person in white win,v_AjqnGUbsduw,v_AjqnGUbsduw_10,3 7185,v_d4sX1jnL4BY,yes,does the men in the video wear oxygen cylinders on the bottom of the sea,v_d4sX1jnL4BY,v_d4sX1jnL4BY_9,3 7186,v_zOI9SjQpc_Q,no,does the number 9 wear a hat,v_zOI9SjQpc_Q,v_zOI9SjQpc_Q_8,3 7187,v_Nc9yr4urskA,no,does the person in the yellow dress wear shoes,v_Nc9yr4urskA,v_Nc9yr4urskA_10,3 7188,v_nnEPsdA0080,yes,does the person in white wear a life jacket,v_nnEPsdA0080,v_nnEPsdA0080_2,3 7189,v_Av0VsTxJd78,no,does the person sitting in the car with the video start wearing a hat,v_Av0VsTxJd78,v_Av0VsTxJd78_10,3 7190,v_AjizhJc_reI,no,does the pink dress wear a necklace,v_AjizhJc_reI,v_AjizhJc_reI_3,3 7191,v_gOnp3DZxeKU,yes,does the purple jackets add ketchup to the cooking process,v_gOnp3DZxeKU,v_gOnp3DZxeKU_10,3 7192,v_aGvpDyMNATI,yes,does the referee wear sunglasses in the video,v_aGvpDyMNATI,v_aGvpDyMNATI_10,3 7193,v_Db2Dnt2OOo0,yes,does the tattoo in the video wear a hat,v_Db2Dnt2OOo0,v_Db2Dnt2OOo0_8,3 7194,v_FnPS6zn5S7M,no,does the woman in the gymnastic suit fail,v_FnPS6zn5S7M,v_FnPS6zn5S7M_3,3 7195,v_FnPS6zn5S7M,yes,does the woman in the gymnastic suit succeed,v_FnPS6zn5S7M,v_FnPS6zn5S7M_2,3 7196,v_FFMugev85IY,no,does the woman wear a hat,v_FFMugev85IY,v_FFMugev85IY_9,3 7197,v_eVkp83uGf3Y,no,does the woman in pink be knocked down by a chain,v_eVkp83uGf3Y,v_eVkp83uGf3Y_3,3 7198,v_eVkp83uGf3Y,yes,does the woman in the pink dress fall down,v_eVkp83uGf3Y,v_eVkp83uGf3Y_2,3 7199,v_6xBh3vzhgo4,yes,does the yacht appear in the video,v_6xBh3vzhgo4,v_6xBh3vzhgo4_2,3 7200,v_GOhmWfR8QBM,no,doesn't the christmas tree finally fall down,v_GOhmWfR8QBM,v_GOhmWfR8QBM_3,3 7201,v_46NS8dT15Hw,no,does the adult in blue wear an eye mask,v_46NS8dT15Hw,v_46NS8dT15Hw_3,3 7202,v_gCHo9vxfEzM,no,do all the people in red dance outdoors,v_gCHo9vxfEzM,v_gCHo9vxfEzM_3,3 7203,v_gCHo9vxfEzM,yes,do all the people in red dress dance indoors,v_gCHo9vxfEzM,v_gCHo9vxfEzM_2,3 7204,v_uIHWHnItois,yes,does anyone in orange wear a hat,v_uIHWHnItois,v_uIHWHnItois_2,3 7205,v_Flm_SCK10GQ,yes,does anyone wear glasses in the video,v_Flm_SCK10GQ,v_Flm_SCK10GQ_9,3 7206,v_huFOZ2BiM_k,no,does the athlete in red pants don't wear wristbands,v_huFOZ2BiM_k,v_huFOZ2BiM_k_3,3 7207,v_u0Dc0ZtudXY,yes,does the athlete in white wear hair,v_u0Dc0ZtudXY,v_u0Dc0ZtudXY_2,3 7208,v_u0Dc0ZtudXY,no,does the athlete in white wear no hair,v_u0Dc0ZtudXY,v_u0Dc0ZtudXY_3,3 7209,v_ECZb_tQZ4Pg,no,does the boy in black clothes wear short sleeved clothes,v_ECZb_tQZ4Pg,v_ECZb_tQZ4Pg_3,3 7210,v_CaeZoHNHul0,yes,does the girl in black hair wear glasses,v_CaeZoHNHul0,v_CaeZoHNHul0_2,3 7211,v_CaeZoHNHul0,no,does the girl in black haired wear sunglasses,v_CaeZoHNHul0,v_CaeZoHNHul0_3,3 7212,v_dZsk5Dp_5FE,no,does the child wear red clothes,v_dZsk5Dp_5FE,v_dZsk5Dp_5FE_3,3 7213,v_qlK-c7hRqcA,yes,does everyone wear an eye mask in the video,v_qlK-c7hRqcA,v_qlK-c7hRqcA_2,3 7214,v_9G172wz5Yqo,yes,does the girl in red wear gloves,v_9G172wz5Yqo,v_9G172wz5Yqo_2,3 7215,v_EBw5-KVV_PU,no,does the girl wear long sleeved clothes,v_EBw5-KVV_PU,v_EBw5-KVV_PU_3,3 7216,v_-EIsT868Trw,no,does the woman in grey clothes wear pants,v_-EIsT868Trw,v_-EIsT868Trw_3,3 7217,v_6Xsfwn5M6qs,no,does the person in blue pants have hats,v_6Xsfwn5M6qs,v_6Xsfwn5M6qs_3,3 7218,v_TXSOSSGJYO0,yes,does the person in gray clothes wear hats,v_TXSOSSGJYO0,v_TXSOSSGJYO0_2,3 7219,v_0xBP-TSsqb0,no,does the person in the video keep the nails,v_0xBP-TSsqb0,v_0xBP-TSsqb0_3,3 7220,v_F9FPK6mfh88,yes,does the person in white wear white shoes,v_F9FPK6mfh88,v_F9FPK6mfh88_6,3 7221,v_CwImmV7q1MY,yes,does the person wear glasses in the video,v_CwImmV7q1MY,v_CwImmV7q1MY_7,3 7222,v_3Rzyta8op6s,yes,do not wear a watch in the video,v_3Rzyta8op6s,v_3Rzyta8op6s_2,3 7223,v_G4-qjGC_3VA,no,does the person in black clothes wear hats,v_G4-qjGC_3VA,v_G4-qjGC_3VA_8,3 7224,v_EQWdo0FcKAo,yes,does the person in black dress dance neatly,v_EQWdo0FcKAo,v_EQWdo0FcKAo_2,3 7225,v_pPt_fygNjtQ,no,does the person in black have bicycles,v_pPt_fygNjtQ,v_pPt_fygNjtQ_7,3 7226,v_P6Oq6C9X0fw,no,does the person in black have safety measures,v_P6Oq6C9X0fw,v_P6Oq6C9X0fw_10,3 7227,v_RlRrktN5iH4,yes,does the person in black pants tie the hair,v_RlRrktN5iH4,v_RlRrktN5iH4_2,3 7228,v_OcL7ZhBCkxQ,no,does the person in black pants wear glasses,v_OcL7ZhBCkxQ,v_OcL7ZhBCkxQ_3,3 7229,v_RlRrktN5iH4,no,does the person in black pants wear hair,v_RlRrktN5iH4,v_RlRrktN5iH4_3,3 7230,v_OcL7ZhBCkxQ,yes,does the person in black pants wear hats,v_OcL7ZhBCkxQ,v_OcL7ZhBCkxQ_2,3 7231,v_GSrBZXLSwWI,no,does the person in black short sleeves not wear hats,v_GSrBZXLSwWI,v_GSrBZXLSwWI_3,3 7232,v_xND_kp-aYXw,yes,does the person in black wear bracelets,v_xND_kp-aYXw,v_xND_kp-aYXw_2,3 7233,v_3PsxzgeMv5w,no,does the person in black wear masks,v_3PsxzgeMv5w,v_3PsxzgeMv5w_3,3 7234,v_9k19UUJtldg,no,does the person in black wear red shoes,v_9k19UUJtldg,v_9k19UUJtldg_3,3 7235,v_9k19UUJtldg,yes,does the person in black wear white shoes,v_9k19UUJtldg,v_9k19UUJtldg_2,3 7236,v_I1iUbyjWy7k,no,does the person in blue clothes not wear hats,v_I1iUbyjWy7k,v_I1iUbyjWy7k_3,3 7237,v_I1iUbyjWy7k,yes,does the person in blue clothes wear hats,v_I1iUbyjWy7k,v_I1iUbyjWy7k_2,3 7238,v_qiTQ02NDSlQ,yes,does the person in blue coats make sandwiches indoors,v_qiTQ02NDSlQ,v_qiTQ02NDSlQ_2,3 7239,v_FWZ6wgaJ_L4,yes,does the person in blue cut fast,v_FWZ6wgaJ_L4,v_FWZ6wgaJ_L4_2,3 7240,v_tgPD2SZo_DY,yes,does the person in blue wear a microphone,v_tgPD2SZo_DY,v_tgPD2SZo_DY_2,3 7241,v_CvbL36Y8hN0,yes,does the person in blue wear glasses in the video,v_CvbL36Y8hN0,v_CvbL36Y8hN0_9,3 7242,v_ys4_S3JHQjs,no,does the person in blue wear gloves,v_ys4_S3JHQjs,v_ys4_S3JHQjs_3,3 7243,v_LsVCwr6qPmY,yes,does the person in blue wear long sleeves,v_LsVCwr6qPmY,v_LsVCwr6qPmY_2,3 7244,v_P8S8PIyPXxY,yes,does the person in blue wear make a picture for people,v_P8S8PIyPXxY,v_P8S8PIyPXxY_9,3 7245,v_LsVCwr6qPmY,no,does the person in blue wear short sleeves,v_LsVCwr6qPmY,v_LsVCwr6qPmY_3,3 7246,v_96vBhCFBbQk,yes,does the person in blue wear watches,v_96vBhCFBbQk,v_96vBhCFBbQk_2,3 7247,v_YvPoAOrjX5I,no,does the person in blue wear wear glasses,v_YvPoAOrjX5I,v_YvPoAOrjX5I_3,3 7248,v_qGtUXGG78tM,yes,does the person in dark blue pants use machines to prune trees,v_qGtUXGG78tM,v_qGtUXGG78tM_2,3 7249,v_MDsJa6Yitwc,yes,does the person in gray clothes wear earrings in the left ear,v_MDsJa6Yitwc,v_MDsJa6Yitwc_2,3 7250,v_MDsJa6Yitwc,no,does the person in gray clothes wear earrings in the right ear,v_MDsJa6Yitwc,v_MDsJa6Yitwc_3,3 7251,v_G_rVqf_hwXw,yes,does the person in gray sweaters wear something on the left wrist,v_G_rVqf_hwXw,v_G_rVqf_hwXw_7,3 7252,v_1xtKGlUp4Vg,no,does the person in gray wear a ring in the left hand,v_1xtKGlUp4Vg,v_1xtKGlUp4Vg_3,3 7253,v_zKYiTA6WBS4,yes,does the person in green blouses blow the hair into curly hair,v_zKYiTA6WBS4,v_zKYiTA6WBS4_2,3 7254,v_zKYiTA6WBS4,no,does the person in green blouses blow the hair into straight hair,v_zKYiTA6WBS4,v_zKYiTA6WBS4_3,3 7255,v_QX5e5Mla660,indoor,does the person in green coats dance indoors or outdoors,v_QX5e5Mla660,v_QX5e5Mla660_8,6 7256,v_2vrR_5u2buU,yes,does the person in green pants wear long sleeves,v_2vrR_5u2buU,v_2vrR_5u2buU_3,3 7257,v_2vrR_5u2buU,yes,does the person in green pants wear short sleeves,v_2vrR_5u2buU,v_2vrR_5u2buU_2,3 7258,v_gZB_XrTnDCI,no,does the person in green wear a flat road,v_gZB_XrTnDCI,v_gZB_XrTnDCI_10,3 7259,v_gZB_XrTnDCI,yes,does the person in green wear bicycles outdoors,v_gZB_XrTnDCI,v_gZB_XrTnDCI_6,3 7260,v_mMm1LfVb8Pg,no,does the person in green wear long sleeves,v_mMm1LfVb8Pg,v_mMm1LfVb8Pg_3,3 7261,v_mMm1LfVb8Pg,yes,does the person in green wear short sleeves,v_mMm1LfVb8Pg,v_mMm1LfVb8Pg_2,3 7262,v_i6wR9_tkg6A,yes,does the person in green wear wear a hat,v_i6wR9_tkg6A,v_i6wR9_tkg6A_2,3 7263,v_Gfu8e6R6jUU,no,does the person in pink clothes stand in the first row,v_Gfu8e6R6jUU,v_Gfu8e6R6jUU_3,3 7264,v_Gfu8e6R6jUU,yes,does the person in pink clothes stand in the second row,v_Gfu8e6R6jUU,v_Gfu8e6R6jUU_2,3 7265,v_meNgZdu8tIk,yes,does the person in purple wear long sleeves,v_meNgZdu8tIk,v_meNgZdu8tIk_2,3 7266,v_meNgZdu8tIk,no,does the person in purple wear short sleeves,v_meNgZdu8tIk,v_meNgZdu8tIk_3,3 7267,v_0w4OkBenR_k,yes,does the person in purple wear shorts,v_0w4OkBenR_k,v_0w4OkBenR_k_2,3 7268,v_qKp2QCheLwU,no,does the person in red caps play musical instruments indoors,v_qKp2QCheLwU,v_qKp2QCheLwU_3,3 7269,v_qKp2QCheLwU,yes,does the person in red caps play musical instruments outdoors,v_qKp2QCheLwU,v_qKp2QCheLwU_2,3 7270,v_SB0dU5oDvaE,yes,does the person in red dress wear indoors at the beginning of the video,v_SB0dU5oDvaE,v_SB0dU5oDvaE_2,3 7271,v_9SIPJd4Hls4,yes,does the person in red hats wear earrings,v_9SIPJd4Hls4,v_9SIPJd4Hls4_2,3 7272,v_i8hNrK3r_MY,yes,does the person in red pants wear a hat,v_i8hNrK3r_MY,v_i8hNrK3r_MY_2,3 7273,v_Zt9qvbUnNhc,no,does the person in red shorts wear shoes,v_Zt9qvbUnNhc,v_Zt9qvbUnNhc_8,3 7274,v_aH39BSM0-Ag,yes,does the person in red wear sunglasses,v_aH39BSM0-Ag,v_aH39BSM0-Ag_2,3 7275,v_TtewPltwuXw,no,does the person in red wear the wristwatches in the right hand,v_TtewPltwuXw,v_TtewPltwuXw_3,3 7276,v__2txWbQfJrY,yes,does the person in short sleeves kneel on the floor to lay the tiles,v__2txWbQfJrY,v__2txWbQfJrY_2,3 7277,v_pcLGX5qvUcI,yes,does the person in skate shoes knock down the ball,v_pcLGX5qvUcI,v_pcLGX5qvUcI_9,3 7278,v_pcLGX5qvUcI,yes,does the person in skates do safety measures,v_pcLGX5qvUcI,v_pcLGX5qvUcI_10,3 7279,v_uJAL31wAD2A,no,does the person in striped bikini don't wear sunglasses,v_uJAL31wAD2A,v_uJAL31wAD2A_3,3 7280,v_uJAL31wAD2A,yes,does the person in striped bikini wear sunglasses,v_uJAL31wAD2A,v_uJAL31wAD2A_2,3 7281,v_03c6QhTMDSs,yes,does the person in striped clothes ride sports bicycles indoors,v_03c6QhTMDSs,v_03c6QhTMDSs_2,3 7282,v_qaml4eEk9hY,no,does the person in the video clean the floor with brooms,v_qaml4eEk9hY,v_qaml4eEk9hY_3,3 7283,v_3JBUWRKezUI,no,does the person in the video clean up the floor glass in the building,v_3JBUWRKezUI,v_3JBUWRKezUI_3,3 7284,v_3JBUWRKezUI,yes,does the person in the video clean up the floor glass outdoors the building,v_3JBUWRKezUI,v_3JBUWRKezUI_2,3 7285,v_Uae2MWoldTU,no,does the person in the video don't wear christmas caps,v_Uae2MWoldTU,v_Uae2MWoldTU_3,3 7286,v_0k6GFx2ZCg8,no,does the person in the video don't wear earrings,v_0k6GFx2ZCg8,v_0k6GFx2ZCg8_3,3 7287,v_mVAP-WyEc7w,yes,does the person in the video have hair,v_mVAP-WyEc7w,v_mVAP-WyEc7w_7,3 7288,v_HPKHDze6XfA,no,does the person in the video not wear gloves,v_HPKHDze6XfA,v_HPKHDze6XfA_3,3 7289,v_BBKSKU6dGGk,yes,does the person in the video wear a hat,v_BBKSKU6dGGk,v_BBKSKU6dGGk_6,3 7290,v__zqj6daJo9U,yes,does the person in the video wear blue clothes,v__zqj6daJo9U,v__zqj6daJo9U_2,3 7291,v_HPKHDze6XfA,yes,does the person in the video wear gloves,v_HPKHDze6XfA,v_HPKHDze6XfA_2,3 7292,v_hIYN8cC3pEA,yes,does the person in the video wear grey pants,v_hIYN8cC3pEA,v_hIYN8cC3pEA_2,3 7293,v_Ar6TcWqwK-A,no,does the person in the video wear white clothes,v_Ar6TcWqwK-A,v_Ar6TcWqwK-A_3,3 7294,v_zEttEkAdHts,yes,does the person in video use paper money to make wrapping paper,v_zEttEkAdHts,v_zEttEkAdHts_2,3 7295,v_zEttEkAdHts,no,does the person in videos use white paper to make wrapping paper,v_zEttEkAdHts,v_zEttEkAdHts_3,3 7296,v_2UhbDOd43zU,yes,does the person in white dress teach martial arts indoors,v_2UhbDOd43zU,v_2UhbDOd43zU_2,3 7297,v_2UhbDOd43zU,no,does the person in white dress teach martial arts outdoors,v_2UhbDOd43zU,v_2UhbDOd43zU_3,3 7298,v_A8RQcVFtovg,yes,does the person in white pants wear glasses,v_A8RQcVFtovg,v_A8RQcVFtovg_2,3 7299,v_1494UwmvAJM,yes,does the person in white wear watches,v_1494UwmvAJM,v_1494UwmvAJM_2,3 7300,v_hRsn4nesCQo,yes,does the person in yellow wear a ring in the left hand,v_hRsn4nesCQo,v_hRsn4nesCQo_2,3 7301,v__l251ZuOCYU,yes,does the person in yellow wear red hats,v__l251ZuOCYU,v__l251ZuOCYU_10,3 7302,v_mxn6WcmdNpA,yes,does the person in yellow wear watch,v_mxn6WcmdNpA,v_mxn6WcmdNpA_9,3 7303,v_I3tqWc5wG78,no,does the person not wear earrings with a sweater chain,v_I3tqWc5wG78,v_I3tqWc5wG78_3,3 7304,v_Pho9Hgdvc0g,no,does the person sitting on the ship do safety measures,v_Pho9Hgdvc0g,v_Pho9Hgdvc0g_9,3 7305,v_0k6GFx2ZCg8,yes,does the person wear earrings in the video,v_0k6GFx2ZCg8,v_0k6GFx2ZCg8_2,3 7306,v_I3tqWc5wG78,yes,does the person wear earrings with a sweater chain,v_I3tqWc5wG78,v_I3tqWc5wG78_2,3 7307,v_pzTqZWPubk8,no,does the person wear grey short sleeves brush the teeth outdoors,v_pzTqZWPubk8,v_pzTqZWPubk8_3,3 7308,v_kYkvyRKxwfY,no,does the person wear long pants in white clothes,v_kYkvyRKxwfY,v_kYkvyRKxwfY_3,3 7309,v_Au4PfoK7hyw,no,does the person wear ornaments in both hands in the video,v_Au4PfoK7hyw,v_Au4PfoK7hyw_8,3 7310,v__2txWbQfJrY,no,does the person wear short sleeved tiles on the floor,v__2txWbQfJrY,v__2txWbQfJrY_3,3 7311,v_kYkvyRKxwfY,yes,does the person wear shorts in white clothes,v_kYkvyRKxwfY,v_kYkvyRKxwfY_2,3 7312,v_2DCHbuwZNSs,yes,does the person wear submersible glasses in a submersible suit,v_2DCHbuwZNSs,v_2DCHbuwZNSs_2,3 7313,v_v0azz4XzW_s,yes,does the person wear sunglasses in the video,v_v0azz4XzW_s,v_v0azz4XzW_s_2,3 7314,v_-crpjVnFv0U,no,does the person wearing black and white checked glasses wear glasses,v_-crpjVnFv0U,v_-crpjVnFv0U_9,3 7315,v_qZMcbBsQorE,night,does the person wearing gray vests perform high degree of difficulty,v_qZMcbBsQorE,v_qZMcbBsQorE_10,8 7316,v_QX5e5Mla660,yes,does the person wearing green coats perform high degree of difficulty,v_QX5e5Mla660,v_QX5e5Mla660_7,3 7317,v_F-Z17rHI_ms,no,does the person wearing grey clothes have high difficulty in diving,v_F-Z17rHI_ms,v_F-Z17rHI_ms_8,3 7318,v_SB0dU5oDvaE,no,does the person wearing red clothes outdoors at the beginning of the video,v_SB0dU5oDvaE,v_SB0dU5oDvaE_3,3 7319,v_03c6QhTMDSs,no,does the person wearing striped clothes ride sports bicycles outdoors,v_03c6QhTMDSs,v_03c6QhTMDSs_3,3 7320,v_u_vLZxgO9Rw,yes,does the person with a yellow ribbon wear glasses,v_u_vLZxgO9Rw,v_u_vLZxgO9Rw_2,3 7321,v_AQ3eFWxZ67U,yes,does the person with hair spray on video wear sunglasses,v_AQ3eFWxZ67U,v_AQ3eFWxZ67U_9,3 7322,v_B4Zp5XN97Gc,yes,does the person with potted plants in the video wear glasses,v_B4Zp5XN97Gc,v_B4Zp5XN97Gc_9,3 7323,v_6VXQoPNphgI,no,does men in short hair not wear pants,v_6VXQoPNphgI,v_6VXQoPNphgI_3,3 7324,v_fbr7v8RMkf8,no,does the skier wear the same clothes,v_fbr7v8RMkf8,v_fbr7v8RMkf8_9,3 7325,v_pKOy4HJwCqo,no,does the surfer have safety measures,v_pKOy4HJwCqo,v_pKOy4HJwCqo_8,3 7326,v_Ki13JIVwMdk,yes,does the black-and-white dogs not like black dogs,v_Ki13JIVwMdk,v_Ki13JIVwMdk_8,3 7327,v_KPRymTsPCC0,yes,does the boy with glasses come with a group,v_KPRymTsPCC0,v_KPRymTsPCC0_2,3 7328,v_FaP7unySMOs,no,does the clothes they wear are the same color,v_FaP7unySMOs,v_FaP7unySMOs_6,3 7329,v_FkbpD1zWdPw,no,does the commentators have girls,v_FkbpD1zWdPw,v_FkbpD1zWdPw_8,3 7330,v_9eniCub7u60,no,does the dancers wear the upper color shoes,v_9eniCub7u60,v_9eniCub7u60_10,3 7331,v_PSB1nM3QXxg,no,does the demonstrations wear shoes,v_PSB1nM3QXxg,v_PSB1nM3QXxg_10,3 7332,v_VvsYrfEvvUw,yes,does the exercisers wear black clothes,v_VvsYrfEvvUw,v_VvsYrfEvvUw_2,3 7333,v_VvsYrfEvvUw,no,does the exercisers wear white clothes,v_VvsYrfEvvUw,v_VvsYrfEvvUw_3,3 7334,v_Dd5yTxwKzXw,no,does the hairdressers wear glasses in the video,v_Dd5yTxwKzXw,v_Dd5yTxwKzXw_10,3 7335,v_CwImmV7q1MY,yes,does the men enjoy the play when they play the harmonica in the video,v_CwImmV7q1MY,v_CwImmV7q1MY_10,3 7336,v_f1d7_TKXNYQ,no,does the men running in the video wear black shoes,v_f1d7_TKXNYQ,v_f1d7_TKXNYQ_3,3 7337,v__jV5sAOOHLk,yes,does the person in black wear glasses,v__jV5sAOOHLk,v__jV5sAOOHLk_2,3 7338,v_g1na24Bd5Rs,yes,does the person in black wear the wristwatches on the left wrists,v_g1na24Bd5Rs,v_g1na24Bd5Rs_10,3 7339,v_GcjzvBatqb4,no,does the person in orange wear a hat,v_GcjzvBatqb4,v_GcjzvBatqb4_9,3 7340,v_AQ3eFWxZ67U,yes,does the person in the dress wear anything in the video,v_AQ3eFWxZ67U,v_AQ3eFWxZ67U_8,3 7341,v_1IbkFHNA7fg,yes,does the person in the lattices sit in the haircut,v_1IbkFHNA7fg,v_1IbkFHNA7fg_2,3 7342,v_eJc8bebOF2A,no,does the person in the shot put in black clothes,v_eJc8bebOF2A,v_eJc8bebOF2A_3,3 7343,v_HDt5z5Y0opo,no,does the person in the striped clothes not wear gloves on the platform,v_HDt5z5Y0opo,v_HDt5z5Y0opo_3,3 7344,v_HDt5z5Y0opo,yes,does the person in the striped clothes wear gloves on the platform,v_HDt5z5Y0opo,v_HDt5z5Y0opo_2,3 7345,v_auO4r3De6vc,no,does the person in the video throw the bowl out and let the dog hold it back,v_auO4r3De6vc,v_auO4r3De6vc_3,3 7346,v_auO4r3De6vc,yes,does the person in the video throw the dishes out and let the dogs hold them back,v_auO4r3De6vc,v_auO4r3De6vc_2,3 7347,v_NNiJfr_ChH4,yes,does the person in white run before the long jump,v_NNiJfr_ChH4,v_NNiJfr_ChH4_10,3 7348,v__jIXs7AFTxw,yes,does the person in white wear watch,v__jIXs7AFTxw,v__jIXs7AFTxw_2,3 7349,v_uM7QSskmloo,no,does the person pruning the branches does not wear glasses,v_uM7QSskmloo,v_uM7QSskmloo_3,3 7350,v_-p7aui3nAnc,no,does the performers does the same number of people,v_-p7aui3nAnc,v_-p7aui3nAnc_9,3 7351,v_BhgcXqWQhkQ,yes,does the performers on the stage wear glasses,v_BhgcXqWQhkQ,v_BhgcXqWQhkQ_7,3 7352,v_I16FTpQQiic,no,does the person in red clothes not tie up the hair,v_I16FTpQQiic,v_I16FTpQQiic_3,3 7353,v_I16FTpQQiic,yes,does the person in red clothes tie up the hair,v_I16FTpQQiic,v_I16FTpQQiic_2,3 7354,v_I9ficvPdpZg,no,does the person in white clothes not wear a hat on the stage,v_I9ficvPdpZg,v_I9ficvPdpZg_3,3 7355,v_I9ficvPdpZg,yes,does the person in white clothes wear a hat on the stage,v_I9ficvPdpZg,v_I9ficvPdpZg_2,3 7356,v_auO4r3De6vc,yes,does the trainers wear pants in the video,v_auO4r3De6vc,v_auO4r3De6vc_9,3 7357,v_v-UmNR5yeDc,short sleeve,does the woman who wear the guessing game wear long sleeves or short sleeves,v_v-UmNR5yeDc,v_v-UmNR5yeDc_7,8 7358,v_BFChXuwZ4wo,yes,does the workers with tattoo tattoos wear glasses,v_BFChXuwZ4wo,v_BFChXuwZ4wo_7,3 7359,v__l251ZuOCYU,no,do they all wear pants on the video midfield,v__l251ZuOCYU,v__l251ZuOCYU_3,3 7360,v__l251ZuOCYU,yes,do they all wear shorts on the video midfield,v__l251ZuOCYU,v__l251ZuOCYU_2,3 7361,v_b6QSzGwI9m4,no,do those wearing sunglasses have ornaments on the wrists during the competition,v_b6QSzGwI9m4,v_b6QSzGwI9m4_10,3 7362,v_uM7QSskmloo,yes,do those who prune the branches wear glasses,v_uM7QSskmloo,v_uM7QSskmloo_2,3 7363,v_qGtUXGG78tM,no,do those who wear dark blue pants use scissors to prune trees,v_qGtUXGG78tM,v_qGtUXGG78tM_3,3 7364,v_8teo_0gxzgk,yes,does two blondes wear sunglasses,v_8teo_0gxzgk,v_8teo_0gxzgk_2,3 7365,v_gsQ-OEvrxjo,indoor,does video playing scenes take place indoors or outdoors,v_gsQ-OEvrxjo,v_gsQ-OEvrxjo_8,6 7366,v_UNXLfqkwKFc,yes,does we use thrust in the process of using vacuum cleaner,v_UNXLfqkwKFc,v_UNXLfqkwKFc_2,3 7367,v_eg2s5lOfKGI,yes,does the woman in blue wear black pants,v_eg2s5lOfKGI,v_eg2s5lOfKGI_2,3 7368,v_CuLC5G7yWxA,yes,does the woman in the video wear earrings,v_CuLC5G7yWxA,v_CuLC5G7yWxA_8,3 7369,v_7LbBmVX33I4,no,do you don't use a computer for make-up,v_7LbBmVX33I4,v_7LbBmVX33I4_3,3 7370,v_p54LLMnyg54,yes,do you have any safety measures at work,v_p54LLMnyg54,v_p54LLMnyg54_10,3 7371,v_-p7aui3nAnc,yes,do you have drums in the performance,v_-p7aui3nAnc,v_-p7aui3nAnc_8,3 7372,v_F7K2oT7ADkk,no,do you have more clothes for the woman,v_F7K2oT7ADkk,v_F7K2oT7ADkk_10,3 7373,v_fEBM3nPMen8,yes,do you have much fish in the water,v_fEBM3nPMen8,v_fEBM3nPMen8_7,3 7374,v_aNsj5OrEGLY,yes,do you have parsley when mixing the cold dishes,v_aNsj5OrEGLY,v_aNsj5OrEGLY_6,3 7375,v_ej_fSoVO0R8,yes,do you need to rotate the chassis in the process of making the cake,v_ej_fSoVO0R8,v_ej_fSoVO0R8_7,3 7376,v_VJh9W3Gcpmo,yes,do you sit in the course of the drums,v_VJh9W3Gcpmo,v_VJh9W3Gcpmo_2,3 7377,v_eMgC7I-GcgA,yes,do you think the surf is happy,v_eMgC7I-GcgA,v_eMgC7I-GcgA_10,3 7378,v_utgRhyBvtRU,no,do you use a basket in the course of playing volleyball,v_utgRhyBvtRU,v_utgRhyBvtRU_3,3 7379,v_ivAvKRQQy1Q,no,do you use a chair in the course of cooking,v_ivAvKRQQy1Q,v_ivAvKRQQy1Q_3,3 7380,v_vnZmsOgWs0o,no,do you use a chair in the course of skiing,v_vnZmsOgWs0o,v_vnZmsOgWs0o_3,3 7381,v_iuXjatyFcwo,no,do you use a chair in the process of lifting weight,v_iuXjatyFcwo,v_iuXjatyFcwo_3,3 7382,v_V6Sy8zpJSuc,yes,do you use a hammer in the process of carpeting,v_V6Sy8zpJSuc,v_V6Sy8zpJSuc_2,3 7383,v_iQnnCZTl_7U,no,do you use a knife in the process of making a cake,v_iQnnCZTl_7U,v_iQnnCZTl_7U_3,3 7384,v_iqyc2JM0uIU,no,do you use a knife in the process of mixing wine,v_iqyc2JM0uIU,v_iqyc2JM0uIU_3,3 7385,v_uWfQcDvel84,no,do you use a knife in the process of weeding,v_uWfQcDvel84,v_uWfQcDvel84_3,3 7386,v_UvOEuhS0V3E,yes,do you use a mirror in the process of lipstick,v_UvOEuhS0V3E,v_UvOEuhS0V3E_2,3 7387,v_vBaiedxy1Uw,no,do you use a pen in the process of guessing the punch,v_vBaiedxy1Uw,v_vBaiedxy1Uw_3,3 7388,v_idkQqlwyff8,no,do you use a pen in the process of knocking,v_idkQqlwyff8,v_idkQqlwyff8_3,3 7389,v_V08Q-DbT0GQ,no,do you use a pen in the process of noodles,v_V08Q-DbT0GQ,v_V08Q-DbT0GQ_3,3 7390,v_VfhDSTKBwgc,no,do you use a pen in the process of origami,v_VfhDSTKBwgc,v_VfhDSTKBwgc_3,3 7391,v_V90CMuokf0c,no,do you use a pen in the process of paddling,v_V90CMuokf0c,v_V90CMuokf0c_3,3 7392,v_iixZLnyLuN8,no,do you use a pen in the process of playing with a toy,v_iixZLnyLuN8,v_iixZLnyLuN8_3,3 7393,v_VjMMwpgOCPo,no,do you use a pen in the process of pulling the uneven bars,v_VjMMwpgOCPo,v_VjMMwpgOCPo_3,3 7394,v_iKclcQEl4zI,no,do you use a pen in the process of somersault,v_iKclcQEl4zI,v_iKclcQEl4zI_3,3 7395,v_vezvHLPR3P0,no,do you use a pen in the process of throwing the hammer,v_vezvHLPR3P0,v_vezvHLPR3P0_3,3 7396,v_UNXLfqkwKFc,no,do you use a pen in the process of using the vacuum cleaner,v_UNXLfqkwKFc,v_UNXLfqkwKFc_3,3 7397,v_v6P6bBPBXYw,no,do you use a pot in the process of playing football,v_v6P6bBPBXYw,v_v6P6bBPBXYw_3,3 7398,v_V2UitlmX7Uo,no,do you use a pot in the process of playing the guitar,v_V2UitlmX7Uo,v_V2UitlmX7Uo_3,3 7399,v_v6DdLg_Xnkg,no,do you use a pot in the process of wearing contact lenses,v_v6DdLg_Xnkg,v_v6DdLg_Xnkg_3,3 7400,v_8kaQq1mR2ys,no,do you use a rope for swimming,v_8kaQq1mR2ys,v_8kaQq1mR2ys_3,3 7401,v_vHnZ3NrZER0,yes,do you use a ruler in measuring the length,v_vHnZ3NrZER0,v_vHnZ3NrZER0_2,3 7402,v_VjMMwpgOCPo,yes,do you use a somersault in the process of pulling the uneven bars,v_VjMMwpgOCPo,v_VjMMwpgOCPo_2,3 7403,v_vBOFzuS-Djo,yes,do you use a swimsuit in the course of diving,v_vBOFzuS-Djo,v_vBOFzuS-Djo_2,3 7404,v_7-UlUnaBjXU,no,do you use a teapot to ride a motorcycle,v_7-UlUnaBjXU,v_7-UlUnaBjXU_3,3 7405,v_7lxP-hWFA24,no,do you use a towel to play the guitar,v_7lxP-hWFA24,v_7lxP-hWFA24_3,3 7406,v_7-UlUnaBjXU,yes,do you use an arm to ride a motorcycle,v_7-UlUnaBjXU,v_7-UlUnaBjXU_2,3 7407,v_idkQqlwyff8,yes,do you use arm strength during knocking,v_idkQqlwyff8,v_idkQqlwyff8_2,3 7408,v_iixZLnyLuN8,yes,do you use arm strength in the process of playing with toys,v_iixZLnyLuN8,v_iixZLnyLuN8_2,3 7409,v_ikUNgSw4Gys,yes,do you use arm strength in the process of tongue nail,v_ikUNgSw4Gys,v_ikUNgSw4Gys_2,3 7410,v_6O4S2CpRB0A,yes,do you use arm strength in the tug of war,v_6O4S2CpRB0A,v_6O4S2CpRB0A_2,3 7411,v_ivAvKRQQy1Q,yes,do you use arms in the course of cooking,v_ivAvKRQQy1Q,v_ivAvKRQQy1Q_2,3 7412,v_iuXjatyFcwo,yes,do you use arms in the process of lifting weights,v_iuXjatyFcwo,v_iuXjatyFcwo_2,3 7413,v_7UwRRkgQSj4,yes,do you use arms to wear shoes,v_7UwRRkgQSj4,v_7UwRRkgQSj4_2,3 7414,v_6O4S2CpRB0A,no,do you use basketball in the tug of war,v_6O4S2CpRB0A,v_6O4S2CpRB0A_3,3 7415,v_UvOEuhS0V3E,no,do you use biscuits in the process of lipstick,v_UvOEuhS0V3E,v_UvOEuhS0V3E_3,3 7416,v_V-46E7jMm-Y,yes,do you use both hands in the course of archery,v_V-46E7jMm-Y,v_V-46E7jMm-Y_2,3 7417,v_VfhDSTKBwgc,yes,do you use both hands in the process of folding paper,v_VfhDSTKBwgc,v_VfhDSTKBwgc_2,3 7418,v_V90CMuokf0c,yes,do you use both hands in the process of paddling,v_V90CMuokf0c,v_V90CMuokf0c_2,3 7419,v_V2UitlmX7Uo,yes,do you use both hands in the process of playing the guitar,v_V2UitlmX7Uo,v_V2UitlmX7Uo_2,3 7420,v_UNKf15ALDh8,yes,do you use gloves in the process of planting trees,v_UNKf15ALDh8,v_UNKf15ALDh8_2,3 7421,v_vezvHLPR3P0,yes,do you use inertia in the process of throwing the hammer,v_vezvHLPR3P0,v_vezvHLPR3P0_2,3 7422,v_uWfQcDvel84,yes,do you use leg strength in the process of weeding,v_uWfQcDvel84,v_uWfQcDvel84_2,3 7423,v_7OcxT66BxX0,yes,do you use the arm strength for the microphone,v_7OcxT66BxX0,v_7OcxT66BxX0_2,3 7424,v_7lxP-hWFA24,yes,do you use the arm strength to play the guitar,v_7lxP-hWFA24,v_7lxP-hWFA24_2,3 7425,v_8lMncYsbrWw,no,do you use the bread for ironing,v_8lMncYsbrWw,v_8lMncYsbrWw_3,3 7426,v_8lMncYsbrWw,yes,do you use the irons for ironing,v_8lMncYsbrWw,v_8lMncYsbrWw_2,3 7427,v_i_LT0ef1n-Y,yes,do you use your hand in the skateboard,v_i_LT0ef1n-Y,v_i_LT0ef1n-Y_2,3 7428,v_iqyc2JM0uIU,yes,do you use your hands in the process of drinking,v_iqyc2JM0uIU,v_iqyc2JM0uIU_2,3 7429,v_iQnnCZTl_7U,yes,do you use your hands in the process of making a cake,v_iQnnCZTl_7U,v_iQnnCZTl_7U_2,3 7430,v_v6P6bBPBXYw,yes,do you use your legs in the course of playing football,v_v6P6bBPBXYw,v_v6P6bBPBXYw_2,3 7431,v_vBaiedxy1Uw,yes,do you use your right hand in the process of guessing the punch,v_vBaiedxy1Uw,v_vBaiedxy1Uw_2,3 7432,v_vFO70WwrQgE,yes,do you want to clap your hands in the process of dancing,v_vFO70WwrQgE,v_vFO70WwrQgE_2,3 7433,v_uty4eGb_vvU,no,do you want to jump in the process of dancing tai chi,v_uty4eGb_vvU,v_uty4eGb_vvU_3,3 7434,v_uty4eGb_vvU,yes,do you want to kick the leg in the process of dancing the tai chi sword,v_uty4eGb_vvU,v_uty4eGb_vvU_2,3 7435,v_ut1AoOzqL4k,no,do you want to sing in the long jump,v_ut1AoOzqL4k,v_ut1AoOzqL4k_3,3 7436,v_vFO70WwrQgE,no,do you want to take a car in the process of dancing,v_vFO70WwrQgE,v_vFO70WwrQgE_3,3 7437,v_7UwRRkgQSj4,no,do you want to use a desk lamp for wearing shoes,v_7UwRRkgQSj4,v_7UwRRkgQSj4_3,3 7438,v_R-hsYQNtnn0,yes,do you wear a watch in the left hand of a blue shirt,v_R-hsYQNtnn0,v_R-hsYQNtnn0_2,3 7439,v_Vhn4SuPhu-0,yes,do you wear earphones in the process of roller skating,v_Vhn4SuPhu-0,v_Vhn4SuPhu-0_2,3 7440,v_Vhn4SuPhu-0,no,do you wear glasses during the roller skating process,v_Vhn4SuPhu-0,v_Vhn4SuPhu-0_3,3 7441,v_gOnp3DZxeKU,yes,do you wear rings in the hands of purple clothes,v_gOnp3DZxeKU,v_gOnp3DZxeKU_7,3 7442,v_p54LLMnyg54,yes,do you wipe the glass outdoors the house,v_p54LLMnyg54,v_p54LLMnyg54_8,3 7443,v_k--dW53UQWs,yes,does a fitness man kneel in one leg,v_k--dW53UQWs,v_k--dW53UQWs_2,3 7444,v_7rwDYzqfGgU,no,does a gymnastic stick use a cup,v_7rwDYzqfGgU,v_7rwDYzqfGgU_3,3 7445,v_7rwDYzqfGgU,yes,does a gymnastic stick use arm strength,v_7rwDYzqfGgU,v_7rwDYzqfGgU_2,3 7446,v_Pv4FwH2TC6Y,yes,does a lady get her hair curly,v_Pv4FwH2TC6Y,v_Pv4FwH2TC6Y_7,3 7447,v_teffBaLEZQg,yes,does a man in a blue hat wear a hand ring in his left hand,v_teffBaLEZQg,v_teffBaLEZQg_2,3 7448,v_teffBaLEZQg,no,does a man in a blue hat wear a hand ring in his right hand,v_teffBaLEZQg,v_teffBaLEZQg_3,3 7449,v_U2eN4DbVLfE,yes,does a man in a gray sweater wear a watch in his left hand,v_U2eN4DbVLfE,v_U2eN4DbVLfE_2,3 7450,v_U2eN4DbVLfE,no,does a man in a gray sweater wear a watch in the right hand,v_U2eN4DbVLfE,v_U2eN4DbVLfE_3,3 7451,v_6Xsfwn5M6qs,yes,does a man in blue pants have a wristband,v_6Xsfwn5M6qs,v_6Xsfwn5M6qs_2,3 7452,v_TGffgRXc1eQ,yes,does a man in blue wear a watch in his left hand,v_TGffgRXc1eQ,v_TGffgRXc1eQ_2,3 7453,v_1xtKGlUp4Vg,yes,does a man in grey wear a ring in his right hand,v_1xtKGlUp4Vg,v_1xtKGlUp4Vg_2,3 7454,v_TtewPltwuXw,yes,does a man in red wear a watch in his left hand,v_TtewPltwuXw,v_TtewPltwuXw_2,3 7455,v_P2xT7dlyX8Y,yes,does a man play a pianist with a beard,v_P2xT7dlyX8Y,v_P2xT7dlyX8Y_10,3 7456,v_hG4VsZQQ2_c,no,does a man split a wood with tattoos on the most shoulder,v_hG4VsZQQ2_c,v_hG4VsZQQ2_c_3,3 7457,v_cCDffwsJvsY,no,does a man with a fire use a match,v_cCDffwsJvsY,v_cCDffwsJvsY_3,3 7458,v_R-hsYQNtnn0,no,does a person in a blue shirt wear a watch in the right hand,v_R-hsYQNtnn0,v_R-hsYQNtnn0_3,3 7459,v_hRsn4nesCQo,no,does a person in a yellow dress wear a ring in the right hand,v_hRsn4nesCQo,v_hRsn4nesCQo_3,3 7460,v_EQWdo0FcKAo,no,does a person in black dress not dance well,v_EQWdo0FcKAo,v_EQWdo0FcKAo_3,3 7461,v_UJGK_TKrl4E,no,does a person in black wear a black helmet hold a sword in his left hand,v_UJGK_TKrl4E,v_UJGK_TKrl4E_3,3 7462,v_UJGK_TKrl4E,yes,does a person in black wear a black helmet hold a sword in the right hand,v_UJGK_TKrl4E,v_UJGK_TKrl4E_2,3 7463,v_2DCHbuwZNSs,no,does a person wear a hat in a submersible suit,v_2DCHbuwZNSs,v_2DCHbuwZNSs_3,3 7464,v_kPn9NzU4W48,no,does a person wear a red and white shoe as an opponent,v_kPn9NzU4W48,v_kPn9NzU4W48_10,3 7465,v_7BFbmEY3BNw,yes,does a red coat have an oar,v_7BFbmEY3BNw,v_7BFbmEY3BNw_2,3 7466,v_7BFbmEY3BNw,no,does a red man have bread,v_7BFbmEY3BNw,v_7BFbmEY3BNw_3,3 7467,v_BWAedc31WdY,no,does a short hair man have a fat figure,v_BWAedc31WdY,v_BWAedc31WdY_3,3 7468,v_e-Xf13exY4E,yes,does a white man wear a vest,v_e-Xf13exY4E,v_e-Xf13exY4E_2,3 7469,v_eLh51DwDp-E,yes,does a the woman in black have long hair,v_eLh51DwDp-E,v_eLh51DwDp-E_6,3 7470,v_hIHeMA1oRrY,no,does a the woman wear a hand chain in the left hand of the video,v_hIHeMA1oRrY,v_hIHeMA1oRrY_3,3 7471,v_FPf7mAgdy0I,hairpin,does a the woman with a yellow hair first take a hairpin or make a hair first,v_FPf7mAgdy0I,v_FPf7mAgdy0I_10,5 7472,v_8AUTKSqcmiM,no,does archery use a computer,v_8AUTKSqcmiM,v_8AUTKSqcmiM_3,3 7473,v_8AUTKSqcmiM,yes,does archery use hand power,v_8AUTKSqcmiM,v_8AUTKSqcmiM_2,3 7474,v_7vcihMnmssI,no,does fishing use a brush,v_7vcihMnmssI,v_7vcihMnmssI_3,3 7475,v_8_fjIZkNHms,no,does fishing use the teacup,v_8_fjIZkNHms,v_8_fjIZkNHms_3,3 7476,v_BmL2XGNrxc4,yes,does it take a lot of strength to split the wood,v_BmL2XGNrxc4,v_BmL2XGNrxc4_10,3 7477,v_8IrulONeC28,yes,does it use the force of the hand,v_8IrulONeC28,v_8IrulONeC28_2,3 7478,v_8A4cZXyDrkU,yes,does it use the hand strength to change the wheel,v_8A4cZXyDrkU,v_8A4cZXyDrkU_2,3 7479,v_9FQ-VLkCZo8,yes,does no. 43 wear a hat in green,v_9FQ-VLkCZo8,v_9FQ-VLkCZo8_2,3 7480,v_8kaQq1mR2ys,yes,does swimming use the strength of the leg,v_8kaQq1mR2ys,v_8kaQq1mR2ys_2,3 7481,v_M2Y2Cw2kwDo,yes,does the athlete dive indoors,v_M2Y2Cw2kwDo,v_M2Y2Cw2kwDo_2,3 7482,v_M2Y2Cw2kwDo,no,does the athlete dive outdoors,v_M2Y2Cw2kwDo,v_M2Y2Cw2kwDo_3,3 7483,v_VFC-V06hVj0,no,does the camel ride in the process of lying down,v_VFC-V06hVj0,v_VFC-V06hVj0_3,3 7484,v_qaml4eEk9hY,indoor,does the cleaning scene in the video take place indoors or outdoors,v_qaml4eEk9hY,v_qaml4eEk9hY_7,6 7485,v_9snScUyE8_4,no,does the girl with yellow hair wear a necklace,v_9snScUyE8_4,v_9snScUyE8_4_3,3 7486,v_b_mWxzi_aps,yes,does the lady wear jewellery in the left hand of the video,v_b_mWxzi_aps,v_b_mWxzi_aps_8,3 7487,v_PdwWFueQErM,no,does the person clean the snow with an electrical tool,v_PdwWFueQErM,v_PdwWFueQErM_9,3 7488,v_otMw5GJWYWs,yes,does the person in black wear a helmet,v_otMw5GJWYWs,v_otMw5GJWYWs_2,3 7489,v__jV5sAOOHLk,yes,does the person in black wear a watch,v__jV5sAOOHLk,v__jV5sAOOHLk_10,3 7490,v_wdvQC41PGPk,yes,does the person in sax wear a black hat,v_wdvQC41PGPk,v_wdvQC41PGPk_2,3 7491,v_wdvQC41PGPk,no,does the person in sax wear a white hat,v_wdvQC41PGPk,v_wdvQC41PGPk_3,3 7492,v_ys4_S3JHQjs,yes,does the person on the ship wear a life jacket,v_ys4_S3JHQjs,v_ys4_S3JHQjs_10,3 7493,v_e0yu4WgiZUM,yes,does the person swim in the butterfly at the end of the video,v_e0yu4WgiZUM,v_e0yu4WgiZUM_2,3 7494,v_jt-Vnap5KP4,no,does the old man in the video wear dark glasses,v_jt-Vnap5KP4,v_jt-Vnap5KP4_3,3 7495,v_jt-Vnap5KP4,yes,does the old man in the video wear sunglasses,v_jt-Vnap5KP4,v_jt-Vnap5KP4_2,3 7496,v_aPI0nPvzJlE,yes,does the person have a wave in the video,v_aPI0nPvzJlE,v_aPI0nPvzJlE_6,3 7497,v_G0VWk5WqDp0,yes,does the person in a blue vest wear shoes,v_G0VWk5WqDp0,v_G0VWk5WqDp0_10,3 7498,v__kmjpSZb3OI,no,does the person in black wear a hat,v__kmjpSZb3OI,v__kmjpSZb3OI_3,3 7499,v_FWZ6wgaJ_L4,no,does the person in blue cut slow,v_FWZ6wgaJ_L4,v_FWZ6wgaJ_L4_3,3 7500,v_GjcRJzPjbRI,yes,does the person in red clothes throw the shot outdoors,v_GjcRJzPjbRI,v_GjcRJzPjbRI_6,3 7501,v_m731tx8N5-Y,yes,does the person in the video hit the drum indoors,v_m731tx8N5-Y,v_m731tx8N5-Y_2,3 7502,v_m731tx8N5-Y,no,does the person in the video hit the drum outdoors,v_m731tx8N5-Y,v_m731tx8N5-Y_3,3 7503,v_n832gDqfWl4,yes,does the person in the video leave a beard,v_n832gDqfWl4,v_n832gDqfWl4_10,3 7504,v_Yg03CCu9GMo,yes,does the person in the video pour the ice after the ice,v_Yg03CCu9GMo,v_Yg03CCu9GMo_6,3 7505,v_chmegNbBTNc,left hand,does the person in the video wipe the table with the left hand or the right hand,v_chmegNbBTNc,v_chmegNbBTNc_10,5 7506,v_GjcRJzPjbRI,yes,does the person wearing a gray vest in the standard pose of throwing shots,v_GjcRJzPjbRI,v_GjcRJzPjbRI_10,3 7507,v_6G8m-vsGTA8,no,does the person with the camera start outdoors,v_6G8m-vsGTA8,v_6G8m-vsGTA8_3,3 7508,v_QdmcjM2fluo,outdoor,does the pruning scene in the video take place indoors or outdoors,v_QdmcjM2fluo,v_QdmcjM2fluo_9,6 7509,v_FnPS6zn5S7M,yes,does the referee wear a tie,v_FnPS6zn5S7M,v_FnPS6zn5S7M_10,3 7510,v_8IrulONeC28,no,does the round block use the bench,v_8IrulONeC28,v_8IrulONeC28_3,3 7511,v_GSrBZXLSwWI,indoor,does the scene of cake making in video happen indoors or outdoors,v_GSrBZXLSwWI,v_GSrBZXLSwWI_7,6 7512,v_rApbE1VkEjE,outdoor,does the snow scene in the video take place indoors or outdoors,v_rApbE1VkEjE,v_rApbE1VkEjE_10,6 7513,v_FPf7mAgdy0I,yes,does the woman have short hair in the video,v_FPf7mAgdy0I,v_FPf7mAgdy0I_9,3 7514,v_EXPYu9bfNcE,no,does the woman in light purple dress cut the white dog,v_EXPYu9bfNcE,v_EXPYu9bfNcE_3,3 7515,v_gOnp3DZxeKU,no,doesn't anyone in a purple coat wear a apron,v_gOnp3DZxeKU,v_gOnp3DZxeKU_3,3 7516,v_qlK-c7hRqcA,no,doesn't everyone wear an eye mask in the video,v_qlK-c7hRqcA,v_qlK-c7hRqcA_3,3 7517,v_4_jDgRsOGvY,no,doesn't the person in black wear a hat,v_4_jDgRsOGvY,v_4_jDgRsOGvY_3,3 7518,v_3PsxzgeMv5w,yes,doesn't the person in black wear a mask,v_3PsxzgeMv5w,v_3PsxzgeMv5w_2,3 7519,v_tgPD2SZo_DY,no,doesn't the person in blue wear a microphone,v_tgPD2SZo_DY,v_tgPD2SZo_DY_3,3 7520,v_uJ4OZfCjViM,yes,doesn't the person in blue wear shoes,v_uJ4OZfCjViM,v_uJ4OZfCjViM_2,3 7521,v_i6wR9_tkg6A,no,doesn't the person in green wear hats,v_i6wR9_tkg6A,v_i6wR9_tkg6A_3,3 7522,v_gZB_XrTnDCI,no,doesn't the person in green wear helmets,v_gZB_XrTnDCI,v_gZB_XrTnDCI_3,3 7523,v_uIHWHnItois,no,doesn't the person in orange wear a hat,v_uIHWHnItois,v_uIHWHnItois_3,3 7524,v_i8hNrK3r_MY,no,doesn't the person in red pants wear a hat,v_i8hNrK3r_MY,v_i8hNrK3r_MY_3,3 7525,v_0q9yZPTBbus,no,doesn't the person in red wear earrings,v_0q9yZPTBbus,v_0q9yZPTBbus_3,3 7526,v_OQEKZXv6jSw,yes,doesn't the person in red wear pants,v_OQEKZXv6jSw,v_OQEKZXv6jSw_2,3 7527,v_gr53ih2aFkE,no,doesn't the person in yellow wear shoes,v_gr53ih2aFkE,v_gr53ih2aFkE_3,3 7528,v_udSHsodv3gY,no,doesn't the person wear glasses in the video,v_udSHsodv3gY,v_udSHsodv3gY_3,3 7529,v_v0azz4XzW_s,no,doesn't the person wear sunglasses in the video,v_v0azz4XzW_s,v_v0azz4XzW_s_3,3 7530,v_u_vLZxgO9Rw,no,doesn't the person with yellow ribbons wear glasses,v_u_vLZxgO9Rw,v_u_vLZxgO9Rw_3,3 7531,v_hvrKRg166eQ,no,don't there be a cup on the table,v_hvrKRg166eQ,v_hvrKRg166eQ_3,3 7532,v_HX6BeHLQh5s,long hair,does the girl in a striped clothes have a long hair or a short hair,v_HX6BeHLQh5s,v_HX6BeHLQh5s_8,8 7533,v_OQEKZXv6jSw,no,do the people in red not wear shoes,v_OQEKZXv6jSw,v_OQEKZXv6jSw_3,3 7534,v_AB480dHyDeM,yes,first wash the shoes and display the shoes in the video,v_AB480dHyDeM,v_AB480dHyDeM_10,3 7535,v_vSv1qMMt4Bk,winter,from the video we can see what the season was then.,v_vSv1qMMt4Bk,v_vSv1qMMt4Bk_9,8 7536,v_IGPZFun1Ok4,harmful,how about gambling,v_IGPZFun1Ok4,v_IGPZFun1Ok4_9,8 7537,v_2ShsRSJ9cqE,higher,how dangerous is welding this,v_2ShsRSJ9cqE,v_2ShsRSJ9cqE_10,8 7538,v_IGT0dIKDGCw,clever,how about the dog,v_IGT0dIKDGCw,v_IGT0dIKDGCw_9,8 7539,v_7rwDYzqfGgU,high,how safe is the gymnastic rod,v_7rwDYzqfGgU,v_7rwDYzqfGgU_10,8 7540,v_WdtytUagoJs,very nice,how can the athlete's performance be reflected from the video,v_WdtytUagoJs,v_WdtytUagoJs_9,8 7541,v_ZBP_mLWROZU,secondary,how complicated is the process of making a white suit,v_ZBP_mLWROZU,v_ZBP_mLWROZU_10,8 7542,v_T62XjoKbN8M,much safer,how dangerous is the sport of pushing the ice pot,v_T62XjoKbN8M,v_T62XjoKbN8M_10,8 7543,v_Mk7Yjq1U8OI,much safer,how dangerous is the sport of volleyball,v_Mk7Yjq1U8OI,v_Mk7Yjq1U8OI_10,8 7544,v_faqijFZWQlo,drive car,how does the person in the gray coat go to the barber shop,v_faqijFZWQlo,v_faqijFZWQlo_9,8 7545,v_meNgZdu8tIk,much simpler,how difficult is it to make sandwiches in video,v_meNgZdu8tIk,v_meNgZdu8tIk_10,8 7546,v_EDDbcCBnTQM,up and down,how do men sprinkled water in the order,v_EDDbcCBnTQM,v_EDDbcCBnTQM_9,8 7547,v_eKdtOKqLMRE,jump down,how do people in the video get off stage after the performance,v_eKdtOKqLMRE,v_eKdtOKqLMRE_10,8 7548,v_7BFbmEY3BNw,narrow,how do you describe the cave,v_7BFbmEY3BNw,v_7BFbmEY3BNw_9,8 7549,v_V9mLJJn8Lvw,beautiful,how do you evaluate the books that are wrapped up,v_V9mLJJn8Lvw,v_V9mLJJn8Lvw_9,8 7550,v_eQwLUJ3P7wI,shadow,how do you speculate on the existence of another person in the video,v_eQwLUJ3P7wI,v_eQwLUJ3P7wI_7,8 7551,v_KMK3_VeODlk,hit each other,how does the game play,v_KMK3_VeODlk,v_KMK3_VeODlk_7,8 7552,v_C27eI-S1Vkw,1,how does the operator use the hairpin to kill,v_C27eI-S1Vkw,v_C27eI-S1Vkw_7,7 7553,v_sH_716hH_rY,more difficult,how difficult is it to bathe a horse,v_sH_716hH_rY,v_sH_716hH_rY_10,8 7554,v_T3A88zsRuVs,much more difficult,how difficult is hockey movement,v_T3A88zsRuVs,v_T3A88zsRuVs_10,8 7555,v_5UZ2ft8Y3sI,secondary,how difficult is making ice curling,v_5UZ2ft8Y3sI,v_5UZ2ft8Y3sI_10,8 7556,v_RtF6TGqwa7Y,secondary,how difficult is weaving sweaters,v_RtF6TGqwa7Y,v_RtF6TGqwa7Y_10,8 7557,v_S7CW-si2JjA,simple,how difficult is the practice in video,v_S7CW-si2JjA,v_S7CW-si2JjA_9,8 7558,v_lU6DMCif3eE,secondary,how difficult is this musical instrument,v_lU6DMCif3eE,v_lU6DMCif3eE_10,8 7559,v_390iVq_urQM,difficulty,how hard is the difficulty of this game,v_390iVq_urQM,v_390iVq_urQM_9,8 7560,v_MQ9Ojge7CyA,ten meters,how high is the diving platform in the video,v_MQ9Ojge7CyA,v_MQ9Ojge7CyA_10,8 7561,v_dN8LBey17O8,6 centimeters,how high is the grass before pruning,v_dN8LBey17O8,v_dN8LBey17O8_10,8 7562,v_EBw5-KVV_PU,higher,how difficult is the ballet dancing for the girls,v_EBw5-KVV_PU,v_EBw5-KVV_PU_8,8 7563,v_3i3SUPsyZtA,low,how difficult ismaking egg rolls,v_3i3SUPsyZtA,v_3i3SUPsyZtA_10,8 7564,v_cnMvMvVBXiI,more difficult,how difficult isrepairing tires,v_cnMvMvVBXiI,v_cnMvMvVBXiI_10,8 7565,v_5mWZY2XkWSQ,happy,how is the girl's mood,v_5mWZY2XkWSQ,v_5mWZY2XkWSQ_9,8 7566,v_mLFjww64sX8,more proficient,how is the hairdresser's proficiency in shaving,v_mLFjww64sX8,v_mLFjww64sX8_10,8 7567,v_MAYrBia9Xnw,happy,how is the little boy's feel before he begins to perform,v_MAYrBia9Xnw,v_MAYrBia9Xnw_6,8 7568,v_-crpjVnFv0U,pretty good,how is the person in the video,v_-crpjVnFv0U,v_-crpjVnFv0U_7,8 7569,v_dZsk5Dp_5FE,low grade,how safe is children chopping wood,v_dZsk5Dp_5FE,v_dZsk5Dp_5FE_6,8 7570,v_6Xsfwn5M6qs,secondary,how safe is gymnastic movement on the parallel bars,v_6Xsfwn5M6qs,v_6Xsfwn5M6qs_8,8 7571,v_8lMncYsbrWw,higher,how safe is ironing clothes,v_8lMncYsbrWw,v_8lMncYsbrWw_9,8 7572,v_iQnnCZTl_7U,high,how safe is making a cake,v_iQnnCZTl_7U,v_iQnnCZTl_7U_9,8 7573,v_v6P6bBPBXYw,high,how safe is playing football,v_v6P6bBPBXYw,v_v6P6bBPBXYw_10,8 7574,v_EETygPQ-j08,secondary,how safe is pulley slippery,v_EETygPQ-j08,v_EETygPQ-j08_10,8 7575,v_-CqVpCRxwTY,danger,how safe is roller skating,v_-CqVpCRxwTY,v_-CqVpCRxwTY_6,8 7576,v_dKJMP8EmZjw,secondary,how safe is sailing,v_dKJMP8EmZjw,v_dKJMP8EmZjw_10,8 7577,v_i_LT0ef1n-Y,secondary,how safe is sliding plate motion,v_i_LT0ef1n-Y,v_i_LT0ef1n-Y_7,8 7578,v_45hcc_VI4t4,security,how safe is stepping on the foot machine,v_45hcc_VI4t4,v_45hcc_VI4t4_7,8 7579,v_8tCRp3NKtkI,high,how safe is the skip game,v_8tCRp3NKtkI,v_8tCRp3NKtkI_10,8 7580,v_eMgC7I-GcgA,unsafe,how is the security of this activity,v_eMgC7I-GcgA,v_eMgC7I-GcgA_6,8 7581,v_li_mry59KCM,adept,how is this man's skill,v_li_mry59KCM,v_li_mry59KCM_9,8 7582,v_tzP0lKSUv_o,1,how many athletes are there in all,v_tzP0lKSUv_o,v_tzP0lKSUv_o_7,7 7583,v_3Nd3Aai1bVA,7,how many athletes are there in the first match,v_3Nd3Aai1bVA,v_3Nd3Aai1bVA_7,7 7584,v_rsU73H6VyG8,1,how many athletes are there in the high jump,v_rsU73H6VyG8,v_rsU73H6VyG8_7,7 7585,v_VZ5R9goklpo,6,how many balls are there on the ground,v_VZ5R9goklpo,v_VZ5R9goklpo_7,7 7586,v_X2toGKgWMpE,3,how many balls did the people in white wear in the video,v_X2toGKgWMpE,v_X2toGKgWMpE_7,7 7587,v_kYkvyRKxwfY,2,how many balls did the people who just wore white clothes lost,v_kYkvyRKxwfY,v_kYkvyRKxwfY_9,7 7588,v_dU7jG8G5li0,3,how many bamboo sticks are there on the small purple cake,v_dU7jG8G5li0,v_dU7jG8G5li0_7,7 7589,v_bYNQ0GrCt64,3,how many barbell pieces at each end of the barbell in the video,v_bYNQ0GrCt64,v_bYNQ0GrCt64_6,7 7590,v_FKtYeu2bJpA,1,how many basketball is there in the video,v_FKtYeu2bJpA,v_FKtYeu2bJpA_10,7 7591,v_i8hNrK3r_MY,1,how many bicycles are being assembled in the video,v_i8hNrK3r_MY,v_i8hNrK3r_MY_9,7 7592,v_3dWw9GLcOeA,1,how many birds are there in the video,v_3dWw9GLcOeA,v_3dWw9GLcOeA_9,7 7593,v_iixZLnyLuN8,1,how many black hair girls are there in the video,v_iixZLnyLuN8,v_iixZLnyLuN8_8,7 7594,v_ut1AoOzqL4k,1,how many black vests are there in the video,v_ut1AoOzqL4k,v_ut1AoOzqL4k_8,7 7595,v_IsV1n_kLpvs,1,how many blonde men are there in the video,v_IsV1n_kLpvs,v_IsV1n_kLpvs_8,7 7596,v_UNXLfqkwKFc,1,how many blue shorts are there in the video,v_UNXLfqkwKFc,v_UNXLfqkwKFc_8,7 7597,v_li_mry59KCM,1,how many boards did this man repair,v_li_mry59KCM,v_li_mry59KCM_6,7 7598,v_7BFbmEY3BNw,1,how many boats are there in the video,v_7BFbmEY3BNw,v_7BFbmEY3BNw_8,7 7599,v_V9mLJJn8Lvw,1,how many books are there in the video,v_V9mLJJn8Lvw,v_V9mLJJn8Lvw_8,7 7600,v_HowkVy5fOyk,1,how many bullfighters are performing in the video,v_HowkVy5fOyk,v_HowkVy5fOyk_8,7 7601,v_K1OsjA-f17E,1,how many cars are there flashing the light,v_K1OsjA-f17E,v_K1OsjA-f17E_7,7 7602,v_-EIsT868Trw,13,how many cars are there under the railway,v_-EIsT868Trw,v_-EIsT868Trw_6,7 7603,v_2_H3lxMWvPo,2,how many cattle are there in a match,v_2_H3lxMWvPo,v_2_H3lxMWvPo_8,7 7604,v_MAGeYoFuCgo,1,how many chieves are there in the video,v_MAGeYoFuCgo,v_MAGeYoFuCgo_7,7 7605,v_E_UkQGk7QAE,3,how many children are there in a light blue dress,v_E_UkQGk7QAE,v_E_UkQGk7QAE_8,7 7606,v_kBTqTp0SKq8,2,how many children are there with a stick,v_kBTqTp0SKq8,v_kBTqTp0SKq8_7,7 7607,v_f2DS_AVorrY,2,how many circles did the athletes turn around in the air,v_f2DS_AVorrY,v_f2DS_AVorrY_8,7 7608,v_OlR9S70AA74,2,how many circles did the people in the white dress rotate,v_OlR9S70AA74,v_OlR9S70AA74_10,7 7609,v_PFeerDZbGn8,2,how many colors are there in a dog,v_PFeerDZbGn8,v_PFeerDZbGn8_8,7 7610,v_3nSOFmmA7FU,4,how many colors are there in the hula hoop,v_3nSOFmmA7FU,v_3nSOFmmA7FU_7,7 7611,v_EQrcCmgraa8,2,how many colors do the barbell of weightlifting men have,v_EQrcCmgraa8,v_EQrcCmgraa8_9,7 7612,v_kkji9hespu0,2,how many cooks did this woman cook in all,v_kkji9hespu0,v_kkji9hespu0_9,7 7613,v_kpOAGEYHts8,4,how many copies did this woman send the cards,v_kpOAGEYHts8,v_kpOAGEYHts8_8,7 7614,v_bBRzBh0gAZQ,9,how many countries are there in the list,v_bBRzBh0gAZQ,v_bBRzBh0gAZQ_10,7 7615,v_H_JLBvfP88U,1,how many cows are there in the video,v_H_JLBvfP88U,v_H_JLBvfP88U_6,7 7616,v_-crpjVnFv0U,5,how many dancers are dancing in the video,v_-crpjVnFv0U,v_-crpjVnFv0U_6,7 7617,v_hyMqGr0mOfA,1,how many dart people are there in the video,v_hyMqGr0mOfA,v_hyMqGr0mOfA_6,7 7618,v_IYLJU87AkOg,3,how many darts are there,v_IYLJU87AkOg,v_IYLJU87AkOg_6,7 7619,v_Jhcis4S2Vsg,8,how many discus are there for each contestant,v_Jhcis4S2Vsg,v_Jhcis4S2Vsg_7,7 7620,v_KXMZHfCwTO0,1,how many dogs are walking on the meadow,v_KXMZHfCwTO0,v_KXMZHfCwTO0_8,7 7621,v_FFMugev85IY,2,how many drums are there in front of a woman,v_FFMugev85IY,v_FFMugev85IY_6,7 7622,v_eKdtOKqLMRE,5,how many drums are there in the drum,v_eKdtOKqLMRE,v_eKdtOKqLMRE_7,7 7623,v_e-Xf13exY4E,2,how many drums did the white men beat,v_e-Xf13exY4E,v_e-Xf13exY4E_9,7 7624,v_fh9d3gpT-8I,2,how many drumsticks were held in the person's hand,v_fh9d3gpT-8I,v_fh9d3gpT-8I_6,7 7625,v_3i3SUPsyZtA,1,how many egg rolls have been made by the chef,v_3i3SUPsyZtA,v_3i3SUPsyZtA_9,7 7626,v_stdtUoog49I,1,how many electric cars are there in the video,v_stdtUoog49I,v_stdtUoog49I_7,7 7627,v_Feq-2NIDl94,5,how many fingers were dyed altogether,v_Feq-2NIDl94,v_Feq-2NIDl94_10,7 7628,v_e0yLhjXQIXI,6,how many flags are there on the wall in the video,v_e0yLhjXQIXI,v_e0yLhjXQIXI_7,7 7629,v_Em4ekFj4XIs,8,how many flying discs are there in the video,v_Em4ekFj4XIs,v_Em4ekFj4XIs_7,7 7630,v_pmmQuksmTvw,2,how many ger countries are there in the top three,v_pmmQuksmTvw,v_pmmQuksmTvw_10,7 7631,v_7IwHwDuQdyU,2,how many girls in blue vest are there in the video,v_7IwHwDuQdyU,v_7IwHwDuQdyU_6,7 7632,v_fQ1OuD7x3to,6,how many glass is the black man wiped,v_fQ1OuD7x3to,v_fQ1OuD7x3to_7,7 7633,v_VfhDSTKBwgc,1,how many grey men are there in the video,v_VfhDSTKBwgc,v_VfhDSTKBwgc_8,7 7634,v_iQnnCZTl_7U,1,how many grey women are there in the video,v_iQnnCZTl_7U,v_iQnnCZTl_7U_8,7 7635,v_BD9CAqD1Yf8,2,how many groups of people who play volleyball in the video are divided into groups,v_BD9CAqD1Yf8,v_BD9CAqD1Yf8_10,7 7636,v_j6BCgvUusWs,3,how many guests are there in front of the first dutch official,v_j6BCgvUusWs,v_j6BCgvUusWs_7,7 7637,v_ds3mAmUPxYA,3,how many guitars are there in all,v_ds3mAmUPxYA,v_ds3mAmUPxYA_6,7 7638,v_u0Dc0ZtudXY,1,how many gymnasts are there in the video,v_u0Dc0ZtudXY,v_u0Dc0ZtudXY_6,7 7639,v_FPf7mAgdy0I,1,how many hair cards do you use for a woman with yellow hair,v_FPf7mAgdy0I,v_FPf7mAgdy0I_7,7 7640,v_amgpZtvd9h0,2,how many hairpins are used,v_amgpZtvd9h0,v_amgpZtvd9h0_6,7 7641,v_fvEaC-fTR4A,8,how many handles are there on a table football in the video,v_fvEaC-fTR4A,v_fvEaC-fTR4A_6,7 7642,v_0xBP-TSsqb0,1,how many hoops do people wear in the video,v_0xBP-TSsqb0,v_0xBP-TSsqb0_9,7 7643,v_4H9MMsj4mcM,2,how many horses are there on the racetrack,v_4H9MMsj4mcM,v_4H9MMsj4mcM_8,7 7644,v_eQ0sW4hJ9zU,two,how many houses are there behind the black people,v_eQ0sW4hJ9zU,v_eQ0sW4hJ9zU_4,1 7645,v_7lxP-hWFA24,1,how many individuals are playing the guitar in the video,v_7lxP-hWFA24,v_7lxP-hWFA24_6,7 7646,v_P8S8PIyPXxY,6,how many kinds of combs are displayed in the video,v_P8S8PIyPXxY,v_P8S8PIyPXxY_7,7 7647,v_v-UmNR5yeDc,3,how many kinds of hand gestures are there,v_v-UmNR5yeDc,v_v-UmNR5yeDc_9,7 7648,v_5UZ2ft8Y3sI,2,how many kinds of ice pot are there in the game,v_5UZ2ft8Y3sI,v_5UZ2ft8Y3sI_7,7 7649,v_FnPS6zn5S7M,2,how many laps does the woman in the gym suit turn forward,v_FnPS6zn5S7M,v_FnPS6zn5S7M_7,7 7650,v_woI_zP55qWo,2,how many lifesaving rings are there,v_woI_zP55qWo,v_woI_zP55qWo_8,7 7651,v_fSBX-gjPblw,3,how many little girls are involved in shooting in the video,v_fSBX-gjPblw,v_fSBX-gjPblw_9,7 7652,v_k-I4zLbgdpM,2,how many little girls are performing,v_k-I4zLbgdpM,v_k-I4zLbgdpM_6,7 7653,v_ngMxE3CnGVg,8,how many lollipops do people do in the video,v_ngMxE3CnGVg,v_ngMxE3CnGVg_10,7 7654,v_vBaiedxy1Uw,1,how many long hair girls are there in the video,v_vBaiedxy1Uw,v_vBaiedxy1Uw_8,7 7655,v_UvOEuhS0V3E,1,how many long hair women are there in the video,v_UvOEuhS0V3E,v_UvOEuhS0V3E_8,7 7656,v_u_vLZxgO9Rw,1,how many men are there in the video for rope skipping,v_u_vLZxgO9Rw,v_u_vLZxgO9Rw_6,7 7657,v_iuXjatyFcwo,1,how many men in blue shorts have appeared in the video,v_iuXjatyFcwo,v_iuXjatyFcwo_8,7 7658,v_IGPZFun1Ok4,1,how many men in red clothes are there in the video,v_IGPZFun1Ok4,v_IGPZFun1Ok4_8,7 7659,v_IToczVhbOc0,1,how many men with glasses are there in the video,v_IToczVhbOc0,v_IToczVhbOc0_8,7 7660,v_7OcxT66BxX0,1,how many microphones are there in black hat men,v_7OcxT66BxX0,v_7OcxT66BxX0_6,7 7661,v_2-AMrzL7V-U,4,how many names does the long jumpers win in the 100 metre race,v_2-AMrzL7V-U,v_2-AMrzL7V-U_10,7 7662,v_R74yolowFPs,4,how many numbers are there in video games,v_R74yolowFPs,v_R74yolowFPs_8,7 7663,v_SYh-j9bK_ls,1,how many of the cheerleaders are there at the beginning of the video,v_SYh-j9bK_ls,v_SYh-j9bK_ls_7,7 7664,v_EQWdo0FcKAo,2,how many old men are there in the video,v_EQWdo0FcKAo,v_EQWdo0FcKAo_6,7 7665,v_V-46E7jMm-Y,1,how many old people are wearing black sweater in the video,v_V-46E7jMm-Y,v_V-46E7jMm-Y_8,7 7666,v_Em4ekFj4XIs,3,how many orange frisbee are there in the video,v_Em4ekFj4XIs,v_Em4ekFj4XIs_6,7 7667,v_5LGh56euaZs,1,how many penguins are there in the video,v_5LGh56euaZs,v_5LGh56euaZs_7,7 7668,v_eQwLUJ3P7wI,2,how many people actually appear in the video,v_eQwLUJ3P7wI,v_eQwLUJ3P7wI_6,7 7669,v_KWpATsiXF_M,3,how many people are around the person riding on the horse,v_KWpATsiXF_M,v_KWpATsiXF_M_6,7 7670,v_6H0D8VaIli0,3,how many people are holding an instrument in the video,v_6H0D8VaIli0,v_6H0D8VaIli0_7,7 7671,v_kyx4MMmBr3A,8,how many people are in a group of games,v_kyx4MMmBr3A,v_kyx4MMmBr3A_6,7 7672,v_CDecXoRSpIc,2,how many people are in red clothes,v_CDecXoRSpIc,v_CDecXoRSpIc_6,7 7673,v_kPn9NzU4W48,2,how many people are in the counter,v_kPn9NzU4W48,v_kPn9NzU4W48_6,7 7674,v_eg2s5lOfKGI,3,how many people are jumping aerobics,v_eg2s5lOfKGI,v_eg2s5lOfKGI_6,7 7675,v_z6l9utYlIrw,8,how many people are kneeling in the video,v_z6l9utYlIrw,v_z6l9utYlIrw_6,7 7676,v_PBYg9ekd86w,2,how many people are not in the pool,v_PBYg9ekd86w,v_PBYg9ekd86w_8,7 7677,v_Z6b4oFjIznU,1,how many people are on the balance wood in the video,v_Z6b4oFjIznU,v_Z6b4oFjIznU_10,7 7678,v_kistIwzeQOU,1,how many people are on the wall cloth,v_kistIwzeQOU,v_kistIwzeQOU_6,7 7679,v_FaP7unySMOs,4,how many people are participating in the competition,v_FaP7unySMOs,v_FaP7unySMOs_8,7 7680,v_kMtjk1KFvXQ,1,how many people are performing the balance wood,v_kMtjk1KFvXQ,v_kMtjk1KFvXQ_9,7 7681,v_kYkvyRKxwfY,2,how many people are playing ping-pong,v_kYkvyRKxwfY,v_kYkvyRKxwfY_7,7 7682,v_bYxVbXzQToI,2,how many people are playing the guitar in the video,v_bYxVbXzQToI,v_bYxVbXzQToI_7,7 7683,v_VjMMwpgOCPo,1,how many people are playing the uneven bars in the video,v_VjMMwpgOCPo,v_VjMMwpgOCPo_8,7 7684,v_Mk7Yjq1U8OI,3,how many people are playing volleyball in the first picture,v_Mk7Yjq1U8OI,v_Mk7Yjq1U8OI_7,7 7685,v_laU1Hvm5Dis,1,how many people are practicing the ball,v_laU1Hvm5Dis,v_laU1Hvm5Dis_8,7 7686,v_KXcVYfMuUGw,3,how many people are sitting in the bench,v_KXcVYfMuUGw,v_KXcVYfMuUGw_10,7 7687,v_lYP05IRcOPE,1,how many people are standing on the edge of the water,v_lYP05IRcOPE,v_lYP05IRcOPE_7,7 7688,v_k--dW53UQWs,1,how many people are the people in the gym,v_k--dW53UQWs,v_k--dW53UQWs_7,7 7689,v_AtbTioB1_Kw,2,how many people are there after the long pole falls to the ground,v_AtbTioB1_Kw,v_AtbTioB1_Kw_6,7 7690,v_eJc8bebOF2A,1,how many people are there behind the referee,v_eJc8bebOF2A,v_eJc8bebOF2A_9,7 7691,v_3oy4P1gyU4k,2,how many people are there in a billiard game,v_3oy4P1gyU4k,v_3oy4P1gyU4k_10,7 7692,v_BdRH3lpopLQ,6,how many people are there in each team in the match field,v_BdRH3lpopLQ,v_BdRH3lpopLQ_9,7 7693,v_1px5LTVIR3A,7,how many people are there in the blue dress,v_1px5LTVIR3A,v_1px5LTVIR3A_7,7 7694,v_I1iUbyjWy7k,1,how many people are there in the blue dress in the video,v_I1iUbyjWy7k,v_I1iUbyjWy7k_7,7 7695,v_rrpEOrMpBuE,1,how many people are there in the camels,v_rrpEOrMpBuE,v_rrpEOrMpBuE_7,7 7696,v_hGPCJb2g1tQ,2,how many people are there in the grey clothes in the video,v_hGPCJb2g1tQ,v_hGPCJb2g1tQ_7,7 7697,v_d09u-0k3LdE,1,how many people are there in the hammer throw,v_d09u-0k3LdE,v_d09u-0k3LdE_6,7 7698,v_d6gGZFQOxOg,1,how many people are there in the hat,v_d6gGZFQOxOg,v_d6gGZFQOxOg_9,7 7699,v_vFO70WwrQgE,1,how many people are there in the red pants in the video,v_vFO70WwrQgE,v_vFO70WwrQgE_8,7 7700,v_W2eumNilwuI,9,how many people are there in the rope skipping,v_W2eumNilwuI,v_W2eumNilwuI_6,7 7701,v_wCexKIuAj3A,5,how many people are there in the studio,v_wCexKIuAj3A,v_wCexKIuAj3A_10,7 7702,v_RXT17X7lRoQ,3,how many people are there in the third pictures,v_RXT17X7lRoQ,v_RXT17X7lRoQ_7,7 7703,v_AwcM25G1h-g,3,how many people are there in the video last studio,v_AwcM25G1h-g,v_AwcM25G1h-g_7,7 7704,v_uIHWHnItois,7,how many people are there in the video playing skateboards,v_uIHWHnItois,v_uIHWHnItois_7,7 7705,v_LL0uQO4q_wY,1,how many people are there in the video that push the curling,v_LL0uQO4q_wY,v_LL0uQO4q_wY_8,7 7706,v_M2Y2Cw2kwDo,1,how many people are there jumping into the water in the video,v_M2Y2Cw2kwDo,v_M2Y2Cw2kwDo_7,7 7707,v_mkGUacg0GRc,2,how many people are there on grey cars,v_mkGUacg0GRc,v_mkGUacg0GRc_7,7 7708,v_nnEPsdA0080,8,how many people are there on the boat in the video,v_nnEPsdA0080,v_nnEPsdA0080_6,7 7709,v_f2DS_AVorrY,2,how many people are there on the platform below the platform,v_f2DS_AVorrY,v_f2DS_AVorrY_9,7 7710,v_rM02KWikOo8,1,how many people are there on the skateboard,v_rM02KWikOo8,v_rM02KWikOo8_7,7 7711,v_9G172wz5Yqo,3,how many people are there on the skiing boat of the little red girl,v_9G172wz5Yqo,v_9G172wz5Yqo_9,7 7712,v_s9PkkDEl6aY,1,how many people are there on the table,v_s9PkkDEl6aY,v_s9PkkDEl6aY_7,7 7713,v_DHjoAOus3xM,3,how many people are there on the two ships,v_DHjoAOus3xM,v_DHjoAOus3xM_6,7 7714,v_JGPhQX97OSE,7,how many people are there playing the drums,v_JGPhQX97OSE,v_JGPhQX97OSE_7,7 7715,v_PSB1nM3QXxg,2,how many people are there to demonstrate,v_PSB1nM3QXxg,v_PSB1nM3QXxg_6,7 7716,v_2DCHbuwZNSs,1,how many people are there to pick up the respirator in video,v_2DCHbuwZNSs,v_2DCHbuwZNSs_9,7 7717,v_I2XqSiNerwg,3,how many people are there with white lights in the video,v_I2XqSiNerwg,v_I2XqSiNerwg_6,7 7718,v_raxeBxPQqlk,1,how many people are throwing darts in the video,v_raxeBxPQqlk,v_raxeBxPQqlk_8,7 7719,v_mixxaL3Bdv8,4,how many people are walking on stilts in the video,v_mixxaL3Bdv8,v_mixxaL3Bdv8_7,7 7720,v_6Xsfwn5M6qs,1,how many people are wearing a blue sling vest,v_6Xsfwn5M6qs,v_6Xsfwn5M6qs_7,7 7721,v_2vrR_5u2buU,1,how many people are wearing a doll dress in the video,v_2vrR_5u2buU,v_2vrR_5u2buU_9,7 7722,v_DHjoAOus3xM,2,how many people are wearing a red coat,v_DHjoAOus3xM,v_DHjoAOus3xM_10,7 7723,v_sNTOUuE7ZfM,1,how many people are wearing a tie in the video,v_sNTOUuE7ZfM,v_sNTOUuE7ZfM_7,7 7724,v_iAes5SVj_Fg,1,how many people are wearing blue and black pants in the video,v_iAes5SVj_Fg,v_iAes5SVj_Fg_8,7 7725,v_T62XjoKbN8M,1,how many people are wearing blue clothes in the video,v_T62XjoKbN8M,v_T62XjoKbN8M_7,7 7726,v_uLsq6gQXQPM,2,how many people are wearing orange in the video,v_uLsq6gQXQPM,v_uLsq6gQXQPM_6,7 7727,v_vnZmsOgWs0o,1,how many people are wearing orange pants in the video,v_vnZmsOgWs0o,v_vnZmsOgWs0o_8,7 7728,v_H33jSILKmfI,2,how many people are wearing suits in the video,v_H33jSILKmfI,v_H33jSILKmfI_6,7 7729,v_Flm_SCK10GQ,2,how many people are wrenching their wrists,v_Flm_SCK10GQ,v_Flm_SCK10GQ_8,7 7730,v_Erje-PwY9hE,1,how many people can each canoe carry,v_Erje-PwY9hE,v_Erje-PwY9hE_9,7 7731,v_k--dW53UQWs,3,how many people does the body fit in,v_k--dW53UQWs,v_k--dW53UQWs_10,7 7732,v_zpaS2iYrJjk,3,how many people does the people in the red coat interviewed,v_zpaS2iYrJjk,v_zpaS2iYrJjk_10,7 7733,v_6O4S2CpRB0A,8,how many people do each team compete in the tug of war competition,v_6O4S2CpRB0A,v_6O4S2CpRB0A_8,7 7734,v_FmfAB-ppHBs,3,how many people do smoke,v_FmfAB-ppHBs,v_FmfAB-ppHBs_7,7 7735,v_BkDbDnvoL28,1,how many people do the split in the video,v_BkDbDnvoL28,v_BkDbDnvoL28_10,7 7736,v_rWfQj0X8WU4,1,how many people do the video finally stand on the ground,v_rWfQj0X8WU4,v_rWfQj0X8WU4_7,7 7737,v_5oyenoaVB-w,1,how many people do they wash their faces in the video,v_5oyenoaVB-w,v_5oyenoaVB-w_7,7 7738,v_3oy4P1gyU4k,2,how many people have been eliminated at the beginning of the video,v_3oy4P1gyU4k,v_3oy4P1gyU4k_8,7 7739,v_hG4VsZQQ2_c,1,how many people have chopped wood in the video,v_hG4VsZQQ2_c,v_hG4VsZQQ2_c_6,7 7740,v_Ko7Nt8UDP4Q,5,how many people have eaten sandwiches,v_Ko7Nt8UDP4Q,v_Ko7Nt8UDP4Q_9,7 7741,v_iZT4XgzUHm4,7,how many people have finished the first game in the video,v_iZT4XgzUHm4,v_iZT4XgzUHm4_8,7 7742,v_kTqt7ry3eVM,3,how many people have jumped the water,v_kTqt7ry3eVM,v_kTqt7ry3eVM_6,7 7743,v_meNgZdu8tIk,1,how many people have sandwiches in the video,v_meNgZdu8tIk,v_meNgZdu8tIk_7,7 7744,v_K7iw2_1BrIk,2,how many people have the boxes in the hands,v_K7iw2_1BrIk,v_K7iw2_1BrIk_7,7 7745,v_tRFK1BMKaRo,1,how many people have weightlifting in the video,v_tRFK1BMKaRo,v_tRFK1BMKaRo_7,7 7746,v_PkRvgIFREJU,2,how many people in black and white stripes are there in the video,v_PkRvgIFREJU,v_PkRvgIFREJU_6,7 7747,v_kyx4MMmBr3A,sixth,how many people in red clothes do they arrive at the final store,v_kyx4MMmBr3A,v_kyx4MMmBr3A_7,8 7748,v_3LwQ2yq85LU,2,how many people in the parachute are there in the video,v_3LwQ2yq85LU,v_3LwQ2yq85LU_9,7 7749,v_1IbkFHNA7fg,2,how many people in the video cut their hair for a man wearing a checked shirt,v_1IbkFHNA7fg,v_1IbkFHNA7fg_7,7 7750,v_YVqRQDkdA8U,4,how many people play bounce shoes in the video,v_YVqRQDkdA8U,v_YVqRQDkdA8U_10,7 7751,v_FtRGOgg0Qh8,1,how many people ride bikes,v_FtRGOgg0Qh8,v_FtRGOgg0Qh8_7,7 7752,v_G25py7yEVyo,4,how many people shake hands with the person in white,v_G25py7yEVyo,v_G25py7yEVyo_10,7 7753,v_KZ1NEffR2Qg,1,how many people take part in the skipping rope,v_KZ1NEffR2Qg,v_KZ1NEffR2Qg_8,7 7754,v_cK0-WcGXacQ,1,how many people throw the discus,v_cK0-WcGXacQ,v_cK0-WcGXacQ_8,7 7755,v_UzmsAb15Bso,2,how many people wear the dress in the video,v_UzmsAb15Bso,v_UzmsAb15Bso_8,7 7756,v_7-UlUnaBjXU,1,how many people wear white helmets in the video,v_7-UlUnaBjXU,v_7-UlUnaBjXU_6,7 7757,v_faqijFZWQlo,3,how many people were there in the grey coat when the man had a haircut,v_faqijFZWQlo,v_faqijFZWQlo_8,7 7758,v_ldAHwbF8uWI,2,how many people's games are the wrenches,v_ldAHwbF8uWI,v_ldAHwbF8uWI_8,7 7759,v_BhgcXqWQhkQ,5,how many performers are there on the stage,v_BhgcXqWQhkQ,v_BhgcXqWQhkQ_6,7 7760,v_5nu47s7JrfY,2,how many pieces of bread are there in the video,v_5nu47s7JrfY,v_5nu47s7JrfY_7,7 7761,v_-Fk62y-1WHo,1,how many pieces of music are there,v_-Fk62y-1WHo,v_-Fk62y-1WHo_10,7 7762,v_BmL2XGNrxc4,3,how many pieces of wood are not chopped at the beginning of the video,v_BmL2XGNrxc4,v_BmL2XGNrxc4_7,7 7763,v_0Um-HgjcnXY,8,how many players are there in a bicycle race,v_0Um-HgjcnXY,v_0Um-HgjcnXY_8,7 7764,v_SjlILJ2st-I,8,how many players are there in a video game,v_SjlILJ2st-I,v_SjlILJ2st-I_7,7 7765,v_2-AMrzL7V-U,8,how many players are there in the 100 meter race,v_2-AMrzL7V-U,v_2-AMrzL7V-U_9,7 7766,v_JH9qiuPCkY4,3,how many players are there on the track,v_JH9qiuPCkY4,v_JH9qiuPCkY4_7,7 7767,v_2uUNiV8xmEo,1,how many players fell down in the video,v_2uUNiV8xmEo,v_2uUNiV8xmEo_9,7 7768,v_kMtjk1KFvXQ,9.75,how many points does the girl get,v_kMtjk1KFvXQ,v_kMtjk1KFvXQ_6,8 7769,v_ivAvKRQQy1Q,1,how many pots are there in the video,v_ivAvKRQQy1Q,v_ivAvKRQQy1Q_8,7 7770,v_5k2Ot6-wOgc,2,how many red english words are there in the beginning,v_5k2Ot6-wOgc,v_5k2Ot6-wOgc_7,7 7771,v_FxpP7lqvm30,2,how many referees are there in the match,v_FxpP7lqvm30,v_FxpP7lqvm30_7,7 7772,v_DUi-hLMpQQo,3,how many riders are there in the video,v_DUi-hLMpQQo,v_DUi-hLMpQQo_7,7 7773,v_W97fdJ2Rn9g,4,how many rings are there on the right hand of the make-up,v_W97fdJ2Rn9g,v_W97fdJ2Rn9g_6,7 7774,v_iuc48VIWLJY,6,how many runways are there in the video,v_iuc48VIWLJY,v_iuc48VIWLJY_8,7 7775,v_03c6QhTMDSs,5,how many seconds does the club sign appear at the beginning of the video,v_03c6QhTMDSs,v_03c6QhTMDSs_9,7 7776,v_lOZ9bfzq89o,3,how many seconds does the subtitle appear at the beginning of the video,v_lOZ9bfzq89o,v_lOZ9bfzq89o_8,7 7777,v_NjXCZYO3zwU,11,how many seconds do the people use to turn the magic cube in the video,v_NjXCZYO3zwU,v_NjXCZYO3zwU_7,7 7778,v_2nDJpvD-eZU,6,how many shaving potatoes do people put in the water tank in the video,v_2nDJpvD-eZU,v_2nDJpvD-eZU_8,7 7779,v_LWt2FuU0uC4,8,how many shot putter are there in the video,v_LWt2FuU0uC4,v_LWt2FuU0uC4_7,7 7780,v_EPsSfOEd3BU,1,how many shots had the female sportsmen pushed,v_EPsSfOEd3BU,v_EPsSfOEd3BU_9,7 7781,v_1YU4MSK80cQ,2,how many single bars are there in the video,v_1YU4MSK80cQ,v_1YU4MSK80cQ_7,7 7782,v_fSBX-gjPblw,4,how many sites are converted in the video,v_fSBX-gjPblw,v_fSBX-gjPblw_7,7 7783,v_4YF9R3Sz2bA,7,how many skiing tracks are there in the video,v_4YF9R3Sz2bA,v_4YF9R3Sz2bA_7,7 7784,v_Jdu5AqaWfz8,2,how many staffs are there on the ground,v_Jdu5AqaWfz8,v_Jdu5AqaWfz8_7,7 7785,v_BWAedc31WdY,6,how many steps are there in the video to introduce the steps of shaving,v_BWAedc31WdY,v_BWAedc31WdY_9,7 7786,v_AQ3eFWxZ67U,2,how many sunshade umbrellas on the edge of the swimming pool in the video,v_AQ3eFWxZ67U,v_AQ3eFWxZ67U_6,7 7787,v_e0yu4WgiZUM,3,how many swimmers does the men swim,v_e0yu4WgiZUM,v_e0yu4WgiZUM_9,7 7788,v_lUil9HfTzJ0,1,how many swimsuits are there in the video,v_lUil9HfTzJ0,v_lUil9HfTzJ0_7,7 7789,v_iKclcQEl4zI,1,how many tangerine girls are there in the video,v_iKclcQEl4zI,v_iKclcQEl4zI_8,7 7790,v_Es3PxD9oi4I,2,how many teams are there in the swimming pool,v_Es3PxD9oi4I,v_Es3PxD9oi4I_8,7 7791,v_P5D9S9NzQ28,3,how many tennis does the lady make in the video,v_P5D9S9NzQ28,v_P5D9S9NzQ28_9,7 7792,v_vezvHLPR3P0,1,how many throws are there in the video,v_vezvHLPR3P0,v_vezvHLPR3P0_8,7 7793,v_1QIUV7WYKXg,1,how many times are the javelin throwers in the video,v_1QIUV7WYKXg,v_1QIUV7WYKXg_9,7 7794,v_IYLJU87AkOg,4,how many times does the man with a hat throw,v_IYLJU87AkOg,v_IYLJU87AkOg_8,7 7795,v_Nc9yr4urskA,2,how many times does the the person in the yellow clothes fight,v_Nc9yr4urskA,v_Nc9yr4urskA_6,7 7796,v_S7CW-si2JjA,2,how many times have the cake been cut,v_S7CW-si2JjA,v_S7CW-si2JjA_7,7 7797,v__jIXs7AFTxw,2,how many times has the person of the white clothes rubbed their feet,v__jIXs7AFTxw,v__jIXs7AFTxw_7,7 7798,v_AsdsR27UnJ0,2,how many times have there been footage controlled by foot,v_AsdsR27UnJ0,v_AsdsR27UnJ0_8,7 7799,v_B4Zp5XN97Gc,3,how many tools are displayed when the tool is displayed,v_B4Zp5XN97Gc,v_B4Zp5XN97Gc_6,7 7800,v_wnNiWoJxfSQ,3,how many top are the red and white umbrellas,v_wnNiWoJxfSQ,v_wnNiWoJxfSQ_9,7 7801,v_cCimLg-8Dy4,1,how many toys are there on the tree,v_cCimLg-8Dy4,v_cCimLg-8Dy4_10,7 7802,v_EQrcCmgraa8,5,how many trademarks are there on the back of the video,v_EQrcCmgraa8,v_EQrcCmgraa8_8,7 7803,v_cAiig_569fI,3,how many volleyball nets are there in the video,v_cAiig_569fI,v_cAiig_569fI_10,7 7804,v_kistIwzeQOU,1,how many walls are the men in white,v_kistIwzeQOU,v_kistIwzeQOU_10,7 7805,v_EETygPQ-j08,4,how many wheels are there in a single skate,v_EETygPQ-j08,v_EETygPQ-j08_7,7 7806,v_idkQqlwyff8,2,how many white haired seniors are there in the video,v_idkQqlwyff8,v_idkQqlwyff8_8,7 7807,v_7F-mVWMP2vM,1,how many white lines are there in the video,v_7F-mVWMP2vM,v_7F-mVWMP2vM_7,7 7808,v_wLXty2wzuJg,2,how many white short sleeves are there,v_wLXty2wzuJg,v_wLXty2wzuJg_6,7 7809,v_7rwDYzqfGgU,1,how many women are there in the center of the court,v_7rwDYzqfGgU,v_7rwDYzqfGgU_6,7 7810,v_ILmZg0vz0Hg,1,how many women are there in the video with glasses,v_ILmZg0vz0Hg,v_ILmZg0vz0Hg_8,7 7811,v_8AUTKSqcmiM,1,how many women are there in white hats,v_8AUTKSqcmiM,v_8AUTKSqcmiM_6,7 7812,v_L5IbDi09Yb4,3,how much are there on the ship,v_L5IbDi09Yb4,v_L5IbDi09Yb4_7,7 7813,v_lfbspF18Wrw,350,how much does this man turn the oven to,v_lfbspF18Wrw,v_lfbspF18Wrw_7,8 7814,v_1dDAcUliXrQ,low,how dangerous of badminton,v_1dDAcUliXrQ,v_1dDAcUliXrQ_10,8 7815,v_4YF9R3Sz2bA,security,how safe is the activity in the video,v_4YF9R3Sz2bA,v_4YF9R3Sz2bA_10,8 7816,v_KZ1NEffR2Qg,walking,how does the person in red pants get to the park,v_KZ1NEffR2Qg,v_KZ1NEffR2Qg_10,8 7817,v_7IwHwDuQdyU,standard,how to evaluate the action of a girl wearing a blue vest,v_7IwHwDuQdyU,v_7IwHwDuQdyU_9,8 7818,v_ivAvKRQQy1Q,superb,how to evaluate the culinary art of the white man in the video,v_ivAvKRQQy1Q,v_ivAvKRQQy1Q_9,8 7819,v_V90CMuokf0c,torrential,how to evaluate the flow of water in video,v_V90CMuokf0c,v_V90CMuokf0c_9,8 7820,v_8lMncYsbrWw,skilled,how to evaluate the ironing technology of the person wearing white clothes,v_8lMncYsbrWw,v_8lMncYsbrWw_10,8 7821,v_7dXqXFoju2M,wear exposure,how to evaluate the long hair woman,v_7dXqXFoju2M,v_7dXqXFoju2M_9,8 7822,v_7OcxT66BxX0,sing in earnest,how to evaluate the man with a black hat,v_7OcxT66BxX0,v_7OcxT66BxX0_9,8 7823,v_iqyc2JM0uIU,skilled,how to evaluate the man's way of dressing the wine in red clothes,v_iqyc2JM0uIU,v_iqyc2JM0uIU_9,8 7824,v_iuXjatyFcwo,strong,how to evaluate the men in the blue shorts in the video,v_iuXjatyFcwo,v_iuXjatyFcwo_9,8 7825,v_7lxP-hWFA24,cool,how to evaluate the roller skating movement,v_7lxP-hWFA24,v_7lxP-hWFA24_10,8 7826,v_7IwHwDuQdyU,secondary,how to evaluate the safety factor of gymnastics,v_7IwHwDuQdyU,v_7IwHwDuQdyU_10,8 7827,v_7lxP-hWFA24,skilled,how to evaluate the skating skills of the men in blue clothes,v_7lxP-hWFA24,v_7lxP-hWFA24_9,8 7828,v_7F-mVWMP2vM,skilled,how to evaluate the skill of the old man in a blue sweater,v_7F-mVWMP2vM,v_7F-mVWMP2vM_8,8 7829,v_iZT4XgzUHm4,high and low,how to evaluate the terrain of the track,v_iZT4XgzUHm4,v_iZT4XgzUHm4_9,8 7830,v_8teo_0gxzgk,wear exposure,how to evaluate the two blondes,v_8teo_0gxzgk,v_8teo_0gxzgk_10,8 7831,v_iixZLnyLuN8,lovely,how to evaluate this girl with black hair,v_iixZLnyLuN8,v_iixZLnyLuN8_10,8 7832,v_7LbBmVX33I4,concise and clear,how to evaluate this course,v_7LbBmVX33I4,v_7LbBmVX33I4_9,8 7833,v_ikUNgSw4Gys,they hurt,how to look at the tongue nail,v_ikUNgSw4Gys,v_ikUNgSw4Gys_10,8 7834,v_EETygPQ-j08,skating rink,where is the blue dress girl skating,v_EETygPQ-j08,v_EETygPQ-j08_9,6 7835,v_dU7jG8G5li0,2011,what year could the cake be made,v_dU7jG8G5li0,v_dU7jG8G5li0_8,8 7836,v_LjPKKqe-VO0,usa,in which country does the video capture,v_LjPKKqe-VO0,v_LjPKKqe-VO0_6,8 7837,v_9TjPn_ejmFU,no,is a child wearing blue and white stripes wearing black hair,v_9TjPn_ejmFU,v_9TjPn_ejmFU_3,3 7838,v_9TjPn_ejmFU,yes,is a child wearing blue and white stripes wearing short hair,v_9TjPn_ejmFU,v_9TjPn_ejmFU_2,3 7839,v_vSv1qMMt4Bk,yes,is a female presiding wearing short hair,v_vSv1qMMt4Bk,v_vSv1qMMt4Bk_2,3 7840,v_WNgI2qBvPrY,no,is a girl in purple clothes wearing short hair,v_WNgI2qBvPrY,v_WNgI2qBvPrY_3,3 7841,v_IIPKxzPjrWg,yes,is a goggle used during diving,v_IIPKxzPjrWg,v_IIPKxzPjrWg_2,3 7842,v_Flm_SCK10GQ,yes,is a group of boys spanning the wrist,v_Flm_SCK10GQ,v_Flm_SCK10GQ_2,3 7843,v_Flm_SCK10GQ,no,is a group of girls spanning the wrist,v_Flm_SCK10GQ,v_Flm_SCK10GQ_3,3 7844,v_IsV1n_kLpvs,no,is a hammer used during cutting the roof's tin,v_IsV1n_kLpvs,v_IsV1n_kLpvs_3,3 7845,v_IxaBEVd2PZM,no,is a knife used during ballet dancing,v_IxaBEVd2PZM,v_IxaBEVd2PZM_3,3 7846,v_wCexKIuAj3A,yes,is a lady in a dark purple skirt long hair,v_wCexKIuAj3A,v_wCexKIuAj3A_2,3 7847,v_wCexKIuAj3A,no,is a lady in a dark purple skirt wearing short hair,v_wCexKIuAj3A,v_wCexKIuAj3A_3,3 7848,v_wcxEkMoOmBk,yes,is a lady in a red dress long hair,v_wcxEkMoOmBk,v_wcxEkMoOmBk_2,3 7849,v_wcxEkMoOmBk,no,is a lady in a red dress wearing short hair,v_wcxEkMoOmBk,v_wcxEkMoOmBk_3,3 7850,v_BMy7CBVxH5M,no,is a man hair long,v_BMy7CBVxH5M,v_BMy7CBVxH5M_8,3 7851,v_woI_zP55qWo,yes,is a man in a high station wearing short hair,v_woI_zP55qWo,v_woI_zP55qWo_2,3 7852,v_dHKeNK1uWUg,no,is a man in a red coat wearing a white hat,v_dHKeNK1uWUg,v_dHKeNK1uWUg_3,3 7853,v_bYxVbXzQToI,tie,is a man in a white jacket tied on a tie or a bow,v_bYxVbXzQToI,v_bYxVbXzQToI_10,5 7854,v_EQrcCmgraa8,no,is a man in white shoes a fat man,v_EQrcCmgraa8,v_EQrcCmgraa8_3,3 7855,v_A_Sr0mCX2rI,yes,is a man wearing a camouflage,v_A_Sr0mCX2rI,v_A_Sr0mCX2rI_2,3 7856,v_faqijFZWQlo,yes,is a man wearing a gray coat wearing short hair,v_faqijFZWQlo,v_faqijFZWQlo_2,3 7857,v_fh21bbDSVmA,no,does a man wearing a white coat have long hair,v_fh21bbDSVmA,v_fh21bbDSVmA_3,3 7858,v_fh21bbDSVmA,yes,does a man wearing a white coat have wearing short hair,v_fh21bbDSVmA,v_fh21bbDSVmA_2,3 7859,v_wE9sQbGdeAk,no,is a man with a beard long hair,v_wE9sQbGdeAk,v_wE9sQbGdeAk_3,3 7860,v_wE9sQbGdeAk,yes,is a man with a beard wearing short hair,v_wE9sQbGdeAk,v_wE9sQbGdeAk_2,3 7861,v_woI_zP55qWo,no,is a man with long hair on a high platform,v_woI_zP55qWo,v_woI_zP55qWo_3,3 7862,v_IIPKxzPjrWg,no,is a pen used during diving,v_IIPKxzPjrWg,v_IIPKxzPjrWg_3,3 7863,v_IGPZFun1Ok4,no,is a pen used in the gambling,v_IGPZFun1Ok4,v_IGPZFun1Ok4_3,3 7864,v_UNKf15ALDh8,no,is a pen used in the process of planting trees,v_UNKf15ALDh8,v_UNKf15ALDh8_3,3 7865,v_kPn9NzU4W48,no,is a person wearing a red and white shoe in the hands of boxing,v_kPn9NzU4W48,v_kPn9NzU4W48_9,3 7866,v_gkwLhml3mnA,yes,is a person wearing a white shirt wearing something on his left wrist,v_gkwLhml3mnA,v_gkwLhml3mnA_9,3 7867,v_dHKeNK1uWUg,yes,is a red hat wearing a red hat for a man in red,v_dHKeNK1uWUg,v_dHKeNK1uWUg_2,3 7868,v_cAiig_569fI,no,is a woman in a blue vest long hair,v_cAiig_569fI,v_cAiig_569fI_3,3 7869,v_E_UkQGk7QAE,yes,is a woman in a light blue dress wearing a blue hat,v_E_UkQGk7QAE,v_E_UkQGk7QAE_2,3 7870,v_E_UkQGk7QAE,no,is a woman in a light blue dress wearing white pants,v_E_UkQGk7QAE,v_E_UkQGk7QAE_3,3 7871,v_EXPYu9bfNcE,yes,is a woman in a light purple dress working,v_EXPYu9bfNcE,v_EXPYu9bfNcE_2,3 7872,v_CvbL36Y8hN0,yes,is a woman in a video bungee wearing long hair,v_CvbL36Y8hN0,v_CvbL36Y8hN0_2,3 7873,v_CvbL36Y8hN0,no,is a woman in a video bungee wearing wearing short hair,v_CvbL36Y8hN0,v_CvbL36Y8hN0_3,3 7874,v_dGT_KGb0gyw,yes,is a woman in a yellow coat wearing long hair,v_dGT_KGb0gyw,v_dGT_KGb0gyw_2,3 7875,v_F9FPK6mfh88,no,is a woman in jeans wearing wearing short hair,v_F9FPK6mfh88,v_F9FPK6mfh88_3,3 7876,v_DTI__3fkSzM,no,is a woman wearing short hair,v_DTI__3fkSzM,v_DTI__3fkSzM_9,3 7877,v_cAiig_569fI,yes,is a woman wearing a blue vest wearing short hair,v_cAiig_569fI,v_cAiig_569fI_2,3 7878,v__SJOVswvGRc,yes,is a woman wearing a red coat long hair,v__SJOVswvGRc,v__SJOVswvGRc_2,3 7879,v__SJOVswvGRc,no,is a woman wearing a red coat wearing short hair,v__SJOVswvGRc,v__SJOVswvGRc_3,3 7880,v_xuvp0jKMqRU,no,is a woman wearing a red dress wearing short hair,v_xuvp0jKMqRU,v_xuvp0jKMqRU_3,3 7881,v_dGT_KGb0gyw,no,is a woman wearing a yellow coat wearing short hair,v_dGT_KGb0gyw,v_dGT_KGb0gyw_3,3 7882,v_GcjzvBatqb4,male,is an orange man or a woman,v_GcjzvBatqb4,v_GcjzvBatqb4_6,8 7883,v_ILmZg0vz0Hg,no,is any brush used during decorating,v_ILmZg0vz0Hg,v_ILmZg0vz0Hg_3,3 7884,v_ILmZg0vz0Hg,yes,is any sellotape used during decorating,v_ILmZg0vz0Hg,v_ILmZg0vz0Hg_2,3 7885,v_PD-FXR7O9J0,no,is anyone's body entirely included in the camera,v_PD-FXR7O9J0,v_PD-FXR7O9J0_6,3 7886,v_hvrKRg166eQ,yes,is cheerleading this sport dangerous,v_hvrKRg166eQ,v_hvrKRg166eQ_10,3 7887,v_HJWwqjLf1I4,yes,is diving dangerous,v_HJWwqjLf1I4,v_HJWwqjLf1I4_10,3 7888,v_ECZb_tQZ4Pg,no,is gambling a healthy act,v_ECZb_tQZ4Pg,v_ECZb_tQZ4Pg_6,3 7889,v__CIoHeD7KQc,no,is he black hair in the video,v__CIoHeD7KQc,v__CIoHeD7KQc_3,3 7890,v__a527xEzhkw,yes,is her dress gray in the video,v__a527xEzhkw,v__a527xEzhkw_2,3 7891,v__a527xEzhkw,no,is her dress white in the video,v__a527xEzhkw,v__a527xEzhkw_3,3 7892,v__a527xEzhkw,no,is her hair curly hair in the video,v__a527xEzhkw,v__a527xEzhkw_9,3 7893,v_Oyycph_Ukfg,no,is his body entirely included in the camera,v_Oyycph_Ukfg,v_Oyycph_Ukfg_6,3 7894,v_MQ9Ojge7CyA,yes,is his hair black in the video,v_MQ9Ojge7CyA,v_MQ9Ojge7CyA_2,3 7895,v_cCDffwsJvsY,yes,is ignition successful,v_cCDffwsJvsY,v_cCDffwsJvsY_9,3 7896,v_0Um-HgjcnXY,no,is it a champion wearing a black dress,v_0Um-HgjcnXY,v_0Um-HgjcnXY_3,3 7897,v_FxpP7lqvm30,yes,is it a contest between children and adults in tug of war,v_FxpP7lqvm30,v_FxpP7lqvm30_2,3 7898,v_FxpP7lqvm30,no,is it a contest between children and children in tug of war,v_FxpP7lqvm30,v_FxpP7lqvm30_3,3 7899,v_Ki13JIVwMdk,yes,is it a dog,v_Ki13JIVwMdk,v_Ki13JIVwMdk_2,3 7900,v_FKtYeu2bJpA,no,is it a group of the person practicing basketball,v_FKtYeu2bJpA,v_FKtYeu2bJpA_3,3 7901,v_QPEAp7nf2Tk,yes,is it a kid on the slide on the video,v_QPEAp7nf2Tk,v_QPEAp7nf2Tk_2,3 7902,v_FmfAB-ppHBs,yes,is it a lighter which they used to fire cigarette,v_FmfAB-ppHBs,v_FmfAB-ppHBs_2,3 7903,v_FKtYeu2bJpA,yes,is it a man to practice basketball,v_FKtYeu2bJpA,v_FKtYeu2bJpA_2,3 7904,v_C7yd6yEkxXE,yes,is it a man wearing white short sleeves,v_C7yd6yEkxXE,v_C7yd6yEkxXE_2,3 7905,v_fhOmyyI0eQE,no,is it a rainy day at this time,v_fhOmyyI0eQE,v_fhOmyyI0eQE_3,3 7906,v_DIVaPURJHPo,yes,is it a rope jumping indoors,v_DIVaPURJHPo,v_DIVaPURJHPo_8,3 7907,v_fLR-b-FDjlM,yes,is it a time game,v_fLR-b-FDjlM,v_fLR-b-FDjlM_9,3 7908,v_C7yd6yEkxXE,no,is it a woman wearing white short sleeves,v_C7yd6yEkxXE,v_C7yd6yEkxXE_3,3 7909,v_Ki13JIVwMdk,no,is it a zang wolf,v_Ki13JIVwMdk,v_Ki13JIVwMdk_3,3 7910,v_-Fk62y-1WHo,no,is it an adult playing a musical instrument,v_-Fk62y-1WHo,v_-Fk62y-1WHo_3,3 7911,v_fMVuGUBs2cs,no,is it at the party,v_fMVuGUBs2cs,v_fMVuGUBs2cs_3,3 7912,v_er5jUsRr4y0,yes,is it bad for a man with blonde hair to use a mouthwash,v_er5jUsRr4y0,v_er5jUsRr4y0_2,3 7913,v_P6Oq6C9X0fw,yes,is it cold,v_P6Oq6C9X0fw,v_P6Oq6C9X0fw_9,3 7914,v_390iVq_urQM,yes,is it cold for the person in black clothes,v_390iVq_urQM,v_390iVq_urQM_7,3 7915,v_GSrBZXLSwWI,no,is it complex to making a cake in the video,v_GSrBZXLSwWI,v_GSrBZXLSwWI_8,3 7916,v_H_JLBvfP88U,yes,is it dangerous for bullfighting,v_H_JLBvfP88U,v_H_JLBvfP88U_10,3 7917,v_MDsJa6Yitwc,no,is it dangerous to brush the wall,v_MDsJa6Yitwc,v_MDsJa6Yitwc_10,3 7918,v_KsFid_YVsn0,no,is it dangerous to dance tango,v_KsFid_YVsn0,v_KsFid_YVsn0_10,3 7919,v_uLphvdhunTY,no,is it dangerous to exercise,v_uLphvdhunTY,v_uLphvdhunTY_10,3 7920,v_0e7d39SwHCA,yes,is it dangerous to skate on the panshan road,v_0e7d39SwHCA,v_0e7d39SwHCA_10,3 7921,v_QIUxLD27NuI,no,is it dangerous to spell the magic square,v_QIUxLD27NuI,v_QIUxLD27NuI_10,3 7922,v_raxeBxPQqlk,yes,is it dangerous to throw darts,v_raxeBxPQqlk,v_raxeBxPQqlk_10,3 7923,v_6xBh3vzhgo4,day,is it day or night when the woman surf,v_6xBh3vzhgo4,v_6xBh3vzhgo4_10,8 7924,v_Vxw3yFCV2iA,yes,is it daytime to practice the movement of water sled,v_Vxw3yFCV2iA,v_Vxw3yFCV2iA_2,3 7925,v_ut1AoOzqL4k,yes,is it going to be a run-up in the long jump,v_ut1AoOzqL4k,v_ut1AoOzqL4k_2,3 7926,v_hRsn4nesCQo,no,is it good to draw,v_hRsn4nesCQo,v_hRsn4nesCQo_10,3 7927,v_cVFVREeD6hM,yes,is it hard for the person in the video,v_cVFVREeD6hM,v_cVFVREeD6hM_8,3 7928,v_Gfu8e6R6jUU,no,is it hard for them to dance,v_Gfu8e6R6jUU,v_Gfu8e6R6jUU_8,3 7929,v_BWAedc31WdY,yes,is it hot water to wash the towel in the video,v_BWAedc31WdY,v_BWAedc31WdY_7,3 7930,v_fbr7v8RMkf8,no,is it in the summer in the video,v_fbr7v8RMkf8,v_fbr7v8RMkf8_3,3 7931,v_a_EqAwUOxpM,yes,is it in the video,v_a_EqAwUOxpM,v_a_EqAwUOxpM_2,3 7932,v_fbr7v8RMkf8,yes,is it in winter in the video,v_fbr7v8RMkf8,v_fbr7v8RMkf8_2,3 7933,v_iuc48VIWLJY,yes,is it lying in the skiing circle,v_iuc48VIWLJY,v_iuc48VIWLJY_2,3 7934,v_utgRhyBvtRU,yes,is it necessary to use block in the course of playing volleyball,v_utgRhyBvtRU,v_utgRhyBvtRU_2,3 7935,v_IMMoglaJ3RY,no,is it needed to use a brush during weeding,v_IMMoglaJ3RY,v_IMMoglaJ3RY_3,3 7936,v_IGT0dIKDGCw,no,is it needed to use a pen during flying discses,v_IGT0dIKDGCw,v_IGT0dIKDGCw_3,3 7937,v_IDuoF51IMJ8,no,is it needed to use a pen to throw a ball,v_IDuoF51IMJ8,v_IDuoF51IMJ8_3,3 7938,v_J1QB1y3vXLY,no,is it needed to use a phone during tattooing,v_J1QB1y3vXLY,v_J1QB1y3vXLY_3,3 7939,v_IGT0dIKDGCw,yes,is it needed to use the arm strength to fly discses,v_IGT0dIKDGCw,v_IGT0dIKDGCw_2,3 7940,v_IDuoF51IMJ8,yes,is it needed to use the arm strength to throw a ball,v_IDuoF51IMJ8,v_IDuoF51IMJ8_2,3 7941,v_IToczVhbOc0,no,is it needed to use the mouth during tattooing,v_IToczVhbOc0,v_IToczVhbOc0_3,3 7942,v_IMMoglaJ3RY,yes,is it needed to use the thrust during weeding,v_IMMoglaJ3RY,v_IMMoglaJ3RY_2,3 7943,v_IclzwpxVvIk,no,is it needed yto use a computer during the make-up process,v_IclzwpxVvIk,v_IclzwpxVvIk_3,3 7944,v_IclzwpxVvIk,yes,is it needed yto use the arm power during the make-up process,v_IclzwpxVvIk,v_IclzwpxVvIk_2,3 7945,v_Vxw3yFCV2iA,no,is it night when you practise the movement of water sled,v_Vxw3yFCV2iA,v_Vxw3yFCV2iA_3,3 7946,v_BmL2XGNrxc4,yes,is it possible to buckle wood with a useful rope before splitting the wood,v_BmL2XGNrxc4,v_BmL2XGNrxc4_9,3 7947,v_8A4cZXyDrkU,no,is it possible to change the wheel to the computer,v_8A4cZXyDrkU,v_8A4cZXyDrkU_3,3 7948,v_V08Q-DbT0GQ,yes,is it possible to use a container during the process of cooking,v_V08Q-DbT0GQ,v_V08Q-DbT0GQ_2,3 7949,v_V-46E7jMm-Y,no,is it possible to use a pen in the course of archery,v_V-46E7jMm-Y,v_V-46E7jMm-Y_3,3 7950,v_V6Sy8zpJSuc,no,is it possible to use a pot in the process of carpeting,v_V6Sy8zpJSuc,v_V6Sy8zpJSuc_3,3 7951,v_WXH-Tj0-g4w,no,is it wearing short hair in an orange red dress in the video,v_WXH-Tj0-g4w,v_WXH-Tj0-g4w_3,3 7952,v_j6BCgvUusWs,yes,is it standing at the side of the table inside,v_j6BCgvUusWs,v_j6BCgvUusWs_2,3 7953,v_VJh9W3Gcpmo,no,is it standing in the course of the drums,v_VJh9W3Gcpmo,v_VJh9W3Gcpmo_3,3 7954,v_iuc48VIWLJY,no,is it standing in the course of the skiing circle,v_iuc48VIWLJY,v_iuc48VIWLJY_3,3 7955,v_j6BCgvUusWs,no,is it standing outside the table,v_j6BCgvUusWs,v_j6BCgvUusWs_3,3 7956,v_HtG-i1CG2Qs,yes,is it supposed to wash hands after the toilet,v_HtG-i1CG2Qs,v_HtG-i1CG2Qs_10,3 7957,v_N75m1Z4RqbA,no,is it that three persons are dancing in the video,v_N75m1Z4RqbA,v_N75m1Z4RqbA_3,3 7958,v_N75m1Z4RqbA,yes,is it that two persons are dancing in the video,v_N75m1Z4RqbA,v_N75m1Z4RqbA_2,3 7959,v_0Um-HgjcnXY,yes,is it the winner of an orange dress,v_0Um-HgjcnXY,v_0Um-HgjcnXY_2,3 7960,v_GgnM5RGNtDE,no,is it very difficult in dancing,v_GgnM5RGNtDE,v_GgnM5RGNtDE_10,3 7961,v_H0dG_1Vgw4Q,no,is it very difficult in weightlifting,v_H0dG_1Vgw4Q,v_H0dG_1Vgw4Q_10,3 7962,v_Pho9Hgdvc0g,yes,is it very difficult to ride a wheelbarrow,v_Pho9Hgdvc0g,v_Pho9Hgdvc0g_6,3 7963,v_iZT4XgzUHm4,yes,is leg strength used during cycling,v_iZT4XgzUHm4,v_iZT4XgzUHm4_2,3 7964,v_wLXty2wzuJg,no,is mr. bean long hair,v_wLXty2wzuJg,v_wLXty2wzuJg_3,3 7965,v_wLXty2wzuJg,yes,is mr. bean wearing short hair,v_wLXty2wzuJg,v_wLXty2wzuJg_2,3 7966,v_9FQ-VLkCZo8,no,is no. 43 in green clothes wearing a white hat,v_9FQ-VLkCZo8,v_9FQ-VLkCZo8_3,3 7967,v_zOI9SjQpc_Q,yes,is no. 9 playing football indoors,v_zOI9SjQpc_Q,v_zOI9SjQpc_Q_2,3 7968,v_zOI9SjQpc_Q,no,is no. 9 playing football outside,v_zOI9SjQpc_Q,v_zOI9SjQpc_Q_3,3 7969,v_BhgcXqWQhkQ,yes,is not the same kind of musical instrument in the video,v_BhgcXqWQhkQ,v_BhgcXqWQhkQ_2,3 7970,v_fLR-b-FDjlM,no,is playing the game in the sky,v_fLR-b-FDjlM,v_fLR-b-FDjlM_3,3 7971,v_fLR-b-FDjlM,yes,is playing the game on the ground,v_fLR-b-FDjlM,v_fLR-b-FDjlM_2,3 7972,v_ETbbYC0OhL0,yes,is purple hair color a fat woman,v_ETbbYC0OhL0,v_ETbbYC0OhL0_2,3 7973,v_HTSxgkgecS0,yes,is rafting dangerous,v_HTSxgkgecS0,v_HTSxgkgecS0_10,3 7974,v_pVuuVHA3RVw,no,is running a big risk factor for this sport,v_pVuuVHA3RVw,v_pVuuVHA3RVw_6,3 7975,v_MpeN-IVIBc4,no,is she curly hair in the video,v_MpeN-IVIBc4,v_MpeN-IVIBc4_3,3 7976,v__a527xEzhkw,yes,is she wearing glasses in the video,v__a527xEzhkw,v__a527xEzhkw_7,3 7977,v_BWAedc31WdY,yes,is wearing short hair a thinner man,v_BWAedc31WdY,v_BWAedc31WdY_2,3 7978,v_vqyQF-1Zc_E,no,is skiing a tool for skiing,v_vqyQF-1Zc_E,v_vqyQF-1Zc_E_3,3 7979,v_elD1P_1oiUk,yes,is someone falling in the water,v_elD1P_1oiUk,v_elD1P_1oiUk_9,3 7980,v_Au4PfoK7hyw,yes,is television working,v_Au4PfoK7hyw,v_Au4PfoK7hyw_7,3 7981,v_L5IbDi09Yb4,no,is that bald person wearing a red clothes,v_L5IbDi09Yb4,v_L5IbDi09Yb4_3,3 7982,v_L5IbDi09Yb4,yes,is that bald person wearing a white clothes,v_L5IbDi09Yb4,v_L5IbDi09Yb4_2,3 7983,v_JGxf-jke0e8,no,is the adult beside the basin indoors,v_JGxf-jke0e8,v_JGxf-jke0e8_3,3 7984,v_JGxf-jke0e8,yes,is the adult beside the basin outside,v_JGxf-jke0e8,v_JGxf-jke0e8_2,3 7985,v_iKclcQEl4zI,yes,is the arm power used in the process of somersault,v_iKclcQEl4zI,v_iKclcQEl4zI_2,3 7986,v_P2xT7dlyX8Y,yes,is the audience a lady in the video,v_P2xT7dlyX8Y,v_P2xT7dlyX8Y_9,3 7987,v_rMj2JWNJzkw,no,is the ball under water,v_rMj2JWNJzkw,v_rMj2JWNJzkw_3,3 7988,v_PD-FXR7O9J0,yes,is the bathtub blue,v_PD-FXR7O9J0,v_PD-FXR7O9J0_2,3 7989,v_PD-FXR7O9J0,no,is the bathtub red,v_PD-FXR7O9J0,v_PD-FXR7O9J0_3,3 7990,v_FtRGOgg0Qh8,small scale,is the bike large or small,v_FtRGOgg0Qh8,v_FtRGOgg0Qh8_10,5 7991,v_3dWw9GLcOeA,no,is the bird on the branch,v_3dWw9GLcOeA,v_3dWw9GLcOeA_3,3 7992,v_3dWw9GLcOeA,yes,is the bird on the roof,v_3dWw9GLcOeA,v_3dWw9GLcOeA_2,3 7993,v_cCimLg-8Dy4,yes,is the black girl holding a stick in her hand,v_cCimLg-8Dy4,v_cCimLg-8Dy4_2,3 7994,v_fQ1OuD7x3to,day,is the man in black wiping the glass in the daytime or at night,v_fQ1OuD7x3to,v_fQ1OuD7x3to_5,2 7995,v_fQ1OuD7x3to,no,is the man in black with a white hat,v_fQ1OuD7x3to,v_fQ1OuD7x3to_3,3 7996,v_LjPKKqe-VO0,yes,is the blond man indoors,v_LjPKKqe-VO0,v_LjPKKqe-VO0_2,3 7997,v_LjPKKqe-VO0,no,is the blond man outdoors,v_LjPKKqe-VO0,v_LjPKKqe-VO0_3,3 7998,v_8tCRp3NKtkI,no,is the man with blonde hair wearing a hat,v_8tCRp3NKtkI,v_8tCRp3NKtkI_3,3 7999,v_8tCRp3NKtkI,yes,is the man with blonde hair wearing a watch,v_8tCRp3NKtkI,v_8tCRp3NKtkI_2,3 8000,v_EETygPQ-j08,no,is the girl in blue dress wearing glasses,v_EETygPQ-j08,v_EETygPQ-j08_3,3 8001,v_eg2s5lOfKGI,no,is the pants of the woman in blue dress a short pair of pants,v_eg2s5lOfKGI,v_eg2s5lOfKGI_3,3 8002,v_H33jSILKmfI,no,is the boxing man in a black clothes,v_H33jSILKmfI,v_H33jSILKmfI_3,3 8003,v_H33jSILKmfI,yes,is the boxing man in a white clothes,v_H33jSILKmfI,v_H33jSILKmfI_2,3 ================================================ FILE: data/open_ended_qa/MSRVTT_QA.csv ================================================ ,video_id,answer,question,video_name,question_id,question_type 1,6513,couch,what are three people sitting on?,video6513,158581,14 2,6513,coversation,what is a family having?,video6513,158582,14 3,6513,music,what plays?,video6513,158583,14 4,6513,music,what is playing?,video6513,158584,14 5,6513,couch,what does the girl sing on?,video6513,158585,14 6,6513,feature,what is a music video doing?,video6513,158586,14 7,6513,sit,what are people doing?,video6513,158587,14 8,6513,sit,what are three people doing?,video6513,158588,14 9,6513,sit,what are three young people doing?,video6513,158589,14 10,6513,talk,what are two girls and a guy doing?,video6513,158590,14 11,6513,talk,what is young people doing?,video6513,158591,14 12,6513,family,what is having coversation?,video6513,158592,14 13,6513,camera,what does a woman sing to?,video6513,158593,14 14,6513,three,how many people are sitting on a couch?,video6513,158594,14 15,6513,song,what is a woman singing with others in the background?,video6513,158595,14 16,6513,couch,what are two girls and a guy talking on while music is playing?,video6513,158596,14 17,6513,couch,what are people sitting on arguing while music plays?,video6513,158597,14 18,6513,woman,who is singing a song with others in the background?,video6513,158598,14 19,6513,three,how many young people are sitting on a couch?,video6513,158599,14 20,6513,home,what made video of a popular song voiced over?,video6513,158600,14 21,6513,girl,who sings i wish that i could be like the cool kids?,video6513,158601,14 22,6513,couch,what are three young people sitting on?,video6513,158602,14 23,6513,background,what are other young people interacting with each other in?,video6513,158603,14 24,6513,woman,who sings to the camera?,video6513,158604,14 25,6513,lip,what then go outside to see the sunset?,video6513,158605,14 26,6513,girl,who sings on the couch?,video6513,158606,14 27,6514,snow,what does a person on a motorbike riding thru?,video6514,158607,3 28,6514,snow,what goes into a skier riding down a mountain?,video6514,158608,3 29,6514,someone,who is riding a bike on a narrow trail?,video6514,158609,3 30,6514,surfer,who is riding waves and a person on a dirt bike riding a trail?,video6514,158610,3 31,6514,guy,who is dirt biking?,video6514,158611,3 32,6514,surf,what is a girl doing?,video6514,158612,3 33,6514,skate,what is a woman doing?,video6514,158613,3 34,6514,bike,what is someone riding on a narrow trail?,video6514,158614,3 35,6514,bike,what is a guy riding on mountains?,video6514,158615,3 36,6514,extreme,what sports being showcased to techno music?,video6514,158616,3 37,6514,guy,who is riding a bike on mountains?,video6514,158617,3 38,6514,girl,who rides the wave?,video6514,158618,3 39,6514,music,what does extreme sport being showcased to?,video6514,158619,3 40,6514,ocean,what does a woman surf in?,video6514,158620,3 41,6514,woman,who surfing in the ocean?,video6514,158621,3 42,6514,wave,what a girl rides?,video6514,158622,3 43,6514,girl,who is surfing?,video6514,158623,3 44,6514,woman,who is skating in a sea water?,video6514,158624,3 45,6514,biking,what is a guy?,video6514,158625,3 46,6515,pepper,what does a man cut?,video6515,158626,17 47,6515,dish,what is a chef crushing garlic for?,video6515,158627,17 48,6515,cut,what is a male cook doing?,video6515,158628,17 49,6515,slouse,what is in a kitchen man in white clothes doing?,video6515,158629,17 50,6515,slouse,what is a man doing?,video6515,158630,17 51,6515,chop,what is man doing?,video6515,158631,17 52,6515,cut,what is the man in the chef uniform chops the vegetables on the doing?,video6515,158632,17 53,6515,narrate,what is a chef who doing?,video6515,158633,17 54,6515,dres,what is there is a man with white doing?,video6515,158634,17 55,6515,cut,what is a bald man cuts up peppers and garlic on a doing?,video6515,158635,17 56,6515,cut,what is a chef doing?,video6515,158636,17 57,6515,pepper,what does a chef shred?,video6515,158637,17 58,6515,chef,who is crushing garlic to prepare a dish?,video6515,158638,17 59,6515,kitchen,what is man in white clothes slicing the vegetables in?,video6515,158639,17 60,6515,man,who cuts something vegetable on the table?,video6515,158640,17 61,6515,chef,who cuts a bell pepper in half?,video6515,158641,17 62,6515,hand,what do a chef with white dress having knife in?,video6515,158642,17 63,6515,bald,who cuts up peppers and garlic on a cutting board?,video6515,158643,17 64,6515,chef,who crushes garlic cloves with the knife?,video6515,158644,17 65,6515,half,what does a chef cut a bell pepper in?,video6515,158645,17 66,6515,table,what does a man cut something vegetable on?,video6515,158646,17 67,6515,chef,who shreds a bell pepper?,video6515,158647,17 68,6515,man,who describes how to easily cut a bell pepper?,video6515,158648,17 69,6515,pepper,what does a chef cut in half?,video6515,158649,17 70,6515,chef,who is crushing garlic for his dish?,video6515,158650,17 71,6515,chef,who chops up red pepper in a real ice kitchen?,video6515,158651,17 72,6515,man,who cuts a bell pepper?,video6515,158652,17 73,6515,chef,who is cutting red peppers?,video6515,158653,17 74,6515,something,what does a man cut on the table?,video6515,158654,17 75,6515,knife,what do a chef with white dress having in his hand?,video6515,158655,17 76,6515,man,who describes he crushes garlic and describes how to crush a bell pepper?,video6515,158656,17 77,6515,chef,who is cutting red bell peppers?,video6515,158657,17 78,6515,knife,what does a chef crush garlic cloves with?,video6515,158658,17 79,6515,cook,who crushes peeled garlic?,video6515,158659,17 80,6515,garlic,what has a chef who is narrating his own cooking show managed to break open two cloves of on his cutting board?,video6515,158660,17 81,6516,man,who has scarring on his nose?,video6516,158661,12 82,6516,nose,what is a man with a swollen nose showing for documentation?,video6516,158662,12 83,6516,nose,what does a man s is shown before and after treatment?,video6516,158663,12 84,6516,man,what s large nose is shown before and after treatment?,video6516,158664,12 85,6516,show,what is video doing?,video6516,158665,12 86,6516,demonstrate,what is a video doing?,video6516,158666,12 87,6516,show,what is a man with a swollen nose doing?,video6516,158667,12 88,6516,scar,what is a man has doing?,video6516,158668,12 89,6516,documentation,what is a man with a swollen nose showing his nose for?,video6516,158669,12 90,6516,video,what face before and after treatment?,video6516,158670,12 91,6516,nose,what has a man scarring on?,video6516,158671,12 92,6517,movie,what does the epic voice describe?,video6517,158672,7 93,6517,voice,what describes the thor movie?,video6517,158673,7 94,6517,girl,who had a wacky sidekick?,video6517,158674,7 95,6517,talk,what are screen junkies doing?,video6517,158675,7 96,6517,amazement,what do a girl and man look at the sky in?,video6517,158676,7 97,6517,sky,what do a girl and man look at in amazement?,video6517,158677,7 98,6517,explain,what is a narrator doing?,video6517,158678,7 99,6517,display,what is a parody doing?,video6517,158679,7 100,6517,sidekick,who did the girl have?,video6517,158680,7 101,6517,person,who has fallen onto the hood of a car?,video6517,158681,7 102,6517,woman,who has a bunch of wacky sidekicks?,video6517,158682,7 103,6517,screen,who are talking about the second thor movie?,video6517,158683,7 104,6517,man,who coming out by seeing the woman?,video6517,158684,7 105,6518,talk,what is people doing?,video6518,158685,3 106,6518,wrestle,what is doing?,video6518,158686,3 107,6518,wrestle,what are wrestlers doing?,video6518,158687,3 108,6518,wrestle,what are two people doing?,video6518,158688,3 109,6518,wrestle,what is two men doing?,video6518,158689,3 110,6518,wrestle,what are two men doing?,video6518,158690,3 111,6518,wrestle,what are two guys doing?,video6518,158691,3 112,6518,wrestle,what are boys doing?,video6518,158692,3 113,6518,wrestle,what is there are two people doing?,video6518,158693,3 114,6518,wrestle,what is two boys doing?,video6518,158694,3 115,6518,two,how many men are wrestling?,video6518,158695,3 116,6518,dominance,what does wrestler show?,video6518,158696,3 117,6518,competition,what are two guys wrestling in?,video6518,158697,3 118,6518,wrestler,who shows his dominance?,video6518,158698,3 119,6518,ground,what do wrestling play on?,video6518,158699,3 120,6518,wrestling,what play on the ground?,video6518,158700,3 121,6518,two,how many people are wrestling?,video6518,158701,3 122,6518,victory,what does a wrestler do?,video6518,158702,3 123,6518,two,how many boys wrestle in the middle of a gym?,video6518,158703,3 124,6518,wrestler,who does a victory dance?,video6518,158704,3 125,6518,two,how many guys are wrestling in a competition?,video6518,158705,3 126,6519,jump,what is animated pig doing?,video6519,158706,8 127,6519,show,what is animated cartoon doing?,video6519,158707,8 128,6519,character,who says the end of the alphabet?,video6519,158708,8 129,6519,jump,what is a pig doing?,video6519,158709,8 130,6519,involve,what is a cartoon doing?,video6519,158710,8 131,6519,jump,what is a cartoon hero doing?,video6519,158711,8 132,6519,jump,what is a cartoon character doing?,video6519,158712,8 133,6519,talk,what are a animate character doing?,video6519,158713,8 134,6519,alphabet,what does a cartoon character say the end of?,video6519,158714,8 135,6519,flower,what is a cartoon hero jumping from a flower to?,video6519,158715,8 136,6519,flower,what is a cartoon hero jumping from to a flower?,video6519,158716,8 137,6519,character,who are talking?,video6519,158717,8 138,6519,cartoon,what jumps between flowers?,video6519,158718,8 139,6519,character,who jumps on flowers?,video6519,158719,8 140,6519,pig,what teaches the alphabet on flowers?,video6519,158720,8 141,6519,jump,what is cartoon person doing?,video6519,158721,8 142,6519,pig,what is jumping?,video6519,158722,8 143,6519,jump,what is cartoon pig doing?,video6519,158723,8 144,6519,flip,what is on a kids game a little boy doing?,video6519,158724,8 145,6519,boy,who is jumping on flowers while holding a watering can in a cartoon?,video6519,158725,8 146,6519,cartoon,what is a boy jumping on flowers while holding a watering can in?,video6519,158726,8 147,6519,boy,who is flipping on flowers on a kids game?,video6519,158727,8 148,6519,cartoon,who is jumping from a flower to a flower?,video6519,158728,8 149,6519,character,who is jumping from flower to flower?,video6519,158729,8 150,6519,jump,what is in a cartoon a boy doing?,video6519,158730,8 151,6520,perform,what is two long jumpers a male and female are shown doing?,video6520,158731,3 152,6520,attempt,what is a woman and man doing?,video6520,158732,3 153,6520,sprint,what is to get the maximum length in the long jump competition doing?,video6520,158733,3 154,6520,wear,what is a girl in green dress doing?,video6520,158734,3 155,6520,perform,what are a pair of african american young adults doing?,video6520,158735,3 156,6520,cloth,what do a girl in green dress wearing jumping?,video6520,158736,3 157,6520,athlete,who jumps into the air?,video6520,158737,3 158,6520,athlete,who speeds down a track?,video6520,158738,3 159,6520,jump,what are two long jumpers a male and female shown performing?,video6520,158739,3 160,6520,air,what does a female athlete jump into?,video6520,158740,3 161,6520,jump,what is a female and then a male track and field athlete doing while a singer is singing?,video6520,158741,3 162,6520,track,what does a female athlete speed down?,video6520,158742,3 163,6520,girl,who is running?,video6520,158743,3 164,6520,track,who meet?,video6520,158744,3 165,6520,singer,who is singing?,video6520,158745,3 166,6520,mid,what jump then a boy does the same from the oppisate direction?,video6520,158746,3 167,6520,boy,who do stops in mid jump then does the same from the oppisate direction?,video6520,158747,3 168,6520,cloth,what do a girl in green dress wearing running?,video6520,158748,3 169,6520,everything,what do black male and female runners give at a race event?,video6520,158749,3 170,6520,jump,what are people participating in during a track meet?,video6520,158750,3 171,6520,track,what are people participating in long jump during meet?,video6520,158751,3 172,6521,foam,what is bill murray covered in while talking to david letterman?,video6521,158752,6 173,6521,murray,who is covered in white foam while talking to david letterman?,video6521,158753,6 174,6521,murray,who is hanging out on the late show with david letterman?,video6521,158754,6 175,6521,murray,who is talking to david letterman while covered in foam?,video6521,158755,6 176,6521,murray,who is covered in goo on late night tv?,video6521,158756,6 177,6521,bill,what murray in costume at late night talk show?,video6521,158757,6 178,6521,murry,who is being interviewed by david letterman?,video6521,158758,6 179,6521,david,what letterman interviewing comedic actor bill murray?,video6521,158759,6 180,6521,man,who is laughing about some thing?,video6521,158760,6 181,6521,letterman,who is bill murry being interviewed by?,video6521,158761,6 182,6521,two,how many men are talking about something?,video6521,158762,6 183,6521,man,who is talking while covered in cake?,video6521,158763,6 184,6521,man,who is talking on a television talk show?,video6521,158764,6 185,6521,goo,what is bill murray covered in on late night tv?,video6521,158765,6 186,6521,letterman,who is bill murray hanging out on the late show with?,video6521,158766,6 187,6521,man,who is covered in foam?,video6521,158767,6 188,6521,talk,what is a comedian doing?,video6521,158768,6 189,6521,laugh,what is a man doing?,video6521,158769,6 190,6521,talk,what is bill murray is covered in white foam while doing?,video6521,158770,6 191,6521,hang,what is bill murray doing?,video6521,158771,6 192,6521,interview,what is david letterman doing?,video6521,158772,6 193,6521,talk,what are two men doing?,video6521,158773,6 194,6521,actor,what do david letterman interviewing murray?,video6521,158774,6 195,6521,something,what are two men talking about?,video6521,158775,6 196,6521,foam,what is a man covered in?,video6521,158776,6 197,6521,man,who is discussing?,video6521,158777,6 198,6521,man,who is laughing?,video6521,158778,6 199,6521,discus,what is a man doing?,video6521,158779,6 200,6521,thing,what is a man laughing about?,video6521,158780,6 201,6522,depict,what is a screen doing?,video6522,158781,1 202,6522,play,what is doing?,video6522,158782,1 203,6522,dance,what are people doing?,video6522,158783,1 204,6522,play,what is gameplay footage of someone doing?,video6522,158784,1 205,6522,play,what is clip of the video game where you simulate doing?,video6522,158785,1 206,6522,play,what is a person doing?,video6522,158786,1 207,6522,play,what is a woman doing?,video6522,158787,1 208,6522,prepare,what is a person doing?,video6522,158788,1 209,6522,play,what is a recording of a person doing?,video6522,158789,1 210,6522,play,what is cartoon characters doing?,video6522,158790,1 211,6522,guitar,what is a woman playing?,video6522,158791,1 212,6522,guitar,who do game play of?,video6522,158792,1 213,6522,woman,who is playing the guitar?,video6522,158793,1 214,6522,cartoon,what plays for a guitar hero video?,video6522,158794,1 215,6522,meal,what is a person preparing in the kitchen?,video6522,158795,1 216,6522,kitchen,what is a person preparing a meal in?,video6522,158796,1 217,6522,game,what play of guitar hero?,video6522,158797,1 218,6522,guitar,who is a person playing on a television?,video6522,158798,1 219,6522,television,what is a person playing guitar hero on?,video6522,158799,1 220,6522,guitar,who is a person playing a game of?,video6522,158800,1 221,6522,someone,what is playing the video game guitar hero?,video6522,158801,1 222,6522,person,who is preparing a meal in the kitchen?,video6522,158802,1 223,6522,person,who is playing guitar hero the video game?,video6522,158803,1 224,6522,person,who is playing guitar hero on a television?,video6522,158804,1 225,6522,person,who is playing a game of guitar hero?,video6522,158805,1 226,6523,hear,what is a man doing?,video6523,158806,7 227,6523,arrange,what is there is a man doing?,video6523,158807,7 228,6523,wear,what is a man doing?,video6523,158808,7 229,6523,phone,what is a man removing?,video6523,158809,7 230,6523,wear,what is a lady doing?,video6523,158810,7 231,6523,phone,what is a man talking with?,video6523,158811,7 232,6523,man,who is hearing something through headphones from a device kept in the street?,video6523,158812,7 233,6523,talk,what is a man wears black dress and doing?,video6523,158813,7 234,6523,look,what is a male movie director wears headphones while doing?,video6523,158814,7 235,6523,stand,what is a man with headphones over his head while doing?,video6523,158815,7 236,6523,star,what is a man with a black hood takes earphones off while doing?,video6523,158816,7 237,6523,wear,what is this shows a man in a black hoodie doing?,video6523,158817,7 238,6523,dres,what does a man wear?,video6523,158818,7 239,6523,talk,what is a man doing?,video6523,158819,7 240,6523,phone,what did a man keep?,video6523,158820,7 241,6523,man,who kept head phone?,video6523,158821,7 242,6523,something,what is a man hearing through headphones from a device kept in the street?,video6523,158822,7 243,6523,man,who is talking with head phone?,video6523,158823,7 244,6523,headset,what does a man wearing a hoody dress remove from his head?,video6523,158824,7 245,6523,camera,what men taking the scene video and checking for perfection?,video6523,158825,7 246,6523,conversation,what are group of blonde women having?,video6523,158826,7 247,6523,man,who wears black dress?,video6523,158827,7 248,6523,man,who dress removing headphones?,video6523,158828,7 249,6523,man,who is removing head phone?,video6523,158829,7 250,6523,head,what does a man wearing a hoody dress remove the headset from?,video6523,158830,7 251,6524,mixture,what does a cook pour beaten with the help of a fork into the bottom of a black wok?,video6524,158831,16 252,6524,wok,what is an egg simmering in food is being cooked?,video6524,158832,16 253,6524,skillet,what did a person cooking scramble eggs in?,video6524,158833,16 254,6524,tava,what is egg put on?,video6524,158834,16 255,6524,egg,what is smashed in the tawa?,video6524,158835,16 256,6524,egg,what is put on the tava?,video6524,158836,16 257,6524,oil,what are ingredients put in a pan with to boil it?,video6524,158837,16 258,6524,wok,what is a person cooking an egg in pan?,video6524,158838,16 259,6524,recipe,what do a person doing a cooking show and mixing the ingredients for?,video6524,158839,16 260,6524,egg,what is a person cooking in a wok pan?,video6524,158840,16 261,6524,person,what scrambled eggs in a skillet?,video6524,158841,16 262,6524,simmer,what is an egg doing?,video6524,158842,16 263,6524,chef,who scrambles an egg in a small black wok?,video6524,158843,16 264,6524,pmy,what is a person doing?,video6524,158844,16 265,6524,man,who is using a metal spatula to stir around eggs in a hot wok he is using on the stove?,video6524,158845,16 266,6524,woman,who scrambles eggs before adding spices and noodles in a large wok?,video6524,158846,16 267,6524,screen,what states to add eggs and a little oil to a pot after that is states to add noodles in order to complete the recipe?,video6524,158847,16 268,6524,egg,what are the rice noodles added to?,video6524,158848,16 269,6524,spatula,what is a man using to stir around eggs in a hot wok he is using on the stove?,video6524,158849,16 270,6524,pot,what does a screen state to add eggs and a little oil to after that is states to add noodles in order to complete the recipe?,video6524,158850,16 271,6524,cook,who pours beaten egg mixture with the help of a fork into the bottom of a black wok?,video6524,158851,16 272,6524,person,who is cooking a egg curry on a fry bowel?,video6524,158852,16 273,6524,person,who is cooking an egg in a wok pan?,video6524,158853,16 274,6524,egg,what is simmering in a wok food is being cooked?,video6524,158854,16 275,6524,food,what is an egg simmering in a wok is being cooked?,video6524,158855,16 276,6524,cook,what is a person doing?,video6524,158856,16 277,6524,use,what is a man doing?,video6524,158857,16 278,6524,tawa,what is an egg smashed in?,video6524,158858,16 279,6524,rice,what are added to a egg?,video6524,158859,16 280,6525,discus,what is a man doing?,video6525,158860,12 281,6525,talk,what is a man in glasses doing?,video6525,158861,12 282,6525,man,who glasses?,video6525,158862,12 283,6525,space,what does a man discuss?,video6525,158863,12 284,6525,radiation,what is a man talking about?,video6525,158864,12 285,6525,space,what does man talk about?,video6525,158865,12 286,6525,experiment,what is some scitentist doing?,video6525,158866,12 287,6525,scitentist,what is doing experiment?,video6525,158867,12 288,6525,man,who is talking about the sun?,video6525,158868,12 289,6525,man,who is talking about the climate?,video6525,158869,12 290,6525,man,who is talking about space?,video6525,158870,12 291,6525,man,who talks about space?,video6525,158871,12 292,6525,radiation,what did a nerd in space?,video6525,158872,12 293,6525,man,who is talking about space radiation?,video6525,158873,12 294,6525,man,who discusses space dust?,video6525,158874,12 295,6525,man,who talks about space dust?,video6525,158875,12 296,6525,talk,what is man doing?,video6525,158876,12 297,6525,man,who talks about chemical reactions?,video6525,158877,12 298,6525,man,who talks about how carbon may form life?,video6525,158878,12 299,6525,man,who speaks to a camera for a video segment?,video6525,158879,12 300,6525,man,who glasses talking about carbon compounds and space dust?,video6525,158880,12 301,6525,man,who is discussing some facts about space?,video6525,158881,12 302,6525,space,what is a man discussing some facts about?,video6525,158882,12 303,6525,man,who is talking about the solar system?,video6525,158883,12 304,6525,space,what did a nerd talks about radiation in?,video6525,158884,12 305,6525,radiation,what did a nerd talks about in space?,video6525,158885,12 306,6526,lingerie,what are different young and attractive women shown wearing in a series of stills?,video6526,158886,18 307,6526,woman,who poses in black tank top in bedroom with a friend in black?,video6526,158887,18 308,6526,snap,what does cute chicks with amazing abyss pose for?,video6526,158888,18 309,6526,woman,who has a red bikini on with a blue surfboard?,video6526,158889,18 310,6526,friend,who do girls in lingerie standing with a surf boat and other girl selfie with?,video6526,158890,18 311,6526,bikini,what does the next woman have on with a blue surfboard?,video6526,158891,18 312,6526,dres,what are both girls looking with?,video6526,158892,18 313,6526,camera,what are girls giving pose to with swim suit?,video6526,158893,18 314,6526,slideshow,who shows attractive women the first two women wear black while the next woman has a red bikini on with a blue surfboard?,video6526,158894,18 315,6526,show,what is a beautiful pictures of women doing?,video6526,158895,18 316,6526,arouse,what is different posses of models doing?,video6526,158896,18 317,6526,stand,what is girls in lingerie doing?,video6526,158897,18 318,6526,half,what do sexy girls show nude?,video6526,158898,18 319,6526,wear,what is many pictures of women doing?,video6526,158899,18 320,6526,wear,what is different young and attractive women are shown doing?,video6526,158900,18 321,6526,look,what are both girls doing?,video6526,158901,18 322,6527,hair,what is a girl doing?,video6527,158902,10 323,6527,hair,what is a girl fixing?,video6527,158903,10 324,6527,girl,who is describing hair styling?,video6527,158904,10 325,6527,female,what shows how to use beauty products?,video6527,158905,10 326,6527,hair,what is a woman fixing with some olive oil pomme?,video6527,158906,10 327,6527,girl,who demonstrates how to do african hair?,video6527,158907,10 328,6527,woman,who is giving a tutorial on a hairstyle?,video6527,158908,10 329,6527,hair,what does a black woman do?,video6527,158909,10 330,6527,describe,what is a girl doing?,video6527,158910,10 331,6527,fix,what is a girl doing?,video6527,158911,10 332,6527,style,what is a girl doing?,video6527,158912,10 333,6527,mes,what is a woman doing?,video6527,158913,10 334,6527,show,what is a woman doing?,video6527,158914,10 335,6527,show,what is an african american girl doing?,video6527,158915,10 336,6527,care,what is an african american woman demonstrates methods for doing?,video6527,158916,10 337,6527,talk,what is girl doing?,video6527,158917,10 338,6527,hair,what is a woman doing?,video6527,158918,10 339,6528,create,what is during an interview a man talks about doing?,video6528,158919,4 340,6528,room,what do two men talk with screens behind them in?,video6528,158920,4 341,6528,screen,what do two old man sitting beside one in blue and other in white color cloth dress speaking on topic displaying on?,video6528,158921,4 342,6528,topic,what do two old man sitting beside one in blue and other in white color cloth dress speaking on displaying on screen?,video6528,158922,4 343,6528,talk,what are a couple of men on a tv show doing?,video6528,158923,4 344,6528,create,what is a man in a suit talks about doing?,video6528,158924,4 345,6528,talk,what is a man in a white shirt and dark suuit jacket doing?,video6528,158925,4 346,6528,talk,what is individuals doing?,video6528,158926,4 347,6528,wear,what is the man doing?,video6528,158927,4 348,6528,talk,what is man in formal wear doing?,video6528,158928,4 349,6528,talk,what is man in suit doing?,video6528,158929,4 350,6528,speak,what is a man doing?,video6528,158930,4 351,6528,sit,what is a man doing?,video6528,158931,4 352,6528,journey,what does a man describe into the creation of a filmed event?,video6528,158932,4 353,6528,sit,what is two old man doing?,video6528,158933,4 354,6528,man,who wear talking by moving hands with a big monitor in the background?,video6528,158934,4 355,6528,man,who describes his journey into the creation of a filmed event?,video6528,158935,4 356,6528,man,who talks about creating home in store during an interview?,video6528,158936,4 357,6528,man,who is speaking to an interviewer about how he is designing neighborhoods with a mix of commercial and residential properties for residents to enjoy?,video6528,158937,4 358,6528,interview,what does a man talk about creating home in store during?,video6528,158938,4 359,6528,two,how many men talk with screens behind them in a room?,video6528,158939,4 360,6529,woman,who s voice is speaking about a picture of a blonde woman in a fantasy setting?,video6529,158940,6 361,6529,chair,what is a woman in a tv show sitting in?,video6529,158941,6 362,6529,blonde,what does a woman in a renaissance type blue and gold gown have long?,video6529,158942,6 363,6529,woman,who discusses game of thrones character casting?,video6529,158943,6 364,6529,woman,who talks about an actress who will be playing the queen in the terminator?,video6529,158944,6 365,6529,voice,what does a young woman s is speaking about a picture of a blonde woman in a fantasy setting?,video6529,158945,6 366,6529,blond,what did a man holding a shiled a women with sitting on a black throne?,video6529,158946,6 367,6529,game,what do news and information about the upcoming season of the televsion show?,video6529,158947,6 368,6529,lady,who is starring?,video6529,158948,6 369,6529,show,what does a woman talk about?,video6529,158949,6 370,6529,woman,who talks about a show?,video6529,158950,6 371,6529,chair,what is a lady sitting on?,video6529,158951,6 372,6529,medieval,what are a man and a woman shown in?,video6529,158952,6 373,6529,lady,who is sitting on the chair?,video6529,158953,6 374,6529,hold,what is a man doing?,video6529,158954,6 375,6529,sit,what is there is a woman doing?,video6529,158955,6 376,6529,speak,what is a young woman s voice doing?,video6529,158956,6 377,6529,cast,what is woman discusses game of thrones character doing?,video6529,158957,6 378,6529,play,what is a woman talks about an actress who will be doing?,video6529,158958,6 379,6529,sit,what is with long blond hair doing?,video6529,158959,6 380,6529,talk,what is a lady doing?,video6529,158960,6 381,6529,wear,what is a lady which doing?,video6529,158961,6 382,6529,sit,what is a lady doing?,video6529,158962,6 383,6529,sit,what is a woman in a tv show doing?,video6529,158963,6 384,6530,show,what is gta game play doing?,video6530,158964,9 385,6530,meet,what are in a video game scene men doing?,video6530,158965,9 386,6530,game,what play footage of grand theft auto?,video6530,158966,9 387,6530,video,what shows a toyota supera?,video6530,158967,9 388,6530,person,who plays a video game?,video6530,158968,9 389,6530,gtum,what play showing an orange car?,video6530,158969,9 390,6530,toyotum,who does video race game show?,video6530,158970,9 391,6530,orange,what do gta game play showing?,video6530,158971,9 392,6530,someone,what is playing a game?,video6530,158972,9 393,6530,video,what does a person play?,video6530,158973,9 394,6530,play,what is someone doing?,video6530,158974,9 395,6530,game,what is someone playing?,video6530,158975,9 396,6530,scene,who are meeting by a sportscar in a video game?,video6530,158976,9 397,6530,sportscar,who are scene men meeting by in a video game?,video6530,158977,9 398,6530,stand,what are a car and three persons doing?,video6530,158978,9 399,6530,video,what is played?,video6530,158979,9 400,6530,orange,what is highlighted in grand theft auto?,video6530,158980,9 401,6530,show,what is music on doing?,video6530,158981,9 402,6531,woman,who is talking?,video6531,158982,4 403,6531,news,what anchor not prepared for filming?,video6531,158983,4 404,6531,reporter,who is being interviewed?,video6531,158984,4 405,6531,woman,who can the man not hear?,video6531,158985,4 406,6531,news,what anchor speaking to one antoher?,video6531,158986,4 407,6531,segment,what is the male reporter having difficulties with?,video6531,158987,4 408,6531,fox,what are a woman and man talking on?,video6531,158988,4 409,6531,news,what is a person telling on tv?,video6531,158989,4 410,6531,two,how many news reporters are talking to each other on tv?,video6531,158990,4 411,6531,man,who is giving an interview to a woman reporter?,video6531,158991,4 412,6531,news,who are talking to each other on tv?,video6531,158992,4 413,6531,problem,what do a live tv news show with because the man cannot hear the woman?,video6531,158993,4 414,6531,person,who is telling the news on tv?,video6531,158994,4 415,6531,interview,what is a man giving to a woman reporter?,video6531,158995,4 416,6531,stock,what report with a woman talking and a man wrestling with his microphone?,video6531,158996,4 417,6531,two,how many reporters have technical problems?,video6531,158997,4 418,6531,reporter,who is having difficulties with his segment?,video6531,158998,4 419,6531,man,who cannot hear the woman?,video6531,158999,4 420,6531,try,what is man doing?,video6531,159000,4 421,6531,film,what is news anchor not prepared for doing?,video6531,159001,4 422,6531,speak,what is reporters doing?,video6531,159002,4 423,6531,talk,what are two news reporters doing?,video6531,159003,4 424,6531,talk,what is a stock report with a woman doing?,video6531,159004,4 425,6531,tell,what is a person doing?,video6531,159005,4 426,6531,talk,what are a woman and man doing?,video6531,159006,4 427,6531,talk,what is a woman doing?,video6531,159007,4 428,6531,talk,what are a man and woman doing?,video6531,159008,4 429,6532,trampoline,what is a young boy jumping on?,video6532,159009,10 430,6532,boy,who is jumping?,video6532,159010,10 431,6532,trampoline,what is a boy jumping on?,video6532,159011,10 432,6532,trampoline,what does a child jump on?,video6532,159012,10 433,6532,trampoline,what does a boy flips on?,video6532,159013,10 434,6532,trampoline,what is a boy jumping inside?,video6532,159014,10 435,6532,boy,who does a few flips on a trampoline?,video6532,159015,10 436,6532,boy,who is jumping on a trampoline?,video6532,159016,10 437,6532,trampoline,what does a boy do a few flips on?,video6532,159017,10 438,6532,jumping,who flips on a trampoline?,video6532,159018,10 439,6532,kid,who is bouncing on a enclosed trampoline?,video6532,159019,10 440,6532,boy,who is doing flips on a trampoline?,video6532,159020,10 441,6532,fun,what do a maie having jumping up and down alone on a brezzy day?,video6532,159021,10 442,6532,boy,who is jumping inside a trampoline?,video6532,159022,10 443,6532,boy,who does flips on a trampoline?,video6532,159023,10 444,6532,trampoline,what does a man jumping flip on?,video6532,159024,10 445,6532,child,who jumps on the trampoline?,video6532,159025,10 446,6532,kid,who is jumping over the jumping bed?,video6532,159026,10 447,6532,trampoline,what does a man doing flip on?,video6532,159027,10 448,6532,trampoline,what is a young boy doing flips on?,video6532,159028,10 449,6532,boy,who does several backflips on a trampoline?,video6532,159029,10 450,6532,jump,what is a boy doing?,video6532,159030,10 451,6532,jump,what is kids doing?,video6532,159031,10 452,6532,jump,what is kid doing?,video6532,159032,10 453,6532,jump,what is a young child doing?,video6532,159033,10 454,6532,jump,what is a young boy doing?,video6532,159034,10 455,6532,jump,what is boy doing?,video6532,159035,10 456,6532,bounce,what is a kid doing?,video6532,159036,10 457,6533,room,what does a man in a black suit enter?,video6533,159037,4 458,6533,two,how many higher officials have a chat?,video6533,159038,4 459,6533,room,what do a person wearing a black dress and tie on?,video6533,159039,4 460,6533,video,what shows a man greeting another man as he enters a room?,video6533,159040,4 461,6533,man,who is reading a news in the television channel?,video6533,159041,4 462,6533,color,what is a man talking with another man both are wearing?,video6533,159042,4 463,6533,iraq,what does a narrator discuss the rebuilding of?,video6533,159043,4 464,6533,news,what is a man reading in the television channel?,video6533,159044,4 465,6533,building,what are two formal men having a conversation inside of?,video6533,159045,4 466,6533,room,what are group of men in elegant clothes meeting in?,video6533,159046,4 467,6533,room,what do two higher officials meet in?,video6533,159047,4 468,6533,iraq,what does a report say the iraqi prime minister says the international community must help rebuild by providing it with funds?,video6533,159048,4 469,6533,two,how many higher officials meet in a room?,video6533,159049,4 470,6533,provide,what is a report says the iraqi prime minister says the international community must help iraq rebuild by doing?,video6533,159050,4 471,6533,speak,what is a prime minister doing?,video6533,159051,4 472,6533,meet,what are group of men in elegant clothes doing?,video6533,159052,4 473,6533,ask,what is a bbc report about the iraqi prime minister the prime minister doing?,video6533,159053,4 474,6533,read,what is a man doing?,video6533,159054,4 475,6533,shake,what are one of which is the iraqi prime minister named haider al-abadi doing?,video6533,159055,4 476,6533,wear,what is the man doing?,video6533,159056,4 477,6533,greet,what is the video shows a man doing?,video6533,159057,4 478,6533,shake,what is a meeting of dignified individuals is underway with two of them doing?,video6533,159058,4 479,6533,enter,what is there is a black suit man doing?,video6533,159059,4 480,6533,wear,what is a person doing?,video6533,159060,4 481,6533,shake,what is an older man in a black suit doing?,video6533,159061,4 482,6533,two,how many politicians greet in a room while a narrator discusses the rebuilding of iraq?,video6533,159062,4 483,6533,talk,what is a man doing?,video6533,159063,4 484,6533,narrator,who discusses the rebuilding of iraq?,video6533,159064,4 485,6533,two,how many formal men are having a conversation inside of a building?,video6533,159065,4 486,6533,government,what is a bbc report about the iraqi prime minister the prime minister asking for funding to help rebuild?,video6533,159066,4 487,6533,community,what does a report say the iraqi prime minister says must help iraq rebuild by providing it with funds?,video6533,159067,4 488,6533,man,who is talking with another man both are wearing black color coat?,video6533,159068,4 489,6533,report,what says the iraqi prime minister says the international community must help iraq rebuild by providing it with funds?,video6533,159069,4 490,6533,room,what did two politicians greet in while a narrator discusses the rebuilding of iraq?,video6533,159070,4 491,6534,hurdle,what is a horse jumping over?,video6534,159071,13 492,6534,horse,what is shown jumping different items?,video6534,159072,13 493,6534,horse,what runs in a field?,video6534,159073,13 494,6534,obstacle,what does a horse jump over?,video6534,159074,13 495,6534,horse,what is jumping?,video6534,159075,13 496,6534,horse,what jumps?,video6534,159076,13 497,6534,hourse,who is running?,video6534,159077,13 498,6534,jump,what are horses doing?,video6534,159078,13 499,6534,horse,what is jumping over the obstacle?,video6534,159079,13 500,6534,field,what does a horse run in?,video6534,159080,13 501,6534,horse,what is jumping over some hurdles?,video6534,159081,13 502,6534,horse,what jumps over an obstacle?,video6534,159082,13 503,6534,horse,what is jumping over a hurdle?,video6534,159083,13 504,6534,show,what is video doing?,video6534,159084,13 505,6534,jump,what is a brown horse doing?,video6534,159085,13 506,6534,involve,what is a cartoon doing?,video6534,159086,13 507,6534,jump,what is a horse is shown doing?,video6534,159087,13 508,6534,show,what is this is a slide show doing?,video6534,159088,13 509,6534,field,where does a horse run?,video6534,159089,13 510,6535,rocket,what takes off?,video6535,159090,15 511,6535,politician,who is speaking?,video6535,159091,15 512,6535,war,what does a reporter watch?,video6535,159092,15 513,6535,speech,what is president jfk giving?,video6535,159093,15 514,6535,speech,what does kennedy deliver?,video6535,159094,15 515,6535,speech,what is a man giving?,video6535,159095,15 516,6535,air,what is a rocket in?,video6535,159096,15 517,6535,reporter,who watches a war?,video6535,159097,15 518,6535,rocket,what is in the air?,video6535,159098,15 519,6535,showcasing,what jfk giving a speech?,video6535,159099,15 520,6535,kennedy,who delivers a speech?,video6535,159100,15 521,6535,speech,what do jfk make on tv?,video6535,159101,15 522,6535,jfk,who make a speech on tv?,video6535,159102,15 523,6535,president,who is talking as a space rocket takes off?,video6535,159103,15 524,6535,shuttle,what is launched?,video6535,159104,15 525,6535,speech,what do a clip showcasing jfk giving?,video6535,159105,15 526,6535,video,what shows a spaceship lifting off?,video6535,159106,15 527,6535,man,who is giving a speech?,video6535,159107,15 528,6535,lift,what is a video shows a spaceship doing?,video6535,159108,15 529,6535,talk,what is footage of john f kennedy doing?,video6535,159109,15 530,6535,talk,what is president kennedy doing?,video6535,159110,15 531,6535,watch,what is doing?,video6535,159111,15 532,6535,use,what is a shot of a space launch doing?,video6535,159112,15 533,6535,speak,what is a politician doing?,video6535,159113,15 534,6536,amazing,what are soccer players making?,video6536,159114,3 535,6536,ground,what are football players running in?,video6536,159115,3 536,6536,stand,what is a group of soccer players doing?,video6536,159116,3 537,6536,soccer,what highlights are shown?,video6536,159117,3 538,6536,soccer,what highlights are playing?,video6536,159118,3 539,6536,play,what is messi doing?,video6536,159119,3 540,6536,pose,what are a group of soccer players doing?,video6536,159120,3 541,6536,soccer,what do people play?,video6536,159121,3 542,6536,play,what are people doing?,video6536,159122,3 543,6536,play,what are soccer highlights doing?,video6536,159123,3 544,6536,field,what a group of soccer players standing behind a group of children on?,video6536,159124,3 545,6536,field,where a group of soccer players standing behind a group of children?,video6536,159125,3 546,6536,soccer,who are standing behind children?,video6536,159126,3 547,6536,soccer,who are making amazing plays?,video6536,159127,3 548,6536,football,who are running in the ground?,video6536,159128,3 549,6536,soccer,who are standing together with kids?,video6536,159129,3 550,6536,soccer,who say no to racism?,video6536,159130,3 551,6536,stand,what is soccer players doing?,video6536,159131,3 552,6537,car,what do a boy and man prepare to drive in while another man talks?,video6537,159132,10 553,6537,boy,who does an instructor teach how to drive with a standard shift?,video6537,159133,10 554,6537,teenage,who is a man teaching how to drive a car with a manual transmission?,video6537,159134,10 555,6537,instructor,who teaches a boy how to drive with a standard shift?,video6537,159135,10 556,6537,man,who is learning how to manually shift gears in an automobile on flat land and on an upgrade?,video6537,159136,10 557,6537,man,who is narrating what a boy sitting in the driving seat are doing?,video6537,159137,10 558,6537,man,who explains another person on how to drive a car?,video6537,159138,10 559,6537,man,who is teaching a teenage boy how to drive a car with a manual transmission?,video6537,159139,10 560,6537,man,who is learning how to drive a lime green car?,video6537,159140,10 561,6537,man,who is teaching his son to drive in a new car?,video6537,159141,10 562,6537,teach,what is an older man doing?,video6537,159142,10 563,6537,learn,what is a young man doing?,video6537,159143,10 564,6537,teach,what is a man doing?,video6537,159144,10 565,6537,sit,what is a man in blue shirt explains how to drive a car to a boy doing?,video6537,159145,10 566,6537,sit,what is two men doing?,video6537,159146,10 567,6537,learn,what is one man doing?,video6537,159147,10 568,6537,describe,what is two guys in a car doing?,video6537,159148,10 569,6537,teach,what is an adult doing?,video6537,159149,10 570,6537,teach,what is a son seems to be doing?,video6537,159150,10 571,6537,drive,what is two men in blue shirt are test doing?,video6537,159151,10 572,6537,drive,what are two people doing?,video6537,159152,10 573,6537,man,who talks?,video6537,159153,10 574,6537,two,how many people are driving their new green car?,video6537,159154,10 575,6537,two,how many men are in the car and test driving it?,video6537,159155,10 576,6537,car,what are two men in blue shirt test driving?,video6537,159156,10 577,6537,student,who is slowly about to pull out from the curb?,video6537,159157,10 578,6537,test,what are two men in blue shirt driving the new car?,video6537,159158,10 579,6537,son,who is a man teaching to drive in a new car?,video6537,159159,10 580,6538,shake,what is a brown horse doing?,video6538,159160,13 581,6538,eat,what is a horse doing?,video6538,159161,13 582,6538,nod,what is a horse doing?,video6538,159162,13 583,6538,stand,what is a horse doing?,video6538,159163,13 584,6538,show,what is a horse doing?,video6538,159164,13 585,6538,move,what is closeup of a horse doing?,video6538,159165,13 586,6538,lick,what is video of a horse nodding and doing?,video6538,159166,13 587,6538,bob,what is a horse doing?,video6538,159167,13 588,6538,head,what does a horse bob?,video6538,159168,13 589,6538,horse,what is bobbing it s head up and down?,video6538,159169,13 590,6538,horse,what is standing?,video6538,159170,13 591,6538,horse,what nods?,video6538,159171,13 592,6538,horse,what licks?,video6538,159172,13 593,6538,horse,what was tethered?,video6538,159173,13 594,6538,horse,what is eating?,video6538,159174,13 595,6538,head,what does a horse nod?,video6538,159175,13 596,6538,head,what does a brown horse nod?,video6538,159176,13 597,6538,head,what is a horse nodding?,video6538,159177,13 598,6538,head,what did a horse nod?,video6538,159178,13 599,6538,head,what does a horse in a stable nod?,video6538,159179,13 600,6538,horse,what is nodding its head?,video6538,159180,13 601,6538,head,what does a horse bob at the camera?,video6538,159181,13 602,6538,head,what does a brown horse shaking it s up and down?,video6538,159182,13 603,6538,head,what is a horse bobbing it s up and down?,video6538,159183,13 604,6538,horse,what is nodding at the camera?,video6538,159184,13 605,6538,camera,what is a horse nodding at?,video6538,159185,13 606,6538,horse,what bobs its head?,video6538,159186,13 607,6538,horse,what do a close up video of?,video6538,159187,13 608,6539,scream,what is cartoon children doing?,video6539,159188,8 609,6539,play,what is a cartoon boy doing?,video6539,159189,8 610,6539,talk,what is a cartoon character doing?,video6539,159190,8 611,6539,freak,what is a cartoon man doing?,video6539,159191,8 612,6539,ask,what is a clip from a video game is shown where a man is scared and doing?,video6539,159192,8 613,6539,experience,what is a man doing?,video6539,159193,8 614,6539,interact,what are cartoon characters doing?,video6539,159194,8 615,6539,bunny,who is a cartoon man scared by?,video6539,159195,8 616,6539,man,who fear through cartoon animation?,video6539,159196,8 617,6539,cartoon,what is scared?,video6539,159197,8 618,6539,character,who is talking?,video6539,159198,8 619,6539,character,who is crying?,video6539,159199,8 620,6539,cartoon,who are interacting?,video6539,159200,8 621,6539,cartoon,who is scared?,video6539,159201,8 622,6539,man,who began to cry?,video6539,159202,8 623,6539,cartoon,who attacks player?,video6539,159203,8 624,6539,cartoon,who is playing a game?,video6539,159204,8 625,6539,animation,what do a man experiencing fear through?,video6539,159205,8 626,6539,game,what is a cartoon boy playing?,video6539,159206,8 627,6539,player,who does cartoon evil bunny attack?,video6539,159207,8 628,6539,cartoon,who is freaking out about a skeleton?,video6539,159208,8 629,6539,cartoon,who is scared by a bunny?,video6539,159209,8 630,6539,cartoon,who cries when the game is over?,video6539,159210,8 631,6539,skeleton,what is a cartoon man freaking out about?,video6539,159211,8 632,6540,show,what is a behind the scenes clip from thor or the avengers doing?,video6540,159212,7 633,6540,film,what is a man doing?,video6540,159213,7 634,6540,loki,who prepares to be filmed?,video6540,159214,7 635,6540,stand,what is a man doing?,video6540,159215,7 636,6540,film,what are actors doing?,video6540,159216,7 637,6540,shoot,what is man in costume doing?,video6540,159217,7 638,6540,film,what is this shows loki behind the scenes of doing?,video6540,159218,7 639,6540,loki,who prepares for a movie scene?,video6540,159219,7 640,6540,play,what is tom hiddleston doing?,video6540,159220,7 641,6540,prepare,what is a man doing?,video6540,159221,7 642,6540,man,who is preparing for a movie scene?,video6540,159222,7 643,6540,set,what does the man use the clappers on?,video6540,159223,7 644,6540,movie,what is being filmed?,video6540,159224,7 645,6540,tom,who hiddleston playing the role of loki in a movie?,video6540,159225,7 646,6540,tom,who hiddleston being filmed in his role of loki?,video6540,159226,7 647,6540,loki,who does a behind the scenes clip from thor or the avengers showing?,video6540,159227,7 648,6540,man,who is filming another man in an outfit?,video6540,159228,7 649,6540,man,who is standing in costume for a marvel movie?,video6540,159229,7 650,6540,scene,what does an actor who portrays the movie character loki wait to record?,video6540,159230,7 651,6540,loki,who do tom hiddleston playing the role of in a movie?,video6540,159231,7 652,6540,movie,what do tom hiddleston playing the role of loki in?,video6540,159232,7 653,6540,movie,what are actors filming for?,video6540,159233,7 654,6540,actor,who is getting ready to play his scene as loki?,video6540,159234,7 655,6540,man,who uses the clappers on the set?,video6540,159235,7 656,6541,talk,what is a man doing?,video6541,159236,3 657,6541,oppose,what is a comparison of two doing?,video6541,159237,3 658,6541,play,what is a person doing?,video6541,159238,3 659,6541,sprint,what is a football player doing?,video6541,159239,3 660,6541,two,how many football players are running?,video6541,159240,3 661,6541,game,what is a person playing?,video6541,159241,3 662,6541,man,who runs?,video6541,159242,3 663,6541,person,who is playing a game?,video6541,159243,3 664,6541,man,who comments on two football players?,video6541,159244,3 665,6541,field,what is a football player sprinting down?,video6541,159245,3 666,6541,run,what is a man being timed in?,video6541,159246,3 667,6541,man,who is being timed in a run?,video6541,159247,3 668,6541,football,who is sprinting down a field?,video6541,159248,3 669,6541,man,who compares the speed of two football players?,video6541,159249,3 670,6542,lead,what does a lady athlete running a track event take?,video6542,159250,3 671,6542,race,what is a woman in a red shirt finishing up?,video6542,159251,3 672,6542,athlete,who is running a 100 meter coming first in the race?,video6542,159252,3 673,6542,track,what is the woman runner running on while the audience is watching it?,video6542,159253,3 674,6542,finish,what is a woman in a red shirt doing?,video6542,159254,3 675,6542,lady,who is practicing a running race alone the ground?,video6542,159255,3 676,6542,pink,what is the athlete player running in the ground wearing?,video6542,159256,3 677,6542,meter,what is a female athlete running running race?,video6542,159257,3 678,6542,track,what is a woman in black shorts running on?,video6542,159258,3 679,6542,athlete,who is running a 100 meter running race?,video6542,159259,3 680,6542,track,what is a woman with black shorts sprinting down?,video6542,159260,3 681,6542,runner,who is running on the track while the audience is watching it?,video6542,159261,3 682,6542,end,where is the woman in red shirt running fast?,video6542,159262,3 683,6542,end,what is the woman in red shirt running fast on?,video6542,159263,3 684,6542,practice,what is a single lady doing?,video6542,159264,3 685,6542,sprint,what is a woman with black shorts doing?,video6542,159265,3 686,6542,meter,what is a female athlete running coming first in the race?,video6542,159266,3 687,6542,running,what is a single lady practicing alone the ground?,video6542,159267,3 688,6542,audience,what is watching a track?,video6542,159268,3 689,6542,audience,what watches?,video6542,159269,3 690,6542,track,what is the audience watching?,video6542,159270,3 691,6543,fight,what are poor kids doing?,video6543,159271,7 692,6543,talk,what is two women doing?,video6543,159272,7 693,6543,play,what is a clip from a movie doing?,video6543,159273,7 694,6543,hit,what is a crowd of people are gathered around and someone doing?,video6543,159274,7 695,6543,push,what is a little girl doing?,video6543,159275,7 696,6543,stand,what is a man doing?,video6543,159276,7 697,6543,fight,what is some kids doing?,video6543,159277,7 698,6543,push,what is kid doing?,video6543,159278,7 699,6543,fight,what are small children doing?,video6543,159279,7 700,6543,push,what is a young girl doing?,video6543,159280,7 701,6543,someone,who is hitting a kid with a sack?,video6543,159281,7 702,6543,man,who is standing?,video6543,159282,7 703,6543,child,who runs away with a friend before an adult arrives?,video6543,159283,7 704,6543,girl,who did a little girl pushing around other children and a man rescue from another man?,video6543,159284,7 705,6543,man,who did a little girl pushing around other children and a man rescue a girl from?,video6543,159285,7 706,6543,kid,who is someone hitting with a sack?,video6543,159286,7 707,6543,child,who pushes another child?,video6543,159287,7 708,6543,village,what are people running a movie scene is going of?,video6543,159288,7 709,6543,movie,what are people running is going of village?,video6543,159289,7 710,6543,sack,what is someone hitting a kid with?,video6543,159290,7 711,6543,man,who gets hit waith sand bag?,video6543,159291,7 712,6543,kid,who shoves another child?,video6543,159292,7 713,6543,child,who does a child push?,video6543,159293,7 714,6543,child,who does a kid shove?,video6543,159294,7 715,6543,waith,what does man get hit?,video6543,159295,7 716,6543,man,who is attacked with a heavy bag?,video6543,159296,7 717,6544,hat,what is a man holding?,video6544,159297,7 718,6544,man,who is holding a hat?,video6544,159298,7 719,6544,stage,when are some men performing?,video6544,159299,7 720,6544,skit,what are people preforming on stage?,video6544,159300,7 721,6544,three,how many men are performing a show in front of a crowd?,video6544,159301,7 722,6544,stage,when are people preforming a skit?,video6544,159302,7 723,6544,audience,what is a man talking to a man about?,video6544,159303,7 724,6544,show,what are three men performing in front of a crowd?,video6544,159304,7 725,6544,talk,what a group of indian men giving to a group?,video6544,159305,7 726,6544,man,who is a man talking to about the audience?,video6544,159306,7 727,6544,group,what a group of indian men giving a talk to?,video6544,159307,7 728,6544,soldier,who do two indian men in bandanas talk to?,video6544,159308,7 729,6544,man,who is talking to a man about the audience?,video6544,159309,7 730,6544,man,who is talking?,video6544,159310,7 731,6544,hold,what is a man doing?,video6544,159311,7 732,6544,talk,what is a man doing?,video6544,159312,7 733,6544,talk,what are a military official and two young men doing?,video6544,159313,7 734,6544,preform,what are people doing?,video6544,159314,7 735,6544,perform,what are some men doing?,video6544,159315,7 736,6544,perform,what is some people on stage doing?,video6544,159316,7 737,6544,perform,what are three men doing?,video6544,159317,7 738,6545,man,who add 4cups of stock to the in a kitchen?,video6545,159318,17 739,6545,juice,what is person putting in bigger dish in a kitchen?,video6545,159319,17 740,6545,kitchen,what is person putting the juice in bigger dish in?,video6545,159320,17 741,6545,dish,what is person adding some water into in a kitchen?,video6545,159321,17 742,6545,water,what is person adding into the dish in a kitchen?,video6545,159322,17 743,6545,man,who is explaining how he uses the stock?,video6545,159323,17 744,6545,kitchen,what is person adding some water into the dish in?,video6545,159324,17 745,6545,kitchen,what is yellow liquid being poured into a pot on the stove in?,video6545,159325,17 746,6545,pot,what does a man pour four cups of stock into?,video6545,159326,17 747,6545,broth,what does a man pour into a metal pot?,video6545,159327,17 748,6545,kitchen,what do a man and a bowl pouring mixing dish inside to prepare to serve to eat displaying on screen?,video6545,159328,17 749,6545,dish,what do a man and a bowl pouring mixing inside kitchen to prepare to serve to eat displaying on screen?,video6545,159329,17 750,6545,stock,what is a man inserting inside a pan he states the quality of the stock is important?,video6545,159330,17 751,6545,liquid,what does a male chef add before mixing in other ingredients into a pot?,video6545,159331,17 752,6545,man,who is pouring a color water to the vessel?,video6545,159332,17 753,6545,liquid,what is being poured into a pot on the stove in a kitchen?,video6545,159333,17 754,6545,screen,what do a man and a bowl pouring mixing dish inside kitchen to prepare to serve to eat displaying on?,video6545,159334,17 755,6545,stock,what does a man pour four cups of into a pot?,video6545,159335,17 756,6545,meal,what is person preparing with the ingredients in a kitchen?,video6545,159336,17 757,6545,soup,what does a man in a kitchen prepare?,video6545,159337,17 758,6545,kitchen,what is person preparing the meal with the ingredients in?,video6545,159338,17 759,6545,dish,what is person putting the juice in in a kitchen?,video6545,159339,17 760,6545,stock,what do a man add to the in a kitchen?,video6545,159340,17 761,6545,vessel,what is a man pouring a color water to?,video6545,159341,17 762,6545,kitchen,what is person cooking something delicious in?,video6545,159342,17 763,6545,oil,what are ingredients put in a pan with to boil it?,video6545,159343,17 764,6545,stock,what do a man add 4cups of to the in a kitchen?,video6545,159344,17 765,6545,kitchen,what do a man add 4cups of stock to the in?,video6545,159345,17 766,6545,something,what is person cooking in the kitchen?,video6545,159346,17 767,6545,man,who is preparing a dish?,video6545,159347,17 768,6545,man,who turns up the heat on the stove?,video6545,159348,17 769,6545,dish,what is a man preparing?,video6545,159349,17 770,6545,man,who begins to describe why you should use a good quality of stock?,video6545,159350,17 771,6545,color,what is a man pouring to the vessel?,video6545,159351,17 772,6545,person,who is cooking something delicious in the kitchen?,video6545,159352,17 773,6545,man,who s hand pours chicken stock into a pot in a kitchen?,video6545,159353,17 774,6545,discus,what is a man pours four cups of chicken stock into a pan while doing?,video6545,159354,17 775,6545,pmy,what is a man doing?,video6545,159355,17 776,6545,mix,what is a male chef adds a liquid before doing?,video6545,159356,17 777,6545,insert,what is a man doing?,video6545,159357,17 778,6545,talk,what is a man puts four cups of stack into his pan while doing?,video6545,159358,17 779,6545,prepare,what is a man doing?,video6545,159359,17 780,6545,prepare,what is in a kitchen person doing?,video6545,159360,17 781,6545,cook,what is person doing?,video6545,159361,17 782,6545,pmy,what is a man and a bowl doing?,video6545,159362,17 783,6545,mix,what is a man and a pouring bowl vegetables on table doing?,video6545,159363,17 784,6545,pot,what does a man s hand pours chicken stock into in a kitchen?,video6545,159364,17 785,6545,kitchen,what does a man s hand pours chicken stock into a pot in?,video6545,159365,17 786,6545,put,what is in a kitchen person doing?,video6545,159366,17 787,6545,man,who pours yellow broth into a metal pot?,video6545,159367,17 788,6545,hand,what does a man s pours chicken stock into a pot in a kitchen?,video6545,159368,17 789,6545,person,who is adding some water into the dish in a kitchen?,video6545,159369,17 790,6545,man,who pours four cups of chicken stock into a pan while discussing the importance of the quality of the stock?,video6545,159370,17 791,6545,man,who pours four cups of stock into a pot?,video6545,159371,17 792,6545,person,who is putting the juice in bigger dish in a kitchen?,video6545,159372,17 793,6545,man,who adds four cups of chicken stock to pan?,video6545,159373,17 794,6545,person,who is preparing the meal with the ingredients in a kitchen?,video6545,159374,17 795,6545,male,who adds a liquid before mixing in other ingredients into a pot?,video6545,159375,17 796,6545,man,who is inserting stock inside a pan he states the quality of the stock is important?,video6545,159376,17 797,6545,man,who adds four cups of chicken stock to discusses the need for a high quality stock?,video6545,159377,17 798,6545,chicken,what does a man s hand pours into a pot in a kitchen?,video6545,159378,17 799,6546,someone,who is demonstrating the voice dialing of a car?,video6546,159379,9 800,6546,man,who is explaining the specifications of a car?,video6546,159380,9 801,6546,phone,what does a man using the hands free voice command in his car to make?,video6546,159381,9 802,6546,man,who describes the options on his car s steering wheel?,video6546,159382,9 803,6546,car,what is someone demonstrating the voice dialing of?,video6546,159383,9 804,6546,car,what does a man using the hands free voice command in to make a phone call?,video6546,159384,9 805,6546,man,who uses voice activated phone in car?,video6546,159385,9 806,6546,phone,what does man use voice activated in car?,video6546,159386,9 807,6546,car,what does man use voice activated phone in?,video6546,159387,9 808,6546,man,who does a person tell what the buttons on a steering wheel do?,video6546,159388,9 809,6546,person,who tells a man what the buttons on a steering wheel do?,video6546,159389,9 810,6546,talk,what is a person doing?,video6546,159390,9 811,6546,man,who explains the various buttons on a steering wheel?,video6546,159391,9 812,6546,talk,what is two women doing?,video6546,159392,9 813,6546,demonstrate,what is someone doing?,video6546,159393,9 814,6546,review,what is guy doing?,video6546,159394,9 815,6546,steer,what is a doing?,video6546,159395,9 816,6546,push,what is a person doing?,video6546,159396,9 817,6546,drive,what is a person doing?,video6546,159397,9 818,6546,use,what is a man doing?,video6546,159398,9 819,6546,show,what is a man doing?,video6546,159399,9 820,6546,explain,what is a man doing?,video6546,159400,9 821,6546,steer,what is a man describes the options on his car s doing?,video6546,159401,9 822,6546,person,who is pushing buttons on a car steering wheel?,video6546,159402,9 823,6546,person,who is talking inside the car?,video6546,159403,9 824,6546,car,what is a man explaining the specifications of?,video6546,159404,9 825,6546,man,who drives his gmc?,video6546,159405,9 826,6546,person,who is driving a car?,video6546,159406,9 827,6546,car,what is a person talking inside?,video6546,159407,9 828,6546,car,what is a person driving?,video6546,159408,9 829,6546,gmc,who does a man drive?,video6546,159409,9 830,6547,man,who is cooking?,video6547,159410,16 831,6547,recipe,what is prepared?,video6547,159411,16 832,6547,show,what is someone doing?,video6547,159412,16 833,6547,describe,what is man doing?,video6547,159413,16 834,6547,lift,what is man demonstrates how to mix food in a pan without doing?,video6547,159414,16 835,6547,cook,what is a man doing?,video6547,159415,16 836,6547,talk,what is a man doing?,video6547,159416,16 837,6547,show,what is a man doing?,video6547,159417,16 838,6547,flip,what is a man doing?,video6547,159418,16 839,6547,prepare,what is a person doing?,video6547,159419,16 840,6547,cooking,what cheetos?,video6547,159420,16 841,6547,someone,who is showing food recipe?,video6547,159421,16 842,6547,man,who is talking while tossing food in a pan?,video6547,159422,16 843,6547,man,who is showing frying technique?,video6547,159423,16 844,6547,person,who is preparing some food?,video6547,159424,16 845,6547,man,who shows how to flip food in a cooking pan?,video6547,159425,16 846,6547,man,who demonstrates how to mix food in a pan without lifting the pan off the cutting board?,video6547,159426,16 847,6547,food,what is a person preparing?,video6547,159427,16 848,6547,recipe,what is someone showing?,video6547,159428,16 849,6547,technique,what is a man showing?,video6547,159429,16 850,6548,voice,what is a girl on?,video6548,159430,14 851,6548,girl,who are two men encouraging?,video6548,159431,14 852,6548,talk,what is a 9 year old girl doing?,video6548,159432,14 853,6548,introduce,what is a girl doing?,video6548,159433,14 854,6548,answer,what is a kid doing?,video6548,159434,14 855,6548,encourage,what are two men doing?,video6548,159435,14 856,6548,kid,who is answering questions?,video6548,159436,14 857,6548,two,how many men are encouraging a girl?,video6548,159437,14 858,6548,performance,what did abigail being applaud for on the voice kids?,video6548,159438,14 859,6548,voice,what do a 9 year old girl talking to the judges from the television show?,video6548,159439,14 860,6548,girl,who do judges on the voice interview an asian?,video6548,159440,14 861,6548,girl,who talks to the judges on the voice?,video6548,159441,14 862,6548,female,who do judges interview?,video6548,159442,14 863,6548,girl,who is on the voice?,video6548,159443,14 864,6548,girl,who do judges talk to?,video6548,159444,14 865,6549,something,what is a woman pouring into a pot?,video6549,159445,17 866,6549,woman,who is pouring something into a pot?,video6549,159446,17 867,6549,stove,what does a tiny pot of water boil on?,video6549,159447,17 868,6549,water,what is brought to boil in a tiny pot?,video6549,159448,17 869,6549,cook,what is a person doing?,video6549,159449,17 870,6549,someone,who is adding water and cheese into a boiling pot?,video6549,159450,17 871,6549,cheese,what is someone adding into a boiling pot?,video6549,159451,17 872,6549,sit,what are four young girls doing?,video6549,159452,17 873,6549,boil,what is doing?,video6549,159453,17 874,6549,pmy,what is a woman doing?,video6549,159454,17 875,6549,cook,what is a woman doing?,video6549,159455,17 876,6549,use,what is a person doing?,video6549,159456,17 877,6549,woman,who is cooking food on a small stove?,video6549,159457,17 878,6549,food,what is a woman cooking on a small stove?,video6549,159458,17 879,6549,food,what is a person making in the kitchen?,video6549,159459,17 880,6549,pot,what is a woman pouring something into?,video6549,159460,17 881,6549,kitchen,what is a person making food in?,video6549,159461,17 882,6549,woman,who cooks a tiny meal?,video6549,159462,17 883,6549,person,who is making food in the kitchen?,video6549,159463,17 884,6549,four,how many young girls are sitting?,video6549,159464,17 885,6549,four,how many young girls are laughing?,video6549,159465,17 886,6549,meal,what a woman cooks?,video6549,159466,17 887,6549,person,who adds pasta?,video6549,159467,17 888,6549,person,who boils water?,video6549,159468,17 889,6549,water,what does person boil?,video6549,159469,17 890,6549,pastum,what does person add?,video6549,159470,17 891,6549,person,who is using a tiny pot?,video6549,159471,17 892,6549,pot,what is a person using?,video6549,159472,17 893,6550,describe,what is man doing?,video6550,159473,9 894,6550,talk,what is a man doing?,video6550,159474,9 895,6550,drive,what is a man doing?,video6550,159475,9 896,6550,man,who test driving car?,video6550,159476,9 897,6550,man,who is driving?,video6550,159477,9 898,6550,man,who is driving a car?,video6550,159478,9 899,6550,man,who is talking while driving?,video6550,159479,9 900,6550,car,what do man test driving?,video6550,159480,9 901,6550,car,what is a man driving?,video6550,159481,9 902,6550,man,who talks about cars?,video6550,159482,9 903,6550,experience,what is a man describing in a red car on a closed race track?,video6550,159483,9 904,6550,car,what does a man drive around the test track?,video6550,159484,9 905,6550,man,who drives the car around the test track?,video6550,159485,9 906,6550,man,who is talking about the specs of a vehicle?,video6550,159486,9 907,6550,man,who is describing his experience in a red car on a closed race track?,video6550,159487,9 908,6550,guy,who reviews a honda civic for autoguide?,video6550,159488,9 909,6550,person,who is riding carand giving answer to questions?,video6550,159489,9 910,6550,civic,what do a man doing a car review on?,video6550,159490,9 911,6551,talk,what is a man with an umbrella doing?,video6551,159491,3 912,6551,wear,what is a man doing?,video6551,159492,3 913,6551,use,what is a person doing?,video6551,159493,3 914,6551,prepare,what are four women doing?,video6551,159494,3 915,6551,react,what are judges doing?,video6551,159495,3 916,6551,watch,what are people doing?,video6551,159496,3 917,6551,watch,what are simon cowell and others doing?,video6551,159497,3 918,6551,perform,what is swimmers doing?,video6551,159498,3 919,6551,talk,what are television program hosts doing?,video6551,159499,3 920,6551,talk,what is a man doing?,video6551,159500,3 921,6551,judge,what is simon cowell doing?,video6551,159501,3 922,6551,watch,what is a group of judges doing?,video6551,159502,3 923,6551,water,what are four women preparing to perform in?,video6551,159503,3 924,6551,clip,what is shown from a talent show?,video6551,159504,3 925,6551,act,what is a group of judges watching?,video6551,159505,3 926,6551,man,who is watching a game show in the rain?,video6551,159506,3 927,6551,game,what is a man watching in the rain?,video6551,159507,3 928,6551,rain,what is a man watching a game show in?,video6551,159508,3 929,6551,four,how many women are preparing to perform in the water?,video6551,159509,3 930,6551,cowell,who sits in judgement of a talent show?,video6551,159510,3 931,6551,man,who is talking?,video6551,159511,3 932,6551,show,what do simon cowell judging?,video6551,159512,3 933,6551,performance,what do people judge?,video6551,159513,3 934,6551,simon,who cowell judging his show?,video6551,159514,3 935,6551,competition,what are simon cowell and others watching?,video6551,159515,3 936,6551,television,who are talking about contestants?,video6551,159516,3 937,6552,wear,what was the man doing?,video6552,159517,5 938,6552,balance,what is a man in glasses talks about education doing?,video6552,159518,5 939,6552,talk,what is a person with brown dress doing?,video6552,159519,5 940,6552,talk,what is the vivacious young man doing?,video6552,159520,5 941,6552,sit,what is a boy doing?,video6552,159521,5 942,6552,talk,what is a man with a blazer and glasses doing?,video6552,159522,5 943,6552,balance,what is a man in dark rimmed glasses gives a talk about doing?,video6552,159523,5 944,6552,solve,what is a thin man with glasses speaks about equations and gives advice on doing?,video6552,159524,5 945,6552,balance,what is a man explains what doing?,video6552,159525,5 946,6552,wear,what is there is a men doing?,video6552,159526,5 947,6552,discus,what is a man with brown over coat and spectacles doing?,video6552,159527,5 948,6552,explain,what is a man doing?,video6552,159528,5 949,6552,sit,what is a man in glasses doing?,video6552,159529,5 950,6552,wear,what is a man with narrow eyeglasses doing?,video6552,159530,5 951,6552,something,what is a man with brown over coat and spectacles discussing?,video6552,159531,5 952,6552,man,who is explain biology equation?,video6552,159532,5 953,6552,equation,what is the vivacious young man talking about balancing here?,video6552,159533,5 954,6552,chemistry,what is a man wearing glasses talking to the camera about?,video6552,159534,5 955,6552,man,who explains how important there is to do so?,video6552,159535,5 956,6552,man,who explains what balancing equations?,video6552,159536,5 957,6552,equation,what is a man explain?,video6552,159537,5 958,6552,equation,what is a man?,video6552,159538,5 959,6552,man,who was wearing glasses and a brown sport coat?,video6552,159539,5 960,6552,education,what does a man in glasses talk about balancing with many hand motions?,video6552,159540,5 961,6552,man,who is explaining stoichiometry using examples to the need of balancing equations?,video6552,159541,5 962,6552,man,who is how a baby is born from father and mother?,video6552,159542,5 963,6552,stoichiometry,what is a man explaining using examples to the need of balancing equations?,video6552,159543,5 964,6552,chemical,what are compared to having a baby by a man?,video6552,159544,5 965,6552,camera,what is a man wearing glasses talking to about chemistry?,video6552,159545,5 966,6553,drive,what is a person doing?,video6553,159546,9 967,6553,drive,what is the man in blue doing?,video6553,159547,9 968,6553,drive,what is a man doing?,video6553,159548,9 969,6553,drive,what is a man in a blue shirt doing?,video6553,159549,9 970,6553,describe,what is the man in blue doing?,video6553,159550,9 971,6553,drive,what is person doing?,video6553,159551,9 972,6553,film,what is someone doing?,video6553,159552,9 973,6553,person,who is driving his car carefully near the river?,video6553,159553,9 974,6553,jeep,what does a person drive on a trail in a jungle?,video6553,159554,9 975,6553,highway,what is a man riding down in a red car?,video6553,159555,9 976,6553,person,who drives a jeep on a trail in a jungle?,video6553,159556,9 977,6553,car,what does a man with blue shirt drive?,video6553,159557,9 978,6553,car,what is a man in a blue shirt driving?,video6553,159558,9 979,6553,car,what does the interior explain the man in blue is driving?,video6553,159559,9 980,6553,interior,what explains the man in blue is showing?,video6553,159560,9 981,6553,dashboard,what does a man driving a volkswagen discuss the boring look of?,video6553,159561,9 982,6553,someone,who is filming the interior of a car?,video6553,159562,9 983,6553,interior,what explains the man in blue is driving a red car?,video6553,159563,9 984,6553,man,who is riding down the highway in a red car?,video6553,159564,9 985,6553,car,what is someone filming the interior of?,video6553,159565,9 986,6553,man,who drives the vw on an overcast day and taps on the dashboard in a disapproving manor?,video6553,159566,9 987,6553,car,what is reviewed?,video6553,159567,9 988,6553,demonstrator,who are the advantages of the dashboard and the vehicles facilities explained by?,video6553,159568,9 989,6553,guy,who drives?,video6553,159569,9 990,6553,interior,what is not found to be very exhilirating?,video6553,159570,9 991,6553,car,what is person driving carefully near the river?,video6553,159571,9 992,6553,guy,who reviews?,video6553,159572,9 993,6553,river,what is person driving his car carefully near?,video6553,159573,9 994,6553,volkswagen,who is the man in blue describing driving experience?,video6553,159574,9 995,6553,car,what is driven carefully on rainy day?,video6553,159575,9 996,6553,day,when is the red car driven carefully?,video6553,159576,9 997,6554,shoot,what is a bunch of men doing?,video6554,159577,7 998,6554,shoot,what are a group of men doing?,video6554,159578,7 999,6554,drive,what is a man doing?,video6554,159579,7 1000,6554,use,what is a person doing?,video6554,159580,7 1001,6554,man,who is riding a bike?,video6554,159581,7 1002,6554,man,who is shooting a gun at the same time?,video6554,159582,7 1003,6554,man,who rides a motorcycle down the road?,video6554,159583,7 1004,6554,person,who is using a shotgun on the street?,video6554,159584,7 1005,6554,gate,what does a man rides on a motorcycle and shoot towards when a target appears while men are being hit by shots?,video6554,159585,7 1006,6554,gun,what is a man shooting at the same time?,video6554,159586,7 1007,6554,load,what are different clips from movies where people doing?,video6554,159587,7 1008,6554,handle,what was everyone doing?,video6554,159588,7 1009,6554,shoot,what are men doing?,video6554,159589,7 1010,6554,shoot,what are people doing?,video6554,159590,7 1011,6554,firearm,what was everyone handling?,video6554,159591,7 1012,6554,bike,what is a man riding?,video6554,159592,7 1013,6554,gun,what are some guys loading?,video6554,159593,7 1014,6554,road,what are some guys shooting in?,video6554,159594,7 1015,6554,everyone,what was handling a firearm?,video6554,159595,7 1016,6554,load,what are some guys doing?,video6554,159596,7 1017,6554,shoot,what is there are several different men doing?,video6554,159597,7 1018,6554,show,what is video doing?,video6554,159598,7 1019,6554,load,what is various people doing?,video6554,159599,7 1020,6555,field,what are soccer players fighting on?,video6555,159600,3 1021,6555,game,what are athletes celebrating after?,video6555,159601,3 1022,6555,field,what do soccer players fight on?,video6555,159602,3 1023,6555,game,what does a sport with people?,video6555,159603,3 1024,6555,someone,what does a soccer player drop kick?,video6555,159604,3 1025,6555,soccer,who fight on the field?,video6555,159605,3 1026,6555,man,who is jumping?,video6555,159606,3 1027,6555,person,who is running?,video6555,159607,3 1028,6555,soccer,who are fighting on the field?,video6555,159608,3 1029,6555,field,what is a game being played on?,video6555,159609,3 1030,6555,field,where is a game being played?,video6555,159610,3 1031,6555,music,what do a sports montage video with?,video6555,159611,3 1032,6555,field,where do soccer players fight?,video6555,159612,3 1033,6555,field,where are soccer players fighting?,video6555,159613,3 1034,6555,game,what is being played on a field?,video6555,159614,3 1035,6555,video,what do a sports montage with loud music?,video6555,159615,3 1036,6555,fight,what are soccer players doing?,video6555,159616,3 1037,6555,celebrate,what are athletes doing?,video6555,159617,3 1038,6555,sport,what is a video of sport clips of fights during doing?,video6555,159618,3 1039,6555,jump,what is a man doing?,video6555,159619,3 1040,6555,fight,what are a group of people and police doing?,video6555,159620,3 1041,6555,fight,what is a video of athletes doing?,video6555,159621,3 1042,6556,firing,what are military men?,video6556,159622,0 1043,6556,battle,what do soldiers train for?,video6556,159623,0 1044,6556,training,what did soldiers engage in?,video6556,159624,0 1045,6556,nurse,who are soldiers talking are being treated by?,video6556,159625,0 1046,6556,london,what does a white boat on the thames?,video6556,159626,0 1047,6556,movie,what are a group of soldiers shown in?,video6556,159627,0 1048,6556,world,what do a movie in which soldiers experience?,video6556,159628,0 1049,6556,converastion,who are a group of soldiers having?,video6556,159629,0 1050,6556,play,what is a clip from a movie doing?,video6556,159630,0 1051,6556,shoot,what is a man doing?,video6556,159631,0 1052,6556,feature,what is footage of a ww2 movie doing?,video6556,159632,0 1053,6556,fire,what are military men doing?,video6556,159633,0 1054,6556,talk,what are soldiers doing?,video6556,159634,0 1055,6557,meal,what does man add cinnamon to?,video6557,159635,17 1056,6557,kitchen,what is a man cooking in?,video6557,159636,17 1057,6557,dish,what was the chef preparing?,video6557,159637,17 1058,6557,pot,what does man make soup in?,video6557,159638,17 1059,6557,soup,what does man make in pot?,video6557,159639,17 1060,6557,man,who makes soup in pot?,video6557,159640,17 1061,6557,man,who adds cinnamon to his meal?,video6557,159641,17 1062,6557,chef,who was preparing a dish?,video6557,159642,17 1063,6557,man,who explains how to make soup?,video6557,159643,17 1064,6557,man,who is giving a tutorial on a recipe on television?,video6557,159644,17 1065,6557,man,who is cooking with spices in a pot in the kitchen?,video6557,159645,17 1066,6557,man,who speaks to a camera in a kitchen?,video6557,159646,17 1067,6557,guy,who throws spices into a liquid?,video6557,159647,17 1068,6557,pot,what does a guy in a kitchen add ingredients to?,video6557,159648,17 1069,6557,liquid,what does guy throw spices into?,video6557,159649,17 1070,6557,man,who is cooking in a kitchen?,video6557,159650,17 1071,6557,person,who is cooking?,video6557,159651,17 1072,6557,cook,what is person doing?,video6557,159652,17 1073,6557,discus,what is a chief doing?,video6557,159653,17 1074,6557,cook,what is a man doing?,video6557,159654,17 1075,6557,prepare,what is a man doing?,video6557,159655,17 1076,6557,cook,what is a person doing?,video6557,159656,17 1077,6557,prepare,what is chef doing?,video6557,159657,17 1078,6557,cook,what is guy doing?,video6557,159658,17 1079,6557,prepare,what was the chef doing?,video6557,159659,17 1080,6558,rubik,what does scene show person s fingers attempting to line up squares on s cube?,video6558,159660,10 1081,6558,person,who does scene show s fingers attempting to line up squares on a rubik s cube?,video6558,159661,10 1082,6558,rubix,what is someone using?,video6558,159662,10 1083,6558,person,who works on a 4 by 4 rubix cube?,video6558,159663,10 1084,6558,cube,what does scene show person s fingers attempting to line up squares on a rubik s?,video6558,159664,10 1085,6558,person,who begins on a rubik s cube?,video6558,159665,10 1086,6558,cube,what does a person attempting to solve a rubik s?,video6558,159666,10 1087,6558,someone,who is using a rubix cube?,video6558,159667,10 1088,6558,cube,what does a person playing with rubiks?,video6558,159668,10 1089,6558,cube,what does a person solving a rubic s?,video6558,159669,10 1090,6558,person,who plays with a rubix cube?,video6558,159670,10 1091,6558,person,who is playing with rubix cube?,video6558,159671,10 1092,6558,boy,who manipulates a very large rubicks cube?,video6558,159672,10 1093,6558,someone,what is trying to solve a rubiks cube?,video6558,159673,10 1094,6558,person,who is playing with a rubix cube?,video6558,159674,10 1095,6558,rubix,what is person playing with?,video6558,159675,10 1096,6558,use,what is someone doing?,video6558,159676,10 1097,6558,attempt,what is a person doing?,video6558,159677,10 1098,6558,play,what is a person doing?,video6558,159678,10 1099,6558,solve,what is a person doing?,video6558,159679,10 1100,6558,try,what is an individual doing?,video6558,159680,10 1101,6558,play,what is person doing?,video6558,159681,10 1102,6558,attempt,what is scene shows person s fingers doing?,video6558,159682,10 1103,6558,solve,what is doing?,video6558,159683,10 1104,6558,demonstrate,what is someone doing?,video6558,159684,10 1105,6558,scene,what shows person s fingers attempting to line up squares on a rubik s cube?,video6558,159685,10 1106,6559,couple,what is watching videos?,video6559,159686,3 1107,6559,woman,who is skipping across a field?,video6559,159687,3 1108,6559,two,how many persons are watching their videos?,video6559,159688,3 1109,6559,two,how many people are talking on a couch?,video6559,159689,3 1110,6559,laptop,what do people watch a woman skipping across a field on?,video6559,159690,3 1111,6559,field,what do people watch a woman skipping across on a laptop?,video6559,159691,3 1112,6559,person,who is explaining something?,video6559,159692,3 1113,6559,someone,what is a couple watching a video of skipping across a field?,video6559,159693,3 1114,6559,field,what is a woman skipping across?,video6559,159694,3 1115,6559,couch,what are two people talking on?,video6559,159695,3 1116,6559,video,what are people watching?,video6559,159696,3 1117,6559,something,what is a person explaining?,video6559,159697,3 1118,6559,person,who skips?,video6559,159698,3 1119,6559,woman,who do people watch skipping across a field on a laptop?,video6559,159699,3 1120,6559,couple,what is watching a video of someone skipping across a field?,video6559,159700,3 1121,6559,watch,what is a couple doing?,video6559,159701,3 1122,6559,skip,what is a couple watch a video of a girl doing?,video6559,159702,3 1123,6559,skip,what is a couple watches a video of a girl doing?,video6559,159703,3 1124,6559,watch,what is a girl doing?,video6559,159704,3 1125,6559,laugh,what is a man and a woman doing?,video6559,159705,3 1126,6559,look,what is a man and a woman doing?,video6559,159706,3 1127,6559,explain,what is a person doing?,video6559,159707,3 1128,6559,skip,what is a woman doing?,video6559,159708,3 1129,6559,watch,what is couple doing?,video6559,159709,3 1130,6559,watch,what are people doing?,video6559,159710,3 1131,6559,watch,what is a man and women doing?,video6559,159711,3 1132,6559,watch,what is someone doing?,video6559,159712,3 1133,6559,skip,what is people watch a woman doing?,video6559,159713,3 1134,6559,couple,what watches a video of a girl skipping across a field?,video6559,159714,3 1135,6559,girl,who do a couple watch a video of skipping through a grassy area?,video6559,159715,3 1136,6559,couple,what watch a video of a girl skipping through a grassy area?,video6559,159716,3 1137,6559,girl,who does a couple watch a video of skipping across a field?,video6559,159717,3 1138,6559,watch,what are two persons doing?,video6559,159718,3 1139,6559,talk,what are two people doing?,video6559,159719,3 1140,6559,laugh,what is two couples doing?,video6559,159720,3 1141,6559,skip,what is woman doing?,video6559,159721,3 1142,6560,woman,who is feeding a dog?,video6560,159722,16 1143,6560,woman,who is eating?,video6560,159723,16 1144,6560,something,what is a woman eating?,video6560,159724,16 1145,6560,dog,what is a woman feeding?,video6560,159725,16 1146,6560,hand,what does a woman eat food from?,video6560,159726,16 1147,6560,dog,what does a woman attempt to feed?,video6560,159727,16 1148,6560,food,what does a woman eat?,video6560,159728,16 1149,6560,dog,what does a woman feed?,video6560,159729,16 1150,6560,woman,who is eating something?,video6560,159730,16 1151,6560,dog,what is a woman sharing food with?,video6560,159731,16 1152,6560,woman,who eats food?,video6560,159732,16 1153,6560,woman,what eat out in the wild?,video6560,159733,16 1154,6560,wild,what do dog and woman eat out in?,video6560,159734,16 1155,6560,woman,who feeds a dog?,video6560,159735,16 1156,6560,person,who is eating in a wood hut?,video6560,159736,16 1157,6560,snack,what is a woman sharing with a dog?,video6560,159737,16 1158,6560,dog,what is a woman sharing a snack with?,video6560,159738,16 1159,6560,woman,who is sharing a snack with a dog?,video6560,159739,16 1160,6560,lady,who is tasting natural edible foods from the wilderness?,video6560,159740,16 1161,6560,woman,who attempts to feed a dog?,video6560,159741,16 1162,6560,eat,what is a woman doing?,video6560,159742,16 1163,6560,eat,what is a person doing?,video6560,159743,16 1164,6560,taste,what is a lady doing?,video6560,159744,16 1165,6560,feed,what is a woman doing?,video6560,159745,16 1166,6560,share,what is a woman doing?,video6560,159746,16 1167,6560,eat,what is there s a girl doing?,video6560,159747,16 1168,6560,feed,what is this is a video of a lady doing?,video6560,159748,16 1169,6561,someone,who is cooking something?,video6561,159749,16 1170,6561,skillet,what is someone cooking cumin in?,video6561,159750,16 1171,6561,cumin,what is someone cooking in a skillet?,video6561,159751,16 1172,6561,something,what is someone cooking?,video6561,159752,16 1173,6561,man,who is demonstrating how to cook?,video6561,159753,16 1174,6561,cumin,what does a guy add to a pan?,video6561,159754,16 1175,6561,skillet,what is a man adding ingredients to?,video6561,159755,16 1176,6561,guy,who adds cumin seeds to a pan?,video6561,159756,16 1177,6561,man,who is cooking?,video6561,159757,16 1178,6561,man,who cumin seeds in a pot?,video6561,159758,16 1179,6561,man,who mixes cumin in a skillet?,video6561,159759,16 1180,6561,oil,what does a man sauteing some herbs in a pan with?,video6561,159760,16 1181,6561,cooking,what is a man toasting spices in pan?,video6561,159761,16 1182,6561,cumin,what does chef put into the hot oil pan?,video6561,159762,16 1183,6561,man,who is adding ingredients to a skillet?,video6561,159763,16 1184,6561,man,who fries some cumin and cardamom in a pan?,video6561,159764,16 1185,6561,man,who explains how to cook food with a recipe?,video6561,159765,16 1186,6561,someone,who is cooking cumin in a skillet?,video6561,159766,16 1187,6561,man,who is toasting spices in a cooking pan?,video6561,159767,16 1188,6561,chef,who puts the cumin seeds into the hot oil pan?,video6561,159768,16 1189,6561,mix,what is doing?,video6561,159769,16 1190,6561,cook,what is a man doing?,video6561,159770,16 1191,6561,demonstrate,what is a man doing?,video6561,159771,16 1192,6561,toast,what is a man doing?,video6561,159772,16 1193,6561,saute,what is a man doing?,video6561,159773,16 1194,6561,cook,what is doing?,video6561,159774,16 1195,6561,teach,what is man doing?,video6561,159775,16 1196,6561,cook,what is someone doing?,video6561,159776,16 1197,6562,something,what are a boy and a girl standing outside in the rain it stops raining the boy thingks of for them to do?,video6562,159777,14 1198,6562,rain,what does two kids look at?,video6562,159778,14 1199,6562,sun,what was raining on a boy and girl?,video6562,159779,14 1200,6562,rain,what are some cartoon characters standing in?,video6562,159780,14 1201,6562,cartoon,what are standing in the rain?,video6562,159781,14 1202,6562,rain,what are kids talking about in the cartoon film?,video6562,159782,14 1203,6562,two,how many kids looks at rain?,video6562,159783,14 1204,6562,boy,who asks whether there is a shower in the clouds?,video6562,159784,14 1205,6562,rain,what do an animated couple of kids discuss the water cycle with the beginning point being the understanding of?,video6562,159785,14 1206,6562,rain,what did cartoon picture there was a boy and girl boy think about bathing in?,video6562,159786,14 1207,6562,two,how many children stand outside discussing how the rain comes down?,video6562,159787,14 1208,6562,two,how many children are amazed at watching rain pouring down while the boy asks whether there is a shower in the clouds?,video6562,159788,14 1209,6562,sun,what came out after it was raining on a boy and girl?,video6562,159789,14 1210,6562,stand,what are some cartoon characters doing?,video6562,159790,14 1211,6562,stand,what are a boy and girl doing?,video6562,159791,14 1212,6562,show,what is a cartoon doing?,video6562,159792,14 1213,6562,ask,what is childs cartoon doing?,video6562,159793,14 1214,6562,rain,what is two cartoon characters are seen while it doing?,video6562,159794,14 1215,6562,discus,what is two children stand outside doing?,video6562,159795,14 1216,6562,talk,what are kids doing?,video6562,159796,14 1217,6562,rain,what is an animated boy in a red hat asks an animated girl with a red bow why it doing?,video6562,159797,14 1218,6562,stand,what are a young boy and a young girl doing?,video6562,159798,14 1219,6562,talk,what are a boy and a girl doing?,video6562,159799,14 1220,6562,rain,what was the sun came out after it doing?,video6562,159800,14 1221,6562,watch,what is two children are amazed at doing?,video6562,159801,14 1222,6562,show,what is a cartoon video doing?,video6562,159802,14 1223,6562,bath,what is cartoon picture there was a boy and girl boy thought about doing?,video6562,159803,14 1224,6563,man,who is singing into a microphone on stage?,video6563,159804,0 1225,6563,man,who is singing to a crowd while is band plays?,video6563,159805,0 1226,6563,man,who sings on stage in font of an audience?,video6563,159806,0 1227,6563,mccartney,who is singing beautiful soul at a concert?,video6563,159807,0 1228,6563,perform,what is a young guy doing?,video6563,159808,0 1229,6563,perform,what is man on stage doing?,video6563,159809,0 1230,6563,man,who is singing a song in a stage?,video6563,159810,0 1231,6563,perform,what is a band doing?,video6563,159811,0 1232,6563,perform,what are a group of people doing?,video6563,159812,0 1233,6563,stage,when is a man singing into a microphone?,video6563,159813,0 1234,6563,man,who is singing?,video6563,159814,0 1235,6563,man,who sings live?,video6563,159815,0 1236,6563,song,what is a band performing?,video6563,159816,0 1237,6563,song,what is a boy singing?,video6563,159817,0 1238,6563,soul,who is jesse mccartney singing at a concert?,video6563,159818,0 1239,6563,stage,when is a man singing?,video6563,159819,0 1240,6563,boy,who is singing a song?,video6563,159820,0 1241,6563,stage,what is a man singing as?,video6563,159821,0 1242,6563,band,what is a man singing with on stage?,video6563,159822,0 1243,6563,guy,who makes some sounds while singing to an audience who seem pretty interested in his song?,video6563,159823,0 1244,6563,man,who is singing on the stage?,video6563,159824,0 1245,6563,crowd,what is a man singing to while is band plays?,video6563,159825,0 1246,6563,microphone,what is a man singing into on stage?,video6563,159826,0 1247,6563,man,who is singing with his band on stage?,video6563,159827,0 1248,6563,stage,when is a man singing with his band?,video6563,159828,0 1249,6563,man,who is singing as stage show?,video6563,159829,0 1250,6563,man,who is singing on stage?,video6563,159830,0 1251,6563,concert,what is jesse mccartney singing beautiful soul at?,video6563,159831,0 1252,6564,woman,who talks about manufacturing a new product while standing in front of a factory outside?,video6564,159832,12 1253,6564,hire,what is a red haired woman in a black suit stands in front of an office and discusses doing?,video6564,159833,12 1254,6564,corporation,what does a woman talk about the future employees will be hiring?,video6564,159834,12 1255,6564,factory,what do women in black dress talking about?,video6564,159835,12 1256,6564,hire,what is a woman talks about how her company will be doing?,video6564,159836,12 1257,6564,describe,what is a woman with red hair doing?,video6564,159837,12 1258,6564,hire,what is a woman talks about a number of people that her company will be doing?,video6564,159838,12 1259,6564,manufacture,what is a woman talks about doing?,video6564,159839,12 1260,6564,hire,what is a woman with red curly hair in a black suit discusses doing?,video6564,159840,12 1261,6564,talk,what is there is a woman doing?,video6564,159841,12 1262,6564,hire,what is a news story at a local business tells about who they ll be doing?,video6564,159842,12 1263,6564,discus,what is a woman doing?,video6564,159843,12 1264,6564,hire,what is a woman talks about the future employees her corporation will be doing?,video6564,159844,12 1265,6564,wear,what is a lady doing?,video6564,159845,12 1266,6564,talk,what is women in black dress doing?,video6564,159846,12 1267,6564,tell,what is the ceo of the new model education system doing?,video6564,159847,12 1268,6565,golf,what is bouncing toward a green?,video6565,159848,6 1269,6565,pin,what do a golf ball lands close to?,video6565,159849,6 1270,6565,hole,what does the golf ball not make while a golfer is exercising his hands while lying on the grass?,video6565,159850,6 1271,6565,player,who hits a ball close to the hole?,video6565,159851,6 1272,6565,golf,what does not make the hole while a golfer is exercising his hands while lying on the grass?,video6565,159852,6 1273,6565,man,who is excited he made a goal in golf?,video6565,159853,6 1274,6565,golfer,who makes a hole in one while announcers are laughing?,video6565,159854,6 1275,6565,golfer,who is exercising his hands while lying on the grass?,video6565,159855,6 1276,6565,player,who then lays on the ground?,video6565,159856,6 1277,6565,golf,what is a person playing?,video6565,159857,6 1278,6565,golf,what swing hit?,video6565,159858,6 1279,6565,shot,what did a man make?,video6565,159859,6 1280,6565,man,who is lying on the ground?,video6565,159860,6 1281,6565,person,who is playing golf?,video6565,159861,6 1282,6565,man,who hits a whole in one?,video6565,159862,6 1283,6565,man,who is on a golf course?,video6565,159863,6 1284,6565,ground,what does a golf player then lay on?,video6565,159864,6 1285,6565,man,who made the shot?,video6565,159865,6 1286,6565,ground,what is a man lying on?,video6565,159866,6 1287,6565,golfer,who makes a hole in one while people are clapping?,video6565,159867,6 1288,6565,whole,what does old man hit in one?,video6565,159868,6 1289,6565,occur,what is there is an accident doing?,video6565,159869,6 1290,6565,exercise,what is the golf ball does not make the hole while a golfer doing?,video6565,159870,6 1291,6565,cheer,what is people doing?,video6565,159871,6 1292,6565,lie,what is there is a shot of a golf shot onto the green very near the hole and then a man doing?,video6565,159872,6 1293,6565,lay,what is a man doing?,video6565,159873,6 1294,6565,laugh,what are a golfer makes a hole in one while announcers doing?,video6565,159874,6 1295,6565,bounce,what is a golf ball doing?,video6565,159875,6 1296,6565,play,what is a person doing?,video6565,159876,6 1297,6566,dinosaur,what is walking slowly and creepy?,video6566,159877,10 1298,6566,walk,what is a dinosaur toy doing?,video6566,159878,10 1299,6566,walk,what is a godzilla doing?,video6566,159879,10 1300,6566,operate,what is a person doing?,video6566,159880,10 1301,6566,play,what is a person doing?,video6566,159881,10 1302,6566,head,what is a toy godzilla doing?,video6566,159882,10 1303,6566,laugh,what are cartoons doing?,video6566,159883,10 1304,6566,play,what is kid doing?,video6566,159884,10 1305,6566,robot,what is a person operating?,video6566,159885,10 1306,6566,godzilla,who is walking?,video6566,159886,10 1307,6566,toy,what godzilla heading towards a toy city?,video6566,159887,10 1308,6566,bridge,what a giant toy monster about to break?,video6566,159888,10 1309,6566,person,who is playing with toys?,video6566,159889,10 1310,6566,godzilla,what attacks toy city?,video6566,159890,10 1311,6566,person,who is operating a robot?,video6566,159891,10 1312,6566,city,what does toy godzilla attack?,video6566,159892,10 1313,6566,animal,what run in the floor?,video6566,159893,10 1314,6566,man,who builds toys?,video6566,159894,10 1315,6566,floor,what do the animal run in?,video6566,159895,10 1316,6566,toy,what monster about to break a bridge?,video6566,159896,10 1317,6567,two,how many men are hanging a picture?,video6567,159897,1 1318,6567,wall,what do two men adjust a picture on?,video6567,159898,1 1319,6567,picture,what do two men adjust on the wall?,video6567,159899,1 1320,6567,wall,what do two men behind a man adjust a picture on?,video6567,159900,1 1321,6567,person,who is doing skits?,video6567,159901,1 1322,6567,belief,what does the video which explain?,video6567,159902,1 1323,6567,painting,what are two man s fixing in a wall in hall?,video6567,159903,1 1324,6567,picture,what do two men behind a man adjust on a wall?,video6567,159904,1 1325,6567,hall,what are two man s fixing a painting in a wall in?,video6567,159905,1 1326,6567,man,what are fixing a painting in a wall in hall?,video6567,159906,1 1327,6567,man,who is hanging a frame?,video6567,159907,1 1328,6567,two,how many man s are fixing a painting in a wall in hall?,video6567,159908,1 1329,6567,man,who has a heart attack while two men behind him adjust a picture on a wall?,video6567,159909,1 1330,6567,two,how many men are arguing over a painting while another collapses?,video6567,159910,1 1331,6567,man,who is having a heart attack while men fight in the background?,video6567,159911,1 1332,6567,two,how many men argue about hanging a picture on the wall?,video6567,159912,1 1333,6567,man,who makes fighting sounds while adjusting a framed picture?,video6567,159913,1 1334,6567,two,how many men adjust a picture on the wall?,video6567,159914,1 1335,6567,attack,what does a man have while two men behind him adjust a picture on a wall?,video6567,159915,1 1336,6567,attack,what is a man having while men fight in the background?,video6567,159916,1 1337,6567,painting,what are two men arguing over while another collapses?,video6567,159917,1 1338,6567,wall,what are two man s fixing a painting in in hall?,video6567,159918,1 1339,6567,video,what explains the beliefs?,video6567,159919,1 1340,6567,picture,what are men hanging up?,video6567,159920,1 1341,6567,background,what do men fight in?,video6567,159921,1 1342,6567,hang,what is a man doing?,video6567,159922,1 1343,6567,fight,what is a man makes doing?,video6567,159923,1 1344,6567,hang,what are men doing?,video6567,159924,1 1345,6567,argue,what are two men doing?,video6567,159925,1 1346,6567,hang,what is two men argue about doing?,video6567,159926,1 1347,6567,fight,what is two people doing?,video6567,159927,1 1348,6567,fix,what are two man s doing?,video6567,159928,1 1349,6567,picture,what are two men hanging?,video6567,159929,1 1350,6567,frame,what is a man hanging?,video6567,159930,1 1351,6567,argue,what are young men doing?,video6567,159931,1 1352,6568,sit,what is a man and a woman doing?,video6568,159932,13 1353,6568,woman,who is holding a candle?,video6568,159933,13 1354,6568,hold,what is a woman doing?,video6568,159934,13 1355,6568,candle,what is a woman holding?,video6568,159935,13 1356,6568,man,who tries to play jiggalo with cheap bear?,video6568,159936,13 1357,6568,man,who gives a girl a gift in a carriage?,video6568,159937,13 1358,6568,woman,who is given by a candle by a man?,video6568,159938,13 1359,6568,couple,what has a romantic time on a horse ride?,video6568,159939,13 1360,6568,time,when does a couple have on a horse ride?,video6568,159940,13 1361,6568,man,who is a woman given by a candle by?,video6568,159941,13 1362,6568,man,who hands a woman a candle outside when a woman something on a horse is snowy and then opens a cooler full of beer?,video6568,159942,13 1363,6568,jiggalo,what does a man try to play with cheap bear?,video6568,159943,13 1364,6568,bear,what does a man try to play jiggalo with?,video6568,159944,13 1365,6568,man,who is giving a woman a candle?,video6568,159945,13 1366,6568,candle,what is a woman given by by a man?,video6568,159946,13 1367,6568,woman,who does a man hand a candle outside when a woman something on a horse is snowy and then opens a cooler full of beer?,video6568,159947,13 1368,6568,winter,when bud light commerical?,video6568,159948,13 1369,6568,beer,what does a man hand a woman a candle outside when a woman something on a horse is snowy and then opens a cooler full of?,video6568,159949,13 1370,6568,man,who gives a woman some bud lite?,video6568,159950,13 1371,6569,talk,what is bunch of cartoon characters doing?,video6569,159951,8 1372,6569,hunt,what is a cartoon dolls of animals inside forest doing?,video6569,159952,8 1373,6569,narrate,what is someone doing?,video6569,159953,8 1374,6569,jump,what is two animals doing?,video6569,159954,8 1375,6569,speak,what are a boy and a monkey are on a book cover a tiger and bear doing?,video6569,159955,8 1376,6569,talk,what is an animated cartoon tiger doing?,video6569,159956,8 1377,6569,play,what is in the jungle book charater the boy and dogs doing?,video6569,159957,8 1378,6569,cartoon,what tiger talking something in the forest?,video6569,159958,8 1379,6569,something,what do an animated cartoon tiger talking in the forest?,video6569,159959,8 1380,6569,tiger,who are a boy and a monkey on a book cover?,video6569,159960,8 1381,6569,book,what are a boy and a monkey on cover a tiger?,video6569,159961,8 1382,6569,man,who cuts a youtube introduction short to move on?,video6569,159962,8 1383,6569,boy,who do various animated animals play with?,video6569,159963,8 1384,6569,man,who does a youtube introduction?,video6569,159964,8 1385,6569,boy,who do cartoon animals play with?,video6569,159965,8 1386,6569,cartoon,what play with a boy?,video6569,159966,8 1387,6569,introduction,what does a man cut short to move on?,video6569,159967,8 1388,6569,reviewer,who is being crass and rude?,video6569,159968,8 1389,6569,bear,what are speaking?,video6569,159969,8 1390,6569,cartoon,what talk with each other?,video6569,159970,8 1391,6569,forest,what do an animated cartoon tiger talking something in?,video6569,159971,8 1392,6569,introduction,what does a man do?,video6569,159972,8 1393,6569,someone,who is narrating over scenes from the jungle book animals are kissing a boy and dancing with him?,video6569,159973,8 1394,6569,entertainment,who gives his comments on a famous movie?,video6569,159974,8 1395,6569,screen,what do a cartoon dolls of animals inside forest hunting boy tiger displaying on?,video6569,159975,8 1396,6569,man,who are the characters of the jungle book in action is giving commentary?,video6569,159976,8 1397,6569,boy,who plays with the big bear and the animals in the jungle in the movie called jungle book?,video6569,159977,8 1398,6569,jungle,what does movie review of disney s while reviewer is being crass and rude?,video6569,159978,8 1399,6569,boy,who does the boy and dogs playing and a tiger walk towards him on the other side dances with a bear in the jungle book charater?,video6569,159979,8 1400,6569,book,what is someone narrating over scenes from the jungle are kissing a boy and dancing with him?,video6569,159980,8 1401,6569,commentary,what are the characters of the jungle book in action a man is giving?,video6569,159981,8 1402,6569,bear,what does the boy and dogs playing and a tiger walk towards him on the other side the boy dances with in the jungle book charater?,video6569,159982,8 1403,6569,action,what are the characters of the jungle book in a man is giving commentary?,video6569,159983,8 1404,6569,video,what is about a live commentary of the jungle book?,video6569,159984,8 1405,6570,show,what is a person doing?,video6570,159985,13 1406,6570,lay,what is a bunny doing?,video6570,159986,13 1407,6570,sit,what is a goat still image doing?,video6570,159987,13 1408,6570,record,what is person doing?,video6570,159988,13 1409,6570,eat,what is there is a mouse doing?,video6570,159989,13 1410,6570,offer,what is a young child doing?,video6570,159990,13 1411,6570,roam,what is a hamster in a cage doing?,video6570,159991,13 1412,6570,sleep,what is a rat is on the net is doing?,video6570,159992,13 1413,6570,think,what is there is a mouse doing?,video6570,159993,13 1414,6570,try,what is a woman doing?,video6570,159994,13 1415,6570,sleep,what is an active gerble eating and a veru tired doing?,video6570,159995,13 1416,6570,hand,what do a goat still image sitting and a man meals in feeding rat displaying on screen?,video6570,159996,13 1417,6570,rabbit,what cage where the facilities are done for a smooth sleep?,video6570,159997,13 1418,6570,person,who is recording the small brown animals which is sleeping?,video6570,159998,13 1419,6570,child,who is offering a hamster in a cage?,video6570,159999,13 1420,6570,rat,what do a goat still image sitting and a man meals in hand feeding displaying on screen?,video6570,160000,13 1421,6570,person,who is showing hamster in the cage?,video6570,160001,13 1422,6570,hamster,what is a young child offering in a cage?,video6570,160002,13 1423,6570,hamster,what is a person showing in the cage?,video6570,160003,13 1424,6570,rat,what is on the net is is sleeping?,video6570,160004,13 1425,6570,cage,what is a person showing hamster in?,video6570,160005,13 1426,6570,cage,what is a young child offering a hamster in?,video6570,160006,13 1427,6571,comment,what is a man doing?,video6571,160007,3 1428,6571,talk,what is a man doing?,video6571,160008,3 1429,6571,play,what is a person doing?,video6571,160009,3 1430,6571,commentate,what is man doing?,video6571,160010,3 1431,6571,man,who is commentating?,video6571,160011,3 1432,6571,tell,what is the person doing?,video6571,160012,3 1433,6571,video,what is a person playing?,video6571,160013,3 1434,6571,nba,what is the person telling about?,video6571,160014,3 1435,6571,football,what does sports reporter talk about?,video6571,160015,3 1436,6571,man,who is talking about some sports?,video6571,160016,3 1437,6571,man,who is talking about an athlete?,video6571,160017,3 1438,6571,person,who is telling about nba?,video6571,160018,3 1439,6571,man,who is talking about a football player?,video6571,160019,3 1440,6571,leonard,who williams speed info on espn sports?,video6571,160020,3 1441,6571,man,who speaks to a camera for a video segment?,video6571,160021,3 1442,6571,brenku,who breaks down the science in football plays?,video6571,160022,3 1443,6571,reporter,who talks about football draft?,video6571,160023,3 1444,6571,person,who is playing a video game?,video6571,160024,3 1445,6572,computer,what is a person reviewing test results on?,video6572,160025,12 1446,6572,person,who is reviewing test results on a computer?,video6572,160026,12 1447,6572,man,who explains the files on the computer to the audience?,video6572,160027,12 1448,6572,person,who is presenting the results of the latest study?,video6572,160028,12 1449,6572,computer,what do a young man talking about running an everest test on?,video6572,160029,12 1450,6572,voice,what does a man s describes technical results displayed on a computer monitor?,video6572,160030,12 1451,6572,screenshot,what shows various computer parts and how there perform relative to each other?,video6572,160031,12 1452,6572,pcwizkidstechtalk,what did a man walks through diagnostic tests run on?,video6572,160032,12 1453,6572,techie,who explains the results of a tool he has used on a tech talk program?,video6572,160033,12 1454,6572,man,who talks about runnning pc tests with the program everest?,video6572,160034,12 1455,6572,man,who s voice describes technical results displayed on a computer monitor?,video6572,160035,12 1456,6572,include,what is this is a pckidswizcom video clip where the boy speaking shows some test results doing?,video6572,160036,12 1457,6572,talk,what is there is a man doing?,video6572,160037,12 1458,6572,review,what is a person doing?,video6572,160038,12 1459,6572,talk,what is a young man doing?,video6572,160039,12 1460,6572,present,what is person doing?,video6572,160040,12 1461,6572,show,what is a man doing?,video6572,160041,12 1462,6572,tool,what does a pc techie explain the results of he has used on a tech talk program?,video6572,160042,12 1463,6572,test,what is a person reviewing on a computer?,video6572,160043,12 1464,6572,window,what are some colored bars being shown on?,video6572,160044,12 1465,6572,man,who says that he ran the everest test and the results is shown all in vertical color lines?,video6572,160045,12 1466,6572,man,who is pleased with his test results?,video6572,160046,12 1467,6572,man,who ran the everest test as well?,video6572,160047,12 1468,6572,test,what did a man run as well?,video6572,160048,12 1469,6573,man,who is playing a video game?,video6573,160049,13 1470,6573,man,who is sitting?,video6573,160050,13 1471,6573,gamer,who plays the sims video game?,video6573,160051,13 1472,6573,video,what is a man playing?,video6573,160052,13 1473,6573,game,what do a cartoon play?,video6573,160053,13 1474,6573,song,what does a band preform?,video6573,160054,13 1475,6573,band,what preforms a song?,video6573,160055,13 1476,6573,man,who is walking into a house?,video6573,160056,13 1477,6573,person,who is playing the sims?,video6573,160057,13 1478,6573,play,what is doing?,video6573,160058,13 1479,6573,play,what is a person doing?,video6573,160059,13 1480,6573,play,what is a person gives commentary while doing?,video6573,160060,13 1481,6573,walk,what is a man doing?,video6573,160061,13 1482,6573,talk,what is a man doing?,video6573,160062,13 1483,6573,sit,what is a man doing?,video6573,160063,13 1484,6573,play,what is a man doing?,video6573,160064,13 1485,6573,commentate,what is a man doing?,video6573,160065,13 1486,6573,cartoon,what play game for kids?,video6573,160066,13 1487,6573,video,what is very challenging?,video6573,160067,13 1488,6573,person,who is playing video game?,video6573,160068,13 1489,6573,light,what turns on?,video6573,160069,13 1490,6573,house,what is a man walking into?,video6573,160070,13 1491,6573,man,who is talking during a video game?,video6573,160071,13 1492,6573,person,who gives commentary while playing a simulation game?,video6573,160072,13 1493,6573,man,who is watching tv in a room in a video game?,video6573,160073,13 1494,6573,man,who is commentating over sims gameplay?,video6573,160074,13 1495,6573,person,who is playing a computer online game?,video6573,160075,13 1496,6574,watch,what are people doing?,video6574,160076,1 1497,6574,song,what is a man singing?,video6574,160077,1 1498,6574,perform,what is a rock band doing?,video6574,160078,1 1499,6574,woman,who sings?,video6574,160079,1 1500,6574,woman,who preforms?,video6574,160080,1 1501,6574,song,what does a band preform?,video6574,160081,1 1502,6574,woman,who sing on stage at a large concert?,video6574,160082,1 1503,6574,crowd,what watch a man perform?,video6574,160083,1 1504,6574,woman,who sings on stage for a festival?,video6574,160084,1 1505,6574,man,who is singing a song?,video6574,160085,1 1506,6574,park,what did live concert perform in?,video6574,160086,1 1507,6574,band,what preforms a song?,video6574,160087,1 1508,6574,concert,what performed in the park?,video6574,160088,1 1509,6574,man,who do crowds watch perform?,video6574,160089,1 1510,6574,stage,when does a long haired rocker sing?,video6574,160090,1 1511,6574,guitar,what is another man playing in stage?,video6574,160091,1 1512,6574,rock,what is performing to many fans?,video6574,160092,1 1513,6574,stage,when is another man playing guitar?,video6574,160093,1 1514,6574,man,who is singing for a large crowd?,video6574,160094,1 1515,6574,park,where did live concert perform?,video6574,160095,1 1516,6574,man,who is playing guitar in stage?,video6574,160096,1 1517,6574,performance,what did a lot of people gather for?,video6574,160097,1 1518,6575,lab,what are the scientists doing some experiments in?,video6575,160098,12 1519,6575,experiment,what do people sitting with white dress doing?,video6575,160099,12 1520,6575,photograph,what are a technicians working in?,video6575,160100,12 1521,6575,science,what are some scientists discussing?,video6575,160101,12 1522,6575,laboratory,what are the photograph of the men and women researchers doing experiments in?,video6575,160102,12 1523,6575,think,what is the professional students doing?,video6575,160103,12 1524,6575,slide,what show presentation about careers with a background photo of several scientists working in a laboratory?,video6575,160104,12 1525,6575,microscope,what was a poster of the people in the career in managements?,video6575,160105,12 1526,6575,dreses,who is the professional students thinking some important matter all are wear?,video6575,160106,12 1527,6575,lab,what do a group of white coated lab technicians work in?,video6575,160107,12 1528,6575,discus,what are some scientists doing?,video6575,160108,12 1529,6575,sit,what are dressed in white labcoats doing?,video6575,160109,12 1530,6575,hold,what is a woman in white medical jacket doing?,video6575,160110,12 1531,6575,matter,what is the professional students thinking all are wear the white dresess?,video6575,160111,12 1532,6575,lab,what are people wearing working with various lab equipment?,video6575,160112,12 1533,6575,work,what is a slide show presentation about careers with a background photo of several scientists doing?,video6575,160113,12 1534,6575,sit,what is people doing?,video6575,160114,12 1535,6575,play,what is an image of three people in lab coats doing?,video6575,160115,12 1536,6575,wear,what are people doing?,video6575,160116,12 1537,6575,work,what are a technicians doing?,video6575,160117,12 1538,6575,look,what is a group of men and women in lab coats doing?,video6575,160118,12 1539,6576,man,who is talking about the incredible hulk in front of a plain red background?,video6576,160119,7 1540,6576,talk,what is a man in black dressing doing?,video6576,160120,7 1541,6576,cloth,what do a boy in black dress wearing standing speaking on topic discusing and still image military man standing displaying on screen?,video6576,160121,7 1542,6576,movie,what did a man in a black jacket standing in front of a red back grind explaining details from?,video6576,160122,7 1543,6576,news,what is man in black suit presenting?,video6576,160123,7 1544,6576,man,who says welcome then he has striped shirt black coat he has complete white skin?,video6576,160124,7 1545,6576,talk,what is there is a black suit man doing?,video6576,160125,7 1546,6576,something,what is a guy in a black shirt talking to?,video6576,160126,7 1547,6576,talk,what is a fast doing?,video6576,160127,7 1548,6576,stand,what is a man in a black jacket doing?,video6576,160128,7 1549,6576,audience,what is man in black coat talking for?,video6576,160129,7 1550,6576,talk,what is a guy in black dress doing?,video6576,160130,7 1551,6576,expres,what is a man doing?,video6576,160131,7 1552,6576,talk,what is man in black coat doing?,video6576,160132,7 1553,6576,present,what is man in black suit doing?,video6576,160133,7 1554,6576,wear,what is a boy in black dress doing?,video6576,160134,7 1555,6576,talk,what is a man doing?,video6576,160135,7 1556,6576,explain,what is a man doing?,video6576,160136,7 1557,6576,talk,what is a guy in a black shirt doing?,video6576,160137,7 1558,6576,speak,what is a guy with dark hair doing?,video6576,160138,7 1559,6576,background,what does a man in a black shirt speak about an incredible hulkovie there is?,video6576,160139,7 1560,6576,movie,what do a man explaining the similarities between the incredible hulkn tv show?,video6576,160140,7 1561,6576,intervene,what is doing?,video6576,160141,7 1562,6577,girl,who is sitting at a piano playing?,video6577,160142,0 1563,6577,girl,who is sitting at a piano singing?,video6577,160143,0 1564,6577,keyboard,what does a young woman play a song on?,video6577,160144,0 1565,6577,song,what does a young woman play on the keyboard?,video6577,160145,0 1566,6577,woman,who plays a song on the keyboard?,video6577,160146,0 1567,6577,chair,what is a girl wearing a hat with pigtails sitting in?,video6577,160147,0 1568,6577,woman,who speaks to the camera for a video segment?,video6577,160148,0 1569,6577,teenage,who is playing keyboard and singing?,video6577,160149,0 1570,6577,woman,who is playing the piano?,video6577,160150,0 1571,6577,piano,what is the girl playing?,video6577,160151,0 1572,6577,play,what is a girl doing?,video6577,160152,0 1573,6577,sit,what is a girl doing?,video6577,160153,0 1574,6577,talk,what is a girl takes forever to get settled before doing?,video6577,160154,0 1575,6577,wear,what is a girl doing?,video6577,160155,0 1576,6577,play,what is a teenage girl doing?,video6577,160156,0 1577,6577,talk,what is girl doing?,video6577,160157,0 1578,6577,play,what is person doing?,video6577,160158,0 1579,6577,play,what is someone doing?,video6577,160159,0 1580,6577,piano,what is a girl sitting at singing?,video6577,160160,0 1581,6577,piano,what is someone playing?,video6577,160161,0 1582,6577,singing,what is a girl playing?,video6577,160162,0 1583,6577,piano,what is a girl sitting at playing?,video6577,160163,0 1584,6577,woman,who talks to a camera?,video6577,160164,0 1585,6577,keyboard,what is a teenage girl playing?,video6577,160165,0 1586,6577,piano,what is a woman playing?,video6577,160166,0 1587,6577,girl,who takes forever to get settled before talking?,video6577,160167,0 1588,6577,girl,who is playing piano and singing?,video6577,160168,0 1589,6577,someone,what is playing piano?,video6577,160169,0 1590,6577,camera,what does a woman talk to?,video6577,160170,0 1591,6577,woman,who is singing?,video6577,160171,0 1592,6577,desk,what is a girl sitting at?,video6577,160172,0 1593,6578,look,what is a scientist peers through a microscope doing?,video6578,160173,12 1594,6578,adjust,what is a women doing?,video6578,160174,12 1595,6578,test,what is there is a women doing?,video6578,160175,12 1596,6578,look,what is a woman doing?,video6578,160176,12 1597,6578,test,what is a lab technician women doing?,video6578,160177,12 1598,6578,use,what is a woman doing?,video6578,160178,12 1599,6578,sit,what is a lady doing?,video6578,160179,12 1600,6578,operate,what is a female doing?,video6578,160180,12 1601,6578,woman,who flips a knob on it?,video6578,160181,12 1602,6578,computer,what do a woman seeing in the microscope and a lung cancer cell connect with?,video6578,160182,12 1603,6578,woman,who looks into a miroscope?,video6578,160183,12 1604,6578,knob,what does a woman flip on it?,video6578,160184,12 1605,6578,microscope,what is a female operating?,video6578,160185,12 1606,6578,microscope,what does a scientist look through?,video6578,160186,12 1607,6578,female,what is using a microscope and a laptop?,video6578,160187,12 1608,6578,microscope,what is a women looking into?,video6578,160188,12 1609,6578,miroscope,what does a woman look into?,video6578,160189,12 1610,6578,female,what is operating a microscope?,video6578,160190,12 1611,6578,monitor,what is a women checking on?,video6578,160191,12 1612,6578,scientist,who looks through a microscope?,video6578,160192,12 1613,6578,man,who is explain about a lung cancer cell?,video6578,160193,12 1614,6578,woman,who is using a microscope and a pc?,video6578,160194,12 1615,6578,scientist,who peers through a microscope looking at germs?,video6578,160195,12 1616,6578,technician,who women testing the result with the help of thermoscope and watching results on computer monitor?,video6578,160196,12 1617,6578,lady,who peeks through a microscope to see small particles?,video6578,160197,12 1618,6579,stretch,what is ladies doing?,video6579,160198,3 1619,6579,talk,what is girl doing?,video6579,160199,3 1620,6579,talk,what is a woman tears up while doing?,video6579,160200,3 1621,6579,talk,what is a woman outfitted in black doing?,video6579,160201,3 1622,6579,three,how many other women listen?,video6579,160202,3 1623,6579,woman,who is talking about something?,video6579,160203,3 1624,6579,something,what is a woman talking about?,video6579,160204,3 1625,6579,something,what are other s listening?,video6579,160205,3 1626,6579,smile,what is a group of women doing?,video6579,160206,3 1627,6579,talk,what is a woman doing?,video6579,160207,3 1628,6580,lay,what is a cartoon man doing?,video6580,160208,0 1629,6580,play,what is a man doing?,video6580,160209,0 1630,6580,put,what is a man doing?,video6580,160210,0 1631,6580,visit,what is a video game character doing?,video6580,160211,0 1632,6580,lay,what is an animated character is shown doing?,video6580,160212,0 1633,6580,show,what is someone doing?,video6580,160213,0 1634,6580,cemetery,where does someone place flowers next to a grave?,video6580,160214,0 1635,6580,animation,who puts flowers on grave?,video6580,160215,0 1636,6580,character,who holds onto some flowers?,video6580,160216,0 1637,6580,grave,when does animation man put flowers?,video6580,160217,0 1638,6580,video,what character visiting a grave site?,video6580,160218,0 1639,6580,person,who is visiting the cemetary?,video6580,160219,0 1640,6580,someone,who is showing video graphic?,video6580,160220,0 1641,6580,man,who is playing a video game?,video6580,160221,0 1642,6580,character,who takes flowers?,video6580,160222,0 1643,6580,grave,what a video game character visiting?,video6580,160223,0 1644,6580,put,what is computer animation of a guy doing?,video6580,160224,0 1645,6580,grave,when does a cartoon character place some flowers?,video6580,160225,0 1646,6580,character,who places some flowers on a grave?,video6580,160226,0 1647,6580,character,who is shown laying flowers on a grave?,video6580,160227,0 1648,6580,cartoon,what man laying flowers down at a grave?,video6580,160228,0 1649,6580,grave,when does man in a video game visit?,video6580,160229,0 1650,6580,someone,what places flowers next to a grave in a cemetery?,video6580,160230,0 1651,6580,man,who is putting flowers on a headstone?,video6580,160231,0 1652,6580,man,who is leaving flowers at a grave?,video6580,160232,0 1653,6580,cemetery,what does someone place flowers next to a grave in?,video6580,160233,0 1654,6580,headstone,what is an animated man putting flowers on?,video6580,160234,0 1655,6580,grave,when a cartoon man laying flowers down?,video6580,160235,0 1656,6580,grave,when is an animated man leaving flowers?,video6580,160236,0 1657,6580,play,what is someone doing?,video6580,160237,0 1658,6580,someone,what is playing a video game?,video6580,160238,0 1659,6580,visit,what is the person doing?,video6580,160239,0 1660,6580,video,what is a man playing?,video6580,160240,0 1661,6580,cemetary,what is the person visiting?,video6580,160241,0 1662,6580,animation,what does a 3d?,video6580,160242,0 1663,6580,video,what is someone playing?,video6580,160243,0 1664,6580,video,what is someone showing graphic?,video6580,160244,0 1665,6581,man,who puts a device around his stomach?,video6581,160245,4 1666,6581,man,what s vital signs are monitored as he watches a certain kind of videos?,video6581,160246,4 1667,6581,belt,what does a woman tie around the waist of an old man in white shirt?,video6581,160247,4 1668,6581,waist,what does the man wearing the white shirt sit down in the chair wearing a belt around?,video6581,160248,4 1669,6581,instrument,what is a woman wearing spectacles and green tops tying to a man with white shirt?,video6581,160249,4 1670,6581,device,what does a man put around his stomach?,video6581,160250,4 1671,6581,stomach,what does a man put a device around?,video6581,160251,4 1672,6581,woman,who watches different videos?,video6581,160252,4 1673,6581,woman,who watches videos?,video6581,160253,4 1674,6581,woman,who sits?,video6581,160254,4 1675,6581,man,who sits down?,video6581,160255,4 1676,6581,woman,who is a man being tested by while he watches different videos?,video6581,160256,4 1677,6581,sexy,what brunette with green top talking to the bearded old guy?,video6581,160257,4 1678,6581,equipment,what is fitted to the body of the man adn readings taken through the computer by the lady?,video6581,160258,4 1679,6581,wear,what is a man doing?,video6581,160259,4 1680,6581,introduce,what is a saleswomen in green shirt doing?,video6581,160260,4 1681,6581,monitor,what is a woman connects a man to doing?,video6581,160261,4 1682,6581,wear,what is a woman doing?,video6581,160262,4 1683,6581,sit,what is a girl in blue color dress doing?,video6581,160263,4 1684,6581,sit,what is a girl doing?,video6581,160264,4 1685,6581,talk,what is sexy brunette with green top doing?,video6581,160265,4 1686,6581,wear,what is the man doing?,video6581,160266,4 1687,6581,device,what does the lady put on the gentleman waist to test what happens to people who watch smr videos?,video6581,160267,4 1688,6581,man,who is wearing a a device in the hib?,video6581,160268,4 1689,6581,belt,what do a girl in blue color dress sitting on compound and a girl tying to old man sitting in chair displaying on screen?,video6581,160269,4 1690,6581,belt,what do a girl sitting in compound and girl in blue dress tying to old man wearing white dress sitting on chair displaying on screen?,video6581,160270,4 1691,6581,top,what do sexy brunette with talking to the bearded old guy?,video6581,160271,4 1692,6581,man,who is being tested by a woman while he watches different videos?,video6581,160272,4 1693,6581,woman,who ties a special belt around the waist of an old man in white shirt?,video6581,160273,4 1694,6581,belt,what does the man wearing the white shirt sit down in the chair wearing around his waist?,video6581,160274,4 1695,6581,chair,what does the man wearing the white shirt sit down in wearing a belt around his waist?,video6581,160275,4 1696,6581,woman,who connects a man to monitoring equipment as he watches videos?,video6581,160276,4 1697,6581,lady,who puts a device on the gentleman waist to test what happens to people who watch smr videos?,video6581,160277,4 1698,6582,man,who is cooking in a kitchen?,video6582,160278,17 1699,6582,man,who is blending some food?,video6582,160279,17 1700,6582,man,who is preparing food?,video6582,160280,17 1701,6582,kitchen,what is a man cooking in?,video6582,160281,17 1702,6582,drink,what does man prepare?,video6582,160282,17 1703,6582,man,who prepares a nice drink?,video6582,160283,17 1704,6582,food,what is a man blending?,video6582,160284,17 1705,6582,food,what is a man preparing?,video6582,160285,17 1706,6582,person,who is cooking?,video6582,160286,17 1707,6582,mixer,what is a man cooking with?,video6582,160287,17 1708,6582,man,who is cooking with a mixer?,video6582,160288,17 1709,6582,mixer,what does a man add ingredients to?,video6582,160289,17 1710,6582,man,who mixes ingredients in his kitchen?,video6582,160290,17 1711,6582,blender,what is a man mixing ingredients in?,video6582,160291,17 1712,6582,thing,what is a man blinding with blinder in a kitchen?,video6582,160292,17 1713,6582,man,who adds ingredients to a mixer?,video6582,160293,17 1714,6582,man,who is mixing ingredients in a blender?,video6582,160294,17 1715,6582,man,who grinds food in a cooking demonstration?,video6582,160295,17 1716,6582,man,who is blinding some thing with blinder in a kitchen?,video6582,160296,17 1717,6582,man,who mixes cinnamon with other ingredients in a mixer?,video6582,160297,17 1718,6582,man,who mixes the ingredients?,video6582,160298,17 1719,6582,food,what does a man grind in a cooking demonstration?,video6582,160299,17 1720,6582,put,what is a man in the kitchen doing?,video6582,160300,17 1721,6582,blend,what is a man doing?,video6582,160301,17 1722,6582,blind,what is a man doing?,video6582,160302,17 1723,6582,mix,what is a man doing?,video6582,160303,17 1724,6582,prepare,what is a man doing?,video6582,160304,17 1725,6582,cook,what is a person doing?,video6582,160305,17 1726,6582,explain,what is man doing?,video6582,160306,17 1727,6582,cook,what is a man doing?,video6582,160307,17 1728,6583,tenni,what is displayed with a particularly furious set on exhibition?,video6583,160308,3 1729,6583,arena,what do professional badminton players compete against each other in?,video6583,160309,3 1730,6583,tournament,what do four asian people in red uniforms play badminton in?,video6583,160310,3 1731,6583,tenni,what does a very competitive professional double is occurring in front of a huge audience?,video6583,160311,3 1732,6583,competition,what does a double game of tennis is being played during?,video6583,160312,3 1733,6583,four,how many badminton players are playing a match in the gym?,video6583,160313,3 1734,6583,tenni,what are two people wearing red shirts playing against two people wearing pink shirts?,video6583,160314,3 1735,6583,badminton,who compete against each other in an arena?,video6583,160315,3 1736,6583,tenni,what are two pairs of men playing on a wide green court?,video6583,160316,3 1737,6583,tenni,what does a double is being played during a competition?,video6583,160317,3 1738,6583,badminton,who are playing a match in the gym?,video6583,160318,3 1739,6583,tenni,who go back and forth on the tennis courts?,video6583,160319,3 1740,6583,game,what did the team in red lose?,video6583,160320,3 1741,6583,badminton,who compete against one another in a match?,video6583,160321,3 1742,6583,gym,what are four badminton players playing a match in?,video6583,160322,3 1743,6583,point,what does two double teams play in a badminton match?,video6583,160323,3 1744,6583,tenni,what are two teams of tennis players playing?,video6583,160324,3 1745,6583,match,what are four badminton players playing in the gym?,video6583,160325,3 1746,6583,game,what are two teams of two players playing?,video6583,160326,3 1747,6583,match,what do different badminton players compete against one another in?,video6583,160327,3 1748,6583,play,what are two pairs of men doing?,video6583,160328,3 1749,6583,occur,what is a very competitive professional doubles tennis match doing?,video6583,160329,3 1750,6583,play,what are two teams of tennis players doing?,video6583,160330,3 1751,6583,wear,what is two people doing?,video6583,160331,3 1752,6583,play,what is there are two teams of two badminton players both in red uniforms doing?,video6583,160332,3 1753,6583,play,what are two teams of two players doing?,video6583,160333,3 1754,6583,play,what are four badminton players doing?,video6583,160334,3 1755,6584,singer,who is a lady staring into space is singing a song in the background?,video6584,160335,18 1756,6584,lady,who is staring into space a singer is singing a song in the background?,video6584,160336,18 1757,6584,background,what is a song playing in?,video6584,160337,18 1758,6584,look,what is there is woman doing?,video6584,160338,18 1759,6584,look,what is a lady doing?,video6584,160339,18 1760,6584,wear,what is the woman with the blonde hair look around doing?,video6584,160340,18 1761,6584,star,what is a lady doing?,video6584,160341,18 1762,6584,play,what is a song doing?,video6584,160342,18 1763,6584,display,what is a cute woman is doing?,video6584,160343,18 1764,6584,wear,what are the persons doing?,video6584,160344,18 1765,6584,adjust,what is a female athlete rocks back and forth on her feet while doing?,video6584,160345,18 1766,6584,space,what is a lady staring into a singer is singing a song in the background?,video6584,160346,18 1767,6584,stadium,what does a woman in a uniform and tattoo face look around?,video6584,160347,18 1768,6584,lady,who is looking?,video6584,160348,18 1769,6584,blonde,who is sitting down?,video6584,160349,18 1770,6584,song,what is playing in the background?,video6584,160350,18 1771,6584,face,what is a lady make up by flag?,video6584,160351,18 1772,6584,face,what is a lady make up by falg?,video6584,160352,18 1773,6584,scene,what is a cute woman is displaying in?,video6584,160353,18 1774,6584,guy,who is a very big sports fan who nedds more big tron time cause who ever shes supporting?,video6584,160354,18 1775,6584,blonde,who wears a red white and blue uniform?,video6584,160355,18 1776,6584,jacket,what do the woman with the blonde hair look around wearing?,video6584,160356,18 1777,6584,scene,where is a cute woman is displaying?,video6584,160357,18 1778,6584,woman,who is is displaying in the scene?,video6584,160358,18 1779,6584,sit,what is a blonde woman doing?,video6584,160359,18 1780,6585,watch,what is a man and woman on the couch drinking coffee doing?,video6585,160360,3 1781,6585,laptop,what does a couple speaking about whats being shown on?,video6585,160361,3 1782,6585,two,how many people are using laptop?,video6585,160362,3 1783,6585,explain,what is a man doing?,video6585,160363,3 1784,6585,person,who typing on a computer?,video6585,160364,3 1785,6585,man,who is talking to a woman?,video6585,160365,3 1786,6585,man,who is explaining a dance?,video6585,160366,3 1787,6585,person,who is explaining something?,video6585,160367,3 1788,6585,computer,what does a person type on?,video6585,160368,3 1789,6585,dance,what is a man explaining?,video6585,160369,3 1790,6585,laptop,what are two people using?,video6585,160370,3 1791,6585,woman,who is a man talking to?,video6585,160371,3 1792,6585,man,who is talking about something from the laptop?,video6585,160372,3 1793,6585,talk,what is a man and a women doing?,video6585,160373,3 1794,6585,talk,what is two people doing?,video6585,160374,3 1795,6585,use,what are two people doing?,video6585,160375,3 1796,6585,sit,what is some people doing?,video6585,160376,3 1797,6585,use,what is man doing?,video6585,160377,3 1798,6585,explain,what is a person doing?,video6585,160378,3 1799,6585,speak,what is a couple doing?,video6585,160379,3 1800,6585,look,what are a man and a woman doing?,video6585,160380,3 1801,6585,talk,what is a man and a woman doing?,video6585,160381,3 1802,6585,type,what is a person doing?,video6585,160382,3 1803,6585,look,what is a man and woman doing?,video6585,160383,3 1804,6586,baby,who was the woman holding?,video6586,160384,9 1805,6586,woman,who was holding a baby?,video6586,160385,9 1806,6586,hold,what was the woman doing?,video6586,160386,9 1807,6586,move,what are the images doing?,video6586,160387,9 1808,6586,talk,what is lady doing?,video6586,160388,9 1809,6586,hold,what is a woman doing?,video6586,160389,9 1810,6586,woman,who holds a child and a stroller?,video6586,160390,9 1811,6586,stroller,who is being advertised?,video6586,160391,9 1812,6586,woman,who demonstrates the use of a baby stroller?,video6586,160392,9 1813,6586,stroller,who is shown?,video6586,160393,9 1814,6586,stroller,who is showcased?,video6586,160394,9 1815,6586,stroller,who do demonstration of a three wheel?,video6586,160395,9 1816,6586,tricycle,what is advertised?,video6586,160396,9 1817,6587,tire,what does a man push from flat side to flat side across a football field feet wearing orange running shoes run up gray stadium steps?,video6587,160397,3 1818,6587,man,who walks around with under armor shoes on while a man talks about life above?,video6587,160398,3 1819,6587,man,who is doing some exercises on the grass?,video6587,160399,3 1820,6587,upstair,what do a boys in red color dresses doing exercise running walking down fast displaying on screen?,video6587,160400,3 1821,6587,screen,what do a boys in red color dresses doing exercise running walking upstair down fast displaying on?,video6587,160401,3 1822,6587,upstair,what do a boys in red color dresses moving tyre exercise running walking down fast displaying on screen?,video6587,160402,3 1823,6587,screen,what do a boys in red color dresses moving tyre exercise running walking upstair down fast displaying on?,video6587,160403,3 1824,6587,field,where is a man in cleats walking outside?,video6587,160404,3 1825,6587,armor,what are showing guys doing training such as running up and down the bleachers?,video6587,160405,3 1826,6587,armor,what are showing guys doing training such as talking about the navy seals?,video6587,160406,3 1827,6587,stadium,what are strong young men seen striving during various athletic drills many are running up and down?,video6587,160407,3 1828,6587,man,who pushes a tire from flat side to flat side across a football field feet wearing orange running shoes run up gray stadium steps?,video6587,160408,3 1829,6587,wear,what is a man pushes a tire from flat side to flat side across a football field feet doing?,video6587,160409,3 1830,6587,exercise,what are the persons doing like lifting the rod?,video6587,160410,3 1831,6587,stadium,what are feet in orange running shoes and orange laces underneath black pants running up and down gray steps of?,video6587,160411,3 1832,6587,field,where does a man walk?,video6587,160412,3 1833,6587,field,what is a man in cleats walking on outside?,video6587,160413,3 1834,6587,walk,what is a man in cleats doing?,video6587,160414,3 1835,6587,exercise,what is strong young men are seen doing?,video6587,160415,3 1836,6587,move,what is a boys in red color dresses doing?,video6587,160416,3 1837,6587,walk,what is man doing?,video6587,160417,3 1838,6587,work,what is various images of men doing?,video6587,160418,3 1839,6587,man,who walks on a field?,video6587,160419,3 1840,6587,fitnes,what are the number of person doing the exercises for?,video6587,160420,3 1841,6587,show,what are they doing?,video6587,160421,3 1842,6587,athlete,who is being shown walking and other things?,video6587,160422,3 1843,6587,man,who is walking?,video6587,160423,3 1844,6587,gras,what is man doing some exercises on?,video6587,160424,3 1845,6587,message,what does a man give?,video6587,160425,3 1846,6587,field,what does a man walk on?,video6587,160426,3 1847,6587,man,who gives a motivational message?,video6587,160427,3 1848,6588,movie,what do an indian showing a man in a uniform?,video6588,160428,7 1849,6588,three,how many men are in the kitchen?,video6588,160429,7 1850,6588,table,what has a man in police uniform kept his legs on while speaking?,video6588,160430,7 1851,6588,person,who does one police man who is sitting on a chair discussing to another two police man who stand beside?,video6588,160431,7 1852,6588,person,who has his feet kicked up on the table?,video6588,160432,7 1853,6588,movie,what do an indian wearing sunglasses?,video6588,160433,7 1854,6588,polouse,who is speaking in the movie scene?,video6588,160434,7 1855,6588,fun,what are three men having in the room?,video6588,160435,7 1856,6588,table,what does a person have his feet kicked up on?,video6588,160436,7 1857,6588,three,how many men are sitting?,video6588,160437,7 1858,6588,room,what are three men having fun in?,video6588,160438,7 1859,6588,person,who is sitting down while asleep he has his feet kicked up on the table?,video6588,160439,7 1860,6588,kitchen,what are three men in?,video6588,160440,7 1861,6588,bos,what are three non american men speaking in uniform is laid back?,video6588,160441,7 1862,6588,pink,what does men in military suits speaking to someone lounging on a desk very colorful surroundings including?,video6588,160442,7 1863,6588,talk,what is bunch of junior police officers doing?,video6588,160443,7 1864,6588,sit,what are three men doing?,video6588,160444,7 1865,6588,try,what is a man in glass laying back while doing?,video6588,160445,7 1866,6588,place,what is a police officer doing?,video6588,160446,7 1867,6588,talk,what is a man with his feet up doing?,video6588,160447,7 1868,6588,speak,what is a police man doing?,video6588,160448,7 1869,6588,sit,what is one police man who doing?,video6588,160449,7 1870,6588,speak,what are three non american men doing?,video6588,160450,7 1871,6588,sit,what is a person doing?,video6588,160451,7 1872,6588,wear,what is a man doing?,video6588,160452,7 1873,6588,speak,what is men in military suits doing?,video6588,160453,7 1874,6588,speak,what is a man in police uniform has kept his legs on the table while doing?,video6588,160454,7 1875,6588,three,how many men are having fun in the room?,video6588,160455,7 1876,6588,three,how many people are having nice time in the kitchen?,video6588,160456,7 1877,6588,show,what is a scene from an indian movie doing?,video6588,160457,7 1878,6588,show,what is an indian movie doing?,video6588,160458,7 1879,6588,talk,what is there is police man doing?,video6588,160459,7 1880,6589,song,what is a video game playing with akon in it?,video6589,160460,10 1881,6589,music,what plays the desktop of an apple?,video6589,160461,10 1882,6589,computer,what is someone giving screenshot of?,video6589,160462,10 1883,6589,apple,what does music play the desktop of?,video6589,160463,10 1884,6589,person,who is demonstrating a glitchy interface?,video6589,160464,10 1885,6589,interface,what is a person demonstrating?,video6589,160465,10 1886,6589,someone,who is operating the computer?,video6589,160466,10 1887,6589,screenshot,what is someone giving?,video6589,160467,10 1888,6589,computor,what is some on?,video6589,160468,10 1889,6589,computer,what does a person use?,video6589,160469,10 1890,6589,person,who uses computer software?,video6589,160470,10 1891,6589,someone,who is giving screenshot of computer?,video6589,160471,10 1892,6589,play,what is it doing?,video6589,160472,10 1893,6589,video,what is playing a song with akon in it?,video6589,160473,10 1894,6589,video,what is being played?,video6589,160474,10 1895,6589,perform,what is a cursor doing?,video6589,160475,10 1896,6589,explain,what is a person doing?,video6589,160476,10 1897,6589,demonstrate,what is a person doing?,video6589,160477,10 1898,6589,record,what is a person doing?,video6589,160478,10 1899,6589,interact,what is someone doing?,video6589,160479,10 1900,6589,operate,what is someone doing?,video6589,160480,10 1901,6589,someone,what is playing around with the computer while playing the akon song?,video6589,160481,10 1902,6589,computer,what is someone playing around with while playing the akon song?,video6589,160482,10 1903,6589,music,what plays in the background while a person uses computer software?,video6589,160483,10 1904,6589,cursor,what is performing tasks on a computer screen?,video6589,160484,10 1905,6589,background,what does music play in while a person uses computer software?,video6589,160485,10 1906,6589,akon,who is a video game playing a song with in it?,video6589,160486,10 1907,6589,computer,what is displayed?,video6589,160487,10 1908,6589,computer,what is someone operating?,video6589,160488,10 1909,6590,hold,what is a coach receiving and doing?,video6590,160489,3 1910,6590,team,what is winning a trophy?,video6590,160490,3 1911,6590,man,who wins a sporting event?,video6590,160491,3 1912,6590,trophy,what is a man celebrating in a crowd of people?,video6590,160492,3 1913,6590,team,what posed for a picture?,video6590,160493,3 1914,6590,person,who is showing trophy?,video6590,160494,3 1915,6590,man,who is holding up a trophy?,video6590,160495,3 1916,6590,trophy,what is some team winning?,video6590,160496,3 1917,6590,picture,what did the team pose for?,video6590,160497,3 1918,6590,sport,what do people attend?,video6590,160498,3 1919,6590,event,what does a man win?,video6590,160499,3 1920,6590,team,what is giving pose for photo by standing together?,video6590,160500,3 1921,6590,man,who is celebrating his trophy in a crowd of people?,video6590,160501,3 1922,6590,win,what is some team doing?,video6590,160502,3 1923,6590,win,what is scene after doing?,video6590,160503,3 1924,6590,win,what is person doing?,video6590,160504,3 1925,6590,celebrate,what are people doing?,video6590,160505,3 1926,6590,walk,what is man doing?,video6590,160506,3 1927,6590,show,what is a sports man doing?,video6590,160507,3 1928,6590,show,what is a person doing?,video6590,160508,3 1929,6590,trophy,what is a man holding up?,video6590,160509,3 1930,6590,talk,what is a man doing?,video6590,160510,3 1931,6590,celebrate,what is a man doing?,video6590,160511,3 1932,6590,man,who talks about a sporting event while a man holds a trophy up excited in front of people?,video6590,160512,3 1933,6590,man,who is talking about a sports team receiving a trophy?,video6590,160513,3 1934,6590,man,who holds a trophy up excited in front of people?,video6590,160514,3 1935,6590,hold,what is a man on a football field full of people doing?,video6590,160515,3 1936,6590,trophy,what is a person showing?,video6590,160516,3 1937,6590,hold,what is a group of people crowded around a guy doing?,video6590,160517,3 1938,6590,hold,what is a man doing?,video6590,160518,3 1939,6591,room,what do two women speak to each other in?,video6591,160519,4 1940,6591,two,how many women are talking?,video6591,160520,4 1941,6591,mom,who is a woman talking to about a problem?,video6591,160521,4 1942,6591,woman,who reads through the documents?,video6591,160522,4 1943,6591,man,who is talking about history?,video6591,160523,4 1944,6591,woman,who talk to each other?,video6591,160524,4 1945,6591,girl,who are reading something?,video6591,160525,4 1946,6591,history,when is a man talking?,video6591,160526,4 1947,6591,something,what are some girl reading?,video6591,160527,4 1948,6591,letter,what do women read?,video6591,160528,4 1949,6591,letter,what is a woman explaining?,video6591,160529,4 1950,6591,two,how many women are looking at documents?,video6591,160530,4 1951,6591,woman,who is explaining a letter?,video6591,160531,4 1952,6591,two,how many women are talking about paperwork?,video6591,160532,4 1953,6591,look,what are two women doing?,video6591,160533,4 1954,6591,point,what is the lady doing?,video6591,160534,4 1955,6591,read,what are some girl doing?,video6591,160535,4 1956,6591,talk,what is people doing?,video6591,160536,4 1957,6591,peak,what is a woman doing?,video6591,160537,4 1958,6591,explain,what is a woman doing?,video6591,160538,4 1959,6591,talk,what is a man doing?,video6591,160539,4 1960,6591,two,how many women are talking about an important matter?,video6591,160540,4 1961,6591,two,how many women are talking seriously looking at few papers?,video6591,160541,4 1962,6591,two,how many women are looking over some papers?,video6591,160542,4 1963,6591,woman,who is peaking with an older woman about documents?,video6591,160543,4 1964,6591,two,how many women speak to each other in a room?,video6591,160544,4 1965,6591,discus,what is 2 people doing?,video6591,160545,4 1966,6592,snow,what is a girl with earmuffs sitting in with a man?,video6592,160546,13 1967,6592,candle,what is a man giving to a woman outside in the snow?,video6592,160547,13 1968,6592,gift,what is a man giving to his girlfriend?,video6592,160548,13 1969,6592,snow,what do a man sit outside in on a horse carriage?,video6592,160549,13 1970,6592,snow,what do a women sit outside in on a horse carriage?,video6592,160550,13 1971,6592,girlfriend,who is a man giving a gift to?,video6592,160551,13 1972,6592,man,who is holding a candle?,video6592,160552,13 1973,6592,sleigh,what are a man and woman on?,video6592,160553,13 1974,6592,place,what does a beer commercial take?,video6592,160554,13 1975,6592,candle,what is a man holding?,video6592,160555,13 1976,6592,man,who is giving a gift to his girlfriend?,video6592,160556,13 1977,6592,beer,what takes place?,video6592,160557,13 1978,6592,man,who seduces a woman with bud light while they sit outside in the snow on a horse carriage?,video6592,160558,13 1979,6592,man,who sit outside in the snow on a horse carriage?,video6592,160559,13 1980,6592,budlight,what commerical outside?,video6592,160560,13 1981,6592,hold,what is a clip of a woman doing?,video6592,160561,13 1982,6592,sit,what is a girl with earmuffs doing?,video6592,160562,13 1983,6592,talk,what are a man and woman doing?,video6592,160563,13 1984,6592,woo,what is a man doing?,video6592,160564,13 1985,6592,talk,what is guy and girl doing?,video6592,160565,13 1986,6592,sit,what is lady and man doing?,video6592,160566,13 1987,6592,man,who opens up a cooler of beer outside in the snow with a woman and a horse?,video6592,160567,13 1988,6592,man,who gives a woman a candle in the snow?,video6592,160568,13 1989,6592,man,who gives a girl a gift in a carriage?,video6592,160569,13 1990,6592,man,who is a girl with earmuffs sitting in the snow with?,video6592,160570,13 1991,6592,man,who seduces a woman with bud light while a women sit outside in the snow on a horse carriage?,video6592,160571,13 1992,6592,man,who is giving candle to a woman outside in the snow?,video6592,160572,13 1993,6593,clinton,who speaks in front of the public about the children s future?,video6593,160573,15 1994,6593,hillary,what clinton delivering a speech in iowa?,video6593,160574,15 1995,6593,speech,what is hillary clinton giving?,video6593,160575,15 1996,6593,speech,what do hilary clinton giving?,video6593,160576,15 1997,6593,hilary,what clinton giving a speech?,video6593,160577,15 1998,6593,audience,what applauded loudly?,video6593,160578,15 1999,6593,clinton,who speaks?,video6593,160579,15 2000,6593,campaign,what is hillary giving?,video6593,160580,15 2001,6593,talk,what is a lady doing?,video6593,160581,15 2002,6593,cheer,what is an audience doing?,video6593,160582,15 2003,6593,clap,what is an audience doing?,video6593,160583,15 2004,6593,clap,what is audience doing?,video6593,160584,15 2005,6593,deliver,what is hillary clinton doing?,video6593,160585,15 2006,6593,clap,what are people doing?,video6593,160586,15 2007,6593,listen,what is people doing?,video6593,160587,15 2008,6593,lady,who is talking before the crowd of people?,video6593,160588,15 2009,6593,talk,what do a short clip of hilary clinton giving?,video6593,160589,15 2010,6593,clinton,who delivers a speech in iowa?,video6593,160590,15 2011,6593,audience,what is clapping for a political candidate?,video6593,160591,15 2012,6593,audience,what claps for people on stage?,video6593,160592,15 2013,6593,clinton,who is giving a speech?,video6593,160593,15 2014,6593,speech,what does people listening to a woman s?,video6593,160594,15 2015,6593,audience,what is cheering for hillary clinton?,video6593,160595,15 2016,6593,speech,what do hillary clinton delivering in iowa?,video6593,160596,15 2017,6593,hillary,who is giving a campaign speech?,video6593,160597,15 2018,6593,iowa,who do hillary clinton delivering a speech in?,video6593,160598,15 2019,6593,audience,what clapping for politics?,video6593,160599,15 2020,6593,audience,what is clapping while clinton speaks?,video6593,160600,15 2021,6593,hillary,what clinton giving a speech and people cheerig?,video6593,160601,15 2022,6593,clinton,who is an audience cheering for?,video6593,160602,15 2023,6594,talk,what is a man doing?,video6594,160603,3 2024,6594,ski,what is an snowy with people doing?,video6594,160604,3 2025,6594,show,what is doing?,video6594,160605,3 2026,6594,ski,what are some people doing?,video6594,160606,3 2027,6594,speak,what is a snow land and many trees flag on land shown person doing?,video6594,160607,3 2028,6594,talk,what is a man is on a snow covered ground doing?,video6594,160608,3 2029,6594,ski,what is a skiier doing?,video6594,160609,3 2030,6594,look,what is doing?,video6594,160610,3 2031,6594,man,who fell while skiing?,video6594,160611,3 2032,6594,voice,what is talking?,video6594,160612,3 2033,6594,talk,what is a man voice doing?,video6594,160613,3 2034,6594,corner,where is a flag hoisted?,video6594,160614,3 2035,6594,land,what is displacing?,video6594,160615,3 2036,6594,snowy,what are mountain trees covered with snow in?,video6594,160616,3 2037,6594,person,who talks about the skier who lost his skies and landed some down there?,video6594,160617,3 2038,6594,mountain,what are covered with snow in a snowy?,video6594,160618,3 2039,6594,path,what did a snow cover forest open up to show through the forest?,video6594,160619,3 2040,6594,forest,what did a snow cover open up to show a ski path through the forest?,video6594,160620,3 2041,6594,man,who is talking about returning a ski to another man?,video6594,160621,3 2042,6594,snow,what covered forest open up to show a ski path through the forest?,video6594,160622,3 2043,6594,man,who is on a snow covered ground talking about where mountain trees ski to?,video6594,160623,3 2044,6594,skiier,who is skiing down a hill covered in fresh white snow?,video6594,160624,3 2045,6594,forest,what did a snow cover forest open up to show a ski path through?,video6594,160625,3 2046,6594,man,who tells a story via voiceover?,video6594,160626,3 2047,6594,flag,what is hoisted at a corner?,video6594,160627,3 2048,6594,man,who talks about man losing his ski as he fell while skiing?,video6594,160628,3 2049,6594,corner,what is a flag hoisted at?,video6594,160629,3 2050,6595,voice,what is a man using to call home from his car?,video6595,160630,9 2051,6595,call,what is someone doing?,video6595,160631,9 2052,6595,talk,what is man doing?,video6595,160632,9 2053,6595,show,what is guy doing?,video6595,160633,9 2054,6595,watch,what is a woman doing?,video6595,160634,9 2055,6595,car,what is a person speeding up in?,video6595,160635,9 2056,6595,tell,what is a person doing?,video6595,160636,9 2057,6595,home,what is someone calling in his car?,video6595,160637,9 2058,6595,person,who is speeding up in a car?,video6595,160638,9 2059,6595,speed,what is a person doing?,video6595,160639,9 2060,6595,record,what is a person doing?,video6595,160640,9 2061,6595,use,what is a man doing?,video6595,160641,9 2062,6595,show,what is meter doing?,video6595,160642,9 2063,6595,talk,what is a man doing?,video6595,160643,9 2064,6595,display,what is a car s meter doing?,video6595,160644,9 2065,6595,car,what s meter is displaying?,video6595,160645,9 2066,6595,someone,who is calling home while in his car?,video6595,160646,9 2067,6595,man,who is talking to his phone in his car?,video6595,160647,9 2068,6595,man,who is using the voice commands to call home from his car?,video6595,160648,9 2069,6595,person,who is recording the car meter?,video6595,160649,9 2070,6595,woman,who is watching television?,video6595,160650,9 2071,6595,car,what is a man talking to his phone in?,video6595,160651,9 2072,6595,phone,what is a man talking to in his car?,video6595,160652,9 2073,6595,car,what has advanced technology?,video6595,160653,9 2074,6595,meter,what does a car s is displaying?,video6595,160654,9 2075,6595,car,what is someone calling home while in?,video6595,160655,9 2076,6595,man,who uses the blue tooth on his phone?,video6595,160656,9 2077,6595,television,what is a woman watching?,video6595,160657,9 2078,6595,technology,what does the car have?,video6595,160658,9 2079,6595,meter,what does a car s?,video6595,160659,9 2080,6595,meter,what is a person recording?,video6595,160660,9 2081,6595,man,who is car with voice recognition software?,video6595,160661,9 2082,6595,man,who dials home from a hands free system?,video6595,160662,9 2083,6596,video,what is a person playing?,video6596,160663,9 2084,6596,man,who is playing?,video6596,160664,9 2085,6596,man,who narrates a video game?,video6596,160665,9 2086,6596,talk,what is a man doing?,video6596,160666,9 2087,6596,play,what is a person doing?,video6596,160667,9 2088,6596,roam,what is a video game character doing?,video6596,160668,9 2089,6596,hold,what is a video game player runs down a beach doing?,video6596,160669,9 2090,6596,shoot,what is a video game that involves doing?,video6596,160670,9 2091,6596,play,what is person doing?,video6596,160671,9 2092,6596,shoot,what is some one doing?,video6596,160672,9 2093,6596,show,what is someone doing?,video6596,160673,9 2094,6596,video,what is someone playing?,video6596,160674,9 2095,6596,person,who is playing gta 5?,video6596,160675,9 2096,6596,someone,what is playing a video game?,video6596,160676,9 2097,6596,person,who is talking about a valuable item?,video6596,160677,9 2098,6596,video,what does a man narrate?,video6596,160678,9 2099,6596,beach,what does a video game player run down holding a gun?,video6596,160679,9 2100,6596,bench,what is a video game character running on with a gun?,video6596,160680,9 2101,6596,gun,what is a video game character running on a bench with?,video6596,160681,9 2102,6596,person,who fires a gun in a video game?,video6596,160682,9 2103,6596,gun,what does a person fire in a video game?,video6596,160683,9 2104,6596,beach,what is a video game character roaming with a gun pointed towards people?,video6596,160684,9 2105,6596,person,who is playing a video game?,video6596,160685,9 2106,6596,gun,what does a video game player run down a beach holding?,video6596,160686,9 2107,6597,color,what is a girl doing?,video6597,160687,14 2108,6597,girl,who is demonstrating how to color fan blades?,video6597,160688,14 2109,6597,color,what is fast motion of a girl doing?,video6597,160689,14 2110,6597,show,what is girl doing?,video6597,160690,14 2111,6597,talk,what is girl doing?,video6597,160691,14 2112,6597,color,what is person doing?,video6597,160692,14 2113,6597,demonstrate,what is a girl doing?,video6597,160693,14 2114,6597,girl,who colors fan blades rainbow colors?,video6597,160694,14 2115,6597,person,who coloring on fan blades?,video6597,160695,14 2116,6597,girl,who coloring fan blades then talking?,video6597,160696,14 2117,6597,fan,what a girl colors rainbow colors?,video6597,160697,14 2118,6597,rainbow,what a girl colors fan blades?,video6597,160698,14 2119,6597,girl,who is making a rainbow object?,video6597,160699,14 2120,6597,child,who plays with a toy?,video6597,160700,14 2121,6597,girl,who is doing a craft?,video6597,160701,14 2122,6597,girl,who is making a project?,video6597,160702,14 2123,6597,fan,what does person color on?,video6597,160703,14 2124,6597,toy,what does a child play with?,video6597,160704,14 2125,6597,fan,what did a girl color then talking?,video6597,160705,14 2126,6597,project,what is a girl making?,video6597,160706,14 2127,6597,craft,what is a girl doing?,video6597,160707,14 2128,6597,fan,what blade?,video6597,160708,14 2129,6597,girl,who explains how to make a fan look cool?,video6597,160709,14 2130,6597,girl,who shows how to make a rainbow fan?,video6597,160710,14 2131,6597,girl,who gives a brief tutorial on making a rainbow blade for an electric fan?,video6597,160711,14 2132,6598,woman,who is talking about some hand back to another woman?,video6598,160712,9 2133,6598,woman,who is a woman telling about a backpack?,video6598,160713,9 2134,6598,lady,who pack?,video6598,160714,9 2135,6598,bag,what does a women check out?,video6598,160715,9 2136,6598,bag,what is a woman holding?,video6598,160716,9 2137,6598,backpack,what did a women stuff?,video6598,160717,9 2138,6598,backpack,what are people demonstrating using?,video6598,160718,9 2139,6598,woman,who is holding a bag?,video6598,160719,9 2140,6598,hand,what is a woman talking about back to another woman?,video6598,160720,9 2141,6598,woman,who is a woman talking about some hand back to?,video6598,160721,9 2142,6598,backpack,what is a woman telling another woman about?,video6598,160722,9 2143,6598,woman,who is telling another woman about a backpack?,video6598,160723,9 2144,6598,woman,who demonstrates the good qualities of a particular backpack?,video6598,160724,9 2145,6598,explain,what is two women doing?,video6598,160725,9 2146,6598,talk,what are two women doing?,video6598,160726,9 2147,6598,woman,who folds up a purse in a room?,video6598,160727,9 2148,6598,hold,what is lady doing?,video6598,160728,9 2149,6598,describe,what are girls doing?,video6598,160729,9 2150,6598,stuff,what is a women doing?,video6598,160730,9 2151,6598,review,what is a woman doing?,video6598,160731,9 2152,6598,present,what is a woman doing?,video6598,160732,9 2153,6598,tell,what is a woman doing?,video6598,160733,9 2154,6598,demonstrate,what are people doing?,video6598,160734,9 2155,6598,hold,what is a woman doing?,video6598,160735,9 2156,6598,explain,what is a woman doing?,video6598,160736,9 2157,6598,two,how many women discuss a backpack designed for transport of childrens accessories?,video6598,160737,9 2158,6598,two,how many women are talking about some creative hand bags?,video6598,160738,9 2159,6598,two,how many women discuss the usefullness of a back pack?,video6598,160739,9 2160,6598,talk,what is a woman doing?,video6598,160740,9 2161,6599,woman,who are talking on a talk show?,video6599,160741,1 2162,6599,doctor,who is talking about something?,video6599,160742,1 2163,6599,talk,what is woman doing?,video6599,160743,1 2164,6599,talk,what are woman doing?,video6599,160744,1 2165,6599,talk,what is two women doing?,video6599,160745,1 2166,6599,explain,what is a woman doing?,video6599,160746,1 2167,6599,wear,what is a woman doing?,video6599,160747,1 2168,6599,talk,what are a mother and daughter doing?,video6599,160748,1 2169,6599,talk,what is a doctor doing?,video6599,160749,1 2170,6599,something,what is a doctor talking about?,video6599,160750,1 2171,6599,conversation,what are two women having?,video6599,160751,1 2172,6599,two,how many women are talking to each other?,video6599,160752,1 2173,6599,woman,who speaks to another woman on a tv show?,video6599,160753,1 2174,6599,woman,who is talking?,video6599,160754,1 2175,6599,two,how many women are having a conversation?,video6599,160755,1 2176,6600,woman,who fastens a dress in a room?,video6600,160756,0 2177,6600,girl,who is singing in front of a wall?,video6600,160757,0 2178,6600,show,what is a video doing?,video6600,160758,0 2179,6600,room,what does a woman fasten a dress in?,video6600,160759,0 2180,6600,england,where do a woman and a man sing?,video6600,160760,0 2181,6600,woman,who sings?,video6600,160761,0 2182,6600,song,what are three people singing?,video6600,160762,0 2183,6600,dres,what does a woman fasten in a room?,video6600,160763,0 2184,6600,song,what are a man and woman singing?,video6600,160764,0 2185,6600,england,what do a woman and a man sing in?,video6600,160765,0 2186,6600,three,how many people are singing a song?,video6600,160766,0 2187,6600,piece,what are a few men and women singing?,video6600,160767,0 2188,6600,woman,who is bound in bandages?,video6600,160768,0 2189,6601,talk,what is a woman in doing?,video6601,160769,4 2190,6601,look,what is a woman doing?,video6601,160770,4 2191,6601,speak,what is a woman doing?,video6601,160771,4 2192,6601,talk,what is a women doing?,video6601,160772,4 2193,6601,hold,what is person doing?,video6601,160773,4 2194,6601,woman,who is talking about something?,video6601,160774,4 2195,6601,interview,what is a woman giving?,video6601,160775,4 2196,6601,woman,who is speaking?,video6601,160776,4 2197,6601,program,what interview being conducted?,video6601,160777,4 2198,6601,upbringing,what does a woman reflect on?,video6601,160778,4 2199,6601,photography,what is a woman looking at?,video6601,160779,4 2200,6601,video,what does a man narrate?,video6601,160780,4 2201,6601,something,what is a woman talking about?,video6601,160781,4 2202,6601,woman,who is looking at a photography?,video6601,160782,4 2203,6601,man,who narrates a video game?,video6601,160783,4 2204,6601,woman,who is talking about living on the streets?,video6601,160784,4 2205,6601,woman,who speaks to a camera for a video segment?,video6601,160785,4 2206,6601,woman,who is giving interview?,video6601,160786,4 2207,6602,food,what is a person cooking?,video6602,160787,16 2208,6602,man,who is showing how to cook?,video6602,160788,16 2209,6602,food,what is someone making?,video6602,160789,16 2210,6602,season,what is a man doing?,video6602,160790,16 2211,6602,prepare,what is chef doing?,video6602,160791,16 2212,6602,tos,what is a man doing?,video6602,160792,16 2213,6602,tos,what is a man mixing and doing?,video6602,160793,16 2214,6602,cook,what is a person doing?,video6602,160794,16 2215,6602,describe,what is a person doing?,video6602,160795,16 2216,6602,prepare,what is a person doing?,video6602,160796,16 2217,6602,show,what is a man doing?,video6602,160797,16 2218,6602,someone,who is making food?,video6602,160798,16 2219,6602,man,who mixes potatos with parsley and garlic?,video6602,160799,16 2220,6602,man,who is seasoning potatoes?,video6602,160800,16 2221,6602,bowl,what is a man tossing potatoes in?,video6602,160801,16 2222,6602,potato,what does a man mix with parsley and garlic?,video6602,160802,16 2223,6602,man,who seasoning potatoes in a bowl?,video6602,160803,16 2224,6602,man,who is showing how to prepare a potato recipe?,video6602,160804,16 2225,6602,man,who is tossing potatoes in a bowl?,video6602,160805,16 2226,6602,person,who is cooking food?,video6602,160806,16 2227,6602,man,who is tossing cooked potatoes in a bowl to transfer the flavor?,video6602,160807,16 2228,6602,person,who is preparing a potato dish in the kitchen?,video6602,160808,16 2229,6602,bowl,what is a man tossing cooked potatoes in to transfer the flavor?,video6602,160809,16 2230,6602,person,who is describing a potato garlic cooking technique?,video6602,160810,16 2231,6603,talk,what is a man doing?,video6603,160811,6 2232,6603,letterman,who is bill murray speaking with?,video6603,160812,6 2233,6603,murray,who is talking on david letterman?,video6603,160813,6 2234,6603,murray,who was wearing goggles?,video6603,160814,6 2235,6603,murray,who was on the late show?,video6603,160815,6 2236,6603,letterman,who is bill murray talking on?,video6603,160816,6 2237,6603,murphy,what talks on a talk show?,video6603,160817,6 2238,6603,man,who is tali?,video6603,160818,6 2239,6603,man,who is being interviewed?,video6603,160819,6 2240,6603,murray,who is speaking with david letterman?,video6603,160820,6 2241,6603,speak,what is bill murray doing?,video6603,160821,6 2242,6603,murray,who is shown on the late night show?,video6603,160822,6 2243,6603,cheese,what did an old man in a show and cover in?,video6603,160823,6 2244,6603,bill,what maher messy late night interview?,video6603,160824,6 2245,6603,wear,what was bill murray doing?,video6603,160825,6 2246,6603,man,who is talking while covered in white slimy goo?,video6603,160826,6 2247,6603,mes,what did bill murray on david letterman cover in?,video6603,160827,6 2248,6603,man,who covered in goo on a late night talk show?,video6603,160828,6 2249,6603,man,who is talking with his face full of cream?,video6603,160829,6 2250,6604,leonardo,who dicaprio in one of his many movies great actor?,video6604,160830,7 2251,6604,microphone,what is the young man talking on while others are listening to him?,video6604,160831,7 2252,6604,man,who wear talking to a group of people and inspiring them?,video6604,160832,7 2253,6604,leonardo,who sits at a desk with microphones?,video6604,160833,7 2254,6604,man,who is talking on microphone while others are listening to him?,video6604,160834,7 2255,6604,crime,what is a man speaking into several microphones in a crowded room he is speaking about?,video6604,160835,7 2256,6604,death,what does a man discuss before a group of people the need to police submachine guns in lieu of a child s?,video6604,160836,7 2257,6604,person,who is speaking in a meeting to the viewers about something seriously?,video6604,160837,7 2258,6604,man,who is speaking into several microphones in a crowded room he is speaking about american crime?,video6604,160838,7 2259,6604,man,who discusses before a group of people the need to police submachine guns in lieu of a child s death?,video6604,160839,7 2260,6604,talk,what is a person is seated and doing?,video6604,160840,7 2261,6604,talk,what is the young man doing?,video6604,160841,7 2262,6604,speak,what is a person with gray colour coat doing?,video6604,160842,7 2263,6604,sit,what is leonardo dicaprio doing?,video6604,160843,7 2264,6604,talk,what is man in formal wear doing?,video6604,160844,7 2265,6604,sit,what is a man in a suit doing?,video6604,160845,7 2266,6604,speak,what is a man doing?,video6604,160846,7 2267,6604,speak,what is a person doing?,video6604,160847,7 2268,6604,talk,what is a man in a movie doing?,video6604,160848,7 2269,6604,person,who is seated?,video6604,160849,7 2270,6604,logo,what do a man speak to?,video6604,160850,7 2271,6604,man,who speak to the logo?,video6604,160851,7 2272,6604,meeting,what is a person speaking in to the viewers about something seriously?,video6604,160852,7 2273,6604,shirt,what is a man in a tan suit wear?,video6604,160853,7 2274,6604,leonardo,who is sitting in front of microphones talking with a group of men behind a man in a tan suit?,video6604,160854,7 2275,6604,crowd,what does a man in a tan suit speak emphatically to?,video6604,160855,7 2276,6604,leonardo,who addresses the need to fight crime?,video6604,160856,7 2277,6605,man,who is wearing black color dress is standing up?,video6605,160857,13 2278,6605,site,what does a young man talk about?,video6605,160858,13 2279,6605,something,what is man talking about?,video6605,160859,13 2280,6605,bed,what is man sitting near?,video6605,160860,13 2281,6605,person,what is 12 days of collamas the title of the video?,video6605,160861,13 2282,6605,man,who is talking about something?,video6605,160862,13 2283,6605,text,what is on a red screen?,video6605,160863,13 2284,6605,color,what is a man wearing is standing up?,video6605,160864,13 2285,6605,man,who encourages viewers to subscribe?,video6605,160865,13 2286,6605,man,who asks people to subscribe to his 12 days?,video6605,160866,13 2287,6605,collage,what does a screen shot of live video with three feed in?,video6605,160867,13 2288,6605,man,who talks about his site?,video6605,160868,13 2289,6605,person,who is 12 days of collamas the title of the video appears?,video6605,160869,13 2290,6605,bed,what is man in green shirt sitting near?,video6605,160870,13 2291,6605,share,what is a boy with black t-shirt doing?,video6605,160871,13 2292,6605,talk,what is there is a man doing?,video6605,160872,13 2293,6605,talk,what is there is a tshirt man doing?,video6605,160873,13 2294,6605,wear,what is a man doing?,video6605,160874,13 2295,6605,wear,what is a young man doing?,video6605,160875,13 2296,6605,state,what is a man doing?,video6605,160876,13 2297,6605,sit,what is a boy in a long-sleeved shirt doing?,video6605,160877,13 2298,6605,play,what is the end of a video is seen with three preview videos doing?,video6605,160878,13 2299,6605,sit,what is man in green shirt doing?,video6605,160879,13 2300,6605,video,what is 12 days of collamas the title of a person appears?,video6605,160880,13 2301,6605,talk,what is a man in black doing?,video6605,160881,13 2302,6605,sit,what is man doing?,video6605,160882,13 2303,6606,cook,what is a woman doing?,video6606,160883,17 2304,6606,put,what is a woman doing?,video6606,160884,17 2305,6606,talk,what is a woman doing?,video6606,160885,17 2306,6606,place,what is a person doing?,video6606,160886,17 2307,6606,talk,what is two women doing?,video6606,160887,17 2308,6606,bake,what is a person doing?,video6606,160888,17 2309,6606,put,what is a young woman doing?,video6606,160889,17 2310,6606,lick,what is girl doing?,video6606,160890,17 2311,6606,put,what are two women chef doing?,video6606,160891,17 2312,6606,bake,what is a woman doing?,video6606,160892,17 2313,6606,woman,who is putting a baking pan with cake batter in it into an oven?,video6606,160893,17 2314,6606,woman,who baking a cake?,video6606,160894,17 2315,6606,cake,what is a woman placing in the oven?,video6606,160895,17 2316,6606,oven,what is a woman placing a cake in?,video6606,160896,17 2317,6606,stove,what are two women chef putting something in to bake?,video6606,160897,17 2318,6606,cake,what does a woman put into the oven?,video6606,160898,17 2319,6606,something,what are two women chef putting in the stove to bake?,video6606,160899,17 2320,6606,oven,what does a woman put a cake into?,video6606,160900,17 2321,6606,oven,what is a young woman putting a baking pan with cake batter in it into?,video6606,160901,17 2322,6606,oven,what do a person placing a pan into?,video6606,160902,17 2323,6606,oven,what does a woman place a pan filled with batter into?,video6606,160903,17 2324,6606,woman,who puts a cake into the oven?,video6606,160904,17 2325,6606,batter,who does a woman place a pan filled with into the oven?,video6606,160905,17 2326,6606,woman,who is placing a cake in the oven?,video6606,160906,17 2327,6606,woman,who cooks a dish in the oven?,video6606,160907,17 2328,6606,woman,who places a pan filled with batter into the oven?,video6606,160908,17 2329,6606,oven,what do a woman putting a pan into?,video6606,160909,17 2330,6606,cake,what is put in the oven?,video6606,160910,17 2331,6606,person,who baking something?,video6606,160911,17 2332,6606,cake,what does a woman bake?,video6606,160912,17 2333,6606,something,what does a person bake?,video6606,160913,17 2334,6606,oven,what is a cake put in?,video6606,160914,17 2335,6606,woman,who is baking?,video6606,160915,17 2336,6606,two,how many women chef are putting something in the stove to bake?,video6606,160916,17 2337,6607,footage,what falls?,video6607,160917,3 2338,6607,gymnast,who falls down?,video6607,160918,3 2339,6607,man,who is falling down?,video6607,160919,3 2340,6607,video,what s of people falling?,video6607,160920,3 2341,6607,gymnast,who crashes into a pommel horse?,video6607,160921,3 2342,6607,post,what is a man climbing a basket ball ring in?,video6607,160922,3 2343,6607,man,who is climbing a basket ball ring in a post?,video6607,160923,3 2344,6607,post,where is a man climbing a basket ball ring?,video6607,160924,3 2345,6607,fall,what is a compilation of people doing?,video6607,160925,3 2346,6607,woman,who is jumping?,video6607,160926,3 2347,6607,jump,what is person doing?,video6607,160927,3 2348,6607,perform,what is young men doing?,video6607,160928,3 2349,6607,jump,what are some people doing?,video6607,160929,3 2350,6607,fall,what is several people doing?,video6607,160930,3 2351,6607,injure,what is people doing?,video6607,160931,3 2352,6607,fall,what are people doing?,video6607,160932,3 2353,6607,fall,what are athletes doing?,video6607,160933,3 2354,6607,fall,what is funny video s of people doing?,video6607,160934,3 2355,6607,jump,what is a woman doing?,video6607,160935,3 2356,6607,fall,what is a video collage of people doing?,video6607,160936,3 2357,6607,fail,what is a sports video of people doing?,video6607,160937,3 2358,6607,climb,what is a man doing?,video6607,160938,3 2359,6607,fall,what are a few people doing?,video6607,160939,3 2360,6608,man,what interviews other on the street?,video6608,160940,4 2361,6608,woman,who a man interviews outside?,video6608,160941,4 2362,6608,man,who interviews a woman outside?,video6608,160942,4 2363,6608,man,what interviews people on the street?,video6608,160943,4 2364,6608,street,what a man interviews other on?,video6608,160944,4 2365,6608,man,who interviews random people on the street?,video6608,160945,4 2366,6608,person,who is asking questions to other?,video6608,160946,4 2367,6608,ask,what is there is a man doing?,video6608,160947,4 2368,6608,interview,what is a man doing?,video6608,160948,4 2369,6608,ask,what is a person doing?,video6608,160949,4 2370,6608,trivium,what do people answer?,video6608,160950,4 2371,6608,talk,what is a woman doing?,video6608,160951,4 2372,6609,harvey,who is laughing on his tv show?,video6609,160952,14 2373,6609,host,who do a tv show is laughing while talking to the players?,video6609,160953,14 2374,6609,five,how many ladies are laughing?,video6609,160954,14 2375,6609,man,who is talking to women?,video6609,160955,14 2376,6609,host,who laughs on stage?,video6609,160956,14 2377,6609,stage,when do a game show host is laughing?,video6609,160957,14 2378,6609,gameshow,who laughs with his contestants?,video6609,160958,14 2379,6609,host,who do a game show is laughing on stage?,video6609,160959,14 2380,6609,harvey,who laughs along with family feud contestants?,video6609,160960,14 2381,6609,man,who is on a game show talking to a familyt?,video6609,160961,14 2382,6609,game,what show host is laughing on stage?,video6609,160962,14 2383,6609,game,what is a tv?,video6609,160963,14 2384,6609,talk,what show host laughing?,video6609,160964,14 2385,6609,stage,when does a tv host laugh?,video6609,160965,14 2386,6609,man,who is joking?,video6609,160966,14 2387,6609,man,who is laughing?,video6609,160967,14 2388,6609,five,how many ladies are stadning?,video6609,160968,14 2389,6609,laugh,what is a tv show host doing?,video6609,160969,14 2390,6609,laugh,what is a game show host doing?,video6609,160970,14 2391,6609,talk,what is a man is on a game show doing?,video6609,160971,14 2392,6609,talk,what is a man doing?,video6609,160972,14 2393,6609,laugh,what is steve harvey doing?,video6609,160973,14 2394,6610,terror,what do a cnn news clip about?,video6610,160974,4 2395,6610,someone,who is being carried into an ambulance?,video6610,160975,4 2396,6610,terroisim,who is discussed on a news show?,video6610,160976,4 2397,6610,camera,what are terrorists posing for?,video6610,160977,4 2398,6610,ambulance,what is someone being carried into?,video6610,160978,4 2399,6610,channel,what is covering a story on isis?,video6610,160979,4 2400,6610,cnn,who talks about a group of militants and a group of health workers after a bloody skirmish?,video6610,160980,4 2401,6610,news,who are talking about a former cab driver who is now on the most wanted list?,video6610,160981,4 2402,6610,play,what is a man doing?,video6610,160982,4 2403,6610,hoist,what are army man s doing?,video6610,160983,4 2404,6610,hold,what is isis soldiers doing?,video6610,160984,4 2405,6610,talk,what are news porters doing?,video6610,160985,4 2406,6610,speak,what is reporters doing?,video6610,160986,4 2407,6610,pose,what are soldiers doing?,video6610,160987,4 2408,6610,pose,what are terrorists doing?,video6610,160988,4 2409,6610,cover,what is the channel cnn doing?,video6610,160989,4 2410,6610,news,what are people on?,video6610,160990,4 2411,6610,fight,what are soldiers getting ready for?,video6610,160991,4 2412,6611,cheer,what do two girls do?,video6611,160992,3 2413,6611,video,what are jumping?,video6611,160993,3 2414,6611,talk,what is a girl with blue hair doing?,video6611,160994,3 2415,6611,jump,what are girls doing?,video6611,160995,3 2416,6611,shout,what is two persons doing?,video6611,160996,3 2417,6611,record,what are two girls doing?,video6611,160997,3 2418,6611,chant,what is two girls doing?,video6611,160998,3 2419,6611,jump,what are two women s doing?,video6611,160999,3 2420,6611,jump,what is 2 girls doing?,video6611,161000,3 2421,6611,video,what are two girls recording themselves on?,video6611,161001,3 2422,6611,cheer,what are two girls doing?,video6611,161002,3 2423,6611,unison,what do the woman speak in?,video6611,161003,3 2424,6611,two,how many women pose for a video outside?,video6611,161004,3 2425,6611,something,what does 2 foreing speaking girls saying then playing it in reverse?,video6611,161005,3 2426,6611,reverse,what does 2 foreing speaking girls saying something then playing it in?,video6611,161006,3 2427,6611,two,how many girls are recording themselves on video?,video6611,161007,3 2428,6611,two,how many girls do a little cheer?,video6611,161008,3 2429,6611,two,how many girls are doing a cheer?,video6611,161009,3 2430,6611,woman,who speak in unison?,video6611,161010,3 2431,6611,two,how many girls jump?,video6611,161011,3 2432,6611,video,what are talking about something?,video6611,161012,3 2433,6611,two,how many girls talk?,video6611,161013,3 2434,6611,something,what are a video outside talking about?,video6611,161014,3 2435,6611,two,how many girls are jumping up and down?,video6611,161015,3 2436,6612,explain,what is a cartoon doing?,video6612,161016,5 2437,6612,depict,what is a cartoon doing?,video6612,161017,5 2438,6612,stand,what is a cartoon car doing?,video6612,161018,5 2439,6612,hill,what does an animated white station wagon roll down?,video6612,161019,5 2440,6612,comment,what is a guy doing?,video6612,161020,5 2441,6612,hit,what is a car doing?,video6612,161021,5 2442,6612,wear,what is a person in brown color dress doing?,video6612,161022,5 2443,6612,describe,what is man in brown clothes doing?,video6612,161023,5 2444,6612,talk,what is a man narrates the physics behind friction on a car s breaks while 2d cartoons illustrate his doing?,video6612,161024,5 2445,6612,banana,what is a car hitting from a hill?,video6612,161025,5 2446,6612,talk,what is a man doing?,video6612,161026,5 2447,6612,story,what do men describe?,video6612,161027,5 2448,6612,hill,what is a white car rolling down?,video6612,161028,5 2449,6612,gnome,who is a car hit?,video6612,161029,5 2450,6612,car,what is rolling down a hill?,video6612,161030,5 2451,6612,car,what is hit a gnome?,video6612,161031,5 2452,6612,slide,what did a computer generate plays as men describe a story?,video6612,161032,5 2453,6612,show,what is a person doing?,video6612,161033,5 2454,6612,roll,what is a white car doing?,video6612,161034,5 2455,6612,tell,what is a man doing?,video6612,161035,5 2456,6612,roll,what is a male scientist describes the physics behind a van doing?,video6612,161036,5 2457,6612,hill,what is a car hitting a banana stand from?,video6612,161037,5 2458,6612,computer,what generated slide plays as men describe a story?,video6612,161038,5 2459,6612,man,who is telling about an animation picture?,video6612,161039,5 2460,6612,car,what is a guy talking about on top of a hill?,video6612,161040,5 2461,6612,car,what is crashing into a banana stand twice destroying it the second time?,video6612,161041,5 2462,6612,animaton,what is man in brown clothes describing something with?,video6612,161042,5 2463,6612,smoke,what does a cartoon car standing on the hill and come down with?,video6612,161043,5 2464,6612,car,what is hitting a banana stand from a hill?,video6612,161044,5 2465,6612,guy,who is talking about a car on top of a hill?,video6612,161045,5 2466,6612,scientist,who describes the physics behind a van rolling down a hill?,video6612,161046,5 2467,6612,man,who is explaining about a car performance in two different angles?,video6612,161047,5 2468,6612,man,who narrates the physics behind friction on a car s breaks while 2d cartoons illustrate his talking points?,video6612,161048,5 2469,6612,cloth,what do a person in brown color dress wearing sitting speaking on topic and cartoon image car jumping?,video6612,161049,5 2470,6612,something,what is man in brown clothes describing with animaton?,video6612,161050,5 2471,6612,cloth,what do a person in brown color dress wearing sitting speaking on topic and cartoon image car moving?,video6612,161051,5 2472,6613,food,what are a light and orange colored goldfish eating from the surface?,video6613,161052,13 2473,6613,color,what swims near to the surface of water in the aquarium?,video6613,161053,13 2474,6613,food,what does a fish eat bits of inside an aquarium?,video6613,161054,13 2475,6613,food,what does a fish eat inside an aquarium?,video6613,161055,13 2476,6613,aquarium,what does a fish eat bits of food inside?,video6613,161056,13 2477,6613,aquarium,what does white color fish swim near to the surface of water in?,video6613,161057,13 2478,6613,food,what do a few fish swim around a tank looking for to eat?,video6613,161058,13 2479,6613,surface,what are a light and orange colored goldfish eating some food from?,video6613,161059,13 2480,6613,look,what are some fishes swimming the green leaves are there for in a fish tank?,video6613,161060,13 2481,6613,person,who is showing a thing in a water tank?,video6613,161061,13 2482,6613,food,what are the orange fish eating in aquarium?,video6613,161062,13 2483,6613,fish,what swim around a tank looking for food to eat?,video6613,161063,13 2484,6613,fish,what eats bits of food inside an aquarium?,video6613,161064,13 2485,6613,goldfish,what swim under a bright light in a large fish tank?,video6613,161065,13 2486,6613,aquarium,what does the white goldfish swim around in?,video6613,161066,13 2487,6613,goldfish,what eats what appears to be food or feces?,video6613,161067,13 2488,6613,show,what is a person doing?,video6613,161068,13 2489,6613,eat,what are a few fish in a fish tank doing?,video6613,161069,13 2490,6613,move,what is a water scene fish inside water doing?,video6613,161070,13 2491,6613,swim,what is a fish flowing in water doing?,video6613,161071,13 2492,6613,eat,what is a white color fish in aquarium doing?,video6613,161072,13 2493,6613,swim,what are the orange fish doing?,video6613,161073,13 2494,6613,swim,what are the fish doing?,video6613,161074,13 2495,6613,eat,what are a light and orange colored goldfish doing?,video6613,161075,13 2496,6613,aquarium,what is a white and an orange gold fish happily swimming inside?,video6613,161076,13 2497,6613,eat,what is goldfish in an aquarium at a residence seen quickly doing?,video6613,161077,13 2498,6613,swim,what are in a fish tank some fishes doing?,video6613,161078,13 2499,6613,look,what is a few fish swim around a tank doing?,video6613,161079,13 2500,6613,swim,what is a white and an orange gold fish is happily doing?,video6613,161080,13 2501,6613,orange,what are swimming?,video6613,161081,13 2502,6613,aquarium,what are the orange fish eating the food in?,video6613,161082,13 2503,6613,swim,what are white color fish swims near to the surface of water in the aquarium and gold fishes doing?,video6613,161083,13 2504,6613,goldfish,what swims around in the aquarium?,video6613,161084,13 2505,6613,fish,what are swimming in the green aquarium?,video6613,161085,13 2506,6613,orange,what are eating the food in aquarium?,video6613,161086,13 2507,6613,gold,what are swimming below?,video6613,161087,13 2508,6613,color,what aquiriam?,video6613,161088,13 2509,6614,glitter,what is a singer in a doing?,video6614,161089,18 2510,6614,sparkle,what is lady with doing?,video6614,161090,18 2511,6614,stand,what is a singer sings a song in front of an audience while doing?,video6614,161091,18 2512,6614,victorium,what does famous pop singer taylor swift sing on stage infant of an icy blue backdrop walk out onto the stage?,video6614,161092,18 2513,6614,stage,when does a young blonde woman stand?,video6614,161093,18 2514,6614,stage,what does a model in a swimsuit and large wings enter from behind the singer?,video6614,161094,18 2515,6614,song,what is a woman with blonde hair singing?,video6614,161095,18 2516,6614,stage,when is a woman singing when someone else enters the stage?,video6614,161096,18 2517,6614,stage,when does famous pop singer taylor swift sing on stage infant of an icy blue backdrop victoria secret models walk out?,video6614,161097,18 2518,6614,stage,when is a woman in a sparkling dress singing a song while models show off clothes?,video6614,161098,18 2519,6614,woman,who is singing on stage when someone else enters the stage?,video6614,161099,18 2520,6614,dazzling,when show with a singer and a model in a auditorium with audience?,video6614,161100,18 2521,6614,stage,what is lady with sparkling dressing is standing on the stage and sings and another lady with spectacular costume entering?,video6614,161101,18 2522,6614,woman,who is singing a song on the floor?,video6614,161102,18 2523,6614,singer,who sings a song in front of an audience while standing on stage?,video6614,161103,18 2524,6615,roll,what is a doing?,video6615,161104,17 2525,6615,prepare,what is a person doing?,video6615,161105,17 2526,6615,cook,what is a man doing?,video6615,161106,17 2527,6615,show,what is a man doing?,video6615,161107,17 2528,6615,prepare,what is a man doing?,video6615,161108,17 2529,6615,use,what is a cook doing?,video6615,161109,17 2530,6615,roll,what is person doing?,video6615,161110,17 2531,6615,roll,what is a man rolls dough with a doing?,video6615,161111,17 2532,6615,dough,what is a person rolling out with a rolling pin?,video6615,161112,17 2533,6615,person,who rolls dough?,video6615,161113,17 2534,6615,food,what is someone making?,video6615,161114,17 2535,6615,dough,what is a person rolling?,video6615,161115,17 2536,6615,dough,what is a person preparing?,video6615,161116,17 2537,6615,dough,what is someone rolling?,video6615,161117,17 2538,6615,someone,who is making food?,video6615,161118,17 2539,6615,kitchen,what do person rolling dough in?,video6615,161119,17 2540,6615,kitchen,what do flattening dough in?,video6615,161120,17 2541,6615,person,who is preparing dough?,video6615,161121,17 2542,6615,person,who dough in a kitchen?,video6615,161122,17 2543,6615,person,who is rolling dough?,video6615,161123,17 2544,6615,man,who preparation to chapatti?,video6615,161124,17 2545,6615,man,who is showing how to roll out dough for a recipe?,video6615,161125,17 2546,6615,person,who is rolling out dough with a rolling pin?,video6615,161126,17 2547,6615,table,what do a rolling pin rolling out dough on?,video6615,161127,17 2548,6615,man,who rolls dough with a rolling pin?,video6615,161128,17 2549,6615,person,who dough with a wooden roll?,video6615,161129,17 2550,6615,man,who is preparing for food in kitchen?,video6615,161130,17 2551,6615,food,what is a man preparing for in kitchen?,video6615,161131,17 2552,6615,kitchen,what is a man preparing for food in?,video6615,161132,17 2553,6616,describe,what is a man doing?,video6616,161133,10 2554,6616,computer,what is a guy building?,video6616,161134,10 2555,6616,computer,what is a man building?,video6616,161135,10 2556,6616,computer,what a man wires?,video6616,161136,10 2557,6616,game,what is being played?,video6616,161137,10 2558,6616,build,what is a man demonstrates doing?,video6616,161138,10 2559,6616,computer,what is a man putting together?,video6616,161139,10 2560,6616,put,what is a man doing?,video6616,161140,10 2561,6616,build,what is a guy doing?,video6616,161141,10 2562,6616,work,what is a man doing?,video6616,161142,10 2563,6616,fix,what is a person doing?,video6616,161143,10 2564,6616,build,what is a person is shown doing?,video6616,161144,10 2565,6616,build,what is a sped up video of a man doing?,video6616,161145,10 2566,6616,computer,what does a man build?,video6616,161146,10 2567,6616,computer,what is a person fixing?,video6616,161147,10 2568,6616,person,who is shown building a computer?,video6616,161148,10 2569,6616,computer,what does a man demonstrate building?,video6616,161149,10 2570,6616,man,who is working in a cpu?,video6616,161150,10 2571,6616,computer,what is a man taking apart?,video6616,161151,10 2572,6616,man,who demonstrates building a desktop computer?,video6616,161152,10 2573,6616,man,who builds a computer tower?,video6616,161153,10 2574,6616,man,who is taking apart a computer?,video6616,161154,10 2575,6616,guy,who is building a computer tower?,video6616,161155,10 2576,6616,man,who builds a computer?,video6616,161156,10 2577,6616,person,who is fixing a computer?,video6616,161157,10 2578,6616,man,who is putting together a computer?,video6616,161158,10 2579,6616,man,who is building a pc?,video6616,161159,10 2580,6616,cpu,what is a man working in?,video6616,161160,10 2581,6616,man,who wires his computer tower?,video6616,161161,10 2582,6617,play,what is two girls doing?,video6617,161162,12 2583,6617,woman,who is sitting down?,video6617,161163,12 2584,6617,look,what are women doing?,video6617,161164,12 2585,6617,discus,what are two girls doing?,video6617,161165,12 2586,6617,sit,what is a woman doing?,video6617,161166,12 2587,6617,play,what is people doing?,video6617,161167,12 2588,6617,look,what is people doing?,video6617,161168,12 2589,6617,look,what are people doing?,video6617,161169,12 2590,6617,look,what is kids doing?,video6617,161170,12 2591,6617,investigate,what is girls appear to be doing?,video6617,161171,12 2592,6617,admire,what are a pair of people doing?,video6617,161172,12 2593,6617,observe,what are two children doing?,video6617,161173,12 2594,6617,game,what do girls try to play?,video6617,161174,12 2595,6617,table,what are two girls discussing something on?,video6617,161175,12 2596,6617,screen,what are people looking at?,video6617,161176,12 2597,6617,something,what are two girls discussing on a table?,video6617,161177,12 2598,6617,interface,what are a pair of people admiring?,video6617,161178,12 2599,6617,man,who hovered over the girl?,video6617,161179,12 2600,6617,two,how many girls are discussing something on a table?,video6617,161180,12 2601,6617,two,how many girls are looking at colorful shapes at the arcades?,video6617,161181,12 2602,6617,two,how many children are observing some type of light show presentation?,video6617,161182,12 2603,6617,woman,who speaks to a child for a video segment?,video6617,161183,12 2604,6617,girl,who did the man hover over?,video6617,161184,12 2605,6618,man,who shoots?,video6618,161185,6 2606,6618,shoot,what are all persons doing?,video6618,161186,6 2607,6618,talk,what is a man doing?,video6618,161187,6 2608,6618,shoot,what is person in a lift doing?,video6618,161188,6 2609,6618,kill,what is bearded guy in suit doing?,video6618,161189,6 2610,6618,elevator,what are people in?,video6618,161190,6 2611,6618,watch,what is man in black suit doing?,video6618,161191,6 2612,6618,kill,what is a guy with a gun with people in elevator he doing?,video6618,161192,6 2613,6618,shoot,what is clips from the show fargo play as a narrator describe the bloody fashion of the show the clip transitions to billy bob thorton doing?,video6618,161193,6 2614,6618,stand,what are a man in a gray suit and a man in a black suit doing?,video6618,161194,6 2615,6618,stand,what is a person doing?,video6618,161195,6 2616,6618,shoot,what is people are in the elevator and a man doing?,video6618,161196,6 2617,6618,die,what is a man talks about people doing?,video6618,161197,6 2618,6618,hold,what is a man doing?,video6618,161198,6 2619,6618,man,who is shooting five people?,video6618,161199,6 2620,6618,elevator,what do five people ride in?,video6618,161200,6 2621,6618,five,how many people ride in an elevator?,video6618,161201,6 2622,6618,woman,who are all persons shooting on a lift?,video6618,161202,6 2623,6618,elevator,what does a cold hearted gunman shoot three people dead in?,video6618,161203,6 2624,6618,man,who kills three people inside an elevator?,video6618,161204,6 2625,6618,man,who shoots another man and two women in an elevator?,video6618,161205,6 2626,6618,elevator,what does a man in a gray suit shoot people on?,video6618,161206,6 2627,6618,narrator,who describe the bloody fashion of the show the clip transitions to billy bob thorton shooting three people in the head point blank?,video6618,161207,6 2628,6618,five,how many people is a gray haired man killing shooting them in the heads?,video6618,161208,6 2629,6618,man,who talks about people dying in bloody ways in movie scenes?,video6618,161209,6 2630,6618,person,who lift shooting the people who were inside along with him?,video6618,161210,6 2631,6618,five,how many people is a man shooting?,video6618,161211,6 2632,6618,elevator,what do the man and woman stand in?,video6618,161212,6 2633,6618,man,who is talking while standing out side?,video6618,161213,6 2634,6618,lift,what are all persons shooting a woman on?,video6618,161214,6 2635,6619,dance,what are kids doing?,video6619,161215,1 2636,6619,dance,what is two children doing?,video6619,161216,1 2637,6619,dance,what is little kids doing?,video6619,161217,1 2638,6619,dance,what are children doing?,video6619,161218,1 2639,6619,dance,what is three young children doing?,video6619,161219,1 2640,6619,dance,what are a little girl and toddler doing?,video6619,161220,1 2641,6619,dance,what are a girl and a boy doing?,video6619,161221,1 2642,6619,dance,what is a child doing?,video6619,161222,1 2643,6619,dance,what is and a man doing?,video6619,161223,1 2644,6619,show,what is a video doing?,video6619,161224,1 2645,6619,dance,what are some kids doing?,video6619,161225,1 2646,6619,dance,what is kids doing?,video6619,161226,1 2647,6619,child,who is dancing?,video6619,161227,1 2648,6619,toddler,who dances with his older sister?,video6619,161228,1 2649,6619,family,what is taking turns dancing silly?,video6619,161229,1 2650,6619,dance,what do kids dancing nae?,video6619,161230,1 2651,6619,boy,who are a little girl and toddler dancing to nae nae joins them and starts dancing?,video6619,161231,1 2652,6619,dance,what do kids doing the nae nae?,video6619,161232,1 2653,6619,music,what do little kids dance and jump around to?,video6619,161233,1 2654,6620,display,what is a mobile in hand doing?,video6620,161234,1 2655,6620,talk,what is people in different settings doing?,video6620,161235,1 2656,6620,music,what plays over pictures of a young couple taking selfies?,video6620,161236,1 2657,6620,video,what has a lot of pictures of random people taking selfies?,video6620,161237,1 2658,6620,techno,what does a montage of selfies and selfie takers shadowed by smile and?,video6620,161238,1 2659,6620,song,what plays?,video6620,161239,1 2660,6620,selfie,what is everyone taking?,video6620,161240,1 2661,6620,everyone,what is taking a selfie?,video6620,161241,1 2662,6620,screen,what do pictures of people play on?,video6620,161242,1 2663,6620,hindi,what is being played?,video6620,161243,1 2664,6620,length,what do women hold cameras at?,video6620,161244,1 2665,6620,video,what reflects about the people taking their selfies with their phone cameras?,video6620,161245,1 2666,6621,tank,what is a man in navy coveralls with a protective face mask in an industrial building describing?,video6621,161246,9 2667,6621,vehicle,what did a man with a face sheild talks about fuel pressure and consumption in?,video6621,161247,9 2668,6621,information,what is a man wearing protective gear giving to viewers?,video6621,161248,9 2669,6621,camera,what does a guy wearing a protective mask talk to?,video6621,161249,9 2670,6621,worker,who is describing how the fuel works?,video6621,161250,9 2671,6621,person,who is in the office?,video6621,161251,9 2672,6621,describe,what is a man in navy coveralls with a protective face mask in an industrial building doing?,video6621,161252,9 2673,6621,describe,what is a worker doing?,video6621,161253,9 2674,6621,usage,what does a man explain?,video6621,161254,9 2675,6621,man,who is working hard?,video6621,161255,9 2676,6621,office,what is person in?,video6621,161256,9 2677,6621,man,who explains his usage?,video6621,161257,9 2678,6621,garage,what is man talking in?,video6621,161258,9 2679,6621,talk,what is a man doing?,video6621,161259,9 2680,6621,talk,what is there is a fat man doing?,video6621,161260,9 2681,6621,show,what is a man with helmet stands in a cooling room and doing?,video6621,161261,9 2682,6621,wear,what is a man doing?,video6621,161262,9 2683,6621,describe,what is a person with helmet on his head doing?,video6621,161263,9 2684,6621,wear,what is a guy doing?,video6621,161264,9 2685,6621,work,what is man doing?,video6621,161265,9 2686,6621,talk,what is person is in the office and doing?,video6621,161266,9 2687,6621,bottle,what is preparing of the wine and doing?,video6621,161267,9 2688,6621,talk,what is a vehicle mechanic with helmet on his head doing?,video6621,161268,9 2689,6621,man,who is talking in the garage?,video6621,161269,9 2690,6622,trailer,who is about animated pets?,video6622,161270,13 2691,6622,dog,what is being pet by an animated human?,video6622,161271,13 2692,6622,pet,what is an animated dog being by an animated human?,video6622,161272,13 2693,6622,man,who is talking to a dog in his home?,video6622,161273,13 2694,6622,home,where is an animated man talking to a dog?,video6622,161274,13 2695,6622,dog,what is an animated man talking to in his home?,video6622,161275,13 2696,6622,cartoon,what is looking in the refrigerator?,video6622,161276,13 2697,6622,music,what does a cartoon dog listen to when its owner leaves?,video6622,161277,13 2698,6622,cartoon,what are acting?,video6622,161278,13 2699,6622,home,what is an animated man talking to a dog in?,video6622,161279,13 2700,6622,fridge,what is an animated cat looking into?,video6622,161280,13 2701,6622,refrigerator,what is a cartoon cat looking in?,video6622,161281,13 2702,6622,poodle,what is rocking out?,video6622,161282,13 2703,6622,cartoon,what listens to rock music when its owner leaves?,video6622,161283,13 2704,6622,act,what are cartoon critters doing?,video6622,161284,13 2705,6622,cat,what is looking into the fridge?,video6622,161285,13 2706,6622,look,what is an animated scene of a cat doing?,video6622,161286,13 2707,6622,rock,what is an animated poodle doing?,video6622,161287,13 2708,6622,look,what is an animated cat doing?,video6622,161288,13 2709,6622,look,what is a cartoon cat doing?,video6622,161289,13 2710,6622,talk,what is an animated man doing?,video6622,161290,13 2711,6623,use,what is a girl doing?,video6623,161291,9 2712,6623,show,what is a woman doing?,video6623,161292,9 2713,6623,talk,what is a woman doing?,video6623,161293,9 2714,6623,wear,what is a woman doing?,video6623,161294,9 2715,6623,woman,who shows off a purse?,video6623,161295,9 2716,6623,bag,what is a girl using?,video6623,161296,9 2717,6623,woman,who is showing inside?,video6623,161297,9 2718,6623,purse,what does a woman show off?,video6623,161298,9 2719,6623,purse,what is a woman showing off?,video6623,161299,9 2720,6623,purse,what is a woman opening?,video6623,161300,9 2721,6623,purse,what does a woman review?,video6623,161301,9 2722,6623,purse,what is a woman talking about?,video6623,161302,9 2723,6623,woman,who shows off a black purse?,video6623,161303,9 2724,6623,woman,who is showing the way a diaper bag works?,video6623,161304,9 2725,6623,woman,who is showing off a purse?,video6623,161305,9 2726,6623,woman,who talks about diapers and purses?,video6623,161306,9 2727,6623,woman,who is talking about different purses?,video6623,161307,9 2728,6623,woman,who is talking about a purse?,video6623,161308,9 2729,6623,woman,who demonstrates different bags?,video6623,161309,9 2730,6623,woman,who reviews a purse?,video6623,161310,9 2731,6623,woman,who explaning how to use the bag?,video6623,161311,9 2732,6624,car,what does video clip show?,video6624,161312,9 2733,6624,talk,what is a guy doing?,video6624,161313,9 2734,6624,car,what is a person talking about?,video6624,161314,9 2735,6624,car,what is man discussing?,video6624,161315,9 2736,6624,show,what is a man doing?,video6624,161316,9 2737,6624,explain,what is a person doing?,video6624,161317,9 2738,6624,show,what is a red car doing?,video6624,161318,9 2739,6624,discus,what is man doing?,video6624,161319,9 2740,6624,car,what is shown?,video6624,161320,9 2741,6624,man,who is discussing a car?,video6624,161321,9 2742,6624,view,what is a man doing?,video6624,161322,9 2743,6624,video,what shows a beautiful car?,video6624,161323,9 2744,6624,someone,who is closing the hood of the car?,video6624,161324,9 2745,6624,man,who is showing a tour of the outside of a car?,video6624,161325,9 2746,6624,man,who is viewing the front of a new car?,video6624,161326,9 2747,6624,man,who shows a red sports car to an audience?,video6624,161327,9 2748,6624,man,who closes the hood of a car?,video6624,161328,9 2749,6624,car,what does a man close the hood of?,video6624,161329,9 2750,6624,audience,what does the man show a red sports car to?,video6624,161330,9 2751,6624,car,what is someone closing the hood of?,video6624,161331,9 2752,6624,man,who closes a car motor section?,video6624,161332,9 2753,6624,person,who is talking about a car?,video6624,161333,9 2754,6625,person,who plays with a rubix cube?,video6625,161334,10 2755,6625,rubik,what is a person solving s cube?,video6625,161335,10 2756,6625,cube,what does a person looking at a rubiks?,video6625,161336,10 2757,6625,man,who solves a rubix cube?,video6625,161337,10 2758,6625,rubix,what does man solve?,video6625,161338,10 2759,6625,someone,what is playing with cubes?,video6625,161339,10 2760,6625,someone,what is playing brick game?,video6625,161340,10 2761,6625,rubix,what does hands s is pointed at in a man?,video6625,161341,10 2762,6625,person,who plays with a rubic cube?,video6625,161342,10 2763,6625,person,who is playing with a rubix cube?,video6625,161343,10 2764,6625,solve,what is doing?,video6625,161344,10 2765,6625,someone,who is explaining how to use a rubix cube?,video6625,161345,10 2766,6625,person,who is solving a rubik s cube?,video6625,161346,10 2767,6625,person,who points to squares on a rubik s cube?,video6625,161347,10 2768,6625,explain,what is someone doing?,video6625,161348,10 2769,6625,discus,what is an individual doing?,video6625,161349,10 2770,6625,try,what is a puzzle game doing?,video6625,161350,10 2771,6625,look,what is a person doing?,video6625,161351,10 2772,6625,solve,what is a person doing?,video6625,161352,10 2773,6625,play,what is a person doing?,video6625,161353,10 2774,6625,play,what is a man doing?,video6625,161354,10 2775,6625,cube,what is a person solving a rubik s?,video6625,161355,10 2776,6625,puzzle,what is trying to solve by someone?,video6625,161356,10 2777,6625,brick,what is someone playing?,video6625,161357,10 2778,6625,man,who is playing?,video6625,161358,10 2779,6626,wear,what is a man doing?,video6626,161359,6 2780,6626,stand,what are people doing?,video6626,161360,6 2781,6626,star,what is scenes from homeland doing?,video6626,161361,6 2782,6626,sigh,what is a man doing?,video6626,161362,6 2783,6626,relief,what is a man sighing in?,video6626,161363,6 2784,6626,teaser,what do homeland tv show?,video6626,161364,6 2785,6626,homeland,what is the scary movie clipping?,video6626,161365,6 2786,6626,man,who is sighing in relief?,video6626,161366,6 2787,6626,homeland,what show teaser clip?,video6626,161367,6 2788,6626,cheer,what is a group of military men doing?,video6626,161368,6 2789,6627,cow,what are men drinking near?,video6627,161369,16 2790,6627,drink,what are two men taking?,video6627,161370,16 2791,6627,liquid,what are men drinking?,video6627,161371,16 2792,6627,commentary,what shelters manufacturing?,video6627,161372,16 2793,6627,urine,what does few peoples drinking cow s?,video6627,161373,16 2794,6627,cow,what are three men drinking s urine?,video6627,161374,16 2795,6627,person,who is getting milk from a cow?,video6627,161375,16 2796,6627,liquor,what does a foreign man take a shot of straight from the factory?,video6627,161376,16 2797,6627,milk,what is a person getting from a cow?,video6627,161377,16 2798,6627,two,how many men are taking a drink?,video6627,161378,16 2799,6627,cure,what are men drinking in india?,video6627,161379,16 2800,6627,cow,what is a person getting milk from?,video6627,161380,16 2801,6627,cow,what are three men drinking?,video6627,161381,16 2802,6627,urine,what are three men drinking cow s?,video6627,161382,16 2803,6627,man,who is talking about cow urine?,video6627,161383,16 2804,6627,indium,what are men drinking a quirky cure in?,video6627,161384,16 2805,6627,three,how many men are drinking cow s urine?,video6627,161385,16 2806,6627,indium,where are men drinking a quirky cure?,video6627,161386,16 2807,6627,man,who takes a shot of liquor straight from the factory?,video6627,161387,16 2808,6627,three,how many men drink urine from a cow?,video6627,161388,16 2809,6627,look,what is a guy doing?,video6627,161389,16 2810,6627,talk,what is a man doing?,video6627,161390,16 2811,6627,champion,what is a video of hindu men doing?,video6627,161391,16 2812,6627,manufacture,what is commentary about cow shelters doing?,video6627,161392,16 2813,6627,drink,what is few peoples doing?,video6627,161393,16 2814,6627,drink,what are three men doing?,video6627,161394,16 2815,6627,drink,what are people doing?,video6627,161395,16 2816,6627,drink,what are men doing?,video6627,161396,16 2817,6628,show,what is a person doing?,video6628,161397,9 2818,6628,demonstrate,what is a woman doing?,video6628,161398,9 2819,6628,display,what is a woman doing?,video6628,161399,9 2820,6628,set,what is a woman doing?,video6628,161400,9 2821,6628,talk,what is a woman doing?,video6628,161401,9 2822,6628,try,what is woman doing?,video6628,161402,9 2823,6628,woman,who adjusts?,video6628,161403,9 2824,6628,stroller,what does woman show?,video6628,161404,9 2825,6628,woman,who shows stroller features?,video6628,161405,9 2826,6628,woman,who adjusts a stroller?,video6628,161406,9 2827,6628,woman,who is talking about a baby stroller?,video6628,161407,9 2828,6628,stroller,who is a woman demonstrating a feature of?,video6628,161408,9 2829,6628,person,who explains how to fit the trolley parts?,video6628,161409,9 2830,6628,woman,who shows the features of a baby stroller?,video6628,161410,9 2831,6628,woman,who shows off the features of a baby stroller?,video6628,161411,9 2832,6628,woman,who is demonstrating a feature of a stroller?,video6628,161412,9 2833,6628,woman,who unzips a compartment on a stroller?,video6628,161413,9 2834,6628,woman,who demonstrates the features of a baby stroller?,video6628,161414,9 2835,6628,person,who is showing a stroller?,video6628,161415,9 2836,6628,carriage,what does a lady show off features?,video6628,161416,9 2837,6628,stroller,who does a woman adjust?,video6628,161417,9 2838,6628,stroller,who is a woman setting up?,video6628,161418,9 2839,6628,stroller,who is a person showing?,video6628,161419,9 2840,6628,woman,who is setting up a stroller?,video6628,161420,9 2841,6629,practice,what is a football player payer doing?,video6629,161421,3 2842,6629,sprint,what is a football player doing?,video6629,161422,3 2843,6629,football,what is a man training for?,video6629,161423,3 2844,6629,video,what is a person playing?,video6629,161424,3 2845,6629,field,what does someone describe?,video6629,161425,3 2846,6629,field,what does a football player sprint down?,video6629,161426,3 2847,6629,someone,who describes a field?,video6629,161427,3 2848,6629,person,who is playing a video game?,video6629,161428,3 2849,6629,man,who is training for football?,video6629,161429,3 2850,6629,football,who sprints down a field?,video6629,161430,3 2851,6629,field,what is a football player sprinting down?,video6629,161431,3 2852,6629,speed,when is a football player running?,video6629,161432,3 2853,6629,football,who is running on a field?,video6629,161433,3 2854,6629,football,who races down the sidelines?,video6629,161434,3 2855,6629,football,who is sprinting down a field?,video6629,161435,3 2856,6629,football,who is running at top speed?,video6629,161436,3 2857,6629,field,where is a football player running?,video6629,161437,3 2858,6629,field,what is a football player running on?,video6629,161438,3 2859,6629,man,who is running very fast?,video6629,161439,3 2860,6629,train,what is a man doing?,video6629,161440,3 2861,6629,play,what is a person doing?,video6629,161441,3 2862,6630,record,what is young man doing?,video6630,161442,0 2863,6630,song,what is a man singing into a microphone?,video6630,161443,0 2864,6630,lynch,who sings a song?,video6630,161444,0 2865,6630,person,who sings into a microphone in a room?,video6630,161445,0 2866,6630,man,who is singing a song into a microphone?,video6630,161446,0 2867,6630,person,who is singing a song in the studio?,video6630,161447,0 2868,6630,boy,who is singing a song in front of his mic?,video6630,161448,0 2869,6630,room,what does a person sing into a microphone in?,video6630,161449,0 2870,6630,microphone,what does a person sing into in a room?,video6630,161450,0 2871,6630,man,who starts to sing into a microphone?,video6630,161451,0 2872,6630,man,who is singing into a microphone?,video6630,161452,0 2873,6630,microphone,what is a man singing a song into?,video6630,161453,0 2874,6630,song,what is a boy singing in front of his mic?,video6630,161454,0 2875,6630,microphone,what does a man start to sing into?,video6630,161455,0 2876,6630,teenager,who sings into a microphone?,video6630,161456,0 2877,6630,man,who vocals for song?,video6630,161457,0 2878,6630,microphone,what is a young man singing into?,video6630,161458,0 2879,6630,singer,who is singing with full concentration?,video6630,161459,0 2880,6630,teen,what sings at the mic?,video6630,161460,0 2881,6630,song,what do the boy sing?,video6630,161461,0 2882,6630,boy,who sing a song?,video6630,161462,0 2883,6630,man,who is singing in a room?,video6630,161463,0 2884,6630,song,what does young man recording vocals for?,video6630,161464,0 2885,6630,song,what does ross lynch sing?,video6630,161465,0 2886,6630,microphone,what does a teenager sing into?,video6630,161466,0 2887,6630,man,who is singing a song?,video6630,161467,0 2888,6630,microphone,what does a young man sing into?,video6630,161468,0 2889,6630,guy,who is singing passionately?,video6630,161469,0 2890,6630,song,what is man singing?,video6630,161470,0 2891,6630,room,what is a man singing in?,video6630,161471,0 2892,6630,mic,what does the teen sing at?,video6630,161472,0 2893,6630,concentration,what is a singer singing with?,video6630,161473,0 2894,6631,poke,what is girl on her knees talkng and man doing?,video6631,161474,14 2895,6631,poke,what is a man doing?,video6631,161475,14 2896,6631,man,who sticks a plush snake into another man s nose?,video6631,161476,14 2897,6631,man,who is poking another man with a soft toy snake?,video6631,161477,14 2898,6631,man,what the stuffed animal to the other mans face?,video6631,161478,14 2899,6631,man,who sticks something up another mans nose?,video6631,161479,14 2900,6631,something,what does an asian man stick up another mans nose?,video6631,161480,14 2901,6631,plush,what does a man stick into another man s nose?,video6631,161481,14 2902,6631,plushy,who does guy touches another guy s face with?,video6631,161482,14 2903,6631,face,what does guy touches another guy s with a plushy?,video6631,161483,14 2904,6631,play,what is a clip of a man doing?,video6631,161484,14 2905,6631,play,what are young people doing?,video6631,161485,14 2906,6631,wear,what is people doing?,video6631,161486,14 2907,6631,pretend,what are men and women doing?,video6631,161487,14 2908,6631,wear,what is kids doing?,video6631,161488,14 2909,6631,play,what is boy doing?,video6631,161489,14 2910,6631,act,what is asian people doing?,video6631,161490,14 2911,6631,act,what are adults doing?,video6631,161491,14 2912,6631,put,what is a man doing?,video6631,161492,14 2913,6631,two,how many people talk in a tv show?,video6631,161493,14 2914,6632,soccer,what are men playing?,video6632,161494,3 2915,6632,play,what are the men doing?,video6632,161495,3 2916,6632,mis,what is soccer players doing?,video6632,161496,3 2917,6632,play,what are players doing?,video6632,161497,3 2918,6632,play,what is people doing?,video6632,161498,3 2919,6632,soccer,what are people playing?,video6632,161499,3 2920,6632,play,what are men doing?,video6632,161500,3 2921,6632,explain,what is a person doing?,video6632,161501,3 2922,6632,play,what is a couple of soccer teams doing?,video6632,161502,3 2923,6632,soccer,what misses are shown?,video6632,161503,3 2924,6632,soccer,what do two teams play?,video6632,161504,3 2925,6632,play,what are people doing?,video6632,161505,3 2926,6632,soccer,what are the men playing?,video6632,161506,3 2927,6632,two,how many teams play soccer?,video6632,161507,3 2928,6632,person,who is explaining something?,video6632,161508,3 2929,6632,goal,what was missed twice in football?,video6632,161509,3 2930,6632,football,what was goal missed twice in?,video6632,161510,3 2931,6632,soccer,what are players playing?,video6632,161511,3 2932,6632,soccer,who kicks the ball across the field?,video6632,161512,3 2933,6632,ball,what does a soccer player kick across the field?,video6632,161513,3 2934,6632,field,what does a soccer player kick the ball across?,video6632,161514,3 2935,6632,something,what is a person explaining?,video6632,161515,3 2936,6633,someone,who minecraft?,video6633,161516,8 2937,6633,minecraft,who are running around?,video6633,161517,8 2938,6633,craft,what play skit?,video6633,161518,8 2939,6633,minecraft,who are dancing?,video6633,161519,8 2940,6633,move,what is an animation shows several video game characters doing?,video6633,161520,8 2941,6633,play,what is someone doing?,video6633,161521,8 2942,6633,video,what is a person playing?,video6633,161522,8 2943,6633,interact,what are minecraft characters doing?,video6633,161523,8 2944,6633,play,what is a person doing?,video6633,161524,8 2945,6633,minecraft,what is someone playing?,video6633,161525,8 2946,6633,dance,what are minecraft characters doing?,video6633,161526,8 2947,6633,cartoon,what show for kids?,video6633,161527,8 2948,6633,craft,what do short cinematic video taken inside the game mine?,video6633,161528,8 2949,6633,movie,what did a scene from minecraft play out like?,video6633,161529,8 2950,6633,animation,what shows several video game characters moving around?,video6633,161530,8 2951,6633,van,what do animated characters remove things from?,video6633,161531,8 2952,6633,courtyard,what do animated characters move things across?,video6633,161532,8 2953,6633,train,what is loaded with items in a cartoon?,video6633,161533,8 2954,6633,night,when do minecraft zombies play?,video6633,161534,8 2955,6633,game,what does an animation show characters moving around?,video6633,161535,8 2956,6633,someone,what is playing minecraft?,video6633,161536,8 2957,6633,action,what were the robots ready for?,video6633,161537,8 2958,6633,yard,what are minecraft characters interacting in?,video6633,161538,8 2959,6633,person,who is playing a video game?,video6633,161539,8 2960,6633,minecraft,who are interacting in a yard?,video6633,161540,8 2961,6633,minecraft,who play at night?,video6633,161541,8 2962,6634,man,who is talking about something by waving his hands in front of camera?,video6634,161542,7 2963,6634,cloth,what do a person in black color dress wearing speaking on topic discusing displaying on screen?,video6634,161543,7 2964,6634,man,who is talking about a movie story?,video6634,161544,7 2965,6634,something,what is the man talking about by waving his hands in front of camera?,video6634,161545,7 2966,6634,newsreporter,who is explaining some scenes from the hulk?,video6634,161546,7 2967,6634,guy,who is talking about a hulk movie?,video6634,161547,7 2968,6634,explain,what is a mock newsreporter doing?,video6634,161548,7 2969,6634,man,who reviews the move the incredible hulk on a red background?,video6634,161549,7 2970,6634,review,what is man doing?,video6634,161550,7 2971,6634,talk,what is a man is seated on front of a red screen and doing?,video6634,161551,7 2972,6634,talk,what is pale skinned man with brown hair doing?,video6634,161552,7 2973,6634,sit,what is a narrator with black hair doing?,video6634,161553,7 2974,6634,talk,what is a man with black dressing doing?,video6634,161554,7 2975,6634,wear,what is a man doing?,video6634,161555,7 2976,6634,talk,what is a man in black clothing in front of a red background gestures grandly while doing?,video6634,161556,7 2977,6634,talk,what is the man doing?,video6634,161557,7 2978,6634,move,what is guy doing?,video6634,161558,7 2979,6634,talk,what is man in black suit doing?,video6634,161559,7 2980,6634,wear,what is a person in black color dress doing?,video6634,161560,7 2981,6634,talk,what is a guy doing?,video6634,161561,7 2982,6634,man,who discusses information about the superhero the incredible hulk?,video6634,161562,7 2983,6634,man,who is seated on front of a red screen?,video6634,161563,7 2984,6634,man,who is talking?,video6634,161564,7 2985,6635,watson,who appears in what looks to be a compilation of scenes from a movie?,video6635,161565,18 2986,6635,involve,what is a scene from a movie doing?,video6635,161566,18 2987,6635,sleep,what is a girl doing?,video6635,161567,18 2988,6635,show,what is a famous hollywood movie scene doing?,video6635,161568,18 2989,6635,game,what is being played?,video6635,161569,18 2990,6635,girl,who is sleeping?,video6635,161570,18 2991,6635,girl,who was amazed?,video6635,161571,18 2992,6635,castle,what does a game cut to?,video6635,161572,18 2993,6635,beach,what does a girl stand on?,video6635,161573,18 2994,6635,girl,who stands on the beach?,video6635,161574,18 2995,6635,trailer,who is emma watson shown in?,video6635,161575,18 2996,6635,woman,who is walking while wearing a ball gown?,video6635,161576,18 2997,6635,trailer,who shows some scenes from a movie?,video6635,161577,18 2998,6635,hall,what does a woman in a dress walk down?,video6635,161578,18 2999,6635,watson,who is shown in a trailer?,video6635,161579,18 3000,6635,walk,what is a woman doing?,video6635,161580,18 3001,6635,game,what cuts to a castle?,video6635,161581,18 3002,6635,girl,who were trailer of a movie?,video6635,161582,18 3003,6636,someone,who is examining a rubik s cube?,video6636,161583,10 3004,6636,man,who is solving a rubics cube?,video6636,161584,10 3005,6636,cube,what is someone examining a rubik s?,video6636,161585,10 3006,6636,rubik,what is someone examining s cube?,video6636,161586,10 3007,6636,someone,who is using a rubix cube?,video6636,161587,10 3008,6636,person,who s cube?,video6636,161588,10 3009,6636,rubik,what is a person solving s cube?,video6636,161589,10 3010,6636,someone,what is playing with cubes?,video6636,161590,10 3011,6636,cube,what does a person holding s?,video6636,161591,10 3012,6636,someone,what is playing game?,video6636,161592,10 3013,6636,cube,what is a man solving?,video6636,161593,10 3014,6636,game,what is someone playing?,video6636,161594,10 3015,6636,rubix,what is someone using?,video6636,161595,10 3016,6636,someone,who tries to figure out a square puzzle?,video6636,161596,10 3017,6636,someone,who is showing?,video6636,161597,10 3018,6636,puzzle,what does someone try to figure out?,video6636,161598,10 3019,6636,kitchen,what are two kids sitting at eating snacks?,video6636,161599,10 3020,6636,hold,what is a person doing?,video6636,161600,10 3021,6636,person,who is showing a rubik s cube?,video6636,161601,10 3022,6636,person,who is solving a rubik s cube puzzle?,video6636,161602,10 3023,6636,sit,what are two kids doing?,video6636,161603,10 3024,6636,solve,what is this is a video of a guy doing?,video6636,161604,10 3025,6636,use,what is someone doing?,video6636,161605,10 3026,6636,play,what is someone doing?,video6636,161606,10 3027,6636,examine,what is someone doing?,video6636,161607,10 3028,6636,explain,what is someone doing?,video6636,161608,10 3029,6636,solve,what is an individual doing?,video6636,161609,10 3030,6636,try,what is a person doing?,video6636,161610,10 3031,6636,cube,what does a person turning a rubik s?,video6636,161611,10 3032,6636,show,what is a person doing?,video6636,161612,10 3033,6636,look,what is a man doing?,video6636,161613,10 3034,6636,two,how many kids are sitting at the kitchen eating snacks?,video6636,161614,10 3035,6636,person,who is solving a rubik s cube?,video6636,161615,10 3036,6636,man,who is looking at a rubik s cube?,video6636,161616,10 3037,6636,rubik,what is a person solving s cube puzzle?,video6636,161617,10 3038,6636,puzzle,what is a person solving a rubik s?,video6636,161618,10 3039,6636,someone,what is trying to solve a rubic s cube?,video6636,161619,10 3040,6636,solve,what is a man doing?,video6636,161620,10 3041,6637,blonde,who is explaining something?,video6637,161621,12 3042,6637,something,what is a blonde woman explaining?,video6637,161622,12 3043,6637,explain,what is a blonde woman doing?,video6637,161623,12 3044,6637,talk,what is a lady doing?,video6637,161624,12 3045,6637,sit,what is a woman with blonde hair doing?,video6637,161625,12 3046,6637,wear,what is a blonde woman doing?,video6637,161626,12 3047,6637,talk,what is a woman doing?,video6637,161627,12 3048,6637,stand,what is a blonde woman in a classroom speaks about math courses then they present a young man doing?,video6637,161628,12 3049,6637,talk,what is women doing?,video6637,161629,12 3050,6637,teach,what is a teacher doing?,video6637,161630,12 3051,6637,present,what is blonde woman doing?,video6637,161631,12 3052,6637,speak,what is a young lady doing?,video6637,161632,12 3053,6637,classroom,what are several people sitting behind a blonde woman similar to?,video6637,161633,12 3054,6637,lady,who is talking with students?,video6637,161634,12 3055,6637,woman,who is talking some thing in the class?,video6637,161635,12 3056,6637,blonde,who is talking about mathematics and a man in red shirt in front of a classroom?,video6637,161636,12 3057,6637,blonde,who is presenting the project in a classroom?,video6637,161637,12 3058,6637,blonde,who is giving an interview in the classroom?,video6637,161638,12 3059,6637,blonde,who talks about what a learning course offers?,video6637,161639,12 3060,6637,math,what does a blonde woman in a classroom speak about then they present a young man standing at a blackboard speaking to a class?,video6637,161640,12 3061,6637,project,what is blonde woman presenting in a classroom?,video6637,161641,12 3062,6637,university,what did women talking about the topics think in?,video6637,161642,12 3063,6637,classroom,what is blonde woman presenting the project in?,video6637,161643,12 3064,6637,interview,what is blonde woman giving in the classroom?,video6637,161644,12 3065,6637,classroom,what is blonde woman giving an interview in?,video6637,161645,12 3066,6637,shirt,what is a blonde woman talking about mathematics and a man in in front of a classroom?,video6637,161646,12 3067,6637,education,what does a pretty blonde haired woman talk about?,video6637,161647,12 3068,6637,blonde,who is talking on the tv news?,video6637,161648,12 3069,6638,introduce,what are a pair of children doing?,video6638,161649,17 3070,6638,talk,what are two children doing?,video6638,161650,17 3071,6638,act,what is two kids doing?,video6638,161651,17 3072,6638,act,what is a boy and a girl doing?,video6638,161652,17 3073,6638,stand,what are two little girls one dressed as a man doing?,video6638,161653,17 3074,6638,talk,what is a girl and a boy doing?,video6638,161654,17 3075,6638,talk,what are a boy and a girl doing?,video6638,161655,17 3076,6638,host,what is a girl doing?,video6638,161656,17 3077,6638,talk,what are two kids doing?,video6638,161657,17 3078,6638,perform,what is a man doing?,video6638,161658,17 3079,6638,cooking,what does a girl introduce?,video6638,161659,17 3080,6638,camera,what are two children talking to?,video6638,161660,17 3081,6638,room,what are two kids talking in?,video6638,161661,17 3082,6638,webcam,what is a girl and a boy talking on?,video6638,161662,17 3083,6638,boy,who made strange noises?,video6638,161663,17 3084,6638,cooking,what are a pair of children introducing?,video6638,161664,17 3085,6638,friend,who is the little girl making a video with?,video6638,161665,17 3086,6638,two,how many children are talking about cooking?,video6638,161666,17 3087,6638,two,how many children are talking to the camera?,video6638,161667,17 3088,6638,two,how many kids are talking in a room?,video6638,161668,17 3089,6638,kitchen,what are two little girls one dressed as a man standing in?,video6638,161669,17 3090,6638,man,who is performing in front of a group of judges?,video6638,161670,17 3091,6638,movie,what a boy and a girl acting in?,video6638,161671,17 3092,6639,group,what are sitting?,video6639,161672,19 3093,6639,center,what does a woman run down?,video6639,161673,19 3094,6639,screen,what is a man watching?,video6639,161674,19 3095,6639,man,who is watching a screen?,video6639,161675,19 3096,6639,video,what do prisoners watch?,video6639,161676,19 3097,6639,woman,who runs down the center?,video6639,161677,19 3098,6639,speech,what does a large crowd listen to?,video6639,161678,19 3099,6639,group,what are watching?,video6639,161679,19 3100,6639,watch,what are workers doing?,video6639,161680,19 3101,6639,watch,what is audience doing?,video6639,161681,19 3102,6639,sit,what is people doing?,video6639,161682,19 3103,6639,watch,what is people sit on benches doing?,video6639,161683,19 3104,6639,watch,what are people doing?,video6639,161684,19 3105,6639,sit,what are group of soldiers doing?,video6639,161685,19 3106,6639,watch,what is an auditorium filled with men doing?,video6639,161686,19 3107,6639,watch,what is a man doing?,video6639,161687,19 3108,6639,watch,what is a bunch of prisoners doing?,video6639,161688,19 3109,6639,woman,who is running in with a large hammer?,video6639,161689,19 3110,6639,crowd,what listens to a speech?,video6639,161690,19 3111,6639,man,who do many people watch a video with speaking?,video6639,161691,19 3112,6639,screen,what are room full of males transfixed on while a woman is running in with a large hammer?,video6639,161692,19 3113,6639,screen,what are workers watching in an oppressive regime while a man with a sledgehammer runs down the aisle?,video6639,161693,19 3114,6639,auditorium,what filled with men watching a screen while a woman runs down the center?,video6639,161694,19 3115,6639,video,what do many people watch with a man speaking?,video6639,161695,19 3116,6639,someone,who runs down the aisle?,video6639,161696,19 3117,6639,aisle,what does a man with a sledgehammer run down?,video6639,161697,19 3118,6639,movie,what are people watching in a theater?,video6639,161698,19 3119,6639,theater,what are people watching a movie in?,video6639,161699,19 3120,6639,aisle,what does someone run down?,video6639,161700,19 3121,6639,video,what do a group of people watch?,video6639,161701,19 3122,6640,cat,what is resting?,video6640,161702,13 3123,6640,talk,what is a man doing?,video6640,161703,13 3124,6640,lie,what is a cat doing?,video6640,161704,13 3125,6640,rest,what is a cat doing?,video6640,161705,13 3126,6640,report,what is a newscaster doing?,video6640,161706,13 3127,6640,lay,what is a video shows a cat doing?,video6640,161707,13 3128,6640,talk,what is a video doing?,video6640,161708,13 3129,6640,lay,what is cat doing?,video6640,161709,13 3130,6640,lie,what is the clip shows a cat doing?,video6640,161710,13 3131,6640,cat,what is lying around?,video6640,161711,13 3132,6640,lay,what is a cat doing?,video6640,161712,13 3133,6640,cat,what does a man talk about?,video6640,161713,13 3134,6640,ground,what is a cat on?,video6640,161714,13 3135,6640,story,what is about a real cat?,video6640,161715,13 3136,6640,cat,what is laying on the ground?,video6640,161716,13 3137,6640,cat,what is laying on the floor?,video6640,161717,13 3138,6640,newscaster,who is reporting on a cat?,video6640,161718,13 3139,6640,cat,what does a man talks about someone s?,video6640,161719,13 3140,6640,clip,what shows a cat lying idle?,video6640,161720,13 3141,6640,cat,what is a man talking about laying down?,video6640,161721,13 3142,6640,man,who is talking about a cat laying down?,video6640,161722,13 3143,6640,person,who talks about story about a cat?,video6640,161723,13 3144,6640,video,what shows a cat laying on the floor?,video6640,161724,13 3145,6640,cat,what was nominated for kitty mother of the year?,video6640,161725,13 3146,6640,man,who talks about his cat?,video6640,161726,13 3147,6640,ground,what is cat laying on?,video6640,161727,13 3148,6640,cat,what is lying on the floor?,video6640,161728,13 3149,6640,cat,what is a newscaster reporting on?,video6640,161729,13 3150,6640,floor,what is a cat laying on?,video6640,161730,13 3151,6640,cat,what is on the ground?,video6640,161731,13 3152,6640,floor,what is a cat lying on?,video6640,161732,13 3153,6641,plate,what did noodles keep on along with the sticks to eat it?,video6641,161733,16 3154,6641,egg,what is the stick placed on?,video6641,161734,16 3155,6641,plate,what is a noodles been placed in?,video6641,161735,16 3156,6641,dish,what does a woman s voice talks about?,video6641,161736,16 3157,6641,woman,who s voice talks about the dish?,video6641,161737,16 3158,6641,stick,what is placed on egg?,video6641,161738,16 3159,6641,describe,what is a noodles is been placed in the plate and a girl doing?,video6641,161739,16 3160,6641,explain,what is a lady doing?,video6641,161740,16 3161,6641,lady,who is presenting fried noodles with prawns in a prawn broth?,video6641,161741,16 3162,6641,lady,who is explaining how to make a singapore dish which consists of fried noodles and prawns?,video6641,161742,16 3163,6641,woman,who is making a singapore style noodle dish in a pot?,video6641,161743,16 3164,6641,countertop,what does a noodle dish with sprouts and shrimp sit on?,video6641,161744,16 3165,6641,pot,what is a woman making a singapore style noodle dish in?,video6641,161745,16 3166,6641,plate,what is some singapore noodles of egg kept on?,video6641,161746,16 3167,6641,girl,who is describing about a plate of food?,video6641,161747,16 3168,6641,serve,what is there is a woman doing?,video6641,161748,16 3169,6641,consist,what is a woman describes an elegant recipe doing?,video6641,161749,16 3170,6641,describe,what is a woman doing?,video6641,161750,16 3171,6641,talk,what is there is a woman doing?,video6641,161751,16 3172,6641,present,what is a lady doing?,video6641,161752,16 3173,6642,tenni,what did a woman red glimse bending over geting on a tennis courtflashs of the same women?,video6642,161753,3 3174,6642,girl,who bends over?,video6642,161754,3 3175,6642,butt,what does a creepy cameraman take photos of?,video6642,161755,3 3176,6642,butt,what is a woman who plays tennis professionally showing off?,video6642,161756,3 3177,6642,player,who climbs the audience place and hugs few people then searching something on the bag?,video6642,161757,3 3178,6642,match,what is a tennis player in a red outfit getting ready for?,video6642,161758,3 3179,6642,fall,what is there is a woman doing?,video6642,161759,3 3180,6642,bend,what is a woman who plays tennis professionally doing?,video6642,161760,3 3181,6642,parade,what is a tennis player doing?,video6642,161761,3 3182,6642,search,what is a tennis player climbs the audience place and hugs few people then doing?,video6642,161762,3 3183,6642,win,what is after doing?,video6642,161763,3 3184,6642,crawl,what is tennis woman doing?,video6642,161764,3 3185,6642,show,what is a tennis player gives out hugs while bent over with her panties doing?,video6642,161765,3 3186,6643,someone,who is giving some lecture?,video6643,161766,1 3187,6643,man,who is conducting a course?,video6643,161767,1 3188,6643,man,who is giving a lecture?,video6643,161768,1 3189,6643,man,who is talking about his perspectives?,video6643,161769,1 3190,6643,lecture,what is someone giving?,video6643,161770,1 3191,6643,course,what is a man conducting?,video6643,161771,1 3192,6643,lecture,what is a man giving?,video6643,161772,1 3193,6643,laptop,what is a man looking at?,video6643,161773,1 3194,6643,khaki,what do a man talk about principles on stage wearing?,video6643,161774,1 3195,6643,man,who is looking at a laptop?,video6643,161775,1 3196,6643,man,who is talking about being people ready?,video6643,161776,1 3197,6643,audience,what is a man in a blue shirt talking to?,video6643,161777,1 3198,6643,person,who is talking to a group of people?,video6643,161778,1 3199,6643,guy,who is giving a speech in front of an audience?,video6643,161779,1 3200,6643,man,who talk about principles on stage wearing a khaki suit?,video6643,161780,1 3201,6643,man,who is preaching?,video6643,161781,1 3202,6643,man,who is talking about something?,video6643,161782,1 3203,6643,man,who is talking?,video6643,161783,1 3204,6643,talk,what is a man in a blue shirt doing?,video6643,161784,1 3205,6643,conduct,what is a man doing?,video6643,161785,1 3206,6643,look,what is a man doing?,video6643,161786,1 3207,6643,preach,what is a man doing?,video6643,161787,1 3208,6643,wear,what is a man talk about principles on stage doing?,video6643,161788,1 3209,6643,talk,what is a person doing?,video6643,161789,1 3210,6643,man,who is speaking?,video6643,161790,1 3211,6643,show,what is a clip doing?,video6643,161791,1 3212,6644,guitar,what is a person playing on a stage?,video6644,161792,0 3213,6644,boy,who is singing a song in a stage in front of others?,video6644,161793,0 3214,6644,person,who plays guitar on a television show?,video6644,161794,0 3215,6644,clap,what is a man doing?,video6644,161795,0 3216,6644,guitar,what does the audience applaud a boy in glasses playing?,video6644,161796,0 3217,6644,audience,what applaudes a boy in glasses playing guitar?,video6644,161797,0 3218,6644,boy,who is performing with his guitar for a panel of judges?,video6644,161798,0 3219,6644,perform,what is this is a young boy doing?,video6644,161799,0 3220,6644,play,what is the boy doing?,video6644,161800,0 3221,6644,play,what is the audience applaudes a boy in glasses doing?,video6644,161801,0 3222,6644,person,who is playing guitar on a stage?,video6644,161802,0 3223,6644,play,what is boy singing and doing?,video6644,161803,0 3224,6644,play,what is a person doing?,video6644,161804,0 3225,6644,boy,who plays guitar on a tv talent show?,video6644,161805,0 3226,6644,boy,who sing?,video6644,161806,0 3227,6644,stage,when is a person playing guitar?,video6644,161807,0 3228,6644,boy,who is singing an ed sheeran song?,video6644,161808,0 3229,6644,boy,who is playing guitar?,video6644,161809,0 3230,6644,guitar,what is a young boy performing with for a panel of judges?,video6644,161810,0 3231,6644,boy,who played his guitar while he sang?,video6644,161811,0 3232,6644,guitar,what did the boy play while he sang?,video6644,161812,0 3233,6644,guitar,what is the boy playing?,video6644,161813,0 3234,6644,boy,who sings?,video6644,161814,0 3235,6644,audience,what is clapping?,video6644,161815,0 3236,6644,boy,who is singing?,video6644,161816,0 3237,6644,audience,what listens?,video6644,161817,0 3238,6644,boy,who sang?,video6644,161818,0 3239,6644,audience,what claps?,video6644,161819,0 3240,6644,man,who is clapping?,video6644,161820,0 3241,6644,audition,what is a young boy doing?,video6644,161821,0 3242,6644,perform,what is a talented kid doing?,video6644,161822,0 3243,6645,fly,what is a lady plays with a new doing?,video6645,161823,12 3244,6645,fly,what is a girl doing?,video6645,161824,12 3245,6645,show,what is a girl doing?,video6645,161825,12 3246,6645,hold,what is a person doing?,video6645,161826,12 3247,6645,display,what is a woman doing?,video6645,161827,12 3248,6645,play,what is a woman doing?,video6645,161828,12 3249,6645,show,what is clips doing?,video6645,161829,12 3250,6645,play,what are people doing?,video6645,161830,12 3251,6645,play,what is people doing?,video6645,161831,12 3252,6645,fly,what is a demonstration of a doing?,video6645,161832,12 3253,6645,play,what is woman doing?,video6645,161833,12 3254,6645,mini,what are people playing with?,video6645,161834,12 3255,6645,video,what about drones?,video6645,161835,12 3256,6645,man,who is a helicopter toy being demonstrated by a woman and then by?,video6645,161836,12 3257,6645,lady,who plays with a new flying invention?,video6645,161837,12 3258,6645,helicopter,what is being demonstrated by a woman and then by a man?,video6645,161838,12 3259,6645,woman,who flys a mini drone?,video6645,161839,12 3260,6645,person,who is holding a quad chopter?,video6645,161840,12 3261,6645,woman,who plays with a toy helicopter?,video6645,161841,12 3262,6645,woman,who is displaying a small flying object?,video6645,161842,12 3263,6645,drone,what is being presented on tv?,video6645,161843,12 3264,6645,drone,what does an asian woman fly?,video6645,161844,12 3265,6645,chopter,who is a person holding?,video6645,161845,12 3266,6646,sit,what is a man doing?,video6646,161846,19 3267,6646,kis,what are a man and a woman doing?,video6646,161847,19 3268,6646,visit,what is a danish couple doing?,video6646,161848,19 3269,6646,kis,what is a man and a women doing?,video6646,161849,19 3270,6646,drink,what is two people doing?,video6646,161850,19 3271,6646,kis,what is a man doing?,video6646,161851,19 3272,6646,enjoy,what is the young couple doing?,video6646,161852,19 3273,6646,woman,who are having nice time in the city?,video6646,161853,19 3274,6646,man,who kissing a wommen?,video6646,161854,19 3275,6646,man,who is laughing?,video6646,161855,19 3276,6646,couple,what is visiting paris as a romantic holiday to help increase the danish birth rate?,video6646,161856,19 3277,6646,pari,what is a danish couple visiting as a romantic holiday to help increase the danish birth rate?,video6646,161857,19 3278,6646,evening,when are thhe men and the women enjoy timethe men is lock their room and throw the key in the water?,video6646,161858,19 3279,6646,man,who is sitting with a woman at a table?,video6646,161859,19 3280,6646,date,when are a man and a woman going to different romantic spots around the city?,video6646,161860,19 3281,6647,computer,what does a german guy use?,video6647,161861,10 3282,6647,minecraft,what did the person give?,video6647,161862,10 3283,6647,video,what is a man playing?,video6647,161863,10 3284,6647,computer,what is a person using?,video6647,161864,10 3285,6647,coputer,what is a man using?,video6647,161865,10 3286,6647,computer,what is shown?,video6647,161866,10 3287,6647,person,who is using a computer program?,video6647,161867,10 3288,6647,person,who is showing how to do something on dropbox?,video6647,161868,10 3289,6647,guy,who uses a computer?,video6647,161869,10 3290,6647,man,who is using a coputer?,video6647,161870,10 3291,6647,man,who is playing a video game?,video6647,161871,10 3292,6647,man,who signs into his dropbox account?,video6647,161872,10 3293,6647,someone,who is talking about minecraft and dropbox?,video6647,161873,10 3294,6647,man,who is talking about dropbox?,video6647,161874,10 3295,6647,man,who explains how to log into dropbox?,video6647,161875,10 3296,6647,someone,who walks through signing into dropbox?,video6647,161876,10 3297,6647,use,what is a clip of someone doing?,video6647,161877,10 3298,6647,person,who gave tips for minecraft?,video6647,161878,10 3299,6647,man,who explains how to use dropbox in german?,video6647,161879,10 3300,6647,dropbox,who is a man talking about?,video6647,161880,10 3301,6647,play,what is a man doing?,video6647,161881,10 3302,6647,talk,what is a man doing?,video6647,161882,10 3303,6647,log,what is a man doing?,video6647,161883,10 3304,6647,show,what is a person doing?,video6647,161884,10 3305,6647,use,what is login into dropbox doing?,video6647,161885,10 3306,6647,talk,what is someone doing?,video6647,161886,10 3307,6647,sign,what is someone walks through doing?,video6647,161887,10 3308,6648,runway,what does a young model walk at a large fashion show?,video6648,161888,18 3309,6648,runway,what does a female model walk down at a fashion show?,video6648,161889,18 3310,6648,runway,what does a woman in pretty clothes walk up and down?,video6648,161890,18 3311,6648,lady,who is walking on the stage?,video6648,161891,18 3312,6648,stage,when is a lady walking?,video6648,161892,18 3313,6648,show,what is the audience watching?,video6648,161893,18 3314,6648,audience,what is watching the show?,video6648,161894,18 3315,6648,show,what concludes?,video6648,161895,18 3316,6648,runway,what is a model in red walking down to the stage wings behind the scenes?,video6648,161896,18 3317,6648,walk,what is there is a woman in red doing?,video6648,161897,18 3318,6648,exit,what is a runway model with a pink top doing?,video6648,161898,18 3319,6648,walk,what is a lady doing?,video6648,161899,18 3320,6648,scene,where is brunette woman in red long dress walking?,video6648,161900,18 3321,6648,model,what walks the runway for luli fama during miami fashion week?,video6648,161901,18 3322,6648,runway,who struts down a catwalk before the show concludes?,video6648,161902,18 3323,6648,runway,what does a fashion model for luli fama miami walk down?,video6648,161903,18 3324,6648,walking,what is conducting on the stage which is fashion show watching by the people?,video6648,161904,18 3325,6648,woman,who is walking on the fashion show ramp while the audience is watching it?,video6648,161905,18 3326,6648,model,who walks the runway at a large fashion show?,video6648,161906,18 3327,6648,scene,what is brunette woman in red long dress walking on?,video6648,161907,18 3328,6648,model,what walks down the runway at a fashion show?,video6648,161908,18 3329,6648,walk,what is the woman doing?,video6648,161909,18 3330,6648,stage,when is woman in red dress walking?,video6648,161910,18 3331,6648,catwalk,what does a runway model strut down before the show concludes?,video6648,161911,18 3332,6648,wear,what is a model doing?,video6648,161912,18 3333,6648,wear,what is doing?,video6648,161913,18 3334,6648,walk,what is a model in red doing?,video6648,161914,18 3335,6648,conduct,what is the ramp walking doing?,video6648,161915,18 3336,6648,walk,what is a young tall and skinny model doing?,video6648,161916,18 3337,6648,walk,what is brunette woman in red long dress doing?,video6648,161917,18 3338,6648,walk,what is woman in red dress doing?,video6648,161918,18 3339,6648,wear,what is a fashion dress design a girl doing?,video6648,161919,18 3340,6648,walk,what are in this above video gong fashion show models all doing?,video6648,161920,18 3341,6648,walk,what is model doing?,video6648,161921,18 3342,6649,man,who is talking about some historical figure?,video6649,161922,12 3343,6649,man,who is talking about dust mites?,video6649,161923,12 3344,6649,dust,what is a person talking about?,video6649,161924,12 3345,6649,man,who is talking about the climate?,video6649,161925,12 3346,6649,man,who is talking?,video6649,161926,12 3347,6649,scientist,what does a man wear?,video6649,161927,12 3348,6649,man,who wears a scientist shirt?,video6649,161928,12 3349,6649,webhost,who begins a segment on dust mites?,video6649,161929,12 3350,6649,dust,what is a man talking about?,video6649,161930,12 3351,6649,talk,what is a man doing?,video6649,161931,12 3352,6649,tell,what is a mans doing?,video6649,161932,12 3353,6649,talk,what is a person doing?,video6649,161933,12 3354,6649,talk,what is a young man doing?,video6649,161934,12 3355,6649,quote,what is a man doing?,video6649,161935,12 3356,6649,tell,what is video of a man doing?,video6649,161936,12 3357,6649,man,who talks about a quote from ts elliot?,video6649,161937,12 3358,6649,man,who speaks to a camera for a video segment?,video6649,161938,12 3359,6649,speak,what is guy doing?,video6649,161939,12 3360,6650,woman,who gives a speech as part of a news clip?,video6650,161940,5 3361,6650,speach,who do a group of people listen to?,video6650,161941,5 3362,6650,speech,what does a woman give as part of a news clip?,video6650,161942,5 3363,6650,person,who talks about political news?,video6650,161943,5 3364,6650,talk,what is a woman doing?,video6650,161944,5 3365,6650,talk,what is news reporters doing?,video6650,161945,5 3366,6650,podium,what do people speak at?,video6650,161946,5 3367,6650,news,what does a person talk about?,video6650,161947,5 3368,6650,speech,what do news report with?,video6650,161948,5 3369,6650,talk,what is a man doing?,video6650,161949,5 3370,6650,speak,what is a reporter doing?,video6650,161950,5 3371,6650,news,what report with a speech?,video6650,161951,5 3372,6651,minecraft,who are sneaking around?,video6651,161952,8 3373,6651,two,how many minecraft characters are trying to navigate a set of laser alarms?,video6651,161953,8 3374,6651,ingame,who minecraft clip showing figures doing agent like movements?,video6651,161954,8 3375,6651,video,who break into a restricted area protected by laser alarms?,video6651,161955,8 3376,6651,two,how many characters are navigating through a laser protected room?,video6651,161956,8 3377,6651,minecraft,who are trying to navigate a set of laser alarms?,video6651,161957,8 3378,6651,agent,what did an ingame minecraft clip showing figures doing like movements?,video6651,161958,8 3379,6651,person,who is playing a video game with legos?,video6651,161959,8 3380,6651,laser,what beams the minecraft characters try to sneak around?,video6651,161960,8 3381,6651,laser,what are two minecraft characters trying to navigate a set of?,video6651,161961,8 3382,6651,buiding,what is a cartoon breeaking into?,video6651,161962,8 3383,6651,room,what do a man and a zombie sneak through with lasers?,video6651,161963,8 3384,6651,video,what is a person playing with legos?,video6651,161964,8 3385,6651,minecraft,who ducks under lasers?,video6651,161965,8 3386,6651,minecraft,who sneaks into complex?,video6651,161966,8 3387,6651,two,how many animated characters are performing?,video6651,161967,8 3388,6651,minecraft,who is moving around?,video6651,161968,8 3389,6651,character,who is trying to be cautious?,video6651,161969,8 3390,6651,minecraft,who does the laser beam try to sneak around?,video6651,161970,8 3391,6651,character,who is jumping around?,video6651,161971,8 3392,6651,cartoon,what is breeaking into a buiding?,video6651,161972,8 3393,6651,jump,what is a green character doing?,video6651,161973,8 3394,6651,breeaking,what is a cartoon doing?,video6651,161974,8 3395,6651,try,what are two minecraft characters doing?,video6651,161975,8 3396,6651,perform,what are two animated characters doing?,video6651,161976,8 3397,6651,feature,what is this is an animation doing?,video6651,161977,8 3398,6651,sneak,what are minecraft characters doing?,video6651,161978,8 3399,6651,navigate,what are two characters doing?,video6651,161979,8 3400,6651,try,what is cartoon character doing?,video6651,161980,8 3401,6651,show,what is an ingame minecraft clip doing?,video6651,161981,8 3402,6651,play,what is a person doing?,video6651,161982,8 3403,6651,move,what is a minecraft character doing?,video6651,161983,8 3404,6651,avoid,what is a minecraft animation of a character doing?,video6651,161984,8 3405,6651,avoid,what is mine craft clip of characters doing?,video6651,161985,8 3406,6652,place,what are people gathered at?,video6652,161986,4 3407,6652,event,what does a crowd gather together for?,video6652,161987,4 3408,6652,crowd,what gathers together for an event?,video6652,161988,4 3409,6652,place,where are people gathered?,video6652,161989,4 3410,6652,building,what are a group of people crowded around near?,video6652,161990,4 3411,6652,man,who is clapping his hands?,video6652,161991,4 3412,6652,crowd,what gathers in the middle of a road?,video6652,161992,4 3413,6652,wait,what is a group of people doing?,video6652,161993,4 3414,6652,wait,what is a large group of people stand around doing?,video6652,161994,4 3415,6652,stand,what is a large group of people doing?,video6652,161995,4 3416,6652,clap,what is a man doing?,video6652,161996,4 3417,6652,walk,what are some people doing?,video6652,161997,4 3418,6653,bike,what are going on?,video6653,161998,9 3419,6653,two,how many motorcycles speed down a street?,video6653,161999,9 3420,6653,road,what does some motorcyclists race down?,video6653,162000,9 3421,6653,race,what does some motorcyclists down the road?,video6653,162001,9 3422,6653,man,who is riding a bike?,video6653,162002,9 3423,6653,street,what do two motorcycles speed down?,video6653,162003,9 3424,6653,scooter,what are people riding?,video6653,162004,9 3425,6653,two,how many men are racing motorcycles?,video6653,162005,9 3426,6653,race,what is drag doing?,video6653,162006,9 3427,6653,race,what is men doing?,video6653,162007,9 3428,6653,two,how many people are racing in small bikes?,video6653,162008,9 3429,6653,race,what are two men doing?,video6653,162009,9 3430,6653,race,what are two people doing?,video6653,162010,9 3431,6653,talk,what is two women doing?,video6653,162011,9 3432,6653,race,what is video of two young individuals doing?,video6653,162012,9 3433,6653,two,how many men are riding motorcycles down the street?,video6653,162013,9 3434,6653,bike,what is a man riding?,video6653,162014,9 3435,6653,race,what is two men doing?,video6653,162015,9 3436,6654,car,what do the car intentionally distract?,video6654,162016,9 3437,6654,car,what crashes fastly into the truck that comes from the opposite road?,video6654,162017,9 3438,6654,someone,who crashes into a bus?,video6654,162018,9 3439,6654,street,what are some cars driving around on outside?,video6654,162019,9 3440,6654,hatchback,what passes on two lane rural road?,video6654,162020,9 3441,6654,road,what does someone drive a car down?,video6654,162021,9 3442,6654,car,what does someone drive down a road?,video6654,162022,9 3443,6654,head,what does the car pass the driver of the other car then runs on to another car?,video6654,162023,9 3444,6654,car,what head on into a bus?,video6654,162024,9 3445,6654,car,what intentionally distract the another car?,video6654,162025,9 3446,6654,car,what intentionally create the accident?,video6654,162026,9 3447,6654,hatchback,what loses control crashing into oncoming bus?,video6654,162027,9 3448,6654,accident,what did one car meet with because of break faiure?,video6654,162028,9 3449,6654,car,what passes another car then veers into oncoming traffic and has a collision with a large vehicle?,video6654,162029,9 3450,6654,control,what does a hatchback car lose crashing into oncoming bus?,video6654,162030,9 3451,6654,car,what passes a car then swerves head first into a small bus?,video6654,162031,9 3452,6654,someone,what is driving down a paved road at a high speed?,video6654,162032,9 3453,6654,car,what met with an accident because of break faiure?,video6654,162033,9 3454,6654,silver,what drives down a road then smashes into a small bus?,video6654,162034,9 3455,6654,someone,who drives a car down a road?,video6654,162035,9 3456,6654,car,what does a green car pass then swerves head first into a small bus?,video6654,162036,9 3457,6654,car,what passes the driver of the other car then runs head on to another car?,video6654,162037,9 3458,6654,accident,what did a person driving a car on the road and meet with?,video6654,162038,9 3459,6654,accident,what do the car intentionally create?,video6654,162039,9 3460,6654,road,what is a car with red lights driving on?,video6654,162040,9 3461,6654,car,what does a car pass then veers into oncoming traffic and has a collision with a large vehicle?,video6654,162041,9 3462,6654,road,what does a silver car drive down then smashes into a small bus?,video6654,162042,9 3463,6654,driver,who does a mint green van pass?,video6654,162043,9 3464,6654,capture,what is someone doing?,video6654,162044,9 3465,6654,crash,what is someone drives a car down a road and witnesses another car doing?,video6654,162045,9 3466,6654,drive,what is some one doing?,video6654,162046,9 3467,6654,drive,what is someone doing?,video6654,162047,9 3468,6654,drive,what is a person doing?,video6654,162048,9 3469,6654,crash,what is a hatchback car passes on two lane rural road and loses control doing?,video6654,162049,9 3470,6654,move,what is a car doing?,video6654,162050,9 3471,6654,drive,what is a car with red lights doing?,video6654,162051,9 3472,6654,drive,what are some cars doing?,video6654,162052,9 3473,6654,slam,what is a green motor vehicle doing?,video6654,162053,9 3474,6655,rugby,who stand inside a building?,video6655,162054,3 3475,6655,leader,who speaks to players?,video6655,162055,3 3476,6655,man,who is talking to some athletes?,video6655,162056,3 3477,6655,experiement,who did men line up for?,video6655,162057,3 3478,6655,soccer,what are a group of men standing in?,video6655,162058,3 3479,6655,building,what do rugby players stand inside?,video6655,162059,3 3480,6655,train,what are people doing?,video6655,162060,3 3481,6655,feature,what is a clip from the tv show sports science doing?,video6655,162061,3 3482,6655,stand,what are a couple of sports players doing?,video6655,162062,3 3483,6655,stand,what are a group of men doing?,video6655,162063,3 3484,6655,talk,what is a man doing?,video6655,162064,3 3485,6655,pose,what is a rugby team doing?,video6655,162065,3 3486,6655,stand,what is athletes doing?,video6655,162066,3 3487,6655,stand,what is four sports player doing?,video6655,162067,3 3488,6655,talk,what is guys doing?,video6655,162068,3 3489,6655,stand,what is there is a clip of a few athletes doing?,video6655,162069,3 3490,6655,stand,what is four men in athletic uniforms doing?,video6655,162070,3 3491,6655,rugby,what is posing?,video6655,162071,3 3492,6655,four,how many sports player standing for and an sciencetific experiment?,video6655,162072,3 3493,6656,throw,what is a football player doing?,video6656,162073,3 3494,6656,play,what are many men doing?,video6656,162074,3 3495,6656,play,what is men doing?,video6656,162075,3 3496,6656,play,what are people doing?,video6656,162076,3 3497,6656,play,what are they doing?,video6656,162077,3 3498,6656,football,what is being televised?,video6656,162078,3 3499,6656,football,what are people playing?,video6656,162079,3 3500,6656,pas,what does a quarterback throw?,video6656,162080,3 3501,6656,football,what are many men playing?,video6656,162081,3 3502,6656,football,what game where quarterback throws ball to middle of the field?,video6656,162082,3 3503,6656,football,what is running a play on the field?,video6656,162083,3 3504,6656,touchdown,what do a clip of a football pass for?,video6656,162084,3 3505,6656,football,who is throwing an amazing pass?,video6656,162085,3 3506,6656,video,what shows highlights of a football game?,video6656,162086,3 3507,6656,pas,what is a football player throwing?,video6656,162087,3 3508,6656,quarterback,who throws a long pass?,video6656,162088,3 3509,6657,man,who is browsing a website?,video6657,162089,10 3510,6657,person,who is discussing software?,video6657,162090,10 3511,6657,computer,what is a person using?,video6657,162091,10 3512,6657,website,what does a man scroll on?,video6657,162092,10 3513,6657,website,who is a man browsing?,video6657,162093,10 3514,6657,software,what is a person discussing?,video6657,162094,10 3515,6657,person,who is commentating?,video6657,162095,10 3516,6657,webchat,what was the man in?,video6657,162096,10 3517,6657,man,who scrolls on a website?,video6657,162097,10 3518,6657,person,who is using a computer program?,video6657,162098,10 3519,6657,guy,who downloads software to his computer?,video6657,162099,10 3520,6657,information,what is a person giving to install cd?,video6657,162100,10 3521,6657,person,who is giving information to install cd?,video6657,162101,10 3522,6657,man,who is talking about the cd installation process?,video6657,162102,10 3523,6657,man,who is recording a video on how to install some software on a computer?,video6657,162103,10 3524,6657,man,who gives instructional advice on using a website?,video6657,162104,10 3525,6657,video,what is a man recording on how to install some software on a computer?,video6657,162105,10 3526,6657,man,who shows how to do something on the internet?,video6657,162106,10 3527,6657,man,who is explaining how to install an ip camera?,video6657,162107,10 3528,6657,man,who was in a webchat?,video6657,162108,10 3529,6657,man,who is looking at a web page?,video6657,162109,10 3530,6657,man,who is guiding about a software installation?,video6657,162110,10 3531,6657,use,what is a man gives instructional advice on doing?,video6657,162111,10 3532,6657,talk,what is a woman doing?,video6657,162112,10 3533,6657,teach,what is a man doing?,video6657,162113,10 3534,6657,show,what is a man doing?,video6657,162114,10 3535,6657,talk,what is a man doing?,video6657,162115,10 3536,6657,discus,what is a person doing?,video6657,162116,10 3537,6657,look,what is a man doing?,video6657,162117,10 3538,6657,guide,what is a man doing?,video6657,162118,10 3539,6657,explain,what is a man doing?,video6657,162119,10 3540,6657,browse,what is a man doing?,video6657,162120,10 3541,6657,record,what is a man doing?,video6657,162121,10 3542,6658,basketball,who is throwing the basketball into the round?,video6658,162122,3 3543,6658,basketball,what are some guys playing in a basket ball court?,video6658,162123,3 3544,6658,round,what is a basketball player throwing the basketball into?,video6658,162124,3 3545,6658,basketball,what is a basketball player throwing into the round?,video6658,162125,3 3546,6658,ball,what did a basketball game showing a missed basket attempt and then the other team rebound?,video6658,162126,3 3547,6658,court,what are teams playing basketball on?,video6658,162127,3 3548,6658,basketball,who are playing basketball?,video6658,162128,3 3549,6658,basketball,what are teams playing on the court?,video6658,162129,3 3550,6658,basketball,who are basketball player playing?,video6658,162130,3 3551,6658,basketball,what are people playing?,video6658,162131,3 3552,6658,play,what are there s music playing in the background while people doing?,video6658,162132,3 3553,6658,show,what is a basketball game doing?,video6658,162133,3 3554,6658,throw,what is a basketball player doing?,video6658,162134,3 3555,6658,play,what are basketball player doing?,video6658,162135,3 3556,6658,play,what is people doing?,video6658,162136,3 3557,6658,play,what are some guys doing?,video6658,162137,3 3558,6658,play,what are teams doing?,video6658,162138,3 3559,6658,play,what is two teams doing?,video6658,162139,3 3560,6659,talk,what is a cartoon character doing?,video6659,162140,2 3561,6659,hunt,what is a character doing?,video6659,162141,2 3562,6659,stand,what is a woman doing?,video6659,162142,2 3563,6659,talk,what is two cartoon characters doing?,video6659,162143,2 3564,6659,use,what is it s a parody of spongebob doing?,video6659,162144,2 3565,6659,talk,what is cartoon characters doing?,video6659,162145,2 3566,6659,bikini,where have anime characters replaced spongebob and patrick?,video6659,162146,2 3567,6659,talk,what is an animated girl doing?,video6659,162147,2 3568,6659,character,who is talking?,video6659,162148,2 3569,6659,woman,who is standing?,video6659,162149,2 3570,6659,cartoon,who is being mocked?,video6659,162150,2 3571,6659,conversation,what are cartoon characters having?,video6659,162151,2 3572,6659,cartoon,what are having a conversation?,video6659,162152,2 3573,6659,camera,what does an anime character speak to?,video6659,162153,2 3574,6659,character,who speaks to the camera?,video6659,162154,2 3575,6659,girl,who is an animated girl talking to?,video6659,162155,2 3576,6659,spongebob,who talk as anime charcters?,video6659,162156,2 3577,6659,girl,who is talking to another girl?,video6659,162157,2 3578,6659,character,who speaks with a funny voice?,video6659,162158,2 3579,6659,bikini,what have anime characters replaced spongebob and patrick in?,video6659,162159,2 3580,6659,spongebob,what have anime characters replaced in bikini bottom?,video6659,162160,2 3581,6659,anime,who have replaced spongebob and patrick in bikini bottom?,video6659,162161,2 3582,6659,talk,what is animation of a girl doing?,video6659,162162,2 3583,6660,talk,what is a man and a woman doing?,video6660,162163,7 3584,6660,woman,who asks man for the truth?,video6660,162164,7 3585,6660,harm,what is a man doing?,video6660,162165,7 3586,6660,think,what is a man doing?,video6660,162166,7 3587,6660,smoke,what is a person doing?,video6660,162167,7 3588,6660,lie,what is a woman asks a man why he doing?,video6660,162168,7 3589,6660,talk,what is a woman doing?,video6660,162169,7 3590,6660,suspect,what is an older movie about a woman doing?,video6660,162170,7 3591,6660,talk,what is black and white film of man and woman doing?,video6660,162171,7 3592,6660,carry,what is people doing?,video6660,162172,7 3593,6660,walk,what is people doing?,video6660,162173,7 3594,6660,talk,what is there s a man smoking and a girl doing?,video6660,162174,7 3595,6660,woman,who is talking to a man who is smoking?,video6660,162175,7 3596,6660,woman,who asks a man why he is lying?,video6660,162176,7 3597,6660,man,who harming a woman?,video6660,162177,7 3598,6660,woman,who does a man harm?,video6660,162178,7 3599,6660,person,who is smoking?,video6660,162179,7 3600,6660,smoking,what is a person?,video6660,162180,7 3601,6660,conversation,what do a man and woman have?,video6660,162181,7 3602,6660,man,who is thinking in cruel?,video6660,162182,7 3603,6661,cheese,what does a chef in a white coat add to a hamburger?,video6661,162183,17 3604,6661,woman,who is preparing the lunch with two men in a kitchen?,video6661,162184,17 3605,6661,meat,what served hot?,video6661,162185,17 3606,6661,woman,who cheeseburgers in a pan on the stove?,video6661,162186,17 3607,6661,cheese,what do two guys watching a chef apply to hambugers in a pan?,video6661,162187,17 3608,6661,woman,who puts cheese on top of the pieces of meat?,video6661,162188,17 3609,6661,woman,who adds cheese to burger paddys and talks about butter with two men?,video6661,162189,17 3610,6661,screen,what do a lady and two person beside and a bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on?,video6661,162190,17 3611,6661,kitchen,what do a lady and two person beside and a bowl spoon mixing dish inside to prepare to serve to eat displaying on screen?,video6661,162191,17 3612,6661,cheese,what does woman add to burger paddys and talks about butter with two men?,video6661,162192,17 3613,6661,stove,what do a woman cooks cheeseburgers in a pan on?,video6661,162193,17 3614,6661,lunch,what is woman preparing with two men in a kitchen?,video6661,162194,17 3615,6661,kitchen,what is woman preparing the lunch with two men in?,video6661,162195,17 3616,6661,dish,what do a lady and two person beside and a bowl spoon mixing inside kitchen to prepare to serve to eat displaying on screen?,video6661,162196,17 3617,6661,cheese,what does a woman put on top of the pieces of meat?,video6661,162197,17 3618,6661,meat,what is being seared in a pan?,video6661,162198,17 3619,6661,cheese,what is the fried meat flaged with?,video6661,162199,17 3620,6661,meat,what is flaged with cheese?,video6661,162200,17 3621,6661,hamburger,what does a chef in a white coat add american cheese to?,video6661,162201,17 3622,6661,female,who is demonstrating?,video6661,162202,17 3623,6661,hamburger,what is a woman chef placing american cheese on in a commercial kitchen?,video6661,162203,17 3624,6661,cook,what is doing?,video6661,162204,17 3625,6661,mix,what is a lady and two person beside and a bowl spoon doing?,video6661,162205,17 3626,6661,prepare,what is in a kitchen woman doing?,video6661,162206,17 3627,6661,show,what is a woman doing?,video6661,162207,17 3628,6661,watch,what is two guys doing?,video6661,162208,17 3629,6661,fry,what is a woman chef puts slices of cheese on burgers doing?,video6661,162209,17 3630,6661,describe,what is a female chef doing?,video6661,162210,17 3631,6661,cook,what is three people doing?,video6661,162211,17 3632,6661,wear,what is a woman chef doing?,video6661,162212,17 3633,6661,place,what is in a commercial kitchen a woman chef doing?,video6661,162213,17 3634,6661,teach,what is a chef doing?,video6661,162214,17 3635,6661,female,who is describing?,video6661,162215,17 3636,6661,chef,who prepares burgers with cheese in a frying pan in front of two men as the three talk about the preparation?,video6661,162216,17 3637,6661,cheese,what is a woman chef placing on hamburger patties in a commercial kitchen?,video6661,162217,17 3638,6661,chef,who is teaching to men how to make hamburgers?,video6661,162218,17 3639,6661,woman,who is placing american cheese on hamburger patties in a commercial kitchen?,video6661,162219,17 3640,6661,two,how many men is a woman showing how to cook burgers with cheese?,video6661,162220,17 3641,6661,woman,who is showing two men how to cook burgers with cheese?,video6661,162221,17 3642,6662,video,what is someone playing?,video6662,162222,2 3643,6662,person,who is explaining something?,video6662,162223,2 3644,6662,video,what does a man narrate?,video6662,162224,2 3645,6662,someone,what is playing a video game?,video6662,162225,2 3646,6662,person,who is playing a video game?,video6662,162226,2 3647,6662,race,what are animated objects doing?,video6662,162227,2 3648,6662,man,who narrates a video game?,video6662,162228,2 3649,6662,dock,what are video game characters bouncing around?,video6662,162229,2 3650,6662,video,who are bouncing around a dock?,video6662,162230,2 3651,6662,play,what is guys doing?,video6662,162231,2 3652,6662,video,what are people playing?,video6662,162232,2 3653,6662,man,who is playing minecraft?,video6662,162233,2 3654,6662,video,what is a person playing?,video6662,162234,2 3655,6662,play,what is a group of people doing?,video6662,162235,2 3656,6662,something,what is a person explaining?,video6662,162236,2 3657,6662,someone,who minecraft?,video6662,162237,2 3658,6662,minecraft,who is being played?,video6662,162238,2 3659,6662,play,what are people doing?,video6662,162239,2 3660,6662,play,what is people doing?,video6662,162240,2 3661,6662,show,what is doing?,video6662,162241,2 3662,6662,play,what is someone doing?,video6662,162242,2 3663,6662,bounce,what are video game characters doing?,video6662,162243,2 3664,6662,play,what is a man doing?,video6662,162244,2 3665,6662,explain,what is a person doing?,video6662,162245,2 3666,6662,minecraft,what is a man playing?,video6662,162246,2 3667,6663,play,what is someone doing?,video6663,162247,8 3668,6663,video,what are minecraft characters in?,video6663,162248,8 3669,6663,someone,what is playing a game?,video6663,162249,8 3670,6663,game,what is someone playing?,video6663,162250,8 3671,6663,video,what is someone showing?,video6663,162251,8 3672,6663,screen,what does a fiery minecraft character attack?,video6663,162252,8 3673,6663,steve,who is looking quite worried?,video6663,162253,8 3674,6663,minecraft,who looks very worried?,video6663,162254,8 3675,6663,block,who looks concerned?,video6663,162255,8 3676,6663,fly,what was a flame doing?,video6663,162256,8 3677,6663,look,what is animated scene where a man doing?,video6663,162257,8 3678,6663,stand,what are two video game characters doing?,video6663,162258,8 3679,6663,youngster,what does animated scene where a man is looking cautious as a fiery minecraft character hold?,video6663,162259,8 3680,6663,someone,who minecraft?,video6663,162260,8 3681,6663,show,what is someone doing?,video6663,162261,8 3682,6663,screen,what do a minecraft video game on?,video6663,162262,8 3683,6663,video,what do a minecraft on the screen?,video6663,162263,8 3684,6663,block,who does a gold creater pass then a block man in a tuxedo looks worried?,video6663,162264,8 3685,6663,animation,what shows a video game character with another character?,video6663,162265,8 3686,6663,hallway,what are two video game characters standing in holding hands as the camera zooms in on the taller one s face?,video6663,162266,8 3687,6663,creater,who passes a block man then a block man in a tuxedo looks worried?,video6663,162267,8 3688,6663,flame,what was flying towards the screen?,video6663,162268,8 3689,6663,screen,what was a flame flying towards?,video6663,162269,8 3690,6663,someone,who is showing video graphics game?,video6663,162270,8 3691,6664,plate,what does the man put the bowl into?,video6664,162271,16 3692,6664,plate,what did a man serve food on?,video6664,162272,16 3693,6664,man,who is verbally explaining what he doing while creating said dish?,video6664,162273,16 3694,6664,food,what does a man mix together in a white bowl?,video6664,162274,16 3695,6664,bowl,what does the man put into his plate?,video6664,162275,16 3696,6664,man,who verbally explains his actions?,video6664,162276,16 3697,6664,use,what is a man doing?,video6664,162277,16 3698,6664,put,what is a person with black t-shirt doing?,video6664,162278,16 3699,6664,mix,what is a man and a plate spoon doing?,video6664,162279,16 3700,6664,put,what is man in black shirt doing?,video6664,162280,16 3701,6664,garnish,what is a man doing?,video6664,162281,16 3702,6664,create,what is a man doing?,video6664,162282,16 3703,6664,scoop,what is a male doing?,video6664,162283,16 3704,6664,man,who puts the bowl into his plate?,video6664,162284,16 3705,6664,man,who served food on his plate?,video6664,162285,16 3706,6664,food,what did a man serve on his plate?,video6664,162286,16 3707,6664,man,who adds toppings on what appears to be an asian salad?,video6664,162287,16 3708,6664,man,who is garnishing his plate of food with a salsa condiment?,video6664,162288,16 3709,6664,man,who is adding an orange hot sauce to his noodle dish?,video6664,162289,16 3710,6664,man,who is going to eat food some thing like noodles?,video6664,162290,16 3711,6664,man,who adds some extra seasoning and spices to a salad?,video6664,162291,16 3712,6664,man,who is taking from vegetables form the bowl?,video6664,162292,16 3713,6664,kitchen,what do a man and a plate spoon mixing dish inside to prepare to serve to eat displaying on screen?,video6664,162293,16 3714,6664,man,who pours ingredients over top of food already on a white plate?,video6664,162294,16 3715,6664,dish,what do a man and a plate spoon mixing inside kitchen to prepare to serve to eat displaying on screen?,video6664,162295,16 3716,6664,screen,what do a man and a plate spoon mixing dish inside kitchen to prepare to serve to eat displaying on?,video6664,162296,16 3717,6664,man,who mixes various food together in a white bowl?,video6664,162297,16 3718,6664,man,who is creating a dish of food?,video6664,162298,16 3719,6664,food,what is a man garnishing his plate of with a salsa condiment?,video6664,162299,16 3720,6664,food,what did then stir with chop sticks is spooned on top of a bowl full of food?,video6664,162300,16 3721,6664,food,what is man in black shirt putting in the plate?,video6664,162301,16 3722,6664,plate,what is man in black shirt putting the food in?,video6664,162302,16 3723,6664,salad,what does a man add some extra seasoning and spices to?,video6664,162303,16 3724,6664,chop,what did then stir with food is spooned on top of a bowl full of food?,video6664,162304,16 3725,6664,food,what is a man creating a dish of?,video6664,162305,16 3726,6664,salad,what is being prepared on a white plate?,video6664,162306,16 3727,6664,condiment,what is a man using chop sticks adding to his plate of food as he verbally explains his actions?,video6664,162307,16 3728,6665,talk,what is a amn doing?,video6665,162308,16 3729,6665,talk,what is a guy doing?,video6665,162309,16 3730,6665,discus,what is a man doing?,video6665,162310,16 3731,6665,explain,what is a man doing?,video6665,162311,16 3732,6665,review,what is a man doing?,video6665,162312,16 3733,6665,tell,what is a man doing?,video6665,162313,16 3734,6665,speak,what is a man with beard doing?,video6665,162314,16 3735,6665,talk,what is a person with a beard doing?,video6665,162315,16 3736,6665,man,who talks about the different usages of apple cider vinegar?,video6665,162316,16 3737,6665,talk,what is man doing?,video6665,162317,16 3738,6665,man,who discusses the many uses of apple cider vinegar?,video6665,162318,16 3739,6665,room,what is a man talking in?,video6665,162319,16 3740,6665,man,who is talking about uses for apple cider vinegar?,video6665,162320,16 3741,6665,man,who is telling the different uses for apple cider vinager?,video6665,162321,16 3742,6665,man,who is discussing the many uses of apple cider vinegar?,video6665,162322,16 3743,6665,vinegar,what do guy talks about uses for apple cider?,video6665,162323,16 3744,6665,vinegar,what do man talking about uses of apple cider?,video6665,162324,16 3745,6665,man,who is going over the uses of a product?,video6665,162325,16 3746,6665,amn,what is talking about apple cider vineger?,video6665,162326,16 3747,6665,man,who is asking for feedback about what other people use it for?,video6665,162327,16 3748,6665,item,what is a man reviewing?,video6665,162328,16 3749,6665,man,who talks about uses of vinegar?,video6665,162329,16 3750,6665,something,what is a man talking about?,video6665,162330,16 3751,6665,man,who is talking in a room?,video6665,162331,16 3752,6665,feedback,what is a man asking for about what other people use it for?,video6665,162332,16 3753,6665,man,who is talking about something?,video6665,162333,16 3754,6665,man,who is reviewing an item?,video6665,162334,16 3755,6666,explain,what is woman doing?,video6666,162335,6 3756,6666,talk,what is a tv show of a women doing?,video6666,162336,6 3757,6666,mis,what is a woman doing?,video6666,162337,6 3758,6666,sit,what is a woman doing?,video6666,162338,6 3759,6666,speak,what is a woman doing?,video6666,162339,6 3760,6666,woman,who is on a tv show?,video6666,162340,6 3761,6666,woman,who is sitting by a fireplace?,video6666,162341,6 3762,6666,hand,what did the man sustain a severe wound to?,video6666,162342,6 3763,6666,woman,who talks about hand injury?,video6666,162343,6 3764,6666,wound,what did the man sustain to his hand?,video6666,162344,6 3765,6666,woman,who does injury s is talking about a man?,video6666,162345,6 3766,6666,injury,what does woman talk about?,video6666,162346,6 3767,6666,injury,what s a woman is talking about a man?,video6666,162347,6 3768,6666,man,who sustained a severe wound to his hand?,video6666,162348,6 3769,6666,woman,who is talking about a man stuck in a hospital?,video6666,162349,6 3770,6666,woman,who is being interviewed in front of a fire place for a dr phil episode?,video6666,162350,6 3771,6666,man,who does injury s a woman is talking about?,video6666,162351,6 3772,6666,fireplace,what is a woman sitting by?,video6666,162352,6 3773,6667,wrestle,what is guys doing?,video6667,162353,3 3774,6667,show,what is a video doing?,video6667,162354,3 3775,6667,two,how many people are wrestling?,video6667,162355,3 3776,6667,wrestling,what match competition video?,video6667,162356,3 3777,6667,wrestler,who holds down his opponent?,video6667,162357,3 3778,6667,wrestle,what is intense doing?,video6667,162358,3 3779,6667,celebrate,what is men doing?,video6667,162359,3 3780,6667,wrestle,what is there are two guys doing?,video6667,162360,3 3781,6667,fight,what are two man s doing?,video6667,162361,3 3782,6667,wrestle,what is two men doing?,video6667,162362,3 3783,6667,wrestle,what are two people doing?,video6667,162363,3 3784,6667,wrestle,what is doing?,video6667,162364,3 3785,6667,wrestling,what presented in fron of audience?,video6667,162365,3 3786,6667,victory,what does a wrestler put his hands up in?,video6667,162366,3 3787,6667,competition,what do wrestling match?,video6667,162367,3 3788,6667,opponent,who does a wrestler hold down?,video6667,162368,3 3789,6667,man,who got victory in his match?,video6667,162369,3 3790,6667,wrestling,what match?,video6667,162370,3 3791,6667,victory,what does a wrestler celebrate?,video6667,162371,3 3792,6667,two,how many man s are fighting with each other?,video6667,162372,3 3793,6667,guy,who is a wrestling in a competition?,video6667,162373,3 3794,6667,wrestler,who puts his hands up in victory?,video6667,162374,3 3795,6667,man,when are fighting with each other?,video6667,162375,3 3796,6667,wrestler,who celebrates his victory?,video6667,162376,3 3797,6668,talk,what are kids doing?,video6668,162377,14 3798,6668,ask,what is a guy doing?,video6668,162378,14 3799,6668,ask,what is a man doing?,video6668,162379,14 3800,6668,ask,what is a person doing?,video6668,162380,14 3801,6668,answer,what are children doing?,video6668,162381,14 3802,6668,sit,what are children doing?,video6668,162382,14 3803,6668,answer,what is children look at a mobile phone while doing?,video6668,162383,14 3804,6668,react,what is kids talk about parents doing?,video6668,162384,14 3805,6668,interview,what is man doing?,video6668,162385,14 3806,6668,technology,what do a few children talk about?,video6668,162386,14 3807,6668,react,what is kids doing?,video6668,162387,14 3808,6668,technology,what are young people interviewed about?,video6668,162388,14 3809,6668,person,who is asking children questions?,video6668,162389,14 3810,6668,man,who asks a child a question?,video6668,162390,14 3811,6668,guy,who is asking kids at school questions about technology?,video6668,162391,14 3812,6668,man,who asks a kid why parents dislike his reactions to technology?,video6668,162392,14 3813,6668,table,what are children sitting at talking?,video6668,162393,14 3814,6668,classroom,what are kids being interviewed in?,video6668,162394,14 3815,6668,technology,what do kids react to?,video6668,162395,14 3816,6668,talk,what is two kids doing?,video6668,162396,14 3817,6668,technology,what are kids talking about?,video6668,162397,14 3818,6668,man,who is asking a child some questions?,video6668,162398,14 3819,6669,play,what are people doing?,video6669,162399,0 3820,6669,perform,what is a group of people doing?,video6669,162400,0 3821,6669,orchestra,what is playing?,video6669,162401,0 3822,6669,woman,who is singing?,video6669,162402,0 3823,6669,band,what performs?,video6669,162403,0 3824,6669,stage,when is a woman singing?,video6669,162404,0 3825,6669,stage,when is a woman sing?,video6669,162405,0 3826,6669,woman,who is singing on stage?,video6669,162406,0 3827,6669,woman,who is sing on stage?,video6669,162407,0 3828,6669,singer,who performs before an audience?,video6669,162408,0 3829,6669,woman,who preforms a song on stage?,video6669,162409,0 3830,6669,woman,who sings into a microphone in front of an audience?,video6669,162410,0 3831,6669,woman,who is singing while an orchestra is playing?,video6669,162411,0 3832,6669,woman,who is singing a song in a stage?,video6669,162412,0 3833,6669,audience,what does female singer perform before?,video6669,162413,0 3834,6670,park,what is said to be warming much faster than the rest of the planet?,video6670,162414,11 3835,6670,hike,what are a group of people doing?,video6670,162415,11 3836,6670,occur,what is a man describes the changes doing?,video6670,162416,11 3837,6670,walk,what is a scene of a waterfall and river with people doing?,video6670,162417,11 3838,6670,walk,what is a small stream with people doing?,video6670,162418,11 3839,6670,flow,what is a stream has doing?,video6670,162419,11 3840,6670,walk,what is a stream is shown with people doing?,video6670,162420,11 3841,6670,warm,what is glaciar national park is said to be doing?,video6670,162421,11 3842,6670,cros,what is people doing?,video6670,162422,11 3843,6670,warm,what is the clip discusses glacier national park and how it doing?,video6670,162423,11 3844,6670,warm,what was the park doing?,video6670,162424,11 3845,6670,walk,what are two men doing?,video6670,162425,11 3846,6670,show,what is video doing?,video6670,162426,11 3847,6670,man,who describes the changes occurring in national parks?,video6670,162427,11 3848,6670,stream,what is water running through?,video6670,162428,11 3849,6670,stream,what has flowing water in it?,video6670,162429,11 3850,6670,water,what is running through the stream?,video6670,162430,11 3851,6670,stream,what is shown with people walking over it?,video6670,162431,11 3852,6670,someone,who is going through big rocks and water?,video6670,162432,11 3853,6670,stream,what do a group of people walk over?,video6670,162433,11 3854,6670,clip,what discusses glacier national park and how it is warming?,video6670,162434,11 3855,6670,park,what was warming much faster than the rest of the planet?,video6670,162435,11 3856,6670,water,what has a stream flowing in it?,video6670,162436,11 3857,6670,stream,what are two men walking over?,video6670,162437,11 3858,6670,two,how many men are walking over a stream?,video6670,162438,11 3859,6671,sit,what is man doing?,video6671,162439,7 3860,6671,perform,what is a house wife doing?,video6671,162440,7 3861,6671,interact,what is a man and a woman are shown doing?,video6671,162441,7 3862,6671,talk,what are a man and woman doing?,video6671,162442,7 3863,6671,act,what are a man and women doing?,video6671,162443,7 3864,6671,sit,what is a man doing?,video6671,162444,7 3865,6671,enjoy,what is a woman doing?,video6671,162445,7 3866,6671,dance,what is a woman in a red headscarf doing?,video6671,162446,7 3867,6671,woman,who is dancing to the music?,video6671,162447,7 3868,6671,hut,what are a man and woman talking in?,video6671,162448,7 3869,6671,camera,what are a man and a woman shown interacting on?,video6671,162449,7 3870,6671,man,who is talking to a woman?,video6671,162450,7 3871,6671,woman,who is a man talking to?,video6671,162451,7 3872,6671,music,what is a woman dancing to?,video6671,162452,7 3873,6671,man,who is annoyed by his wifes music?,video6671,162453,7 3874,6671,music,what does a man sitting down do not like the woman is playing loudly?,video6671,162454,7 3875,6671,woman,who does a man sitting down do not like the music is playing loudly?,video6671,162455,7 3876,6672,something,what a man freezing?,video6672,162456,16 3877,6672,food,what is a person preparing?,video6672,162457,16 3878,6672,kitchen,what is a man standing in?,video6672,162458,16 3879,6672,potato,what does a man have?,video6672,162459,16 3880,6672,person,who is preparing some food?,video6672,162460,16 3881,6672,kitchen,what does a man prepare food in?,video6672,162461,16 3882,6672,oven,what is a man cooking with?,video6672,162462,16 3883,6672,man,who freezing something?,video6672,162463,16 3884,6672,man,who has two potato?,video6672,162464,16 3885,6672,man,who is cooking with the oven?,video6672,162465,16 3886,6672,kitchen,what is a man discussing cooking techniques in?,video6672,162466,16 3887,6672,kitchen,what does spanish guy prepare some food in?,video6672,162467,16 3888,6672,food,what does a man prepare in a kitchen?,video6672,162468,16 3889,6672,man,who is cooking?,video6672,162469,16 3890,6672,man,who is standing in the kitchen?,video6672,162470,16 3891,6672,microwave,what is a man cooking two potato in?,video6672,162471,16 3892,6672,demonstrate,what is in a kitchen a man doing?,video6672,162472,16 3893,6672,prepare,what is a person doing?,video6672,162473,16 3894,6672,talk,what is a man doing?,video6672,162474,16 3895,6672,stand,what is a man doing?,video6672,162475,16 3896,6672,discus,what is a man doing?,video6672,162476,16 3897,6672,prepare,what is a man in the kitchen doing?,video6672,162477,16 3898,6672,cook,what is a man has two potato and doing?,video6672,162478,16 3899,6672,food,what does spanish guy prepare in his kitchen?,video6672,162479,16 3900,6672,potato,what is a man cooking in the microwave?,video6672,162480,16 3901,6672,freeze,what is a man doing?,video6672,162481,16 3902,6672,man,who is cooking two potato in the microwave?,video6672,162482,16 3903,6672,man,who is discussing cooking techniques in his kitchen?,video6672,162483,16 3904,6672,man,who is talking about something in kitchen?,video6672,162484,16 3905,6672,man,who sets the temperature on an oven?,video6672,162485,16 3906,6672,kitchen,what is a man demonstrating how to prepare to cook a potato dish in?,video6672,162486,16 3907,6672,man,who is giving cooking directions in a kitchen?,video6672,162487,16 3908,6672,man,who is demonstrating how to prepare to cook a potato dish in a kitchen?,video6672,162488,16 3909,6672,man,who prepares food in a kitchen?,video6672,162489,16 3910,6672,guy,who prepares some food in his kitchen?,video6672,162490,16 3911,6673,desk,what is hitler sitting at yelling?,video6673,162491,4 3912,6673,look,what is a man doing?,video6673,162492,4 3913,6673,yell,what is a general doing?,video6673,162493,4 3914,6673,abuse,what is a man doing?,video6673,162494,4 3915,6673,interact,what is a group of soldiers doing?,video6673,162495,4 3916,6673,table,what are men sitting at talking?,video6673,162496,4 3917,6673,commander,who lectures his men?,video6673,162497,4 3918,6673,hitler,who is sitting at a desk yelling?,video6673,162498,4 3919,6673,hitler,who is screaming and mad?,video6673,162499,4 3920,6673,man,who is angry?,video6673,162500,4 3921,6673,feature,what is scene from a movie doing?,video6673,162501,4 3922,6673,sit,what are men doing?,video6673,162502,4 3923,6673,sit,what is hitler doing?,video6673,162503,4 3924,6673,scream,what is hitler doing?,video6673,162504,4 3925,6673,yell,what is hitler character doing?,video6673,162505,4 3926,6673,yell,what is a scene from a movie is shown in which hitler doing?,video6673,162506,4 3927,6673,bald,what is a video of a doing?,video6673,162507,4 3928,6674,bowl,what did a chef put meat into?,video6674,162508,17 3929,6674,somethng,who is a man coocking?,video6674,162509,17 3930,6674,meal,what does a chef prepare?,video6674,162510,17 3931,6674,proces,what is a man describing?,video6674,162511,17 3932,6674,man,who is describing his process?,video6674,162512,17 3933,6674,food,what does a chef explain he is making?,video6674,162513,17 3934,6674,man,who is coocking somethng?,video6674,162514,17 3935,6674,man,who is cooking?,video6674,162515,17 3936,6674,chef,who explains the food why specific ingredients are used?,video6674,162516,17 3937,6674,chef,who is explaining a recipe in a foreign language?,video6674,162517,17 3938,6674,chef,who is giving instructions in the kitchen?,video6674,162518,17 3939,6674,food,what does a chef explain why specific ingredients are used?,video6674,162519,17 3940,6674,cook,who is explaining how to prepare a meal?,video6674,162520,17 3941,6674,person,who prepares some food in a bowl?,video6674,162521,17 3942,6674,cook,who is demonstrating how to make a dish?,video6674,162522,17 3943,6674,recipe,what is a chef explaining in a foreign language?,video6674,162523,17 3944,6674,bowl,what does a person prepare some food in?,video6674,162524,17 3945,6674,food,what does a person prepare in a bowl?,video6674,162525,17 3946,6674,chef,who shows how to prepare a dish?,video6674,162526,17 3947,6674,chef,who is explaining about the food preparation?,video6674,162527,17 3948,6674,chef,who put meat into a bowl?,video6674,162528,17 3949,6674,chef,who explains the food he is making?,video6674,162529,17 3950,6674,meat,what did a chef put into a bowl?,video6674,162530,17 3951,6674,chef,who prepares a meal?,video6674,162531,17 3952,6674,describe,what is man doing?,video6674,162532,17 3953,6674,cook,what is a person doing?,video6674,162533,17 3954,6674,show,what is chef cooking in the kitchen and doing?,video6674,162534,17 3955,6674,cook,what is a man doing?,video6674,162535,17 3956,6674,provide,what is a male chef doing?,video6674,162536,17 3957,6674,demonstrate,what is a cook doing?,video6674,162537,17 3958,6674,talk,what is a chef doing?,video6674,162538,17 3959,6674,explain,what is a chef doing?,video6674,162539,17 3960,6674,explain,what is a french cook doing?,video6674,162540,17 3961,6675,hockey,who shoots a goal?,video6675,162541,3 3962,6675,hockey,who juggling a puck?,video6675,162542,3 3963,6675,hockey,who juggles some hockey pucks?,video6675,162543,3 3964,6675,hockey,who does tricks with his hockey stick?,video6675,162544,3 3965,6675,puck,who is a hockey player juggling with his hockey stick?,video6675,162545,3 3966,6675,hockey,who is juggling the puck with his hockey stick?,video6675,162546,3 3967,6675,fashion,what do the person bouncing pucks off of a hockey stick in?,video6675,162547,3 3968,6675,puck,who a hockey player juggling?,video6675,162548,3 3969,6675,manage,what is a talented person doing?,video6675,162549,3 3970,6675,bounce,what is a hockey player doing?,video6675,162550,3 3971,6675,juggle,what is a hockey player doing?,video6675,162551,3 3972,6675,play,what is a man doing?,video6675,162552,3 3973,6675,hockey,what shot and football play?,video6675,162553,3 3974,6675,bounce,what is hockey player doing?,video6675,162554,3 3975,6675,bounce,what is the person doing?,video6675,162555,3 3976,6675,goal,what does a hockey player shoot?,video6675,162556,3 3977,6675,man,who is playing hockey?,video6675,162557,3 3978,6675,football,what did a hockey trick shoot?,video6675,162558,3 3979,6675,hockey,what does a hockey player juggle?,video6675,162559,3 3980,6676,man,who is walking along train tracks at night?,video6676,162560,7 3981,6676,walk,what is a couple doing?,video6676,162561,7 3982,6676,talk,what is a man doing?,video6676,162562,7 3983,6676,concern,what is preview of a movie doing?,video6676,162563,7 3984,6676,play,what is someone doing?,video6676,162564,7 3985,6676,night,when is a man walking along train tracks?,video6676,162565,7 3986,6676,train,what is a man walking along at night?,video6676,162566,7 3987,6676,man,who reflects on his life in a movie trailer?,video6676,162567,7 3988,6676,man,who is walking?,video6676,162568,7 3989,6676,video,what is someone playing?,video6676,162569,7 3990,6676,movie,what is a the part of?,video6676,162570,7 3991,6676,movie,what does a movie trailer show?,video6676,162571,7 3992,6676,something,what is a man talking about?,video6676,162572,7 3993,6676,someone,what is playing video game?,video6676,162573,7 3994,6676,trailer,who is shown for a movie?,video6676,162574,7 3995,6676,trailer,who shows some movie scenes?,video6676,162575,7 3996,6676,man,who is talking about something?,video6676,162576,7 3997,6676,night,when do a train riding the tracks?,video6676,162577,7 3998,6676,movie,what is a trailer shown for?,video6676,162578,7 3999,6677,car,what is some one driving?,video6677,162579,3 4000,6677,film,what is a man doing?,video6677,162580,3 4001,6677,demonstrate,what is a man doing?,video6677,162581,3 4002,6677,play,what is a man doing?,video6677,162582,3 4003,6677,cros,what is two cars doing?,video6677,162583,3 4004,6677,record,what is some one doing?,video6677,162584,3 4005,6677,play,what is person doing?,video6677,162585,3 4006,6677,drive,what is some one doing?,video6677,162586,3 4007,6677,demonstrate,what is a person doing?,video6677,162587,3 4008,6677,computer,what is a person demonstrating?,video6677,162588,3 4009,6677,person,who is demonstrating a computer game?,video6677,162589,3 4010,6677,video,what is a man demonstrating?,video6677,162590,3 4011,6677,person,who navigates a menu on a video game?,video6677,162591,3 4012,6677,car,what is someone driving?,video6677,162592,3 4013,6677,man,who explains different signs?,video6677,162593,3 4014,6677,man,who is demonstrating a video game?,video6677,162594,3 4015,6677,man,who narrates a video game?,video6677,162595,3 4016,6677,video,what does a man narrate?,video6677,162596,3 4017,6677,someone,what is playing a game?,video6677,162597,3 4018,6677,game,what is someone playing?,video6677,162598,3 4019,6677,someone,what is playing a video game?,video6677,162599,3 4020,6678,hold,what is people doing?,video6678,162600,13 4021,6678,kis,what is a girl doing?,video6678,162601,13 4022,6678,hold,what are children doing?,video6678,162602,13 4023,6678,play,what are kids at the pet store doing?,video6678,162603,13 4024,6678,cuddle,what are people doing?,video6678,162604,13 4025,6678,walk,what is person doing?,video6678,162605,13 4026,6678,dog,what do peoples carry to the pet shop?,video6678,162606,13 4027,6678,cat,what a woman kisses?,video6678,162607,13 4028,6678,play,what are various different people doing?,video6678,162608,13 4029,6678,woman,who kisses a cat?,video6678,162609,13 4030,6678,baby,what are children holding?,video6678,162610,13 4031,6678,cat,what did a girl kiss?,video6678,162611,13 4032,6679,photoshop,what is a person using?,video6679,162612,3 4033,6679,program,what is a person explaining?,video6679,162613,3 4034,6679,software,what is a man demonstrating?,video6679,162614,3 4035,6679,computer,what does a man discuss?,video6679,162615,3 4036,6679,person,who is explaining program?,video6679,162616,3 4037,6679,man,who is demonstrating software?,video6679,162617,3 4038,6679,man,who discusses a computer program?,video6679,162618,3 4039,6679,someone,who navigating the net?,video6679,162619,3 4040,6679,someone,who is giving steps to adobe program?,video6679,162620,3 4041,6679,man,who is explaining how to do something on a computer?,video6679,162621,3 4042,6679,programming,what is displaying?,video6679,162622,3 4043,6679,person,who is using photoshop?,video6679,162623,3 4044,6679,navigate,what is someone doing?,video6679,162624,3 4045,6679,use,what is person doing?,video6679,162625,3 4046,6679,record,what is a person doing?,video6679,162626,3 4047,6679,explain,what is a person doing?,video6679,162627,3 4048,6679,talk,what is a man doing?,video6679,162628,3 4049,6679,explain,what is a man doing?,video6679,162629,3 4050,6679,demonstrate,what is a man doing?,video6679,162630,3 4051,6679,display,what is a computer programming doing?,video6679,162631,3 4052,6679,use,what is a person doing?,video6679,162632,3 4053,6680,park,where do two monkeys wrestle together?,video6680,162633,14 4054,6680,eat,what is baboons are seen doing?,video6680,162634,14 4055,6680,fight,what is two monkeys doing?,video6680,162635,14 4056,6680,try,what is an adult grey monkey pushes away a young gray monkey who doing?,video6680,162636,14 4057,6680,eat,what are the grey monkeys doing?,video6680,162637,14 4058,6680,enjoy,what is on a zoo a mother monkey doing?,video6680,162638,14 4059,6680,fight,what is a large and small monkey are almost doing?,video6680,162639,14 4060,6680,try,what is monkey doing?,video6680,162640,14 4061,6680,park,what do two monkeys wrestle together in?,video6680,162641,14 4062,6680,baboon,what holds a branch?,video6680,162642,14 4063,6680,baboon,what tries to grab some for itself?,video6680,162643,14 4064,6680,two,how many monkeys are playing?,video6680,162644,14 4065,6680,branch,what does a baboon hold?,video6680,162645,14 4066,6680,time,when are two monkeys having together?,video6680,162646,14 4067,6680,play,what is two monkeys doing?,video6680,162647,14 4068,6680,play,what are two monkeys doing?,video6680,162648,14 4069,6680,sit,what is a monkey and its baby eat leaves from a tree branch while doing?,video6680,162649,14 4070,6680,monkey,what does a monkey eating leave and walking with displaying on screen?,video6680,162650,14 4071,6680,screen,what does a monkey eating leave and walking with baby monkey displaying on?,video6680,162651,14 4072,6680,two,how many monkeys stand on a rock a fight over branch with leaves?,video6680,162652,14 4073,6680,monkey,what leaves and walking with baby monkey displaying on screen?,video6680,162653,14 4074,6680,two,how many monkeys are fighting for a plant with leaves?,video6680,162654,14 4075,6680,two,how many monkeys are playing eith each other?,video6680,162655,14 4076,6680,two,how many monkeys wrestle together in the park?,video6680,162656,14 4077,6680,adult,who does an adult gray monkey push away a young gray monkey who is trying to get oval leaves from the branch is holding and eating?,video6680,162657,14 4078,6680,two,how many monkeys play?,video6680,162658,14 4079,6680,food,what are the gray monkeys eating on the rocks?,video6680,162659,14 4080,6680,rock,what do two monkeys stand on a fight over branch with leaves?,video6680,162660,14 4081,6680,plant,what are two monkeys fighting for with leaves?,video6680,162661,14 4082,6680,two,how many monkeys are having nice time together?,video6680,162662,14 4083,6681,gun,what is a lego figurine holding?,video6681,162663,9 4084,6681,lego,who are aiming their weapons?,video6681,162664,9 4085,6681,figurine,what is holding a gun?,video6681,162665,9 4086,6681,armor,what is the lego soldier in?,video6681,162666,9 4087,6681,lego,who does a person show off?,video6681,162667,9 4088,6681,combat,what lego men?,video6681,162668,9 4089,6681,action,what figured being showcased?,video6681,162669,9 4090,6681,image,what shows some lego figures?,video6681,162670,9 4091,6681,robot,what is going on?,video6681,162671,9 4092,6681,hold,what is a lego figurine doing?,video6681,162672,9 4093,6681,show,what is a short clip doing?,video6681,162673,9 4094,6681,aim,what are lego men doing?,video6681,162674,9 4095,6681,display,what did bunch of action figure toys put on?,video6681,162675,9 4096,6681,movie,who did lego characters paint to look like?,video6681,162676,9 4097,6681,lego,who brandish weapons in a series of still frames?,video6681,162677,9 4098,6681,lego,who painted to look like movie characters?,video6681,162678,9 4099,6681,lego,what does a still image show?,video6681,162679,9 4100,6681,person,who shows off various lego soldiers?,video6681,162680,9 4101,6681,soldier,who is in armor?,video6681,162681,9 4102,6682,video,what is a guy playing?,video6682,162682,7 4103,6682,someone,what is playing a video game?,video6682,162683,7 4104,6682,video,what is a man playing?,video6682,162684,7 4105,6682,video,what is a person playing?,video6682,162685,7 4106,6682,someone,what is playing a game?,video6682,162686,7 4107,6682,video,what was quite entertaining?,video6682,162687,7 4108,6682,guy,who is lost?,video6682,162688,7 4109,6682,minecraft,who digging down?,video6682,162689,7 4110,6682,map,what is a gamer examining?,video6682,162690,7 4111,6682,gamer,who is examining a map?,video6682,162691,7 4112,6682,player,who talks about a minecraft map?,video6682,162692,7 4113,6682,map,what does a minecraft character look at?,video6682,162693,7 4114,6682,guy,who is playing a video game?,video6682,162694,7 4115,6682,minecraft,who looks at a map?,video6682,162695,7 4116,6682,man,who is live streaming himself playing a video game?,video6682,162696,7 4117,6682,someone,who is giving demo for some game?,video6682,162697,7 4118,6682,map,what did someone playing minecraft with on the screen?,video6682,162698,7 4119,6682,screen,what did someone playing minecraft with a map on?,video6682,162699,7 4120,6682,minecraft,who runs around while wielding a pickaxe?,video6682,162700,7 4121,6682,someone,who minecraft with a map on the screen?,video6682,162701,7 4122,6682,kid,who talks about cave mode in a video game?,video6682,162702,7 4123,6682,character,what is digging in a cave?,video6682,162703,7 4124,6682,game,what is someone playing?,video6682,162704,7 4125,6682,talk,what are a few people doing?,video6682,162705,7 4126,6682,examine,what is a gamer doing?,video6682,162706,7 4127,6682,play,what is a guy doing?,video6682,162707,7 4128,6682,stream,what is a man is live doing?,video6682,162708,7 4129,6682,play,what is a man doing?,video6682,162709,7 4130,6682,wield,what is a minecraft character looks at a map and runs around while doing?,video6682,162710,7 4131,6682,dig,what is a minecraft player doing?,video6682,162711,7 4132,6682,play,what is a person doing?,video6682,162712,7 4133,6683,bridge,what does a woman gently play with a toddler lifting in the air as an exercise?,video6683,162713,14 4134,6683,woman,who demonstrates how to exercise while using your baby?,video6683,162714,14 4135,6683,hand,what is one women exercising with kid on?,video6683,162715,14 4136,6683,woman,who gently plays with a toddler lifting baby hip bridge in the air as an exercise?,video6683,162716,14 4137,6683,one,how many women is laying down?,video6683,162717,14 4138,6683,baby,who are two women doing exercises using as their minion?,video6683,162718,14 4139,6683,minion,who are two women doing exercises using a baby as?,video6683,162719,14 4140,6683,client,who do baby crunch exercise to?,video6683,162720,14 4141,6683,baby,who is a woman working out with?,video6683,162721,14 4142,6683,lap,what is the woman in the pink dress holding a cute baby in?,video6683,162722,14 4143,6683,baby,who crugh?,video6683,162723,14 4144,6683,woman,who helps?,video6683,162724,14 4145,6683,bridge,what exercise trained by exercise trainer to a women practicing it?,video6683,162725,14 4146,6683,two,how many women are doing exercises using a baby as their minion?,video6683,162726,14 4147,6683,instructor,who tell about baby hip bridge?,video6683,162727,14 4148,6683,lay,what is one women doing?,video6683,162728,14 4149,6683,exercise,what is there is a mother doing?,video6683,162729,14 4150,6683,baby,who explain care a baby?,video6683,162730,14 4151,6683,exercise,what is there is women doing?,video6683,162731,14 4152,6683,lift,what is there is a women doing?,video6683,162732,14 4153,6683,teach,what is here we can see a lady doing?,video6683,162733,14 4154,6683,train,what is the instructor doing?,video6683,162734,14 4155,6683,practice,what is baby hip bridge exercise trained by exercise trainer to a women doing?,video6683,162735,14 4156,6683,lay,what is a woman doing?,video6683,162736,14 4157,6683,lift,what is a woman gently plays with a toddler doing?,video6683,162737,14 4158,6683,work,what is a woman doing?,video6683,162738,14 4159,6683,toddler,who does a woman gently play with lifting baby hip bridge in the air as an exercise?,video6683,162739,14 4160,6683,lie,what is a baby in white dress and girl in blue dress slowly exercise her on doing?,video6683,162740,14 4161,6683,baby,who is a woman doing exercises with as another woman helps?,video6683,162741,14 4162,6683,use,what is a woman demonstrates how to exercise while doing?,video6683,162742,14 4163,6683,exercise,what does a woman gently play with a toddler lifting baby hip bridge in the air as?,video6683,162743,14 4164,6683,exercise,who do baby hip bridge exercise trained by to a women practicing it?,video6683,162744,14 4165,6683,hold,what is the woman in the pink dress doing?,video6683,162745,14 4166,6683,air,what does a woman gently play with a toddler lifting baby hip bridge in as an exercise?,video6683,162746,14 4167,6684,band,what sings?,video6684,162747,3 4168,6684,something,what is a person explaining?,video6684,162748,3 4169,6684,song,what do a on stage singing?,video6684,162749,3 4170,6684,orchestra,what is taking place?,video6684,162750,3 4171,6684,place,what is an orchestra taking?,video6684,162751,3 4172,6684,song,what does a band preform?,video6684,162752,3 4173,6684,band,what is playing a song?,video6684,162753,3 4174,6684,person,who is explaining something?,video6684,162754,3 4175,6684,band,what preforms a song?,video6684,162755,3 4176,6684,man,who is talking about a video?,video6684,162756,3 4177,6684,man,who is talking about number two single song of 1982?,video6684,162757,3 4178,6684,man,who discusses a popular song from the 1980s?,video6684,162758,3 4179,6684,video,what is a man talking about?,video6684,162759,3 4180,6684,song,what is a band playing?,video6684,162760,3 4181,6684,work,what is people doing?,video6684,162761,3 4182,6684,explain,what is a person doing?,video6684,162762,3 4183,6684,play,what is man doing?,video6684,162763,3 4184,6684,play,what are a man and woman doing?,video6684,162764,3 4185,6684,play,what is a band doing?,video6684,162765,3 4186,6684,perform,what is a band doing?,video6684,162766,3 4187,6684,talk,what is a man doing?,video6684,162767,3 4188,6685,man,who is putting potatoes?,video6685,162768,16 4189,6685,food,what is someone preparing in kitchen?,video6685,162769,16 4190,6685,chef,who discusses the potatos?,video6685,162770,16 4191,6685,someone,who is cooking something?,video6685,162771,16 4192,6685,person,who then adds potato?,video6685,162772,16 4193,6685,man,who is seasoning potatoes with something?,video6685,162773,16 4194,6685,someone,who is preparing food in kitchen?,video6685,162774,16 4195,6685,person,who stirs the ingredients?,video6685,162775,16 4196,6685,detail,what is a man showing in how he prepared the potatoes?,video6685,162776,16 4197,6685,frying,what does a person demonstrate the art of?,video6685,162777,16 4198,6685,man,who is giving a cooking demonstration?,video6685,162778,16 4199,6685,potato,what does the british chef discuss?,video6685,162779,16 4200,6685,man,who is cooking?,video6685,162780,16 4201,6685,recipe,what is a man showing?,video6685,162781,16 4202,6685,person,who is cooking in a pan?,video6685,162782,16 4203,6685,food,what is someone cooking?,video6685,162783,16 4204,6685,potato,what does a person then add?,video6685,162784,16 4205,6685,demonstration,what is a man giving?,video6685,162785,16 4206,6685,frying,what does a person stir some food up in pan?,video6685,162786,16 4207,6685,someone,who is cooking food?,video6685,162787,16 4208,6685,kitchen,what is someone preparing food in?,video6685,162788,16 4209,6685,man,who is showing some recipe?,video6685,162789,16 4210,6685,food,what does a person stir up in a frying pan?,video6685,162790,16 4211,6685,something,what is a man seasoning potatoes with?,video6685,162791,16 4212,6685,man,who is teaching how to cook a dish?,video6685,162792,16 4213,6685,stir,what is a cook doing?,video6685,162793,16 4214,6685,cook,what is a man doing?,video6685,162794,16 4215,6685,demonstrate,what is a man doing?,video6685,162795,16 4216,6685,put,what is a man doing?,video6685,162796,16 4217,6685,show,what is a man doing?,video6685,162797,16 4218,6685,simmer,what is a man doing?,video6685,162798,16 4219,6685,teach,what is a man doing?,video6685,162799,16 4220,6685,cook,what is a person doing?,video6685,162800,16 4221,6685,fry,what is man doing?,video6685,162801,16 4222,6685,cook,what is someone doing?,video6685,162802,16 4223,6685,prepare,what is someone doing?,video6685,162803,16 4224,6685,person,who stirs some food up in a frying pan?,video6685,162804,16 4225,6685,food,what is a man simmering in a skillet on a stove?,video6685,162805,16 4226,6685,man,who is demonstrating cooking food in a pan?,video6685,162806,16 4227,6685,man,who is showing in detail how he prepared the potatoes?,video6685,162807,16 4228,6685,man,who is simmering some food in a skillet on a stove?,video6685,162808,16 4229,6685,person,who demonstrates the art of stir frying?,video6685,162809,16 4230,6686,cloth,what do a old lady in white color dress wearing speaking beside many persons standing displaying on screen?,video6686,162810,4 4231,6686,lady,who gives a speech in the stage look like a pilot officer stands behind?,video6686,162811,4 4232,6686,cloth,what do a old lady in white color dress wearing standing?,video6686,162812,4 4233,6686,flood,what does a woman with short blonde hair speak into a microphone about?,video6686,162813,4 4234,6686,situation,what does the mayor of houston describe after a devastating flood?,video6686,162814,4 4235,6686,microphone,what does a woman with short blonde hair speak into about a flood?,video6686,162815,4 4236,6686,flood,what is a woman explains results of doing?,video6686,162816,4 4237,6686,podium,what does a woman stand behind in front of civil service members in uniform standing intently?,video6686,162817,4 4238,6686,officer,who stands behind?,video6686,162818,4 4239,6686,disaster,what does law enforcement woman speak about?,video6686,162819,4 4240,6686,hall,what is a shirt woman talking from?,video6686,162820,4 4241,6686,enforcement,who speaks about natural disaster?,video6686,162821,4 4242,6686,group,what are listening the blonde woman?,video6686,162822,4 4243,6686,shirt,who is talking from the hall?,video6686,162823,4 4244,6686,blonde,who are group of people listening?,video6686,162824,4 4245,6686,woman,who stands behind podium in front of civil service members in uniform standing intently?,video6686,162825,4 4246,6686,wear,what is a old lady in white color dress doing?,video6686,162826,4 4247,6686,listen,what are group of people doing?,video6686,162827,4 4248,6686,talk,what is a woman with blonde hair doing?,video6686,162828,4 4249,6686,brief,what is the mayor doing?,video6686,162829,4 4250,6686,talk,what is there is a woman doing?,video6686,162830,4 4251,6686,talk,what is there is a short hair woman doing?,video6686,162831,4 4252,6686,talk,what is a shirt woman doing?,video6686,162832,4 4253,6686,addres,what is blonde in shirt doing?,video6686,162833,4 4254,6686,talk,what is blonde woman doing?,video6686,162834,4 4255,6686,talk,what is the mayor of houston doing?,video6686,162835,4 4256,6687,argue,what are two men doing?,video6687,162836,7 4257,6687,face,what did man arguing with another man until he gets hit in?,video6687,162837,7 4258,6687,two,how many men are performing in front of judges?,video6687,162838,7 4259,6687,stage,when are two men arguing?,video6687,162839,7 4260,6687,show,what do men act on?,video6687,162840,7 4261,6687,stage,when do two men act?,video6687,162841,7 4262,6687,woman,who is shocked?,video6687,162842,7 4263,6687,two,how many men are talking in a talkative show in a comedy manner?,video6687,162843,7 4264,6687,man,who gets?,video6687,162844,7 4265,6687,act,what is two men doing?,video6687,162845,7 4266,6687,talk,what are some people doing?,video6687,162846,7 4267,6687,watch,what are people doing?,video6687,162847,7 4268,6687,talk,what is men doing?,video6687,162848,7 4269,6687,act,what is men doing?,video6687,162849,7 4270,6687,argue,what is man doing?,video6687,162850,7 4271,6687,perform,what is a tv show with two people doing?,video6687,162851,7 4272,6687,slap,what is a man doing?,video6687,162852,7 4273,6687,act,what is a actor and a actress doing?,video6687,162853,7 4274,6687,man,who smacks another man in the face?,video6687,162854,7 4275,6687,two,how many men are people watching fighting on a television show?,video6687,162855,7 4276,6687,two,how many men talk on a game show?,video6687,162856,7 4277,6687,two,how many men are arguing on stage?,video6687,162857,7 4278,6687,man,who is slapping to another man?,video6687,162858,7 4279,6687,two,how many men acting on stage?,video6687,162859,7 4280,6687,discussion,what do two men on a game show have?,video6687,162860,7 4281,6688,try,what is video of a surgeon doing?,video6688,162861,5 4282,6688,operate,what is a doctor doing?,video6688,162862,5 4283,6688,involve,what is a medical video of a surgery doing?,video6688,162863,5 4284,6688,operate,what is a person doing?,video6688,162864,5 4285,6688,drill,what is a surgeon doing?,video6688,162865,5 4286,6688,depict,what is a surgical video doing?,video6688,162866,5 4287,6688,perform,what is a doctor doing?,video6688,162867,5 4288,6688,procedure,what does a doctor perform?,video6688,162868,5 4289,6688,surgery,what is being performed?,video6688,162869,5 4290,6688,person,who is operating on another person?,video6688,162870,5 4291,6688,doctor,who performs a medical procedure?,video6688,162871,5 4292,6688,someone,what performs first person surgery?,video6688,162872,5 4293,6688,doctor,who is performing surgery?,video6688,162873,5 4294,6688,surgeon,who is performing an operation?,video6688,162874,5 4295,6688,person,who preforms surgery?,video6688,162875,5 4296,6688,person,who is a person operating on?,video6688,162876,5 4297,6688,surgery,what does a person preform?,video6688,162877,5 4298,6688,surgery,what does someone perform?,video6688,162878,5 4299,6688,operation,what is a surgeon performing?,video6688,162879,5 4300,6688,surgery,what is a doctor performing?,video6688,162880,5 4301,6688,surgeon,who is drilling?,video6688,162881,5 4302,6688,surgery,what is a person performing?,video6688,162882,5 4303,6688,drilling,what is a surgeon?,video6688,162883,5 4304,6688,bone,what is shown being drilled?,video6688,162884,5 4305,6688,surgery,what is shown?,video6688,162885,5 4306,6689,sky,what do a yellow blob free falling from?,video6689,162886,2 4307,6689,fall,what is a cartoon animation doing?,video6689,162887,2 4308,6689,fall,what is a cartoon doing?,video6689,162888,2 4309,6689,fall,what is a giant cartoon character doing?,video6689,162889,2 4310,6689,play,what is a person doing?,video6689,162890,2 4311,6689,fall,what is a yellow blob free doing?,video6689,162891,2 4312,6689,fall,what is a yellow cartoon character doing?,video6689,162892,2 4313,6689,fly,what is a yellow doing?,video6689,162893,2 4314,6689,fall,what is a animated character doing?,video6689,162894,2 4315,6689,fall,what is jake from adventure time doing?,video6689,162895,2 4316,6689,look,what is nice doing?,video6689,162896,2 4317,6689,practice,what are some doing?,video6689,162897,2 4318,6689,fall,what is techno music plays as something doing?,video6689,162898,2 4319,6689,hover,what is there was a yellow object doing?,video6689,162899,2 4320,6689,fall,what is yellow guy doing?,video6689,162900,2 4321,6689,fall,what is an animated object with tentacles is slowly doing?,video6689,162901,2 4322,6689,sown,what is nice looking character here?,video6689,162902,2 4323,6689,ease,what is a spider doing?,video6689,162903,2 4324,6689,ring,what are some practicing?,video6689,162904,2 4325,6689,techno,what plays as something is falling from the sky?,video6689,162905,2 4326,6689,creature,what is fyling towards the ground?,video6689,162906,2 4327,6689,sky,what is something falling from?,video6689,162907,2 4328,6689,character,who is falling to thee ground?,video6689,162908,2 4329,6689,town,where do a spider easing down?,video6689,162909,2 4330,6689,animation,what is falling towards the ground?,video6689,162910,2 4331,6689,blob,what free falling from the sky?,video6689,162911,2 4332,6689,ground,what is a cartoon animation falling towards?,video6689,162912,2 4333,6689,ground,what is an animated creature fyling towards?,video6689,162913,2 4334,6689,earth,what does a cartoon dog freefalls toward?,video6689,162914,2 4335,6689,character,who is sown here?,video6689,162915,2 4336,6689,town,what do a spider easing down over?,video6689,162916,2 4337,6689,cartoon,what is falling from the sky?,video6689,162917,2 4338,6689,sky,what is a cartoon falling from?,video6689,162918,2 4339,6689,cartoon,what freefalls toward the earth?,video6689,162919,2 4340,6690,lie,what is a white device doing?,video6690,162920,10 4341,6690,film,what is a person doing?,video6690,162921,10 4342,6690,explain,what is a person doing?,video6690,162922,10 4343,6690,show,what is a video doing?,video6690,162923,10 4344,6690,display,what is a white color instrument and a paper still image doing?,video6690,162924,10 4345,6690,put,what is a woman discusses and demonstrates doing?,video6690,162925,10 4346,6690,use,what is a female announcer describes how to sow a button hole doing?,video6690,162926,10 4347,6690,sew,what is button hole doing?,video6690,162927,10 4348,6690,sew,what is the lady talk about a device which helps in doing?,video6690,162928,10 4349,6690,sew,what is its a buttonhole doing?,video6690,162929,10 4350,6690,tell,what is a lady doing?,video6690,162930,10 4351,6690,fabric,what does the buttonhole go on?,video6690,162931,10 4352,6690,buttonhole,what sewing for stiching a cloth?,video6690,162932,10 4353,6690,device,what is lying down on a table?,video6690,162933,10 4354,6690,table,what is a white device lying down on?,video6690,162934,10 4355,6690,person,who is filming a small white device?,video6690,162935,10 4356,6690,button,what hole sewing make it on the full?,video6690,162936,10 4357,6690,mark,what did then a piece of fabric with lines mark a beginning instruction says to?,video6690,162937,10 4358,6690,button,what does a woman demonstrate putting on fabric?,video6690,162938,10 4359,6690,instruction,what did then a piece of fabric with lines mark says to first mark?,video6690,162939,10 4360,6690,plastic,what do button hole sewing make a white piece of on the full?,video6690,162940,10 4361,6690,fabric,what does a woman demonstrate putting a button hole on?,video6690,162941,10 4362,6690,announcer,who describes how to sow a button hole using tailor s chalk?,video6690,162942,10 4363,6690,lady,who talk about a device which helps in sewing a button hole on the fabric?,video6690,162943,10 4364,6690,woman,who demonstrates putting a button hole on fabric?,video6690,162944,10 4365,6690,fabric,what does a hand tool that locates and sew a button onto?,video6690,162945,10 4366,6690,button,what does a hand tool that locates and sew onto fabric?,video6690,162946,10 4367,6690,button,what hole sewing make a white piece of plastic on the full?,video6690,162947,10 4368,6690,buttonhole,what goes on the fabric?,video6690,162948,10 4369,6690,woman,who discusses?,video6690,162949,10 4370,6690,person,who is explaining about something which is white is colout?,video6690,162950,10 4371,6691,lady,who adds onions?,video6691,162951,16 4372,6691,pot,what is a person making some food in?,video6691,162952,16 4373,6691,food,what is a person making in a pot?,video6691,162953,16 4374,6691,pot,what is someone cooking some food inside of?,video6691,162954,16 4375,6691,food,what is someone cooking inside of a pot?,video6691,162955,16 4376,6691,food,what is a person cooking inside of a pot?,video6691,162956,16 4377,6691,prepare,what is a person doing?,video6691,162957,16 4378,6691,cook,what is there is a women doing?,video6691,162958,16 4379,6691,pot,what is a person cooking food inside of?,video6691,162959,16 4380,6691,cook,what is a woman doing?,video6691,162960,16 4381,6691,describe,what is a woman doing?,video6691,162961,16 4382,6691,cook,what is some one doing?,video6691,162962,16 4383,6691,explain,what is a woman doing?,video6691,162963,16 4384,6691,dish,what do a woman cooking and explain about?,video6691,162964,16 4385,6691,woman,who is describing how to cook garlic and lemon zest in a pot?,video6691,162965,16 4386,6691,lady,who is demonstrating the recipe for making food item with onion as main ingredient?,video6691,162966,16 4387,6691,food,what is getting cooked in a big pot in the kitchen?,video6691,162967,16 4388,6691,person,who puts ingredients into a vessel to prepare some food?,video6691,162968,16 4389,6691,woman,who is explaining about cooking with olive oil?,video6691,162969,16 4390,6691,chef,who prepares some ingredients in a kitchen?,video6691,162970,16 4391,6691,person,who is making some food in a pot?,video6691,162971,16 4392,6691,demonstrate,what is a lady doing?,video6691,162972,16 4393,6691,lady,who mixes ingredients in a pot?,video6691,162973,16 4394,6691,recipe,what do a person doing a cooking show and mixing the ingredients for?,video6691,162974,16 4395,6691,recipe,what do a person doing a cooking show and showing the ingredients for?,video6691,162975,16 4396,6691,someone,who is cooking some food inside of a pot?,video6691,162976,16 4397,6691,person,who is cooking food inside of a pot?,video6691,162977,16 4398,6691,ingredient,what is a lady demonstrating the recipe for making food item with onion as?,video6691,162978,16 4399,6691,cook,what is someone doing?,video6691,162979,16 4400,6692,room,what does a man speak to another man in?,video6692,162980,7 4401,6692,talk,what is a man doing?,video6692,162981,7 4402,6692,confrontation,what are two men having in a movie scene?,video6692,162982,7 4403,6692,robert,what jr in a video clip from a movie?,video6692,162983,7 4404,6692,two,how many man s are talking to each other?,video6692,162984,7 4405,6692,two,how many men are having a confrontation in a movie scene?,video6692,162985,7 4406,6692,man,who does a man speak to in a room?,video6692,162986,7 4407,6692,man,who speaks to another man in a room?,video6692,162987,7 4408,6692,movie,what clip with two male characters talking?,video6692,162988,7 4409,6692,talk,what is a movie clip with two male characters doing?,video6692,162989,7 4410,6692,talk,what are loke and iron man doing?,video6692,162990,7 4411,6692,talk,what is loki doing?,video6692,162991,7 4412,6692,talk,what is there is a movie clip of 2 people doing?,video6692,162992,7 4413,6692,talk,what is tony stark doing?,video6692,162993,7 4414,6692,two,how many men are having a conversation?,video6692,162994,7 4415,6692,talk,what are two man s doing?,video6692,162995,7 4416,6692,conversation,what are two men having?,video6692,162996,7 4417,6692,two,how many men are conversing?,video6692,162997,7 4418,6692,man,what are talking to each other?,video6692,162998,7 4419,6692,converse,what are two men doing?,video6692,162999,7 4420,6693,watch,what is a couple of people doing?,video6693,163000,3 4421,6693,play,what is a man and woman doing?,video6693,163001,3 4422,6693,field,what are two people playing in?,video6693,163002,3 4423,6693,play,what are a boy and girl doing?,video6693,163003,3 4424,6693,person,who is explaining something?,video6693,163004,3 4425,6693,try,what is a girl doing?,video6693,163005,3 4426,6693,field,what are a woman and man playing around together in?,video6693,163006,3 4427,6693,field,where are two people playing?,video6693,163007,3 4428,6693,field,where are a woman and man playing around together?,video6693,163008,3 4429,6693,two,how many people are playing in a field?,video6693,163009,3 4430,6693,play,what is two people doing?,video6693,163010,3 4431,6693,play,what are two people doing?,video6693,163011,3 4432,6693,play,what is two girls doing?,video6693,163012,3 4433,6693,try,what is there s a couple doing?,video6693,163013,3 4434,6693,horse,what are people doing?,video6693,163014,3 4435,6693,use,what is man doing?,video6693,163015,3 4436,6693,play,what is couple watches video of themselves doing?,video6693,163016,3 4437,6693,play,what are a woman and man doing?,video6693,163017,3 4438,6693,play,what is a woman and a man doing?,video6693,163018,3 4439,6693,explain,what is a person doing?,video6693,163019,3 4440,6693,something,what is a person explaining?,video6693,163020,3 4441,6694,speak,what is people doing?,video6694,163021,14 4442,6694,talk,what are some guys doing?,video6694,163022,14 4443,6694,sit,what are people doing?,video6694,163023,14 4444,6694,talk,what is a person doing?,video6694,163024,14 4445,6694,smile,what is a girl doing?,video6694,163025,14 4446,6694,talk,what is a boy doing?,video6694,163026,14 4447,6694,talk,what is there is a picture-in-picture of a boy doing?,video6694,163027,14 4448,6694,talk,what is the kid doing?,video6694,163028,14 4449,6694,kid,who is talking about the talent on tv?,video6694,163029,14 4450,6694,boy,who is talking while pictures of him are being shown?,video6694,163030,14 4451,6694,boy,who does the second season of the voice highlight?,video6694,163031,14 4452,6694,voice,what do a child being interviewed on the television show?,video6694,163032,14 4453,6694,music,what are people sitting on a couch discussing?,video6694,163033,14 4454,6694,talent,what is the kid talking about on tv?,video6694,163034,14 4455,6694,person,who is talking?,video6694,163035,14 4456,6694,couch,what are people sitting on discussing music?,video6694,163036,14 4457,6694,screen,what does some talk going on?,video6694,163037,14 4458,6694,season,when teaser video?,video6694,163038,14 4459,6694,girl,who is smiling?,video6694,163039,14 4460,6694,interview,what is a candidate of voice season 2 giving?,video6694,163040,14 4461,6695,discus,what is a man doing?,video6695,163041,9 4462,6695,show,what is a man doing?,video6695,163042,9 4463,6695,man,who does features s is talking about a car?,video6695,163043,9 4464,6695,talk,what is a man doing?,video6695,163044,9 4465,6695,sit,what is a man doing?,video6695,163045,9 4466,6695,car,what is a man sitting in talking?,video6695,163046,9 4467,6695,speaking,who spanish describing a car?,video6695,163047,9 4468,6695,car,what is a man discussing in a foreign language?,video6695,163048,9 4469,6695,man,who drive a car?,video6695,163049,9 4470,6695,demo,what is a man giving?,video6695,163050,9 4471,6695,car,what do a man speaking spanish describing?,video6695,163051,9 4472,6695,car,what do a man drive?,video6695,163052,9 4473,6695,car,what is man showing the interior of?,video6695,163053,9 4474,6695,man,who is sitting in a car talking?,video6695,163054,9 4475,6695,review,what is a man doing?,video6695,163055,9 4476,6695,speak,what is a man doing?,video6695,163056,9 4477,6695,explain,what is man doing?,video6695,163057,9 4478,6695,man,who is showing the back seat of a car?,video6695,163058,9 4479,6695,car,what is a man giving demo about?,video6695,163059,9 4480,6695,man,who discusses the seating in an automobile?,video6695,163060,9 4481,6695,man,who is showing the interior of a car?,video6695,163061,9 4482,6695,man,who is talking about the seat room in a car?,video6695,163062,9 4483,6695,man,who is giving demo about car?,video6695,163063,9 4484,6695,man,who is discussing his car in a foreign language?,video6695,163064,9 4485,6695,car,what is a man showing the back seat of?,video6695,163065,9 4486,6695,car,what is a man talking about the seat room in?,video6695,163066,9 4487,6695,car,what does features s a man is talking about?,video6695,163067,9 4488,6695,narrator,who demonstrates the space available in his car?,video6695,163068,9 4489,6696,girl,who is shooting a vlog video in the passenger seat of a car?,video6696,163069,16 4490,6696,video,what is a girl shooting in the passenger seat of a car?,video6696,163070,16 4491,6696,girl,who talks while riding in a car?,video6696,163071,16 4492,6696,hair,what does a girl sit in a back seat of a car doing?,video6696,163072,16 4493,6696,woman,who is riding in the car?,video6696,163073,16 4494,6696,hair,what does a woman mess with in the car?,video6696,163074,16 4495,6696,talk,what is three women in a car doing?,video6696,163075,16 4496,6696,talk,what are girls in a car doing?,video6696,163076,16 4497,6696,talk,what is girl doing?,video6696,163077,16 4498,6696,talk,what is a short clip of a young woman in a car doing?,video6696,163078,16 4499,6696,travel,what is a lady tied with seat belt doing?,video6696,163079,16 4500,6696,shoot,what is a girl doing?,video6696,163080,16 4501,6696,record,what is a girl doing?,video6696,163081,16 4502,6696,talk,what is a girl and her friends doing?,video6696,163082,16 4503,6696,lady,who tied with seat belt traveling in a car?,video6696,163083,16 4504,6696,woman,who is riding in a car?,video6696,163084,16 4505,6696,car,what is woman riding in?,video6696,163085,16 4506,6696,car,what is a woman riding in?,video6696,163086,16 4507,6696,sister,who is driving down the street?,video6696,163087,16 4508,6697,play,what are a two men doing?,video6697,163088,3 4509,6697,play,what are some people doing?,video6697,163089,3 4510,6697,play,what are tennis players doing?,video6697,163090,3 4511,6697,play,what is several tennis players are actively doing?,video6697,163091,3 4512,6697,cut,what is someone doing?,video6697,163092,3 4513,6697,volley,what is two men compete in a game of tennis by doing?,video6697,163093,3 4514,6697,wear,what is a men s tenis match one man doing?,video6697,163094,3 4515,6697,enjoy,what is there is a man with blue cap doing?,video6697,163095,3 4516,6697,celebrate,what is the player in white doing?,video6697,163096,3 4517,6697,celebrate,what is a man doing?,video6697,163097,3 4518,6697,play,what are two men doing?,video6697,163098,3 4519,6697,tenni,what matches from the tennis tv channel?,video6697,163099,3 4520,6697,tenni,who are celebrating?,video6697,163100,3 4521,6697,tenni,what are some people playing outside on a court?,video6697,163101,3 4522,6697,tenni,who play tennis on a court?,video6697,163102,3 4523,6697,someone,who is cutting tomatoesboiling pastas?,video6697,163103,3 4524,6697,tenni,what do two men play on a dirt court in a spanish speaking country?,video6697,163104,3 4525,6697,country,what do two men play tennis on a dirt court in a spanish speaking?,video6697,163105,3 4526,6697,sport,what are tennis players playing on red clay?,video6697,163106,3 4527,6697,tenni,what does a white dress player hit the ball and black dress player missed?,video6697,163107,3 4528,6697,two,how many men are playing tennis together on a court?,video6697,163108,3 4529,6697,someone,who in the end prepares an excellent dish?,video6697,163109,3 4530,6697,tenni,who are playing the sport on red clay?,video6697,163110,3 4531,6697,man,who is celebrating after winning a point in tennis?,video6697,163111,3 4532,6697,two,how many men are playing a tennis game?,video6697,163112,3 4533,6697,two,how many tennis players play tennis on a court?,video6697,163113,3 4534,6697,two,how many men compete in a game of tennis by volleying balls across a net on a court?,video6697,163114,3 4535,6697,man,who does a men s tenis match is wearing a pink vest?,video6697,163115,3 4536,6697,sight,what is a point?,video6697,163116,3 4537,6697,tenni,what are a two men playing?,video6697,163117,3 4538,6697,tenni,who are several tennis players actively playing?,video6697,163118,3 4539,6697,point,what is a beautiful sight?,video6697,163119,3 4540,6697,tenni,what are two men playing together on a court?,video6697,163120,3 4541,6697,dish,what does someone in the end prepare?,video6697,163121,3 4542,6697,tenni,who are actively playing tennis?,video6697,163122,3 4543,6697,court,what are two men playing tennis together on?,video6697,163123,3 4544,6697,pink,what does a men s tenis match one man is wearing?,video6697,163124,3 4545,6697,teni,what does a men s match one man is wearing a pink vest?,video6697,163125,3 4546,6697,shirt,what does a men s the other is wearing?,video6697,163126,3 4547,6697,two,how many men play tennis on a dirt court in a spanish speaking country?,video6697,163127,3 4548,6697,clay,what are tennis players playing the sport on?,video6697,163128,3 4549,6698,perform,what is a music video by a female pop artist with a gathered audience doing?,video6698,163129,19 4550,6698,singer,who dances?,video6698,163130,19 4551,6698,singer,who sings?,video6698,163131,19 4552,6698,set,what is sings the song we will rock you by the band queen in a greek colloseum doing?,video6698,163132,19 4553,6698,singer,who sings a song by the group queen while in a gladiator arena?,video6698,163133,19 4554,6698,blonde,who performs in a gladiator style arena for a music video?,video6698,163134,19 4555,6698,singer,who sings in front of a big crowd of people?,video6698,163135,19 4556,6698,pink,what is dressed up as a gladiator and singing in an arena?,video6698,163136,19 4557,6698,feature,what is this is a video doing?,video6698,163137,19 4558,6698,lead,what is woman in an arena doing?,video6698,163138,19 4559,6699,girl,who whines about not being like the cool kids in a song?,video6699,163139,14 4560,6699,sit,what are the people doing?,video6699,163140,14 4561,6699,sync,what is a girl lip doing?,video6699,163141,14 4562,6699,sit,what is a girl doing?,video6699,163142,14 4563,6699,girl,who performs a cover of a popular song?,video6699,163143,14 4564,6699,girl,who is singing a song for a music video?,video6699,163144,14 4565,6699,couch,what does a girl lip sync on?,video6699,163145,14 4566,6699,girl,who is singing about being cool?,video6699,163146,14 4567,6699,girl,who is sitting?,video6699,163147,14 4568,6699,selfie,what is a woman taking?,video6699,163148,14 4569,6699,woman,who is taking a selfie?,video6699,163149,14 4570,6699,girl,what syncing on a couch?,video6699,163150,14 4571,6699,couch,what do a group of people sit on together?,video6699,163151,14 4572,6700,man,who talks about people who helped kids?,video6700,163152,5 4573,6700,man,who is lecturing about underprivileged kids?,video6700,163153,5 4574,6700,man,who speaks to an audience on stage?,video6700,163154,5 4575,6700,person,who is talking about some pictures?,video6700,163155,5 4576,6700,man,who is talking about a woman who left melbourne?,video6700,163156,5 4577,6700,man,who is talking about teaching?,video6700,163157,5 4578,6700,man,who talks to an audience about two women?,video6700,163158,5 4579,6700,child,who is smiling?,video6700,163159,5 4580,6700,presentation,what does a man give?,video6700,163160,5 4581,6700,man,who is giving a presentation?,video6700,163161,5 4582,6700,man,who gives a presentation?,video6700,163162,5 4583,6700,speak,what is man doing?,video6700,163163,5 4584,6700,presentation,what does a man in suit do?,video6700,163164,5 4585,6700,explain,what is a person doing?,video6700,163165,5 4586,6700,talk,what is a man doing?,video6700,163166,5 4587,6700,lecture,what is a man doing?,video6700,163167,5 4588,6700,man,who is giving a lecture?,video6700,163168,5 4589,6700,smile,what is a child doing?,video6700,163169,5 4590,6700,lecture,what is a man giving?,video6700,163170,5 4591,6701,ring,what are three wrestlers fighting in?,video6701,163171,3 4592,6701,ring,what do video game wrestlers compete in?,video6701,163172,3 4593,6701,video,what is played?,video6701,163173,3 4594,6701,video,who compete in a ring?,video6701,163174,3 4595,6701,game,what play footage of wwe 2k16?,video6701,163175,3 4596,6701,three,how many wrestlers are fighting in a ring?,video6701,163176,3 4597,6701,game,what is being played?,video6701,163177,3 4598,6701,wrestle,what is a clip from a doing?,video6701,163178,3 4599,6701,wrestle,what is video game of a three man doing?,video6701,163179,3 4600,6701,wrestle,what are three video game characters doing?,video6701,163180,3 4601,6701,play,what are people doing?,video6701,163181,3 4602,6701,wrestle,what are men doing?,video6701,163182,3 4603,6701,fight,what are three wrestlers doing?,video6701,163183,3 4604,6701,play,what is a man doing?,video6701,163184,3 4605,6701,play,what is gameplay footage of someone doing?,video6701,163185,3 4606,6702,man,who is broadcasting a news report in the public during the daytime?,video6702,163186,4 4607,6702,reporter,who reports on deaths occurring to the prd during a battle?,video6702,163187,4 4608,6702,airport,what does a news reporter describe fighting around with an english translation?,video6702,163188,4 4609,6702,news,what is a guy with a stupid hair cut talking on?,video6702,163189,4 4610,6702,reporter,who describes fighting around donetsk airport with an english translation?,video6702,163190,4 4611,6702,prd,what did a man reporting about an attack perform by with various military personnel in the background?,video6702,163191,4 4612,6702,public,what is a man broadcasting a news report in during the daytime?,video6702,163192,4 4613,6702,daytime,what is a man broadcasting a news report in the public during?,video6702,163193,4 4614,6702,speak,what is a man in doing?,video6702,163194,4 4615,6702,talk,what is a guy with a stupid hair cut doing?,video6702,163195,4 4616,6702,explain,what is a person doing?,video6702,163196,4 4617,6702,wear,what is a lady doing?,video6702,163197,4 4618,6702,broadcast,what is a man doing?,video6702,163198,4 4619,6702,hold,what is a person in blue shirt speaks about some news doing?,video6702,163199,4 4620,6702,talk,what is a man in blue dress doing?,video6702,163200,4 4621,6702,talk,what is a guy in blue shirt holds the mike and doing?,video6702,163201,4 4622,6702,stand,what is a news reporter doing?,video6702,163202,4 4623,6702,record,what is a guy in blue shirt doing?,video6702,163203,4 4624,6702,fight,what is a news reporter describes doing?,video6702,163204,4 4625,6702,occur,what is a reporter reports on deaths doing?,video6702,163205,4 4626,6702,present,what is man in blue shirt doing?,video6702,163206,4 4627,6702,report,what is a man broadcasting in the public during the daytime?,video6702,163207,4 4628,6702,report,what is a man doing?,video6702,163208,4 4629,6702,report,what is a man on the street in a blue shirt doing?,video6702,163209,4 4630,6702,walk,what is several people doing?,video6702,163210,4 4631,6702,lady,who is wearing blue color shirt is talking?,video6702,163211,4 4632,6702,mic,what is a man in blue dress talking in?,video6702,163212,4 4633,6702,road,what is a news reporter standing at?,video6702,163213,4 4634,6702,reporter,who is giving the updates?,video6702,163214,4 4635,6702,reporter,who is standing at the road?,video6702,163215,4 4636,6702,background,what do a man in speaking into a microphone on the street with pedestrians and military personel walking in?,video6702,163216,4 4637,6702,color,what is a lady wearing is talking?,video6702,163217,4 4638,6702,news,what is man in blue shirt presenting?,video6702,163218,4 4639,6702,mic,what do the man in the button down shirt talk in?,video6702,163219,4 4640,6702,news,what is a guy in blue shirt recording for?,video6702,163220,4 4641,6702,channel,what do a person explaining a concept in a show?,video6702,163221,4 4642,6703,cage,what does a hamster sit in?,video6703,163222,13 4643,6703,hamster,what sits in a cage?,video6703,163223,13 4644,6703,cucumber,what has a lot of water?,video6703,163224,13 4645,6703,water,what does green color cucumber have a lot of?,video6703,163225,13 4646,6703,cave,what are sliced cucumbers in?,video6703,163226,13 4647,6703,hold,what is a girl doing?,video6703,163227,13 4648,6703,show,what is there is a women doing?,video6703,163228,13 4649,6703,hold,what is a lady doing?,video6703,163229,13 4650,6703,show,what is the owner of rabbit doing?,video6703,163230,13 4651,6703,hold,what is a man doing?,video6703,163231,13 4652,6703,hold,what is a hand doing?,video6703,163232,13 4653,6703,use,what is a young woman discusses doing?,video6703,163233,13 4654,6703,feed,what is a woman doing?,video6703,163234,13 4655,6703,show,what is person doing?,video6703,163235,13 4656,6703,woman,who is feeding cucumber to a hamster because it has a lot of water?,video6703,163236,13 4657,6703,woman,who is showing how to feed cucumbers to a rodent?,video6703,163237,13 4658,6703,cucumber,what is a woman feeding to a hamster because it has a lot of water?,video6703,163238,13 4659,6703,person,who is showing food to be feed to the pet in the cage?,video6703,163239,13 4660,6703,hamster,what is a woman feeding cucumber to because it has a lot of water?,video6703,163240,13 4661,6703,lady,who is giving reasons for giving watermelon as food to the animal?,video6703,163241,13 4662,6703,lady,who is the pet animal in the cage attracted by the vegetable slices shown in a cup by?,video6703,163242,13 4663,6703,food,what is person showing to be feed to the pet in the cage?,video6703,163243,13 4664,6703,show,what is a lady doing?,video6703,163244,13 4665,6703,food,what does a man show for bird kept in the cage?,video6703,163245,13 4666,6703,hamster,what does a young woman use cut up cucumbers to hydrate on a trip?,video6703,163246,13 4667,6703,man,who shows some food for bird kept in the cage?,video6703,163247,13 4668,6704,wear,what is a little boy in blue color dress doing?,video6704,163248,14 4669,6704,voucher,who do a boy round?,video6704,163249,14 4670,6704,boy,who play game?,video6704,163250,14 4671,6704,play,what is the small kid doing?,video6704,163251,14 4672,6704,game,what do a boy play?,video6704,163252,14 4673,6704,crawl,what is a little boy in a spiderman suit and some toys in his hand doing?,video6704,163253,14 4674,6704,enter,what is a child doing?,video6704,163254,14 4675,6704,enter,what is a kid dressed as a superman doing?,video6704,163255,14 4676,6704,crawl,what is kid in superman outfit doing?,video6704,163256,14 4677,6704,climb,what is a boy doing?,video6704,163257,14 4678,6704,climb,what is a little boy doing?,video6704,163258,14 4679,6704,enter,what are kids doing?,video6704,163259,14 4680,6704,wear,what is the small boy doing?,video6704,163260,14 4681,6704,crawl,what is a kid doing?,video6704,163261,14 4682,6704,thing,what is a kid crawling around on?,video6704,163262,14 4683,6704,voice,what does cryptnight bubble say a woman s?,video6704,163263,14 4684,6704,woman,who does cryptnight bubble say s voice?,video6704,163264,14 4685,6704,recorder,what does a boy in a superman shirt receive?,video6704,163265,14 4686,6704,tunnel,what is a kid dressed as a superman entering?,video6704,163266,14 4687,6704,tube,what does a boy in a superman shirt climb through?,video6704,163267,14 4688,6704,toy,what did a kid dressed as a superman find?,video6704,163268,14 4689,6704,cryptnight,what says a little boy is dressed in a superman inside a red tube?,video6704,163269,14 4690,6704,boy,who enters into a cloth room with the dress of a spider man?,video6704,163270,14 4691,6704,boy,who does cryptnight bubble say is dressed in a superman inside a red tube?,video6704,163271,14 4692,6704,boy,who is climbing through a tunnel towards bubbles?,video6704,163272,14 4693,6704,child,who crawls through a tunnel to his mother?,video6704,163273,14 4694,6704,baby,who is going in to the small alne?,video6704,163274,14 4695,6704,cryptnight,what says a woman s voice?,video6704,163275,14 4696,6704,kid,who is playing with his green toys?,video6704,163276,14 4697,6704,boy,who round the gift voucher?,video6704,163277,14 4698,6704,kid,who is crawling around on a thing?,video6704,163278,14 4699,6704,child,who is entering in the cloth tunnel?,video6704,163279,14 4700,6705,cycling,what is someone doing?,video6705,163280,11 4701,6705,feature,what is a nature show doing?,video6705,163281,11 4702,6705,walk,what is a crocodile inside water trees inside forest dogs doing?,video6705,163282,11 4703,6705,hold,what is a woman doing?,video6705,163283,11 4704,6705,carry,what is the woman doing?,video6705,163284,11 4705,6705,cycle,when is a boy?,video6705,163285,11 4706,6705,include,what is many views of nature doing?,video6705,163286,11 4707,6705,move,what are the purple dots doing?,video6705,163287,11 4708,6705,hold,what is in forest areaa woman with black dressing doing?,video6705,163288,11 4709,6705,walk,what is members of a community enjoy a park while cycling and doing?,video6705,163289,11 4710,6705,walk,what is a park with big ferns and large trees with a lady doing?,video6705,163290,11 4711,6705,walk,what is there are two dogs doing?,video6705,163291,11 4712,6705,walk,what is the woman in black dress take the two dogs with her and go for doing?,video6705,163292,11 4713,6705,walk,what are the fish is near the pool and the dogs doing?,video6705,163293,11 4714,6705,boy,who is in the cycle?,video6705,163294,11 4715,6705,noise,what are the purple dots moving left to right without?,video6705,163295,11 4716,6705,screen,what are many views of nature including plants humans and dogs being displayed on?,video6705,163296,11 4717,6705,music,what is a nature show featuring various animals backed by?,video6705,163297,11 4718,6705,park,what do members of a community enjoy while walking their dogs?,video6705,163298,11 4719,6705,road,what do woman hold two dogthe man cycling in?,video6705,163299,11 4720,6705,forest,what does a woman walk 2 dogs and someone rides a bike through?,video6705,163300,11 4721,6705,someone,who is doing cycling?,video6705,163301,11 4722,6705,park,what do members of a community enjoy while cycling?,video6705,163302,11 4723,6705,bycycle,who does a crocodile inside water trees inside forest dog walking with girl boy ryding displaying on screen?,video6705,163303,11 4724,6705,woman,who is carrying two dogs on the road while someone is doing cycling?,video6705,163304,11 4725,6705,two,how many dogs is the woman carrying on the road while someone is doing cycling?,video6705,163305,11 4726,6705,road,what is the woman carrying two dogs on while someone is doing cycling?,video6705,163306,11 4727,6705,woman,who is holding a rope tied with two dogs?,video6705,163307,11 4728,6705,woman,who walks two brown and white dogs on a path in a park?,video6705,163308,11 4729,6705,woman,who walks 2 dogs and someone rides a bike through a forest?,video6705,163309,11 4730,6705,woman,who hold two dogthe man cycling in the road?,video6705,163310,11 4731,6705,fish,what is near the pool?,video6705,163311,11 4732,6705,garden,what are the dogs walking in?,video6705,163312,11 4733,6705,pool,what is the fish near?,video6705,163313,11 4734,6706,fish,what is a person dipping into a brown liquid mess?,video6706,163314,16 4735,6706,liquid,what is a person mixing batteries in along with other items?,video6706,163315,16 4736,6706,bowl,what does a person put batteries and a fish into?,video6706,163316,16 4737,6706,bowl,what is a person shown mixing very strange objects in?,video6706,163317,16 4738,6706,fish,what is someone lowering into a bowl?,video6706,163318,16 4739,6706,bowl,what is someone lowering a fish into?,video6706,163319,16 4740,6706,person,who violently shakes the fish?,video6706,163320,16 4741,6706,person,who makes a gross concoction?,video6706,163321,16 4742,6706,someone,what is lowering a fish into a bowl?,video6706,163322,16 4743,6706,person,who puts batteries and a fish into a bowl?,video6706,163323,16 4744,6706,person,who is shown mixing very strange objects in a bowl?,video6706,163324,16 4745,6706,dump,what is someone doing?,video6706,163325,16 4746,6706,mix,what is a person is shown doing?,video6706,163326,16 4747,6706,mix,what is a person doing?,video6706,163327,16 4748,6706,dip,what is a person doing?,video6706,163328,16 4749,6706,put,what is a man doing?,video6706,163329,16 4750,6706,man,who is taking something out of a garbage bin?,video6706,163330,16 4751,6706,person,who is mixing batteries in brown liquid along with other items?,video6706,163331,16 4752,6706,person,who is dipping a fish into a brown liquid mess?,video6706,163332,16 4753,6706,man,who puts batteries then a dead fish into a bowl with a murky liquid?,video6706,163333,16 4754,6706,fish,what does a person violently shake?,video6706,163334,16 4755,6706,concoction,what does a person make?,video6706,163335,16 4756,6706,mes,what is a person making?,video6706,163336,16 4757,6706,dirty,what is played with?,video6706,163337,16 4758,6706,person,who is making a mess?,video6706,163338,16 4759,6707,car,what did a person close the hood of?,video6707,163339,9 4760,6707,person,who closed the hood of the car?,video6707,163340,9 4761,6707,car,what does a man close the hood of?,video6707,163341,9 4762,6707,man,who closes the hood of a car?,video6707,163342,9 4763,6707,man,who shows off a new car and talks about the features?,video6707,163343,9 4764,6707,person,who is video taping his red hyundai car nad showing off the rims?,video6707,163344,9 4765,6707,guy,who is demonstrating about a hundai four wheeler?,video6707,163345,9 4766,6707,car,what did a man close the hood of?,video6707,163346,9 4767,6707,film,what is a man doing?,video6707,163347,9 4768,6707,show,what is a man doing?,video6707,163348,9 4769,6707,talk,what is a man doing?,video6707,163349,9 4770,6707,talk,what is a man outside doing?,video6707,163350,9 4771,6707,look,what is a person doing?,video6707,163351,9 4772,6707,tap,what is a person is video doing?,video6707,163352,9 4773,6707,show,what is person doing?,video6707,163353,9 4774,6707,demonstrate,what is a guy doing?,video6707,163354,9 4775,6707,vehicle,what is being shown the details?,video6707,163355,9 4776,6707,man,who commentates while going over a car front?,video6707,163356,9 4777,6707,car,what is a man showing off?,video6707,163357,9 4778,6707,vehicle,what is being displayed?,video6707,163358,9 4779,6707,man,who is showing off his car?,video6707,163359,9 4780,6707,car,what is a person looking at?,video6707,163360,9 4781,6707,car,what is a man talking about?,video6707,163361,9 4782,6707,hyundai,what is a man filming?,video6707,163362,9 4783,6707,man,who is filming his hyundai car?,video6707,163363,9 4784,6707,person,who is looking at a car?,video6707,163364,9 4785,6707,man,who is talking about a car?,video6707,163365,9 4786,6708,person,who is explaining something?,video6708,163366,0 4787,6708,dance,what are teenagers doing?,video6708,163367,0 4788,6708,something,what is a person explaining?,video6708,163368,0 4789,6708,dance,what are some guys doing?,video6708,163369,0 4790,6708,dance,what are people doing?,video6708,163370,0 4791,6708,dance,what is girls doing?,video6708,163371,0 4792,6708,explain,what is a person doing?,video6708,163372,0 4793,6708,dance,what is a group of people doing?,video6708,163373,0 4794,6708,dance,what is a group of doing?,video6708,163374,0 4795,6708,beach,what do a group of people dance on?,video6708,163375,0 4796,6708,beat,what do a music video for the song march to?,video6708,163376,0 4797,6708,beat,where do a music video for the song march?,video6708,163377,0 4798,6708,girl,who is singing?,video6708,163378,0 4799,6708,dance,what is people doing?,video6708,163379,0 4800,6709,mouth,what does a girl talking childs?,video6709,163380,17 4801,6709,door,what was open in the background?,video6709,163381,17 4802,6709,spoof,what are a girl and boy doing?,video6709,163382,17 4803,6709,girl,who is feeding a boy?,video6709,163383,17 4804,6709,background,what was a door open in?,video6709,163384,17 4805,6709,boy,who is a girl feeding?,video6709,163385,17 4806,6709,food,what are kids eating?,video6709,163386,17 4807,6709,cheeto,who does a girl show?,video6709,163387,17 4808,6709,girl,who childs mouth?,video6709,163388,17 4809,6709,feed,what is a girl doing?,video6709,163389,17 4810,6709,talk,what is a girl doing?,video6709,163390,17 4811,6709,throw,what is a girl doing?,video6709,163391,17 4812,6709,perform,what is a man doing?,video6709,163392,17 4813,6709,eat,what are kids doing?,video6709,163393,17 4814,6709,put,what is doing?,video6709,163394,17 4815,6709,eat,what is two girls doing?,video6709,163395,17 4816,6709,enjoy,what is two girls doing?,video6709,163396,17 4817,6709,girl,who pours cereal in another girls mouth?,video6709,163397,17 4818,6709,man,who is performing in front of a group of judges?,video6709,163398,17 4819,6709,mouth,what does a girl throwing food into another childs?,video6709,163399,17 4820,6709,fruit,what do two children feed each other with?,video6709,163400,17 4821,6709,girl,who eat cereal and junk food?,video6709,163401,17 4822,6709,two,how many children feed each other with fruit loops?,video6709,163402,17 4823,6709,play,what are a girl and boy doing?,video6709,163403,17 4824,6710,man,who talks about hentai?,video6710,163404,4 4825,6710,man,who talks about japanese culture?,video6710,163405,4 4826,6710,someone,who is talking about anime?,video6710,163406,4 4827,6710,culture,what do a person talking about japanese?,video6710,163407,4 4828,6710,video,what talks about comic books and cartoons?,video6710,163408,4 4829,6710,hentai,who does a man talk about?,video6710,163409,4 4830,6710,vice,what a animated kids books on?,video6710,163410,4 4831,6710,anime,what is someone talking about?,video6710,163411,4 4832,6710,culture,what does a man talk about?,video6710,163412,4 4833,6710,something,what is a person explaining?,video6710,163413,4 4834,6710,school,who are shown?,video6710,163414,4 4835,6710,woman,who are dancing?,video6710,163415,4 4836,6710,person,who is explaining something?,video6710,163416,4 4837,6710,man,who discusses anime cartoons and comic books?,video6710,163417,4 4838,6710,someone,who talk about comics?,video6710,163418,4 4839,6710,man,who is talking about the school girl outfits made popular in asia?,video6710,163419,4 4840,6710,show,what is a clip doing?,video6710,163420,4 4841,6710,discus,what is a man doing?,video6710,163421,4 4842,6710,man,who speaks to a camera for a video segment?,video6710,163422,4 4843,6710,report,what is a man doing?,video6710,163423,4 4844,6710,explain,what is a person doing?,video6710,163424,4 4845,6710,talk,what is someone doing?,video6710,163425,4 4846,6710,dance,what are woman doing?,video6710,163426,4 4847,6710,talk,what is a man doing?,video6710,163427,4 4848,6711,lie,what is a man talks about people doing?,video6711,163428,1 4849,6711,girl,who is giving interview?,video6711,163429,1 4850,6711,youthfulnes,what are a girl and boy talking with media about?,video6711,163430,1 4851,6711,girl,who is asking to talk to another girl?,video6711,163431,1 4852,6711,man,who talks about people lying on the internet?,video6711,163432,1 4853,6711,man,who speaks to a camera for a video segment?,video6711,163433,1 4854,6711,complain,what are young people doing?,video6711,163434,1 4855,6711,talk,what are two women and a man doing?,video6711,163435,1 4856,6711,talk,what is teens doing?,video6711,163436,1 4857,6711,discus,what are people doing?,video6711,163437,1 4858,6711,act,what are people doing?,video6711,163438,1 4859,6711,ask,what is a young girl doing?,video6711,163439,1 4860,6711,internet,what are young people complaining about?,video6711,163440,1 4861,6711,sit,what is a couple doing?,video6711,163441,1 4862,6711,talk,what are a girl and boy doing?,video6711,163442,1 4863,6711,talk,what is a man doing?,video6711,163443,1 4864,6711,complain,what is a montage of people doing?,video6711,163444,1 4865,6711,interview,what is a girl giving?,video6711,163445,1 4866,6712,ball,what does a quaterback throw?,video6712,163446,3 4867,6712,football,what are people playing?,video6712,163447,3 4868,6712,football,what is being watched?,video6712,163448,3 4869,6712,play,what are players doing?,video6712,163449,3 4870,6712,stadium,what are men playing football on?,video6712,163450,3 4871,6712,play,what are people doing?,video6712,163451,3 4872,6712,play,what are men doing?,video6712,163452,3 4873,6712,play,what is football players doing?,video6712,163453,3 4874,6712,show,what is a video doing?,video6712,163454,3 4875,6712,pas,what is caught?,video6712,163455,3 4876,6712,football,what are men playing on a stadium?,video6712,163456,3 4877,6712,quaterback,who throws the ball?,video6712,163457,3 4878,6712,football,who is taking down another football player with the attempt of snatching away the ball?,video6712,163458,3 4879,6712,football,who is a football player taking down with the attempt of snatching away the ball?,video6712,163459,3 4880,6712,quarterback,who makes a long pass in a professional football game?,video6712,163460,3 4881,6712,football,what does a video clip of a patriots?,video6712,163461,3 4882,6712,football,who launches a pass down the field?,video6712,163462,3 4883,6712,football,what shown on a tv and a touchdown?,video6712,163463,3 4884,6712,pas,what does a quarterback make in a professional football game?,video6712,163464,3 4885,6712,pas,what does a football player launch down the field?,video6712,163465,3 4886,6712,field,what does a football player launch a pass down?,video6712,163466,3 4887,6713,work,what are a men and a women doing?,video6713,163467,12 4888,6713,sit,what are a couple of people doing?,video6713,163468,12 4889,6713,work,what is there is a black suit man doing?,video6713,163469,12 4890,6713,work,what are a group of people doing?,video6713,163470,12 4891,6713,hold,what is several people dressed professionaly doing?,video6713,163471,12 4892,6713,look,what is business professionals are at a desk doing?,video6713,163472,12 4893,6713,watch,what are the men and women doing?,video6713,163473,12 4894,6713,talk,what is a man doing?,video6713,163474,12 4895,6713,sit,what are people doing?,video6713,163475,12 4896,6713,educator,who comments on how his students go on to do greater things?,video6713,163476,12 4897,6713,work,what did several people dress professionaly holding various meetings at?,video6713,163477,12 4898,6713,work,what are young men and women doing?,video6713,163478,12 4899,6713,man,who is sitting at a computer working on something?,video6713,163479,12 4900,6713,busines,who are at a desk looking at computers?,video6713,163480,12 4901,6713,man,who is talking about different students in the library?,video6713,163481,12 4902,6713,use,what is many students are shown doing?,video6713,163482,12 4903,6713,computer,what is a man sitting at working on something?,video6713,163483,12 4904,6713,library,what is a man talking about different students in?,video6713,163484,12 4905,6713,computer,what are people sitting at in an office setting?,video6713,163485,12 4906,6713,training,what are young men and women working together on computers to complete in computer science coursework?,video6713,163486,12 4907,6713,work,what are many students shown using computers to do?,video6713,163487,12 4908,6713,screen,what are the men and women watching something on?,video6713,163488,12 4909,6713,computer,what are a men and a women working in?,video6713,163489,12 4910,6713,work,what does scene from a room filled with computers and computer operaters they doing?,video6713,163490,12 4911,6713,something,what are the men and women watching on the screen?,video6713,163491,12 4912,6714,talk,what is president obama and hilary clinton doing?,video6714,163492,7 4913,6714,speak,what is president obama doing?,video6714,163493,7 4914,6714,addres,what is current president of us obama doing?,video6714,163494,7 4915,6714,talk,what is a president doing?,video6714,163495,7 4916,6714,talk,what is a man doing?,video6714,163496,7 4917,6714,talk,what is a video of barack obama doing?,video6714,163497,7 4918,6714,tyrant,who does barack obama speak about?,video6714,163498,7 4919,6714,tyrant,who does obama give speech about?,video6714,163499,7 4920,6714,enemy,what do president obama and hilary clinton talking about?,video6714,163500,7 4921,6714,president,who is speaking to an outdoor audience?,video6714,163501,7 4922,6714,obama,who gives speech about tyrant?,video6714,163502,7 4923,6714,man,who is talking about something in a outdoor?,video6714,163503,7 4924,6714,conference,what is president obama giving outside on a sunny day?,video6714,163504,7 4925,6714,man,who is talking into a pair of microphones?,video6714,163505,7 4926,6714,president,who is giving a press conference outside on a sunny day?,video6714,163506,7 4927,6714,barack,who speaks about a tyrant?,video6714,163507,7 4928,6714,speech,what is a man giving?,video6714,163508,7 4929,6714,speech,what is predident obama giving?,video6714,163509,7 4930,6714,barack,what gives a speech?,video6714,163510,7 4931,6714,man,who is giving a speech?,video6714,163511,7 4932,6714,man,who is talking?,video6714,163512,7 4933,6714,speech,what is obama giving?,video6714,163513,7 4934,6714,speech,what does president obama give?,video6714,163514,7 4935,6714,president,who gives a speech?,video6714,163515,7 4936,6714,speech,what does barack obama give?,video6714,163516,7 4937,6714,speech,what does obama give?,video6714,163517,7 4938,6715,put,what is it is a girl doing?,video6715,163518,18 4939,6715,put,what is black haired woman doing?,video6715,163519,18 4940,6715,oma,who shows how to put on purple lipstick?,video6715,163520,18 4941,6715,make,what is woman with brunette hair doing?,video6715,163521,18 4942,6715,make,what is brunette woman in black dress doing?,video6715,163522,18 4943,6715,lip,what is a woman applying gloss?,video6715,163523,18 4944,6715,lip,what is a woman applying a lip stick in?,video6715,163524,18 4945,6715,youtuber,who does a makeup tutorial in front of a silver glittery background?,video6715,163525,18 4946,6715,product,what does a woman provide a positive review of?,video6715,163526,18 4947,6715,woman,who is applying lip gloss?,video6715,163527,18 4948,6715,makeup,what is a woman in black lace applying?,video6715,163528,18 4949,6715,cute,who is try to make a woman with black hair and long red fingernails self beautiful?,video6715,163529,18 4950,6715,woman,who puts on lipstick in normal speed then in fast speed?,video6715,163530,18 4951,6715,woman,who provides a positive review of the product?,video6715,163531,18 4952,6716,car,what introduce?,video6716,163532,9 4953,6716,person,who is driving his red car under the bridge on a video game?,video6716,163533,9 4954,6716,control,what is a red car moving on the road with?,video6716,163534,9 4955,6716,road,what is a red car moving on with control?,video6716,163535,9 4956,6716,car,what drives underneath an overpass?,video6716,163536,9 4957,6716,traffic,what is a person racing through in a video game?,video6716,163537,9 4958,6716,bridge,what is person driving his red car under on a video game?,video6716,163538,9 4959,6716,car,what is moving on the road with control?,video6716,163539,9 4960,6716,car,what is driving down a road past other cars?,video6716,163540,9 4961,6716,highway,what does a red car in a video game drive down?,video6716,163541,9 4962,6716,back,what did a red car driving on a highway in high speed view from?,video6716,163542,9 4963,6716,highway,what does the red animated care drive down while staying in the same lane the entire time?,video6716,163543,9 4964,6716,person,who is racing through traffic in a video game?,video6716,163544,9 4965,6716,highway,what does a car continue down?,video6716,163545,9 4966,6716,car,what do a new car trail?,video6716,163546,9 4967,6716,color,what slowing down in traffic?,video6716,163547,9 4968,6716,someone,what is playing grand theft auto five?,video6716,163548,9 4969,6716,traffic,what do red color car slow down in?,video6716,163549,9 4970,6716,overpas,what does a car drive underneath?,video6716,163550,9 4971,6716,car,what trail the car?,video6716,163551,9 4972,6716,car,what continues down a highway?,video6716,163552,9 4973,6716,road,what is a red vw bud being driven down?,video6716,163553,9 4974,6716,car,what is person driving under the bridge on a video game?,video6716,163554,9 4975,6716,car,what speeds down the road in a video game?,video6716,163555,9 4976,6716,someone,who plays a car racing game?,video6716,163556,9 4977,6716,road,what is a red car being driven along?,video6716,163557,9 4978,6716,car,what is being driven along the road?,video6716,163558,9 4979,6716,race,what is a person doing?,video6716,163559,9 4980,6716,move,what is a red car doing?,video6716,163560,9 4981,6716,play,what is someone doing?,video6716,163561,9 4982,6716,play,what is player doing?,video6716,163562,9 4983,6716,move,what is a red color car doing?,video6716,163563,9 4984,6716,drive,what is a red car doing?,video6716,163564,9 4985,6716,stay,what is the red animated care drives down the highway while doing?,video6716,163565,9 4986,6716,drive,what is person doing?,video6716,163566,9 4987,6717,smoke,what is coming from green liquid?,video6717,163567,14 4988,6717,bubble,what came from a green color mineral?,video6717,163568,14 4989,6717,liquid,what is some white smoke coming from?,video6717,163569,14 4990,6717,kryptonite,who does someone talk about?,video6717,163570,14 4991,6717,kryptonite,what did a green color mineral call?,video6717,163571,14 4992,6717,child,who does a woman talk about kryptonite and superman with?,video6717,163572,14 4993,6717,product,what get bubbling?,video6717,163573,14 4994,6717,someone,who talks about kryptonite?,video6717,163574,14 4995,6717,water,what is person recording the green products in?,video6717,163575,14 4996,6717,water,what did the woman put some product in?,video6717,163576,14 4997,6717,water,what boils out white smoke in a container?,video6717,163577,14 4998,6717,pot,what does green water boil in while someone talks about kryptonite?,video6717,163578,14 4999,6717,fog,what rolls off a bubbly green liquid in a container?,video6717,163579,14 5000,6717,water,what boils in a pot while someone talks about kryptonite?,video6717,163580,14 5001,6717,ice,what is dropped into a bucket of water to make fog while a woman talks about kryptonite and superman with a child?,video6717,163581,14 5002,6717,animation,what short scene from the hobby kids tv showing?,video6717,163582,14 5003,6717,person,who is recording the green products in the water?,video6717,163583,14 5004,6717,woman,who put some product in the water?,video6717,163584,14 5005,6717,kryptonite,who did a green color mineral call is boiling?,video6717,163585,14 5006,6717,woman,who talks about kryptonite and superman with a child?,video6717,163586,14 5007,6717,water,what is bubbling in a round white bucket?,video6717,163587,14 5008,6717,water,what is person putting into the white dish?,video6717,163588,14 5009,6717,experiment,what are the students engaged in in the science lab?,video6717,163589,14 5010,6717,product,what did the woman put in the water?,video6717,163590,14 5011,6717,person,who is putting some water into the white dish?,video6717,163591,14 5012,6717,pmy,what is a bowl of green liquid with white smoke doing?,video6717,163592,14 5013,6717,discus,what is a lady doing?,video6717,163593,14 5014,6717,talk,what is a lady doing?,video6717,163594,14 5015,6717,boil,what is a green colour mineral called kryptonite doing?,video6717,163595,14 5016,6717,show,what is short scene from the hobby kids tv doing?,video6717,163596,14 5017,6717,put,what is person doing?,video6717,163597,14 5018,6717,record,what is person doing?,video6717,163598,14 5019,6718,guitar,what is a man playing on stage?,video6718,163599,15 5020,6718,doorway,what does a minecraft character stand in while music plays?,video6718,163600,15 5021,6718,minecraft,who stands by an entryway?,video6718,163601,15 5022,6718,table,what are two mine craft characters looking at?,video6718,163602,15 5023,6718,music,what done with minecraft characters?,video6718,163603,15 5024,6718,stage,when is a man playing guitar?,video6718,163604,15 5025,6718,man,who is playing guitar on stage?,video6718,163605,15 5026,6718,look,what are two mine craft characters doing?,video6718,163606,15 5027,6718,table,what does a character in minecraft sit at?,video6718,163607,15 5028,6718,minecraft,who stands in a doorway while music plays?,video6718,163608,15 5029,6718,minecraft,what did a sad music video set in?,video6718,163609,15 5030,6718,minecraft,what is shown while romantic music plays?,video6718,163610,15 5031,6718,music,what plays?,video6718,163611,15 5032,6718,entryway,what does minecraft character stand by?,video6718,163612,15 5033,6718,animation,what shows a video game character?,video6718,163613,15 5034,6718,minecraft,who do a music video do with?,video6718,163614,15 5035,6718,video,what does an animation show character?,video6718,163615,15 5036,6718,music,what do a minecraft?,video6718,163616,15 5037,6718,minecraft,what is a person playing?,video6718,163617,15 5038,6718,man,who is singing?,video6718,163618,15 5039,6718,song,what involves minecraft?,video6718,163619,15 5040,6718,play,what is a person doing?,video6718,163620,15 5041,6718,use,what is a music video doing?,video6718,163621,15 5042,6718,person,who is playing minecraft?,video6718,163622,15 5043,6718,play,what is a man doing?,video6718,163623,15 5044,6719,lady,who is a man kissing?,video6719,163624,7 5045,6719,couple,what walks together down a stairs?,video6719,163625,7 5046,6719,home,what are a man and his wife walking down the stairs in?,video6719,163626,7 5047,6719,stair,what are a man and his wife walking down in their home?,video6719,163627,7 5048,6719,stair,what does a young couple walk together down?,video6719,163628,7 5049,6719,woman,who does a man walk with down a flight of stairs?,video6719,163629,7 5050,6719,staircase,what do a man in a uniform and a woman walk down?,video6719,163630,7 5051,6719,man,who does a young indian couple waslks down a staircase and the woman kisses?,video6719,163631,7 5052,6719,stair,what guy in police officer uniform walking down with his wife?,video6719,163632,7 5053,6719,kis,what does a man in military service uniform receive?,video6719,163633,7 5054,6719,man,who walks with a woman down a flight of stairs?,video6719,163634,7 5055,6719,couple,what embraces then walks down a flight of stairs and kisses?,video6719,163635,7 5056,6719,woman,who a man walking down a staircase and kissing at the bottom?,video6719,163636,7 5057,6719,wife,who guy in police officer uniform walking down the stairs with?,video6719,163637,7 5058,6719,screen,what is a tamil movie scene playing in?,video6719,163638,7 5059,6719,home,where are a man and his wife walking down the stairs?,video6719,163639,7 5060,6719,man,who is kissing a lady?,video6719,163640,7 5061,6719,plant,what are a man and a woman kissing near?,video6719,163641,7 5062,6719,man,who is talking?,video6719,163642,7 5063,6719,walk,what is guy in police officer uniform doing?,video6719,163643,7 5064,6719,walk,what is a man an a woman doing?,video6719,163644,7 5065,6719,talk,what is a man and a woman both walk down the stairs together doing?,video6719,163645,7 5066,6719,kis,what is a young couple walks together down a stairs and they begin doing?,video6719,163646,7 5067,6719,stair,what begin kissing?,video6719,163647,7 5068,6719,walk,what are a woman and a man doing?,video6719,163648,7 5069,6719,kis,what are a man and a woman doing?,video6719,163649,7 5070,6719,walk,what are a man in a brown shirt and a woman doing?,video6719,163650,7 5071,6719,talk,what is a man doing?,video6719,163651,7 5072,6719,kis,what are they doing?,video6719,163652,7 5073,6719,walk,what are a man and his wife doing?,video6719,163653,7 5074,6719,kis,what is there is a police man doing?,video6719,163654,7 5075,6719,kis,what are a man in military dress and a woman in a white and dotted dress doing?,video6719,163655,7 5076,6719,play,what is a tamil movie scene doing?,video6719,163656,7 5077,6720,demonstrate,what is a woman doing?,video6720,163657,16 5078,6720,explain,what is a person doing?,video6720,163658,16 5079,6720,cook,what is a person doing?,video6720,163659,16 5080,6720,show,what is a man doing?,video6720,163660,16 5081,6720,stir,what is a man doing?,video6720,163661,16 5082,6720,mix,what is a man doing?,video6720,163662,16 5083,6720,cook,what is a man doing?,video6720,163663,16 5084,6720,demonstrate,what is a guy doing?,video6720,163664,16 5085,6720,demonstrate,what is a chef doing?,video6720,163665,16 5086,6720,prepare,what is a man doing?,video6720,163666,16 5087,6720,woman,who is demonstrating how to cook?,video6720,163667,16 5088,6720,man,who is making mashed potatoes?,video6720,163668,16 5089,6720,something,what is a person explaining?,video6720,163669,16 5090,6720,man,who makes food?,video6720,163670,16 5091,6720,recipe,what is a chef demonstrating?,video6720,163671,16 5092,6720,bowl,what is a man stirring?,video6720,163672,16 5093,6720,person,who is explaining something?,video6720,163673,16 5094,6720,baking,what is a guy demonstrating?,video6720,163674,16 5095,6720,person,who is cooking something?,video6720,163675,16 5096,6720,food,what does a man make?,video6720,163676,16 5097,6720,chef,who is demonstrating a new recipe?,video6720,163677,16 5098,6720,flmy,what is a man mixing cream into?,video6720,163678,16 5099,6720,cream,what is a man mixing into flour?,video6720,163679,16 5100,6720,fraisch,who is a man adding?,video6720,163680,16 5101,6720,man,who is stirring a bowl?,video6720,163681,16 5102,6720,something,what is a person cooking?,video6720,163682,16 5103,6720,guy,who is demonstrating a baking recipe?,video6720,163683,16 5104,6720,recipe,what is a man preparing with creme fraiche?,video6720,163684,16 5105,6720,fraiche,who is a man preparing a recipe with?,video6720,163685,16 5106,6720,man,who is preparing a recipe with creme fraiche?,video6720,163686,16 5107,6720,man,who is adding creme fraisch?,video6720,163687,16 5108,6720,man,who is mixing cream into flour?,video6720,163688,16 5109,6720,man,who is sharing tips?,video6720,163689,16 5110,6720,food,what does a man in the kitchen prepare?,video6720,163690,16 5111,6721,man,who is singing?,video6721,163691,7 5112,6721,watching,who gets involved?,video6721,163692,7 5113,6721,watching,who gets enjoyed?,video6721,163693,7 5114,6721,hallway,what is a girl walking down?,video6721,163694,7 5115,6721,mike,what is a man seen with?,video6721,163695,7 5116,6721,movie,what boy singing and girl listening sitting washing hands in basin displaying on screen?,video6721,163696,7 5117,6721,entertainer,who sings a song in a concert on a wildly lit stage?,video6721,163697,7 5118,6721,screen,what do a movie scene a person in black color dress singing a song and girl washing hand in basin displaying on?,video6721,163698,7 5119,6721,basin,what do a movie scene a person in black color dress singing a song and girl washing hand in displaying on screen?,video6721,163699,7 5120,6721,guy,who is singing on stage as a girl in white watches him and smiles?,video6721,163700,7 5121,6721,singer,who is serenading a woman in the audience at his concert?,video6721,163701,7 5122,6721,stage,when is a guy singing as a girl in white watches him and smiles?,video6721,163702,7 5123,6721,man,who is singing to a woman in white?,video6721,163703,7 5124,6721,song,what does an indian entertainer sing in a concert on a wildly lit stage?,video6721,163704,7 5125,6721,man,who is singing a song in the film?,video6721,163705,7 5126,6721,hall,what is a woman in a red dress walking down?,video6721,163706,7 5127,6721,girl,who is walking down the hallway?,video6721,163707,7 5128,6721,guy,who does a girl in white watch?,video6721,163708,7 5129,6721,man,who is seen with a mike?,video6721,163709,7 5130,6721,audience,what are watching in a movie theater?,video6721,163710,7 5131,6721,concert,what is a male singer serenading a woman in the audience at?,video6721,163711,7 5132,6721,song,what is a man singing in the film?,video6721,163712,7 5133,6721,film,what is a man singing a song in?,video6721,163713,7 5134,6721,hand,what do a movie scene a person in black color dress singing a song and girl washing in basin displaying on screen?,video6721,163714,7 5135,6721,sit,what is a man sings to a woman doing?,video6721,163715,7 5136,6721,walk,what is a woman in a red dress doing?,video6721,163716,7 5137,6721,listen,what is a movie scene boy singing and girl doing?,video6721,163717,7 5138,6721,serenade,what is a male singer doing?,video6721,163718,7 5139,6721,lead,what is man in black shirt doing?,video6721,163719,7 5140,6721,revolve,what is a slightly uncanny music video doing?,video6721,163720,7 5141,6721,watch,what is the lovers sing and the doing?,video6721,163721,7 5142,6721,watch,what are a man is seen with a mike and group of audience doing?,video6721,163722,7 5143,6722,racecar,who jumps up on the racetrack?,video6722,163723,3 5144,6722,bicycle,what is a racing car bumped into the wall in a race and a man showing?,video6722,163724,3 5145,6722,vehicle,what is a person driving on the track?,video6722,163725,3 5146,6722,shake,what is there is the image of bill cosby doing?,video6722,163726,3 5147,6722,drive,what are some guys doing?,video6722,163727,3 5148,6722,king,what is bill cosby on the larry doing?,video6722,163728,3 5149,6722,show,what is a racing car bumped into the wall in a race and a man doing?,video6722,163729,3 5150,6722,amaze,what is a montage of doing?,video6722,163730,3 5151,6722,bike,what is a mash video of cars doing?,video6722,163731,3 5152,6722,racecar,who flies off the track and lands safely?,video6722,163732,3 5153,6722,racetrack,what does a racecar jump up on?,video6722,163733,3 5154,6722,man,who does a flip on a bicycle?,video6722,163734,3 5155,6722,bicycle,what does a man do a flip on?,video6722,163735,3 5156,6722,guy,who does a trick on a bike?,video6722,163736,3 5157,6722,person,who is driving a vehicle on the track?,video6722,163737,3 5158,6722,drive,what is a person doing?,video6722,163738,3 5159,6722,car,what are some guys driving very fastly?,video6722,163739,3 5160,6722,track,what is a person driving a vehicle on?,video6722,163740,3 5161,6723,advertisement,what plays offering information about the great rivers of europe?,video6723,163741,11 5162,6723,phone,what number to get more information on the great rivers of europe?,video6723,163742,11 5163,6723,europe,what has classy music?,video6723,163743,11 5164,6723,music,what does europe have?,video6723,163744,11 5165,6723,tmy,what does a company encourage customers to take up their offers of?,video6723,163745,11 5166,6723,number,what is displayed in an advertisement for the great rivers of europe?,video6723,163746,11 5167,6723,person,who is showing some information on the postcard?,video6723,163747,11 5168,6723,information,what phone number to get on the great rivers of europe?,video6723,163748,11 5169,6723,offer,what is an advertisement plays doing?,video6723,163749,11 5170,6723,charm,what is of doing?,video6723,163750,11 5171,6723,talk,what is there is a man doing?,video6723,163751,11 5172,6723,company,what encourages customers to take up their offers of a tour?,video6723,163752,11 5173,6723,show,what is person doing?,video6723,163753,11 5174,6724,cartoon,what show for childrens?,video6724,163754,8 5175,6724,building,what does a cartoon clip show one character trying to sneak into?,video6724,163755,8 5176,6724,minecraft,who are breaking into a building?,video6724,163756,8 5177,6724,building,what are minecraft like characters breaking into?,video6724,163757,8 5178,6724,cartoon,what shows one character trying to sneak into a building?,video6724,163758,8 5179,6724,try,what is a cartoon clip shows one character doing?,video6724,163759,8 5180,6724,minecraft,who are fighting?,video6724,163760,8 5181,6724,video,what is someone showing?,video6724,163761,8 5182,6724,video,what is a man playing?,video6724,163762,8 5183,6724,demonstration,what do a minecraft?,video6724,163763,8 5184,6724,someone,who is showing video graphics game?,video6724,163764,8 5185,6724,man,who is playing a video game?,video6724,163765,8 5186,6724,crawl,what is video game character doing?,video6724,163766,8 5187,6724,show,what is someone doing?,video6724,163767,8 5188,6724,break,what are minecraft like characters doing?,video6724,163768,8 5189,6724,fight,what are minecraft characters doing?,video6724,163769,8 5190,6724,perform,what is different blocky video game characters are shown doing?,video6724,163770,8 5191,6724,play,what is a man doing?,video6724,163771,8 5192,6725,pet,what are peoples caring about?,video6725,163772,13 5193,6725,store,what are people petting dogs in?,video6725,163773,13 5194,6725,dog,what do a group of children play with?,video6725,163774,13 5195,6725,child,who watches a dog in a cage?,video6725,163775,13 5196,6725,woman,who narrating a video of people meeting puppies?,video6725,163776,13 5197,6725,narrate,what is a woman doing?,video6725,163777,13 5198,6725,look,what are some girls doing?,video6725,163778,13 5199,6725,look,what is several people doing?,video6725,163779,13 5200,6725,care,what are peoples doing?,video6725,163780,13 5201,6725,interact,what is people doing?,video6725,163781,13 5202,6725,look,what is kids doing?,video6725,163782,13 5203,6725,watch,what are girls doing?,video6725,163783,13 5204,6725,look,what are girls doing?,video6725,163784,13 5205,6725,pet,what are people doing?,video6725,163785,13 5206,6726,highway,what does a yellow sports car rev its engine in?,video6726,163786,9 5207,6726,car,what is driving around a city street?,video6726,163787,9 5208,6726,road,what does the cameraman follow in a white car?,video6726,163788,9 5209,6726,car,what s engine on fire in dubai?,video6726,163789,9 5210,6726,road,what is a yellow car moving in along with other vehicles?,video6726,163790,9 5211,6726,way,what is a yellow color car with name plate l dubai 1515 running on?,video6726,163791,9 5212,6726,car,what is moving in road along with other vehicles?,video6726,163792,9 5213,6726,cameraman,who follows road in a white car?,video6726,163793,9 5214,6726,speed,when are the vehicles going through on the highway?,video6726,163794,9 5215,6726,street,what is a camera filming the back of some cars on?,video6726,163795,9 5216,6726,engine,what does a yellow car s on fire in dubai?,video6726,163796,9 5217,6726,attention,what does a man in a white car try to get?,video6726,163797,9 5218,6726,car,what starts to follow it?,video6726,163798,9 5219,6726,fire,what is coming out of car?,video6726,163799,9 5220,6726,road,what is a yellow car with a dubai license plate moving slowly down while the cameraman follows it in a white car?,video6726,163800,9 5221,6726,engine,what does a yellow sports car rev in the highway?,video6726,163801,9 5222,6726,car,what is fire coming out of?,video6726,163802,9 5223,6726,camera,what is filming the back of some cars on the street?,video6726,163803,9 5224,6726,highway,what are the vehicles going through on very speed on?,video6726,163804,9 5225,6726,car,what numbered 1515 with yellow color passes?,video6726,163805,9 5226,6726,move,what is a yellow car doing?,video6726,163806,9 5227,6726,move,what is a yellow car with a dubai license plate doing?,video6726,163807,9 5228,6726,drive,what is a car with flames doing?,video6726,163808,9 5229,6726,drive,what are cars doing?,video6726,163809,9 5230,6726,drive,what is there is a yellow lamborgini doing?,video6726,163810,9 5231,6726,move,what is an yellow an white car moving and bus doing?,video6726,163811,9 5232,6726,move,what is a yellow color sports car doing?,video6726,163812,9 5233,6726,film,what is a camera doing?,video6726,163813,9 5234,6726,move,what is a car doing?,video6726,163814,9 5235,6726,person,who revs up a supercar outside on a track?,video6726,163815,9 5236,6726,lamborghini,who do several people honk their horns at with a yellow car s engine on fire in dubai?,video6726,163816,9 5237,6727,studio,what did a man interviewing rick gayle about?,video6727,163817,16 5238,6727,two,how many men are talking?,video6727,163818,16 5239,6727,man,who is being interviewed about his photography studio?,video6727,163819,16 5240,6727,man,who is talking to another man in a studio?,video6727,163820,16 5241,6727,gayle,what is interviewed in his studio?,video6727,163821,16 5242,6727,man,who conducts an interview?,video6727,163822,16 5243,6727,two,how many men are having a conversation?,video6727,163823,16 5244,6727,studio,what does two men discuss a man s?,video6727,163824,16 5245,6727,two,how many men are sitting on stools?,video6727,163825,16 5246,6727,work,what is two men discuss a man s doing?,video6727,163826,16 5247,6727,sit,what are two men doing?,video6727,163827,16 5248,6727,man,who gives a presentation?,video6727,163828,16 5249,6727,talk,what is a man doing?,video6727,163829,16 5250,6727,talk,what is interview between two men doing?,video6727,163830,16 5251,6727,interview,what is a man doing?,video6727,163831,16 5252,6727,studio,what is rick gayle interviewed in?,video6727,163832,16 5253,6727,conversation,what are two men having?,video6727,163833,16 5254,6727,presentation,what does a man give?,video6727,163834,16 5255,6727,interview,what does a man conduct?,video6727,163835,16 5256,6728,man,who are blackhead extractions done on?,video6728,163836,12 5257,6728,nose,what does a man is allowing a doctor to push fluid out of lump on?,video6728,163837,12 5258,6728,man,who is sitting?,video6728,163838,12 5259,6728,someone,who is squeezing a nose?,video6728,163839,12 5260,6728,taking,what blackheads on the nose?,video6728,163840,12 5261,6728,blackhead,what are done on a man?,video6728,163841,12 5262,6728,man,who is getting a facial?,video6728,163842,12 5263,6728,nose,what does some one taking blackheads on?,video6728,163843,12 5264,6728,someone,what does nose s is removing pustules from a man?,video6728,163844,12 5265,6728,squeeze,what is someone doing?,video6728,163845,12 5266,6728,treat,what is a person doing?,video6728,163846,12 5267,6728,sit,what is a man doing?,video6728,163847,12 5268,6728,work,what is a clip of a woman doing?,video6728,163848,12 5269,6728,show,what is video doing?,video6728,163849,12 5270,6728,doctor,who checks the skin around a mans nose?,video6728,163850,12 5271,6728,woman,who performs an operation on someone s nose?,video6728,163851,12 5272,6728,man,who does nose s someone is removing pustules from?,video6728,163852,12 5273,6729,man,who is playing pokemon?,video6729,163853,2 5274,6729,two,how many people are narrating?,video6729,163854,2 5275,6729,video,what is fun to play?,video6729,163855,2 5276,6729,pokemon,what is a man playing?,video6729,163856,2 5277,6729,pokemon,what is a person playing?,video6729,163857,2 5278,6729,man,who plays a famous video game?,video6729,163858,2 5279,6729,pokemon,what is someone playing while two people are narrating?,video6729,163859,2 5280,6729,man,who is talking while playing a video game?,video6729,163860,2 5281,6729,someone,what is playing pokemon while two people are narrating?,video6729,163861,2 5282,6729,video,what are a couple of young men playing?,video6729,163862,2 5283,6729,two,how many people discuss a game that is being played?,video6729,163863,2 5284,6729,man,who is commentating while playing a pokemon game?,video6729,163864,2 5285,6729,two,how many gamers play split screen and talk strategy?,video6729,163865,2 5286,6729,man,who is talking while two screens of video games are being shown?,video6729,163866,2 5287,6729,video,what demo with two guys having a conversation?,video6729,163867,2 5288,6729,fun,what is the video game?,video6729,163868,2 5289,6729,play,what are a couple of young men doing?,video6729,163869,2 5290,6729,commentate,what is a man doing?,video6729,163870,2 5291,6729,talk,what is a man doing?,video6729,163871,2 5292,6729,play,what is a person doing?,video6729,163872,2 5293,6729,play,what is someone doing?,video6729,163873,2 5294,6730,track,what do men compete in a race on?,video6730,163874,3 5295,6730,race,what do men compete in on a track?,video6730,163875,3 5296,6730,race,what are a group of people racing in?,video6730,163876,3 5297,6730,race,what are people running in?,video6730,163877,3 5298,6730,competition,what are men running in?,video6730,163878,3 5299,6730,track,what are a group of racers running around?,video6730,163879,3 5300,6730,race,what are men running on a track?,video6730,163880,3 5301,6730,athlete,who runs down a track?,video6730,163881,3 5302,6730,man,who passes everyone on the race?,video6730,163882,3 5303,6730,race,what are some guy s running in?,video6730,163883,3 5304,6730,race,what does man pass everyone on?,video6730,163884,3 5305,6730,everyone,what does man pass on the race?,video6730,163885,3 5306,6730,track,what does an athlete run down?,video6730,163886,3 5307,6730,track,what are men running a race on?,video6730,163887,3 5308,6730,track,what are many men running on?,video6730,163888,3 5309,6730,race,what are a group of people doing?,video6730,163889,3 5310,6731,play,what is prson doing?,video6731,163890,3 5311,6731,play,what is a animated man doing?,video6731,163891,3 5312,6731,watch,what are a lot of people doing?,video6731,163892,3 5313,6731,comment,what is a man doing?,video6731,163893,3 5314,6731,talk,what is a man doing?,video6731,163894,3 5315,6731,play,what is a person doing?,video6731,163895,3 5316,6731,play,what is an animated man doing?,video6731,163896,3 5317,6731,play,what is man doing?,video6731,163897,3 5318,6731,play,what is person doing?,video6731,163898,3 5319,6731,play,what is someone doing?,video6731,163899,3 5320,6731,someone,what is playing game?,video6731,163900,3 5321,6731,golf,what is a man playing?,video6731,163901,3 5322,6731,someone,what is playing a video game?,video6731,163902,3 5323,6731,man,who is playing golf?,video6731,163903,3 5324,6731,man,who is playing a golf game?,video6731,163904,3 5325,6731,video,what is someone playing?,video6731,163905,3 5326,6731,game,what is someone playing golf in?,video6731,163906,3 5327,6731,golf,what is someone playing in video game?,video6731,163907,3 5328,6731,golf,what are a lot of people watching?,video6731,163908,3 5329,6731,golf,what is an animated man playing?,video6731,163909,3 5330,6731,person,who is playing a golf video game?,video6731,163910,3 5331,6731,man,who narrates gameplay on a golf game?,video6731,163911,3 5332,6731,london,what does a white boat on the thames?,video6731,163912,3 5333,6731,golf,what does a person hit onto the green in a video game?,video6731,163913,3 5334,6731,person,who hits a golf ball onto the green in a video game?,video6731,163914,3 5335,6731,golf,what is person playing?,video6731,163915,3 5336,6731,someone,what is playing golf in video game?,video6731,163916,3 5337,6732,man,who does a cartoon character point gun to?,video6732,163917,8 5338,6732,minecraft,who is moving around?,video6732,163918,8 5339,6732,alley,what does a man wlaks?,video6732,163919,8 5340,6732,one,what does a cartoon character stick up?,video6732,163920,8 5341,6732,letter,what is the ninja stealing?,video6732,163921,8 5342,6732,minecraft,who do a play through with?,video6732,163922,8 5343,6732,cartoon,what is a toy robot on?,video6732,163923,8 5344,6732,robot,what is on cartoon?,video6732,163924,8 5345,6732,minecraft,who mugging another?,video6732,163925,8 5346,6732,man,who wlaks down an alley?,video6732,163926,8 5347,6732,character,who sticks up another one?,video6732,163927,8 5348,6732,ninja,who is stealing a super letter?,video6732,163928,8 5349,6732,gun,what does a cartoon character point to another man?,video6732,163929,8 5350,6732,gun,what does a block person point at another block person?,video6732,163930,8 5351,6732,character,who points gun to another man?,video6732,163931,8 5352,6732,cartoon,what does a boy point a gun to rob a woman in?,video6732,163932,8 5353,6732,person,who points a gun at another block person?,video6732,163933,8 5354,6732,block,what do autistic motions at each other?,video6732,163934,8 5355,6732,minecraft,who robs someone in a city alley?,video6732,163935,8 5356,6732,cartoon,who robs another cartoon man at gun point in an alley?,video6732,163936,8 5357,6732,cartoon,who does a cartoon man rob at gun point in an alley?,video6732,163937,8 5358,6732,steal,what is the ninja doing?,video6732,163938,8 5359,6732,play,what is a video game doing?,video6732,163939,8 5360,6732,mug,what is a minecraft character doing?,video6732,163940,8 5361,6732,move,what is a minecraft character doing?,video6732,163941,8 5362,6732,boy,who points a gun to rob a woman in a cartoon?,video6732,163942,8 5363,6732,tell,what is a man doing?,video6732,163943,8 5364,6732,point,what is a life-sized cartoon character doing?,video6732,163944,8 5365,6733,woman,who is explaining about the product room essentials box file?,video6733,163945,13 5366,6733,caparison,what do a womn talking about with objects?,video6733,163946,13 5367,6733,person,who is showing product on the screen?,video6733,163947,13 5368,6733,plastic,what does a woman use to make a makeshift hamster cage?,video6733,163948,13 5369,6733,product,what is a person showing on the screen?,video6733,163949,13 5370,6733,screen,what is a person showing product on?,video6733,163950,13 5371,6733,woman,who could easily leave the cage?,video6733,163951,13 5372,6733,cage,what could a woman easily leave?,video6733,163952,13 5373,6733,woman,who speaks?,video6733,163953,13 5374,6733,side,what are pet cages and travel containers compared side by while a woman speaks?,video6733,163954,13 5375,6733,side,what are pet cages and travel containers compared by side while a woman speaks?,video6733,163955,13 5376,6733,woman,who narrates a series of images which describe how to make a critter cage?,video6733,163956,13 5377,6733,show,what is a person doing?,video6733,163957,13 5378,6733,describe,what is a woman s voice doing?,video6733,163958,13 5379,6733,describe,what is some one doing?,video6733,163959,13 5380,6733,talk,what is a womn doing?,video6733,163960,13 5381,6733,explain,what is the woman doing?,video6733,163961,13 5382,6733,use,what is doing?,video6733,163962,13 5383,6733,speak,what is a lady doing?,video6733,163963,13 5384,6733,sit,what is hamster change doing?,video6733,163964,13 5385,6733,talk,what is there is a woman doing?,video6733,163965,13 5386,6733,introduce,what is there is a woman doing?,video6733,163966,13 5387,6733,woman,who describes how to use plastic storage containers as critter cages for small pets?,video6733,163967,13 5388,6733,hamster,what change sitting side by side with a plastic bin?,video6733,163968,13 5389,6733,critter,what are compared with plastic buckets of various sizes?,video6733,163969,13 5390,6733,side,what do hamster change sitting by side with a plastic bin?,video6733,163970,13 5391,6733,woman,who uses plastic bins to make a makeshift hamster cage?,video6733,163971,13 5392,6733,side,what do hamster change sitting side by with a plastic bin?,video6733,163972,13 5393,6734,someone,what is playing a professional wrestling game?,video6734,163973,3 5394,6734,someone,what is playing a wrestling video game?,video6734,163974,3 5395,6734,place,what does a wwf wrestling match take?,video6734,163975,3 5396,6734,video,what do professional wrestling match?,video6734,163976,3 5397,6734,someone,what is playing a video game?,video6734,163977,3 5398,6734,activity,what does an announcer describe?,video6734,163978,3 5399,6734,wrestling,what are four men having?,video6734,163979,3 5400,6734,video,what characters wrestle?,video6734,163980,3 5401,6734,game,what is being played?,video6734,163981,3 5402,6734,video,what is played?,video6734,163982,3 5403,6734,wrestling,what match video game?,video6734,163983,3 5404,6734,announcer,who describes the activity?,video6734,163984,3 5405,6734,wrestle,what is a man doing?,video6734,163985,3 5406,6734,play,what is a person doing?,video6734,163986,3 5407,6734,wrestle,what is a video game of three people doing?,video6734,163987,3 5408,6734,play,what is gameplay footage of someone doing?,video6734,163988,3 5409,6734,play,what is someone doing?,video6734,163989,3 5410,6734,wrestle,what are three video game characters doing?,video6734,163990,3 5411,6734,man,who is wrestling with 2 other men in a ring while an announcer describes the activity?,video6734,163991,3 5412,6734,ring,what is a man wrestling with 2 other men in while an announcer describes the activity?,video6734,163992,3 5413,6734,footage,what wwe wrestling video game in game?,video6734,163993,3 5414,6734,video,what do footage from a wwe wrestling in game?,video6734,163994,3 5415,6734,game,what do footage from a wwe wrestling video game in?,video6734,163995,3 5416,6734,four,how many men are having a wrestling match?,video6734,163996,3 5417,6734,wrestle,what is doing?,video6734,163997,3 5418,6735,man,who talks on the news with no sound?,video6735,163998,15 5419,6735,television,what is sitting in front of a gray brick wall?,video6735,163999,15 5420,6735,march,what do twp people on a talk show from?,video6735,164000,15 5421,6735,television,what show on a tv?,video6735,164001,15 5422,6735,television,what is shown with various shows changing on it?,video6735,164002,15 5423,6735,someone,who is watching tv?,video6735,164003,15 5424,6735,talk,what is doing?,video6735,164004,15 5425,6735,sit,what is a television doing?,video6735,164005,15 5426,6735,change,what is a television is shown with various shows doing?,video6735,164006,15 5427,6735,play,what is a shot of someone s tv doing?,video6735,164007,15 5428,6735,discus,what is a man on comedy central doing?,video6735,164008,15 5429,6735,watch,what is someone doing?,video6735,164009,15 5430,6735,interview,what show running in tv?,video6735,164010,15 5431,6735,show,what is someone watching on tv?,video6735,164011,15 5432,6735,show,what does a show host then show clips of?,video6735,164012,15 5433,6735,sound,what does a man talk on the news with?,video6735,164013,15 5434,6735,news,what does a man talk on with no sound?,video6735,164014,15 5435,6735,show,who then shows clips of another show?,video6735,164015,15 5436,6735,report,what is being shown on tv?,video6735,164016,15 5437,6735,someone,who is watching show on tv?,video6735,164017,15 5438,6735,man,who does a show host talk to?,video6735,164018,15 5439,6735,show,who talks to a man?,video6735,164019,15 5440,6736,chevy,what does a man talk about?,video6736,164020,9 5441,6736,discus,what is a person doing?,video6736,164021,9 5442,6736,speak,what is a man doing?,video6736,164022,9 5443,6736,show,what is it doing?,video6736,164023,9 5444,6736,review,what is man doing?,video6736,164024,9 5445,6736,discus,what is someone doing?,video6736,164025,9 5446,6736,advertise,what is a man doing?,video6736,164026,9 5447,6736,person,who is discussing a car?,video6736,164027,9 5448,6736,man,who are the features of a vehicle being discussed by?,video6736,164028,9 5449,6736,video,what shows a slideshow of several cars?,video6736,164029,9 5450,6736,car,what is a video showing?,video6736,164030,9 5451,6736,someone,who is discussing various automobiles in spanish?,video6736,164031,9 5452,6736,man,who talks about different car brands?,video6736,164032,9 5453,6736,chevy,what are displayed while a man talks about them?,video6736,164033,9 5454,6736,bmw,what is shown first?,video6736,164034,9 5455,6736,car,what is a person discussing?,video6736,164035,9 5456,6736,video,what is showing some car features?,video6736,164036,9 5457,6736,man,who is advertising cars?,video6736,164037,9 5458,6736,man,who talks about chevy sonic?,video6736,164038,9 5459,6737,play,what is robots doing?,video6737,164039,8 5460,6737,gain,what is instructions for doing?,video6737,164040,8 5461,6737,involve,what is robots play a game doing?,video6737,164041,8 5462,6737,play,what are robots doing?,video6737,164042,8 5463,6737,talk,what is man doing?,video6737,164043,8 5464,6737,bounce,what is blue and red balls doing?,video6737,164044,8 5465,6737,talk,what is a person doing?,video6737,164045,8 5466,6737,catapult,what is a tiny machine doing?,video6737,164046,8 5467,6737,play,what is a robot doing?,video6737,164047,8 5468,6737,drive,what is a robot doing?,video6737,164048,8 5469,6737,throw,what is robots doing?,video6737,164049,8 5470,6737,throw,what is someone doing?,video6737,164050,8 5471,6737,car,what is someone throwing balls at?,video6737,164051,8 5472,6737,game,what is a robot playing?,video6737,164052,8 5473,6737,computer,what generated game?,video6737,164053,8 5474,6737,robot,what is playing a game?,video6737,164054,8 5475,6737,ball,what are robots playing with?,video6737,164055,8 5476,6737,catch,what are robots playing with a ball?,video6737,164056,8 5477,6737,ball,what are robots playing catch with?,video6737,164057,8 5478,6737,animation,what is a robot driving around in?,video6737,164058,8 5479,6737,game,what did testing of computer generate?,video6737,164059,8 5480,6737,someone,who is throwing balls at a car?,video6737,164060,8 5481,6737,robot,what is driving around in an animation?,video6737,164061,8 5482,6737,person,who is talking about a video game?,video6737,164062,8 5483,6737,machine,what is catapulting a ball up in the air?,video6737,164063,8 5484,6737,man,who is giving a tutorial on a game with robots?,video6737,164064,8 5485,6737,person,who shows how to earn extra points during a game?,video6737,164065,8 5486,6737,man,who shows animations to show how robots could play ball games?,video6737,164066,8 5487,6738,music,what is a montage of selfies and selfie takers complimented by?,video6738,164067,1 5488,6738,street,what is a man with cooling glass smiling from?,video6738,164068,1 5489,6738,selfie,what are group of people taking on sunny day?,video6738,164069,1 5490,6738,day,when are group of people taking selfie?,video6738,164070,1 5491,6738,selfie,who is person taking with his friends on a sunny day?,video6738,164071,1 5492,6738,picture,what do a group of friends in casual clothes stand together for?,video6738,164072,1 5493,6738,group,what are taking selfie on sunny day?,video6738,164073,1 5494,6738,photograph,what do men wearing sunglasses and women with hats take?,video6738,164074,1 5495,6738,camera,what do pretty young women pose for?,video6738,164075,1 5496,6738,person,who is taking selfie with his friends on a sunny day?,video6738,164076,1 5497,6738,screen,what does a boys and girls in diferent dresses still images picture shown displaying on?,video6738,164077,1 5498,6738,cool,what is a man with doing?,video6738,164078,1 5499,6738,show,what is doing?,video6738,164079,1 5500,6738,display,what is a boys and girls in diferent dresses still images pictures shown doing?,video6738,164080,1 5501,6738,dance,what are many boys and girls doing?,video6738,164081,1 5502,6738,pose,what is a slideshow of couples and individuals doing?,video6738,164082,1 5503,6738,try,what is a selfie of a large group of people and another of two girls doing?,video6738,164083,1 5504,6738,smile,what are a group of young men in sunglasses doing?,video6738,164084,1 5505,6738,show,what is a slideshow to upbeat music doing?,video6738,164085,1 5506,6738,pose,what is there are some people doing?,video6738,164086,1 5507,6738,wear,what is men doing?,video6738,164087,1 5508,6739,song,what is a group of women performing live?,video6739,164088,0 5509,6739,show,what do five women singing live on while sitting down?,video6739,164089,0 5510,6739,five,how many female vocalists perform live?,video6739,164090,0 5511,6739,song,what are a group of women singing?,video6739,164091,0 5512,6739,song,what are women singing?,video6739,164092,0 5513,6739,show,what are women singing on?,video6739,164093,0 5514,6739,television,what do group singing on access live?,video6739,164094,0 5515,6739,group,what sings on a television show?,video6739,164095,0 5516,6739,dance,what is young girls engaged in doing?,video6739,164096,0 5517,6739,sit,what is woman doing?,video6739,164097,0 5518,6739,sit,what is five women doing?,video6739,164098,0 5519,6739,perform,what is a group of women doing?,video6739,164099,0 5520,6739,five,how many women singing live on a show while sitting down?,video6739,164100,0 5521,6739,five,how many ladies perform a song for a tv show?,video6739,164101,0 5522,6740,murray,who is presenting david letterman with vodka from slovenia?,video6740,164102,6 5523,6740,play,what is bill murray doing?,video6740,164103,6 5524,6740,present,what is bill murray doing?,video6740,164104,6 5525,6740,advertise,what is bill murray doing?,video6740,164105,6 5526,6740,talk,what is bill murrai is on the david letterman show covered in foam doing?,video6740,164106,6 5527,6740,hold,what is a man doing?,video6740,164107,6 5528,6740,show,what is a man doing?,video6740,164108,6 5529,6740,talk,what is a man doing?,video6740,164109,6 5530,6740,murrai,who is on the david letterman show covered in foam holding a bottle of something?,video6740,164110,6 5531,6740,letterman,who is bill murray presenting with vodka from slovenia?,video6740,164111,6 5532,6740,murrai,who is on the david letterman show covered in foam talking to the audience?,video6740,164112,6 5533,6740,man,who is being interviewed?,video6740,164113,6 5534,6740,perfume,what is a man showing?,video6740,164114,6 5535,6740,cream,what is bill murray covered in?,video6740,164115,6 5536,6740,vodka,what is bill murray talking about?,video6740,164116,6 5537,6740,stage,when is a man getting interviewed?,video6740,164117,6 5538,6740,cake,what is bill murray drenched in?,video6740,164118,6 5539,6740,vodka,what does bill murray talk about?,video6740,164119,6 5540,6740,man,who is holding a bottle?,video6740,164120,6 5541,6740,man,who is showing the new perfume?,video6740,164121,6 5542,6740,murray,who is covered in cream?,video6740,164122,6 5543,6740,man,who is getting interviewed on stage?,video6740,164123,6 5544,6740,bottle,what is a man holding?,video6740,164124,6 5545,6740,murray,who is drenched in cake?,video6740,164125,6 5546,6740,murray,who is talking about vodka?,video6740,164126,6 5547,6740,vodka,what is bill murray presenting david letterman with from slovenia?,video6740,164127,6 5548,6740,man,who is talking about the content inside a bottle?,video6740,164128,6 5549,6740,slovenium,what is bill murray presenting david letterman with vodka from?,video6740,164129,6 5550,6740,content,what is a man talking about inside a bottle?,video6740,164130,6 5551,6740,vodka,what did a man in a talk show cover in white goo about to open a bottle of?,video6740,164131,6 5552,6740,bottle,what is a man talking about the content inside?,video6740,164132,6 5553,6740,goo,what did a man in a talk show cover in about to open a bottle of vodka?,video6740,164133,6 5554,6740,letterman,who is bill murry being interviewed by?,video6740,164134,6 5555,6740,murray,who talks about vodka?,video6740,164135,6 5556,6740,murry,who is being interviewed by david letterman?,video6740,164136,6 5557,6741,hillary,what clinton speaking at columbia university?,video6741,164137,15 5558,6741,university,what is a woman talking in?,video6741,164138,15 5559,6741,violence,what do hillary clinton talking about?,video6741,164139,15 5560,6741,talk,what is a person doing?,video6741,164140,15 5561,6741,university,what do hillary clinton speaking at?,video6741,164141,15 5562,6741,spech,who do hilary clinton giving?,video6741,164142,15 5563,6741,podium,what is a person talking on?,video6741,164143,15 5564,6741,hillary,what clinton talking about violence?,video6741,164144,15 5565,6741,speech,what do hilary clinton giving?,video6741,164145,15 5566,6741,speech,what do hillary clinton giving?,video6741,164146,15 5567,6741,hilary,what clinton giving a spech?,video6741,164147,15 5568,6741,hilary,what clinton giving a speech?,video6741,164148,15 5569,6741,boyfriend,who goes off to sing?,video6741,164149,15 5570,6741,boyfriend,who is a girl confronting?,video6741,164150,15 5571,6741,speech,what is a woman giving?,video6741,164151,15 5572,6741,university,what does clinton speak at?,video6741,164152,15 5573,6741,lady,who gives a speech at a podium?,video6741,164153,15 5574,6741,university,what does hillary clinton speak at?,video6741,164154,15 5575,6741,woman,who is giving a speech at columbia university about the death of a young black man and the consequences?,video6741,164155,15 5576,6741,clinton,who is giving a speech at columbia university?,video6741,164156,15 5577,6741,clinton,who is giving a speach to reporters?,video6741,164157,15 5578,6741,speach,who is hillary clinton giving to reporters?,video6741,164158,15 5579,6741,speech,what do hillary clinton at a podium giving?,video6741,164159,15 5580,6741,clinton,who speaks at columbia university?,video6741,164160,15 5581,6741,violence,what do hillary clinton speaking to a group of people about?,video6741,164161,15 5582,6741,hillary,what clinton at a podium giving a speech?,video6741,164162,15 5583,6741,woman,who is talking in columbia university?,video6741,164163,15 5584,6741,hillary,what clinton speaking to a group of people about violence?,video6741,164164,15 5585,6741,person,who is talking on a podium?,video6741,164165,15 5586,6741,clinton,who speaks at a university?,video6741,164166,15 5587,6741,woman,who is giving a speech?,video6741,164167,15 5588,6741,confront,what is a girl doing?,video6741,164168,15 5589,6742,teenage,who is posing for the camera in front of a single color background?,video6742,164169,0 5590,6742,show,what is video doing?,video6742,164170,0 5591,6742,pose,what is a teenage boy doing?,video6742,164171,0 5592,6742,look,what is a man doing?,video6742,164172,0 5593,6742,play,what is a montage of a boy doing?,video6742,164173,0 5594,6742,slideshow,what shows various images?,video6742,164174,0 5595,6742,man,who is looking at something?,video6742,164175,0 5596,6742,something,what is a man looking at?,video6742,164176,0 5597,6742,camera,what is a teenage boy posing for in front of a single color background?,video6742,164177,0 5598,6743,play,what is people doing?,video6743,164178,3 5599,6743,man,who is kicking a ball?,video6743,164179,3 5600,6743,soccer,who kicking ball?,video6743,164180,3 5601,6743,team,what is playing soccer?,video6743,164181,3 5602,6743,ball,what do soccer players kick?,video6743,164182,3 5603,6743,soccer,what is a man talking about?,video6743,164183,3 5604,6743,football,what are some guys playing?,video6743,164184,3 5605,6743,soccer,what are men playing?,video6743,164185,3 5606,6743,soccer,what are people playing?,video6743,164186,3 5607,6743,ball,what is a man kicking?,video6743,164187,3 5608,6743,soccer,what is a team playing?,video6743,164188,3 5609,6743,soccer,what are two teams playing?,video6743,164189,3 5610,6743,football,what are the people playing?,video6743,164190,3 5611,6743,play,what are men doing?,video6743,164191,3 5612,6743,play,what are people doing?,video6743,164192,3 5613,6743,soccer,what do men play?,video6743,164193,3 5614,6743,play,what are some guys doing?,video6743,164194,3 5615,6743,man,who is talking about soccer?,video6743,164195,3 5616,6743,kick,what is soccer players doing?,video6743,164196,3 5617,6743,play,what are the people doing?,video6743,164197,3 5618,6743,play,what are two teams doing?,video6743,164198,3 5619,6743,play,what is two teams doing?,video6743,164199,3 5620,6743,talk,what is a man doing?,video6743,164200,3 5621,6743,play,what is a team doing?,video6743,164201,3 5622,6743,comment,what is doing?,video6743,164202,3 5623,6743,football,what match where guy misses easy goal shots?,video6743,164203,3 5624,6743,kick,what is a man doing?,video6743,164204,3 5625,6743,soccer,who misses a shot on an open goal?,video6743,164205,3 5626,6743,soccer,who kicks the ball across the field?,video6743,164206,3 5627,6743,field,what does a soccer player kick the ball across?,video6743,164207,3 5628,6743,ball,what does a soccer player kick across the field?,video6743,164208,3 5629,6743,goal,what did 2 players miss to put in football game?,video6743,164209,3 5630,6743,football,what did 2 players miss to put a goal in?,video6743,164210,3 5631,6743,two,how many teams are playing soccer?,video6743,164211,3 5632,6744,hindi,what do three men on stage perform in?,video6744,164212,7 5633,6744,person,who is touching a motorcycle?,video6744,164213,7 5634,6744,stage,when are stage performers performing?,video6744,164214,7 5635,6744,man,who is on a gameshow?,video6744,164215,7 5636,6744,stage,who are performing on the stage?,video6744,164216,7 5637,6744,man,who is talking on a tv show?,video6744,164217,7 5638,6744,two,how many people talk in a tv show?,video6744,164218,7 5639,6744,two,how many men talk on a game show?,video6744,164219,7 5640,6744,two,how many men speak on stage in front of an audience?,video6744,164220,7 5641,6744,two,how many young men perform a skit for a crowd?,video6744,164221,7 5642,6744,case,what do contestants on a game show plead?,video6744,164222,7 5643,6744,audience,what are people performing for?,video6744,164223,7 5644,6744,gameshow,what is a man on?,video6744,164224,7 5645,6744,talk,what is two men doing?,video6744,164225,7 5646,6744,perform,what are people doing?,video6744,164226,7 5647,6744,talk,what is men doing?,video6744,164227,7 5648,6744,perform,what are stage performers doing?,video6744,164228,7 5649,6744,touch,what is a person doing?,video6744,164229,7 5650,6744,talk,what is a man doing?,video6744,164230,7 5651,6744,motorcycle,what is a person touching?,video6744,164231,7 5652,6744,play,what is boys doing?,video6744,164232,7 5653,6745,show,what is how to coock meat doing?,video6745,164233,17 5654,6745,meal,what is a person preparing?,video6745,164234,17 5655,6745,food,what is a man preparing?,video6745,164235,17 5656,6745,person,who is cooking?,video6745,164236,17 5657,6745,cook,what is someone doing?,video6745,164237,17 5658,6745,cook,what is man doing?,video6745,164238,17 5659,6745,prepare,what is chef doing?,video6745,164239,17 5660,6745,prepare,what is a chef doing?,video6745,164240,17 5661,6745,cook,what is a person doing?,video6745,164241,17 5662,6745,prepare,what is a man doing?,video6745,164242,17 5663,6745,prepare,what is a cook doing?,video6745,164243,17 5664,6745,meat,what is a chef cooking?,video6745,164244,17 5665,6745,flip,what is a chef doing?,video6745,164245,17 5666,6745,cook,what is a chef doing?,video6745,164246,17 5667,6745,explain,what is a short montage of food preparation leads into a non-english speaking chef doing?,video6745,164247,17 5668,6745,cookin,what is a man?,video6745,164248,17 5669,6745,meat,what is a chef flipping?,video6745,164249,17 5670,6745,food,what is a cook preparing in the kitchen?,video6745,164250,17 5671,6745,cook,who is preparing a gourmet french meal?,video6745,164251,17 5672,6745,someone,who is cooking meat in a pot?,video6745,164252,17 5673,6745,meat,what does a chef stir up in a pan?,video6745,164253,17 5674,6745,meat,what is a chef cooking a piece of in a pot?,video6745,164254,17 5675,6745,man,who is cookin meat?,video6745,164255,17 5676,6745,pot,what is a chef cooking a piece of meat in?,video6745,164256,17 5677,6745,chef,who is cooking a piece of meat in a pot?,video6745,164257,17 5678,6745,chef,who uses tongs to turn over a piece of meat cooking in a pot?,video6745,164258,17 5679,6745,cook,who is preparing food in the kitchen?,video6745,164259,17 5680,6745,kitchen,what is a cook preparing food in?,video6745,164260,17 5681,6745,pot,what is someone cooking meat in?,video6745,164261,17 5682,6745,meat,what is someone cooking in a pot?,video6745,164262,17 5683,6745,man,who is preparing food?,video6745,164263,17 5684,6745,person,who is preparing a meal?,video6745,164264,17 5685,6745,chef,who is cooking meat?,video6745,164265,17 5686,6745,someone,who is adding vegetables?,video6745,164266,17 5687,6745,dish,what is a chef preparing?,video6745,164267,17 5688,6745,chef,who stirs some meat up in a pan?,video6745,164268,17 5689,6745,chef,who is preparing a dish?,video6745,164269,17 5690,6745,chef,who is flipping meat?,video6745,164270,17 5691,6746,use,what is a woman doing?,video6746,164271,9 5692,6746,show,what is video clip doing?,video6746,164272,9 5693,6746,talk,what is woman doing?,video6746,164273,9 5694,6746,explain,what is a woman doing?,video6746,164274,9 5695,6746,show,what is a person doing?,video6746,164275,9 5696,6746,work,what is a woman doing?,video6746,164276,9 5697,6746,talk,what is a woman doing?,video6746,164277,9 5698,6746,review,what does a child buggy?,video6746,164278,9 5699,6746,stroller,who does a woman advertise?,video6746,164279,9 5700,6746,woman,who is working?,video6746,164280,9 5701,6746,vehicle,what is very smooth to navigate?,video6746,164281,9 5702,6746,stroller,who is a woman using?,video6746,164282,9 5703,6746,stroller,who is a person showing?,video6746,164283,9 5704,6746,stroller,who does a woman review?,video6746,164284,9 5705,6746,carriage,what a woman touches?,video6746,164285,9 5706,6746,stroller,who does a person strap up?,video6746,164286,9 5707,6746,child,who buggy review?,video6746,164287,9 5708,6746,person,who is showing a stroller?,video6746,164288,9 5709,6746,woman,who is using a baby stroller?,video6746,164289,9 5710,6746,woman,who reviews a stroller?,video6746,164290,9 5711,6746,person,who straps up a stroller?,video6746,164291,9 5712,6746,woman,who advertises a stroller?,video6746,164292,9 5713,6746,woman,who is explaining to the audiences about the key features of a baby stroller?,video6746,164293,9 5714,6746,woman,who is explaining the features of a napkin?,video6746,164294,9 5715,6746,woman,who is explaining the features of a stroller?,video6746,164295,9 5716,6746,woman,who is doing a review on a stroller?,video6746,164296,9 5717,6746,woman,who touches a baby carriage?,video6746,164297,9 5718,6746,vehicle,what does a beautiful display model of baby s?,video6746,164298,9 5719,6746,stroller,who is a woman explaining the features of?,video6746,164299,9 5720,6746,stroller,who is a woman doing a review on?,video6746,164300,9 5721,6746,napkin,what is a woman explaining the features of?,video6746,164301,9 5722,6746,review,what is a woman doing on a stroller?,video6746,164302,9 5723,6747,game,what is someone playing?,video6747,164303,2 5724,6747,someone,what is playing a game?,video6747,164304,2 5725,6747,game,what does a man narrate?,video6747,164305,2 5726,6747,clipping,what is from a cartoon program?,video6747,164306,2 5727,6747,play,what is two players doing?,video6747,164307,2 5728,6747,game,what plays simultaniously?,video6747,164308,2 5729,6747,play,what is someone doing?,video6747,164309,2 5730,6747,commentate,what is pokemon plays with men doing?,video6747,164310,2 5731,6747,play,what is person doing?,video6747,164311,2 5732,6747,play,what are people doing?,video6747,164312,2 5733,6747,play,what is a person doing?,video6747,164313,2 5734,6747,play,what is a man doing?,video6747,164314,2 5735,6747,compete,what are two people doing?,video6747,164315,2 5736,6747,gameboy,what is a person playing pokemon for?,video6747,164316,2 5737,6747,voice,what is talking while a pokemon video game?,video6747,164317,2 5738,6747,boy,who plays a pokemon video game?,video6747,164318,2 5739,6747,two,how many players discuss why pokemon should never be exploited for evil?,video6747,164319,2 5740,6747,man,who is playing a pokemon game while narrating the text?,video6747,164320,2 5741,6747,two,how many people are competing in a video game?,video6747,164321,2 5742,6747,man,who is commentating while playing a pokemon game?,video6747,164322,2 5743,6747,side,what are people playing video games side by?,video6747,164323,2 5744,6747,commentate,what is a man doing?,video6747,164324,2 5745,6747,pokemon,what is a person playing for gameboy?,video6747,164325,2 5746,6747,talk,what is a male voice doing?,video6747,164326,2 5747,6747,person,who is playing pokemon for gameboy?,video6747,164327,2 5748,6747,man,who narrates a pokemon game?,video6747,164328,2 5749,6747,pokemon,who plays with men commentating?,video6747,164329,2 5750,6747,game,what is a man playing while narrating the text?,video6747,164330,2 5751,6748,woman,who is walking around in a shopping mall?,video6748,164331,11 5752,6748,shop,what is a woman doing?,video6748,164332,11 5753,6748,walk,what is a girl doing?,video6748,164333,11 5754,6748,move,what is a girl doing?,video6748,164334,11 5755,6748,walk,what is a vlog of someone doing?,video6748,164335,11 5756,6748,walk,what is an asian woman doing?,video6748,164336,11 5757,6748,record,what is a woman doing?,video6748,164337,11 5758,6748,talk,what is a woman doing?,video6748,164338,11 5759,6748,drink,what is a woman doing?,video6748,164339,11 5760,6748,store,what is a girl walking around?,video6748,164340,11 5761,6748,woman,who is walking through a store?,video6748,164341,11 5762,6748,woman,who walks in a store?,video6748,164342,11 5763,6748,store,what is a woman talking in?,video6748,164343,11 5764,6748,woman,who is drinking coffee and shopping?,video6748,164344,11 5765,6748,herself,who is a woman recording inside of a store?,video6748,164345,11 5766,6748,store,what is a woman walking through?,video6748,164346,11 5767,6748,store,what does a woman walk in?,video6748,164347,11 5768,6748,experience,what is a woman describing?,video6748,164348,11 5769,6748,girl,who is walking around a store?,video6748,164349,11 5770,6748,woman,who is shopping?,video6748,164350,11 5771,6748,shopping,what is a woman?,video6748,164351,11 5772,6748,woman,who is walking?,video6748,164352,11 5773,6748,woman,who is talking?,video6748,164353,11 5774,6748,woman,who is walking around a department store?,video6748,164354,11 5775,6748,woman,who is talking in a store?,video6748,164355,11 5776,6748,store,what is an asian woman walking around?,video6748,164356,11 5777,6748,girl,who walks around a sales convention?,video6748,164357,11 5778,6748,shopping,what is a woman drinking?,video6748,164358,11 5779,6749,someone,who is applying pink and purple nail polish on the nails?,video6749,164359,10 5780,6749,polish,what is someone smudging with a tissue?,video6749,164360,10 5781,6749,lady,who is applying gradient nail polish?,video6749,164361,10 5782,6749,tissue,what is someone smudging nail polish with?,video6749,164362,10 5783,6749,show,what is woman doing?,video6749,164363,10 5784,6749,show,what is a girl doing?,video6749,164364,10 5785,6749,performance,what does nail polishing to a lady s finger with multicolored nail polishes before?,video6749,164365,10 5786,6749,someone,who is smudging nail polish with a tissue?,video6749,164366,10 5787,6749,woman,who is showing how to nail polish and use different shades?,video6749,164367,10 5788,6749,girl,who is showing how to do nail art with help of nail paint and tissue paper?,video6749,164368,10 5789,6749,show,what is a person doing?,video6749,164369,10 5790,6749,woman,who is giving tips on how to paint nails?,video6749,164370,10 5791,6749,paint,what is a how to video zoomed in on the nails of a woman sponge doing?,video6749,164371,10 5792,6749,lady,who is explaining the procedure?,video6749,164372,10 5793,6749,girl,who sponges?,video6749,164373,10 5794,6749,procedure,what is a lady explaining?,video6749,164374,10 5795,6749,gradient,what is a lady applying?,video6749,164375,10 5796,6750,explain,what is a girl doing?,video6750,164376,11 5797,6750,discus,what is female doing?,video6750,164377,11 5798,6750,tell,what is a woman doing?,video6750,164378,11 5799,6750,talk,what is a woman doing?,video6750,164379,11 5800,6750,talk,what is a girl doing?,video6750,164380,11 5801,6750,speak,what is a girl doing?,video6750,164381,11 5802,6750,woman,who is talking?,video6750,164382,11 5803,6750,something,what is a girl talking about?,video6750,164383,11 5804,6750,camera,what is a girl talking to?,video6750,164384,11 5805,6750,someone,what do a girl speak to?,video6750,164385,11 5806,6750,talk,what is person doing?,video6750,164386,11 5807,6750,girl,who is speaking?,video6750,164387,11 5808,6750,topic,what is a woman telling about?,video6750,164388,11 5809,6750,talk,what is video of a woman doing?,video6750,164389,11 5810,6750,girl,who is talking to the camera?,video6750,164390,11 5811,6750,girl,who is talking about something?,video6750,164391,11 5812,6750,woman,who is telling about a topic?,video6750,164392,11 5813,6750,woman,who talks about how to go to japan?,video6750,164393,11 5814,6750,girl,who is explaining how to save up for japan?,video6750,164394,11 5815,6750,girl,who speak to someone else?,video6750,164395,11 5816,6751,podium,what does president obama stand at giving a speech?,video6751,164396,4 5817,6751,speak,what is obama doing?,video6751,164397,4 5818,6751,podium,what is president barack obama delivering a speech at?,video6751,164398,4 5819,6751,speech,what is president barrack obama wearing gray suite delivering?,video6751,164399,4 5820,6751,president,who barack obama talking standing on the dias?,video6751,164400,4 5821,6751,obama,what did american president barrack giving a speech on stage?,video6751,164401,4 5822,6751,speech,what is president barack obama delivering at a podium?,video6751,164402,4 5823,6751,something,what is american prime minister talking about on stage?,video6751,164403,4 5824,6751,president,who speaks about loving his time as president?,video6751,164404,4 5825,6751,podium,what is obama behind?,video6751,164405,4 5826,6751,obama,who is behind a podium?,video6751,164406,4 5827,6751,minister,who is talking about something on stage?,video6751,164407,4 5828,6751,stage,when is a usa president obama speaking?,video6751,164408,4 5829,6751,stage,when do usa president barack obama speaking calmly?,video6751,164409,4 5830,6751,dia,what do usa president barack obama talking standing on?,video6751,164410,4 5831,6751,president,who barack obama speaking in the stage calmly?,video6751,164411,4 5832,6751,minister,who speking in parliament and audience sitting?,video6751,164412,4 5833,6751,president,who does a speech in front of many people about his work?,video6751,164413,4 5834,6751,president,who is delivering a speech at a podium?,video6751,164414,4 5835,6751,speech,what does president obama stand at a podium giving?,video6751,164415,4 5836,6751,love,what is president obama speaks about doing?,video6751,164416,4 5837,6751,wear,what is us president barrack obama doing?,video6751,164417,4 5838,6751,stage,when is american prime minister talking about something?,video6751,164418,4 5839,6751,deliver,what is president barack obama doing?,video6751,164419,4 5840,6751,talk,what is there is a suit man doing?,video6751,164420,4 5841,6751,talk,what is usa president barack obama doing?,video6751,164421,4 5842,6751,talk,what is american prime minister doing?,video6751,164422,4 5843,6751,speak,what is a usa president obama doing?,video6751,164423,4 5844,6751,president,who stands at a podium giving a speech?,video6751,164424,4 5845,6751,president,who barrack obama giving a speech on stage?,video6751,164425,4 5846,6751,president,who is shown giving a speech in front of green flags?,video6751,164426,4 5847,6751,president,who addressed a large group of congress men and women?,video6751,164427,4 5848,6751,president,who speaks at a podium in a foreign country?,video6751,164428,4 5849,6752,woman,who is putting on a mask?,video6752,164429,18 5850,6752,girl,who is demonstrating a mask?,video6752,164430,18 5851,6752,woman,who is wearing a mask?,video6752,164431,18 5852,6752,demonstrate,what is a girl doing?,video6752,164432,18 5853,6752,mask,what is a woman putting on?,video6752,164433,18 5854,6752,mask,what is a girl demonstrating?,video6752,164434,18 5855,6752,mask,what is a woman wearing?,video6752,164435,18 5856,6752,girl,who is explaining about electornics?,video6752,164436,18 5857,6752,girl,who is wearing a skin treatment mask?,video6752,164437,18 5858,6752,woman,who is wearing an electronically controlled mask?,video6752,164438,18 5859,6752,explain,what is a girl doing?,video6752,164439,18 5860,6752,mask,what is a girl showing some art of?,video6752,164440,18 5861,6752,person,who is putting on a face mask and dancing?,video6752,164441,18 5862,6752,woman,who explains how a cosmetic mask works?,video6752,164442,18 5863,6752,girl,who is showing some art of mask?,video6752,164443,18 5864,6752,advertise,what is a young girl doing?,video6752,164444,18 5865,6752,use,what is a woman doing?,video6752,164445,18 5866,6752,put,what is a woman doing?,video6752,164446,18 5867,6752,put,what is a person doing?,video6752,164447,18 5868,6752,wear,what is a girl doing?,video6752,164448,18 5869,6752,show,what is a girl doing?,video6752,164449,18 5870,6752,skin,what did the use of a facemask to improve?,video6752,164450,18 5871,6752,put,what is woman doing?,video6752,164451,18 5872,6753,hold,what are a ancient stone of two people who doing?,video6753,164452,11 5873,6753,video,what is discussing ancient carvings and statues?,video6753,164453,11 5874,6753,art,what is being shown?,video6753,164454,11 5875,6753,statue,what is explained?,video6753,164455,11 5876,6753,statue,what is presented?,video6753,164456,11 5877,6753,laptop,what is a sculpture shown with something in it that looks like?,video6753,164457,11 5878,6753,sculpture,what depicts a woman and a child of ancient times?,video6753,164458,11 5879,6753,show,what is a short clip doing?,video6753,164459,11 5880,6753,discus,what is a video doing?,video6753,164460,11 5881,6753,compare,what is an old sculpture is shown doing?,video6753,164461,11 5882,6753,person,who made a conspiracy video about a laptop appearing in an ancient relief?,video6753,164462,11 5883,6753,conspiracy,what did a person make about a laptop appearing in an ancient relief?,video6753,164463,11 5884,6753,labtop,who does a ancient stone of two people who are holding what look like?,video6753,164464,11 5885,6753,sculpture,what is shown comparing the object in it to a laptop computer?,video6753,164465,11 5886,6753,sculpture,what seems to show that people from history had something similar to a laptop?,video6753,164466,11 5887,6753,sculpture,what is shown with something in it that looks like a laptop?,video6753,164467,11 5888,6754,man,who lays on the ground after doing good at golf?,video6754,164468,6 5889,6754,man,who is playing a video game of golf?,video6754,164469,6 5890,6754,golfing,what is a person?,video6754,164470,6 5891,6754,man,who hits a golf ball close to the hole?,video6754,164471,6 5892,6754,clip,what shows a video in a golf field where some player doing some exercise?,video6754,164472,6 5893,6754,golfer,who hit the ball a very long distance?,video6754,164473,6 5894,6754,golf,what is a man playing a video game of?,video6754,164474,6 5895,6754,ground,what does a man lay on after doing good at golf?,video6754,164475,6 5896,6754,hole,what does a golf ball almost reach?,video6754,164476,6 5897,6754,golf,what swing?,video6754,164477,6 5898,6754,golf,what is a person playing?,video6754,164478,6 5899,6754,man,who is golfing?,video6754,164479,6 5900,6754,golf,what almost reaches the hole?,video6754,164480,6 5901,6754,match,what do people cheer at?,video6754,164481,6 5902,6754,golf,what is a golf player hitting?,video6754,164482,6 5903,6754,player,who is hitting a golf ball?,video6754,164483,6 5904,6754,golfer,who lies on the grass and flaps his arms?,video6754,164484,6 5905,6754,golfing,what is a man?,video6754,164485,6 5906,6754,man,who is playing golf?,video6754,164486,6 5907,6754,golf,what is a person doing?,video6754,164487,6 5908,6754,hit,what is a golf player doing?,video6754,164488,6 5909,6754,golf,what is a man doing?,video6754,164489,6 5910,6754,play,what is a man doing?,video6754,164490,6 5911,6754,lie,what is a man doing?,video6754,164491,6 5912,6754,amaze,what is doing?,video6754,164492,6 5913,6755,family,what is having coversation?,video6755,164493,0 5914,6755,stage,when is an orchestra performing?,video6755,164494,0 5915,6755,dog,what is running in aield?,video6755,164495,0 5916,6755,man,who is conducting an orchestra?,video6755,164496,0 5917,6755,stage,when does a man play piano?,video6755,164497,0 5918,6755,piano,what does a man play on the stage?,video6755,164498,0 5919,6755,audience,what is watching a band play music?,video6755,164499,0 5920,6755,man,who plays piano on the stage?,video6755,164500,0 5921,6755,orchestra,what is performing on a stage?,video6755,164501,0 5922,6755,orchestra,what is performing in front of a crowd?,video6755,164502,0 5923,6755,orchestra,what is playing in front of an audience?,video6755,164503,0 5924,6755,orchestra,what is a conductor conducting in front of a large audience?,video6755,164504,0 5925,6755,conductor,who is conducting an orchestra in front of a large audience?,video6755,164505,0 5926,6755,music,what concery where a lot of viewers are viewing it?,video6755,164506,0 5927,6755,orchestra,what is playing music?,video6755,164507,0 5928,6755,aield,what is a dog running in?,video6755,164508,0 5929,6755,music,what is an orchestra playing?,video6755,164509,0 5930,6755,conduct,what is a conductor doing?,video6755,164510,0 5931,6755,conduct,what is a man doing?,video6755,164511,0 5932,6755,view,what are a music concery where a lot of viewers doing?,video6755,164512,0 5933,6755,perform,what is a orchestra doing?,video6755,164513,0 5934,6755,watch,what is an audience doing?,video6755,164514,0 5935,6755,perform,what is an orchestra doing?,video6755,164515,0 5936,6755,concert,what do a symphony performing in?,video6755,164516,0 5937,6755,play,what is an orchestra doing?,video6755,164517,0 5938,6755,coversation,what is a family having?,video6755,164518,0 5939,6755,orchestra,what is a man conducting?,video6755,164519,0 5940,6755,play,what is orchestra doing?,video6755,164520,0 5941,6756,man,who is giving instructions on the hand brake?,video6756,164521,10 5942,6756,man,who is being intructed by an older man on how to synchronize the clutch and handbreak when taking off in a car?,video6756,164522,10 5943,6756,blinker,what does a green car have it s left on?,video6756,164523,10 5944,6756,kid,who is a man teaching how to drive a stick shift car?,video6756,164524,10 5945,6756,man,who is talking about?,video6756,164525,10 5946,6756,car,what do two mana re sitting in?,video6756,164526,10 5947,6756,car,what is a guy sitting down inside of?,video6756,164527,10 5948,6756,man,who shows how to use controls in a car?,video6756,164528,10 5949,6756,man,who plays with the parking break?,video6756,164529,10 5950,6756,guy,who is sitting down inside of a car?,video6756,164530,10 5951,6756,person,who is recording his new green car which is on the street?,video6756,164531,10 5952,6756,car,what has it s left blinker on?,video6756,164532,10 5953,6756,brake,what is released a person teaching other to drive?,video6756,164533,10 5954,6756,man,who describes how to start and drive a manual transmission car?,video6756,164534,10 5955,6756,two,how many mana re sitting in the car?,video6756,164535,10 5956,6756,man,who is showing about how to drive a car?,video6756,164536,10 5957,6756,man,who is teaching a kid how to drive a stick shift car?,video6756,164537,10 5958,6756,talk,what is a man doing?,video6756,164538,10 5959,6756,record,what is person doing?,video6756,164539,10 5960,6756,move,what is a yellow car doing?,video6756,164540,10 5961,6756,sit,what is a guy doing?,video6756,164541,10 5962,6756,sit,what is two mana re doing?,video6756,164542,10 5963,6756,teach,what is a man doing?,video6756,164543,10 5964,6756,start,what is there is a green car doing?,video6756,164544,10 5965,6756,slouse,what is a person doing?,video6756,164545,10 5966,6756,person,who is a person teaching in a yellow car how to drive a stick shift?,video6756,164546,10 5967,6756,teach,what is a car right indicator is on and the hand brake is released a person doing?,video6756,164547,10 5968,6756,person,who is teaching another person in a yellow car how to drive a stick shift?,video6756,164548,10 5969,6757,chocolate,what is a woman making?,video6757,164549,16 5970,6757,pot,what does woman put ingrediants in?,video6757,164550,16 5971,6757,woman,who shows recipe ingredients?,video6757,164551,16 5972,6757,woman,who is making chocolate pudding?,video6757,164552,16 5973,6757,woman,who measures ingrediants?,video6757,164553,16 5974,6757,woman,who is cooking in the kitchen?,video6757,164554,16 5975,6757,woman,who is making food?,video6757,164555,16 5976,6757,woman,who starts to make chocolate pudding in a kitchen?,video6757,164556,16 5977,6757,woman,who cooks chocolate pudding for filling?,video6757,164557,16 5978,6757,woman,who puts ingrediants in pot?,video6757,164558,16 5979,6757,kitchen,what is a woman cooking in?,video6757,164559,16 5980,6757,chocolate,what does a woman start to make in a kitchen?,video6757,164560,16 5981,6757,recipe,what does a woman show?,video6757,164561,16 5982,6757,woman,who pours sugar and cocoa into a pan?,video6757,164562,16 5983,6757,sugar,what does a woman pour into a pan?,video6757,164563,16 5984,6757,kitchen,what does a woman start to make chocolate pudding in?,video6757,164564,16 5985,6757,demonstrate,what is a red-headed woman in glasses and a white t-shirt is in a kitchen instructing and doing?,video6757,164565,16 5986,6757,talk,what is two women doing?,video6757,164566,16 5987,6757,show,what is a woman doing?,video6757,164567,16 5988,6757,woman,who gives instructions for a recipe?,video6757,164568,16 5989,6757,cook,what is a woman doing?,video6757,164569,16 5990,6757,grab,what is a woman doing?,video6757,164570,16 5991,6757,fill,what is a woman cooks chocolate pudding for doing?,video6757,164571,16 5992,6757,demonstrate,what is a woman doing?,video6757,164572,16 5993,6757,fill,what is a woman prepares a chocolate pudding to be used for doing?,video6757,164573,16 5994,6758,boy,who is a man showing how to hold a guitar?,video6758,164574,1 5995,6758,man,who is taking photographs with a child and a guitar?,video6758,164575,1 5996,6758,man,who is showing a boy how to hold a guitar?,video6758,164576,1 5997,6758,play,what is a boy doing?,video6758,164577,1 5998,6758,play,what is a kid doing?,video6758,164578,1 5999,6758,show,what is a man doing?,video6758,164579,1 6000,6758,feature,what is a short clip doing?,video6758,164580,1 6001,6758,show,what is guy doing?,video6758,164581,1 6002,6758,help,what is man doing?,video6758,164582,1 6003,6758,hold,what is some men take pictures with a young boy doing?,video6758,164583,1 6004,6758,talk,what is two women doing?,video6758,164584,1 6005,6758,man,who is taking picture with other people?,video6758,164585,1 6006,6758,man,who is giving a boy a guitar?,video6758,164586,1 6007,6758,guitar,what do a musician letting a kid hold?,video6758,164587,1 6008,6758,hold,what is a boy doing?,video6758,164588,1 6009,6758,instrument,what is a boy playing?,video6758,164589,1 6010,6758,guitar,what is a kid playing?,video6758,164590,1 6011,6758,guitar,what do a boy hold?,video6758,164591,1 6012,6758,top,what does a young boy pose with?,video6758,164592,1 6013,6758,man,who has a picture taken with the boy and his father?,video6758,164593,1 6014,6758,boy,who is playing an instrument?,video6758,164594,1 6015,6758,kid,who is playing guitar?,video6758,164595,1 6016,6758,boy,who holding a guitar?,video6758,164596,1 6017,6758,man,who poses with people for photos?,video6758,164597,1 6018,6758,boy,who poses with zz top?,video6758,164598,1 6019,6758,picture,what is a man taking with other people?,video6758,164599,1 6020,6758,photo,what does a family have taken with one of the members of zz top?,video6758,164600,1 6021,6759,cook,what is a girl with black dress doing?,video6759,164601,16 6022,6759,oil,what is a woman tossing noodles with?,video6759,164602,16 6023,6759,lady,who drains noodles?,video6759,164603,16 6024,6759,woman,who mixes ingredients?,video6759,164604,16 6025,6759,woman,who adds ingredients to a pan?,video6759,164605,16 6026,6759,lady,who is seasoning a?,video6759,164606,16 6027,6759,cook,what is a person doing?,video6759,164607,16 6028,6759,talk,what is there is a woman doing?,video6759,164608,16 6029,6759,prepare,what is a woman doing?,video6759,164609,16 6030,6759,place,what is a woman add salt to a bowl of noodles before doing?,video6759,164610,16 6031,6759,drain,what is a woman in a black shirt doing?,video6759,164611,16 6032,6759,put,what is a woman doing?,video6759,164612,16 6033,6759,lady,who is cooking noodles?,video6759,164613,16 6034,6759,lady,who is seasoning noodles?,video6759,164614,16 6035,6759,colander,what transferred the noodles into a glass bowl a woman lifts a black pot of cooked noodles empties the noodles into a silver?,video6759,164615,16 6036,6759,woman,who did colander transfer the noodles into a glass bowl lifts a black pot of cooked noodles empties the noodles into a silver?,video6759,164616,16 6037,6759,silver,what did colander transfer the noodles into a glass bowl a woman lifts a black pot of cooked noodles empties the noodles into?,video6759,164617,16 6038,6759,boiling,what place the noodles in hot oil a person has just drained the water and starch from noodles?,video6759,164618,16 6039,6759,woman,who is preparing noodle dish by transferring it from the bowl to a boiling water on the flames?,video6759,164619,16 6040,6759,woman,who is draining noodles?,video6759,164620,16 6041,6759,kitchen,what does a girl an a bowl spoon mixing dish inside to prepare to serve to eat displaying on screen?,video6759,164621,16 6042,6759,woman,who add salt to a bowl of noodles before placing them into a pot to boil?,video6759,164622,16 6043,6759,screen,what does a girl an a bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on?,video6759,164623,16 6044,6759,salt,what do a woman add to a bowl of noodles before placing them into a pot to boil?,video6759,164624,16 6045,6759,lady,who puts noodles into a glass bowl?,video6759,164625,16 6046,6759,dres,what do a person cooking noodles in a bowl wearing?,video6759,164626,16 6047,6759,woman,who is tossing noodles with sesame oil?,video6759,164627,16 6048,6759,dish,what is a woman preparing by transferring it from the bowl to a boiling water on the flames?,video6759,164628,16 6049,6759,lady,who is draining a pan of noodles?,video6759,164629,16 6050,6759,dish,what does a girl an a bowl spoon mixing inside kitchen to prepare to serve to eat displaying on screen?,video6759,164630,16 6051,6759,mix,what is a girl an a bowl spoon doing?,video6759,164631,16 6052,6759,person,who do a boiling water place the noodles in hot oil has just drained the water and starch from noodles?,video6759,164632,16 6053,6760,someone,what is playing a video game?,video6760,164633,2 6054,6760,video,what is a person playing?,video6760,164634,2 6055,6760,playing,who minecraft?,video6760,164635,2 6056,6760,video,what was very entertaining?,video6760,164636,2 6057,6760,minecraft,what play?,video6760,164637,2 6058,6760,video,what is someone playing?,video6760,164638,2 6059,6760,room,what do a video game scan of?,video6760,164639,2 6060,6760,person,who is playing a video game?,video6760,164640,2 6061,6760,video,what scan of a room?,video6760,164641,2 6062,6760,person,who is playing the game minecraft?,video6760,164642,2 6063,6760,fence,what is someone inside together with a black cat?,video6760,164643,2 6064,6760,man,who is playing the minecraft video game?,video6760,164644,2 6065,6760,cat,what did a minecraft let s play featuring?,video6760,164645,2 6066,6760,minecraft,what is a man with an accent playing?,video6760,164646,2 6067,6760,minecraft,who let s play featuring a cat?,video6760,164647,2 6068,6760,someone,who is inside a fence together with a black cat?,video6760,164648,2 6069,6760,boy,who is commentating over a minecraft cat?,video6760,164649,2 6070,6760,computer,what is some on playing?,video6760,164650,2 6071,6760,play,what is some on doing?,video6760,164651,2 6072,6760,commentate,what is a boy doing?,video6760,164652,2 6073,6760,talk,what is a clip of minecraft video game with people doing?,video6760,164653,2 6074,6760,play,what is a man doing?,video6760,164654,2 6075,6760,play,what is a man with an accent doing?,video6760,164655,2 6076,6760,feature,what is a minecraft let s play doing?,video6760,164656,2 6077,6760,play,what is a person doing?,video6760,164657,2 6078,6760,play,what is man doing?,video6760,164658,2 6079,6760,play,what is people doing?,video6760,164659,2 6080,6760,play,what is someone doing?,video6760,164660,2 6081,6761,video,what do people go hiking in?,video6761,164661,11 6082,6761,nature,what are families enjoying?,video6761,164662,11 6083,6761,hike,what are people on?,video6761,164663,11 6084,6761,hike,what is this is a slideshow of a group doing?,video6761,164664,11 6085,6761,enjoy,what are families doing?,video6761,164665,11 6086,6761,hike,what are a group of people doing?,video6761,164666,11 6087,6761,sightsee,what is a picture recap and video shows people doing?,video6761,164667,11 6088,6761,include,what is groups of people doing?,video6761,164668,11 6089,6761,camp,what is kids doing?,video6761,164669,11 6090,6761,hike,what are people doing?,video6761,164670,11 6091,6761,walk,what are people doing?,video6761,164671,11 6092,6761,walk,what is photos of people doing?,video6761,164672,11 6093,6761,hike,what is people go doing?,video6761,164673,11 6094,6761,walk,what is there are people doing?,video6761,164674,11 6095,6761,enjoy,what is there are several pictures and a video of people doing?,video6761,164675,11 6096,6761,sign,what are groups of people including mostly children and some adults shown outdoors then groups of people are traveling with backpacks outdoors past?,video6761,164676,11 6097,6761,hike,what is pictures a a class doing?,video6761,164677,11 6098,6761,hike,what is a group of people go doing?,video6761,164678,11 6099,6762,chase,what is a clip of the 3 stooges with people doing?,video6762,164679,7 6100,6762,try,what is a man doing?,video6762,164680,7 6101,6762,escape,what is a man doing?,video6762,164681,7 6102,6762,fight,what is a group doing?,video6762,164682,7 6103,6762,explain,what is a person doing?,video6762,164683,7 6104,6762,comedy,what is the charlie chaplin making?,video6762,164684,7 6105,6762,man,who are men chasing?,video6762,164685,7 6106,6762,something,what is a person explaining?,video6762,164686,7 6107,6762,group,what is fighting?,video6762,164687,7 6108,6762,person,who is explaining something?,video6762,164688,7 6109,6762,try,what is chaplin s character doing?,video6762,164689,7 6110,6762,man,who is trying to escape from police?,video6762,164690,7 6111,6762,chaplin,who s character trying to escape from a scene?,video6762,164691,7 6112,6762,chase,what are men doing?,video6762,164692,7 6113,6762,scene,what does chaplin s character trying to escape from?,video6762,164693,7 6114,6762,charlie,who a black and white movie clip from?,video6762,164694,7 6115,6762,pickup,what is charlie chaplin show clip?,video6762,164695,7 6116,6762,three,how many men are hugging?,video6762,164696,7 6117,6762,hug,what are three men doing?,video6762,164697,7 6118,6762,fight,what is three men doing?,video6762,164698,7 6119,6762,child,who talks in the back of a pickup truck?,video6762,164699,7 6120,6762,charlie,who is making comedy?,video6762,164700,7 6121,6763,table,what are two men sitting at discussing time machines?,video6763,164701,6 6122,6763,man,who is speaking about time machine and science fiction?,video6763,164702,6 6123,6763,time,what are two men sitting at a table discussing?,video6763,164703,6 6124,6763,cafeterium,what do two characters from the big bang theory talk to each other while in?,video6763,164704,6 6125,6763,two,how many young men sit at a cafeteria table?,video6763,164705,6 6126,6763,two,how many men are sitting at a table discussing time machines?,video6763,164706,6 6127,6763,two,how many young men talk about science fiction?,video6763,164707,6 6128,6763,two,how many men were talking about something while eating?,video6763,164708,6 6129,6763,couple,what guys discussing a concept in a popular show?,video6763,164709,6 6130,6763,sit,what is several boys doing?,video6763,164710,6 6131,6763,sit,what are two men doing?,video6763,164711,6 6132,6763,speak,what is a man doing?,video6763,164712,6 6133,6763,sit,what is two guys doing?,video6763,164713,6 6134,6763,discus,what is a couple guys doing?,video6763,164714,6 6135,6763,talk,what were two men doing?,video6763,164715,6 6136,6763,speak,what is few persons doing?,video6763,164716,6 6137,6763,talk,what is a man in a black shirt doing?,video6763,164717,6 6138,6763,sit,what is a man in black graphic shirt doing?,video6763,164718,6 6139,6763,talk,what is there is a tshirt man doing?,video6763,164719,6 6140,6763,talk,what is there is a check shirt man doing?,video6763,164720,6 6141,6763,two,how many men are eatting?,video6763,164721,6 6142,6763,discus,what is the two young people doing?,video6763,164722,6 6143,6763,talk,what is there is a black tshirt man doing?,video6763,164723,6 6144,6763,science,what do two young men talk about?,video6763,164724,6 6145,6764,traverse,what is a jeep doing?,video6764,164725,9 6146,6764,drive,what is a truck is shown doing?,video6764,164726,9 6147,6764,climb,what is a jeep doing?,video6764,164727,9 6148,6764,drive,what is a car doing?,video6764,164728,9 6149,6764,show,what is a video doing?,video6764,164729,9 6150,6764,move,what is an suv doing?,video6764,164730,9 6151,6764,drive,what is this is a tv show about a man doing?,video6764,164731,9 6152,6764,drive,what is white truck doing?,video6764,164732,9 6153,6764,drive,what is a truck doing?,video6764,164733,9 6154,6764,crawl,what is a jeep doing?,video6764,164734,9 6155,6764,jeep,what is climbing over some rocky terrain?,video6764,164735,9 6156,6764,animation,what shows a piece of text being slammed down?,video6764,164736,9 6157,6764,terrain,where is a truck driving?,video6764,164737,9 6158,6764,suv,who is moving over stones?,video6764,164738,9 6159,6764,jeep,what is crawling over rocks?,video6764,164739,9 6160,6764,truck,what drives over rocks?,video6764,164740,9 6161,6764,terrain,what is a jeep traversing through?,video6764,164741,9 6162,6764,car,what is driving on rocks?,video6764,164742,9 6163,6764,truck,what is driving over rocky terrain?,video6764,164743,9 6164,6764,jeep,what is off road?,video6764,164744,9 6165,6764,truck,what is shown driving?,video6764,164745,9 6166,6764,jeep,what is traversing through rocky terrain?,video6764,164746,9 6167,6764,road,what is a jeep off?,video6764,164747,9 6168,6764,terrain,what is a truck driving over?,video6764,164748,9 6169,6765,speak,what is a man doing?,video6765,164749,3 6170,6765,play,what is a person doing?,video6765,164750,3 6171,6765,play,what are athletes doing?,video6765,164751,3 6172,6765,discus,what are commentators doing?,video6765,164752,3 6173,6765,play,what are football players doing?,video6765,164753,3 6174,6765,play,what is men doing?,video6765,164754,3 6175,6765,play,what is sportsman doing?,video6765,164755,3 6176,6765,player,who throws the ball to another player who then scores a touchdown?,video6765,164756,3 6177,6765,football,who are playing?,video6765,164757,3 6178,6765,football,what is going on?,video6765,164758,3 6179,6765,sport,what is a person playing?,video6765,164759,3 6180,6765,football,what do an american?,video6765,164760,3 6181,6765,ball,what does the player catch?,video6765,164761,3 6182,6765,football,what are athletes playing?,video6765,164762,3 6183,6765,field,what do football players run on?,video6765,164763,3 6184,6765,espn,what is a football game recapped on?,video6765,164764,3 6185,6765,game,what is being played?,video6765,164765,3 6186,6765,person,who is playing a sport?,video6765,164766,3 6187,6765,field,where do football players run?,video6765,164767,3 6188,6765,team,what ran a fake punt play?,video6765,164768,3 6189,6765,man,who is speaking while a football game is going on?,video6765,164769,3 6190,6765,football,what is recapped on espn?,video6765,164770,3 6191,6765,player,who catches the ball?,video6765,164771,3 6192,6765,football,who running on field?,video6765,164772,3 6193,6766,music,what are three children dancing to?,video6766,164773,1 6194,6766,dance,what are children doing?,video6766,164774,1 6195,6766,dance,what is kids doing?,video6766,164775,1 6196,6766,dance,what are three children doing?,video6766,164776,1 6197,6766,dance,what are some kids doing?,video6766,164777,1 6198,6766,dance,what are the children doing?,video6766,164778,1 6199,6766,dance,what is three black kids doing?,video6766,164779,1 6200,6766,dance,what is three children doing?,video6766,164780,1 6201,6766,dance,what are three young kids doing?,video6766,164781,1 6202,6766,dance,what is young people doing?,video6766,164782,1 6203,6766,music,what are children dancing to?,video6766,164783,1 6204,6766,room,what do some children dance around in?,video6766,164784,1 6205,6766,song,what do black children dance to?,video6766,164785,1 6206,6766,three,how many young kids dance to music in the background?,video6766,164786,1 6207,6766,three,how many children are dancing to rap music?,video6766,164787,1 6208,6766,three,how many young kids are dancing?,video6766,164788,1 6209,6766,music,what plays while three young children dance?,video6766,164789,1 6210,6766,three,how many children are dancing together?,video6766,164790,1 6211,6766,three,how many young children dance?,video6766,164791,1 6212,6767,laugh,what are two woman doing?,video6767,164792,2 6213,6767,play,what is a buzzfeed video of people doing?,video6767,164793,2 6214,6767,talk,what is a set of twins doing?,video6767,164794,2 6215,6767,speak,what is girls doing?,video6767,164795,2 6216,6767,stand,what are two girls doing?,video6767,164796,2 6217,6767,talk,what is two girls doing?,video6767,164797,2 6218,6767,use,what is two girls doing?,video6767,164798,2 6219,6767,chat,what are two ladies doing?,video6767,164799,2 6220,6767,speak,what are two women doing?,video6767,164800,2 6221,6767,two,how many girls are standing?,video6767,164801,2 6222,6767,two,how many girls are talking about brain tricks?,video6767,164802,2 6223,6767,brain,what do two girls try?,video6767,164803,2 6224,6767,brain,what are two girls talking about?,video6767,164804,2 6225,6767,two,how many girls are talking?,video6767,164805,2 6226,6767,woman,who are laughing?,video6767,164806,2 6227,6767,two,how many women speak to each other in a room?,video6767,164807,2 6228,6767,two,how many girls are having a good time with it?,video6767,164808,2 6229,6767,brain,what do girls speak about?,video6767,164809,2 6230,6767,two,how many girls try a brain game?,video6767,164810,2 6231,6767,two,how many girls are talking about brain games?,video6767,164811,2 6232,6767,time,when are two girls having with it?,video6767,164812,2 6233,6767,two,how many ladies are chatting?,video6767,164813,2 6234,6767,two,how many girls talk together?,video6767,164814,2 6235,6767,room,what do two women speak to each other in?,video6767,164815,2 6236,6767,brain,what do two woman play with each other?,video6767,164816,2 6237,6767,two,how many girls talk to each other?,video6767,164817,2 6238,6767,woman,who play brain games with each other?,video6767,164818,2 6239,6767,two,how many women are speaking to each other?,video6767,164819,2 6240,6767,two,how many girls are talking to each other?,video6767,164820,2 6241,6768,movie,what are trading threats in the avengers?,video6768,164821,7 6242,6768,robert,who is talking to a villain?,video6768,164822,7 6243,6768,loki,who does ironman confront in the avengers?,video6768,164823,7 6244,6768,two,how many men are having a conversation?,video6768,164824,7 6245,6768,loki,who is arguing with tony stark?,video6768,164825,7 6246,6768,villain,who is robert downey jr talking to?,video6768,164826,7 6247,6768,someone,what does a man walk down some stairs and talks sarcastically to?,video6768,164827,7 6248,6768,robert,who speaks to another actor in a large room?,video6768,164828,7 6249,6768,two,how many men are talking in a tower?,video6768,164829,7 6250,6768,ironman,who confronts loki in the avengers?,video6768,164830,7 6251,6768,man,who walks down some stairs and talks sarcastically to someone?,video6768,164831,7 6252,6768,two,how many characters are talking about the hulk?,video6768,164832,7 6253,6768,actor,who does robert downey jr speak to in a large room?,video6768,164833,7 6254,6768,trading,what are movie and loki in the avengers?,video6768,164834,7 6255,6768,villain,who is confronting a super hero?,video6768,164835,7 6256,6768,talk,what is robert downey jr doing?,video6768,164836,7 6257,6768,stark,what is angrily talking to loki?,video6768,164837,7 6258,6768,talk,what is tony stark is angrily doing?,video6768,164838,7 6259,6768,talk,what is tony stark doing?,video6768,164839,7 6260,6768,talk,what are two characters doing?,video6768,164840,7 6261,6768,confront,what is two men doing?,video6768,164841,7 6262,6768,trade,what are in the avengers movie and loki doing?,video6768,164842,7 6263,6768,involve,what is a scene from one of the avenger movies plays doing?,video6768,164843,7 6264,6768,confront,what is a villain doing?,video6768,164844,7 6265,6768,conversation,what are two men having?,video6768,164845,7 6266,6768,tower,what are two men talking in?,video6768,164846,7 6267,6768,super,who is a villain confronting?,video6768,164847,7 6268,6768,hulk,who are two characters talking about?,video6768,164848,7 6269,6768,stark,what is loki arguing with?,video6768,164849,7 6270,6768,talk,what is loki doing?,video6768,164850,7 6271,6768,argue,what is loki doing?,video6768,164851,7 6272,6769,love,what is a man and a women making passionately?,video6769,164852,7 6273,6769,night,when are the babies played very attractively?,video6769,164853,7 6274,6769,love,what are couple madly in with each other here?,video6769,164854,7 6275,6769,room,what do a man and a woman making love inside?,video6769,164855,7 6276,6769,bed,what were a man and a woman rolling around in?,video6769,164856,7 6277,6769,sex,what is a couples having in their bed room?,video6769,164857,7 6278,6769,couple,what is intertwined rolling and kissing on a bed small bottles and containers are pushed off the top of a wooden dresser?,video6769,164858,7 6279,6769,lady,who rolls around with guy pasionatly to make love?,video6769,164859,7 6280,6769,two,how many people are engaged in a romance scene?,video6769,164860,7 6281,6769,guy,who does a lady roll around with to make love?,video6769,164861,7 6282,6769,love,what does a lady roll around with guy pasionatly to make?,video6769,164862,7 6283,6769,couple,what are madly in love with each other here?,video6769,164863,7 6284,6769,sex,what are two people having indoors?,video6769,164864,7 6285,6769,two,how many people are having wild sex indoors?,video6769,164865,7 6286,6769,floor,what is a man and a women rolling on?,video6769,164866,7 6287,6769,enjoy,what are the bedroom scenes the couples doing?,video6769,164867,7 6288,6769,mat,what is its a erotic scene of a man and a women doing?,video6769,164868,7 6289,6769,roll,what is a couple is intertwined doing?,video6769,164869,7 6290,6769,roll,what is a man and woman doing?,video6769,164870,7 6291,6769,roll,what were a man and a woman doing?,video6769,164871,7 6292,6769,kis,what is a man doing?,video6769,164872,7 6293,6770,woman,who gives a lecture on children?,video6770,164873,5 6294,6770,woman,who gives a presentation?,video6770,164874,5 6295,6770,science,what do a woman giving a ted talk talking about?,video6770,164875,5 6296,6770,speech,what does a person on ted talk giving?,video6770,164876,5 6297,6770,conference,what is a woman giving a talk on stage at?,video6770,164877,5 6298,6770,person,who is on stage talking to an audience?,video6770,164878,5 6299,6770,woman,who gives ted talk?,video6770,164879,5 6300,6770,speech,what is a man giving?,video6770,164880,5 6301,6770,lecture,what is a woman giving?,video6770,164881,5 6302,6770,show,what is someone hosting?,video6770,164882,5 6303,6770,presentation,what does woman give?,video6770,164883,5 6304,6770,crowd,what is someone speaking to?,video6770,164884,5 6305,6770,science,what is a woman talking about?,video6770,164885,5 6306,6770,stage,when is a woman speaking?,video6770,164886,5 6307,6770,science,what do ted talk about?,video6770,164887,5 6308,6770,man,who is giving a speech?,video6770,164888,5 6309,6770,someone,who is hosting a show?,video6770,164889,5 6310,6770,woman,who is giving a presentation?,video6770,164890,5 6311,6770,woman,who is giving a lecture?,video6770,164891,5 6312,6770,woman,who gives a lecture?,video6770,164892,5 6313,6770,someone,who is speaking to a crowd?,video6770,164893,5 6314,6770,woman,who is speaking on stage?,video6770,164894,5 6315,6770,woman,who is talking about science?,video6770,164895,5 6316,6770,stage,when is a person talking to an audience?,video6770,164896,5 6317,6770,person,who is giving a speech on the stage?,video6770,164897,5 6318,6770,man,who speaks to an audience on stage?,video6770,164898,5 6319,6770,speak,what is a woman doing?,video6770,164899,5 6320,6770,host,what is someone doing?,video6770,164900,5 6321,6770,woman,who is giving a talk on stage at a conference?,video6770,164901,5 6322,6770,talk,what is a person is on stage doing?,video6770,164902,5 6323,6771,room,what are men jumping around in?,video6771,164903,7 6324,6771,scene,what do some people practice?,video6771,164904,7 6325,6771,sword,what is a man holding?,video6771,164905,7 6326,6771,sequence,what a man practices?,video6771,164906,7 6327,6771,man,who is holding a sword?,video6771,164907,7 6328,6771,man,who practices a fight sequence?,video6771,164908,7 6329,6771,man,who is simulating fighting with other people?,video6771,164909,7 6330,6771,man,who is fighting other people?,video6771,164910,7 6331,6771,man,who is shooting from a bow?,video6771,164911,7 6332,6771,scene,what is played out with bows?,video6771,164912,7 6333,6771,bow,what is a man shooting from?,video6771,164913,7 6334,6771,role,what does hawkeye actor from the avengers practicing?,video6771,164914,7 6335,6771,man,who dances with a bow and pretends to shoot arrows?,video6771,164915,7 6336,6771,man,who performs a choreographed fight on a green screen set?,video6771,164916,7 6337,6771,perform,what is a couple of men doing?,video6771,164917,7 6338,6771,hold,what is a man doing?,video6771,164918,7 6339,6771,shoot,what is a man doing?,video6771,164919,7 6340,6771,simulate,what is a man doing?,video6771,164920,7 6341,6771,move,what is a man doing?,video6771,164921,7 6342,6771,practice,what is hawkeye actor from the avengers doing?,video6771,164922,7 6343,6771,practice,what is jeremy renner doing?,video6771,164923,7 6344,6771,jump,what are men doing?,video6771,164924,7 6345,6771,choreograph,what are people doing?,video6771,164925,7 6346,6772,play,what is two girls doing?,video6772,164926,11 6347,6772,play,what is there are some kids doing?,video6772,164927,11 6348,6772,fly,what is a yellow helicopter doing?,video6772,164928,11 6349,6772,play,what are two children doing?,video6772,164929,11 6350,6772,play,what are two young girls doing?,video6772,164930,11 6351,6772,play,what are two little girls doing?,video6772,164931,11 6352,6772,fly,what is children on a beach and some footage of a helicopter doing?,video6772,164932,11 6353,6772,play,what are the blonde girls doing?,video6772,164933,11 6354,6772,play,what are two little babies doing?,video6772,164934,11 6355,6772,play,what is few kids doing?,video6772,164935,11 6356,6772,play,what is there are two kids doing?,video6772,164936,11 6357,6772,stand,what are two men doing?,video6772,164937,11 6358,6772,fly,what is a bunch of kites are displayed doing?,video6772,164938,11 6359,6772,two,how many children are playing in the sand while a helicopter fly over?,video6772,164939,11 6360,6772,ocean,what is a yellow helicopter flying in the air over?,video6772,164940,11 6361,6772,two,how many little babies are playing?,video6772,164941,11 6362,6772,air,what do two little girls play in the sand kits fly in two people get in a helicopter and fly over the beach?,video6772,164942,11 6363,6772,sand,what do two little girls play in kits fly in the air two people get in a helicopter and fly over the beach?,video6772,164943,11 6364,6772,sand,what are two young girls playing in together?,video6772,164944,11 6365,6772,dolphin,what is swimming in sea?,video6772,164945,11 6366,6772,sea,what is a dolphin swimming in?,video6772,164946,11 6367,6772,helicopter,what fly over?,video6772,164947,11 6368,6772,air,what is a yellow helicopter flying in over a ocean?,video6772,164948,11 6369,6772,sand,what are two children playing in while a helicopter fly over?,video6772,164949,11 6370,6772,two,how many young girls are playing in the sand together?,video6772,164950,11 6371,6772,beach,what are few kids playing on sad some kites flying together two people going on a helicoptor watching below?,video6772,164951,11 6372,6772,two,how many men are standing by the two opposite doors of a yellow helicopter by two others who are settling into seats behind the curved windshields?,video6772,164952,11 6373,6772,two,how many little girls play in the sand kits fly in the air two people get in a helicopter and fly over the beach?,video6772,164953,11 6374,6772,air,where is a yellow helicopter flying over a ocean?,video6772,164954,11 6375,6772,blonde,who are watching the balloons in the sky?,video6772,164955,11 6376,6772,two,how many little girls are playing more kites are on the sky?,video6772,164956,11 6377,6772,helicopter,what is flying in the air over a ocean?,video6772,164957,11 6378,6772,two,how many people do two little girls play in the sand kits fly in the air get in a helicopter and fly over the beach?,video6772,164958,11 6379,6772,helicopter,what is taking off for a ride for people?,video6772,164959,11 6380,6772,sky,what are two little girls playing more kites are on?,video6772,164960,11 6381,6773,field,what did off road vehicle driving across a snow cover?,video6773,164961,9 6382,6773,terrain,what does vehicle with large tractor tubes as tire traversing?,video6773,164962,9 6383,6773,snow,what does a vehicle drive through while a man speaks?,video6773,164963,9 6384,6773,road,what did a man talking of something about the cars going on snow cover?,video6773,164964,9 6385,6773,man,who speaks?,video6773,164965,9 6386,6773,drive,what is a large vehicle doing?,video6773,164966,9 6387,6773,drive,what is a large red vehicle with large tractor wheels on it doing?,video6773,164967,9 6388,6773,demonstrate,what is doing?,video6773,164968,9 6389,6773,traverse,what is vehicle with large tractor tubes as tires doing?,video6773,164969,9 6390,6773,speak,what is a commentator doing?,video6773,164970,9 6391,6773,drive,what is vehicles with large tracks on them doing?,video6773,164971,9 6392,6773,talk,what is a man doing?,video6773,164972,9 6393,6773,drive,what is off road vehicle doing?,video6773,164973,9 6394,6773,snow,what do giant black wheels make travel through easy?,video6773,164974,9 6395,6773,vehicle,what drives through the snow while a man speaks?,video6773,164975,9 6396,6773,terrain,what did a large red vehicle with large tractor wheels on a large red truck with huge tires driving over a snow cover?,video6773,164976,9 6397,6773,commentator,who is speaking about a large red truck with large wheels?,video6773,164977,9 6398,6773,man,who describes the demonstration of some vehicles that can move on deep snow?,video6773,164978,9 6399,6774,talk,what is a group of people doing?,video6774,164979,16 6400,6774,discus,what is a group of people doing?,video6774,164980,16 6401,6774,eat,what are a group of people doing?,video6774,164981,16 6402,6774,eat,what are a bunch of men doing?,video6774,164982,16 6403,6774,table,what are two guys eating food at?,video6774,164983,16 6404,6774,man,who tested different foods?,video6774,164984,16 6405,6774,soup,what is a man describing?,video6774,164985,16 6406,6774,food,what do men re eating men discuss?,video6774,164986,16 6407,6774,restaurant,what are friends eating in?,video6774,164987,16 6408,6774,food,what are people eating?,video6774,164988,16 6409,6774,man,who s eating?,video6774,164989,16 6410,6774,man,who is eating?,video6774,164990,16 6411,6774,talk,what is a guy doing?,video6774,164991,16 6412,6774,eat,what are friends doing?,video6774,164992,16 6413,6774,instruct,what is a man doing?,video6774,164993,16 6414,6774,guy,who is talking about how to eat a certain food?,video6774,164994,16 6415,6774,man,who talks about how to eat dumplings?,video6774,164995,16 6416,6774,man,who teaches his freinds how to coll and eat food?,video6774,164996,16 6417,6774,man,who is describing soup dumplings?,video6774,164997,16 6418,6774,table,what are a group of people eating food at?,video6774,164998,16 6419,6774,food,what are a group of people eating at a table?,video6774,164999,16 6420,6774,eat,what is a man doing?,video6774,165000,16 6421,6774,man,who is instructing how to eat food?,video6774,165001,16 6422,6774,food,what are two guys eating at a table?,video6774,165002,16 6423,6774,food,what are a group of people eating?,video6774,165003,16 6424,6774,two,how many guys are eating food at a table?,video6774,165004,16 6425,6774,eat,what are two guys doing?,video6774,165005,16 6426,6774,eat,what are people doing?,video6774,165006,16 6427,6774,eat,what is men discuss food they re doing?,video6774,165007,16 6428,6774,explain,what is man doing?,video6774,165008,16 6429,6774,eat,what is guys doing?,video6774,165009,16 6430,6774,man,who eats dumplings in a restaurant?,video6774,165010,16 6431,6775,meow,what is a animated video about cats and doing?,video6775,165011,12 6432,6775,talk,what is a clip doing?,video6775,165012,12 6433,6775,man,who talks about cats as a cartoon about cats plays?,video6775,165013,12 6434,6775,speaker,who is talking about how cats to do not communicate with other cats by meowing?,video6775,165014,12 6435,6775,man,who is talking about why cats meow?,video6775,165015,12 6436,6775,man,who is telling a story about cats?,video6775,165016,12 6437,6775,man,who explains why cats meow?,video6775,165017,12 6438,6775,man,who explains cats behavior or meowing?,video6775,165018,12 6439,6775,cartoon,what are going on?,video6775,165019,12 6440,6775,interact,what is a cartoon video explains the behaviors of cats when doing?,video6775,165020,12 6441,6775,cartoon,what explains the behaviors of cats when interacting with humans versus other cats?,video6775,165021,12 6442,6775,tell,what is a man doing?,video6775,165022,12 6443,6775,talk,what is a speaker doing?,video6775,165023,12 6444,6775,talk,what is a man doing?,video6775,165024,12 6445,6776,talk,what are a man and a women doing?,video6776,165025,18 6446,6776,talk,what are a man and woman doing?,video6776,165026,18 6447,6776,talk,what is a man doing?,video6776,165027,18 6448,6776,explain,what is a person doing?,video6776,165028,18 6449,6776,play,what is angelina jolie doing?,video6776,165029,18 6450,6776,speak,what is from the movie maleficent doing?,video6776,165030,18 6451,6776,inform,what is the man doing?,video6776,165031,18 6452,6776,talk,what are two creatures doing?,video6776,165032,18 6453,6776,talk,what is two people doing?,video6776,165033,18 6454,6776,talk,what is a couple of people doing?,video6776,165034,18 6455,6776,man,who is informing the woman of a child that was born?,video6776,165035,18 6456,6776,child,who is the man informing the woman of that was born?,video6776,165036,18 6457,6776,talk,what is a man and a woman doing?,video6776,165037,18 6458,6776,talk,what are actor doing?,video6776,165038,18 6459,6776,conversation,what is a man and woman having?,video6776,165039,18 6460,6776,something,what is a person explaining?,video6776,165040,18 6461,6776,person,who is explaining something?,video6776,165041,18 6462,6776,maleficent,what is angelina jolie playing?,video6776,165042,18 6463,6776,jolie,what is playing maleficent?,video6776,165043,18 6464,6776,two,how many creatures are talking to each other?,video6776,165044,18 6465,6777,food,what is a person cooking?,video6777,165045,12 6466,6777,internet,what are elderly people using?,video6777,165046,12 6467,6777,something,what is a woman talking about?,video6777,165047,12 6468,6777,woman,who is using the computer?,video6777,165048,12 6469,6777,person,who is cooking food?,video6777,165049,12 6470,6777,youtube,what are publics reviewing?,video6777,165050,12 6471,6777,woman,who is talking about something?,video6777,165051,12 6472,6777,technology,what do grandmas love interacting with?,video6777,165052,12 6473,6777,grandma,who love interacting with technology?,video6777,165053,12 6474,6777,woman,who is talking to some people?,video6777,165054,12 6475,6777,woman,who is talking to a young boy?,video6777,165055,12 6476,6777,laptop,what is an old woman watching videos on?,video6777,165056,12 6477,6777,computer,what is a woman using?,video6777,165057,12 6478,6777,youtube,what are old women learning to watch?,video6777,165058,12 6479,6777,woman,who is watching videos on a laptop?,video6777,165059,12 6480,6777,kitchen,what are two kids sitting at eating snacks?,video6777,165060,12 6481,6777,cook,what is a person doing?,video6777,165061,12 6482,6777,talk,what is a woman doing?,video6777,165062,12 6483,6777,use,what is a woman doing?,video6777,165063,12 6484,6777,talk,what is an elderly woman doing?,video6777,165064,12 6485,6777,watch,what is an old woman doing?,video6777,165065,12 6486,6777,use,what are elderly people doing?,video6777,165066,12 6487,6777,interact,what is grandmas love doing?,video6777,165067,12 6488,6777,introduce,what is granny doing?,video6777,165068,12 6489,6777,use,what is old people doing?,video6777,165069,12 6490,6777,talk,what are older women doing?,video6777,165070,12 6491,6777,review,what are publics doing?,video6777,165071,12 6492,6777,learn,what are old women doing?,video6777,165072,12 6493,6777,watch,what are various older women doing?,video6777,165073,12 6494,6777,youtube,what are various older women watching cooking tutorials on?,video6777,165074,12 6495,6777,sit,what are two kids doing?,video6777,165075,12 6496,6777,cooking,what are various older women watching on youtube?,video6777,165076,12 6497,6777,two,how many kids are sitting at the kitchen eating snacks?,video6777,165077,12 6498,6778,building,what do fireworks show featuring?,video6778,165078,2 6499,6778,sky,what are fireworks in?,video6778,165079,2 6500,6778,building,what are fireworks coming from?,video6778,165080,2 6501,6778,building,what are fireworks going off around?,video6778,165081,2 6502,6778,sky,what are many fireworks exploding in?,video6778,165082,2 6503,6778,skyscrapper,what launches fireworks?,video6778,165083,2 6504,6778,display,what is happening behind a building?,video6778,165084,2 6505,6778,building,what is a fireworks display happening behind?,video6778,165085,2 6506,6778,explode,what are many fireworks doing?,video6778,165086,2 6507,6778,feature,what is fireworks show doing?,video6778,165087,2 6508,6778,shoot,what is fireworks doing?,video6778,165088,2 6509,6778,night,when do a fireworks display shown around a tall skyscraper?,video6778,165089,2 6510,6778,firework,what display shown around a tall skyscraper at night?,video6778,165090,2 6511,6778,city,where are fireworkers being shot off?,video6778,165091,2 6512,6778,city,what are fireworkers being shot off over?,video6778,165092,2 6513,6779,person,who is smashing food?,video6779,165093,10 6514,6779,food,what does man smash a bunch of?,video6779,165094,10 6515,6779,food,what does person smash on counter?,video6779,165095,10 6516,6779,counter,what does person smash food on?,video6779,165096,10 6517,6779,person,who is being sloppy?,video6779,165097,10 6518,6779,disgusting,what does a person make?,video6779,165098,10 6519,6779,food,what is a hand smashing?,video6779,165099,10 6520,6779,food,what is a person smashing?,video6779,165100,10 6521,6779,person,who is cooking?,video6779,165101,10 6522,6779,hand,what is smashing food?,video6779,165102,10 6523,6779,table,what is a person pounding random ingredients that look like garbage together on?,video6779,165103,10 6524,6779,food,what is a person smashing a bunch of around?,video6779,165104,10 6525,6779,person,who makes a disgusting sandwich?,video6779,165105,10 6526,6779,person,who is smashing a bunch of food around?,video6779,165106,10 6527,6779,someone,who made a mess on the kitchen counter?,video6779,165107,10 6528,6779,man,who smashes food together into a lump of mush?,video6779,165108,10 6529,6779,person,who slamming various foods into a table?,video6779,165109,10 6530,6779,person,who smashes different ingredients that don t go together?,video6779,165110,10 6531,6779,someone,who is causing a mess in a kitchen?,video6779,165111,10 6532,6779,person,who is pounding random ingredients that look like garbage together on his table?,video6779,165112,10 6533,6779,person,who is wasting a bunch of food?,video6779,165113,10 6534,6779,table,what did a person slam various foods into?,video6779,165114,10 6535,6779,food,what is a man wearing gloves smashing on a counter?,video6779,165115,10 6536,6779,mes,what did someone make on the kitchen counter?,video6779,165116,10 6537,6779,man,who smashes a bunch of food disgustingly?,video6779,165117,10 6538,6779,food,what is a person wasting a bunch of?,video6779,165118,10 6539,6779,food,what is a person wearing a glove smashing?,video6779,165119,10 6540,6779,food,what does a man smash together into a lump of mush?,video6779,165120,10 6541,6779,person,who smashes food on counter?,video6779,165121,10 6542,6779,sandwich,what is a person wearing a glove then making?,video6779,165122,10 6543,6779,counter,what is a man wearing gloves smashing food on?,video6779,165123,10 6544,6779,smash,what is a hand doing?,video6779,165124,10 6545,6779,wear,what is a man doing?,video6779,165125,10 6546,6779,cook,what is a person doing?,video6779,165126,10 6547,6779,pound,what is a person doing?,video6779,165127,10 6548,6779,waste,what is a person doing?,video6779,165128,10 6549,6779,slam,what is a person doing?,video6779,165129,10 6550,6779,cause,what is someone doing?,video6779,165130,10 6551,6780,person,who is folding origami?,video6780,165131,10 6552,6780,someone,who is making a model of airplane?,video6780,165132,10 6553,6780,someone,who built an airplane?,video6780,165133,10 6554,6780,person,who is playing with a paper airplane?,video6780,165134,10 6555,6780,paper,what is someone pasting a paper for?,video6780,165135,10 6556,6780,plane,what did someone add glue to keep together?,video6780,165136,10 6557,6780,glue,what did someone add to keep the plane together?,video6780,165137,10 6558,6780,airplane,what is someone making a model of?,video6780,165138,10 6559,6780,airplane,what did someone build?,video6780,165139,10 6560,6780,person,who is folding a paper airplane?,video6780,165140,10 6561,6780,paper,what is someone pasting for paper craft?,video6780,165141,10 6562,6780,airplane,what is made with glue?,video6780,165142,10 6563,6780,glue,what is a paper airplane made with?,video6780,165143,10 6564,6780,airplane,what does a person fold up?,video6780,165144,10 6565,6780,person,who folds up a paper airplane?,video6780,165145,10 6566,6780,finishing,what is a man doing to a paper plane?,video6780,165146,10 6567,6780,glue,what is a person building and doing?,video6780,165147,10 6568,6780,fold,what is a person doing?,video6780,165148,10 6569,6780,play,what is a person doing?,video6780,165149,10 6570,6780,put,what is a person doing?,video6780,165150,10 6571,6780,finish,what is doing?,video6780,165151,10 6572,6780,paste,what is someone doing?,video6780,165152,10 6573,6780,person,who is applying glue to the tail of a paper plane?,video6780,165153,10 6574,6780,person,who is gluing the tail of a paper airplane?,video6780,165154,10 6575,6780,person,who demonstrates the last step in making a paper airplane?,video6780,165155,10 6576,6780,glue,what is a person putting on a paper airplane?,video6780,165156,10 6577,6780,person,who puts finishing touches on a small paper airplane?,video6780,165157,10 6578,6780,someone,who added glue to keep the plane together?,video6780,165158,10 6579,6780,finishing,what does a person put on a small paper airplane?,video6780,165159,10 6580,6780,man,who is doing the finishing touches to a paper plane?,video6780,165160,10 6581,6780,someone,who is pasting a paper for paper craft?,video6780,165161,10 6582,6780,person,who is putting glue on a paper airplane?,video6780,165162,10 6583,6780,glue,what is a person applying to the tail of a paper plane?,video6780,165163,10 6584,6781,cartoon,what flies against the air blown from a fan?,video6781,165164,13 6585,6781,fan,what does a cartoon bird fly against the air blown from?,video6781,165165,13 6586,6781,bird,what is switching on a fan and tv?,video6781,165166,13 6587,6781,cage,what does a commercial for a cartoon about a bird getting out of it s?,video6781,165167,13 6588,6781,bird,what turns on fan and television?,video6781,165168,13 6589,6781,trailer,who shows some movie scenes?,video6781,165169,13 6590,6781,sit,what is group of animals doing?,video6781,165170,13 6591,6781,play,what is an ad for a movie doing?,video6781,165171,13 6592,6781,fly,what is a movie trailer for despicable me shows a bird doing?,video6781,165172,13 6593,6781,switch,what is an animated bird doing?,video6781,165173,13 6594,6781,bird,what is flying around?,video6781,165174,13 6595,6781,movie,what does a movie trailer show?,video6781,165175,13 6596,6781,fly,what is a bird doing?,video6781,165176,13 6597,6781,room,what do animals fill?,video6781,165177,13 6598,6782,woman,who is dancing?,video6782,165178,0 6599,6782,person,who is singing?,video6782,165179,0 6600,6782,perform,what is woman doing?,video6782,165180,0 6601,6782,woman,who sings?,video6782,165181,0 6602,6782,play,what are people doing?,video6782,165182,0 6603,6782,woman,who preforms?,video6782,165183,0 6604,6782,feature,what is outdoor concert in britian doing?,video6782,165184,0 6605,6782,concert,what is a singer singing at?,video6782,165185,0 6606,6782,concert,what is a woman singing in?,video6782,165186,0 6607,6782,woman,who is singing on stage with a symphony?,video6782,165187,0 6608,6782,woman,who sings into a microphone in front of an audience?,video6782,165188,0 6609,6782,symphony,what is a woman singing on stage with?,video6782,165189,0 6610,6782,woman,who sings at an outdoor festival?,video6782,165190,0 6611,6782,stage,when is a woman singing with a symphony?,video6782,165191,0 6612,6782,woman,who is singing on stage?,video6782,165192,0 6613,6782,singer,who is singing at a concert?,video6782,165193,0 6614,6782,woman,who is singing in a concert?,video6782,165194,0 6615,6782,stage,when does a lady singer perform?,video6782,165195,0 6616,6782,singer,who performs on stage?,video6782,165196,0 6617,6782,stage,when is a woman singing?,video6782,165197,0 6618,6783,someone,who is filming a truck?,video6783,165198,9 6619,6783,truck,what is a person showing off?,video6783,165199,9 6620,6783,person,who is discussing a car?,video6783,165200,9 6621,6783,truck,what is someone filming?,video6783,165201,9 6622,6783,truck,what is a person talking about?,video6783,165202,9 6623,6783,car,what is a person discussing?,video6783,165203,9 6624,6783,truck,what does man examine?,video6783,165204,9 6625,6783,truck,what does a man give a tour of?,video6783,165205,9 6626,6783,someone,who is showing a beautiful car petrol cap?,video6783,165206,9 6627,6783,man,who is describing how his car works?,video6783,165207,9 6628,6783,man,who examines truck fuel door?,video6783,165208,9 6629,6783,person,who is showing off a red truck?,video6783,165209,9 6630,6783,person,who is showing a large red truck?,video6783,165210,9 6631,6783,man,who gives a tour of his truck?,video6783,165211,9 6632,6783,truck,what does a man open up the fuel door of a red pick up?,video6783,165212,9 6633,6783,man,who opens up the fuel door of a red pick up truck?,video6783,165213,9 6634,6783,man,who shows the fuel door of a red gmc pickup truck?,video6783,165214,9 6635,6783,person,who is talking about a truck?,video6783,165215,9 6636,6783,man,who opens the fuel door on a red pickup truck?,video6783,165216,9 6637,6783,cook,what is a man doing?,video6783,165217,9 6638,6783,describe,what is a man doing?,video6783,165218,9 6639,6783,discus,what is a person doing?,video6783,165219,9 6640,6783,show,what is a person doing?,video6783,165220,9 6641,6783,talk,what is a person doing?,video6783,165221,9 6642,6783,film,what is someone doing?,video6783,165222,9 6643,6784,hold,what is a man with a black hat doing?,video6784,165223,3 6644,6784,man,who speaks?,video6784,165224,3 6645,6784,baseball,who are various athletes driven to sucessed to even when the odds are against them warm up?,video6784,165225,3 6646,6784,man,who is looking?,video6784,165226,3 6647,6784,walk,what is there is a stadium with a group of men doing?,video6784,165227,3 6648,6784,motivate,what is the person doing?,video6784,165228,3 6649,6784,look,what is a man in cap doing?,video6784,165229,3 6650,6784,explain,what is a man doing?,video6784,165230,3 6651,6784,perform,what is a motivational video that a group doing?,video6784,165231,3 6652,6784,contemplate,what is a man in a sports uniform doing?,video6784,165232,3 6653,6784,wear,what is a man doing?,video6784,165233,3 6654,6784,look,what is a man doing?,video6784,165234,3 6655,6784,pan,what is doing?,video6784,165235,3 6656,6784,watch,what is there is a cap man doing?,video6784,165236,3 6657,6784,record,what is person doing?,video6784,165237,3 6658,6784,group,what is a man wearing black color dress walking with?,video6784,165238,3 6659,6784,pratice,what did a man explaining of something about the players engage in?,video6784,165239,3 6660,6784,guy,who talks while various athletes stretch and exercise?,video6784,165240,3 6661,6784,field,what do athletes stretch on while a man speaks?,video6784,165241,3 6662,6784,man,who cap looking seriously at something and few guys warming up?,video6784,165242,3 6663,6784,line,what is on the ground in a baseball stadium?,video6784,165243,3 6664,6784,man,who talks while music plays and a group of men walk through and exercise on a sport field?,video6784,165244,3 6665,6784,field,where do athletes stretch while a man speaks?,video6784,165245,3 6666,6784,music,what plays and a group of men walk through?,video6784,165246,3 6667,6784,music,what plays and a group of men exercise on a sport field?,video6784,165247,3 6668,6784,person,who is recording the street and the big stadium?,video6784,165248,3 6669,6784,person,who is motivating the people who are participating in the games?,video6784,165249,3 6670,6784,man,who is saying some innovative thoughts to players so that they can come up in life?,video6784,165250,3 6671,6784,four,how many people walk up to a cap man?,video6784,165251,3 6672,6785,man,who drives a vw fox?,video6785,165252,9 6673,6785,fox,what does a man drive?,video6785,165253,9 6674,6785,man,who is seen driving a red car?,video6785,165254,9 6675,6785,car,what is someone filming the interior of?,video6785,165255,9 6676,6785,test,what drives a little red car down the road?,video6785,165256,9 6677,6785,car,what vw fox driving down a road with a man inside?,video6785,165257,9 6678,6785,rain,what are red cars shown driving in in an advertisement for the volkswagen fox?,video6785,165258,9 6679,6785,man,who did a red car vw fox driving down a road with inside?,video6785,165259,9 6680,6785,review,what is a small red car by vw being shown off in?,video6785,165260,9 6681,6785,car,what is being driven on a country side road by a host of top gear?,video6785,165261,9 6682,6785,com,who is doing a review on a red volkswagen?,video6785,165262,9 6683,6785,car,what has a raised silver logo is parked perpendicular on a wide empty road has striped gray seats?,video6785,165263,9 6684,6785,man,who talks about the volkswagon fox while driving around one in red?,video6785,165264,9 6685,6785,someone,who is filming the interior of a car?,video6785,165265,9 6686,6785,road,what did a red car vw fox driving down with a man inside?,video6785,165266,9 6687,6785,fox,what did a red car vw driving down a road with a man inside?,video6785,165267,9 6688,6785,volkwagon,who is being driven down a road?,video6785,165268,9 6689,6785,road,what did a red new car park on?,video6785,165269,9 6690,6785,man,who is a red color car driven by?,video6785,165270,9 6691,6785,man,who is a small red car driving on a wet road then is describing it?,video6785,165271,9 6692,6785,road,what does a man test drive a little red car down?,video6785,165272,9 6693,6785,review,what is com doing on a red volkswagen?,video6785,165273,9 6694,6785,road,what is a red volkwagon being driven down?,video6785,165274,9 6695,6785,drive,what is a red color car parking and a man doing?,video6785,165275,9 6696,6785,drive,what is red cars are shown doing?,video6785,165276,9 6697,6785,drive,what is a man is seen doing?,video6785,165277,9 6698,6785,drive,what is a small red car doing?,video6785,165278,9 6699,6785,move,what is a red color car doing?,video6785,165279,9 6700,6785,drive,what is a red car vw fox doing?,video6785,165280,9 6701,6785,film,what is someone doing?,video6785,165281,9 6702,6785,drive,what is a british man talks about the volkswagon fox while doing?,video6785,165282,9 6703,6786,two,how many men are talking on the tv news?,video6786,165283,4 6704,6786,two,how many men are seated in a studio?,video6786,165284,4 6705,6786,two,how many men talk about matters of technology?,video6786,165285,4 6706,6786,man,who is the man in coat talking to in pink shirt by sitting on the chairs in the studio?,video6786,165286,4 6707,6786,two,how many men discuss the new apple iphone and what something might have?,video6786,165287,4 6708,6786,person,who is dressing interviewing with wearing coat while both are sitting in a studioa person having paper in hand with ping?,video6786,165288,4 6709,6786,two,how many men sit in tall stools in front of green displayed tv s about apple iphones?,video6786,165289,4 6710,6786,man,who speak to tv programm for visionaries inside the creative mino?,video6786,165290,4 6711,6786,two,how many men sit on counter height chairs while they talk to each other?,video6786,165291,4 6712,6786,ask,what is a man doing?,video6786,165292,4 6713,6786,two,how many men talk about the advances in telephone technology?,video6786,165293,4 6714,6786,iphone,who are two men on a financial show speaking about?,video6786,165294,4 6715,6786,sit,what are two men doing?,video6786,165295,4 6716,6786,iphone,who will have a much smaller footpring?,video6786,165296,4 6717,6786,studio,what are two men seated in?,video6786,165297,4 6718,6786,talk,what is the man in coat doing?,video6786,165298,4 6719,6786,talk,what is a gentleman doing?,video6786,165299,4 6720,6786,talk,what is two men doing?,video6786,165300,4 6721,6786,wear,what is a man in a black suit jacket doing?,video6786,165301,4 6722,6786,sit,what is two old man doing?,video6786,165302,4 6723,6786,speak,what are two men on a financial show doing?,video6786,165303,4 6724,6786,counter,what talk to each other?,video6786,165304,4 6725,6786,shirt,what is the man in coat talking to a man in by sitting on the chairs in the studio?,video6786,165305,4 6726,6786,two,how many men sit together?,video6786,165306,4 6727,6786,screen,what do two old man sitting beside one in blue and other in white color cloth dress speaking on topic television screen displaying on?,video6786,165307,4 6728,6786,discus,what is jim cramer and another man a seated on stools doing?,video6786,165308,4 6729,6787,kitchen,what is a chef using an oven in?,video6787,165309,17 6730,6787,put,what is a chef discusses doing?,video6787,165310,17 6731,6787,cook,what is a chef doing?,video6787,165311,17 6732,6787,cook,what is a man doing?,video6787,165312,17 6733,6787,chef,who discusses putting a dish into the oven?,video6787,165313,17 6734,6787,chef,who is puts a hot pot into a oven?,video6787,165314,17 6735,6787,man,who is preparing a meal in a kitchen?,video6787,165315,17 6736,6787,chef,who is using an oven in a kitchen?,video6787,165316,17 6737,6787,chef,who puts a pot into an oven?,video6787,165317,17 6738,6787,oven,what does a chef discuss putting a dish into?,video6787,165318,17 6739,6787,dish,what does a chef discuss putting into the oven?,video6787,165319,17 6740,6787,pot,what does a french chef put into an oven?,video6787,165320,17 6741,6787,oven,what does a french chef put a pot into?,video6787,165321,17 6742,6787,talk,what is a chef doing?,video6787,165322,17 6743,6787,oven,what is a chef puts a hot pot into?,video6787,165323,17 6744,6787,pot,what is a chef puts into a oven?,video6787,165324,17 6745,6787,prepare,what is a man doing?,video6787,165325,17 6746,6787,chef,who is cooking?,video6787,165326,17 6747,6787,food,what is a person making?,video6787,165327,17 6748,6787,video,what is someone playing?,video6787,165328,17 6749,6787,food,what is a chef cooking?,video6787,165329,17 6750,6787,someone,what is playing a video game?,video6787,165330,17 6751,6787,food,what a chef cooks?,video6787,165331,17 6752,6787,person,who is making food?,video6787,165332,17 6753,6787,chef,who is cooking food?,video6787,165333,17 6754,6787,chef,who cooks some food?,video6787,165334,17 6755,6787,chef,who describes how to make a recipe?,video6787,165335,17 6756,6787,meal,what is a man preparing in a kitchen?,video6787,165336,17 6757,6787,chef,who shows how he is making food?,video6787,165337,17 6758,6787,oven,what is a chef using in a kitchen?,video6787,165338,17 6759,6787,chef,who explains how to cook a recipe?,video6787,165339,17 6760,6787,use,what is in a kitchen a chef doing?,video6787,165340,17 6761,6787,play,what is someone doing?,video6787,165341,17 6762,6787,kitchen,what is a man preparing a meal in?,video6787,165342,17 6763,6788,food,what are two kids playing with in a kitchen?,video6788,165343,17 6764,6788,kitchen,what are two kids playing with food in?,video6788,165344,17 6765,6788,two,how many girls are being silly?,video6788,165345,17 6766,6788,friend,who does a girl then feed a snack to?,video6788,165346,17 6767,6788,food,what are kids playing with?,video6788,165347,17 6768,6788,meal,what do silly kids get?,video6788,165348,17 6769,6788,peanut,what do a young girl and boy eat?,video6788,165349,17 6770,6788,girl,who opens peanut butter?,video6788,165350,17 6771,6788,peanut,what does a girl open a jar of?,video6788,165351,17 6772,6788,peanut,what is a girl opening a jar of?,video6788,165352,17 6773,6788,eat,what is a boy and a girl playing with each other and doing?,video6788,165353,17 6774,6788,feed,what is a girl doing?,video6788,165354,17 6775,6788,play,what are kids doing?,video6788,165355,17 6776,6788,eat,what is this is a video of kids doing?,video6788,165356,17 6777,6788,food,what are two girls filming themselves making?,video6788,165357,17 6778,6788,play,what are two kids doing?,video6788,165358,17 6779,6788,talk,what is two little girls doing?,video6788,165359,17 6780,6788,girl,who is opening a jar of peanut butter?,video6788,165360,17 6781,6788,two,how many kids are playing with food in a kitchen?,video6788,165361,17 6782,6788,girl,who opens a jar of peanut butter?,video6788,165362,17 6783,6788,two,how many girls are filming themselves making food?,video6788,165363,17 6784,6788,film,what are two girls doing?,video6788,165364,17 6785,6789,trailer,who is moving upwards?,video6789,165365,7 6786,6789,poster,what does the avengers?,video6789,165366,7 6787,6789,poster,what is an up close shot shown of?,video6789,165367,7 6788,6789,trial,what do a english?,video6789,165368,7 6789,6789,poster,what is being shown?,video6789,165369,7 6790,6789,poster,what does an avengers?,video6789,165370,7 6791,6789,video,what does a ad about an avengers?,video6789,165371,7 6792,6789,left,what is an avengers movie poster on?,video6789,165372,7 6793,6789,frame,what shot of the movie poster for avengers 2?,video6789,165373,7 6794,6789,slideshow,who shows a movie trailer image?,video6789,165374,7 6795,6789,ultron,what does a shot of the poster for the film avenger s age of?,video6789,165375,7 6796,6789,left,where is an avengers movie poster?,video6789,165376,7 6797,6789,movie,what does viewing of a poster for the avengers?,video6789,165377,7 6798,6789,poster,what is an avengers movie poster on the right a close up of?,video6789,165378,7 6799,6789,ultron,what does a shot of the poster for the film avenger s?,video6789,165379,7 6800,6789,move,what is a trailer doing?,video6789,165380,7 6801,6789,play,what is music doing?,video6789,165381,7 6802,6789,move,what is two posters of the movie avengers age of ultron one bigger and doing?,video6789,165382,7 6803,6790,man,who is giving commentary?,video6790,165383,2 6804,6790,guy,who plays ice age video game?,video6790,165384,2 6805,6790,man,who is playing a video game?,video6790,165385,2 6806,6790,someone,what is playing a video game?,video6790,165386,2 6807,6790,video,what is a man playing?,video6790,165387,2 6808,6790,man,who moves his video game character around its world?,video6790,165388,2 6809,6790,someone,what is playing a game?,video6790,165389,2 6810,6790,game,what is someone playing?,video6790,165390,2 6811,6790,commentary,what is a man giving?,video6790,165391,2 6812,6790,ground,what is a cartoon dinosaur walking in?,video6790,165392,2 6813,6790,dinosaur,what is walking in the ground?,video6790,165393,2 6814,6790,video,what is a person playing?,video6790,165394,2 6815,6790,video,what walk through of animated animals fighting?,video6790,165395,2 6816,6790,man,who is commentating while playing a video game?,video6790,165396,2 6817,6790,game,what play footage of the ice age game?,video6790,165397,2 6818,6790,video,what walk through of animated animals jumping on each other with commentary?,video6790,165398,2 6819,6790,walk,what is a cartoon dinosaur doing?,video6790,165399,2 6820,6790,commentate,what is a man doing?,video6790,165400,2 6821,6790,play,what is a man doing?,video6790,165401,2 6822,6790,play,what is a person doing?,video6790,165402,2 6823,6790,play,what is gameplay footage of someone doing?,video6790,165403,2 6824,6790,play,what is people doing?,video6790,165404,2 6825,6790,play,what is someone doing?,video6790,165405,2 6826,6790,fight,what is video game walk through of animated animals doing?,video6790,165406,2 6827,6791,performance,what are judges clapping for?,video6791,165407,3 6828,6791,water,what do women surface above?,video6791,165408,3 6829,6791,water,what are four women performing in?,video6791,165409,3 6830,6791,water,what are four women performing under while judges are clapping their hands?,video6791,165410,3 6831,6791,audio,what does four women swiming in small boxes in front of simon cowell video have?,video6791,165411,3 6832,6791,video,what is shown of different people on a talent show swimming?,video6791,165412,3 6833,6791,four,how many women perform an act in water?,video6791,165413,3 6834,6791,four,how many women are watched by a panel of judges?,video6791,165414,3 6835,6791,four,how many women are performing under water while judges are clapping their hands?,video6791,165415,3 6836,6791,water,what do synchronized swimmers emerge from?,video6791,165416,3 6837,6791,four,how many women are performing in the water?,video6791,165417,3 6838,6791,perform,what is four women doing?,video6791,165418,3 6839,6791,dance,what is synchronized swimmers doing?,video6791,165419,3 6840,6791,clap,what are some woman s are in water and other s doing?,video6791,165420,3 6841,6791,swim,what are people doing?,video6791,165421,3 6842,6791,clap,what are judges doing?,video6791,165422,3 6843,6791,swim,what is four women doing?,video6791,165423,3 6844,6791,perform,what are four women doing?,video6791,165424,3 6845,6792,football,what play preceded by celebrating players?,video6792,165425,3 6846,6792,touchdown,what are video game football players celebrating?,video6792,165426,3 6847,6792,game,what play footage from madden?,video6792,165427,3 6848,6792,field,where are football players cheering?,video6792,165428,3 6849,6792,football,who are cheering on a field?,video6792,165429,3 6850,6792,football,who celebrate in a video game?,video6792,165430,3 6851,6792,celebrate,what are video game football players doing?,video6792,165431,3 6852,6792,play,what are people doing?,video6792,165432,3 6853,6792,fall,what are many video game football players doing?,video6792,165433,3 6854,6792,play,what is gameplay footage of someone doing?,video6792,165434,3 6855,6792,celebrate,what is a football play preceded by doing?,video6792,165435,3 6856,6792,cheer,what are football players doing?,video6792,165436,3 6857,6792,field,what are football players cheering on?,video6792,165437,3 6858,6792,football,what play?,video6792,165438,3 6859,6792,football,what game?,video6792,165439,3 6860,6792,footage,what do game play?,video6792,165440,3 6861,6793,girl,who is singing?,video6793,165441,14 6862,6793,drama,what is enacted?,video6793,165442,14 6863,6793,girl,who is singing in different scenes?,video6793,165443,14 6864,6793,woman,who is singing while a drama is enacted?,video6793,165444,14 6865,6793,girl,who is singing a song in front of other in a different manner?,video6793,165445,14 6866,6793,woman,who is doing a lipsync to a popular song?,video6793,165446,14 6867,6793,woman,who is sitting in the middle of a couch?,video6793,165447,14 6868,6793,girl,who looks into a camera in various scenes?,video6793,165448,14 6869,6793,lipsync,who is a woman doing to a popular song?,video6793,165449,14 6870,6793,talk,what is a music video doing?,video6793,165450,14 6871,6793,sit,what is a woman doing?,video6793,165451,14 6872,6794,man,who broke a basketball board?,video6794,165452,3 6873,6794,person,who dunking a basketball?,video6794,165453,3 6874,6794,top,where is a man jumping?,video6794,165454,3 6875,6794,gymnast,who is landing?,video6794,165455,3 6876,6794,man,who jumps onto a basketball hoop?,video6794,165456,3 6877,6794,man,who does some jumps at a basketball hoop?,video6794,165457,3 6878,6794,gymnast,who jumps over bar?,video6794,165458,3 6879,6794,man,who is jumping on top?,video6794,165459,3 6880,6794,top,what is a man jumping on?,video6794,165460,3 6881,6794,basketball,what does a person dunk?,video6794,165461,3 6882,6794,basketball,what did a man break?,video6794,165462,3 6883,6794,basketball,what hoop shattering?,video6794,165463,3 6884,6794,man,who falls down?,video6794,165464,3 6885,6794,bar,what does gymnast jump over?,video6794,165465,3 6886,6794,gymnast,who is jumping?,video6794,165466,3 6887,6794,shatter,what is a basketball hoop doing?,video6794,165467,3 6888,6794,jump,what is a gymnast doing?,video6794,165468,3 6889,6794,jump,what is a man doing?,video6794,165469,3 6890,6794,dunk,what is a person doing?,video6794,165470,3 6891,6794,jump,what is compilation of kids doing?,video6794,165471,3 6892,6794,jump,what is people doing?,video6794,165472,3 6893,6794,play,what is person doing?,video6794,165473,3 6894,6794,perform,what is video of athletes doing?,video6794,165474,3 6895,6795,talk,what is a girl is shown doing?,video6795,165475,11 6896,6795,discus,what is a video of a girl doing?,video6795,165476,11 6897,6795,travel,what is a woman gives tips on doing?,video6795,165477,11 6898,6795,speak,what is girl doing?,video6795,165478,11 6899,6795,discus,what is a woman doing?,video6795,165479,11 6900,6795,discus,what is the girl doing?,video6795,165480,11 6901,6795,woman,who is talking?,video6795,165481,11 6902,6795,something,what is a girl talking about?,video6795,165482,11 6903,6795,girl,who is making a video log?,video6795,165483,11 6904,6795,walk,what is girl doing?,video6795,165484,11 6905,6795,girl,who is talking about something?,video6795,165485,11 6906,6795,video,what is a girl making?,video6795,165486,11 6907,6795,girl,who is shown talking to the camera?,video6795,165487,11 6908,6795,woman,who gives tips on traveling to japan?,video6795,165488,11 6909,6795,woman,who speaks to a camera for a video segment?,video6795,165489,11 6910,6796,car,what are a mechanics testing the engine of?,video6796,165490,19 6911,6796,car,what do a group of men then begin loading in a trailer?,video6796,165491,19 6912,6796,workshop,what does a red car rev up inside of while other workers watch it?,video6796,165492,19 6913,6796,car,what are a bunch of people working in a warehouse with?,video6796,165493,19 6914,6796,car,what do other workers watch?,video6796,165494,19 6915,6796,warehouse,what are a bunch of people working in with a car?,video6796,165495,19 6916,6796,trailer,who do a group of men then begin loading car in?,video6796,165496,19 6917,6796,trailer,who do sportscars load one of them in?,video6796,165497,19 6918,6796,car,what drives through a busy factory?,video6796,165498,19 6919,6796,direction,what is the people standing beside giving to climb up?,video6796,165499,19 6920,6796,crowd,what gathered in a car workshop with any cars around?,video6796,165500,19 6921,6796,car,what is presented?,video6796,165501,19 6922,6796,car,what revs up inside of a workshop while other workers watch it?,video6796,165502,19 6923,6796,meander,what are some people in a warehouse doing?,video6796,165503,19 6924,6796,walk,what are some men doing?,video6796,165504,19 6925,6796,work,what are a bunch of people doing?,video6796,165505,19 6926,6796,move,what are people doing?,video6796,165506,19 6927,6796,work,what are in a car mechanic shed some people doing?,video6796,165507,19 6928,6796,check,what is mechanics in a garage testing and doing?,video6796,165508,19 6929,6796,load,what is a group of men look at a sports car and then begin doing?,video6796,165509,19 6930,6796,test,what are a mechanics doing?,video6796,165510,19 6931,6796,work,what are many people doing?,video6796,165511,19 6932,6796,work,what are some workers doing?,video6796,165512,19 6933,6796,car,what did mechanic shed some people are working and a man in black working on red colored car in?,video6796,165513,19 6934,6796,mechanic,who shed some people are working and a man in black working on red colored car in a car?,video6796,165514,19 6935,6796,man,who did mechanic shed some people are working in black working on red colored car in a car?,video6796,165515,19 6936,6797,game,what is a man talking to a players about?,video6797,165516,3 6937,6797,man,who interviews some rugby players?,video6797,165517,3 6938,6797,rugby,who are discussing pads vs no pads?,video6797,165518,3 6939,6797,man,who talks to rugby players?,video6797,165519,3 6940,6797,rugby,who a man interviews?,video6797,165520,3 6941,6797,rugby,who are interviewed on tv?,video6797,165521,3 6942,6797,soccer,who gives a talk?,video6797,165522,3 6943,6797,man,who are athletes talking to?,video6797,165523,3 6944,6797,talk,what is sports science team leader doing?,video6797,165524,3 6945,6797,force,what is a man talking about with rugby players?,video6797,165525,3 6946,6797,discus,what are rugby players doing?,video6797,165526,3 6947,6797,talk,what are athletes doing?,video6797,165527,3 6948,6797,talk,what is a person doing?,video6797,165528,3 6949,6797,speak,what is a man doing?,video6797,165529,3 6950,6797,explain,what is a man doing?,video6797,165530,3 6951,6797,talk,what is a guy doing?,video6797,165531,3 6952,6797,talk,what is a coach doing?,video6797,165532,3 6953,6797,talk,what does a soccer coach give?,video6797,165533,3 6954,6797,play,what is the players are get instructions for doing?,video6797,165534,3 6955,6797,man,who is talking about force with rugby players?,video6797,165535,3 6956,6797,history,when does a man talk to a group of rugby players?,video6797,165536,3 6957,6797,person,who is talking to a group of soccer player?,video6797,165537,3 6958,6797,man,who talks about sports history to a group of rugby players?,video6797,165538,3 6959,6797,man,who is speaking to a group of others?,video6797,165539,3 6960,6797,man,who is talking to a players about game?,video6797,165540,3 6961,6797,man,who is talking to a group of men about sports?,video6797,165541,3 6962,6797,rugby,who is a man talking about force with?,video6797,165542,3 6963,6797,man,who is explaining the science of sports to athletes?,video6797,165543,3 6964,6798,supermarket,what are two girls in?,video6798,165544,0 6965,6798,store,what is a girl singing in?,video6798,165545,0 6966,6798,camera,what does a woman sing to?,video6798,165546,0 6967,6798,song,what does a girl sing to?,video6798,165547,0 6968,6798,floor,what is woman singing on?,video6798,165548,0 6969,6798,market,what are two people in?,video6798,165549,0 6970,6798,store,what do girls sing in?,video6798,165550,0 6971,6798,pantry,what was the lady singing in?,video6798,165551,0 6972,6798,girl,who is singing in a store?,video6798,165552,0 6973,6798,woman,who is singing on the floor?,video6798,165553,0 6974,6798,girl,who sings to a song?,video6798,165554,0 6975,6798,woman,who sings sitting on the floor of a grocery store?,video6798,165555,0 6976,6798,two,how many girls are shown in some sort of market?,video6798,165556,0 6977,6798,woman,who is singing a song in a grocery store?,video6798,165557,0 6978,6798,woman,who is singing on a grocery store floor?,video6798,165558,0 6979,6798,two,how many girls are in a supermarket?,video6798,165559,0 6980,6798,lady,who was singing in pantry?,video6798,165560,0 6981,6798,woman,who sings in a convenience store?,video6798,165561,0 6982,6798,woman,who sings to the camera?,video6798,165562,0 6983,6798,two,how many people are in a market?,video6798,165563,0 6984,6798,girl,who is singing?,video6798,165564,0 6985,6798,sit,what is two people are in a market and doing?,video6798,165565,0 6986,6798,sit,what is a young woman sings doing?,video6798,165566,0 6987,6798,sit,what is a women sings while doing?,video6798,165567,0 6988,6799,band,what is performing in front of a large crowd?,video6799,165568,1 6989,6799,stage,when is another man playing drums?,video6799,165569,1 6990,6799,music,what is a band playing for a large audience ouside?,video6799,165570,1 6991,6799,band,what sings a song about people having power?,video6799,165571,1 6992,6799,band,what plays on stage to a large crowd?,video6799,165572,1 6993,6799,band,what is playing music for a large audience ouside?,video6799,165573,1 6994,6799,group,what performs to a crowded audience at an outside auditorium?,video6799,165574,1 6995,6799,perform,what is a rock band doing?,video6799,165575,1 6996,6799,play,what is a music group doing?,video6799,165576,1 6997,6799,play,what is a man doing?,video6799,165577,1 6998,6799,perform,what is a group doing?,video6799,165578,1 6999,6799,play,what is a clip of a band doing?,video6799,165579,1 7000,6799,play,what is a band doing?,video6799,165580,1 7001,6799,perform,what is a band doing?,video6799,165581,1 7002,6799,watch,what is many people at a concert doing?,video6799,165582,1 7003,6799,band,what is performing at an outdoor concert?,video6799,165583,1 7004,6799,man,who is playing drums in a stage?,video6799,165584,1 7005,6799,rock,what is performing to many fans?,video6799,165585,1 7006,6799,crowd,what stand?,video6799,165586,1 7007,6799,playing,who drums?,video6799,165587,1 7008,6799,song,what is a man singing?,video6799,165588,1 7009,6799,music,what do crowds listen to?,video6799,165589,1 7010,6799,band,what is performing at a concert?,video6799,165590,1 7011,6799,concert,what is a band performing at?,video6799,165591,1 7012,6799,man,who is playing drums?,video6799,165592,1 7013,6799,band,what performs for a large audience?,video6799,165593,1 7014,6799,man,who is singing a song?,video6799,165594,1 7015,6799,crowd,what listen to music?,video6799,165595,1 7016,6800,product,what is a person showing on the screen?,video6800,165596,13 7017,6800,storage,what is explained by a female narrator?,video6800,165597,13 7018,6800,tray,what is displayed on the screen?,video6800,165598,13 7019,6800,screen,what is a tray displayed on?,video6800,165599,13 7020,6800,screen,what is a person showing product on?,video6800,165600,13 7021,6800,person,who is showing product on the screen?,video6800,165601,13 7022,6800,describe,what is a advertisement doing?,video6800,165602,13 7023,6800,woman,who is describing the benefits of a plastic storage box from target?,video6800,165603,13 7024,6800,discus,what is a woman doing?,video6800,165604,13 7025,6800,money,what is some room essentials box shown in the online shop for?,video6800,165605,13 7026,6800,talk,what is there is a woman doing?,video6800,165606,13 7027,6800,woman,who is explaining about the product room essentials box file?,video6800,165607,13 7028,6800,show,what is a webpage doing?,video6800,165608,13 7029,6800,talk,what is a lady doing?,video6800,165609,13 7030,6800,explain,what is the woman doing?,video6800,165610,13 7031,6800,receipt,what is a webpage showing a plastic container for sale shown next to?,video6800,165611,13 7032,6800,show,what is a women doing?,video6800,165612,13 7033,6800,advertise,what is a picture doing?,video6800,165613,13 7034,6800,show,what is a person doing?,video6800,165614,13 7035,6801,playing,what does a round ball of animation play with?,video6801,165615,4 7036,6801,globe,what reflects pictures from around the world as it spins?,video6801,165616,4 7037,6801,stand,what is a woman with long black hair doing?,video6801,165617,4 7038,6801,globe,what animated ball spinning around with various pictures around the world inside of it?,video6801,165618,4 7039,6801,screen,what are reflective spherical images moving on?,video6801,165619,4 7040,6801,ball,what do globe animate spinning around with various pictures around the world inside of it?,video6801,165620,4 7041,6801,design,what do a tittle oriented casting page of chanel tv with?,video6801,165621,4 7042,6801,show,what is red animated spheres doing?,video6801,165622,4 7043,6801,play,what is an advertisement of a television doing?,video6801,165623,4 7044,6801,move,what are reflective spherical images doing?,video6801,165624,4 7045,6801,float,what is an orb with people inside of it that doing?,video6801,165625,4 7046,6801,cast,what is a tittle oriented doing?,video6801,165626,4 7047,6801,spin,what is globe animated ball doing?,video6801,165627,4 7048,6801,float,what is shows a computer imaged ball doing?,video6801,165628,4 7049,6801,float,what is orange orb doing?,video6801,165629,4 7050,6801,move,what is there are some people doing?,video6801,165630,4 7051,6801,ball,what rolls which shows the people and the city pictures on the graphics?,video6801,165631,4 7052,6801,computer,what are shown as a theme for the news channel?,video6801,165632,4 7053,6801,ball,what do a round with building and people in them?,video6801,165633,4 7054,6801,globe,what spins?,video6801,165634,4 7055,6802,woman,who is interviewing three young girls?,video6802,165635,6 7056,6802,woman,who is asking three girls questions?,video6802,165636,6 7057,6802,stage,when are girls talking?,video6802,165637,6 7058,6802,stage,when are three girls interviewed?,video6802,165638,6 7059,6802,talk,what is kids on stage doing?,video6802,165639,6 7060,6802,talk,what are girls doing?,video6802,165640,6 7061,6802,interview,what is a woman doing?,video6802,165641,6 7062,6802,ask,what is a woman doing?,video6802,165642,6 7063,6802,stand,what is a woman and three girls doing?,video6802,165643,6 7064,6802,ask,what is a television program host doing?,video6802,165644,6 7065,6802,ask,what is a lady doing?,video6802,165645,6 7066,6802,talk,what is a group of girls and a woman doing?,video6802,165646,6 7067,6802,talk,what is three girls and a woman doing?,video6802,165647,6 7068,6802,three,how many questions is a woman asking?,video6802,165648,6 7069,6802,woman,who asks little girls questions?,video6802,165649,6 7070,6802,stage,when is a video shown of three girls?,video6802,165650,6 7071,6802,woman,who talks to three girls on a stage?,video6802,165651,6 7072,6802,three,how many children s introduce there in a stage?,video6802,165652,6 7073,6802,woman,who speaks to three little girls on stage?,video6802,165653,6 7074,6802,three,how many young girls are interviewed on a stage?,video6802,165654,6 7075,6802,video,what is shown of three girls on stage?,video6802,165655,6 7076,6802,something,what is a group of girls and a woman talking about?,video6802,165656,6 7077,6802,stage,when are three young girls interviewed?,video6802,165657,6 7078,6802,stage,when does three children s introduce there?,video6802,165658,6 7079,6802,three,how many young girls is a woman interviewing?,video6802,165659,6 7080,6802,three,how many girls are interviewed on stage?,video6802,165660,6 7081,6803,face,what is a woman showing makeup for?,video6803,165661,10 7082,6803,girl,who puts make up in the cheek?,video6803,165662,10 7083,6803,makeup,what is a woman showing for the face?,video6803,165663,10 7084,6803,woman,who is applying makeup?,video6803,165664,10 7085,6803,girl,who shows how to select a?,video6803,165665,10 7086,6803,lady,who is reviewing?,video6803,165666,10 7087,6803,cheek,what does a girl put make up in?,video6803,165667,10 7088,6803,makeup,what is a woman applying?,video6803,165668,10 7089,6803,lady,who is speaking about make up products?,video6803,165669,10 7090,6803,woman,who is showing makeup for the face?,video6803,165670,10 7091,6803,lady,who is talking with black color dress?,video6803,165671,10 7092,6803,woman,who is discussing how a gwen stefani makeup item looks on the inside?,video6803,165672,10 7093,6803,girl,who shows how to use a make up box to the face?,video6803,165673,10 7094,6803,woman,who holds up a gwen stefani make up pallet and discusses its gold and white packaging?,video6803,165674,10 7095,6803,woman,who is discussing how a gwen stefani makeup item is packaged?,video6803,165675,10 7096,6803,woman,who does a makeup tutorial with the urban decay gwen stefani palette?,video6803,165676,10 7097,6803,put,what is lady in black shirt doing?,video6803,165677,10 7098,6803,wear,what is a women doing?,video6803,165678,10 7099,6803,show,what is women doing?,video6803,165679,10 7100,6803,review,what is a lady doing?,video6803,165680,10 7101,6803,talk,what is a lady doing?,video6803,165681,10 7102,6803,discus,what is a young woman doing?,video6803,165682,10 7103,6803,girl,who shows some box of colors?,video6803,165683,10 7104,6803,stefani,who does a woman hold up make up pallet and discusses its gold and white packaging?,video6803,165684,10 7105,6803,woman,who is disappointed by the inside of the packaging?,video6803,165685,10 7106,6803,use,what is a woman explains about the eyeliner she doing?,video6803,165686,10 7107,6803,show,what is a woman doing?,video6803,165687,10 7108,6803,speak,what is a woman in black dress doing?,video6803,165688,10 7109,6804,man,who gives a presentation?,video6804,165689,4 7110,6804,man,who is sitting at his computer?,video6804,165690,4 7111,6804,expression,what does a woman show?,video6804,165691,4 7112,6804,computer,what is a man sitting at?,video6804,165692,4 7113,6804,hand,what do a woman grabs man?,video6804,165693,4 7114,6804,presentation,what does a man give?,video6804,165694,4 7115,6804,blonde,who sits?,video6804,165695,4 7116,6804,woman,who talks?,video6804,165696,4 7117,6804,room,what is a man in using the computer?,video6804,165697,4 7118,6804,hand,what does a woman grabs a man s?,video6804,165698,4 7119,6804,woman,who shows sad expression?,video6804,165699,4 7120,6804,camera,what does a woman grabs a man speak to?,video6804,165700,4 7121,6804,expres,what is a lady doing?,video6804,165701,4 7122,6804,use,what is a man is in his room doing?,video6804,165702,4 7123,6804,put,what is a woman doing?,video6804,165703,4 7124,6804,talk,what is a woman doing?,video6804,165704,4 7125,6804,sit,what is a woman talks and then a man doing?,video6804,165705,4 7126,6804,read,what is news reader doing?,video6804,165706,4 7127,6804,woman,who holds the outside of a house is shown?,video6804,165707,4 7128,6804,woman,what mans hand?,video6804,165708,4 7129,6804,woman,who holds a man s hand?,video6804,165709,4 7130,6804,hand,what does a woman hold a man s?,video6804,165710,4 7131,6804,man,who does a woman hold s hand?,video6804,165711,4 7132,6804,house,what appears later with a guy on the computer?,video6804,165712,4 7133,6804,man,who is in his room using the computer?,video6804,165713,4 7134,6804,hand,what does a blonde woman put on a mans hand?,video6804,165714,4 7135,6804,man,who sits in front of a computer?,video6804,165715,4 7136,6805,person,who is playing archery?,video6805,165716,3 7137,6805,something,what is a person explaining?,video6805,165717,3 7138,6805,bow,what does man shoot?,video6805,165718,3 7139,6805,arrow,what is hitting a man?,video6805,165719,3 7140,6805,person,who is explaining something?,video6805,165720,3 7141,6805,man,who is an arrow hitting?,video6805,165721,3 7142,6805,man,who shoots a bow and arrow?,video6805,165722,3 7143,6805,someone,who is shooting arrows?,video6805,165723,3 7144,6805,man,who hit by arrow?,video6805,165724,3 7145,6805,man,who is shooting a bow and arrow?,video6805,165725,3 7146,6805,arrow,what did a man hit by?,video6805,165726,3 7147,6805,person,who fires an arrow using a bow?,video6805,165727,3 7148,6805,man,who shoots a bow?,video6805,165728,3 7149,6805,use,what is a person fires an arrow doing?,video6805,165729,3 7150,6805,show,what is video doing?,video6805,165730,3 7151,6805,shoot,what is someone doing?,video6805,165731,3 7152,6805,play,what is men doing?,video6805,165732,3 7153,6805,shoot,what is man doing?,video6805,165733,3 7154,6805,shoot,what is a man doing?,video6805,165734,3 7155,6805,hit,what is an arrow doing?,video6805,165735,3 7156,6805,play,what is a person doing?,video6805,165736,3 7157,6805,explain,what is a person doing?,video6805,165737,3 7158,6805,shoot,what is guys doing?,video6805,165738,3 7159,6806,motorcycle,what does the player drive?,video6806,165739,9 7160,6806,video,what is someone playing?,video6806,165740,9 7161,6806,motorcycle,what is a man driving?,video6806,165741,9 7162,6806,someone,what is playing a video game?,video6806,165742,9 7163,6806,gameplay,who does a man talk about?,video6806,165743,9 7164,6806,man,who is talking about a video game while showing him playing the game driving around a city street on a motorcycle?,video6806,165744,9 7165,6806,man,who talks about gta gameplay?,video6806,165745,9 7166,6806,man,who is playing a motorcycle video game?,video6806,165746,9 7167,6806,man,who is making tricks?,video6806,165747,9 7168,6806,man,who is driving a motorcycle?,video6806,165748,9 7169,6806,man,who demonstrates how to play a video game?,video6806,165749,9 7170,6806,player,who drives the motorcycle?,video6806,165750,9 7171,6806,play,what is someone doing?,video6806,165751,9 7172,6806,explain,what is men doing?,video6806,165752,9 7173,6806,play,what is a person doing?,video6806,165753,9 7174,6806,review,what is a man doing?,video6806,165754,9 7175,6806,play,what is a man doing?,video6806,165755,9 7176,6806,drive,what is a man doing?,video6806,165756,9 7177,6806,describe,what is a male voiceover doing?,video6806,165757,9 7178,6806,talk,what is a guy doing?,video6806,165758,9 7179,6807,room,what does a man apply makeup in?,video6807,165759,10 7180,6807,put,what is a man doing?,video6807,165760,10 7181,6807,style,what is a man doing?,video6807,165761,10 7182,6807,fix,what is man doing?,video6807,165762,10 7183,6807,man,who shows how to shape eyebrows with makeup?,video6807,165763,10 7184,6807,man,who applies makeup in a room?,video6807,165764,10 7185,6807,man,who puts on mascara?,video6807,165765,10 7186,6807,man,who is drawing on eyebrows?,video6807,165766,10 7187,6807,makeup,what does a man apply in a room?,video6807,165767,10 7188,6807,man,who is putting on makeup?,video6807,165768,10 7189,6807,man,who applies makeup?,video6807,165769,10 7190,6807,makeup,what does a man apply?,video6807,165770,10 7191,6807,mascara,what does a man put on?,video6807,165771,10 7192,6807,makeup,what is a man putting on?,video6807,165772,10 7193,6807,man,who is applying make up?,video6807,165773,10 7194,6807,draw,what is a man doing?,video6807,165774,10 7195,6807,brush,what is a man doing?,video6807,165775,10 7196,6807,show,what is a clip doing?,video6807,165776,10 7197,6807,groom,what is a man doing?,video6807,165777,10 7198,6808,man,who is mixing a recipe in a bowl?,video6808,165778,16 7199,6808,man,who is cooking?,video6808,165779,16 7200,6808,food,what is a man cooking?,video6808,165780,16 7201,6808,something,what is a person cooking?,video6808,165781,16 7202,6808,food,what is a man mixing?,video6808,165782,16 7203,6808,recipe,what is a person preparing?,video6808,165783,16 7204,6808,man,who is cooking something?,video6808,165784,16 7205,6808,man,who is cooking food?,video6808,165785,16 7206,6808,woman,who mixes some food ingredients in the kitchen?,video6808,165786,16 7207,6808,man,who is mixing food ingredients?,video6808,165787,16 7208,6808,man,who is mixing a butter and hot milk in a bowl?,video6808,165788,16 7209,6808,bowl,what is a man mixing a butter and hot milk in?,video6808,165789,16 7210,6808,teach,what is a man cooking and doing?,video6808,165790,16 7211,6808,man,who is giving instructions in making food?,video6808,165791,16 7212,6808,person,who is preparing a recipe?,video6808,165792,16 7213,6808,mix,what is a man doing?,video6808,165793,16 7214,6808,cook,what is a man doing?,video6808,165794,16 7215,6808,cook,what is a person doing?,video6808,165795,16 7216,6808,mix,what is chef doing?,video6808,165796,16 7217,6808,mix,what is man doing?,video6808,165797,16 7218,6808,prepare,what is person doing?,video6808,165798,16 7219,6808,show,what is someone doing?,video6808,165799,16 7220,6808,prepare,what is a person doing?,video6808,165800,16 7221,6809,sex,what are a man and woman having?,video6809,165801,0 7222,6809,man,who does a woman remember passionately kissing?,video6809,165802,0 7223,6809,man,who is a woman kissing?,video6809,165803,0 7224,6809,sex,what do people have?,video6809,165804,0 7225,6809,couple,what is being intimate?,video6809,165805,0 7226,6809,couple,what is being romantic?,video6809,165806,0 7227,6809,video,what is about a movie teaser?,video6809,165807,0 7228,6809,woman,who remembers passionately kissing a man?,video6809,165808,0 7229,6809,kis,what are man in woman doing?,video6809,165809,0 7230,6809,woman,who is kissing a man?,video6809,165810,0 7231,6809,kis,what is fucking and doing?,video6809,165811,0 7232,6809,kis,what is couples doing?,video6809,165812,0 7233,6809,kis,what is a woman remembers passionately doing?,video6809,165813,0 7234,6809,kis,what is a woman doing?,video6809,165814,0 7235,6809,sex,what are a man and woman having then kissing?,video6809,165815,0 7236,6810,two,how many women are in a room with a small baby?,video6810,165816,14 7237,6810,guide,what is a woman in a blue shirt doing?,video6810,165817,14 7238,6810,lie,what is a physiotherapist explains to a lady with her baby doing?,video6810,165818,14 7239,6810,train,what is a female fitness expert doing?,video6810,165819,14 7240,6810,sit,what is a personal trainer doing?,video6810,165820,14 7241,6810,teach,what is a lady doing?,video6810,165821,14 7242,6810,lie,what is a lady doing?,video6810,165822,14 7243,6810,child,who is a lady lying on?,video6810,165823,14 7244,6810,baby,who are two women doing exercises with inside?,video6810,165824,14 7245,6810,baby,who are two ladies doing some exercises with?,video6810,165825,14 7246,6810,lady,who is lying on the child?,video6810,165826,14 7247,6810,yoga,what is a woman in colorful pants doing?,video6810,165827,14 7248,6810,two,how many women are doing exercises with a baby inside?,video6810,165828,14 7249,6810,woman,who shows how to do exercises with a baby?,video6810,165829,14 7250,6810,woman,who describes and another demostrates the baby pushup for new mothers?,video6810,165830,14 7251,6810,two,how many ladies are doing some exercises with small baby?,video6810,165831,14 7252,6810,baby,who does a woman in a pink shirt do a push up over?,video6810,165832,14 7253,6810,child,who is a person with pink dressing play?,video6810,165833,14 7254,6811,cat,what does a baby play with?,video6811,165834,13 7255,6811,cat,what is a baby next to?,video6811,165835,13 7256,6811,cat,what is a baby playing with?,video6811,165836,13 7257,6811,kid,who is pet playing with?,video6811,165837,13 7258,6811,pet,what is playing with kid?,video6811,165838,13 7259,6811,baby,who is next to a cat?,video6811,165839,13 7260,6811,baby,who is playing with a cat?,video6811,165840,13 7261,6811,cat,what does a young boy lie down with?,video6811,165841,13 7262,6811,boy,who lies down with a cat?,video6811,165842,13 7263,6811,baby,who is a black and white cat laying with?,video6811,165843,13 7264,6811,baby,who plays with a cat?,video6811,165844,13 7265,6811,lay,what is baby doing?,video6811,165845,13 7266,6811,play,what is pet doing?,video6811,165846,13 7267,6811,play,what is kid doing?,video6811,165847,13 7268,6811,lay,what is kid and cat doing?,video6811,165848,13 7269,6811,play,what is a child doing?,video6811,165849,13 7270,6811,star,what are a boy and a cat doing?,video6811,165850,13 7271,6811,lay,what is a black and white cat doing?,video6811,165851,13 7272,6811,lie,what is a baby doing?,video6811,165852,13 7273,6811,play,what is a baby doing?,video6811,165853,13 7274,6811,lay,what is a baby and a cat doing?,video6811,165854,13 7275,6811,play,what are a baby and a cat doing?,video6811,165855,13 7276,6811,interact,what are a baby and a cat doing?,video6811,165856,13 7277,6812,hurdle,what is a horse jumping over?,video6812,165857,13 7278,6812,play,what is a man doing?,video6812,165858,13 7279,6812,jump,what is a horse doing?,video6812,165859,13 7280,6812,jump,what are horses doing?,video6812,165860,13 7281,6812,horse,what is jumping?,video6812,165861,13 7282,6812,horse,what is jumping outside?,video6812,165862,13 7283,6812,house,what is a man trained?,video6812,165863,13 7284,6812,horse,what does jumps over obstacles?,video6812,165864,13 7285,6812,horse,what is jumping over obstacles?,video6812,165865,13 7286,6812,horse,what is jumping over a hurdle?,video6812,165866,13 7287,6812,horse,what performs some tricks?,video6812,165867,13 7288,6812,horse,what is jumping over the bar?,video6812,165868,13 7289,6812,man,who is trained the house?,video6812,165869,13 7290,6812,horse,what jumps over obstacles in slow motion?,video6812,165870,13 7291,6812,jump,what is a video of horses doing?,video6812,165871,13 7292,6813,desk,what does a man in glasses sit at on which there is a computer?,video6813,165872,5 7293,6813,cloth,what do a still image of cartoons and person in black color dress wearing sitting?,video6813,165873,5 7294,6813,text,what is on a pink tag?,video6813,165874,5 7295,6813,person,who explains some historic values?,video6813,165875,5 7296,6813,man,who is sitting in the room?,video6813,165876,5 7297,6813,talk,what is guy in glass and coat doing?,video6813,165877,5 7298,6813,college,what is introduced the new professional course?,video6813,165878,5 7299,6813,sit,what is a man doing?,video6813,165879,5 7300,6813,talk,what is a man doing?,video6813,165880,5 7301,6813,wear,what is the man doing?,video6813,165881,5 7302,6813,depict,what is many cartoon characters doing?,video6813,165882,5 7303,6813,talk,what is a man with a globe on the side of him doing?,video6813,165883,5 7304,6813,speak,what is cartoons cuts out to man with glasses and brown hair doing?,video6813,165884,5 7305,6813,fly,what is there is a suit man doing?,video6813,165885,5 7306,6813,man,who discusses how over two thousand years islam went from nonexistence to a major religion?,video6813,165886,5 7307,6813,end,where does crash course in world history guy start to talk?,video6813,165887,5 7308,6813,man,who gives a history lecture on the islamic religion?,video6813,165888,5 7309,6813,end,what does crash course in world history guy start to talk at?,video6813,165889,5 7310,6813,wear,what is a still image of cartoons and person in black color dress doing?,video6813,165890,5 7311,6813,topic,what do a still image of cartoons and person in black color dress wearing cloth speaking on religious displaying on screen?,video6813,165891,5 7312,6813,room,what is a man sitting in?,video6813,165892,5 7313,6813,man,who is talking?,video6813,165893,5 7314,6813,cloth,what do a still image of cartoons and person in black color dress wearing speaking on topic religious displaying on screen?,video6813,165894,5 7315,6814,woman,who goes upstairs to see a garden?,video6814,165895,0 7316,6814,woman,who walks into a garden?,video6814,165896,0 7317,6814,woman,who steps out of a cellar?,video6814,165897,0 7318,6814,woman,who is walking in a garden?,video6814,165898,0 7319,6814,garden,what does a woman go upstairs to see?,video6814,165899,0 7320,6814,stairwell,what the woman exits?,video6814,165900,0 7321,6814,woman,who exits the stairwell?,video6814,165901,0 7322,6814,cellar,what does a woman step out of?,video6814,165902,0 7323,6814,garden,what is a woman walking in?,video6814,165903,0 7324,6814,woman,who is walking outside?,video6814,165904,0 7325,6814,woman,who is astonished?,video6814,165905,0 7326,6814,garden,what does a woman enter from below?,video6814,165906,0 7327,6814,garden,what does the woman walk into?,video6814,165907,0 7328,6814,woman,who walks around a beautiful garden?,video6814,165908,0 7329,6814,woman,who enters a garden from below?,video6814,165909,0 7330,6814,woman,who ascends from an underground staircase into a garden?,video6814,165910,0 7331,6814,woman,who walks up to a rooftop desert garden?,video6814,165911,0 7332,6814,garden,what does a woman ascend from an underground staircase into?,video6814,165912,0 7333,6814,walk,what is woman doing?,video6814,165913,0 7334,6814,walk,what is a woman doing?,video6814,165914,0 7335,6814,scene,what is shown from a television show with a girl walking into a cool place?,video6814,165915,0 7336,6814,feature,what is a short clip from a movie doing?,video6814,165916,0 7337,6814,walk,what is a scene is shown from a television show with a girl doing?,video6814,165917,0 7338,6814,walk,what is a girl doing?,video6814,165918,0 7339,6814,woman,who is shown walking into a garden area?,video6814,165919,0 7340,6814,walk,what is a woman is shown doing?,video6814,165920,0 7341,6814,woman,who goes out into a gazebo?,video6814,165921,0 7342,6815,dres,what is dog wearing?,video6815,165922,17 7343,6815,man,who is showing his food?,video6815,165923,17 7344,6815,dres,what is a dog wearing?,video6815,165924,17 7345,6815,owner,who is a dog looking at?,video6815,165925,17 7346,6815,food,what is a man showing?,video6815,165926,17 7347,6815,dog,what is panting?,video6815,165927,17 7348,6815,dog,what is standing?,video6815,165928,17 7349,6815,kitchen,what is a dog wondering in?,video6815,165929,17 7350,6815,dog,what is wearing a dress?,video6815,165930,17 7351,6815,dog,what is wearing a purple dress?,video6815,165931,17 7352,6815,dog,what does a man talk to while cooking?,video6815,165932,17 7353,6815,husky,what og dressed in dress?,video6815,165933,17 7354,6815,man,who cooks food for his dog?,video6815,165934,17 7355,6815,man,who talks to his dog while cooking?,video6815,165935,17 7356,6815,kitchen,what is a husky dog shown dressed up in?,video6815,165936,17 7357,6815,kitchen,what did a husky dress in a purple dress then a plate of food in?,video6815,165937,17 7358,6815,husky,what dressed in a purple dress then a plate of food in the kitchen?,video6815,165938,17 7359,6815,dog,what is waiting for food its to finish in the kitchen?,video6815,165939,17 7360,6815,food,what is a dog wearing an apron waiting for to finish cooking?,video6815,165940,17 7361,6815,dog,what is wondering in the kitchen?,video6815,165941,17 7362,6815,dres,what do husky og dressed in?,video6815,165942,17 7363,6815,husky,what is shown dressed up in a kitchen?,video6815,165943,17 7364,6815,pant,what is a dog doing?,video6815,165944,17 7365,6815,wear,what is dog doing?,video6815,165945,17 7366,6815,cook,what is doing?,video6815,165946,17 7367,6815,train,what is a man doing?,video6815,165947,17 7368,6815,cook,what is a man talks to his dog while doing?,video6815,165948,17 7369,6815,look,what is a dog doing?,video6815,165949,17 7370,6815,show,what is a man doing?,video6815,165950,17 7371,6815,wonder,what is a dog doing?,video6815,165951,17 7372,6815,wear,what is a dog doing?,video6815,165952,17 7373,6815,wait,what is a dog doing?,video6815,165953,17 7374,6815,stand,what is a dog doing?,video6815,165954,17 7375,6815,talk,what is a man doing?,video6815,165955,17 7376,6816,man,who is serving drinks?,video6816,165956,11 7377,6816,beer,what are on a bar?,video6816,165957,11 7378,6816,drink,what does a bartender pour?,video6816,165958,11 7379,6816,production,what does a woman speak about?,video6816,165959,11 7380,6816,restaurant,what are people drinking in?,video6816,165960,11 7381,6816,beer,what are people drinking?,video6816,165961,11 7382,6816,guines,who are people drinking?,video6816,165962,11 7383,6816,table,what does a man arrange drinks on?,video6816,165963,11 7384,6816,beer,what are people drinking glasses of?,video6816,165964,11 7385,6816,bar,what are glasses of beer on?,video6816,165965,11 7386,6816,bartender,who pours a drink?,video6816,165966,11 7387,6816,woman,who is talking about how many pints of beer working hours sell a day?,video6816,165967,11 7388,6816,lady,who is talking about brewing 4 million pints of guinness beer per day?,video6816,165968,11 7389,6816,man,who is serve a glass with ram to some guys in a bar?,video6816,165969,11 7390,6816,woman,who is talking while someone is serving drinks?,video6816,165970,11 7391,6816,glas,what is a man serve with ram to some guys in a bar?,video6816,165971,11 7392,6816,ram,what is a man serve a glass with to some guys in a bar?,video6816,165972,11 7393,6816,man,who arranges drinks on a table?,video6816,165973,11 7394,6816,woman,who speaks about guinness production?,video6816,165974,11 7395,6816,day,when is a woman talking about how many pints of beer working hours sell?,video6816,165975,11 7396,6816,bartender,who is preparing alcoholic drinks?,video6816,165976,11 7397,6816,prepare,what is a bartender doing?,video6816,165977,11 7398,6816,involve,what is a cartoon doing?,video6816,165978,11 7399,6816,talk,what is a lady doing?,video6816,165979,11 7400,6816,serve,what is a man doing?,video6816,165980,11 7401,6816,work,what is a video of bar during doing?,video6816,165981,11 7402,6816,talk,what is a woman doing?,video6816,165982,11 7403,6816,drink,what are people doing?,video6816,165983,11 7404,6816,sample,what are people doing?,video6816,165984,11 7405,6816,grab,what is people doing?,video6816,165985,11 7406,6817,space,what does matt damon wear?,video6817,165986,7 7407,6817,martian,who bring the movie trailer home?,video6817,165987,7 7408,6817,man,who is wearing helmet?,video6817,165988,7 7409,6817,martian,who is the end of a youtube video advertising?,video6817,165989,7 7410,6817,helmet,what is a man wearing?,video6817,165990,7 7411,6817,man,who is stanging?,video6817,165991,7 7412,6817,trailer,who is featured from the motion picture film?,video6817,165992,7 7413,6817,damon,who is inside of a space suit in a movie?,video6817,165993,7 7414,6817,person,who helmet still image and boy holding machine displaying on screen?,video6817,165994,7 7415,6817,damon,who determines how to grow food on mars?,video6817,165995,7 7416,6817,machine,what did a person wearing helmet still image and boy holding displaying on screen?,video6817,165996,7 7417,6817,damon,who wears a space suit?,video6817,165997,7 7418,6817,nasa,what does a man stuck on mars try to contact?,video6817,165998,7 7419,6817,ask,what is an advertisement from the movie martian and it doing?,video6817,165999,7 7420,6817,advertise,what is the end of a youtube video doing?,video6817,166000,7 7421,6817,wear,what is a person doing?,video6817,166001,7 7422,6817,feature,what is a sneak preview of the martian starring matt damon doing?,video6817,166002,7 7423,6817,wear,what is a man doing?,video6817,166003,7 7424,6817,talk,what is there is a man doing?,video6817,166004,7 7425,6817,watch,what is there is a man doing?,video6817,166005,7 7426,6818,goal,what does a man make during a soccer game?,video6818,166006,3 7427,6818,play,what is there are people doing?,video6818,166007,3 7428,6818,play,what is men doing?,video6818,166008,3 7429,6818,score,what is a soccer player doing?,video6818,166009,3 7430,6818,man,who makes a goal during a soccer game?,video6818,166010,3 7431,6818,music,what did footage of a football goal set to?,video6818,166011,3 7432,6818,soccer,who scores a goal?,video6818,166012,3 7433,6818,soccer,what scores a goal?,video6818,166013,3 7434,6818,soccer,who makes a goal?,video6818,166014,3 7435,6818,goal,what a soccer player scores?,video6818,166015,3 7436,6818,goal,what a soccer team scores?,video6818,166016,3 7437,6818,goal,what does soccer player make?,video6818,166017,3 7438,6818,soccer,what do people watch?,video6818,166018,3 7439,6818,play,what is two teams doing?,video6818,166019,3 7440,6818,man,who misses?,video6818,166020,3 7441,6818,soccer,what is shown?,video6818,166021,3 7442,6819,monitor,what is man moving the object on?,video6819,166022,2 7443,6819,object,what is man moving on the monitor?,video6819,166023,2 7444,6819,player,what is man with strategy on his computer?,video6819,166024,2 7445,6819,man,who is telling about a video game?,video6819,166025,2 7446,6819,boy,who is playing a game?,video6819,166026,2 7447,6819,man,who is playing a video game?,video6819,166027,2 7448,6819,person,who already place in the screen?,video6819,166028,2 7449,6819,game,what is a young boy playing?,video6819,166029,2 7450,6819,game,what is man playing?,video6819,166030,2 7451,6819,video,what are two persons playing?,video6819,166031,2 7452,6819,place,what is the person moving the items from to other with click of the mouse?,video6819,166032,2 7453,6819,internet,what are two persons playing from different places through?,video6819,166033,2 7454,6819,boy,who is explaining how to play a video game?,video6819,166034,2 7455,6819,man,who plays an rpg on his computer?,video6819,166035,2 7456,6819,man,who is player game with strategy on his computer?,video6819,166036,2 7457,6819,man,who is playing a video game while chatting live?,video6819,166037,2 7458,6819,man,who is moving the object on the monitor?,video6819,166038,2 7459,6819,two,how many persons are playing a video game?,video6819,166039,2 7460,6819,video,what was the men calling at the same time playing the game?,video6819,166040,2 7461,6819,person,who is moving the items from one place to other with click of the mouse?,video6819,166041,2 7462,6819,two,how many persons are playing from different places through internet?,video6819,166042,2 7463,6819,video,what is a man playing while chatting live?,video6819,166043,2 7464,6819,man,who wears white headphones and talks to other players?,video6819,166044,2 7465,6819,man,who moves items on the screen and talks to his gamer friend?,video6819,166045,2 7466,6819,man,who talks about how to make things on a game he is wearing white headphones?,video6819,166046,2 7467,6819,play,what is people doing?,video6819,166047,2 7468,6819,video,what is a man playing?,video6819,166048,2 7469,6819,screen,what do the person already place in?,video6819,166049,2 7470,6819,play,what are two persons doing?,video6819,166050,2 7471,6819,play,what is man doing?,video6819,166051,2 7472,6819,move,what is a person doing?,video6819,166052,2 7473,6819,play,what is a man doing?,video6819,166053,2 7474,6819,play,what is a man with heaphones on doing?,video6819,166054,2 7475,6819,move,what is the person doing?,video6819,166055,2 7476,6819,play,what is a role doing?,video6819,166056,2 7477,6819,wear,what is a man talks about how to make things on a game he doing?,video6819,166057,2 7478,6819,play,what is there is a man with headset doing?,video6819,166058,2 7479,6819,play,what is a young boy doing?,video6819,166059,2 7480,6819,call,what is the men was video doing?,video6819,166060,2 7481,6820,cooking,what is one lady in colourful dress giving?,video6820,166061,16 7482,6820,pastum,what is a woman in a dress making in a white sauce with shrimp?,video6820,166062,16 7483,6820,print,what is sexy brunette sitting in the kitchen talking to the camera?,video6820,166063,16 7484,6820,hair,what stands in front of a kitchen with brown wooden cabinets in a dress with rows of zigzags in blues and yellow?,video6820,166064,16 7485,6820,kitchen,what is a woman with black hair talking in?,video6820,166065,16 7486,6820,someone,who is preparing different food in a kitchen?,video6820,166066,16 7487,6820,brunette,who is print dress sitting in the kitchen talking to the camera?,video6820,166067,16 7488,6820,woman,who talks about how to prepare a meal?,video6820,166068,16 7489,6820,woman,who talks about the dish in the kitchen?,video6820,166069,16 7490,6820,cooking,what is a woman doign on how to make white pasta dish?,video6820,166070,16 7491,6820,lady,who is going to explain how to make a a veg and shrimp dish in lemon and garlic sauce?,video6820,166071,16 7492,6820,woman,who is doign a cooking show on how to make white pasta dish?,video6820,166072,16 7493,6820,table,what does a woman speak about appetizing pasta on?,video6820,166073,16 7494,6820,woman,who speaks about appetizing pasta on the table?,video6820,166074,16 7495,6820,cooking,who is a woman in kitchen talking?,video6820,166075,16 7496,6820,food,what is someone preparing in a kitchen?,video6820,166076,16 7497,6820,talk,what is a woman with black hair doing?,video6820,166077,16 7498,6820,present,what is brunette doing?,video6820,166078,16 7499,6820,sit,what is sexy brunette is print dress doing?,video6820,166079,16 7500,6820,show,what is a lady in kitchen doing?,video6820,166080,16 7501,6820,talk,what is a woman in kitchen doing?,video6820,166081,16 7502,6820,prepare,what is in a kitchen someone doing?,video6820,166082,16 7503,6820,talk,what is there is a women doing?,video6820,166083,16 7504,6820,show,what is a women doing?,video6820,166084,16 7505,6820,doign,what is a woman doing?,video6820,166085,16 7506,6820,kitchen,what is someone preparing different food in?,video6820,166086,16 7507,6820,explain,what is very cheerful lady doing?,video6820,166087,16 7508,6820,pastum,what does a woman speak about on the table?,video6820,166088,16 7509,6821,man,who is being introduced as alberto?,video6821,166089,11 7510,6821,camera,what does a man in a white shirt and glass waves at with the sound of rushing water in the background?,video6821,166090,11 7511,6821,man,who walks along side a river?,video6821,166091,11 7512,6821,man,who is introduced by his friend?,video6821,166092,11 7513,6821,man,who is walking on the road?,video6821,166093,11 7514,6821,alberto,what is a man being introduced as?,video6821,166094,11 7515,6821,man,who says hello?,video6821,166095,11 7516,6821,road,what is a man walking on?,video6821,166096,11 7517,6821,hello,what does man say?,video6821,166097,11 7518,6821,friend,who does a woman approach?,video6821,166098,11 7519,6821,something,what is man in white shirt with glasses talking about?,video6821,166099,11 7520,6821,side,what is a sound of water hearing from?,video6821,166100,11 7521,6821,tree,what is a man wearing a spectacle is standing under?,video6821,166101,11 7522,6821,talk,what is guy in glass with white shirt doing?,video6821,166102,11 7523,6821,rush,what is a man in a white shirt and glasses waves at the camera with the sound of doing?,video6821,166103,11 7524,6821,talk,what is a person doing?,video6821,166104,11 7525,6821,show,what is a lady doing?,video6821,166105,11 7526,6821,talk,what is man in white shirt with glasses doing?,video6821,166106,11 7527,6821,wear,what is a man in a white shirt who doing?,video6821,166107,11 7528,6821,wear,what is a hispanic man doing?,video6821,166108,11 7529,6821,talk,what is a woman filming and doing?,video6821,166109,11 7530,6821,spectacle,what is a man wearing is standing under a tree?,video6821,166110,11 7531,6821,record,what is a woman is video doing?,video6821,166111,11 7532,6821,smile,what is man with white shirt brown skin and black hair doing?,video6821,166112,11 7533,6821,man,who is displayed by the camerawoman who instructs him to say something?,video6821,166113,11 7534,6821,woman,who is video recording a man in a white shirt?,video6821,166114,11 7535,6821,man,who is wearing a spectacle is standing under a tree?,video6821,166115,11 7536,6821,person,who is talking to some body who is on the other side not known?,video6821,166116,11 7537,6821,friend,who did man outside in nature being video tape by?,video6821,166117,11 7538,6821,walk,what is a man doing?,video6821,166118,11 7539,6821,man,who does?,video6821,166119,11 7540,6821,friend,who is man introduced by?,video6821,166120,11 7541,6822,race,what is a car doing?,video6822,166121,9 7542,6822,track,what are race cars driving on?,video6822,166122,9 7543,6822,man,who is driving a car?,video6822,166123,9 7544,6822,race,what are driving on a track?,video6822,166124,9 7545,6822,video,what shows race cars?,video6822,166125,9 7546,6822,car,what is racing down a road?,video6822,166126,9 7547,6822,car,what is running fast in a racing track?,video6822,166127,9 7548,6822,garage,what did footage of several cars racing and park in?,video6822,166128,9 7549,6822,race,what is fast cars doing?,video6822,166129,9 7550,6822,race,what is footage of several cars doing?,video6822,166130,9 7551,6822,watch,what is people doing?,video6822,166131,9 7552,6822,drive,what are race cars doing?,video6822,166132,9 7553,6822,race,what is race cars doing?,video6822,166133,9 7554,6822,race,what is there are cars doing?,video6822,166134,9 7555,6822,talk,what is there is a woman doing?,video6822,166135,9 7556,6822,race,what is track cars on race tracks doing?,video6822,166136,9 7557,6822,road,what is a car racing down?,video6822,166137,9 7558,6822,car,what is a man driving?,video6822,166138,9 7559,6822,race,what does the video show?,video6822,166139,9 7560,6822,drive,what is a man doing?,video6822,166140,9 7561,6822,show,what is a short clip doing?,video6822,166141,9 7562,6822,car,what was uniquely crafted?,video6822,166142,9 7563,6823,display,what is a woman doing?,video6823,166143,18 7564,6823,carry,what is a woman doing?,video6823,166144,18 7565,6823,woman,who is displaying a colorful purse?,video6823,166145,18 7566,6823,woman,who does model show off s clutch?,video6823,166146,18 7567,6823,lady,who is showcasing a pinapple bag?,video6823,166147,18 7568,6823,herself,who does a woman record for a video segment?,video6823,166148,18 7569,6823,model,who shows off a woman s clutch?,video6823,166149,18 7570,6823,woman,who holds a pinapple clutch?,video6823,166150,18 7571,6823,woman,who is holding a box of sunglasses?,video6823,166151,18 7572,6823,hold,what is a woman doing?,video6823,166152,18 7573,6823,clutch,what does model show off a woman s?,video6823,166153,18 7574,6823,show,what is a woman doing?,video6823,166154,18 7575,6823,show,what is model doing?,video6823,166155,18 7576,6823,model,what is girl doing?,video6823,166156,18 7577,6823,wear,what is a woman doing?,video6823,166157,18 7578,6823,modeling,what a clutch?,video6823,166158,18 7579,6823,woman,who is holding a bag?,video6823,166159,18 7580,6823,bag,what is a woman holding?,video6823,166160,18 7581,6823,purse,what is a woman displaying?,video6823,166161,18 7582,6823,pinapple,what is a lady showcasing?,video6823,166162,18 7583,6823,hold,what is woman doing?,video6823,166163,18 7584,6823,pinapple,what does a woman hold?,video6823,166164,18 7585,6824,something,what do a person plug into an outlet?,video6824,166165,10 7586,6824,computer,what does a woman plug into the wall?,video6824,166166,10 7587,6824,woman,who is using a electric recharger?,video6824,166167,10 7588,6824,outlet,what do a person plug something into?,video6824,166168,10 7589,6824,protector,what is good for electronics?,video6824,166169,10 7590,6824,wall,what is a cord being plugged into?,video6824,166170,10 7591,6824,recharger,who is a woman using?,video6824,166171,10 7592,6824,woman,who plugs in a surge protector?,video6824,166172,10 7593,6824,plug,what does a person stick into the wall?,video6824,166173,10 7594,6824,person,who plug something into an outlet?,video6824,166174,10 7595,6824,computer,what is a lady plugging in the power on?,video6824,166175,10 7596,6824,power,what is a lady plugging in on a computer?,video6824,166176,10 7597,6824,video,what demonstrates how to hook up a computer?,video6824,166177,10 7598,6824,plug,what does a woman plug into an outlet?,video6824,166178,10 7599,6824,outlet,what does a woman plug a plug into?,video6824,166179,10 7600,6824,person,who sticks a plug into the wall?,video6824,166180,10 7601,6824,outlet,what do a woman plugging a surge protecter in?,video6824,166181,10 7602,6824,lady,who is plugging in the power on a computer?,video6824,166182,10 7603,6824,woman,who plugs a plug into an outlet?,video6824,166183,10 7604,6824,lady,who gives an explanation on plugging a power surge in?,video6824,166184,10 7605,6824,cord,what is being plugged into the wall?,video6824,166185,10 7606,6824,wall,what does a person stick a plug into?,video6824,166186,10 7607,6824,plug,what is a lady gives an explanation on doing?,video6824,166187,10 7608,6824,plug,what is this is a video of a woman doing?,video6824,166188,10 7609,6824,show,what is it doing?,video6824,166189,10 7610,6824,use,what is a woman doing?,video6824,166190,10 7611,6824,connect,what is a woman doing?,video6824,166191,10 7612,6824,plug,what is a lady doing?,video6824,166192,10 7613,6824,plug,what is a woman in an office doing?,video6824,166193,10 7614,6825,two,how many men are buried in an animated volcano?,video6825,166194,2 7615,6825,death,what are freddy and another character in a video game fighting to?,video6825,166195,2 7616,6825,character,what a video game character killing?,video6825,166196,2 7617,6825,fatality,what did advertisement for a video game call?,video6825,166197,2 7618,6825,kreuger,who just won in video gameplay?,video6825,166198,2 7619,6825,someone,who is showing video graphics game?,video6825,166199,2 7620,6825,video,what character killing another character?,video6825,166200,2 7621,6825,gameplay,what did freddy kreuger just win in?,video6825,166201,2 7622,6825,fatality,what do freddy kreugar doing?,video6825,166202,2 7623,6825,video,what is someone showing?,video6825,166203,2 7624,6825,freddy,what kreugar doing a fatality?,video6825,166204,2 7625,6825,game,what is someone playing?,video6825,166205,2 7626,6825,video,who are fighting?,video6825,166206,2 7627,6825,fight,what are video game characters doing?,video6825,166207,2 7628,6825,play,what is someone doing?,video6825,166208,2 7629,6825,fight,what are freddy and another character in a video game doing?,video6825,166209,2 7630,6825,show,what is a video game doing?,video6825,166210,2 7631,6825,kill,what is a video game character doing?,video6825,166211,2 7632,6825,someone,what is playing a game?,video6825,166212,2 7633,6826,costume,what is a man wearing?,video6826,166213,0 7634,6826,street,what is man performing on?,video6826,166214,0 7635,6826,man,who is performing on the street?,video6826,166215,0 7636,6826,road,what are soldiers watching some show on?,video6826,166216,0 7637,6826,show,what are soldiers watching on road?,video6826,166217,0 7638,6826,man,who is wearing a strange costume?,video6826,166218,0 7639,6826,man,who put on a good show?,video6826,166219,0 7640,6826,dance,what do soldiers watch a man perform?,video6826,166220,0 7641,6826,street,what is a man acting in front of other s in?,video6826,166221,0 7642,6826,man,who do soldiers watch perform a ceremonial dance?,video6826,166222,0 7643,6826,performer,who do a group of military men watch?,video6826,166223,0 7644,6826,person,who is dancing in front of soldiers?,video6826,166224,0 7645,6826,man,who is acting in front of other s in a street?,video6826,166225,0 7646,6826,man,who is performing in front of a crowd?,video6826,166226,0 7647,6826,man,who dressed up talks to soldiers in a foreign country?,video6826,166227,0 7648,6826,gesture,what is a man in a costume doing?,video6826,166228,0 7649,6826,act,what is a man doing?,video6826,166229,0 7650,6826,perform,what is a man doing?,video6826,166230,0 7651,6826,wear,what is a man doing?,video6826,166231,0 7652,6826,dance,what is a person doing?,video6826,166232,0 7653,6826,perform,what is man doing?,video6826,166233,0 7654,6826,watch,what are soldiers doing?,video6826,166234,0 7655,6826,speak,what is soldiers doing?,video6826,166235,0 7656,6826,entertain,what is a man doing?,video6826,166236,0 7657,6827,talk,what are two kids doing?,video6827,166237,14 7658,6827,storm,what do a boy and girl discuss while standing outside?,video6827,166238,14 7659,6827,time,when are two friends having together in the garden?,video6827,166239,14 7660,6827,character,who is talking to each other?,video6827,166240,14 7661,6827,hail,what are falling on the small kids?,video6827,166241,14 7662,6827,garden,what are the small kids sitting in?,video6827,166242,14 7663,6827,cartoon,what is shown?,video6827,166243,14 7664,6827,garden,what are two friends having nice time together in?,video6827,166244,14 7665,6827,play,what is an disney channel doing?,video6827,166245,14 7666,6827,sit,what is two children doing?,video6827,166246,14 7667,6827,stand,what are a boy and girl doing?,video6827,166247,14 7668,6827,wear,what is an animated cartoon of a boy doing?,video6827,166248,14 7669,6827,stand,what is a boy in a red hat and purple shirt doing?,video6827,166249,14 7670,6827,sit,what are the small kids doing?,video6827,166250,14 7671,6827,stand,what is a boy and girl discuss a hail storm while doing?,video6827,166251,14 7672,6827,wear,what is a cartoon dolls of girl and boy speaking doing?,video6827,166252,14 7673,6827,wear,what is a cartoon of dolls boy and girl speaking boy doing?,video6827,166253,14 7674,6827,two,how many friends are having nice time together in the garden?,video6827,166254,14 7675,6827,sit,what are the cartoon characters which are dear to the children doing?,video6827,166255,14 7676,6827,talk,what is a cartoon movie is shown and both cartoon character doing?,video6827,166256,14 7677,6827,talk,what is a cartoon movie is shown and there is one young boy and the girl doing?,video6827,166257,14 7678,6827,two,how many kids are talking about a hail storm?,video6827,166258,14 7679,6827,stand,what is girl and boy doing?,video6827,166259,14 7680,6828,look,what is rihanna wears a black dress and sings while doing?,video6828,166260,0 7681,6828,mirror,what does the woman wearnig the black dress sing in?,video6828,166261,0 7682,6828,beautiful,what do a women if front of the mirror singing?,video6828,166262,0 7683,6828,pretty,what do a women if front of the mirror wearing?,video6828,166263,0 7684,6828,song,what is a black woman with black hair singing?,video6828,166264,0 7685,6828,song,what is a black woman on tv singing?,video6828,166265,0 7686,6828,song,what is a woman in hot dressing singing in front of a mirror?,video6828,166266,0 7687,6828,lady,who explain how is put the makeup and cosmetics?,video6828,166267,0 7688,6828,mirror,what do a woman in black dress singing in at a club?,video6828,166268,0 7689,6828,rihanna,who wears a black dress?,video6828,166269,0 7690,6828,woman,who is singing the song?,video6828,166270,0 7691,6828,dres,what does rihanna wear?,video6828,166271,0 7692,6828,club,what do a woman in black dress singing in a mirror at?,video6828,166272,0 7693,6828,rihana,who stands infront of a mirror?,video6828,166273,0 7694,6828,wear,what is a women if front of the mirror doing?,video6828,166274,0 7695,6828,shake,what is a lady music album where the lady doing?,video6828,166275,0 7696,6828,wear,what is a girl in black color dress doing?,video6828,166276,0 7697,6828,dance,what is brunette woman doing?,video6828,166277,0 7698,6828,look,what is singer rhianna sings while doing?,video6828,166278,0 7699,6828,adjust,what is rihana stands infront of a mirror and sings doing?,video6828,166279,0 7700,6828,look,what is a woman doing?,video6828,166280,0 7701,6828,music,what do a girl in black color dress wearing cloth dancing in front mirror playing dancing singing waving hands displaying on screen?,video6828,166281,0 7702,6828,singing,what do a girl in black color dress wearing cloth dancing in front mirror music playing waving hands displaying on screen?,video6828,166282,0 7703,6828,dance,what is the woman doing?,video6828,166283,0 7704,6828,mirror,what does rihana stand infront of?,video6828,166284,0 7705,6828,dres,what does rihana sing adjusting?,video6828,166285,0 7706,6828,song,what is the woman singing?,video6828,166286,0 7707,6828,woman,who is dancing?,video6828,166287,0 7708,6828,brunette,who is singing?,video6828,166288,0 7709,6828,rhiana,who sings?,video6828,166289,0 7710,6829,swim,what is woman and girl doing?,video6829,166290,3 7711,6829,water,what are two females swimming together under?,video6829,166291,3 7712,6829,pool,what are girls swimming in?,video6829,166292,3 7713,6829,pool,what do two women swim underwater in?,video6829,166293,3 7714,6829,pool,what are two girls swimming in?,video6829,166294,3 7715,6829,woman,who is swimming?,video6829,166295,3 7716,6829,swim,what is young girls doing?,video6829,166296,3 7717,6829,swim,what is a woman doing?,video6829,166297,3 7718,6829,swim,what is an adult woman and female girl doing?,video6829,166298,3 7719,6829,swim,what are girls doing?,video6829,166299,3 7720,6829,swim,what are two females doing?,video6829,166300,3 7721,6829,swim,what are two girls doing?,video6829,166301,3 7722,6829,swim,what is two girls doing?,video6829,166302,3 7723,6829,swim,what are two women doing?,video6829,166303,3 7724,6829,swim,what are two young girls doing?,video6829,166304,3 7725,6829,swim,what are a woman and a girl doing?,video6829,166305,3 7726,6829,swim,what are a woman and girl doing?,video6829,166306,3 7727,6829,pool,what do two young girls swim in together?,video6829,166307,3 7728,6829,two,how many girls swimming underwater in a large pool?,video6829,166308,3 7729,6829,two,how many young girls are swimming underwater in a pool?,video6829,166309,3 7730,6829,two,how many women are swimming inside the water in a swimming pool?,video6829,166310,3 7731,6829,two,how many young girls swim in a pool together?,video6829,166311,3 7732,6829,two,how many females are swimming together under the water?,video6829,166312,3 7733,6829,girl,who swims underwater with an older girl?,video6829,166313,3 7734,6829,two,how many girls are swimming in a pool?,video6829,166314,3 7735,6829,two,how many women swim underwater in a pool?,video6829,166315,3 7736,6829,two,how many girls are swimming underwater?,video6829,166316,3 7737,6829,water,what are girls swimming under in a swimming pool?,video6829,166317,3 7738,6829,pool,what are two young girls swimming underwater in?,video6829,166318,3 7739,6829,water,what are two women swimming inside in a swimming pool?,video6829,166319,3 7740,6830,talk,what is a host doing?,video6830,166320,14 7741,6830,ask,what is a man doing?,video6830,166321,14 7742,6830,host,what is a man doing?,video6830,166322,14 7743,6830,play,what are people doing?,video6830,166323,14 7744,6830,talk,what is steve harvey doing?,video6830,166324,14 7745,6830,family,who does a woman play?,video6830,166325,14 7746,6830,man,who talks to a woman on a gameshow?,video6830,166326,14 7747,6830,family,what do a clip taken from the show?,video6830,166327,14 7748,6830,woman,who competes in family feud?,video6830,166328,14 7749,6830,harvey,who hosts family fued?,video6830,166329,14 7750,6830,woman,who plays family fued?,video6830,166330,14 7751,6830,gameshow,who speaks to a contestant?,video6830,166331,14 7752,6830,contestant,who does a gameshow host speak to?,video6830,166332,14 7753,6830,man,who hose the program?,video6830,166333,14 7754,6830,program,what a man hose?,video6830,166334,14 7755,6830,family,who does steve harvey host?,video6830,166335,14 7756,6830,harvey,who is a game show host?,video6830,166336,14 7757,6830,family,what are people playing?,video6830,166337,14 7758,6830,game,what is family feud?,video6830,166338,14 7759,6830,game,what is a game?,video6830,166339,14 7760,6830,game,what is a game show?,video6830,166340,14 7761,6830,family,what does a woman compete in?,video6830,166341,14 7762,6830,man,who is hosting?,video6830,166342,14 7763,6831,someone,who is using the top of a mason jar to play with a small rodent?,video6831,166343,13 7764,6831,person,who is training a cute baby hamster to climb through a ring?,video6831,166344,13 7765,6831,training,what is some one giving to a mouse to cross a ring from both side?,video6831,166345,13 7766,6831,play,what is there is a mouse doing?,video6831,166346,13 7767,6831,lead,what is someone doing?,video6831,166347,13 7768,6831,train,what is a person doing?,video6831,166348,13 7769,6831,learn,what is a little gerbil doing?,video6831,166349,13 7770,6831,hold,what is a person doing?,video6831,166350,13 7771,6831,present,what is person doing?,video6831,166351,13 7772,6831,use,what is someone doing?,video6831,166352,13 7773,6831,hamster,what is being trained to jump through a hoop using food?,video6831,166353,13 7774,6831,man,who trains a mouse to go through a hoop?,video6831,166354,13 7775,6831,person,who is presenting how the small mouse is eating the food?,video6831,166355,13 7776,6831,person,who teaches a mouse how to do a trick?,video6831,166356,13 7777,6831,mouse,what is some one giving training to to cross a ring from both side?,video6831,166357,13 7778,6831,animal,what crawls back and forth threw a metal circle for food?,video6831,166358,13 7779,6831,mouse,what does a person teach how to do a trick?,video6831,166359,13 7780,6831,rat,what is jumping the ring?,video6831,166360,13 7781,6831,rad,what climbs the ring on either sides?,video6831,166361,13 7782,6831,rat,what is going?,video6831,166362,13 7783,6831,rad,what goes round?,video6831,166363,13 7784,6831,rat,what was trained to climb?,video6831,166364,13 7785,6831,ring,what is a rat jumping?,video6831,166365,13 7786,6832,cheer,what is a group of men doing?,video6832,166366,4 7787,6832,talk,what is a man doing?,video6832,166367,4 7788,6832,show,what is a news clip doing?,video6832,166368,4 7789,6832,explain,what is a news reporter doing?,video6832,166369,4 7790,6832,talk,what is with loud sports fans then cuts to a woman doing?,video6832,166370,4 7791,6832,explain,what is a woman reporter doing?,video6832,166371,4 7792,6832,explain,what is an interviewer doing?,video6832,166372,4 7793,6832,report,what is news reporters doing?,video6832,166373,4 7794,6832,report,what is people doing?,video6832,166374,4 7795,6832,hold,what is a man doing?,video6832,166375,4 7796,6832,interviewer,who is explaining issues with audio?,video6832,166376,4 7797,6832,roadside,what do a report from?,video6832,166377,4 7798,6832,man,who is talking?,video6832,166378,4 7799,6832,scene,what do television reporters face challenges on?,video6832,166379,4 7800,6832,reporter,who has explains some technical difficulties?,video6832,166380,4 7801,6832,reporter,who talks about audio issues?,video6832,166381,4 7802,6832,reporter,who is explaining to the audience people are having audio problems?,video6832,166382,4 7803,6832,audio,what is a news reporter explaining to the audience people are having?,video6832,166383,4 7804,6832,man,who is holding a piece of paper?,video6832,166384,4 7805,6832,scene,where do television reporters face challenges?,video6832,166385,4 7806,6832,paper,what is a man holding a piece of?,video6832,166386,4 7807,6832,help,what do then please with loud sports fans?,video6832,166387,4 7808,6832,television,who face challenges on the scene?,video6832,166388,4 7809,6832,street,what do a group of people jump around in?,video6832,166389,4 7810,6833,someone,who is showing some sports clips?,video6833,166390,3 7811,6833,highlight,what are being shown?,video6833,166391,3 7812,6833,man,who is running?,video6833,166392,3 7813,6833,basketball,who are playing?,video6833,166393,3 7814,6833,perform,what is a group of athletes doing?,video6833,166394,3 7815,6833,play,what is different sports clips of men doing?,video6833,166395,3 7816,6833,play,what are in american football a pass is thrown and the receiver is hit in american basketball men doing?,video6833,166396,3 7817,6833,play,what are people doing?,video6833,166397,3 7818,6833,play,what are some people doing?,video6833,166398,3 7819,6833,show,what is someone doing?,video6833,166399,3 7820,6833,show,what is video doing?,video6833,166400,3 7821,6833,mashup,what is shown including basketball and football?,video6833,166401,3 7822,6833,include,what is a sports mashup is shown doing?,video6833,166402,3 7823,6834,man,who draws a cartoon character?,video6834,166403,10 7824,6834,person,who talks about how he made a drawing?,video6834,166404,10 7825,6834,child,who is talking how to create art?,video6834,166405,10 7826,6834,kid,who shows of a squidward drawing?,video6834,166406,10 7827,6834,craft,what is person busy in here?,video6834,166407,10 7828,6834,character,who does a man draw?,video6834,166408,10 7829,6834,person,who is busy in craft work here?,video6834,166409,10 7830,6834,kid,who makes a picture with sharpie and tape?,video6834,166410,10 7831,6834,drawing,what does a woman talk about?,video6834,166411,10 7832,6834,talk,what is child doing?,video6834,166412,10 7833,6834,person,who is touching a piece of paper?,video6834,166413,10 7834,6834,person,who created the drawing of swidly?,video6834,166414,10 7835,6834,paper,what is a person touching a piece of?,video6834,166415,10 7836,6834,talk,what is a child doing?,video6834,166416,10 7837,6834,talk,what is a girl doing?,video6834,166417,10 7838,6834,touch,what is a person doing?,video6834,166418,10 7839,6834,talk,what is some one doing?,video6834,166419,10 7840,6834,draw,what is person doing?,video6834,166420,10 7841,6834,draw,what is a woman talks about her doing?,video6834,166421,10 7842,6834,talk,what is boy doing?,video6834,166422,10 7843,6835,throw,what is a woman doing?,video6835,166423,14 7844,6835,explore,what is a cartoon character doing?,video6835,166424,14 7845,6835,depict,what is a cartoon doing?,video6835,166425,14 7846,6835,hit,what is cartoon of a woman doing?,video6835,166426,14 7847,6835,hit,what is a girl doing?,video6835,166427,14 7848,6835,fight,what are two cartoon characters doing?,video6835,166428,14 7849,6835,pillow,what is a cartoon character hit in the face with?,video6835,166429,14 7850,6835,basement,what is a cartoon character exploring?,video6835,166430,14 7851,6835,cartoon,what are fighting?,video6835,166431,14 7852,6835,pillow,what was the character hit with?,video6835,166432,14 7853,6835,character,who is exploring a basement?,video6835,166433,14 7854,6835,two,how many cartoon characters are fighting?,video6835,166434,14 7855,6835,character,who was hit with a pillow?,video6835,166435,14 7856,6835,pillow,what is a man hit in the face with?,video6835,166436,14 7857,6835,pillow,what is a woman throwing at a man?,video6835,166437,14 7858,6835,face,what is a man hit in with a pillow?,video6835,166438,14 7859,6835,pillow,what does a cartoon girl hit a cartoon boy with?,video6835,166439,14 7860,6835,man,who is a woman throwing a pillow at?,video6835,166440,14 7861,6835,cartoon,who does a cartoon girl hit with a pillow?,video6835,166441,14 7862,6835,face,what is a cartoon character hit in with a pillow?,video6835,166442,14 7863,6835,character,who is hit in the face with a pillow?,video6835,166443,14 7864,6835,woman,who is throwing a pillow at a man?,video6835,166444,14 7865,6835,cartoon,who hits a cartoon boy with a pillow?,video6835,166445,14 7866,6835,cartoon,who throws something at a boy?,video6835,166446,14 7867,6836,cat,what does head s is holding its paw on a baby?,video6836,166447,13 7868,6836,paw,what does head s a black cat is holding on a baby?,video6836,166448,13 7869,6836,baby,who is a dog pawing at?,video6836,166449,13 7870,6836,dog,what is pawing at a baby?,video6836,166450,13 7871,6836,baby,who is playing with a cat?,video6836,166451,13 7872,6836,baby,who plays with a cat?,video6836,166452,13 7873,6836,baby,who is a cat touching s head?,video6836,166453,13 7874,6836,child,who is playing with dog?,video6836,166454,13 7875,6836,play,what is pet doing?,video6836,166455,13 7876,6836,head,what is a cat touching a baby s?,video6836,166456,13 7877,6836,head,what does a cat with head s paw on a baby s?,video6836,166457,13 7878,6836,head,what does a cat place its paw on a sleeping baby s?,video6836,166458,13 7879,6836,baby,who does head s a black cat is holding its paw on?,video6836,166459,13 7880,6836,head,what s a black cat is holding its paw on a baby?,video6836,166460,13 7881,6836,cat,what places its paw on a sleeping baby s head?,video6836,166461,13 7882,6836,pet,what is playing with kid?,video6836,166462,13 7883,6836,interact,what are cats doing?,video6836,166463,13 7884,6836,play,what is a baby doing?,video6836,166464,13 7885,6836,hold,what is a black cat doing?,video6836,166465,13 7886,6836,stand,what is a cat doing?,video6836,166466,13 7887,6836,touch,what is a cat doing?,video6836,166467,13 7888,6836,sleep,what is a cat places its paw on a doing?,video6836,166468,13 7889,6836,paw,what is a dog doing?,video6836,166469,13 7890,6836,cat,what is touching a baby s head?,video6836,166470,13 7891,6836,interact,what is a set of clips of cats doing?,video6836,166471,13 7892,6836,kid,who is pet playing with?,video6836,166472,13 7893,6836,dog,what is small child playing with?,video6836,166473,13 7894,6836,play,what is the baby doing?,video6836,166474,13 7895,6836,play,what is small child doing?,video6836,166475,13 7896,6836,interact,what is several videos of babies doing?,video6836,166476,13 7897,6836,cat,what is standing?,video6836,166477,13 7898,6836,play,what are cats and babies doing?,video6836,166478,13 7899,6836,head,what does a baby s?,video6836,166479,13 7900,6836,cat,what does a baby play with?,video6836,166480,13 7901,6836,baby,who s head?,video6836,166481,13 7902,6836,cat,what is a baby playing with?,video6836,166482,13 7903,6837,food,what does an animated cat throw it s?,video6837,166483,13 7904,6837,talk,what is a trailer clip for an animated movie shows animals doing?,video6837,166484,13 7905,6837,throw,what is a cartoon cat doing?,video6837,166485,13 7906,6837,cat,what throws it s food bowl?,video6837,166486,13 7907,6837,feature,what is a 3d animated movie trailer doing?,video6837,166487,13 7908,6837,cat,what s food a cartoon cat is pushing away?,video6837,166488,13 7909,6837,push,what is a cartoon cat doing?,video6837,166489,13 7910,6837,dog,what talks about being very busy while a cat throws a dish of cat food at the wall after its owner leaves?,video6837,166490,13 7911,6837,food,what does cat s a cartoon cat is pushing away?,video6837,166491,13 7912,6837,cartoon,what does cat s food is pushing away?,video6837,166492,13 7913,6837,bowl,what does cat push aside?,video6837,166493,13 7914,6838,tutorial,what is given?,video6838,166494,18 7915,6838,show,what is girl doing?,video6838,166495,18 7916,6838,peal,what is female doing?,video6838,166496,18 7917,6838,explain,what is a woman doing?,video6838,166497,18 7918,6838,talk,what is a person doing?,video6838,166498,18 7919,6838,peel,what is a woman doing?,video6838,166499,18 7920,6838,show,what is a video doing?,video6838,166500,18 7921,6838,woman,who is talking about a makeup?,video6838,166501,18 7922,6838,woman,who is doing beauty tricks?,video6838,166502,18 7923,6838,woman,who is doing makeup?,video6838,166503,18 7924,6838,makeup,what is woman applying?,video6838,166504,18 7925,6838,life,who is a person talking about?,video6838,166505,18 7926,6838,makeup,what is a woman talking about?,video6838,166506,18 7927,6838,skin,what female pealing off?,video6838,166507,18 7928,6838,beauty,what is a woman doing?,video6838,166508,18 7929,6838,beauty,what does woman talking about lifehack pertaining to?,video6838,166509,18 7930,6838,teen,what shows how to do the cat eye?,video6838,166510,18 7931,6838,face,what does a woman remove scotch tape from?,video6838,166511,18 7932,6838,woman,who lifehacks pertaining to female beauty?,video6838,166512,18 7933,6838,woman,who is making a tutorial?,video6838,166513,18 7934,6838,person,who is talking about life hacks?,video6838,166514,18 7935,6838,woman,who is peeling?,video6838,166515,18 7936,6838,woman,who is applying makeup?,video6838,166516,18 7937,6839,put,what is a gentleman doing?,video6839,166517,14 7938,6839,put,what is a man doing?,video6839,166518,14 7939,6839,prepare,what is a man doing?,video6839,166519,14 7940,6839,put,what is a guy in a dark long sleeve shirt doing?,video6839,166520,14 7941,6839,tuck,what is a white male doing?,video6839,166521,14 7942,6839,put,what is the father doing?,video6839,166522,14 7943,6839,man,who puts a baby to bed in a crib?,video6839,166523,14 7944,6839,baby,who did the man put down in the crib under a blanket?,video6839,166524,14 7945,6839,child,who is crying?,video6839,166525,14 7946,6839,gentleman,who is putting a very cute baby to sleep?,video6839,166526,14 7947,6839,crib,what is a man putting his baby to bed in?,video6839,166527,14 7948,6839,baby,who does a man in black put down to sleep in the crib?,video6839,166528,14 7949,6839,baby,who is a man putting to bed in a crib?,video6839,166529,14 7950,6839,child,who did a father lay in bed to sleep?,video6839,166530,14 7951,6839,baby,who is the father putting in the small bed?,video6839,166531,14 7952,6839,adult,who tucks black screen and baby in?,video6839,166532,14 7953,6839,baby,who left the baby?,video6839,166533,14 7954,6839,baby,who did a baby leave?,video6839,166534,14 7955,6839,crib,what won t stop crying?,video6839,166535,14 7956,6839,baby,who begins to scream?,video6839,166536,14 7957,6839,baby,who begins to cry?,video6839,166537,14 7958,6839,baby,who cries?,video6839,166538,14 7959,6839,bed,what did a father lay his child in to sleep?,video6839,166539,14 7960,6839,child,who is a man preparing to bed?,video6839,166540,14 7961,6839,crib,what does a man in black put his baby down to sleep in?,video6839,166541,14 7962,6839,man,who tucks a baby in for the night then the baby cries and yells?,video6839,166542,14 7963,6839,baby,who begins to cry after an adult man tucks black screen and baby in and turns off their light?,video6839,166543,14 7964,6839,man,who put the baby down in the crib under a blanket?,video6839,166544,14 7965,6839,man,who puts a baby in a crib to go to sleep?,video6839,166545,14 7966,6839,baby,who do a person in black color dress making to sleep crying on bed displaying on screen?,video6839,166546,14 7967,6839,man,who is making a small baby sleep who is crying?,video6839,166547,14 7968,6839,baby,who do a person in black color dress making to sleep sleeping?,video6839,166548,14 7969,6839,blanket,what did the man put the baby down in the crib under?,video6839,166549,14 7970,6839,crib,what did the man put the baby down in under a blanket?,video6839,166550,14 7971,6839,screen,what do a person in black color dress making to sleep a baby crying on bed displaying on?,video6839,166551,14 7972,6839,bed,what do a person in black color dress making to sleep a baby crying on displaying on screen?,video6839,166552,14 7973,6839,person,who has placed a baby inside of his baby crib?,video6839,166553,14 7974,6839,baby,who does a man put in a crib to go to sleep?,video6839,166554,14 7975,6839,man,who lays a baby in a crib?,video6839,166555,14 7976,6839,man,who is putting his baby to bed in a crib?,video6839,166556,14 7977,6839,baby,who does a man put to bed in a crib?,video6839,166557,14 7978,6839,father,who laid his child in bed to sleep?,video6839,166558,14 7979,6839,man,who is preparing a child to bed?,video6839,166559,14 7980,6839,father,who is putting his baby in the small bed?,video6839,166560,14 7981,6839,crib,what does a man put a baby to bed in?,video6839,166561,14 7982,6839,cot,what does a man put a child in the child s?,video6839,166562,14 7983,6839,baby,who does a man tuck in for the night then the baby cries and yells?,video6839,166563,14 7984,6840,talk,what is a young woman in a pink shirt doing?,video6840,166564,15 7985,6840,walk,what is a woman discusses her trip along a famous cross country doing?,video6840,166565,15 7986,6840,man,who is injured?,video6840,166566,15 7987,6840,nature,what is man walking in?,video6840,166567,15 7988,6840,walk,what is a map and a woman doing?,video6840,166568,15 7989,6840,man,who is walking in the nature?,video6840,166569,15 7990,6840,hike,what is a split screen with the map of a doing?,video6840,166570,15 7991,6840,walk,what is man doing?,video6840,166571,15 7992,6840,display,what is a still images of girls pictures and clothes still image photoes trees and forest water scene doing?,video6840,166572,15 7993,6840,trek,what is doing?,video6840,166573,15 7994,6840,talk,what is national geographic doing?,video6840,166574,15 7995,6840,walk,what is bunch of athletes doing?,video6840,166575,15 7996,6840,hike,what is a woman in a pink shirt doing?,video6840,166576,15 7997,6840,show,what is lady doing?,video6840,166577,15 7998,6840,screen,what does a still images of girls pictures and clothes still image photoes trees and forest water scene displaying on?,video6840,166578,15 7999,6840,screen,what did a split with the map of a hiking trail on the left and pictures of a woman hiking on the right?,video6840,166579,15 8000,6840,screen,what does a map and a girl still image inside forest trees running photoes displaying on?,video6840,166580,15 8001,6840,island,what is being shown to some potential visitors?,video6840,166581,15 8002,6840,walk,what is a woman with a backpack on doing?,video6840,166582,15 8003,6840,right,what did a split screen with the map of a hiking trail on the left and pictures of a woman hiking on?,video6840,166583,15 8004,6840,woman,who climbs over the rough terrain?,video6840,166584,15 8005,6841,play,what is doing?,video6841,166585,2 8006,6841,yell,what are people doing?,video6841,166586,2 8007,6841,try,what is in the video game a man doing?,video6841,166587,2 8008,6841,play,what is guys laugh while doing?,video6841,166588,2 8009,6841,laugh,what is a gamer doing?,video6841,166589,2 8010,6841,talk,what is a person doing?,video6841,166590,2 8011,6841,play,what is a person doing?,video6841,166591,2 8012,6841,play,what is a group of people doing?,video6841,166592,2 8013,6841,carry,what is a game character doing?,video6841,166593,2 8014,6841,talk,what is guy playing minecraft and doing?,video6841,166594,2 8015,6841,comment,what is two guys doing?,video6841,166595,2 8016,6841,man,who is unable to?,video6841,166596,2 8017,6841,person,who is playing a video game?,video6841,166597,2 8018,6841,man,who is trying to escape from trap?,video6841,166598,2 8019,6841,friend,who is a gamer making fun of?,video6841,166599,2 8020,6841,person,who plays mind craft?,video6841,166600,2 8021,6841,someone,who is running around with a bar crow?,video6841,166601,2 8022,6841,character,who is carrying a weapon?,video6841,166602,2 8023,6841,gameplay,what do guys talk over?,video6841,166603,2 8024,6841,person,who is trying to come out within the time limit?,video6841,166604,2 8025,6841,weapon,what is a game character carrying?,video6841,166605,2 8026,6841,video,what is a person playing?,video6841,166606,2 8027,6841,commentary,what do multiple people give?,video6841,166607,2 8028,6841,craft,what does a person play?,video6841,166608,2 8029,6841,person,who is playing?,video6841,166609,2 8030,6841,gamer,who is laughing?,video6841,166610,2 8031,6841,video,what scene where the character is trapped between green walls?,video6841,166611,2 8032,6841,person,who is talking while playing a video game?,video6841,166612,2 8033,6842,sit,what are a man and woman doing?,video6842,166613,4 8034,6842,sit,what is a man and a woman doing?,video6842,166614,4 8035,6842,watch,what are a gentleman and another lady doing?,video6842,166615,4 8036,6842,sit,what is a man and a woman in a red sweater doing?,video6842,166616,4 8037,6842,sit,what is two people doing?,video6842,166617,4 8038,6842,wear,what is two news anchors where one of them doing?,video6842,166618,4 8039,6842,sit,what is one man and a woman doing?,video6842,166619,4 8040,6842,talk,what is a man and woman doing?,video6842,166620,4 8041,6842,introduce,what is bbc news reader doing?,video6842,166621,4 8042,6842,listen,what is a man and a woman doing?,video6842,166622,4 8043,6842,news,what are a young man and young woman giving together?,video6842,166623,4 8044,6842,newsroom,what are a man and a woman sitting in with many tv screens?,video6842,166624,4 8045,6842,desk,what are a man and woman sitting at being introduced on a news broadcast?,video6842,166625,4 8046,6842,camera,what do skynews talks about smith marketing magazine as two young adults sit on?,video6842,166626,4 8047,6842,woman,who do the man in the red tie sit at the desk next to?,video6842,166627,4 8048,6842,two,how many people wait for a chane to speak in a interview one man in suit the woman in a pink cardigan?,video6842,166628,4 8049,6842,wear,what is a street road boy in white shirt and girl in pink color dress doing?,video6842,166629,4 8050,6842,news,what is one man and a woman reporting?,video6842,166630,4 8051,6843,woman,who has never met the man?,video6843,166631,6 8052,6843,man,who has the woman never met?,video6843,166632,6 8053,6843,talk,what is woman doing?,video6843,166633,6 8054,6843,walk,what is a woman doing?,video6843,166634,6 8055,6843,show,what is video doing?,video6843,166635,6 8056,6843,talk,what is a scene from the show dr phil is shown doing?,video6843,166636,6 8057,6843,woman,who speaks to a camera for a video segment?,video6843,166637,6 8058,6843,man,who is a scene from the show dr phil shown talking to a lady about?,video6843,166638,6 8059,6843,woman,who talks to dr phil about love?,video6843,166639,6 8060,6843,lady,who is a scene from the show dr phil shown talking to about a man?,video6843,166640,6 8061,6843,talk,what is a woman doing?,video6843,166641,6 8062,6843,love,what does an old woman talk to dr phil about?,video6843,166642,6 8063,6843,phil,who does an old woman talk to dr?,video6843,166643,6 8064,6844,sport,what is scenes from various doing?,video6844,166644,3 8065,6844,sport,what is various scenes of doing?,video6844,166645,3 8066,6844,play,what are people doing?,video6844,166646,3 8067,6844,play,what is football players doing?,video6844,166647,3 8068,6844,play,what are some man s doing?,video6844,166648,3 8069,6844,sport,what is various doing?,video6844,166649,3 8070,6844,video,what is shown?,video6844,166650,3 8071,6844,ground,what are some man s playing rugby in?,video6844,166651,3 8072,6844,man,what are playing rugby in a ground?,video6844,166652,3 8073,6844,vine,what does sports videos of highlight on?,video6844,166653,3 8074,6844,lacros,who highlights are shown?,video6844,166654,3 8075,6844,scene,what montage?,video6844,166655,3 8076,6844,highlight,what shows several sports clips?,video6844,166656,3 8077,6845,show,what is someone doing?,video6845,166657,10 8078,6845,fly,what is someone doing?,video6845,166658,10 8079,6845,use,what is a person plays doing?,video6845,166659,10 8080,6845,throw,what is a person doing?,video6845,166660,10 8081,6845,explain,what is a person doing?,video6845,166661,10 8082,6845,fly,what is a man doing?,video6845,166662,10 8083,6845,man,who explains how to throw a paper airplane?,video6845,166663,10 8084,6845,play,what is a person doing?,video6845,166664,10 8085,6845,man,who propels a paper plane across a room?,video6845,166665,10 8086,6845,room,what does a man propel a paper plane across?,video6845,166666,10 8087,6845,plane,what is a person throwing?,video6845,166667,10 8088,6845,airplane,what is a man flying?,video6845,166668,10 8089,6845,something,what is a person explaining?,video6845,166669,10 8090,6845,paper,what is someone showing?,video6845,166670,10 8091,6845,paper,what does a person play using?,video6845,166671,10 8092,6845,airplane,what is someone flying?,video6845,166672,10 8093,6845,paper,what does a man throw?,video6845,166673,10 8094,6845,airplane,what did a person throw?,video6845,166674,10 8095,6845,person,who is explaining something?,video6845,166675,10 8096,6845,person,who is throwing a plane?,video6845,166676,10 8097,6845,paper,what does someone throw?,video6845,166677,10 8098,6845,someone,who is showing paper plane?,video6845,166678,10 8099,6845,man,who is flying a paper airplane?,video6845,166679,10 8100,6845,man,who throws a paper plane?,video6845,166680,10 8101,6845,person,who threw a paper airplane?,video6845,166681,10 8102,6845,apartment,what is a paper airplane flown in?,video6845,166682,10 8103,6845,house,what does a person launch a paper airplane across?,video6845,166683,10 8104,6845,airplane,what is flown in an apartment?,video6845,166684,10 8105,6845,person,who plays using paper?,video6845,166685,10 8106,6845,person,who is playing with a paper rocket?,video6845,166686,10 8107,6845,paper,what does a man propel across a room?,video6845,166687,10 8108,6846,music,what plays?,video6846,166688,18 8109,6846,audience,what dances too?,video6846,166689,18 8110,6846,dance,what is there are many people doing?,video6846,166690,18 8111,6846,dance,what is a woman sing and doing?,video6846,166691,18 8112,6846,dance,what is a girl doing?,video6846,166692,18 8113,6846,dance,what is pop star singing and doing?,video6846,166693,18 8114,6846,put,what is a group of performers doing?,video6846,166694,18 8115,6846,celebrity,what grande dances?,video6846,166695,18 8116,6846,stage,when do scantily clad women dance with backup dancers?,video6846,166696,18 8117,6846,video,what is a woman dancing on?,video6846,166697,18 8118,6846,performance,what do a female singer and dancers dance together on stage during?,video6846,166698,18 8119,6846,backup,who do scantily clad women dance on stage with?,video6846,166699,18 8120,6846,stage,when do a female singer and dancers dance together during a performance?,video6846,166700,18 8121,6846,woman,who is dancing on a video?,video6846,166701,18 8122,6846,stage,when does celebrity star arianna sing?,video6846,166702,18 8123,6846,group,what is a girl in black dress dancing with in stage?,video6846,166703,18 8124,6846,celebrity,what sings on stage?,video6846,166704,18 8125,6846,stage,when do pretty young men and women dance around?,video6846,166705,18 8126,6847,walk,what is soldiers doing?,video6847,166706,4 8127,6847,want,what is comedian talks about america doing?,video6847,166707,4 8128,6847,perform,what is comedian on stage doing?,video6847,166708,4 8129,6847,talk,what is a male doing?,video6847,166709,4 8130,6847,talk,what is a comedian doing?,video6847,166710,4 8131,6847,talk,what is there is a man doing?,video6847,166711,4 8132,6847,tournament,what is happing?,video6847,166712,4 8133,6847,action,what is being sung?,video6847,166713,4 8134,6847,comedy,what is a man giving?,video6847,166714,4 8135,6847,comedy,what do a man doing stand up?,video6847,166715,4 8136,6847,man,what stand up comedy?,video6847,166716,4 8137,6847,comedy,what is a man doing on stage?,video6847,166717,4 8138,6847,domination,what does a slideshow talk about?,video6847,166718,4 8139,6847,man,who is giving a comedy speech?,video6847,166719,4 8140,6847,stage,when is a man doing comedy?,video6847,166720,4 8141,6847,slideshow,who talks about world domination?,video6847,166721,4 8142,6847,person,who is singing?,video6847,166722,4 8143,6847,man,who is doing comedy on stage?,video6847,166723,4 8144,6847,george,who carlin talking about the a man preforms dominating the world?,video6847,166724,4 8145,6847,screen,what do a male talking about world domination while images depicting the government and military flash across?,video6847,166725,4 8146,6847,preform,who stand up?,video6847,166726,4 8147,6847,comedian,who talks about america wanting to dominate the world?,video6847,166727,4 8148,6848,man,who is showing the paint job on a car?,video6848,166728,9 8149,6848,person,who records a car s gas tank?,video6848,166729,9 8150,6848,man,who talks about his tank of gas?,video6848,166730,9 8151,6848,tank,what does a person record a car s?,video6848,166731,9 8152,6848,host,who explains how he keeps the paint on his car shiny?,video6848,166732,9 8153,6848,car,what is a man showing the paint job on?,video6848,166733,9 8154,6848,man,who is looking at his new red car?,video6848,166734,9 8155,6848,paint,what is a man showing on a car?,video6848,166735,9 8156,6848,car,what does a person record s gas tank?,video6848,166736,9 8157,6848,man,who shows the red shiny paint on a car?,video6848,166737,9 8158,6848,explain,what is a man doing?,video6848,166738,9 8159,6848,person,who is decribing the shiny paint on his red truck?,video6848,166739,9 8160,6848,vehicle,what do a man talking about how to keep from scuffing paint on?,video6848,166740,9 8161,6848,car,what is a man talking about?,video6848,166741,9 8162,6848,car,what is a man presenting?,video6848,166742,9 8163,6848,car,what is someone talking about?,video6848,166743,9 8164,6848,man,who is presenting a car?,video6848,166744,9 8165,6848,look,what is a man doing?,video6848,166745,9 8166,6848,present,what is a man doing?,video6848,166746,9 8167,6848,man,who is talking about his car?,video6848,166747,9 8168,6848,show,what is a man doing?,video6848,166748,9 8169,6848,talk,what is a man doing?,video6848,166749,9 8170,6848,someone,who is talking about a car?,video6848,166750,9 8171,6848,talk,what is a woman doing?,video6848,166751,9 8172,6848,talk,what is man doing?,video6848,166752,9 8173,6848,talk,what is someone doing?,video6848,166753,9 8174,6848,man,who talks about his red truck?,video6848,166754,9 8175,6849,paper,what are the newspapers presented on with black ink?,video6849,166755,5 8176,6849,table,what is a white paper with black text on?,video6849,166756,5 8177,6849,video,what does a patent for the first united state?,video6849,166757,5 8178,6849,video,what beginnings origin as far back as 1948?,video6849,166758,5 8179,6849,ink,what are the newspapers presented on white paper with?,video6849,166759,5 8180,6849,patent,what was done in the united states patent office?,video6849,166760,5 8181,6849,depict,what is papers doing?,video6849,166761,5 8182,6849,move,what is pieces of paper doing?,video6849,166762,5 8183,6849,talk,what is there are documents from the united states patent office doing?,video6849,166763,5 8184,6849,describe,what is three pieces of paper depicted in an animation doing?,video6849,166764,5 8185,6849,talk,what is there is a man doing?,video6849,166765,5 8186,6849,explain,what is a man doing?,video6849,166766,5 8187,6849,person,who know as gazed ray tube amazing device?,video6849,166767,5 8188,6849,man,who is explaining some important documentations in history?,video6849,166768,5 8189,6849,patent,what was for a missile simulator game based on radar displays?,video6849,166769,5 8190,6849,commentator,who did papers depicting the united states patent office as tell by?,video6849,166770,5 8191,6850,simon,who is watching people jump into water on stage?,video6850,166771,3 8192,6850,four,how many people do judges watch jump into a tank of water?,video6850,166772,3 8193,6850,act,what do judges on a tv show watching swimmers do?,video6850,166773,3 8194,6850,talent,what show where the contestants are performing in water?,video6850,166774,3 8195,6850,four,how many women perform an act in water while a panel of judges watch?,video6850,166775,3 8196,6850,four,how many women are performing on top of water containers while judges are watching them?,video6850,166776,3 8197,6850,four,how many women perform on the talent show?,video6850,166777,3 8198,6850,perform,what is an aquatic group doing?,video6850,166778,3 8199,6850,perform,what are four women doing?,video6850,166779,3 8200,6850,watch,what is judges on a tv show doing?,video6850,166780,3 8201,6850,watch,what is simon cowel doing?,video6850,166781,3 8202,6850,judge,what is simon cowell doing?,video6850,166782,3 8203,6850,hold,what were the me doing?,video6850,166783,3 8204,6850,water,what are a panel of judges watching women perform in?,video6850,166784,3 8205,6850,simon,who were holding umbrellas?,video6850,166785,3 8206,6850,watch,what is a group of judges doing?,video6850,166786,3 8207,6850,watch,what are a panel of judges doing?,video6850,166787,3 8208,6850,swimming,what do women show off?,video6850,166788,3 8209,6850,show,what do simon cowell judging?,video6850,166789,3 8210,6850,perform,what are a talent show where the contestants doing?,video6850,166790,3 8211,6850,competition,what do judges watch?,video6850,166791,3 8212,6850,water,what is a woman balanced above?,video6850,166792,3 8213,6850,simon,who cowell judging his show?,video6850,166793,3 8214,6850,show,what does girls doing some stunt on?,video6850,166794,3 8215,6850,woman,who is balanced above water?,video6850,166795,3 8216,6850,group,what is performing on a talent show?,video6850,166796,3 8217,6851,talk,what is a guy in a suit doing?,video6851,166797,12 8218,6851,man,who discusses tests that are being done in labs at a large hospital?,video6851,166798,12 8219,6851,wear,what is the man doing?,video6851,166799,12 8220,6851,talk,what is guy in suit doing?,video6851,166800,12 8221,6851,stand,what is a man speaks about hospital diagnostic while doing?,video6851,166801,12 8222,6851,stand,what is a man doing?,video6851,166802,12 8223,6851,speak,what is one man doing?,video6851,166803,12 8224,6851,describe,what is a scientist doing?,video6851,166804,12 8225,6851,wear,what is doing?,video6851,166805,12 8226,6851,look,what is a professional doing?,video6851,166806,12 8227,6851,talk,what is a men in blue suit in garden doing?,video6851,166807,12 8228,6851,talk,what is there is a suit man doing?,video6851,166808,12 8229,6851,speak,what is a man in blue coat with tie doing?,video6851,166809,12 8230,6851,scientist,who is advise a men in blue suit in garden to get benefit by using it in the hospital?,video6851,166810,12 8231,6851,man,who is talking to someone on a sidewalk?,video6851,166811,12 8232,6851,man,who is standing out side of building and talking?,video6851,166812,12 8233,6851,something,what is a middle aged man in blue suit saying here?,video6851,166813,12 8234,6851,man,who speaks about hospital diagnostic while standing on the sidewalk outside?,video6851,166814,12 8235,6851,someone,what is a man talking to on a sidewalk?,video6851,166815,12 8236,6851,man,who talk about science micro organisms nicely?,video6851,166816,12 8237,6851,man,who talks about the micro organisms very deeply?,video6851,166817,12 8238,6851,scientist,who is describing his invention?,video6851,166818,12 8239,6851,sidewalk,what is a man talking to someone on?,video6851,166819,12 8240,6852,play,what is a woman doing?,video6852,166820,2 8241,6852,ask,what is a woman doing?,video6852,166821,2 8242,6852,stick,what is a woman doing?,video6852,166822,2 8243,6852,show,what is awoman doing?,video6852,166823,2 8244,6852,thumb,what is a woman sticking up?,video6852,166824,2 8245,6852,interview,what does a man give?,video6852,166825,2 8246,6852,talk,what is woman doing?,video6852,166826,2 8247,6852,talk,what are two women doing?,video6852,166827,2 8248,6852,play,what is two woman s and a man doing?,video6852,166828,2 8249,6852,play,what is two twins doing?,video6852,166829,2 8250,6852,point,what is thumbs up and doing?,video6852,166830,2 8251,6852,use,what are people doing?,video6852,166831,2 8252,6852,tell,what is a woman doing?,video6852,166832,2 8253,6852,explain,what is a woman doing?,video6852,166833,2 8254,6852,anchor,what is a girl doing?,video6852,166834,2 8255,6852,language,what are people using to communicate?,video6852,166835,2 8256,6852,woman,who speaks to a camera for a video segment?,video6852,166836,2 8257,6852,girl,who is anchoring a show who is dump?,video6852,166837,2 8258,6852,woman,who is asking random people to do something difficult with their hands?,video6852,166838,2 8259,6852,two,how many women are using sign language?,video6852,166839,2 8260,6852,awoman,who is showing others how to use their thumbs?,video6852,166840,2 8261,6852,random,what is a woman asking to do something difficult with their hands?,video6852,166841,2 8262,6852,thumb,what are people giving up?,video6852,166842,2 8263,6852,woman,who s and a man playing with there fingers?,video6852,166843,2 8264,6852,two,how many women are talking?,video6852,166844,2 8265,6852,woman,who is giving instructions?,video6852,166845,2 8266,6852,language,what are two women using?,video6852,166846,2 8267,6852,man,who gives an interview?,video6852,166847,2 8268,6853,computer,what did video game play?,video6853,166848,2 8269,6853,person,who is playing a video game?,video6853,166849,2 8270,6853,video,what played online computer?,video6853,166850,2 8271,6853,room,what is a video game character exploring?,video6853,166851,2 8272,6853,man,who talks while playing a video game?,video6853,166852,2 8273,6853,someone,what is playing a game?,video6853,166853,2 8274,6853,minecraft,who is being played by a few players?,video6853,166854,2 8275,6853,craft,what do a short clip taken in the game mine?,video6853,166855,2 8276,6853,person,who is running around blocks in minecraft?,video6853,166856,2 8277,6853,person,who is walking around a pink map on minecraft?,video6853,166857,2 8278,6853,minecraft,what is a person walking around a pink map on?,video6853,166858,2 8279,6853,game,what is someone playing?,video6853,166859,2 8280,6853,describe,what is a man doing?,video6853,166860,2 8281,6853,play,what is a man talks while doing?,video6853,166861,2 8282,6853,show,what is a minecraft video doing?,video6853,166862,2 8283,6853,play,what is a person doing?,video6853,166863,2 8284,6853,walk,what is a person doing?,video6853,166864,2 8285,6853,explore,what is a video game character doing?,video6853,166865,2 8286,6853,play,what is footage of someone doing?,video6853,166866,2 8287,6853,play,what is man doing?,video6853,166867,2 8288,6853,video,what is a person playing?,video6853,166868,2 8289,6853,explore,what is minecraft gameplay footage of doing?,video6853,166869,2 8290,6854,look,what is a person doing?,video6854,166870,18 8291,6854,perform,what is taylor swift doing?,video6854,166871,18 8292,6854,perform,what is a blonde woman doing?,video6854,166872,18 8293,6854,form,what is a woman sings in front of narrow blue glaciers in a minidress covered with little mirrors doing?,video6854,166873,18 8294,6854,perform,what is musician taylor swift doing?,video6854,166874,18 8295,6854,wear,what is a fashion dress design a girl doing?,video6854,166875,18 8296,6854,wear,what is women in bikin doing?,video6854,166876,18 8297,6854,background,what does taylor swift perform a song of hers as a runway model walks in?,video6854,166877,18 8298,6854,lingerie,what do models walk in?,video6854,166878,18 8299,6854,model,what does taylor swift perform a song of hers as a runway walks in the background?,video6854,166879,18 8300,6854,taylor,who sings in a shimmery dress at the victoria secret fashion show?,video6854,166880,18 8301,6854,woman,who sings in front of narrow blue glaciers in a minidress covered with little mirrors forming angular patterns?,video6854,166881,18 8302,6854,scene,where is blonde woman in gray dress singing?,video6854,166882,18 8303,6854,taylor,who performs a song of hers as a runway model walks in the background?,video6854,166883,18 8304,6854,taylor,who performs a hit song of hers as a runway model walks in the background in white fluff?,video6854,166884,18 8305,6854,runway,what does taylor swift perform a song of hers as model walks in the background?,video6854,166885,18 8306,6854,stage,when does a woman in an angel costume walk?,video6854,166886,18 8307,6854,crowd,what is a women in silver dress entertaining?,video6854,166887,18 8308,6854,scene,what is blonde woman in gray dress singing on?,video6854,166888,18 8309,6854,fashion,what does taylor swift performing a song at a victoria s?,video6854,166889,18 8310,6854,taylor,who is singing on stage at a modeling show?,video6854,166890,18 8311,6854,stage,when is taylor swift singing at a modeling show?,video6854,166891,18 8312,6854,fashion,who show shows off new clothing?,video6854,166892,18 8313,6854,clothing,what do women in fashion show shows off?,video6854,166893,18 8314,6854,runway,what walks in the background in white fluff?,video6854,166894,18 8315,6855,talk,what is a bald man doing?,video6855,166895,12 8316,6855,talk,what is a man doing?,video6855,166896,12 8317,6855,talk,what is bald man with glasses and mustache with bide burns and green sweater doing?,video6855,166897,12 8318,6855,hold,what are two hands doing?,video6855,166898,12 8319,6855,wear,what is the man doing?,video6855,166899,12 8320,6855,talk,what is there is a man with specs doing?,video6855,166900,12 8321,6855,talk,what is a man with thick moustache and glasses is seated and doing?,video6855,166901,12 8322,6855,talk,what is a bald guy with glasses in a green sweater doing?,video6855,166902,12 8323,6855,phone,what are two hands holding up then the clip goes to a gentleman wearing glasses and a green shirt and a bald head?,video6855,166903,12 8324,6855,wear,what is a old man in blue color dress doing?,video6855,166904,12 8325,6855,advice,what is a person giving that nowadays people live in computer community and programming and logos?,video6855,166905,12 8326,6855,student,who does a man in glasses with a moustache discuss s interests in computer science?,video6855,166906,12 8327,6855,person,who is giving advice that nowadays people live in computer community and programming and logos?,video6855,166907,12 8328,6855,man,who describes the opportunities available for computer science students in the area near his school?,video6855,166908,12 8329,6855,person,who is giving advice that people have to show interest in industrial contact?,video6855,166909,12 8330,6855,man,who describes local computer science community among students?,video6855,166910,12 8331,6855,advice,what is a person giving that people have to show interest in industrial contact?,video6855,166911,12 8332,6855,clip,what are two hands holding up a cell phone then goes to a gentleman wearing glasses and a green shirt and a bald head?,video6855,166912,12 8333,6855,man,who describes the educational benefits of having links to the north western tech industry?,video6855,166913,12 8334,6855,two,how many hands are holding up a cell phone then the clip goes to a gentleman wearing glasses and a green shirt and a bald head?,video6855,166914,12 8335,6855,speaker,who discusses the logistics of computer software on an industrial scale?,video6855,166915,12 8336,6856,castle,who is a gamer playing?,video6856,166916,13 8337,6856,river,what does castle crasher s gameplay on?,video6856,166917,13 8338,6856,video,what do a gamer playing?,video6856,166918,13 8339,6856,someone,what is playing a video game?,video6856,166919,13 8340,6856,video,what is someone playing?,video6856,166920,13 8341,6856,video,what is a person playing?,video6856,166921,13 8342,6856,river,what does a character cross?,video6856,166922,13 8343,6856,video,what is a man playing?,video6856,166923,13 8344,6856,video,what does a boy play?,video6856,166924,13 8345,6856,man,who is playing a video game?,video6856,166925,13 8346,6856,character,who crosses a river?,video6856,166926,13 8347,6856,boy,who plays a video game?,video6856,166927,13 8348,6856,boy,who is explaning how to play a game in a forgin language?,video6856,166928,13 8349,6856,person,who plays a two dimensional game as a character crosses a river?,video6856,166929,13 8350,6856,kid,who is playing a video game in a forest?,video6856,166930,13 8351,6856,screen,what does girl talking while a video game play on?,video6856,166931,13 8352,6856,boy,who talks as he plays a video game?,video6856,166932,13 8353,6856,play,what is some person doing?,video6856,166933,13 8354,6856,talk,what is girl doing?,video6856,166934,13 8355,6856,play,what is a person doing?,video6856,166935,13 8356,6856,crasher,who s gameplay on a river?,video6856,166936,13 8357,6856,play,what are people doing?,video6856,166937,13 8358,6856,play,what is a gamer doing?,video6856,166938,13 8359,6856,play,what is a kid doing?,video6856,166939,13 8360,6856,play,what is a man and woman doing?,video6856,166940,13 8361,6856,cros,what is a 16 bit video game character doing?,video6856,166941,13 8362,6856,forest,what is a kid playing a video game in?,video6856,166942,13 8363,6856,play,what is a man doing?,video6856,166943,13 8364,6856,game,what play footage of action game?,video6856,166944,13 8365,6856,action,what do game play footage of?,video6856,166945,13 8366,6856,gamer,what is playing castle crashers?,video6856,166946,13 8367,6856,video,what is a kid playing in a forest?,video6856,166947,13 8368,6857,boy,who explains toys?,video6857,166948,10 8369,6857,toy,what is a man demonstrating?,video6857,166949,10 8370,6857,toy,what is man discussing?,video6857,166950,10 8371,6857,toy,what is a person playing with?,video6857,166951,10 8372,6857,toy,what had very small pieces?,video6857,166952,10 8373,6857,man,who reviews a toy of a dog polimeman?,video6857,166953,10 8374,6857,hand,what is someone holding some toy in?,video6857,166954,10 8375,6857,boy,who plays with a toy figure while swiveling its head?,video6857,166955,10 8376,6857,child,who plays with a doll in a room?,video6857,166956,10 8377,6857,man,who plays with a small police dog toy?,video6857,166957,10 8378,6857,someone,who is holding some toy in his hand?,video6857,166958,10 8379,6857,room,what does a child play with a doll in?,video6857,166959,10 8380,6857,man,who is discussing a toy?,video6857,166960,10 8381,6857,doll,what does a child play with in a room?,video6857,166961,10 8382,6857,toy,what is someone holding in his hand?,video6857,166962,10 8383,6857,person,who is playing with a toy?,video6857,166963,10 8384,6857,man,who holds the toy?,video6857,166964,10 8385,6857,man,who is demonstrating a toy?,video6857,166965,10 8386,6857,man,who holds a spy dog action figure?,video6857,166966,10 8387,6857,toy,what does the man hold?,video6857,166967,10 8388,6857,swivel,what is a boy plays with a toy figure while doing?,video6857,166968,10 8389,6857,hold,what is someone doing?,video6857,166969,10 8390,6857,play,what is person doing?,video6857,166970,10 8391,6857,discus,what is man doing?,video6857,166971,10 8392,6857,talk,what is guy doing?,video6857,166972,10 8393,6857,demonstrate,what is a man doing?,video6857,166973,10 8394,6857,play,what is a person doing?,video6857,166974,10 8395,6857,put,what is a man talks about doing?,video6857,166975,10 8396,6857,play,what is a man doing?,video6857,166976,10 8397,6857,show,what is a person doing?,video6857,166977,10 8398,6858,minecraft,what is someone playing on the computer?,video6858,166978,10 8399,6858,man,who talks while playing a video game?,video6858,166979,10 8400,6858,someone,what is playing minecraft on the computer?,video6858,166980,10 8401,6858,computer,what is someone playing minecraft on?,video6858,166981,10 8402,6858,person,who is playing minecraft?,video6858,166982,10 8403,6858,minecraft,who is an interesting game?,video6858,166983,10 8404,6858,man,who is playing a video game?,video6858,166984,10 8405,6858,minecraft,what is a person playing?,video6858,166985,10 8406,6858,cartoon,what play for kids?,video6858,166986,10 8407,6858,video,what is a man playing?,video6858,166987,10 8408,6858,game,what is minecraft?,video6858,166988,10 8409,6858,person,who minecraft?,video6858,166989,10 8410,6858,minecraft,what do people play in german?,video6858,166990,10 8411,6858,simple,what does a man describe actions of looking video game in a language other than english?,video6858,166991,10 8412,6858,look,what is a man describes actions of a simple doing?,video6858,166992,10 8413,6858,play,what is a man doing?,video6858,166993,10 8414,6858,play,what is a man talks while doing?,video6858,166994,10 8415,6858,play,what is a person doing?,video6858,166995,10 8416,6858,play,what is someone doing?,video6858,166996,10 8417,6858,man,who describes actions of a simple looking video game in a language other than english?,video6858,166997,10 8418,6859,lady,who is doing a trick with dollar?,video6859,166998,2 8419,6859,woman,who is holding a bill?,video6859,166999,2 8420,6859,lady,who is explaining about a dollar?,video6859,167000,2 8421,6859,trick,what is lady doing with dollar?,video6859,167001,2 8422,6859,woman,who is holding a dollar bill?,video6859,167002,2 8423,6859,bill,what is a woman holding?,video6859,167003,2 8424,6859,man,who is set up for a reaction test?,video6859,167004,2 8425,6859,woman,who is trying a reaction test on a man?,video6859,167005,2 8426,6859,talk,what is people doing?,video6859,167006,2 8427,6859,woman,who does an experiment with a dollar bill?,video6859,167007,2 8428,6859,woman,who speaks to the camera for a video segment?,video6859,167008,2 8429,6859,woman,who plays a trick on a man with a dollar bill?,video6859,167009,2 8430,6859,person,who is holding money?,video6859,167010,2 8431,6859,talk,what is woman doing?,video6859,167011,2 8432,6859,explain,what is a lady doing?,video6859,167012,2 8433,6859,hold,what is a person doing?,video6859,167013,2 8434,6859,hold,what is a woman doing?,video6859,167014,2 8435,6859,try,what is a woman doing?,video6859,167015,2 8436,6859,play,what is a woman doing?,video6859,167016,2 8437,6859,play,what is five man doing?,video6859,167017,2 8438,6859,test,what is girl doing?,video6859,167018,2 8439,6859,man,who is playing football?,video6859,167019,2 8440,6859,dollar,what is lady doing a trick with?,video6859,167020,2 8441,6859,woman,who is talking?,video6859,167021,2 8442,6859,football,what is five man playing?,video6859,167022,2 8443,6859,money,what is a person holding?,video6859,167023,2 8444,6859,dollar,what is a lady explaining about?,video6859,167024,2 8445,6860,song,what is a girl covering?,video6860,167025,14 8446,6860,girl,who is covering a song?,video6860,167026,14 8447,6860,couch,what is a woman sitting on?,video6860,167027,14 8448,6860,woman,who is singing about being cool?,video6860,167028,14 8449,6860,cover,what is a girl doing?,video6860,167029,14 8450,6860,woman,who is sitting on a couch?,video6860,167030,14 8451,6860,woman,who sings the cool kids?,video6860,167031,14 8452,6860,woman,who is singing in a music video?,video6860,167032,14 8453,6860,video,what shows girls who remade the video for a song?,video6860,167033,14 8454,6860,sit,what is a girl doing?,video6860,167034,14 8455,6860,feature,what is a music video doing?,video6860,167035,14 8456,6860,sit,what is a young woman doing?,video6860,167036,14 8457,6861,guitar,what does a man sit on stage playing?,video6861,167037,5 8458,6861,talk,what is a man in a suit doing?,video6861,167038,5 8459,6861,stage,when does a man sit playing guitar?,video6861,167039,5 8460,6861,sit,what are people doing?,video6861,167040,5 8461,6861,man,who scores the guitarist?,video6861,167041,5 8462,6861,man,who addressed the music students?,video6861,167042,5 8463,6861,play,what is a man doing?,video6861,167043,5 8464,6861,guy,who do people watch play guitar?,video6861,167044,5 8465,6861,guitar,what do people watch a guy play?,video6861,167045,5 8466,6861,music,who did the man address?,video6861,167046,5 8467,6861,guitarist,who the man scores?,video6861,167047,5 8468,6861,man,who is sitting?,video6861,167048,5 8469,6861,sit,what is a man doing?,video6861,167049,5 8470,6861,guitar,what do people listen to a young man play?,video6861,167050,5 8471,6861,listen,what is a music teacher doing?,video6861,167051,5 8472,6861,sit,what is guy doing?,video6861,167052,5 8473,6861,play,what are the two men doing?,video6861,167053,5 8474,6861,sit,what are two men doing?,video6861,167054,5 8475,6861,hold,what is two men doing?,video6861,167055,5 8476,6861,star,what is a man doing?,video6861,167056,5 8477,6861,two,how many men are playing on a small stage?,video6861,167057,5 8478,6861,man,who is playing a guitar on stage while others watch?,video6861,167058,5 8479,6861,man,who looks at a musician play infront of an audience?,video6861,167059,5 8480,6861,stage,when is a man playing a guitar while others watch?,video6861,167060,5 8481,6861,musician,who does a man look at play infront of an audience?,video6861,167061,5 8482,6861,two,how many men are sitting down oe with a guitar and one with a phone?,video6861,167062,5 8483,6861,guitar,what is a man playing on stage while others watch?,video6861,167063,5 8484,6861,man,who sits on stage playing guitar?,video6861,167064,5 8485,6861,teacher,who is listening to one of his students?,video6861,167065,5 8486,6861,man,who is watching a person play guitar?,video6861,167066,5 8487,6861,phone,what are two men sitting down oe with a guitar and one with?,video6861,167067,5 8488,6861,audience,what does a man look at a musician play infront of?,video6861,167068,5 8489,6862,hold,what is a man in the dress lie on the floor doing?,video6862,167069,6 8490,6862,discus,what is a commerical for the app mojo doing?,video6862,167070,6 8491,6862,lie,what is a shot of a man and a woman in doing?,video6862,167071,6 8492,6862,feature,what is a most violent shows in televion history list doing?,video6862,167072,6 8493,6862,lie,what are the people who are killed doing?,video6862,167073,6 8494,6862,lie,what are man and woman who are killed doing?,video6862,167074,6 8495,6862,cry,what is a woman doing?,video6862,167075,6 8496,6862,exclude,what is a man states that on this show they will discuss the most violent shows in tv history doing?,video6862,167076,6 8497,6862,lay,what is there is a couple doing?,video6862,167077,6 8498,6862,lie,what is a man and lady doing?,video6862,167078,6 8499,6862,lay,what is a man and a woman doing?,video6862,167079,6 8500,6862,die,what is a clip of two people doing?,video6862,167080,6 8501,6862,lie,what is a man and a lay doing?,video6862,167081,6 8502,6862,lay,what is a woman doing?,video6862,167082,6 8503,6862,clip,what did a clip of two people dying together follow by from southpark?,video6862,167083,6 8504,6862,blood,what lays on the floor then animated figures looks surprised?,video6862,167084,6 8505,6862,southpark,what did a clip of two people dying together follow by a clip from?,video6862,167085,6 8506,6862,blood,what are a man in the dress covered in?,video6862,167086,6 8507,6862,floor,what is a man and lady lying on with blood?,video6862,167087,6 8508,6862,blood,what is a man and lady lying on the floor with?,video6862,167088,6 8509,6862,blood,what did a man and a woman laying down together cover in?,video6862,167089,6 8510,6862,woman,who is crying a man?,video6862,167090,6 8511,6862,floor,what are man and woman who are killed lying on?,video6862,167091,6 8512,6862,woman,who is laying dead with a man with water around the dolls?,video6862,167092,6 8513,6862,person,who laughs then people cover with blood lays on the floor then animated figures looks surprised?,video6862,167093,6 8514,6862,woman,who are lying dead on the flood a person with a hood is speaking?,video6862,167094,6 8515,6862,floor,what do a man in the dress lie on holding hands?,video6862,167095,6 8516,6862,floor,what are the people who are killed lying on?,video6862,167096,6 8517,6862,man,who is a woman crying?,video6862,167097,6 8518,6862,floor,what does blood lay on then animated figures looks surprised?,video6862,167098,6 8519,6863,meal,what are pig characters making?,video6863,167099,0 8520,6863,pig,who are making a meal?,video6863,167100,0 8521,6863,talk,what is a children s cartoon with doing?,video6863,167101,0 8522,6863,talk,what is a doing?,video6863,167102,0 8523,6863,talk,what is a video of peppa pig mama and papa doing?,video6863,167103,0 8524,6863,cook,what is an animated pig doing?,video6863,167104,0 8525,6863,talk,what is cartoon of two pigs doing?,video6863,167105,0 8526,6863,family,what is making food?,video6863,167106,0 8527,6863,talk,what are some cartoon characters doing?,video6863,167107,0 8528,6863,talk,what are two anime s doing?,video6863,167108,0 8529,6863,cartoon,what discuss potatoes?,video6863,167109,0 8530,6863,cartoon,who are talking?,video6863,167110,0 8531,6863,cartoon,what does a children s with talking pigs?,video6863,167111,0 8532,6863,two,how many anime s are talking to each other?,video6863,167112,0 8533,6863,elder,what rolls into the kitchen with a huge wheelbarrow full of potatoes?,video6863,167113,0 8534,6863,food,what is a pig family making?,video6863,167114,0 8535,6863,toy,what is going to eat sweets in cartoon?,video6863,167115,0 8536,6863,kitchen,what does an elder pig roll into with a huge wheelbarrow full of potatoes?,video6863,167116,0 8537,6863,peppa,what is getting a delivery of potatoes?,video6863,167117,0 8538,6863,pig,what is cooking?,video6863,167118,0 8539,6863,two,how many cartoon pigs discuss potatoes?,video6863,167119,0 8540,6864,talk,what is a couple doing?,video6864,167120,19 8541,6864,talk,what is a girl is shown doing?,video6864,167121,19 8542,6864,talk,what is a man and a woman doing?,video6864,167122,19 8543,6864,talk,what are a man and woman doing?,video6864,167123,19 8544,6864,talk,what is a man takes pictures while doing?,video6864,167124,19 8545,6864,play,what is a clip from a movie doing?,video6864,167125,19 8546,6864,attention,what did the woman want the man s?,video6864,167126,19 8547,6864,woman,who takes a mans phone?,video6864,167127,19 8548,6864,language,what ad with a man and a woman?,video6864,167128,19 8549,6864,woman,who wanted the man s attention?,video6864,167129,19 8550,6864,girl,who is shown talking to a man with a phone?,video6864,167130,19 8551,6864,man,who is taking a picture while talking to a woman?,video6864,167131,19 8552,6864,man,who takes pictures while talking to a woman?,video6864,167132,19 8553,6864,man,what did the woman want s attention?,video6864,167133,19 8554,6864,man,who is taking photos?,video6864,167134,19 8555,6864,argument,what do spanish couple get in?,video6864,167135,19 8556,6864,phone,what does a woman take?,video6864,167136,19 8557,6864,couple,what get in argument?,video6864,167137,19 8558,6864,moment,when are a man and women having?,video6864,167138,19 8559,6865,pose,what is there are some hot ladies doing?,video6865,167139,18 8560,6865,drink,what is a woman in a black tank top with large breasts doing?,video6865,167140,18 8561,6865,show,what is a collage of pictures doing?,video6865,167141,18 8562,6865,drink,what is there is a woman doing?,video6865,167142,18 8563,6865,wear,what is ladies doing?,video6865,167143,18 8564,6865,allure,what is still shots of scantily dressed women in doing?,video6865,167144,18 8565,6865,display,what are women doing?,video6865,167145,18 8566,6865,camera,what do ladies wearing revealing clothes while looking provocative at?,video6865,167146,18 8567,6865,wear,what is a woman doing?,video6865,167147,18 8568,6865,slideshow,what are many fit women with great bodies being showcased in?,video6865,167148,18 8569,6865,camera,what do girls in skimpy clothes show off for?,video6865,167149,18 8570,6865,wear,what are girls doing?,video6865,167150,18 8571,6866,horseback,what is a man lassoing an animal on?,video6866,167151,13 8572,6866,animal,what is a man lassoing on horseback?,video6866,167152,13 8573,6866,horse,what is a man riding while chasing another animal?,video6866,167153,13 8574,6866,calf,what does a cowboy jump off a horse a ties the legs of?,video6866,167154,13 8575,6866,cowboy,who jumps off a horse a ties the legs of a calf?,video6866,167155,13 8576,6866,man,who rides a horse on a track?,video6866,167156,13 8577,6866,man,who is riding a horse to catch a small calf?,video6866,167157,13 8578,6866,man,who is lassoing an animal on horseback?,video6866,167158,13 8579,6866,man,who is riding a horse while chasing another animal?,video6866,167159,13 8580,6866,horse,what is a man riding to catch a small calf?,video6866,167160,13 8581,6866,area,what did a man walking in a fence off with a horse in there?,video6866,167161,13 8582,6866,show,what is doing?,video6866,167162,13 8583,6866,preform,what is people doing?,video6866,167163,13 8584,6866,catch,what is horse rider doing?,video6866,167164,13 8585,6866,feature,what is a rodeo doing?,video6866,167165,13 8586,6866,perform,what is a rodeo clown doing?,video6866,167166,13 8587,6866,lasso,what is a person doing?,video6866,167167,13 8588,6866,horse,what did a man walking in a fence off area with in there?,video6866,167168,13 8589,6866,lasso,what is a man doing?,video6866,167169,13 8590,6866,walk,what is a man doing?,video6866,167170,13 8591,6866,calf,what does a person lasso?,video6866,167171,13 8592,6866,horse,what is a man riding?,video6866,167172,13 8593,6866,track,what a man rides a horse on?,video6866,167173,13 8594,6866,horse,what a man rides on a track?,video6866,167174,13 8595,6866,person,who lassoing a calf?,video6866,167175,13 8596,6866,man,who is catching an animal?,video6866,167176,13 8597,6866,horse,what does a cowboy jump a ties the legs of a calf?,video6866,167177,13 8598,6866,rodeo,what clown performing for the audience?,video6866,167178,13 8599,6866,man,who is riding a horse?,video6866,167179,13 8600,6866,animal,what is a man catching?,video6866,167180,13 8601,6866,audience,what do a rodeo clown performing for?,video6866,167181,13 8602,6866,rodeo,what did people preform in?,video6866,167182,13 8603,6867,show,what is there is a woman in white doing?,video6867,167183,3 8604,6867,show,what is there is a woman with brown hair doing?,video6867,167184,3 8605,6867,prepare,what is female tennis players wander around the court doing?,video6867,167185,3 8606,6867,play,what are two women doing?,video6867,167186,3 8607,6867,show,what is blonde girl in tennis outfit lifts up her skirt doing?,video6867,167187,3 8608,6867,round,what is the shuttle player in blue t shirt doing?,video6867,167188,3 8609,6867,play,what are professional athletes doing?,video6867,167189,3 8610,6867,walk,what is blonde woman doing?,video6867,167190,3 8611,6867,play,what is a girl with long blond hair doing?,video6867,167191,3 8612,6867,play,what are a girl with white jersey and another one with blue jersey doing?,video6867,167192,3 8613,6867,tenni,what is blonde woman playing?,video6867,167193,3 8614,6867,two,how many women are prepared to play a game of tennis on the court outdoors?,video6867,167194,3 8615,6867,tenni,what are professional athletes playing matches?,video6867,167195,3 8616,6867,tension,what mounts with the opponent?,video6867,167196,3 8617,6867,tenni,what is taken from the low skirt?,video6867,167197,3 8618,6867,blonde,who is walking?,video6867,167198,3 8619,6867,tenni,what are two women playing?,video6867,167199,3 8620,6867,panty,what is visible on the camera?,video6867,167200,3 8621,6867,sharapova,who takes ball?,video6867,167201,3 8622,6867,ball,what does sharapova take?,video6867,167202,3 8623,6867,blonde,who is playing tennis match?,video6867,167203,3 8624,6867,skirt,what does a blonde tennis player pull up in an intermission?,video6867,167204,3 8625,6867,opponent,who does the tension mount with?,video6867,167205,3 8626,6867,camera,what do lady in a white dress being caught by wearing red panties?,video6867,167206,3 8627,6867,tenni,what are a girl with white jersey and another one with blue jersey playing?,video6867,167207,3 8628,6867,tenni,who wander around the court preparing for the next round?,video6867,167208,3 8629,6867,tenni,what does the women in the the short skirt play as the people watch?,video6867,167209,3 8630,6867,skirt,what does blonde girl in tennis outfit lift up showing orange underwear?,video6867,167210,3 8631,6867,tenni,what are two women prepared to play a game of on the court outdoors?,video6867,167211,3 8632,6867,two,how many women are playing tennis?,video6867,167212,3 8633,6868,show,what is the beginning of a tv show doing?,video6868,167213,7 8634,6868,talk,what are a group of people doing?,video6868,167214,7 8635,6868,talk,what is a group of young people doing?,video6868,167215,7 8636,6868,talk,what is a group of people doing?,video6868,167216,7 8637,6868,cheer,what are a group of people doing?,video6868,167217,7 8638,6868,cheer,what is a tv show clips shows girls doing?,video6868,167218,7 8639,6868,stage,when are people celebrating?,video6868,167219,7 8640,6868,photo,what do several girls pose for?,video6868,167220,7 8641,6868,stage,when are a group of people talking?,video6868,167221,7 8642,6868,show,what do the beginning of a tv show showing the stars of?,video6868,167222,7 8643,6868,line,what do people stand in?,video6868,167223,7 8644,6868,fun,what are the ladies having together?,video6868,167224,7 8645,6868,two,how many women walk into a room on a tv show?,video6868,167225,7 8646,6868,background,what does group of people having fun as music play in?,video6868,167226,7 8647,6868,man,who claps his hands?,video6868,167227,7 8648,6868,group,what stands in a line?,video6868,167228,7 8649,6868,line,what does a group stand in?,video6868,167229,7 8650,6869,someone,what is drive a car very fastly?,video6869,167230,7 8651,6869,love,what do a boy and girl fall in?,video6869,167231,7 8652,6869,man,who states his love?,video6869,167232,7 8653,6869,woman,who does a man run to?,video6869,167233,7 8654,6869,face,what does a woman touching a man s?,video6869,167234,7 8655,6869,woman,who is running away outside?,video6869,167235,7 8656,6869,love,what does a man state?,video6869,167236,7 8657,6869,man,who is running?,video6869,167237,7 8658,6869,talk,what is a man doing?,video6869,167238,7 8659,6869,car,what is someone drive very fastly?,video6869,167239,7 8660,6869,man,who runs to a woman?,video6869,167240,7 8661,6869,woman,who runs through a snowy field?,video6869,167241,7 8662,6869,show,what is a preview of a tv show doing?,video6869,167242,7 8663,6869,touch,what is a woman doing?,video6869,167243,7 8664,6869,tell,what is a man doing?,video6869,167244,7 8665,6869,show,what is video doing?,video6869,167245,7 8666,6869,video,what shows multiple clips of people running away?,video6869,167246,7 8667,6869,love,what do a preview of a tv show showing car chases and a man and women in?,video6869,167247,7 8668,6870,video,what are people talking about?,video6870,167248,3 8669,6870,coffee,what is a woman holding?,video6870,167249,3 8670,6870,video,what are two people watching?,video6870,167250,3 8671,6870,couple,what is talking?,video6870,167251,3 8672,6870,look,what is a man and a woman doing?,video6870,167252,3 8673,6870,computer,what are a couple on?,video6870,167253,3 8674,6870,hold,what is woman doing?,video6870,167254,3 8675,6870,look,what is man and woman on couch drinking coffee doing?,video6870,167255,3 8676,6870,watch,what are two people doing?,video6870,167256,3 8677,6870,describe,what is two people are on a couch doing?,video6870,167257,3 8678,6870,communicate,what are the people doing?,video6870,167258,3 8679,6870,sit,what is people doing?,video6870,167259,3 8680,6870,talk,what are people doing?,video6870,167260,3 8681,6870,hold,what is a woman doing?,video6870,167261,3 8682,6870,talk,what is a woman and a man with a computer doing?,video6870,167262,3 8683,6870,sit,what is a man and a woman doing?,video6870,167263,3 8684,6870,comment,what is a man and woman doing?,video6870,167264,3 8685,6870,sit,what is two people doing?,video6870,167265,3 8686,6870,couple,what are on a computer?,video6870,167266,3 8687,6870,watch,what is a couple doing?,video6870,167267,3 8688,6870,someone,what is a couple watching a video of skipping across a field?,video6870,167268,3 8689,6870,couple,what is looking at photos on a laptop together?,video6870,167269,3 8690,6870,couple,what is watching a video of someone skipping across a field?,video6870,167270,3 8691,6870,two,how many people sit on a couch in front of a laptop?,video6870,167271,3 8692,6870,hand,what are a man and a woman sitting on a couch introducing a video of themselves doing?,video6870,167272,3 8693,6870,two,how many people are on a couch describing the video they are about to show?,video6870,167273,3 8694,6870,woman,who is holding a coffee cup?,video6870,167274,3 8695,6870,look,what is a couple doing?,video6870,167275,3 8696,6870,talk,what is a couple doing?,video6870,167276,3 8697,6870,two,how many people are watching video?,video6870,167277,3 8698,6871,sit,what is a guy in glasses doing?,video6871,167278,5 8699,6871,discus,what is a young man doing?,video6871,167279,5 8700,6871,talk,what is a man behind a laptop doing?,video6871,167280,5 8701,6871,wear,what is a blonde man doing?,video6871,167281,5 8702,6871,describe,what is a man doing?,video6871,167282,5 8703,6871,sit,what is a men in dark brown suit doing?,video6871,167283,5 8704,6871,explain,what is a person doing?,video6871,167284,5 8705,6871,talk,what is one man doing?,video6871,167285,5 8706,6871,talk,what is there is a suit man doing?,video6871,167286,5 8707,6871,shake,what is a young man doing?,video6871,167287,5 8708,6871,explain,what is a man with brown shirt and spectacles doing?,video6871,167288,5 8709,6871,explain,what is a man here doing?,video6871,167289,5 8710,6871,talk,what is a guy doing?,video6871,167290,5 8711,6871,science,what does a kid in a brown blazer talk to the camera?,video6871,167291,5 8712,6871,desk,what is a man sitting at?,video6871,167292,5 8713,6871,man,who is talking to the camera?,video6871,167293,5 8714,6871,man,who is sitting at a desk?,video6871,167294,5 8715,6871,detail,what is a man describing what carbon 12 in?,video6871,167295,5 8716,6871,something,what is a man with brown shirt and spectacles explaining?,video6871,167296,5 8717,6871,something,what is a man here explaining by watching a laptop?,video6871,167297,5 8718,6871,camera,what does a kid in a brown blazer talk science to?,video6871,167298,5 8719,6871,man,who here is explaining something by watching a laptop?,video6871,167299,5 8720,6871,camera,what is a man talking to?,video6871,167300,5 8721,6871,man,who lifted hands together while making a point seated in front of rectangular windows decorated with vases and knickknacks?,video6871,167301,5 8722,6871,woman,who speaks to the camera for a video segment?,video6871,167302,5 8723,6871,man,who is discussing science topics related to carbon 12?,video6871,167303,5 8724,6871,man,who speaks from the back of a dark desk which has an open gray laptop a sculpture of connected silver?,video6871,167304,5 8725,6871,guy,who is talking to the screen at a desk about chemicals?,video6871,167305,5 8726,6871,woman,who sits at a desk in front of a laptop and talks?,video6871,167306,5 8727,6872,walk,what are some people in the desert doing?,video6872,167307,4 8728,6872,walk,what are some people doing?,video6872,167308,4 8729,6872,kill,what is the person says that half of the people around here are joins in the isi there is no other work other than doing?,video6872,167309,4 8730,6872,talk,what is a man with a covering over his face in the desert doing?,video6872,167310,4 8731,6872,cover,what is a man with a shemagh doing?,video6872,167311,4 8732,6872,talk,what is a man is covered his face and doing?,video6872,167312,4 8733,6872,conceal,what is a man doing?,video6872,167313,4 8734,6872,interpret,what is a translator doing?,video6872,167314,4 8735,6872,talk,what was a man cover his face doing?,video6872,167315,4 8736,6872,wear,what is a man doing?,video6872,167316,4 8737,6872,talk,what is there is a man doing?,video6872,167317,4 8738,6872,wear,what is a ma with his face covered up doing?,video6872,167318,4 8739,6872,talk,what is a military man with face coverings doing?,video6872,167319,4 8740,6872,desert,what are some people walking around in?,video6872,167320,4 8741,6872,wall,what are some people in the desert walking by?,video6872,167321,4 8742,6872,man,who is talking in while covering his face?,video6872,167322,4 8743,6872,man,who is covered his face?,video6872,167323,4 8744,6872,translator,who is interpreting what is being said about the is while in the desert?,video6872,167324,4 8745,6872,person,who was a man cover his face talking to?,video6872,167325,4 8746,6872,person,who is giving interview near the rocks?,video6872,167326,4 8747,6872,person,who is in mask and giving an interview outdoors?,video6872,167327,4 8748,6872,man,who is talking in while wearing battle gear?,video6872,167328,4 8749,6872,man,who is talking?,video6872,167329,4 8750,6872,face,what is a man covered?,video6872,167330,4 8751,6872,narration,what describes the group?,video6872,167331,4 8752,6872,group,what does a narration describe?,video6872,167332,4 8753,6872,desert,where are some people walking around?,video6872,167333,4 8754,6873,hold,what is a small cartoon rodent doing?,video6873,167334,2 8755,6873,hold,what is pikachu picks doing?,video6873,167335,2 8756,6873,hold,what is pikachu doing?,video6873,167336,2 8757,6873,hold,what is in a cartoon a man approaches a yellow character doing?,video6873,167337,2 8758,6873,talk,what is ash doing?,video6873,167338,2 8759,6873,hold,what is ash is surprised to see his picachu doing?,video6873,167339,2 8760,6873,interact,what is ash from pokemon doing?,video6873,167340,2 8761,6873,talk,what is a boy doing?,video6873,167341,2 8762,6873,watch,what is a person doing?,video6873,167342,2 8763,6873,egg,what is pikachu picks holding?,video6873,167343,2 8764,6873,pokemon,what is a person watching?,video6873,167344,2 8765,6873,cartoon,who falls down?,video6873,167345,2 8766,6873,floor,what does a cartoon character fall to?,video6873,167346,2 8767,6873,pikachu,what is holding an egg?,video6873,167347,2 8768,6873,egg,what do a small cartoon rodent holding?,video6873,167348,2 8769,6873,pikachu,what is ash proud of?,video6873,167349,2 8770,6873,character,who falls to the floor?,video6873,167350,2 8771,6873,cartoon,what rodent holding an egg?,video6873,167351,2 8772,6873,person,who is watching a pokemon cartoon?,video6873,167352,2 8773,6873,pikachu,who is holding an egg?,video6873,167353,2 8774,6873,egg,what is pikachu holding?,video6873,167354,2 8775,6873,pikachu,who is holding the pokemon egg?,video6873,167355,2 8776,6873,ash,what is talking to pikachu on pokemon?,video6873,167356,2 8777,6873,ash,what is proud of pikachu?,video6873,167357,2 8778,6873,pokemon,what does pikachu protect?,video6873,167358,2 8779,6873,pikachu,who protects a pokemon egg?,video6873,167359,2 8780,6873,cartoon,what does a man approach a yellow character holding an egg in?,video6873,167360,2 8781,6873,man,who approaches a yellow character holding an egg in a cartoon?,video6873,167361,2 8782,6873,pokemon,what is interacting with his main pokemon?,video6873,167362,2 8783,6874,official,who is a presentation given on programmable self assembly by?,video6874,167363,12 8784,6874,man,who is explain about a dna with a diagram?,video6874,167364,12 8785,6874,diagram,what is a man explain about a dna with?,video6874,167365,12 8786,6874,dna,what is a man explain about with a diagram?,video6874,167366,12 8787,6874,dna,what do a gentleman instructing the use of with the use of a chart?,video6874,167367,12 8788,6874,dna,what does a man discuss the structure of?,video6874,167368,12 8789,6874,man,who is explaining that dna is used a a structural building material not just an identifier?,video6874,167369,12 8790,6874,video,what shows ways it can be utilized in crafting origami?,video6874,167370,12 8791,6874,dna,what does a man talk about while images of various forms of dna are shown on a slide?,video6874,167371,12 8792,6874,presentation,what is given on programmable self assembly by an official?,video6874,167372,12 8793,6874,scientist,who gives a lecture on the characteristics of strands of dna?,video6874,167373,12 8794,6874,craft,what is a man discusses the structure of dna and the video shows ways it can be utilized in doing?,video6874,167374,12 8795,6874,talk,what is a guy doing?,video6874,167375,12 8796,6874,use,what is a presentation on doing?,video6874,167376,12 8797,6874,depict,what is different images doing?,video6874,167377,12 8798,6874,explain,what is the man doing?,video6874,167378,12 8799,6874,instruct,what is a gentleman doing?,video6874,167379,12 8800,6874,talk,what is a man doing?,video6874,167380,12 8801,6874,describe,what is a man doing?,video6874,167381,12 8802,6874,man,who is describing dna as a structural building material while showing various pictures of dna?,video6874,167382,12 8803,6874,dna,what is a man describing as a structural building material while showing various pictures of dna?,video6874,167383,12 8804,6874,man,who talks about dna while images of various forms of dna are shown on a slide?,video6874,167384,12 8805,6874,screen,what are different images depicting dna shown on while the instructor teaches?,video6874,167385,12 8806,6874,origami,what do an exploration of something about programmable self assembly dna?,video6874,167386,12 8807,6874,man,who gives a presentation on a matter of science?,video6874,167387,12 8808,6874,man,who is talking about how dna is a building material?,video6874,167388,12 8809,6874,man,who discusses the structure of dna?,video6874,167389,12 8810,6874,instructor,who teaches?,video6874,167390,12 8811,6874,slide,what are images of various forms of dna shown on?,video6874,167391,12 8812,6874,stuff,what is shown on a tv screen inside?,video6874,167392,12 8813,6875,woman,who demonstrates features of a stroller?,video6875,167393,9 8814,6875,person,who is demonstrating how to use a stroller?,video6875,167394,9 8815,6875,woman,who is demonstrating how to deconstruct a baby stroller?,video6875,167395,9 8816,6875,carriage,what is a woman touching?,video6875,167396,9 8817,6875,stroller,who is a person showing?,video6875,167397,9 8818,6875,stroller,who does a woman display?,video6875,167398,9 8819,6875,stroller,who does a woman demonstrate features of?,video6875,167399,9 8820,6875,woman,who shows the features of a baby stroller?,video6875,167400,9 8821,6875,stroller,who is a woman picking apart and together?,video6875,167401,9 8822,6875,person,who is showing a stroller?,video6875,167402,9 8823,6875,woman,who is picking a red stroller apart and together?,video6875,167403,9 8824,6875,woman,who demonstrates how to use a stroller?,video6875,167404,9 8825,6875,woman,who is touching a baby carriage?,video6875,167405,9 8826,6875,show,what is a person doing?,video6875,167406,9 8827,6875,demonstrate,what is person doing?,video6875,167407,9 8828,6875,talk,what is lady doing?,video6875,167408,9 8829,6875,woman,who displays a stroller?,video6875,167409,9 8830,6875,touch,what is a woman doing?,video6875,167410,9 8831,6875,pick,what is a woman doing?,video6875,167411,9 8832,6875,demonstrate,what is a woman doing?,video6875,167412,9 8833,6875,talk,what is a woman doing?,video6875,167413,9 8834,6876,look,what is a boy doing?,video6876,167414,14 8835,6876,watch,what is a boy doing?,video6876,167415,14 8836,6876,flock,what is a bunch of seagulls doing?,video6876,167416,14 8837,6876,watch,what is a child doing?,video6876,167417,14 8838,6876,fly,what is a child watches seagulls doing?,video6876,167418,14 8839,6876,watch,what is a little boy doing?,video6876,167419,14 8840,6876,look,what are two children doing?,video6876,167420,14 8841,6876,stand,what is a boy doing?,video6876,167421,14 8842,6876,boy,who looks at birds?,video6876,167422,14 8843,6876,backyard,what do kids watch birds in?,video6876,167423,14 8844,6876,window,what does a boy watching seagulls out?,video6876,167424,14 8845,6876,boy,who is watching birds?,video6876,167425,14 8846,6876,boy,who watching seagulls?,video6876,167426,14 8847,6876,deck,what do a boy and girl stand on?,video6876,167427,14 8848,6876,watching,who seagulls out a window?,video6876,167428,14 8849,6876,boy,who watches birds fly around?,video6876,167429,14 8850,6876,boy,who watches a flock of seagulls from a balcony?,video6876,167430,14 8851,6876,two,how many children are looking at birds from a balcony?,video6876,167431,14 8852,6876,boy,who watches sea gulls from a balcony?,video6876,167432,14 8853,6876,boy,who is standing outside with a ton of birds flying around?,video6876,167433,14 8854,6876,child,who watches seagulls flying in the air?,video6876,167434,14 8855,6876,boy,who is looking at many birds flying around?,video6876,167435,14 8856,6876,balcony,what are two children looking at birds from?,video6876,167436,14 8857,6876,child,who is watching several birds flying around?,video6876,167437,14 8858,6876,boy,who is looking at seagulls outdoors?,video6876,167438,14 8859,6877,star,what is a cartoon character doing?,video6877,167439,2 8860,6877,scar,what is a cartoon character doing?,video6877,167440,2 8861,6877,flap,what is a cartoon character doing?,video6877,167441,2 8862,6877,act,what is squidward doing?,video6877,167442,2 8863,6877,squidward,who scares spongebob squarepants?,video6877,167443,2 8864,6877,character,who is staring menacingly at another one?,video6877,167444,2 8865,6877,spongebob,who does an evil squidward scare?,video6877,167445,2 8866,6877,sponge,what bob video with vulgar language?,video6877,167446,2 8867,6877,sponge,what do a animated clip from the tv show?,video6877,167447,2 8868,6877,language,what do a fake sponge bob video with?,video6877,167448,2 8869,6877,video,what do a fake sponge bob with vulgar language?,video6877,167449,2 8870,6877,spongebob,what does a creepy bat like caterpillar fly towards?,video6877,167450,2 8871,6877,squidward,who is some kind of scary creature with bat wings?,video6877,167451,2 8872,6877,character,who is scaring another character?,video6877,167452,2 8873,6877,demon,who is squidward acting like?,video6877,167453,2 8874,6877,volleyball,what play the boys?,video6877,167454,2 8875,6877,squidward,what is acting like a demon?,video6877,167455,2 8876,6877,ground,what do the volleyball play?,video6877,167456,2 8877,6877,volleyball,what play ground?,video6877,167457,2 8878,6877,spongebob,who is having a very bad day?,video6877,167458,2 8879,6877,character,what is a cartoon character scaring?,video6877,167459,2 8880,6877,spongebob,who is scared?,video6877,167460,2 8881,6877,one,what is a cartoon character staring menacingly at?,video6877,167461,2 8882,6877,character,who is flapping his large wings?,video6877,167462,2 8883,6878,person,who is using a computer program?,video6878,167463,19 8884,6878,container,what is a drink splashing from?,video6878,167464,19 8885,6878,man,who demonstrates a program?,video6878,167465,19 8886,6878,someone,who is creating an image?,video6878,167466,19 8887,6878,person,who is recording their computer screen?,video6878,167467,19 8888,6878,draw,what is a person doing?,video6878,167468,19 8889,6878,design,what is a person doing?,video6878,167469,19 8890,6878,splash,what is a drink doing?,video6878,167470,19 8891,6878,show,what is a person doing?,video6878,167471,19 8892,6878,use,what is a person doing?,video6878,167472,19 8893,6878,show,what is a video doing?,video6878,167473,19 8894,6878,use,what is an artist shows how to change various aspects of an image doing?,video6878,167474,19 8895,6878,show,what is footage taken doing?,video6878,167475,19 8896,6878,person,who is drawing?,video6878,167476,19 8897,6878,computer,what is a person recording?,video6878,167477,19 8898,6878,play,what is doing?,video6878,167478,19 8899,6878,computer,what is a person using?,video6878,167479,19 8900,6878,program,what does a man demonstrate?,video6878,167480,19 8901,6878,image,what is someone creating?,video6878,167481,19 8902,6878,person,who is editing photos?,video6878,167482,19 8903,6878,edit,what is a person doing?,video6878,167483,19 8904,6878,drink,what is splashing from the container?,video6878,167484,19 8905,6878,create,what is someone doing?,video6878,167485,19 8906,6878,artist,who shows how to change various aspects of an image using image alteration software?,video6878,167486,19 8907,6878,person,who is designing a picture in photoshop?,video6878,167487,19 8908,6878,record,what is a person doing?,video6878,167488,19 8909,6878,picture,what did a video showing the layers use to create?,video6878,167489,19 8910,6878,person,who is showing how to use a computer program?,video6878,167490,19 8911,6879,spongebob,who are walking backwards?,video6879,167491,2 8912,6879,spongebob,who appeared very nervous?,video6879,167492,2 8913,6879,spongebob,what do spongebob and patrick back away from?,video6879,167493,2 8914,6879,pajama,what is squidward telling off spongebob and patrick in?,video6879,167494,2 8915,6879,spongebob,who back away from spongebob?,video6879,167495,2 8916,6879,spongebob,who back away from squidworth?,video6879,167496,2 8917,6879,anime,what is about a cartoon film?,video6879,167497,2 8918,6879,spongebob,who does squidward scold?,video6879,167498,2 8919,6879,anime,what is talking to another anime?,video6879,167499,2 8920,6879,anime,what is an anime talking to?,video6879,167500,2 8921,6879,squidward,who scolds spongebob and patrick?,video6879,167501,2 8922,6879,talk,what is an anime doing?,video6879,167502,2 8923,6879,squidward,what are patrick and spongebob backing away from?,video6879,167503,2 8924,6879,walk,what are spongebob and patrick doing?,video6879,167504,2 8925,6879,tell,what is squidward doing?,video6879,167505,2 8926,6879,character,who walks onto a liquid form of his face?,video6879,167506,2 8927,6879,two,how many cartoons are getting yelled at?,video6879,167507,2 8928,6879,spongebob,who are backing away from squidward?,video6879,167508,2 8929,6879,spongebob,who and patrick getting away from squiddly?,video6879,167509,2 8930,6879,spongebob,who get scared of a ghost squidward?,video6879,167510,2 8931,6879,squidward,who is telling off spongebob and patrick in his pajamas?,video6879,167511,2 8932,6879,spongebob,what is squidward telling off in his pajamas?,video6879,167512,2 8933,6880,talk,what is a man doing?,video6880,167513,5 8934,6880,talk,what is a man on stage doing?,video6880,167514,5 8935,6880,stage,when do an old man in glasses doing a ted talk?,video6880,167515,5 8936,6880,man,who talks on a ted stage?,video6880,167516,5 8937,6880,man,who speaks to an audience?,video6880,167517,5 8938,6880,man,who is talking to an audience?,video6880,167518,5 8939,6880,man,who is talking about something?,video6880,167519,5 8940,6880,seminar,what is giving by an expert?,video6880,167520,5 8941,6880,man,who is giving a lecture?,video6880,167521,5 8942,6880,audience,what does a bearded man speak to?,video6880,167522,5 8943,6880,expert,who is a seminar giving by?,video6880,167523,5 8944,6880,man,who is giving a presentation?,video6880,167524,5 8945,6880,something,what is a man talking about?,video6880,167525,5 8946,6880,presentation,what is an older man giving?,video6880,167526,5 8947,6880,audience,what is a man talking to?,video6880,167527,5 8948,6880,man,who is talking?,video6880,167528,5 8949,6880,stand,what is man doing?,video6880,167529,5 8950,6880,man,who is standing on a stage giving a lecture at a ted conference?,video6880,167530,5 8951,6880,man,who is giving a lecture on stage for an audience?,video6880,167531,5 8952,6880,stage,when is man standing giving a lecture at a ted conference?,video6880,167532,5 8953,6880,man,who speaks to an audience on stage?,video6880,167533,5 8954,6881,feature,what is a cartoon doing?,video6881,167534,14 8955,6881,animation,what was very colorful?,video6881,167535,14 8956,6881,escape,what does a colonial cartoon depict?,video6881,167536,14 8957,6881,doorway,what does a cartoon character emerge through?,video6881,167537,14 8958,6881,cartoon,what are talking to each other?,video6881,167538,14 8959,6881,room,what does a man walk into?,video6881,167539,14 8960,6881,colonial,what depicts an escape scene?,video6881,167540,14 8961,6881,character,who emerges through a doorway?,video6881,167541,14 8962,6881,man,who walks into the room?,video6881,167542,14 8963,6881,man,who is talking to a woman and a man?,video6881,167543,14 8964,6881,time,when does an animation that show people trying to escape?,video6881,167544,14 8965,6881,urgency,what do cartoon characters talk to each other with?,video6881,167545,14 8966,6881,tell,what is a man doing?,video6881,167546,14 8967,6881,talk,what are cartoon people doing?,video6881,167547,14 8968,6881,talk,what is a man doing?,video6881,167548,14 8969,6881,room,what do a cartoon where a black man and a red headed man enter?,video6881,167549,14 8970,6881,man,who urges a kid to run from soilders?,video6881,167550,14 8971,6881,man,who tells a boy that the redcoats are coming?,video6881,167551,14 8972,6881,try,what is an animation that shows people doing?,video6881,167552,14 8973,6881,cartoon,who talk to each other with urgency?,video6881,167553,14 8974,6881,kid,who does a man urge to run from soilders?,video6881,167554,14 8975,6881,boy,who does a man tell that the redcoats are coming?,video6881,167555,14 8976,6881,animation,what that shows people trying to escape in time?,video6881,167556,14 8977,6882,woman,who was using a smart phone?,video6882,167557,1 8978,6882,woman,who teasing a man?,video6882,167558,1 8979,6882,man,who is screaming on the phone?,video6882,167559,1 8980,6882,advertisement,what did smart phone app?,video6882,167560,1 8981,6882,phone,what app advertisement?,video6882,167561,1 8982,6882,woman,who is teasing a man?,video6882,167562,1 8983,6882,phone,what is a woman looking at?,video6882,167563,1 8984,6882,phone,what is a man talking in?,video6882,167564,1 8985,6882,man,who does a woman make fun of?,video6882,167565,1 8986,6882,couch,what are a guy and girl fighting on?,video6882,167566,1 8987,6882,technology,what do two asian teenagers arguing about on a couch?,video6882,167567,1 8988,6882,man,who is talking in a phone?,video6882,167568,1 8989,6882,woman,who makes fun of a man?,video6882,167569,1 8990,6882,answer,what a man and a woman on a couch race to find to a quesion on their phones?,video6882,167570,1 8991,6882,couch,what do two asian teenagers arguing about technology on?,video6882,167571,1 8992,6882,man,who sits on the couch using his phone?,video6882,167572,1 8993,6882,man,who does a woman tease?,video6882,167573,1 8994,6882,woman,who is looking at a phone?,video6882,167574,1 8995,6882,man,who is woman teasing?,video6882,167575,1 8996,6882,phone,what is the woman using an app on?,video6882,167576,1 8997,6882,phone,what is a man screaming on?,video6882,167577,1 8998,6882,tease,what is woman doing?,video6882,167578,1 8999,6882,argue,what is two asian teenagers doing?,video6882,167579,1 9000,6882,use,what was the woman doing?,video6882,167580,1 9001,6882,tease,what are people doing?,video6882,167581,1 9002,6882,look,what is a woman doing?,video6882,167582,1 9003,6882,use,what is a man sits on the couch doing?,video6882,167583,1 9004,6882,scream,what is a man doing?,video6882,167584,1 9005,6882,tease,what is a woman doing?,video6882,167585,1 9006,6882,fight,what are a guy and girl doing?,video6882,167586,1 9007,6882,book,what is a girl uses the pickatt app on her phone to book reservations faster than her boyfriend who tries doing?,video6882,167587,1 9008,6882,book,what is a girl proves to her brother that doing?,video6882,167588,1 9009,6882,sit,what is a couple doing?,video6882,167589,1 9010,6882,phone,what was the woman using?,video6882,167590,1 9011,6882,use,what is a man is on the phone while the woman doing?,video6882,167591,1 9012,6883,show,what is guy doing?,video6883,167592,10 9013,6883,play,what is a person doing?,video6883,167593,10 9014,6883,work,what is a person doing?,video6883,167594,10 9015,6883,select,what is a girl doing?,video6883,167595,10 9016,6883,demonstrate,what is a person doing?,video6883,167596,10 9017,6883,show,what is a man doing?,video6883,167597,10 9018,6883,show,what is someone doing?,video6883,167598,10 9019,6883,look,what is a person doing?,video6883,167599,10 9020,6883,teach,what is someone doing?,video6883,167600,10 9021,6883,use,what is person doing?,video6883,167601,10 9022,6883,demo,what is someone showing in ipad?,video6883,167602,10 9023,6883,man,who shows how to use the menu on a playstation vita?,video6883,167603,10 9024,6883,person,who shows how to select a song from a playlist on the psvita?,video6883,167604,10 9025,6883,person,who is demonstrating how to use a psvita by touching a touch screen?,video6883,167605,10 9026,6883,person,who is looking at songs on a ps vita?,video6883,167606,10 9027,6883,someone,what is teaching how to use an application on the psvita?,video6883,167607,10 9028,6883,someone,who is showing some demo in ipad?,video6883,167608,10 9029,6883,ipad,what is someone showing some demo in?,video6883,167609,10 9030,6883,ipad,what does a woman play music on?,video6883,167610,10 9031,6883,person,who shows a program?,video6883,167611,10 9032,6883,person,who is working?,video6883,167612,10 9033,6883,program,what does a person show?,video6883,167613,10 9034,6884,move,what is a water scene fish inside water doing?,video6884,167614,13 9035,6884,thin,what is a woman tricks fish into doing?,video6884,167615,13 9036,6884,fool,what is woman puts something in fishtank doing?,video6884,167616,13 9037,6884,drop,what is a person hand feeds some fish in a fish tank doing?,video6884,167617,13 9038,6884,swim,what are some fish in a tank doing?,video6884,167618,13 9039,6884,put,what is person doing?,video6884,167619,13 9040,6884,stick,what is a woman doing?,video6884,167620,13 9041,6884,hold,what is a person doing?,video6884,167621,13 9042,6884,float,what is there is a red color fish doing?,video6884,167622,13 9043,6884,try,what are fishes doing?,video6884,167623,13 9044,6884,eat,what is a person holds fish food in a fish tank while goldfish swim over and start doing?,video6884,167624,13 9045,6884,feed,what is some one doing?,video6884,167625,13 9046,6884,person,who is putting a fish into a tank of water?,video6884,167626,13 9047,6884,person,who holds fish food in a fish tank while goldfish swim over and start eating it?,video6884,167627,13 9048,6884,tank,what is a person holding fish food into for goldfish to eat?,video6884,167628,13 9049,6884,man,who holds food into fish tank?,video6884,167629,13 9050,6884,person,who is putting some food in the aquarium for the fish?,video6884,167630,13 9051,6884,food,what is a woman tricks fish into thining bobber?,video6884,167631,13 9052,6884,fishtank,what does something in a fish tank s food woman puts something in fooling fish into thinking?,video6884,167632,13 9053,6884,person,who feeds the fish swimming in the tank?,video6884,167633,13 9054,6884,fish,what does something in a fish tank s food woman puts something in fishtank fooling into thinking?,video6884,167634,13 9055,6884,food,what does something in a fish tank s woman puts something in fishtank fooling fish into thinking?,video6884,167635,13 9056,6884,something,what does something in a fish tank s food woman puts in fishtank fooling fish into thinking?,video6884,167636,13 9057,6884,person,who is giving a feed to a fish in the aqurium?,video6884,167637,13 9058,6884,food,what does a person hold in a fish tank while goldfish swim over and start eating it?,video6884,167638,13 9059,6884,woman,who is sticking something in a fish tank for the fish to feed on?,video6884,167639,13 9060,6884,woman,who does something in a fish tank s food puts something in fishtank fooling fish into thinking?,video6884,167640,13 9061,6884,person,who is holding fish food into a tank for goldfish to eat?,video6884,167641,13 9062,6884,fish,what does a person hand feed in a fish tank dropping the food from the top?,video6884,167642,13 9063,6884,food,what is a person holding into a tank for goldfish to eat?,video6884,167643,13 9064,6884,food,what does a man hold into fish tank?,video6884,167644,13 9065,6884,goldfish,what swim over?,video6884,167645,13 9066,6884,man,who goldfish come to eat?,video6884,167646,13 9067,6884,goldfish,what start eating some food?,video6884,167647,13 9068,6884,food,what do goldfish start eating?,video6884,167648,13 9069,6884,fish,what is a woman sticking something in a fish tank for to feed on?,video6884,167649,13 9070,6884,food,what is person putting in the aquarium for the fish?,video6884,167650,13 9071,6884,fish,what is a person putting into a tank of water?,video6884,167651,13 9072,6884,aquarium,what is some one feeding to the colorful fishes in?,video6884,167652,13 9073,6884,water,what are some fish in a tank swimming around in?,video6884,167653,13 9074,6884,feed,what is a person giving to a fish in the aqurium?,video6884,167654,13 9075,6884,tank,what does a man hold food into?,video6884,167655,13 9076,6884,person,what feeds some fish in a fish tank dropping the food from the top?,video6884,167656,13 9077,6885,wall,what does the junior engineer see a hole on with water flowing and he intimate his boss?,video6885,167657,7 9078,6885,water,what do two guys in work hat with lights looking at a hole leaking?,video6885,167658,7 9079,6885,water,what do men in hard hats look at leaking through a concrete wall?,video6885,167659,7 9080,6885,hole,what do two guys in hard hats and business suits examine a hole in a cement wall water is flowing from?,video6885,167660,7 9081,6885,water,what is a man in an orange hard hat explaining coming out of a column?,video6885,167661,7 9082,6885,water,what do two guys in hard hats and business suits examine a hole in a cement wall is flowing from the hole?,video6885,167662,7 9083,6885,place,what are two persons doing some research in?,video6885,167663,7 9084,6885,research,what are two persons doing in the place?,video6885,167664,7 9085,6885,hole,what are two of people talking about the leakage of damp water through?,video6885,167665,7 9086,6885,engineer,who sees a hole on the wall with water flowing and he intimate his boss?,video6885,167666,7 9087,6885,water,what did two guys in work hat with lights looking at a find coming from a hole?,video6885,167667,7 9088,6885,hole,what do two men in hard hats look at water slowing coming out of?,video6885,167668,7 9089,6885,screen,what do a old man wearing red helmet speaking seeing to hole water coming displaying on?,video6885,167669,7 9090,6885,two,how many persons are doing some research in the place?,video6885,167670,7 9091,6885,place,where are two persons doing some research?,video6885,167671,7 9092,6885,wear,what is a old man doing?,video6885,167672,7 9093,6885,look,what are two men in hardhats doing?,video6885,167673,7 9094,6885,drain,what is a man in a hard hat looks at a hole doing?,video6885,167674,7 9095,6885,inspect,what is a man in an orange hard hat doing?,video6885,167675,7 9096,6885,flow,what is two guys in hard hats and business suits examine a hole in a cement wall water doing?,video6885,167676,7 9097,6885,talk,what are two of people doing?,video6885,167677,7 9098,6885,explain,what is a man in an orange hard hat doing?,video6885,167678,7 9099,6885,leak,what is men in hard hats look at water doing?,video6885,167679,7 9100,6885,analyze,what is some men doing?,video6885,167680,7 9101,6885,look,what is two guys in work hat with lights doing?,video6885,167681,7 9102,6885,look,what is two construction workers doing?,video6885,167682,7 9103,6885,wear,what is two men doing?,video6885,167683,7 9104,6885,flow,what is the junior engineer sees a hole on the wall with water doing?,video6885,167684,7 9105,6885,hole,what does the junior engineer see on the wall with water flowing and he intimate his boss?,video6885,167685,7 9106,6886,fun,what are guys making in the festival season?,video6886,167686,13 9107,6886,man,who is being interviewed on the street?,video6886,167687,13 9108,6886,street,what are people being interviewed on by the empire state building?,video6886,167688,13 9109,6886,reporter,who is talking to another?,video6886,167689,13 9110,6886,two,how many men wear angry bird hats in public?,video6886,167690,13 9111,6886,man,who is a man wearing an angry birds mask talking to?,video6886,167691,13 9112,6886,two,how many men are laughing on the street while wearing angry bird hats?,video6886,167692,13 9113,6886,two,how many men are laughing as they wear angry bird hats in public?,video6886,167693,13 9114,6886,street,what are two men laughing on while wearing angry bird hats?,video6886,167694,13 9115,6886,two,how many men are talking?,video6886,167695,13 9116,6886,wear,what is a man doing?,video6886,167696,13 9117,6886,talk,what is a reporter is excited and doing?,video6886,167697,13 9118,6886,laugh,what are two men doing?,video6886,167698,13 9119,6886,talk,what is two men doing?,video6886,167699,13 9120,6886,speak,what is two men with angry bird hats doing?,video6886,167700,13 9121,6886,street,what is a man being interviewed on?,video6886,167701,13 9122,6886,bird,what do two men wear in public?,video6886,167702,13 9123,6886,reporter,who is excited?,video6886,167703,13 9124,6887,move,what are people doing?,video6887,167704,19 9125,6887,walk,what is schoolkids doing?,video6887,167705,19 9126,6887,move,what are some guys doing?,video6887,167706,19 9127,6887,walk,what are a group of people doing?,video6887,167707,19 9128,6887,walk,what are boys and girls doing?,video6887,167708,19 9129,6887,walk,what is a person doing?,video6887,167709,19 9130,6887,walk,what are a group of students doing?,video6887,167710,19 9131,6887,walk,what is a boy doing?,video6887,167711,19 9132,6887,walk,what are some students doing?,video6887,167712,19 9133,6887,walk,what are students doing?,video6887,167713,19 9134,6887,walk,what is students doing?,video6887,167714,19 9135,6887,walk,what are young people doing?,video6887,167715,19 9136,6887,walk,what is girls doing?,video6887,167716,19 9137,6887,walk,what is a group of asian teens doing?,video6887,167717,19 9138,6887,boy,who is walking?,video6887,167718,19 9139,6887,school,what do kids walk around at?,video6887,167719,19 9140,6887,hallway,what are young people walking down?,video6887,167720,19 9141,6887,hallway,what are some students walking down?,video6887,167721,19 9142,6887,veranda,what are students walking on?,video6887,167722,19 9143,6887,room,what are some guys moving from?,video6887,167723,19 9144,6887,school,what do girls walk together through?,video6887,167724,19 9145,6887,school,what are boys and girls walking in?,video6887,167725,19 9146,6887,staircase,what do a group of people walk down?,video6887,167726,19 9147,6887,music,what do a group of girls walk along with playing?,video6887,167727,19 9148,6888,designer,who displays clothing?,video6888,167728,19 9149,6888,man,who talks about his interests and career?,video6888,167729,19 9150,6888,someone,who is showing papers?,video6888,167730,19 9151,6888,speak,what is a boy doing?,video6888,167731,19 9152,6888,man,who talks about his interests in visual arts and fashion?,video6888,167732,19 9153,6888,man,who is talking about why he likes fashion?,video6888,167733,19 9154,6888,guy,who stands next to a rack of clothes?,video6888,167734,19 9155,6888,clothing,what does a fashion designer display?,video6888,167735,19 9156,6888,man,who talks about fashion design?,video6888,167736,19 9157,6888,man,who stands straight in his jacket?,video6888,167737,19 9158,6888,person,who is being interviewed?,video6888,167738,19 9159,6888,man,who introduces himself?,video6888,167739,19 9160,6888,fashion,what is a boy speaking about?,video6888,167740,19 9161,6888,man,who glasses?,video6888,167741,19 9162,6888,jacket,what does a man stand straight in?,video6888,167742,19 9163,6888,talk,what is a man doing?,video6888,167743,19 9164,6888,look,what is a person doing?,video6888,167744,19 9165,6888,tell,what is man doing?,video6888,167745,19 9166,6888,show,what is someone doing?,video6888,167746,19 9167,6889,man,who is talking while his friend is drinking coffee?,video6889,167747,3 9168,6889,woman,who is drinking something in a cup?,video6889,167748,3 9169,6889,video,what does guy explain that a man and a woman will be strutting in?,video6889,167749,3 9170,6889,man,who is showing something on a computer?,video6889,167750,3 9171,6889,two,how many people are talking on a couch?,video6889,167751,3 9172,6889,strutting,what are a man and a woman sitting on a couch introducing a video of?,video6889,167752,3 9173,6889,something,what is a woman drinking in a cup?,video6889,167753,3 9174,6889,camera,what does the man talk to?,video6889,167754,3 9175,6889,commentary,what is a man giving?,video6889,167755,3 9176,6889,something,what is a person explaining?,video6889,167756,3 9177,6889,something,what is a man showing on a computer?,video6889,167757,3 9178,6889,cup,what is a woman drinking something in?,video6889,167758,3 9179,6889,computer,what is a man showing something on?,video6889,167759,3 9180,6889,man,who is giving humorous commentary?,video6889,167760,3 9181,6889,man,who talks to the camera?,video6889,167761,3 9182,6889,person,who is explaining something?,video6889,167762,3 9183,6889,couple,what sits on a couch in front of a laptop?,video6889,167763,3 9184,6889,laptop,what are the people using?,video6889,167764,3 9185,6889,guy,who explains that a man and a woman will be strutting in a video?,video6889,167765,3 9186,6889,use,what are the people doing?,video6889,167766,3 9187,6889,talk,what is a couple doing?,video6889,167767,3 9188,6889,sit,what are a man and a woman doing?,video6889,167768,3 9189,6889,look,what is a man and a woman doing?,video6889,167769,3 9190,6889,talk,what is a man and woman doing?,video6889,167770,3 9191,6889,show,what is a man doing?,video6889,167771,3 9192,6889,explain,what is a person doing?,video6889,167772,3 9193,6889,drink,what is a woman doing?,video6889,167773,3 9194,6889,strut,what is guy explains that him and a girl will be doing?,video6889,167774,3 9195,6889,use,what is man doing?,video6889,167775,3 9196,6889,couch,what are two people talking on?,video6889,167776,3 9197,6889,talk,what is two persons on the camera doing?,video6889,167777,3 9198,6889,talk,what are two people doing?,video6889,167778,3 9199,6890,rummage,what is someone doing?,video6890,167779,9 9200,6890,look,what is a man doing?,video6890,167780,9 9201,6890,play,what is a man doing?,video6890,167781,9 9202,6890,pick,what is a man doing?,video6890,167782,9 9203,6890,show,what is a man doing?,video6890,167783,9 9204,6890,pull,what is a person doing?,video6890,167784,9 9205,6890,pick,what is man doing?,video6890,167785,9 9206,6890,someone,who is rummaging through a box of car parts?,video6890,167786,9 9207,6890,engine,what is a man playing with?,video6890,167787,9 9208,6890,part,what is a man looking for?,video6890,167788,9 9209,6890,man,who is playing with his engine?,video6890,167789,9 9210,6890,man,who is looking for a part?,video6890,167790,9 9211,6890,person,who is going through boxes?,video6890,167791,9 9212,6890,box,what filled with tools?,video6890,167792,9 9213,6890,box,what are engine parts being shown off in?,video6890,167793,9 9214,6890,engine,what are being shown off in a box?,video6890,167794,9 9215,6890,part,what does someone show by taking from a box?,video6890,167795,9 9216,6890,man,who is taking out parts to fix a car?,video6890,167796,9 9217,6890,man,who looks through boxes of mechanical parts?,video6890,167797,9 9218,6890,someone,who shows some spare part by taking from a box?,video6890,167798,9 9219,6891,kitchen,what is a man cooking in?,video6891,167799,16 9220,6891,man,who is demonstrating a recipe?,video6891,167800,16 9221,6891,person,who is cooking a meal?,video6891,167801,16 9222,6891,person,who is explaining something?,video6891,167802,16 9223,6891,computer,what does a man talk about?,video6891,167803,16 9224,6891,chef,who prepares food?,video6891,167804,16 9225,6891,food,what does a chef prepare?,video6891,167805,16 9226,6891,recipie,who is a man preparing?,video6891,167806,16 9227,6891,meal,what is a person cooking?,video6891,167807,16 9228,6891,man,who is doing a dish?,video6891,167808,16 9229,6891,something,what is a person explaining?,video6891,167809,16 9230,6891,recipe,what is a person showing?,video6891,167810,16 9231,6891,show,what is a person doing?,video6891,167811,16 9232,6891,person,who is showing some recipe?,video6891,167812,16 9233,6891,explain,what is a person doing?,video6891,167813,16 9234,6891,cook,what is a person doing?,video6891,167814,16 9235,6891,prepare,what is a man doing?,video6891,167815,16 9236,6891,mix,what is a man doing?,video6891,167816,16 9237,6891,demonstrate,what is a man doing?,video6891,167817,16 9238,6891,cook,what is a man doing?,video6891,167818,16 9239,6891,dish,what is a man doing?,video6891,167819,16 9240,6891,pmy,what is a guy doing?,video6891,167820,16 9241,6891,man,who talks about a computer?,video6891,167821,16 9242,6891,man,who is mixing a butter and hot milk in a bowl?,video6891,167822,16 9243,6891,guy,who is pouring milk into a bowl?,video6891,167823,16 9244,6891,man,who prepares some food in a kitchen?,video6891,167824,16 9245,6891,man,who is cooking in a kitchen?,video6891,167825,16 9246,6891,bowl,what is a man mixing a butter and hot milk in?,video6891,167826,16 9247,6891,milk,what is a guy pouring into a bowl?,video6891,167827,16 9248,6891,man,who is demonstrating a mashed potatoes recipe?,video6891,167828,16 9249,6891,food,what does a man prepare in a kitchen?,video6891,167829,16 9250,6891,guy,who is mixing milk with something?,video6891,167830,16 9251,6891,bowl,what is a guy pouring milk into?,video6891,167831,16 9252,6891,milk,what is a guy mixing with something?,video6891,167832,16 9253,6891,something,what is a guy mixing milk with?,video6891,167833,16 9254,6891,man,who is preparing a recipie?,video6891,167834,16 9255,6891,kitchen,what does a man prepare some food in?,video6891,167835,16 9256,6892,kis,what is a girl doing?,video6892,167836,0 9257,6892,talk,what are the two main characters from dr who doing?,video6892,167837,0 9258,6892,kis,what are man and woman doing?,video6892,167838,0 9259,6892,laugh,what is a woman doing?,video6892,167839,0 9260,6892,explain,what is a person doing?,video6892,167840,0 9261,6892,kis,what is a woman doing?,video6892,167841,0 9262,6892,act,what is a woman and a man doing?,video6892,167842,0 9263,6892,talk,what is two people doing?,video6892,167843,0 9264,6892,talk,what is a woman doing?,video6892,167844,0 9265,6892,interact,what are two people doing?,video6892,167845,0 9266,6892,female,what interacts with a male?,video6892,167846,0 9267,6892,man,who is a woman kissing?,video6892,167847,0 9268,6892,something,what is a person explaining?,video6892,167848,0 9269,6892,woman,who talks?,video6892,167849,0 9270,6892,woman,who are kissing?,video6892,167850,0 9271,6892,movie,what is shown?,video6892,167851,0 9272,6892,man,who is a girl kissing?,video6892,167852,0 9273,6892,male,what does a young female interact with?,video6892,167853,0 9274,6892,girl,who is kissing a man?,video6892,167854,0 9275,6892,scene,what a woman and a man acting out?,video6892,167855,0 9276,6892,person,who is explaining something?,video6892,167856,0 9277,6892,two,how many people are interacting with each other?,video6892,167857,0 9278,6892,woman,who is talking to a man and then kisses him?,video6892,167858,0 9279,6893,eat,what is a elderly man doing?,video6893,167859,17 9280,6893,eat,what is a man doing?,video6893,167860,17 9281,6893,taste,what is a man doing?,video6893,167861,17 9282,6893,cook,what is a man narrates while doing?,video6893,167862,17 9283,6893,cook,what is a person doing?,video6893,167863,17 9284,6893,eat,what is an old man doing?,video6893,167864,17 9285,6893,cook,what is man doing?,video6893,167865,17 9286,6893,cook,what are men doing?,video6893,167866,17 9287,6893,cook,what are two men cook and discuss the food they doing?,video6893,167867,17 9288,6893,cook,what is a man doing?,video6893,167868,17 9289,6893,man,who narrates while cooking food?,video6893,167869,17 9290,6893,stove,what are men cooking some food on?,video6893,167870,17 9291,6893,dinner,what are men cooking for two men cook?,video6893,167871,17 9292,6893,food,what is an old man eating being cooked?,video6893,167872,17 9293,6893,man,who is eating food while cooking?,video6893,167873,17 9294,6893,man,who cooked some food?,video6893,167874,17 9295,6893,man,who is cooking in a kitchen?,video6893,167875,17 9296,6893,food,what is a man eating while cooking?,video6893,167876,17 9297,6893,kitchen,what is a man cooking in?,video6893,167877,17 9298,6893,food,what do the man cook?,video6893,167878,17 9299,6893,man,what meet in a pan?,video6893,167879,17 9300,6893,man,who is eating?,video6893,167880,17 9301,6893,person,who is cooking?,video6893,167881,17 9302,6893,man,who talks about how his food is not poisonous?,video6893,167882,17 9303,6893,food,what are men cooking on a stove?,video6893,167883,17 9304,6893,two,how many men are men cooking for dinner discuss the food?,video6893,167884,17 9305,6893,man,who eats a small piece of food that is being cooked in his kitchen?,video6893,167885,17 9306,6893,man,who is making a recipe in a kitchen?,video6893,167886,17 9307,6893,man,who is eating some food being cooked?,video6893,167887,17 9308,6893,man,who is tasting food that is being cooked?,video6893,167888,17 9309,6893,two,how many men are men cooking for dinner cook?,video6893,167889,17 9310,6893,man,who makes a delicious side for spagettii?,video6893,167890,17 9311,6893,food,what does a man eat a small piece of that is being cooked in his kitchen?,video6893,167891,17 9312,6893,food,what are men cooking for dinner two men discuss?,video6893,167892,17 9313,6893,dinner,what is a elderly man cooking in the kitchen?,video6893,167893,17 9314,6893,dinner,what are men cooking for two men discuss the food?,video6893,167894,17 9315,6893,man,who is cooking dinner in the kitchen?,video6893,167895,17 9316,6893,kitchen,what is a elderly man cooking dinner in?,video6893,167896,17 9317,6894,world,what is showed?,video6894,167897,5 9318,6894,map,what is displayed on the screen?,video6894,167898,5 9319,6894,screen,what is a skeleton displayed on?,video6894,167899,5 9320,6894,screen,what is a map displayed on?,video6894,167900,5 9321,6894,man,who talks about?,video6894,167901,5 9322,6894,talk,what is there is a man doing?,video6894,167902,5 9323,6894,show,what is a map doing?,video6894,167903,5 9324,6894,talk,what is a man doing?,video6894,167904,5 9325,6894,forage,what is a man talks about and compares the cultural differences between ancient doing?,video6894,167905,5 9326,6894,explain,what is a man doing?,video6894,167906,5 9327,6894,fall,what is a cartoon dolls of rain doing?,video6894,167907,5 9328,6894,use,what is a man doing?,video6894,167908,5 9329,6894,sit,what are a few conical buildings doing?,video6894,167909,5 9330,6894,screen,what does image skeleton house displaying on?,video6894,167910,5 9331,6894,stand,what is there are some artificial people doing?,video6894,167911,5 9332,6894,man,who compares the cultural differences between ancient foraging peoples and the populations of today using history as a background and clever animations for a visual aid?,video6894,167912,5 9333,6894,man,who is talking about early man and how they lived close to water where food was abundant?,video6894,167913,5 9334,6894,man,who is explaining about the ancient man life and daily works through a presentation?,video6894,167914,5 9335,6894,man,who is using an animation to talk about ancient humans?,video6894,167915,5 9336,6894,man,who discribing info from research about the history of world population and their eating habits?,video6894,167916,5 9337,6894,presentation,what is a man explaining about the ancient man life and daily works through?,video6894,167917,5 9338,6894,man,who talks about forager people living by the shoreline and how they lived their lives?,video6894,167918,5 9339,6894,skeleton,what houses displaying on screen?,video6894,167919,5 9340,6894,village,what are a few conical buildings sitting around in?,video6894,167920,5 9341,6894,research,what did a man discribing info from about the history of world population and their eating habits?,video6894,167921,5 9342,6894,info,what did a man discribing from research about the history of world population and their eating habits?,video6894,167922,5 9343,6894,skeleton,what does a figure of a man turn into then huts sit by a mound of dirt?,video6894,167923,5 9344,6894,animation,what is a man using to talk about ancient humans?,video6894,167924,5 9345,6895,talk,what is there is a girl doing?,video6895,167925,3 9346,6895,raise,what is a little girl surf in the water of the beach while the waves doing?,video6895,167926,3 9347,6895,surf,what is a girl doing?,video6895,167927,3 9348,6895,surf,what is little blond girl doing?,video6895,167928,3 9349,6895,surf,what is video of man doing?,video6895,167929,3 9350,6895,talk,what is sexy blonde in blue top doing?,video6895,167930,3 9351,6895,surfing,what does the clip cut to?,video6895,167931,3 9352,6895,ski,what is a long distance view of a person doing?,video6895,167932,3 9353,6895,water,what is a man running on?,video6895,167933,3 9354,6895,man,who is running on the water?,video6895,167934,3 9355,6895,sky,what do someone perform driving on the ocean?,video6895,167935,3 9356,6895,man,who is a girl talking about on a surf board?,video6895,167936,3 9357,6895,camera,what do sexy blonde in blue top talking to?,video6895,167937,3 9358,6895,distance,what view of a person skiing on the water with low tide current?,video6895,167938,3 9359,6895,girl,who is talking about a man on a surf board?,video6895,167939,3 9360,6895,someone,who perform the sky driving on the ocean?,video6895,167940,3 9361,6895,girl,who is surfing in the ocean riding on a wave?,video6895,167941,3 9362,6895,girl,who surfs on a wave in the ocean?,video6895,167942,3 9363,6895,girl,who surf in the water of the beach while the waves raising?,video6895,167943,3 9364,6895,blond,who surfing on the ocean?,video6895,167944,3 9365,6895,home,what does an eight year old in pavone costa rica participate in a documentary on the surfing and waves by?,video6895,167945,3 9366,6895,ocean,what does video of man surf on?,video6895,167946,3 9367,6895,ocean,what did little blond girl surf on?,video6895,167947,3 9368,6895,surfer,who catches a wave?,video6895,167948,3 9369,6895,video,what surfing on the ocean?,video6895,167949,3 9370,6895,wave,what does a surfer catch?,video6895,167950,3 9371,6896,put,what is some one mixing something nasty and doing?,video6896,167951,10 9372,6896,overflow,what is person plays with doing?,video6896,167952,10 9373,6896,disgust,what is crazy doing?,video6896,167953,10 9374,6896,mix,what is a person doing?,video6896,167954,10 9375,6896,cook,what is a person doing?,video6896,167955,10 9376,6896,blend,what is a person in gloves doing?,video6896,167956,10 9377,6896,blend,what is a person doing?,video6896,167957,10 9378,6896,look,what is a blender mixes up a gross doing?,video6896,167958,10 9379,6896,grind,what is a person doing?,video6896,167959,10 9380,6896,blender,what mixes up a gross looking dessert?,video6896,167960,10 9381,6896,counter,what does a person pour various items on?,video6896,167961,10 9382,6896,sandwich,what does a man blends a mixture of chocolate and spaghetti and pour it onto?,video6896,167962,10 9383,6896,sandwich,what did crazy disgusting mixture put on?,video6896,167963,10 9384,6896,person,who makes a mess?,video6896,167964,10 9385,6896,jar,what is running with dirty food?,video6896,167965,10 9386,6896,person,who is cooking?,video6896,167966,10 9387,6896,food,what is a jar running with?,video6896,167967,10 9388,6896,disgusting,what put on sandwich?,video6896,167968,10 9389,6896,mes,what does person make?,video6896,167969,10 9390,6896,blender,what was used to help create a mess?,video6896,167970,10 9391,6896,food,what is someone making?,video6896,167971,10 9392,6896,person,who is grinding unwanted things in a mixer without using the lid?,video6896,167972,10 9393,6896,person,who blends up a bunch of random foods?,video6896,167973,10 9394,6896,food,what was stuffed into a blender and then poured on other food?,video6896,167974,10 9395,6896,person,who is mixing something that is nasty in a mixie?,video6896,167975,10 9396,6896,mixie,what is a person mixing something that is nasty in?,video6896,167976,10 9397,6896,random,what a person blends up a bunch of?,video6896,167977,10 9398,6896,person,who pours various items on the counter?,video6896,167978,10 9399,6896,person,who plays with overflowing blender?,video6896,167979,10 9400,6896,mixer,what is a person grinding unwanted things in without using the lid?,video6896,167980,10 9401,6896,someone,who is making food?,video6896,167981,10 9402,6897,perform,what is a contestant on the voice doing?,video6897,167982,14 9403,6897,perform,what is a woman doing?,video6897,167983,14 9404,6897,hit,what is blake shelton doing?,video6897,167984,14 9405,6897,woman,who is singing?,video6897,167985,14 9406,6897,blake,who shelton turning his chair around for a women singing?,video6897,167986,14 9407,6897,stage,when is a woman singing to a panel of judges?,video6897,167987,14 9408,6897,contestant,who does a judge in a singing contest approve of as the crowd cheers?,video6897,167988,14 9409,6897,stage,when does a woman sing in a contest?,video6897,167989,14 9410,6897,woman,who is singing on stage to a panel of judges?,video6897,167990,14 9411,6897,woman,who sings on stage in a contest?,video6897,167991,14 9412,6897,contest,what does a woman sing on stage in?,video6897,167992,14 9413,6897,judge,who does red headed woman receive s approval?,video6897,167993,14 9414,6897,approval,what does red headed woman receive?,video6897,167994,14 9415,6897,girl,who preforms a song on stage?,video6897,167995,14 9416,6897,blake,who shelton hitting a button?,video6897,167996,14 9417,6897,woman,who is singing on a talent show?,video6897,167997,14 9418,6897,woman,who receives judge s approval?,video6897,167998,14 9419,6897,approval,what does red headed woman receive judge s?,video6897,167999,14 9420,6897,show,what is a woman singing on?,video6897,168000,14 9421,6897,voice,what does a woman sing on?,video6897,168001,14 9422,6897,girl,who is singing on a television show?,video6897,168002,14 9423,6897,woman,who is singing on a show?,video6897,168003,14 9424,6897,stage,when is a woman performing?,video6897,168004,14 9425,6897,woman,who is performing on stage?,video6897,168005,14 9426,6897,woman,who sings on the voice?,video6897,168006,14 9427,6897,button,what do blake shelton hitting?,video6897,168007,14 9428,6897,chair,what do blake shelton turning around for a women singing?,video6897,168008,14 9429,6897,woman,who is sing a song in a stage?,video6897,168009,14 9430,6898,explain,what is a person doing?,video6898,168010,12 9431,6898,describe,what is a man doing?,video6898,168011,12 9432,6898,talk,what is a man doing?,video6898,168012,12 9433,6898,talk,what is someone doing?,video6898,168013,12 9434,6898,talk,what is person doing?,video6898,168014,12 9435,6898,discus,what is a person doing?,video6898,168015,12 9436,6898,explain,what is a man doing?,video6898,168016,12 9437,6898,person,who is talking about planets?,video6898,168017,12 9438,6898,someone,who is talking about another planet?,video6898,168018,12 9439,6898,man,who is talking about space?,video6898,168019,12 9440,6898,person,who is discussing the solar system?,video6898,168020,12 9441,6898,person,who is explaining something?,video6898,168021,12 9442,6898,video,what is about space?,video6898,168022,12 9443,6898,planet,what is someone talking about?,video6898,168023,12 9444,6898,space,what is a man talking about?,video6898,168024,12 9445,6898,system,what is a person discussing?,video6898,168025,12 9446,6898,something,what is a person explaining?,video6898,168026,12 9447,6898,galaxy,what is shown?,video6898,168027,12 9448,6898,man,who is explaining about galaxy showing photo?,video6898,168028,12 9449,6898,screen,what do two images of a galaxy appear on?,video6898,168029,12 9450,6898,man,who is describing how many galaxies exist?,video6898,168030,12 9451,6898,narrator,who describes how relatively few planets are able to produce life on earth?,video6898,168031,12 9452,6898,slideshow,who shows images of galaxies?,video6898,168032,12 9453,6899,woman,who walking slowly up to a man in front of a house?,video6899,168033,7 9454,6899,walk,what is a man doing?,video6899,168034,7 9455,6899,walk,what are a woman and a man doing?,video6899,168035,7 9456,6899,walk,what is a woman doing?,video6899,168036,7 9457,6899,walk,what is girl doing?,video6899,168037,7 9458,6899,walk,what is woman doing?,video6899,168038,7 9459,6899,woman,who enters a scene?,video6899,168039,7 9460,6899,music,what do two people walk towards each other to?,video6899,168040,7 9461,6899,woman,who meets a man who is stunningly attractive?,video6899,168041,7 9462,6899,look,what is a woman walks up to a man doing?,video6899,168042,7 9463,6899,man,who does a woman walk towards while music plays?,video6899,168043,7 9464,6899,two,how many people walk towards each other to music?,video6899,168044,7 9465,6899,man,who is walking towards a woman?,video6899,168045,7 9466,6899,scene,what does a woman enter?,video6899,168046,7 9467,6899,something,what is someine making from paper?,video6899,168047,7 9468,6899,paper,what is someine making something from?,video6899,168048,7 9469,6899,woman,who is a man walking towards?,video6899,168049,7 9470,6899,woman,who walks towards a man while music plays?,video6899,168050,7 9471,6899,someine,who is making something from paper?,video6899,168051,7 9472,6899,two,how many people stare at?,video6899,168052,7 9473,6899,music,what plays?,video6899,168053,7 9474,6900,pres,what is a girl doing?,video6900,168054,10 9475,6900,operate,what is a man doing?,video6900,168055,10 9476,6900,explain,what is there is a women doing?,video6900,168056,10 9477,6900,look,what is a men doing?,video6900,168057,10 9478,6900,use,what is there is women doing?,video6900,168058,10 9479,6900,adjust,what is on a white colored cloth different designs are made with the help of digital sewing machine and doing?,video6900,168059,10 9480,6900,show,what is a girl doing?,video6900,168060,10 9481,6900,explain,what is a clip with a woman doing?,video6900,168061,10 9482,6900,adjust,what is hands on demonstration of doing?,video6900,168062,10 9483,6900,woman,who is giving instructions on how to adjust stitch width of a sewing machine?,video6900,168063,10 9484,6900,machine,what is a man setting properly?,video6900,168064,10 9485,6900,man,who is setting machine properly?,video6900,168065,10 9486,6900,machine,what is a man operating on?,video6900,168066,10 9487,6900,work,what is a men doing on monitor?,video6900,168067,10 9488,6900,woman,who adjusts the stitch width on the sewing machine?,video6900,168068,10 9489,6900,someone,who is giving demo about some electronic product?,video6900,168069,10 9490,6900,man,who is operating on machine?,video6900,168070,10 9491,6900,thermostate,who is pressed to lower the temperature in a demonstration?,video6900,168071,10 9492,6900,person,who presses some buttons on a scale?,video6900,168072,10 9493,6900,someone,who is showing how to use a thermostat?,video6900,168073,10 9494,6900,monitor,what is a men doing some work on?,video6900,168074,10 9495,6901,bottle,what are two men in a kitchen with one holding?,video6901,168075,16 9496,6901,alcohol,what are two men doing an experiment with?,video6901,168076,16 9497,6901,two,how many men are talking on camera?,video6901,168077,16 9498,6901,talk,what is two guys doing?,video6901,168078,16 9499,6901,show,what are two man s doing?,video6901,168079,16 9500,6901,experiment,what are two men doing with alcohol?,video6901,168080,16 9501,6901,talk,what is a man doing?,video6901,168081,16 9502,6901,man,when are showing some liquids?,video6901,168082,16 9503,6901,guy,who holds up a drink?,video6901,168083,16 9504,6901,camera,what are two men talking on?,video6901,168084,16 9505,6901,drink,what does a guy hold up?,video6901,168085,16 9506,6901,hold,what is two men are in a kitchen with one doing?,video6901,168086,16 9507,6901,man,who is talking about a drink?,video6901,168087,16 9508,6901,drink,what is a man talking about?,video6901,168088,16 9509,6901,two,how many men are showing how to make different cocktail drinks?,video6901,168089,16 9510,6901,two,how many men are in a kitchen with one holding a bottle?,video6901,168090,16 9511,6901,two,how many man s are showing some liquids?,video6901,168091,16 9512,6901,man,who holds up a bottle of blue liquid?,video6901,168092,16 9513,6901,two,how many men are doing an experiment with alcohol?,video6901,168093,16 9514,6901,two,how many men speak in a foreign language?,video6901,168094,16 9515,6901,liquid,what does a man hold up a bottle of?,video6901,168095,16 9516,6902,three,how many men are standing outside dancing?,video6902,168096,1 9517,6902,dance,what are three young black man doing?,video6902,168097,1 9518,6902,dance,what is three men doing?,video6902,168098,1 9519,6902,whip,what are three men doing?,video6902,168099,1 9520,6902,stand,what are three men doing?,video6902,168100,1 9521,6902,dance,what are three men doing?,video6902,168101,1 9522,6902,perform,what is short video clip of three young men doing?,video6902,168102,1 9523,6902,dance,what is people doing?,video6902,168103,1 9524,6902,dance,what is a group of men doing?,video6902,168104,1 9525,6902,dance,what are a group of guys doing?,video6902,168105,1 9526,6902,naying,what are three men whipping?,video6902,168106,1 9527,6902,screen,what splits in three?,video6902,168107,1 9528,6902,three,how many men are whipping and nay naying?,video6902,168108,1 9529,6902,three,how many men dance to the nene song?,video6902,168109,1 9530,6902,three,how many teen boys do the whip nae nae dance on a basketball court?,video6902,168110,1 9531,6902,three,how many men are dancing together?,video6902,168111,1 9532,6903,man,who an adult woman and some children are in another room is taking off his jacket while talking to a woman?,video6903,168112,14 9533,6903,box,what are a group of friends putting stuff in?,video6903,168113,14 9534,6903,bear,what did a woman put in a box?,video6903,168114,14 9535,6903,trouble,what is a korean family having on a drama show?,video6903,168115,14 9536,6903,box,what did a woman put a teddy bear in?,video6903,168116,14 9537,6903,family,what is having trouble on a drama show?,video6903,168117,14 9538,6903,jacket,what did several teenagers put toys away in box white a woman helps a man take off?,video6903,168118,14 9539,6903,stuffed,what do women unpack a box of while a couple talk in the bedroom?,video6903,168119,14 9540,6903,woman,who put a teddy bear in a box?,video6903,168120,14 9541,6903,woman,who did several teenagers put toys away in box helps a man take off his suit jacket?,video6903,168121,14 9542,6903,man,who did several teenagers put toys away in box white a woman helps take off his suit jacket?,video6903,168122,14 9543,6903,stuff,what are a group of friends putting in a box?,video6903,168123,14 9544,6903,box,what did several teenagers put toys away in white a woman helps a man take off his suit jacket?,video6903,168124,14 9545,6903,family,what seems to be together in cleaning things at home?,video6903,168125,14 9546,6903,woman,who is talking to kids?,video6903,168126,14 9547,6903,couple,what sit on the floor?,video6903,168127,14 9548,6903,jacket,what an adult woman and some children are in another room a man is taking off while talking to a woman?,video6903,168128,14 9549,6903,house,what is a woman talking to girls in?,video6903,168129,14 9550,6903,box,what do asian children put things in?,video6903,168130,14 9551,6903,floor,what are girls sitting on with a box of toys?,video6903,168131,14 9552,6903,floor,what do a couple sit on?,video6903,168132,14 9553,6903,talk,what is a foreign film with mom and kids doing?,video6903,168133,14 9554,6903,put,what are a group of friends doing?,video6903,168134,14 9555,6903,put,what is a woman and children doing?,video6903,168135,14 9556,6903,talk,what is a woman doing?,video6903,168136,14 9557,6903,mother,who do some children talk to?,video6903,168137,14 9558,6903,box,what did the children open?,video6903,168138,14 9559,6903,parcel,what are kids opening?,video6903,168139,14 9560,6903,bedroom,what do a couple talk in?,video6903,168140,14 9561,6903,talk,what is woman doing?,video6903,168141,14 9562,6903,sit,what are girls doing?,video6903,168142,14 9563,6903,clean,what is family seems to be together in doing?,video6903,168143,14 9564,6903,talk,what is clip of guy and girl doing?,video6903,168144,14 9565,6903,put,what are an adult woman and some children doing?,video6903,168145,14 9566,6903,couple,what talk in the bedroom?,video6903,168146,14 9567,6904,show,what is a movie scene doing?,video6904,168147,7 9568,6904,involve,what is man yells ready and action then actors act out a scene doing?,video6904,168148,7 9569,6904,crash,what is a car doing?,video6904,168149,7 9570,6904,record,what is person doing?,video6904,168150,7 9571,6904,ambulance,what is a group of actors still then suddenly on cue is in a multicar collision?,video6904,168151,7 9572,6904,cue,what is a group of actors still then suddenly on an ambulance is in a multicar collision?,video6904,168152,7 9573,6904,car,what hits another in the street?,video6904,168153,7 9574,6904,group,what are on the streets?,video6904,168154,7 9575,6904,street,what does a car hit another in?,video6904,168155,7 9576,6904,cue,what is a group of actors still then suddenly on then all begin running madly and screaming?,video6904,168156,7 9577,6904,car,what did a movie scene in new york city an ambulance crash into?,video6904,168157,7 9578,6904,director,who gives some actors instructions on when to run around terrified?,video6904,168158,7 9579,6904,street,what is person recording full with cars?,video6904,168159,7 9580,6904,person,who is recording the street full with cars?,video6904,168160,7 9581,6904,man,who yells ready and action then actors act out a scene involving a car accident?,video6904,168161,7 9582,6904,ambulance,what crashes into cars on the street?,video6904,168162,7 9583,6905,explain,what is a gentleman with black court doing?,video6905,168163,5 9584,6905,review,what is a man in black pants and shirt doing?,video6905,168164,5 9585,6905,measure,what is a professor talks about doing?,video6905,168165,5 9586,6905,talk,what is person doing?,video6905,168166,5 9587,6905,wear,what is a man doing?,video6905,168167,5 9588,6905,show,what is a man doing?,video6905,168168,5 9589,6905,speak,what is old man doing?,video6905,168169,5 9590,6905,measure,what is a scientist gives a lecture on the process of doing?,video6905,168170,5 9591,6905,explain,what is a man in a brown shirt doing?,video6905,168171,5 9592,6905,show,what is with gray hair stands in front of blue draperies by a large screen doing?,video6905,168172,5 9593,6905,stand,what is a man in a black shirt and gray pants doing?,video6905,168173,5 9594,6905,explain,what is an old professor doing?,video6905,168174,5 9595,6905,something,what is an old man explaining showing on the screen?,video6905,168175,5 9596,6905,information,what is a man in black pants and shirt reviewing?,video6905,168176,5 9597,6905,thing,what is an old ma is explain with a screen?,video6905,168177,5 9598,6905,scren,what is person talking about his latest project on?,video6905,168178,5 9599,6905,stand,what is a older man doing?,video6905,168179,5 9600,6905,man,who is showing about molecules and labeled structures?,video6905,168180,5 9601,6905,stand,what is a man in a black shirt doing?,video6905,168181,5 9602,6905,explain,what is the old man doing?,video6905,168182,5 9603,6905,talk,what is a black tshirt man doing?,video6905,168183,5 9604,6905,man,who is standing by a screen explaining something that he is a expert in?,video6905,168184,5 9605,6905,man,who is explaining something by pointing something on the screen?,video6905,168185,5 9606,6905,scientist,who gives a lecture on the process of measuring molecules?,video6905,168186,5 9607,6905,explain,what is an old man doing?,video6905,168187,5 9608,6905,book,what do a gray haired man in a black shirt gestures to a large flat screen display containing an illustration of?,video6905,168188,5 9609,6905,professor,who talks about measuring molecules with chart diagram?,video6905,168189,5 9610,6905,man,who is explaining something showing on the screen?,video6905,168190,5 9611,6905,something,what is a gentleman with black court explaining about?,video6905,168191,5 9612,6905,screen,what is a older man standing by explaining something that he is a expert in?,video6905,168192,5 9613,6905,screen,what is an old ma is explain ome thing with?,video6905,168193,5 9614,6905,something,what is the old man explaining by pointing something on the screen?,video6905,168194,5 9615,6905,person,who is talking about his latest project on the scren?,video6905,168195,5 9616,6905,hair,what does in front of blue draperies stand with by a large screen showing an open book book?,video6905,168196,5 9617,6905,display,what did an old professor explaining the subject to the students with an lead to better understanding?,video6905,168197,5 9618,6905,contain,what is a gray haired man in a black shirt gestures to a large flat screen display doing?,video6905,168198,5 9619,6906,race,what does a man talk about katie izzo taking fourth place in?,video6906,168199,3 9620,6906,place,what does a man talk about katie izzo taking in a race?,video6906,168200,3 9621,6906,woman,who is running in track and field?,video6906,168201,3 9622,6906,person,who is running?,video6906,168202,3 9623,6906,competition,what does a girl win?,video6906,168203,3 9624,6906,track,what do girls run in a race?,video6906,168204,3 9625,6906,race,what do girls run track in?,video6906,168205,3 9626,6906,girl,who wins a race competition?,video6906,168206,3 9627,6906,woman,who is shown running track?,video6906,168207,3 9628,6906,girl,who wins first place?,video6906,168208,3 9629,6906,man,who talks about katie izzo taking fourth place in a race?,video6906,168209,3 9630,6906,race,what is a group of people doing?,video6906,168210,3 9631,6906,race,what are a group of people doing?,video6906,168211,3 9632,6906,feature,what is a professional sporting event doing?,video6906,168212,3 9633,6906,compete,what are many women doing?,video6906,168213,3 9634,6907,sit,what is a family of cartoons doing?,video6907,168214,6 9635,6907,discus,what is a man doing?,video6907,168215,6 9636,6907,cover,what is abc news doing?,video6907,168216,6 9637,6907,talk,what is david letter man doing?,video6907,168217,6 9638,6907,talk,what is david letterman doing?,video6907,168218,6 9639,6907,watch,what is during david letterman s final monologue the simpsons were shown doing?,video6907,168219,6 9640,6907,watch,what is simpsons family doing?,video6907,168220,6 9641,6907,talk,what is a man doing?,video6907,168221,6 9642,6907,show,what is a short clip doing?,video6907,168222,6 9643,6907,letterman,who was being shown on the simpsons?,video6907,168223,6 9644,6907,character,who laughs at the tv?,video6907,168224,6 9645,6907,program,what shows cartoon clips?,video6907,168225,6 9646,6907,man,who is talking on stage?,video6907,168226,6 9647,6907,reporter,what reaction on tv?,video6907,168227,6 9648,6907,man,who is discussing a tv show?,video6907,168228,6 9649,6907,stage,when is a man talking?,video6907,168229,6 9650,6907,cartoon,what does tv program show?,video6907,168230,6 9651,6907,show,what is a man discussing?,video6907,168231,6 9652,6907,letter,who is talking?,video6907,168232,6 9653,6907,cartoon,what is discussed?,video6907,168233,6 9654,6907,host,who is shown as a cartoon character?,video6907,168234,6 9655,6907,letterman,who does final monologue the simpsons were shown watching david letterman s during?,video6907,168235,6 9656,6907,audience,what does a tv show host speak to?,video6907,168236,6 9657,6908,hold,what are toy soldiers doing?,video6908,168237,9 9658,6908,dres,what is lego characters doing?,video6908,168238,9 9659,6908,hold,what is a lego solider doing?,video6908,168239,9 9660,6908,hold,what is a lego man is shown doing?,video6908,168240,9 9661,6908,hold,what is a lego character doing?,video6908,168241,9 9662,6908,act,what is toys doing?,video6908,168242,9 9663,6908,action,what figure with a rifle?,video6908,168243,9 9664,6908,soldier,what is ready for war?,video6908,168244,9 9665,6908,action,what figures holds a gun?,video6908,168245,9 9666,6908,fake,who are toy soldiers holding?,video6908,168246,9 9667,6908,gun,what is a lego solider holding?,video6908,168247,9 9668,6908,doll,what is standing with a gun?,video6908,168248,9 9669,6908,stand,what is a doll doing?,video6908,168249,9 9670,6908,solider,who did a lego dress as?,video6908,168250,9 9671,6908,game,what is being played?,video6908,168251,9 9672,6908,gun,what is a lego character holding?,video6908,168252,9 9673,6908,rifle,what do an action figure with?,video6908,168253,9 9674,6908,gun,what does a toy action figure holds?,video6908,168254,9 9675,6908,war,what do toys act as military on?,video6908,168255,9 9676,6908,gun,what is a doll standing with?,video6908,168256,9 9677,6908,character,who is holding a gun?,video6908,168257,9 9678,6908,war,what is the toy soldier ready for?,video6908,168258,9 9679,6908,toy,what are holding fake gunss?,video6908,168259,9 9680,6908,lego,who is someone taking pictures of?,video6908,168260,9 9681,6908,lego,what dressed as a solider?,video6908,168261,9 9682,6908,lego,who are being shown in various poses in the video?,video6908,168262,9 9683,6908,someone,what is taking pictures of lego characters?,video6908,168263,9 9684,6908,video,what are lego soldiers being shown in various poses in?,video6908,168264,9 9685,6908,lego,who is shown holding a gun?,video6908,168265,9 9686,6909,woman,who is using make up?,video6909,168266,10 9687,6909,makeup,what is a woman doing?,video6909,168267,10 9688,6909,makeup,what does the young woman apply?,video6909,168268,10 9689,6909,makeup,what was the woman applying?,video6909,168269,10 9690,6909,makeup,what does a woman put on?,video6909,168270,10 9691,6909,face,what does a woman apply makeup to?,video6909,168271,10 9692,6909,herself,who is a woman recording?,video6909,168272,10 9693,6909,face,what is a girl brushing?,video6909,168273,10 9694,6909,blush,what is a woman showing?,video6909,168274,10 9695,6909,makeup,what is a woman applying?,video6909,168275,10 9696,6909,put,what is girl doing?,video6909,168276,10 9697,6909,makeup,what is a woman putting on?,video6909,168277,10 9698,6909,put,what is a young girl doing?,video6909,168278,10 9699,6909,put,what is woman in front of camera doing?,video6909,168279,10 9700,6909,woman,who applies makeup?,video6909,168280,10 9701,6909,brush,what is a girl doing?,video6909,168281,10 9702,6909,focu,what is a girl puts on makeup while doing?,video6909,168282,10 9703,6909,use,what is a woman doing?,video6909,168283,10 9704,6909,woman,who shows off an eye shadow palette?,video6909,168284,10 9705,6909,woman,who is showing makeup to the camera?,video6909,168285,10 9706,6909,makeup,what is a woman showing to the camera?,video6909,168286,10 9707,6909,put,what is a woman doing?,video6909,168287,10 9708,6909,woman,who is putting on makeup?,video6909,168288,10 9709,6909,woman,who is applying makeup?,video6909,168289,10 9710,6909,camera,what is a woman showing makeup to?,video6909,168290,10 9711,6909,woman,who is doing makeup?,video6909,168291,10 9712,6909,woman,who was applying makeup?,video6909,168292,10 9713,6909,woman,who puts on makeup?,video6909,168293,10 9714,6909,woman,who is showing eye blush?,video6909,168294,10 9715,6910,blow,what are fireworks doing?,video6910,168295,2 9716,6910,shoot,what is fireworks doing?,video6910,168296,2 9717,6910,explode,what are many fireworks doing?,video6910,168297,2 9718,6910,watch,what is people doing?,video6910,168298,2 9719,6910,night,when did beautiful fireworks coming from an elegant skyscraper illuminate?,video6910,168299,2 9720,6910,firework,what is shown?,video6910,168300,2 9721,6910,skyscraper,what do the fireworks shoot from?,video6910,168301,2 9722,6910,sky,what are fireworks blowing up in?,video6910,168302,2 9723,6910,sky,what are many fireworks exploding in?,video6910,168303,2 9724,6910,city,what is having a big fireworks show?,video6910,168304,2 9725,6910,skyscraper,what do a video of a firework display being shot off around?,video6910,168305,2 9726,6910,building,what is burj khalifa in dubai on new year celebrations?,video6910,168306,2 9727,6911,cook,who is pudding made by?,video6911,168307,17 9728,6911,woman,who makes chocolate in the kitchen?,video6911,168308,17 9729,6911,girl,who pours chocolate into a pan?,video6911,168309,17 9730,6911,woman,who is giving a cooking instructional video?,video6911,168310,17 9731,6911,chocolate,what does a person wearing pink headphones mix?,video6911,168311,17 9732,6911,lady,who demonstrated how to make pudding?,video6911,168312,17 9733,6911,kitchen,what does a woman mix ingredients to make a chocolate sauce in?,video6911,168313,17 9734,6911,kitchen,what do a woman cooking chocolate pudding on a cooking show in?,video6911,168314,17 9735,6911,woman,who is making a chocolate recipe in a kitchen?,video6911,168315,17 9736,6911,woman,who demonstrates how to make chocolate pudding in a kitchen?,video6911,168316,17 9737,6911,woman,who mixes ingredients to make a chocolate sauce in a kitchen?,video6911,168317,17 9738,6911,person,who is cooking?,video6911,168318,17 9739,6911,chef,who wore a yellow apron?,video6911,168319,17 9740,6911,apron,what did the chef wear?,video6911,168320,17 9741,6911,chocolate,what does a girl pour into a pan?,video6911,168321,17 9742,6911,kitchen,what does a woman demonstrate how to make chocolate pudding in?,video6911,168322,17 9743,6911,stir,what is a girl doing?,video6911,168323,17 9744,6911,teach,what is a person doing?,video6911,168324,17 9745,6911,wear,what is a person doing?,video6911,168325,17 9746,6911,cook,what is a woman doing?,video6911,168326,17 9747,6911,create,what is doing?,video6911,168327,17 9748,6911,cook,what is girl doing?,video6911,168328,17 9749,6911,cook,what is a person doing?,video6911,168329,17 9750,6912,car,what are various pictures shown of?,video6912,168330,9 9751,6912,car,what is a man talking about?,video6912,168331,9 9752,6912,car,what does a man talk about?,video6912,168332,9 9753,6912,man,who is talking about a car?,video6912,168333,9 9754,6912,suv,who does a man review?,video6912,168334,9 9755,6912,car,what is a man reviewing about?,video6912,168335,9 9756,6912,car,what is shown driving down the street while a man describes the specs and positive attributes of the car?,video6912,168336,9 9757,6912,car,what does a man describe while various pictures are shown of the car?,video6912,168337,9 9758,6912,street,what is a car shown driving down while a man describes the specs and positive attributes of the car?,video6912,168338,9 9759,6912,man,who is speaking about the features of a car?,video6912,168339,9 9760,6912,man,who describes the specs and positive attributes of the car?,video6912,168340,9 9761,6912,shifter,who does a car driving then a man talking about the car then show?,video6912,168341,9 9762,6912,car,what does the man in pick show off?,video6912,168342,9 9763,6912,man,who reviews a car in spanish?,video6912,168343,9 9764,6912,man,who is talking about cars?,video6912,168344,9 9765,6912,man,who talks about a car?,video6912,168345,9 9766,6912,man,who reviews an suv?,video6912,168346,9 9767,6912,man,who describes a car while various pictures are shown of the car?,video6912,168347,9 9768,6912,man,who is reviewing about the car?,video6912,168348,9 9769,6912,car,what does a person talk about?,video6912,168349,9 9770,6912,drive,what is a car doing?,video6912,168350,9 9771,6912,talk,what is a car driving then a man doing?,video6912,168351,9 9772,6912,drive,what is a car is shown doing?,video6912,168352,9 9773,6912,explain,what is a man doing?,video6912,168353,9 9774,6912,review,what is a man doing?,video6912,168354,9 9775,6912,speak,what is a man doing?,video6912,168355,9 9776,6912,talk,what is man doing?,video6912,168356,9 9777,6912,drive,what is we see an engine and cars doing?,video6912,168357,9 9778,6913,video,what does a man narrate?,video6913,168358,9 9779,6913,street,what does a video game character run on?,video6913,168359,9 9780,6913,describe,what is a man doing?,video6913,168360,9 9781,6913,play,what is a man doing?,video6913,168361,9 9782,6913,explain,what is a person doing?,video6913,168362,9 9783,6913,commentator,who speaks over a video game?,video6913,168363,9 9784,6913,man,who narrates a video game?,video6913,168364,9 9785,6913,play,what is someone doing?,video6913,168365,9 9786,6913,person,who is explaining something?,video6913,168366,9 9787,6913,someone,what is playing a video game?,video6913,168367,9 9788,6913,play,what is person doing?,video6913,168368,9 9789,6913,video,what is someone playing?,video6913,168369,9 9790,6913,video,what does a person play?,video6913,168370,9 9791,6913,video,what is a man playing?,video6913,168371,9 9792,6913,something,what is a person explaining?,video6913,168372,9 9793,6913,video,what character running?,video6913,168373,9 9794,6913,man,who is running?,video6913,168374,9 9795,6913,man,who is playing a video game?,video6913,168375,9 9796,6914,show,what did a cut from a news show about?,video6914,168376,6 9797,6914,man,who do a news anchor reporting a story about?,video6914,168377,6 9798,6914,broadcasting,what show in a television media settwo of television and simpsons tv?,video6914,168378,6 9799,6914,letterman,who gets older as the simpsons remain the same?,video6914,168379,6 9800,6914,man,who is talking about the simpsons?,video6914,168380,6 9801,6914,television,what does a news station talk about?,video6914,168381,6 9802,6914,couch,what do the simpsons sit around?,video6914,168382,6 9803,6914,news,what anchor reporting a story about a man?,video6914,168383,6 9804,6914,station,what talks about television shows?,video6914,168384,6 9805,6914,talk,what are newscasters doing?,video6914,168385,6 9806,6914,tell,what is a late night host doing?,video6914,168386,6 9807,6914,talk,what is a man and a woman doing?,video6914,168387,6 9808,6914,talk,what is a man doing?,video6914,168388,6 9809,6914,report,what is a news anchor doing?,video6914,168389,6 9810,6914,broadcast,what is in a television media settwo of them doing?,video6914,168390,6 9811,6914,talk,what is newscasters doing?,video6914,168391,6 9812,6914,talk,what is doing?,video6914,168392,6 9813,6914,watch,what is the simpsons doing?,video6914,168393,6 9814,6915,suspect,who does a detective find out was at a dr who convention which was a scheduled trip?,video6915,168394,6 9815,6915,hat,what does a man in a suit start talking to a police officer wearing?,video6915,168395,6 9816,6915,cop,who show with the actors playing the role talking to each other while filming the show?,video6915,168396,6 9817,6915,quarry,who does a security personal is giving answer to the people s?,video6915,168397,6 9818,6915,building,what does a man in a black suit talk to a sherriff deputy outside?,video6915,168398,6 9819,6915,person,who comes out of a building?,video6915,168399,6 9820,6915,two,how many detectives talk to a policeman about the whereabouts of a person they need to talk to?,video6915,168400,6 9821,6915,person,who speaks with a policemen?,video6915,168401,6 9822,6915,building,what does a man in a suit walk out of?,video6915,168402,6 9823,6915,cop,who a couple detectives working with on the location of a person of interest?,video6915,168403,6 9824,6915,sheriff,who talks to two men wearing a suit and tie?,video6915,168404,6 9825,6915,couple,what detectives working with a cop on the location of a person of interest?,video6915,168405,6 9826,6915,detective,who finds out his suspect was at a dr who convention which was a scheduled trip?,video6915,168406,6 9827,6915,talk,what is there is a suit man doing?,video6915,168407,6 9828,6915,play,what is a cop show with the actors doing?,video6915,168408,6 9829,6915,talk,what is a man in a suit walks out of a building and starts doing?,video6915,168409,6 9830,6915,walk,what is a person doing?,video6915,168410,6 9831,6915,work,what is a couple detectives doing?,video6915,168411,6 9832,6915,wear,what is a sheriff talks to two men doing?,video6915,168412,6 9833,6915,talk,what is guy in suit and tie doing?,video6915,168413,6 9834,6916,track,what does a competitive team run around?,video6916,168414,3 9835,6916,team,what runs around a track?,video6916,168415,3 9836,6916,team,what stands on a podium?,video6916,168416,3 9837,6916,team,what is giving pose for photo by standing together?,video6916,168417,3 9838,6916,trophy,what is a team standing on a podium with?,video6916,168418,3 9839,6916,team,what is winning a trophy?,video6916,168419,3 9840,6916,podium,what do a team of players squeeze onto?,video6916,168420,3 9841,6916,podium,what is a team standing on with a trophy?,video6916,168421,3 9842,6916,podium,what does a competitive team stand on?,video6916,168422,3 9843,6916,trophy,what is some team winning?,video6916,168423,3 9844,6916,man,who is standing?,video6916,168424,3 9845,6916,group,what is being awarded?,video6916,168425,3 9846,6916,picture,what does a sport team taking together?,video6916,168426,3 9847,6916,track,who stars run around a track?,video6916,168427,3 9848,6916,race,what do a track clip?,video6916,168428,3 9849,6916,track,what does track star run around?,video6916,168429,3 9850,6916,commentary,what is about a running race?,video6916,168430,3 9851,6916,team,what is standing on a podium with a trophy?,video6916,168431,3 9852,6916,team,what does a sport taking a picture together?,video6916,168432,3 9853,6916,reporter,who discusses a high school team s performance in track and field events?,video6916,168433,3 9854,6916,man,who describes the accomplishments of athletic teams?,video6916,168434,3 9855,6916,stand,what is a man doing?,video6916,168435,3 9856,6916,celebrate,what is a team doing?,video6916,168436,3 9857,6916,crowd,what is funny sports outakes from podeium doing?,video6916,168437,3 9858,6916,compete,what are several women doing?,video6916,168438,3 9859,6916,win,what is some team doing?,video6916,168439,3 9860,6916,win,what is the doing?,video6916,168440,3 9861,6916,stand,what is there are a bunch of people doing?,video6916,168441,3 9862,6916,compete,what is track team doing?,video6916,168442,3 9863,6917,music,what is someone dancing with?,video6917,168443,7 9864,6917,someone,who is dancing with the music?,video6917,168444,7 9865,6917,room,what are a man and a woman dancing in inside?,video6917,168445,7 9866,6917,song,what dances from different movies old and new?,video6917,168446,7 9867,6917,club,what is a man wearing a light shirt and dark pants dancing in then a pair are dancing in a much older setting?,video6917,168447,7 9868,6917,music,what are a men and a women dancing for?,video6917,168448,7 9869,6917,wear,what is a man doing?,video6917,168449,7 9870,6917,dance,what is a whole bunch of people doing?,video6917,168450,7 9871,6917,dance,what is various scenes of people doing?,video6917,168451,7 9872,6917,dance,what is many scenes of doing?,video6917,168452,7 9873,6917,dance,what are the people doing?,video6917,168453,7 9874,6917,dance,what are a bunch of people doing?,video6917,168454,7 9875,6917,dance,what are a man and a woman doing?,video6917,168455,7 9876,6917,dance,what is a montage of various scenes of doing?,video6917,168456,7 9877,6917,dance,what is there are different types of people doing?,video6917,168457,7 9878,6917,dance,what are people doing?,video6917,168458,7 9879,6917,dance,what are a men and a women doing?,video6917,168459,7 9880,6917,dance,what is a fantastic retro-modern adaption of superb doing?,video6917,168460,7 9881,6917,dance,what is people are randomly doing?,video6917,168461,7 9882,6917,dance,what is someone doing?,video6917,168462,7 9883,6918,priest,who is a young man dressed nicely confessing to while cursing a lot?,video6918,168463,7 9884,6918,boy,who gives confession during an episode of the basketball diaries?,video6918,168464,7 9885,6918,meet,what are two men doing?,video6918,168465,7 9886,6918,wear,what is the man doing?,video6918,168466,7 9887,6918,confes,what is a young man dressed nicely doing?,video6918,168467,7 9888,6918,play,what is a movie scene doing?,video6918,168468,7 9889,6918,include,what is a foul-mouthed young person begins to confess his sins doing?,video6918,168469,7 9890,6918,screen,what does a young boy with blonde hair talk behind?,video6918,168470,7 9891,6918,man,who sits in a catholic confessional box?,video6918,168471,7 9892,6918,individual,who discusses his problems in a church confessional?,video6918,168472,7 9893,6918,boy,who is taking?,video6918,168473,7 9894,6918,grid,what is a young white boy in?,video6918,168474,7 9895,6918,conversation,what are two men having?,video6918,168475,7 9896,6918,screen,what is a movie scene playing in?,video6918,168476,7 9897,6918,confession,what does a man say gives in a confessional with red fabric on the walls?,video6918,168477,7 9898,6918,guy,who likes to curse in the confessional booth even though he knows it s wrong?,video6918,168478,7 9899,6918,priest,who does the man confess to?,video6918,168479,7 9900,6918,man,who says gives his confession in a confessional with red fabric on the walls?,video6918,168480,7 9901,6918,two,how many men are having a conversation?,video6918,168481,7 9902,6918,confession,what does a boy give during an episode of the basketball diaries?,video6918,168482,7 9903,6918,man,who speaks in a confessional box?,video6918,168483,7 9904,6918,man,who cusses a lot to the priest?,video6918,168484,7 9905,6918,man,who talks through a church confessional screen?,video6918,168485,7 9906,6918,man,who confesses to the priest?,video6918,168486,7 9907,6918,two,how many men are meeting?,video6918,168487,7 9908,6918,guy,who knows a cofession booth s wrong?,video6918,168488,7 9909,6918,movie,what is playing in the screen?,video6918,168489,7 9910,6919,band,what do students perform in?,video6919,168490,5 9911,6919,instrument,what is a boy playing?,video6919,168491,5 9912,6919,instrument,what is a kid playing?,video6919,168492,5 9913,6919,music,what is a person playing?,video6919,168493,5 9914,6919,student,who is a man observing?,video6919,168494,5 9915,6919,play,what is guy doing?,video6919,168495,5 9916,6919,play,what is a group of people doing?,video6919,168496,5 9917,6919,play,what is there are people doing?,video6919,168497,5 9918,6919,play,what are the children doing?,video6919,168498,5 9919,6919,play,what are people doing?,video6919,168499,5 9920,6919,play,what is man doing?,video6919,168500,5 9921,6919,play,what is a person doing?,video6919,168501,5 9922,6919,observe,what is a man doing?,video6919,168502,5 9923,6919,play,what is a kid doing?,video6919,168503,5 9924,6919,man,who watches?,video6919,168504,5 9925,6919,man,who is observing his music student?,video6919,168505,5 9926,6919,play,what is a boy doing?,video6919,168506,5 9927,6919,person,who is playing music?,video6919,168507,5 9928,6919,boy,who does a man watch play the french horn?,video6919,168508,5 9929,6919,instrument,what does a young boy play while a man watches?,video6919,168509,5 9930,6919,man,who watches a boy play an instrument?,video6919,168510,5 9931,6919,man,who preforms a song in a room?,video6919,168511,5 9932,6919,boy,who plays an instrument while a man watches?,video6919,168512,5 9933,6919,keyboard,what is a man playing while another plays a musical instrument of some sort?,video6919,168513,5 9934,6919,man,who listens as students perform in a band?,video6919,168514,5 9935,6919,man,who is playing the electric keyboard while another plays a musical instrument of some sort?,video6919,168515,5 9936,6919,man,who watches a boy play the french horn?,video6919,168516,5 9937,6919,sort,what does another play a musical instrument of?,video6919,168517,5 9938,6919,instrument,what does a man watch a boy play?,video6919,168518,5 9939,6919,man,who judges the muscicians?,video6919,168519,5 9940,6919,boy,who is playing a brass instrument?,video6919,168520,5 9941,6919,kid,who is playing an instrument?,video6919,168521,5 9942,6919,boy,who does a man watch play an instrument?,video6919,168522,5 9943,6920,lecture,what is a man giving?,video6920,168523,5 9944,6920,man,who lecture?,video6920,168524,5 9945,6920,talk,what is a man doing?,video6920,168525,5 9946,6920,educate,what is a man speaks at tedxseattle about doing?,video6920,168526,5 9947,6920,host,what is a man doing?,video6920,168527,5 9948,6920,speech,what is a man making?,video6920,168528,5 9949,6920,speak,what is man doing?,video6920,168529,5 9950,6920,show,what is a man hosting?,video6920,168530,5 9951,6920,man,who speaks to an audience on stage?,video6920,168531,5 9952,6920,man,who is giving a speech?,video6920,168532,5 9953,6920,education,what does a man give a speach about?,video6920,168533,5 9954,6920,speech,what is the man giving about education?,video6920,168534,5 9955,6920,education,what is the man giving a speech about?,video6920,168535,5 9956,6920,man,who is making a speech?,video6920,168536,5 9957,6920,screen,what a man talking on a stage then text on?,video6920,168537,5 9958,6920,tedxseattle,what does a man speak at about educating more for less?,video6920,168538,5 9959,6920,man,who gives a speach about education?,video6920,168539,5 9960,6920,man,who is giving a speech about education?,video6920,168540,5 9961,6920,speach,what does a man give about education?,video6920,168541,5 9962,6920,man,who do a ted talk by possible a professor about the issues in education?,video6920,168542,5 9963,6920,man,who speaks at tedxseattle about educating more for less?,video6920,168543,5 9964,6920,man,who is hosting a live show?,video6920,168544,5 9965,6920,man,who is giving a lecture?,video6920,168545,5 9966,6920,talk,what focuses on cheaper better education?,video6920,168546,5 9967,6921,talk,what is a girl doing?,video6921,168547,7 9968,6921,think,what is a girl doing?,video6921,168548,7 9969,6921,drive,what is a guy doing?,video6921,168549,7 9970,6921,think,what are a man and a woman doing?,video6921,168550,7 9971,6921,ask,what is a man doing?,video6921,168551,7 9972,6921,sit,what is a movie trailer that includes a woman doing?,video6921,168552,7 9973,6921,stand,what is a woman doing?,video6921,168553,7 9974,6921,trailer,who that includes a woman sitting and thinking and a man talking to another man?,video6921,168554,7 9975,6921,woman,who talks about how life can change and be different while a man is interrogated about being connected to crime?,video6921,168555,7 9976,6921,man,who is interrogated about being connected to crime?,video6921,168556,7 9977,6921,person,who is driving a truck outside?,video6921,168557,7 9978,6921,guy,who is driving a truck?,video6921,168558,7 9979,6921,truck,what is a person driving outside?,video6921,168559,7 9980,6921,truck,what is a guy driving?,video6921,168560,7 9981,6921,woman,who is standing?,video6921,168561,7 9982,6921,fall,what is movie about doing?,video6921,168562,7 9983,6921,play,what is an ad for a movie doing?,video6921,168563,7 9984,6921,drive,what is a person doing?,video6921,168564,7 9985,6922,drive,what is person doing?,video6922,168565,9 9986,6922,drive,what is a person talks about doing?,video6922,168566,9 9987,6922,describe,what is a man doing?,video6922,168567,9 9988,6922,talk,what is a man driving and doing?,video6922,168568,9 9989,6922,drive,what is a man doing?,video6922,168569,9 9990,6922,racecar,who does a man drive?,video6922,168570,9 9991,6922,car,what is a man driving in?,video6922,168571,9 9992,6922,person,who talks about driving?,video6922,168572,9 9993,6922,car,what is a man riding?,video6922,168573,9 9994,6922,car,what is a man driving?,video6922,168574,9 9995,6922,car,what does a man drive?,video6922,168575,9 9996,6922,man,who is driving a car?,video6922,168576,9 9997,6922,man,who is driving in a car?,video6922,168577,9 9998,6922,man,who drives a fast car?,video6922,168578,9 9999,6922,man,who is describing a very fast car?,video6922,168579,9 10000,6922,man,who drives a racecar?,video6922,168580,9 10001,6922,car,what is a man driving for review?,video6922,168581,9 10002,6922,track,what does a red sports car fly on?,video6922,168582,9 10003,6922,man,who is riding a red car?,video6922,168583,9 10004,6922,car,what is a man driving on the track?,video6922,168584,9 10005,6922,track,what is a man driving a car on?,video6922,168585,9 10006,6922,car,what is a man talking about while driving?,video6922,168586,9 10007,6922,man,who is driving a car for review?,video6922,168587,9 10008,6922,man,who is driving a car on the track?,video6922,168588,9 10009,6922,man,who is talking about a car while driving?,video6922,168589,9 10010,6922,review,what is a man driving a car for?,video6922,168590,9 10011,6923,polouse,what are standing in line in front of police men crowd are there?,video6923,168591,4 10012,6923,crowd,what do a group of soldiers stand in line and a group of people gather in?,video6923,168592,4 10013,6923,stand,what are the police doing?,video6923,168593,4 10014,6923,watch,what are security guards doing?,video6923,168594,4 10015,6923,stand,what is police men are shown doing?,video6923,168595,4 10016,6923,form,what is police doing?,video6923,168596,4 10017,6923,stand,what is many police doing?,video6923,168597,4 10018,6923,stand,what are cops doing?,video6923,168598,4 10019,6923,security,who are watching over people?,video6923,168599,4 10020,6923,crowd,what are the police standing in line in front of police men?,video6923,168600,4 10021,6923,line,what are cops standing in?,video6923,168601,4 10022,6923,street,what do the men stand upright in?,video6923,168602,4 10023,6923,guard,what do police stand at a rally?,video6923,168603,4 10024,6923,rally,what do police stand guard at?,video6923,168604,4 10025,6923,policeman,who lined up?,video6923,168605,4 10026,6923,crowd,what are the police standing in line in front of police men are there?,video6923,168606,4 10027,6923,crowd,what wait for auditions?,video6923,168607,4 10028,6924,interview,what is a late night talk show host doing?,video6924,168608,6 10029,6924,talk,what is a man doing?,video6924,168609,6 10030,6924,put,what is a man doing?,video6924,168610,6 10031,6924,talk,what is bill murray doing?,video6924,168611,6 10032,6924,interview,what is dave letterman doing?,video6924,168612,6 10033,6924,man,who is making comedy?,video6924,168613,6 10034,6924,bill,what is talk show host interviewing murray?,video6924,168614,6 10035,6924,bill,what do dave letterman interviewing murray?,video6924,168615,6 10036,6924,bill,what is david letterman interviewing murray?,video6924,168616,6 10037,6924,comedy,what is a man making?,video6924,168617,6 10038,6924,man,who is being interviewed?,video6924,168618,6 10039,6924,hair,what does a man smooth?,video6924,168619,6 10040,6924,man,who is talking?,video6924,168620,6 10041,6924,man,who smooths his long hair?,video6924,168621,6 10042,6924,hair,what did two men on a talk show put something on?,video6924,168622,6 10043,6924,interview,what do bill maher on television?,video6924,168623,6 10044,6924,television,what do bill maher interview on?,video6924,168624,6 10045,6924,dave,who letterman interviewing bill murray?,video6924,168625,6 10046,6924,talk,who is interviewing bill murray?,video6924,168626,6 10047,6924,murray,who is talking to david letterman?,video6924,168627,6 10048,6924,bill,what maher interview on television?,video6924,168628,6 10049,6924,something,what did two men on a talk show put on their hair?,video6924,168629,6 10050,6924,letterman,who is bill murry being interviewed by?,video6924,168630,6 10051,6924,guest,who does a tv show host speak to?,video6924,168631,6 10052,6924,murry,who is being interviewed by david letterman?,video6924,168632,6 10053,6924,fun,what is david letterman having with bill murray on his television show?,video6924,168633,6 10054,6924,letterman,who is having fun with bill murray on his television show?,video6924,168634,6 10055,6924,letterman,who is bill murray talking to?,video6924,168635,6 10056,6925,pillow,what is a woman advertising?,video6925,168636,9 10057,6925,woman,who shows another woman how to utilize a baby pillow?,video6925,168637,9 10058,6925,nursing,what does a girl demonstrate?,video6925,168638,9 10059,6925,pillow,what is a woman displaying?,video6925,168639,9 10060,6925,review,what is a lady doing?,video6925,168640,9 10061,6925,show,what is a person doing?,video6925,168641,9 10062,6925,describe,what is a woman doing?,video6925,168642,9 10063,6925,display,what is a woman doing?,video6925,168643,9 10064,6925,fix,what is a woman doing?,video6925,168644,9 10065,6925,show,what is someone doing?,video6925,168645,9 10066,6925,pillow,what is a woman showing off?,video6925,168646,9 10067,6925,pillow,what is a woman showing?,video6925,168647,9 10068,6925,product,what does a woman review?,video6925,168648,9 10069,6925,someone,who is showing?,video6925,168649,9 10070,6925,someone,who is describing?,video6925,168650,9 10071,6925,talk,what is a woman doing?,video6925,168651,9 10072,6925,stadium,what is a girl singing in?,video6925,168652,9 10073,6925,advertise,what is a woman doing?,video6925,168653,9 10074,6925,woman,who discusses accessories for babies?,video6925,168654,9 10075,6925,woman,who does a woman show how to utilize a baby pillow?,video6925,168655,9 10076,6925,woman,who is showing features of a pillow?,video6925,168656,9 10077,6925,woman,who is talking about a pillow looking thing?,video6925,168657,9 10078,6925,girl,who demonstrates a nursing pillow?,video6925,168658,9 10079,6925,woman,who reviews a pillow product?,video6925,168659,9 10080,6925,pillow,what is a woman showing features of?,video6925,168660,9 10081,6925,woman,who details a pillows texture and washing istructions?,video6925,168661,9 10082,6925,woman,who is displaying a pillow?,video6925,168662,9 10083,6925,girl,who is singing in the stadium?,video6925,168663,9 10084,6925,woman,who is advertising a pillow?,video6925,168664,9 10085,6925,woman,who is showing off a pillow?,video6925,168665,9 10086,6925,woman,who is showing a pillow?,video6925,168666,9 10087,6925,stroller,who is a woman fixing?,video6925,168667,9 10088,6925,woman,who is fixing a stroller?,video6925,168668,9 10089,6926,vehicle,what does a man provide a review of?,video6926,168669,9 10090,6926,vehicle,what is a man driving inside showing how fast his car can ride on the roads?,video6926,168670,9 10091,6926,two,how many men wait for their flight?,video6926,168671,9 10092,6926,guy,who do people checking inn into talking?,video6926,168672,9 10093,6926,car,what is someone filming the interior of?,video6926,168673,9 10094,6926,man,who gives a short little speech while he is driving his car?,video6926,168674,9 10095,6926,person,who wear his seat belt?,video6926,168675,9 10096,6926,person,who is driving the car?,video6926,168676,9 10097,6926,man,who is driving inside his vehicle showing how fast his car can ride on the roads?,video6926,168677,9 10098,6926,car,what is a man with a leather jacket inside?,video6926,168678,9 10099,6926,man,who is driving a very fancy sports car on a two lane road?,video6926,168679,9 10100,6926,man,who is a car driving along the road then people in an airport are shown is driving a car and talking to the camera?,video6926,168680,9 10101,6926,car,what is driving along the road then people in an airport are shown a man is driving a car and talking to the camera?,video6926,168681,9 10102,6926,guy,who do people checking inn into driving car?,video6926,168682,9 10103,6926,store,what are people shopping in now there is a guy talking and driving a car?,video6926,168683,9 10104,6926,car,what do people checking inn into aerodrome guy driving?,video6926,168684,9 10105,6926,someone,who is filming the interior of a car?,video6926,168685,9 10106,6926,man,who is a car driving on a road a group of people are sitting in a large room is speaking while driving a car?,video6926,168686,9 10107,6926,car,what is driving on a road a group of people are sitting in a large room a man is speaking while driving a car?,video6926,168687,9 10108,6926,man,who are many people gathering in a large room is driving a car and speaking at the same time?,video6926,168688,9 10109,6926,man,who provides a review of a vehicle?,video6926,168689,9 10110,6926,road,what is a car driving along then people in an airport are shown a man is driving a car and talking to the camera?,video6926,168690,9 10111,6926,airport,what do two men sit at?,video6926,168691,9 10112,6926,film,what is someone doing?,video6926,168692,9 10113,6926,drive,what is a person doing?,video6926,168693,9 10114,6926,drive,what is a man gives a short little speech while he doing?,video6926,168694,9 10115,6926,sit,what is two guys doing?,video6926,168695,9 10116,6926,check,what is people doing?,video6926,168696,9 10117,6926,compare,what is a man doing?,video6926,168697,9 10118,6926,gather,what are many people doing?,video6926,168698,9 10119,6926,two,how many men sit at the airport?,video6926,168699,9 10120,6926,drive,what is a car doing?,video6926,168700,9 10121,6926,drive,what is a man doing?,video6926,168701,9 10122,6926,shop,what are people doing?,video6926,168702,9 10123,6926,wait,what is there are some people doing?,video6926,168703,9 10124,6926,review,what is a man in a brown leather jacket drives down the road in a car that he doing?,video6926,168704,9 10125,6926,seat,what do a person wear?,video6926,168705,9 10126,6926,flight,what do two men wait for?,video6926,168706,9 10127,6926,car,what is a person driving?,video6926,168707,9 10128,6926,seat,what is a man driving the car wearing?,video6926,168708,9 10129,6926,cruise,what is a car an slo is described as the perfect car for doing?,video6926,168709,9 10130,6927,halloween,when make up the face of a witch with wrinkled and hung skin?,video6927,168710,18 10131,6927,camera,what is a cute american vlogger addressing showing the viewer how to make some ghoulish scary makeup?,video6927,168711,18 10132,6927,makeup,what do a girl with brown hair showing how to do stage?,video6927,168712,18 10133,6927,witch,who do halloween make up the face of with wrinkled and hung skin?,video6927,168713,18 10134,6927,lady,who explain how is put the makeup and cosmetics?,video6927,168714,18 10135,6927,face,what is a woman applying horror makeup to with a spoon?,video6927,168715,18 10136,6927,lady,who is applying eye makeup?,video6927,168716,18 10137,6927,woman,who is sitting in a pink romm?,video6927,168717,18 10138,6927,lady,who is applying the facial cream?,video6927,168718,18 10139,6927,face,what does an odd straggly substance hang from?,video6927,168719,18 10140,6927,dangle,what is a girl places doing?,video6927,168720,18 10141,6927,show,what is a girl with brown hair doing?,video6927,168721,18 10142,6927,sit,what is a woman doing?,video6927,168722,18 10143,6927,dry,what is a make-up artist explains how to use quick doing?,video6927,168723,18 10144,6927,addres,what is a cute american vlogger doing?,video6927,168724,18 10145,6927,wear,what is a girl in pink dress color cloth doing?,video6927,168725,18 10146,6927,create,what is self makeup for doing?,video6927,168726,18 10147,6927,put,what is girl doing?,video6927,168727,18 10148,6927,peel,what is a young girl with her skin doing?,video6927,168728,18 10149,6928,woman,who is talking about election in the viewers?,video6928,168729,15 10150,6928,newscaster,who reads the news from the studio while various images are shown?,video6928,168730,15 10151,6928,news,what anchor reporting a story about hilary clinton?,video6928,168731,15 10152,6928,pundit,who talks about corporations hijacking politics?,video6928,168732,15 10153,6928,news,what is telling the viewers about hilary clinton?,video6928,168733,15 10154,6928,clinton,who does a woman on a news program speak about?,video6928,168734,15 10155,6928,clinton,who do a news anchor reporting a story about?,video6928,168735,15 10156,6928,clinton,who does a woman talk about?,video6928,168736,15 10157,6928,news,what do a news anchor reports on?,video6928,168737,15 10158,6928,news,what report about corporations?,video6928,168738,15 10159,6928,news,what anchor discussing politics?,video6928,168739,15 10160,6928,woman,who is talking about politics?,video6928,168740,15 10161,6928,clinton,who does newswoman discuss?,video6928,168741,15 10162,6928,newswoman,who discusses hillary clinton?,video6928,168742,15 10163,6928,woman,who talks about hillary clinton?,video6928,168743,15 10164,6928,news,what anchor reports on political news?,video6928,168744,15 10165,6928,two,how many people are presenting news?,video6928,168745,15 10166,6928,woman,who talks about politics hijacking?,video6928,168746,15 10167,6928,election,what is a woman talking about in the viewers?,video6928,168747,15 10168,6928,woman,who is talking about the government and news?,video6928,168748,15 10169,6928,newscaster,who talks about the white house?,video6928,168749,15 10170,6928,clinton,who is a news telling the viewers about?,video6928,168750,15 10171,6928,discus,what is a female news anchor doing?,video6928,168751,15 10172,6928,tell,what is a news anchor doing?,video6928,168752,15 10173,6928,report,what is a news anchor doing?,video6928,168753,15 10174,6928,woman,who is talking?,video6928,168754,15 10175,6928,news,what are two people presenting?,video6928,168755,15 10176,6928,talk,what is woman doing?,video6928,168756,15 10177,6928,present,what are two people doing?,video6928,168757,15 10178,6928,talk,what is a woman doing?,video6928,168758,15 10179,6928,hijack,what is a political pundit talks about corporations doing?,video6928,168759,15 10180,6928,hijack,what is woman talks about politics doing?,video6928,168760,15 10181,6929,jockey,what are racing on a dirt track?,video6929,168761,3 10182,6929,group,what are running fast to win the first place?,video6929,168762,3 10183,6929,race,what are the jockeys riding the horse very fast to win?,video6929,168763,3 10184,6929,track,what are several horses racing on?,video6929,168764,3 10185,6929,horse,what are the jockeys riding very fast to win the race?,video6929,168765,3 10186,6929,horse,what is riding in the road?,video6929,168766,3 10187,6929,place,what are group of horses running fast to win?,video6929,168767,3 10188,6929,road,what is a horse riding in?,video6929,168768,3 10189,6929,jockey,who are riding the horse very fast to win the race?,video6929,168769,3 10190,6929,five,how many jockeys ride around a dirt racetrack on horseback?,video6929,168770,3 10191,6929,pack,what do horses travel in at high speeds around an oval dirt track?,video6929,168771,3 10192,6929,turn,what do 5 men on horses during a close race go around?,video6929,168772,3 10193,6929,race,what are horse jockey s doing?,video6929,168773,3 10194,6929,race,what are several horses doing?,video6929,168774,3 10195,6929,negotiate,what is four race horses doing?,video6929,168775,3 10196,6929,race,what are a group of five horses doing?,video6929,168776,3 10197,6929,show,what is a horse race doing?,video6929,168777,3 10198,6930,man,who is talking to another guy?,video6930,168778,7 10199,6930,battle,what did the men look ready for?,video6930,168779,7 10200,6930,jail,what do a group of prisoners escape?,video6930,168780,7 10201,6930,guy,who is one man talking to?,video6930,168781,7 10202,6930,room,what men with guns stride into?,video6930,168782,7 10203,6930,gun,what are some guys enter into a gate with?,video6930,168783,7 10204,6930,gate,what are some guys enter into with gun?,video6930,168784,7 10205,6930,coliseum,what are a group of armed men emerging into?,video6930,168785,7 10206,6930,prison,who escape with guns?,video6930,168786,7 10207,6930,person,who is walking?,video6930,168787,7 10208,6930,emerge,what are a group of armed men doing?,video6930,168788,7 10209,6930,hold,what is a group of people doing?,video6930,168789,7 10210,6930,storm,what are a group of people with guns doing?,video6930,168790,7 10211,6930,walk,what is a person doing?,video6930,168791,7 10212,6930,march,what are men doing?,video6930,168792,7 10213,6930,talk,what is one man doing?,video6930,168793,7 10214,6930,contain,what is several scenes from the dark knight doing?,video6930,168794,7 10215,6931,reverse,what is a man driving a car in?,video6931,168795,9 10216,6931,guy,who drives damaged car on dirt?,video6931,168796,9 10217,6931,car,what did a man hit in a ground?,video6931,168797,9 10218,6931,ground,what did a man hit another car in?,video6931,168798,9 10219,6931,track,what are two cars on a track bumping into each other on?,video6931,168799,9 10220,6931,car,what is a man driving in reverse?,video6931,168800,9 10221,6931,car,what crashed in racing competition?,video6931,168801,9 10222,6931,dirt,what does guy drive damaged car on?,video6931,168802,9 10223,6931,competition,what did two car crash in?,video6931,168803,9 10224,6931,demolition,what are people watching?,video6931,168804,9 10225,6931,car,what does guy drive damaged on dirt?,video6931,168805,9 10226,6931,man,who is driving a car in reverse?,video6931,168806,9 10227,6931,man,who hit another car in a ground?,video6931,168807,9 10228,6931,man,who is trying to lead a car to its destination?,video6931,168808,9 10229,6931,drag,what is a man in car doing?,video6931,168809,9 10230,6931,drive,what is a man doing?,video6931,168810,9 10231,6931,try,what is a man doing?,video6931,168811,9 10232,6931,stand,what is a person doing?,video6931,168812,9 10233,6931,crash,what are cars doing?,video6931,168813,9 10234,6931,watch,what are people doing?,video6931,168814,9 10235,6931,race,what is two car crashed in doing?,video6931,168815,9 10236,6931,car,what is a man in car dragging in behind while a person dressed in yellow tries to stop him?,video6931,168816,9 10237,6931,bump,what are two cars on a track doing?,video6931,168817,9 10238,6931,car,what has been into accident in a car race?,video6931,168818,9 10239,6931,ring,what do cars crash into each other inside?,video6931,168819,9 10240,6932,man,who reads a piece of paper on the sidewalk?,video6932,168820,19 10241,6932,man,who is reading a brochure about a cigarette?,video6932,168821,19 10242,6932,paper,what does a man read a piece of on the sidewalk?,video6932,168822,19 10243,6932,note,what did each person read?,video6932,168823,19 10244,6932,footpath,what are people standing on?,video6932,168824,19 10245,6932,brochure,what are people reading?,video6932,168825,19 10246,6932,read,what is several people doing?,video6932,168826,19 10247,6932,look,what are several people doing?,video6932,168827,19 10248,6932,talk,what is people doing?,video6932,168828,19 10249,6932,read,what is people on the street doing?,video6932,168829,19 10250,6932,stand,what are people doing?,video6932,168830,19 10251,6932,read,what are people doing?,video6932,168831,19 10252,6932,read,what is different people are shown doing?,video6932,168832,19 10253,6932,read,what is different men are shown doing?,video6932,168833,19 10254,6932,involve,what is an anti-smoking ad that doing?,video6932,168834,19 10255,6932,read,what is a man doing?,video6932,168835,19 10256,6932,hold,what is a man his doing?,video6932,168836,19 10257,6932,note,what are several people looking at?,video6932,168837,19 10258,6932,paper,what are different men shown reading a piece of on a city street?,video6932,168838,19 10259,6932,brochure,what are different people shown reading about cigarettes?,video6932,168839,19 10260,6932,sidewalk,what does a man read a piece of paper on?,video6932,168840,19 10261,6932,quit,what is this is an ad about people doing?,video6932,168841,19 10262,6932,brochure,what is a man reading about a cigarette?,video6932,168842,19 10263,6932,person,who read a note?,video6932,168843,19 10264,6932,cigarette,what is a man reading a brochure about?,video6932,168844,19 10265,6932,check,what are some people doing?,video6932,168845,19 10266,6933,boy,who walks around?,video6933,168846,5 10267,6933,play,what is a black and white scene of children doing?,video6933,168847,5 10268,6933,walk,what is a boy doing?,video6933,168848,5 10269,6933,look,what is a boy doing?,video6933,168849,5 10270,6933,involve,what is a cartoon doing?,video6933,168850,5 10271,6933,clap,what is a classroom of students doing?,video6933,168851,5 10272,6933,clap,what are a group of kids doing?,video6933,168852,5 10273,6933,walk,what is a student doing?,video6933,168853,5 10274,6933,try,what is boy doing?,video6933,168854,5 10275,6933,play,what is bunch of kids doing?,video6933,168855,5 10276,6933,clap,what are children doing?,video6933,168856,5 10277,6933,clap,what is children doing?,video6933,168857,5 10278,6933,play,what are children in a school doing?,video6933,168858,5 10279,6933,clap,what is children in a school doing?,video6933,168859,5 10280,6933,clap,what is kids doing?,video6933,168860,5 10281,6933,classroom,what is a boy in?,video6933,168861,5 10282,6933,student,who is walking around a classroom while the other kids are clapping for him?,video6933,168862,5 10283,6933,classroom,what is a boy walking around?,video6933,168863,5 10284,6933,classroom,what is a student walking around while the other kids are clapping for him?,video6933,168864,5 10285,6933,game,what are children in a school playing?,video6933,168865,5 10286,6933,boy,who is walking around a classroom?,video6933,168866,5 10287,6933,clas,what do kids sing in?,video6933,168867,5 10288,6933,student,who are the other kids clapping for?,video6933,168868,5 10289,6933,school,what are children clapping in?,video6933,168869,5 10290,6933,boy,who did kids clap for?,video6933,168870,5 10291,6934,woman,who talks about politics?,video6934,168871,15 10292,6934,woman,who speaks about something that has happened?,video6934,168872,15 10293,6934,lady,who anchor reading news in a tv channel?,video6934,168873,15 10294,6934,news,what is a news reporter talking about?,video6934,168874,15 10295,6934,talk,what is a clip from the news doing?,video6934,168875,15 10296,6934,talk,what is a female newscaster doing?,video6934,168876,15 10297,6934,read,what is a lady anchor doing?,video6934,168877,15 10298,6934,talk,what is a news clip from msnbc shows a newswoman doing?,video6934,168878,15 10299,6934,talk,what is a news reporter doing?,video6934,168879,15 10300,6934,talk,what is a short news clip doing?,video6934,168880,15 10301,6934,talk,what is a woman doing?,video6934,168881,15 10302,6934,tell,what is a woman doing?,video6934,168882,15 10303,6934,talk,what is two women doing?,video6934,168883,15 10304,6934,talk,what is a news anchor doing?,video6934,168884,15 10305,6934,news,what anchor talks about a court case?,video6934,168885,15 10306,6934,news,what anchor talking about a bank?,video6934,168886,15 10307,6934,news,what do a lady anchor reading in a tv channel?,video6934,168887,15 10308,6934,woman,who is talking?,video6934,168888,15 10309,6934,news,what report about a banker?,video6934,168889,15 10310,6934,story,what is a female newscaster talking about?,video6934,168890,15 10311,6934,news,what anchor reporting on hilary clinton?,video6934,168891,15 10312,6934,newswoman,who talks about hilary and bill clinton?,video6934,168892,15 10313,6934,banker,who do a news report about?,video6934,168893,15 10314,6934,reporter,who is talking about the news?,video6934,168894,15 10315,6934,newscaster,who is talking about a story?,video6934,168895,15 10316,6935,stand,what is a woman runner doing?,video6935,168896,3 10317,6935,post,what is a sports reporter talks about the good times a track athlete has been doing?,video6935,168897,3 10318,6935,wear,what is an athlete stands next to a man doing?,video6935,168898,3 10319,6935,stand,what is a woman in a pair of short shorts doing?,video6935,168899,3 10320,6935,narrate,what is a young lady doing?,video6935,168900,3 10321,6935,wear,what is a woman doing?,video6935,168901,3 10322,6935,stand,what is a university of oregon track athlete doing?,video6935,168902,3 10323,6935,warm,what is woman track athelete doing?,video6935,168903,3 10324,6935,stand,what is a girl in sports wear doing?,video6935,168904,3 10325,6935,perform,what is a lady news reporter gives the timing of a women athlete doing?,video6935,168905,3 10326,6935,track,what does a tall young blonde woman stand in the video dressed in?,video6935,168906,3 10327,6935,video,what is a girl there in?,video6935,168907,3 10328,6935,record,what does a commentator discuss?,video6935,168908,3 10329,6935,victory,what is running or something else?,video6935,168909,3 10330,6935,girl,who is there in the video?,video6935,168910,3 10331,6935,game,what do the running race game and racers in the ground start?,video6935,168911,3 10332,6935,guide,who is a woman get ready to run in the match with?,video6935,168912,3 10333,6935,lady,who is narrating explaining the records of track players while a tall young blonde woman stands in the video dressed in track gear?,video6935,168913,3 10334,6935,reporter,who talks about the good times a track athlete has been posting?,video6935,168914,3 10335,6935,girl,who got a huge victory of 1500?,video6935,168915,3 10336,6935,athlete,who does a sports reporter talk about the good times has been posting?,video6935,168916,3 10337,6935,track,what are the athlts ready to hear the starting bell in?,video6935,168917,3 10338,6935,runner,who prepares for the start of the race?,video6935,168918,3 10339,6935,athlete,who stands next to a man wearing a red shirt and white baseball cap in front of a crowd of spectators?,video6935,168919,3 10340,6935,woman,who is get ready to run in the match with guide?,video6935,168920,3 10341,6936,perform,what is louisiana state university gymnast doing?,video6936,168921,3 10342,6936,jump,what is a woman doing?,video6936,168922,3 10343,6936,gymnast,who performs a routine on a mat?,video6936,168923,3 10344,6936,perform,what is a gymnast doing?,video6936,168924,3 10345,6936,university,what gymnast performing a floor routine?,video6936,168925,3 10346,6936,gymnast,who is performing at a competition?,video6936,168926,3 10347,6936,stunt,what is a woman performing?,video6936,168927,3 10348,6936,woman,who is jumping?,video6936,168928,3 10349,6936,routine,what does a gymnast do?,video6936,168929,3 10350,6936,girl,who is doing gymnastic?,video6936,168930,3 10351,6936,competition,what is a gymnast performing at?,video6936,168931,3 10352,6936,crowd,what do a gymnast performing for?,video6936,168932,3 10353,6936,woman,who is performing a gymnastic stunt?,video6936,168933,3 10354,6936,floor,what does a young black girl do routine?,video6936,168934,3 10355,6936,routine,what did louisiana state university gymnast performing?,video6936,168935,3 10356,6937,woman,who is talking over the phone?,video6937,168936,4 10357,6937,woman,who talks on the phone?,video6937,168937,4 10358,6937,room,what does a woman speak to a camera in?,video6937,168938,4 10359,6937,woman,who speaks to a camera in a room?,video6937,168939,4 10360,6937,woman,who is talking about someone in the hospital?,video6937,168940,4 10361,6937,phone,what is a old woman talking over?,video6937,168941,4 10362,6937,camera,what does a woman speak to in a room?,video6937,168942,4 10363,6937,woman,who talks on the telephone?,video6937,168943,4 10364,6937,talk,what is the lady doing?,video6937,168944,4 10365,6937,woman,who is talking on a phone?,video6937,168945,4 10366,6937,talk,what is woman doing?,video6937,168946,4 10367,6937,speak,what is there is a woman doing?,video6937,168947,4 10368,6937,answer,what is a woman doing?,video6937,168948,4 10369,6937,talk,what is a old woman doing?,video6937,168949,4 10370,6937,talk,what is a girl doing?,video6937,168950,4 10371,6937,woman,who is talking?,video6937,168951,4 10372,6937,phone,what is a woman answering?,video6937,168952,4 10373,6937,phone,what is a girl talking in?,video6937,168953,4 10374,6937,phone,what does a woman answer?,video6937,168954,4 10375,6937,phone,what is the lady talking in?,video6937,168955,4 10376,6937,phone,what is a woman talking on?,video6937,168956,4 10377,6937,telephone,what does the woman talk on?,video6937,168957,4 10378,6937,phone,what does a woman talk on?,video6937,168958,4 10379,6937,phone,what does an older woman talk on?,video6937,168959,4 10380,6937,phone,what then goes back to talking?,video6937,168960,4 10381,6937,woman,who is answering the phone?,video6937,168961,4 10382,6937,phone,what does a woman talking then answer?,video6937,168962,4 10383,6937,girl,who is talking in phone?,video6937,168963,4 10384,6938,play,what is someone doing?,video6938,168964,9 10385,6938,display,what is a video game doing?,video6938,168965,9 10386,6938,play,what is a person doing?,video6938,168966,9 10387,6938,look,what is a man doing?,video6938,168967,9 10388,6938,video,what is a person playing?,video6938,168968,9 10389,6938,car,what is a man looking at?,video6938,168969,9 10390,6938,game,what is someone playing?,video6938,168970,9 10391,6938,three,how many cars are shown in a video game while music plays in the background?,video6938,168971,9 10392,6938,game,what play footage of grand theft auto?,video6938,168972,9 10393,6938,car,what is shown in several pictures?,video6938,168973,9 10394,6938,person,who is playing a video game?,video6938,168974,9 10395,6938,music,what is being played in the background?,video6938,168975,9 10396,6938,music,what plays in the background?,video6938,168976,9 10397,6938,background,what is music being played in?,video6938,168977,9 10398,6938,someone,what is playing a game?,video6938,168978,9 10399,6938,background,what does music play in?,video6938,168979,9 10400,6938,man,who is looking at a car?,video6938,168980,9 10401,6939,play,what is a man doing?,video6939,168981,3 10402,6939,game,who are kissing?,video6939,168982,3 10403,6939,person,who is playing?,video6939,168983,3 10404,6939,video,what do several men play together?,video6939,168984,3 10405,6939,something,what is a person explaining?,video6939,168985,3 10406,6939,minecraft,what is a man playing?,video6939,168986,3 10407,6939,video,what is a person playing?,video6939,168987,3 10408,6939,game,what is someone playing?,video6939,168988,3 10409,6939,someone,what is playing a game?,video6939,168989,3 10410,6939,someone,what is playing a video game?,video6939,168990,3 10411,6939,football,what are characters chatting on?,video6939,168991,3 10412,6939,person,who is explaining something?,video6939,168992,3 10413,6939,someone,what is playing minecraft?,video6939,168993,3 10414,6939,video,what do several players narrate action?,video6939,168994,3 10415,6939,man,who is playing minecraft?,video6939,168995,3 10416,6939,man,who narrates a video game?,video6939,168996,3 10417,6939,two,how many game characters are kissing?,video6939,168997,3 10418,6939,video,what does a man narrate?,video6939,168998,3 10419,6939,video,who are standing in a sports arena?,video6939,168999,3 10420,6939,person,who is playing video game?,video6939,169000,3 10421,6939,explain,what is a person doing?,video6939,169001,3 10422,6939,talk,what is a person doing?,video6939,169002,3 10423,6939,chat,what are characters doing?,video6939,169003,3 10424,6939,play,what is guys doing?,video6939,169004,3 10425,6939,play,what is people doing?,video6939,169005,3 10426,6939,kis,what are two game characters doing?,video6939,169006,3 10427,6939,stand,what are video game characters doing?,video6939,169007,3 10428,6939,play,what is a group of people doing?,video6939,169008,3 10429,6940,video,what is hereby introduced some balloons are come out from the girl some birds are catching and eating it?,video6940,169009,2 10430,6940,sea,what is black haired woman walking near?,video6940,169010,2 10431,6940,woman,who is walking near the sea?,video6940,169011,2 10432,6940,woman,who moves back and forth on a beach in an animation?,video6940,169012,2 10433,6940,balloon,what is a woman on the beach tossing in the air?,video6940,169013,2 10434,6940,defecate,what were a man playing a game on a woman?,video6940,169014,2 10435,6940,person,who is standing around on a beach during the day?,video6940,169015,2 10436,6940,woman,who is letting a balloon go?,video6940,169016,2 10437,6940,beach,what does a woman move back and forth on in an animation?,video6940,169017,2 10438,6940,man,who is looking at a computer screen?,video6940,169018,2 10439,6940,man,who play a game that were not up to his expectations?,video6940,169019,2 10440,6940,woman,who is talking back and forth on the beach?,video6940,169020,2 10441,6940,beach,what is a woman talking back and forth on?,video6940,169021,2 10442,6940,man,who commentates?,video6940,169022,2 10443,6940,game,what does animation of a girl simulate some type of?,video6940,169023,2 10444,6940,lady,who is going left and right?,video6940,169024,2 10445,6940,walk,what is there is a woman doing?,video6940,169025,2 10446,6940,tos,what is a woman on the beach doing?,video6940,169026,2 10447,6940,look,what is a man doing?,video6940,169027,2 10448,6940,catch,what are a video game is hereby introduced some balloons are come out from the girl some birds doing?,video6940,169028,2 10449,6940,slide,what is a woman doing?,video6940,169029,2 10450,6940,play,what is a man doing?,video6940,169030,2 10451,6940,talk,what is a woman doing?,video6940,169031,2 10452,6940,release,what is an animation of a woman doing?,video6940,169032,2 10453,6940,play,what is a guy talks while doing?,video6940,169033,2 10454,6940,walk,what is black haired woman doing?,video6940,169034,2 10455,6940,play,what is a man yells while doing?,video6940,169035,2 10456,6940,simulate,what is animation of a girl doing?,video6940,169036,2 10457,6940,stand,what is a person doing?,video6940,169037,2 10458,6940,crash,what are waves doing?,video6940,169038,2 10459,6940,woman,who is sliding across beach sand throwing yellow balls at birds?,video6940,169039,2 10460,6940,guy,who talks while playing a game with a lady standing on the beach?,video6940,169040,2 10461,6940,man,who is using profanity as he describes animated birds pooping in a lady?,video6940,169041,2 10462,6940,beach,what is a woman sliding across throwing yellow balls at birds?,video6940,169042,2 10463,6940,man,who describes animated birds pooping in a lady?,video6940,169043,2 10464,6940,woman,who were a man playing a game birds defecate on?,video6940,169044,2 10465,6940,man,who yells while playing a bad video game?,video6940,169045,2 10466,6940,air,what is a woman on the beach tossing a yellow balloon in?,video6940,169046,2 10467,6940,animation,what does a woman move back and forth on a beach in?,video6940,169047,2 10468,6941,man,who discusses how to make nachos?,video6941,169048,16 10469,6941,man,who prepares to make nachos?,video6941,169049,16 10470,6941,kitchen,what does a guy prepare to make nachos in?,video6941,169050,16 10471,6941,table,what did black color container keep on?,video6941,169051,16 10472,6941,tawa,who is put on the table?,video6941,169052,16 10473,6941,container,what kept on the table?,video6941,169053,16 10474,6941,table,what is tawa put on?,video6941,169054,16 10475,6941,nacho,what does a man prepare to make?,video6941,169055,16 10476,6941,nacho,what does a guy prepare to make in his kitchen?,video6941,169056,16 10477,6941,prepare,what is a man doing?,video6941,169057,16 10478,6941,lay,what is a black colored pan doing?,video6941,169058,16 10479,6941,present,what is in a kitchen person doing?,video6941,169059,16 10480,6941,present,what is woman doing?,video6941,169060,16 10481,6941,mix,what is a man and a bowl doing?,video6941,169061,16 10482,6941,describe,what is a man doing?,video6941,169062,16 10483,6941,kitchen,what is person presenting his black pan in?,video6941,169063,16 10484,6941,talk,what is there is a man doing?,video6941,169064,16 10485,6941,man,who is giving instructions to make basic nachos?,video6941,169065,16 10486,6941,man,who is preparing a dish in the pan?,video6941,169066,16 10487,6941,screen,what do a man and a bowl mixing dish inside kitchen to prepare to serve to eat displaying on?,video6941,169067,16 10488,6941,dish,what do a man and a bowl mixing inside kitchen to prepare to serve to eat displaying on screen?,video6941,169068,16 10489,6941,kitchen,what do a man and a bowl mixing dish inside to prepare to serve to eat displaying on screen?,video6941,169069,16 10490,6941,stovetop,what does a saucepan sit on as a man prepares to make nachos?,video6941,169070,16 10491,6941,saucepan,what sits on the stovetop as a man prepares to make nachos?,video6941,169071,16 10492,6941,someone,who is explaning to how to cook a vegetable curry in a kitchen?,video6941,169072,16 10493,6941,man,who is describing how to make a basic version of nachos?,video6941,169073,16 10494,6941,kitchen,what is someone explaning to how to cook a vegetable curry in?,video6941,169074,16 10495,6941,man,who is prepare some food in to the vessel?,video6941,169075,16 10496,6941,vessel,what is a man prepare some food in to?,video6941,169076,16 10497,6941,food,what is a man prepare in to the vessel?,video6941,169077,16 10498,6941,stove,what is a black keeping on to cook a recipe?,video6941,169078,16 10499,6941,recipe,what do a person doing a cooking show and mixing the ingredients for?,video6941,169079,16 10500,6941,person,who is presenting his black pan in a kitchen?,video6941,169080,16 10501,6941,guy,who prepares to make nachos in his kitchen?,video6941,169081,16 10502,6942,advertiesment,what vedio clip?,video6942,169082,12 10503,6942,tell,what is the titles of books pop on screen later a link is provided doing?,video6942,169083,12 10504,6942,present,what is person doing?,video6942,169084,12 10505,6942,explain,what is a slide show doing?,video6942,169085,12 10506,6942,stand,what is there is a little boy doing?,video6942,169086,12 10507,6942,design,what is there are some signs with wonderful doing?,video6942,169087,12 10508,6942,present,what is someone doing?,video6942,169088,12 10509,6942,top,what does the person display the colorful slides with words on?,video6942,169089,12 10510,6942,screen,what shows how to get to a website that offers many books to read?,video6942,169090,12 10511,6942,colorful,what does the person display slides with words on top?,video6942,169091,12 10512,6942,person,who is presenting his new website for reading books?,video6942,169092,12 10513,6942,person,who is doing some searches on the web using computer?,video6942,169093,12 10514,6942,someone,what is presenting the results from a webpage search?,video6942,169094,12 10515,6942,book,what covers with real booknownet information on top of the book covers?,video6942,169095,12 10516,6942,slide,what show explaining about various ebook that can be downloaded?,video6942,169096,12 10517,6942,person,who displays the colorful slides with words on top?,video6942,169097,12 10518,6942,top,where does the person display the colorful slides with words?,video6942,169098,12 10519,6942,booknownet,what does book cover with information on top of the book covers?,video6942,169099,12 10520,6942,text,what is on a black back ground?,video6942,169100,12 10521,6942,advertiesment,who vedio shoot the girl?,video6942,169101,12 10522,6942,text,what is on a red and blue background?,video6942,169102,12 10523,6942,girl,who does a advertiesment vedio shoot?,video6942,169103,12 10524,6943,wear,what is a man doing?,video6943,169104,18 10525,6943,talk,what is a woman with gray hair doing?,video6943,169105,18 10526,6943,look,what is a gay doing?,video6943,169106,18 10527,6943,look,what is guy in tshirt doing?,video6943,169107,18 10528,6943,wear,what is a boy in white color dress doing?,video6943,169108,18 10529,6943,stand,what is a man with white hair doing?,video6943,169109,18 10530,6943,pose,what is a boy in his new hair style and looks doing?,video6943,169110,18 10531,6943,try,what is a ma with light air and white shirt doing?,video6943,169111,18 10532,6943,listen,what is a guy with blond hair doing?,video6943,169112,18 10533,6943,stand,what is man doing?,video6943,169113,18 10534,6943,stand,what is a man is with white color dress doing?,video6943,169114,18 10535,6943,stand,what is a man doing?,video6943,169115,18 10536,6943,show,what is a graphic doing?,video6943,169116,18 10537,6943,man,who is standing in the corner and talkinh?,video6943,169117,18 10538,6943,wall,what do a man lean on?,video6943,169118,18 10539,6943,something,what is a woman with gray hair talking about?,video6943,169119,18 10540,6943,music,what do a boy in white color dress wearing cloth hand on playing displaying on screen?,video6943,169120,18 10541,6943,color,what is a man with dress is standing in the corner?,video6943,169121,18 10542,6943,hand,what do a boy in white color dress wearing on hairs music playing displaying on screen?,video6943,169122,18 10543,6943,corner,what is a man with white color dress is standing in?,video6943,169123,18 10544,6943,wall,what is man in white shirt being photographed near?,video6943,169124,18 10545,6943,corner,where is a gay looking man standing?,video6943,169125,18 10546,6943,camera,what rolls filming a blonde haired man in a white shirt?,video6943,169126,18 10547,6943,man,who stands in a corner of a white room with a white shirt and white hair?,video6943,169127,18 10548,6943,youth,who is poss their diffrent angle for photo secssion?,video6943,169128,18 10549,6943,man,who is with white color dress is standing in the corner?,video6943,169129,18 10550,6943,corner,where is a man with white color dress is standing?,video6943,169130,18 10551,6943,dres,what is a man with white color is standing in the corner?,video6943,169131,18 10552,6943,video,what do man standing in corner copywritten stevie wonder song plays in background should not be published without copyright clearance for song in background?,video6943,169132,18 10553,6943,man,who stands in a corner touches hair?,video6943,169133,18 10554,6943,man,who lean on the wall?,video6943,169134,18 10555,6943,corner,what is a gay looking man standing in?,video6943,169135,18 10556,6943,hair,what does a blonde haired man in a white shirt run his fingers through?,video6943,169136,18 10557,6944,hold,what are animated ducks doing?,video6944,169137,2 10558,6944,hold,what is an animated duck doing?,video6944,169138,2 10559,6944,hold,what is a woman duck and three boy ducks doing?,video6944,169139,2 10560,6944,carry,what is a cartoon shows a man doing?,video6944,169140,2 10561,6944,talk,what are three animated ducks doing?,video6944,169141,2 10562,6944,dance,what is ducks doing?,video6944,169142,2 10563,6944,show,what depicts ducks in a desert?,video6944,169143,2 10564,6944,cartoon,what shows a man carrying a lot of items?,video6944,169144,2 10565,6944,three,how many cartoon ducks pick up shovels?,video6944,169145,2 10566,6944,cartoon,what ducks dress up as miners?,video6944,169146,2 10567,6944,three,how many ducks try to take on a machine?,video6944,169147,2 10568,6944,confront,what is three cartoon ducks doing?,video6944,169148,2 10569,6944,robot,what does three cartoon duck confronting?,video6944,169149,2 10570,6944,shovel,what is an animated duck holding?,video6944,169150,2 10571,6944,song,what is an animation shown with?,video6944,169151,2 10572,6944,duck,what is holding a shovel?,video6944,169152,2 10573,6944,cartoon,what ducks confronting a robot?,video6944,169153,2 10574,6944,cartoon,what pick up shovels?,video6944,169154,2 10575,6944,music,what did duck tales cartoon set to?,video6944,169155,2 10576,6944,animation,what is shown with a song?,video6944,169156,2 10577,6944,enemy,what does cartoon duck encounter?,video6944,169157,2 10578,6944,cartoon,what does a scene of the ducktales?,video6944,169158,2 10579,6944,machine,what do three ducks try to take on?,video6944,169159,2 10580,6944,cartoon,what ducks encounter an enemy?,video6944,169160,2 10581,6944,equipment,what does a woman duck and three boy duck holding?,video6944,169161,2 10582,6944,duck,what cartoon set to upbeat music?,video6944,169162,2 10583,6945,something,what is a man talking about?,video6945,169163,0 10584,6945,man,who gives interview?,video6945,169164,0 10585,6945,language,what is a man talking in?,video6945,169165,0 10586,6945,guy,who interviewed here?,video6945,169166,0 10587,6945,male,what is being interviewed?,video6945,169167,0 10588,6945,talk,what is guy doing?,video6945,169168,0 10589,6945,tell,what is an asian boy doing?,video6945,169169,0 10590,6945,speak,what is a person doing?,video6945,169170,0 10591,6945,speak,what is a man doing?,video6945,169171,0 10592,6945,talk,what is a man doing?,video6945,169172,0 10593,6945,discus,what is a man doing?,video6945,169173,0 10594,6945,interview,what does asian man give?,video6945,169174,0 10595,6945,language,what did man being interview speaking?,video6945,169175,0 10596,6945,man,who interviewed speaking foreign language?,video6945,169176,0 10597,6945,television,what does an asian man speak on?,video6945,169177,0 10598,6945,man,who gives an interview?,video6945,169178,0 10599,6945,camera,what is a person speaking to in a foreign language?,video6945,169179,0 10600,6945,man,who is discussing something in chinese?,video6945,169180,0 10601,6945,person,who is speaking to a camera in a foreign language?,video6945,169181,0 10602,6945,news,what does a man reveal to a crowd of people who laugh and awwww?,video6945,169182,0 10603,6945,man,who speaks to a camera for a video segment?,video6945,169183,0 10604,6945,man,who is talking while subtitles play?,video6945,169184,0 10605,6945,man,who speaks on television?,video6945,169185,0 10606,6945,man,who is talking in chinese language?,video6945,169186,0 10607,6945,man,who reveals news to a crowd of people who laugh and awwww?,video6945,169187,0 10608,6945,man,who is talking about something?,video6945,169188,0 10609,6945,man,who is talking on tv?,video6945,169189,0 10610,6945,interview,what does a man give?,video6945,169190,0 10611,6945,something,what is a man discussing in chinese?,video6945,169191,0 10612,6946,hold,what is bane doing?,video6946,169192,7 10613,6946,fight,what are people doing?,video6946,169193,7 10614,6946,try,what is a scene of a movie where some people doing?,video6946,169194,7 10615,6946,explain,what is a person doing?,video6946,169195,7 10616,6946,something,what is a person explaining?,video6946,169196,7 10617,6946,hold,what is a man doing?,video6946,169197,7 10618,6946,person,who holds onto an airplane to avoid being sucked out?,video6946,169198,7 10619,6946,scene,what depicts a group of people in the process of a plane crash?,video6946,169199,7 10620,6946,arm,what does a man holding another man s?,video6946,169200,7 10621,6946,batman,who do a cutscene from?,video6946,169201,7 10622,6946,person,who is explaining something?,video6946,169202,7 10623,6946,hold,what is a clip from movie shows people doing?,video6946,169203,7 10624,6946,travel,what are people fighting in?,video6946,169204,7 10625,6946,airplane,what are people in?,video6946,169205,7 10626,6947,something,what do a crowd chanting?,video6947,169206,9 10627,6947,crowd,what is rowdy?,video6947,169207,9 10628,6947,reporter,who reports?,video6947,169208,9 10629,6947,crowd,what gets excited?,video6947,169209,9 10630,6947,crowd,what shouts?,video6947,169210,9 10631,6947,happiness,what are peoples showing?,video6947,169211,9 10632,6947,event,what is a crowd enjoying?,video6947,169212,9 10633,6947,cheer,what is a crowd doing?,video6947,169213,9 10634,6947,chant,what is a crowd doing?,video6947,169214,9 10635,6947,man,who speaks to reporters and cheering fans after a victory?,video6947,169215,9 10636,6947,crowd,what is excited to be on camera at a drag race?,video6947,169216,9 10637,6947,man,who is being interviewed with fans behind him?,video6947,169217,9 10638,6947,woman,who jumps around as a tv reporter reports?,video6947,169218,9 10639,6947,man,who is talking about something?,video6947,169219,9 10640,6947,something,what is a man talking about?,video6947,169220,9 10641,6947,cheer,what is a group of people doing?,video6947,169221,9 10642,6947,crowd,what is enjoying an event?,video6947,169222,9 10643,6947,celebrate,what is a group of people appear to be doing?,video6947,169223,9 10644,6947,talk,what is a man doing?,video6947,169224,9 10645,6947,enjoy,what is a crowd doing?,video6947,169225,9 10646,6947,cheer,what are people doing?,video6947,169226,9 10647,6947,show,what are peoples doing?,video6947,169227,9 10648,6947,cheer,what is this is a video of fans doing?,video6947,169228,9 10649,6947,cheer,what is a man speaks to reporters and doing?,video6947,169229,9 10650,6948,driveway,what are several sports cars all lined up in?,video6948,169230,9 10651,6948,car,what is a person driving?,video6948,169231,9 10652,6948,person,who is driving car?,video6948,169232,9 10653,6948,race,what are four cars lined up at a start line prior to?,video6948,169233,9 10654,6948,four,how many cars are getting ready for the racing event?,video6948,169234,9 10655,6948,four,how many cars are revving up their engines adjacent to each other?,video6948,169235,9 10656,6948,four,how many cars face off against each other at the starting line?,video6948,169236,9 10657,6948,four,how many cars are lined up at a start line prior to a race?,video6948,169237,9 10658,6948,street,what did a group of cars in various colors line?,video6948,169238,9 10659,6948,car,what is near two other cars on the street?,video6948,169239,9 10660,6948,road,what are some cars driving down two is silver?,video6948,169240,9 10661,6948,road,what are some cars driving down two is red?,video6948,169241,9 10662,6948,model,what are placed to look like participating in an real race and sand flying make the red car more real?,video6948,169242,9 10663,6948,sound,what is a video of race cars about to start the race and doing?,video6948,169243,9 10664,6948,drive,what is a person doing?,video6948,169244,9 10665,6948,rev,what is shaky-cam footage of sports cars doing?,video6948,169245,9 10666,6948,race,what is there are some red and white cars ready for doing?,video6948,169246,9 10667,6948,rev,what are four sports cars doing?,video6948,169247,9 10668,6948,show,what is two red sports cars one white and one grey rev their engines while doing?,video6948,169248,9 10669,6948,drive,what are some cars doing?,video6948,169249,9 10670,6949,parking,what does wave for the camera then narrator pan over?,video6949,169250,11 10671,6949,area,what is a male tourist taping in which he is touring?,video6949,169251,11 10672,6949,camera,what passes two girls a parking lot with vehicles and a paved road lines with trees?,video6949,169252,11 10673,6949,car,what does wave for the camera then get into?,video6949,169253,11 10674,6949,two,how many women smile?,video6949,169254,11 10675,6949,man,who is taking a video of two women and as he is moving towards the bus?,video6949,169255,11 10676,6949,man,who is walking through a parking lot talking?,video6949,169256,11 10677,6949,tourist,who is taping the area in which he is touring?,video6949,169257,11 10678,6949,person,who is filming some leaves on the side walk?,video6949,169258,11 10679,6949,man,who is talking to some women as he leaves an outdoors area?,video6949,169259,11 10680,6949,man,who heads to his van in a parking lot after a nature outing the van is colorfully painted?,video6949,169260,11 10681,6949,parking,where does wave for the camera then narrator pan?,video6949,169261,11 10682,6949,man,who is walking through a parking lot looking at cars?,video6949,169262,11 10683,6949,record,what is a person doing?,video6949,169263,11 10684,6949,film,what is a person doing?,video6949,169264,11 10685,6949,wave,what is a green shirted woman doing?,video6949,169265,11 10686,6949,speak,what is two ladies doing?,video6949,169266,11 10687,6949,tap,what is a male tourist doing?,video6949,169267,11 10688,6949,walk,what is a family is shown in a tropical area doing?,video6949,169268,11 10689,6949,pose,what is serval people on their cell phones doing?,video6949,169269,11 10690,6949,talk,what is a man doing?,video6949,169270,11 10691,6949,explore,what is a man on a street doing?,video6949,169271,11 10692,6949,walk,what is a man doing?,video6949,169272,11 10693,6949,tell,what is a tour trip with their friends and doing?,video6949,169273,11 10694,6949,day,when s wonderful?,video6949,169274,11 10695,6949,man,who leaves an outdoors area?,video6949,169275,11 10696,6949,man,who says you could spend all day here because it s wonderful?,video6949,169276,11 10697,6949,area,what does a man leave?,video6949,169277,11 10698,6949,day,when does a man say you could spend here because it s wonderful?,video6949,169278,11 10699,6950,talk,what is man is in the house and doing?,video6950,169279,7 10700,6950,talk,what is a private doing?,video6950,169280,7 10701,6950,talk,what is a man and a woman in a pink dress stand in a room doing?,video6950,169281,7 10702,6950,talk,what is there is a police man doing?,video6950,169282,7 10703,6950,stand,what is doing?,video6950,169283,7 10704,6950,talk,what is a man in a green military outfit doing?,video6950,169284,7 10705,6950,change,what is a lady doing?,video6950,169285,7 10706,6950,wear,what is a man brushes his hair and talks to his wife who doing?,video6950,169286,7 10707,6950,talk,what is a man and woman doing?,video6950,169287,7 10708,6950,look,what is a man doing?,video6950,169288,7 10709,6950,man,who is a lady talking with?,video6950,169289,7 10710,6950,man,who is in the house?,video6950,169290,7 10711,6950,man,who walks off screen?,video6950,169291,7 10712,6950,lady,who is talking with man?,video6950,169292,7 10713,6950,man,who is looking in the mirror?,video6950,169293,7 10714,6950,hair,what is a man fixing with a comb a woman is dressing?,video6950,169294,7 10715,6950,theater,what do a private talking between a police officer and a girl about to attend an evening show movie on?,video6950,169295,7 10716,6950,movie,what do a private talking between a police officer and a girl about to attend an evening show on prabhat theater?,video6950,169296,7 10717,6950,comb,what is a man fixing his hair with a woman is dressing?,video6950,169297,7 10718,6950,bye,what does the police officer bid to his wife who dresses?,video6950,169298,7 10719,6950,man,who brushes his hair and talks to his wife who is wearing a pink towel and changing into a nightgown?,video6950,169299,7 10720,6950,woman,who is a man fixing his hair with a comb is dressing?,video6950,169300,7 10721,6950,man,who is fixing his hair with a comb a woman is dressing?,video6950,169301,7 10722,6950,man,who watches a woman get dressed after a shower?,video6950,169302,7 10723,6950,woman,who does a military man watch get dressed after a placeholder placeholder?,video6950,169303,7 10724,6950,polouse,who bids good bye to his wife who dresses?,video6950,169304,7 10725,6950,dres,what is a lady changing?,video6950,169305,7 10726,6950,screen,what does the man walk off?,video6950,169306,7 10727,6950,house,what is man in?,video6950,169307,7 10728,6950,mirror,what is a man looking in?,video6950,169308,7 10729,6951,talk,what is a play with indian guys doing?,video6951,169309,7 10730,6951,two,how many men are talking?,video6951,169310,7 10731,6951,car,what are two men talking next to?,video6951,169311,7 10732,6951,something,what are two men talking about?,video6951,169312,7 10733,6951,talk,what is a man doing?,video6951,169313,7 10734,6951,woman,who is laughing?,video6951,169314,7 10735,6951,act,what is two persons doing?,video6951,169315,7 10736,6951,involve,what is two older men perform a comedy sketch doing?,video6951,169316,7 10737,6951,fight,what is two men doing?,video6951,169317,7 10738,6951,talk,what are two men doing?,video6951,169318,7 10739,6951,talk,what is two guys doing?,video6951,169319,7 10740,6951,stand,what is men doing?,video6951,169320,7 10741,6951,include,what is hispanic television scene doing?,video6951,169321,7 10742,6951,laugh,what is a woman doing?,video6951,169322,7 10743,6951,argue,what is a foreign clip of two men doing?,video6951,169323,7 10744,6951,two,how many men speak next to a car in hindi?,video6951,169324,7 10745,6951,two,how many men are talking about something?,video6951,169325,7 10746,6951,two,how many men talk on a game show?,video6951,169326,7 10747,6951,man,who is talking to another man on a game show?,video6951,169327,7 10748,6951,two,how many men are talking to each other in front of a car?,video6951,169328,7 10749,6951,two,how many men are talking next to a car?,video6951,169329,7 10750,6951,two,how many older men perform a comedy sketch involving a car sale?,video6951,169330,7 10751,6951,two,how many men are talking to each other?,video6951,169331,7 10752,6952,game,what are two guys upset about where character is chopping milk bottles?,video6952,169332,2 10753,6952,woman,who uses a weapon to cut down a series of milk bottles on a wooden table the table disappears?,video6952,169333,2 10754,6952,two,how many guys are upset about video game where character is chopping milk bottles?,video6952,169334,2 10755,6952,woman,who is outdoors?,video6952,169335,2 10756,6952,milk,what does a woman in black use a ninja sword to cut in half in a video game?,video6952,169336,2 10757,6952,ninja,what does a woman in black use to cut some milk bottles in half in a video game?,video6952,169337,2 10758,6952,man,who is playing a man is talking about an anime looking game?,video6952,169338,2 10759,6952,sword,what does an anime woman in a black outfit use to cut glass milk bottles in black?,video6952,169339,2 10760,6952,glas,what does an anime woman in a black outfit use a sword to cut in black?,video6952,169340,2 10761,6952,child,who s ninja flash game a sliding bar to land on?,video6952,169341,2 10762,6952,half,what does a woman in black use a ninja sword to cut some milk bottles in in a video game?,video6952,169342,2 10763,6952,table,what does a woman use a weapon to cut down a series of milk bottles on a wooden table disappears?,video6952,169343,2 10764,6952,man,who breaks piece of glass bottles with one punch of hand?,video6952,169344,2 10765,6952,woman,who then reappears with all of the milk bottles replaced and intact?,video6952,169345,2 10766,6952,mountain,what is black haired woman doing something in?,video6952,169346,2 10767,6952,something,what is black haired woman doing in the mountain?,video6952,169347,2 10768,6952,game,what is the black haired woman hitting the objects in?,video6952,169348,2 10769,6952,woman,who is doing something in the mountain?,video6952,169349,2 10770,6952,table,what does a woman use a weapon to cut down a series of milk bottles on a wooden table?,video6952,169350,2 10771,6952,someone,what is playing a first person video game?,video6952,169351,2 10772,6952,video,who freak out about a sexy video game character kicking ass?,video6952,169352,2 10773,6952,use,what is animated cartoon characters doing?,video6952,169353,2 10774,6952,break,what is black haired woman is outdoors and doing?,video6952,169354,2 10775,6952,talk,what is two men doing?,video6952,169355,2 10776,6952,play,what is someone doing?,video6952,169356,2 10777,6952,talk,what is a man doing?,video6952,169357,2 10778,6952,watch,what is guys use foul language while doing?,video6952,169358,2 10779,6952,chop,what is a animation of a cartoon doing?,video6952,169359,2 10780,6952,kick,what is video gamers freak out about a sexy video game character doing?,video6952,169360,2 10781,6952,slide,what is a child s ninja flash game a doing?,video6952,169361,2 10782,6952,chop,what is two guys are upset about video game where character doing?,video6952,169362,2 10783,6952,hit,what is the black haired woman doing?,video6952,169363,2 10784,6953,screen,what does female singing with the lyric on?,video6953,169364,0 10785,6953,song,what are pictures and lyrics shown to?,video6953,169365,0 10786,6953,bag,what is a woman holding up?,video6953,169366,0 10787,6953,song,what plays?,video6953,169367,0 10788,6953,page,what did stills shots of a female with written lyrics display on?,video6953,169368,0 10789,6953,song,what lyrics to a song that is being played?,video6953,169369,0 10790,6953,song,what is a woman singing?,video6953,169370,0 10791,6953,woman,who is holding up a bag?,video6953,169371,0 10792,6953,woman,who is singing a song?,video6953,169372,0 10793,6953,woman,who is posing for photos?,video6953,169373,0 10794,6953,look,what is a girl doing?,video6953,169374,0 10795,6953,song,what is female singing with the singing by a girl?,video6953,169375,0 10796,6953,song,what is being played while the lyrics are displayed?,video6953,169376,0 10797,6953,audio,what does a video displaying lyric that go along with?,video6953,169377,0 10798,6953,displaying,what lyrics that go along with the audio?,video6953,169378,0 10799,6953,jacket,what is a woman with dark hair wearing?,video6953,169379,0 10800,6953,wear,what is a woman with dark hair doing?,video6953,169380,0 10801,6953,display,what is a video doing?,video6953,169381,0 10802,6953,hold,what is a woman doing?,video6953,169382,0 10803,6953,pose,what is a woman doing?,video6953,169383,0 10804,6954,man,who does an audience go crazy for?,video6954,169384,0 10805,6954,crowd,what song alone with the singers?,video6954,169385,0 10806,6954,band,what performs live?,video6954,169386,0 10807,6954,audience,what goes crazy for a man?,video6954,169387,0 10808,6954,song,what are audience singing?,video6954,169388,0 10809,6954,stage,when do some people preform?,video6954,169389,0 10810,6954,song,what is the audience singing along to?,video6954,169390,0 10811,6954,stage,when is a singer smiling?,video6954,169391,0 10812,6954,singer,who is smiling in a stage?,video6954,169392,0 10813,6954,audience,what is singing along to a song?,video6954,169393,0 10814,6954,concert,what are men giving for the crowd?,video6954,169394,0 10815,6954,crowd,what are men giving a concert for?,video6954,169395,0 10816,6954,band,what live music for a large audience?,video6954,169396,0 10817,6954,man,who sings while an audience goes crazy for him?,video6954,169397,0 10818,6954,video,what shows a concert with adolescents in attendance?,video6954,169398,0 10819,6954,audience,what are singing a song?,video6954,169399,0 10820,6954,mccartney,who is singing one of his hit songs?,video6954,169400,0 10821,6954,cheer,what is doing?,video6954,169401,0 10822,6954,perform,what is a band doing?,video6954,169402,0 10823,6955,nature,what do jeep driving on a long road near water for the show freaks of?,video6955,169403,3 10824,6955,highway,what is a person driving a red truck down?,video6955,169404,3 10825,6955,hair,what are freaks of nature tv getting ready to do an interview with a big wave surfer with?,video6955,169405,3 10826,6955,narration,what did a freaks of nature title sequence follow by?,video6955,169406,3 10827,6955,utility,what jeep races down a country street?,video6955,169407,3 10828,6955,nature,who do jeep driving on a long road near water for the show?,video6955,169408,3 10829,6955,kauaius,what was tyler in driving on the show freaks of nature?,video6955,169409,3 10830,6955,host,who do freaks of nature tv show opening with driving?,video6955,169410,3 10831,6955,tyler,who was in kauaii driving on the show freaks of nature?,video6955,169411,3 10832,6955,vehicle,what is a guy driving down a road past a long metal guard rail?,video6955,169412,3 10833,6955,water,what does a man drive a red jeep on a road past?,video6955,169413,3 10834,6955,man,who drives down a road narrating his plans for his show s episode?,video6955,169414,3 10835,6955,amn,who is looking?,video6955,169415,3 10836,6955,person,who is driving a red truck down the highway?,video6955,169416,3 10837,6955,man,who drives down the road in a red jeep?,video6955,169417,3 10838,6955,surfer,who looks cool?,video6955,169418,3 10839,6955,road,what is a car on?,video6955,169419,3 10840,6955,color,what is a car?,video6955,169420,3 10841,6955,car,what is on the road?,video6955,169421,3 10842,6955,car,what is red color?,video6955,169422,3 10843,6955,road,what is a jeep running in?,video6955,169423,3 10844,6955,episode,what does a man drive down a road narrating his plans for his show s?,video6955,169424,3 10845,6955,jeep,what is running in the road?,video6955,169425,3 10846,6955,car,what does a man with blond hair show up is riding down a road surrounded by ocean and trees then?,video6955,169426,3 10847,6955,jeep,what is driving down a long road?,video6955,169427,3 10848,6955,truck,what is a person driving down the highway?,video6955,169428,3 10849,6955,road,what is a guy driving a red vehicle down past a long metal guard rail?,video6955,169429,3 10850,6955,drive,what is a man doing?,video6955,169430,3 10851,6955,man,who drives a red jeep on a road past the water?,video6955,169431,3 10852,6955,drive,what is a guy doing?,video6955,169432,3 10853,6955,stand,what is there are some people doing?,video6955,169433,3 10854,6955,drive,what is a person doing?,video6955,169434,3 10855,6955,narrate,what is a man drives down a road doing?,video6955,169435,3 10856,6955,look,what is a amn doing?,video6955,169436,3 10857,6955,guy,who is driving a red vehicle down a road past a long metal guard rail?,video6955,169437,3 10858,6955,stand,what are more persons doing?,video6955,169438,3 10859,6956,woman,who perform sky driving in the ocean?,video6956,169439,3 10860,6956,surfer,who is riding the waves at a beach while a man is singing?,video6956,169440,3 10861,6956,wave,what does an attractive young woman in a light colored bikini surf on?,video6956,169441,3 10862,6956,wave,what did a woman in a bikini on a surfboard riding while a song plays?,video6956,169442,3 10863,6956,woman,who surfs small waves at the beach?,video6956,169443,3 10864,6956,lady,who is skating upon waves in the sea?,video6956,169444,3 10865,6956,surfer,who surfs into shore on a big wave?,video6956,169445,3 10866,6956,man,who is in the water surfing on a surf board?,video6956,169446,3 10867,6956,sky,what do the woman perform driving in the ocean?,video6956,169447,3 10868,6956,lady,who is skating on frothy water waves?,video6956,169448,3 10869,6956,song,what plays?,video6956,169449,3 10870,6956,man,who is singing?,video6956,169450,3 10871,6956,shore,what does a surfer surf into on a big wave?,video6956,169451,3 10872,6956,background,what does a wave as a woman sing in?,video6956,169452,3 10873,6956,couple,what did younger girls accepting an award and then one of the sea waves surf?,video6956,169453,3 10874,6956,group,what are looking in the woman who is surfing on a water?,video6956,169454,3 10875,6956,sea,what is a lady skating upon waves in?,video6956,169455,3 10876,6956,music,what plays while a surfer surfs into shore on a big wave?,video6956,169456,3 10877,6956,girl,who rides a wave in the ocean while music plays?,video6956,169457,3 10878,6956,surf,what is a person on a surf board doing?,video6956,169458,3 10879,6956,surf,what is multiple shots of a girl doing?,video6956,169459,3 10880,6956,look,what are group of people doing?,video6956,169460,3 10881,6956,skate,what is a lady doing?,video6956,169461,3 10882,6956,surf,what is a man is in the water doing?,video6956,169462,3 10883,6956,surf,what is there is a woman doing?,video6956,169463,3 10884,6956,accept,what is younger girls doing?,video6956,169464,3 10885,6957,band,what does a woman put on a boys foot?,video6957,169465,14 10886,6957,bathtub,what is a little kid playing in with his toys?,video6957,169466,14 10887,6957,mother,who s bandaged foot?,video6957,169467,14 10888,6957,kid,who is in a bath tub?,video6957,169468,14 10889,6957,bathtub,what is a child in?,video6957,169469,14 10890,6957,child,who is in the bathtub?,video6957,169470,14 10891,6957,foot,what does mother touches child s?,video6957,169471,14 10892,6957,kid,who is playing in the bathtub with his toys?,video6957,169472,14 10893,6957,bathroom,what are toddlers playing in?,video6957,169473,14 10894,6957,woman,who speaks to a toddler in a bathroom?,video6957,169474,14 10895,6957,woman,who puts a band aid on a boys foot?,video6957,169475,14 10896,6957,show,what is a clip doing?,video6957,169476,14 10897,6957,play,what is a little kid doing?,video6957,169477,14 10898,6957,cook,what is a man doing?,video6957,169478,14 10899,6957,play,what is baby doing?,video6957,169479,14 10900,6957,play,what is boys doing?,video6957,169480,14 10901,6957,play,what are toddlers doing?,video6957,169481,14 10902,6958,talk,what is people doing?,video6958,169482,5 10903,6958,person,who is giving a presentation?,video6958,169483,5 10904,6958,presentation,what is a person giving?,video6958,169484,5 10905,6958,lecture,what is a man giving?,video6958,169485,5 10906,6958,man,who is speaking?,video6958,169486,5 10907,6958,man,who is talking?,video6958,169487,5 10908,6958,man,who is giving a lecture?,video6958,169488,5 10909,6958,lecture,what is a man delivering on economics?,video6958,169489,5 10910,6958,man,who tries to explain about how the economy was affected by the housing bubble?,video6958,169490,5 10911,6958,explain,what is a gentle man doing?,video6958,169491,5 10912,6958,explain,what is a man doing?,video6958,169492,5 10913,6958,deliver,what is a man doing?,video6958,169493,5 10914,6958,speak,what is a man doing?,video6958,169494,5 10915,6958,talk,what is a man doing?,video6958,169495,5 10916,6958,speak,what is guy doing?,video6958,169496,5 10917,6958,man,who is delivering a lecture on economics?,video6958,169497,5 10918,6959,woman,who are talking about products?,video6959,169498,18 10919,6959,product,what do three women discuss?,video6959,169499,18 10920,6959,beaty,what are some women displaying?,video6959,169500,18 10921,6959,spray,what does the woman hold?,video6959,169501,18 10922,6959,product,what do females talking to each other about a new hair care?,video6959,169502,18 10923,6959,three,how many women discuss a hair product?,video6959,169503,18 10924,6959,three,how many women are discussing hair products?,video6959,169504,18 10925,6959,product,what do 3 woman talking about a hair care?,video6959,169505,18 10926,6959,three,how many women are discussing a beauty product?,video6959,169506,18 10927,6959,woman,who talks to friends about bed head products?,video6959,169507,18 10928,6959,product,what do woman talking about bed head?,video6959,169508,18 10929,6959,product,what are three women discussing?,video6959,169509,18 10930,6959,woman,who holds the hair spray?,video6959,169510,18 10931,6959,talk,what is 3 woman doing?,video6959,169511,18 10932,6959,talk,what is woman doing?,video6959,169512,18 10933,6959,talk,what is three women doing?,video6959,169513,18 10934,6959,discus,what are three women doing?,video6959,169514,18 10935,6959,talk,what are three woman doing?,video6959,169515,18 10936,6959,talk,what are a group of girls doing?,video6959,169516,18 10937,6959,review,what is lady doing?,video6959,169517,18 10938,6959,talk,what is girls doing?,video6959,169518,18 10939,6959,talk,what is females doing?,video6959,169519,18 10940,6959,display,what are some women doing?,video6959,169520,18 10941,6960,track,what meet men are racing?,video6960,169521,3 10942,6960,track,what do some athletes run down?,video6960,169522,3 10943,6960,game,what are the players running for?,video6960,169523,3 10944,6960,track,what do the runners run quickly around?,video6960,169524,3 10945,6960,man,who races really fast?,video6960,169525,3 10946,6960,america,what is the jamaican pasting?,video6960,169526,3 10947,6960,track,what are runners in an event running around?,video6960,169527,3 10948,6960,track,what do a bunch of men run down?,video6960,169528,3 10949,6960,jamaican,who is pasting america in track?,video6960,169529,3 10950,6960,foot,what are a group of athletes running?,video6960,169530,3 10951,6960,race,what are some guy s running in?,video6960,169531,3 10952,6960,track,what are a group of men racing around?,video6960,169532,3 10953,6960,guy,what are running in a race?,video6960,169533,3 10954,6960,paste,what is the jamaican doing?,video6960,169534,3 10955,6960,race,what are a track meet men doing?,video6960,169535,3 10956,6960,sprint,what is a group of runners doing?,video6960,169536,3 10957,6960,race,what are a group of men doing?,video6960,169537,3 10958,6960,compete,what are many men doing?,video6960,169538,3 10959,6961,board,what is there?,video6961,169539,12 10960,6961,thing,what is a man explain?,video6961,169540,12 10961,6961,man,who is explain some thing?,video6961,169541,12 10962,6961,lecture,what is a person with a blue shirt giving?,video6961,169542,12 10963,6961,room,what is a man with a blue shirt in?,video6961,169543,12 10964,6961,screen,what do a person in blue color dress wearing cloth standing speaking on topic near white board discusing displaying on?,video6961,169544,12 10965,6961,cloth,what do a person in blue color dress wearing speaking on topic near white board discusing displaying on screen?,video6961,169545,12 10966,6961,explain,what is the it programmer doing?,video6961,169546,12 10967,6961,talk,what is man in blue shirt doing?,video6961,169547,12 10968,6961,describe,what is a man and then a woman doing?,video6961,169548,12 10969,6961,explain,what is a woman doing?,video6961,169549,12 10970,6961,stand,what is a man in a blue shirt doing?,video6961,169550,12 10971,6961,talk,what is an it program coordinator in a blue shirt doing?,video6961,169551,12 10972,6961,talk,what is a blue tshirt woman doing?,video6961,169552,12 10973,6961,wear,what is the it program coordinator doing?,video6961,169553,12 10974,6961,wear,what is a person in blue color dress doing?,video6961,169554,12 10975,6962,two,how many people are enjoying home videos?,video6962,169555,3 10976,6962,two,how many people are drinking coffee?,video6962,169556,3 10977,6962,field,where is a man walking?,video6962,169557,3 10978,6962,video,what is a couple watching?,video6962,169558,3 10979,6962,man,who walks through a field?,video6962,169559,3 10980,6962,couple,what is laughing about something funny?,video6962,169560,3 10981,6962,man,who is walking across a field?,video6962,169561,3 10982,6962,man,who is walking in a field?,video6962,169562,3 10983,6962,something,what is a couple laughing about?,video6962,169563,3 10984,6962,field,what does a man walk through?,video6962,169564,3 10985,6962,video,what does a man narrate?,video6962,169565,3 10986,6962,field,what is a man walking across?,video6962,169566,3 10987,6962,home,what are two people enjoying?,video6962,169567,3 10988,6962,coffee,what are two people drinking?,video6962,169568,3 10989,6962,field,what is a man walking in?,video6962,169569,3 10990,6962,couple,what is laughing together?,video6962,169570,3 10991,6962,man,who narrates a video game?,video6962,169571,3 10992,6962,couple,what is watching a video?,video6962,169572,3 10993,6962,watch,what is a couple doing?,video6962,169573,3 10994,6962,look,what is a man and a woman doing?,video6962,169574,3 10995,6962,talk,what are a man and woman doing?,video6962,169575,3 10996,6962,laugh,what is a man and woman doing?,video6962,169576,3 10997,6962,walk,what is a man doing?,video6962,169577,3 10998,6962,laugh,what is both of them doing?,video6962,169578,3 10999,6962,watch,what is there are two people doing?,video6962,169579,3 11000,6962,drink,what are two people doing?,video6962,169580,3 11001,6962,walk,what is young people talk about a man doing?,video6962,169581,3 11002,6962,laugh,what is a couple doing?,video6962,169582,3 11003,6963,team,what is playing a football game?,video6963,169583,3 11004,6963,football,what do people play on the field?,video6963,169584,3 11005,6963,football,who compete in a game of football?,video6963,169585,3 11006,6963,man,who is speaking while watching a football game?,video6963,169586,3 11007,6963,field,where do people play football?,video6963,169587,3 11008,6963,football,who is running to the end zone?,video6963,169588,3 11009,6963,touch,what does a football player make down?,video6963,169589,3 11010,6963,field,what do people play football on?,video6963,169590,3 11011,6963,football,what are people playing?,video6963,169591,3 11012,6963,football,who makes a touch down?,video6963,169592,3 11013,6963,football,what is a man playing?,video6963,169593,3 11014,6963,play,what is a man doing?,video6963,169594,3 11015,6963,speak,what is a man doing?,video6963,169595,3 11016,6963,play,what is a team doing?,video6963,169596,3 11017,6963,play,what is athletes doing?,video6963,169597,3 11018,6963,football,what is a team playing?,video6963,169598,3 11019,6963,play,what is two teams doing?,video6963,169599,3 11020,6963,show,what is video footage doing?,video6963,169600,3 11021,6963,man,who is playing football?,video6963,169601,3 11022,6963,football,what is going on?,video6963,169602,3 11023,6963,play,what are people doing?,video6963,169603,3 11024,6964,woman,who removed the lid from the pot?,video6964,169604,17 11025,6964,person,who adds ingredient to a pot?,video6964,169605,17 11026,6964,kitchen,what is a person boiling food in?,video6964,169606,17 11027,6964,food,what is someone boiling?,video6964,169607,17 11028,6964,pot,what is green stuff added to?,video6964,169608,17 11029,6964,stuff,what is added to the pot?,video6964,169609,17 11030,6964,someone,who is preparing food?,video6964,169610,17 11031,6964,pot,what did a woman remove the lid from?,video6964,169611,17 11032,6964,person,who is mixing some food?,video6964,169612,17 11033,6964,someone,who is boiling food?,video6964,169613,17 11034,6964,lid,what did a woman remove from the pot?,video6964,169614,17 11035,6964,food,what is a person boiling in a kitchen?,video6964,169615,17 11036,6964,food,what is someone preparing?,video6964,169616,17 11037,6964,person,who cooks greens in a pot?,video6964,169617,17 11038,6964,mix,what is there is someone doing?,video6964,169618,17 11039,6964,someon,who is showing how to prepare a recipe?,video6964,169619,17 11040,6964,put,what is someone doing?,video6964,169620,17 11041,6964,boil,what is someone doing?,video6964,169621,17 11042,6964,show,what is someon doing?,video6964,169622,17 11043,6964,cook,what is person doing?,video6964,169623,17 11044,6964,cook,what is footage of a woman doing?,video6964,169624,17 11045,6964,boil,what is doing?,video6964,169625,17 11046,6964,contain,what is a woman opens the lid of a cooking pot doing?,video6964,169626,17 11047,6964,boil,what is a woman adds green vegetables to a tiny pot of doing?,video6964,169627,17 11048,6964,use,what is a person doing?,video6964,169628,17 11049,6964,prepare,what is a person doing?,video6964,169629,17 11050,6964,mix,what is a person doing?,video6964,169630,17 11051,6964,boil,what is a person doing?,video6964,169631,17 11052,6964,cook,what is woman doing?,video6964,169632,17 11053,6964,woman,who adds green vegetables to a tiny pot of boiling water?,video6964,169633,17 11054,6964,water,what does someone putting some green leave in a pan filled with?,video6964,169634,17 11055,6964,person,who is boiling food in a kitchen?,video6964,169635,17 11056,6964,food,what is a person mixing?,video6964,169636,17 11057,6965,casket,what do people holding and pass around?,video6965,169637,4 11058,6965,casket,what do some people carry outside?,video6965,169638,4 11059,6965,pas,what are several people doing?,video6965,169639,4 11060,6965,news,what does man report from around the world?,video6965,169640,4 11061,6965,man,who reports news from around the world?,video6965,169641,4 11062,6965,crowd,what is demonstrating because someone got killed?,video6965,169642,4 11063,6965,coffin,what are several people passing over their heads?,video6965,169643,4 11064,6965,news,what broadcast of a funeral in iran?,video6965,169644,4 11065,6965,square,what are people gathering in to attend a funeral?,video6965,169645,4 11066,6965,coffin,what do the crowd of people pass around?,video6965,169646,4 11067,6965,coffin,what does a huge crowd in iran carry?,video6965,169647,4 11068,6965,demonstrate,what is a crowd doing?,video6965,169648,4 11069,6965,mourn,what is a crowd of people doing?,video6965,169649,4 11070,6965,occur,what is a funeral of an iran commander doing?,video6965,169650,4 11071,6965,protest,what are lots of people doing?,video6965,169651,4 11072,6965,gather,what are people doing?,video6965,169652,4 11073,6965,hold,what is people doing?,video6965,169653,4 11074,6965,someone,what got killed?,video6965,169654,4 11075,6966,pastry,what should have five creases?,video6966,169655,17 11076,6966,pastry,what is a woman making?,video6966,169656,17 11077,6966,food,what is a person preparing?,video6966,169657,17 11078,6966,doe,what is a woman rolling?,video6966,169658,17 11079,6966,technique,what is a baker demonstrating?,video6966,169659,17 11080,6966,dough,what is a woman wrapping around some food item?,video6966,169660,17 11081,6966,person,who is preparing some food?,video6966,169661,17 11082,6966,baker,who is demonstrating a cooking technique?,video6966,169662,17 11083,6966,woman,who is rolling dough?,video6966,169663,17 11084,6966,woman,who is rolling doe?,video6966,169664,17 11085,6966,five,how many creases should the pastry have?,video6966,169665,17 11086,6966,stick,what is a woman rolling dough around?,video6966,169666,17 11087,6966,woman,who is making a pastry?,video6966,169667,17 11088,6966,woman,who rolls dough?,video6966,169668,17 11089,6966,person,who pastries?,video6966,169669,17 11090,6966,demonstrate,what is a baker doing?,video6966,169670,17 11091,6966,explain,what is a girl doing?,video6966,169671,17 11092,6966,cook,what is a lady with a scarf doing?,video6966,169672,17 11093,6966,prepare,what is a person doing?,video6966,169673,17 11094,6966,woman,who is wrapping dough around some food item?,video6966,169674,17 11095,6966,woman,who rolling up pastry while giving instructions?,video6966,169675,17 11096,6966,woman,who is rolling dough around a stick?,video6966,169676,17 11097,6966,dough,what is a lady with a scarf cooking with?,video6966,169677,17 11098,6966,show,what is a woman doing?,video6966,169678,17 11099,6966,wrap,what is a woman doing?,video6966,169679,17 11100,6966,roll,what is a woman doing?,video6966,169680,17 11101,6966,dough,what is a woman rolling around a stick?,video6966,169681,17 11102,6967,race,what do a track taking place?,video6967,169682,3 11103,6967,track,what do runners compete on?,video6967,169683,3 11104,6967,race,what is a recording of guys doing?,video6967,169684,3 11105,6967,race,what are several young men doing?,video6967,169685,3 11106,6967,track,what is shown?,video6967,169686,3 11107,6967,voice,what narrates?,video6967,169687,3 11108,6967,place,what do a track race taking?,video6967,169688,3 11109,6967,track,who stars running a race?,video6967,169689,3 11110,6967,race,what are some guy s running in?,video6967,169690,3 11111,6967,guy,what are running in a race?,video6967,169691,3 11112,6967,man,who commentates as runners compete?,video6967,169692,3 11113,6967,track,what are several young men racing in meet?,video6967,169693,3 11114,6967,man,who is running?,video6967,169694,3 11115,6967,track,what are a group of men running down?,video6967,169695,3 11116,6967,race,what do men run around a track while a male voice narrates?,video6967,169696,3 11117,6967,track,what do men run a race around while a male voice narrates?,video6967,169697,3 11118,6967,track,what are athletes running around?,video6967,169698,3 11119,6967,race,what does male track star running?,video6967,169699,3 11120,6967,race,what are people running?,video6967,169700,3 11121,6967,field,what do a track?,video6967,169701,3 11122,6968,watch,what are two girls doing?,video6968,169702,3 11123,6968,laugh,what are two girls doing?,video6968,169703,3 11124,6968,laugh,what are girls doing?,video6968,169704,3 11125,6968,tos,what is a woman doing?,video6968,169705,3 11126,6968,throw,what is a woman doing?,video6968,169706,3 11127,6968,laugh,what are a group of girls doing?,video6968,169707,3 11128,6968,girl,who are two girls watching a video of throwing clothes forward and reverse?,video6968,169708,3 11129,6968,woman,who is throwing dresses everywhere?,video6968,169709,3 11130,6968,floor,what is a woman tossing clothes on?,video6968,169710,3 11131,6968,giggle,what is two girls doing?,video6968,169711,3 11132,6968,throw,what is a girl doing?,video6968,169712,3 11133,6968,goof,what is two girls doing?,video6968,169713,3 11134,6968,girl,who is throwing away folded clothes?,video6968,169714,3 11135,6968,laugh,what is two ladies doing?,video6968,169715,3 11136,6968,laundry,what does another throw around the room two girls are then?,video6968,169716,3 11137,6968,two,how many women are laughing?,video6968,169717,3 11138,6968,motion,what do two ladies laughing by seeing some thing another lady keep it back by?,video6968,169718,3 11139,6968,woman,who is tossing clothes on the floor?,video6968,169719,3 11140,6968,two,how many girls are watching a video of a girl throwing clothes forward and reverse?,video6968,169720,3 11141,6968,woman,who throws clothes around the room from a table?,video6968,169721,3 11142,6968,laugh,what are two women doing?,video6968,169722,3 11143,6968,pose,what is two women doing?,video6968,169723,3 11144,6968,laundry,what does another throw around the room two girls are laughing together?,video6968,169724,3 11145,6968,girl,who cloths around?,video6968,169725,3 11146,6969,work,what is some people doing?,video6969,169726,16 11147,6969,mix,what is a girl in red dress and a bowl spoon doing?,video6969,169727,16 11148,6969,cook,what is there is a woman doing?,video6969,169728,16 11149,6969,put,what are people doing?,video6969,169729,16 11150,6969,serve,what is servers doing?,video6969,169730,16 11151,6969,serve,what is a lady doing?,video6969,169731,16 11152,6969,wait,what is a street vendor prepares a noodle dish for customers doing?,video6969,169732,16 11153,6969,serve,what is 2 women in a restaurant doing?,video6969,169733,16 11154,6969,serve,what are the shop keeper doing?,video6969,169734,16 11155,6969,grab,what is a girl with brown hair in a ponytail and a redshirt doing?,video6969,169735,16 11156,6969,street,who prepares a noodle dish for customers waiting in line?,video6969,169736,16 11157,6969,woman,who spoons noodles into a bowl?,video6969,169737,16 11158,6969,woman,who serves noodles and sauce from a glass case?,video6969,169738,16 11159,6969,food,what are some people working in a restaurant scoooping?,video6969,169739,16 11160,6969,woman,who creates a dish for customers in a shopping district?,video6969,169740,16 11161,6969,food,what does a woman in a floral top spoon onto a white plate?,video6969,169741,16 11162,6969,woman,who prepares a plate of food with many ingredients?,video6969,169742,16 11163,6969,woman,who prepares plates full of food along a bustling city street?,video6969,169743,16 11164,6969,food,what does a woman prepare plates of along a bustling city street?,video6969,169744,16 11165,6969,food,what does a woman in a floral top spoon servings of onto a white plate?,video6969,169745,16 11166,6969,dish,what does a girl in red dress and a bowl spoon mixing inside kitchen to prepare to serve to eat displaying on screen?,video6969,169746,16 11167,6969,sauce,what does a woman add?,video6969,169747,16 11168,6969,woman,who adds sauce?,video6969,169748,16 11169,6969,kitchen,what does a girl in red dress and a bowl spoon mixing dish inside to prepare to serve to eat displaying on screen?,video6969,169749,16 11170,6969,bowl,what does a woman spoon noodles into?,video6969,169750,16 11171,6969,plate,what are noodles kept on?,video6969,169751,16 11172,6969,kitchen,what are a line of people getting some food in?,video6969,169752,16 11173,6969,food,what does a woman prepare a plate of with many ingredients?,video6969,169753,16 11174,6969,screen,what does a girl in red dress and a bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on?,video6969,169754,16 11175,6969,food,what are a line of people getting in a kitchen?,video6969,169755,16 11176,6970,explain,what is a person with grey colour coat doing?,video6970,169756,7 11177,6970,win,what is oscar doing?,video6970,169757,7 11178,6970,wear,what is a person in white color dress doing?,video6970,169758,7 11179,6970,discus,what is actor leonardo dicaprio doing?,video6970,169759,7 11180,6970,wear,what is an actor doing?,video6970,169760,7 11181,6970,talk,what is an actor leonardo dicaprio doing?,video6970,169761,7 11182,6970,speak,what is leonardo dicaprio doing?,video6970,169762,7 11183,6970,tell,what is the men doing?,video6970,169763,7 11184,6970,wear,what is actor leonardo dicaprio talks while doing?,video6970,169764,7 11185,6970,talk,what is there is famous hollywood star doing?,video6970,169765,7 11186,6970,sit,what is a guy in a gray jacket doing?,video6970,169766,7 11187,6970,accomplish,what is leonardo decaprio shares his opinions about a specific person who can doing?,video6970,169767,7 11188,6970,talk,what is a guy in a gray suit doing?,video6970,169768,7 11189,6970,something,what is a person with gray color coat explaining about?,video6970,169769,7 11190,6970,dark,what is man in black suit giving an interview in?,video6970,169770,7 11191,6970,leonardo,what talks about one of the most respected film makers of all time?,video6970,169771,7 11192,6970,interview,what did actor leonardo dicaprio star in leonardo dicaprio is speaking during about one of the movies?,video6970,169772,7 11193,6970,interview,what is man in black suit giving in the dark?,video6970,169773,7 11194,6970,leonardo,who did actor leonardo dicaprio star in is speaking during an interview about one of the movies?,video6970,169774,7 11195,6970,something,what is a person with gray color coat talking about?,video6970,169775,7 11196,6970,someone,what is a guy in a gray suit talking to?,video6970,169776,7 11197,6970,dicaprio,who is desribing the particular style of a film maker in the movie industry?,video6970,169777,7 11198,6970,leonardo,what shares his opinions about a specific person who can accomplishing films in the filming industries?,video6970,169778,7 11199,6970,actor,who leonardo dicaprio talks in an interview about movie making?,video6970,169779,7 11200,6970,leonardo,who starred in leonardo dicaprio is speaking during an interview about one of the movies?,video6970,169780,7 11201,6970,interview,what did actor leonardo dicaprio talks in about movie making?,video6970,169781,7 11202,6970,making,what did actor leonardo dicaprio talks in an interview about?,video6970,169782,7 11203,6970,dicaprio,what did actor leonardo in an interview about movie making?,video6970,169783,7 11204,6971,pokemon,what does person play?,video6971,169784,2 11205,6971,person,who is playing a video game in quick fashion?,video6971,169785,2 11206,6971,pokemon,what is a man playing?,video6971,169786,2 11207,6971,game,what is a person playing?,video6971,169787,2 11208,6971,video,what is being played?,video6971,169788,2 11209,6971,man,who narrating while playing a game of pokemon?,video6971,169789,2 11210,6971,two,how many people are playing sped up versions of pokemon through a live web stream?,video6971,169790,2 11211,6971,person,who is playing a pokemon game in dual screens?,video6971,169791,2 11212,6971,man,who is commentating while playing a pokemon game?,video6971,169792,2 11213,6971,video,what is someone playing?,video6971,169793,2 11214,6971,pokemon,what are two people playing sped up versions of through a live web stream?,video6971,169794,2 11215,6971,play,what are two people doing?,video6971,169795,2 11216,6971,play,what is someone doing?,video6971,169796,2 11217,6971,play,what is a person doing?,video6971,169797,2 11218,6971,play,what is a man doing?,video6971,169798,2 11219,6971,commentate,what is a man doing?,video6971,169799,2 11220,6971,comment,what is a couple of guys doing?,video6971,169800,2 11221,6971,someone,what is playing a video game?,video6971,169801,2 11222,6971,gameplay,what do video game review with?,video6971,169802,2 11223,6971,pokemon,who do person fight?,video6971,169803,2 11224,6971,person,who is playing a video game?,video6971,169804,2 11225,6971,person,who plays pokemon?,video6971,169805,2 11226,6971,narrate,what is a man doing?,video6971,169806,2 11227,6971,person,who is playing a pokemon game?,video6971,169807,2 11228,6971,man,who is playing pokemon?,video6971,169808,2 11229,6971,game,what is a person playing in dual screens?,video6971,169809,2 11230,6971,video,what is a person playing in quick fashion?,video6971,169810,2 11231,6971,fashion,what is a person playing a video game in?,video6971,169811,2 11232,6971,someone,what is playing an old school video game?,video6971,169812,2 11233,6971,person,who fight a wild pokemon?,video6971,169813,2 11234,6971,video,what review with gameplay?,video6971,169814,2 11235,6971,pokemon,what are two people playing sped up through a live web stream?,video6971,169815,2 11236,6972,friend,who does a young man in a hoodie rap on a covered pier with?,video6972,169816,1 11237,6972,friend,what is person singing a song with?,video6972,169817,1 11238,6972,two,how many men walk in a skywalk?,video6972,169818,1 11239,6972,city,where do two men ride bikes?,video6972,169819,1 11240,6972,song,what is person singing with friend outdoors?,video6972,169820,1 11241,6972,two,how many men are dancing?,video6972,169821,1 11242,6972,two,how many men are singing?,video6972,169822,1 11243,6972,background,what does music play in?,video6972,169823,1 11244,6972,man,who is singing?,video6972,169824,1 11245,6972,man,who is dancing?,video6972,169825,1 11246,6972,skywalk,what do two men walk in?,video6972,169826,1 11247,6972,song,what are a two men singing?,video6972,169827,1 11248,6972,street,what are two men on?,video6972,169828,1 11249,6972,girl,who is a man talking with?,video6972,169829,1 11250,6972,song,what are two men performing?,video6972,169830,1 11251,6972,city,what do two men ride bikes in?,video6972,169831,1 11252,6972,man,who is talking with a girl?,video6972,169832,1 11253,6972,music,what plays in the background?,video6972,169833,1 11254,6972,two,how many men ride bikes in the city?,video6972,169834,1 11255,6972,two,how many singers do two females approach happily two singers are performing a pop song in a music video?,video6972,169835,1 11256,6972,two,how many men are kissing a girls?,video6972,169836,1 11257,6972,dance,what is guys doing?,video6972,169837,1 11258,6972,dance,what is two men doing?,video6972,169838,1 11259,6972,walk,what is a guy with a beanie hat doing?,video6972,169839,1 11260,6972,perform,what are two singers doing?,video6972,169840,1 11261,6972,talk,what is a man doing?,video6972,169841,1 11262,6972,two,how many men are on the street?,video6972,169842,1 11263,6972,cool,what is there is a man with doing?,video6972,169843,1 11264,6972,cool,what is there is a man with blue doing?,video6972,169844,1 11265,6972,man,who sings as two men walk in a skywalk and ride bikes in the city?,video6972,169845,1 11266,6972,two,how many men are singing song?,video6972,169846,1 11267,6972,two,how many men are performing a song?,video6972,169847,1 11268,6972,bridge,what is a guy with a beanie hat walking on?,video6972,169848,1 11269,6972,two,how many men are riding scooters around?,video6972,169849,1 11270,6972,person,who is singing a song with friend outdoors?,video6972,169850,1 11271,6972,two,how many men are talking to a couple of women?,video6972,169851,1 11272,6972,two,how many singers do two females approach two singers happily are performing a pop song in a music video?,video6972,169852,1 11273,6972,two,how many females approach two singers happily two singers are performing a pop song in a music video?,video6972,169853,1 11274,6972,two,how many men are talking to girls on the street?,video6972,169854,1 11275,6973,play,what are a couple of men doing?,video6973,169855,3 11276,6973,wear,what is a blue and black color dress doing?,video6973,169856,3 11277,6973,play,what is a red and black color dress players doing?,video6973,169857,3 11278,6973,play,what are two men doing?,video6973,169858,3 11279,6973,watch,what is two people doing?,video6973,169859,3 11280,6973,play,what are two persons doing?,video6973,169860,3 11281,6973,win,what is the table tennis player in black jumps with joy after doing?,video6973,169861,3 11282,6973,play,what are table tennise player with blue and red shirt doing?,video6973,169862,3 11283,6973,celebrate,what is a table tennis match between two chinese players and the winner doing?,video6973,169863,3 11284,6973,play,what is two asian men doing?,video6973,169864,3 11285,6973,celebrate,what is the player in blue shirt doing?,video6973,169865,3 11286,6973,play,what are two players doing?,video6973,169866,3 11287,6973,volley,what is two men compete in a game of table tennis by vigorously doing?,video6973,169867,3 11288,6973,two,how many men compete in a game of table tennis by vigorously volleying the ping pong ball over the net?,video6973,169868,3 11289,6973,joy,what does the table tennis player in black jump with after winning the game?,video6973,169869,3 11290,6973,point,what is the player in blue shirt celebrating?,video6973,169870,3 11291,6973,break,what is the player in blue shirt requiring?,video6973,169871,3 11292,6973,pong,what are a couple of men playing ping inside?,video6973,169872,3 11293,6973,tenni,what does a man play with another man at a tournament?,video6973,169873,3 11294,6973,tenni,what are two men playing in a room full of people?,video6973,169874,3 11295,6973,stadium,what are two persons playing table tennis game on?,video6973,169875,3 11296,6973,pong,what do two men play in a stadium with people watching?,video6973,169876,3 11297,6973,gym,what are two players playing table tennis match in?,video6973,169877,3 11298,6973,tenni,what are two persons playing on the stadium?,video6973,169878,3 11299,6973,tenni,what are two players playing in the gym?,video6973,169879,3 11300,6973,two,how many men are playing table tennis in a room full of people?,video6973,169880,3 11301,6973,two,how many men play ping pong in a stadium with people watching?,video6973,169881,3 11302,6973,two,how many persons are playing table tennis game on the stadium?,video6973,169882,3 11303,6973,guy,who is a televised ping pong championship won by in the black shirt?,video6973,169883,3 11304,6973,man,who plays table tennis with another man at a tournament?,video6973,169884,3 11305,6973,two,how many players are playing table tennis match in the gym?,video6973,169885,3 11306,6974,man,what are drinking something?,video6974,169886,16 11307,6974,two,how many men are talking indoors?,video6974,169887,16 11308,6974,alcohol,what do two men in a kitchen drink?,video6974,169888,16 11309,6974,man,what are talking about something?,video6974,169889,16 11310,6974,something,what are two man s talking about?,video6974,169890,16 11311,6974,alcohol,what are two men drinking?,video6974,169891,16 11312,6974,something,what are two man s drinking?,video6974,169892,16 11313,6974,alcohol,what do two men speak about?,video6974,169893,16 11314,6974,stella,what are two mens drinking?,video6974,169894,16 11315,6974,toast,what are two men doing together?,video6974,169895,16 11316,6974,discussion,what do two men have?,video6974,169896,16 11317,6974,drink,what do both take?,video6974,169897,16 11318,6974,two,how many persons are drinking?,video6974,169898,16 11319,6974,two,how many men speak about alcohol?,video6974,169899,16 11320,6974,stella,who are two mens drinking rose?,video6974,169900,16 11321,6974,drink,what is two guys doing?,video6974,169901,16 11322,6974,talk,what are two man s doing?,video6974,169902,16 11323,6974,drink,what are two men in a kitchen who doing?,video6974,169903,16 11324,6974,drink,what are two mens doing?,video6974,169904,16 11325,6974,drink,what is two people doing?,video6974,169905,16 11326,6974,speak,what are two persons doing?,video6974,169906,16 11327,6974,talk,what is two spanish guys doing?,video6974,169907,16 11328,6974,two,how many mens are drinking stella rose?,video6974,169908,16 11329,6974,two,how many men have a discussion?,video6974,169909,16 11330,6974,two,how many man s are talking about something?,video6974,169910,16 11331,6974,two,how many persons are speaking each other?,video6974,169911,16 11332,6974,two,how many man s are drinking something?,video6974,169912,16 11333,6974,two,how many men are drinking alcohol?,video6974,169913,16 11334,6974,two,how many men are doing a toast together?,video6974,169914,16 11335,6974,two,how many mens cheerings each other?,video6974,169915,16 11336,6975,personality,what talks about a movies director and a tragedy on set?,video6975,169916,7 11337,6975,woman,who stands in front of a man?,video6975,169917,7 11338,6975,set,what does a personality talk about a movies director and a tragedy on?,video6975,169918,7 11339,6975,dres,what does a girl in the night dress lift?,video6975,169919,7 11340,6975,somber,what is a girl with long dark hair giving?,video6975,169920,7 11341,6975,woman,who describes the filming of a controversial scene?,video6975,169921,7 11342,6975,show,what is a hot woman doing?,video6975,169922,7 11343,6975,stand,what is a girl with long dark hair doing?,video6975,169923,7 11344,6975,show,what is a girl in the night dress lifts her dress and doing?,video6975,169924,7 11345,6975,lift,what is female commentary about director feeling victimized over controversial scene of woman doing?,video6975,169925,7 11346,6975,interview,what is a man doing?,video6975,169926,7 11347,6975,stand,what is a girl is in a floral dress doing?,video6975,169927,7 11348,6975,look,what is girl in dress doing?,video6975,169928,7 11349,6975,lift,what is a girl standing in maxi dress in front of boy doing?,video6975,169929,7 11350,6975,lift,what is a woman s voice gives commentary on a shot of a dark-haired girl doing?,video6975,169930,7 11351,6975,show,what is a pretty girl in a dress doing?,video6975,169931,7 11352,6975,stand,what is a woman in a room doing?,video6975,169932,7 11353,6975,maxi,what do a girl standing in maxi dress in front of boy lifting showing legs displaying on screen?,video6975,169933,7 11354,6975,body,what is a hot woman showing to a man?,video6975,169934,7 11355,6976,show,what do five girls sing on?,video6976,169935,0 11356,6976,song,what do the girls sing?,video6976,169936,0 11357,6976,song,what is a band performing?,video6976,169937,0 11358,6976,song,what do five women sitting on chairs on a stage sing to?,video6976,169938,0 11359,6976,band,what is performing a song?,video6976,169939,0 11360,6976,sit,what is five women doing?,video6976,169940,0 11361,6976,perform,what is a group of women doing?,video6976,169941,0 11362,6976,perform,what is a band doing?,video6976,169942,0 11363,6976,group,what performs live?,video6976,169943,0 11364,6976,sit,what are five women doing?,video6976,169944,0 11365,6976,sledgehammer,what does singing group sing?,video6976,169945,0 11366,6976,group,what sings sledgehammer?,video6976,169946,0 11367,6976,group,what is singing on a talk show?,video6976,169947,0 11368,6976,stage,when is a girl group singing?,video6976,169948,0 11369,6976,five,how many girls sing on a show?,video6976,169949,0 11370,6976,five,how many women are sitting on a talk show stage?,video6976,169950,0 11371,6976,group,what is singing on stage?,video6976,169951,0 11372,6976,song,what are five women performing?,video6976,169952,0 11373,6976,five,how many women are performing a song?,video6976,169953,0 11374,6977,nature,what is person recording the waterfalls in?,video6977,169954,11 11375,6977,waterfall,what is a woman discussing?,video6977,169955,11 11376,6977,hike,what are tourist recording a waterfall on?,video6977,169956,11 11377,6977,woman,who is discussing the waterfall?,video6977,169957,11 11378,6977,place,what is a guy walking around in outside?,video6977,169958,11 11379,6977,tourist,who are recording a waterfall on hike?,video6977,169959,11 11380,6977,waterfall,what are tourist recording on hike?,video6977,169960,11 11381,6977,ladder,what did a man climbsa on a tree beside a small waterfall?,video6977,169961,11 11382,6977,guy,who is walking around in the place outside?,video6977,169962,11 11383,6977,walk,what is a guy doing?,video6977,169963,11 11384,6977,move,what is view of a waterfall at the end of a forest trail with hikers doing?,video6977,169964,11 11385,6977,climb,what is this video describes a wow full waterfalls and a person doing?,video6977,169965,11 11386,6977,record,what is person doing?,video6977,169966,11 11387,6977,wear,what is a waterfall and rocks with a guy doing?,video6977,169967,11 11388,6977,walk,what is some mountain with a water falls from a height a man doing?,video6977,169968,11 11389,6977,record,what are tourist doing?,video6977,169969,11 11390,6977,record,what is a person doing?,video6977,169970,11 11391,6977,discus,what is a woman doing?,video6977,169971,11 11392,6977,show,what is some one doing?,video6977,169972,11 11393,6977,surround,what is a view of a small waterfall and the rock formations doing?,video6977,169973,11 11394,6977,cliff,what does a waterfall cascade off into the water below?,video6977,169974,11 11395,6977,amidst,what does a high narrow waterfall rush down formations punctuated with greenery as well as walkways and stairs with railings?,video6977,169975,11 11396,6977,water,when is there which is very much interesting to see and enjoyable place by the travellers in a hill station?,video6977,169976,11 11397,6977,waterfall,what do a forest amd on a beautiful sunny day?,video6977,169977,11 11398,6977,person,who is recording the waterfalls in the nature?,video6977,169978,11 11399,6977,water,what does a waterfall cascade off a cliff into below?,video6977,169979,11 11400,6977,waterfall,what is coming from the top of a mountain that people are walking up to?,video6977,169980,11 11401,6977,height,what does some mountain with a water fall from a man walking in the step near?,video6977,169981,11 11402,6977,man,who climbsa ladder on a tree beside a small waterfall?,video6977,169982,11 11403,6977,forest,what amd waterfall on a beautiful sunny day?,video6977,169983,11 11404,6977,video,what describes a wow full waterfalls and a person climbing on the upstairs?,video6977,169984,11 11405,6977,lady,who explains the beauty of a waterfall and few mountains?,video6977,169985,11 11406,6977,tree,what did a man climbsa ladder on beside a small waterfall?,video6977,169986,11 11407,6977,waterfall,what cascades off a cliff into the water below?,video6977,169987,11 11408,6977,greenery,what does a high narrow waterfall rush down amidst craggy rock formations punctuated with as well as walkways and stairs with railings?,video6977,169988,11 11409,6977,place,where is a guy walking around outside?,video6977,169989,11 11410,6978,sea,what does an octopus moving in?,video6978,169990,13 11411,6978,show,what is a short clip doing?,video6978,169991,13 11412,6978,move,what is an octopus doing?,video6978,169992,13 11413,6978,swim,what is an octopus doing?,video6978,169993,13 11414,6978,swim,what is sea life doing?,video6978,169994,13 11415,6978,drive,what is a car doing?,video6978,169995,13 11416,6978,video,what did wild octopus catch on?,video6978,169996,13 11417,6978,octopu,what is moving around in a ocean?,video6978,169997,13 11418,6978,octopu,what caught on video?,video6978,169998,13 11419,6978,sea,what move along the ocean bottom?,video6978,169999,13 11420,6978,octopu,what swims through water?,video6978,170000,13 11421,6978,person,who tries to touch a small octopus?,video6978,170001,13 11422,6978,fish,what is different type of jelly fish?,video6978,170002,13 11423,6978,octopu,what is swimming?,video6978,170003,13 11424,6978,water,what does a short clip showing an octopus deep under?,video6978,170004,13 11425,6978,ocean,what does a video of an octopus swimming in?,video6978,170005,13 11426,6978,fish,what swim in a nature video?,video6978,170006,13 11427,6978,water,what does an octopus swim through?,video6978,170007,13 11428,6978,octopu,what does a person try to touch?,video6978,170008,13 11429,6978,car,what is driving in the woods?,video6978,170009,13 11430,6978,octopu,what wanders around the ocean floor?,video6978,170010,13 11431,6978,ocean,what is an octopus moving around in?,video6978,170011,13 11432,6979,wear,what is a woman doing?,video6979,170012,3 11433,6979,play,what is there is a woman in red doing?,video6979,170013,3 11434,6979,play,what is a woman with large breasts doing?,video6979,170014,3 11435,6979,person,who is a woman with large breasts playing tennis with?,video6979,170015,3 11436,6979,play,what is a lady in red and black dress doing?,video6979,170016,3 11437,6979,play,what is a lady in red tshirt and black underwear doing?,video6979,170017,3 11438,6979,play,what are the two women s doing?,video6979,170018,3 11439,6979,wear,what is a girl doing?,video6979,170019,3 11440,6979,play,what is girl with red shirt and black shorts doing?,video6979,170020,3 11441,6979,play,what is a women doing?,video6979,170021,3 11442,6979,tenni,what is a woman with large breasts playing with another person?,video6979,170022,3 11443,6979,background,what does a woman playing tennis while classical music play in?,video6979,170023,3 11444,6979,set,what does a lady in red and black dress playing tennis hitting ball running then win?,video6979,170024,3 11445,6979,ball,what is a woman with large breasts volleying?,video6979,170025,3 11446,6979,tenni,what does a young girl dressed in pink and black play?,video6979,170026,3 11447,6979,ball,what does a women tennis player return in fashion on either side of the court very comfortably?,video6979,170027,3 11448,6979,fashion,what does a women tennis player return the ball in on either side of the court very comfortably?,video6979,170028,3 11449,6979,tenni,what does a woman wearing a red shirt and black shorts play while classical music plays?,video6979,170029,3 11450,6979,music,what plays?,video6979,170030,3 11451,6979,tenni,what does a girl wearing black shorts hit with a tennis racket?,video6979,170031,3 11452,6979,game,what are the ball playing very actively?,video6979,170032,3 11453,6979,tenni,what is a women playing?,video6979,170033,3 11454,6979,ball,what are playing the shuttle game very actively?,video6979,170034,3 11455,6980,play,what is a kid doing?,video6980,170035,2 11456,6980,play,what is the video is of a novice doing?,video6980,170036,2 11457,6980,wear,what is a person in white color dress doing?,video6980,170037,2 11458,6980,wear,what is a boy in white color dress doing?,video6980,170038,2 11459,6980,play,what is man doing?,video6980,170039,2 11460,6980,build,what is a man demonstrates doing?,video6980,170040,2 11461,6980,play,what are a man and a women doing?,video6980,170041,2 11462,6980,play,what are a man and woman doing?,video6980,170042,2 11463,6980,manipulate,what is a young man and woman talk about doing?,video6980,170043,2 11464,6980,play,what are a man and woman demonstrate a video game they doing?,video6980,170044,2 11465,6980,play,what is a man doing?,video6980,170045,2 11466,6980,play,what is a woman doing?,video6980,170046,2 11467,6980,lie,what is there is a box doing?,video6980,170047,2 11468,6980,use,what is a man in a white shirt doing?,video6980,170048,2 11469,6980,look,what is a guy doing?,video6980,170049,2 11470,6980,video,what is a man playing?,video6980,170050,2 11471,6980,craft,what is a kid playing in a game?,video6980,170051,2 11472,6980,cloth,what do a boy in white color dress wearing speaking seeing watch in hand and game of walls blasting displaying on screen?,video6980,170052,2 11473,6980,man,who is playing a video game?,video6980,170053,2 11474,6980,video,what do a man and woman demonstrate they are playing together?,video6980,170054,2 11475,6980,man,who is telling about a game?,video6980,170055,2 11476,6980,guy,who is looking at his watch?,video6980,170056,2 11477,6980,video,what are a man and a women playing?,video6980,170057,2 11478,6980,game,what is a man telling about?,video6980,170058,2 11479,6980,computer,what do a man and woman play?,video6980,170059,2 11480,6980,watch,what is a guy looking at?,video6980,170060,2 11481,6980,game,what is a kid playing mine craft in?,video6980,170061,2 11482,6980,video,what do a person in white color dress wearing cloth speaking destroying walls displaying on screen?,video6980,170062,2 11483,6980,strategy,what is man playing some kind of on computer?,video6980,170063,2 11484,6980,cloth,what do a person in white color dress wearing speaking a video game destroying walls displaying on screen?,video6980,170064,2 11485,6980,man,who sets red blocks in a line on the green ground?,video6980,170065,2 11486,6980,person,who stacks red blocks in a line on green surface?,video6980,170066,2 11487,6980,video,what is of a novice playing a video game that involves breaking brick walls?,video6980,170067,2 11488,6980,man,who demonstrates building objects on minecraft by making a series of red boxes?,video6980,170068,2 11489,6980,computer,what is man playing some kind of strategy game on?,video6980,170069,2 11490,6980,video,what are a man and woman playing together where they are building a wall?,video6980,170070,2 11491,6980,man,who is playing some kind of strategy game on computer?,video6980,170071,2 11492,6980,hand,what do a person in white color dress watch seeing in?,video6980,170072,2 11493,6980,minecraft,what does a man demonstrate building objects on by making a series of red boxes?,video6980,170073,2 11494,6980,cloth,what do a person in white color dress wearing seeing watch and arrow pointing on screen wall playing game displaying on screen?,video6980,170074,2 11495,6980,kid,who is playing mine craft in a game?,video6980,170075,2 11496,6980,guy,who is counting time two people are playing a game?,video6980,170076,2 11497,6980,game,what do a person in white color dress watch playing breaking displaying on screen?,video6980,170077,2 11498,6980,watch,what do a person in white color dress wearing cloth seeing pointing on screen wall playing game displaying on screen?,video6980,170078,2 11499,6981,sea,what does a broad forest spread to down a steep slope?,video6981,170079,11 11500,6981,sea,what is person recording the beautiful mountain trees near?,video6981,170080,11 11501,6981,someone,what is the top of an island being filmed by?,video6981,170081,11 11502,6981,top,what is a mountainous area with a view of an inlet below seen from?,video6981,170082,11 11503,6981,fog,what covers the mountains on which many trees grow?,video6981,170083,11 11504,6981,mist,what are mountains covered in green trees shrouded in?,video6981,170084,11 11505,6981,lead,what is panoramic view of a mountainside full of trees doing?,video6981,170085,11 11506,6981,record,what is person doing?,video6981,170086,11 11507,6981,relax,what is a mountain top view is accompanied by doing?,video6981,170087,11 11508,6981,tree,what covered mountains meet up with a beautiful body of water?,video6981,170088,11 11509,6981,person,who is recording the beautiful mountain trees near the sea?,video6981,170089,11 11510,6981,distance,what did green cover mountains with gray clouded skies and a lake in?,video6981,170090,11 11511,6981,tree,what covered mountain surrounds a large clear lake?,video6981,170091,11 11512,6981,helicopter,what is scenic vista and part of a bridge displayed filmed from?,video6981,170092,11 11513,6981,landscape,what covered on trees next to a water body?,video6981,170093,11 11514,6981,forest,what spreads to the sea down a steep slope?,video6981,170094,11 11515,6981,video,what that highlights the beauty of destination to promote tourist?,video6981,170095,11 11516,6982,terrain,where do a set of large tire off road vehicles try to drive?,video6982,170096,9 11517,6982,monster,what are driving around in the mud?,video6982,170097,9 11518,6982,mud,what does a big wheeled jeep get stuck on?,video6982,170098,9 11519,6982,challenge,what are people going in a truck in a muddy area and in also insome pits to meet?,video6982,170099,9 11520,6982,monster,what are shown offroading?,video6982,170100,9 11521,6982,monster,what are shown doing?,video6982,170101,9 11522,6982,monster,what is driving in the dirt outside?,video6982,170102,9 11523,6982,terrain,what do a set of large tire off road vehicles try to drive on?,video6982,170103,9 11524,6982,air,what does a pick up truck races of dirt hills and over ditch with sideways log flying high in?,video6982,170104,9 11525,6982,person,who is a big wheeled jeep being driven by?,video6982,170105,9 11526,6982,monster,what rides over dirt and hills outside?,video6982,170106,9 11527,6982,challenge,what features a large black and green monster truck?,video6982,170107,9 11528,6982,mud,what are some monster trucks driving around in?,video6982,170108,9 11529,6982,dirt,what is a monster truck driving in outside?,video6982,170109,9 11530,6982,munster,what drive over dirt hills and mud?,video6982,170110,9 11531,6982,person,who drives a big wheeled jeep away?,video6982,170111,9 11532,6982,hit,what is there are some trucker doing?,video6982,170112,9 11533,6982,drive,what are some monster trucks doing?,video6982,170113,9 11534,6982,move,what are big trucks doing?,video6982,170114,9 11535,6982,drive,what is a monster truck doing?,video6982,170115,9 11536,6982,drive,what are the racers doing?,video6982,170116,9 11537,6982,drive,what is drivers doing?,video6982,170117,9 11538,6982,fly,what is a pick up truck races of dirt hills and over ditch with sideways logs doing?,video6982,170118,9 11539,6983,two,how many mens are enjoying the skating?,video6983,170119,3 11540,6983,motion,what does a man on a snowboard leap over another man on a snowboard in?,video6983,170120,3 11541,6983,hill,what are two people riding snowboards down?,video6983,170121,3 11542,6983,two,how many mens are shouting?,video6983,170122,3 11543,6983,skating,what are two mens going?,video6983,170123,3 11544,6983,two,how many men snowboard down a mountain in slow motion while yelling?,video6983,170124,3 11545,6983,two,how many mens are going a snow skating?,video6983,170125,3 11546,6983,mountain,what did two men snowboard down in slow motion while yelling?,video6983,170126,3 11547,6983,person,who snowboards down the hill in slow motion and slow speech?,video6983,170127,3 11548,6983,two,how many people are riding snowboards down a hill?,video6983,170128,3 11549,6983,man,who flies down on top of another mans head?,video6983,170129,3 11550,6983,two,how many people snowboard down a hill while a man slow motion shouts?,video6983,170130,3 11551,6983,hill,what did two people snowboard down while a man slow motion shouts?,video6983,170131,3 11552,6983,hill,what does person snowboard down in slow motion and slow speech?,video6983,170132,3 11553,6983,skating,what are two mens enjoying?,video6983,170133,3 11554,6983,skate,what is two persons doing?,video6983,170134,3 11555,6983,mis,what is two men barely doing?,video6983,170135,3 11556,6983,snowboard,what is two guys doing?,video6983,170136,3 11557,6983,collide,what is a snowboarder in the brown coat luckily avoids doing?,video6983,170137,3 11558,6983,snowboard,what is two persons in winter clothes doing?,video6983,170138,3 11559,6983,ski,what are some people doing?,video6983,170139,3 11560,6983,snowboard,what is two men doing?,video6983,170140,3 11561,6983,ski,what is people enjoy doing?,video6983,170141,3 11562,6983,yell,what is two men snowboard down a mountain in slow motion while doing?,video6983,170142,3 11563,6983,show,what is an instructional video doing?,video6983,170143,3 11564,6984,baby,who squirrels in a box with a baby kitten?,video6984,170144,13 11565,6984,box,what does baby squirrels in with a baby kitten?,video6984,170145,13 11566,6984,baby,who squirrels in a box with cats?,video6984,170146,13 11567,6984,squirrel,what is snuggling with a cat?,video6984,170147,13 11568,6984,man,who talks about small animals?,video6984,170148,13 11569,6984,squirrel,what is snuggling with kittens?,video6984,170149,13 11570,6984,kitten,what is cuddling a baby squirrel?,video6984,170150,13 11571,6984,man,who squirels?,video6984,170151,13 11572,6984,squirrel,what is a kitten cuddling?,video6984,170152,13 11573,6984,box,what did a group of kittens lie in together?,video6984,170153,13 11574,6984,snuggle,what is a baby squirrel doing?,video6984,170154,13 11575,6984,talk,what is man doing?,video6984,170155,13 11576,6984,cuddle,what is a kitten doing?,video6984,170156,13 11577,6984,show,what is a video doing?,video6984,170157,13 11578,6984,cuddle,what are a squirrel and kitten doing?,video6984,170158,13 11579,6984,rest,what are kittens and a baby squirrel doing?,video6984,170159,13 11580,6985,tea,what is a man in a green cardigan serving on a silver platter?,video6985,170160,7 11581,6985,tea,what does stainless steel kettle in a kitchen mean is ready to be served in a room with leonardo de caprio and a woman?,video6985,170161,7 11582,6985,service,what deliverd to a woman in a purple dress by a man in a green jacket?,video6985,170162,7 11583,6985,butler,who is a tea kettle whistling is carrying tea out to a man and a woman sitting outside?,video6985,170163,7 11584,6985,kettle,what is whistling a butler is carrying tea out to a man and a woman sitting outside?,video6985,170164,7 11585,6985,stove,what is a metal tea kettle whistling on a butler is bringing tea out to a garden where a man and a woman are sitting?,video6985,170165,7 11586,6985,butler,who is a metal tea kettle whistling on a stove is bringing tea out to a garden where a man and a woman are sitting?,video6985,170166,7 11587,6985,butler,who prepares?,video6985,170167,7 11588,6985,tea,what does a man serve?,video6985,170168,7 11589,6985,man,who serves tea?,video6985,170169,7 11590,6985,tray,what does a butter come forward slowly carrying?,video6985,170170,7 11591,6985,butter,what comes forward slowly carrying a tray?,video6985,170171,7 11592,6985,thing,what are some people on a show doing?,video6985,170172,7 11593,6985,tea,what does a man in a green suit bring a tray of to a man and woman?,video6985,170173,7 11594,6985,kettle,what is whistling it is then brought to another room by a butler?,video6985,170174,7 11595,6985,butler,who brings tea for the woman?,video6985,170175,7 11596,6985,butter,what serves tea to the lady and a man waiting for him to serve?,video6985,170176,7 11597,6985,serve,what is there is a man doing?,video6985,170177,7 11598,6985,serve,what is there is a green suit man doing?,video6985,170178,7 11599,6985,whistle,what is a silver kettle pot doing?,video6985,170179,7 11600,6985,walk,what is buttler in green suite doing?,video6985,170180,7 11601,6985,bring,what is waiter doing?,video6985,170181,7 11602,6985,wait,what is a tea kettle steams and a man serves a tea tray to a woman doing?,video6985,170182,7 11603,6985,look,what is a person doing?,video6985,170183,7 11604,6985,whistle,what is a metal tea kettle doing?,video6985,170184,7 11605,6985,sit,what is a teapot whistling and a man in green serves tea to a woman doing?,video6985,170185,7 11606,6985,whistle,what is a tea kettle doing?,video6985,170186,7 11607,6985,serve,what is a man in a green cardigan doing?,video6985,170187,7 11608,6985,sit,what is in the waiter is serve the tea on their customr the customer doing?,video6985,170188,7 11609,6985,serve,what is a man in a green sweater doing?,video6985,170189,7 11610,6985,carry,what is a butter comes forward slowly doing?,video6985,170190,7 11611,6986,woman,who is discussing health products?,video6986,170191,11 11612,6986,face,what does a woman wash with a deep cleanser?,video6986,170192,11 11613,6986,makeup,what tutorial about skin clay?,video6986,170193,11 11614,6986,face,what is a young woman cleaning with a beauty product?,video6986,170194,11 11615,6986,woman,who reviews deep cleansing face cleanser?,video6986,170195,11 11616,6986,girl,who is telling about beauty products?,video6986,170196,11 11617,6986,girl,who is talking about skin products?,video6986,170197,11 11618,6986,woman,who is using a face cleanser?,video6986,170198,11 11619,6986,face,what is a women putting makeup in?,video6986,170199,11 11620,6986,cleanser,what is woman using?,video6986,170200,11 11621,6986,skin,what is a girl talking about?,video6986,170201,11 11622,6986,beauty,what is a girl telling about?,video6986,170202,11 11623,6986,cleanser,what does woman review deep cleansing?,video6986,170203,11 11624,6986,health,what is a woman discussing?,video6986,170204,11 11625,6986,person,who is showing how to use a face cleanser?,video6986,170205,11 11626,6986,clay,what do a makeup tutorial about?,video6986,170206,11 11627,6986,face,what does a woman wash with a cleanser?,video6986,170207,11 11628,6986,tell,what is a girl doing?,video6986,170208,11 11629,6986,show,what is a person doing?,video6986,170209,11 11630,6986,discus,what is a woman doing?,video6986,170210,11 11631,6986,put,what is a women doing?,video6986,170211,11 11632,6986,clean,what is a young woman doing?,video6986,170212,11 11633,6986,put,what is girl doing?,video6986,170213,11 11634,6986,cleanse,what is this is a video about a face doing?,video6986,170214,11 11635,6986,use,what is woman doing?,video6986,170215,11 11636,6986,talk,what is a girl doing?,video6986,170216,11 11637,6986,cleanse,what is woman reviews deep doing?,video6986,170217,11 11638,6987,woman,who is showing different clothing items?,video6987,170218,18 11639,6987,woman,who shows off a pair of jeans?,video6987,170219,18 11640,6987,woman,who is modeling jeans?,video6987,170220,18 11641,6987,clothing,what is a woman showing?,video6987,170221,18 11642,6987,modeling,what is a woman?,video6987,170222,18 11643,6987,lady,who is modeling with shorts and a top on?,video6987,170223,18 11644,6987,modeling,what is woman?,video6987,170224,18 11645,6987,woman,who models various styles of shorts?,video6987,170225,18 11646,6987,woman,who is modeling pants in front of a fence outside?,video6987,170226,18 11647,6987,woman,who is standing?,video6987,170227,18 11648,6987,model,what is a woman doing?,video6987,170228,18 11649,6987,show,what is a woman doing?,video6987,170229,18 11650,6987,stand,what is a woman doing?,video6987,170230,18 11651,6987,model,what is a young lady doing?,video6987,170231,18 11652,6987,try,what is girl doing?,video6987,170232,18 11653,6987,show,what is model doing?,video6987,170233,18 11654,6987,model,what is woman doing?,video6987,170234,18 11655,6988,cat,what is talking to its owner?,video6988,170235,13 11656,6988,speak,what is two cats doing?,video6988,170236,13 11657,6988,man,who speaks to his cat?,video6988,170237,13 11658,6988,home,what is someone playing with cats in?,video6988,170238,13 11659,6988,man,who is talking to a cat?,video6988,170239,13 11660,6988,cat,what is person talking to?,video6988,170240,13 11661,6988,owner,who do two cats talk to?,video6988,170241,13 11662,6988,cat,what is looking like it is talking?,video6988,170242,13 11663,6988,briefly,what is another cat shown?,video6988,170243,13 11664,6988,cat,what is a man talking to?,video6988,170244,13 11665,6988,cat,what is talking?,video6988,170245,13 11666,6988,cat,what does a man speak to?,video6988,170246,13 11667,6988,owner,who is a cat talking to?,video6988,170247,13 11668,6988,talk,what is person doing?,video6988,170248,13 11669,6988,someone,what is playing with cats in home?,video6988,170249,13 11670,6988,talk,what is a man doing?,video6988,170250,13 11671,6988,pretend,what is a clip of a man doing?,video6988,170251,13 11672,6988,talk,what are a cat whose voice has been dubbed over to make it appear like they doing?,video6988,170252,13 11673,6988,look,what is a cat doing?,video6988,170253,13 11674,6988,talk,what is a car doing?,video6988,170254,13 11675,6988,play,what is someone doing?,video6988,170255,13 11676,6988,cat,what is shown while another cat is shown briefly?,video6988,170256,13 11677,6988,man,who is talking to his cat with a fake voice?,video6988,170257,13 11678,6988,cat,what does a clip of a man pretend to talk as?,video6988,170258,13 11679,6988,home,where is someone playing with cats?,video6988,170259,13 11680,6988,two,how many cats talk to their owner?,video6988,170260,13 11681,6988,cat,what is a man talking to with a fake voice?,video6988,170261,13 11682,6988,cat,what is shown briefly?,video6988,170262,13 11683,6989,talk,what is a boy doing?,video6989,170263,9 11684,6989,car,what is someone driving?,video6989,170264,9 11685,6989,car,what does a man drive?,video6989,170265,9 11686,6989,car,what is a person talking inside?,video6989,170266,9 11687,6989,man,who drives a car?,video6989,170267,9 11688,6989,person,who is talking inside the car?,video6989,170268,9 11689,6989,man,who is talking inside a car?,video6989,170269,9 11690,6989,car,what does a teenage boy talk about the radio in?,video6989,170270,9 11691,6989,radio,what does a teenage boy talk about in his car?,video6989,170271,9 11692,6989,man,who is getting ready to drive a car?,video6989,170272,9 11693,6989,car,what is a person describing the specialties of?,video6989,170273,9 11694,6989,someone,what is driving a car?,video6989,170274,9 11695,6989,teenage,who talks about the radio in his car?,video6989,170275,9 11696,6989,person,who is describing the specialties of a car?,video6989,170276,9 11697,6989,boy,who is talking seated in front of car wheels?,video6989,170277,9 11698,6989,man,who is talking about driving a car while sitting in a car?,video6989,170278,9 11699,6989,drive,what is someone doing?,video6989,170279,9 11700,6989,operate,what is man doing?,video6989,170280,9 11701,6989,describe,what is a young man inside a car doing?,video6989,170281,9 11702,6989,review,what is a person doing?,video6989,170282,9 11703,6989,describe,what is a person doing?,video6989,170283,9 11704,6989,sit,what is a man records himself doing?,video6989,170284,9 11705,6989,man,who records himself sitting in the driver seat?,video6989,170285,9 11706,6989,car,what is a man talking inside?,video6989,170286,9 11707,6990,cook,what is a woman combines corn starch and salt in a bowl in conjunction with a recipe she doing?,video6990,170287,16 11708,6990,pmy,what is someone doing?,video6990,170288,16 11709,6990,mix,what is a womn doing?,video6990,170289,16 11710,6990,mix,what is a girl bowl spoon doing?,video6990,170290,16 11711,6990,pmy,what is a girl doing?,video6990,170291,16 11712,6990,mix,what is in a kitchen a woman describes doing?,video6990,170292,16 11713,6990,bowl,what does a woman stir?,video6990,170293,16 11714,6990,woman,who stirs a bowl?,video6990,170294,16 11715,6990,mix,what is a person at a granite counter top doing?,video6990,170295,16 11716,6990,powder,what does a person pour in a bowl of liquid on the counter?,video6990,170296,16 11717,6990,counter,what does a person pour powder in a bowl of liquid on?,video6990,170297,16 11718,6990,liquid,what has a person mixed many spices and seasonings in a bowl to created to cook with?,video6990,170298,16 11719,6990,bowl,what are ingredients mixed with a spoon until disolved?,video6990,170299,16 11720,6990,woman,who mixes ingredients into a clear bowl?,video6990,170300,16 11721,6990,person,who mix the ingredients in the clear bowl?,video6990,170301,16 11722,6990,bowl,what has a person mixed many spices and seasonings in to created a red liquid to cook with?,video6990,170302,16 11723,6990,person,who pours powder in a bowl of liquid on the counter?,video6990,170303,16 11724,6990,food,what do a person at a granite counter top mixing into a glass bowl?,video6990,170304,16 11725,6990,dish,what do a girl bowl spoon mixing inside kitchen to prepare to serve to eat displaying on screen?,video6990,170305,16 11726,6990,spoon,what are ingredients mixed ina bowl with until disolved?,video6990,170306,16 11727,6990,woman,who describes mixing ingredients in a bowl in a kitchen?,video6990,170307,16 11728,6990,woman,who puts sugar and corn starch into a glass bowl?,video6990,170308,16 11729,6990,screen,what do a girl bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on?,video6990,170309,16 11730,6990,kitchen,what does a woman describe mixing ingredients in a bowl in?,video6990,170310,16 11731,6990,water,what is put and then some sugar while few more liquids are added together?,video6990,170311,16 11732,6990,kitchen,what do a girl bowl spoon mixing dish inside to prepare to serve to eat displaying on screen?,video6990,170312,16 11733,6990,person,who pour different powders in a bowl of liquid?,video6990,170313,16 11734,6990,person,who has mixed many spices and seasonings in a bowl to created a red liquid to cook with?,video6990,170314,16 11735,6990,girl,who bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on screen?,video6990,170315,16 11736,6990,kitchen,what does a girl pouring bowl spoon mixing dish inside to prepare to serve to eat displaying on screen?,video6990,170316,16 11737,6990,bowl,what does a woman describe mixing ingredients in in a kitchen?,video6990,170317,16 11738,6990,dish,what does a girl pouring bowl spoon mixing inside kitchen to prepare to serve to eat displaying on screen?,video6990,170318,16 11739,6990,screen,what does a girl pouring bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on?,video6990,170319,16 11740,6991,repair,what is your battery terminal should be disconnected when doing?,video6991,170320,9 11741,6991,work,what is there is a man doing?,video6991,170321,9 11742,6991,fix,what is someone doing?,video6991,170322,9 11743,6991,work,what is mechanic doing?,video6991,170323,9 11744,6991,show,what is a short clip doing?,video6991,170324,9 11745,6991,battery,what are the screws removed to disconnect?,video6991,170325,9 11746,6991,show,what is a person doing?,video6991,170326,9 11747,6991,demonstrate,what is a person doing?,video6991,170327,9 11748,6991,two,how many small screws does a person hold?,video6991,170328,9 11749,6991,attempt,what is a person doing?,video6991,170329,9 11750,6991,fix,what is a man doing?,video6991,170330,9 11751,6991,person,who is demonstrating taking apart the center console of a car?,video6991,170331,9 11752,6991,person,who disconnecting the wire?,video6991,170332,9 11753,6991,person,who is attempting to hack a computer?,video6991,170333,9 11754,6991,hold,what is a person doing?,video6991,170334,9 11755,6991,disconnect,what is a person doing?,video6991,170335,9 11756,6991,text,what tutorial on technology?,video6991,170336,9 11757,6991,person,who is holding screws?,video6991,170337,9 11758,6991,person,who holds two small screws?,video6991,170338,9 11759,6991,man,who is assembling the parts?,video6991,170339,9 11760,6991,man,who is fixing a car?,video6991,170340,9 11761,6991,technology,what do a text tutorial on?,video6991,170341,9 11762,6991,wire,what does a person disconnect?,video6991,170342,9 11763,6991,car,what is a man fixing?,video6991,170343,9 11764,6992,stage,when is a man performing with his band?,video6992,170344,0 11765,6992,audience,what are singing a song?,video6992,170345,0 11766,6992,boy,who singing a song on stage?,video6992,170346,0 11767,6992,singer,who is smiling in a stage?,video6992,170347,0 11768,6992,song,what does singer make his fans sing to?,video6992,170348,0 11769,6992,concert,what is someone performing for an audience?,video6992,170349,0 11770,6992,audience,what is someone performing a music concert for?,video6992,170350,0 11771,6992,someone,who is performing a music concert for an audience?,video6992,170351,0 11772,6992,artist,who is the crowd singing along with on stage?,video6992,170352,0 11773,6992,singer,who makes his fans sing to the song?,video6992,170353,0 11774,6992,crowd,what is singing along with an artist on stage?,video6992,170354,0 11775,6992,stage,when is the crowd singing along with an artist?,video6992,170355,0 11776,6992,singer,who holds the microphone to the audience for people to sing along?,video6992,170356,0 11777,6992,man,who is performing on stage with his band?,video6992,170357,0 11778,6992,stage,when do a boy sing a song?,video6992,170358,0 11779,6992,perform,what is a boy doing?,video6992,170359,0 11780,6992,song,what is a man singing?,video6992,170360,0 11781,6992,audience,what is singing?,video6992,170361,0 11782,6992,concert,what is a boy performing?,video6992,170362,0 11783,6992,man,who is singing a song?,video6992,170363,0 11784,6992,stage,when is a singer smiling?,video6992,170364,0 11785,6992,perform,what is a band doing?,video6992,170365,0 11786,6992,song,what are audience singing?,video6992,170366,0 11787,6992,song,what do a boy sing on stage?,video6992,170367,0 11788,6992,song,what is the crowd singing?,video6992,170368,0 11789,6992,band,what is a man performing on stage with?,video6992,170369,0 11790,6992,perform,what is someone doing?,video6992,170370,0 11791,6992,boy,who is performing a concert?,video6992,170371,0 11792,6992,perform,what is a man doing?,video6992,170372,0 11793,6992,crowd,what is singing a song?,video6992,170373,0 11794,6993,hide,what is a video game character doing?,video6993,170374,8 11795,6993,wander,what is animation character doing?,video6993,170375,8 11796,6993,catch,what is a monster man doing?,video6993,170376,8 11797,6993,hide,what is a minecraft character doing?,video6993,170377,8 11798,6993,crush,what is a minecraft character doing?,video6993,170378,8 11799,6993,destroy,what is minecraft hulk doing?,video6993,170379,8 11800,6993,attack,what is an animation shows a cartoon character doing?,video6993,170380,8 11801,6993,one,what then farts?,video6993,170381,8 11802,6993,one,what does a large monster that picks up a person and kill in a video game?,video6993,170382,8 11803,6993,minecraft,who attempt to get away from a giant zombie?,video6993,170383,8 11804,6993,monster,who destroys a character in minecraft?,video6993,170384,8 11805,6993,animation,what shows a cartoon character attacking another?,video6993,170385,8 11806,6993,minecraft,who is hiding from a larger character?,video6993,170386,8 11807,6993,one,what sits down?,video6993,170387,8 11808,6993,minecraft,who then passes gas?,video6993,170388,8 11809,6993,someone,what does a minecraft monster kill?,video6993,170389,8 11810,6993,cartoon,what kill the another one?,video6993,170390,8 11811,6993,one,what do a cartoon kill?,video6993,170391,8 11812,6993,monster,who chases a person?,video6993,170392,8 11813,6993,victim,who does minecraft giant zombie destroy?,video6993,170393,8 11814,6993,person,who does a monster chase?,video6993,170394,8 11815,6993,character,what is a minecraft character crushing?,video6993,170395,8 11816,6993,one,what eats a large video?,video6993,170396,8 11817,6993,character,what does a giant minecraft character attack?,video6993,170397,8 11818,6993,minecraft,who destroys his victim?,video6993,170398,8 11819,6993,video,what does a smaller one eat?,video6993,170399,8 11820,6993,minecraft,who kills someone?,video6993,170400,8 11821,6993,minecraft,who is crushing another character?,video6993,170401,8 11822,6994,show,what is a show called vincinzo s plate doing?,video6994,170402,16 11823,6994,wear,what is a man doing?,video6994,170403,16 11824,6994,stand,what is a man doing?,video6994,170404,16 11825,6994,explain,what is a man doing?,video6994,170405,16 11826,6994,cook,what is a man doing?,video6994,170406,16 11827,6994,talk,what is a cook doing?,video6994,170407,16 11828,6994,introduce,what is a man doing?,video6994,170408,16 11829,6994,man,who is going to cook?,video6994,170409,16 11830,6994,kitchen,what is a man standing in?,video6994,170410,16 11831,6994,man,who is cooking potatoes?,video6994,170411,16 11832,6994,man,who do potatoes recipe show by?,video6994,170412,16 11833,6994,man,who is standing in the kitchen?,video6994,170413,16 11834,6994,man,who is explaining what food he is about to teach to cook?,video6994,170414,16 11835,6994,vincenzo,who s plate is a show where a man is going to show how to cook?,video6994,170415,16 11836,6994,receipe,what does vincenzo s plate chef shares about?,video6994,170416,16 11837,6994,man,who speaks to a camera for a video segment?,video6994,170417,16 11838,6994,plate,what does vincenzo s is a show where a man is going to show how to cook?,video6994,170418,16 11839,6994,man,who introduces the viewer to a new episode?,video6994,170419,16 11840,6994,vincenzo,who s plate chef shares about potato receipe?,video6994,170420,16 11841,6994,man,who is introducing himself well in a kitchen for a cooking show?,video6994,170421,16 11842,6994,viewer,who does a man introduce to a new episode?,video6994,170422,16 11843,6994,man,who is going to show how to make a recipe?,video6994,170423,16 11844,6994,man,who is talking about something in kitchen?,video6994,170424,16 11845,6995,lego,who stand around in military outfits?,video6995,170425,9 11846,6995,lego,what figures shown in different environments?,video6995,170426,9 11847,6995,soldier,what was in the woods?,video6995,170427,9 11848,6995,figure,what is holding a gun?,video6995,170428,9 11849,6995,man,who is standing with a gun?,video6995,170429,9 11850,6995,slideshow,who has pictures of lego men?,video6995,170430,9 11851,6995,lego,who are being shown in short clips?,video6995,170431,9 11852,6995,gun,what are some toys standing in a ground with?,video6995,170432,9 11853,6995,ground,what are some toys standing in with gun?,video6995,170433,9 11854,6995,lego,what figures set in indoor and outdoor locations?,video6995,170434,9 11855,6995,lego,who are in the woods holding guns?,video6995,170435,9 11856,6995,soldier,what is all outside resolving issues?,video6995,170436,9 11857,6995,gun,what is a lego figure holding?,video6995,170437,9 11858,6995,charactor,what is a lego soldier standing?,video6995,170438,9 11859,6995,hold,what is a lego figure doing?,video6995,170439,9 11860,6995,stand,what is a lego soldier doing?,video6995,170440,9 11861,6995,stand,what is a man doing?,video6995,170441,9 11862,6995,hold,what is lego soldiers are in the woods doing?,video6995,170442,9 11863,6995,stand,what are some toys doing?,video6995,170443,9 11864,6995,stand,what is there are army style lego people doing?,video6995,170444,9 11865,6995,lego,what is been showed?,video6995,170445,9 11866,6995,gun,what is a man standing with?,video6995,170446,9 11867,6996,man,who cleans a tray?,video6996,170447,9 11868,6996,hand,what is a man holding some spares in?,video6996,170448,9 11869,6996,man,who is wearing gloves?,video6996,170449,9 11870,6996,person,who is cleaning an auto part?,video6996,170450,9 11871,6996,part,what did a person cleaning an clean?,video6996,170451,9 11872,6996,part,what did a person cleaning an take off a person is cleaning?,video6996,170452,9 11873,6996,man,who is cleaning out an engine part?,video6996,170453,9 11874,6996,man,who is cleaning a car piece?,video6996,170454,9 11875,6996,towel,what do a person cleaning an object with?,video6996,170455,9 11876,6996,person,who did a person cleaning an take off is cleaning a part?,video6996,170456,9 11877,6996,man,who is holding some spares in his hand?,video6996,170457,9 11878,6996,object,what does a person wearing dirty gloves use a rag to wipe off?,video6996,170458,9 11879,6996,rag,what does a person wearing dirty gloves use to wipe off a black object?,video6996,170459,9 11880,6996,man,who is wiping out car parts in the video?,video6996,170460,9 11881,6996,man,who cleans out a cup with a rag?,video6996,170461,9 11882,6996,man,who is cleaning out a car part?,video6996,170462,9 11883,6996,someone,what is cleaning out a distributor cap?,video6996,170463,9 11884,6996,auto,what is a person cleaning?,video6996,170464,9 11885,6996,distributor,what is someone cleaning out?,video6996,170465,9 11886,6996,tray,what does a man clean?,video6996,170466,9 11887,6996,piece,what is a man cleaning?,video6996,170467,9 11888,6996,clean,what is a man doing?,video6996,170468,9 11889,6996,hold,what is a man doing?,video6996,170469,9 11890,6996,wear,what is a man doing?,video6996,170470,9 11891,6996,wipe,what is a man doing?,video6996,170471,9 11892,6996,clean,what is a person doing?,video6996,170472,9 11893,6996,clean,what is mechanic doing?,video6996,170473,9 11894,6996,part,what is a man cleaning out?,video6996,170474,9 11895,6996,clean,what is mechanic man doing?,video6996,170475,9 11896,6996,clean,what is someone doing?,video6996,170476,9 11897,6997,demonstrate,what is a girl doing?,video6997,170477,14 11898,6997,craft,what is a girl doing?,video6997,170478,14 11899,6997,show,what is a girl doing?,video6997,170479,14 11900,6997,tie,what is a girl doing?,video6997,170480,14 11901,6997,put,what is a girl doing?,video6997,170481,14 11902,6997,demonstrate,what is a woman doing?,video6997,170482,14 11903,6997,explain,what is a girl doing?,video6997,170483,14 11904,6997,project,what does a girl make a little pail as?,video6997,170484,14 11905,6997,two,how many buckets is a girl tying together using rope?,video6997,170485,14 11906,6997,pail,what does a girl make as a project?,video6997,170486,14 11907,6997,girl,who shows how to tie buckets together?,video6997,170487,14 11908,6997,girl,who is crafting with small buckets?,video6997,170488,14 11909,6997,teenage,who ties three small buckets together?,video6997,170489,14 11910,6997,two,how many buckets does a child tie together?,video6997,170490,14 11911,6997,girl,who is tying a knot?,video6997,170491,14 11912,6997,girl,who did an art project?,video6997,170492,14 11913,6997,girl,who is making crafts?,video6997,170493,14 11914,6997,girl,who is tying cups together?,video6997,170494,14 11915,6997,child,who ties two buckets together?,video6997,170495,14 11916,6997,project,what did the little girl do?,video6997,170496,14 11917,6997,knot,what is a girl tying?,video6997,170497,14 11918,6997,bucket,what do a girl putting a handle on?,video6997,170498,14 11919,6997,girl,who is tying two buckets together using rope?,video6997,170499,14 11920,6997,girl,who is doing magic by using classes?,video6997,170500,14 11921,6997,three,how many small buckets does a teenage girl tie together?,video6997,170501,14 11922,6997,woman,who is demonstrating how to make some crafts?,video6997,170502,14 11923,6997,girl,who makes a little pail as a project?,video6997,170503,14 11924,6997,girl,who is demonstrating how to make a craft with buckets and rope?,video6997,170504,14 11925,6997,girl,who is showing how to make a craft?,video6997,170505,14 11926,6998,food,what does a girl talking while a boy have in his mouth?,video6998,170506,17 11927,6998,boy,who is a girl feeding food to?,video6998,170507,17 11928,6998,food,what is a girl feeding to a boy?,video6998,170508,17 11929,6998,feeding,what richard food?,video6998,170509,17 11930,6998,girl,who is feeding food to a boy?,video6998,170510,17 11931,6998,kitchen,what is a person making food in for someone else?,video6998,170511,17 11932,6998,food,what are kids eating?,video6998,170512,17 11933,6998,food,what are two children in a kitchen eating?,video6998,170513,17 11934,6998,someone,what is a person making food in the kitchen for?,video6998,170514,17 11935,6998,richard,who does girl prepare food for?,video6998,170515,17 11936,6998,mouth,what does a girl talking while a boy have food in?,video6998,170516,17 11937,6998,food,what does girl prepare for richard?,video6998,170517,17 11938,6998,girl,who is feeding a man?,video6998,170518,17 11939,6998,food,what did girl feeding richard?,video6998,170519,17 11940,6998,man,who is a girl feeding?,video6998,170520,17 11941,6998,food,what does mouth s a girl is putting into a boy?,video6998,170521,17 11942,6998,girl,who prepares food for richard?,video6998,170522,17 11943,6998,food,what is a person making in the kitchen for someone else?,video6998,170523,17 11944,6998,girl,who does mouth s is putting food into a boy?,video6998,170524,17 11945,6998,play,what is two kids doing?,video6998,170525,17 11946,6998,eat,what is two children are in a kitchen doing?,video6998,170526,17 11947,6998,feed,what is little girl doing?,video6998,170527,17 11948,6998,person,who is making food in the kitchen for someone else?,video6998,170528,17 11949,6998,feed,what is girl doing?,video6998,170529,17 11950,6998,eat,what are kids doing?,video6998,170530,17 11951,6998,put,what is a girl doing?,video6998,170531,17 11952,6998,talk,what is a girl doing?,video6998,170532,17 11953,6998,boy,who does mouth s a girl is putting food into?,video6998,170533,17 11954,6998,mouth,what s a girl is putting food into a boy?,video6998,170534,17 11955,6998,two,how many children are in a kitchen eating food?,video6998,170535,17 11956,6998,girl,who stuffs a boy food face with food saying he likes it?,video6998,170536,17 11957,6998,girl,who feeds a friend that is dressed in male attire?,video6998,170537,17 11958,6998,feed,what is a girl doing?,video6998,170538,17 11959,6999,play,what is a child doing?,video6999,170539,10 11960,6999,decorate,what is a person doing?,video6999,170540,10 11961,6999,show,what is a person doing?,video6999,170541,10 11962,6999,show,what is a woman doing?,video6999,170542,10 11963,6999,play,what is person doing?,video6999,170543,10 11964,6999,demonstrate,what is someone doing?,video6999,170544,10 11965,6999,draw,what is someone doing?,video6999,170545,10 11966,6999,play,what is the kids doing?,video6999,170546,10 11967,6999,play,what is a man doing?,video6999,170547,10 11968,6999,toy,what does a woman showing how to play with a childs?,video6999,170548,10 11969,6999,someone,what is playing with a board game?,video6999,170549,10 11970,6999,person,who is showing a toy?,video6999,170550,10 11971,6999,person,who is making art?,video6999,170551,10 11972,6999,product,what does a perosn show off?,video6999,170552,10 11973,6999,device,what is someone drawing on?,video6999,170553,10 11974,6999,tool,what does a kid s is demonstrated?,video6999,170554,10 11975,6999,someone,who is demonstrating a toy?,video6999,170555,10 11976,6999,puzzle,what is a man playing with?,video6999,170556,10 11977,6999,toy,what is someone demonstrating?,video6999,170557,10 11978,6999,art,what is a person making?,video6999,170558,10 11979,6999,toy,what is a person showing?,video6999,170559,10 11980,6999,art,what does a person decorate?,video6999,170560,10 11981,6999,perosn,who shows off a new product?,video6999,170561,10 11982,6999,someone,who is drawing on a device?,video6999,170562,10 11983,6999,kid,who s art tool is demonstrated?,video6999,170563,10 11984,6999,board,what do the kids playing games along with sketch to be placed on?,video6999,170564,10 11985,6999,toy,what s someone is playing with a children?,video6999,170565,10 11986,6999,someone,what does toy s is playing with a children?,video6999,170566,10 11987,6999,man,who demonstrates how to use a toy?,video6999,170567,10 11988,6999,man,who is playing with puzzle?,video6999,170568,10 11989,6999,child,who plays with an art table?,video6999,170569,10 11990,6999,child,who is playing with an art toy?,video6999,170570,10 11991,6999,person,who decorating an art toy?,video6999,170571,10 11992,7000,woman,who is talking about the advancement of prosthetics?,video7000,170572,12 11993,7000,girl,who is explaining about pulse of human body?,video7000,170573,12 11994,7000,become,what is the world of prosthetics doing?,video7000,170574,12 11995,7000,talk,what is a woman doing?,video7000,170575,12 11996,7000,discus,what is a woman doing?,video7000,170576,12 11997,7000,hold,what is a person doing?,video7000,170577,12 11998,7000,explain,what is a girl doing?,video7000,170578,12 11999,7000,woman,who is talking about advancement of prosthetics?,video7000,170579,12 12000,7000,woman,who talks about prosthetic body parts?,video7000,170580,12 12001,7000,doctor,who sets up prostetics on a patient?,video7000,170581,12 12002,7000,device,what is a person holding?,video7000,170582,12 12003,7000,person,who is holding an electronic device?,video7000,170583,12 12004,7000,woman,who puts in contacts?,video7000,170584,12 12005,7000,woman,who is talking about prosthetic parts?,video7000,170585,12 12006,7000,eye,what does a woman pick at a spot beneath?,video7000,170586,12 12007,7000,technology,what is shown for the eye and heart?,video7000,170587,12 12008,7000,woman,who is talking about biology and prosthetic parts?,video7000,170588,12 12009,7001,kis,what is an animated man doing?,video7001,170589,3 12010,7001,explain,what is a person doing?,video7001,170590,3 12011,7001,put,what is a man doing?,video7001,170591,3 12012,7001,play,what is a man doing?,video7001,170592,3 12013,7001,narrate,what is a man doing?,video7001,170593,3 12014,7001,man,who is narrating a golf game?,video7001,170594,3 12015,7001,man,who is putting a golfball?,video7001,170595,3 12016,7001,man,who is having golf bat?,video7001,170596,3 12017,7001,someone,who is commentating golf?,video7001,170597,3 12018,7001,man,who reviews a golf videogame?,video7001,170598,3 12019,7001,man,who is playing a golf video game?,video7001,170599,3 12020,7001,play,what are men doing?,video7001,170600,3 12021,7001,person,who is playing a video game?,video7001,170601,3 12022,7001,commentate,what is someone doing?,video7001,170602,3 12023,7001,man,who is playing golf?,video7001,170603,3 12024,7001,person,who is explaining something?,video7001,170604,3 12025,7001,golf,what is a man having?,video7001,170605,3 12026,7001,video,what is a person playing?,video7001,170606,3 12027,7001,videogame,what does man review?,video7001,170607,3 12028,7001,something,what is a person explaining?,video7001,170608,3 12029,7001,golfball,who is a man putting?,video7001,170609,3 12030,7001,video,what is someone playing?,video7001,170610,3 12031,7001,golf,what is someone commentating?,video7001,170611,3 12032,7001,someone,what is playing a video game?,video7001,170612,3 12033,7001,golf,what is a man narrating?,video7001,170613,3 12034,7002,bike,what does a rider fall from while riding very fast?,video7002,170614,9 12035,7002,control,what do the man lose in a bike race?,video7002,170615,9 12036,7002,motorbike,what looses its control?,video7002,170616,9 12037,7002,motorcycle,what does a person fall off?,video7002,170617,9 12038,7002,bike,what can man be ahead down?,video7002,170618,9 12039,7002,control,what does motorbike loose?,video7002,170619,9 12040,7002,fall,what is a motorcycle driver doing?,video7002,170620,9 12041,7002,crash,what is a guy on a motorcycle doing?,video7002,170621,9 12042,7002,skid,what is a bike rider doing?,video7002,170622,9 12043,7002,kneel,what is crash and burn on a motorcycle end with him doing?,video7002,170623,9 12044,7002,bike,what is a racer falling down from?,video7002,170624,9 12045,7002,fall,what is a racer doing?,video7002,170625,9 12046,7002,look,what is an accident happened in road rash many others doing?,video7002,170626,9 12047,7002,move,what is a person falls off a doing?,video7002,170627,9 12048,7002,racer,who is escaping?,video7002,170628,9 12049,7002,man,who can be ahead down the bike?,video7002,170629,9 12050,7002,fall,what is a man doing?,video7002,170630,9 12051,7002,person,who falls off a moving motorcycle?,video7002,170631,9 12052,7002,person,who tumbles along the pavement with the motorcycle skidding along behind?,video7002,170632,9 12053,7002,racer,who got skit on road while riding his motor cycle?,video7002,170633,9 12054,7002,crash,what did a motorcycle and a rider skid along a roadway after?,video7002,170634,9 12055,7002,roadway,what did a motorcycle and a rider skid along after a crash?,video7002,170635,9 12056,7002,road,what did a racer get skit on while riding his motor cycle?,video7002,170636,9 12057,7002,rider,who falls from his bike while riding very fast?,video7002,170637,9 12058,7002,skit,what did a racer get on road while riding his motor cycle?,video7002,170638,9 12059,7002,road,what is a guy on a motorcycle crashing in?,video7002,170639,9 12060,7002,racer,who is falling down from the bike?,video7002,170640,9 12061,7002,asphalt,what does a man riding a motorcycle that flips over the handle bar onto?,video7002,170641,9 12062,7002,speed,when did a man riding in the bike and a racer fall down due to?,video7002,170642,9 12063,7002,street,what is a guy on a motorcycle crashing on?,video7002,170643,9 12064,7003,man,who is talking?,video7003,170644,19 12065,7003,mes,what is a man tries to get another person s attention by doing?,video7003,170645,19 12066,7003,mes,what is a man doing?,video7003,170646,19 12067,7003,wear,what is a man doing?,video7003,170647,19 12068,7003,talk,what is a man doing?,video7003,170648,19 12069,7003,sit,what is a man doing?,video7003,170649,19 12070,7003,read,what is man doing?,video7003,170650,19 12071,7003,camera,what does a man talk directly to?,video7003,170651,19 12072,7003,man,who tries to get another person s attention by messing with his newspaper?,video7003,170652,19 12073,7003,person,who does a man try to get s attention by messing with his newspaper?,video7003,170653,19 12074,7003,attention,what does a man try to get another person s by messing with his newspaper?,video7003,170654,19 12075,7003,man,who approaches a man on a bench?,video7003,170655,19 12076,7003,bench,what is a man sitting down on reading a newspaper?,video7003,170656,19 12077,7003,man,who is talking about his personal experience?,video7003,170657,19 12078,7003,man,who is making fun with others?,video7003,170658,19 12079,7003,man,who wore a black hat?,video7003,170659,19 12080,7003,man,who is wearing a small hat?,video7003,170660,19 12081,7003,man,who talks about his antics?,video7003,170661,19 12082,7003,hat,what is a man wearing?,video7003,170662,19 12083,7003,fun,what is a man making with others?,video7003,170663,19 12084,7003,man,who talks directly to a camera?,video7003,170664,19 12085,7003,man,who is sitting down on a bench reading a newspaper?,video7003,170665,19 12086,7003,man,who is talking to another man seated reading the newspaper?,video7003,170666,19 12087,7003,hat,what did the man wear?,video7003,170667,19 12088,7004,trampoline,what does the boy bounce on?,video7004,170668,10 12089,7004,boy,who is jumping in a net?,video7004,170669,10 12090,7004,trampoline,what does a boy bounce on?,video7004,170670,10 12091,7004,trampoline,what does a young boy spins on?,video7004,170671,10 12092,7004,mat,what is a boy playing in going up and down?,video7004,170672,10 12093,7004,trampoline,what is a boy jumping up and down on?,video7004,170673,10 12094,7004,boy,who jumps on a trampoline?,video7004,170674,10 12095,7004,boy,who bounces on the trampoline?,video7004,170675,10 12096,7004,boy,who was jumping in trampoline?,video7004,170676,10 12097,7004,boy,who does spins on a trampoline?,video7004,170677,10 12098,7004,boy,who is playing in a mat going up and down?,video7004,170678,10 12099,7004,boy,who is jumping up and down on a trampoline?,video7004,170679,10 12100,7004,jump,what is a boy doing?,video7004,170680,10 12101,7004,play,what is a boy doing?,video7004,170681,10 12102,7004,jump,what is a child doing?,video7004,170682,10 12103,7004,jump,what is a kid doing?,video7004,170683,10 12104,7004,jump,what is boy doing?,video7004,170684,10 12105,7004,watch,what are people doing?,video7004,170685,10 12106,7004,kid,who is jumping outside on a trampoline?,video7004,170686,10 12107,7004,jump,what is person doing?,video7004,170687,10 12108,7004,jump,what was the boy doing?,video7004,170688,10 12109,7004,boy,who is jumping in a covered trampoline?,video7004,170689,10 12110,7004,trampoline,what was the boy jumping in?,video7004,170690,10 12111,7004,trampoline,what does a boy jump on?,video7004,170691,10 12112,7004,kid,who spins?,video7004,170692,10 12113,7004,boy,who jumps?,video7004,170693,10 12114,7004,boy,who twists?,video7004,170694,10 12115,7005,phil,who is listening to a woman on his show?,video7005,170695,1 12116,7005,discus,what is a group of people doing?,video7005,170696,1 12117,7005,talk,what is a group of women doing?,video7005,170697,1 12118,7005,talk,what is a person doing?,video7005,170698,1 12119,7005,think,what is a woman talks about people doing?,video7005,170699,1 12120,7005,listen,what is dr phil doing?,video7005,170700,1 12121,7005,ask,what is phil doing?,video7005,170701,1 12122,7005,talk,what is there are people doing?,video7005,170702,1 12123,7005,stage,what do people talk on during the dr phil program?,video7005,170703,1 12124,7005,woman,who speaks to a tv show host?,video7005,170704,1 12125,7005,woman,who is phil talking to?,video7005,170705,1 12126,7005,phil,who is talking to a woman?,video7005,170706,1 12127,7005,phil,who is talking to several people?,video7005,170707,1 12128,7005,phil,who talks to women?,video7005,170708,1 12129,7005,phil,who is asking questions to a lady?,video7005,170709,1 12130,7005,lady,who is phil asking questions to?,video7005,170710,1 12131,7005,phil,who spoke to the women?,video7005,170711,1 12132,7006,dance,what is a man doing?,video7006,170712,7 12133,7006,act,what are people doing?,video7006,170713,7 12134,7006,dance,what is this is a video on indian guys doing?,video7006,170714,7 12135,7006,talk,what are two man s doing?,video7006,170715,7 12136,7006,dance,what are two men doing?,video7006,170716,7 12137,7006,perform,what are two men doing?,video7006,170717,7 12138,7006,dance,what are two people doing?,video7006,170718,7 12139,7006,talk,what is clip of guys doing?,video7006,170719,7 12140,7006,stage,when are two man s talking to each other?,video7006,170720,7 12141,7006,man,what are talking to each other in a stage?,video7006,170721,7 12142,7006,scene,where are two men dancing?,video7006,170722,7 12143,7006,two,how many men are talking?,video7006,170723,7 12144,7006,man,who is dancing on stage?,video7006,170724,7 12145,7006,scene,what are two men dancing on?,video7006,170725,7 12146,7006,two,how many people are dancing?,video7006,170726,7 12147,7006,stage,when is a man dancing?,video7006,170727,7 12148,7006,stage,when did two bollywood actors ham it up?,video7006,170728,7 12149,7006,indium,where did a bollywood dance stage program on sony tv?,video7006,170729,7 12150,7006,two,how many men do a bollywood comedy sketch for an audience?,video7006,170730,7 12151,7006,two,how many men are performing in front of judges?,video7006,170731,7 12152,7006,two,how many men are dancing on stage for an audience?,video7006,170732,7 12153,7006,two,how many men does a man in an angry birds shirt watch dance on stage?,video7006,170733,7 12154,7006,two,how many men are dancing on a scene?,video7006,170734,7 12155,7006,man,who speaks to another man on stage?,video7006,170735,7 12156,7006,two,how many man s are talking to each other in a stage?,video7006,170736,7 12157,7006,indium,what did a bollywood dance stage program on sony tv in?,video7006,170737,7 12158,7006,program,what did a bollywood on sony tv in india?,video7006,170738,7 12159,7006,stage,when does a man in an angry birds shirt watch two men dance?,video7006,170739,7 12160,7006,comedy,what show?,video7006,170740,7 12161,7007,bottom,where did two asian women having a conversation with the dialogue close captioned?,video7007,170741,14 12162,7007,talk,what is a woman is emotionally doing?,video7007,170742,14 12163,7007,talk,what is a woman cries while doing?,video7007,170743,14 12164,7007,talk,what is a woman doing?,video7007,170744,14 12165,7007,discussion,what do two asian women having?,video7007,170745,14 12166,7007,woman,who is a woman talking to?,video7007,170746,14 12167,7007,woman,who talks to another?,video7007,170747,14 12168,7007,woman,who is talking to another woman?,video7007,170748,14 12169,7007,woman,who is a woman emotionally talking to?,video7007,170749,14 12170,7007,woman,who is emotionally talking to another woman?,video7007,170750,14 12171,7007,room,what does a woman speak to another woman in?,video7007,170751,14 12172,7007,woman,who does a woman speak to in a room?,video7007,170752,14 12173,7007,woman,who cries while talking to another woman?,video7007,170753,14 12174,7007,woman,who speaks to another woman in a room?,video7007,170754,14 12175,7007,bottom,what did two asian women having a conversation with the dialogue close captioned on?,video7007,170755,14 12176,7007,woman,who is talking?,video7007,170756,14 12177,7007,lecture,what is an asian soap opera a young woman is distressed and her mother doing?,video7007,170757,14 12178,7007,talk,what is lady in distress doing?,video7007,170758,14 12179,7007,talk,what is two nicely dressed women doing?,video7007,170759,14 12180,7007,talk,what is woman doing?,video7007,170760,14 12181,7008,place,what to be?,video7008,170761,11 12182,7008,play,what is i see people doing?,video7008,170762,11 12183,7008,jump,what are a group of people doing?,video7008,170763,11 12184,7008,fall,what are a water doing?,video7008,170764,11 12185,7008,dive,what is someone doing?,video7008,170765,11 12186,7008,sail,what are a man jumps into a natural pool beneath a waterfall and small boats doing?,video7008,170766,11 12187,7008,swim,what are two men doing?,video7008,170767,11 12188,7008,move,what is a mountain water falls from up man diving in water scene and land shown on screen trees beside ship doing?,video7008,170768,11 12189,7008,jump,what is a water fall is scene and a man doing?,video7008,170769,11 12190,7008,wait,what are water falls are shown and it is near by the lake where the motor boats doing?,video7008,170770,11 12191,7008,stand,what is a man doing?,video7008,170771,11 12192,7008,two,how many men are swimming?,video7008,170772,11 12193,7008,water,what falls are shown?,video7008,170773,11 12194,7008,person,who jumps into the deeper water?,video7008,170774,11 12195,7008,mountain,what falls from up man diving in water scene and land shown on screen trees beside ship moving in water displaying on screen?,video7008,170775,11 12196,7008,pond,what are a group of people jumping into then some boats go by on a river?,video7008,170776,11 12197,7008,man,who jumps into a pool under a waterfall and then another scene of a boat traveling by a group of other boats?,video7008,170777,11 12198,7008,boat,what are floating in a lake?,video7008,170778,11 12199,7008,water,what are falling from the small hill?,video7008,170779,11 12200,7008,river,what are small boats sailing on?,video7008,170780,11 12201,7008,lake,what are some boat floating in?,video7008,170781,11 12202,7008,water,what is near by the lake?,video7008,170782,11 12203,7008,man,who is jumping into there?,video7008,170783,11 12204,7008,trip,what are many boats ready for?,video7008,170784,11 12205,7008,pool,what does a man jump into under a waterfall and then another scene of a boat traveling by a group of other boats?,video7008,170785,11 12206,7008,motor,what falls a man jumped in the water falls?,video7008,170786,11 12207,7008,boat,what is a man standing next to waterfall a man is jumping into the water is driving in the water?,video7008,170787,11 12208,7008,water,what does a man jump in then a boat drives down a river?,video7008,170788,11 12209,7008,someone,what is diving into the water where there is a water fall?,video7008,170789,11 12210,7008,someone,what is diving into the water where boats are passing by in a water?,video7008,170790,11 12211,7008,water,what is someone diving into where there is a water fall?,video7008,170791,11 12212,7008,water,what is someone diving into where boats are passing by in a water?,video7008,170792,11 12213,7008,person,who stands on a ledge adjacent to a waterfall?,video7008,170793,11 12214,7008,man,who jumps into a natural pool beneath a waterfall?,video7008,170794,11 12215,7008,man,who is standing in front of a waterfall while boat passing by?,video7008,170795,11 12216,7008,man,who jumps into the water under a waterfall to swim with a woman?,video7008,170796,11 12217,7008,man,who stands near a waterfall and jumps in the water then a boat drives off?,video7008,170797,11 12218,7008,man,who is standing next to waterfall a man is jumping into the water a boat is driving in the water?,video7008,170798,11 12219,7008,man,who jumps in the water then a boat drives down a river?,video7008,170799,11 12220,7008,water,what does a man jump into under a waterfall to swim with a woman?,video7008,170800,11 12221,7008,man,who is a man standing next to waterfall is jumping into the water a boat is driving in the water?,video7008,170801,11 12222,7008,waterfall,what does a man jump into a natural pool beneath?,video7008,170802,11 12223,7008,river,what do man jumps in to the water fall boats move in?,video7008,170803,11 12224,7008,ship,what does a mountain water fall from up man diving in water scene and land shown on screen trees beside moving in water displaying on screen?,video7008,170804,11 12225,7008,water,what does a mountain water fall from up man diving in water scene and land shown on screen trees beside ship moving in displaying on screen?,video7008,170805,11 12226,7008,screen,what does a mountain water fall from up man diving in water scene and land shown on beside ship moving in water displaying on screen?,video7008,170806,11 12227,7008,water,what is a man standing next to waterfall a man is jumping into a boat is driving in the water?,video7008,170807,11 12228,7008,water,what is a man standing next to waterfall a man is jumping into the water a boat is driving in?,video7008,170808,11 12229,7008,waterfall,what does a man with swim shorts on jump into a pool of water under?,video7008,170809,11 12230,7008,lake,what is the deeper water near by?,video7008,170810,11 12231,7008,motor,what are waiting for the trip?,video7008,170811,11 12232,7008,trip,what are the motor boats waiting for?,video7008,170812,11 12233,7008,water,when is scene?,video7008,170813,11 12234,7008,bathing,what are a people?,video7008,170814,11 12235,7008,scene,what is a water fall?,video7008,170815,11 12236,7009,woman,who does a man pull up s skirt?,video7009,170816,19 12237,7009,dres,what does the man pull up the woman s on the sidewalk?,video7009,170817,19 12238,7009,sidewalk,what does the man pull up the woman s dress on?,video7009,170818,19 12239,7009,man,who pulls up the lady s dress?,video7009,170819,19 12240,7009,dres,what does a man in all black lift up?,video7009,170820,19 12241,7009,street,what is a man in all black walking down?,video7009,170821,19 12242,7009,lady,who does the man pull up s dress?,video7009,170822,19 12243,7009,street,what does a man talking sitting at a table then lift up a women dress?,video7009,170823,19 12244,7009,skirt,what does a man in a black hat and shirt lifts a woman s?,video7009,170824,19 12245,7009,woman,who s skirt a man is lifting up?,video7009,170825,19 12246,7009,man,who walks to a woman in a market?,video7009,170826,19 12247,7009,woman,who does the man pull up s dress on the sidewalk?,video7009,170827,19 12248,7009,scene,what is shown from a commercial or movie of a guy walking down a street?,video7009,170828,19 12249,7009,man,who pulls up the woman s dress on the sidewalk?,video7009,170829,19 12250,7009,walk,what is a man in all black doing?,video7009,170830,19 12251,7009,lift,what is a man doing?,video7009,170831,19 12252,7009,talk,what is a man doing?,video7009,170832,19 12253,7009,wear,what is a man doing?,video7009,170833,19 12254,7009,walk,what is a scene is shown from a commercial or movie of a guy doing?,video7009,170834,19 12255,7009,lift,what is man doing?,video7009,170835,19 12256,7009,man,who pulls up a woman s skirt?,video7009,170836,19 12257,7009,dres,what does the man pull up the lady s?,video7009,170837,19 12258,7009,man,who does a woman s skirt is lifting up?,video7009,170838,19 12259,7009,street,what does a man talking sitting at a table then walk down?,video7009,170839,19 12260,7009,man,who is talking?,video7009,170840,19 12261,7009,man,who walks away?,video7009,170841,19 12262,7009,dres,what does a man lift?,video7009,170842,19 12263,7009,hat,what is a man wearing?,video7009,170843,19 12264,7009,skirt,what does a man lift up?,video7009,170844,19 12265,7009,skirt,what does a man pull up a woman s?,video7009,170845,19 12266,7009,man,who explains how he is misunderstood?,video7009,170846,19 12267,7009,man,who is wearing a small hat?,video7009,170847,19 12268,7009,woman,who does a man walk by?,video7009,170848,19 12269,7009,lady,who does a man walk up to?,video7009,170849,19 12270,7009,skirt,what does man lifting up a woman s?,video7009,170850,19 12271,7009,man,who talks about how he was always misunderstood?,video7009,170851,19 12272,7009,skirt,what does a woman s a man is lifting up?,video7009,170852,19 12273,7009,man,who walks up to a lady?,video7009,170853,19 12274,7009,man,who bother people in public?,video7009,170854,19 12275,7009,man,who talks about how he is misunderstood?,video7009,170855,19 12276,7009,man,who lifts a womens skirt up?,video7009,170856,19 12277,7009,man,who walks by a woman?,video7009,170857,19 12278,7009,street,what does a man talking sitting at a table then lift up a women?,video7009,170858,19 ================================================ FILE: data/open_ended_qa/MSVD_QA.csv ================================================ ,video_id,answer,question,video_name,question_id,question_type 1,1201,someone,who pours liquid from a plastic container into a ziploc bag containing meat pieces?,bQJQGoJF7_k_162_169,1201_30933,0 2,1201,man,who pours a seasoning liquid from a plastic container over chicken pieces placed in a plastic pouch?,bQJQGoJF7_k_162_169,1201_30934,0 3,1201,person,who pours marinade in a bag of chicken?,bQJQGoJF7_k_162_169,1201_30935,0 4,1201,man,who pours sauce into a plastic bag full of meat?,bQJQGoJF7_k_162_169,1201_30936,0 5,1201,man,who is dumping marinade into a bag of meat?,bQJQGoJF7_k_162_169,1201_30937,0 6,1201,man,who is pouring marinade from a bowl into a bag?,bQJQGoJF7_k_162_169,1201_30938,0 7,1201,man,who poured the marinade on the chicken in the bag?,bQJQGoJF7_k_162_169,1201_30939,0 8,1201,cook,who pours marinade on slices of meat?,bQJQGoJF7_k_162_169,1201_30940,0 9,1201,man,who poured the sauce over the chicken in the bag?,bQJQGoJF7_k_162_169,1201_30941,0 10,1201,person,who is pouring sauce into a bag of meat?,bQJQGoJF7_k_162_169,1201_30942,0 11,1201,person,who is putting raw meat and marinade in a bag?,bQJQGoJF7_k_162_169,1201_30943,0 12,1201,seasoning,what does a man pour from a plastic container over chicken pieces placed in a plastic pouch?,bQJQGoJF7_k_162_169,1201_30944,0 13,1201,man,who puts some marinade sauce on meat?,bQJQGoJF7_k_162_169,1201_30945,0 14,1201,man,who is filling up a bag with meat?,bQJQGoJF7_k_162_169,1201_30946,0 15,1201,sauce,what does a man pour into a plastic bag full of meat?,bQJQGoJF7_k_162_169,1201_30947,0 16,1201,man,who is pouring marinade over the chicken?,bQJQGoJF7_k_162_169,1201_30948,0 17,1201,marinade,what does a cook pour on slices of meat?,bQJQGoJF7_k_162_169,1201_30949,0 18,1201,chicken,what did the man pour the marinade on in the bag?,bQJQGoJF7_k_162_169,1201_30950,0 19,1201,bag,what did the man pour the marinade on the chicken in?,bQJQGoJF7_k_162_169,1201_30951,0 20,1201,bag,what is a man pouring marinade from a bowl into?,bQJQGoJF7_k_162_169,1201_30952,0 21,1201,bowl,what is a man pouring marinade from into a bag?,bQJQGoJF7_k_162_169,1201_30953,0 22,1201,chicken,what did the man pour the sauce over in the bag?,bQJQGoJF7_k_162_169,1201_30954,0 23,1201,bag,what did the man pour the sauce over the chicken in?,bQJQGoJF7_k_162_169,1201_30955,0 24,1201,marinade,what is a man dumping into a bag of meat?,bQJQGoJF7_k_162_169,1201_30956,0 25,1201,sauce,what did the man pour over the chicken in the bag?,bQJQGoJF7_k_162_169,1201_30957,0 26,1201,marinade,what did the man pour on the chicken in the bag?,bQJQGoJF7_k_162_169,1201_30958,0 27,1201,marinade,what is a man pouring from a bowl into a bag?,bQJQGoJF7_k_162_169,1201_30959,0 28,1201,sauce,what is a person pouring into a bag of meat?,bQJQGoJF7_k_162_169,1201_30960,0 29,1201,meat,what does a man put some marinade sauce on?,bQJQGoJF7_k_162_169,1201_30961,0 30,1201,bag,what is a person putting raw meat and marinade in?,bQJQGoJF7_k_162_169,1201_30962,0 31,1201,marinade,what is the man pouring over the chicken?,bQJQGoJF7_k_162_169,1201_30963,0 32,1201,bag,what is a man filling up with meat?,bQJQGoJF7_k_162_169,1201_30964,0 33,1201,chicken,what is the man pouring marinade over?,bQJQGoJF7_k_162_169,1201_30965,0 34,1201,meat,what is a man filling up a bag with?,bQJQGoJF7_k_162_169,1201_30966,0 35,1201,man,who is adding oil to meat?,bQJQGoJF7_k_162_169,1201_30967,0 36,1201,marinade,what does a man put on meat?,bQJQGoJF7_k_162_169,1201_30968,0 37,1201,someone,who is marinating chicken?,bQJQGoJF7_k_162_169,1201_30969,0 38,1201,oil,what is a man adding to meat?,bQJQGoJF7_k_162_169,1201_30970,0 39,1201,man,who is packing a food?,bQJQGoJF7_k_162_169,1201_30971,0 40,1201,chicken,what is someone marinating?,bQJQGoJF7_k_162_169,1201_30972,0 41,1201,food,what is a man packing?,bQJQGoJF7_k_162_169,1201_30973,0 42,1201,fill,what is a man doing?,bQJQGoJF7_k_162_169,1201_30974,0 43,1201,contain,what is someone pours liquid from a plastic container into a ziploc bag doing?,bQJQGoJF7_k_162_169,1201_30975,0 44,1201,pack,what is a man doing?,bQJQGoJF7_k_162_169,1201_30976,0 45,1201,pmy,what is a person doing?,bQJQGoJF7_k_162_169,1201_30977,0 46,1201,dump,what is a man doing?,bQJQGoJF7_k_162_169,1201_30978,0 47,1201,marinate,what is someone doing?,bQJQGoJF7_k_162_169,1201_30979,0 48,1201,put,what is a person doing?,bQJQGoJF7_k_162_169,1201_30980,0 49,1201,season,what is a man pours a doing?,bQJQGoJF7_k_162_169,1201_30981,0 50,1201,pmy,what is the man doing?,bQJQGoJF7_k_162_169,1201_30982,0 51,1203,man,who did the lady make a plea with?,bSrpvMSuhPM_17_31,1203_30983,0 52,1203,lady,who made a plea with the man?,bSrpvMSuhPM_17_31,1203_30984,0 53,1203,plea,what did the lady make with the man?,bSrpvMSuhPM_17_31,1203_30985,0 54,1203,lady,who appealed to the man?,bSrpvMSuhPM_17_31,1203_30986,0 55,1203,man,who did the lady appeal to?,bSrpvMSuhPM_17_31,1203_30987,0 56,1203,man,who is talking to a woman?,bSrpvMSuhPM_17_31,1203_30988,0 57,1203,discussion,what do a man and a woman have?,bSrpvMSuhPM_17_31,1203_30989,0 58,1203,conversation,what are the man and woman having?,bSrpvMSuhPM_17_31,1203_30990,0 59,1203,woman,who is a man talking to?,bSrpvMSuhPM_17_31,1203_30991,0 60,1203,talk,what is a man doing?,bSrpvMSuhPM_17_31,1203_30992,0 61,1203,converse,what are a man and a woman doing?,bSrpvMSuhPM_17_31,1203_30993,0 62,1203,speak,what are a man and woman doing?,bSrpvMSuhPM_17_31,1203_30994,0 63,1203,speak,what is a man and woman doing?,bSrpvMSuhPM_17_31,1203_30995,0 64,1204,someone,who folded a piece of square green paper?,bXsKw3TOQXs_30_55,1204_30996,0 65,1204,person,who folds a piece of green paper several times?,bXsKw3TOQXs_30_55,1204_30997,0 66,1204,person,who is folding a small piece of paper?,bXsKw3TOQXs_30_55,1204_30998,0 67,1204,person,who is folding a piece of paper many different times?,bXsKw3TOQXs_30_55,1204_30999,0 68,1204,paper,what is a person folding a small piece of?,bXsKw3TOQXs_30_55,1204_31000,0 69,1204,someone,who folded a piece of green paper?,bXsKw3TOQXs_30_55,1204_31001,0 70,1204,person,who is folding paper to make something?,bXsKw3TOQXs_30_55,1204_31002,0 71,1204,person,who is folding a square paper piece?,bXsKw3TOQXs_30_55,1204_31003,0 72,1204,person,who folds a piece of paper?,bXsKw3TOQXs_30_55,1204_31004,0 73,1204,someone,who is folding a piece of paper?,bXsKw3TOQXs_30_55,1204_31005,0 74,1204,person,who folds a paper several times?,bXsKw3TOQXs_30_55,1204_31006,0 75,1204,paper,what does a person fold a piece of?,bXsKw3TOQXs_30_55,1204_31007,0 76,1204,paper,what did someone fold a piece of?,bXsKw3TOQXs_30_55,1204_31008,0 77,1204,paper,what is a person to make something?,bXsKw3TOQXs_30_55,1204_31009,0 78,1204,paper,what is someone folding a piece of?,bXsKw3TOQXs_30_55,1204_31010,0 79,1204,person,who folds up paper?,bXsKw3TOQXs_30_55,1204_31011,0 80,1204,person,who is folding a green paper?,bXsKw3TOQXs_30_55,1204_31012,0 81,1204,woman,who is folding paper?,bXsKw3TOQXs_30_55,1204_31013,0 82,1204,someone,who folds paper?,bXsKw3TOQXs_30_55,1204_31014,0 83,1204,paper,what does someone fold?,bXsKw3TOQXs_30_55,1204_31015,0 84,1204,paper,what does a person fold up?,bXsKw3TOQXs_30_55,1204_31016,0 85,1204,paper,what is a woman?,bXsKw3TOQXs_30_55,1204_31017,0 86,1204,paper,what is the person?,bXsKw3TOQXs_30_55,1204_31018,0 87,1204,person,who is folding?,bXsKw3TOQXs_30_55,1204_31019,0 88,1204,fold,what is a person doing?,bXsKw3TOQXs_30_55,1204_31020,0 89,1204,fold,what is a woman doing?,bXsKw3TOQXs_30_55,1204_31021,0 90,1204,fold,what is someone doing?,bXsKw3TOQXs_30_55,1204_31022,0 91,1204,fold,what is the person doing?,bXsKw3TOQXs_30_55,1204_31023,0 92,1205,man,who makes a sliding catch in a cricket match?,b_BuSVZwq6M_1_9,1205_31024,0 93,1205,man,who makes a great play in a cricket game?,b_BuSVZwq6M_1_9,1205_31025,0 94,1205,player,who is taking a catch in cricket?,b_BuSVZwq6M_1_9,1205_31026,0 95,1205,man,who makes a catch in cricket?,b_BuSVZwq6M_1_9,1205_31027,0 96,1205,catch,what does a fielder in cricket make?,b_BuSVZwq6M_1_9,1205_31028,0 97,1205,player,who made a terrific catch?,b_BuSVZwq6M_1_9,1205_31029,0 98,1205,baseball,who catches a fly ball?,b_BuSVZwq6M_1_9,1205_31030,0 99,1205,cricket,who makes an amazing catch?,b_BuSVZwq6M_1_9,1205_31031,0 100,1205,baseball,who made a great catch?,b_BuSVZwq6M_1_9,1205_31032,0 101,1205,man,who caught a ball?,b_BuSVZwq6M_1_9,1205_31033,0 102,1205,man,who caught the ball?,b_BuSVZwq6M_1_9,1205_31034,0 103,1205,man,who is catching a ball?,b_BuSVZwq6M_1_9,1205_31035,0 104,1205,catch,what did the baseball player make?,b_BuSVZwq6M_1_9,1205_31036,0 105,1205,catch,what does a cricket player make?,b_BuSVZwq6M_1_9,1205_31037,0 106,1205,ball,what does a baseball player catch?,b_BuSVZwq6M_1_9,1205_31038,0 107,1205,ball,what did the man catch?,b_BuSVZwq6M_1_9,1205_31039,0 108,1205,ball,what did a man catch?,b_BuSVZwq6M_1_9,1205_31040,0 109,1205,catch,what did the player make?,b_BuSVZwq6M_1_9,1205_31041,0 110,1205,baseball,what are men playing?,b_BuSVZwq6M_1_9,1205_31042,0 111,1205,ball,what is a man catching?,b_BuSVZwq6M_1_9,1205_31043,0 112,1205,catch,what is a man doing?,b_BuSVZwq6M_1_9,1205_31044,0 113,1205,play,what are men doing?,b_BuSVZwq6M_1_9,1205_31045,0 114,1206,man,who is playing a set of drums?,bb6V0Grtub4_174_185,1206_31046,0 115,1206,man,who is playing on drums?,bb6V0Grtub4_174_185,1206_31047,0 116,1206,man,who is playing drums?,bb6V0Grtub4_174_185,1206_31048,0 117,1206,man,who is playing some drums?,bb6V0Grtub4_174_185,1206_31049,0 118,1206,man,who is playing a drum set?,bb6V0Grtub4_174_185,1206_31050,0 119,1206,man,who plays the drums?,bb6V0Grtub4_174_185,1206_31051,0 120,1206,drummer,who played his drums?,bb6V0Grtub4_174_185,1206_31052,0 121,1206,man,who is playing the drums?,bb6V0Grtub4_174_185,1206_31053,0 122,1206,someone,what is playing drums?,bb6V0Grtub4_174_185,1206_31054,0 123,1206,play,what is a man doing?,bb6V0Grtub4_174_185,1206_31055,0 124,1206,play,what is someone doing?,bb6V0Grtub4_174_185,1206_31056,0 125,1206,play,what is a man seated doing?,bb6V0Grtub4_174_185,1206_31057,0 126,1206,play,what is the man doing?,bb6V0Grtub4_174_185,1206_31058,0 127,1207,cat,what is crawling on its back under a couch?,bkazguPsusc_74_85,1207_31059,0 128,1207,couch,what is a cat crawling on its back under?,bkazguPsusc_74_85,1207_31060,0 129,1207,cat,what is pulling itself under a sofa?,bkazguPsusc_74_85,1207_31061,0 130,1207,cat,what shimmied under the bed?,bkazguPsusc_74_85,1207_31062,0 131,1207,cat,what is crawling upside down under the couch?,bkazguPsusc_74_85,1207_31063,0 132,1207,cat,what is sliding upside down under a couch?,bkazguPsusc_74_85,1207_31064,0 133,1207,cat,what is crawling underneath a couch?,bkazguPsusc_74_85,1207_31065,0 134,1207,cat,what scootched itself under the bed?,bkazguPsusc_74_85,1207_31066,0 135,1207,sofa,what is a cat pulling itself under?,bkazguPsusc_74_85,1207_31067,0 136,1207,cat,what is sliding underneath a couch?,bkazguPsusc_74_85,1207_31068,0 137,1207,cat,what is crawling under sofa?,bkazguPsusc_74_85,1207_31069,0 138,1207,back,what is a cat crawling on under a couch?,bkazguPsusc_74_85,1207_31070,0 139,1207,cat,what moves around underneath a couch?,bkazguPsusc_74_85,1207_31071,0 140,1207,couch,what is a cat crawling upside down under?,bkazguPsusc_74_85,1207_31072,0 141,1207,cat,what is playing underneath a couch?,bkazguPsusc_74_85,1207_31073,0 142,1207,cat,what is crawling under a sofa?,bkazguPsusc_74_85,1207_31074,0 143,1207,cat,what is crawling under the sofa?,bkazguPsusc_74_85,1207_31075,0 144,1207,couch,what is a cat sliding upside down under?,bkazguPsusc_74_85,1207_31076,0 145,1207,cat,what slides along under the sofa?,bkazguPsusc_74_85,1207_31077,0 146,1207,cat,what is sliding under a couch?,bkazguPsusc_74_85,1207_31078,0 147,1207,bed,what did the cat shimmy under?,bkazguPsusc_74_85,1207_31079,0 148,1207,bed,what did the cat scootched itself under?,bkazguPsusc_74_85,1207_31080,0 149,1207,couch,what is a cat crawling underneath?,bkazguPsusc_74_85,1207_31081,0 150,1207,couch,what is a cat sliding underneath?,bkazguPsusc_74_85,1207_31082,0 151,1207,couch,what does a cat move around underneath?,bkazguPsusc_74_85,1207_31083,0 152,1207,couch,what is a cat playing underneath?,bkazguPsusc_74_85,1207_31084,0 153,1207,sofa,what does a cat slide along under?,bkazguPsusc_74_85,1207_31085,0 154,1207,sofa,what is the cat crawling under?,bkazguPsusc_74_85,1207_31086,0 155,1207,sofa,what is a cat crawling under?,bkazguPsusc_74_85,1207_31087,0 156,1207,couch,what is a cat sliding under?,bkazguPsusc_74_85,1207_31088,0 157,1207,slide,what is a cat doing?,bkazguPsusc_74_85,1207_31089,0 158,1207,crawl,what is a cat doing?,bkazguPsusc_74_85,1207_31090,0 159,1207,play,what is a cat doing?,bkazguPsusc_74_85,1207_31091,0 160,1207,pull,what is a cat doing?,bkazguPsusc_74_85,1207_31092,0 161,1207,lie,what is a cat doing?,bkazguPsusc_74_85,1207_31093,0 162,1207,slide,what is a cat on his back doing?,bkazguPsusc_74_85,1207_31094,0 163,1207,crawl,what is a cat us doing?,bkazguPsusc_74_85,1207_31095,0 164,1207,crawl,what is the cat doing?,bkazguPsusc_74_85,1207_31096,0 165,1208,man,who has a conversation with a younger man?,bmOy6p87TWI_26_35,1208_31097,0 166,1208,man,who is a man in a red shirt talking to in a white shirt?,bmOy6p87TWI_26_35,1208_31098,0 167,1208,two,how many men are talking to each other?,bmOy6p87TWI_26_35,1208_31099,0 168,1208,two,how many men are speaking to each other?,bmOy6p87TWI_26_35,1208_31100,0 169,1208,two,how many men are speaking each other?,bmOy6p87TWI_26_35,1208_31101,0 170,1208,two,how many indian men have a conversation?,bmOy6p87TWI_26_35,1208_31102,0 171,1208,two,how many indian men have a discussion?,bmOy6p87TWI_26_35,1208_31103,0 172,1208,two,how many people talk to each other?,bmOy6p87TWI_26_35,1208_31104,0 173,1208,two,how many men are having a discussion?,bmOy6p87TWI_26_35,1208_31105,0 174,1208,man,who talked to the young man?,bmOy6p87TWI_26_35,1208_31106,0 175,1208,two,how many men are talking?,bmOy6p87TWI_26_35,1208_31107,0 176,1208,boy,who confronted his dad?,bmOy6p87TWI_26_35,1208_31108,0 177,1208,conversation,what are the men having?,bmOy6p87TWI_26_35,1208_31109,0 178,1208,conversation,what do two indian men have?,bmOy6p87TWI_26_35,1208_31110,0 179,1208,discussion,what are two men having?,bmOy6p87TWI_26_35,1208_31111,0 180,1208,dad,who do the boy confront?,bmOy6p87TWI_26_35,1208_31112,0 181,1208,talk,what is a man in a red shirt doing?,bmOy6p87TWI_26_35,1208_31113,0 182,1208,speak,what are two men doing?,bmOy6p87TWI_26_35,1208_31114,0 183,1209,woman,who climbs down a vine and kneels by a cage?,bmvD4HlPFxg_20_27,1209_31115,0 184,1209,lady,who came down the tree on a vine?,bmvD4HlPFxg_20_27,1209_31116,0 185,1209,lady,who came down from the tree on a vine?,bmvD4HlPFxg_20_27,1209_31117,0 186,1209,tree,what did the lady come down on a vine?,bmvD4HlPFxg_20_27,1209_31118,0 187,1209,vine,what did the lady come down the tree on?,bmvD4HlPFxg_20_27,1209_31119,0 188,1209,ground,what does a woman with a weird hairdo come down a creeper and lands on?,bmvD4HlPFxg_20_27,1209_31120,0 189,1209,cage,what does a woman climb down a vine and kneels by?,bmvD4HlPFxg_20_27,1209_31121,0 190,1209,woman,who climbs down off of a vine?,bmvD4HlPFxg_20_27,1209_31122,0 191,1209,tree,what did the lady come down from on a vine?,bmvD4HlPFxg_20_27,1209_31123,0 192,1209,vine,what did the lady come down from the tree on?,bmvD4HlPFxg_20_27,1209_31124,0 193,1209,vine,what does a woman climb down off of?,bmvD4HlPFxg_20_27,1209_31125,0 194,1209,woman,who swings down a vine?,bmvD4HlPFxg_20_27,1209_31126,0 195,1209,woman,who slides down a vine?,bmvD4HlPFxg_20_27,1209_31127,0 196,1209,woman,who drops down a vine?,bmvD4HlPFxg_20_27,1209_31128,0 197,1209,woman,who is climbing down a vine?,bmvD4HlPFxg_20_27,1209_31129,0 198,1209,woman,who came down on a vine?,bmvD4HlPFxg_20_27,1209_31130,0 199,1209,woman,who is descending from a vine?,bmvD4HlPFxg_20_27,1209_31131,0 200,1209,woman,who is descending on a vine?,bmvD4HlPFxg_20_27,1209_31132,0 201,1209,woman,who is hanging on a vine?,bmvD4HlPFxg_20_27,1209_31133,0 202,1209,woman,who is climbing down a rope?,bmvD4HlPFxg_20_27,1209_31134,0 203,1209,vine,what does a woman climb down?,bmvD4HlPFxg_20_27,1209_31135,0 204,1209,vine,what does a woman swing down?,bmvD4HlPFxg_20_27,1209_31136,0 205,1209,vine,what does a woman slide down?,bmvD4HlPFxg_20_27,1209_31137,0 206,1209,vine,what did the woman come down on?,bmvD4HlPFxg_20_27,1209_31138,0 207,1209,vine,what does a woman drop down?,bmvD4HlPFxg_20_27,1209_31139,0 208,1209,vine,what does a women climb down?,bmvD4HlPFxg_20_27,1209_31140,0 209,1209,vine,what is a woman descending from?,bmvD4HlPFxg_20_27,1209_31141,0 210,1209,vine,what is a woman descending on?,bmvD4HlPFxg_20_27,1209_31142,0 211,1209,vine,what is a woman hanging on?,bmvD4HlPFxg_20_27,1209_31143,0 212,1209,rope,what is a woman climbing down?,bmvD4HlPFxg_20_27,1209_31144,0 213,1209,hang,what is a woman doing?,bmvD4HlPFxg_20_27,1209_31145,0 214,1209,climb,what is a woman doing?,bmvD4HlPFxg_20_27,1209_31146,0 215,1209,descend,what is a woman doing?,bmvD4HlPFxg_20_27,1209_31147,0 216,1210,woman,who is hitting volleyballs provided by another woman?,bmxIurBrW5s_51_70,1210_31148,0 217,1210,woman,who is practicing volleyball serves on the beach?,bmxIurBrW5s_51_70,1210_31149,0 218,1210,woman,who hands volleyballs to another woman who serves them?,bmxIurBrW5s_51_70,1210_31150,0 219,1210,woman,who is hitting a volleyball on the beach?,bmxIurBrW5s_51_70,1210_31151,0 220,1210,woman,who is hitting volleyballs over a net?,bmxIurBrW5s_51_70,1210_31152,0 221,1210,woman,who is smashing a ball in a practice?,bmxIurBrW5s_51_70,1210_31153,0 222,1210,beach,what is a woman practicing volleyball serves on?,bmxIurBrW5s_51_70,1210_31154,0 223,1210,volleyball,what is a woman practicing serves on the beach?,bmxIurBrW5s_51_70,1210_31155,0 224,1210,girl,who hit volleyballs over the net?,bmxIurBrW5s_51_70,1210_31156,0 225,1210,beach,what is a woman hitting a volleyball on?,bmxIurBrW5s_51_70,1210_31157,0 226,1210,practice,what is a woman smashing a ball in?,bmxIurBrW5s_51_70,1210_31158,0 227,1210,ball,what is a woman smashing in a practice?,bmxIurBrW5s_51_70,1210_31159,0 228,1210,volleyball,what is a woman hitting on the beach?,bmxIurBrW5s_51_70,1210_31160,0 229,1210,woman,who hits volleyballs at the beach?,bmxIurBrW5s_51_70,1210_31161,0 230,1210,woman,who volleyballs over a net?,bmxIurBrW5s_51_70,1210_31162,0 231,1210,woman,who is practicing volley ball?,bmxIurBrW5s_51_70,1210_31163,0 232,1210,woman,who is hitting volleyballs?,bmxIurBrW5s_51_70,1210_31164,0 233,1210,beach,what does a woman hit volleyballs at?,bmxIurBrW5s_51_70,1210_31165,0 234,1210,volley,what is a woman practicing?,bmxIurBrW5s_51_70,1210_31166,0 235,1210,volleyball,what are the women playing?,bmxIurBrW5s_51_70,1210_31167,0 236,1210,practice,what is a woman doing?,bmxIurBrW5s_51_70,1210_31168,0 237,1210,hit,what is a woman doing?,bmxIurBrW5s_51_70,1210_31169,0 238,1210,smash,what is a woman doing?,bmxIurBrW5s_51_70,1210_31170,0 239,1210,tos,what is a woman doing?,bmxIurBrW5s_51_70,1210_31171,0 240,1210,serve,what is a woman doing?,bmxIurBrW5s_51_70,1210_31172,0 241,1210,play,what are the women doing?,bmxIurBrW5s_51_70,1210_31173,0 242,1210,hit,what is woman doing?,bmxIurBrW5s_51_70,1210_31174,0 243,1211,two,how many men are shown firing two separate guns?,bnN_o0Hkn3M_73_80,1211_31175,0 244,1211,man,who is shown in separate sections of the video?,bnN_o0Hkn3M_73_80,1211_31176,0 245,1211,two,how many men are shooting their guns at a target range?,bnN_o0Hkn3M_73_80,1211_31177,0 246,1211,man,who is shooting firearms down a range?,bnN_o0Hkn3M_73_80,1211_31178,0 247,1211,man,who shot his guns at the targets?,bnN_o0Hkn3M_73_80,1211_31179,0 248,1211,man,who shot his guns at a target?,bnN_o0Hkn3M_73_80,1211_31180,0 249,1211,range,what is a man shooting firearms down?,bnN_o0Hkn3M_73_80,1211_31181,0 250,1211,target,what did a man shoot his guns at?,bnN_o0Hkn3M_73_80,1211_31182,0 251,1211,man,who fires a carbine and a handgun?,bnN_o0Hkn3M_73_80,1211_31183,0 252,1211,two,how many different guns does a man shoot?,bnN_o0Hkn3M_73_80,1211_31184,0 253,1211,man,who is firing a gun?,bnN_o0Hkn3M_73_80,1211_31185,0 254,1211,man,who shoots two different guns?,bnN_o0Hkn3M_73_80,1211_31186,0 255,1211,man,who is shooting off guns?,bnN_o0Hkn3M_73_80,1211_31187,0 256,1211,man,who is shooting guns?,bnN_o0Hkn3M_73_80,1211_31188,0 257,1211,man,who is shooting a rifle?,bnN_o0Hkn3M_73_80,1211_31189,0 258,1211,man,who is shooting a gun?,bnN_o0Hkn3M_73_80,1211_31190,0 259,1211,gun,what is a man shooting?,bnN_o0Hkn3M_73_80,1211_31191,0 260,1211,fire,what is a man doing?,bnN_o0Hkn3M_73_80,1211_31192,0 261,1211,shoot,what is a man doing?,bnN_o0Hkn3M_73_80,1211_31193,0 262,1211,shoot,what is the man doing?,bnN_o0Hkn3M_73_80,1211_31194,0 263,1211,shoot,what are two men doing?,bnN_o0Hkn3M_73_80,1211_31195,0 264,1211,fire,what is two men are shown doing?,bnN_o0Hkn3M_73_80,1211_31196,0 265,1212,three,how many little boys are playing in an inflatable swimming pool?,bqMmyY1ImkI_0_14,1212_31197,0 266,1212,three,how many boys are playing in an inflatable swimming pool?,bqMmyY1ImkI_0_14,1212_31198,0 267,1212,three,how many little boys are splashing in a wading pool?,bqMmyY1ImkI_0_14,1212_31199,0 268,1212,three,how many children are playing in a small inflatable swimming pool?,bqMmyY1ImkI_0_14,1212_31200,0 269,1212,three,how many boys splashed in the little pool?,bqMmyY1ImkI_0_14,1212_31201,0 270,1212,three,how many small boys splash around in a wading pool?,bqMmyY1ImkI_0_14,1212_31202,0 271,1212,three,how many kids play in a wading pool?,bqMmyY1ImkI_0_14,1212_31203,0 272,1212,three,how many boys are in a swimming pool?,bqMmyY1ImkI_0_14,1212_31204,0 273,1212,three,how many boys are swimming in a pool?,bqMmyY1ImkI_0_14,1212_31205,0 274,1212,three,how many boys are playing in a pool?,bqMmyY1ImkI_0_14,1212_31206,0 275,1212,three,how many children are playing in a pool?,bqMmyY1ImkI_0_14,1212_31207,0 276,1212,pool,what did the three little boys splash in?,bqMmyY1ImkI_0_14,1212_31208,0 277,1212,pool,what are children playing in?,bqMmyY1ImkI_0_14,1212_31209,0 278,1212,pool,what are three boys swimming in?,bqMmyY1ImkI_0_14,1212_31210,0 279,1212,pool,what are three boys playing in?,bqMmyY1ImkI_0_14,1212_31211,0 280,1212,pool,what are three children playing in?,bqMmyY1ImkI_0_14,1212_31212,0 281,1212,bath,what are boys doing?,bqMmyY1ImkI_0_14,1212_31213,0 282,1212,play,what are children doing?,bqMmyY1ImkI_0_14,1212_31214,0 283,1212,play,what are kids doing?,bqMmyY1ImkI_0_14,1212_31215,0 284,1212,play,what are some children doing?,bqMmyY1ImkI_0_14,1212_31216,0 285,1212,play,what are the boys doing?,bqMmyY1ImkI_0_14,1212_31217,0 286,1212,play,what are three boys doing?,bqMmyY1ImkI_0_14,1212_31218,0 287,1212,swim,what are three boys doing?,bqMmyY1ImkI_0_14,1212_31219,0 288,1212,play,what are three children doing?,bqMmyY1ImkI_0_14,1212_31220,0 289,1212,play,what are three little boys doing?,bqMmyY1ImkI_0_14,1212_31221,0 290,1212,splash,what are three little boys doing?,bqMmyY1ImkI_0_14,1212_31222,0 291,1212,play,what are young boys doing?,bqMmyY1ImkI_0_14,1212_31223,0 292,1213,man,who is maneuvering a blue colored toy car in office by operating the remote control device?,bruzcOyIGeg_4_12,1213_31224,0 293,1213,office,what is a man maneuvering a blue colored toy car in by operating the remote control device?,bruzcOyIGeg_4_12,1213_31225,0 294,1213,man,who raced a remote control car through the office?,bruzcOyIGeg_4_12,1213_31226,0 295,1213,man,who operates remote control car through an office?,bruzcOyIGeg_4_12,1213_31227,0 296,1213,man,who runs an rc car around an office?,bruzcOyIGeg_4_12,1213_31228,0 297,1213,man,who is driving a toy car in office?,bruzcOyIGeg_4_12,1213_31229,0 298,1213,man,who is playing with a remote controlled car?,bruzcOyIGeg_4_12,1213_31230,0 299,1213,man,who is playing with the remote controlled car?,bruzcOyIGeg_4_12,1213_31231,0 300,1213,office,what did the man race a remote control car through?,bruzcOyIGeg_4_12,1213_31232,0 301,1213,office,what does a man operate remote control car through?,bruzcOyIGeg_4_12,1213_31233,0 302,1213,man,who is playing with a remote control car?,bruzcOyIGeg_4_12,1213_31234,0 303,1213,office,what does a man run an rc car around?,bruzcOyIGeg_4_12,1213_31235,0 304,1213,control,what does a man operate through an office?,bruzcOyIGeg_4_12,1213_31236,0 305,1213,car,what does a man run around an office?,bruzcOyIGeg_4_12,1213_31237,0 306,1213,man,who plays with a radio controlled car?,bruzcOyIGeg_4_12,1213_31238,0 307,1213,office,what is a man driving a toy car in?,bruzcOyIGeg_4_12,1213_31239,0 308,1213,car,what does a man play with a radio controlled?,bruzcOyIGeg_4_12,1213_31240,0 309,1213,office,what is an rc car racing around?,bruzcOyIGeg_4_12,1213_31241,0 310,1213,car,what is racing around the office?,bruzcOyIGeg_4_12,1213_31242,0 311,1213,toy,what is a man driving in office?,bruzcOyIGeg_4_12,1213_31243,0 312,1213,man,who drove a blue remote car?,bruzcOyIGeg_4_12,1213_31244,0 313,1213,man,who drives a remote control car?,bruzcOyIGeg_4_12,1213_31245,0 314,1213,play,what is a man in an office doing?,bruzcOyIGeg_4_12,1213_31246,0 315,1213,play,what is a man doing?,bruzcOyIGeg_4_12,1213_31247,0 316,1213,drive,what is a man doing?,bruzcOyIGeg_4_12,1213_31248,0 317,1213,race,what is an rc car doing?,bruzcOyIGeg_4_12,1213_31249,0 318,1213,maneuver,what is a man doing?,bruzcOyIGeg_4_12,1213_31250,0 319,1213,play,what is the man doing?,bruzcOyIGeg_4_12,1213_31251,0 320,1214,two,how many men are playing with a lion?,btuxO-C2IzE_64_72,1214_31252,0 321,1214,recognition,what did the lion jump on the men in?,btuxO-C2IzE_64_72,1214_31253,0 322,1214,lion,what jumped on the men in recognition?,btuxO-C2IzE_64_72,1214_31254,0 323,1214,two,how many men hug a lion?,btuxO-C2IzE_64_72,1214_31255,0 324,1214,two,how many men play with a lion?,btuxO-C2IzE_64_72,1214_31256,0 325,1214,two,how many men are hugging a lion?,btuxO-C2IzE_64_72,1214_31257,0 326,1214,two,how many men did the lion recognize?,btuxO-C2IzE_64_72,1214_31258,0 327,1214,woman,who plays with a lion?,btuxO-C2IzE_64_72,1214_31259,0 328,1214,lion,what jumps on a man?,btuxO-C2IzE_64_72,1214_31260,0 329,1214,man,who does a lion jump on?,btuxO-C2IzE_64_72,1214_31261,0 330,1214,lion,what is playing with people?,btuxO-C2IzE_64_72,1214_31262,0 331,1214,lion,what is playing with two men?,btuxO-C2IzE_64_72,1214_31263,0 332,1214,lion,what recognized the two men?,btuxO-C2IzE_64_72,1214_31264,0 333,1214,lion,what is playing with two people?,btuxO-C2IzE_64_72,1214_31265,0 334,1214,lion,what does a woman play with?,btuxO-C2IzE_64_72,1214_31266,0 335,1214,lion,what are the men hugging?,btuxO-C2IzE_64_72,1214_31267,0 336,1214,lion,what two men hug?,btuxO-C2IzE_64_72,1214_31268,0 337,1214,lion,what are two men playing with?,btuxO-C2IzE_64_72,1214_31269,0 338,1214,lion,what do two men play with?,btuxO-C2IzE_64_72,1214_31270,0 339,1214,lion,what are two men hugging?,btuxO-C2IzE_64_72,1214_31271,0 340,1214,hug,what are two men doing?,btuxO-C2IzE_64_72,1214_31272,0 341,1214,play,what is a lion doing?,btuxO-C2IzE_64_72,1214_31273,0 342,1214,hold,what is a lion and two men are affectionately doing?,btuxO-C2IzE_64_72,1214_31274,0 343,1214,hug,what are the men doing?,btuxO-C2IzE_64_72,1214_31275,0 344,1215,two,how many cats are playing while sitting on stools?,btxCxlO1Euc_1_20,1215_31276,0 345,1215,two,how many cats bat at each other from opposite stools?,btxCxlO1Euc_1_20,1215_31277,0 346,1215,two,how many cats play on a pair of stools?,btxCxlO1Euc_1_20,1215_31278,0 347,1215,two,how many cats are fighting each other on stools?,btxCxlO1Euc_1_20,1215_31279,0 348,1215,two,how many cats are sitting on stools and batting at one another with their front paws?,btxCxlO1Euc_1_20,1215_31280,0 349,1215,two,how many cats fought with each other from their stools?,btxCxlO1Euc_1_20,1215_31281,0 350,1215,two,how many cats fight while sitting on stools?,btxCxlO1Euc_1_20,1215_31282,0 351,1215,two,how many cats are pawing at each other?,btxCxlO1Euc_1_20,1215_31283,0 352,1215,two,how many cats are fighting on stools?,btxCxlO1Euc_1_20,1215_31284,0 353,1215,two,how many cats are rough housing?,btxCxlO1Euc_1_20,1215_31285,0 354,1215,two,how many cats are fighting each other?,btxCxlO1Euc_1_20,1215_31286,0 355,1215,two,how many cats are fighting?,btxCxlO1Euc_1_20,1215_31287,0 356,1215,housing,what are two cats?,btxCxlO1Euc_1_20,1215_31288,0 357,1215,fight,what are two cats doing?,btxCxlO1Euc_1_20,1215_31289,0 358,1215,play,what are the cats doing?,btxCxlO1Euc_1_20,1215_31290,0 359,1215,paw,what are two cats doing?,btxCxlO1Euc_1_20,1215_31291,0 360,1215,sit,what are two cats doing?,btxCxlO1Euc_1_20,1215_31292,0 361,1215,sit,what is two cats fight while doing?,btxCxlO1Euc_1_20,1215_31293,0 362,1215,paw,what are two cats seated on separate stools doing?,btxCxlO1Euc_1_20,1215_31294,0 363,1215,stand,what is two kittens each doing?,btxCxlO1Euc_1_20,1215_31295,0 364,1216,lady,who rubbing makeup on?,buJ5HDCinrM_150_166,1216_31296,0 365,1216,woman,who explains how to apply makeup?,buJ5HDCinrM_150_166,1216_31297,0 366,1216,woman,who is putting on makeup?,buJ5HDCinrM_150_166,1216_31298,0 367,1216,face,what is a woman applying cosmetics to?,buJ5HDCinrM_150_166,1216_31299,0 368,1216,woman,who is applying makeup?,buJ5HDCinrM_150_166,1216_31300,0 369,1216,face,what is a woman applying makeup to?,buJ5HDCinrM_150_166,1216_31301,0 370,1216,face,what is a woman putting makeup on?,buJ5HDCinrM_150_166,1216_31302,0 371,1216,face,what does a woman apply make up to?,buJ5HDCinrM_150_166,1216_31303,0 372,1216,foundation,what did the lade apply?,buJ5HDCinrM_150_166,1216_31304,0 373,1216,lade,who applied foundation?,buJ5HDCinrM_150_166,1216_31305,0 374,1216,makeup,what do a lady rub on?,buJ5HDCinrM_150_166,1216_31306,0 375,1216,cheek,what did a lady put foundation on?,buJ5HDCinrM_150_166,1216_31307,0 376,1216,makeup,what is a woman putting on?,buJ5HDCinrM_150_166,1216_31308,0 377,1216,makeup,what is the woman putting on?,buJ5HDCinrM_150_166,1216_31309,0 378,1216,makeup,what is a woman applying?,buJ5HDCinrM_150_166,1216_31310,0 379,1216,woman,who is doing facial?,buJ5HDCinrM_150_166,1216_31311,0 380,1216,put,what is a woman doing?,buJ5HDCinrM_150_166,1216_31312,0 381,1216,use,what is a woman applies a concealer to the lower portion of her right cheek and blends it doing?,buJ5HDCinrM_150_166,1216_31313,0 382,1216,rub,what is a lady doing?,buJ5HDCinrM_150_166,1216_31314,0 383,1216,put,what is the woman doing?,buJ5HDCinrM_150_166,1216_31315,0 384,1217,boy,who performed on the piano for an audience?,bxDlC7YV5is_0_12,1217_31316,0 385,1217,boy,who performed on the piano for the audience?,bxDlC7YV5is_0_12,1217_31317,0 386,1217,boy,who is playing a piano in front of a crowd of other young people?,bxDlC7YV5is_0_12,1217_31318,0 387,1217,boy,who plays a piano for a group of kids?,bxDlC7YV5is_0_12,1217_31319,0 388,1217,boy,who is playing a piano in front of a crowd?,bxDlC7YV5is_0_12,1217_31320,0 389,1217,boy,who is playing the piano before an audience?,bxDlC7YV5is_0_12,1217_31321,0 390,1217,piano,what is a young boy playing in front of a crowd of other young people?,bxDlC7YV5is_0_12,1217_31322,0 391,1217,piano,what is a young boy seated on stage playing as the audience watches him?,bxDlC7YV5is_0_12,1217_31323,0 392,1217,piano,what is a young boy playing before an audience?,bxDlC7YV5is_0_12,1217_31324,0 393,1217,piano,what is a boy playing in front of a crowd?,bxDlC7YV5is_0_12,1217_31325,0 394,1217,audience,what is a young boy playing the piano before?,bxDlC7YV5is_0_12,1217_31326,0 395,1217,boy,who is playing piano?,bxDlC7YV5is_0_12,1217_31327,0 396,1217,boy,who plays the piano?,bxDlC7YV5is_0_12,1217_31328,0 397,1217,boy,who is playing a piano?,bxDlC7YV5is_0_12,1217_31329,0 398,1217,boy,who is playing the piano?,bxDlC7YV5is_0_12,1217_31330,0 399,1217,boy,who does the audience watch?,bxDlC7YV5is_0_12,1217_31331,0 400,1217,audience,what watches a boy?,bxDlC7YV5is_0_12,1217_31332,0 401,1217,piano,what is a young boy playing?,bxDlC7YV5is_0_12,1217_31333,0 402,1217,piano,what is a kid playing?,bxDlC7YV5is_0_12,1217_31334,0 403,1217,piano,what is the boy playing?,bxDlC7YV5is_0_12,1217_31335,0 404,1217,play,what is a boy doing?,bxDlC7YV5is_0_12,1217_31336,0 405,1217,play,what is a kid doing?,bxDlC7YV5is_0_12,1217_31337,0 406,1217,play,what is a young boy doing?,bxDlC7YV5is_0_12,1217_31338,0 407,1217,play,what is a young boy seated on stage doing?,bxDlC7YV5is_0_12,1217_31339,0 408,1217,play,what is the boy doing?,bxDlC7YV5is_0_12,1217_31340,0 409,1218,man,who adds some salt and black pepper powder to a bowl containing poultry seasoning?,bxjFqtfJlMs_18_27,1218_31341,0 410,1218,person,who is mixing spices and salt in a ceramic bowl?,bxjFqtfJlMs_18_27,1218_31342,0 411,1218,person,who puts seasonings into a small bowl?,bxjFqtfJlMs_18_27,1218_31343,0 412,1218,man,who is mixing several ingredients together in a small bowl?,bxjFqtfJlMs_18_27,1218_31344,0 413,1218,man,who mixes the three ingredients with a spoon?,bxjFqtfJlMs_18_27,1218_31345,0 414,1218,person,who is mixing seasoning in a cup?,bxjFqtfJlMs_18_27,1218_31346,0 415,1218,man,who is putting seasoning in a cup?,bxjFqtfJlMs_18_27,1218_31347,0 416,1218,someone,what mixed salt and pepper together in a bowl?,bxjFqtfJlMs_18_27,1218_31348,0 417,1218,salt,what is a person mixing in a ceramic bowl?,bxjFqtfJlMs_18_27,1218_31349,0 418,1218,cup,what is a person mixing seasoning in?,bxjFqtfJlMs_18_27,1218_31350,0 419,1218,bowl,what are salt and pepper mixed together in?,bxjFqtfJlMs_18_27,1218_31351,0 420,1218,cup,what is a man putting seasoning in?,bxjFqtfJlMs_18_27,1218_31352,0 421,1218,pepper,what do someone mix together in a bowl?,bxjFqtfJlMs_18_27,1218_31353,0 422,1218,pepper,what are mixed together in a bowl?,bxjFqtfJlMs_18_27,1218_31354,0 423,1218,person,who is mixing spices?,bxjFqtfJlMs_18_27,1218_31355,0 424,1218,man,who is preparing some dishes?,bxjFqtfJlMs_18_27,1218_31356,0 425,1218,someone,who is mixing salt and pepper?,bxjFqtfJlMs_18_27,1218_31357,0 426,1218,person,who is mixing spices together?,bxjFqtfJlMs_18_27,1218_31358,0 427,1218,pepper,what is someone mixing?,bxjFqtfJlMs_18_27,1218_31359,0 428,1218,contain,what is a man adds some salt and black pepper powder to a bowl doing?,bxjFqtfJlMs_18_27,1218_31360,0 429,1218,mix,what is a man doing?,bxjFqtfJlMs_18_27,1218_31361,0 430,1218,prepare,what is a man doing?,bxjFqtfJlMs_18_27,1218_31362,0 431,1218,put,what is a man doing?,bxjFqtfJlMs_18_27,1218_31363,0 432,1218,mix,what is a person doing?,bxjFqtfJlMs_18_27,1218_31364,0 433,1218,mix,what is someone doing?,bxjFqtfJlMs_18_27,1218_31365,0 434,1218,mix,what is the person doing?,bxjFqtfJlMs_18_27,1218_31366,0 435,1219,man,who is firing on a steel plate target?,c2MwqFYVE7A_40_45,1219_31367,0 436,1219,target,what is being shot full of holes?,c2MwqFYVE7A_40_45,1219_31368,0 437,1219,target,what is being riddled with bullet holes?,c2MwqFYVE7A_40_45,1219_31369,0 438,1219,target,what got more bullet holes in it?,c2MwqFYVE7A_40_45,1219_31370,0 439,1219,person,who is shooting at a metal target?,c2MwqFYVE7A_40_45,1219_31371,0 440,1219,target,what is being hit with gun fire?,c2MwqFYVE7A_40_45,1219_31372,0 441,1219,bullet,what is a target being riddled with?,c2MwqFYVE7A_40_45,1219_31373,0 442,1219,target,what is barraged with bullets?,c2MwqFYVE7A_40_45,1219_31374,0 443,1219,bullet,what did the target get in it?,c2MwqFYVE7A_40_45,1219_31375,0 444,1219,target,what was being shot with bullets?,c2MwqFYVE7A_40_45,1219_31376,0 445,1219,fire,what is a target being hit with?,c2MwqFYVE7A_40_45,1219_31377,0 446,1219,man,who shoots a steel target?,c2MwqFYVE7A_40_45,1219_31378,0 447,1219,man,who shoots at a target?,c2MwqFYVE7A_40_45,1219_31379,0 448,1219,person,who shoots a paper target?,c2MwqFYVE7A_40_45,1219_31380,0 449,1219,target,what is hit with steel fragments?,c2MwqFYVE7A_40_45,1219_31381,0 450,1219,target,what are bullet holes appearing on?,c2MwqFYVE7A_40_45,1219_31382,0 451,1219,bullet,what are appearing on a target?,c2MwqFYVE7A_40_45,1219_31383,0 452,1219,target,what did bullets keep hitting?,c2MwqFYVE7A_40_45,1219_31384,0 453,1219,target,what are bullets hitting?,c2MwqFYVE7A_40_45,1219_31385,0 454,1219,target,what does a man shoot at?,c2MwqFYVE7A_40_45,1219_31386,0 455,1219,steel,what is a target hit with?,c2MwqFYVE7A_40_45,1219_31387,0 456,1219,target,what does a person shoot?,c2MwqFYVE7A_40_45,1219_31388,0 457,1219,target,what does a man shoot?,c2MwqFYVE7A_40_45,1219_31389,0 458,1219,target,what is being shot at?,c2MwqFYVE7A_40_45,1219_31390,0 459,1219,target,what is being shot?,c2MwqFYVE7A_40_45,1219_31391,0 460,1219,fire,what is a man doing?,c2MwqFYVE7A_40_45,1219_31392,0 461,1219,shoot,what is a person doing?,c2MwqFYVE7A_40_45,1219_31393,0 462,1219,hit,what are bullets doing?,c2MwqFYVE7A_40_45,1219_31394,0 463,1219,hit,what is bullets kept doing?,c2MwqFYVE7A_40_45,1219_31395,0 464,1220,two,how many women are doing a dance routine?,c2a0GcoJAjw_107_129,1220_31396,0 465,1220,dance,what do several costumed indian girls perform?,c2a0GcoJAjw_107_129,1220_31397,0 466,1220,dance,what are women preforming?,c2a0GcoJAjw_107_129,1220_31398,0 467,1220,temple,what are women dancing in?,c2a0GcoJAjw_107_129,1220_31399,0 468,1220,routine,what are two women doing?,c2a0GcoJAjw_107_129,1220_31400,0 469,1220,woman,who is dancing ritualistically?,c2a0GcoJAjw_107_129,1220_31401,0 470,1220,girl,who is dancing?,c2a0GcoJAjw_107_129,1220_31402,0 471,1220,dance,what is a girl doing?,c2a0GcoJAjw_107_129,1220_31403,0 472,1220,dance,what is a young woman doing?,c2a0GcoJAjw_107_129,1220_31404,0 473,1220,dance,what are indian women doing?,c2a0GcoJAjw_107_129,1220_31405,0 474,1220,dance,what is indian women doing?,c2a0GcoJAjw_107_129,1220_31406,0 475,1220,dance,what are some indian ladies doing?,c2a0GcoJAjw_107_129,1220_31407,0 476,1220,dance,what are some women doing?,c2a0GcoJAjw_107_129,1220_31408,0 477,1220,dance,what are the ladies doing?,c2a0GcoJAjw_107_129,1220_31409,0 478,1220,dance,what are the women doing?,c2a0GcoJAjw_107_129,1220_31410,0 479,1220,dance,what are two indian traditional dancers doing?,c2a0GcoJAjw_107_129,1220_31411,0 480,1220,dance,what are two young indian girls in traditional attire doing?,c2a0GcoJAjw_107_129,1220_31412,0 481,1220,dance,what are women doing?,c2a0GcoJAjw_107_129,1220_31413,0 482,1220,preform,what are women doing?,c2a0GcoJAjw_107_129,1220_31414,0 483,1221,man,who is sculpturing a fine bronze statue of god?,c2a0GcoJAjw_52_73,1221_31415,0 484,1221,god,who is a man sculpturing a fine bronze statue of?,c2a0GcoJAjw_52_73,1221_31416,0 485,1221,man,who chisels a golden artifact?,c2a0GcoJAjw_52_73,1221_31417,0 486,1221,man,who is chiseling a statue?,c2a0GcoJAjw_52_73,1221_31418,0 487,1221,man,who is sanding a statue?,c2a0GcoJAjw_52_73,1221_31419,0 488,1221,man,who is carving a statue?,c2a0GcoJAjw_52_73,1221_31420,0 489,1221,bronze,what are men sculpting with?,c2a0GcoJAjw_52_73,1221_31421,0 490,1221,statue,what is being made by hand?,c2a0GcoJAjw_52_73,1221_31422,0 491,1221,metal,what are some indian men carving?,c2a0GcoJAjw_52_73,1221_31423,0 492,1221,buddha,what do several men make?,c2a0GcoJAjw_52_73,1221_31424,0 493,1221,artifact,what does a man chisel?,c2a0GcoJAjw_52_73,1221_31425,0 494,1221,hand,what is a statue being made by?,c2a0GcoJAjw_52_73,1221_31426,0 495,1221,statue,what is the man chiseling?,c2a0GcoJAjw_52_73,1221_31427,0 496,1221,statue,what is a man sanding?,c2a0GcoJAjw_52_73,1221_31428,0 497,1221,statue,what is someone carving?,c2a0GcoJAjw_52_73,1221_31429,0 498,1221,statue,what is a man carving?,c2a0GcoJAjw_52_73,1221_31430,0 499,1221,sculpt,what are a group of workers doing?,c2a0GcoJAjw_52_73,1221_31431,0 500,1221,carve,what is a man doing?,c2a0GcoJAjw_52_73,1221_31432,0 501,1221,sand,what is a man doing?,c2a0GcoJAjw_52_73,1221_31433,0 502,1221,sculpture,what is a man doing?,c2a0GcoJAjw_52_73,1221_31434,0 503,1221,carve,what are some indian men doing?,c2a0GcoJAjw_52_73,1221_31435,0 504,1221,carve,what is someone doing?,c2a0GcoJAjw_52_73,1221_31436,0 505,1221,chisel,what is the man doing?,c2a0GcoJAjw_52_73,1221_31437,0 506,1222,woman,who is spreading a yellow spread on two half loaves of bread?,c51L6ZxZGjQ_137_154,1222_31438,0 507,1222,woman,who is spreading butter on large pieces of bread with a metal spatula?,c51L6ZxZGjQ_137_154,1222_31439,0 508,1222,woman,who spreads butter on slices of bread?,c51L6ZxZGjQ_137_154,1222_31440,0 509,1222,woman,who spreads butter on two pieces of bread?,c51L6ZxZGjQ_137_154,1222_31441,0 510,1222,woman,who is spreading mustard on a bread roll?,c51L6ZxZGjQ_137_154,1222_31442,0 511,1222,woman,who is spreading butter on the bread slices?,c51L6ZxZGjQ_137_154,1222_31443,0 512,1222,woman,who spreads butter generously over the entire surface of two long rectangular slices of bread?,c51L6ZxZGjQ_137_154,1222_31444,0 513,1222,person,who puts some butter on some bread?,c51L6ZxZGjQ_137_154,1222_31445,0 514,1222,butter,what is a woman spreading on large pieces of bread with a metal spatula?,c51L6ZxZGjQ_137_154,1222_31446,0 515,1222,mustard,what is a woman spreading on a bread roll?,c51L6ZxZGjQ_137_154,1222_31447,0 516,1222,lady,who spread garlic spread on the bread?,c51L6ZxZGjQ_137_154,1222_31448,0 517,1222,butter,what is the woman spreading on the bread slices?,c51L6ZxZGjQ_137_154,1222_31449,0 518,1222,butter,what does a woman spread generously over the entire surface of two long rectangular slices of bread?,c51L6ZxZGjQ_137_154,1222_31450,0 519,1222,bread,what does a person put some butter on?,c51L6ZxZGjQ_137_154,1222_31451,0 520,1222,butter,what does a person put on some bread?,c51L6ZxZGjQ_137_154,1222_31452,0 521,1222,bread,what do the lady spread garlic spread on?,c51L6ZxZGjQ_137_154,1222_31453,0 522,1222,woman,who is spreading butter on breads?,c51L6ZxZGjQ_137_154,1222_31454,0 523,1222,woman,who is spreading butter on bread?,c51L6ZxZGjQ_137_154,1222_31455,0 524,1222,woman,who is applying butter to bread?,c51L6ZxZGjQ_137_154,1222_31456,0 525,1222,someone,what is putting mustard on bread?,c51L6ZxZGjQ_137_154,1222_31457,0 526,1222,woman,who is buttering some bread?,c51L6ZxZGjQ_137_154,1222_31458,0 527,1222,butter,what is a woman spreading on breads?,c51L6ZxZGjQ_137_154,1222_31459,0 528,1222,bread,what is someone putting mustard on?,c51L6ZxZGjQ_137_154,1222_31460,0 529,1222,mustard,what is someone putting on bread?,c51L6ZxZGjQ_137_154,1222_31461,0 530,1222,butter,what is a woman spreading on bread?,c51L6ZxZGjQ_137_154,1222_31462,0 531,1222,butter,what is a woman applying to bread?,c51L6ZxZGjQ_137_154,1222_31463,0 532,1222,bread,what is a woman buttering?,c51L6ZxZGjQ_137_154,1222_31464,0 533,1222,spread,what is a woman doing?,c51L6ZxZGjQ_137_154,1222_31465,0 534,1222,butter,what is a woman doing?,c51L6ZxZGjQ_137_154,1222_31466,0 535,1222,put,what is someone doing?,c51L6ZxZGjQ_137_154,1222_31467,0 536,1222,spread,what is the woman doing?,c51L6ZxZGjQ_137_154,1222_31468,0 537,1223,man,who cuts the stem of a broccoli at the base using a large flat knife?,c53HKs39i28_26_35,1223_31469,0 538,1223,chef,who is peeling the stalk of a broccoli?,c53HKs39i28_26_35,1223_31470,0 539,1223,man,who is chopping broccoli into small pieces?,c53HKs39i28_26_35,1223_31471,0 540,1223,broccoli,what does a man cut the stem of at the base using a large flat knife?,c53HKs39i28_26_35,1223_31472,0 541,1223,man,who peels the stem of a broccoli off?,c53HKs39i28_26_35,1223_31473,0 542,1223,broccoli,what is a chef peeling the stalk of?,c53HKs39i28_26_35,1223_31474,0 543,1223,broccoli,what is a man chopping into small pieces?,c53HKs39i28_26_35,1223_31475,0 544,1223,broccoli,what does a man peel the stem of off?,c53HKs39i28_26_35,1223_31476,0 545,1223,knife,what is broccoli peeled with?,c53HKs39i28_26_35,1223_31477,0 546,1223,chef,who picked at the brocoli stem?,c53HKs39i28_26_35,1223_31478,0 547,1223,chef,who picked at the broccoli stem?,c53HKs39i28_26_35,1223_31479,0 548,1223,man,who is peeling broccoli?,c53HKs39i28_26_35,1223_31480,0 549,1223,broccoli,what is peeled with a knife?,c53HKs39i28_26_35,1223_31481,0 550,1223,chef,who is cutting cauliflower?,c53HKs39i28_26_35,1223_31482,0 551,1223,man,who is trying to cut broccoli?,c53HKs39i28_26_35,1223_31483,0 552,1223,cauliflower,what is a chef cutting?,c53HKs39i28_26_35,1223_31484,0 553,1223,broccoli,what is a man peeling?,c53HKs39i28_26_35,1223_31485,0 554,1223,broccoli,what is the man peeling?,c53HKs39i28_26_35,1223_31486,0 555,1223,broccoli,what is being peeled?,c53HKs39i28_26_35,1223_31487,0 556,1223,broccoli,what is being cut?,c53HKs39i28_26_35,1223_31488,0 557,1223,cut,what is a chef doing?,c53HKs39i28_26_35,1223_31489,0 558,1223,peel,what is a chef doing?,c53HKs39i28_26_35,1223_31490,0 559,1223,use,what is a man cuts the stem of a broccoli at the base doing?,c53HKs39i28_26_35,1223_31491,0 560,1223,chop,what is a man doing?,c53HKs39i28_26_35,1223_31492,0 561,1223,try,what is man doing?,c53HKs39i28_26_35,1223_31493,0 562,1223,peel,what is the man doing?,c53HKs39i28_26_35,1223_31494,0 563,1224,four,how many small children are on stage performing while an adult stands to the side watching?,c75SIlAjfjg_6_14,1224_31495,0 564,1224,stage,when are four small children performing while an adult stands to the side watching?,c75SIlAjfjg_6_14,1224_31496,0 565,1224,stage,when are a small group of children dancing to music?,c75SIlAjfjg_6_14,1224_31497,0 566,1224,stage,when are little kids dancing to music?,c75SIlAjfjg_6_14,1224_31498,0 567,1224,stage,when are a group of children dancing?,c75SIlAjfjg_6_14,1224_31499,0 568,1224,music,what are little kids dancing to on a stage?,c75SIlAjfjg_6_14,1224_31500,0 569,1224,music,what are a small group of children dancing to on the stage?,c75SIlAjfjg_6_14,1224_31501,0 570,1224,stage,when are kids dancing?,c75SIlAjfjg_6_14,1224_31502,0 571,1224,stage,when are children dancing?,c75SIlAjfjg_6_14,1224_31503,0 572,1224,side,where does an adult stand watching?,c75SIlAjfjg_6_14,1224_31504,0 573,1224,adult,who stands to the side watching?,c75SIlAjfjg_6_14,1224_31505,0 574,1224,stage,when did the little children dance?,c75SIlAjfjg_6_14,1224_31506,0 575,1224,stage,when do kids dance?,c75SIlAjfjg_6_14,1224_31507,0 576,1224,stage,when did the children dance?,c75SIlAjfjg_6_14,1224_31508,0 577,1224,stage,when are the babies dancing?,c75SIlAjfjg_6_14,1224_31509,0 578,1224,side,what does an adult stand to watching?,c75SIlAjfjg_6_14,1224_31510,0 579,1224,routine,what do several children practice onstage?,c75SIlAjfjg_6_14,1224_31511,0 580,1224,dance,what are a group of children doing?,c75SIlAjfjg_6_14,1224_31512,0 581,1224,dance,what are a group of kids doing?,c75SIlAjfjg_6_14,1224_31513,0 582,1224,dance,what are a small group of children doing?,c75SIlAjfjg_6_14,1224_31514,0 583,1224,dance,what are children doing?,c75SIlAjfjg_6_14,1224_31515,0 584,1224,perform,what is four small children are on stage doing?,c75SIlAjfjg_6_14,1224_31516,0 585,1224,dance,what are kids doing?,c75SIlAjfjg_6_14,1224_31517,0 586,1224,dance,what are little kids doing?,c75SIlAjfjg_6_14,1224_31518,0 587,1224,dance,what are the babies doing?,c75SIlAjfjg_6_14,1224_31519,0 588,1225,man,who carries another man over to a pedastal?,c76tShLfQb0_74_81,1225_31520,0 589,1225,mand,who carried another man on his shoulder to the table?,c76tShLfQb0_74_81,1225_31521,0 590,1225,man,who carries a body towards a table?,c76tShLfQb0_74_81,1225_31522,0 591,1225,man,who is walking slowly carrying another person slumped across his left shoulder in a dungeon like room?,c76tShLfQb0_74_81,1225_31523,0 592,1225,man,who carried another man to the table?,c76tShLfQb0_74_81,1225_31524,0 593,1225,man,who did a mand carry on his shoulder to the table?,c76tShLfQb0_74_81,1225_31525,0 594,1225,man,who is carrying another man over his shoulder?,c76tShLfQb0_74_81,1225_31526,0 595,1225,man,who does a man carry over to a pedastal?,c76tShLfQb0_74_81,1225_31527,0 596,1225,man,who did the man carry to the table?,c76tShLfQb0_74_81,1225_31528,0 597,1225,pedastal,who does a man carry another man over to?,c76tShLfQb0_74_81,1225_31529,0 598,1225,man,who is carrying a man over his shoulder?,c76tShLfQb0_74_81,1225_31530,0 599,1225,table,what did a mand carry another man on his shoulder to?,c76tShLfQb0_74_81,1225_31531,0 600,1225,table,what did the man carry another man to?,c76tShLfQb0_74_81,1225_31532,0 601,1225,man,who is carrying another man on his back?,c76tShLfQb0_74_81,1225_31533,0 602,1225,man,who is carrying someone on his shoulder?,c76tShLfQb0_74_81,1225_31534,0 603,1225,man,who is a man carrying over his shoulder?,c76tShLfQb0_74_81,1225_31535,0 604,1225,man,who is a man carrying on his back?,c76tShLfQb0_74_81,1225_31536,0 605,1225,shoulder,what did a mand carry another man on to the table?,c76tShLfQb0_74_81,1225_31537,0 606,1225,someone,what is a man carrying on his shoulder?,c76tShLfQb0_74_81,1225_31538,0 607,1225,shoulder,what is a man carrying another man over?,c76tShLfQb0_74_81,1225_31539,0 608,1225,back,what is a man carrying another man on?,c76tShLfQb0_74_81,1225_31540,0 609,1225,shoulder,what is a man carrying a man over?,c76tShLfQb0_74_81,1225_31541,0 610,1225,man,who is carrying another man?,c76tShLfQb0_74_81,1225_31542,0 611,1225,man,who is carrying someone?,c76tShLfQb0_74_81,1225_31543,0 612,1225,man,who is carrying a body?,c76tShLfQb0_74_81,1225_31544,0 613,1225,shoulder,what is a man carrying someone on?,c76tShLfQb0_74_81,1225_31545,0 614,1225,man,who is a man carrying?,c76tShLfQb0_74_81,1225_31546,0 615,1225,body,what is the man carrying?,c76tShLfQb0_74_81,1225_31547,0 616,1225,someone,what is a man carrying?,c76tShLfQb0_74_81,1225_31548,0 617,1225,carry,what is a man doing?,c76tShLfQb0_74_81,1225_31549,0 618,1225,carry,what is frankenstein doing?,c76tShLfQb0_74_81,1225_31550,0 619,1225,walk,what is a man doing?,c76tShLfQb0_74_81,1225_31551,0 620,1225,carry,what is the man doing?,c76tShLfQb0_74_81,1225_31552,0 621,1226,boy,who danced on and around a park bench?,cCmnN96zIeQ_14_24,1226_31553,0 622,1226,bench,what does a boy kneeling in front of a bench begin to dance on and around?,cCmnN96zIeQ_14_24,1226_31554,0 623,1226,boy,who is dancing on a park bench?,cCmnN96zIeQ_14_24,1226_31555,0 624,1226,boy,who danced on a park bench?,cCmnN96zIeQ_14_24,1226_31556,0 625,1226,man,who dances on a bench?,cCmnN96zIeQ_14_24,1226_31557,0 626,1226,boy,who is dancing around a bench?,cCmnN96zIeQ_14_24,1226_31558,0 627,1226,boy,who is dancing on a bench?,cCmnN96zIeQ_14_24,1226_31559,0 628,1226,bench,what is a boy dancing around?,cCmnN96zIeQ_14_24,1226_31560,0 629,1226,bench,what is a boy dancing on?,cCmnN96zIeQ_14_24,1226_31561,0 630,1226,bench,what does a man dance on?,cCmnN96zIeQ_14_24,1226_31562,0 631,1226,boy,who dances?,cCmnN96zIeQ_14_24,1226_31563,0 632,1226,boy,who is dancing?,cCmnN96zIeQ_14_24,1226_31564,0 633,1226,move,what is a boy kneeling in front of a bench doing?,cCmnN96zIeQ_14_24,1226_31565,0 634,1226,dance,what is a boy doing?,cCmnN96zIeQ_14_24,1226_31566,0 635,1226,dance,what is a guy doing?,cCmnN96zIeQ_14_24,1226_31567,0 636,1226,dance,what is a kid doing?,cCmnN96zIeQ_14_24,1226_31568,0 637,1226,dance,what is a man doing?,cCmnN96zIeQ_14_24,1226_31569,0 638,1226,dance,what is a teenage boy doing?,cCmnN96zIeQ_14_24,1226_31570,0 639,1226,dance,what is the man doing?,cCmnN96zIeQ_14_24,1226_31571,0 640,1227,person,who scrapes scales off a fish with a knife?,cFzSEIGrEfA_0_24,1227_31572,0 641,1227,man,who is removing a skin of a fish with a knife?,cFzSEIGrEfA_0_24,1227_31573,0 642,1227,person,who is slicing the scales off a fish?,cFzSEIGrEfA_0_24,1227_31574,0 643,1227,person,who is removing the scales from the fish?,cFzSEIGrEfA_0_24,1227_31575,0 644,1227,fish,what does a person scrape scales off with a knife?,cFzSEIGrEfA_0_24,1227_31576,0 645,1227,knife,what does a person scrape scales off a fish with?,cFzSEIGrEfA_0_24,1227_31577,0 646,1227,fish,what is a man removing a skin of with a knife?,cFzSEIGrEfA_0_24,1227_31578,0 647,1227,knife,what is a man removing a skin of a fish with?,cFzSEIGrEfA_0_24,1227_31579,0 648,1227,fish,what is a person slicing the scales off?,cFzSEIGrEfA_0_24,1227_31580,0 649,1227,fish,what is the person removing the scales from?,cFzSEIGrEfA_0_24,1227_31581,0 650,1227,someone,who scaled a fish?,cFzSEIGrEfA_0_24,1227_31582,0 651,1227,person,who is descaling a fish?,cFzSEIGrEfA_0_24,1227_31583,0 652,1227,man,who is scaling a fish?,cFzSEIGrEfA_0_24,1227_31584,0 653,1227,someone,what is scaling a fish?,cFzSEIGrEfA_0_24,1227_31585,0 654,1227,fish,what did someone scale?,cFzSEIGrEfA_0_24,1227_31586,0 655,1227,fish,what is a person descaling?,cFzSEIGrEfA_0_24,1227_31587,0 656,1227,fish,what is someone scaling?,cFzSEIGrEfA_0_24,1227_31588,0 657,1227,fish,what is a man scaling?,cFzSEIGrEfA_0_24,1227_31589,0 658,1227,scale,what is a man doing?,cFzSEIGrEfA_0_24,1227_31590,0 659,1227,scale,what is someone doing?,cFzSEIGrEfA_0_24,1227_31591,0 660,1227,descale,what is a person doing?,cFzSEIGrEfA_0_24,1227_31592,0 661,1227,slouse,what is a person doing?,cFzSEIGrEfA_0_24,1227_31593,0 662,1228,bird,what is dancing on top of a chair?,cJOZp2ZftCw_1_12,1228_31594,0 663,1228,cockatoo,what is dancing on the top of a chair?,cJOZp2ZftCw_1_12,1228_31595,0 664,1228,bird,what dances on the back of a chair?,cJOZp2ZftCw_1_12,1228_31596,0 665,1228,music,what is a white parrot with a yellow crest stamping its feet rhythmically to?,cJOZp2ZftCw_1_12,1228_31597,0 666,1228,bird,what is bobbing up and down to music?,cJOZp2ZftCw_1_12,1228_31598,0 667,1228,music,what is a bird bobbing up and down to?,cJOZp2ZftCw_1_12,1228_31599,0 668,1228,bird,what danced on the perch?,cJOZp2ZftCw_1_12,1228_31600,0 669,1228,song,what does an uncaged bird dance to?,cJOZp2ZftCw_1_12,1228_31601,0 670,1228,bird,what dances to a song?,cJOZp2ZftCw_1_12,1228_31602,0 671,1228,parrot,what is dancing with music?,cJOZp2ZftCw_1_12,1228_31603,0 672,1228,bird,what is dancing on a chair?,cJOZp2ZftCw_1_12,1228_31604,0 673,1228,perch,what did the white bird dance on?,cJOZp2ZftCw_1_12,1228_31605,0 674,1228,bird,what is dancing to music?,cJOZp2ZftCw_1_12,1228_31606,0 675,1228,music,what is a parrot dancing with?,cJOZp2ZftCw_1_12,1228_31607,0 676,1228,chair,what is a bird dancing on?,cJOZp2ZftCw_1_12,1228_31608,0 677,1228,music,what is a bird dancing to?,cJOZp2ZftCw_1_12,1228_31609,0 678,1228,perch,what did the bird dance on?,cJOZp2ZftCw_1_12,1228_31610,0 679,1228,cockatoo,what dances?,cJOZp2ZftCw_1_12,1228_31611,0 680,1228,bird,what is dancing?,cJOZp2ZftCw_1_12,1228_31612,0 681,1228,dance,what is a bird doing?,cJOZp2ZftCw_1_12,1228_31613,0 682,1228,bob,what is a bird doing?,cJOZp2ZftCw_1_12,1228_31614,0 683,1228,dance,what is a cockatoo doing?,cJOZp2ZftCw_1_12,1228_31615,0 684,1228,dance,what is a parrot doing?,cJOZp2ZftCw_1_12,1228_31616,0 685,1228,bob,what is a white bird is perched on some object and it 's doing?,cJOZp2ZftCw_1_12,1228_31617,0 686,1228,stamp,what is a white parrot with a yellow crest doing?,cJOZp2ZftCw_1_12,1228_31618,0 687,1228,dance,what is the bird doing?,cJOZp2ZftCw_1_12,1228_31619,0 688,1229,guitar,what is a man seated in his house playing?,cLNrpO6wBk4_37_47,1229_31620,0 689,1229,man,who plays an acoustic guitar?,cLNrpO6wBk4_37_47,1229_31621,0 690,1229,man,who strummed on his guitar?,cLNrpO6wBk4_37_47,1229_31622,0 691,1229,man,who is playing guitar?,cLNrpO6wBk4_37_47,1229_31623,0 692,1229,man,who is playing a guitar?,cLNrpO6wBk4_37_47,1229_31624,0 693,1229,man,who played his guitar?,cLNrpO6wBk4_37_47,1229_31625,0 694,1229,guy,who is playing his guitar?,cLNrpO6wBk4_37_47,1229_31626,0 695,1229,guitar,what does a man play?,cLNrpO6wBk4_37_47,1229_31627,0 696,1229,guitar,what is a man playing?,cLNrpO6wBk4_37_47,1229_31628,0 697,1229,guitar,what is the man playing?,cLNrpO6wBk4_37_47,1229_31629,0 698,1229,guitar,what did the man strum on?,cLNrpO6wBk4_37_47,1229_31630,0 699,1229,guitar,what did the man play?,cLNrpO6wBk4_37_47,1229_31631,0 700,1229,guitar,what is a guy playing?,cLNrpO6wBk4_37_47,1229_31632,0 701,1229,play,what is a man doing?,cLNrpO6wBk4_37_47,1229_31633,0 702,1229,play,what is a man seated in his house doing?,cLNrpO6wBk4_37_47,1229_31634,0 703,1229,play,what is the man doing?,cLNrpO6wBk4_37_47,1229_31635,0 704,1229,play,what is a guy doing?,cLNrpO6wBk4_37_47,1229_31636,0 705,1230,man,who plays an acoustic guitar?,cM55xNJ_pfU_1_20,1230_31637,0 706,1230,man,who played the guitar?,cM55xNJ_pfU_1_20,1230_31638,0 707,1230,man,who is playing guitar?,cM55xNJ_pfU_1_20,1230_31639,0 708,1230,man,who plays a guitar?,cM55xNJ_pfU_1_20,1230_31640,0 709,1230,man,who plays the guitar?,cM55xNJ_pfU_1_20,1230_31641,0 710,1230,man,who is playing a guitar?,cM55xNJ_pfU_1_20,1230_31642,0 711,1230,person,who is playing the guitar?,cM55xNJ_pfU_1_20,1230_31643,0 712,1230,man,who played his guitar?,cM55xNJ_pfU_1_20,1230_31644,0 713,1230,someone,what is playing guitar?,cM55xNJ_pfU_1_20,1230_31645,0 714,1230,someone,what is playing a guitar?,cM55xNJ_pfU_1_20,1230_31646,0 715,1230,guitar,what does an individual play?,cM55xNJ_pfU_1_20,1230_31647,0 716,1230,guitar,what did a man play?,cM55xNJ_pfU_1_20,1230_31648,0 717,1230,guitar,what is someone playing?,cM55xNJ_pfU_1_20,1230_31649,0 718,1230,guitar,what does a man play?,cM55xNJ_pfU_1_20,1230_31650,0 719,1230,guitar,what is a person playing?,cM55xNJ_pfU_1_20,1230_31651,0 720,1230,guitar,what is a man playing?,cM55xNJ_pfU_1_20,1230_31652,0 721,1230,guitar,what is the man playing?,cM55xNJ_pfU_1_20,1230_31653,0 722,1230,man,who is seated?,cM55xNJ_pfU_1_20,1230_31654,0 723,1230,guitar,what did the man play?,cM55xNJ_pfU_1_20,1230_31655,0 724,1230,guitar,what is played?,cM55xNJ_pfU_1_20,1230_31656,0 725,1230,play,what is a man doing?,cM55xNJ_pfU_1_20,1230_31657,0 726,1230,play,what is a man is seated and doing?,cM55xNJ_pfU_1_20,1230_31658,0 727,1230,play,what is a person doing?,cM55xNJ_pfU_1_20,1230_31659,0 728,1230,play,what is someone doing?,cM55xNJ_pfU_1_20,1230_31660,0 729,1230,play,what is the man doing?,cM55xNJ_pfU_1_20,1230_31661,0 730,1231,lady,who is walking a dog down the street?,cR2yi-JnGcQ_8_16,1231_31662,0 731,1231,woman,who walks a dog on a leash?,cR2yi-JnGcQ_8_16,1231_31663,0 732,1231,dog,what does a woman walk on a leash?,cR2yi-JnGcQ_8_16,1231_31664,0 733,1231,leash,what does a woman walk a dog on?,cR2yi-JnGcQ_8_16,1231_31665,0 734,1231,pet,what is a woman taking for a walk on the street?,cR2yi-JnGcQ_8_16,1231_31666,0 735,1231,dog,what did a lady take for a walk?,cR2yi-JnGcQ_8_16,1231_31667,0 736,1231,dog,what is a woman walking on a leash?,cR2yi-JnGcQ_8_16,1231_31668,0 737,1231,woman,who is walking with a dog?,cR2yi-JnGcQ_8_16,1231_31669,0 738,1231,dog,what is walking on a leash?,cR2yi-JnGcQ_8_16,1231_31670,0 739,1231,woman,who is walking a dog?,cR2yi-JnGcQ_8_16,1231_31671,0 740,1231,leash,what is a dog walking on?,cR2yi-JnGcQ_8_16,1231_31672,0 741,1231,dog,what is a woman walking with?,cR2yi-JnGcQ_8_16,1231_31673,0 742,1231,dog,what is a woman walking?,cR2yi-JnGcQ_8_16,1231_31674,0 743,1231,dog,what is the woman walking?,cR2yi-JnGcQ_8_16,1231_31675,0 744,1231,walk,what is a woman is street doing?,cR2yi-JnGcQ_8_16,1231_31676,0 745,1231,walk,what is a dog doing?,cR2yi-JnGcQ_8_16,1231_31677,0 746,1231,walk,what is a lady doing?,cR2yi-JnGcQ_8_16,1231_31678,0 747,1231,walk,what is the woman doing?,cR2yi-JnGcQ_8_16,1231_31679,0 748,1232,man,who is shooting another man with a rifle?,cSDkshD2ME0_11_14,1232_31680,0 749,1232,man,who is shooting at another man on a horse?,cSDkshD2ME0_11_14,1232_31681,0 750,1232,man,who shot the man on the horse with a shotgun?,cSDkshD2ME0_11_14,1232_31682,0 751,1232,man,who did the man behind the rock shoot on the horse?,cSDkshD2ME0_11_14,1232_31683,0 752,1232,man,who shoots another man on a horse?,cSDkshD2ME0_11_14,1232_31684,0 753,1232,man,who did the man shoot on the horse with a shotgun?,cSDkshD2ME0_11_14,1232_31685,0 754,1232,man,who is shot the cowboy on the horse?,cSDkshD2ME0_11_14,1232_31686,0 755,1232,man,who shoots a man on a horse?,cSDkshD2ME0_11_14,1232_31687,0 756,1232,horse,what did the man behind the rock shoot the man on?,cSDkshD2ME0_11_14,1232_31688,0 757,1232,horse,what did the man shoot the man on with a shotgun?,cSDkshD2ME0_11_14,1232_31689,0 758,1232,shotgun,what did the man shoot the man on the horse with?,cSDkshD2ME0_11_14,1232_31690,0 759,1232,man,who is crouching behind some rocks?,cSDkshD2ME0_11_14,1232_31691,0 760,1232,cowboy,who is the man shot on the horse?,cSDkshD2ME0_11_14,1232_31692,0 761,1232,man,who shoots a man on horseback?,cSDkshD2ME0_11_14,1232_31693,0 762,1232,horse,what is the man shot the cowboy on?,cSDkshD2ME0_11_14,1232_31694,0 763,1232,man,who is shooting a mounted horseman?,cSDkshD2ME0_11_14,1232_31695,0 764,1232,man,who is shooting another man?,cSDkshD2ME0_11_14,1232_31696,0 765,1232,man,who is a man shooting?,cSDkshD2ME0_11_14,1232_31697,0 766,1232,hide,what is a man doing?,cSDkshD2ME0_11_14,1232_31698,0 767,1232,shoot,what is a man doing?,cSDkshD2ME0_11_14,1232_31699,0 768,1233,man,who shoots a man sitting on a horse?,cSDkshD2ME0_12_15,1233_31700,0 769,1233,man,who did the gunman shoot on a horse?,cSDkshD2ME0_12_15,1233_31701,0 770,1233,man,who is shooting a man on a horse?,cSDkshD2ME0_12_15,1233_31702,0 771,1233,man,who did the shooter hit on the horse?,cSDkshD2ME0_12_15,1233_31703,0 772,1233,gunman,who shot a man on a horse?,cSDkshD2ME0_12_15,1233_31704,0 773,1233,horse,what did the gunman shoot a man on?,cSDkshD2ME0_12_15,1233_31705,0 774,1233,man,who is firing a man on horse?,cSDkshD2ME0_12_15,1233_31706,0 775,1233,horse,what did the shooter hit the man on?,cSDkshD2ME0_12_15,1233_31707,0 776,1233,man,who is a man shooting on a horse?,cSDkshD2ME0_12_15,1233_31708,0 777,1233,shooter,what hit the man on the horse?,cSDkshD2ME0_12_15,1233_31709,0 778,1233,horse,what is a man shooting a man on?,cSDkshD2ME0_12_15,1233_31710,0 779,1233,man,who is firing on other man?,cSDkshD2ME0_12_15,1233_31711,0 780,1233,man,who shoots someone riding a horse?,cSDkshD2ME0_12_15,1233_31712,0 781,1233,man,who shoots a rifle?,cSDkshD2ME0_12_15,1233_31713,0 782,1233,man,who shot the cowboy?,cSDkshD2ME0_12_15,1233_31714,0 783,1233,shot,what is a man on horseback?,cSDkshD2ME0_12_15,1233_31715,0 784,1233,man,who is shooting a horseman?,cSDkshD2ME0_12_15,1233_31716,0 785,1233,man,who is shot on a horse?,cSDkshD2ME0_12_15,1233_31717,0 786,1233,cowboy,who did the man shoot?,cSDkshD2ME0_12_15,1233_31718,0 787,1233,horseman,who is a man shooting?,cSDkshD2ME0_12_15,1233_31719,0 788,1233,horse,what is a man shot on?,cSDkshD2ME0_12_15,1233_31720,0 789,1233,rifle,what does a man shoot?,cSDkshD2ME0_12_15,1233_31721,0 790,1233,horse,what does a man get shot on?,cSDkshD2ME0_12_15,1233_31722,0 791,1233,man,who is getting shot?,cSDkshD2ME0_12_15,1233_31723,0 792,1233,fire,what is a man doing?,cSDkshD2ME0_12_15,1233_31724,0 793,1233,shoot,what is a man doing?,cSDkshD2ME0_12_15,1233_31725,0 794,1233,sit,what is one man shoots a man doing?,cSDkshD2ME0_12_15,1233_31726,0 795,1234,person,who is pouring extra virgin olive oil into a container of tomatoes?,cUW_bXll6YM_390_395,1234_31727,0 796,1234,man,who is pouring olive oil into a bowl of sliced tomatoes?,cUW_bXll6YM_390_395,1234_31728,0 797,1234,someone,who pours olive oil into a bowl of tomato wedges?,cUW_bXll6YM_390_395,1234_31729,0 798,1234,man,who is adding olive oil to chunks of tomatoes?,cUW_bXll6YM_390_395,1234_31730,0 799,1234,man,who is pouring oil into a bowl of tomatoes?,cUW_bXll6YM_390_395,1234_31731,0 800,1234,man,who is adding oil to a bowl of tomatoes?,cUW_bXll6YM_390_395,1234_31732,0 801,1234,man,who poured oil on the tomato slices?,cUW_bXll6YM_390_395,1234_31733,0 802,1234,oil,what is a man pouring into a bowl of sliced tomatoes?,cUW_bXll6YM_390_395,1234_31734,0 803,1234,oil,what does someone pour into a bowl of tomato wedges?,cUW_bXll6YM_390_395,1234_31735,0 804,1234,man,who poured oil on the cut tomatoes?,cUW_bXll6YM_390_395,1234_31736,0 805,1234,man,who is adding oil to sliced tomato?,cUW_bXll6YM_390_395,1234_31737,0 806,1234,man,who is adding oil on tomatoes pieces?,cUW_bXll6YM_390_395,1234_31738,0 807,1234,oil,what did the man pour on the tomato slices?,cUW_bXll6YM_390_395,1234_31739,0 808,1234,man,who poured oil over tomatoes?,cUW_bXll6YM_390_395,1234_31740,0 809,1234,oil,what is a man adding to chunks of tomatoes?,cUW_bXll6YM_390_395,1234_31741,0 810,1234,man,who pours oil onto sliced tomatoes?,cUW_bXll6YM_390_395,1234_31742,0 811,1234,oil,what did the man pour on the cut tomatoes?,cUW_bXll6YM_390_395,1234_31743,0 812,1234,oil,what is a man pouring into a bowl of tomatoes?,cUW_bXll6YM_390_395,1234_31744,0 813,1234,oil,what is a man adding to sliced tomato?,cUW_bXll6YM_390_395,1234_31745,0 814,1234,man,who pours olive oil over tomatoes?,cUW_bXll6YM_390_395,1234_31746,0 815,1234,man,who pours oil over tomato slices?,cUW_bXll6YM_390_395,1234_31747,0 816,1234,oil,what is a man adding to a bowl of tomatoes?,cUW_bXll6YM_390_395,1234_31748,0 817,1234,oil,what is a man adding on tomatoes pieces?,cUW_bXll6YM_390_395,1234_31749,0 818,1234,man,who pours oil on some tomatos?,cUW_bXll6YM_390_395,1234_31750,0 819,1234,someone,who is pouring olive oil on tomatoes?,cUW_bXll6YM_390_395,1234_31751,0 820,1234,oil,what does a man pour onto sliced tomatoes?,cUW_bXll6YM_390_395,1234_31752,0 821,1234,someone,who is pouring oil over tomatoes?,cUW_bXll6YM_390_395,1234_31753,0 822,1234,man,who is pouring oil on tomatoes?,cUW_bXll6YM_390_395,1234_31754,0 823,1234,oil,what does a man pour over tomato slices?,cUW_bXll6YM_390_395,1234_31755,0 824,1234,oil,what does a man pour on some tomatos?,cUW_bXll6YM_390_395,1234_31756,0 825,1234,oil,what did the man pour over tomatoes?,cUW_bXll6YM_390_395,1234_31757,0 826,1234,tomato,what is a man adding oil to?,cUW_bXll6YM_390_395,1234_31758,0 827,1234,man,who cut up tomatoes?,cUW_bXll6YM_390_395,1234_31759,0 828,1234,oil,what did a man pour over tomatoes?,cUW_bXll6YM_390_395,1234_31760,0 829,1234,oil,what does a man pour over tomatoes?,cUW_bXll6YM_390_395,1234_31761,0 830,1234,oil,what is someone pouring on tomatoes?,cUW_bXll6YM_390_395,1234_31762,0 831,1234,oil,what is someone pouring over tomatoes?,cUW_bXll6YM_390_395,1234_31763,0 832,1234,tomato,what does a man pour oil on?,cUW_bXll6YM_390_395,1234_31764,0 833,1234,oil,what is a man pouring on tomatoes?,cUW_bXll6YM_390_395,1234_31765,0 834,1234,pmy,what is a man doing?,cUW_bXll6YM_390_395,1234_31766,0 835,1234,pmy,what is a person doing?,cUW_bXll6YM_390_395,1234_31767,0 836,1234,pmy,what is someone doing?,cUW_bXll6YM_390_395,1234_31768,0 837,1235,man,who slices a tomato in half with a paring knife?,cUW_bXll6YM_462_469,1235_31769,0 838,1235,man,who is cutting a tomato in half with a knife?,cUW_bXll6YM_462_469,1235_31770,0 839,1235,person,who is slicing a tomato with a knife?,cUW_bXll6YM_462_469,1235_31771,0 840,1235,man,who is cutting a tomato into two pieces?,cUW_bXll6YM_462_469,1235_31772,0 841,1235,knife,what is a man cutting a tomato in half with?,cUW_bXll6YM_462_469,1235_31773,0 842,1235,knife,what is a person slicing a tomato with?,cUW_bXll6YM_462_469,1235_31774,0 843,1235,half,what is a man cutting a tomato in with a knife?,cUW_bXll6YM_462_469,1235_31775,0 844,1235,tomato,what is a man cutting in half with a knife?,cUW_bXll6YM_462_469,1235_31776,0 845,1235,tomato,what is a person slicing with a knife?,cUW_bXll6YM_462_469,1235_31777,0 846,1235,man,who cut the tomatoe in half?,cUW_bXll6YM_462_469,1235_31778,0 847,1235,man,who slices a tomato in half?,cUW_bXll6YM_462_469,1235_31779,0 848,1235,tomato,what is a man cutting into two pieces?,cUW_bXll6YM_462_469,1235_31780,0 849,1235,man,who cuts a tomato in half?,cUW_bXll6YM_462_469,1235_31781,0 850,1235,man,who sliced a tomatoe?,cUW_bXll6YM_462_469,1235_31782,0 851,1235,man,who is slicing tomato?,cUW_bXll6YM_462_469,1235_31783,0 852,1235,man,who is slicing a large tomato?,cUW_bXll6YM_462_469,1235_31784,0 853,1235,man,who is slicing a tomato?,cUW_bXll6YM_462_469,1235_31785,0 854,1235,man,who cuts a tomato?,cUW_bXll6YM_462_469,1235_31786,0 855,1235,man,who is cutting a tomato?,cUW_bXll6YM_462_469,1235_31787,0 856,1235,tomatoe,who did the man slice?,cUW_bXll6YM_462_469,1235_31788,0 857,1235,tomato,what is someone slicing?,cUW_bXll6YM_462_469,1235_31789,0 858,1235,tomato,what is a man slicing?,cUW_bXll6YM_462_469,1235_31790,0 859,1235,tomato,what is the man slicing?,cUW_bXll6YM_462_469,1235_31791,0 860,1235,tomato,what is a man cutting?,cUW_bXll6YM_462_469,1235_31792,0 861,1235,par,what is a man slices a tomato in half with a doing?,cUW_bXll6YM_462_469,1235_31793,0 862,1235,slouse,what is a man doing?,cUW_bXll6YM_462_469,1235_31794,0 863,1235,cut,what is a man doing?,cUW_bXll6YM_462_469,1235_31795,0 864,1235,slouse,what is a person doing?,cUW_bXll6YM_462_469,1235_31796,0 865,1235,slouse,what is someone doing?,cUW_bXll6YM_462_469,1235_31797,0 866,1235,slouse,what is the man doing?,cUW_bXll6YM_462_469,1235_31798,0 867,1236,ground,what is an opossum like animal sniffing?,cWOPC2kt_IA_8_16,1236_31799,0 868,1236,ground,what is a pointed nose rodent walking around on sniffing?,cWOPC2kt_IA_8_16,1236_31800,0 869,1236,oppossum,who sniffed along the ground?,cWOPC2kt_IA_8_16,1236_31801,0 870,1236,mammal,what foraged in the grass?,cWOPC2kt_IA_8_16,1236_31802,0 871,1236,ground,what is a small animal walking on?,cWOPC2kt_IA_8_16,1236_31803,0 872,1236,ground,what did the oppossum sniff along?,cWOPC2kt_IA_8_16,1236_31804,0 873,1236,solenodon,who is walking along the ground?,cWOPC2kt_IA_8_16,1236_31805,0 874,1236,solenodon,who is searching for food?,cWOPC2kt_IA_8_16,1236_31806,0 875,1236,gras,what did the mammal forage in?,cWOPC2kt_IA_8_16,1236_31807,0 876,1236,ground,what is a solenodon walking along?,cWOPC2kt_IA_8_16,1236_31808,0 877,1236,rodent,what is looking for food?,cWOPC2kt_IA_8_16,1236_31809,0 878,1236,animal,what is walking on the ground?,cWOPC2kt_IA_8_16,1236_31810,0 879,1236,food,what is a solenodon searching for?,cWOPC2kt_IA_8_16,1236_31811,0 880,1236,ground,what is an animal walking on?,cWOPC2kt_IA_8_16,1236_31812,0 881,1236,food,what is the rodent looking for?,cWOPC2kt_IA_8_16,1236_31813,0 882,1236,animal,what is sniffing around?,cWOPC2kt_IA_8_16,1236_31814,0 883,1236,animal,what is walking around?,cWOPC2kt_IA_8_16,1236_31815,0 884,1236,rodent,what walks around?,cWOPC2kt_IA_8_16,1236_31816,0 885,1236,animal,what is walking?,cWOPC2kt_IA_8_16,1236_31817,0 886,1236,sniff,what is an animal doing?,cWOPC2kt_IA_8_16,1236_31818,0 887,1236,walk,what is a pointed nose rodent doing?,cWOPC2kt_IA_8_16,1236_31819,0 888,1236,search,what is a solenodon doing?,cWOPC2kt_IA_8_16,1236_31820,0 889,1236,smell,what is a rat like creature doing?,cWOPC2kt_IA_8_16,1236_31821,0 890,1236,walk,what is a small animal doing?,cWOPC2kt_IA_8_16,1236_31822,0 891,1236,look,what is the rodent doing?,cWOPC2kt_IA_8_16,1236_31823,0 892,1236,walk,what is an opossum like animal doing?,cWOPC2kt_IA_8_16,1236_31824,0 893,1237,someone,who is riding a wheelie on a motor scooter?,c_-eFL7Sfw4_19_35,1237_31825,0 894,1237,person,who is doing wheelies on a motor bike?,c_-eFL7Sfw4_19_35,1237_31826,0 895,1237,person,who does wheelies on a motor scooter?,c_-eFL7Sfw4_19_35,1237_31827,0 896,1237,man,who pops wheelies on his motor scooter?,c_-eFL7Sfw4_19_35,1237_31828,0 897,1237,man,who did a wheelie on his motorcycle?,c_-eFL7Sfw4_19_35,1237_31829,0 898,1237,man,who is riding on one wheel on a motorcycle?,c_-eFL7Sfw4_19_35,1237_31830,0 899,1237,street,what does a moped driver pop a wheely in?,c_-eFL7Sfw4_19_35,1237_31831,0 900,1237,man,who popped a wheelie on his motorcycle?,c_-eFL7Sfw4_19_35,1237_31832,0 901,1237,driver,who pops a wheely in the street?,c_-eFL7Sfw4_19_35,1237_31833,0 902,1237,person,who is performing tricks on a motorcycle?,c_-eFL7Sfw4_19_35,1237_31834,0 903,1237,person,who is doing a wheeling on his bike?,c_-eFL7Sfw4_19_35,1237_31835,0 904,1237,wheelie,what is someone riding on a motor scooter?,c_-eFL7Sfw4_19_35,1237_31836,0 905,1237,wheelie,who did a man pop on his motorcycle?,c_-eFL7Sfw4_19_35,1237_31837,0 906,1237,wheel,what is a man riding on on a motorcycle?,c_-eFL7Sfw4_19_35,1237_31838,0 907,1237,motorcycle,what is a man riding on one wheel on?,c_-eFL7Sfw4_19_35,1237_31839,0 908,1237,motorcycle,what is a person performing tricks on?,c_-eFL7Sfw4_19_35,1237_31840,0 909,1237,someone,who is doing stunts on a motorcycle?,c_-eFL7Sfw4_19_35,1237_31841,0 910,1237,wheeling,what is a person doing on his bike?,c_-eFL7Sfw4_19_35,1237_31842,0 911,1237,man,who is doing moped tricks?,c_-eFL7Sfw4_19_35,1237_31843,0 912,1237,motorcycle,what did a man pop a wheelie on?,c_-eFL7Sfw4_19_35,1237_31844,0 913,1237,person,who is doing some bike stunts?,c_-eFL7Sfw4_19_35,1237_31845,0 914,1237,bike,what is a person doing a wheeling on?,c_-eFL7Sfw4_19_35,1237_31846,0 915,1237,motorcycle,what is someone doing stunts on?,c_-eFL7Sfw4_19_35,1237_31847,0 916,1237,bike,what is a person doing?,c_-eFL7Sfw4_19_35,1237_31848,0 917,1237,moped,what is the man doing?,c_-eFL7Sfw4_19_35,1237_31849,0 918,1237,perform,what is a person doing?,c_-eFL7Sfw4_19_35,1237_31850,0 919,1238,man,who played the trumpet with his cowboy hat on?,c_XV7nPoRg8_2_12,1238_31851,0 920,1238,trumpet,what is a young man wearing a straw hat playing?,c_XV7nPoRg8_2_12,1238_31852,0 921,1238,man,who is playing saxophone?,c_XV7nPoRg8_2_12,1238_31853,0 922,1238,guy,who plays a trumpet?,c_XV7nPoRg8_2_12,1238_31854,0 923,1238,boy,who plays the trumpet?,c_XV7nPoRg8_2_12,1238_31855,0 924,1238,man,who is playing a trumpet?,c_XV7nPoRg8_2_12,1238_31856,0 925,1238,boy,who is playing an instrument?,c_XV7nPoRg8_2_12,1238_31857,0 926,1238,man,who played his trumpet?,c_XV7nPoRg8_2_12,1238_31858,0 927,1238,man,what is playing the trumpet?,c_XV7nPoRg8_2_12,1238_31859,0 928,1238,trumpet,what does a young guy play?,c_XV7nPoRg8_2_12,1238_31860,0 929,1238,trumpet,what is a man standing playing?,c_XV7nPoRg8_2_12,1238_31861,0 930,1238,trumpet,what does a boy play?,c_XV7nPoRg8_2_12,1238_31862,0 931,1238,trumpet,what is a boy playing?,c_XV7nPoRg8_2_12,1238_31863,0 932,1238,trumpet,what does a man play?,c_XV7nPoRg8_2_12,1238_31864,0 933,1238,trumpet,what is a guy playing?,c_XV7nPoRg8_2_12,1238_31865,0 934,1238,trumpet,what is a man playing?,c_XV7nPoRg8_2_12,1238_31866,0 935,1238,trumpet,what is the man playing?,c_XV7nPoRg8_2_12,1238_31867,0 936,1238,trumpet,what did the man play?,c_XV7nPoRg8_2_12,1238_31868,0 937,1238,wear,what is a young man doing?,c_XV7nPoRg8_2_12,1238_31869,0 938,1238,play,what is a man doing?,c_XV7nPoRg8_2_12,1238_31870,0 939,1238,play,what is a boy doing?,c_XV7nPoRg8_2_12,1238_31871,0 940,1238,play,what is a guy doing?,c_XV7nPoRg8_2_12,1238_31872,0 941,1238,play,what is a man standing doing?,c_XV7nPoRg8_2_12,1238_31873,0 942,1238,play,what is the man doing?,c_XV7nPoRg8_2_12,1238_31874,0 943,1239,woman,who is playing catch with a kid?,ceOXCFUmxzA_100_110,1239_31875,0 944,1239,catch,what is a woman playing with a kid?,ceOXCFUmxzA_100_110,1239_31876,0 945,1239,pumpkin,what is a woman and child tossing to each other?,ceOXCFUmxzA_100_110,1239_31877,0 946,1239,catch,what are a boy and woman playing with a pumpkin?,ceOXCFUmxzA_100_110,1239_31878,0 947,1239,pumpkin,what are a boy and woman playing catch with?,ceOXCFUmxzA_100_110,1239_31879,0 948,1239,kid,who is a woman playing catch with?,ceOXCFUmxzA_100_110,1239_31880,0 949,1239,two,how many people toss a small pumpkin back and forth?,ceOXCFUmxzA_100_110,1239_31881,0 950,1239,boy,who played catch with the lady?,ceOXCFUmxzA_100_110,1239_31882,0 951,1239,pumpkin,what are a woman and boy tossing around?,ceOXCFUmxzA_100_110,1239_31883,0 952,1239,catch,what did the boy play with the lady?,ceOXCFUmxzA_100_110,1239_31884,0 953,1239,boy,who played catch with his mother?,ceOXCFUmxzA_100_110,1239_31885,0 954,1239,capsicum,what are a boy and a woman plying?,ceOXCFUmxzA_100_110,1239_31886,0 955,1239,ball,what do a mom and a child toss?,ceOXCFUmxzA_100_110,1239_31887,0 956,1239,catch,what did the boy play with his mother?,ceOXCFUmxzA_100_110,1239_31888,0 957,1239,pumpkin,what are a boy and woman tossing?,ceOXCFUmxzA_100_110,1239_31889,0 958,1239,mother,who did the boy play catch with?,ceOXCFUmxzA_100_110,1239_31890,0 959,1239,catch,what do a woman and a boy play?,ceOXCFUmxzA_100_110,1239_31891,0 960,1239,pumpkin,what do two people toss back and forth?,ceOXCFUmxzA_100_110,1239_31892,0 961,1239,pumpkin,what do a boy and woman toss back and forth?,ceOXCFUmxzA_100_110,1239_31893,0 962,1239,pumpkin,what are people throwing?,ceOXCFUmxzA_100_110,1239_31894,0 963,1239,catch,what are a mom and son playing?,ceOXCFUmxzA_100_110,1239_31895,0 964,1239,catch,what are the woman and boy playing?,ceOXCFUmxzA_100_110,1239_31896,0 965,1239,tos,what are a boy and woman doing?,ceOXCFUmxzA_100_110,1239_31897,0 966,1239,ply,what are a boy and a woman doing?,ceOXCFUmxzA_100_110,1239_31898,0 967,1239,tos,what is a woman and child doing?,ceOXCFUmxzA_100_110,1239_31899,0 968,1239,play,what is a woman doing?,ceOXCFUmxzA_100_110,1239_31900,0 969,1239,tos,what are a woman and boy doing?,ceOXCFUmxzA_100_110,1239_31901,0 970,1239,play,what are a boy and his mom doing?,ceOXCFUmxzA_100_110,1239_31902,0 971,1239,play,what are a mom and son doing?,ceOXCFUmxzA_100_110,1239_31903,0 972,1239,throw,what are people doing?,ceOXCFUmxzA_100_110,1239_31904,0 973,1239,play,what are the woman and boy doing?,ceOXCFUmxzA_100_110,1239_31905,0 974,1240,man,who is giving an interview sitting at a news room studio?,clKtfGBVI1I_15_28,1240_31906,0 975,1240,man,who talked to the camera in the news room?,clKtfGBVI1I_15_28,1240_31907,0 976,1240,man,who talked on television in the studio?,clKtfGBVI1I_15_28,1240_31908,0 977,1240,man,who is talking to an unseen person?,clKtfGBVI1I_15_28,1240_31909,0 978,1240,camera,what did the man talk to in the news room?,clKtfGBVI1I_15_28,1240_31910,0 979,1240,television,what did the man talk on in the studio?,clKtfGBVI1I_15_28,1240_31911,0 980,1240,studio,what did the man talk on television in?,clKtfGBVI1I_15_28,1240_31912,0 981,1240,man,who is participating in a tv interview?,clKtfGBVI1I_15_28,1240_31913,0 982,1240,man,who is speaking on a talk program?,clKtfGBVI1I_15_28,1240_31914,0 983,1240,man,who talks on television?,clKtfGBVI1I_15_28,1240_31915,0 984,1240,man,who is speaking on camera?,clKtfGBVI1I_15_28,1240_31916,0 985,1240,man,who is giving an interview?,clKtfGBVI1I_15_28,1240_31917,0 986,1240,television,what does a black man talk on?,clKtfGBVI1I_15_28,1240_31918,0 987,1240,man,who is sitting down?,clKtfGBVI1I_15_28,1240_31919,0 988,1240,man,who talks?,clKtfGBVI1I_15_28,1240_31920,0 989,1240,man,who is speaking?,clKtfGBVI1I_15_28,1240_31921,0 990,1240,man,who is talking?,clKtfGBVI1I_15_28,1240_31922,0 991,1240,talk,what is a man doing?,clKtfGBVI1I_15_28,1240_31923,0 992,1240,sit,what is a black man doing?,clKtfGBVI1I_15_28,1240_31924,0 993,1240,talk,what are a man and a woman doing?,clKtfGBVI1I_15_28,1240_31925,0 994,1240,speak,what is a man doing?,clKtfGBVI1I_15_28,1240_31926,0 995,1240,talk,what is the man doing?,clKtfGBVI1I_15_28,1240_31927,0 996,1241,playpen,what are two young beavers being kept in when a hand reaches into the playpen and pets one of them?,clpgffj3sUw_1_12,1241_31928,0 997,1241,person,who is petting a domesticated beaver?,clpgffj3sUw_1_12,1241_31929,0 998,1241,person,who is tickling a baby beaver?,clpgffj3sUw_1_12,1241_31930,0 999,1241,person,who pets a beaver?,clpgffj3sUw_1_12,1241_31931,0 1000,1241,woman,who is stroking a baby beaver?,clpgffj3sUw_1_12,1241_31932,0 1001,1241,someone,who petting a beaver?,clpgffj3sUw_1_12,1241_31933,0 1002,1241,person,who is itching a baby beaver?,clpgffj3sUw_1_12,1241_31934,0 1003,1241,person,who is scratching a baby beaver?,clpgffj3sUw_1_12,1241_31935,0 1004,1241,man,who scratches a small animal?,clpgffj3sUw_1_12,1241_31936,0 1005,1241,woman,who is petting a beaver?,clpgffj3sUw_1_12,1241_31937,0 1006,1241,man,who scratched the animal?,clpgffj3sUw_1_12,1241_31938,0 1007,1241,man,who is scratching a beaver?,clpgffj3sUw_1_12,1241_31939,0 1008,1241,beaver,what a person pets?,clpgffj3sUw_1_12,1241_31940,0 1009,1241,beaver,what is someone petting?,clpgffj3sUw_1_12,1241_31941,0 1010,1241,beaver,what does someone pet?,clpgffj3sUw_1_12,1241_31942,0 1011,1241,beaver,what is a person tickling?,clpgffj3sUw_1_12,1241_31943,0 1012,1241,beaver,what is someone scratching?,clpgffj3sUw_1_12,1241_31944,0 1013,1241,beaver,what is a woman stroking?,clpgffj3sUw_1_12,1241_31945,0 1014,1241,animal,what does a man scratch?,clpgffj3sUw_1_12,1241_31946,0 1015,1241,beaver,what is a woman petting?,clpgffj3sUw_1_12,1241_31947,0 1016,1241,beaver,what is a person petting?,clpgffj3sUw_1_12,1241_31948,0 1017,1241,animal,what do the man scratch?,clpgffj3sUw_1_12,1241_31949,0 1018,1241,beaver,what is a person itching?,clpgffj3sUw_1_12,1241_31950,0 1019,1241,beaver,what is a person scratching?,clpgffj3sUw_1_12,1241_31951,0 1020,1241,beaver,what is a man scratching?,clpgffj3sUw_1_12,1241_31952,0 1021,1241,beaver,what is being petted?,clpgffj3sUw_1_12,1241_31953,0 1022,1241,move,what is two baby beavers doing?,clpgffj3sUw_1_12,1241_31954,0 1023,1241,scratch,what is a man doing?,clpgffj3sUw_1_12,1241_31955,0 1024,1241,itch,what is a person doing?,clpgffj3sUw_1_12,1241_31956,0 1025,1241,pet,what is a person doing?,clpgffj3sUw_1_12,1241_31957,0 1026,1241,tickle,what is a person doing?,clpgffj3sUw_1_12,1241_31958,0 1027,1241,stroke,what is a woman is gently doing?,clpgffj3sUw_1_12,1241_31959,0 1028,1241,pet,what is a woman doing?,clpgffj3sUw_1_12,1241_31960,0 1029,1241,pet,what is someone doing?,clpgffj3sUw_1_12,1241_31961,0 1030,1242,cat,what swatted someone from inside a box?,cmQ3SiIaWy4_4_20,1242_31962,0 1031,1242,someone,what did the cat swat from inside a box?,cmQ3SiIaWy4_4_20,1242_31963,0 1032,1242,cat,what pops out of the box to attack a finger?,cmQ3SiIaWy4_4_20,1242_31964,0 1033,1242,hand,what does a white kitten pop out from a cardboard box every time a man brings close to it?,cmQ3SiIaWy4_4_20,1242_31965,0 1034,1242,kitten,what pops out from a cardboard box every time a man brings his hand close to it?,cmQ3SiIaWy4_4_20,1242_31966,0 1035,1242,box,what does a cat pop out of to attack a finger?,cmQ3SiIaWy4_4_20,1242_31967,0 1036,1242,finger,what does a cat pop out of the box to attack?,cmQ3SiIaWy4_4_20,1242_31968,0 1037,1242,cat,what is striking quickly from inside a box?,cmQ3SiIaWy4_4_20,1242_31969,0 1038,1242,cat,what is popping out of a box?,cmQ3SiIaWy4_4_20,1242_31970,0 1039,1242,cat,what is jumping out of a box?,cmQ3SiIaWy4_4_20,1242_31971,0 1040,1242,box,what is a cat popping out of?,cmQ3SiIaWy4_4_20,1242_31972,0 1041,1242,box,what is a cat jumping out of?,cmQ3SiIaWy4_4_20,1242_31973,0 1042,1242,cat,what pops out of a box?,cmQ3SiIaWy4_4_20,1242_31974,0 1043,1242,cat,what is in the box?,cmQ3SiIaWy4_4_20,1242_31975,0 1044,1242,box,what is the cat in?,cmQ3SiIaWy4_4_20,1242_31976,0 1045,1242,jump,what is a cat doing?,cmQ3SiIaWy4_4_20,1242_31977,0 1046,1242,pop,what is a cat doing?,cmQ3SiIaWy4_4_20,1242_31978,0 1047,1242,play,what is a man doing?,cmQ3SiIaWy4_4_20,1242_31979,0 1048,1242,strike,what is a white cat doing?,cmQ3SiIaWy4_4_20,1242_31980,0 1049,1243,man,who eats several different types of food?,cnsjm3fNEec_4_10,1243_31981,0 1050,1243,man,who is stuffing all kinds of food into his mouth?,cnsjm3fNEec_4_10,1243_31982,0 1051,1243,man,who is stuffing various food items into his mouth?,cnsjm3fNEec_4_10,1243_31983,0 1052,1243,man,who is eating food while his stomach grows bigger?,cnsjm3fNEec_4_10,1243_31984,0 1053,1243,food,what does a man eat several different types of?,cnsjm3fNEec_4_10,1243_31985,0 1054,1243,man,who is shoving food into his mouth?,cnsjm3fNEec_4_10,1243_31986,0 1055,1243,man,who is stuffing himself full with food?,cnsjm3fNEec_4_10,1243_31987,0 1056,1243,man,who is hogging noodles and ice cream?,cnsjm3fNEec_4_10,1243_31988,0 1057,1243,food,what is a man stuffing all kinds of into his mouth?,cnsjm3fNEec_4_10,1243_31989,0 1058,1243,man,who is stuffing food in his mouth?,cnsjm3fNEec_4_10,1243_31990,0 1059,1243,man,who is eating noodles and ice creams?,cnsjm3fNEec_4_10,1243_31991,0 1060,1243,food,what is a man eating while his stomach grows bigger?,cnsjm3fNEec_4_10,1243_31992,0 1061,1243,food,what is a man shoving into his mouth?,cnsjm3fNEec_4_10,1243_31993,0 1062,1243,food,what is a man stuffing himself full with?,cnsjm3fNEec_4_10,1243_31994,0 1063,1243,food,what is a man stuffing in his mouth?,cnsjm3fNEec_4_10,1243_31995,0 1064,1243,man,who stuffing his face with food?,cnsjm3fNEec_4_10,1243_31996,0 1065,1243,mouth,what is a man stuffing all kinds of food into?,cnsjm3fNEec_4_10,1243_31997,0 1066,1243,man,who stuffed his face with food?,cnsjm3fNEec_4_10,1243_31998,0 1067,1243,mouth,what is a man stuffing various food items into?,cnsjm3fNEec_4_10,1243_31999,0 1068,1243,man,who is eating various foods?,cnsjm3fNEec_4_10,1243_32000,0 1069,1243,food,what did a man stuff his face with?,cnsjm3fNEec_4_10,1243_32001,0 1070,1243,food,what did the man stuff his face with?,cnsjm3fNEec_4_10,1243_32002,0 1071,1243,man,who is eating food?,cnsjm3fNEec_4_10,1243_32003,0 1072,1243,mouth,what is a man shoving food into?,cnsjm3fNEec_4_10,1243_32004,0 1073,1243,mouth,what is a man stuffing food in?,cnsjm3fNEec_4_10,1243_32005,0 1074,1243,face,what did a man stuff with food?,cnsjm3fNEec_4_10,1243_32006,0 1075,1243,face,what did the man stuff with food?,cnsjm3fNEec_4_10,1243_32007,0 1076,1243,man,who is eating?,cnsjm3fNEec_4_10,1243_32008,0 1077,1243,stuff,what is a man doing?,cnsjm3fNEec_4_10,1243_32009,0 1078,1243,hog,what is a man doing?,cnsjm3fNEec_4_10,1243_32010,0 1079,1243,eat,what is a man doing?,cnsjm3fNEec_4_10,1243_32011,0 1080,1243,eat,what is the man doing?,cnsjm3fNEec_4_10,1243_32012,0 1081,1243,shove,what is a man doing?,cnsjm3fNEec_4_10,1243_32013,0 1082,1244,man,who is playing flute?,crfrKqFp0Zg_15_25,1244_32014,0 1083,1244,man,who plays a flute?,crfrKqFp0Zg_15_25,1244_32015,0 1084,1244,man,who plays the flute?,crfrKqFp0Zg_15_25,1244_32016,0 1085,1244,man,who is playing a flute?,crfrKqFp0Zg_15_25,1244_32017,0 1086,1244,man,who is playing the flute?,crfrKqFp0Zg_15_25,1244_32018,0 1087,1244,man,who played his flute?,crfrKqFp0Zg_15_25,1244_32019,0 1088,1244,flute,what does a man play?,crfrKqFp0Zg_15_25,1244_32020,0 1089,1244,flute,what is a man playing?,crfrKqFp0Zg_15_25,1244_32021,0 1090,1244,flute,what is the man playing?,crfrKqFp0Zg_15_25,1244_32022,0 1091,1244,flute,what did the man play?,crfrKqFp0Zg_15_25,1244_32023,0 1092,1244,play,what is a man doing?,crfrKqFp0Zg_15_25,1244_32024,0 1093,1244,play,what is the man doing?,crfrKqFp0Zg_15_25,1244_32025,0 1094,1245,airline,who closes the exterior door of a plane?,cs33MNhpRNw_16_21,1245_32026,0 1095,1245,attendant,who closes the outside door on the plane?,cs33MNhpRNw_16_21,1245_32027,0 1096,1245,attendant,who is closing the emergency door of a plane?,cs33MNhpRNw_16_21,1245_32028,0 1097,1245,man,who is closing a door on an airplane?,cs33MNhpRNw_16_21,1245_32029,0 1098,1245,plane,what does an airline worker close the exterior door of?,cs33MNhpRNw_16_21,1245_32030,0 1099,1245,man,who closes a door on a plane?,cs33MNhpRNw_16_21,1245_32031,0 1100,1245,plane,what is a male flight attendant closing the door of?,cs33MNhpRNw_16_21,1245_32032,0 1101,1245,plane,what is a flight attendant closing the emergency door of?,cs33MNhpRNw_16_21,1245_32033,0 1102,1245,plane,what is a man closing the door of?,cs33MNhpRNw_16_21,1245_32034,0 1103,1245,door,what is a man closing on an airplane?,cs33MNhpRNw_16_21,1245_32035,0 1104,1245,airplane,what is a man closing a door on?,cs33MNhpRNw_16_21,1245_32036,0 1105,1245,attendant,who is closing a plane door?,cs33MNhpRNw_16_21,1245_32037,0 1106,1245,steward,who closed the airplane door?,cs33MNhpRNw_16_21,1245_32038,0 1107,1245,attendant,who shuts a door?,cs33MNhpRNw_16_21,1245_32039,0 1108,1245,steward,who rolled out a cart?,cs33MNhpRNw_16_21,1245_32040,0 1109,1245,attendant,who closed the door?,cs33MNhpRNw_16_21,1245_32041,0 1110,1245,stewardes,who is shutting a plane door?,cs33MNhpRNw_16_21,1245_32042,0 1111,1245,man,who is closing an airplane door?,cs33MNhpRNw_16_21,1245_32043,0 1112,1245,attendant,who is closing a door?,cs33MNhpRNw_16_21,1245_32044,0 1113,1245,door,what did the flight attendant close?,cs33MNhpRNw_16_21,1245_32045,0 1114,1245,cart,what did the steward roll out?,cs33MNhpRNw_16_21,1245_32046,0 1115,1245,door,what does a flight attendant shut?,cs33MNhpRNw_16_21,1245_32047,0 1116,1245,airplane,what did the steward close?,cs33MNhpRNw_16_21,1245_32048,0 1117,1245,door,what does an airline employee shut?,cs33MNhpRNw_16_21,1245_32049,0 1118,1245,plane,what is a stewardess shutting?,cs33MNhpRNw_16_21,1245_32050,0 1119,1245,door,what is a flight attendant closing?,cs33MNhpRNw_16_21,1245_32051,0 1120,1245,airplane,what is a man closing?,cs33MNhpRNw_16_21,1245_32052,0 1121,1245,shut,what is a stewardess doing?,cs33MNhpRNw_16_21,1245_32053,0 1122,1246,man,who trims fat off of a haunch of meat?,cwkjJrGpoaU_30_41,1246_32054,0 1123,1246,person,who is slicing off strips of meat from a large piece?,cwkjJrGpoaU_30_41,1246_32055,0 1124,1246,person,who is cutting a strip off a large piece of meat?,cwkjJrGpoaU_30_41,1246_32056,0 1125,1246,butcher,who is slicing the fat off a hunk of meat?,cwkjJrGpoaU_30_41,1246_32057,0 1126,1246,man,who is cutting off a strip at one end of a large slab of meat?,cwkjJrGpoaU_30_41,1246_32058,0 1127,1246,man,who is trimming off fat from a roast?,cwkjJrGpoaU_30_41,1246_32059,0 1128,1246,butcher,who is cutting for the fat from the slab of meat?,cwkjJrGpoaU_30_41,1246_32060,0 1129,1246,man,who cuts away a strip of fat from a piece of meat?,cwkjJrGpoaU_30_41,1246_32061,0 1130,1246,meat,what is a person slicing off strips of from a large piece?,cwkjJrGpoaU_30_41,1246_32062,0 1131,1246,strip,what is a person cutting off a large piece of meat?,cwkjJrGpoaU_30_41,1246_32063,0 1132,1246,fat,what is the butcher slicing off a hunk of meat?,cwkjJrGpoaU_30_41,1246_32064,0 1133,1246,meat,what is a person slicing off from a large piece?,cwkjJrGpoaU_30_41,1246_32065,0 1134,1246,man,who is cutting a piece of meat?,cwkjJrGpoaU_30_41,1246_32066,0 1135,1246,fat,what is the butcher cutting for from the slab of meat?,cwkjJrGpoaU_30_41,1246_32067,0 1136,1246,roast,what is a man trimming off fat from?,cwkjJrGpoaU_30_41,1246_32068,0 1137,1246,man,who is trimming fat from a roast?,cwkjJrGpoaU_30_41,1246_32069,0 1138,1246,fat,what is a man trimming off from a roast?,cwkjJrGpoaU_30_41,1246_32070,0 1139,1246,fat,what does a man cut away a strip of from a piece of meat?,cwkjJrGpoaU_30_41,1246_32071,0 1140,1246,meat,what is a man cutting a piece of?,cwkjJrGpoaU_30_41,1246_32072,0 1141,1246,man,who cuts a slab of meat?,cwkjJrGpoaU_30_41,1246_32073,0 1142,1246,meat,what is fat being cut off?,cwkjJrGpoaU_30_41,1246_32074,0 1143,1246,meat,what does a man cut a slab of?,cwkjJrGpoaU_30_41,1246_32075,0 1144,1246,roast,what is a man trimming fat from?,cwkjJrGpoaU_30_41,1246_32076,0 1145,1246,fat,what is being cut off meat?,cwkjJrGpoaU_30_41,1246_32077,0 1146,1246,chef,who is cutting meat?,cwkjJrGpoaU_30_41,1246_32078,0 1147,1246,meat,what is a chef cutting?,cwkjJrGpoaU_30_41,1246_32079,0 1148,1246,cut,what is a chef doing?,cwkjJrGpoaU_30_41,1246_32080,0 1149,1246,cut,what is a man doing?,cwkjJrGpoaU_30_41,1246_32081,0 1150,1246,trim,what is a man doing?,cwkjJrGpoaU_30_41,1246_32082,0 1151,1246,cut,what is a person doing?,cwkjJrGpoaU_30_41,1246_32083,0 1152,1246,slouse,what is a person doing?,cwkjJrGpoaU_30_41,1246_32084,0 1153,1246,cut,what is the butcher doing?,cwkjJrGpoaU_30_41,1246_32085,0 1154,1247,dog,what ran into the bricks at the end of the drive?,d-2C_N5anww_1_3,1247_32086,0 1155,1247,dog,what ran into something at the end of the path?,d-2C_N5anww_1_3,1247_32087,0 1156,1247,something,what did the dog run into at the end of the path?,d-2C_N5anww_1_3,1247_32088,0 1157,1247,dog,what is running into a brick wall?,d-2C_N5anww_1_3,1247_32089,0 1158,1247,dog,what is running into a brick structure?,d-2C_N5anww_1_3,1247_32090,0 1159,1247,dog,what hits some bricks?,d-2C_N5anww_1_3,1247_32091,0 1160,1247,dog,what sprints across a lawn?,d-2C_N5anww_1_3,1247_32092,0 1161,1247,dog,what ran into a brick post?,d-2C_N5anww_1_3,1247_32093,0 1162,1247,dog,what crashes into a mailbox?,d-2C_N5anww_1_3,1247_32094,0 1163,1247,dog,what runs into a brick wall?,d-2C_N5anww_1_3,1247_32095,0 1164,1247,animal,what runs into an object?,d-2C_N5anww_1_3,1247_32096,0 1165,1247,dog,what runs into a post?,d-2C_N5anww_1_3,1247_32097,0 1166,1247,lawn,what does a dog sprint across?,d-2C_N5anww_1_3,1247_32098,0 1167,1247,running,what is hitting on something?,d-2C_N5anww_1_3,1247_32099,0 1168,1247,dog,what is running on the road?,d-2C_N5anww_1_3,1247_32100,0 1169,1247,mailbox,what does a dog crash into?,d-2C_N5anww_1_3,1247_32101,0 1170,1247,object,what does an animal run into?,d-2C_N5anww_1_3,1247_32102,0 1171,1247,something,what is a running dog hitting on?,d-2C_N5anww_1_3,1247_32103,0 1172,1247,road,what is a dog running on?,d-2C_N5anww_1_3,1247_32104,0 1173,1247,dog,what is running?,d-2C_N5anww_1_3,1247_32105,0 1174,1247,hit,what is a running dog doing?,d-2C_N5anww_1_3,1247_32106,0 1175,1248,baby,who is dancing in the hands of mother?,d1zdJO3CqVw_1_35,1248_32107,0 1176,1248,woman,who is a baby in a diaper dancing with?,d1zdJO3CqVw_1_35,1248_32108,0 1177,1248,woman,who is holding a dancing baby up?,d1zdJO3CqVw_1_35,1248_32109,0 1178,1248,baby,who danced on the wooden floor?,d1zdJO3CqVw_1_35,1248_32110,0 1179,1248,baby,who danced on the floor?,d1zdJO3CqVw_1_35,1248_32111,0 1180,1248,dancing,who is a woman holding up?,d1zdJO3CqVw_1_35,1248_32112,0 1181,1248,mother,who does a baby dance with?,d1zdJO3CqVw_1_35,1248_32113,0 1182,1248,child,who is a woman abusing?,d1zdJO3CqVw_1_35,1248_32114,0 1183,1248,baby,who is dancing?,d1zdJO3CqVw_1_35,1248_32115,0 1184,1248,baby,who is walking?,d1zdJO3CqVw_1_35,1248_32116,0 1185,1248,hold,what is a woman doing?,d1zdJO3CqVw_1_35,1248_32117,0 1186,1248,dance,what is a little baby doing?,d1zdJO3CqVw_1_35,1248_32118,0 1187,1248,dance,what is a baby doing?,d1zdJO3CqVw_1_35,1248_32119,0 1188,1248,dance,what are a woman and baby doing?,d1zdJO3CqVw_1_35,1248_32120,0 1189,1248,abuse,what is a woman doing?,d1zdJO3CqVw_1_35,1248_32121,0 1190,1248,dance,what is a small baby doing?,d1zdJO3CqVw_1_35,1248_32122,0 1191,1248,learn,what is a toddler doing?,d1zdJO3CqVw_1_35,1248_32123,0 1192,1248,walk,what is the baby doing?,d1zdJO3CqVw_1_35,1248_32124,0 1193,1248,dance,what is a baby in a diaper doing?,d1zdJO3CqVw_1_35,1248_32125,0 1194,1249,hamster,what is eating food left on a floor?,d4AGWnHJcaY_6_19,1249_32126,0 1195,1249,hamster,what is eating bits of food arranged in a line on the floor?,d4AGWnHJcaY_6_19,1249_32127,0 1196,1249,food,what is a brown hamster eating bits of arranged in a line on the floor?,d4AGWnHJcaY_6_19,1249_32128,0 1197,1249,food,what is a hamster eating a row of?,d4AGWnHJcaY_6_19,1249_32129,0 1198,1249,food,what is a hamster eating a trail of?,d4AGWnHJcaY_6_19,1249_32130,0 1199,1249,hamster,what is eating a row of food?,d4AGWnHJcaY_6_19,1249_32131,0 1200,1249,hamster,what is eating a trail of food?,d4AGWnHJcaY_6_19,1249_32132,0 1201,1249,hamster,what is eating nuts on the floor?,d4AGWnHJcaY_6_19,1249_32133,0 1202,1249,floor,what is a hamster eating nuts on?,d4AGWnHJcaY_6_19,1249_32134,0 1203,1249,hamster,what ate the trail of food?,d4AGWnHJcaY_6_19,1249_32135,0 1204,1249,food,what did the hamster eat the trail of?,d4AGWnHJcaY_6_19,1249_32136,0 1205,1249,hamster,what eats a row of seeds?,d4AGWnHJcaY_6_19,1249_32137,0 1206,1249,gerbil,what is eating sunflower seeds?,d4AGWnHJcaY_6_19,1249_32138,0 1207,1249,hamster,what is eating off the ground?,d4AGWnHJcaY_6_19,1249_32139,0 1208,1249,ground,what is a hamster eating off?,d4AGWnHJcaY_6_19,1249_32140,0 1209,1249,sunflower,what is a gerbil eating?,d4AGWnHJcaY_6_19,1249_32141,0 1210,1249,mouse,what is eating something?,d4AGWnHJcaY_6_19,1249_32142,0 1211,1249,something,what is a mouse eating?,d4AGWnHJcaY_6_19,1249_32143,0 1212,1249,hamster,what is eating?,d4AGWnHJcaY_6_19,1249_32144,0 1213,1249,eat,what is a hamster doing?,d4AGWnHJcaY_6_19,1249_32145,0 1214,1249,eat,what is a brown hamster doing?,d4AGWnHJcaY_6_19,1249_32146,0 1215,1249,eat,what is a gerbil doing?,d4AGWnHJcaY_6_19,1249_32147,0 1216,1249,eat,what is a mouse doing?,d4AGWnHJcaY_6_19,1249_32148,0 1217,1249,eat,what is the hamster doing?,d4AGWnHJcaY_6_19,1249_32149,0 1218,1250,girl,who performs part of a dance on a stage?,d7Gs0uGFLh0_5_13,1250_32150,0 1219,1250,girl,who is sitting on the floor facing away?,d7Gs0uGFLh0_5_13,1250_32151,0 1220,1250,girl,who sat on the stage floor?,d7Gs0uGFLh0_5_13,1250_32152,0 1221,1250,girl,who is sitting on the floor dancing?,d7Gs0uGFLh0_5_13,1250_32153,0 1222,1250,floor,what is a girl sitting on facing away?,d7Gs0uGFLh0_5_13,1250_32154,0 1223,1250,girl,who moved to the music?,d7Gs0uGFLh0_5_13,1250_32155,0 1224,1250,floor,what is a girl sitting on dancing?,d7Gs0uGFLh0_5_13,1250_32156,0 1225,1250,music,what did the girl move to?,d7Gs0uGFLh0_5_13,1250_32157,0 1226,1250,girl,who is laying down on stage?,d7Gs0uGFLh0_5_13,1250_32158,0 1227,1250,girl,who is performing on stage?,d7Gs0uGFLh0_5_13,1250_32159,0 1228,1250,girl,who is dancing on stage?,d7Gs0uGFLh0_5_13,1250_32160,0 1229,1250,girl,who is dancing on a stage?,d7Gs0uGFLh0_5_13,1250_32161,0 1230,1250,stage,when is a girl laying down?,d7Gs0uGFLh0_5_13,1250_32162,0 1231,1250,stage,when is a girl performing?,d7Gs0uGFLh0_5_13,1250_32163,0 1232,1250,stage,when is a girl dancing?,d7Gs0uGFLh0_5_13,1250_32164,0 1233,1250,girl,who is dancing?,d7Gs0uGFLh0_5_13,1250_32165,0 1234,1250,sit,what is a girl doing?,d7Gs0uGFLh0_5_13,1250_32166,0 1235,1250,lay,what is a girl doing?,d7Gs0uGFLh0_5_13,1250_32167,0 1236,1250,dance,what is a girl doing?,d7Gs0uGFLh0_5_13,1250_32168,0 1237,1250,dance,what is a woman doing?,d7Gs0uGFLh0_5_13,1250_32169,0 1238,1250,perform,what is a girl doing?,d7Gs0uGFLh0_5_13,1250_32170,0 1239,1250,dance,what is the little girl doing?,d7Gs0uGFLh0_5_13,1250_32171,0 1240,1251,man,who is drawing a polygon with an x inside it?,d7eGypGOlOc_13_22,1251_32172,0 1241,1251,man,who is drawing on a digital dry erase board?,d7eGypGOlOc_13_22,1251_32173,0 1242,1251,man,who draws a four sided shape on a screen?,d7eGypGOlOc_13_22,1251_32174,0 1243,1251,man,who then puts an x inside of a four sided shape on a screen?,d7eGypGOlOc_13_22,1251_32175,0 1244,1251,man,who is drawing a diagram on a white board?,d7eGypGOlOc_13_22,1251_32176,0 1245,1251,man,who is drawing a diagram on the board?,d7eGypGOlOc_13_22,1251_32177,0 1246,1251,person,who is drawing on a large touchscreen?,d7eGypGOlOc_13_22,1251_32178,0 1247,1251,man,who is drawing on an eraser board?,d7eGypGOlOc_13_22,1251_32179,0 1248,1251,board,what is a teacher drawing a diagram on?,d7eGypGOlOc_13_22,1251_32180,0 1249,1251,diagram,what is a man drawing on a white board?,d7eGypGOlOc_13_22,1251_32181,0 1250,1251,diagram,what is a man drawing on the board?,d7eGypGOlOc_13_22,1251_32182,0 1251,1251,diagram,what is a teacher drawing on the board?,d7eGypGOlOc_13_22,1251_32183,0 1252,1251,man,who draws shapes on a board?,d7eGypGOlOc_13_22,1251_32184,0 1253,1251,man,who is writing on a school board?,d7eGypGOlOc_13_22,1251_32185,0 1254,1251,man,who is explaining a diagram?,d7eGypGOlOc_13_22,1251_32186,0 1255,1251,man,who is drawing on the board?,d7eGypGOlOc_13_22,1251_32187,0 1256,1251,man,who is drawing some figures?,d7eGypGOlOc_13_22,1251_32188,0 1257,1251,diagram,what is a man explaining?,d7eGypGOlOc_13_22,1251_32189,0 1258,1251,board,what is the man drawing on?,d7eGypGOlOc_13_22,1251_32190,0 1259,1251,draw,what is a man doing?,d7eGypGOlOc_13_22,1251_32191,0 1260,1251,write,what is a man doing?,d7eGypGOlOc_13_22,1251_32192,0 1261,1251,draw,what is a person doing?,d7eGypGOlOc_13_22,1251_32193,0 1262,1251,draw,what is a teacher doing?,d7eGypGOlOc_13_22,1251_32194,0 1263,1251,draw,what is the man doing?,d7eGypGOlOc_13_22,1251_32195,0 1264,1252,hedgehog,what is pulling a towel with its teeth?,dEn5E-TNezw_13_23,1252_32196,0 1265,1252,mouth,what is a small hedgehog on a table chewing on a towel with?,dEn5E-TNezw_13_23,1252_32197,0 1266,1252,porcipine,who is chewing on a blanket?,dEn5E-TNezw_13_23,1252_32198,0 1267,1252,blanket,what is a baby porcipine chewing on?,dEn5E-TNezw_13_23,1252_32199,0 1268,1252,hedgehog,what chewed on the towel?,dEn5E-TNezw_13_23,1252_32200,0 1269,1252,guinea,who is playing with towel?,dEn5E-TNezw_13_23,1252_32201,0 1270,1252,hedgehog,what is chewing on a towel?,dEn5E-TNezw_13_23,1252_32202,0 1271,1252,towel,what did the hedgehog chew on?,dEn5E-TNezw_13_23,1252_32203,0 1272,1252,hedgehog,what bites a towel?,dEn5E-TNezw_13_23,1252_32204,0 1273,1252,hedgehog,what is biting at a blanket?,dEn5E-TNezw_13_23,1252_32205,0 1274,1252,hedgehog,what is biting a towel?,dEn5E-TNezw_13_23,1252_32206,0 1275,1252,hedgehog,what is biting the towel?,dEn5E-TNezw_13_23,1252_32207,0 1276,1252,towel,what is a guinea pig playing with?,dEn5E-TNezw_13_23,1252_32208,0 1277,1252,hedgehog,what is chewing a cloth?,dEn5E-TNezw_13_23,1252_32209,0 1278,1252,hedgehog,what is biting a blanket?,dEn5E-TNezw_13_23,1252_32210,0 1279,1252,towel,what is a hedgehog chewing on?,dEn5E-TNezw_13_23,1252_32211,0 1280,1252,hedgehog,what is eating a towel?,dEn5E-TNezw_13_23,1252_32212,0 1281,1252,blanket,what is a hedgehog biting at?,dEn5E-TNezw_13_23,1252_32213,0 1282,1252,towel,what does a hedgehog bite?,dEn5E-TNezw_13_23,1252_32214,0 1283,1252,cloth,what is a hedgehog chewing?,dEn5E-TNezw_13_23,1252_32215,0 1284,1252,towel,what is a hedgehog biting?,dEn5E-TNezw_13_23,1252_32216,0 1285,1252,towel,what is the hedgehog biting?,dEn5E-TNezw_13_23,1252_32217,0 1286,1252,towel,what is a hedgehog eating?,dEn5E-TNezw_13_23,1252_32218,0 1287,1252,chew,what is a small hedgehog is on a table doing?,dEn5E-TNezw_13_23,1252_32219,0 1288,1252,pull,what is a hedgehog doing?,dEn5E-TNezw_13_23,1252_32220,0 1289,1252,bite,what is a hedgehog doing?,dEn5E-TNezw_13_23,1252_32221,0 1290,1252,play,what is a guinea pig doing?,dEn5E-TNezw_13_23,1252_32222,0 1291,1252,eat,what is a hedgehog doing?,dEn5E-TNezw_13_23,1252_32223,0 1292,1252,bite,what is the hedgehog doing?,dEn5E-TNezw_13_23,1252_32224,0 1293,1252,chew,what is a baby porcipine doing?,dEn5E-TNezw_13_23,1252_32225,0 1294,1253,person,who is playing a song on a piano?,dJ3ba9zwx6c_5_15,1253_32226,0 1295,1253,song,what is a person playing on a piano?,dJ3ba9zwx6c_5_15,1253_32227,0 1296,1253,piano,what is a person playing a song on?,dJ3ba9zwx6c_5_15,1253_32228,0 1297,1253,boy,who played the piano?,dJ3ba9zwx6c_5_15,1253_32229,0 1298,1253,man,who is playing piano?,dJ3ba9zwx6c_5_15,1253_32230,0 1299,1253,person,who plays a piano?,dJ3ba9zwx6c_5_15,1253_32231,0 1300,1253,man,who plays the piano?,dJ3ba9zwx6c_5_15,1253_32232,0 1301,1253,someone,what is playing paino?,dJ3ba9zwx6c_5_15,1253_32233,0 1302,1253,person,who is playing a piano?,dJ3ba9zwx6c_5_15,1253_32234,0 1303,1253,person,who is playing the piano?,dJ3ba9zwx6c_5_15,1253_32235,0 1304,1253,someone,what is playing on a piano?,dJ3ba9zwx6c_5_15,1253_32236,0 1305,1253,someone,what is playing a piano?,dJ3ba9zwx6c_5_15,1253_32237,0 1306,1253,someone,what is playing the piano?,dJ3ba9zwx6c_5_15,1253_32238,0 1307,1253,piano,what is someone playing on?,dJ3ba9zwx6c_5_15,1253_32239,0 1308,1253,piano,what did the boy play?,dJ3ba9zwx6c_5_15,1253_32240,0 1309,1253,piano,what did the man play?,dJ3ba9zwx6c_5_15,1253_32241,0 1310,1253,piano,what is someone playing?,dJ3ba9zwx6c_5_15,1253_32242,0 1311,1253,piano,what does a person play?,dJ3ba9zwx6c_5_15,1253_32243,0 1312,1253,piano,what is a person playing?,dJ3ba9zwx6c_5_15,1253_32244,0 1313,1253,piano,what does a man play?,dJ3ba9zwx6c_5_15,1253_32245,0 1314,1253,piano,what is the person playing?,dJ3ba9zwx6c_5_15,1253_32246,0 1315,1253,piano,what is a man playing?,dJ3ba9zwx6c_5_15,1253_32247,0 1316,1253,play,what is someone doing?,dJ3ba9zwx6c_5_15,1253_32248,0 1317,1253,play,what is a person doing?,dJ3ba9zwx6c_5_15,1253_32249,0 1318,1253,play,what is a man doing?,dJ3ba9zwx6c_5_15,1253_32250,0 1319,1253,play,what is the person doing?,dJ3ba9zwx6c_5_15,1253_32251,0 1320,1254,stage,when does steve martin place eggs in a hung basket?,dJCtOz32dnw_40_60,1254_32252,0 1321,1254,martin,who places eggs in a hung basket on the stage?,dJCtOz32dnw_40_60,1254_32253,0 1322,1254,two,how many eggs does steve martin remove from the zipper area of his pants?,dJCtOz32dnw_40_60,1254_32254,0 1323,1254,martin,who removes two eggs from the zipper area of his pants?,dJCtOz32dnw_40_60,1254_32255,0 1324,1254,martin,who pulls eggs out of his pants?,dJCtOz32dnw_40_60,1254_32256,0 1325,1254,man,who is performing some magic tick on stage?,dJCtOz32dnw_40_60,1254_32257,0 1326,1254,man,who pulls ping pong balls out of his pants?,dJCtOz32dnw_40_60,1254_32258,0 1327,1254,man,who is placing eggs from his crotch into a basket?,dJCtOz32dnw_40_60,1254_32259,0 1328,1254,man,who is removing eggs from the fly of his pants?,dJCtOz32dnw_40_60,1254_32260,0 1329,1254,stage,when is a man performing some magic tick?,dJCtOz32dnw_40_60,1254_32261,0 1330,1254,man,who is pulling eggs out of his pants?,dJCtOz32dnw_40_60,1254_32262,0 1331,1254,man,who is pulling a ball out of his pants?,dJCtOz32dnw_40_60,1254_32263,0 1332,1254,comedian,who pulled eggs out of his pants?,dJCtOz32dnw_40_60,1254_32264,0 1333,1254,basket,what is a man placing eggs from his crotch into?,dJCtOz32dnw_40_60,1254_32265,0 1334,1254,pong,what does a man pull ping out of his pants?,dJCtOz32dnw_40_60,1254_32266,0 1335,1254,man,who is pulling eggs from his pants?,dJCtOz32dnw_40_60,1254_32267,0 1336,1254,man,who is taking eggs from his pants?,dJCtOz32dnw_40_60,1254_32268,0 1337,1254,ball,what is a man pulling out of his pants?,dJCtOz32dnw_40_60,1254_32269,0 1338,1254,tick,what is a man performing on stage?,dJCtOz32dnw_40_60,1254_32270,0 1339,1254,man,who removes eggs from his pants?,dJCtOz32dnw_40_60,1254_32271,0 1340,1254,crotch,what is a man placing eggs from into a basket?,dJCtOz32dnw_40_60,1254_32272,0 1341,1254,martin,who performs onstage?,dJCtOz32dnw_40_60,1254_32273,0 1342,1254,pull,what is a man is on stage dressed in a tuxedo and he 's doing?,dJCtOz32dnw_40_60,1254_32274,0 1343,1254,perform,what is a man doing?,dJCtOz32dnw_40_60,1254_32275,0 1344,1254,place,what is a man doing?,dJCtOz32dnw_40_60,1254_32276,0 1345,1255,man,who is riding a horse around an obstacle course of orange cones while shooting a pistol?,dJEoDaA6VXc_1_19,1255_32277,0 1346,1255,man,who shot at targets while riding a horse around a course?,dJEoDaA6VXc_1_19,1255_32278,0 1347,1255,man,who shoots balloons with a pistol while riding a horse?,dJEoDaA6VXc_1_19,1255_32279,0 1348,1255,horse,what is a man riding around an obstacle course of orange cones while shooting a pistol?,dJEoDaA6VXc_1_19,1255_32280,0 1349,1255,man,who is firing bullets to targets while riding a horse?,dJEoDaA6VXc_1_19,1255_32281,0 1350,1255,man,who shot at targets while riding a horse?,dJEoDaA6VXc_1_19,1255_32282,0 1351,1255,cowboy,who is shooting at ballons at the same time?,dJEoDaA6VXc_1_19,1255_32283,0 1352,1255,man,who is riding a horse while shooting a pistol?,dJEoDaA6VXc_1_19,1255_32284,0 1353,1255,cowboy,who is riding his horse through a course in the riding ring?,dJEoDaA6VXc_1_19,1255_32285,0 1354,1255,pistol,what is a man riding a horse shooting at balloons with?,dJEoDaA6VXc_1_19,1255_32286,0 1355,1255,man,who is riding a horse shooting a gun?,dJEoDaA6VXc_1_19,1255_32287,0 1356,1255,course,what is a cowboy riding his horse through in the riding ring?,dJEoDaA6VXc_1_19,1255_32288,0 1357,1255,horse,what is a man riding while shooting a pistol?,dJEoDaA6VXc_1_19,1255_32289,0 1358,1255,gun,what is the man on the horse shooting?,dJEoDaA6VXc_1_19,1255_32290,0 1359,1255,man,who is riding a horse and firing his gun?,dJEoDaA6VXc_1_19,1255_32291,0 1360,1255,horse,what is a man riding shooting a gun?,dJEoDaA6VXc_1_19,1255_32292,0 1361,1255,horse,what is a cowboy riding through a course in the riding ring?,dJEoDaA6VXc_1_19,1255_32293,0 1362,1255,man,who is shooting a cap gun?,dJEoDaA6VXc_1_19,1255_32294,0 1363,1255,man,who is riding a horse?,dJEoDaA6VXc_1_19,1255_32295,0 1364,1255,cap,what is a man shooting?,dJEoDaA6VXc_1_19,1255_32296,0 1365,1255,horse,what is a man riding?,dJEoDaA6VXc_1_19,1255_32297,0 1366,1255,shoot,what is a man rides a horse through cones while doing?,dJEoDaA6VXc_1_19,1255_32298,0 1367,1255,fire,what is a man doing?,dJEoDaA6VXc_1_19,1255_32299,0 1368,1255,shoot,what is the man on the horse doing?,dJEoDaA6VXc_1_19,1255_32300,0 1369,1256,man,who is dancing to elvis presley music?,dMH0bHeiRNg_3_14,1256_32301,0 1370,1256,man,who did a funny dance on the stage?,dMH0bHeiRNg_3_14,1256_32302,0 1371,1256,man,who is dancing on stage by clanging his knees?,dMH0bHeiRNg_3_14,1256_32303,0 1372,1256,stage,when is a man dancing by clanging his knees?,dMH0bHeiRNg_3_14,1256_32304,0 1373,1256,man,who danced on stage?,dMH0bHeiRNg_3_14,1256_32305,0 1374,1256,man,who dances on a stage?,dMH0bHeiRNg_3_14,1256_32306,0 1375,1256,man,who is dancing on stage?,dMH0bHeiRNg_3_14,1256_32307,0 1376,1256,man,who is dancing on a stage?,dMH0bHeiRNg_3_14,1256_32308,0 1377,1256,stage,when did the man dance?,dMH0bHeiRNg_3_14,1256_32309,0 1378,1256,stage,when does a man dance?,dMH0bHeiRNg_3_14,1256_32310,0 1379,1256,stage,when is a man dancing?,dMH0bHeiRNg_3_14,1256_32311,0 1380,1256,man,who is dancing onstage?,dMH0bHeiRNg_3_14,1256_32312,0 1381,1256,man,who is singing?,dMH0bHeiRNg_3_14,1256_32313,0 1382,1256,man,who dances?,dMH0bHeiRNg_3_14,1256_32314,0 1383,1256,dance,what is a man doing?,dMH0bHeiRNg_3_14,1256_32315,0 1384,1256,dance,what is a man in a spotlight doing?,dMH0bHeiRNg_3_14,1256_32316,0 1385,1256,dance,what is the man doing?,dMH0bHeiRNg_3_14,1256_32317,0 1386,1257,fox,what hunted for food in the snow?,dP15zlyra3c_0_10,1257_32318,0 1387,1257,snow,what do the fox hunt for food in?,dP15zlyra3c_0_10,1257_32319,0 1388,1257,food,what do the fox hunt for in the snow?,dP15zlyra3c_0_10,1257_32320,0 1389,1257,fox,what is carefully walking through the snow?,dP15zlyra3c_0_10,1257_32321,0 1390,1257,fox,what is slowly walking in the snow?,dP15zlyra3c_0_10,1257_32322,0 1391,1257,fox,what is stepping very slowly across snow?,dP15zlyra3c_0_10,1257_32323,0 1392,1257,fox,what is walking slowly in the ice?,dP15zlyra3c_0_10,1257_32324,0 1393,1257,snow,what is a fox stepping very slowly across?,dP15zlyra3c_0_10,1257_32325,0 1394,1257,fox,what walked on the snow?,dP15zlyra3c_0_10,1257_32326,0 1395,1257,snow,what is a fox carefully walking through?,dP15zlyra3c_0_10,1257_32327,0 1396,1257,fox,what is walking along the snow?,dP15zlyra3c_0_10,1257_32328,0 1397,1257,animal,what is walkign in the snow?,dP15zlyra3c_0_10,1257_32329,0 1398,1257,snow,what is a fox slowly walking in?,dP15zlyra3c_0_10,1257_32330,0 1399,1257,fox,what is walking through the snow?,dP15zlyra3c_0_10,1257_32331,0 1400,1257,ice,what is a fox walking slowly in?,dP15zlyra3c_0_10,1257_32332,0 1401,1257,fox,what is walking on snow?,dP15zlyra3c_0_10,1257_32333,0 1402,1257,fox,what is walking in snow?,dP15zlyra3c_0_10,1257_32334,0 1403,1257,fox,what is standing in the snow?,dP15zlyra3c_0_10,1257_32335,0 1404,1257,snow,what did the fox walk on?,dP15zlyra3c_0_10,1257_32336,0 1405,1257,animal,what walks slowly through the snow?,dP15zlyra3c_0_10,1257_32337,0 1406,1257,fox,what is stepping slowly in snow?,dP15zlyra3c_0_10,1257_32338,0 1407,1257,snow,what is a fox walking along?,dP15zlyra3c_0_10,1257_32339,0 1408,1257,snow,what is an animal walkign in?,dP15zlyra3c_0_10,1257_32340,0 1409,1257,snow,what is a fox walking through?,dP15zlyra3c_0_10,1257_32341,0 1410,1257,wolf,what is looking something?,dP15zlyra3c_0_10,1257_32342,0 1411,1257,snow,what is the fox standing in?,dP15zlyra3c_0_10,1257_32343,0 1412,1257,snow,what does an animal walk slowly through?,dP15zlyra3c_0_10,1257_32344,0 1413,1257,snow,what is a fox walking in?,dP15zlyra3c_0_10,1257_32345,0 1414,1257,snow,what is a fox stepping slowly in?,dP15zlyra3c_0_10,1257_32346,0 1415,1257,something,what is a wolf looking?,dP15zlyra3c_0_10,1257_32347,0 1416,1257,fox,what is listening?,dP15zlyra3c_0_10,1257_32348,0 1417,1257,fox,what walks cautiously?,dP15zlyra3c_0_10,1257_32349,0 1418,1257,walk,what is a fox is slowly doing?,dP15zlyra3c_0_10,1257_32350,0 1419,1257,walk,what is a fox doing?,dP15zlyra3c_0_10,1257_32351,0 1420,1257,step,what is a fox doing?,dP15zlyra3c_0_10,1257_32352,0 1421,1257,look,what is a wolf doing?,dP15zlyra3c_0_10,1257_32353,0 1422,1257,stand,what is the fox doing?,dP15zlyra3c_0_10,1257_32354,0 1423,1257,walk,what is a fox is carefully doing?,dP15zlyra3c_0_10,1257_32355,0 1424,1258,boy,who is standing on the stage holding a guitar as music plays in the background?,dQmaVQZz7EE_1_18,1258_32356,0 1425,1258,stage,what is a small boy standing on holding a guitar as music plays in the background?,dQmaVQZz7EE_1_18,1258_32357,0 1426,1258,boy,who is playing guitar on a stage?,dQmaVQZz7EE_1_18,1258_32358,0 1427,1258,guitar,what is a little boy playing on a stage?,dQmaVQZz7EE_1_18,1258_32359,0 1428,1258,stage,when is a little boy playing guitar?,dQmaVQZz7EE_1_18,1258_32360,0 1429,1258,boy,who is playing an electric guitar?,dQmaVQZz7EE_1_18,1258_32361,0 1430,1258,kid,who plays an electric guitar?,dQmaVQZz7EE_1_18,1258_32362,0 1431,1258,boy,who is playing electric guitar?,dQmaVQZz7EE_1_18,1258_32363,0 1432,1258,child,who plays with a guitar?,dQmaVQZz7EE_1_18,1258_32364,0 1433,1258,boy,who is playing guitar?,dQmaVQZz7EE_1_18,1258_32365,0 1434,1258,boy,who plays the guitar?,dQmaVQZz7EE_1_18,1258_32366,0 1435,1258,boy,who is playing a guitar?,dQmaVQZz7EE_1_18,1258_32367,0 1436,1258,boy,who is holding a guitar?,dQmaVQZz7EE_1_18,1258_32368,0 1437,1258,boy,who is playing the guitar?,dQmaVQZz7EE_1_18,1258_32369,0 1438,1258,boy,who played his guitar?,dQmaVQZz7EE_1_18,1258_32370,0 1439,1258,guitar,what does a boyis playing?,dQmaVQZz7EE_1_18,1258_32371,0 1440,1258,guitar,what does a child play with?,dQmaVQZz7EE_1_18,1258_32372,0 1441,1258,guitar,what does a little kid play?,dQmaVQZz7EE_1_18,1258_32373,0 1442,1258,guitar,what is a small boy playing?,dQmaVQZz7EE_1_18,1258_32374,0 1443,1258,guitar,what does a little boy play?,dQmaVQZz7EE_1_18,1258_32375,0 1444,1258,guitar,what is a young boy holding?,dQmaVQZz7EE_1_18,1258_32376,0 1445,1258,guitar,what is a little boy playing?,dQmaVQZz7EE_1_18,1258_32377,0 1446,1258,guitar,what is a boy playing?,dQmaVQZz7EE_1_18,1258_32378,0 1447,1258,guitar,what is the boy playing?,dQmaVQZz7EE_1_18,1258_32379,0 1448,1258,guitar,what did the little boy play?,dQmaVQZz7EE_1_18,1258_32380,0 1449,1258,guitar,what did the boy play?,dQmaVQZz7EE_1_18,1258_32381,0 1450,1258,play,what is a little boy doing?,dQmaVQZz7EE_1_18,1258_32382,0 1451,1258,play,what is a boy doing?,dQmaVQZz7EE_1_18,1258_32383,0 1452,1258,play,what is a small boy doing?,dQmaVQZz7EE_1_18,1258_32384,0 1453,1258,stand,what is a small boy doing?,dQmaVQZz7EE_1_18,1258_32385,0 1454,1258,hold,what is a young boy doing?,dQmaVQZz7EE_1_18,1258_32386,0 1455,1258,play,what is the boy doing?,dQmaVQZz7EE_1_18,1258_32387,0 1456,1259,murphy,who is walking through the bar in the movie coming to america?,dZBIdRGKRhM_13_32,1259_32388,0 1457,1259,two,how many black men are walking down the isle near the dance floor in a bar?,dZBIdRGKRhM_13_32,1259_32389,0 1458,1259,two,how many men walked in a dance bar?,dZBIdRGKRhM_13_32,1259_32390,0 1459,1259,two,how many men are walking through a night club?,dZBIdRGKRhM_13_32,1259_32391,0 1460,1259,two,how many men are walking in a night club?,dZBIdRGKRhM_13_32,1259_32392,0 1461,1259,nightclub,what do eddie murphy and arsenio hall walk through?,dZBIdRGKRhM_13_32,1259_32393,0 1462,1259,two,how many men are walking through a discotheque?,dZBIdRGKRhM_13_32,1259_32394,0 1463,1259,two,how many men are walking through a nightclub?,dZBIdRGKRhM_13_32,1259_32395,0 1464,1259,two,how many men are roaming around in bar?,dZBIdRGKRhM_13_32,1259_32396,0 1465,1259,nightclub,what do eddie murphy and arsenio hall walk through together?,dZBIdRGKRhM_13_32,1259_32397,0 1466,1259,two,how many men are walking through a bar?,dZBIdRGKRhM_13_32,1259_32398,0 1467,1259,two,how many men are walking through a club?,dZBIdRGKRhM_13_32,1259_32399,0 1468,1259,two,how many men are walking in the club?,dZBIdRGKRhM_13_32,1259_32400,0 1469,1259,two,how many men walked through a club?,dZBIdRGKRhM_13_32,1259_32401,0 1470,1259,club,what did two men walk through?,dZBIdRGKRhM_13_32,1259_32402,0 1471,1259,bar,what are two men walking through?,dZBIdRGKRhM_13_32,1259_32403,0 1472,1259,bar,what are two men roaming around in?,dZBIdRGKRhM_13_32,1259_32404,0 1473,1259,walk,what is eddie murphey & arsineo hall doing?,dZBIdRGKRhM_13_32,1259_32405,0 1474,1259,walk,what is eddie murphy doing?,dZBIdRGKRhM_13_32,1259_32406,0 1475,1259,walk,what are two black men doing?,dZBIdRGKRhM_13_32,1259_32407,0 1476,1259,roam,what are two men doing?,dZBIdRGKRhM_13_32,1259_32408,0 1477,1259,check,what is two men walk through a nightclub doing?,dZBIdRGKRhM_13_32,1259_32409,0 1478,1260,boy,who played the wooden flute into the microphone?,d_BWuttLRFM_42_52,1260_32410,0 1479,1260,boy,who played his flute in front of a microphone?,d_BWuttLRFM_42_52,1260_32411,0 1480,1260,boy,who is playing a flute on a stage?,d_BWuttLRFM_42_52,1260_32412,0 1481,1260,microphone,what did the boy play the wooden flute into?,d_BWuttLRFM_42_52,1260_32413,0 1482,1260,flute,what is a small boy seated on stage playing?,d_BWuttLRFM_42_52,1260_32414,0 1483,1260,flute,what did the boy play into the microphone?,d_BWuttLRFM_42_52,1260_32415,0 1484,1260,flute,what is a boy playing on a stage?,d_BWuttLRFM_42_52,1260_32416,0 1485,1260,stage,when is a boy playing a flute?,d_BWuttLRFM_42_52,1260_32417,0 1486,1260,boy,who is playing a wind instrument?,d_BWuttLRFM_42_52,1260_32418,0 1487,1260,flute,what did the boy play in front of a microphone?,d_BWuttLRFM_42_52,1260_32419,0 1488,1260,boy,who plays a wooden flute?,d_BWuttLRFM_42_52,1260_32420,0 1489,1260,boy,who is playing a wooden flute?,d_BWuttLRFM_42_52,1260_32421,0 1490,1260,boy,who is playing flute?,d_BWuttLRFM_42_52,1260_32422,0 1491,1260,boy,who plays a flute?,d_BWuttLRFM_42_52,1260_32423,0 1492,1260,child,who plays the flute?,d_BWuttLRFM_42_52,1260_32424,0 1493,1260,boy,who is playing a flute?,d_BWuttLRFM_42_52,1260_32425,0 1494,1260,boy,who is playing the flute?,d_BWuttLRFM_42_52,1260_32426,0 1495,1260,kid,who is playing an instrument?,d_BWuttLRFM_42_52,1260_32427,0 1496,1260,flute,what is a young boy playing?,d_BWuttLRFM_42_52,1260_32428,0 1497,1260,flute,what does a boy play?,d_BWuttLRFM_42_52,1260_32429,0 1498,1260,flute,what does a child play?,d_BWuttLRFM_42_52,1260_32430,0 1499,1260,flute,what is a boy playing?,d_BWuttLRFM_42_52,1260_32431,0 1500,1260,instrument,what is a kid playing?,d_BWuttLRFM_42_52,1260_32432,0 1501,1260,flute,what is the boy playing?,d_BWuttLRFM_42_52,1260_32433,0 1502,1260,play,what is a boy doing?,d_BWuttLRFM_42_52,1260_32434,0 1503,1260,play,what is a young boy doing?,d_BWuttLRFM_42_52,1260_32435,0 1504,1260,play,what is a kid doing?,d_BWuttLRFM_42_52,1260_32436,0 1505,1260,play,what is a small boy seated on stage doing?,d_BWuttLRFM_42_52,1260_32437,0 1506,1260,play,what is the boy doing?,d_BWuttLRFM_42_52,1260_32438,0 1507,1261,man,who slices a raw potato into two halves using a knife?,dabI5gfaFm4_19_25,1261_32439,0 1508,1261,potato,what does a man slice into two halves using a knife?,dabI5gfaFm4_19_25,1261_32440,0 1509,1261,man,who is cutting a potato in half?,dabI5gfaFm4_19_25,1261_32441,0 1510,1261,potato,what is cut into half lengthwise?,dabI5gfaFm4_19_25,1261_32442,0 1511,1261,half,what is a man cutting a potato in?,dabI5gfaFm4_19_25,1261_32443,0 1512,1261,potato,what is a man cutting in half?,dabI5gfaFm4_19_25,1261_32444,0 1513,1261,man,who is slicing a potatoe?,dabI5gfaFm4_19_25,1261_32445,0 1514,1261,potato,what is then sliced into a quarter?,dabI5gfaFm4_19_25,1261_32446,0 1515,1261,lengthwise,what is a potato cut into?,dabI5gfaFm4_19_25,1261_32447,0 1516,1261,man,who is cutting a skinny potato?,dabI5gfaFm4_19_25,1261_32448,0 1517,1261,man,who is cutting potatoes?,dabI5gfaFm4_19_25,1261_32449,0 1518,1261,man,who is slicing a potato?,dabI5gfaFm4_19_25,1261_32450,0 1519,1261,man,who cuts a potato?,dabI5gfaFm4_19_25,1261_32451,0 1520,1261,quarter,what is a potato then sliced into?,dabI5gfaFm4_19_25,1261_32452,0 1521,1261,potato,what is being cut into pieces?,dabI5gfaFm4_19_25,1261_32453,0 1522,1261,man,who is cutting up a potato?,dabI5gfaFm4_19_25,1261_32454,0 1523,1261,man,who is cutting a potato?,dabI5gfaFm4_19_25,1261_32455,0 1524,1261,male,what is slicing a potato?,dabI5gfaFm4_19_25,1261_32456,0 1525,1261,potatoe,who is a man slicing?,dabI5gfaFm4_19_25,1261_32457,0 1526,1261,potato,what is a male slicing?,dabI5gfaFm4_19_25,1261_32458,0 1527,1261,potato,what is a man slicing?,dabI5gfaFm4_19_25,1261_32459,0 1528,1261,potato,what is the man slicing?,dabI5gfaFm4_19_25,1261_32460,0 1529,1261,potato,what is a person cutting up?,dabI5gfaFm4_19_25,1261_32461,0 1530,1261,potato,what is a man cutting up?,dabI5gfaFm4_19_25,1261_32462,0 1531,1261,potato,what does a man cut?,dabI5gfaFm4_19_25,1261_32463,0 1532,1261,potato,what is a man cutting?,dabI5gfaFm4_19_25,1261_32464,0 1533,1261,cut,what is a man doing?,dabI5gfaFm4_19_25,1261_32465,0 1534,1261,slouse,what is a male doing?,dabI5gfaFm4_19_25,1261_32466,0 1535,1261,use,what is a man slices a raw potato into two halves doing?,dabI5gfaFm4_19_25,1261_32467,0 1536,1261,cut,what is a person doing?,dabI5gfaFm4_19_25,1261_32468,0 1537,1261,slouse,what is the man doing?,dabI5gfaFm4_19_25,1261_32469,0 1538,1262,crying,who runs up to a large tree that has fallen across a street?,dc4UltkRJsw_53_59,1262_32470,0 1539,1262,boy,who did a down tree out of the street in the rain is trying to a push?,dc4UltkRJsw_53_59,1262_32471,0 1540,1262,boy,who tried to push the fallen tree out of the way?,dc4UltkRJsw_53_59,1262_32472,0 1541,1262,street,what did a down tree out of in the rain a boy is trying to a push?,dc4UltkRJsw_53_59,1262_32473,0 1542,1262,rain,what did a down tree out of the street in a boy is trying to a push?,dc4UltkRJsw_53_59,1262_32474,0 1543,1262,push,what did a down tree out of the street in the rain a boy is trying to?,dc4UltkRJsw_53_59,1262_32475,0 1544,1262,boy,who is trying to push a fallen tree from the road?,dc4UltkRJsw_53_59,1262_32476,0 1545,1262,boy,who looked at the fallen tree in the rain?,dc4UltkRJsw_53_59,1262_32477,0 1546,1262,tree,what did the boy try to push out of the way?,dc4UltkRJsw_53_59,1262_32478,0 1547,1262,rain,what did the boy look at the fallen tree in?,dc4UltkRJsw_53_59,1262_32479,0 1548,1262,boy,who is looking at a fallen tree?,dc4UltkRJsw_53_59,1262_32480,0 1549,1262,crying,who drops his backpack?,dc4UltkRJsw_53_59,1262_32481,0 1550,1262,tree,what fell across the road?,dc4UltkRJsw_53_59,1262_32482,0 1551,1262,boy,who is crying in the rain?,dc4UltkRJsw_53_59,1262_32483,0 1552,1262,boy,who is standing in the rain?,dc4UltkRJsw_53_59,1262_32484,0 1553,1262,road,what did the tree fall across?,dc4UltkRJsw_53_59,1262_32485,0 1554,1262,boy,who is pushing a tree?,dc4UltkRJsw_53_59,1262_32486,0 1555,1262,boy,who is pushing the road?,dc4UltkRJsw_53_59,1262_32487,0 1556,1262,rain,what is a boy crying in?,dc4UltkRJsw_53_59,1262_32488,0 1557,1262,rain,what is a boy standing in?,dc4UltkRJsw_53_59,1262_32489,0 1558,1262,backpack,what does a crying boy drop?,dc4UltkRJsw_53_59,1262_32490,0 1559,1262,tree,what is a boy pushing?,dc4UltkRJsw_53_59,1262_32491,0 1560,1262,backpack,what does a boy drop?,dc4UltkRJsw_53_59,1262_32492,0 1561,1262,cry,what is a boy doing?,dc4UltkRJsw_53_59,1262_32493,0 1562,1262,push,what is a boy doing?,dc4UltkRJsw_53_59,1262_32494,0 1563,1262,stand,what is a boy with a back pack on doing?,dc4UltkRJsw_53_59,1262_32495,0 1564,1262,try,what is a boy doing?,dc4UltkRJsw_53_59,1262_32496,0 1565,1262,look,what is a boy doing?,dc4UltkRJsw_53_59,1262_32497,0 1566,1263,flute,what is a man seated on a huge rock in an outdoor location playing as a woman watches him?,dfOuTx66bJU_11_14,1263_32498,0 1567,1263,man,who is playing a wind instrument while sitting on a rock?,dfOuTx66bJU_11_14,1263_32499,0 1568,1263,man,who is playing a flute while a woman watches?,dfOuTx66bJU_11_14,1263_32500,0 1569,1263,man,who played the flute to the girl from the top of a rock?,dfOuTx66bJU_11_14,1263_32501,0 1570,1263,man,who played his flute to the girl from a rock?,dfOuTx66bJU_11_14,1263_32502,0 1571,1263,man,who plays a flute on a rock?,dfOuTx66bJU_11_14,1263_32503,0 1572,1263,instrument,what is a man playing while sitting on a rock?,dfOuTx66bJU_11_14,1263_32504,0 1573,1263,girl,who did the man play the flute to from the top of a rock?,dfOuTx66bJU_11_14,1263_32505,0 1574,1263,girl,who did the man play his flute to from a rock?,dfOuTx66bJU_11_14,1263_32506,0 1575,1263,flute,what did the man play to the girl from the top of a rock?,dfOuTx66bJU_11_14,1263_32507,0 1576,1263,flute,what is a man playing while a woman watches?,dfOuTx66bJU_11_14,1263_32508,0 1577,1263,rock,what did the man play his flute to the girl from?,dfOuTx66bJU_11_14,1263_32509,0 1578,1263,man,who plays a wooden flute?,dfOuTx66bJU_11_14,1263_32510,0 1579,1263,flute,what did the man play to the girl from a rock?,dfOuTx66bJU_11_14,1263_32511,0 1580,1263,man,who is playing a wooden flute?,dfOuTx66bJU_11_14,1263_32512,0 1581,1263,man,who is playing flute?,dfOuTx66bJU_11_14,1263_32513,0 1582,1263,man,who plays a flute?,dfOuTx66bJU_11_14,1263_32514,0 1583,1263,man,who is sitting on a rock?,dfOuTx66bJU_11_14,1263_32515,0 1584,1263,man,who is playing a flute?,dfOuTx66bJU_11_14,1263_32516,0 1585,1263,woman,who watches a man?,dfOuTx66bJU_11_14,1263_32517,0 1586,1263,man,who does a woman watch?,dfOuTx66bJU_11_14,1263_32518,0 1587,1263,rock,what is a man sitting on?,dfOuTx66bJU_11_14,1263_32519,0 1588,1263,flute,what is a man playing?,dfOuTx66bJU_11_14,1263_32520,0 1589,1263,flute,what is the man playing?,dfOuTx66bJU_11_14,1263_32521,0 1590,1263,woman,who watches?,dfOuTx66bJU_11_14,1263_32522,0 1591,1263,man,who is sitting?,dfOuTx66bJU_11_14,1263_32523,0 1592,1263,sit,what is a man doing?,dfOuTx66bJU_11_14,1263_32524,0 1593,1263,play,what is a man doing?,dfOuTx66bJU_11_14,1263_32525,0 1594,1263,play,what is a man seated on a huge rock in an outdoor location doing?,dfOuTx66bJU_11_14,1263_32526,0 1595,1263,play,what is the man doing?,dfOuTx66bJU_11_14,1263_32527,0 1596,1264,man,who is running down a road as woman waits for him behind a tree?,dfOuTx66bJU_34_39,1264_32528,0 1597,1264,road,what is a man running down as woman waits for him behind a tree?,dfOuTx66bJU_34_39,1264_32529,0 1598,1264,person,who is jogging on a wooded path?,dfOuTx66bJU_34_39,1264_32530,0 1599,1264,man,who is running along a wooded path?,dfOuTx66bJU_34_39,1264_32531,0 1600,1264,jogging,what is a person on a wooded path?,dfOuTx66bJU_34_39,1264_32532,0 1601,1264,woman,who waits for a man walking down the street behind a tree?,dfOuTx66bJU_34_39,1264_32533,0 1602,1264,man,who is jogging on a road?,dfOuTx66bJU_34_39,1264_32534,0 1603,1264,man,who is jogging down a road?,dfOuTx66bJU_34_39,1264_32535,0 1604,1264,tree,what does woman wait for a man walking down the street behind?,dfOuTx66bJU_34_39,1264_32536,0 1605,1264,man,who ran down the street?,dfOuTx66bJU_34_39,1264_32537,0 1606,1264,man,who hurried down the street?,dfOuTx66bJU_34_39,1264_32538,0 1607,1264,man,who runs down a road?,dfOuTx66bJU_34_39,1264_32539,0 1608,1264,man,who is running through the woods?,dfOuTx66bJU_34_39,1264_32540,0 1609,1264,road,what is a man jogging down?,dfOuTx66bJU_34_39,1264_32541,0 1610,1264,jogging,what is a man down a road?,dfOuTx66bJU_34_39,1264_32542,0 1611,1264,street,what did the man run down?,dfOuTx66bJU_34_39,1264_32543,0 1612,1264,man,who is finding something?,dfOuTx66bJU_34_39,1264_32544,0 1613,1264,man,who is running down the street?,dfOuTx66bJU_34_39,1264_32545,0 1614,1264,road,what does a man run down?,dfOuTx66bJU_34_39,1264_32546,0 1615,1264,street,what do the man hurry down?,dfOuTx66bJU_34_39,1264_32547,0 1616,1264,street,what is a man running down?,dfOuTx66bJU_34_39,1264_32548,0 1617,1264,something,what is a man finding?,dfOuTx66bJU_34_39,1264_32549,0 1618,1264,man,who is running outside?,dfOuTx66bJU_34_39,1264_32550,0 1619,1264,man,who is running?,dfOuTx66bJU_34_39,1264_32551,0 1620,1264,walk,what is a man doing?,dfOuTx66bJU_34_39,1264_32552,0 1621,1264,jog,what is a person doing?,dfOuTx66bJU_34_39,1264_32553,0 1622,1265,boy,who is yelling while placing his head in the corner behind a chair?,dhxE9CNeVeY_0_12,1265_32554,0 1623,1265,boy,who is leaning over the back of a chair?,dhxE9CNeVeY_0_12,1265_32555,0 1624,1265,boy,who throws his upper body over the side of a couch?,dhxE9CNeVeY_0_12,1265_32556,0 1625,1265,boy,who is screaming out loudly while waving his hands in the air?,dhxE9CNeVeY_0_12,1265_32557,0 1626,1265,chair,what is a boy wearing glasses bending over?,dhxE9CNeVeY_0_12,1265_32558,0 1627,1265,boy,who screamed behind the chair?,dhxE9CNeVeY_0_12,1265_32559,0 1628,1265,body,what does a boy throw over the side of a couch?,dhxE9CNeVeY_0_12,1265_32560,0 1629,1265,kid,who is screaming behind a chair?,dhxE9CNeVeY_0_12,1265_32561,0 1630,1265,boy,who plays on a couch?,dhxE9CNeVeY_0_12,1265_32562,0 1631,1265,boy,who is throwing a tantrum?,dhxE9CNeVeY_0_12,1265_32563,0 1632,1265,kid,who plays on a chair?,dhxE9CNeVeY_0_12,1265_32564,0 1633,1265,boy,who throwing a fit?,dhxE9CNeVeY_0_12,1265_32565,0 1634,1265,chair,what did the boy scream behind?,dhxE9CNeVeY_0_12,1265_32566,0 1635,1265,chair,what is a kid screaming behind?,dhxE9CNeVeY_0_12,1265_32567,0 1636,1265,chair,what does a kid play on?,dhxE9CNeVeY_0_12,1265_32568,0 1637,1265,couch,what does a boy play on?,dhxE9CNeVeY_0_12,1265_32569,0 1638,1265,fit,what do a boy throw?,dhxE9CNeVeY_0_12,1265_32570,0 1639,1265,tantrum,what is the boy throwing?,dhxE9CNeVeY_0_12,1265_32571,0 1640,1265,boy,who pretending to be hurt?,dhxE9CNeVeY_0_12,1265_32572,0 1641,1265,boy,who starts screaming?,dhxE9CNeVeY_0_12,1265_32573,0 1642,1265,child,who flails around?,dhxE9CNeVeY_0_12,1265_32574,0 1643,1265,child,who screams?,dhxE9CNeVeY_0_12,1265_32575,0 1644,1265,boy,who is crying?,dhxE9CNeVeY_0_12,1265_32576,0 1645,1265,bend,what is a boy wearing glasses doing?,dhxE9CNeVeY_0_12,1265_32577,0 1646,1265,scream,what is a boy doing?,dhxE9CNeVeY_0_12,1265_32578,0 1647,1265,lean,what is a boy doing?,dhxE9CNeVeY_0_12,1265_32579,0 1648,1265,yell,what is a boy doing?,dhxE9CNeVeY_0_12,1265_32580,0 1649,1265,scream,what is a kid doing?,dhxE9CNeVeY_0_12,1265_32581,0 1650,1265,throw,what is a boy doing?,dhxE9CNeVeY_0_12,1265_32582,0 1651,1265,sit,what is a boy doing?,dhxE9CNeVeY_0_12,1265_32583,0 1652,1265,scream,what is a boy throws his upper body over the side of a couch and starts doing?,dhxE9CNeVeY_0_12,1265_32584,0 1653,1265,throw,what is the boy doing?,dhxE9CNeVeY_0_12,1265_32585,0 1654,1266,five,how many men dive into a swimming pool?,dmyz_f8Sx14_56_66,1266_32586,0 1655,1266,five,how many men jump into a swimming pool?,dmyz_f8Sx14_56_66,1266_32587,0 1656,1266,pool,what do a group of swimmers jump into?,dmyz_f8Sx14_56_66,1266_32588,0 1657,1266,pool,what do a group of swimmers fall into?,dmyz_f8Sx14_56_66,1266_32589,0 1658,1266,five,how many men line up at the end of a pool and dive in on a signal from a sixth man?,dmyz_f8Sx14_56_66,1266_32590,0 1659,1266,five,how many people dive into a pool?,dmyz_f8Sx14_56_66,1266_32591,0 1660,1266,pool,what did the swimmers dive into?,dmyz_f8Sx14_56_66,1266_32592,0 1661,1266,pool,what are men falling into?,dmyz_f8Sx14_56_66,1266_32593,0 1662,1266,water,what are men diving into?,dmyz_f8Sx14_56_66,1266_32594,0 1663,1266,pool,what are people diving into?,dmyz_f8Sx14_56_66,1266_32595,0 1664,1266,pool,what five people dive into?,dmyz_f8Sx14_56_66,1266_32596,0 1665,1266,dive,what is five men doing?,dmyz_f8Sx14_56_66,1266_32597,0 1666,1266,compete,what are men doing?,dmyz_f8Sx14_56_66,1266_32598,0 1667,1266,fall,what are men doing?,dmyz_f8Sx14_56_66,1266_32599,0 1668,1266,jump,what are men doing?,dmyz_f8Sx14_56_66,1266_32600,0 1669,1266,dive,what are people doing?,dmyz_f8Sx14_56_66,1266_32601,0 1670,1268,opinion,what is a bearded man seated in an office cabin giving?,drsPD5fI1IA_170_180,1268_32602,0 1671,1268,man,who talked into the camera?,drsPD5fI1IA_170_180,1268_32603,0 1672,1268,man,who is speaking towards a camera?,drsPD5fI1IA_170_180,1268_32604,0 1673,1268,man,who talked to the camera?,drsPD5fI1IA_170_180,1268_32605,0 1674,1268,man,who speaks into a camera?,drsPD5fI1IA_170_180,1268_32606,0 1675,1268,camera,what did the jewish man talk into?,drsPD5fI1IA_170_180,1268_32607,0 1676,1268,camera,what does an old man speak into?,drsPD5fI1IA_170_180,1268_32608,0 1677,1268,camera,what did the jewish man talk to?,drsPD5fI1IA_170_180,1268_32609,0 1678,1268,man,who sits and talks?,drsPD5fI1IA_170_180,1268_32610,0 1679,1268,camera,what is a man speaking towards?,drsPD5fI1IA_170_180,1268_32611,0 1680,1268,man,who is speaking?,drsPD5fI1IA_170_180,1268_32612,0 1681,1268,man,who is talking?,drsPD5fI1IA_170_180,1268_32613,0 1682,1268,speak,what is a older jewish man slowly doing?,drsPD5fI1IA_170_180,1268_32614,0 1683,1268,speak,what is a man doing?,drsPD5fI1IA_170_180,1268_32615,0 1684,1268,talk,what is a man doing?,drsPD5fI1IA_170_180,1268_32616,0 1685,1268,talk,what is a man with a beard doing?,drsPD5fI1IA_170_180,1268_32617,0 1686,1268,speak,what is a rabbi doing?,drsPD5fI1IA_170_180,1268_32618,0 1687,1268,speak,what is a reverent doing?,drsPD5fI1IA_170_180,1268_32619,0 1688,1268,talk,what is an elderly man doing?,drsPD5fI1IA_170_180,1268_32620,0 1689,1268,talk,what is the man doing?,drsPD5fI1IA_170_180,1268_32621,0 1690,1269,man,who pushes another man over the side of a boat?,dtn0PuxgfkM_0_5,1269_32622,0 1691,1269,man,who is pushed off a boat by another person?,dtn0PuxgfkM_0_5,1269_32623,0 1692,1269,person,who is pushing a man off a boat?,dtn0PuxgfkM_0_5,1269_32624,0 1693,1269,man,who pushes another man into the ocean?,dtn0PuxgfkM_0_5,1269_32625,0 1694,1269,man,who pushes someone overboard from a ship?,dtn0PuxgfkM_0_5,1269_32626,0 1695,1269,man,who does a man push over the side of a boat?,dtn0PuxgfkM_0_5,1269_32627,0 1696,1269,person,who is a man pushed off a boat by?,dtn0PuxgfkM_0_5,1269_32628,0 1697,1269,man,who does a man push into the ocean?,dtn0PuxgfkM_0_5,1269_32629,0 1698,1269,man,who is a person pushing off a boat?,dtn0PuxgfkM_0_5,1269_32630,0 1699,1269,boat,what is a man pushed off by another person?,dtn0PuxgfkM_0_5,1269_32631,0 1700,1269,ocean,what does a man push another man into?,dtn0PuxgfkM_0_5,1269_32632,0 1701,1269,boat,what is a person pushing a man off?,dtn0PuxgfkM_0_5,1269_32633,0 1702,1269,man,who is being thrown off a boat?,dtn0PuxgfkM_0_5,1269_32634,0 1703,1269,man,who is pushed off of a boat?,dtn0PuxgfkM_0_5,1269_32635,0 1704,1269,boat,what is a man being thrown off?,dtn0PuxgfkM_0_5,1269_32636,0 1705,1269,man,who was pushed into the water?,dtn0PuxgfkM_0_5,1269_32637,0 1706,1269,someone,who is being pushed off a boat?,dtn0PuxgfkM_0_5,1269_32638,0 1707,1269,man,who threw the prisoner overboard?,dtn0PuxgfkM_0_5,1269_32639,0 1708,1269,boat,what is a man pushed off of?,dtn0PuxgfkM_0_5,1269_32640,0 1709,1269,man,who is putting into water?,dtn0PuxgfkM_0_5,1269_32641,0 1710,1269,man,who is pushed into the water?,dtn0PuxgfkM_0_5,1269_32642,0 1711,1269,boat,what is someone being pushed off?,dtn0PuxgfkM_0_5,1269_32643,0 1712,1269,water,what was the man pushed into?,dtn0PuxgfkM_0_5,1269_32644,0 1713,1269,water,what is a tied man putting into?,dtn0PuxgfkM_0_5,1269_32645,0 1714,1269,ship,what is a person pushed off?,dtn0PuxgfkM_0_5,1269_32646,0 1715,1269,prisoner,who did the man throw overboard?,dtn0PuxgfkM_0_5,1269_32647,0 1716,1269,water,what is a man pushed into?,dtn0PuxgfkM_0_5,1269_32648,0 1717,1269,put,what is a tied man doing?,dtn0PuxgfkM_0_5,1269_32649,0 1718,1269,push,what is a person doing?,dtn0PuxgfkM_0_5,1269_32650,0 1719,1270,field,where did the girl write on the paper?,dtwXtwJByYk_5_14,1270_32651,0 1720,1270,woman,who is sitting under a tree writing on a pad of paper?,dtwXtwJByYk_5_14,1270_32652,0 1721,1270,girl,who wrote on the paper in the field?,dtwXtwJByYk_5_14,1270_32653,0 1722,1270,girl,who wrote on paper while sitting outside?,dtwXtwJByYk_5_14,1270_32654,0 1723,1270,tree,what is a woman sitting under writing on a pad of paper?,dtwXtwJByYk_5_14,1270_32655,0 1724,1270,paper,what did the girl write on while sitting outside?,dtwXtwJByYk_5_14,1270_32656,0 1725,1270,paper,what did the girl write on in the field?,dtwXtwJByYk_5_14,1270_32657,0 1726,1270,field,what did the girl write on the paper in?,dtwXtwJByYk_5_14,1270_32658,0 1727,1270,woman,who is sitting under a tree?,dtwXtwJByYk_5_14,1270_32659,0 1728,1270,tree,what is a woman sitting under?,dtwXtwJByYk_5_14,1270_32660,0 1729,1270,woman,who is writing a letter outside?,dtwXtwJByYk_5_14,1270_32661,0 1730,1270,girl,who is writing in the woods?,dtwXtwJByYk_5_14,1270_32662,0 1731,1270,woman,who is writing in a note?,dtwXtwJByYk_5_14,1270_32663,0 1732,1270,woman,who writes something down?,dtwXtwJByYk_5_14,1270_32664,0 1733,1270,woman,who is writing notes?,dtwXtwJByYk_5_14,1270_32665,0 1734,1270,woman,who is writing something?,dtwXtwJByYk_5_14,1270_32666,0 1735,1270,girl,who is writing a letter?,dtwXtwJByYk_5_14,1270_32667,0 1736,1270,letter,what is a woman writing outside?,dtwXtwJByYk_5_14,1270_32668,0 1737,1270,note,what is a woman writing in?,dtwXtwJByYk_5_14,1270_32669,0 1738,1270,something,what does a woman write down?,dtwXtwJByYk_5_14,1270_32670,0 1739,1270,letter,what is a girl writing?,dtwXtwJByYk_5_14,1270_32671,0 1740,1270,letter,what is the woman writing?,dtwXtwJByYk_5_14,1270_32672,0 1741,1270,woman,who is writing outside?,dtwXtwJByYk_5_14,1270_32673,0 1742,1270,girl,who is singing?,dtwXtwJByYk_5_14,1270_32674,0 1743,1270,woman,who is writing?,dtwXtwJByYk_5_14,1270_32675,0 1744,1270,sit,what is a woman doing?,dtwXtwJByYk_5_14,1270_32676,0 1745,1270,write,what is a woman doing?,dtwXtwJByYk_5_14,1270_32677,0 1746,1270,write,what is a girl doing?,dtwXtwJByYk_5_14,1270_32678,0 1747,1270,write,what is the woman doing?,dtwXtwJByYk_5_14,1270_32679,0 1748,1270,sit,what is the girl wrote on paper while doing?,dtwXtwJByYk_5_14,1270_32680,0 1749,1271,someone,who slices the end off a red onion with a cleaver?,e-j59PqJjSM_163_173,1271_32681,0 1750,1271,person,who is chopping a red onion with a cleaver?,e-j59PqJjSM_163_173,1271_32682,0 1751,1271,man,who is cutting an onion with a cleaver?,e-j59PqJjSM_163_173,1271_32683,0 1752,1271,person,who is cutting a top of an onion?,e-j59PqJjSM_163_173,1271_32684,0 1753,1271,man,who is slicing the end off an onion?,e-j59PqJjSM_163_173,1271_32685,0 1754,1271,onion,what is a person with a cleaver slicing?,e-j59PqJjSM_163_173,1271_32686,0 1755,1271,cleaver,what is a person chopping a red onion with?,e-j59PqJjSM_163_173,1271_32687,0 1756,1271,end,what is a man slicing off an onion?,e-j59PqJjSM_163_173,1271_32688,0 1757,1271,onion,what is a person chopping with a cleaver?,e-j59PqJjSM_163_173,1271_32689,0 1758,1271,onion,what is a person cutting a top of?,e-j59PqJjSM_163_173,1271_32690,0 1759,1271,onion,what is a man slicing the end off?,e-j59PqJjSM_163_173,1271_32691,0 1760,1271,cleaver,what is a man cutting an onion with?,e-j59PqJjSM_163_173,1271_32692,0 1761,1271,onion,what is a man cutting with a cleaver?,e-j59PqJjSM_163_173,1271_32693,0 1762,1271,man,who sliced the red onion?,e-j59PqJjSM_163_173,1271_32694,0 1763,1271,man,who is slicing red onion?,e-j59PqJjSM_163_173,1271_32695,0 1764,1271,man,who is slicing onion?,e-j59PqJjSM_163_173,1271_32696,0 1765,1271,man,who is slicing a red onion?,e-j59PqJjSM_163_173,1271_32697,0 1766,1271,man,who is slicing an onion?,e-j59PqJjSM_163_173,1271_32698,0 1767,1271,man,who cuts a red onion?,e-j59PqJjSM_163_173,1271_32699,0 1768,1271,man,who cuts up an onion?,e-j59PqJjSM_163_173,1271_32700,0 1769,1271,man,who is cutting an onion?,e-j59PqJjSM_163_173,1271_32701,0 1770,1271,onion,what did the man slice?,e-j59PqJjSM_163_173,1271_32702,0 1771,1271,onion,what is a person slicing?,e-j59PqJjSM_163_173,1271_32703,0 1772,1271,onion,what is a man slicing?,e-j59PqJjSM_163_173,1271_32704,0 1773,1271,onion,what is the man slicing?,e-j59PqJjSM_163_173,1271_32705,0 1774,1271,onion,what does a man cut up?,e-j59PqJjSM_163_173,1271_32706,0 1775,1271,onion,what is a man cutting?,e-j59PqJjSM_163_173,1271_32707,0 1776,1271,onion,what does a man cut?,e-j59PqJjSM_163_173,1271_32708,0 1777,1271,slouse,what is a man doing?,e-j59PqJjSM_163_173,1271_32709,0 1778,1271,slouse,what is a person doing?,e-j59PqJjSM_163_173,1271_32710,0 1779,1271,cut,what is a man doing?,e-j59PqJjSM_163_173,1271_32711,0 1780,1271,chop,what is a person doing?,e-j59PqJjSM_163_173,1271_32712,0 1781,1271,slouse,what is a person with a cleaver doing?,e-j59PqJjSM_163_173,1271_32713,0 1782,1271,slouse,what is the man doing?,e-j59PqJjSM_163_173,1271_32714,0 1783,1272,man,who is cutting a tomato into pieces using a cleaver?,e-j59PqJjSM_264_277,1272_32715,0 1784,1272,person,who is slicing a tomato with a cleaver?,e-j59PqJjSM_264_277,1272_32716,0 1785,1272,man,who is cutting tomatoes with a cleaver?,e-j59PqJjSM_264_277,1272_32717,0 1786,1272,man,who is cutting a tomato into pieces?,e-j59PqJjSM_264_277,1272_32718,0 1787,1272,tomato,what is a man cutting into pieces using a cleaver?,e-j59PqJjSM_264_277,1272_32719,0 1788,1272,tomato,what is a person slicing with a cleaver?,e-j59PqJjSM_264_277,1272_32720,0 1789,1272,cleaver,what is a person slicing a tomato with?,e-j59PqJjSM_264_277,1272_32721,0 1790,1272,man,who cut the tomatoe into quarters?,e-j59PqJjSM_264_277,1272_32722,0 1791,1272,cleaver,what is a man cutting tomatoes with?,e-j59PqJjSM_264_277,1272_32723,0 1792,1272,tomato,what is a man cutting into pieces?,e-j59PqJjSM_264_277,1272_32724,0 1793,1272,tomatoe,what did the man cut into quarters?,e-j59PqJjSM_264_277,1272_32725,0 1794,1272,man,who is slicing a tomato?,e-j59PqJjSM_264_277,1272_32726,0 1795,1272,man,who is cutting tomatoes?,e-j59PqJjSM_264_277,1272_32727,0 1796,1272,person,who cuts up a tomato?,e-j59PqJjSM_264_277,1272_32728,0 1797,1272,man,who is cutting a tomato?,e-j59PqJjSM_264_277,1272_32729,0 1798,1272,someone,what a tomato using a cleaver?,e-j59PqJjSM_264_277,1272_32730,0 1799,1272,cleaver,what do someone quarters a tomato using?,e-j59PqJjSM_264_277,1272_32731,0 1800,1272,tomato,what is a person slicing?,e-j59PqJjSM_264_277,1272_32732,0 1801,1272,tomato,what is a man slicing?,e-j59PqJjSM_264_277,1272_32733,0 1802,1272,tomato,what does a person cut up?,e-j59PqJjSM_264_277,1272_32734,0 1803,1272,tomato,what is a man cutting?,e-j59PqJjSM_264_277,1272_32735,0 1804,1272,use,what is someone quarters a tomato doing?,e-j59PqJjSM_264_277,1272_32736,0 1805,1272,slouse,what is a man doing?,e-j59PqJjSM_264_277,1272_32737,0 1806,1272,cut,what is a man doing?,e-j59PqJjSM_264_277,1272_32738,0 1807,1272,slouse,what is a person doing?,e-j59PqJjSM_264_277,1272_32739,0 1808,1272,cut,what is the man doing?,e-j59PqJjSM_264_277,1272_32740,0 1809,1273,someone,who is using a spatula to stir the contents of a metal bowl?,e-j59PqJjSM_405_416,1273_32741,0 1810,1273,man,who stirred the vegetables in the big bowl?,e-j59PqJjSM_405_416,1273_32742,0 1811,1273,someone,who is stirring a salad mixture in a large metal bowl?,e-j59PqJjSM_405_416,1273_32743,0 1812,1273,man,who is mixing ingredients in a large mixing bowl?,e-j59PqJjSM_405_416,1273_32744,0 1813,1273,man,who is stirring some ingredients in a bowl?,e-j59PqJjSM_405_416,1273_32745,0 1814,1273,person,who stirs a bowl full of food?,e-j59PqJjSM_405_416,1273_32746,0 1815,1273,spatula,what is someone using to stir the contents of a metal bowl?,e-j59PqJjSM_405_416,1273_32747,0 1816,1273,man,who is stirring a bowl of food?,e-j59PqJjSM_405_416,1273_32748,0 1817,1273,person,who is mixing food together in a large metal bowl?,e-j59PqJjSM_405_416,1273_32749,0 1818,1273,person,who is mixing a bowl of food?,e-j59PqJjSM_405_416,1273_32750,0 1819,1273,food,what does a person stir a bowl full of?,e-j59PqJjSM_405_416,1273_32751,0 1820,1273,mixture,what is someone stirring in a large metal bowl?,e-j59PqJjSM_405_416,1273_32752,0 1821,1273,man,who is stirring something in a bowl?,e-j59PqJjSM_405_416,1273_32753,0 1822,1273,person,who is mixing food in a bowl?,e-j59PqJjSM_405_416,1273_32754,0 1823,1273,food,what is a man stirring a bowl of?,e-j59PqJjSM_405_416,1273_32755,0 1824,1273,food,what is a person mixing a bowl of?,e-j59PqJjSM_405_416,1273_32756,0 1825,1273,something,what is a man stirring in a bowl?,e-j59PqJjSM_405_416,1273_32757,0 1826,1273,food,what is a person mixing in a bowl?,e-j59PqJjSM_405_416,1273_32758,0 1827,1273,food,what is a person mixing together in a large metal bowl?,e-j59PqJjSM_405_416,1273_32759,0 1828,1273,someone,who is mixing salad in a bowl?,e-j59PqJjSM_405_416,1273_32760,0 1829,1273,bowl,what is a man stirring something in?,e-j59PqJjSM_405_416,1273_32761,0 1830,1273,bowl,what is a person mixing food in?,e-j59PqJjSM_405_416,1273_32762,0 1831,1273,bowl,what is someone mixing salad in?,e-j59PqJjSM_405_416,1273_32763,0 1832,1273,cook,who is stirring the vegetables?,e-j59PqJjSM_405_416,1273_32764,0 1833,1273,salad,what is someone mixing in a bowl?,e-j59PqJjSM_405_416,1273_32765,0 1834,1273,person,who is mixing a salad?,e-j59PqJjSM_405_416,1273_32766,0 1835,1273,man,who is mixing a bowl?,e-j59PqJjSM_405_416,1273_32767,0 1836,1273,bowl,what is a man mixing?,e-j59PqJjSM_405_416,1273_32768,0 1837,1273,stir,what is someone doing?,e-j59PqJjSM_405_416,1273_32769,0 1838,1273,mix,what is a man doing?,e-j59PqJjSM_405_416,1273_32770,0 1839,1273,mix,what is a person doing?,e-j59PqJjSM_405_416,1273_32771,0 1840,1273,use,what is someone doing?,e-j59PqJjSM_405_416,1273_32772,0 1841,1273,stir,what is the cook doing?,e-j59PqJjSM_405_416,1273_32773,0 1842,1274,man,who hollows out the inside of four pickles?,e-j59PqJjSM_50_98,1274_32774,0 1843,1274,person,who is cutting a central of a cucumber?,e-j59PqJjSM_50_98,1274_32775,0 1844,1274,man,who cuts a cucumber in half?,e-j59PqJjSM_50_98,1274_32776,0 1845,1274,man,who cut the squash in half lengthwise and then again?,e-j59PqJjSM_50_98,1274_32777,0 1846,1274,man,who is slicing a cucumber lengthwise?,e-j59PqJjSM_50_98,1274_32778,0 1847,1274,cucumber,what is a person cutting a central of?,e-j59PqJjSM_50_98,1274_32779,0 1848,1274,man,who is scooping out the seeds?,e-j59PqJjSM_50_98,1274_32780,0 1849,1274,man,who scoops out the middle?,e-j59PqJjSM_50_98,1274_32781,0 1850,1274,man,who is cutting a cucumber?,e-j59PqJjSM_50_98,1274_32782,0 1851,1274,man,who is seeding cucumbers?,e-j59PqJjSM_50_98,1274_32783,0 1852,1274,man,who is removing the seeds?,e-j59PqJjSM_50_98,1274_32784,0 1853,1274,person,who is slicing a cucumber?,e-j59PqJjSM_50_98,1274_32785,0 1854,1274,man,who is slicing some vegetables?,e-j59PqJjSM_50_98,1274_32786,0 1855,1274,man,who is slicing a vegetable?,e-j59PqJjSM_50_98,1274_32787,0 1856,1274,man,who is cutting up a cucumber?,e-j59PqJjSM_50_98,1274_32788,0 1857,1274,man,who cuts vegetables?,e-j59PqJjSM_50_98,1274_32789,0 1858,1274,cucumber,what is a man cutting?,e-j59PqJjSM_50_98,1274_32790,0 1859,1274,cucumber,what is a person slicing?,e-j59PqJjSM_50_98,1274_32791,0 1860,1274,cucumber,what is a man cutting up?,e-j59PqJjSM_50_98,1274_32792,0 1861,1274,slouse,what is a person doing?,e-j59PqJjSM_50_98,1274_32793,0 1862,1274,cut,what is a person doing?,e-j59PqJjSM_50_98,1274_32794,0 1863,1274,slouse,what is a man doing?,e-j59PqJjSM_50_98,1274_32795,0 1864,1274,seed,what is a man doing?,e-j59PqJjSM_50_98,1274_32796,0 1865,1274,scoop,what is the man cut the pickle in half and sliced it lengthwise before doing?,e-j59PqJjSM_50_98,1274_32797,0 1866,1274,slouse,what is the man doing?,e-j59PqJjSM_50_98,1274_32798,0 1867,1275,woman,who is playing a flute on stage?,e-sf-hyrkTs_20_35,1275_32799,0 1868,1275,stage,when is a woman playing a flute?,e-sf-hyrkTs_20_35,1275_32800,0 1869,1275,flute,what is a woman playing on stage?,e-sf-hyrkTs_20_35,1275_32801,0 1870,1275,woman,who plays on a flute?,e-sf-hyrkTs_20_35,1275_32802,0 1871,1275,woman,who plays the clarinet?,e-sf-hyrkTs_20_35,1275_32803,0 1872,1275,woman,who is playing flute?,e-sf-hyrkTs_20_35,1275_32804,0 1873,1275,woman,who plays a wind instrument?,e-sf-hyrkTs_20_35,1275_32805,0 1874,1275,lady,who plays the flute?,e-sf-hyrkTs_20_35,1275_32806,0 1875,1275,girl,who plays an instruments?,e-sf-hyrkTs_20_35,1275_32807,0 1876,1275,woman,who is playing the flute?,e-sf-hyrkTs_20_35,1275_32808,0 1877,1275,girl,who is playing a flute?,e-sf-hyrkTs_20_35,1275_32809,0 1878,1275,flute,what did the girl perform on stage?,e-sf-hyrkTs_20_35,1275_32810,0 1879,1275,flute,what does a woman play on?,e-sf-hyrkTs_20_35,1275_32811,0 1880,1275,flute,what does a young lady play?,e-sf-hyrkTs_20_35,1275_32812,0 1881,1275,flute,what is a young lady playing?,e-sf-hyrkTs_20_35,1275_32813,0 1882,1275,instrument,what does a woman play?,e-sf-hyrkTs_20_35,1275_32814,0 1883,1275,flute,what is a woman playing?,e-sf-hyrkTs_20_35,1275_32815,0 1884,1275,flute,what is a girl playing?,e-sf-hyrkTs_20_35,1275_32816,0 1885,1275,flute,what is the woman playing?,e-sf-hyrkTs_20_35,1275_32817,0 1886,1275,flute,what did the lady play?,e-sf-hyrkTs_20_35,1275_32818,0 1887,1275,play,what is a girl doing?,e-sf-hyrkTs_20_35,1275_32819,0 1888,1275,play,what is a woman doing?,e-sf-hyrkTs_20_35,1275_32820,0 1889,1275,play,what is a young lady doing?,e-sf-hyrkTs_20_35,1275_32821,0 1890,1275,play,what is the woman doing?,e-sf-hyrkTs_20_35,1275_32822,0 1891,1276,person,who creates a new folder on a computer?,e3XkmpNcSt4_8_19,1276_32823,0 1892,1276,someone,who created a new folder on the computer?,e3XkmpNcSt4_8_19,1276_32824,0 1893,1276,person,who is making a new file folder on the computer?,e3XkmpNcSt4_8_19,1276_32825,0 1894,1276,person,who is creating a folder on a computer?,e3XkmpNcSt4_8_19,1276_32826,0 1895,1276,someone,who created a new folder called lol?,e3XkmpNcSt4_8_19,1276_32827,0 1896,1276,man,who creates a folder on a computer?,e3XkmpNcSt4_8_19,1276_32828,0 1897,1276,computer,what did someone create a new folder on?,e3XkmpNcSt4_8_19,1276_32829,0 1898,1276,person,who makes a folder on a computer?,e3XkmpNcSt4_8_19,1276_32830,0 1899,1276,man,who is talking while moving the computer mouse?,e3XkmpNcSt4_8_19,1276_32831,0 1900,1276,computer,what is the person making a new file folder on?,e3XkmpNcSt4_8_19,1276_32832,0 1901,1276,computer,what is a person creating a folder on?,e3XkmpNcSt4_8_19,1276_32833,0 1902,1276,man,who is talking while opening menus?,e3XkmpNcSt4_8_19,1276_32834,0 1903,1276,folder,what is a person creating on a computer?,e3XkmpNcSt4_8_19,1276_32835,0 1904,1276,folder,what did someone create on the computer?,e3XkmpNcSt4_8_19,1276_32836,0 1905,1276,man,who is creating a folder?,e3XkmpNcSt4_8_19,1276_32837,0 1906,1276,someone,what is playing on a computer?,e3XkmpNcSt4_8_19,1276_32838,0 1907,1276,someone,who is using a computer?,e3XkmpNcSt4_8_19,1276_32839,0 1908,1276,computer,what is someone playing on?,e3XkmpNcSt4_8_19,1276_32840,0 1909,1276,folder,what is a man creating?,e3XkmpNcSt4_8_19,1276_32841,0 1910,1276,computer,what is someone using?,e3XkmpNcSt4_8_19,1276_32842,0 1911,1276,navigate,what is a person doing?,e3XkmpNcSt4_8_19,1276_32843,0 1912,1276,create,what is a man doing?,e3XkmpNcSt4_8_19,1276_32844,0 1913,1276,use,what is someone doing?,e3XkmpNcSt4_8_19,1276_32845,0 1914,1276,play,what is someone doing?,e3XkmpNcSt4_8_19,1276_32846,0 1915,1276,talk,what is a man doing?,e3XkmpNcSt4_8_19,1276_32847,0 1916,1277,man,who spun down the water slide on a board?,e40bBP0_AbE_64_67,1277_32848,0 1917,1277,man,who rode a board down a water slide?,e40bBP0_AbE_64_67,1277_32849,0 1918,1277,man,who rides a water toy in the water?,e40bBP0_AbE_64_67,1277_32850,0 1919,1277,man,who is water surfing at a water park?,e40bBP0_AbE_64_67,1277_32851,0 1920,1277,man,who is riding a belly board in a wave pool?,e40bBP0_AbE_64_67,1277_32852,0 1921,1277,man,who is riding a board agains the water current?,e40bBP0_AbE_64_67,1277_32853,0 1922,1277,man,who is boogie boarding in a wave pool?,e40bBP0_AbE_64_67,1277_32854,0 1923,1277,body,what surfs on a waterpark wave ride?,e40bBP0_AbE_64_67,1277_32855,0 1924,1277,board,what did the man ride down a water slide?,e40bBP0_AbE_64_67,1277_32856,0 1925,1277,board,what is a man riding in a wave pool?,e40bBP0_AbE_64_67,1277_32857,0 1926,1277,man,who surfboard at a water park?,e40bBP0_AbE_64_67,1277_32858,0 1927,1277,man,who spins on a surf board?,e40bBP0_AbE_64_67,1277_32859,0 1928,1277,guy,who is riding a boogie board?,e40bBP0_AbE_64_67,1277_32860,0 1929,1277,man,who is surfing in water?,e40bBP0_AbE_64_67,1277_32861,0 1930,1277,man,who is body surfing?,e40bBP0_AbE_64_67,1277_32862,0 1931,1277,guy,who is in water?,e40bBP0_AbE_64_67,1277_32863,0 1932,1277,water,what is a man surfing in?,e40bBP0_AbE_64_67,1277_32864,0 1933,1277,boogie,what is a guy riding?,e40bBP0_AbE_64_67,1277_32865,0 1934,1277,water,what is a guy in?,e40bBP0_AbE_64_67,1277_32866,0 1935,1277,body,what is the man?,e40bBP0_AbE_64_67,1277_32867,0 1936,1277,man,who is surfing?,e40bBP0_AbE_64_67,1277_32868,0 1937,1277,board,what is a man is boogie doing?,e40bBP0_AbE_64_67,1277_32869,0 1938,1277,surf,what is a man doing?,e40bBP0_AbE_64_67,1277_32870,0 1939,1277,surf,what is a man is water doing?,e40bBP0_AbE_64_67,1277_32871,0 1940,1277,surf,what is the man is body doing?,e40bBP0_AbE_64_67,1277_32872,0 1941,1278,skateboarder,who is performing a trick in a halfpipe?,e4QGnppJ-ys_6_14,1278_32873,0 1942,1278,man,who rides his skateboard on a half pipe?,e4QGnppJ-ys_6_14,1278_32874,0 1943,1278,man,who is doing stunts on a skateboard?,e4QGnppJ-ys_6_14,1278_32875,0 1944,1278,skateboarder,who fell off his board while doing a trick?,e4QGnppJ-ys_6_14,1278_32876,0 1945,1278,man,who is riding on a skateboard ramp?,e4QGnppJ-ys_6_14,1278_32877,0 1946,1278,tony,who is doing skateboard tricks?,e4QGnppJ-ys_6_14,1278_32878,0 1947,1278,skateboard,what is tony hawk riding?,e4QGnppJ-ys_6_14,1278_32879,0 1948,1278,man,who is skateboarding on a half pipe?,e4QGnppJ-ys_6_14,1278_32880,0 1949,1278,skateboard,what is tony hawk doing?,e4QGnppJ-ys_6_14,1278_32881,0 1950,1278,man,who does tricks on a skateboard?,e4QGnppJ-ys_6_14,1278_32882,0 1951,1278,skateboard,what is a man doing stunts on?,e4QGnppJ-ys_6_14,1278_32883,0 1952,1278,man,who is riding a skateboard?,e4QGnppJ-ys_6_14,1278_32884,0 1953,1278,board,what did the skateboarder fall off while doing a trick?,e4QGnppJ-ys_6_14,1278_32885,0 1954,1278,skater,who skates on a half pipe?,e4QGnppJ-ys_6_14,1278_32886,0 1955,1278,man,who tries to do a flip?,e4QGnppJ-ys_6_14,1278_32887,0 1956,1278,skateboarder,who did a trick?,e4QGnppJ-ys_6_14,1278_32888,0 1957,1278,man,who is skateboarding on a ramp?,e4QGnppJ-ys_6_14,1278_32889,0 1958,1278,boy,who is showing skating stunts?,e4QGnppJ-ys_6_14,1278_32890,0 1959,1278,man,who is doing tricks?,e4QGnppJ-ys_6_14,1278_32891,0 1960,1278,man,who is doing some skating stunts?,e4QGnppJ-ys_6_14,1278_32892,0 1961,1278,skateboarder,who fell off his board?,e4QGnppJ-ys_6_14,1278_32893,0 1962,1278,trick,what did the skateboarder do?,e4QGnppJ-ys_6_14,1278_32894,0 1963,1278,skateboard,what is the man riding?,e4QGnppJ-ys_6_14,1278_32895,0 1964,1278,flip,what does a man try to do?,e4QGnppJ-ys_6_14,1278_32896,0 1965,1278,board,what did the skateboarder fall off?,e4QGnppJ-ys_6_14,1278_32897,0 1966,1278,skating,what is a man doing?,e4QGnppJ-ys_6_14,1278_32898,0 1967,1278,man,who fails?,e4QGnppJ-ys_6_14,1278_32899,0 1968,1278,man,who is skateboarding?,e4QGnppJ-ys_6_14,1278_32900,0 1969,1278,skateboard,what is a man doing?,e4QGnppJ-ys_6_14,1278_32901,0 1970,1278,show,what is a boy doing?,e4QGnppJ-ys_6_14,1278_32902,0 1971,1278,move,what is a man doing?,e4QGnppJ-ys_6_14,1278_32903,0 1972,1278,perform,what is a skateboarder doing?,e4QGnppJ-ys_6_14,1278_32904,0 1973,1279,boy,who is pouring a shake mixture from a blender into glasses?,e996zZ0uV_A_152_163,1279_32905,0 1974,1279,man,who pours a brown milkshake looking liquid into two blue glasses?,e996zZ0uV_A_152_163,1279_32906,0 1975,1279,man,who is pouring a thick drink from a blender into two plastic cups?,e996zZ0uV_A_152_163,1279_32907,0 1976,1279,man,who pours brown colored milkshake from a blender into two tall blue plastic glasses?,e996zZ0uV_A_152_163,1279_32908,0 1977,1279,someone,who is pouring a brown liquid from a pitcher into two plastic cups?,e996zZ0uV_A_152_163,1279_32909,0 1978,1279,boy,who poured a chocolate shake into two tumblers?,e996zZ0uV_A_152_163,1279_32910,0 1979,1279,boy,who poured the shake into blue tumblers?,e996zZ0uV_A_152_163,1279_32911,0 1980,1279,man,who is pouring a milk shake into a cup?,e996zZ0uV_A_152_163,1279_32912,0 1981,1279,pitcher,who is someone pouring a brown liquid from into two plastic cups?,e996zZ0uV_A_152_163,1279_32913,0 1982,1279,man,who is pouring blending drinks into cups?,e996zZ0uV_A_152_163,1279_32914,0 1983,1279,man,who is pouring a brown liquid into two blue cups?,e996zZ0uV_A_152_163,1279_32915,0 1984,1279,boy,who pours a chocolate shake into glasses?,e996zZ0uV_A_152_163,1279_32916,0 1985,1279,shake,what did the boy pour into blue tumblers?,e996zZ0uV_A_152_163,1279_32917,0 1986,1279,milkshake,what does a young man pour looking liquid into two blue glasses?,e996zZ0uV_A_152_163,1279_32918,0 1987,1279,liquid,what is someone pouring from a pitcher into two plastic cups?,e996zZ0uV_A_152_163,1279_32919,0 1988,1279,chocolate,what did the boy pour into two tumblers?,e996zZ0uV_A_152_163,1279_32920,0 1989,1279,man,who pours a shake into two cups?,e996zZ0uV_A_152_163,1279_32921,0 1990,1279,boy,who is adding juice in the cup?,e996zZ0uV_A_152_163,1279_32922,0 1991,1279,boy,who is pouring something from a pitcher?,e996zZ0uV_A_152_163,1279_32923,0 1992,1279,cup,what is a man pouring a milk shake into?,e996zZ0uV_A_152_163,1279_32924,0 1993,1279,shake,what is a man pouring into a cup?,e996zZ0uV_A_152_163,1279_32925,0 1994,1279,something,what is a boy pouring from a pitcher?,e996zZ0uV_A_152_163,1279_32926,0 1995,1279,juice,what is a boy adding in the cup?,e996zZ0uV_A_152_163,1279_32927,0 1996,1279,liquid,what is a man pouring into two blue cups?,e996zZ0uV_A_152_163,1279_32928,0 1997,1279,shake,what does a man pour into two cups?,e996zZ0uV_A_152_163,1279_32929,0 1998,1279,chocolate,what does a boy pour into glasses?,e996zZ0uV_A_152_163,1279_32930,0 1999,1279,pitcher,who is a boy pouring something from?,e996zZ0uV_A_152_163,1279_32931,0 2000,1279,someone,who pours a milkshake into two glasses?,e996zZ0uV_A_152_163,1279_32932,0 2001,1279,cup,what is a boy adding juice in?,e996zZ0uV_A_152_163,1279_32933,0 2002,1279,boy,who pours chocolate milk?,e996zZ0uV_A_152_163,1279_32934,0 2003,1279,kid,who pours himself a smoothie?,e996zZ0uV_A_152_163,1279_32935,0 2004,1279,liqud,who is poured into a cup?,e996zZ0uV_A_152_163,1279_32936,0 2005,1279,man,who is pouring drinks?,e996zZ0uV_A_152_163,1279_32937,0 2006,1279,milkshake,what does someone pour into two glasses?,e996zZ0uV_A_152_163,1279_32938,0 2007,1279,man,who is preparing some drink?,e996zZ0uV_A_152_163,1279_32939,0 2008,1279,cup,what is a liqud poured into?,e996zZ0uV_A_152_163,1279_32940,0 2009,1279,chocolate,what does a boy pour?,e996zZ0uV_A_152_163,1279_32941,0 2010,1279,drink,what is a man preparing?,e996zZ0uV_A_152_163,1279_32942,0 2011,1279,pmy,what is a boy doing?,e996zZ0uV_A_152_163,1279_32943,0 2012,1279,pmy,what is a man doing?,e996zZ0uV_A_152_163,1279_32944,0 2013,1279,prepare,what is a man doing?,e996zZ0uV_A_152_163,1279_32945,0 2014,1279,pmy,what is a young man doing?,e996zZ0uV_A_152_163,1279_32946,0 2015,1279,look,what is a young man pours a brown milkshake doing?,e996zZ0uV_A_152_163,1279_32947,0 2016,1279,pmy,what is someone doing?,e996zZ0uV_A_152_163,1279_32948,0 2017,1279,pmy,what is the man doing?,e996zZ0uV_A_152_163,1279_32949,0 2018,1280,man,who whacks another guy in the rear with a wooden club?,e996zZ0uV_A_196_204,1280_32950,0 2019,1280,boy,who spanks a man with a plastic sword?,e996zZ0uV_A_196_204,1280_32951,0 2020,1280,man,who spanked the other man with a stick?,e996zZ0uV_A_196_204,1280_32952,0 2021,1280,man,who is striking another man in the butt with an object?,e996zZ0uV_A_196_204,1280_32953,0 2022,1280,boy,who smacks a mans back with a sword?,e996zZ0uV_A_196_204,1280_32954,0 2023,1280,man,who hit the other man with a bat?,e996zZ0uV_A_196_204,1280_32955,0 2024,1280,man,who hit the other man with a stick?,e996zZ0uV_A_196_204,1280_32956,0 2025,1280,guy,who does a man whack in the rear with a wooden club?,e996zZ0uV_A_196_204,1280_32957,0 2026,1280,man,who is being hit on the buttock with a stick?,e996zZ0uV_A_196_204,1280_32958,0 2027,1280,man,who is hitting another man with a stick?,e996zZ0uV_A_196_204,1280_32959,0 2028,1280,boy,who whacks a man with a sword?,e996zZ0uV_A_196_204,1280_32960,0 2029,1280,man,who strikes another man with a stick?,e996zZ0uV_A_196_204,1280_32961,0 2030,1280,boy,who is beating other boy by stick?,e996zZ0uV_A_196_204,1280_32962,0 2031,1280,object,what is a man striking another man in the butt with?,e996zZ0uV_A_196_204,1280_32963,0 2032,1280,sword,what does a boy smack a mans back with?,e996zZ0uV_A_196_204,1280_32964,0 2033,1280,man,who is hitting another with a bat?,e996zZ0uV_A_196_204,1280_32965,0 2034,1280,stick,what is a man being hit on the buttock with?,e996zZ0uV_A_196_204,1280_32966,0 2035,1280,stick,what is a boy beating other boy by?,e996zZ0uV_A_196_204,1280_32967,0 2036,1280,buttock,what is a man being hit on with a stick?,e996zZ0uV_A_196_204,1280_32968,0 2037,1280,boy,who is a boy beating by stick?,e996zZ0uV_A_196_204,1280_32969,0 2038,1280,man,who is getting hit in the butt?,e996zZ0uV_A_196_204,1280_32970,0 2039,1280,bat,what is a man hitting another with?,e996zZ0uV_A_196_204,1280_32971,0 2040,1280,butt,what is a man getting hit in?,e996zZ0uV_A_196_204,1280_32972,0 2041,1280,man,who is beating another man?,e996zZ0uV_A_196_204,1280_32973,0 2042,1280,man,who is a man beating?,e996zZ0uV_A_196_204,1280_32974,0 2043,1280,beat,what is a boy doing?,e996zZ0uV_A_196_204,1280_32975,0 2044,1280,beat,what is a man doing?,e996zZ0uV_A_196_204,1280_32976,0 2045,1280,hit,what is a man doing?,e996zZ0uV_A_196_204,1280_32977,0 2046,1280,strike,what is a man doing?,e996zZ0uV_A_196_204,1280_32978,0 2047,1280,hit,what is one man doing?,e996zZ0uV_A_196_204,1280_32979,0 2048,1281,boy,who is throwing tennis balls at another boy?,e996zZ0uV_A_68_72,1281_32980,0 2049,1281,man,who is throwing tennis balls at another man?,e996zZ0uV_A_68_72,1281_32981,0 2050,1281,boy,who threw tennis balls at another boy?,e996zZ0uV_A_68_72,1281_32982,0 2051,1281,boy,who tosses tennis balls at another boy?,e996zZ0uV_A_68_72,1281_32983,0 2052,1281,man,who is throwing a tennis ball at a kid?,e996zZ0uV_A_68_72,1281_32984,0 2053,1281,boy,who is throwing baseballs at another boy who is not catching but being hit by them?,e996zZ0uV_A_68_72,1281_32985,0 2054,1281,boy,who did the boy throw tennis balls at?,e996zZ0uV_A_68_72,1281_32986,0 2055,1281,man,who throws tennis balls at another man?,e996zZ0uV_A_68_72,1281_32987,0 2056,1281,boy,who is throwing balls on the other boy?,e996zZ0uV_A_68_72,1281_32988,0 2057,1281,boy,who does a boy toss tennis balls at?,e996zZ0uV_A_68_72,1281_32989,0 2058,1281,boy,who is a boy throwing tennis balls at?,e996zZ0uV_A_68_72,1281_32990,0 2059,1281,boy,who is throwing balls at another boy?,e996zZ0uV_A_68_72,1281_32991,0 2060,1281,man,who does a man throw tennis balls at?,e996zZ0uV_A_68_72,1281_32992,0 2061,1281,man,who is a man throwing tennis balls at?,e996zZ0uV_A_68_72,1281_32993,0 2062,1281,man,who is throwing balls at another man?,e996zZ0uV_A_68_72,1281_32994,0 2063,1281,tenni,what did the boy throw at another boy?,e996zZ0uV_A_68_72,1281_32995,0 2064,1281,kid,who is a man throwing a tennis ball at?,e996zZ0uV_A_68_72,1281_32996,0 2065,1281,man,who is throwing tennis balls at another?,e996zZ0uV_A_68_72,1281_32997,0 2066,1281,tenni,what does a boy toss at another boy?,e996zZ0uV_A_68_72,1281_32998,0 2067,1281,tenni,what is a boy throwing at another boy?,e996zZ0uV_A_68_72,1281_32999,0 2068,1281,tenni,what does a man throw at another man?,e996zZ0uV_A_68_72,1281_33000,0 2069,1281,two,how many boys are playing with balls?,e996zZ0uV_A_68_72,1281_33001,0 2070,1281,boy,who is the boy throwing balls at?,e996zZ0uV_A_68_72,1281_33002,0 2071,1281,tenni,what is a man throwing at a kid?,e996zZ0uV_A_68_72,1281_33003,0 2072,1281,man,who is a man throwing balls at?,e996zZ0uV_A_68_72,1281_33004,0 2073,1281,kid,who throws balls at another kid?,e996zZ0uV_A_68_72,1281_33005,0 2074,1281,tenni,what is one young man throwing at another?,e996zZ0uV_A_68_72,1281_33006,0 2075,1281,man,who hit the other man?,e996zZ0uV_A_68_72,1281_33007,0 2076,1281,kid,who does a kid throw balls at?,e996zZ0uV_A_68_72,1281_33008,0 2077,1281,man,who threw balls?,e996zZ0uV_A_68_72,1281_33009,0 2078,1281,boy,who is throwing balls?,e996zZ0uV_A_68_72,1281_33010,0 2079,1281,man,who did the man hit?,e996zZ0uV_A_68_72,1281_33011,0 2080,1281,throw,what is a boy doing?,e996zZ0uV_A_68_72,1281_33012,0 2081,1281,throw,what is a man doing?,e996zZ0uV_A_68_72,1281_33013,0 2082,1281,throw,what is one boy doing?,e996zZ0uV_A_68_72,1281_33014,0 2083,1281,throw,what is one young man doing?,e996zZ0uV_A_68_72,1281_33015,0 2084,1281,throw,what is the boy doing?,e996zZ0uV_A_68_72,1281_33016,0 2085,1281,play,what are two boys doing?,e996zZ0uV_A_68_72,1281_33017,0 2086,1282,man,who is mixing flour in a bowl using some type of forked utensil?,eKtsMfmQ_0s_61_68,1282_33018,0 2087,1282,man,who is combining flour and water in a bowl to make dough?,eKtsMfmQ_0s_61_68,1282_33019,0 2088,1282,man,who is stirring a dough mixture in a bowl?,eKtsMfmQ_0s_61_68,1282_33020,0 2089,1282,man,who is mixing dry ingredients in a bowl?,eKtsMfmQ_0s_61_68,1282_33021,0 2090,1282,bowl,what is a man mixing flour in using some type of forked utensil?,eKtsMfmQ_0s_61_68,1282_33022,0 2091,1282,flmy,what is a man mixing in a bowl using some type of forked utensil?,eKtsMfmQ_0s_61_68,1282_33023,0 2092,1282,man,who is stirring dough in a bowl?,eKtsMfmQ_0s_61_68,1282_33024,0 2093,1282,man,who is mixing dough in a bowl?,eKtsMfmQ_0s_61_68,1282_33025,0 2094,1282,man,who is mixing ingredients in a bowl?,eKtsMfmQ_0s_61_68,1282_33026,0 2095,1282,bowl,what is a man combining flour and water in to make dough?,eKtsMfmQ_0s_61_68,1282_33027,0 2096,1282,bowl,what is a man stirring a dough mixture in?,eKtsMfmQ_0s_61_68,1282_33028,0 2097,1282,water,what is a man combining in a bowl to make dough?,eKtsMfmQ_0s_61_68,1282_33029,0 2098,1282,bowl,what is a man mixing dry ingredients in?,eKtsMfmQ_0s_61_68,1282_33030,0 2099,1282,man,who stirs flour in a bowl?,eKtsMfmQ_0s_61_68,1282_33031,0 2100,1282,dough,what is a man mixing in a bowl?,eKtsMfmQ_0s_61_68,1282_33032,0 2101,1282,mixture,what is a man stirring in a bowl?,eKtsMfmQ_0s_61_68,1282_33033,0 2102,1282,man,who mixes flour in a bowl?,eKtsMfmQ_0s_61_68,1282_33034,0 2103,1282,man,who is mixing flour to make dough?,eKtsMfmQ_0s_61_68,1282_33035,0 2104,1282,man,who is mixing dough with spoon?,eKtsMfmQ_0s_61_68,1282_33036,0 2105,1282,bowl,what is a man stirring dough in?,eKtsMfmQ_0s_61_68,1282_33037,0 2106,1282,bowl,what is a man mixing dough in?,eKtsMfmQ_0s_61_68,1282_33038,0 2107,1282,bowl,what is a man mixing ingredients in?,eKtsMfmQ_0s_61_68,1282_33039,0 2108,1282,flmy,what is a man mixing to make dough?,eKtsMfmQ_0s_61_68,1282_33040,0 2109,1282,man,who stirred the dry ingredients?,eKtsMfmQ_0s_61_68,1282_33041,0 2110,1282,man,who stirs a mixture?,eKtsMfmQ_0s_61_68,1282_33042,0 2111,1282,man,who is mixing flour?,eKtsMfmQ_0s_61_68,1282_33043,0 2112,1282,dough,what is a man mixing with spoon?,eKtsMfmQ_0s_61_68,1282_33044,0 2113,1282,man,who is mixing some flour?,eKtsMfmQ_0s_61_68,1282_33045,0 2114,1282,man,who is mixing ingredients?,eKtsMfmQ_0s_61_68,1282_33046,0 2115,1282,spoon,what is a man mixing dough with?,eKtsMfmQ_0s_61_68,1282_33047,0 2116,1282,man,who stirs flour?,eKtsMfmQ_0s_61_68,1282_33048,0 2117,1282,mixture,what does a man stir?,eKtsMfmQ_0s_61_68,1282_33049,0 2118,1282,flmy,what is the man mixing?,eKtsMfmQ_0s_61_68,1282_33050,0 2119,1282,dough,what is being mixed?,eKtsMfmQ_0s_61_68,1282_33051,0 2120,1282,combine,what is a man doing?,eKtsMfmQ_0s_61_68,1282_33052,0 2121,1282,mix,what is a man doing?,eKtsMfmQ_0s_61_68,1282_33053,0 2122,1282,stir,what is a man doing?,eKtsMfmQ_0s_61_68,1282_33054,0 2123,1282,mix,what is the man doing?,eKtsMfmQ_0s_61_68,1282_33055,0 2124,1283,woman,who is walking on a pavement of a street as music plays in the background?,ePujnD4qJO0_62_77,1283_33056,0 2125,1283,woman,who is walking down a city sidewalk?,ePujnD4qJO0_62_77,1283_33057,0 2126,1283,woman,who is walking down a city street?,ePujnD4qJO0_62_77,1283_33058,0 2127,1283,lady,who walked down the street?,ePujnD4qJO0_62_77,1283_33059,0 2128,1283,woman,who walks down the sidewalk?,ePujnD4qJO0_62_77,1283_33060,0 2129,1283,woman,who is walking along a pavement?,ePujnD4qJO0_62_77,1283_33061,0 2130,1283,woman,who walks on a sidewalk?,ePujnD4qJO0_62_77,1283_33062,0 2131,1283,woman,who is walking on the sidewalk?,ePujnD4qJO0_62_77,1283_33063,0 2132,1283,woman,who walks down a lane?,ePujnD4qJO0_62_77,1283_33064,0 2133,1283,woman,who is walking down a sidewalk?,ePujnD4qJO0_62_77,1283_33065,0 2134,1283,woman,who is walking in the streets?,ePujnD4qJO0_62_77,1283_33066,0 2135,1283,woman,who is walking down the sidewalk?,ePujnD4qJO0_62_77,1283_33067,0 2136,1283,street,what did the lady walk down?,ePujnD4qJO0_62_77,1283_33068,0 2137,1283,woman,who is walking in the street?,ePujnD4qJO0_62_77,1283_33069,0 2138,1283,pavement,what is a woman walking along?,ePujnD4qJO0_62_77,1283_33070,0 2139,1283,sidewalk,what does a woman walk on?,ePujnD4qJO0_62_77,1283_33071,0 2140,1283,sidewalk,what is a woman walking on?,ePujnD4qJO0_62_77,1283_33072,0 2141,1283,street,what is a woman walking in?,ePujnD4qJO0_62_77,1283_33073,0 2142,1283,lane,what does a woman walk down?,ePujnD4qJO0_62_77,1283_33074,0 2143,1283,woman,who is walking?,ePujnD4qJO0_62_77,1283_33075,0 2144,1283,walk,what is a woman doing?,ePujnD4qJO0_62_77,1283_33076,0 2145,1283,walk,what is the woman doing?,ePujnD4qJO0_62_77,1283_33077,0 2146,1284,person,who puts potato wedges into a pot of boiling water?,eTnlw7v8ea0_36_50,1284_33078,0 2147,1284,someone,who added raw french fries to the hot oil?,eTnlw7v8ea0_36_50,1284_33079,0 2148,1284,lady,who added potatoes strips to the hot oil?,eTnlw7v8ea0_36_50,1284_33080,0 2149,1284,person,who is adding french fries to some oil?,eTnlw7v8ea0_36_50,1284_33081,0 2150,1284,cook,who puts noodles into some boiling water?,eTnlw7v8ea0_36_50,1284_33082,0 2151,1284,someone,what is putting french fries into a pot?,eTnlw7v8ea0_36_50,1284_33083,0 2152,1284,potato,what does a person put into a pot of boiling water?,eTnlw7v8ea0_36_50,1284_33084,0 2153,1284,oil,what is a person adding french fries to?,eTnlw7v8ea0_36_50,1284_33085,0 2154,1284,pot,what is someone putting french fries into?,eTnlw7v8ea0_36_50,1284_33086,0 2155,1284,cook,who is frying french fries?,eTnlw7v8ea0_36_50,1284_33087,0 2156,1284,someone,who is frying potatoes?,eTnlw7v8ea0_36_50,1284_33088,0 2157,1284,person,who makes french fries?,eTnlw7v8ea0_36_50,1284_33089,0 2158,1284,person,who is making french fries?,eTnlw7v8ea0_36_50,1284_33090,0 2159,1284,woman,who is frying something?,eTnlw7v8ea0_36_50,1284_33091,0 2160,1284,person,who is frying a food?,eTnlw7v8ea0_36_50,1284_33092,0 2161,1284,something,what is a woman frying?,eTnlw7v8ea0_36_50,1284_33093,0 2162,1284,food,what is a person frying?,eTnlw7v8ea0_36_50,1284_33094,0 2163,1284,drop,what is someone doing?,eTnlw7v8ea0_36_50,1284_33095,0 2164,1284,fry,what is a person doing?,eTnlw7v8ea0_36_50,1284_33096,0 2165,1284,fry,what is a woman doing?,eTnlw7v8ea0_36_50,1284_33097,0 2166,1284,boil,what is a person puts potato wedges into a pot of doing?,eTnlw7v8ea0_36_50,1284_33098,0 2167,1284,put,what is someone doing?,eTnlw7v8ea0_36_50,1284_33099,0 2168,1284,fry,what is the cook doing?,eTnlw7v8ea0_36_50,1284_33100,0 2169,1285,woman,who is flipping through a magazine?,eVSQiPbepXg_44_49,1285_33101,0 2170,1285,girl,who pages through a magazine?,eVSQiPbepXg_44_49,1285_33102,0 2171,1285,girl,who was reading the bohemian?,eVSQiPbepXg_44_49,1285_33103,0 2172,1285,woman,who is reading a bohemian paper?,eVSQiPbepXg_44_49,1285_33104,0 2173,1285,woman,who is reading a lifestyle magazine?,eVSQiPbepXg_44_49,1285_33105,0 2174,1285,girl,who was reading a newspaper?,eVSQiPbepXg_44_49,1285_33106,0 2175,1285,woman,who reads a paper?,eVSQiPbepXg_44_49,1285_33107,0 2176,1285,girl,who is reading a news paper?,eVSQiPbepXg_44_49,1285_33108,0 2177,1285,girl,who is reading a magazine?,eVSQiPbepXg_44_49,1285_33109,0 2178,1285,girl,who is reading a newspaper?,eVSQiPbepXg_44_49,1285_33110,0 2179,1285,girl,who is reading a paper?,eVSQiPbepXg_44_49,1285_33111,0 2180,1285,magazine,what a girl pages through?,eVSQiPbepXg_44_49,1285_33112,0 2181,1285,magazine,what is a woman flipping through?,eVSQiPbepXg_44_49,1285_33113,0 2182,1285,bohemian,who was a girl reading?,eVSQiPbepXg_44_49,1285_33114,0 2183,1285,newspaper,what was the girl reading?,eVSQiPbepXg_44_49,1285_33115,0 2184,1285,paper,what does a woman read?,eVSQiPbepXg_44_49,1285_33116,0 2185,1285,magazine,what is a girl reading?,eVSQiPbepXg_44_49,1285_33117,0 2186,1285,magazine,what is the girl reading?,eVSQiPbepXg_44_49,1285_33118,0 2187,1285,paper,what is a woman reading?,eVSQiPbepXg_44_49,1285_33119,0 2188,1285,girl,who is reading?,eVSQiPbepXg_44_49,1285_33120,0 2189,1285,read,what is a woman doing?,eVSQiPbepXg_44_49,1285_33121,0 2190,1285,read,what is a female doing?,eVSQiPbepXg_44_49,1285_33122,0 2191,1285,read,what is a girl doing?,eVSQiPbepXg_44_49,1285_33123,0 2192,1285,read,what was a girl doing?,eVSQiPbepXg_44_49,1285_33124,0 2193,1285,flip,what is a woman doing?,eVSQiPbepXg_44_49,1285_33125,0 2194,1285,read,what is the girl doing?,eVSQiPbepXg_44_49,1285_33126,0 2195,1285,read,what was the girl doing?,eVSQiPbepXg_44_49,1285_33127,0 2196,1286,woman,who pours black coffee from a pot into a mug?,eVSQiPbepXg_83_93,1286_33128,0 2197,1286,person,who is pouring coffee into a blue mug?,eVSQiPbepXg_83_93,1286_33129,0 2198,1286,girl,who fills a mug with coffee and sugar?,eVSQiPbepXg_83_93,1286_33130,0 2199,1286,mug,what does a woman pour black coffee from a pot into?,eVSQiPbepXg_83_93,1286_33131,0 2200,1286,woman,who is making a cup of coffee?,eVSQiPbepXg_83_93,1286_33132,0 2201,1286,person,who is pouring coffee into a cup?,eVSQiPbepXg_83_93,1286_33133,0 2202,1286,girl,who is pouring coffee into a mug?,eVSQiPbepXg_83_93,1286_33134,0 2203,1286,three,how many sugar cubes does a woman add to coffee?,eVSQiPbepXg_83_93,1286_33135,0 2204,1286,coffee,what is a person pouring into a blue mug?,eVSQiPbepXg_83_93,1286_33136,0 2205,1286,someone,who porued a cup of coffee?,eVSQiPbepXg_83_93,1286_33137,0 2206,1286,coffee,what is a woman making a cup of?,eVSQiPbepXg_83_93,1286_33138,0 2207,1286,woman,who adds three sugar cubes to coffee?,eVSQiPbepXg_83_93,1286_33139,0 2208,1286,coffee,what is the person pouring into a cup?,eVSQiPbepXg_83_93,1286_33140,0 2209,1286,someone,who poured a cup of coffee?,eVSQiPbepXg_83_93,1286_33141,0 2210,1286,coffee,what is a girl pouring into a mug?,eVSQiPbepXg_83_93,1286_33142,0 2211,1286,mug,what does a girl fill with coffee and sugar?,eVSQiPbepXg_83_93,1286_33143,0 2212,1286,cup,what is the person pouring coffee into?,eVSQiPbepXg_83_93,1286_33144,0 2213,1286,mug,what is a girl pouring coffee into?,eVSQiPbepXg_83_93,1286_33145,0 2214,1286,coffee,what did someone porued a cup of?,eVSQiPbepXg_83_93,1286_33146,0 2215,1286,coffee,what did someone pour a cup of?,eVSQiPbepXg_83_93,1286_33147,0 2216,1286,girl,who is adding sugar?,eVSQiPbepXg_83_93,1286_33148,0 2217,1286,sugar,what does a woman add to coffee?,eVSQiPbepXg_83_93,1286_33149,0 2218,1286,coffee,what is someone making a cup of?,eVSQiPbepXg_83_93,1286_33150,0 2219,1286,woman,who is pouring coffee?,eVSQiPbepXg_83_93,1286_33151,0 2220,1286,woman,who is making coffee?,eVSQiPbepXg_83_93,1286_33152,0 2221,1286,sugar,what is a girl adding?,eVSQiPbepXg_83_93,1286_33153,0 2222,1286,coffee,what is a woman pouring?,eVSQiPbepXg_83_93,1286_33154,0 2223,1286,coffee,what is prepared?,eVSQiPbepXg_83_93,1286_33155,0 2224,1286,pmy,what is a girl doing?,eVSQiPbepXg_83_93,1286_33156,0 2225,1286,pmy,what is a person doing?,eVSQiPbepXg_83_93,1286_33157,0 2226,1286,pmy,what is the person doing?,eVSQiPbepXg_83_93,1286_33158,0 2227,1287,man,who sliced through the piece of wood with a knife as if the wood was butter?,eZLxohGP4IE_147_158,1287_33159,0 2228,1287,man,who uses a knife to cut pieces off of a square of thick leather?,eZLxohGP4IE_147_158,1287_33160,0 2229,1287,man,who is cutting a thin piece of plywood in strips with a hunting knife?,eZLxohGP4IE_147_158,1287_33161,0 2230,1287,man,who is shaving slices off a piece of wood with a knife?,eZLxohGP4IE_147_158,1287_33162,0 2231,1287,knife,what did the man slice through the piece of wood with as if the wood was butter?,eZLxohGP4IE_147_158,1287_33163,0 2232,1287,man,who is cuttng wood with a knife?,eZLxohGP4IE_147_158,1287_33164,0 2233,1287,man,who is slicing leather with a knife?,eZLxohGP4IE_147_158,1287_33165,0 2234,1287,man,who is carving leather with a knife?,eZLxohGP4IE_147_158,1287_33166,0 2235,1287,man,who cuts some wood with a knife?,eZLxohGP4IE_147_158,1287_33167,0 2236,1287,man,who is cutting leather with a knife?,eZLxohGP4IE_147_158,1287_33168,0 2237,1287,plywood,what is a man cutting a thin piece of in strips with a hunting knife?,eZLxohGP4IE_147_158,1287_33169,0 2238,1287,man,who is cutting something with a knife?,eZLxohGP4IE_147_158,1287_33170,0 2239,1287,knife,what is a man shaving slices off a piece of wood with?,eZLxohGP4IE_147_158,1287_33171,0 2240,1287,wood,what is a man cuttng with a knife?,eZLxohGP4IE_147_158,1287_33172,0 2241,1287,man,who is slicing with a hunting knife?,eZLxohGP4IE_147_158,1287_33173,0 2242,1287,leather,what is a man slicing with a knife?,eZLxohGP4IE_147_158,1287_33174,0 2243,1287,leather,what is the man slicing with a knife?,eZLxohGP4IE_147_158,1287_33175,0 2244,1287,leather,what is a man carving with a knife?,eZLxohGP4IE_147_158,1287_33176,0 2245,1287,knife,what does a man cut some wood with?,eZLxohGP4IE_147_158,1287_33177,0 2246,1287,wood,what does a man cut with a knife?,eZLxohGP4IE_147_158,1287_33178,0 2247,1287,something,what is a man cutting with a knife?,eZLxohGP4IE_147_158,1287_33179,0 2248,1287,knife,what is a man cuttng wood with?,eZLxohGP4IE_147_158,1287_33180,0 2249,1287,knife,what is a man slicing leather with?,eZLxohGP4IE_147_158,1287_33181,0 2250,1287,knife,what is the man slicing leather with?,eZLxohGP4IE_147_158,1287_33182,0 2251,1287,man,who slices leather with a knife?,eZLxohGP4IE_147_158,1287_33183,0 2252,1287,knife,what is a man carving leather with?,eZLxohGP4IE_147_158,1287_33184,0 2253,1287,knife,what is a man cutting leather with?,eZLxohGP4IE_147_158,1287_33185,0 2254,1287,man,who is cutting something with knife?,eZLxohGP4IE_147_158,1287_33186,0 2255,1287,leather,what does a man slice with a knife?,eZLxohGP4IE_147_158,1287_33187,0 2256,1287,knife,what does a man slice leather with?,eZLxohGP4IE_147_158,1287_33188,0 2257,1287,knife,what sliced through the leather easily?,eZLxohGP4IE_147_158,1287_33189,0 2258,1287,something,what is a man cutting with knife?,eZLxohGP4IE_147_158,1287_33190,0 2259,1287,knife,what is a man cutting something with?,eZLxohGP4IE_147_158,1287_33191,0 2260,1287,leather,what did the knife slice through easily?,eZLxohGP4IE_147_158,1287_33192,0 2261,1287,cut,what is a man doing?,eZLxohGP4IE_147_158,1287_33193,0 2262,1287,slouse,what is a man doing?,eZLxohGP4IE_147_158,1287_33194,0 2263,1287,shave,what is a man doing?,eZLxohGP4IE_147_158,1287_33195,0 2264,1287,carve,what is a man doing?,eZLxohGP4IE_147_158,1287_33196,0 2265,1287,slouse,what is the man doing?,eZLxohGP4IE_147_158,1287_33197,0 2266,1288,man,who is slicing through a piece of carpet with a hunting knife?,eZLxohGP4IE_15_25,1288_33198,0 2267,1288,man,who cut the carpet piece with a knife?,eZLxohGP4IE_15_25,1288_33199,0 2268,1288,man,who is cutting a piece of carpet with a knife?,eZLxohGP4IE_15_25,1288_33200,0 2269,1288,man,who cut some carpet with a knife?,eZLxohGP4IE_15_25,1288_33201,0 2270,1288,man,who is cutting carpet with a knife?,eZLxohGP4IE_15_25,1288_33202,0 2271,1288,man,who cuts a carpet with a knife?,eZLxohGP4IE_15_25,1288_33203,0 2272,1288,man,who is using a knife to cut the rug?,eZLxohGP4IE_15_25,1288_33204,0 2273,1288,knife,what did the man cut some carpet with?,eZLxohGP4IE_15_25,1288_33205,0 2274,1288,knife,what did the man cut the carpet piece with?,eZLxohGP4IE_15_25,1288_33206,0 2275,1288,knife,what is a man cutting a piece of carpet with?,eZLxohGP4IE_15_25,1288_33207,0 2276,1288,carpet,what did the man cut with a knife?,eZLxohGP4IE_15_25,1288_33208,0 2277,1288,carpet,what is a man cutting a piece of with a knife?,eZLxohGP4IE_15_25,1288_33209,0 2278,1288,knife,what does a man cut a carpet with?,eZLxohGP4IE_15_25,1288_33210,0 2279,1288,man,what rug backing with a knife?,eZLxohGP4IE_15_25,1288_33211,0 2280,1288,carpet,what does a man cut with a knife?,eZLxohGP4IE_15_25,1288_33212,0 2281,1288,knife,what do a man cuts rug backing with?,eZLxohGP4IE_15_25,1288_33213,0 2282,1288,man,who slices carpet with a knife?,eZLxohGP4IE_15_25,1288_33214,0 2283,1288,knife,what is a man cutting carpet with?,eZLxohGP4IE_15_25,1288_33215,0 2284,1288,knife,what is the man using to cut the rug?,eZLxohGP4IE_15_25,1288_33216,0 2285,1288,man,who is cutting something with knife?,eZLxohGP4IE_15_25,1288_33217,0 2286,1288,carpet,what is someoen cutting?,eZLxohGP4IE_15_25,1288_33218,0 2287,1288,carpet,what does a man slice with a knife?,eZLxohGP4IE_15_25,1288_33219,0 2288,1288,someoen,who is cutting carpet?,eZLxohGP4IE_15_25,1288_33220,0 2289,1288,knife,what does a man slice carpet with?,eZLxohGP4IE_15_25,1288_33221,0 2290,1288,man,who is cutting a carpet section?,eZLxohGP4IE_15_25,1288_33222,0 2291,1288,man,who is cutting a mat?,eZLxohGP4IE_15_25,1288_33223,0 2292,1288,something,what is a man cutting with knife?,eZLxohGP4IE_15_25,1288_33224,0 2293,1288,knife,what is a man cutting something with?,eZLxohGP4IE_15_25,1288_33225,0 2294,1288,mat,what is a man cutting?,eZLxohGP4IE_15_25,1288_33226,0 2295,1288,slouse,what is a man doing?,eZLxohGP4IE_15_25,1288_33227,0 2296,1288,cut,what is a man doing?,eZLxohGP4IE_15_25,1288_33228,0 2297,1288,cut,what is someoen doing?,eZLxohGP4IE_15_25,1288_33229,0 2298,1288,use,what is the man doing?,eZLxohGP4IE_15_25,1288_33230,0 2299,1289,man,who is using a wooden handle to drive the cutting edge of a knife into another piece of wood?,eZLxohGP4IE_190_201,1289_33231,0 2300,1289,man,who used a stick to pound a tool into a block of wood?,eZLxohGP4IE_190_201,1289_33232,0 2301,1289,man,who hammers a knife into a wooden board?,eZLxohGP4IE_190_201,1289_33233,0 2302,1289,man,who is trying to use a knife to cut through a board?,eZLxohGP4IE_190_201,1289_33234,0 2303,1289,man,who hits a knife with a wooden stick?,eZLxohGP4IE_190_201,1289_33235,0 2304,1289,man,who is hitting a knife with a piece of wood?,eZLxohGP4IE_190_201,1289_33236,0 2305,1289,blade,what does a man wearing rubber gloves hammer with a wooden stick?,eZLxohGP4IE_190_201,1289_33237,0 2306,1289,man,who is hitting a blade with a stick?,eZLxohGP4IE_190_201,1289_33238,0 2307,1289,man,who is hitting a knife with a stick?,eZLxohGP4IE_190_201,1289_33239,0 2308,1289,stick,what did the man use to pound a tool into a block of wood?,eZLxohGP4IE_190_201,1289_33240,0 2309,1289,wooden,what is a man using handle to drive the cutting edge of a knife into another piece of wood?,eZLxohGP4IE_190_201,1289_33241,0 2310,1289,tool,what did the man use a stick to pound into a block of wood?,eZLxohGP4IE_190_201,1289_33242,0 2311,1289,man,who is hitting a knife with a board?,eZLxohGP4IE_190_201,1289_33243,0 2312,1289,man,who hit the knife into the wood?,eZLxohGP4IE_190_201,1289_33244,0 2313,1289,man,who is using a pipe to hammer the knife?,eZLxohGP4IE_190_201,1289_33245,0 2314,1289,man,who is cutting wood with a knife?,eZLxohGP4IE_190_201,1289_33246,0 2315,1289,knife,what does a man hammer into a wooden board?,eZLxohGP4IE_190_201,1289_33247,0 2316,1289,wood,what did the man hit the knife into?,eZLxohGP4IE_190_201,1289_33248,0 2317,1289,knife,what is a hammering into a piece of wood?,eZLxohGP4IE_190_201,1289_33249,0 2318,1289,knife,what did the man hit into the wood?,eZLxohGP4IE_190_201,1289_33250,0 2319,1289,knife,what is a man hitting with a piece of wood?,eZLxohGP4IE_190_201,1289_33251,0 2320,1289,knife,what does a man hit with a wooden stick?,eZLxohGP4IE_190_201,1289_33252,0 2321,1289,stick,what is a man hitting a blade with?,eZLxohGP4IE_190_201,1289_33253,0 2322,1289,wood,what is a man cutting with a knife?,eZLxohGP4IE_190_201,1289_33254,0 2323,1289,knife,what is a man hitting with a stick?,eZLxohGP4IE_190_201,1289_33255,0 2324,1289,knife,what is a man hitting with a board?,eZLxohGP4IE_190_201,1289_33256,0 2325,1289,pipe,what is the man using to hammer the knife?,eZLxohGP4IE_190_201,1289_33257,0 2326,1289,knife,what is a man cutting wood with?,eZLxohGP4IE_190_201,1289_33258,0 2327,1289,man,who is hitting something?,eZLxohGP4IE_190_201,1289_33259,0 2328,1289,something,what is a man hitting?,eZLxohGP4IE_190_201,1289_33260,0 2329,1289,wear,what is a man doing?,eZLxohGP4IE_190_201,1289_33261,0 2330,1289,hammer,what is a doing?,eZLxohGP4IE_190_201,1289_33262,0 2331,1289,use,what is a man doing?,eZLxohGP4IE_190_201,1289_33263,0 2332,1289,cut,what is a man doing?,eZLxohGP4IE_190_201,1289_33264,0 2333,1289,try,what is a man doing?,eZLxohGP4IE_190_201,1289_33265,0 2334,1289,hit,what is a man doing?,eZLxohGP4IE_190_201,1289_33266,0 2335,1289,use,what is the man doing?,eZLxohGP4IE_190_201,1289_33267,0 2336,1290,baby,who is crawling along the floor while smiling?,eb-Zp4pJLKk_2_19,1290_33268,0 2337,1290,baby,who is gurgling happily as he crawls on the floor?,eb-Zp4pJLKk_2_19,1290_33269,0 2338,1290,floor,what is a baby crawling along while smiling?,eb-Zp4pJLKk_2_19,1290_33270,0 2339,1290,smiling,who is crawling down a hallway?,eb-Zp4pJLKk_2_19,1290_33271,0 2340,1290,baby,who crawled through the doorway?,eb-Zp4pJLKk_2_19,1290_33272,0 2341,1290,baby,who crawls along the floor?,eb-Zp4pJLKk_2_19,1290_33273,0 2342,1290,smiling,who crawls on the floor?,eb-Zp4pJLKk_2_19,1290_33274,0 2343,1290,baby,who crawled on the floor?,eb-Zp4pJLKk_2_19,1290_33275,0 2344,1290,baby,who happily crawls through a doorway?,eb-Zp4pJLKk_2_19,1290_33276,0 2345,1290,baby,who is crawling across the floor?,eb-Zp4pJLKk_2_19,1290_33277,0 2346,1290,baby,who is crawling along the floor?,eb-Zp4pJLKk_2_19,1290_33278,0 2347,1290,hallway,what is a smiling baby crawling down?,eb-Zp4pJLKk_2_19,1290_33279,0 2348,1290,baby,who is crawling on the floor?,eb-Zp4pJLKk_2_19,1290_33280,0 2349,1290,doorway,what did the baby crawl through?,eb-Zp4pJLKk_2_19,1290_33281,0 2350,1290,floor,what did the baby crawl on?,eb-Zp4pJLKk_2_19,1290_33282,0 2351,1290,floor,what does a baby crawl along?,eb-Zp4pJLKk_2_19,1290_33283,0 2352,1290,floor,what is a baby crawling across?,eb-Zp4pJLKk_2_19,1290_33284,0 2353,1290,floor,what is a baby crawling along?,eb-Zp4pJLKk_2_19,1290_33285,0 2354,1290,floor,what does a baby crawl on?,eb-Zp4pJLKk_2_19,1290_33286,0 2355,1290,floor,what does a smiling baby crawl on?,eb-Zp4pJLKk_2_19,1290_33287,0 2356,1290,floor,what is a baby crawling on?,eb-Zp4pJLKk_2_19,1290_33288,0 2357,1290,doorway,what does a baby happily crawl through?,eb-Zp4pJLKk_2_19,1290_33289,0 2358,1290,baby,who is smiling?,eb-Zp4pJLKk_2_19,1290_33290,0 2359,1290,baby,who is laughing?,eb-Zp4pJLKk_2_19,1290_33291,0 2360,1290,baby,who is crawling happily?,eb-Zp4pJLKk_2_19,1290_33292,0 2361,1290,baby,who is crawling?,eb-Zp4pJLKk_2_19,1290_33293,0 2362,1290,bay,what is crawling?,eb-Zp4pJLKk_2_19,1290_33294,0 2363,1290,smile,what is a doing?,eb-Zp4pJLKk_2_19,1290_33295,0 2364,1290,crawl,what is a baby doing?,eb-Zp4pJLKk_2_19,1290_33296,0 2365,1290,crawl,what is a bay doing?,eb-Zp4pJLKk_2_19,1290_33297,0 2366,1290,gurgle,what is a small baby doing?,eb-Zp4pJLKk_2_19,1290_33298,0 2367,1290,laugh,what is a baby doing?,eb-Zp4pJLKk_2_19,1290_33299,0 2368,1290,laugh,what is the baby doing?,eb-Zp4pJLKk_2_19,1290_33300,0 2369,1291,weight,who lifted a heavy set of weights?,ecVwxlXc1PQ_0_12,1291_33301,0 2370,1291,man,who is lifting heavy weights in competition?,ecVwxlXc1PQ_0_12,1291_33302,0 2371,1291,man,who is lifting a weight over his head?,ecVwxlXc1PQ_0_12,1291_33303,0 2372,1291,competition,what is the man lifting heavy weights in?,ecVwxlXc1PQ_0_12,1291_33304,0 2373,1291,weight,who lifted the weight over his head?,ecVwxlXc1PQ_0_12,1291_33305,0 2374,1291,weight,what did the weight lifter lift over his head?,ecVwxlXc1PQ_0_12,1291_33306,0 2375,1291,weightlifter,who is lifting a very heavy barbell?,ecVwxlXc1PQ_0_12,1291_33307,0 2376,1291,head,what did the weight lifter lift the weight over?,ecVwxlXc1PQ_0_12,1291_33308,0 2377,1291,weight,what is a man lifting over his head?,ecVwxlXc1PQ_0_12,1291_33309,0 2378,1291,bodybuilder,who lifts a barbel?,ecVwxlXc1PQ_0_12,1291_33310,0 2379,1291,man,who lifts a large barbell?,ecVwxlXc1PQ_0_12,1291_33311,0 2380,1291,man,who lifts a barbell?,ecVwxlXc1PQ_0_12,1291_33312,0 2381,1291,man,who is lifting heavy weights?,ecVwxlXc1PQ_0_12,1291_33313,0 2382,1291,man,who is lifting weights?,ecVwxlXc1PQ_0_12,1291_33314,0 2383,1291,man,who is lifting a barbell?,ecVwxlXc1PQ_0_12,1291_33315,0 2384,1291,head,what is a man lifting a weight over?,ecVwxlXc1PQ_0_12,1291_33316,0 2385,1291,man,who is lifting weight?,ecVwxlXc1PQ_0_12,1291_33317,0 2386,1291,man,who does a weight lifting act onto his shoulders and then on top of his head?,ecVwxlXc1PQ_0_12,1291_33318,0 2387,1291,barbel,what does a bodybuilder lift?,ecVwxlXc1PQ_0_12,1291_33319,0 2388,1291,barbell,what does a man lift?,ecVwxlXc1PQ_0_12,1291_33320,0 2389,1291,lifting,what does a man do act onto his shoulders and then on top of his head?,ecVwxlXc1PQ_0_12,1291_33321,0 2390,1291,lift,what is a man doing?,ecVwxlXc1PQ_0_12,1291_33322,0 2391,1291,lift,what is a weightlifter doing?,ecVwxlXc1PQ_0_12,1291_33323,0 2392,1291,lift,what is a man does a weight doing?,ecVwxlXc1PQ_0_12,1291_33324,0 2393,1291,lift,what is the man doing?,ecVwxlXc1PQ_0_12,1291_33325,0 2394,1292,rabit,who turned circles on the floor?,ecm9gf2Pgkc_1_24,1292_33326,0 2395,1292,floor,what did the rabit turn circles on?,ecm9gf2Pgkc_1_24,1292_33327,0 2396,1292,girl,who played with the white rabbit?,ecm9gf2Pgkc_1_24,1292_33328,0 2397,1292,girl,who is playing with a rabbit?,ecm9gf2Pgkc_1_24,1292_33329,0 2398,1292,woman,who is petting the rabbit?,ecm9gf2Pgkc_1_24,1292_33330,0 2399,1292,bunny,who is playing with a person?,ecm9gf2Pgkc_1_24,1292_33331,0 2400,1292,person,who is a bunny playing with?,ecm9gf2Pgkc_1_24,1292_33332,0 2401,1292,rabbit,what is a woman playing with?,ecm9gf2Pgkc_1_24,1292_33333,0 2402,1292,rabbit,what is a girl playing with?,ecm9gf2Pgkc_1_24,1292_33334,0 2403,1292,rabbit,what is the woman petting?,ecm9gf2Pgkc_1_24,1292_33335,0 2404,1292,rabbit,what is being petted?,ecm9gf2Pgkc_1_24,1292_33336,0 2405,1292,rabbit,what is being played with?,ecm9gf2Pgkc_1_24,1292_33337,0 2406,1292,animal,what sniffs around?,ecm9gf2Pgkc_1_24,1292_33338,0 2407,1292,animal,what plays?,ecm9gf2Pgkc_1_24,1292_33339,0 2408,1292,play,what is a bunny doing?,ecm9gf2Pgkc_1_24,1292_33340,0 2409,1292,play,what is a girl doing?,ecm9gf2Pgkc_1_24,1292_33341,0 2410,1292,play,what is a woman doing?,ecm9gf2Pgkc_1_24,1292_33342,0 2411,1292,talk,what is a woman doing?,ecm9gf2Pgkc_1_24,1292_33343,0 2412,1292,pet,what is the woman doing?,ecm9gf2Pgkc_1_24,1292_33344,0 2413,1293,man,who is dancing to music in a room?,edqyq4Q-7uU_103_109,1293_33345,0 2414,1293,man,who is dancing next to a lawn chair?,edqyq4Q-7uU_103_109,1293_33346,0 2415,1293,room,what is a man dancing to music in?,edqyq4Q-7uU_103_109,1293_33347,0 2416,1293,music,what is a man dancing to in a room?,edqyq4Q-7uU_103_109,1293_33348,0 2417,1293,man,who dances on a wooden floor?,edqyq4Q-7uU_103_109,1293_33349,0 2418,1293,man,who danced on the stage?,edqyq4Q-7uU_103_109,1293_33350,0 2419,1293,man,who is doing jazz dance?,edqyq4Q-7uU_103_109,1293_33351,0 2420,1293,stage,when did the man dance?,edqyq4Q-7uU_103_109,1293_33352,0 2421,1293,dance,what is a man doing?,edqyq4Q-7uU_103_109,1293_33353,0 2422,1293,man,who danced?,edqyq4Q-7uU_103_109,1293_33354,0 2423,1293,man,who is dancing?,edqyq4Q-7uU_103_109,1293_33355,0 2424,1293,dance,what is a man doing?,edqyq4Q-7uU_103_109,1293_33356,0 2425,1293,dance,what is the man doing?,edqyq4Q-7uU_103_109,1293_33357,0 2426,1294,person,who is slicing a carrot into small thin strips?,eiyuac7hA4A_4_47,1294_33358,0 2427,1294,someone,who is slicing a carrot into thin slices?,eiyuac7hA4A_4_47,1294_33359,0 2428,1294,person,who is slicing a carrot into pieces?,eiyuac7hA4A_4_47,1294_33360,0 2429,1294,carrot,what is a person slicing into small thin strips?,eiyuac7hA4A_4_47,1294_33361,0 2430,1294,carrot,what is someone slicing into thin slices?,eiyuac7hA4A_4_47,1294_33362,0 2431,1294,carrot,what is a person slicing into pieces?,eiyuac7hA4A_4_47,1294_33363,0 2432,1294,someone,who sliced a carrot?,eiyuac7hA4A_4_47,1294_33364,0 2433,1294,person,who sliced up a carrot?,eiyuac7hA4A_4_47,1294_33365,0 2434,1294,man,who is slicing carrots?,eiyuac7hA4A_4_47,1294_33366,0 2435,1294,individual,who slices a carrot?,eiyuac7hA4A_4_47,1294_33367,0 2436,1294,man,who is slicing a carrot?,eiyuac7hA4A_4_47,1294_33368,0 2437,1294,someone,who is cutting carrots?,eiyuac7hA4A_4_47,1294_33369,0 2438,1294,man,who is cutting some carrots?,eiyuac7hA4A_4_47,1294_33370,0 2439,1294,man,who cuts a carrot?,eiyuac7hA4A_4_47,1294_33371,0 2440,1294,carrot,what did someone slice?,eiyuac7hA4A_4_47,1294_33372,0 2441,1294,carrot,what did a person slice up?,eiyuac7hA4A_4_47,1294_33373,0 2442,1294,carrot,what does an individual slice?,eiyuac7hA4A_4_47,1294_33374,0 2443,1294,carrot,what is a man slicing?,eiyuac7hA4A_4_47,1294_33375,0 2444,1294,carrot,what does a man cut?,eiyuac7hA4A_4_47,1294_33376,0 2445,1294,carrot,what is being sliced?,eiyuac7hA4A_4_47,1294_33377,0 2446,1294,carrot,what is sliced up?,eiyuac7hA4A_4_47,1294_33378,0 2447,1294,slouse,what is someone doing?,eiyuac7hA4A_4_47,1294_33379,0 2448,1294,cut,what is a person doing?,eiyuac7hA4A_4_47,1294_33380,0 2449,1294,cut,what is a man doing?,eiyuac7hA4A_4_47,1294_33381,0 2450,1294,slouse,what is the person doing?,eiyuac7hA4A_4_47,1294_33382,0 2451,1295,man,who wrote in his journal at teh table?,ejgwQqCHN1E_7_12,1295_33383,0 2452,1295,man,who sits at a table?,ejgwQqCHN1E_7_12,1295_33384,0 2453,1295,man,who writes in a notebook?,ejgwQqCHN1E_7_12,1295_33385,0 2454,1295,man,who is writing in a notebook?,ejgwQqCHN1E_7_12,1295_33386,0 2455,1295,man,who is writing in a journal?,ejgwQqCHN1E_7_12,1295_33387,0 2456,1295,man,who is writing on a paper?,ejgwQqCHN1E_7_12,1295_33388,0 2457,1295,table,what does a man sit at?,ejgwQqCHN1E_7_12,1295_33389,0 2458,1295,man,who is writing in a book?,ejgwQqCHN1E_7_12,1295_33390,0 2459,1295,notebook,what does a man write in?,ejgwQqCHN1E_7_12,1295_33391,0 2460,1295,man,who writes something down?,ejgwQqCHN1E_7_12,1295_33392,0 2461,1295,man,who wrote in his diary?,ejgwQqCHN1E_7_12,1295_33393,0 2462,1295,man,who is writing a letter?,ejgwQqCHN1E_7_12,1295_33394,0 2463,1295,man,who is writing a note?,ejgwQqCHN1E_7_12,1295_33395,0 2464,1295,paper,what is a man writing on?,ejgwQqCHN1E_7_12,1295_33396,0 2465,1295,book,what is a man writing in?,ejgwQqCHN1E_7_12,1295_33397,0 2466,1295,something,what does a man write down?,ejgwQqCHN1E_7_12,1295_33398,0 2467,1295,letter,what is the man writing?,ejgwQqCHN1E_7_12,1295_33399,0 2468,1295,note,what is a man writing?,ejgwQqCHN1E_7_12,1295_33400,0 2469,1295,diary,what did the man write in?,ejgwQqCHN1E_7_12,1295_33401,0 2470,1295,man,who is writing?,ejgwQqCHN1E_7_12,1295_33402,0 2471,1295,write,what is a man doing?,ejgwQqCHN1E_7_12,1295_33403,0 2472,1295,sit,what is a man doing?,ejgwQqCHN1E_7_12,1295_33404,0 2473,1295,write,what is the man doing?,ejgwQqCHN1E_7_12,1295_33405,0 2474,1296,dog,what is eating a slice of watermelon someone is holding over a plate?,elQqQfux7Po_12_22,1296_33406,0 2475,1296,someone,who is a dog eating a slice of watermelon is holding over a plate?,elQqQfux7Po_12_22,1296_33407,0 2476,1296,plate,what is a dog eating a slice of watermelon someone is holding over?,elQqQfux7Po_12_22,1296_33408,0 2477,1296,watermelon,what is a dog eating a slice of someone is holding over a plate?,elQqQfux7Po_12_22,1296_33409,0 2478,1296,dog,what is eating a piece of watermelon?,elQqQfux7Po_12_22,1296_33410,0 2479,1296,watermelon,what is a dog eating a piece of?,elQqQfux7Po_12_22,1296_33411,0 2480,1296,dog,what ate some watermelon?,elQqQfux7Po_12_22,1296_33412,0 2481,1296,dog,what ate the watermelon?,elQqQfux7Po_12_22,1296_33413,0 2482,1296,dog,what is eating water melon?,elQqQfux7Po_12_22,1296_33414,0 2483,1296,dog,what is eating some water melon?,elQqQfux7Po_12_22,1296_33415,0 2484,1296,dog,what is eating watermelon?,elQqQfux7Po_12_22,1296_33416,0 2485,1296,dog,what is eating a watermelon?,elQqQfux7Po_12_22,1296_33417,0 2486,1296,dog,what eats watermelon?,elQqQfux7Po_12_22,1296_33418,0 2487,1296,watermelon,what did the dog eat?,elQqQfux7Po_12_22,1296_33419,0 2488,1296,watermelon,what does a dog eat?,elQqQfux7Po_12_22,1296_33420,0 2489,1296,watermelon,what is a dog eating?,elQqQfux7Po_12_22,1296_33421,0 2490,1296,watermelon,what is the dog eating?,elQqQfux7Po_12_22,1296_33422,0 2491,1296,eat,what is a dog doing?,elQqQfux7Po_12_22,1296_33423,0 2492,1296,eat,what is the dog doing?,elQqQfux7Po_12_22,1296_33424,0 2493,1297,boy,who is playing a piano and singing?,emblM4a76jg_5_15,1297_33425,0 2494,1297,boy,who played the piano?,emblM4a76jg_5_15,1297_33426,0 2495,1297,man,who plays a piano?,emblM4a76jg_5_15,1297_33427,0 2496,1297,piano,what is a young man playing?,emblM4a76jg_5_15,1297_33428,0 2497,1297,boy,who plays the piano?,emblM4a76jg_5_15,1297_33429,0 2498,1297,boy,who is playing a piano?,emblM4a76jg_5_15,1297_33430,0 2499,1297,boy,who is playing the piano?,emblM4a76jg_5_15,1297_33431,0 2500,1297,boy,who is playing piano and singing?,emblM4a76jg_5_15,1297_33432,0 2501,1297,someone,what is playing a piano?,emblM4a76jg_5_15,1297_33433,0 2502,1297,piano,what did the boy play?,emblM4a76jg_5_15,1297_33434,0 2503,1297,piano,what does a young man play?,emblM4a76jg_5_15,1297_33435,0 2504,1297,piano,what is someone playing?,emblM4a76jg_5_15,1297_33436,0 2505,1297,piano,what does a boy play?,emblM4a76jg_5_15,1297_33437,0 2506,1297,piano,what is a person playing?,emblM4a76jg_5_15,1297_33438,0 2507,1297,piano,what is the man playing?,emblM4a76jg_5_15,1297_33439,0 2508,1297,boy,who is singing?,emblM4a76jg_5_15,1297_33440,0 2509,1297,boy,who sat?,emblM4a76jg_5_15,1297_33441,0 2510,1297,play,what is a boy doing?,emblM4a76jg_5_15,1297_33442,0 2511,1297,play,what is a person doing?,emblM4a76jg_5_15,1297_33443,0 2512,1297,play,what is someone doing?,emblM4a76jg_5_15,1297_33444,0 2513,1297,play,what is the man doing?,emblM4a76jg_5_15,1297_33445,0 2514,1298,boy,who received a couple of shots on the arm?,eoP-SCgYM2w_49_60,1298_33446,0 2515,1298,nurse,who gave a shot to a little boy?,eoP-SCgYM2w_49_60,1298_33447,0 2516,1298,nurse,who gave the boy a shot in the arm?,eoP-SCgYM2w_49_60,1298_33448,0 2517,1298,boy,who does someone with gloved hands give two shots in the arm then wipes the area with gauze?,eoP-SCgYM2w_49_60,1298_33449,0 2518,1298,boy,who is getting a shot in the arm?,eoP-SCgYM2w_49_60,1298_33450,0 2519,1298,arm,what did the little boy receive a couple of shots on?,eoP-SCgYM2w_49_60,1298_33451,0 2520,1298,shot,what did the nurse give to a little boy?,eoP-SCgYM2w_49_60,1298_33452,0 2521,1298,boy,who is looking away while receiving a shot?,eoP-SCgYM2w_49_60,1298_33453,0 2522,1298,boy,who gets two vaccinations in the arm?,eoP-SCgYM2w_49_60,1298_33454,0 2523,1298,calmly,who receives a shot in his arm?,eoP-SCgYM2w_49_60,1298_33455,0 2524,1298,child,who is getting shots in his arm?,eoP-SCgYM2w_49_60,1298_33456,0 2525,1298,boy,who gets injections on his arm?,eoP-SCgYM2w_49_60,1298_33457,0 2526,1298,boy,who is receiving inoculations?,eoP-SCgYM2w_49_60,1298_33458,0 2527,1298,doctor,who gives a boy a shot?,eoP-SCgYM2w_49_60,1298_33459,0 2528,1298,boy,who is taking an injection?,eoP-SCgYM2w_49_60,1298_33460,0 2529,1298,boy,who is getting a shot?,eoP-SCgYM2w_49_60,1298_33461,0 2530,1298,arm,what is a child getting shots in?,eoP-SCgYM2w_49_60,1298_33462,0 2531,1298,shot,what is a boy getting?,eoP-SCgYM2w_49_60,1298_33463,0 2532,1298,injection,what is a boy taking?,eoP-SCgYM2w_49_60,1298_33464,0 2533,1298,look,what is a young boy doing?,eoP-SCgYM2w_49_60,1298_33465,0 2534,1298,receive,what is a boy doing?,eoP-SCgYM2w_49_60,1298_33466,0 2535,1299,person,who is sharpening a pencil with a hunting knife?,eroAmLZ85DI_28_35,1299_33467,0 2536,1299,man,who is sharpening a pencil with a large knife?,eroAmLZ85DI_28_35,1299_33468,0 2537,1299,man,who is sharpening a pencil with a knife?,eroAmLZ85DI_28_35,1299_33469,0 2538,1299,man,who used a large knife to whittle a pencil?,eroAmLZ85DI_28_35,1299_33470,0 2539,1299,man,who used a knife to sharpen the pencil?,eroAmLZ85DI_28_35,1299_33471,0 2540,1299,person,who sharpens a pencil with a knife?,eroAmLZ85DI_28_35,1299_33472,0 2541,1299,man,who sharpens a pencil using a knife?,eroAmLZ85DI_28_35,1299_33473,0 2542,1299,man,who used his knife to whittle a pencil?,eroAmLZ85DI_28_35,1299_33474,0 2543,1299,pencil,what is a person sharpening with a hunting knife?,eroAmLZ85DI_28_35,1299_33475,0 2544,1299,knife,what does a person sharpen a pencil with?,eroAmLZ85DI_28_35,1299_33476,0 2545,1299,pencil,what is a man sharpening with a large knife?,eroAmLZ85DI_28_35,1299_33477,0 2546,1299,knife,what is a person sharpening a pencil with?,eroAmLZ85DI_28_35,1299_33478,0 2547,1299,pencil,what does a person sharpen with a knife?,eroAmLZ85DI_28_35,1299_33479,0 2548,1299,pencil,what did the man use a large knife to whittle?,eroAmLZ85DI_28_35,1299_33480,0 2549,1299,pencil,what is a person sharpening with a knife?,eroAmLZ85DI_28_35,1299_33481,0 2550,1299,pencil,what is a man sharpening with a knife?,eroAmLZ85DI_28_35,1299_33482,0 2551,1299,knife,what did the man use to sharpen the pencil?,eroAmLZ85DI_28_35,1299_33483,0 2552,1299,pencil,what did the man use a knife to sharpen?,eroAmLZ85DI_28_35,1299_33484,0 2553,1299,knife,what is someone sharpening a pencil with?,eroAmLZ85DI_28_35,1299_33485,0 2554,1299,pencil,what is someone sharpening with a knife?,eroAmLZ85DI_28_35,1299_33486,0 2555,1299,pencil,what did the man use his knife to whittle?,eroAmLZ85DI_28_35,1299_33487,0 2556,1299,person,who cuts something with a knife?,eroAmLZ85DI_28_35,1299_33488,0 2557,1299,knife,what does someone sharpen a pencil with?,eroAmLZ85DI_28_35,1299_33489,0 2558,1299,something,what does a person cut with a knife?,eroAmLZ85DI_28_35,1299_33490,0 2559,1299,pencil,what does someone sharpen with a knife?,eroAmLZ85DI_28_35,1299_33491,0 2560,1299,someone,who is sharpening a pencil?,eroAmLZ85DI_28_35,1299_33492,0 2561,1299,knife,what did the man use to whittle a pencil?,eroAmLZ85DI_28_35,1299_33493,0 2562,1299,knife,what does a person cut something with?,eroAmLZ85DI_28_35,1299_33494,0 2563,1299,person,who is cutting a wire?,eroAmLZ85DI_28_35,1299_33495,0 2564,1299,pencil,what is someone sharpening?,eroAmLZ85DI_28_35,1299_33496,0 2565,1299,wire,what is a person cutting?,eroAmLZ85DI_28_35,1299_33497,0 2566,1299,cut,what is a person doing?,eroAmLZ85DI_28_35,1299_33498,0 2567,1299,use,what is a man sharpens a pencil doing?,eroAmLZ85DI_28_35,1299_33499,0 2568,1300,kitten,what is exploring some kind of circular device that is sitting on the floor?,eyMYc-37Sk4_0_10,1300_33500,0 2569,1300,kitten,what tried to get at the ball inside a toy?,eyMYc-37Sk4_0_10,1300_33501,0 2570,1300,kitten,what is playing on top of a cat toy?,eyMYc-37Sk4_0_10,1300_33502,0 2571,1300,kitten,what tries to reach inside a plastic toy?,eyMYc-37Sk4_0_10,1300_33503,0 2572,1300,ball,what did the cat try to get out of the contraption?,eyMYc-37Sk4_0_10,1300_33504,0 2573,1300,kitten,what is playing with a cat toy?,eyMYc-37Sk4_0_10,1300_33505,0 2574,1300,kitten,what is trying to get a ball?,eyMYc-37Sk4_0_10,1300_33506,0 2575,1300,kitten,what is playing with an object?,eyMYc-37Sk4_0_10,1300_33507,0 2576,1300,kitten,what plays with a toy?,eyMYc-37Sk4_0_10,1300_33508,0 2577,1300,kitten,what is searching for a ball?,eyMYc-37Sk4_0_10,1300_33509,0 2578,1300,kitten,what is playing with a toy?,eyMYc-37Sk4_0_10,1300_33510,0 2579,1300,cat,what is playing on the floor?,eyMYc-37Sk4_0_10,1300_33511,0 2580,1300,cat,what is getting in a toy?,eyMYc-37Sk4_0_10,1300_33512,0 2581,1300,cat,what tries to get a ball?,eyMYc-37Sk4_0_10,1300_33513,0 2582,1300,ball,what is a kitten searching for?,eyMYc-37Sk4_0_10,1300_33514,0 2583,1300,toy,what does a kitten play with?,eyMYc-37Sk4_0_10,1300_33515,0 2584,1300,object,what is a kitten playing with?,eyMYc-37Sk4_0_10,1300_33516,0 2585,1300,floor,what is a cat playing on?,eyMYc-37Sk4_0_10,1300_33517,0 2586,1300,toy,what is a cat playing with?,eyMYc-37Sk4_0_10,1300_33518,0 2587,1300,toy,what is a cat getting in?,eyMYc-37Sk4_0_10,1300_33519,0 2588,1300,ball,what does a cat try to get?,eyMYc-37Sk4_0_10,1300_33520,0 2589,1300,cat,what is playing?,eyMYc-37Sk4_0_10,1300_33521,0 2590,1300,play,what is the cat doing?,eyMYc-37Sk4_0_10,1300_33522,0 2591,1300,try,what is a kitten doing?,eyMYc-37Sk4_0_10,1300_33523,0 2592,1300,explore,what is a kitten doing?,eyMYc-37Sk4_0_10,1300_33524,0 2593,1300,try,what is a white kitten seated on top of a hollow double disc fitted together doing?,eyMYc-37Sk4_0_10,1300_33525,0 2594,1300,search,what is a kitten doing?,eyMYc-37Sk4_0_10,1300_33526,0 2595,1302,man,who is riding a bike across the waves by the beachside?,f-24IxG9ijw_25_40,1302_33527,0 2596,1302,man,who rides a motocross bike on the beach?,f-24IxG9ijw_25_40,1302_33528,0 2597,1302,person,who is driving a motorcycle through waves on the shore?,f-24IxG9ijw_25_40,1302_33529,0 2598,1302,motorcycle,what rode through the waves on the shore?,f-24IxG9ijw_25_40,1302_33530,0 2599,1302,man,who is riding a motor bike in beach?,f-24IxG9ijw_25_40,1302_33531,0 2600,1302,man,who rode his motorcycle through the water at the shore?,f-24IxG9ijw_25_40,1302_33532,0 2601,1302,man,who is riding a motorcycle in the water at the edge of a beach?,f-24IxG9ijw_25_40,1302_33533,0 2602,1302,someone,who is riding a motorcycle on a beach?,f-24IxG9ijw_25_40,1302_33534,0 2603,1302,man,who rides a motorcycle on a beach?,f-24IxG9ijw_25_40,1302_33535,0 2604,1302,someone,who is riding a motorcycle on the beach?,f-24IxG9ijw_25_40,1302_33536,0 2605,1302,man,who is riding the motorcycle on the beach?,f-24IxG9ijw_25_40,1302_33537,0 2606,1302,beach,what a man rides a motocross bike on?,f-24IxG9ijw_25_40,1302_33538,0 2607,1302,bike,what is a man riding across the waves by the beachside?,f-24IxG9ijw_25_40,1302_33539,0 2608,1302,beachside,what is a man riding a bike across the waves by?,f-24IxG9ijw_25_40,1302_33540,0 2609,1302,man,who rides a bike through the beach?,f-24IxG9ijw_25_40,1302_33541,0 2610,1302,shore,what did the motorcycle ride through the waves on?,f-24IxG9ijw_25_40,1302_33542,0 2611,1302,shore,what is a person driving a motorcycle through waves on?,f-24IxG9ijw_25_40,1302_33543,0 2612,1302,motorcycle,what is a person driving through waves on the shore?,f-24IxG9ijw_25_40,1302_33544,0 2613,1302,man,who is riding his motorcycle in the ocean?,f-24IxG9ijw_25_40,1302_33545,0 2614,1302,beach,what is a man riding a motor bike in?,f-24IxG9ijw_25_40,1302_33546,0 2615,1302,water,what did a man ride his motorcycle through at the shore?,f-24IxG9ijw_25_40,1302_33547,0 2616,1302,beach,what is the man riding the motorcycle on?,f-24IxG9ijw_25_40,1302_33548,0 2617,1302,shore,what did a man ride his motorcycle through the water at?,f-24IxG9ijw_25_40,1302_33549,0 2618,1302,beach,what a man rides a bike through?,f-24IxG9ijw_25_40,1302_33550,0 2619,1302,motorcycle,what is the man riding on the beach?,f-24IxG9ijw_25_40,1302_33551,0 2620,1302,bike,what a man rides through the beach?,f-24IxG9ijw_25_40,1302_33552,0 2621,1302,beach,what is someone riding a motorcycle on?,f-24IxG9ijw_25_40,1302_33553,0 2622,1302,motocros,what a man rides on the beach?,f-24IxG9ijw_25_40,1302_33554,0 2623,1302,motorcycle,what is someone riding on a beach?,f-24IxG9ijw_25_40,1302_33555,0 2624,1302,motorcycle,what is someone riding on the beach?,f-24IxG9ijw_25_40,1302_33556,0 2625,1302,ocean,what is a man riding his motorcycle in?,f-24IxG9ijw_25_40,1302_33557,0 2626,1302,motor,what is a man riding in beach?,f-24IxG9ijw_25_40,1302_33558,0 2627,1302,motorcycle,what did a man ride through the water at the shore?,f-24IxG9ijw_25_40,1302_33559,0 2628,1302,motorcycle,what runs through the beach surf?,f-24IxG9ijw_25_40,1302_33560,0 2629,1302,motorcycle,what is a man riding in the ocean?,f-24IxG9ijw_25_40,1302_33561,0 2630,1302,man,who is riding a motorcycle?,f-24IxG9ijw_25_40,1302_33562,0 2631,1302,motorcycle,what is a man riding?,f-24IxG9ijw_25_40,1302_33563,0 2632,1302,drive,what is a person doing?,f-24IxG9ijw_25_40,1302_33564,0 2633,1303,cat,what is licking its paw while lying on the floor?,f9Won2JpOEU_60_80,1303_33565,0 2634,1303,cat,what is cleaning itself by licking a paw?,f9Won2JpOEU_60_80,1303_33566,0 2635,1303,paw,what is a cat licking while lying on the floor?,f9Won2JpOEU_60_80,1303_33567,0 2636,1303,cat,what is licking its paw?,f9Won2JpOEU_60_80,1303_33568,0 2637,1303,cat,what is cleaning its paw?,f9Won2JpOEU_60_80,1303_33569,0 2638,1303,cat,what is licking its leg?,f9Won2JpOEU_60_80,1303_33570,0 2639,1303,cat,what cleans its paw and head?,f9Won2JpOEU_60_80,1303_33571,0 2640,1303,cat,what is licking its hands?,f9Won2JpOEU_60_80,1303_33572,0 2641,1303,cat,what is licking itself?,f9Won2JpOEU_60_80,1303_33573,0 2642,1303,cat,what is washing its face?,f9Won2JpOEU_60_80,1303_33574,0 2643,1303,cat,what is cleaning its face?,f9Won2JpOEU_60_80,1303_33575,0 2644,1303,cat,what is cleaning itself?,f9Won2JpOEU_60_80,1303_33576,0 2645,1303,face,what is a cat washing?,f9Won2JpOEU_60_80,1303_33577,0 2646,1303,face,what is a cat cleaning?,f9Won2JpOEU_60_80,1303_33578,0 2647,1303,lay,what is a cat doing?,f9Won2JpOEU_60_80,1303_33579,0 2648,1303,clean,what is a cat doing?,f9Won2JpOEU_60_80,1303_33580,0 2649,1303,lick,what is a cat doing?,f9Won2JpOEU_60_80,1303_33581,0 2650,1303,wash,what is a cat doing?,f9Won2JpOEU_60_80,1303_33582,0 2651,1303,swipe,what is a cat lays on the floor doing?,f9Won2JpOEU_60_80,1303_33583,0 2652,1303,lie,what is a grey cat doing?,f9Won2JpOEU_60_80,1303_33584,0 2653,1303,clean,what is a large cat doing?,f9Won2JpOEU_60_80,1303_33585,0 2654,1303,clean,what is the cat doing?,f9Won2JpOEU_60_80,1303_33586,0 2655,1304,man,who is giving his opinion amongst a gathering of people?,f9_bP219ehQ_63_70,1304_33587,0 2656,1304,man,who is speaking to a crowd of people?,f9_bP219ehQ_63_70,1304_33588,0 2657,1304,opinion,what is an elderly man giving amongst a gathering of people?,f9_bP219ehQ_63_70,1304_33589,0 2658,1304,man,who spoke at a rally?,f9_bP219ehQ_63_70,1304_33590,0 2659,1304,man,who speaks into a microphone?,f9_bP219ehQ_63_70,1304_33591,0 2660,1304,man,who talks into a microphone?,f9_bP219ehQ_63_70,1304_33592,0 2661,1304,man,who is speaking into a microphone?,f9_bP219ehQ_63_70,1304_33593,0 2662,1304,man,who is talking into a microphone?,f9_bP219ehQ_63_70,1304_33594,0 2663,1304,man,who is speaking to an audience?,f9_bP219ehQ_63_70,1304_33595,0 2664,1304,microphone,what does an older man speak into?,f9_bP219ehQ_63_70,1304_33596,0 2665,1304,rally,what did the man speak at?,f9_bP219ehQ_63_70,1304_33597,0 2666,1304,microphone,what does a man talk into?,f9_bP219ehQ_63_70,1304_33598,0 2667,1304,microphone,what is a man speaking into?,f9_bP219ehQ_63_70,1304_33599,0 2668,1304,microphone,what is a man talking into?,f9_bP219ehQ_63_70,1304_33600,0 2669,1304,audience,what is the man speaking to?,f9_bP219ehQ_63_70,1304_33601,0 2670,1304,man,who talks?,f9_bP219ehQ_63_70,1304_33602,0 2671,1304,man,who is speaking?,f9_bP219ehQ_63_70,1304_33603,0 2672,1304,man,who is talking?,f9_bP219ehQ_63_70,1304_33604,0 2673,1304,speak,what is a man doing?,f9_bP219ehQ_63_70,1304_33605,0 2674,1304,talk,what is a man doing?,f9_bP219ehQ_63_70,1304_33606,0 2675,1304,speak,what is the man doing?,f9_bP219ehQ_63_70,1304_33607,0 2676,1305,cat,what pounces from the kitchen table to the floor?,fBA_lxUiwSg_2_4,1305_33608,0 2677,1305,cat,what tried to jump to the railing from the table?,fBA_lxUiwSg_2_4,1305_33609,0 2678,1305,table,what did the cat try to jump to the railing from?,fBA_lxUiwSg_2_4,1305_33610,0 2679,1305,floor,what does a cat pounce from the kitchen table to?,fBA_lxUiwSg_2_4,1305_33611,0 2680,1305,railing,what did the cat try to jump to from the table?,fBA_lxUiwSg_2_4,1305_33612,0 2681,1305,kitten,what jumped from from the dining table?,fBA_lxUiwSg_2_4,1305_33613,0 2682,1305,kitten,what is failing to jump off a table?,fBA_lxUiwSg_2_4,1305_33614,0 2683,1305,table,what does a kitten try to jump from?,fBA_lxUiwSg_2_4,1305_33615,0 2684,1305,kitten,what tries to jump from table?,fBA_lxUiwSg_2_4,1305_33616,0 2685,1305,cat,what jumped off the railing?,fBA_lxUiwSg_2_4,1305_33617,0 2686,1305,kitten,what jumps off a table?,fBA_lxUiwSg_2_4,1305_33618,0 2687,1305,cat,what fell from the table?,fBA_lxUiwSg_2_4,1305_33619,0 2688,1305,cat,what jumps from a table?,fBA_lxUiwSg_2_4,1305_33620,0 2689,1305,kitten,what is jumping from table?,fBA_lxUiwSg_2_4,1305_33621,0 2690,1305,railing,what did the cat jump off?,fBA_lxUiwSg_2_4,1305_33622,0 2691,1305,table,what does a kitten jump off?,fBA_lxUiwSg_2_4,1305_33623,0 2692,1305,cat,what is jumping on the table?,fBA_lxUiwSg_2_4,1305_33624,0 2693,1305,table,what did the cat fall from?,fBA_lxUiwSg_2_4,1305_33625,0 2694,1305,kitten,what is jumping off a table?,fBA_lxUiwSg_2_4,1305_33626,0 2695,1305,table,what is a kitten jumping from?,fBA_lxUiwSg_2_4,1305_33627,0 2696,1305,table,what does a cat jump from?,fBA_lxUiwSg_2_4,1305_33628,0 2697,1305,table,what is a cat jumping on?,fBA_lxUiwSg_2_4,1305_33629,0 2698,1305,table,what is a kitten jumping off?,fBA_lxUiwSg_2_4,1305_33630,0 2699,1305,kitten,what falls down?,fBA_lxUiwSg_2_4,1305_33631,0 2700,1305,jump,what is a cat doing?,fBA_lxUiwSg_2_4,1305_33632,0 2701,1305,fail,what is a kitten doing?,fBA_lxUiwSg_2_4,1305_33633,0 2702,1305,stand,what is a light brown kitten doing?,fBA_lxUiwSg_2_4,1305_33634,0 2703,1305,jump,what is kitten doing?,fBA_lxUiwSg_2_4,1305_33635,0 2704,1306,man,who is clamping the blade of a knife in a vise?,fEsrO_poIUg_161_168,1306_33636,0 2705,1306,man,who put a steel rod in a clench?,fEsrO_poIUg_161_168,1306_33637,0 2706,1306,man,who is clamping a knife into a vise?,fEsrO_poIUg_161_168,1306_33638,0 2707,1306,man,who is putting a hunting knife in a vise?,fEsrO_poIUg_161_168,1306_33639,0 2708,1306,man,who is putting a knife into a vice?,fEsrO_poIUg_161_168,1306_33640,0 2709,1306,knife,what is a man clamping the blade of in a vise?,fEsrO_poIUg_161_168,1306_33641,0 2710,1306,man,who is putting a knife to a machine?,fEsrO_poIUg_161_168,1306_33642,0 2711,1306,man,who is putting a knife in a vice?,fEsrO_poIUg_161_168,1306_33643,0 2712,1306,vise,what is a man clamping the blade of a knife in?,fEsrO_poIUg_161_168,1306_33644,0 2713,1306,man,who put the knife in the clamp?,fEsrO_poIUg_161_168,1306_33645,0 2714,1306,man,who puts a knife into a vice?,fEsrO_poIUg_161_168,1306_33646,0 2715,1306,knife,what is a man clamping into a vise?,fEsrO_poIUg_161_168,1306_33647,0 2716,1306,clench,what did the man put a steel rod in?,fEsrO_poIUg_161_168,1306_33648,0 2717,1306,vise,what is a man clamping a knife into?,fEsrO_poIUg_161_168,1306_33649,0 2718,1306,steel,what did the man put in a clench?,fEsrO_poIUg_161_168,1306_33650,0 2719,1306,man,who puts a knife in a vice?,fEsrO_poIUg_161_168,1306_33651,0 2720,1306,knife,what did the man put in the clamp?,fEsrO_poIUg_161_168,1306_33652,0 2721,1306,vise,what is a man putting a hunting knife in?,fEsrO_poIUg_161_168,1306_33653,0 2722,1306,clamp,what did the man put the knife in?,fEsrO_poIUg_161_168,1306_33654,0 2723,1306,man,who trys to break a knife blade?,fEsrO_poIUg_161_168,1306_33655,0 2724,1306,hunting,what is a man putting in a vise?,fEsrO_poIUg_161_168,1306_33656,0 2725,1306,vice,what does a man put a knife into?,fEsrO_poIUg_161_168,1306_33657,0 2726,1306,vice,what is a man putting a knife into?,fEsrO_poIUg_161_168,1306_33658,0 2727,1306,knife,what does a man put into a vice?,fEsrO_poIUg_161_168,1306_33659,0 2728,1306,knife,what is a man putting into a vice?,fEsrO_poIUg_161_168,1306_33660,0 2729,1306,machine,what is a man putting a knife to?,fEsrO_poIUg_161_168,1306_33661,0 2730,1306,vice,what does a man put a knife in?,fEsrO_poIUg_161_168,1306_33662,0 2731,1306,vice,what is a man putting a knife in?,fEsrO_poIUg_161_168,1306_33663,0 2732,1306,knife,what is a man putting to a machine?,fEsrO_poIUg_161_168,1306_33664,0 2733,1306,knife,what does a man put in a vice?,fEsrO_poIUg_161_168,1306_33665,0 2734,1306,knife,what is a man putting in a vice?,fEsrO_poIUg_161_168,1306_33666,0 2735,1306,man,who clamped the knife?,fEsrO_poIUg_161_168,1306_33667,0 2736,1306,man,who shappens a knife?,fEsrO_poIUg_161_168,1306_33668,0 2737,1306,knife,what does a man try to break?,fEsrO_poIUg_161_168,1306_33669,0 2738,1306,knife,what did the man clamp?,fEsrO_poIUg_161_168,1306_33670,0 2739,1306,knife,what does a man shappens?,fEsrO_poIUg_161_168,1306_33671,0 2740,1306,clamp,what is a man doing?,fEsrO_poIUg_161_168,1306_33672,0 2741,1306,put,what is a man doing?,fEsrO_poIUg_161_168,1306_33673,0 2742,1307,face,what is a young woman putting stickers on?,fF89MasBFLw_321_326,1307_33674,0 2743,1307,head,what does a woman put a sticker on?,fF89MasBFLw_321_326,1307_33675,0 2744,1307,face,what is a girl putting stickers onto?,fF89MasBFLw_321_326,1307_33676,0 2745,1307,girl,who is sticking stickers?,fF89MasBFLw_321_326,1307_33677,0 2746,1307,face,what is a woman applying stickers to?,fF89MasBFLw_321_326,1307_33678,0 2747,1307,face,what is a woman putting stickers on?,fF89MasBFLw_321_326,1307_33679,0 2748,1307,face,what is a girl putting stickers on?,fF89MasBFLw_321_326,1307_33680,0 2749,1307,face,what is the girl putting stickers on?,fF89MasBFLw_321_326,1307_33681,0 2750,1307,face,what did the girl apply stickers to?,fF89MasBFLw_321_326,1307_33682,0 2751,1307,face,what is already covered with many stickers?,fF89MasBFLw_321_326,1307_33683,0 2752,1307,face,what is a woman tattooing?,fF89MasBFLw_321_326,1307_33684,0 2753,1307,put,what is a young woman doing?,fF89MasBFLw_321_326,1307_33685,0 2754,1307,stick,what is a girl doing?,fF89MasBFLw_321_326,1307_33686,0 2755,1307,tattoo,what is a woman doing?,fF89MasBFLw_321_326,1307_33687,0 2756,1307,put,what is the girl doing?,fF89MasBFLw_321_326,1307_33688,0 2757,1308,three,how many shirtless men are dancing in the street?,fGc6_D0JEIQ_31_46,1308_33689,0 2758,1308,three,how many men are doing same dance in the street?,fGc6_D0JEIQ_31_46,1308_33690,0 2759,1308,three,how many boys danced in the sand with their beach towels on?,fGc6_D0JEIQ_31_46,1308_33691,0 2760,1308,three,how many men are dancing in beach towels?,fGc6_D0JEIQ_31_46,1308_33692,0 2761,1308,street,what are three men doing same dance in?,fGc6_D0JEIQ_31_46,1308_33693,0 2762,1308,three,how many guys dance in the street?,fGc6_D0JEIQ_31_46,1308_33694,0 2763,1308,dance,what are three men doing in the street?,fGc6_D0JEIQ_31_46,1308_33695,0 2764,1308,three,how many people dance in towels?,fGc6_D0JEIQ_31_46,1308_33696,0 2765,1308,sand,what did the three boys dance in with their beach towels on?,fGc6_D0JEIQ_31_46,1308_33697,0 2766,1308,shirtles,who are dancing in the street?,fGc6_D0JEIQ_31_46,1308_33698,0 2767,1308,street,what are three shirtless men dancing in?,fGc6_D0JEIQ_31_46,1308_33699,0 2768,1308,three,how many guys are dancing?,fGc6_D0JEIQ_31_46,1308_33700,0 2769,1308,three,how many men are dancing?,fGc6_D0JEIQ_31_46,1308_33701,0 2770,1308,towel,what are men dancing on?,fGc6_D0JEIQ_31_46,1308_33702,0 2771,1308,street,what do three guys dance in?,fGc6_D0JEIQ_31_46,1308_33703,0 2772,1308,beach,what are three men dancing in?,fGc6_D0JEIQ_31_46,1308_33704,0 2773,1308,dance,what are three men doing?,fGc6_D0JEIQ_31_46,1308_33705,0 2774,1308,dance,what are three men wrapped in towels doing?,fGc6_D0JEIQ_31_46,1308_33706,0 2775,1308,dance,what are men doing?,fGc6_D0JEIQ_31_46,1308_33707,0 2776,1308,dance,what are three men in towels doing?,fGc6_D0JEIQ_31_46,1308_33708,0 2777,1308,dance,what are three guys doing?,fGc6_D0JEIQ_31_46,1308_33709,0 2778,1308,dance,what are three shirtless men doing?,fGc6_D0JEIQ_31_46,1308_33710,0 2779,1308,dance,what are the boys doing?,fGc6_D0JEIQ_31_46,1308_33711,0 2780,1309,bruce,who is drying milla jovovich with a towel in a scene of the movie the fifth element?,fHfpMUDrQCs_17_31,1309_33712,0 2781,1309,jovovich,who is bruce willis drying with a towel in a scene of the movie the fifth element?,fHfpMUDrQCs_17_31,1309_33713,0 2782,1309,man,who rubs a wet woman with a towel?,fHfpMUDrQCs_17_31,1309_33714,0 2783,1309,man,who is drying off a woman with a towel?,fHfpMUDrQCs_17_31,1309_33715,0 2784,1309,man,who is drying a girl off with a towel?,fHfpMUDrQCs_17_31,1309_33716,0 2785,1309,man,who is warming a woman up with a towel?,fHfpMUDrQCs_17_31,1309_33717,0 2786,1309,man,who is drying a woman with a towel?,fHfpMUDrQCs_17_31,1309_33718,0 2787,1309,man,who is drying the woman with a towel?,fHfpMUDrQCs_17_31,1309_33719,0 2788,1309,man,who rubbed the woman with a towel?,fHfpMUDrQCs_17_31,1309_33720,0 2789,1309,woman,who did the man rub with a towel?,fHfpMUDrQCs_17_31,1309_33721,0 2790,1309,woman,who is bruce willis drying off?,fHfpMUDrQCs_17_31,1309_33722,0 2791,1309,woman,who is a man drying off with a towel?,fHfpMUDrQCs_17_31,1309_33723,0 2792,1309,woman,who is a man drying with a towel?,fHfpMUDrQCs_17_31,1309_33724,0 2793,1309,woman,who is the man drying with a towel?,fHfpMUDrQCs_17_31,1309_33725,0 2794,1309,towel,what did the man rub the woman with?,fHfpMUDrQCs_17_31,1309_33726,0 2795,1309,towel,what is a man drying off a woman with?,fHfpMUDrQCs_17_31,1309_33727,0 2796,1309,towel,what is a man drying a woman with?,fHfpMUDrQCs_17_31,1309_33728,0 2797,1309,towel,what is the man drying the woman with?,fHfpMUDrQCs_17_31,1309_33729,0 2798,1309,bruce,who is drying off a woman?,fHfpMUDrQCs_17_31,1309_33730,0 2799,1309,man,who is toweling off a woman?,fHfpMUDrQCs_17_31,1309_33731,0 2800,1309,man,who drys off a woman?,fHfpMUDrQCs_17_31,1309_33732,0 2801,1309,man,who dries off a woman?,fHfpMUDrQCs_17_31,1309_33733,0 2802,1309,man,who is wiping water?,fHfpMUDrQCs_17_31,1309_33734,0 2803,1309,woman,who is a man toweling off?,fHfpMUDrQCs_17_31,1309_33735,0 2804,1309,woman,who is a man drying off?,fHfpMUDrQCs_17_31,1309_33736,0 2805,1309,woman,who does a man dry off?,fHfpMUDrQCs_17_31,1309_33737,0 2806,1309,water,what is a man wiping?,fHfpMUDrQCs_17_31,1309_33738,0 2807,1309,dry,what is bruce willis doing?,fHfpMUDrQCs_17_31,1309_33739,0 2808,1309,stand,what are a man and woman doing?,fHfpMUDrQCs_17_31,1309_33740,0 2809,1309,dry,what is a man doing?,fHfpMUDrQCs_17_31,1309_33741,0 2810,1309,rub,what is a man doing?,fHfpMUDrQCs_17_31,1309_33742,0 2811,1309,towel,what is a man doing?,fHfpMUDrQCs_17_31,1309_33743,0 2812,1309,warm,what is a man doing?,fHfpMUDrQCs_17_31,1309_33744,0 2813,1309,dry,what is the man doing?,fHfpMUDrQCs_17_31,1309_33745,0 2814,1310,woman,who is putting on blue eye shadow?,fIaLVw_Gc_w_99_109,1310_33746,0 2815,1310,eyelid,what is a woman applying green eyeshadow on?,fIaLVw_Gc_w_99_109,1310_33747,0 2816,1310,woman,who is applying eye liner?,fIaLVw_Gc_w_99_109,1310_33748,0 2817,1310,woman,who is putting on eyeshadow?,fIaLVw_Gc_w_99_109,1310_33749,0 2818,1310,woman,who is applying eye makeup?,fIaLVw_Gc_w_99_109,1310_33750,0 2819,1310,woman,who is doing a eye makeup?,fIaLVw_Gc_w_99_109,1310_33751,0 2820,1310,eyeshadow,what is a woman putting on?,fIaLVw_Gc_w_99_109,1310_33752,0 2821,1310,liner,what is a woman applying?,fIaLVw_Gc_w_99_109,1310_33753,0 2822,1310,makeup,what is the girl applying?,fIaLVw_Gc_w_99_109,1310_33754,0 2823,1310,makeup,what is a woman doing?,fIaLVw_Gc_w_99_109,1310_33755,0 2824,1310,dab,what is a woman doing?,fIaLVw_Gc_w_99_109,1310_33756,0 2825,1310,put,what is a woman doing?,fIaLVw_Gc_w_99_109,1310_33757,0 2826,1310,put,what is the woman doing?,fIaLVw_Gc_w_99_109,1310_33758,0 2827,1311,turtle,what is biting at the head of a cat?,fJr2evLANsE_0_10,1311_33759,0 2828,1311,turtle,what is trying to play with a cat?,fJr2evLANsE_0_10,1311_33760,0 2829,1311,turtle,what shows interest in a cat?,fJr2evLANsE_0_10,1311_33761,0 2830,1311,cat,what is playing a turtle?,fJr2evLANsE_0_10,1311_33762,0 2831,1311,turtle,what is nipping at a cat?,fJr2evLANsE_0_10,1311_33763,0 2832,1311,turtle,what is a cat playing?,fJr2evLANsE_0_10,1311_33764,0 2833,1311,cat,what is playing with a turtle?,fJr2evLANsE_0_10,1311_33765,0 2834,1311,turtle,what tried to bite the cat?,fJr2evLANsE_0_10,1311_33766,0 2835,1311,cat,what is a turtle nipping at?,fJr2evLANsE_0_10,1311_33767,0 2836,1311,turtle,what plays with a cat?,fJr2evLANsE_0_10,1311_33768,0 2837,1311,turtle,what is inspecting a cat?,fJr2evLANsE_0_10,1311_33769,0 2838,1311,turtle,what is playing with a cat?,fJr2evLANsE_0_10,1311_33770,0 2839,1311,turtle,what is sniffing a cat?,fJr2evLANsE_0_10,1311_33771,0 2840,1311,turtle,what is playing with the cat?,fJr2evLANsE_0_10,1311_33772,0 2841,1311,turtle,what is kissing a cat?,fJr2evLANsE_0_10,1311_33773,0 2842,1311,cat,what did the turtle try to bite?,fJr2evLANsE_0_10,1311_33774,0 2843,1311,turtle,what is touching a cat?,fJr2evLANsE_0_10,1311_33775,0 2844,1311,cat,what is a small turtle inspecting?,fJr2evLANsE_0_10,1311_33776,0 2845,1311,cat,what does a turtle play with?,fJr2evLANsE_0_10,1311_33777,0 2846,1311,cat,what is a turtle playing with?,fJr2evLANsE_0_10,1311_33778,0 2847,1311,cat,what is the turtle playing with?,fJr2evLANsE_0_10,1311_33779,0 2848,1311,cat,what is a turtle sniffing?,fJr2evLANsE_0_10,1311_33780,0 2849,1311,cat,what is a turtle inspecting?,fJr2evLANsE_0_10,1311_33781,0 2850,1311,turtle,what is a cat playing with?,fJr2evLANsE_0_10,1311_33782,0 2851,1311,cat,what is a turtle kissing?,fJr2evLANsE_0_10,1311_33783,0 2852,1311,cat,what is a turtle touching?,fJr2evLANsE_0_10,1311_33784,0 2853,1311,cat,what is playing?,fJr2evLANsE_0_10,1311_33785,0 2854,1311,play,what is a cat doing?,fJr2evLANsE_0_10,1311_33786,0 2855,1311,inspect,what is a small turtle doing?,fJr2evLANsE_0_10,1311_33787,0 2856,1311,bite,what is a turtle doing?,fJr2evLANsE_0_10,1311_33788,0 2857,1311,kis,what is a turtle doing?,fJr2evLANsE_0_10,1311_33789,0 2858,1311,nip,what is a turtle doing?,fJr2evLANsE_0_10,1311_33790,0 2859,1311,sniff,what is a turtle doing?,fJr2evLANsE_0_10,1311_33791,0 2860,1311,touch,what is a turtle doing?,fJr2evLANsE_0_10,1311_33792,0 2861,1311,try,what is a turtle doing?,fJr2evLANsE_0_10,1311_33793,0 2862,1311,play,what is the turtle doing?,fJr2evLANsE_0_10,1311_33794,0 2863,1312,stage,when are a woman and a man playing a drama?,fKqBnl8D1Qo_5_44,1312_33795,0 2864,1312,stage,when are two people in costume performing?,fKqBnl8D1Qo_5_44,1312_33796,0 2865,1312,two,how many people are acting on a stage?,fKqBnl8D1Qo_5_44,1312_33797,0 2866,1312,drama,what are a woman and a man playing on a stage?,fKqBnl8D1Qo_5_44,1312_33798,0 2867,1312,two,how many people are putting on a play?,fKqBnl8D1Qo_5_44,1312_33799,0 2868,1312,actor,who danced before te king?,fKqBnl8D1Qo_5_44,1312_33800,0 2869,1312,kadhakali,who are artists performing?,fKqBnl8D1Qo_5_44,1312_33801,0 2870,1312,three,how many people perform a ritual?,fKqBnl8D1Qo_5_44,1312_33802,0 2871,1312,dancer,who performed for the king?,fKqBnl8D1Qo_5_44,1312_33803,0 2872,1312,king,who did the dancer perform for?,fKqBnl8D1Qo_5_44,1312_33804,0 2873,1312,dance,what are a woman and man performing?,fKqBnl8D1Qo_5_44,1312_33805,0 2874,1312,stage,when are people performing?,fKqBnl8D1Qo_5_44,1312_33806,0 2875,1312,stage,when are two people acting?,fKqBnl8D1Qo_5_44,1312_33807,0 2876,1312,hand,what do people dance using?,fKqBnl8D1Qo_5_44,1312_33808,0 2877,1312,play,what are two people putting on?,fKqBnl8D1Qo_5_44,1312_33809,0 2878,1312,woman,who is dancing?,fKqBnl8D1Qo_5_44,1312_33810,0 2879,1312,put,what are two people doing?,fKqBnl8D1Qo_5_44,1312_33811,0 2880,1312,dance,what are a woman and another person in elaborate costumes doing?,fKqBnl8D1Qo_5_44,1312_33812,0 2881,1312,dance,what is a woman doing?,fKqBnl8D1Qo_5_44,1312_33813,0 2882,1312,play,what are a woman and a man doing?,fKqBnl8D1Qo_5_44,1312_33814,0 2883,1312,act,what are two people doing?,fKqBnl8D1Qo_5_44,1312_33815,0 2884,1312,perform,what are artists doing?,fKqBnl8D1Qo_5_44,1312_33816,0 2885,1312,perform,what are people doing?,fKqBnl8D1Qo_5_44,1312_33817,0 2886,1312,perform,what are a woman and man doing?,fKqBnl8D1Qo_5_44,1312_33818,0 2887,1312,dance,what is a person doing?,fKqBnl8D1Qo_5_44,1312_33819,0 2888,1312,perform,what are two people in costume doing?,fKqBnl8D1Qo_5_44,1312_33820,0 2889,1312,dance,what is the woman doing?,fKqBnl8D1Qo_5_44,1312_33821,0 2890,1312,use,what is people dance doing?,fKqBnl8D1Qo_5_44,1312_33822,0 2891,1313,woman,who is using a hoe for the garden?,fMFvOgb4k6E_35_43,1313_33823,0 2892,1313,foot,what does a woman hoeing the ground remove something from?,fMFvOgb4k6E_35_43,1313_33824,0 2893,1313,lady,who hoed the ground?,fMFvOgb4k6E_35_43,1313_33825,0 2894,1313,woman,who is plowing dirt?,fMFvOgb4k6E_35_43,1313_33826,0 2895,1313,woman,who is hoeing in a garden?,fMFvOgb4k6E_35_43,1313_33827,0 2896,1313,woman,who tends to the earth?,fMFvOgb4k6E_35_43,1313_33828,0 2897,1313,woman,who is doing yard work?,fMFvOgb4k6E_35_43,1313_33829,0 2898,1313,woman,who is tilling the ground?,fMFvOgb4k6E_35_43,1313_33830,0 2899,1313,woman,who is using a hoe?,fMFvOgb4k6E_35_43,1313_33831,0 2900,1313,woman,who is cleaning a garden?,fMFvOgb4k6E_35_43,1313_33832,0 2901,1313,woman,who rakes leaves?,fMFvOgb4k6E_35_43,1313_33833,0 2902,1313,ground,what did the lady hoe?,fMFvOgb4k6E_35_43,1313_33834,0 2903,1313,garden,what is a woman hoeing in?,fMFvOgb4k6E_35_43,1313_33835,0 2904,1313,earth,what does a woman tend to?,fMFvOgb4k6E_35_43,1313_33836,0 2905,1313,dirt,what is a woman plowing?,fMFvOgb4k6E_35_43,1313_33837,0 2906,1313,ground,what is a woman tilling?,fMFvOgb4k6E_35_43,1313_33838,0 2907,1313,garden,what is a woman cleaning?,fMFvOgb4k6E_35_43,1313_33839,0 2908,1313,yard,what is a woman doing?,fMFvOgb4k6E_35_43,1313_33840,0 2909,1313,hoe,what is a woman using?,fMFvOgb4k6E_35_43,1313_33841,0 2910,1313,woman,who is gardening?,fMFvOgb4k6E_35_43,1313_33842,0 2911,1313,hoe,what is a woman doing?,fMFvOgb4k6E_35_43,1313_33843,0 2912,1313,plow,what is a woman doing?,fMFvOgb4k6E_35_43,1313_33844,0 2913,1313,clean,what is a woman doing?,fMFvOgb4k6E_35_43,1313_33845,0 2914,1313,till,what is a woman doing?,fMFvOgb4k6E_35_43,1313_33846,0 2915,1313,garden,what is a woman doing?,fMFvOgb4k6E_35_43,1313_33847,0 2916,1313,use,what is a woman doing?,fMFvOgb4k6E_35_43,1313_33848,0 2917,1313,garden,what is a girl doing?,fMFvOgb4k6E_35_43,1313_33849,0 2918,1313,use,what is the woman doing?,fMFvOgb4k6E_35_43,1313_33850,0 2919,1314,gymnast,who takes a nasty spill on a balancing beam?,fMXfphSi6Yw_7_12,1314_33851,0 2920,1314,girl,who is doing flips on a balance beam?,fMXfphSi6Yw_7_12,1314_33852,0 2921,1314,girl,who has an accident while doing gymnastics?,fMXfphSi6Yw_7_12,1314_33853,0 2922,1314,balance,what does a woman performing gymnastics on a narrow beam lose after doing a summersault?,fMXfphSi6Yw_7_12,1314_33854,0 2923,1314,gymnast,who is falling on the balance beam?,fMXfphSi6Yw_7_12,1314_33855,0 2924,1314,herself,who does a gymnast hurt on the balance beam?,fMXfphSi6Yw_7_12,1314_33856,0 2925,1314,gymnast,who fell on the balance beam?,fMXfphSi6Yw_7_12,1314_33857,0 2926,1314,landing,what does a gymnast miss on a bar?,fMXfphSi6Yw_7_12,1314_33858,0 2927,1314,gymnast,who falls off a balance beam?,fMXfphSi6Yw_7_12,1314_33859,0 2928,1314,girl,who fell off the balance beam?,fMXfphSi6Yw_7_12,1314_33860,0 2929,1314,girl,who is doing gymnastics?,fMXfphSi6Yw_7_12,1314_33861,0 2930,1314,balance,what do a gymnast falling off?,fMXfphSi6Yw_7_12,1314_33862,0 2931,1314,balance,what did the girl fall off?,fMXfphSi6Yw_7_12,1314_33863,0 2932,1314,gymnast,who is doing back flips then falls?,fMXfphSi6Yw_7_12,1314_33864,0 2933,1314,woman,who fell?,fMXfphSi6Yw_7_12,1314_33865,0 2934,1314,fall,what is a girl doing?,fMXfphSi6Yw_7_12,1314_33866,0 2935,1314,fall,what is a gymnast doing?,fMXfphSi6Yw_7_12,1314_33867,0 2936,1314,land,what is a gymnast misses her doing?,fMXfphSi6Yw_7_12,1314_33868,0 2937,1314,perform,what is a woman doing?,fMXfphSi6Yw_7_12,1314_33869,0 2938,1314,perform,what is while doing?,fMXfphSi6Yw_7_12,1314_33870,0 2939,1315,man,who dragged a deer on his back through the snow?,fVWUaH2mCt4_1_7,1315_33871,0 2940,1315,deer,what jumps on the back of a woman?,fVWUaH2mCt4_1_7,1315_33872,0 2941,1315,man,who walked with a deer on his back?,fVWUaH2mCt4_1_7,1315_33873,0 2942,1315,deer,what is climbing on to the back of a man?,fVWUaH2mCt4_1_7,1315_33874,0 2943,1315,snow,what did a man drag a deer on his back through?,fVWUaH2mCt4_1_7,1315_33875,0 2944,1315,deer,what did a man drag on his back through the snow?,fVWUaH2mCt4_1_7,1315_33876,0 2945,1315,deer,what did the man walk with on his back?,fVWUaH2mCt4_1_7,1315_33877,0 2946,1315,back,what did a man drag a deer on through the snow?,fVWUaH2mCt4_1_7,1315_33878,0 2947,1315,back,what did the man walk with a deer on?,fVWUaH2mCt4_1_7,1315_33879,0 2948,1315,deer,what mounts a person?,fVWUaH2mCt4_1_7,1315_33880,0 2949,1315,deer,what tries to mount a woman?,fVWUaH2mCt4_1_7,1315_33881,0 2950,1315,woman,who does a deer try to mount?,fVWUaH2mCt4_1_7,1315_33882,0 2951,1315,woman,who is a moose attacking?,fVWUaH2mCt4_1_7,1315_33883,0 2952,1315,deer,what is on someones back?,fVWUaH2mCt4_1_7,1315_33884,0 2953,1315,person,who does a deer mount?,fVWUaH2mCt4_1_7,1315_33885,0 2954,1315,moose,what is attacking a woman?,fVWUaH2mCt4_1_7,1315_33886,0 2955,1315,deer,what is pushing the person?,fVWUaH2mCt4_1_7,1315_33887,0 2956,1315,person,who is the deer pushing?,fVWUaH2mCt4_1_7,1315_33888,0 2957,1315,jump,what is a deer doing?,fVWUaH2mCt4_1_7,1315_33889,0 2958,1315,climb,what is a deer doing?,fVWUaH2mCt4_1_7,1315_33890,0 2959,1315,attack,what is a moose doing?,fVWUaH2mCt4_1_7,1315_33891,0 2960,1315,stand,what is a woman doing?,fVWUaH2mCt4_1_7,1315_33892,0 2961,1315,push,what is the deer doing?,fVWUaH2mCt4_1_7,1315_33893,0 2962,1316,man,who is cutting off the tapes fastened to a carton box using a knife?,fX5G_JwPlLo_640_660,1316_33894,0 2963,1316,man,who cuts a box open with a knife?,fX5G_JwPlLo_640_660,1316_33895,0 2964,1316,man,who is slicing the tape from the box?,fX5G_JwPlLo_640_660,1316_33896,0 2965,1316,man,who is opening a package with a knife?,fX5G_JwPlLo_640_660,1316_33897,0 2966,1316,man,who is opening a box with a knife?,fX5G_JwPlLo_640_660,1316_33898,0 2967,1316,man,who used a knife to open a box?,fX5G_JwPlLo_640_660,1316_33899,0 2968,1316,man,who is slicing the tape on a box to open it?,fX5G_JwPlLo_640_660,1316_33900,0 2969,1316,man,who opened a box with a knife?,fX5G_JwPlLo_640_660,1316_33901,0 2970,1316,man,who is opening a box using a knife?,fX5G_JwPlLo_640_660,1316_33902,0 2971,1316,man,who opens a box with a knife?,fX5G_JwPlLo_640_660,1316_33903,0 2972,1316,box,what did a man open with a knife?,fX5G_JwPlLo_640_660,1316_33904,0 2973,1316,knife,what did a man open a box with?,fX5G_JwPlLo_640_660,1316_33905,0 2974,1316,box,what is the man slicing the tape from?,fX5G_JwPlLo_640_660,1316_33906,0 2975,1316,tape,what is the man slicing from the box?,fX5G_JwPlLo_640_660,1316_33907,0 2976,1316,box,what does a man open with a knife?,fX5G_JwPlLo_640_660,1316_33908,0 2977,1316,knife,what does a man open a box with?,fX5G_JwPlLo_640_660,1316_33909,0 2978,1316,box,what is a man opening with a knife?,fX5G_JwPlLo_640_660,1316_33910,0 2979,1316,knife,what is a man opening a package with?,fX5G_JwPlLo_640_660,1316_33911,0 2980,1316,knife,what is a man opening a box with?,fX5G_JwPlLo_640_660,1316_33912,0 2981,1316,man,who is opening a package by cutting?,fX5G_JwPlLo_640_660,1316_33913,0 2982,1316,box,what did the man use a knife to open?,fX5G_JwPlLo_640_660,1316_33914,0 2983,1316,knife,what did the man use to open a box?,fX5G_JwPlLo_640_660,1316_33915,0 2984,1316,box,what is a man slicing the tape on to open it?,fX5G_JwPlLo_640_660,1316_33916,0 2985,1316,tape,what is a man slicing on a box to open it?,fX5G_JwPlLo_640_660,1316_33917,0 2986,1316,box,what is a man opening using a knife?,fX5G_JwPlLo_640_660,1316_33918,0 2987,1316,package,what is a man opening by cutting?,fX5G_JwPlLo_640_660,1316_33919,0 2988,1316,man,who is cutting open a box?,fX5G_JwPlLo_640_660,1316_33920,0 2989,1316,box,what is a man cutting?,fX5G_JwPlLo_640_660,1316_33921,0 2990,1316,mail,what is being opened?,fX5G_JwPlLo_640_660,1316_33922,0 2991,1316,slouse,what is a man doing?,fX5G_JwPlLo_640_660,1316_33923,0 2992,1316,cut,what is a man doing?,fX5G_JwPlLo_640_660,1316_33924,0 2993,1316,slouse,what is the man doing?,fX5G_JwPlLo_640_660,1316_33925,0 2994,1317,woman,who is exercising by stepping from right to left?,fY0lZTWlBAg_470_485,1317_33926,0 2995,1317,woman,who is moving from side to side near a wall?,fY0lZTWlBAg_470_485,1317_33927,0 2996,1317,side,what is a woman moving from to side near a wall?,fY0lZTWlBAg_470_485,1317_33928,0 2997,1317,woman,who is stepping side to side?,fY0lZTWlBAg_470_485,1317_33929,0 2998,1317,lady,who moved back and forth in the room?,fY0lZTWlBAg_470_485,1317_33930,0 2999,1317,girl,who exercised to a video?,fY0lZTWlBAg_470_485,1317_33931,0 3000,1317,woman,who does aerobic exercise?,fY0lZTWlBAg_470_485,1317_33932,0 3001,1317,woman,who is performing aerobics?,fY0lZTWlBAg_470_485,1317_33933,0 3002,1317,woman,who is doing side step exercises?,fY0lZTWlBAg_470_485,1317_33934,0 3003,1317,woman,who is doing exercise?,fY0lZTWlBAg_470_485,1317_33935,0 3004,1317,room,what did the lady move back and forth in?,fY0lZTWlBAg_470_485,1317_33936,0 3005,1317,side,what is a woman stepping to side?,fY0lZTWlBAg_470_485,1317_33937,0 3006,1317,video,what did the girl exercise to?,fY0lZTWlBAg_470_485,1317_33938,0 3007,1317,exercise,what does a woman do?,fY0lZTWlBAg_470_485,1317_33939,0 3008,1317,exercise,what is a woman doing?,fY0lZTWlBAg_470_485,1317_33940,0 3009,1317,woman,who is working out?,fY0lZTWlBAg_470_485,1317_33941,0 3010,1317,girl,who is exercising?,fY0lZTWlBAg_470_485,1317_33942,0 3011,1317,step,what is a woman doing?,fY0lZTWlBAg_470_485,1317_33943,0 3012,1317,exercise,what is a girl doing?,fY0lZTWlBAg_470_485,1317_33944,0 3013,1317,move,what is a woman doing?,fY0lZTWlBAg_470_485,1317_33945,0 3014,1317,perform,what is a woman doing?,fY0lZTWlBAg_470_485,1317_33946,0 3015,1317,work,what is a woman doing?,fY0lZTWlBAg_470_485,1317_33947,0 3016,1317,exercise,what is the woman doing?,fY0lZTWlBAg_470_485,1317_33948,0 3017,1318,floor,what is a man in a formal white suit walking while a woman is sitting in a chair?,f_CvW22Eauc_16_23,1318_33949,0 3018,1318,man,who had his hands on his hips as he walked across the room?,f_CvW22Eauc_16_23,1318_33950,0 3019,1318,man,who is slow walking in the house?,f_CvW22Eauc_16_23,1318_33951,0 3020,1318,man,who is slowly walking across the floor?,f_CvW22Eauc_16_23,1318_33952,0 3021,1318,room,what did a man in a formal white suit walk across?,f_CvW22Eauc_16_23,1318_33953,0 3022,1318,man,who is slowly pacing a large room?,f_CvW22Eauc_16_23,1318_33954,0 3023,1318,person,who walks across a hall?,f_CvW22Eauc_16_23,1318_33955,0 3024,1318,man,who paces in a room?,f_CvW22Eauc_16_23,1318_33956,0 3025,1318,man,who is walking across a room?,f_CvW22Eauc_16_23,1318_33957,0 3026,1318,man,who walked across his hall?,f_CvW22Eauc_16_23,1318_33958,0 3027,1318,woman,who is sitting in a chair?,f_CvW22Eauc_16_23,1318_33959,0 3028,1318,floor,what is a man slowly walking across?,f_CvW22Eauc_16_23,1318_33960,0 3029,1318,man,who is walking in a room?,f_CvW22Eauc_16_23,1318_33961,0 3030,1318,room,what a man is slowly pacing?,f_CvW22Eauc_16_23,1318_33962,0 3031,1318,hall,what does a person walk across?,f_CvW22Eauc_16_23,1318_33963,0 3032,1318,room,what is a man walking across?,f_CvW22Eauc_16_23,1318_33964,0 3033,1318,room,what does a man pace in?,f_CvW22Eauc_16_23,1318_33965,0 3034,1318,chair,what is a woman sitting in?,f_CvW22Eauc_16_23,1318_33966,0 3035,1318,room,what is a man walking in?,f_CvW22Eauc_16_23,1318_33967,0 3036,1318,hall,what did the man walk across?,f_CvW22Eauc_16_23,1318_33968,0 3037,1318,man,who walks around?,f_CvW22Eauc_16_23,1318_33969,0 3038,1318,man,who walks?,f_CvW22Eauc_16_23,1318_33970,0 3039,1318,man,who is walking?,f_CvW22Eauc_16_23,1318_33971,0 3040,1318,walk,what is a man in a formal white suit doing?,f_CvW22Eauc_16_23,1318_33972,0 3041,1318,walk,what is a man doing?,f_CvW22Eauc_16_23,1318_33973,0 3042,1318,pace,what is a man in a white outfit doing?,f_CvW22Eauc_16_23,1318_33974,0 3043,1318,pace,what is a man is slowly doing?,f_CvW22Eauc_16_23,1318_33975,0 3044,1318,walk,what is the man doing?,f_CvW22Eauc_16_23,1318_33976,0 3045,1319,man,who is a man on a roof tossing bricks to on the ground when the man on the ground is distracted?,f_GnkweYzzI_35_41,1319_33977,0 3046,1319,ground,what is a man on a roof tossing bricks to a man on when the man on the ground is distracted?,f_GnkweYzzI_35_41,1319_33978,0 3047,1319,man,who got hit with a sack on the head?,f_GnkweYzzI_35_41,1319_33979,0 3048,1319,man,who gets hit in the head with a brick?,f_GnkweYzzI_35_41,1319_33980,0 3049,1319,man,who throw a brick at a man on the ground?,f_GnkweYzzI_35_41,1319_33981,0 3050,1319,man,who tosses blocks off a roof?,f_GnkweYzzI_35_41,1319_33982,0 3051,1319,man,who gets struck in the head with a brick?,f_GnkweYzzI_35_41,1319_33983,0 3052,1319,man,who gets hit on the head with a block?,f_GnkweYzzI_35_41,1319_33984,0 3053,1319,man,who do a man throw a brick at on the ground?,f_GnkweYzzI_35_41,1319_33985,0 3054,1319,man,who is a man on a roof tossing bricks down to on the ground?,f_GnkweYzzI_35_41,1319_33986,0 3055,1319,bag,what did the man on the roof throw down?,f_GnkweYzzI_35_41,1319_33987,0 3056,1319,man,who did the man on the roof hit on his head?,f_GnkweYzzI_35_41,1319_33988,0 3057,1319,ground,what is a man on a roof tossing bricks down to another man on?,f_GnkweYzzI_35_41,1319_33989,0 3058,1319,ground,what do a man throw a brick at a man on?,f_GnkweYzzI_35_41,1319_33990,0 3059,1319,brick,what do a man throw at a man on the ground?,f_GnkweYzzI_35_41,1319_33991,0 3060,1319,someone,who hit the man on the head?,f_GnkweYzzI_35_41,1319_33992,0 3061,1319,head,what does a man get struck in with a brick?,f_GnkweYzzI_35_41,1319_33993,0 3062,1319,man,who hits a man on the ground?,f_GnkweYzzI_35_41,1319_33994,0 3063,1319,head,what does a man get hit on with a block?,f_GnkweYzzI_35_41,1319_33995,0 3064,1319,man,who does a man hit on the ground?,f_GnkweYzzI_35_41,1319_33996,0 3065,1319,brick,what does a man get struck in the head with?,f_GnkweYzzI_35_41,1319_33997,0 3066,1319,block,what does a man get hit on the head with?,f_GnkweYzzI_35_41,1319_33998,0 3067,1319,man,who is hit by a thrown object?,f_GnkweYzzI_35_41,1319_33999,0 3068,1319,man,who is getting hit with a brick?,f_GnkweYzzI_35_41,1319_34000,0 3069,1319,roof,what does a man toss blocks off?,f_GnkweYzzI_35_41,1319_34001,0 3070,1319,man,who did someone hit on the head?,f_GnkweYzzI_35_41,1319_34002,0 3071,1319,ground,what does a man hit a man on?,f_GnkweYzzI_35_41,1319_34003,0 3072,1319,head,what did the man on the roof hit another man on?,f_GnkweYzzI_35_41,1319_34004,0 3073,1319,head,what did someone hit the man on?,f_GnkweYzzI_35_41,1319_34005,0 3074,1319,someone,who threw a package?,f_GnkweYzzI_35_41,1319_34006,0 3075,1319,head,what does a man on a roof then hit him in?,f_GnkweYzzI_35_41,1319_34007,0 3076,1319,brick,what is a man getting hit with?,f_GnkweYzzI_35_41,1319_34008,0 3077,1319,man,who gets hit by an object?,f_GnkweYzzI_35_41,1319_34009,0 3078,1319,package,what did someone throw?,f_GnkweYzzI_35_41,1319_34010,0 3079,1319,object,what does a man get hit by?,f_GnkweYzzI_35_41,1319_34011,0 3080,1319,man,who falls down?,f_GnkweYzzI_35_41,1319_34012,0 3081,1319,tos,what is a man on a roof doing?,f_GnkweYzzI_35_41,1319_34013,0 3082,1319,fall,what is a brick doing?,f_GnkweYzzI_35_41,1319_34014,0 3083,1319,throw,what is a person doing?,f_GnkweYzzI_35_41,1319_34015,0 3084,1320,man,who is directing a choir of men and women?,fcvW1vr8hAs_104_108,1320_34016,0 3085,1320,man,who is singing a holy song as the audience follows him?,fcvW1vr8hAs_104_108,1320_34017,0 3086,1320,director,who led the choir in a song?,fcvW1vr8hAs_104_108,1320_34018,0 3087,1320,song,what did the choir director lead the choir in?,fcvW1vr8hAs_104_108,1320_34019,0 3088,1320,choir,what did the choir director lead in a song?,fcvW1vr8hAs_104_108,1320_34020,0 3089,1320,holy,what is a man singing as the audience follows him?,fcvW1vr8hAs_104_108,1320_34021,0 3090,1320,director,who led the choir?,fcvW1vr8hAs_104_108,1320_34022,0 3091,1320,man,who is directing a choir?,fcvW1vr8hAs_104_108,1320_34023,0 3092,1320,man,who is leading the choir?,fcvW1vr8hAs_104_108,1320_34024,0 3093,1320,choir,what sings a song?,fcvW1vr8hAs_104_108,1320_34025,0 3094,1320,choir,what did the choir director lead?,fcvW1vr8hAs_104_108,1320_34026,0 3095,1320,song,what does a choir sing?,fcvW1vr8hAs_104_108,1320_34027,0 3096,1320,man,who does the audience follow?,fcvW1vr8hAs_104_108,1320_34028,0 3097,1320,church,what are people singing in?,fcvW1vr8hAs_104_108,1320_34029,0 3098,1320,audience,what follows a man?,fcvW1vr8hAs_104_108,1320_34030,0 3099,1320,choir,what is the man leading?,fcvW1vr8hAs_104_108,1320_34031,0 3100,1320,church,who are singing?,fcvW1vr8hAs_104_108,1320_34032,0 3101,1320,man,who is standing?,fcvW1vr8hAs_104_108,1320_34033,0 3102,1320,choir,what sings?,fcvW1vr8hAs_104_108,1320_34034,0 3103,1320,choir,what is singing?,fcvW1vr8hAs_104_108,1320_34035,0 3104,1320,stand,what is a man doing?,fcvW1vr8hAs_104_108,1320_34036,0 3105,1320,lead,what is the man doing?,fcvW1vr8hAs_104_108,1320_34037,0 3106,1321,man,who is sitting on the front steps of a building holding a guitar while he pets two dogs?,fcvW1vr8hAs_96_102,1321_34038,0 3107,1321,two,how many dogs is a man with a guitar petting?,fcvW1vr8hAs_96_102,1321_34039,0 3108,1321,man,who is petting two dogs while holding a guitar?,fcvW1vr8hAs_96_102,1321_34040,0 3109,1321,two,how many dogs is a man petting while holding a guitar?,fcvW1vr8hAs_96_102,1321_34041,0 3110,1321,two,how many dogs is a man holding a guitar petting?,fcvW1vr8hAs_96_102,1321_34042,0 3111,1321,man,who is holding a guitar in his right hand?,fcvW1vr8hAs_96_102,1321_34043,0 3112,1321,man,who is petting two dogs with his left?,fcvW1vr8hAs_96_102,1321_34044,0 3113,1321,two,how many dogs is a man petting with his left?,fcvW1vr8hAs_96_102,1321_34045,0 3114,1321,man,who pets a couple of dogs?,fcvW1vr8hAs_96_102,1321_34046,0 3115,1321,man,who held his guitar and pet the two dogs?,fcvW1vr8hAs_96_102,1321_34047,0 3116,1321,guitar,what is a man holding in his right hand?,fcvW1vr8hAs_96_102,1321_34048,0 3117,1321,man,who pets some dogs?,fcvW1vr8hAs_96_102,1321_34049,0 3118,1321,two,how many dogs is a man petting?,fcvW1vr8hAs_96_102,1321_34050,0 3119,1321,man,who pets a dog?,fcvW1vr8hAs_96_102,1321_34051,0 3120,1321,man,who is petting the dogs?,fcvW1vr8hAs_96_102,1321_34052,0 3121,1321,left,what is a man petting two dogs with?,fcvW1vr8hAs_96_102,1321_34053,0 3122,1321,man,who pets his dogs?,fcvW1vr8hAs_96_102,1321_34054,0 3123,1321,man,who is stroking?,fcvW1vr8hAs_96_102,1321_34055,0 3124,1321,man,who is singing?,fcvW1vr8hAs_96_102,1321_34056,0 3125,1321,hold,what is a man doing?,fcvW1vr8hAs_96_102,1321_34057,0 3126,1321,pet,what is a man doing?,fcvW1vr8hAs_96_102,1321_34058,0 3127,1321,sit,what is a man doing?,fcvW1vr8hAs_96_102,1321_34059,0 3128,1321,pet,what is a man with a guitar doing?,fcvW1vr8hAs_96_102,1321_34060,0 3129,1321,pet,what is the man doing?,fcvW1vr8hAs_96_102,1321_34061,0 3130,1321,hold,what is the man pet the two dogs while doing?,fcvW1vr8hAs_96_102,1321_34062,0 3131,1322,person,who is cutting an eggplant into pieces with a knife?,fd7Ky1lEPT8_40_50,1322_34063,0 3132,1322,person,who is cutting an eggplant into pieces?,fd7Ky1lEPT8_40_50,1322_34064,0 3133,1322,knife,what is a person cutting an eggplant into pieces with?,fd7Ky1lEPT8_40_50,1322_34065,0 3134,1322,eggplant,what is a person cutting into pieces with a knife?,fd7Ky1lEPT8_40_50,1322_34066,0 3135,1322,someone,who sliced a piece of fruit?,fd7Ky1lEPT8_40_50,1322_34067,0 3136,1322,eggplant,what is a person cutting into pieces?,fd7Ky1lEPT8_40_50,1322_34068,0 3137,1322,fruit,what did someone slice a piece of?,fd7Ky1lEPT8_40_50,1322_34069,0 3138,1322,man,who slices an eggplant?,fd7Ky1lEPT8_40_50,1322_34070,0 3139,1322,man,who is slicing an eggplant?,fd7Ky1lEPT8_40_50,1322_34071,0 3140,1322,eggplant,what is the cook slicing?,fd7Ky1lEPT8_40_50,1322_34072,0 3141,1322,eggplant,what is a person slicing?,fd7Ky1lEPT8_40_50,1322_34073,0 3142,1322,man,who is cutting an eggplant?,fd7Ky1lEPT8_40_50,1322_34074,0 3143,1322,someone,what sliced a fruit?,fd7Ky1lEPT8_40_50,1322_34075,0 3144,1322,person,who is cutting up an eggplant?,fd7Ky1lEPT8_40_50,1322_34076,0 3145,1322,cook,who cuts up a potato?,fd7Ky1lEPT8_40_50,1322_34077,0 3146,1322,fruit,what did someone peeled and slice?,fd7Ky1lEPT8_40_50,1322_34078,0 3147,1322,individual,who cuts up food?,fd7Ky1lEPT8_40_50,1322_34079,0 3148,1322,eggplant,what is a person cutting?,fd7Ky1lEPT8_40_50,1322_34080,0 3149,1322,eggplant,what is someone slicing?,fd7Ky1lEPT8_40_50,1322_34081,0 3150,1322,eggplant,what does a person slice?,fd7Ky1lEPT8_40_50,1322_34082,0 3151,1322,eggplant,what does a man slice?,fd7Ky1lEPT8_40_50,1322_34083,0 3152,1322,potato,what does a cook cut up?,fd7Ky1lEPT8_40_50,1322_34084,0 3153,1322,eggplant,what is a man slicing?,fd7Ky1lEPT8_40_50,1322_34085,0 3154,1322,food,what does an individual cut up?,fd7Ky1lEPT8_40_50,1322_34086,0 3155,1322,eggplant,what is a person cutting up?,fd7Ky1lEPT8_40_50,1322_34087,0 3156,1322,eggplant,what is a man cutting?,fd7Ky1lEPT8_40_50,1322_34088,0 3157,1322,person,who is peeling?,fd7Ky1lEPT8_40_50,1322_34089,0 3158,1322,person,who is slicing?,fd7Ky1lEPT8_40_50,1322_34090,0 3159,1322,eggplant,what is being sliced?,fd7Ky1lEPT8_40_50,1322_34091,0 3160,1322,man,who peels?,fd7Ky1lEPT8_40_50,1322_34092,0 3161,1322,cut,what is a man doing?,fd7Ky1lEPT8_40_50,1322_34093,0 3162,1322,slouse,what is a man doing?,fd7Ky1lEPT8_40_50,1322_34094,0 3163,1322,cut,what is a person doing?,fd7Ky1lEPT8_40_50,1322_34095,0 3164,1322,peel,what is a person doing?,fd7Ky1lEPT8_40_50,1322_34096,0 3165,1322,slouse,what is someone doing?,fd7Ky1lEPT8_40_50,1322_34097,0 3166,1322,peel,what is the cook doing?,fd7Ky1lEPT8_40_50,1322_34098,0 3167,1323,man,who is playing the guitar seated on a bench in an outdoor location?,fgWFxFg7-GU_10_26,1323_34099,0 3168,1323,man,who is sitting on a bench in front of a microphone playing a guitar?,fgWFxFg7-GU_10_26,1323_34100,0 3169,1323,man,who is sitting on a bench playing a guitar?,fgWFxFg7-GU_10_26,1323_34101,0 3170,1323,man,who is playing the guitar on a park bench?,fgWFxFg7-GU_10_26,1323_34102,0 3171,1323,bench,what is a man sitting on in front of a microphone playing a guitar?,fgWFxFg7-GU_10_26,1323_34103,0 3172,1323,guitar,what is a man playing on a park bench?,fgWFxFg7-GU_10_26,1323_34104,0 3173,1323,bench,what is a man sitting on playing a guitar?,fgWFxFg7-GU_10_26,1323_34105,0 3174,1323,man,who plays an acoustic guitar?,fgWFxFg7-GU_10_26,1323_34106,0 3175,1323,man,who is playing an acoustic guitar?,fgWFxFg7-GU_10_26,1323_34107,0 3176,1323,man,who played his guitar outside?,fgWFxFg7-GU_10_26,1323_34108,0 3177,1323,man,who is playing guitar?,fgWFxFg7-GU_10_26,1323_34109,0 3178,1323,man,who plays a guitar?,fgWFxFg7-GU_10_26,1323_34110,0 3179,1323,man,who is playing a guitar?,fgWFxFg7-GU_10_26,1323_34111,0 3180,1323,man,who is playing the guitar?,fgWFxFg7-GU_10_26,1323_34112,0 3181,1323,man,who played his guitar?,fgWFxFg7-GU_10_26,1323_34113,0 3182,1323,guitar,what does a man play?,fgWFxFg7-GU_10_26,1323_34114,0 3183,1323,guitar,what is a man playing?,fgWFxFg7-GU_10_26,1323_34115,0 3184,1323,guitar,what is the man playing?,fgWFxFg7-GU_10_26,1323_34116,0 3185,1323,guitar,what did the man play outside?,fgWFxFg7-GU_10_26,1323_34117,0 3186,1323,guitar,what did a man play?,fgWFxFg7-GU_10_26,1323_34118,0 3187,1323,play,what is a man doing?,fgWFxFg7-GU_10_26,1323_34119,0 3188,1323,sit,what is a man doing?,fgWFxFg7-GU_10_26,1323_34120,0 3189,1323,play,what is the man doing?,fgWFxFg7-GU_10_26,1323_34121,0 3190,1324,dog,what sniffed the duckling?,ficwZQYmRLE_5_20,1324_34122,0 3191,1324,baby,what is playing with a dog?,ficwZQYmRLE_5_20,1324_34123,0 3192,1324,dog,what is a baby duck playing with?,ficwZQYmRLE_5_20,1324_34124,0 3193,1324,dog,what is sniffing a duckling?,ficwZQYmRLE_5_20,1324_34125,0 3194,1324,ndog,who is smelling a duck?,ficwZQYmRLE_5_20,1324_34126,0 3195,1324,dog,what comes close to a duck?,ficwZQYmRLE_5_20,1324_34127,0 3196,1324,dog,what is sniffing a baby duck?,ficwZQYmRLE_5_20,1324_34128,0 3197,1324,dog,what plays with a duck?,ficwZQYmRLE_5_20,1324_34129,0 3198,1324,dog,what is sniffing a duck?,ficwZQYmRLE_5_20,1324_34130,0 3199,1324,dog,what is looking at a chick?,ficwZQYmRLE_5_20,1324_34131,0 3200,1324,duck,what is playing with the dog?,ficwZQYmRLE_5_20,1324_34132,0 3201,1324,duck,what does a dog come close to?,ficwZQYmRLE_5_20,1324_34133,0 3202,1324,duckling,what did the dog sniff?,ficwZQYmRLE_5_20,1324_34134,0 3203,1324,duck,what is a ndog smelling?,ficwZQYmRLE_5_20,1324_34135,0 3204,1324,dog,what is the duck playing with?,ficwZQYmRLE_5_20,1324_34136,0 3205,1324,duck,what does a dog play with?,ficwZQYmRLE_5_20,1324_34137,0 3206,1324,chick,what is a dog looking at?,ficwZQYmRLE_5_20,1324_34138,0 3207,1324,duck,what is a dog sniffing?,ficwZQYmRLE_5_20,1324_34139,0 3208,1324,dog,what is sniffing?,ficwZQYmRLE_5_20,1324_34140,0 3209,1324,sniff,what is a dog doing?,ficwZQYmRLE_5_20,1324_34141,0 3210,1324,check,what are a dog and a baby duck doing?,ficwZQYmRLE_5_20,1324_34142,0 3211,1324,play,what is a baby duck doing?,ficwZQYmRLE_5_20,1324_34143,0 3212,1324,smell,what is a ndog doing?,ficwZQYmRLE_5_20,1324_34144,0 3213,1324,sniff,what is a curious dog doing?,ficwZQYmRLE_5_20,1324_34145,0 3214,1324,look,what is a dog doing?,ficwZQYmRLE_5_20,1324_34146,0 3215,1324,play,what is the duck doing?,ficwZQYmRLE_5_20,1324_34147,0 3216,1325,man,who is turning a car to park it?,fjDvKHkmxs0_119_126,1325_34148,0 3217,1325,man,who drives around a town?,fjDvKHkmxs0_119_126,1325_34149,0 3218,1325,car,what is a man turning to park it?,fjDvKHkmxs0_119_126,1325_34150,0 3219,1325,man,who is drivong a car?,fjDvKHkmxs0_119_126,1325_34151,0 3220,1325,man,who drives a car?,fjDvKHkmxs0_119_126,1325_34152,0 3221,1325,man,who is driving a car?,fjDvKHkmxs0_119_126,1325_34153,0 3222,1325,man,who drove his car?,fjDvKHkmxs0_119_126,1325_34154,0 3223,1325,town,what does a man drive around?,fjDvKHkmxs0_119_126,1325_34155,0 3224,1325,car,what is a man drivong?,fjDvKHkmxs0_119_126,1325_34156,0 3225,1325,car,what does a man drive?,fjDvKHkmxs0_119_126,1325_34157,0 3226,1325,car,what is a man driving?,fjDvKHkmxs0_119_126,1325_34158,0 3227,1325,car,what is the man driving?,fjDvKHkmxs0_119_126,1325_34159,0 3228,1325,car,what did a man drive?,fjDvKHkmxs0_119_126,1325_34160,0 3229,1325,car,what did the man drive?,fjDvKHkmxs0_119_126,1325_34161,0 3230,1325,man,who is driving?,fjDvKHkmxs0_119_126,1325_34162,0 3231,1325,drive,what is a man doing?,fjDvKHkmxs0_119_126,1325_34163,0 3232,1325,drive,what is the man doing?,fjDvKHkmxs0_119_126,1325_34164,0 3233,1326,two,how many men are loading luggage into a cars trunk?,fjDvKHkmxs0_72_87,1326_34165,0 3234,1326,two,how many men are packing suitcases into the trunk of a car?,fjDvKHkmxs0_72_87,1326_34166,0 3235,1326,two,how many men load a car trunk with luggage?,fjDvKHkmxs0_72_87,1326_34167,0 3236,1326,two,how many men are loading luggage into the trunk of a car?,fjDvKHkmxs0_72_87,1326_34168,0 3237,1326,two,how many men are loading luggage into the boot of a car?,fjDvKHkmxs0_72_87,1326_34169,0 3238,1326,two,how many men are loading the trunk of a car?,fjDvKHkmxs0_72_87,1326_34170,0 3239,1326,two,how many men are loading bags into the trunk of a car?,fjDvKHkmxs0_72_87,1326_34171,0 3240,1326,two,how many men are putting luggage in the trunk of a car?,fjDvKHkmxs0_72_87,1326_34172,0 3241,1326,two,how many men are putting luggage in a car?,fjDvKHkmxs0_72_87,1326_34173,0 3242,1326,two,how many men are putting a luggage in a car?,fjDvKHkmxs0_72_87,1326_34174,0 3243,1326,luggage,what is being put into the trunk of a car?,fjDvKHkmxs0_72_87,1326_34175,0 3244,1326,two,how many men are loading into a trunk?,fjDvKHkmxs0_72_87,1326_34176,0 3245,1326,luggage,what are men placing in the trunk of a car?,fjDvKHkmxs0_72_87,1326_34177,0 3246,1326,luggage,what are two men loading into a cars trunk?,fjDvKHkmxs0_72_87,1326_34178,0 3247,1326,luggage,what are two men loading into the boot of a car?,fjDvKHkmxs0_72_87,1326_34179,0 3248,1326,car,what are two men loading the trunk of?,fjDvKHkmxs0_72_87,1326_34180,0 3249,1326,luggage,what are two men putting in the trunk of a car?,fjDvKHkmxs0_72_87,1326_34181,0 3250,1326,luggage,what do two men load a car trunk with?,fjDvKHkmxs0_72_87,1326_34182,0 3251,1326,car,what are two men putting a luggage in?,fjDvKHkmxs0_72_87,1326_34183,0 3252,1326,luggage,what are two men putting in a car?,fjDvKHkmxs0_72_87,1326_34184,0 3253,1326,trunk,what do two men load with luggage?,fjDvKHkmxs0_72_87,1326_34185,0 3254,1326,car,what are two men putting luggage in?,fjDvKHkmxs0_72_87,1326_34186,0 3255,1326,luggage,what did the men load into the trunk of a car?,fjDvKHkmxs0_72_87,1326_34187,0 3256,1326,luggage,what did the men load into the trunk of the car?,fjDvKHkmxs0_72_87,1326_34188,0 3257,1326,trunk,what are men packing with luggage?,fjDvKHkmxs0_72_87,1326_34189,0 3258,1326,luggage,what are men packing a trunk with?,fjDvKHkmxs0_72_87,1326_34190,0 3259,1326,trunk,what are two men loading into?,fjDvKHkmxs0_72_87,1326_34191,0 3260,1326,load,what are two men doing?,fjDvKHkmxs0_72_87,1326_34192,0 3261,1326,pack,what are men doing?,fjDvKHkmxs0_72_87,1326_34193,0 3262,1326,place,what are men doing?,fjDvKHkmxs0_72_87,1326_34194,0 3263,1326,put,what are the men doing?,fjDvKHkmxs0_72_87,1326_34195,0 3264,1326,pack,what is two men doing?,fjDvKHkmxs0_72_87,1326_34196,0 3265,1327,dog,what tried to get the spray from the hose in the pool?,fkONJEgTNJY_25_35,1327_34197,0 3266,1327,dog,what is drinking water from a swimming pool?,fkONJEgTNJY_25_35,1327_34198,0 3267,1327,pool,what did the dog try to get the spray from the hose in?,fkONJEgTNJY_25_35,1327_34199,0 3268,1327,spray,what did the dog try to get from the hose in the pool?,fkONJEgTNJY_25_35,1327_34200,0 3269,1327,hose,what did the dog try to get the spray from in the pool?,fkONJEgTNJY_25_35,1327_34201,0 3270,1327,dog,what is drinking water out of a swimming pool?,fkONJEgTNJY_25_35,1327_34202,0 3271,1327,dog,what is drinking a water from swimming pool?,fkONJEgTNJY_25_35,1327_34203,0 3272,1327,dog,what is standing on the steps of a swimming pool playing with the foamy water created by a garden hose?,fkONJEgTNJY_25_35,1327_34204,0 3273,1327,dog,what plays with the water jet in a pool?,fkONJEgTNJY_25_35,1327_34205,0 3274,1327,dog,what is playing in the water in a swimming pool?,fkONJEgTNJY_25_35,1327_34206,0 3275,1327,drinking,what is a dog out of a swimming pool?,fkONJEgTNJY_25_35,1327_34207,0 3276,1327,water,what is a dog drinking from swimming pool?,fkONJEgTNJY_25_35,1327_34208,0 3277,1327,water,what is a dog playing in in a swimming pool?,fkONJEgTNJY_25_35,1327_34209,0 3278,1327,pool,what does a dog play with the water jet in?,fkONJEgTNJY_25_35,1327_34210,0 3279,1327,pool,what is a dog drinking a water from?,fkONJEgTNJY_25_35,1327_34211,0 3280,1327,dog,what is playing with a water jet?,fkONJEgTNJY_25_35,1327_34212,0 3281,1327,dog,what drinks from a swimming pool?,fkONJEgTNJY_25_35,1327_34213,0 3282,1327,pug,what is playing in pool water?,fkONJEgTNJY_25_35,1327_34214,0 3283,1327,dog,what is playing in a pool?,fkONJEgTNJY_25_35,1327_34215,0 3284,1327,dog,what is playing in water?,fkONJEgTNJY_25_35,1327_34216,0 3285,1327,water,what is a pug playing in?,fkONJEgTNJY_25_35,1327_34217,0 3286,1327,dog,what is playing the the water?,fkONJEgTNJY_25_35,1327_34218,0 3287,1327,water,what is the dog playing?,fkONJEgTNJY_25_35,1327_34219,0 3288,1327,stand,what is a dog doing?,fkONJEgTNJY_25_35,1327_34220,0 3289,1327,drink,what is a dog doing?,fkONJEgTNJY_25_35,1327_34221,0 3290,1327,play,what is a dog doing?,fkONJEgTNJY_25_35,1327_34222,0 3291,1327,play,what is a pug doing?,fkONJEgTNJY_25_35,1327_34223,0 3292,1327,play,what is the dog doing?,fkONJEgTNJY_25_35,1327_34224,0 3293,1328,someone,who has picked up a handful of some white substance from a mixing bowl?,fnpp8v9NbmY_181_188,1328_34225,0 3294,1328,someone,who is squeezing a handful of some white substance into a lump?,fnpp8v9NbmY_181_188,1328_34226,0 3295,1328,woman,who is making a ball out of raw dough?,fnpp8v9NbmY_181_188,1328_34227,0 3296,1328,person,who is forming a wad out of a mixture in a bowl?,fnpp8v9NbmY_181_188,1328_34228,0 3297,1328,lady,who made a ball out of the dough?,fnpp8v9NbmY_181_188,1328_34229,0 3298,1328,person,who takes some dough out of a bowl?,fnpp8v9NbmY_181_188,1328_34230,0 3299,1328,lady,who formed balls out of the dough?,fnpp8v9NbmY_181_188,1328_34231,0 3300,1328,person,who is making a ball of dough?,fnpp8v9NbmY_181_188,1328_34232,0 3301,1328,lump,what is someone squeezing a handful of some white substance into?,fnpp8v9NbmY_181_188,1328_34233,0 3302,1328,ball,what is a woman making out of raw dough?,fnpp8v9NbmY_181_188,1328_34234,0 3303,1328,ball,what did a lady make out of the dough?,fnpp8v9NbmY_181_188,1328_34235,0 3304,1328,woman,who is preparing flour to cook something?,fnpp8v9NbmY_181_188,1328_34236,0 3305,1328,wad,what is a person forming out of a mixture in a bowl?,fnpp8v9NbmY_181_188,1328_34237,0 3306,1328,dough,what is a person making a ball of?,fnpp8v9NbmY_181_188,1328_34238,0 3307,1328,dough,what does a person take out of a bowl?,fnpp8v9NbmY_181_188,1328_34239,0 3308,1328,hand,what is a woman scooping up a small portion of white batter from a bowl into?,fnpp8v9NbmY_181_188,1328_34240,0 3309,1328,cook,who rolls some cream in his hands?,fnpp8v9NbmY_181_188,1328_34241,0 3310,1328,flmy,what is a woman preparing to cook something?,fnpp8v9NbmY_181_188,1328_34242,0 3311,1328,cream,what does a cook roll in his hands?,fnpp8v9NbmY_181_188,1328_34243,0 3312,1328,woman,who is balling dough?,fnpp8v9NbmY_181_188,1328_34244,0 3313,1328,cook,who is forming dough?,fnpp8v9NbmY_181_188,1328_34245,0 3314,1328,dough,what is a woman balling?,fnpp8v9NbmY_181_188,1328_34246,0 3315,1328,dough,what is the cook forming?,fnpp8v9NbmY_181_188,1328_34247,0 3316,1328,woman,who is cooking?,fnpp8v9NbmY_181_188,1328_34248,0 3317,1328,form,what is a person doing?,fnpp8v9NbmY_181_188,1328_34249,0 3318,1328,ball,what is a woman doing?,fnpp8v9NbmY_181_188,1328_34250,0 3319,1328,cook,what is a woman doing?,fnpp8v9NbmY_181_188,1328_34251,0 3320,1328,prepare,what is a woman doing?,fnpp8v9NbmY_181_188,1328_34252,0 3321,1328,scoop,what is a woman doing?,fnpp8v9NbmY_181_188,1328_34253,0 3322,1328,squeeze,what is someone has picked up a handful of some white substance from a mixing bowl and doing?,fnpp8v9NbmY_181_188,1328_34254,0 3323,1328,form,what is the cook doing?,fnpp8v9NbmY_181_188,1328_34255,0 3324,1329,field,where did the coyote search for food?,fqly5kyO2MI_10_20,1329_34256,0 3325,1329,jackal,what is jogging through a field of high grass?,fqly5kyO2MI_10_20,1329_34257,0 3326,1329,fox,what is looking for something in the grass?,fqly5kyO2MI_10_20,1329_34258,0 3327,1329,jogging,what is a jackal through a field of high grass?,fqly5kyO2MI_10_20,1329_34259,0 3328,1329,field,where is a jackal walking around?,fqly5kyO2MI_10_20,1329_34260,0 3329,1329,field,what did the coyote search for food in?,fqly5kyO2MI_10_20,1329_34261,0 3330,1329,food,what did the coyote search for in the field?,fqly5kyO2MI_10_20,1329_34262,0 3331,1329,coyote,what searched for food in the field?,fqly5kyO2MI_10_20,1329_34263,0 3332,1329,prairie,where is a jackal trotting?,fqly5kyO2MI_10_20,1329_34264,0 3333,1329,field,where does a jackal run?,fqly5kyO2MI_10_20,1329_34265,0 3334,1329,field,where is a jackal hunting?,fqly5kyO2MI_10_20,1329_34266,0 3335,1329,jackal,what is walking around in a field?,fqly5kyO2MI_10_20,1329_34267,0 3336,1329,field,what is a jackal walking around in?,fqly5kyO2MI_10_20,1329_34268,0 3337,1329,coyote,what searched for food?,fqly5kyO2MI_10_20,1329_34269,0 3338,1329,jackal,what is trotting through a field?,fqly5kyO2MI_10_20,1329_34270,0 3339,1329,jackal,what is trotting in the prairie?,fqly5kyO2MI_10_20,1329_34271,0 3340,1329,field,what is a jackal trotting through?,fqly5kyO2MI_10_20,1329_34272,0 3341,1329,jackal,what is running through grass?,fqly5kyO2MI_10_20,1329_34273,0 3342,1329,jackal,what is running over grass?,fqly5kyO2MI_10_20,1329_34274,0 3343,1329,animal,what is hunting for prey?,fqly5kyO2MI_10_20,1329_34275,0 3344,1329,animal,what runs across a field?,fqly5kyO2MI_10_20,1329_34276,0 3345,1329,jackal,what is walking through a field?,fqly5kyO2MI_10_20,1329_34277,0 3346,1329,jackal,what is running through a field?,fqly5kyO2MI_10_20,1329_34278,0 3347,1329,prairie,what is a jackal trotting in?,fqly5kyO2MI_10_20,1329_34279,0 3348,1329,food,what did the coyote search for?,fqly5kyO2MI_10_20,1329_34280,0 3349,1329,prey,who is a wild animal hunting for?,fqly5kyO2MI_10_20,1329_34281,0 3350,1329,field,what is a jackal walking through?,fqly5kyO2MI_10_20,1329_34282,0 3351,1329,gras,what is a jackal running through?,fqly5kyO2MI_10_20,1329_34283,0 3352,1329,jackal,what is hunting in a field?,fqly5kyO2MI_10_20,1329_34284,0 3353,1329,jackal,what runs in a field?,fqly5kyO2MI_10_20,1329_34285,0 3354,1329,gras,what is a jackal running over?,fqly5kyO2MI_10_20,1329_34286,0 3355,1329,field,what does a jackal run in?,fqly5kyO2MI_10_20,1329_34287,0 3356,1329,field,what is a jackal hunting in?,fqly5kyO2MI_10_20,1329_34288,0 3357,1329,field,what does an animal run across?,fqly5kyO2MI_10_20,1329_34289,0 3358,1329,field,what is a fox walking through?,fqly5kyO2MI_10_20,1329_34290,0 3359,1329,jackal,what is hunting?,fqly5kyO2MI_10_20,1329_34291,0 3360,1329,coyote,what is running?,fqly5kyO2MI_10_20,1329_34292,0 3361,1329,walk,what is a jackal doing?,fqly5kyO2MI_10_20,1329_34293,0 3362,1329,jog,what is a jackal doing?,fqly5kyO2MI_10_20,1329_34294,0 3363,1329,hunt,what is a wild animal doing?,fqly5kyO2MI_10_20,1329_34295,0 3364,1329,trot,what is a jackal doing?,fqly5kyO2MI_10_20,1329_34296,0 3365,1329,look,what is a fox doing?,fqly5kyO2MI_10_20,1329_34297,0 3366,1330,man,who is smiling while talking on a cell phone?,fr9H1WLcF1A_141_148,1330_34298,0 3367,1330,man,who is talking on a mobile phone?,fr9H1WLcF1A_141_148,1330_34299,0 3368,1330,man,who is speaking into a cell phone?,fr9H1WLcF1A_141_148,1330_34300,0 3369,1330,man,who is talking on a cell phone?,fr9H1WLcF1A_141_148,1330_34301,0 3370,1330,man,who is talking in a cell phone?,fr9H1WLcF1A_141_148,1330_34302,0 3371,1330,man,who talked on the phone?,fr9H1WLcF1A_141_148,1330_34303,0 3372,1330,man,who talks on the phone?,fr9H1WLcF1A_141_148,1330_34304,0 3373,1330,man,who is talking on a telephone?,fr9H1WLcF1A_141_148,1330_34305,0 3374,1330,man,who is talking on a phone?,fr9H1WLcF1A_141_148,1330_34306,0 3375,1330,man,who is talking on the telephone?,fr9H1WLcF1A_141_148,1330_34307,0 3376,1330,man,who is talking on the phone?,fr9H1WLcF1A_141_148,1330_34308,0 3377,1330,man,who is taking on his mobile?,fr9H1WLcF1A_141_148,1330_34309,0 3378,1330,phone,what did the man talk on?,fr9H1WLcF1A_141_148,1330_34310,0 3379,1330,phone,what does a man talk on?,fr9H1WLcF1A_141_148,1330_34311,0 3380,1330,phone,what is the man talking on?,fr9H1WLcF1A_141_148,1330_34312,0 3381,1330,mobile,what is a man taking on?,fr9H1WLcF1A_141_148,1330_34313,0 3382,1330,smile,what is a man doing?,fr9H1WLcF1A_141_148,1330_34314,0 3383,1330,talk,what is a man doing?,fr9H1WLcF1A_141_148,1330_34315,0 3384,1330,speak,what is a man doing?,fr9H1WLcF1A_141_148,1330_34316,0 3385,1330,talk,what is the man doing?,fr9H1WLcF1A_141_148,1330_34317,0 3386,1331,two,how many young men are playing table tennis?,fr9H1WLcF1A_256_261,1331_34318,0 3387,1331,pong,what are a couple of people playing a game of?,fr9H1WLcF1A_256_261,1331_34319,0 3388,1331,two,how many boys are playing ping pong?,fr9H1WLcF1A_256_261,1331_34320,0 3389,1331,two,how many men are playing ping pong?,fr9H1WLcF1A_256_261,1331_34321,0 3390,1331,two,how many guys play table tennis?,fr9H1WLcF1A_256_261,1331_34322,0 3391,1331,two,how many people are playing ping pong?,fr9H1WLcF1A_256_261,1331_34323,0 3392,1331,two,how many men are playing table tennis?,fr9H1WLcF1A_256_261,1331_34324,0 3393,1331,tenni,what are peoples playing?,fr9H1WLcF1A_256_261,1331_34325,0 3394,1331,pong,what are two boys playing ping?,fr9H1WLcF1A_256_261,1331_34326,0 3395,1331,pong,what are two men playing ping?,fr9H1WLcF1A_256_261,1331_34327,0 3396,1331,pong,what are two people playing ping?,fr9H1WLcF1A_256_261,1331_34328,0 3397,1331,tenni,what are men playing?,fr9H1WLcF1A_256_261,1331_34329,0 3398,1331,tenni,what are the men playing?,fr9H1WLcF1A_256_261,1331_34330,0 3399,1331,tenni,what are two young men playing?,fr9H1WLcF1A_256_261,1331_34331,0 3400,1331,tenni,what do two guys play?,fr9H1WLcF1A_256_261,1331_34332,0 3401,1331,tenni,what are two men playing?,fr9H1WLcF1A_256_261,1331_34333,0 3402,1331,play,what are two young men doing?,fr9H1WLcF1A_256_261,1331_34334,0 3403,1331,play,what are men doing?,fr9H1WLcF1A_256_261,1331_34335,0 3404,1331,play,what are two men doing?,fr9H1WLcF1A_256_261,1331_34336,0 3405,1331,play,what are a couple of people doing?,fr9H1WLcF1A_256_261,1331_34337,0 3406,1331,play,what are peoples doing?,fr9H1WLcF1A_256_261,1331_34338,0 3407,1331,play,what are two people doing?,fr9H1WLcF1A_256_261,1331_34339,0 3408,1331,play,what are two boys doing?,fr9H1WLcF1A_256_261,1331_34340,0 3409,1331,play,what are the men doing?,fr9H1WLcF1A_256_261,1331_34341,0 3410,1332,toy,what are many boys in a fenced yard fighting with?,fr9H1WLcF1A_326_336,1332_34342,0 3411,1332,yard,what are children having a play battle in?,fr9H1WLcF1A_326_336,1332_34343,0 3412,1332,yard,what are some boys pretending to fight with fake weapons in?,fr9H1WLcF1A_326_336,1332_34344,0 3413,1332,battle,what are children having in a yard?,fr9H1WLcF1A_326_336,1332_34345,0 3414,1332,army,what are a number of boys playing in a yard?,fr9H1WLcF1A_326_336,1332_34346,0 3415,1332,yard,what are a number of boys playing army in?,fr9H1WLcF1A_326_336,1332_34347,0 3416,1332,play,what are children fighting in a yard?,fr9H1WLcF1A_326_336,1332_34348,0 3417,1332,backyard,what are several boys playing in?,fr9H1WLcF1A_326_336,1332_34349,0 3418,1332,war,what are some boys playing?,fr9H1WLcF1A_326_336,1332_34350,0 3419,1332,fight,what are the boys playing?,fr9H1WLcF1A_326_336,1332_34351,0 3420,1332,fight,what are many boys in a fenced yard doing?,fr9H1WLcF1A_326_336,1332_34352,0 3421,1332,fight,what are children doing?,fr9H1WLcF1A_326_336,1332_34353,0 3422,1332,play,what are a number of boys doing?,fr9H1WLcF1A_326_336,1332_34354,0 3423,1332,fight,what are boys doing?,fr9H1WLcF1A_326_336,1332_34355,0 3424,1332,pretend,what are some boys doing?,fr9H1WLcF1A_326_336,1332_34356,0 3425,1332,fight,what are kids doing?,fr9H1WLcF1A_326_336,1332_34357,0 3426,1332,play,what are several boys doing?,fr9H1WLcF1A_326_336,1332_34358,0 3427,1332,fight,what is children are play doing?,fr9H1WLcF1A_326_336,1332_34359,0 3428,1332,play,what are several kids doing?,fr9H1WLcF1A_326_336,1332_34360,0 3429,1332,play,what are the boys doing?,fr9H1WLcF1A_326_336,1332_34361,0 3430,1333,man,who is playing with a hackey sack in a work office?,fvBs0xpEZhQ_10_30,1333_34362,0 3431,1333,man,who played haki sak in the office?,fvBs0xpEZhQ_10_30,1333_34363,0 3432,1333,man,who is playing hacky sack in an office?,fvBs0xpEZhQ_10_30,1333_34364,0 3433,1333,man,who is playing with a hackey sack in an office?,fvBs0xpEZhQ_10_30,1333_34365,0 3434,1333,man,who is playing hacky sack in the office?,fvBs0xpEZhQ_10_30,1333_34366,0 3435,1333,man,who is playing is kicking a piece of paper?,fvBs0xpEZhQ_10_30,1333_34367,0 3436,1333,office,what did the man play haki sak in?,fvBs0xpEZhQ_10_30,1333_34368,0 3437,1333,man,who is playing with a ball in a office?,fvBs0xpEZhQ_10_30,1333_34369,0 3438,1333,man,who does balancing tricks with a ball?,fvBs0xpEZhQ_10_30,1333_34370,0 3439,1333,office,what is a man playing hacky sack in?,fvBs0xpEZhQ_10_30,1333_34371,0 3440,1333,haki,who did the man play in the office?,fvBs0xpEZhQ_10_30,1333_34372,0 3441,1333,man,who is tossing a ball with his feet?,fvBs0xpEZhQ_10_30,1333_34373,0 3442,1333,man,who is playing with ball in office?,fvBs0xpEZhQ_10_30,1333_34374,0 3443,1333,paper,what is a man playing is kicking a piece of?,fvBs0xpEZhQ_10_30,1333_34375,0 3444,1333,man,who is kicking around a foot bag?,fvBs0xpEZhQ_10_30,1333_34376,0 3445,1333,sack,what is a man playing in an office?,fvBs0xpEZhQ_10_30,1333_34377,0 3446,1333,office,what is a man playing with a ball in?,fvBs0xpEZhQ_10_30,1333_34378,0 3447,1333,office,what is a man playing with ball in?,fvBs0xpEZhQ_10_30,1333_34379,0 3448,1333,ball,what is a man playing with in a office?,fvBs0xpEZhQ_10_30,1333_34380,0 3449,1333,ball,what is a man playing with in office?,fvBs0xpEZhQ_10_30,1333_34381,0 3450,1333,sack,what is a man playing in the office?,fvBs0xpEZhQ_10_30,1333_34382,0 3451,1333,ball,what does a man balancing tricks with?,fvBs0xpEZhQ_10_30,1333_34383,0 3452,1333,man,who plays hackysack in an office?,fvBs0xpEZhQ_10_30,1333_34384,0 3453,1333,ball,what is a man tossing with his feet?,fvBs0xpEZhQ_10_30,1333_34385,0 3454,1333,hackysack,who does a man play in an office?,fvBs0xpEZhQ_10_30,1333_34386,0 3455,1333,man,who is in an office?,fvBs0xpEZhQ_10_30,1333_34387,0 3456,1333,guy,who is playing hackysack?,fvBs0xpEZhQ_10_30,1333_34388,0 3457,1333,office,what does a man play hackysack in?,fvBs0xpEZhQ_10_30,1333_34389,0 3458,1333,man,who is playing with a ball?,fvBs0xpEZhQ_10_30,1333_34390,0 3459,1333,office,what is a man in?,fvBs0xpEZhQ_10_30,1333_34391,0 3460,1333,ball,what is the man playing with?,fvBs0xpEZhQ_10_30,1333_34392,0 3461,1333,hackysack,what is a guy playing?,fvBs0xpEZhQ_10_30,1333_34393,0 3462,1333,juggle,what is a man is in an office and doing?,fvBs0xpEZhQ_10_30,1333_34394,0 3463,1333,play,what is a man doing?,fvBs0xpEZhQ_10_30,1333_34395,0 3464,1333,tos,what is a man doing?,fvBs0xpEZhQ_10_30,1333_34396,0 3465,1333,kick,what is a man doing?,fvBs0xpEZhQ_10_30,1333_34397,0 3466,1333,pas,what is a man doing?,fvBs0xpEZhQ_10_30,1333_34398,0 3467,1333,play,what is a guy doing?,fvBs0xpEZhQ_10_30,1333_34399,0 3468,1333,play,what is the man doing?,fvBs0xpEZhQ_10_30,1333_34400,0 3469,1333,balance,what is a man does doing?,fvBs0xpEZhQ_10_30,1333_34401,0 3470,1334,man,who is juicing both halves of a lemon on a citrus juicer?,fw8qvK67jYY_50_97,1334_34402,0 3471,1334,man,what lemon juice by squeezing two lemon halves over the juicer top?,fw8qvK67jYY_50_97,1334_34403,0 3472,1334,person,who is squeezing juice from lemons by twisting them on a juicer?,fw8qvK67jYY_50_97,1334_34404,0 3473,1334,someone,who is using a juicer to squeeze the juice out of a lemon?,fw8qvK67jYY_50_97,1334_34405,0 3474,1334,juice,what do a man extracts lemon by squeezing two lemon halves over the juicer top?,fw8qvK67jYY_50_97,1334_34406,0 3475,1334,man,who is squeezing the juice out of a whole lemon?,fw8qvK67jYY_50_97,1334_34407,0 3476,1334,lemon,what is a man juicing both halves of on a citrus juicer?,fw8qvK67jYY_50_97,1334_34408,0 3477,1334,juicer,who is someone using to squeeze the juice out of a lemon?,fw8qvK67jYY_50_97,1334_34409,0 3478,1334,person,who squeezes juice out of a lemon?,fw8qvK67jYY_50_97,1334_34410,0 3479,1334,juice,what is a person squeezing from lemons by twisting them on a juicer?,fw8qvK67jYY_50_97,1334_34411,0 3480,1334,man,who is squeezing juice from a lemon?,fw8qvK67jYY_50_97,1334_34412,0 3481,1334,lemon,what does a person squeeze juice out of?,fw8qvK67jYY_50_97,1334_34413,0 3482,1334,individual,who cuts a lemon in half and juices it?,fw8qvK67jYY_50_97,1334_34414,0 3483,1334,juice,what is a man squeezing from a lemon?,fw8qvK67jYY_50_97,1334_34415,0 3484,1334,someone,who squeezed juice from a lemon?,fw8qvK67jYY_50_97,1334_34416,0 3485,1334,man,what lemon juice by holding top?,fw8qvK67jYY_50_97,1334_34417,0 3486,1334,juice,what do a man extracts lemon by holding top?,fw8qvK67jYY_50_97,1334_34418,0 3487,1334,lemon,what is a man squeezing juice from?,fw8qvK67jYY_50_97,1334_34419,0 3488,1334,someone,who is juicing lemons?,fw8qvK67jYY_50_97,1334_34420,0 3489,1334,man,who is extracting lemon juice?,fw8qvK67jYY_50_97,1334_34421,0 3490,1334,lemon,what did someone squeeze juice from?,fw8qvK67jYY_50_97,1334_34422,0 3491,1334,man,who is squeezing lemon juice?,fw8qvK67jYY_50_97,1334_34423,0 3492,1334,juice,what did someone squeeze from a lemon?,fw8qvK67jYY_50_97,1334_34424,0 3493,1334,woman,who is juicing a lemon?,fw8qvK67jYY_50_97,1334_34425,0 3494,1334,lemon,what is a woman juicing?,fw8qvK67jYY_50_97,1334_34426,0 3495,1334,lemon,what is the person juicing?,fw8qvK67jYY_50_97,1334_34427,0 3496,1334,lemon,what is a man extracting?,fw8qvK67jYY_50_97,1334_34428,0 3497,1334,juicing,what is a man doing?,fw8qvK67jYY_50_97,1334_34429,0 3498,1334,use,what is someone doing?,fw8qvK67jYY_50_97,1334_34430,0 3499,1334,try,what is a man doing?,fw8qvK67jYY_50_97,1334_34431,0 3500,1334,squeeze,what is a man doing?,fw8qvK67jYY_50_97,1334_34432,0 3501,1334,extract,what is a man doing?,fw8qvK67jYY_50_97,1334_34433,0 3502,1334,squeeze,what is a person doing?,fw8qvK67jYY_50_97,1334_34434,0 3503,1334,juicing,what is a woman doing?,fw8qvK67jYY_50_97,1334_34435,0 3504,1334,hold,what is a man extracts lemon juice by doing?,fw8qvK67jYY_50_97,1334_34436,0 3505,1334,juicing,what is the person doing?,fw8qvK67jYY_50_97,1334_34437,0 3506,1335,elephant,what tried to eat some leaves off a small tree?,g1Gldu1KS44_8_14,1335_34438,0 3507,1335,elephant,what ate some leaves off a small tree?,g1Gldu1KS44_8_14,1335_34439,0 3508,1335,elephant,what is eating leaves off a small tree?,g1Gldu1KS44_8_14,1335_34440,0 3509,1335,elephant,what is eating a small tree?,g1Gldu1KS44_8_14,1335_34441,0 3510,1335,elephant,what eats a sapling?,g1Gldu1KS44_8_14,1335_34442,0 3511,1335,elephant,what eats a plant?,g1Gldu1KS44_8_14,1335_34443,0 3512,1335,elephant,what is eating leaf?,g1Gldu1KS44_8_14,1335_34444,0 3513,1335,elephant,what is eating leaves?,g1Gldu1KS44_8_14,1335_34445,0 3514,1335,elephant,what is eating a tree?,g1Gldu1KS44_8_14,1335_34446,0 3515,1335,plant,what does a baby elephant eat?,g1Gldu1KS44_8_14,1335_34447,0 3516,1335,leaf,what is a baby elephant eating?,g1Gldu1KS44_8_14,1335_34448,0 3517,1335,tree,what is an elephant eating?,g1Gldu1KS44_8_14,1335_34449,0 3518,1335,elephant,what is walking?,g1Gldu1KS44_8_14,1335_34450,0 3519,1335,elephant,what walks around?,g1Gldu1KS44_8_14,1335_34451,0 3520,1335,elephant,what is eating?,g1Gldu1KS44_8_14,1335_34452,0 3521,1335,walk,what is a baby elephant doing?,g1Gldu1KS44_8_14,1335_34453,0 3522,1335,eat,what is a baby elephant doing?,g1Gldu1KS44_8_14,1335_34454,0 3523,1335,eat,what is an elephant doing?,g1Gldu1KS44_8_14,1335_34455,0 3524,1335,stand,what is a baby elephant doing?,g1Gldu1KS44_8_14,1335_34456,0 3525,1335,eat,what is the baby elephant doing?,g1Gldu1KS44_8_14,1335_34457,0 3526,1336,two,how many polar bears are wrestling in the snow?,g2IYQq7IkXc_124_132,1336_34458,0 3527,1336,two,how many polar bears are fighting with each other on the snow?,g2IYQq7IkXc_124_132,1336_34459,0 3528,1336,kill,what did the polar bears fight over on the ice?,g2IYQq7IkXc_124_132,1336_34460,0 3529,1336,ice,what did the polar bears fight over the kill on?,g2IYQq7IkXc_124_132,1336_34461,0 3530,1336,bear,what does an injured polar bear wrestle with?,g2IYQq7IkXc_124_132,1336_34462,0 3531,1336,snow,what are two polar bears fighting with each other on?,g2IYQq7IkXc_124_132,1336_34463,0 3532,1336,snow,what are polar bears playing in?,g2IYQq7IkXc_124_132,1336_34464,0 3533,1336,snow,what are two polar bears wrestling in?,g2IYQq7IkXc_124_132,1336_34465,0 3534,1336,two,how many polar bears are fighting?,g2IYQq7IkXc_124_132,1336_34466,0 3535,1336,kill,what did the polar bears fight over?,g2IYQq7IkXc_124_132,1336_34467,0 3536,1336,two,how many bears are fighting?,g2IYQq7IkXc_124_132,1336_34468,0 3537,1336,wrestle,what are two polar bears doing?,g2IYQq7IkXc_124_132,1336_34469,0 3538,1336,fight,what are polar bears doing?,g2IYQq7IkXc_124_132,1336_34470,0 3539,1336,fight,what are two bears doing?,g2IYQq7IkXc_124_132,1336_34471,0 3540,1336,play,what are polar bears doing?,g2IYQq7IkXc_124_132,1336_34472,0 3541,1336,fight,what are the polar bears doing?,g2IYQq7IkXc_124_132,1336_34473,0 3542,1337,bear,what ran toward a herd of walrus?,g2IYQq7IkXc_23_32,1337_34474,0 3543,1337,bear,what is running towards a group of walruses?,g2IYQq7IkXc_23_32,1337_34475,0 3544,1337,bear,what walks toward a crowd of walruses?,g2IYQq7IkXc_23_32,1337_34476,0 3545,1337,bear,what is running on a strip of land engulfed by the sea towards a herd of walruses?,g2IYQq7IkXc_23_32,1337_34477,0 3546,1337,bear,what is running on a strip of land in the ocean?,g2IYQq7IkXc_23_32,1337_34478,0 3547,1337,bear,what is chasing a group of walruses?,g2IYQq7IkXc_23_32,1337_34479,0 3548,1337,bear,what is charging a group of walruses?,g2IYQq7IkXc_23_32,1337_34480,0 3549,1337,bear,what is chasing a group of walrus?,g2IYQq7IkXc_23_32,1337_34481,0 3550,1337,walru,what is a polar bear chasing a group of?,g2IYQq7IkXc_23_32,1337_34482,0 3551,1337,ocean,what is a polar bear running on a strip of land in?,g2IYQq7IkXc_23_32,1337_34483,0 3552,1337,bear,what appears to be chasing off many walruses?,g2IYQq7IkXc_23_32,1337_34484,0 3553,1337,bear,what ambled toward the walruses?,g2IYQq7IkXc_23_32,1337_34485,0 3554,1337,bear,what is running toward the seals?,g2IYQq7IkXc_23_32,1337_34486,0 3555,1337,bear,what is running toward walruses?,g2IYQq7IkXc_23_32,1337_34487,0 3556,1337,bear,what runs across a shoreline?,g2IYQq7IkXc_23_32,1337_34488,0 3557,1337,shoreline,what does a polar bear run across?,g2IYQq7IkXc_23_32,1337_34489,0 3558,1337,bear,what is running with others?,g2IYQq7IkXc_23_32,1337_34490,0 3559,1337,bear,what is walking?,g2IYQq7IkXc_23_32,1337_34491,0 3560,1337,bear,what is running?,g2IYQq7IkXc_23_32,1337_34492,0 3561,1337,chase,what is a polar bear doing?,g2IYQq7IkXc_23_32,1337_34493,0 3562,1337,walk,what is a polar bear doing?,g2IYQq7IkXc_23_32,1337_34494,0 3563,1337,charge,what is a polar bear doing?,g2IYQq7IkXc_23_32,1337_34495,0 3564,1338,man,who is playing a guitar seated outside a restaurant?,g36ho6UrBz0_5_20,1338_34496,0 3565,1338,man,who is playing a guitar on the patio?,g36ho6UrBz0_5_20,1338_34497,0 3566,1338,man,who is playing a guitar while sitting down?,g36ho6UrBz0_5_20,1338_34498,0 3567,1338,man,who is playing an acoustic guitar outdoors?,g36ho6UrBz0_5_20,1338_34499,0 3568,1338,guitar,what is a man playing on the patio?,g36ho6UrBz0_5_20,1338_34500,0 3569,1338,patio,what is a man playing a guitar on?,g36ho6UrBz0_5_20,1338_34501,0 3570,1338,guitar,what is a man playing while sitting down?,g36ho6UrBz0_5_20,1338_34502,0 3571,1338,guitar,what is the man plying on the patio?,g36ho6UrBz0_5_20,1338_34503,0 3572,1338,man,who is playing guitar?,g36ho6UrBz0_5_20,1338_34504,0 3573,1338,man,who plays a guitar?,g36ho6UrBz0_5_20,1338_34505,0 3574,1338,man,who is playing a guitar?,g36ho6UrBz0_5_20,1338_34506,0 3575,1338,man,who is playing the guitar?,g36ho6UrBz0_5_20,1338_34507,0 3576,1338,person,who is performing with his guitar?,g36ho6UrBz0_5_20,1338_34508,0 3577,1338,man,who plays guitar?,g36ho6UrBz0_5_20,1338_34509,0 3578,1338,guitar,what does a seated man play?,g36ho6UrBz0_5_20,1338_34510,0 3579,1338,guitar,what is a sitting man playing?,g36ho6UrBz0_5_20,1338_34511,0 3580,1338,guitar,what does a man play?,g36ho6UrBz0_5_20,1338_34512,0 3581,1338,guitar,what is the man playing?,g36ho6UrBz0_5_20,1338_34513,0 3582,1338,guitar,what did the man play?,g36ho6UrBz0_5_20,1338_34514,0 3583,1338,guitar,what is a person performing with?,g36ho6UrBz0_5_20,1338_34515,0 3584,1338,play,what is a man doing?,g36ho6UrBz0_5_20,1338_34516,0 3585,1338,perform,what is a person doing?,g36ho6UrBz0_5_20,1338_34517,0 3586,1338,sit,what is a doing?,g36ho6UrBz0_5_20,1338_34518,0 3587,1338,play,what is the man doing?,g36ho6UrBz0_5_20,1338_34519,0 3588,1338,ply,what is the man doing?,g36ho6UrBz0_5_20,1338_34520,0 3589,1339,food,what do a swarm of ants eat a chunk of?,g8LUhxR-6Wg_0_8,1339_34521,0 3590,1339,food,what are a bunch of ants gathering bits of?,g8LUhxR-6Wg_0_8,1339_34522,0 3591,1339,fruit,what are several ants eating a piece of?,g8LUhxR-6Wg_0_8,1339_34523,0 3592,1339,food,what are a bunch of ants gathering?,g8LUhxR-6Wg_0_8,1339_34524,0 3593,1339,flesh,what are fire ants eating?,g8LUhxR-6Wg_0_8,1339_34525,0 3594,1339,food,what are a colony of ants gathering?,g8LUhxR-6Wg_0_8,1339_34526,0 3595,1339,fire,what are eating flesh?,g8LUhxR-6Wg_0_8,1339_34527,0 3596,1339,fire,what are attending to eggs?,g8LUhxR-6Wg_0_8,1339_34528,0 3597,1339,food,what did the ants swarm for?,g8LUhxR-6Wg_0_8,1339_34529,0 3598,1339,food,what are ants gathering?,g8LUhxR-6Wg_0_8,1339_34530,0 3599,1339,food,what are ants carrying?,g8LUhxR-6Wg_0_8,1339_34531,0 3600,1339,food,what are ants eating?,g8LUhxR-6Wg_0_8,1339_34532,0 3601,1339,gather,what are a bunch of ants doing?,g8LUhxR-6Wg_0_8,1339_34533,0 3602,1339,gather,what are a colony of ants doing?,g8LUhxR-6Wg_0_8,1339_34534,0 3603,1339,accumulate,what is a group of red fire ants are busy doing?,g8LUhxR-6Wg_0_8,1339_34535,0 3604,1339,carry,what are ants doing?,g8LUhxR-6Wg_0_8,1339_34536,0 3605,1339,crawl,what are ants doing?,g8LUhxR-6Wg_0_8,1339_34537,0 3606,1339,eat,what are ants doing?,g8LUhxR-6Wg_0_8,1339_34538,0 3607,1339,eat,what are fire ants doing?,g8LUhxR-6Wg_0_8,1339_34539,0 3608,1339,eat,what are several ants doing?,g8LUhxR-6Wg_0_8,1339_34540,0 3609,1339,attend,what are some fire ants doing?,g8LUhxR-6Wg_0_8,1339_34541,0 3610,1339,gather,what is the ants were busy doing?,g8LUhxR-6Wg_0_8,1339_34542,0 3611,1339,scavenge,what were the ants doing?,g8LUhxR-6Wg_0_8,1339_34543,0 3612,1340,man,who is seen falling down a staircase onto the floor below?,g9aZcaEg7iY_0_9,1340_34544,0 3613,1340,floor,what is a man seen falling down a staircase onto below?,g9aZcaEg7iY_0_9,1340_34545,0 3614,1340,man,who rolls down a flight of stairs?,g9aZcaEg7iY_0_9,1340_34546,0 3615,1340,staircase,what is a man seen falling down onto the floor below?,g9aZcaEg7iY_0_9,1340_34547,0 3616,1340,guy,who tumbles down the stairs?,g9aZcaEg7iY_0_9,1340_34548,0 3617,1340,man,who is falling down on the stairs?,g9aZcaEg7iY_0_9,1340_34549,0 3618,1340,man,who tumbled down the stairs?,g9aZcaEg7iY_0_9,1340_34550,0 3619,1340,man,who fell down the stairs?,g9aZcaEg7iY_0_9,1340_34551,0 3620,1340,man,who falls down the stairs?,g9aZcaEg7iY_0_9,1340_34552,0 3621,1340,man,who is falling down the stairs?,g9aZcaEg7iY_0_9,1340_34553,0 3622,1340,guy,who then gets up?,g9aZcaEg7iY_0_9,1340_34554,0 3623,1340,fall,what is a man doing?,g9aZcaEg7iY_0_9,1340_34555,0 3624,1340,fall,what is a man is seen doing?,g9aZcaEg7iY_0_9,1340_34556,0 3625,1341,soldier,who fires two huge machine guns at the same time?,gCra4qOrjFw_1_17,1341_34557,0 3626,1341,soldier,who is firing two squad automatic weapons?,gCra4qOrjFw_1_17,1341_34558,0 3627,1341,two,how many guns does a soldier shoot off at once?,gCra4qOrjFw_1_17,1341_34559,0 3628,1341,two,how many machine guns did the soldier fire?,gCra4qOrjFw_1_17,1341_34560,0 3629,1341,soldier,who is firing two machine guns simultaneously with his hands?,gCra4qOrjFw_1_17,1341_34561,0 3630,1341,two,how many machine guns is the soldier shooting?,gCra4qOrjFw_1_17,1341_34562,0 3631,1341,two,how many large guns a soldier firing?,gCra4qOrjFw_1_17,1341_34563,0 3632,1341,two,how many rifles does a soldier shoot simultaneously?,gCra4qOrjFw_1_17,1341_34564,0 3633,1341,soldier,who shoots off two guns at once?,gCra4qOrjFw_1_17,1341_34565,0 3634,1341,soldier,who is firing a machine gun?,gCra4qOrjFw_1_17,1341_34566,0 3635,1341,two,how many guns is a soldier shooting?,gCra4qOrjFw_1_17,1341_34567,0 3636,1341,soldier,who fired two machine guns?,gCra4qOrjFw_1_17,1341_34568,0 3637,1341,soldier,who firing two large guns?,gCra4qOrjFw_1_17,1341_34569,0 3638,1341,soldier,who is shooting two machine guns?,gCra4qOrjFw_1_17,1341_34570,0 3639,1341,soldier,who shoots two rifles simultaneously?,gCra4qOrjFw_1_17,1341_34571,0 3640,1341,soldier,who is firing two weapons?,gCra4qOrjFw_1_17,1341_34572,0 3641,1341,soldier,who is shooting two guns?,gCra4qOrjFw_1_17,1341_34573,0 3642,1341,soldier,who shot his weapons?,gCra4qOrjFw_1_17,1341_34574,0 3643,1341,machine,what did the soldier fire?,gCra4qOrjFw_1_17,1341_34575,0 3644,1341,machine,what is the soldier shooting?,gCra4qOrjFw_1_17,1341_34576,0 3645,1341,fire,what is a man dressed in commando clothes doing?,gCra4qOrjFw_1_17,1341_34577,0 3646,1341,shoot,what is a soldier doing?,gCra4qOrjFw_1_17,1341_34578,0 3647,1341,stand,what is a soldier doing?,gCra4qOrjFw_1_17,1341_34579,0 3648,1341,shoot,what is the soldier doing?,gCra4qOrjFw_1_17,1341_34580,0 3649,1342,person,who is spreading garlic butter across a piece of bread?,gGDtPJzh_0s_30_45,1342_34581,0 3650,1342,person,who is spreading butter onto a piece of bread?,gGDtPJzh_0s_30_45,1342_34582,0 3651,1342,spoon,what do garlic on the entire surface of a frech bread slice using?,gGDtPJzh_0s_30_45,1342_34583,0 3652,1342,person,who is spreading butter on a slice of french bread with a spoon?,gGDtPJzh_0s_30_45,1342_34584,0 3653,1342,someone,who spread mayonnaise and mustard on a roll?,gGDtPJzh_0s_30_45,1342_34585,0 3654,1342,someone,who is spreading a mustard on a sliced roll?,gGDtPJzh_0s_30_45,1342_34586,0 3655,1342,person,who covers a piece of bread with butter?,gGDtPJzh_0s_30_45,1342_34587,0 3656,1342,someone,who uses a spoon to spread butter over the two halves?,gGDtPJzh_0s_30_45,1342_34588,0 3657,1342,man,who is spreading butter on garlic bread?,gGDtPJzh_0s_30_45,1342_34589,0 3658,1342,man,who spreads a mixture of butter?,gGDtPJzh_0s_30_45,1342_34590,0 3659,1342,person,who is spreading butter on the bread?,gGDtPJzh_0s_30_45,1342_34591,0 3660,1342,roll,what did someone spread mayonnaise and mustard on?,gGDtPJzh_0s_30_45,1342_34592,0 3661,1342,butter,what is a person spreading on a slice of french bread with a spoon?,gGDtPJzh_0s_30_45,1342_34593,0 3662,1342,butter,what is a person spreading onto a piece of bread?,gGDtPJzh_0s_30_45,1342_34594,0 3663,1342,table,what is a split loaf of bread laying on?,gGDtPJzh_0s_30_45,1342_34595,0 3664,1342,mustard,what is someone spreading on a sliced roll?,gGDtPJzh_0s_30_45,1342_34596,0 3665,1342,butter,what is a person spreading across a piece of bread?,gGDtPJzh_0s_30_45,1342_34597,0 3666,1342,butter,what is a man spreading on garlic bread?,gGDtPJzh_0s_30_45,1342_34598,0 3667,1342,butter,what does someone use a spoon to spread over the two halves?,gGDtPJzh_0s_30_45,1342_34599,0 3668,1342,spoon,what does someone use to spread butter over the two halves?,gGDtPJzh_0s_30_45,1342_34600,0 3669,1342,bread,what does a person cover a piece of with butter?,gGDtPJzh_0s_30_45,1342_34601,0 3670,1342,butter,what does a person cover a piece of bread with?,gGDtPJzh_0s_30_45,1342_34602,0 3671,1342,butter,what does a man spread a mixture of?,gGDtPJzh_0s_30_45,1342_34603,0 3672,1342,butter,what is the person spreading on the bread?,gGDtPJzh_0s_30_45,1342_34604,0 3673,1342,someone,who is spreading something onto some bread?,gGDtPJzh_0s_30_45,1342_34605,0 3674,1342,mayonnaise,what did someone spread on a roll?,gGDtPJzh_0s_30_45,1342_34606,0 3675,1342,bread,what is the person spreading butter on?,gGDtPJzh_0s_30_45,1342_34607,0 3676,1342,bread,what is a man spreading butter on?,gGDtPJzh_0s_30_45,1342_34608,0 3677,1342,bread,what is butter being put on?,gGDtPJzh_0s_30_45,1342_34609,0 3678,1342,bread,what is butter spread on?,gGDtPJzh_0s_30_45,1342_34610,0 3679,1342,man,who is buttering bread?,gGDtPJzh_0s_30_45,1342_34611,0 3680,1342,something,what is someone spreading onto some bread?,gGDtPJzh_0s_30_45,1342_34612,0 3681,1342,man,who is making garlic bread?,gGDtPJzh_0s_30_45,1342_34613,0 3682,1342,bread,what is someone spreading something onto?,gGDtPJzh_0s_30_45,1342_34614,0 3683,1342,butter,what is being put on bread?,gGDtPJzh_0s_30_45,1342_34615,0 3684,1342,butter,what is spread on bread?,gGDtPJzh_0s_30_45,1342_34616,0 3685,1342,bread,what is a man buttering?,gGDtPJzh_0s_30_45,1342_34617,0 3686,1342,bread,what is a man making?,gGDtPJzh_0s_30_45,1342_34618,0 3687,1342,butter,what is a man doing?,gGDtPJzh_0s_30_45,1342_34619,0 3688,1342,spread,what is a man doing?,gGDtPJzh_0s_30_45,1342_34620,0 3689,1342,use,what is a man spreads a mixture of butter and garlic on the entire surface of a frech bread slice doing?,gGDtPJzh_0s_30_45,1342_34621,0 3690,1342,spread,what is a person doing?,gGDtPJzh_0s_30_45,1342_34622,0 3691,1342,lay,what is a split loaf of bread doing?,gGDtPJzh_0s_30_45,1342_34623,0 3692,1342,spread,what is someone doing?,gGDtPJzh_0s_30_45,1342_34624,0 3693,1342,spread,what is the person doing?,gGDtPJzh_0s_30_45,1342_34625,0 3694,1343,man,who puts a piece of pepperoni pizza on the lid after he closes the box?,gHyXstpe_N8_116_125,1343_34626,0 3695,1343,man,who took a piece of pepperoni pizza out of the box?,gHyXstpe_N8_116_125,1343_34627,0 3696,1343,person,who takes a pizza slice from a box?,gHyXstpe_N8_116_125,1343_34628,0 3697,1343,man,who is removing a slice of pizza from the box?,gHyXstpe_N8_116_125,1343_34629,0 3698,1343,someone,who is picking up a piece of pizza?,gHyXstpe_N8_116_125,1343_34630,0 3699,1343,person,who is taking pizza from a pizza box?,gHyXstpe_N8_116_125,1343_34631,0 3700,1343,man,who takes a piece of pepperoni pizza out of a pizza box?,gHyXstpe_N8_116_125,1343_34632,0 3701,1343,man,who picks up a slice of pizza?,gHyXstpe_N8_116_125,1343_34633,0 3702,1343,someone,what is removing a slice of pizza from a box?,gHyXstpe_N8_116_125,1343_34634,0 3703,1343,man,who is selecting a slice of pizza?,gHyXstpe_N8_116_125,1343_34635,0 3704,1343,man,who took a piece of pizza out of the box?,gHyXstpe_N8_116_125,1343_34636,0 3705,1343,man,who takes a slice of pizza out of a box?,gHyXstpe_N8_116_125,1343_34637,0 3706,1343,box,what is someone removing a slice of pizza from?,gHyXstpe_N8_116_125,1343_34638,0 3707,1343,box,what is a man removing a slice of pizza from?,gHyXstpe_N8_116_125,1343_34639,0 3708,1343,pizza,what does a man put a piece of on the lid after he closes the box?,gHyXstpe_N8_116_125,1343_34640,0 3709,1343,pizza,what does a man pick up a slice of?,gHyXstpe_N8_116_125,1343_34641,0 3710,1343,pizza,what is someone removing a slice of from a box?,gHyXstpe_N8_116_125,1343_34642,0 3711,1343,pizza,what is a man selecting a slice of?,gHyXstpe_N8_116_125,1343_34643,0 3712,1343,pizza,what is someone picking up a piece of?,gHyXstpe_N8_116_125,1343_34644,0 3713,1343,man,who reaches into a cardboard pizza box?,gHyXstpe_N8_116_125,1343_34645,0 3714,1343,pizza,what did the man take a piece of out of the box?,gHyXstpe_N8_116_125,1343_34646,0 3715,1343,pizza,what is a man removing a slice of from the box?,gHyXstpe_N8_116_125,1343_34647,0 3716,1343,person,who grabs a slice of pizza?,gHyXstpe_N8_116_125,1343_34648,0 3717,1343,pizza,what is a person taking from a pizza box?,gHyXstpe_N8_116_125,1343_34649,0 3718,1343,man,who took a slice of pizza?,gHyXstpe_N8_116_125,1343_34650,0 3719,1343,pizza,what does a man take a piece of out of a pizza box?,gHyXstpe_N8_116_125,1343_34651,0 3720,1343,pizza,what does a man take a slice of out of a box?,gHyXstpe_N8_116_125,1343_34652,0 3721,1343,man,who takes a slice of pizza?,gHyXstpe_N8_116_125,1343_34653,0 3722,1343,pizza,what did the man take a slice of?,gHyXstpe_N8_116_125,1343_34654,0 3723,1343,pizza,what does a man take a slice of?,gHyXstpe_N8_116_125,1343_34655,0 3724,1343,pizza,what a person grabs a slice of?,gHyXstpe_N8_116_125,1343_34656,0 3725,1343,man,who takes out a piece?,gHyXstpe_N8_116_125,1343_34657,0 3726,1343,man,who is taking a pizza piece?,gHyXstpe_N8_116_125,1343_34658,0 3727,1343,man,who is taking some pizza?,gHyXstpe_N8_116_125,1343_34659,0 3728,1343,piece,what does a man take out?,gHyXstpe_N8_116_125,1343_34660,0 3729,1343,pizza,what is a man taking?,gHyXstpe_N8_116_125,1343_34661,0 3730,1343,pick,what is someone doing?,gHyXstpe_N8_116_125,1343_34662,0 3731,1343,select,what is a man doing?,gHyXstpe_N8_116_125,1343_34663,0 3732,1344,salami,who are removed from a slice of pizza?,gHyXstpe_N8_140_150,1344_34664,0 3733,1344,someone,who picked the pepperoni off the pizza slice?,gHyXstpe_N8_140_150,1344_34665,0 3734,1344,person,who picks the pepperoni off of a pizza slice?,gHyXstpe_N8_140_150,1344_34666,0 3735,1344,man,who picked off the pepperoni from the piece of pizza?,gHyXstpe_N8_140_150,1344_34667,0 3736,1344,man,who is taking off the pepperoni from the pizza slice?,gHyXstpe_N8_140_150,1344_34668,0 3737,1344,someone,who is picking meat off of a pizza slice?,gHyXstpe_N8_140_150,1344_34669,0 3738,1344,man,who removes pepperonis from a pizza slice?,gHyXstpe_N8_140_150,1344_34670,0 3739,1344,someone,who is peeling off the pepperonis on a pizza slice?,gHyXstpe_N8_140_150,1344_34671,0 3740,1344,someone,what is taking pepperoni off a slice of pizza?,gHyXstpe_N8_140_150,1344_34672,0 3741,1344,man,who is picking the pepperoni off a pizza?,gHyXstpe_N8_140_150,1344_34673,0 3742,1344,person,who is peeling pepperoni off a pizza?,gHyXstpe_N8_140_150,1344_34674,0 3743,1344,man,who is using a fork and his fingers to pick pieces of pepperoni off of a slice of pizza?,gHyXstpe_N8_140_150,1344_34675,0 3744,1344,man,who removes the pepperoni from some pizza?,gHyXstpe_N8_140_150,1344_34676,0 3745,1344,pepperoni,what did someone pick off the pizza slice?,gHyXstpe_N8_140_150,1344_34677,0 3746,1344,pepperoni,what is someone taking off a slice of pizza?,gHyXstpe_N8_140_150,1344_34678,0 3747,1344,pepperoni,what did the man pick off from the piece of pizza?,gHyXstpe_N8_140_150,1344_34679,0 3748,1344,pepperoni,what is someone peeling off on a pizza slice?,gHyXstpe_N8_140_150,1344_34680,0 3749,1344,pepperoni,what is a person peeling off a pizza?,gHyXstpe_N8_140_150,1344_34681,0 3750,1344,pizza,what does a man remove the pepperoni from?,gHyXstpe_N8_140_150,1344_34682,0 3751,1344,pepperoni,what does a man remove from some pizza?,gHyXstpe_N8_140_150,1344_34683,0 3752,1344,pizza,what is a man picking the pepperoni off?,gHyXstpe_N8_140_150,1344_34684,0 3753,1344,pepperoni,what is a man picking off a pizza?,gHyXstpe_N8_140_150,1344_34685,0 3754,1344,pizza,what is a person peeling pepperoni off?,gHyXstpe_N8_140_150,1344_34686,0 3755,1344,person,who removes pepperonis from a pizza?,gHyXstpe_N8_140_150,1344_34687,0 3756,1344,someone,what is taking pepperonies off a pizza?,gHyXstpe_N8_140_150,1344_34688,0 3757,1344,someone,what is removing pepperoni from a pizza?,gHyXstpe_N8_140_150,1344_34689,0 3758,1344,pepperoni,what does a person remove from a pizza?,gHyXstpe_N8_140_150,1344_34690,0 3759,1344,pizza,what is someone taking pepperonies off?,gHyXstpe_N8_140_150,1344_34691,0 3760,1344,pizza,what is someone removing pepperoni from?,gHyXstpe_N8_140_150,1344_34692,0 3761,1344,pizza,what does a person remove pepperonis from?,gHyXstpe_N8_140_150,1344_34693,0 3762,1344,pepperoni,what is someone removing from a pizza?,gHyXstpe_N8_140_150,1344_34694,0 3763,1344,man,who is cutting pizza?,gHyXstpe_N8_140_150,1344_34695,0 3764,1344,pizza,what is a man cutting?,gHyXstpe_N8_140_150,1344_34696,0 3765,1344,peel,what is someone doing?,gHyXstpe_N8_140_150,1344_34697,0 3766,1344,use,what is a man doing?,gHyXstpe_N8_140_150,1344_34698,0 3767,1344,cut,what is a man doing?,gHyXstpe_N8_140_150,1344_34699,0 3768,1344,peel,what is a person doing?,gHyXstpe_N8_140_150,1344_34700,0 3769,1344,pick,what is someone doing?,gHyXstpe_N8_140_150,1344_34701,0 3770,1345,someone,who opens a pizza box containing pepperoni pizza?,gHyXstpe_N8_95_100,1345_34702,0 3771,1345,person,who is lifting open a pizza box?,gHyXstpe_N8_95_100,1345_34703,0 3772,1345,someone,who is getting a slice of pizza?,gHyXstpe_N8_95_100,1345_34704,0 3773,1345,person,who opens a box of pizza?,gHyXstpe_N8_95_100,1345_34705,0 3774,1345,pizza,what does a person open a box of?,gHyXstpe_N8_95_100,1345_34706,0 3775,1345,pizza,what does a man open a box of?,gHyXstpe_N8_95_100,1345_34707,0 3776,1345,someone,who opened a pizza box?,gHyXstpe_N8_95_100,1345_34708,0 3777,1345,man,who opened the pizza box?,gHyXstpe_N8_95_100,1345_34709,0 3778,1345,pizza,what is someone getting a slice of?,gHyXstpe_N8_95_100,1345_34710,0 3779,1345,man,who opens a pizza box?,gHyXstpe_N8_95_100,1345_34711,0 3780,1345,person,who is opening a pizza box?,gHyXstpe_N8_95_100,1345_34712,0 3781,1345,pizza,what did someone open?,gHyXstpe_N8_95_100,1345_34713,0 3782,1345,pizza,what did the man open?,gHyXstpe_N8_95_100,1345_34714,0 3783,1345,pizza,what is someone opening?,gHyXstpe_N8_95_100,1345_34715,0 3784,1345,pizza,what does a man open?,gHyXstpe_N8_95_100,1345_34716,0 3785,1345,pizza,what is a person opening?,gHyXstpe_N8_95_100,1345_34717,0 3786,1345,pizza,what is a man opening?,gHyXstpe_N8_95_100,1345_34718,0 3787,1345,contain,what is someone opens a pizza box doing?,gHyXstpe_N8_95_100,1345_34719,0 3788,1345,lift,what is a person doing?,gHyXstpe_N8_95_100,1345_34720,0 3789,1346,person,who stopped his car after driving for a little while?,gHzws6FpuNE_10_12,1346_34721,0 3790,1346,car,what is shown driving through a parking lot?,gHzws6FpuNE_10_12,1346_34722,0 3791,1346,car,what did a person stop after driving for a little while?,gHzws6FpuNE_10_12,1346_34723,0 3792,1346,man,who drives a car?,gHzws6FpuNE_10_12,1346_34724,0 3793,1346,car,what drove down the street?,gHzws6FpuNE_10_12,1346_34725,0 3794,1346,man,who is driving a white car?,gHzws6FpuNE_10_12,1346_34726,0 3795,1346,man,who is driving a car?,gHzws6FpuNE_10_12,1346_34727,0 3796,1346,man,who is driving the car?,gHzws6FpuNE_10_12,1346_34728,0 3797,1346,street,what did the car drive down?,gHzws6FpuNE_10_12,1346_34729,0 3798,1346,car,what does a man drive?,gHzws6FpuNE_10_12,1346_34730,0 3799,1346,car,what is a man driving?,gHzws6FpuNE_10_12,1346_34731,0 3800,1346,car,what is the man driving?,gHzws6FpuNE_10_12,1346_34732,0 3801,1346,car,what is driven?,gHzws6FpuNE_10_12,1346_34733,0 3802,1346,drive,what is a car is shown doing?,gHzws6FpuNE_10_12,1346_34734,0 3803,1346,drive,what is a man doing?,gHzws6FpuNE_10_12,1346_34735,0 3804,1346,drive,what is a person stopped his car after doing?,gHzws6FpuNE_10_12,1346_34736,0 3805,1346,drive,what is the man doing?,gHzws6FpuNE_10_12,1346_34737,0 3806,1346,try,what is a car doing?,gHzws6FpuNE_10_12,1346_34738,0 3807,1347,man,who is laying on a mat on the floor doing abdominal exercises?,gIvetX_oXeI_85_90,1347_34739,0 3808,1347,man,what demonstrated how to do an exercise on the floor mat?,gIvetX_oXeI_85_90,1347_34740,0 3809,1347,man,who is lying down on a blue mat exercising?,gIvetX_oXeI_85_90,1347_34741,0 3810,1347,man,who exercises on the floor mat?,gIvetX_oXeI_85_90,1347_34742,0 3811,1347,man,who is doing crunches?,gIvetX_oXeI_85_90,1347_34743,0 3812,1347,man,who does floor exercises?,gIvetX_oXeI_85_90,1347_34744,0 3813,1347,man,who is doing exercises?,gIvetX_oXeI_85_90,1347_34745,0 3814,1347,man,who is doing some exercise?,gIvetX_oXeI_85_90,1347_34746,0 3815,1347,man,who is doing exercise?,gIvetX_oXeI_85_90,1347_34747,0 3816,1347,exercise,what is a man doing?,gIvetX_oXeI_85_90,1347_34748,0 3817,1347,floor,what does a man do?,gIvetX_oXeI_85_90,1347_34749,0 3818,1347,man,who exercises?,gIvetX_oXeI_85_90,1347_34750,0 3819,1347,man,who is exercising?,gIvetX_oXeI_85_90,1347_34751,0 3820,1347,man,who is stretching?,gIvetX_oXeI_85_90,1347_34752,0 3821,1347,lie,what is a man doing?,gIvetX_oXeI_85_90,1347_34753,0 3822,1347,stretch,what is a man doing?,gIvetX_oXeI_85_90,1347_34754,0 3823,1347,exercise,what is a man doing?,gIvetX_oXeI_85_90,1347_34755,0 3824,1347,lay,what is a man doing?,gIvetX_oXeI_85_90,1347_34756,0 3825,1347,exercise,what is the man doing?,gIvetX_oXeI_85_90,1347_34757,0 3826,1348,cat,what is drinking water from a sink with a running faucet?,gMqKUPeTAkg_17_30,1348_34758,0 3827,1348,drinking,what is a black cat from a sink with a running faucet?,gMqKUPeTAkg_17_30,1348_34759,0 3828,1348,cat,what gets wet while drinking from the faucet?,gMqKUPeTAkg_17_30,1348_34760,0 3829,1348,cat,what is drinking water from a sink?,gMqKUPeTAkg_17_30,1348_34761,0 3830,1348,cat,what is drinking water from running tap?,gMqKUPeTAkg_17_30,1348_34762,0 3831,1348,cat,what is washing its head under a faucet?,gMqKUPeTAkg_17_30,1348_34763,0 3832,1348,drinking,what is a cat from running tap?,gMqKUPeTAkg_17_30,1348_34764,0 3833,1348,faucet,what is a cat washing its head under?,gMqKUPeTAkg_17_30,1348_34765,0 3834,1348,head,what is the cat washing under the faucet?,gMqKUPeTAkg_17_30,1348_34766,0 3835,1348,cat,what is drinking out of a sink?,gMqKUPeTAkg_17_30,1348_34767,0 3836,1348,cat,what drinks water from a sink?,gMqKUPeTAkg_17_30,1348_34768,0 3837,1348,water,what does a cat drink from a sink?,gMqKUPeTAkg_17_30,1348_34769,0 3838,1348,head,what is a cat washing under a faucet?,gMqKUPeTAkg_17_30,1348_34770,0 3839,1348,sink,what is a cat drinking out of?,gMqKUPeTAkg_17_30,1348_34771,0 3840,1348,sink,what does a cat drink water from?,gMqKUPeTAkg_17_30,1348_34772,0 3841,1348,cat,what drinks from the sink?,gMqKUPeTAkg_17_30,1348_34773,0 3842,1348,drinking,what water out the sink?,gMqKUPeTAkg_17_30,1348_34774,0 3843,1348,sink,what does a cat drink from?,gMqKUPeTAkg_17_30,1348_34775,0 3844,1348,sink,what a cat drinking water out?,gMqKUPeTAkg_17_30,1348_34776,0 3845,1348,drink,what is a black cat doing?,gMqKUPeTAkg_17_30,1348_34777,0 3846,1348,drink,what is a cat doing?,gMqKUPeTAkg_17_30,1348_34778,0 3847,1348,wash,what is a cat doing?,gMqKUPeTAkg_17_30,1348_34779,0 3848,1348,wash,what is the cat doing?,gMqKUPeTAkg_17_30,1348_34780,0 3849,1348,pmy,what is the water from the sink doing?,gMqKUPeTAkg_17_30,1348_34781,0 3850,1349,man,who is placing pumpkins on top of each other?,gWRRHV7DLV0_21_31,1349_34782,0 3851,1349,man,who stacks three pumpkins on top of each other?,gWRRHV7DLV0_21_31,1349_34783,0 3852,1349,man,who is arranging pumpkins in pyramid shape?,gWRRHV7DLV0_21_31,1349_34784,0 3853,1349,three,how many pumpkins does a man stack on top of each other?,gWRRHV7DLV0_21_31,1349_34785,0 3854,1349,man,who is stacking pumpkins on each other?,gWRRHV7DLV0_21_31,1349_34786,0 3855,1349,man,who is showing different types of pumpkin?,gWRRHV7DLV0_21_31,1349_34787,0 3856,1349,pumpkin,what is a man showing different types of?,gWRRHV7DLV0_21_31,1349_34788,0 3857,1349,man,who is talking while stacking three pumpkins?,gWRRHV7DLV0_21_31,1349_34789,0 3858,1349,shape,what is a man arranging pumpkins in?,gWRRHV7DLV0_21_31,1349_34790,0 3859,1349,three,how many pumpkins is a man stacking?,gWRRHV7DLV0_21_31,1349_34791,0 3860,1349,three,how many pumpkins does a man stack?,gWRRHV7DLV0_21_31,1349_34792,0 3861,1349,man,who is stacking pumpkins?,gWRRHV7DLV0_21_31,1349_34793,0 3862,1349,man,who is stacking some pumpkins?,gWRRHV7DLV0_21_31,1349_34794,0 3863,1349,man,who stacks three pumpkins?,gWRRHV7DLV0_21_31,1349_34795,0 3864,1349,man,who is stacking three pumpkins?,gWRRHV7DLV0_21_31,1349_34796,0 3865,1349,man,who stacks pumpkins?,gWRRHV7DLV0_21_31,1349_34797,0 3866,1349,talk,what is a man doing?,gWRRHV7DLV0_21_31,1349_34798,0 3867,1349,stack,what is a man doing?,gWRRHV7DLV0_21_31,1349_34799,0 3868,1349,arrange,what is a man doing?,gWRRHV7DLV0_21_31,1349_34800,0 3869,1349,show,what is a man doing?,gWRRHV7DLV0_21_31,1349_34801,0 3870,1349,place,what is a man doing?,gWRRHV7DLV0_21_31,1349_34802,0 3871,1349,stack,what is the man doing?,gWRRHV7DLV0_21_31,1349_34803,0 3872,1350,woman,who pokes a fork into a large raw unpeeled potato at various places?,gXVaC3gBWbc_22_30,1350_34804,0 3873,1350,woman,who is using a fork to poke holes into a potato?,gXVaC3gBWbc_22_30,1350_34805,0 3874,1350,woman,who is poking holes in a potato with a fork?,gXVaC3gBWbc_22_30,1350_34806,0 3875,1350,lady,who poked a potatoe with a fork?,gXVaC3gBWbc_22_30,1350_34807,0 3876,1350,lady,who poked the potatoe with a fork?,gXVaC3gBWbc_22_30,1350_34808,0 3877,1350,woman,who is puncturing a potato with a fork?,gXVaC3gBWbc_22_30,1350_34809,0 3878,1350,woman,who is stabbing a potato with a fork?,gXVaC3gBWbc_22_30,1350_34810,0 3879,1350,woman,who is poking a potato with a fork?,gXVaC3gBWbc_22_30,1350_34811,0 3880,1350,fork,what does a woman poke into a large raw unpeeled potato at various places?,gXVaC3gBWbc_22_30,1350_34812,0 3881,1350,potatoe,who did the lady poke with a fork?,gXVaC3gBWbc_22_30,1350_34813,0 3882,1350,woman,who vigorously spears a potato with a fork?,gXVaC3gBWbc_22_30,1350_34814,0 3883,1350,fork,what did the lady poke a potatoe with?,gXVaC3gBWbc_22_30,1350_34815,0 3884,1350,woman,who stabs a potato with a fork?,gXVaC3gBWbc_22_30,1350_34816,0 3885,1350,fork,what did the lady poke the potatoe with?,gXVaC3gBWbc_22_30,1350_34817,0 3886,1350,woman,who pokes a potato with a fork?,gXVaC3gBWbc_22_30,1350_34818,0 3887,1350,fork,what is a woman using to poke holes into a potato?,gXVaC3gBWbc_22_30,1350_34819,0 3888,1350,potatoe,what did the lady poke with a fork?,gXVaC3gBWbc_22_30,1350_34820,0 3889,1350,woman,who is poking holes in the potato?,gXVaC3gBWbc_22_30,1350_34821,0 3890,1350,potato,what is a woman poking holes in with a fork?,gXVaC3gBWbc_22_30,1350_34822,0 3891,1350,fork,what is a woman poking holes in a potato with?,gXVaC3gBWbc_22_30,1350_34823,0 3892,1350,fork,what is a woman puncturing a potato with?,gXVaC3gBWbc_22_30,1350_34824,0 3893,1350,potato,what is a woman puncturing with a fork?,gXVaC3gBWbc_22_30,1350_34825,0 3894,1350,fork,what does a woman poke a potato with?,gXVaC3gBWbc_22_30,1350_34826,0 3895,1350,potato,what does a woman poke with a fork?,gXVaC3gBWbc_22_30,1350_34827,0 3896,1350,fork,what does a woman stab a potato with?,gXVaC3gBWbc_22_30,1350_34828,0 3897,1350,potato,what does a woman stab with a fork?,gXVaC3gBWbc_22_30,1350_34829,0 3898,1350,fork,what is a woman stabbing a potato with?,gXVaC3gBWbc_22_30,1350_34830,0 3899,1350,potato,what is a woman stabbing with a fork?,gXVaC3gBWbc_22_30,1350_34831,0 3900,1350,fork,what is a woman poking a potato with?,gXVaC3gBWbc_22_30,1350_34832,0 3901,1350,potato,what is a woman poking with a fork?,gXVaC3gBWbc_22_30,1350_34833,0 3902,1350,fork,what does a woman vigorously spear a potato with?,gXVaC3gBWbc_22_30,1350_34834,0 3903,1350,potato,what does a woman vigorously spear with a fork?,gXVaC3gBWbc_22_30,1350_34835,0 3904,1350,potato,what is the woman poking holes in?,gXVaC3gBWbc_22_30,1350_34836,0 3905,1350,woman,who is piercing potato?,gXVaC3gBWbc_22_30,1350_34837,0 3906,1350,potato,what is a woman piercing?,gXVaC3gBWbc_22_30,1350_34838,0 3907,1350,demonstrate,what is a woman doing?,gXVaC3gBWbc_22_30,1350_34839,0 3908,1350,pierce,what is a woman doing?,gXVaC3gBWbc_22_30,1350_34840,0 3909,1350,poke,what is a woman doing?,gXVaC3gBWbc_22_30,1350_34841,0 3910,1350,puncture,what is a woman doing?,gXVaC3gBWbc_22_30,1350_34842,0 3911,1350,stab,what is a woman doing?,gXVaC3gBWbc_22_30,1350_34843,0 3912,1350,use,what is a woman doing?,gXVaC3gBWbc_22_30,1350_34844,0 3913,1350,poke,what is the woman doing?,gXVaC3gBWbc_22_30,1350_34845,0 3914,1351,elephant,what danced with the man on his back?,gbUhorqLCzU_10_23,1351_34846,0 3915,1351,man,who did the elephant dance with on his back?,gbUhorqLCzU_10_23,1351_34847,0 3916,1351,person,who rides an elephant?,gbUhorqLCzU_10_23,1351_34848,0 3917,1351,back,what did the elephant dance with the man on?,gbUhorqLCzU_10_23,1351_34849,0 3918,1351,man,who is riding on elephant?,gbUhorqLCzU_10_23,1351_34850,0 3919,1351,man,who is riding a dancing elephant?,gbUhorqLCzU_10_23,1351_34851,0 3920,1351,parade,what did the elephants dance in?,gbUhorqLCzU_10_23,1351_34852,0 3921,1351,trunk,what is an elephant twirling?,gbUhorqLCzU_10_23,1351_34853,0 3922,1351,elephant,what a person rides?,gbUhorqLCzU_10_23,1351_34854,0 3923,1351,elephant,what is a man riding on?,gbUhorqLCzU_10_23,1351_34855,0 3924,1351,trunk,what does an elephant spin around?,gbUhorqLCzU_10_23,1351_34856,0 3925,1351,elephant,what thrashes around wildly?,gbUhorqLCzU_10_23,1351_34857,0 3926,1351,elephant,what is dancing around?,gbUhorqLCzU_10_23,1351_34858,0 3927,1351,elephant,what is dancing?,gbUhorqLCzU_10_23,1351_34859,0 3928,1351,twirl,what is an elephant doing?,gbUhorqLCzU_10_23,1351_34860,0 3929,1351,dance,what is an elephant doing?,gbUhorqLCzU_10_23,1351_34861,0 3930,1351,dance,what is the elephant doing?,gbUhorqLCzU_10_23,1351_34862,0 3931,1352,two,how many animals are eating what appears to be apple slices from a pan within a cage?,gbW9f8xydks_0_10,1352_34863,0 3932,1352,lori,what is trying to get underneath the head of another loris eating some food?,gbW9f8xydks_0_10,1352_34864,0 3933,1352,fruit,what are a couple of slow lorises eating?,gbW9f8xydks_0_10,1352_34865,0 3934,1352,furry,what are sitting on a wire rack eating some kind of sliced vegetable or fruit out of a metal pan?,gbW9f8xydks_0_10,1352_34866,0 3935,1352,two,how many loris are eating food?,gbW9f8xydks_0_10,1352_34867,0 3936,1352,two,how many animals eat a piece of fruit?,gbW9f8xydks_0_10,1352_34868,0 3937,1352,two,how many slow loris eat some food?,gbW9f8xydks_0_10,1352_34869,0 3938,1352,two,how many baby sloths are eating food?,gbW9f8xydks_0_10,1352_34870,0 3939,1352,fruit,what did the mammals eat from the refrigerator?,gbW9f8xydks_0_10,1352_34871,0 3940,1352,two,how many loris are eating?,gbW9f8xydks_0_10,1352_34872,0 3941,1352,refrigerator,what did the mammals eat fruit from?,gbW9f8xydks_0_10,1352_34873,0 3942,1352,two,how many slow iris are sitting?,gbW9f8xydks_0_10,1352_34874,0 3943,1352,fruit,what do two animals eat a piece of?,gbW9f8xydks_0_10,1352_34875,0 3944,1352,food,what did the animals eat in their cage?,gbW9f8xydks_0_10,1352_34876,0 3945,1352,two,how many monkeys are eating?,gbW9f8xydks_0_10,1352_34877,0 3946,1352,lori,who are eating food?,gbW9f8xydks_0_10,1352_34878,0 3947,1352,food,what do two slow loris eat?,gbW9f8xydks_0_10,1352_34879,0 3948,1352,lori,what eat some food?,gbW9f8xydks_0_10,1352_34880,0 3949,1352,baby,what are eating food?,gbW9f8xydks_0_10,1352_34881,0 3950,1352,lori,who are eating their food?,gbW9f8xydks_0_10,1352_34882,0 3951,1352,food,what are two loris eating?,gbW9f8xydks_0_10,1352_34883,0 3952,1352,food,what are two baby sloths eating?,gbW9f8xydks_0_10,1352_34884,0 3953,1352,cage,what did the animals eat food in?,gbW9f8xydks_0_10,1352_34885,0 3954,1352,food,what are loris eating?,gbW9f8xydks_0_10,1352_34886,0 3955,1352,lori,who are eating?,gbW9f8xydks_0_10,1352_34887,0 3956,1352,iri,what are sitting?,gbW9f8xydks_0_10,1352_34888,0 3957,1352,eat,what are two animals doing?,gbW9f8xydks_0_10,1352_34889,0 3958,1352,sit,what are two furry animals doing?,gbW9f8xydks_0_10,1352_34890,0 3959,1352,eat,what are loris doing?,gbW9f8xydks_0_10,1352_34891,0 3960,1352,eat,what are two baby sloths doing?,gbW9f8xydks_0_10,1352_34892,0 3961,1352,sit,what are two slow iris doing?,gbW9f8xydks_0_10,1352_34893,0 3962,1352,eat,what are two loris doing?,gbW9f8xydks_0_10,1352_34894,0 3963,1352,eat,what are a couple of slow lorises doing?,gbW9f8xydks_0_10,1352_34895,0 3964,1352,try,what is a loris doing?,gbW9f8xydks_0_10,1352_34896,0 3965,1352,eat,what are two monkeys doing?,gbW9f8xydks_0_10,1352_34897,0 3966,1352,eat,what are animals doing?,gbW9f8xydks_0_10,1352_34898,0 3967,1352,eat,what are the animals doing?,gbW9f8xydks_0_10,1352_34899,0 3968,1353,boy,who is playing a violin on a stage?,gbbRwBZuhzI_26_40,1353_34900,0 3969,1353,boy,who plays the violin on stage?,gbbRwBZuhzI_26_40,1353_34901,0 3970,1353,stage,when is a young boy playing a violin?,gbbRwBZuhzI_26_40,1353_34902,0 3971,1353,boy,who is playing a violin on stage?,gbbRwBZuhzI_26_40,1353_34903,0 3972,1353,boy,who is playing the violin on stage?,gbbRwBZuhzI_26_40,1353_34904,0 3973,1353,violin,what is a young boy playing on stage?,gbbRwBZuhzI_26_40,1353_34905,0 3974,1353,boy,who plays violin on stage?,gbbRwBZuhzI_26_40,1353_34906,0 3975,1353,violin,what is a boy playing on a stage?,gbbRwBZuhzI_26_40,1353_34907,0 3976,1353,stage,when is a boy playing a violin?,gbbRwBZuhzI_26_40,1353_34908,0 3977,1353,stage,when is the boy playing the violin?,gbbRwBZuhzI_26_40,1353_34909,0 3978,1353,boy,who is playing violin on stage?,gbbRwBZuhzI_26_40,1353_34910,0 3979,1353,violin,what is a boy playing on stage?,gbbRwBZuhzI_26_40,1353_34911,0 3980,1353,violin,what is the boy playing on stage?,gbbRwBZuhzI_26_40,1353_34912,0 3981,1353,stage,when is a boy playing violin?,gbbRwBZuhzI_26_40,1353_34913,0 3982,1353,boy,who played the violin?,gbbRwBZuhzI_26_40,1353_34914,0 3983,1353,boy,who is playing violin?,gbbRwBZuhzI_26_40,1353_34915,0 3984,1353,boy,who plays a violin?,gbbRwBZuhzI_26_40,1353_34916,0 3985,1353,boy,who plays the violin?,gbbRwBZuhzI_26_40,1353_34917,0 3986,1353,boy,who is playing a violin?,gbbRwBZuhzI_26_40,1353_34918,0 3987,1353,boy,who is playing the violin?,gbbRwBZuhzI_26_40,1353_34919,0 3988,1353,boy,who is playing the violin onstage?,gbbRwBZuhzI_26_40,1353_34920,0 3989,1353,boy,who is onstage playing the violin?,gbbRwBZuhzI_26_40,1353_34921,0 3990,1353,violin,what did a boy play?,gbbRwBZuhzI_26_40,1353_34922,0 3991,1353,violin,what is a young boy playing?,gbbRwBZuhzI_26_40,1353_34923,0 3992,1353,violin,what does a boy play?,gbbRwBZuhzI_26_40,1353_34924,0 3993,1353,violin,what is a boy playing?,gbbRwBZuhzI_26_40,1353_34925,0 3994,1353,violin,what is the boy playing?,gbbRwBZuhzI_26_40,1353_34926,0 3995,1353,violin,what is a boy playing onstage?,gbbRwBZuhzI_26_40,1353_34927,0 3996,1353,violin,what is a boy onstage playing?,gbbRwBZuhzI_26_40,1353_34928,0 3997,1353,play,what is a boy is onstage doing?,gbbRwBZuhzI_26_40,1353_34929,0 3998,1353,play,what is a boy doing?,gbbRwBZuhzI_26_40,1353_34930,0 3999,1353,play,what is a young boy doing?,gbbRwBZuhzI_26_40,1353_34931,0 4000,1353,play,what is the boy doing?,gbbRwBZuhzI_26_40,1353_34932,0 4001,1354,three,how many young men are standing on stage playing guitars?,ge7OOILJA6U_20_25,1354_34933,0 4002,1354,three,how many men are playing a guitar on a stage?,ge7OOILJA6U_20_25,1354_34934,0 4003,1354,three,how many men are playing acoustic guitars?,ge7OOILJA6U_20_25,1354_34935,0 4004,1354,three,how many men are playing guitars?,ge7OOILJA6U_20_25,1354_34936,0 4005,1354,three,how many men are on stage playing guitars?,ge7OOILJA6U_20_25,1354_34937,0 4006,1354,stage,when are three young men standing playing guitars?,ge7OOILJA6U_20_25,1354_34938,0 4007,1354,three,how many men are on stage singing?,ge7OOILJA6U_20_25,1354_34939,0 4008,1354,three,how many men are singing on stage?,ge7OOILJA6U_20_25,1354_34940,0 4009,1354,three,how many men are on stage playing?,ge7OOILJA6U_20_25,1354_34941,0 4010,1354,three,how many men are playing guitar?,ge7OOILJA6U_20_25,1354_34942,0 4011,1354,guitar,what are three men playing on a stage?,ge7OOILJA6U_20_25,1354_34943,0 4012,1354,stage,when are three men playing a guitar?,ge7OOILJA6U_20_25,1354_34944,0 4013,1354,stage,when are men playing guitars?,ge7OOILJA6U_20_25,1354_34945,0 4014,1354,three,how many men are singing together?,ge7OOILJA6U_20_25,1354_34946,0 4015,1354,stage,when are men playing guitar?,ge7OOILJA6U_20_25,1354_34947,0 4016,1354,three,how many people play the guitar?,ge7OOILJA6U_20_25,1354_34948,0 4017,1354,stage,when are three men playing guitars?,ge7OOILJA6U_20_25,1354_34949,0 4018,1354,stage,when are three men singing?,ge7OOILJA6U_20_25,1354_34950,0 4019,1354,stage,when are three men playing?,ge7OOILJA6U_20_25,1354_34951,0 4020,1354,guitar,what are the men playing?,ge7OOILJA6U_20_25,1354_34952,0 4021,1354,guitar,what do three people play?,ge7OOILJA6U_20_25,1354_34953,0 4022,1354,stand,what are three young men doing?,ge7OOILJA6U_20_25,1354_34954,0 4023,1354,play,what are men doing?,ge7OOILJA6U_20_25,1354_34955,0 4024,1354,play,what are a trio of men doing?,ge7OOILJA6U_20_25,1354_34956,0 4025,1354,play,what are three men doing?,ge7OOILJA6U_20_25,1354_34957,0 4026,1354,play,what are some men doing?,ge7OOILJA6U_20_25,1354_34958,0 4027,1355,girl,who is sitting on a horse being lead somewhere?,ggWzbEFC-RE_1_11,1355_34959,0 4028,1355,child,who is riding a horse which is trotting slowly?,ggWzbEFC-RE_1_11,1355_34960,0 4029,1355,horse,what is a little girl sitting on being lead somewhere?,ggWzbEFC-RE_1_11,1355_34961,0 4030,1355,baby,who is riding on a horse?,ggWzbEFC-RE_1_11,1355_34962,0 4031,1355,child,who is shown riding a horse?,ggWzbEFC-RE_1_11,1355_34963,0 4032,1355,horse,what is a small baby riding on?,ggWzbEFC-RE_1_11,1355_34964,0 4033,1355,boy,who rode a horse?,ggWzbEFC-RE_1_11,1355_34965,0 4034,1355,girl,who rides on a horse?,ggWzbEFC-RE_1_11,1355_34966,0 4035,1355,child,who rides a horse?,ggWzbEFC-RE_1_11,1355_34967,0 4036,1355,toddler,who is riding a horse?,ggWzbEFC-RE_1_11,1355_34968,0 4037,1355,horse,what a little girl rides on?,ggWzbEFC-RE_1_11,1355_34969,0 4038,1355,horse,what did a little boy ride?,ggWzbEFC-RE_1_11,1355_34970,0 4039,1355,horse,what a young child rides?,ggWzbEFC-RE_1_11,1355_34971,0 4040,1355,horse,what did the little girl ride?,ggWzbEFC-RE_1_11,1355_34972,0 4041,1355,horse,what is a baby riding on?,ggWzbEFC-RE_1_11,1355_34973,0 4042,1355,horse,what is a toddler riding?,ggWzbEFC-RE_1_11,1355_34974,0 4043,1355,horse,what is the toddler riding?,ggWzbEFC-RE_1_11,1355_34975,0 4044,1355,horse,what is a little boy riding?,ggWzbEFC-RE_1_11,1355_34976,0 4045,1355,horse,what is a young child riding?,ggWzbEFC-RE_1_11,1355_34977,0 4046,1355,horse,what is a little girl riding?,ggWzbEFC-RE_1_11,1355_34978,0 4047,1355,horse,what is a child riding?,ggWzbEFC-RE_1_11,1355_34979,0 4048,1355,sit,what is a little girl doing?,ggWzbEFC-RE_1_11,1355_34980,0 4049,1356,ventriloquist,who is performing on stage with a toy skeleton?,ggic669elLM_200_215,1356_34981,0 4050,1356,stage,when is a ventriloquist performing with a toy skeleton?,ggic669elLM_200_215,1356_34982,0 4051,1356,man,who is setting a moving skeleton in a room?,ggic669elLM_200_215,1356_34983,0 4052,1356,ventriloquist,who is performing with a skeleton dummy?,ggic669elLM_200_215,1356_34984,0 4053,1356,man,who is making a show with skeleton?,ggic669elLM_200_215,1356_34985,0 4054,1356,man,who made the skeleton puppet move and talk?,ggic669elLM_200_215,1356_34986,0 4055,1356,room,what is a man setting a moving skeleton in?,ggic669elLM_200_215,1356_34987,0 4056,1356,skeleton,what is a man setting in a room?,ggic669elLM_200_215,1356_34988,0 4057,1356,skeleton,what is a man making a show with?,ggic669elLM_200_215,1356_34989,0 4058,1356,show,what is a man making with skeleton?,ggic669elLM_200_215,1356_34990,0 4059,1356,man,who plays with a skeleton puppet?,ggic669elLM_200_215,1356_34991,0 4060,1356,man,who performs a ventriloquist act?,ggic669elLM_200_215,1356_34992,0 4061,1356,skeleton,what did the man make move and talk?,ggic669elLM_200_215,1356_34993,0 4062,1356,puppeteer,who uses a skeleton puppet?,ggic669elLM_200_215,1356_34994,0 4063,1356,man,who is holding a skeleton puppet?,ggic669elLM_200_215,1356_34995,0 4064,1356,man,who is working a skeleton puppet?,ggic669elLM_200_215,1356_34996,0 4065,1356,man,who is playing with a puppet?,ggic669elLM_200_215,1356_34997,0 4066,1356,man,who is talking to a puppet?,ggic669elLM_200_215,1356_34998,0 4067,1356,ventriloquist,who is performing with his dummy?,ggic669elLM_200_215,1356_34999,0 4068,1356,ventriloquist,who is playing with his puppet?,ggic669elLM_200_215,1356_35000,0 4069,1356,skeleton,what does a puppeteer use?,ggic669elLM_200_215,1356_35001,0 4070,1356,puppet,what is a man playing with?,ggic669elLM_200_215,1356_35002,0 4071,1356,puppet,what is a man talking to?,ggic669elLM_200_215,1356_35003,0 4072,1356,puppet,what is the man talking to?,ggic669elLM_200_215,1356_35004,0 4073,1356,ventriloquist,what does a man perform?,ggic669elLM_200_215,1356_35005,0 4074,1356,skeleton,what is a man holding?,ggic669elLM_200_215,1356_35006,0 4075,1356,skeleton,what is a man working?,ggic669elLM_200_215,1356_35007,0 4076,1356,dummy,who is the ventriloquist performing with?,ggic669elLM_200_215,1356_35008,0 4077,1356,puppet,what is a ventriloquist playing with?,ggic669elLM_200_215,1356_35009,0 4078,1356,man,who is doing ventriloquy?,ggic669elLM_200_215,1356_35010,0 4079,1356,hold,what is a man doing?,ggic669elLM_200_215,1356_35011,0 4080,1356,play,what is a man doing?,ggic669elLM_200_215,1356_35012,0 4081,1356,set,what is a man doing?,ggic669elLM_200_215,1356_35013,0 4082,1356,talk,what is a man doing?,ggic669elLM_200_215,1356_35014,0 4083,1356,work,what is a man doing?,ggic669elLM_200_215,1356_35015,0 4084,1356,perform,what is a ventriloquist doing?,ggic669elLM_200_215,1356_35016,0 4085,1356,talk,what is the man doing?,ggic669elLM_200_215,1356_35017,0 4086,1356,perform,what is the ventriloquist doing?,ggic669elLM_200_215,1356_35018,0 4087,1357,driver,who performs several spinning stunts in his car?,ghynaoVNwZc_1_20,1357_35019,0 4088,1357,man,who is showing some stunts with his car?,ghynaoVNwZc_1_20,1357_35020,0 4089,1357,orange,what skidded in the parking lot?,ghynaoVNwZc_1_20,1357_35021,0 4090,1357,someone,who is doing circles in a car?,ghynaoVNwZc_1_20,1357_35022,0 4091,1357,car,what is making sharp swerves?,ghynaoVNwZc_1_20,1357_35023,0 4092,1357,individual,who does automobile tricks?,ghynaoVNwZc_1_20,1357_35024,0 4093,1357,car,what is sliding into circles?,ghynaoVNwZc_1_20,1357_35025,0 4094,1357,car,what is a man showing some stunts with?,ghynaoVNwZc_1_20,1357_35026,0 4095,1357,someone,who is drifting in a car?,ghynaoVNwZc_1_20,1357_35027,0 4096,1357,car,what is someone doing circles in?,ghynaoVNwZc_1_20,1357_35028,0 4097,1357,car,what is spinning in a lot?,ghynaoVNwZc_1_20,1357_35029,0 4098,1357,car,what does some stunt driving?,ghynaoVNwZc_1_20,1357_35030,0 4099,1357,car,what is doing a donut?,ghynaoVNwZc_1_20,1357_35031,0 4100,1357,lot,what is a car spinning in?,ghynaoVNwZc_1_20,1357_35032,0 4101,1357,car,what is someone drifting in?,ghynaoVNwZc_1_20,1357_35033,0 4102,1357,automobile,what does an individual do?,ghynaoVNwZc_1_20,1357_35034,0 4103,1357,donut,what is a car doing?,ghynaoVNwZc_1_20,1357_35035,0 4104,1357,driving,what does a car do?,ghynaoVNwZc_1_20,1357_35036,0 4105,1357,car,what is drifting?,ghynaoVNwZc_1_20,1357_35037,0 4106,1357,car,what does donuts?,ghynaoVNwZc_1_20,1357_35038,0 4107,1357,drift,what is a car doing?,ghynaoVNwZc_1_20,1357_35039,0 4108,1357,spin,what is a car doing?,ghynaoVNwZc_1_20,1357_35040,0 4109,1357,spin,what is a driver performs several doing?,ghynaoVNwZc_1_20,1357_35041,0 4110,1357,show,what is a man doing?,ghynaoVNwZc_1_20,1357_35042,0 4111,1357,slide,what is the car doing?,ghynaoVNwZc_1_20,1357_35043,0 4112,1358,air,what did a player fielding near the boundary manages to catch a cricket ball swing high in?,giLxPCgLLqg_9_19,1358_35044,0 4113,1358,man,who catches the ball in a game of cricket?,giLxPCgLLqg_9_19,1358_35045,0 4114,1358,ball,what does a ball player in the outfield trips over a cable and manage to catch?,giLxPCgLLqg_9_19,1358_35046,0 4115,1358,player,who is taking a catch in cricket?,giLxPCgLLqg_9_19,1358_35047,0 4116,1358,man,who is catching a ball after almost dropping it?,giLxPCgLLqg_9_19,1358_35048,0 4117,1358,two,how many teams play a cricket game?,giLxPCgLLqg_9_19,1358_35049,0 4118,1358,balance,what does a ball player in the outfield trips over a cable and manage to get?,giLxPCgLLqg_9_19,1358_35050,0 4119,1358,ball,what is a man catching after almost dropping it?,giLxPCgLLqg_9_19,1358_35051,0 4120,1358,cricket,who makes an impressive catch?,giLxPCgLLqg_9_19,1358_35052,0 4121,1358,baseball,who made a great catch?,giLxPCgLLqg_9_19,1358_35053,0 4122,1358,man,who makes a spectacular catch?,giLxPCgLLqg_9_19,1358_35054,0 4123,1358,man,who caught the ball?,giLxPCgLLqg_9_19,1358_35055,0 4124,1358,man,who catches a ball?,giLxPCgLLqg_9_19,1358_35056,0 4125,1358,man,who is catching a ball?,giLxPCgLLqg_9_19,1358_35057,0 4126,1358,catch,what did the baseball player make?,giLxPCgLLqg_9_19,1358_35058,0 4127,1358,catch,what does a cricket player make?,giLxPCgLLqg_9_19,1358_35059,0 4128,1358,ball,what did the man catch?,giLxPCgLLqg_9_19,1358_35060,0 4129,1358,catch,what did the player make?,giLxPCgLLqg_9_19,1358_35061,0 4130,1358,cricket,what do two teams play?,giLxPCgLLqg_9_19,1358_35062,0 4131,1358,ball,what is a man catching?,giLxPCgLLqg_9_19,1358_35063,0 4132,1358,catch,what does a man make?,giLxPCgLLqg_9_19,1358_35064,0 4133,1358,catch,what is a man doing?,giLxPCgLLqg_9_19,1358_35065,0 4134,1358,hit,what is a man doing?,giLxPCgLLqg_9_19,1358_35066,0 4135,1359,cat,what is chasing around a german shepherd dog more than twice its size?,gjVBEJGHrXk_26_38,1359_35067,0 4136,1359,cat,what is chasing a large dog in a garden?,gjVBEJGHrXk_26_38,1359_35068,0 4137,1359,garden,what is a small cat chasing a large dog in?,gjVBEJGHrXk_26_38,1359_35069,0 4138,1359,dog,what is a small cat chasing in a garden?,gjVBEJGHrXk_26_38,1359_35070,0 4139,1359,cat,what is chasing the bigger dog away?,gjVBEJGHrXk_26_38,1359_35071,0 4140,1359,cat,what chases a dog?,gjVBEJGHrXk_26_38,1359_35072,0 4141,1359,cat,what is chasing a dog?,gjVBEJGHrXk_26_38,1359_35073,0 4142,1359,dog,what is the cat chasing away?,gjVBEJGHrXk_26_38,1359_35074,0 4143,1359,cat,what chased the dog around?,gjVBEJGHrXk_26_38,1359_35075,0 4144,1359,cat,what is scaring away a dog?,gjVBEJGHrXk_26_38,1359_35076,0 4145,1359,dog,what does a cat chase?,gjVBEJGHrXk_26_38,1359_35077,0 4146,1359,dog,what is a cat chasing?,gjVBEJGHrXk_26_38,1359_35078,0 4147,1359,dog,what did the cat chase around?,gjVBEJGHrXk_26_38,1359_35079,0 4148,1359,dog,what is a cat scaring away?,gjVBEJGHrXk_26_38,1359_35080,0 4149,1359,chase,what is a cat doing?,gjVBEJGHrXk_26_38,1359_35081,0 4150,1359,scar,what is a cat doing?,gjVBEJGHrXk_26_38,1359_35082,0 4151,1359,chase,what is a small cat doing?,gjVBEJGHrXk_26_38,1359_35083,0 4152,1359,chase,what is the cat doing?,gjVBEJGHrXk_26_38,1359_35084,0 4153,1360,dog,what looks at a tennis ball floating in the water?,glii-kazad8_21_29,1360_35085,0 4154,1360,dog,what goes to the edge of the dock?,glii-kazad8_21_29,1360_35086,0 4155,1360,dog,what barks at a ball floating in the water?,glii-kazad8_21_29,1360_35087,0 4156,1360,water,what does a dog bark at a ball floating in?,glii-kazad8_21_29,1360_35088,0 4157,1360,dog,what is afraid to jump into the water?,glii-kazad8_21_29,1360_35089,0 4158,1360,dog,what is trying to jump into the water?,glii-kazad8_21_29,1360_35090,0 4159,1360,dog,what is trying to jump into water?,glii-kazad8_21_29,1360_35091,0 4160,1360,water,what does a dog want to jump in?,glii-kazad8_21_29,1360_35092,0 4161,1360,dog,what could not get its ball out of the water?,glii-kazad8_21_29,1360_35093,0 4162,1360,dog,what wants to jump in the water?,glii-kazad8_21_29,1360_35094,0 4163,1360,dog,what swims after a tennis ball?,glii-kazad8_21_29,1360_35095,0 4164,1360,dog,what hesitates on a dock?,glii-kazad8_21_29,1360_35096,0 4165,1360,dog,what is walking back and forth on a pier?,glii-kazad8_21_29,1360_35097,0 4166,1360,dog,what is walking back and forth on a dock?,glii-kazad8_21_29,1360_35098,0 4167,1360,dog,what jumps looks at water?,glii-kazad8_21_29,1360_35099,0 4168,1360,dog,what is barking at a ball?,glii-kazad8_21_29,1360_35100,0 4169,1360,dock,what is a dog walking back and forth on?,glii-kazad8_21_29,1360_35101,0 4170,1360,dock,what does a dog hesitate on?,glii-kazad8_21_29,1360_35102,0 4171,1360,ball,what could the dog not get out of the water?,glii-kazad8_21_29,1360_35103,0 4172,1360,water,what does a dog jump looks at?,glii-kazad8_21_29,1360_35104,0 4173,1360,ball,what is a dog barking at?,glii-kazad8_21_29,1360_35105,0 4174,1360,walk,what is a brown dog reluctant to jump doing?,glii-kazad8_21_29,1360_35106,0 4175,1360,bark,what is a dog doing?,glii-kazad8_21_29,1360_35107,0 4176,1360,try,what is a dog doing?,glii-kazad8_21_29,1360_35108,0 4177,1360,try,what is the dog doing?,glii-kazad8_21_29,1360_35109,0 4178,1361,man,who is pushing buttons on a microwave oven?,glrijRGnmc0_211_215,1361_35110,0 4179,1361,man,who heated a cup of coffee in the microwave?,glrijRGnmc0_211_215,1361_35111,0 4180,1361,man,who is putting a cup into the microwave oven?,glrijRGnmc0_211_215,1361_35112,0 4181,1361,man,who puts a cup in the microwave?,glrijRGnmc0_211_215,1361_35113,0 4182,1361,cup,what is a man putting into the microwave oven?,glrijRGnmc0_211_215,1361_35114,0 4183,1361,microwave,what do a man heat a cup of coffee in?,glrijRGnmc0_211_215,1361_35115,0 4184,1361,coffee,what do a man heat a cup of in the microwave?,glrijRGnmc0_211_215,1361_35116,0 4185,1361,man,who microwaves a teacup?,glrijRGnmc0_211_215,1361_35117,0 4186,1361,man,who is pressing microwave buttons?,glrijRGnmc0_211_215,1361_35118,0 4187,1361,man,who is operating a microwave oven?,glrijRGnmc0_211_215,1361_35119,0 4188,1361,man,who turns on the microwave?,glrijRGnmc0_211_215,1361_35120,0 4189,1361,man,who uses a microwave?,glrijRGnmc0_211_215,1361_35121,0 4190,1361,man,who is operating a microwave?,glrijRGnmc0_211_215,1361_35122,0 4191,1361,man,who is using a microwave?,glrijRGnmc0_211_215,1361_35123,0 4192,1361,man,who is using the microwave?,glrijRGnmc0_211_215,1361_35124,0 4193,1361,teacup,what a man microwaves?,glrijRGnmc0_211_215,1361_35125,0 4194,1361,microwave,what does a man turn on?,glrijRGnmc0_211_215,1361_35126,0 4195,1361,microwave,what is a man pressing?,glrijRGnmc0_211_215,1361_35127,0 4196,1361,microwave,what does a man use?,glrijRGnmc0_211_215,1361_35128,0 4197,1361,microwave,what is a man operating?,glrijRGnmc0_211_215,1361_35129,0 4198,1361,microwave,what is a man using?,glrijRGnmc0_211_215,1361_35130,0 4199,1361,microwave,what is the man using?,glrijRGnmc0_211_215,1361_35131,0 4200,1361,use,what is a man doing?,glrijRGnmc0_211_215,1361_35132,0 4201,1361,operate,what is a man doing?,glrijRGnmc0_211_215,1361_35133,0 4202,1361,pres,what is a man doing?,glrijRGnmc0_211_215,1361_35134,0 4203,1361,push,what is a man doing?,glrijRGnmc0_211_215,1361_35135,0 4204,1361,put,what is a man doing?,glrijRGnmc0_211_215,1361_35136,0 4205,1361,wait,what is a man sets the timing/temperature knobs on the menu of the microwave owen in the kitchen and doing?,glrijRGnmc0_211_215,1361_35137,0 4206,1361,use,what is the man doing?,glrijRGnmc0_211_215,1361_35138,0 4207,1362,man,who shoots off rounds with a handgun?,gnEE6oWoz7U_124_132,1362_35139,0 4208,1362,man,who shot his pistol at a target?,gnEE6oWoz7U_124_132,1362_35140,0 4209,1362,man,who shot his gun at a target?,gnEE6oWoz7U_124_132,1362_35141,0 4210,1362,target,what did the man shoot his pistol at?,gnEE6oWoz7U_124_132,1362_35142,0 4211,1362,man,who is firing with a revolver?,gnEE6oWoz7U_124_132,1362_35143,0 4212,1362,target,what did the man shoot his gun at?,gnEE6oWoz7U_124_132,1362_35144,0 4213,1362,man,who is firing a pistol?,gnEE6oWoz7U_124_132,1362_35145,0 4214,1362,man,who shoots a revolver?,gnEE6oWoz7U_124_132,1362_35146,0 4215,1362,man,who shoots a tiny gun?,gnEE6oWoz7U_124_132,1362_35147,0 4216,1362,man,who is shooting a pocket revolver?,gnEE6oWoz7U_124_132,1362_35148,0 4217,1362,man,who fires a revolver?,gnEE6oWoz7U_124_132,1362_35149,0 4218,1362,man,who is firing a gun?,gnEE6oWoz7U_124_132,1362_35150,0 4219,1362,gun,what did the man shoot at a target?,gnEE6oWoz7U_124_132,1362_35151,0 4220,1362,gun,what is an older man shooting off?,gnEE6oWoz7U_124_132,1362_35152,0 4221,1362,man,who shoots a gun?,gnEE6oWoz7U_124_132,1362_35153,0 4222,1362,man,who is shooting a pistol?,gnEE6oWoz7U_124_132,1362_35154,0 4223,1362,man,who is shooting a small gun?,gnEE6oWoz7U_124_132,1362_35155,0 4224,1362,man,who is shooting off a gun?,gnEE6oWoz7U_124_132,1362_35156,0 4225,1362,man,who is shooting a gun?,gnEE6oWoz7U_124_132,1362_35157,0 4226,1362,man,who is shooting a revolver repeatedly?,gnEE6oWoz7U_124_132,1362_35158,0 4227,1362,gun,what does a man shoot?,gnEE6oWoz7U_124_132,1362_35159,0 4228,1362,revolver,what does a man fire?,gnEE6oWoz7U_124_132,1362_35160,0 4229,1362,gun,what is a man shooting off?,gnEE6oWoz7U_124_132,1362_35161,0 4230,1362,gun,what is a men shooting?,gnEE6oWoz7U_124_132,1362_35162,0 4231,1362,gun,what is a man shooting?,gnEE6oWoz7U_124_132,1362_35163,0 4232,1362,gun,what is the man shooting?,gnEE6oWoz7U_124_132,1362_35164,0 4233,1362,revolver,what is a man shooting repeatedly?,gnEE6oWoz7U_124_132,1362_35165,0 4234,1362,fire,what is a man doing?,gnEE6oWoz7U_124_132,1362_35166,0 4235,1362,shoot,what is a man doing?,gnEE6oWoz7U_124_132,1362_35167,0 4236,1362,shoot,what is a men doing?,gnEE6oWoz7U_124_132,1362_35168,0 4237,1362,shoot,what is an older man doing?,gnEE6oWoz7U_124_132,1362_35169,0 4238,1362,shoot,what is the man doing?,gnEE6oWoz7U_124_132,1362_35170,0 4239,1363,man,who is holding a skunk in his left hand?,gp8XjWSoP2k_0_10,1363_35171,0 4240,1363,man,who is holding a skunk in his hand?,gp8XjWSoP2k_0_10,1363_35172,0 4241,1363,skunk,who is being held up for the camera?,gp8XjWSoP2k_0_10,1363_35173,0 4242,1363,camera,what is a baby skunk being held up for?,gp8XjWSoP2k_0_10,1363_35174,0 4243,1363,skunk,who is a man holding in his left hand?,gp8XjWSoP2k_0_10,1363_35175,0 4244,1363,person,who is showing off a baby skunk?,gp8XjWSoP2k_0_10,1363_35176,0 4245,1363,skunk,who is a man holding in his hand?,gp8XjWSoP2k_0_10,1363_35177,0 4246,1363,someone,who held a baby skunk?,gp8XjWSoP2k_0_10,1363_35178,0 4247,1363,man,who holds a small skunk?,gp8XjWSoP2k_0_10,1363_35179,0 4248,1363,boy,who is holding a baby skunk?,gp8XjWSoP2k_0_10,1363_35180,0 4249,1363,skunk,who is a person showing off?,gp8XjWSoP2k_0_10,1363_35181,0 4250,1363,person,who is holding a young skunk?,gp8XjWSoP2k_0_10,1363_35182,0 4251,1363,skunk,who looks at the camera?,gp8XjWSoP2k_0_10,1363_35183,0 4252,1363,hand,what is a man holding a skunk in?,gp8XjWSoP2k_0_10,1363_35184,0 4253,1363,person,who is holding a skunk?,gp8XjWSoP2k_0_10,1363_35185,0 4254,1363,skunk,who did someone hold?,gp8XjWSoP2k_0_10,1363_35186,0 4255,1363,camera,what does a skunk look at?,gp8XjWSoP2k_0_10,1363_35187,0 4256,1363,skunk,who is someone holding?,gp8XjWSoP2k_0_10,1363_35188,0 4257,1363,skunk,who does a man hold?,gp8XjWSoP2k_0_10,1363_35189,0 4258,1363,skunk,who is a boy holding?,gp8XjWSoP2k_0_10,1363_35190,0 4259,1363,skunk,who is a person holding?,gp8XjWSoP2k_0_10,1363_35191,0 4260,1363,skunk,who is the man holding?,gp8XjWSoP2k_0_10,1363_35192,0 4261,1363,skunk,who is looking here and there?,gp8XjWSoP2k_0_10,1363_35193,0 4262,1363,play,what is a baby animal doing?,gp8XjWSoP2k_0_10,1363_35194,0 4263,1363,hold,what is a boy doing?,gp8XjWSoP2k_0_10,1363_35195,0 4264,1363,hold,what is a man doing?,gp8XjWSoP2k_0_10,1363_35196,0 4265,1363,hold,what is a person doing?,gp8XjWSoP2k_0_10,1363_35197,0 4266,1363,show,what is a person doing?,gp8XjWSoP2k_0_10,1363_35198,0 4267,1363,look,what is a skunk doing?,gp8XjWSoP2k_0_10,1363_35199,0 4268,1363,hold,what is someone doing?,gp8XjWSoP2k_0_10,1363_35200,0 4269,1363,hold,what is the man doing?,gp8XjWSoP2k_0_10,1363_35201,0 4270,1364,man,who slid down the handrail of the escaltor?,gqSOvUH_njE_151_155,1364_35202,0 4271,1364,man,who is sliding down the railing of an escalator?,gqSOvUH_njE_151_155,1364_35203,0 4272,1364,staircase,what does a man with headphones slide down the railing of?,gqSOvUH_njE_151_155,1364_35204,0 4273,1364,man,who slides down a railing on his bum?,gqSOvUH_njE_151_155,1364_35205,0 4274,1364,esculator,what does a man with headphones slide down?,gqSOvUH_njE_151_155,1364_35206,0 4275,1364,escalator,what is a man sliding down the railing of?,gqSOvUH_njE_151_155,1364_35207,0 4276,1364,man,who is sliding down an escalator rail?,gqSOvUH_njE_151_155,1364_35208,0 4277,1364,man,who slid down the escalator railing?,gqSOvUH_njE_151_155,1364_35209,0 4278,1364,railing,what does a man slide down on his bum?,gqSOvUH_njE_151_155,1364_35210,0 4279,1364,man,who slides down an escalator railing?,gqSOvUH_njE_151_155,1364_35211,0 4280,1364,bum,who does a man slide down a railing on?,gqSOvUH_njE_151_155,1364_35212,0 4281,1364,man,who slides down a bannister?,gqSOvUH_njE_151_155,1364_35213,0 4282,1364,man,who is sliding down a banister?,gqSOvUH_njE_151_155,1364_35214,0 4283,1364,bannister,who does a man slide down?,gqSOvUH_njE_151_155,1364_35215,0 4284,1364,banister,what is a man sliding down?,gqSOvUH_njE_151_155,1364_35216,0 4285,1364,escalator,what does a man slide down?,gqSOvUH_njE_151_155,1364_35217,0 4286,1364,slide,what is a man doing?,gqSOvUH_njE_151_155,1364_35218,0 4287,1364,rail,what is a man slid down the escalator doing?,gqSOvUH_njE_151_155,1364_35219,0 4288,1365,street,what are a crowd of people dancing in?,gqxpGOHUH9k_113_119,1365_35220,0 4289,1365,street,what do a large group of people dance in?,gqxpGOHUH9k_113_119,1365_35221,0 4290,1365,street,what are many men and women dancing in?,gqxpGOHUH9k_113_119,1365_35222,0 4291,1365,townsperson,what danced in the street?,gqxpGOHUH9k_113_119,1365_35223,0 4292,1365,street,what did the townspeople dance in?,gqxpGOHUH9k_113_119,1365_35224,0 4293,1365,street,what are several people dancing in?,gqxpGOHUH9k_113_119,1365_35225,0 4294,1365,street,what do many people dance in?,gqxpGOHUH9k_113_119,1365_35226,0 4295,1365,village,what are people dancing in?,gqxpGOHUH9k_113_119,1365_35227,0 4296,1365,dance,what are many people doing?,gqxpGOHUH9k_113_119,1365_35228,0 4297,1365,cast,what did a dance outside?,gqxpGOHUH9k_113_119,1365_35229,0 4298,1365,dance,what did the cast do outside?,gqxpGOHUH9k_113_119,1365_35230,0 4299,1365,dance,what are many men and women doing?,gqxpGOHUH9k_113_119,1365_35231,0 4300,1365,dance,what are people doing?,gqxpGOHUH9k_113_119,1365_35232,0 4301,1365,dance,what are a large group of men and women doing?,gqxpGOHUH9k_113_119,1365_35233,0 4302,1365,dance,what are a group of people doing?,gqxpGOHUH9k_113_119,1365_35234,0 4303,1365,dance,what are some people doing?,gqxpGOHUH9k_113_119,1365_35235,0 4304,1365,dance,what are a crowd of people doing?,gqxpGOHUH9k_113_119,1365_35236,0 4305,1365,dance,what are several people doing?,gqxpGOHUH9k_113_119,1365_35237,0 4306,1365,dance,what are the people doing?,gqxpGOHUH9k_113_119,1365_35238,0 4307,1366,elephant,what is startled while crossing a road?,gtIz1u8g1F0_3_13,1366_35239,0 4308,1366,three,how many elephants are crossing a road?,gtIz1u8g1F0_3_13,1366_35240,0 4309,1366,elephant,what is rushing to its parent?,gtIz1u8g1F0_3_13,1366_35241,0 4310,1366,mother,who does a scared baby elephant run to?,gtIz1u8g1F0_3_13,1366_35242,0 4311,1366,elephant,what is walking with its two calves?,gtIz1u8g1F0_3_13,1366_35243,0 4312,1366,three,how many elephants are walking?,gtIz1u8g1F0_3_13,1366_35244,0 4313,1366,mother,who are two baby elephants walking with?,gtIz1u8g1F0_3_13,1366_35245,0 4314,1366,road,what are several elephants crossing?,gtIz1u8g1F0_3_13,1366_35246,0 4315,1366,parent,who is a baby elephant rushing to?,gtIz1u8g1F0_3_13,1366_35247,0 4316,1366,river,what did the elephants leave?,gtIz1u8g1F0_3_13,1366_35248,0 4317,1366,road,what are three elephants crossing?,gtIz1u8g1F0_3_13,1366_35249,0 4318,1366,elephant,what sneezes?,gtIz1u8g1F0_3_13,1366_35250,0 4319,1366,elephant,what is panicking?,gtIz1u8g1F0_3_13,1366_35251,0 4320,1366,elephant,what runs?,gtIz1u8g1F0_3_13,1366_35252,0 4321,1366,panic,what is a baby elephant doing?,gtIz1u8g1F0_3_13,1366_35253,0 4322,1366,walk,what is a baby elephant sneezes and runs towards two other elephants doing?,gtIz1u8g1F0_3_13,1366_35254,0 4323,1366,walk,what are a group of elephants doing?,gtIz1u8g1F0_3_13,1366_35255,0 4324,1366,cros,what is a small elephant is startled while doing?,gtIz1u8g1F0_3_13,1366_35256,0 4325,1366,walk,what is an elephant doing?,gtIz1u8g1F0_3_13,1366_35257,0 4326,1366,walk,what are elephants doing?,gtIz1u8g1F0_3_13,1366_35258,0 4327,1366,cros,what are several elephants doing?,gtIz1u8g1F0_3_13,1366_35259,0 4328,1366,cros,what are three elephants doing?,gtIz1u8g1F0_3_13,1366_35260,0 4329,1366,walk,what are two baby elephants doing?,gtIz1u8g1F0_3_13,1366_35261,0 4330,1366,walk,what is while doing?,gtIz1u8g1F0_3_13,1366_35262,0 4331,1367,girl,who is sitting on stairs doing dance moves?,gtixLEvO2Us_0_6,1367_35263,0 4332,1367,woman,who dances while sitting on the stairs?,gtixLEvO2Us_0_6,1367_35264,0 4333,1367,jig,what does a woman sitting on a staircase do?,gtixLEvO2Us_0_6,1367_35265,0 4334,1367,girl,who danced on stage?,gtixLEvO2Us_0_6,1367_35266,0 4335,1367,woman,who is doing some dance steps?,gtixLEvO2Us_0_6,1367_35267,0 4336,1367,stage,when did the girl dance?,gtixLEvO2Us_0_6,1367_35268,0 4337,1367,body,what did a girl shake on stage?,gtixLEvO2Us_0_6,1367_35269,0 4338,1367,dance,what is a woman doing?,gtixLEvO2Us_0_6,1367_35270,0 4339,1367,woman,who is dancing?,gtixLEvO2Us_0_6,1367_35271,0 4340,1367,dance,what is a woman doing?,gtixLEvO2Us_0_6,1367_35272,0 4341,1367,sit,what is a girl doing?,gtixLEvO2Us_0_6,1367_35273,0 4342,1367,sit,what is a woman dances while doing?,gtixLEvO2Us_0_6,1367_35274,0 4343,1367,dance,what is the woman doing?,gtixLEvO2Us_0_6,1367_35275,0 4344,1368,man,who is talking while being buried in the sand?,gvVsgOK1iJw_32_38,1368_35276,0 4345,1368,man,who was buried up to his head in the sand?,gvVsgOK1iJw_32_38,1368_35277,0 4346,1368,man,who is buried up to his neck on the sand?,gvVsgOK1iJw_32_38,1368_35278,0 4347,1368,man,who is buried up to his head in sand?,gvVsgOK1iJw_32_38,1368_35279,0 4348,1368,man,who is buried in sand with only his head?,gvVsgOK1iJw_32_38,1368_35280,0 4349,1368,sand,what was a man buried up to his head in?,gvVsgOK1iJw_32_38,1368_35281,0 4350,1368,sand,what is a man buried up to his neck on?,gvVsgOK1iJw_32_38,1368_35282,0 4351,1368,sand,what is a man buried up to his head in?,gvVsgOK1iJw_32_38,1368_35283,0 4352,1368,sand,what is a man buried in with only his head?,gvVsgOK1iJw_32_38,1368_35284,0 4353,1368,man,who was buried in the sand?,gvVsgOK1iJw_32_38,1368_35285,0 4354,1368,head,what was a man buried up to in the sand?,gvVsgOK1iJw_32_38,1368_35286,0 4355,1368,man,who is buried in sand?,gvVsgOK1iJw_32_38,1368_35287,0 4356,1368,head,what is a man buried up to in sand?,gvVsgOK1iJw_32_38,1368_35288,0 4357,1368,man,who is covered in sand?,gvVsgOK1iJw_32_38,1368_35289,0 4358,1368,neck,what is a man buried up to on the sand?,gvVsgOK1iJw_32_38,1368_35290,0 4359,1368,man,who is buried in the sand?,gvVsgOK1iJw_32_38,1368_35291,0 4360,1368,dad,who is talking to his kids?,gvVsgOK1iJw_32_38,1368_35292,0 4361,1368,sand,what was a man buried in?,gvVsgOK1iJw_32_38,1368_35293,0 4362,1368,sand,what is the man buried in?,gvVsgOK1iJw_32_38,1368_35294,0 4363,1368,sand,what is a man buried in?,gvVsgOK1iJw_32_38,1368_35295,0 4364,1368,sand,what is a man covered in?,gvVsgOK1iJw_32_38,1368_35296,0 4365,1368,talk,what is a man doing?,gvVsgOK1iJw_32_38,1368_35297,0 4366,1368,talk,what is a dad doing?,gvVsgOK1iJw_32_38,1368_35298,0 4367,1368,talk,what is a man buried neck-deep in sand doing?,gvVsgOK1iJw_32_38,1368_35299,0 4368,1369,man,who brushed the white cat?,gyOVZz7kXyM_1_10,1369_35300,0 4369,1369,man,who brushes a cat?,gyOVZz7kXyM_1_10,1369_35301,0 4370,1369,person,who is combing a cat hair?,gyOVZz7kXyM_1_10,1369_35302,0 4371,1369,someone,who is brushing a cats hair?,gyOVZz7kXyM_1_10,1369_35303,0 4372,1369,woman,who is combing a cat?,gyOVZz7kXyM_1_10,1369_35304,0 4373,1369,person,who is brushing a cat?,gyOVZz7kXyM_1_10,1369_35305,0 4374,1369,cat,what a man brushes?,gyOVZz7kXyM_1_10,1369_35306,0 4375,1369,hair,what is someone brushing?,gyOVZz7kXyM_1_10,1369_35307,0 4376,1369,hair,what is a person combing?,gyOVZz7kXyM_1_10,1369_35308,0 4377,1369,cat,what is a woman combing?,gyOVZz7kXyM_1_10,1369_35309,0 4378,1369,cat,what is a person brushing?,gyOVZz7kXyM_1_10,1369_35310,0 4379,1369,cat,what is being brushed?,gyOVZz7kXyM_1_10,1369_35311,0 4380,1369,lie,what is a white cat doing?,gyOVZz7kXyM_1_10,1369_35312,0 4381,1369,comb,what is a person doing?,gyOVZz7kXyM_1_10,1369_35313,0 4382,1369,brush,what is a person doing?,gyOVZz7kXyM_1_10,1369_35314,0 4383,1369,brush,what is a man doing?,gyOVZz7kXyM_1_10,1369_35315,0 4384,1369,comb,what is a woman doing?,gyOVZz7kXyM_1_10,1369_35316,0 4385,1369,brush,what is someone doing?,gyOVZz7kXyM_1_10,1369_35317,0 4386,1369,comb,what is the man doing?,gyOVZz7kXyM_1_10,1369_35318,0 4387,1370,hatter,who is dropping sugar cubes into a tea cup in which alice is treading tea to keep afloat?,h0JvF9vpqx8_213_223,1370_35319,0 4388,1370,hatter,who put sugar cubes in the cup of tea that alice was in?,h0JvF9vpqx8_213_223,1370_35320,0 4389,1370,sugar,what is the mad hatter dropping into a tea cup in which alice is treading tea to keep afloat?,h0JvF9vpqx8_213_223,1370_35321,0 4390,1370,sugar,what did the mad hatter put in the cup of tea that alice was in?,h0JvF9vpqx8_213_223,1370_35322,0 4391,1370,man,who drops sugar cubes into a large cup of liquid containing a small girl?,h0JvF9vpqx8_213_223,1370_35323,0 4392,1370,man,who is throwing giant sugar cubes into a cup of tea?,h0JvF9vpqx8_213_223,1370_35324,0 4393,1370,man,who is placing sugar cubes in a cup containing tea and a woman?,h0JvF9vpqx8_213_223,1370_35325,0 4394,1370,man,who is putting sugar cubes into some tea?,h0JvF9vpqx8_213_223,1370_35326,0 4395,1370,man,who is adding sugar cubes into a cup?,h0JvF9vpqx8_213_223,1370_35327,0 4396,1370,sugar,what does a man drop into a large cup of liquid containing a small girl?,h0JvF9vpqx8_213_223,1370_35328,0 4397,1370,alouse,who dodged the sugar cubes?,h0JvF9vpqx8_213_223,1370_35329,0 4398,1370,girl,who flounders around in a giant teacup?,h0JvF9vpqx8_213_223,1370_35330,0 4399,1370,giant,what is a man throwing into a cup of tea?,h0JvF9vpqx8_213_223,1370_35331,0 4400,1370,sugar,what is a man placing in a cup containing tea and a woman?,h0JvF9vpqx8_213_223,1370_35332,0 4401,1370,sugar,what is a woman in a teacup being bombarded with by a bigger man?,h0JvF9vpqx8_213_223,1370_35333,0 4402,1370,sugar,what did alice dodge?,h0JvF9vpqx8_213_223,1370_35334,0 4403,1370,cup,what is the man adding sugar cubes into?,h0JvF9vpqx8_213_223,1370_35335,0 4404,1370,tea,what is a man putting sugar cubes into?,h0JvF9vpqx8_213_223,1370_35336,0 4405,1370,alouse,who was in the teacup?,h0JvF9vpqx8_213_223,1370_35337,0 4406,1370,teacup,what was alice in?,h0JvF9vpqx8_213_223,1370_35338,0 4407,1370,sugar,what is a man putting into some tea?,h0JvF9vpqx8_213_223,1370_35339,0 4408,1370,sugar,what is the man adding into a cup?,h0JvF9vpqx8_213_223,1370_35340,0 4409,1370,woman,who is swimming in a tea cup?,h0JvF9vpqx8_213_223,1370_35341,0 4410,1370,man,who puts cubes in a cup?,h0JvF9vpqx8_213_223,1370_35342,0 4411,1370,man,who is adding sugar to coffee?,h0JvF9vpqx8_213_223,1370_35343,0 4412,1370,someone,what is putting sugar into a cup?,h0JvF9vpqx8_213_223,1370_35344,0 4413,1370,woman,who is in a teacup?,h0JvF9vpqx8_213_223,1370_35345,0 4414,1370,cup,what is someone putting sugar into?,h0JvF9vpqx8_213_223,1370_35346,0 4415,1370,sugar,what is someone putting into a cup?,h0JvF9vpqx8_213_223,1370_35347,0 4416,1370,sugar,what is a man adding to coffee?,h0JvF9vpqx8_213_223,1370_35348,0 4417,1370,teacup,what is a small woman in?,h0JvF9vpqx8_213_223,1370_35349,0 4418,1370,drop,what is a huge man tom petty doing?,h0JvF9vpqx8_213_223,1370_35350,0 4419,1370,contain,what is a man drops sugar cubes into a large cup of liquid doing?,h0JvF9vpqx8_213_223,1370_35351,0 4420,1370,place,what is a man doing?,h0JvF9vpqx8_213_223,1370_35352,0 4421,1370,put,what is a man doing?,h0JvF9vpqx8_213_223,1370_35353,0 4422,1370,throw,what is a man doing?,h0JvF9vpqx8_213_223,1370_35354,0 4423,1370,swim,what is a woman doing?,h0JvF9vpqx8_213_223,1370_35355,0 4424,1370,put,what is someone doing?,h0JvF9vpqx8_213_223,1370_35356,0 4425,1370,drop,what is the mad hatter doing?,h0JvF9vpqx8_213_223,1370_35357,0 4426,1371,alouse,who is falling down a series of descending mushrooms?,h0JvF9vpqx8_36_42,1371_35358,0 4427,1371,girl,who tumbles down a row of large mushrooms?,h0JvF9vpqx8_36_42,1371_35359,0 4428,1371,wonderland,who fell down the rabbit hole?,h0JvF9vpqx8_36_42,1371_35360,0 4429,1371,alouse,who is falling down into the rabbit hole?,h0JvF9vpqx8_36_42,1371_35361,0 4430,1371,wonderland,who is falling down some mushrooms?,h0JvF9vpqx8_36_42,1371_35362,0 4431,1371,woman,who is tumbling backwards off a mushroom and downstairs?,h0JvF9vpqx8_36_42,1371_35363,0 4432,1371,woman,who is falling over a stair case?,h0JvF9vpqx8_36_42,1371_35364,0 4433,1371,girl,who is falling down a mushroom staircase?,h0JvF9vpqx8_36_42,1371_35365,0 4434,1371,woman,who is tumbling across toadstools?,h0JvF9vpqx8_36_42,1371_35366,0 4435,1371,woman,who falls down on large mushrooms?,h0JvF9vpqx8_36_42,1371_35367,0 4436,1371,staircase,what is a girl falling down?,h0JvF9vpqx8_36_42,1371_35368,0 4437,1371,girl,who is falling down?,h0JvF9vpqx8_36_42,1371_35369,0 4438,1371,woman,who fell down?,h0JvF9vpqx8_36_42,1371_35370,0 4439,1371,girl,who falls?,h0JvF9vpqx8_36_42,1371_35371,0 4440,1371,fall,what is a girl doing?,h0JvF9vpqx8_36_42,1371_35372,0 4441,1371,fall,what is a woman doing?,h0JvF9vpqx8_36_42,1371_35373,0 4442,1371,tumble,what is a woman doing?,h0JvF9vpqx8_36_42,1371_35374,0 4443,1371,fall,what is alice in wonderland doing?,h0JvF9vpqx8_36_42,1371_35375,0 4444,1371,fall,what is alice doing?,h0JvF9vpqx8_36_42,1371_35376,0 4445,1372,girl,who fell down while racing a car on the bench?,hEOGZoYSvT4_82_86,1372_35377,0 4446,1372,floor,what does a girl rolling something down the lowest bleacher fall down to?,hEOGZoYSvT4_82_86,1372_35378,0 4447,1372,girl,who is falling after running along a bench?,hEOGZoYSvT4_82_86,1372_35379,0 4448,1372,girl,who falls down to the floor?,hEOGZoYSvT4_82_86,1372_35380,0 4449,1372,floor,what does a girl running fall down to?,hEOGZoYSvT4_82_86,1372_35381,0 4450,1372,girl,who falls down on the floor?,hEOGZoYSvT4_82_86,1372_35382,0 4451,1372,floor,what does a girl fall down on?,hEOGZoYSvT4_82_86,1372_35383,0 4452,1372,girl,who falls down while playing?,hEOGZoYSvT4_82_86,1372_35384,0 4453,1372,girl,who is falling down?,hEOGZoYSvT4_82_86,1372_35385,0 4454,1372,girl,who is playing?,hEOGZoYSvT4_82_86,1372_35386,0 4455,1372,girl,who is running?,hEOGZoYSvT4_82_86,1372_35387,0 4456,1372,girl,who fell down?,hEOGZoYSvT4_82_86,1372_35388,0 4457,1372,girl,who falls down?,hEOGZoYSvT4_82_86,1372_35389,0 4458,1372,girl,who falls over?,hEOGZoYSvT4_82_86,1372_35390,0 4459,1372,girl,who is falling?,hEOGZoYSvT4_82_86,1372_35391,0 4460,1372,fall,what is a girl doing?,hEOGZoYSvT4_82_86,1372_35392,0 4461,1372,play,what is a girl falls down while doing?,hEOGZoYSvT4_82_86,1372_35393,0 4462,1372,race,what is the little girl fell down while doing?,hEOGZoYSvT4_82_86,1372_35394,0 4463,1373,reporter,who interviewed a soldier?,hFERWnoc-nU_0_12,1373_35395,0 4464,1373,man,who interviewed the soldier?,hFERWnoc-nU_0_12,1373_35396,0 4465,1373,man,who is interviewing a soldier?,hFERWnoc-nU_0_12,1373_35397,0 4466,1373,man,who is speaking to a woman?,hFERWnoc-nU_0_12,1373_35398,0 4467,1373,man,who interviews a woman?,hFERWnoc-nU_0_12,1373_35399,0 4468,1373,man,who is interviewing a woman?,hFERWnoc-nU_0_12,1373_35400,0 4469,1373,woman,who is doing an interview?,hFERWnoc-nU_0_12,1373_35401,0 4470,1373,two,how many people are talking?,hFERWnoc-nU_0_12,1373_35402,0 4471,1373,soldier,who did the reporter interview?,hFERWnoc-nU_0_12,1373_35403,0 4472,1373,woman,who a man interviews?,hFERWnoc-nU_0_12,1373_35404,0 4473,1373,woman,who is a man speaking to?,hFERWnoc-nU_0_12,1373_35405,0 4474,1373,soldier,who did the man interview?,hFERWnoc-nU_0_12,1373_35406,0 4475,1373,woman,who is a man interviewing?,hFERWnoc-nU_0_12,1373_35407,0 4476,1373,woman,who is the man interviewing?,hFERWnoc-nU_0_12,1373_35408,0 4477,1373,interview,what is a woman doing?,hFERWnoc-nU_0_12,1373_35409,0 4478,1373,woman,who is talking?,hFERWnoc-nU_0_12,1373_35410,0 4479,1373,talk,what are a woman and man doing?,hFERWnoc-nU_0_12,1373_35411,0 4480,1373,talk,what is a man with a tape recorder doing?,hFERWnoc-nU_0_12,1373_35412,0 4481,1373,talk,what is a man doing?,hFERWnoc-nU_0_12,1373_35413,0 4482,1373,speak,what is a man doing?,hFERWnoc-nU_0_12,1373_35414,0 4483,1373,interview,what is a man doing?,hFERWnoc-nU_0_12,1373_35415,0 4484,1373,talk,what are two people doing?,hFERWnoc-nU_0_12,1373_35416,0 4485,1373,interview,what is the man doing?,hFERWnoc-nU_0_12,1373_35417,0 4486,1374,man,who drizzles olive oil to cover the bottom of a pan placed on the gas stove?,hJFBXHtxKIc_118_123,1374_35418,0 4487,1374,person,who is pouring olive oil into a pot on the stove?,hJFBXHtxKIc_118_123,1374_35419,0 4488,1374,someone,who pours oil from a bottle into a saucepan?,hJFBXHtxKIc_118_123,1374_35420,0 4489,1374,man,who is pouring olive oil into a saucepan?,hJFBXHtxKIc_118_123,1374_35421,0 4490,1374,oil,what does a man drizzle to cover the bottom of a pan placed on the gas stove?,hJFBXHtxKIc_118_123,1374_35422,0 4491,1374,person,who pours cooking oil into a pot?,hJFBXHtxKIc_118_123,1374_35423,0 4492,1374,oil,what is a person pouring into a pot on the stove?,hJFBXHtxKIc_118_123,1374_35424,0 4493,1374,bottle,what does someone pour oil from into a saucepan?,hJFBXHtxKIc_118_123,1374_35425,0 4494,1374,oil,what does someone pour from a bottle into a saucepan?,hJFBXHtxKIc_118_123,1374_35426,0 4495,1374,saucepan,what does someone pour oil from a bottle into?,hJFBXHtxKIc_118_123,1374_35427,0 4496,1374,man,who is pouring oil into a pan?,hJFBXHtxKIc_118_123,1374_35428,0 4497,1374,man,who is pouring oil into the pot?,hJFBXHtxKIc_118_123,1374_35429,0 4498,1374,saucepan,what is a man pouring olive oil into?,hJFBXHtxKIc_118_123,1374_35430,0 4499,1374,pot,what does a person pour cooking oil into?,hJFBXHtxKIc_118_123,1374_35431,0 4500,1374,someone,who is pouring olive oil into a pan?,hJFBXHtxKIc_118_123,1374_35432,0 4501,1374,oil,what does a person pour cooking into a pot?,hJFBXHtxKIc_118_123,1374_35433,0 4502,1374,oil,what is a man pouring into a saucepan?,hJFBXHtxKIc_118_123,1374_35434,0 4503,1374,person,who is pouring oil in the pan?,hJFBXHtxKIc_118_123,1374_35435,0 4504,1374,man,who is adding oil to a pot?,hJFBXHtxKIc_118_123,1374_35436,0 4505,1374,oil,what is a man pouring into a pan?,hJFBXHtxKIc_118_123,1374_35437,0 4506,1374,oil,what is the man pouring into the pot?,hJFBXHtxKIc_118_123,1374_35438,0 4507,1374,oil,what is a person pouring in the pan?,hJFBXHtxKIc_118_123,1374_35439,0 4508,1374,oil,what is a man adding to a pot?,hJFBXHtxKIc_118_123,1374_35440,0 4509,1374,lady,who poured oil in a pot?,hJFBXHtxKIc_118_123,1374_35441,0 4510,1374,person,who pours oil into a pot?,hJFBXHtxKIc_118_123,1374_35442,0 4511,1374,lady,who poured oil in the pot?,hJFBXHtxKIc_118_123,1374_35443,0 4512,1374,person,who pours oil in a pot?,hJFBXHtxKIc_118_123,1374_35444,0 4513,1374,pot,what is the man pouring oil into?,hJFBXHtxKIc_118_123,1374_35445,0 4514,1374,someone,who is pouring oil into a pot?,hJFBXHtxKIc_118_123,1374_35446,0 4515,1374,man,who is adding oil to a pan?,hJFBXHtxKIc_118_123,1374_35447,0 4516,1374,oil,what did the lady pour in a pot?,hJFBXHtxKIc_118_123,1374_35448,0 4517,1374,pot,what is a man adding oil to?,hJFBXHtxKIc_118_123,1374_35449,0 4518,1374,oil,what did the lady pour in the pot?,hJFBXHtxKIc_118_123,1374_35450,0 4519,1374,oil,what does a person pour into a pot?,hJFBXHtxKIc_118_123,1374_35451,0 4520,1374,someone,what is putting oil into a pan?,hJFBXHtxKIc_118_123,1374_35452,0 4521,1374,oil,what does a person pour in a pot?,hJFBXHtxKIc_118_123,1374_35453,0 4522,1374,oil,what is a man adding to a pan?,hJFBXHtxKIc_118_123,1374_35454,0 4523,1374,pot,what did the lady pour oil in?,hJFBXHtxKIc_118_123,1374_35455,0 4524,1374,pot,what does a person pour oil into?,hJFBXHtxKIc_118_123,1374_35456,0 4525,1374,pot,what is someone pouring oil into?,hJFBXHtxKIc_118_123,1374_35457,0 4526,1374,oil,what is someone pouring into a pot?,hJFBXHtxKIc_118_123,1374_35458,0 4527,1374,pot,what does a person pour oil in?,hJFBXHtxKIc_118_123,1374_35459,0 4528,1374,oil,what is someone putting into a pan?,hJFBXHtxKIc_118_123,1374_35460,0 4529,1374,chef,what a pan?,hJFBXHtxKIc_118_123,1374_35461,0 4530,1374,pmy,what is a person doing?,hJFBXHtxKIc_118_123,1374_35462,0 4531,1374,pmy,what is someone doing?,hJFBXHtxKIc_118_123,1374_35463,0 4532,1374,pmy,what is a woman doing?,hJFBXHtxKIc_118_123,1374_35464,0 4533,1374,put,what is someone doing?,hJFBXHtxKIc_118_123,1374_35465,0 4534,1374,pmy,what is the man doing?,hJFBXHtxKIc_118_123,1374_35466,0 4535,1374,cook,what is a person pours doing?,hJFBXHtxKIc_118_123,1374_35467,0 4536,1375,person,who is adding seasonings to a pot that is simmering on a stove?,hJFBXHtxKIc_163_168,1375_35468,0 4537,1375,man,who is sprinkling spices onto sausages in a pan?,hJFBXHtxKIc_163_168,1375_35469,0 4538,1375,person,who is adding cumin seeds in the pot?,hJFBXHtxKIc_163_168,1375_35470,0 4539,1375,someone,what is putting seasonings in a pot of sausage?,hJFBXHtxKIc_163_168,1375_35471,0 4540,1375,man,who is adding some spice to a bowl?,hJFBXHtxKIc_163_168,1375_35472,0 4541,1375,bowl,what is a man adding some spice to?,hJFBXHtxKIc_163_168,1375_35473,0 4542,1375,spice,what is a man adding to a bowl?,hJFBXHtxKIc_163_168,1375_35474,0 4543,1375,someone,who is seasoning sausage in a saucepan?,hJFBXHtxKIc_163_168,1375_35475,0 4544,1375,man,who seasons meat in a pot?,hJFBXHtxKIc_163_168,1375_35476,0 4545,1375,man,who the sausages in the pot?,hJFBXHtxKIc_163_168,1375_35477,0 4546,1375,pot,what does the man seasoned the sausages in?,hJFBXHtxKIc_163_168,1375_35478,0 4547,1375,saucepan,what is someone seasoning sausage in?,hJFBXHtxKIc_163_168,1375_35479,0 4548,1375,sausage,what is someone seasoning in a saucepan?,hJFBXHtxKIc_163_168,1375_35480,0 4549,1375,cook,who seasons some meat?,hJFBXHtxKIc_163_168,1375_35481,0 4550,1375,man,who is seasoning the sausages?,hJFBXHtxKIc_163_168,1375_35482,0 4551,1375,someone,who is seasoning some meat?,hJFBXHtxKIc_163_168,1375_35483,0 4552,1375,someone,who is seasoning food?,hJFBXHtxKIc_163_168,1375_35484,0 4553,1375,meat,what a cook seasons?,hJFBXHtxKIc_163_168,1375_35485,0 4554,1375,meat,what is someone seasoning?,hJFBXHtxKIc_163_168,1375_35486,0 4555,1375,person,when meatballs?,hJFBXHtxKIc_163_168,1375_35487,0 4556,1375,cook,when some sausage?,hJFBXHtxKIc_163_168,1375_35488,0 4557,1375,season,what is someone doing?,hJFBXHtxKIc_163_168,1375_35489,0 4558,1375,sprinkle,what is a man doing?,hJFBXHtxKIc_163_168,1375_35490,0 4559,1375,put,what is someone doing?,hJFBXHtxKIc_163_168,1375_35491,0 4560,1375,season,what is the man doing?,hJFBXHtxKIc_163_168,1375_35492,0 4561,1376,man,who pours wine from a bottle into a pan in which sausages are being cooked?,hJFBXHtxKIc_204_209,1376_35493,0 4562,1376,person,who is adding red wine to a pot that is simmering on a stove?,hJFBXHtxKIc_204_209,1376_35494,0 4563,1376,someone,who is pouring a dark liquid into a pan containing several sausages?,hJFBXHtxKIc_204_209,1376_35495,0 4564,1376,someone,who pours a reddish liquid into a saucepan of sausage from a large glass jug?,hJFBXHtxKIc_204_209,1376_35496,0 4565,1376,man,who poured wine into the pot of sausages?,hJFBXHtxKIc_204_209,1376_35497,0 4566,1376,bottle,what does a man pour wine from into a pan in which sausages are being cooked?,hJFBXHtxKIc_204_209,1376_35498,0 4567,1376,wine,what does a man pour from a bottle into a pan in which sausages are being cooked?,hJFBXHtxKIc_204_209,1376_35499,0 4568,1376,chef,who pours wine into a sausage pot?,hJFBXHtxKIc_204_209,1376_35500,0 4569,1376,wine,what is a person adding to a pot that is simmering on a stove?,hJFBXHtxKIc_204_209,1376_35501,0 4570,1376,man,who is pouring some wine into a pan?,hJFBXHtxKIc_204_209,1376_35502,0 4571,1376,man,who is adding wine to a pan with meat?,hJFBXHtxKIc_204_209,1376_35503,0 4572,1376,liquid,what is someone pouring into a pan containing several sausages?,hJFBXHtxKIc_204_209,1376_35504,0 4573,1376,liquid,what does someone pour into a saucepan of sausage from a large glass jug?,hJFBXHtxKIc_204_209,1376_35505,0 4574,1376,wine,what did the man pour into the pot of sausages?,hJFBXHtxKIc_204_209,1376_35506,0 4575,1376,wine,what does a chef pour into a sausage pot?,hJFBXHtxKIc_204_209,1376_35507,0 4576,1376,person,who is adding souse in the pot?,hJFBXHtxKIc_204_209,1376_35508,0 4577,1376,man,who is pouring wine into a pot?,hJFBXHtxKIc_204_209,1376_35509,0 4578,1376,souse,who is a person adding in the pot?,hJFBXHtxKIc_204_209,1376_35510,0 4579,1376,wine,what is a person pouring into a pot?,hJFBXHtxKIc_204_209,1376_35511,0 4580,1376,someone,who is pouring wine over boiling sausage?,hJFBXHtxKIc_204_209,1376_35512,0 4581,1376,wine,what is a man pouring into a pot?,hJFBXHtxKIc_204_209,1376_35513,0 4582,1376,wine,what is a man pouring into a pan?,hJFBXHtxKIc_204_209,1376_35514,0 4583,1376,wine,what is a man adding to a pan with meat?,hJFBXHtxKIc_204_209,1376_35515,0 4584,1376,man,who pours wine in a pot?,hJFBXHtxKIc_204_209,1376_35516,0 4585,1376,man,who pours juice into a pot?,hJFBXHtxKIc_204_209,1376_35517,0 4586,1376,pot,what is a person adding souse in?,hJFBXHtxKIc_204_209,1376_35518,0 4587,1376,pot,what is a person pouring wine into?,hJFBXHtxKIc_204_209,1376_35519,0 4588,1376,pot,what is a man pouring wine into?,hJFBXHtxKIc_204_209,1376_35520,0 4589,1376,man,who is pouring sauce to a pan?,hJFBXHtxKIc_204_209,1376_35521,0 4590,1376,someone,who is pouring something into a pot?,hJFBXHtxKIc_204_209,1376_35522,0 4591,1376,juice,what does a man pour into a pot?,hJFBXHtxKIc_204_209,1376_35523,0 4592,1376,wine,what is someone pouring over boiling sausage?,hJFBXHtxKIc_204_209,1376_35524,0 4593,1376,sauce,what is a man pouring to a pan?,hJFBXHtxKIc_204_209,1376_35525,0 4594,1376,pot,what does a man pour juice into?,hJFBXHtxKIc_204_209,1376_35526,0 4595,1376,pot,what is someone pouring wine into?,hJFBXHtxKIc_204_209,1376_35527,0 4596,1376,wine,what is someone pouring into a pot?,hJFBXHtxKIc_204_209,1376_35528,0 4597,1376,pot,what is someone pouring something into?,hJFBXHtxKIc_204_209,1376_35529,0 4598,1376,pmy,what is a man doing?,hJFBXHtxKIc_204_209,1376_35530,0 4599,1376,pmy,what is someone doing?,hJFBXHtxKIc_204_209,1376_35531,0 4600,1376,pmy,what is the cook doing?,hJFBXHtxKIc_204_209,1376_35532,0 4601,1377,someone,who is pouring tomato sauce from a can into a saucepan containing meat pieces?,hJFBXHtxKIc_225_230,1377_35533,0 4602,1377,man,who empties a can of crushed tomatoes into a pan containing cooked and seasoned sausages?,hJFBXHtxKIc_225_230,1377_35534,0 4603,1377,tomato,what is someone pouring from a can into a saucepan containing meat pieces?,hJFBXHtxKIc_225_230,1377_35535,0 4604,1377,lady,who added tomatoe sauce to the sausage and wine in a pot?,hJFBXHtxKIc_225_230,1377_35536,0 4605,1377,man,who is pouring a can of tomato sauce into a saucepan?,hJFBXHtxKIc_225_230,1377_35537,0 4606,1377,man,who pours tomato sauce into a pan with meat?,hJFBXHtxKIc_225_230,1377_35538,0 4607,1377,man,who added tomatoe sauce to the sausages in the pot?,hJFBXHtxKIc_225_230,1377_35539,0 4608,1377,someone,who is pouring tomato sauce into a pot of meat?,hJFBXHtxKIc_225_230,1377_35540,0 4609,1377,man,who is pouring tomato sauce into the pot?,hJFBXHtxKIc_225_230,1377_35541,0 4610,1377,man,who is pouring a can of tomato sauce into a pan of sausages?,hJFBXHtxKIc_225_230,1377_35542,0 4611,1377,person,who pours tomato sauce in a pot?,hJFBXHtxKIc_225_230,1377_35543,0 4612,1377,man,who is adding tomato sauce to a pot?,hJFBXHtxKIc_225_230,1377_35544,0 4613,1377,man,who pours tomato paste into a pot?,hJFBXHtxKIc_225_230,1377_35545,0 4614,1377,chef,who pours sauce into a sausage pan?,hJFBXHtxKIc_225_230,1377_35546,0 4615,1377,man,who is pouring some sauce into a pan?,hJFBXHtxKIc_225_230,1377_35547,0 4616,1377,person,who is pouring a souse in a pan?,hJFBXHtxKIc_225_230,1377_35548,0 4617,1377,person,who pours a can of sauce into a pot of meat?,hJFBXHtxKIc_225_230,1377_35549,0 4618,1377,man,who puts tomato sauce in a pot?,hJFBXHtxKIc_225_230,1377_35550,0 4619,1377,tomatoe,what did the lady add to the sausage and wine in a pot?,hJFBXHtxKIc_225_230,1377_35551,0 4620,1377,sausage,what does a chef pour sauce into pan?,hJFBXHtxKIc_225_230,1377_35552,0 4621,1377,meat,what does a man pour tomato sauce into a pan with?,hJFBXHtxKIc_225_230,1377_35553,0 4622,1377,pot,what does a man pour tomato paste into?,hJFBXHtxKIc_225_230,1377_35554,0 4623,1377,sauce,what does a chef pour into a sausage pan?,hJFBXHtxKIc_225_230,1377_35555,0 4624,1377,tomato,what is a man pouring a can of into a saucepan?,hJFBXHtxKIc_225_230,1377_35556,0 4625,1377,tomato,what is someone pouring into a pot of meat?,hJFBXHtxKIc_225_230,1377_35557,0 4626,1377,tomato,what does a man pour into a pan with meat?,hJFBXHtxKIc_225_230,1377_35558,0 4627,1377,tomatoe,what did the man add to the sausages in the pot?,hJFBXHtxKIc_225_230,1377_35559,0 4628,1377,pot,what is the man pouring tomato sauce into?,hJFBXHtxKIc_225_230,1377_35560,0 4629,1377,souse,who is a person pouring in a pan?,hJFBXHtxKIc_225_230,1377_35561,0 4630,1377,pot,what is a man adding tomato sauce to?,hJFBXHtxKIc_225_230,1377_35562,0 4631,1377,pot,what does a man put tomato sauce in?,hJFBXHtxKIc_225_230,1377_35563,0 4632,1377,tomato,what is someone pouring a can of into a pan of sausages?,hJFBXHtxKIc_225_230,1377_35564,0 4633,1377,tomato,what does a man pour into a pot?,hJFBXHtxKIc_225_230,1377_35565,0 4634,1377,tomato,what is a man pouring a can of into a pan of sausages?,hJFBXHtxKIc_225_230,1377_35566,0 4635,1377,tomato,what is the man pouring into the pot?,hJFBXHtxKIc_225_230,1377_35567,0 4636,1377,sauce,what does a person pour a can of into a pot of meat?,hJFBXHtxKIc_225_230,1377_35568,0 4637,1377,sauce,what is a man pouring into a pan?,hJFBXHtxKIc_225_230,1377_35569,0 4638,1377,tomato,what is a man adding to a pot?,hJFBXHtxKIc_225_230,1377_35570,0 4639,1377,tomato,what does a man put in a pot?,hJFBXHtxKIc_225_230,1377_35571,0 4640,1377,someone,who is pouring ingrediants into a pot?,hJFBXHtxKIc_225_230,1377_35572,0 4641,1377,pot,what is someone pouring ingrediants into?,hJFBXHtxKIc_225_230,1377_35573,0 4642,1377,man,who is adding sauce to pan?,hJFBXHtxKIc_225_230,1377_35574,0 4643,1377,sauce,what is a man adding to pan?,hJFBXHtxKIc_225_230,1377_35575,0 4644,1377,pmy,what is someone doing?,hJFBXHtxKIc_225_230,1377_35576,0 4645,1377,pmy,what is a man doing?,hJFBXHtxKIc_225_230,1377_35577,0 4646,1377,pmy,what is a person doing?,hJFBXHtxKIc_225_230,1377_35578,0 4647,1377,contain,what is a man empties a can of crushed tomatoes into a pan doing?,hJFBXHtxKIc_225_230,1377_35579,0 4648,1377,pmy,what is the man doing?,hJFBXHtxKIc_225_230,1377_35580,0 4649,1378,man,who pours cooked pasta from a plastic container into a bowl?,hJFBXHtxKIc_286_291,1378_35581,0 4650,1378,bowl,what does a man pour cooked pasta from a plastic container into?,hJFBXHtxKIc_286_291,1378_35582,0 4651,1378,pastum,what does a man pour cooked from a plastic container into a bowl?,hJFBXHtxKIc_286_291,1378_35583,0 4652,1378,man,who is adding a noodles in the plate?,hJFBXHtxKIc_286_291,1378_35584,0 4653,1378,man,who is pouring pasta onto a plate?,hJFBXHtxKIc_286_291,1378_35585,0 4654,1378,man,who is pouring noodles into a bowl?,hJFBXHtxKIc_286_291,1378_35586,0 4655,1378,man,who is pouring pasta into a bowl?,hJFBXHtxKIc_286_291,1378_35587,0 4656,1378,man,who is putting noodles into a bowl?,hJFBXHtxKIc_286_291,1378_35588,0 4657,1378,man,who put the pasta in a bowl?,hJFBXHtxKIc_286_291,1378_35589,0 4658,1378,man,who is putting noodles in a bowl?,hJFBXHtxKIc_286_291,1378_35590,0 4659,1378,pastum,what is a man pouring onto a plate?,hJFBXHtxKIc_286_291,1378_35591,0 4660,1378,man,who is adding something to a bowl?,hJFBXHtxKIc_286_291,1378_35592,0 4661,1378,man,who poured noodles into a bowl?,hJFBXHtxKIc_286_291,1378_35593,0 4662,1378,pastum,what is the man pouring into a bowl?,hJFBXHtxKIc_286_291,1378_35594,0 4663,1378,bowl,what did the man put the pasta in?,hJFBXHtxKIc_286_291,1378_35595,0 4664,1378,pastum,what did the man put in a bowl?,hJFBXHtxKIc_286_291,1378_35596,0 4665,1378,plate,what is a man adding a noodles in?,hJFBXHtxKIc_286_291,1378_35597,0 4666,1378,plate,what is a man pouring pasta onto?,hJFBXHtxKIc_286_291,1378_35598,0 4667,1378,man,who pours pasta into a dish?,hJFBXHtxKIc_286_291,1378_35599,0 4668,1378,something,what is a man adding to a bowl?,hJFBXHtxKIc_286_291,1378_35600,0 4669,1378,bowl,what is a man pouring noodles into?,hJFBXHtxKIc_286_291,1378_35601,0 4670,1378,man,who puts noodles into a bowl?,hJFBXHtxKIc_286_291,1378_35602,0 4671,1378,bowl,what is a man pouring pasta into?,hJFBXHtxKIc_286_291,1378_35603,0 4672,1378,bowl,what is the man pouring pasta into?,hJFBXHtxKIc_286_291,1378_35604,0 4673,1378,bowl,what is a man putting noodles into?,hJFBXHtxKIc_286_291,1378_35605,0 4674,1378,bowl,what is a man putting noodles in?,hJFBXHtxKIc_286_291,1378_35606,0 4675,1378,man,who puts pasta in a bowl?,hJFBXHtxKIc_286_291,1378_35607,0 4676,1378,bowl,what is a man adding something to?,hJFBXHtxKIc_286_291,1378_35608,0 4677,1378,pastum,what does a man pour into a dish?,hJFBXHtxKIc_286_291,1378_35609,0 4678,1378,bowl,what did the man pour noodles into?,hJFBXHtxKIc_286_291,1378_35610,0 4679,1378,dish,what does a man pour pasta into?,hJFBXHtxKIc_286_291,1378_35611,0 4680,1378,pastum,what does a man put in a bowl?,hJFBXHtxKIc_286_291,1378_35612,0 4681,1378,bowl,what does a man put noodles into?,hJFBXHtxKIc_286_291,1378_35613,0 4682,1378,bowl,what does a man put pasta in?,hJFBXHtxKIc_286_291,1378_35614,0 4683,1378,put,what is a man doing?,hJFBXHtxKIc_286_291,1378_35615,0 4684,1378,pmy,what is a man doing?,hJFBXHtxKIc_286_291,1378_35616,0 4685,1378,pmy,what is the man doing?,hJFBXHtxKIc_286_291,1378_35617,0 4686,1379,man,who is spooning spaghetti sauce from a saucepan onto a bowl of pasta?,hJFBXHtxKIc_298_303,1379_35618,0 4687,1379,man,who puts tomato sauce on a plate of spaghetti?,hJFBXHtxKIc_298_303,1379_35619,0 4688,1379,man,who spoons sauce into a bowl of spaghetti?,hJFBXHtxKIc_298_303,1379_35620,0 4689,1379,man,who poured a meatball and sauce on the noodles?,hJFBXHtxKIc_298_303,1379_35621,0 4690,1379,man,who is putting a meat sauce over pasta?,hJFBXHtxKIc_298_303,1379_35622,0 4691,1379,man,who put a meatball and sauce on the pasta?,hJFBXHtxKIc_298_303,1379_35623,0 4692,1379,man,who is putting food from pan to a plate?,hJFBXHtxKIc_298_303,1379_35624,0 4693,1379,man,who puts a sausage along with sauce over cooked pasta served on a plate?,hJFBXHtxKIc_298_303,1379_35625,0 4694,1379,man,who is putting sauce onto some spaghetti?,hJFBXHtxKIc_298_303,1379_35626,0 4695,1379,saucepan,what is a man spooning spaghetti sauce from onto a bowl of pasta?,hJFBXHtxKIc_298_303,1379_35627,0 4696,1379,man,who is pouring sauce over the pasta?,hJFBXHtxKIc_298_303,1379_35628,0 4697,1379,man,who is fixing a plate of food?,hJFBXHtxKIc_298_303,1379_35629,0 4698,1379,sauce,what does a man spoon into a bowl of spaghetti?,hJFBXHtxKIc_298_303,1379_35630,0 4699,1379,man,who is adding sauce to a plate?,hJFBXHtxKIc_298_303,1379_35631,0 4700,1379,man,who is removing food from a pot?,hJFBXHtxKIc_298_303,1379_35632,0 4701,1379,tomato,what does a man put on a plate of spaghetti?,hJFBXHtxKIc_298_303,1379_35633,0 4702,1379,man,who spoons sauce onto pasta?,hJFBXHtxKIc_298_303,1379_35634,0 4703,1379,sauce,what is a man putting onto some spaghetti?,hJFBXHtxKIc_298_303,1379_35635,0 4704,1379,pastum,what did the man put a meatball and sauce on?,hJFBXHtxKIc_298_303,1379_35636,0 4705,1379,food,what is a man putting from pan to a plate?,hJFBXHtxKIc_298_303,1379_35637,0 4706,1379,food,what is a man fixing a plate of?,hJFBXHtxKIc_298_303,1379_35638,0 4707,1379,pastum,what is a man putting a meat sauce over?,hJFBXHtxKIc_298_303,1379_35639,0 4708,1379,sausage,what does a man put along with sauce over cooked pasta served on a plate?,hJFBXHtxKIc_298_303,1379_35640,0 4709,1379,sauce,what is the man pouring over the pasta?,hJFBXHtxKIc_298_303,1379_35641,0 4710,1379,food,what is a man removing from a pot?,hJFBXHtxKIc_298_303,1379_35642,0 4711,1379,sauce,what is a man adding to a plate?,hJFBXHtxKIc_298_303,1379_35643,0 4712,1379,man,who is putting sauce over pasta?,hJFBXHtxKIc_298_303,1379_35644,0 4713,1379,man,who puts sauce on some pasta?,hJFBXHtxKIc_298_303,1379_35645,0 4714,1379,pastum,what is the man pouring sauce over?,hJFBXHtxKIc_298_303,1379_35646,0 4715,1379,sauce,what is a man putting over pasta?,hJFBXHtxKIc_298_303,1379_35647,0 4716,1379,plate,what is a man adding sauce to?,hJFBXHtxKIc_298_303,1379_35648,0 4717,1379,pot,what is a man removing food from?,hJFBXHtxKIc_298_303,1379_35649,0 4718,1379,man,who is spooning out spaghetti sauce?,hJFBXHtxKIc_298_303,1379_35650,0 4719,1379,sauce,what does a man spoon onto pasta?,hJFBXHtxKIc_298_303,1379_35651,0 4720,1379,sauce,what does a man put on some pasta?,hJFBXHtxKIc_298_303,1379_35652,0 4721,1379,pastum,what does a man spoon sauce onto?,hJFBXHtxKIc_298_303,1379_35653,0 4722,1379,pastum,what is a man putting sauce over?,hJFBXHtxKIc_298_303,1379_35654,0 4723,1379,pastum,what does a man put sauce on?,hJFBXHtxKIc_298_303,1379_35655,0 4724,1379,spoon,what is a man doing?,hJFBXHtxKIc_298_303,1379_35656,0 4725,1379,put,what is a man doing?,hJFBXHtxKIc_298_303,1379_35657,0 4726,1379,fix,what is a man doing?,hJFBXHtxKIc_298_303,1379_35658,0 4727,1379,pmy,what is the man doing?,hJFBXHtxKIc_298_303,1379_35659,0 4728,1380,man,who is twirling spaghetti onto a fork?,hJFBXHtxKIc_310_315,1380_35660,0 4729,1380,man,what a fork into spaghetti in a bowl?,hJFBXHtxKIc_310_315,1380_35661,0 4730,1380,man,who picks up a forkful of spaghetti?,hJFBXHtxKIc_310_315,1380_35662,0 4731,1380,man,who is spinning spaghetti onto a fork?,hJFBXHtxKIc_310_315,1380_35663,0 4732,1380,man,who is holding a plateful of spaghetti?,hJFBXHtxKIc_310_315,1380_35664,0 4733,1380,man,who looks at a forkful of spaghetti?,hJFBXHtxKIc_310_315,1380_35665,0 4734,1380,fork,what is a man twirling spaghetti onto?,hJFBXHtxKIc_310_315,1380_35666,0 4735,1380,fork,what is a man spinning spaghetti onto?,hJFBXHtxKIc_310_315,1380_35667,0 4736,1380,man,who tasted the noodle and sauce?,hJFBXHtxKIc_310_315,1380_35668,0 4737,1380,man,who tried some sauce and pasta?,hJFBXHtxKIc_310_315,1380_35669,0 4738,1380,man,who is eating spaghetti?,hJFBXHtxKIc_310_315,1380_35670,0 4739,1380,man,who demonstrates a food dish?,hJFBXHtxKIc_310_315,1380_35671,0 4740,1380,man,who eats spaghetti?,hJFBXHtxKIc_310_315,1380_35672,0 4741,1380,guy,who is eating food?,hJFBXHtxKIc_310_315,1380_35673,0 4742,1380,man,who is eating something?,hJFBXHtxKIc_310_315,1380_35674,0 4743,1380,man,who is eating a food?,hJFBXHtxKIc_310_315,1380_35675,0 4744,1380,food,what does a man demonstrate?,hJFBXHtxKIc_310_315,1380_35676,0 4745,1380,food,what is a guy eating?,hJFBXHtxKIc_310_315,1380_35677,0 4746,1380,food,what is a man eating?,hJFBXHtxKIc_310_315,1380_35678,0 4747,1380,man,who is eating?,hJFBXHtxKIc_310_315,1380_35679,0 4748,1380,hold,what is a man doing?,hJFBXHtxKIc_310_315,1380_35680,0 4749,1380,eat,what is a man doing?,hJFBXHtxKIc_310_315,1380_35681,0 4750,1380,twirl,what is a man doing?,hJFBXHtxKIc_310_315,1380_35682,0 4751,1380,eat,what is a guy doing?,hJFBXHtxKIc_310_315,1380_35683,0 4752,1380,eat,what is the man doing?,hJFBXHtxKIc_310_315,1380_35684,0 4753,1380,spin,what is a man doing?,hJFBXHtxKIc_310_315,1380_35685,0 4754,1381,man,who is eating spaghetti from a large bowl while standing?,hJFBXHtxKIc_317_322,1381_35686,0 4755,1381,man,who is eating spaghetti out of a large bowl?,hJFBXHtxKIc_317_322,1381_35687,0 4756,1381,man,who ate some pasta from a bowl?,hJFBXHtxKIc_317_322,1381_35688,0 4757,1381,bowl,what did the man eat some pasta from?,hJFBXHtxKIc_317_322,1381_35689,0 4758,1381,pastum,what did the man eat from a bowl?,hJFBXHtxKIc_317_322,1381_35690,0 4759,1381,man,who eats sphagetti sauce?,hJFBXHtxKIc_317_322,1381_35691,0 4760,1381,man,who is eating from a plate?,hJFBXHtxKIc_317_322,1381_35692,0 4761,1381,man,who is eating spaghetti?,hJFBXHtxKIc_317_322,1381_35693,0 4762,1381,man,who is eating food?,hJFBXHtxKIc_317_322,1381_35694,0 4763,1381,man,who is eating something?,hJFBXHtxKIc_317_322,1381_35695,0 4764,1381,man,who tried his pasta and sauce?,hJFBXHtxKIc_317_322,1381_35696,0 4765,1381,plate,what is a man eating from?,hJFBXHtxKIc_317_322,1381_35697,0 4766,1381,food,what is a man eating?,hJFBXHtxKIc_317_322,1381_35698,0 4767,1381,man,who is eating?,hJFBXHtxKIc_317_322,1381_35699,0 4768,1381,eat,what is a man doing?,hJFBXHtxKIc_317_322,1381_35700,0 4769,1381,taste,what is a man doing?,hJFBXHtxKIc_317_322,1381_35701,0 4770,1381,eat,what is the man doing?,hJFBXHtxKIc_317_322,1381_35702,0 4771,1382,patio,what did the kids dance on?,hJuqBDw_TT4_105_112,1382_35703,0 4772,1382,patio,what are several people dancing on?,hJuqBDw_TT4_105_112,1382_35704,0 4773,1382,house,what are people dancing together near?,hJuqBDw_TT4_105_112,1382_35705,0 4774,1382,dance,what are a group of teenagers doing?,hJuqBDw_TT4_105_112,1382_35706,0 4775,1382,dance,what are people doing?,hJuqBDw_TT4_105_112,1382_35707,0 4776,1382,dance,what are a group of people doing?,hJuqBDw_TT4_105_112,1382_35708,0 4777,1382,dance,what are peoples doing?,hJuqBDw_TT4_105_112,1382_35709,0 4778,1382,dance,what are some people doing?,hJuqBDw_TT4_105_112,1382_35710,0 4779,1382,dance,what are teenagers doing?,hJuqBDw_TT4_105_112,1382_35711,0 4780,1382,dance,what are several people doing?,hJuqBDw_TT4_105_112,1382_35712,0 4781,1382,dance,what are the people doing?,hJuqBDw_TT4_105_112,1382_35713,0 4782,1383,woman,who is pulled into pool by a hand?,hJuqBDw_TT4_14_25,1383_35714,0 4783,1383,woman,who is a sea creature dragging off a pier?,hJuqBDw_TT4_14_25,1383_35715,0 4784,1383,creature,what is dragging a woman off a pier?,hJuqBDw_TT4_14_25,1383_35716,0 4785,1383,lady,who did the snake pull into the lake?,hJuqBDw_TT4_14_25,1383_35717,0 4786,1383,woman,who is attacked by a strange looking creature?,hJuqBDw_TT4_14_25,1383_35718,0 4787,1383,lake,what did the snake pull the lady into?,hJuqBDw_TT4_14_25,1383_35719,0 4788,1383,creature,what is pulling a woman into the water?,hJuqBDw_TT4_14_25,1383_35720,0 4789,1383,pier,what is a sea creature dragging a woman off?,hJuqBDw_TT4_14_25,1383_35721,0 4790,1383,woman,who is a creature pulling into the water?,hJuqBDw_TT4_14_25,1383_35722,0 4791,1383,snake,what pulled the lady into the lake?,hJuqBDw_TT4_14_25,1383_35723,0 4792,1383,water,what is a woman seated by a lake dragged into beneath?,hJuqBDw_TT4_14_25,1383_35724,0 4793,1383,woman,who is attacked by an underwater monster?,hJuqBDw_TT4_14_25,1383_35725,0 4794,1383,water,what is a creature dragging a woman into?,hJuqBDw_TT4_14_25,1383_35726,0 4795,1383,water,what is a creature pulling a woman into?,hJuqBDw_TT4_14_25,1383_35727,0 4796,1383,creature,what is dragging a woman into water?,hJuqBDw_TT4_14_25,1383_35728,0 4797,1383,hand,what is a woman pulled into pool by?,hJuqBDw_TT4_14_25,1383_35729,0 4798,1383,woman,who is a creature dragging into water?,hJuqBDw_TT4_14_25,1383_35730,0 4799,1383,pool,what is a woman pulled into by a hand?,hJuqBDw_TT4_14_25,1383_35731,0 4800,1383,ankle,what is a woman seated by a lake pulled at by a black gloved hand?,hJuqBDw_TT4_14_25,1383_35732,0 4801,1383,woman,who is being pulling into a lake?,hJuqBDw_TT4_14_25,1383_35733,0 4802,1383,woman,who is being dragged off a dock?,hJuqBDw_TT4_14_25,1383_35734,0 4803,1383,snake,what grabbed the sunbather?,hJuqBDw_TT4_14_25,1383_35735,0 4804,1383,sunbather,who did the snake grab?,hJuqBDw_TT4_14_25,1383_35736,0 4805,1383,woman,who is being pulled into water?,hJuqBDw_TT4_14_25,1383_35737,0 4806,1383,woman,who is attacked by a monster?,hJuqBDw_TT4_14_25,1383_35738,0 4807,1383,dock,what is a woman being dragged off?,hJuqBDw_TT4_14_25,1383_35739,0 4808,1383,woman,who is pulled into the water?,hJuqBDw_TT4_14_25,1383_35740,0 4809,1383,water,what is a woman being pulled into?,hJuqBDw_TT4_14_25,1383_35741,0 4810,1383,water,what is a woman pulled into?,hJuqBDw_TT4_14_25,1383_35742,0 4811,1383,sit,what is a woman doing?,hJuqBDw_TT4_14_25,1383_35743,0 4812,1383,sit,what is a woman in a bathing suit doing?,hJuqBDw_TT4_14_25,1383_35744,0 4813,1383,look,what is a woman is attacked by a strange doing?,hJuqBDw_TT4_14_25,1383_35745,0 4814,1383,drag,what is a creature doing?,hJuqBDw_TT4_14_25,1383_35746,0 4815,1383,drag,what is a sea creature doing?,hJuqBDw_TT4_14_25,1383_35747,0 4816,1383,pull,what is a creature doing?,hJuqBDw_TT4_14_25,1383_35748,0 4817,1383,something,what is doing?,hJuqBDw_TT4_14_25,1383_35749,0 4818,1384,hamster,what is running fast enough in a wheel to get knocked out of it?,hM3jzlyNIpc_0_10,1384_35750,0 4819,1384,hamster,what is running on hamster wheel?,hM3jzlyNIpc_0_10,1384_35751,0 4820,1384,hamster,what ran in the wheel?,hM3jzlyNIpc_0_10,1384_35752,0 4821,1384,hamster,what is on the spinning wheel?,hM3jzlyNIpc_0_10,1384_35753,0 4822,1384,hamster,what is spinning in a wheel?,hM3jzlyNIpc_0_10,1384_35754,0 4823,1384,hamster,what is on a exercise wheel?,hM3jzlyNIpc_0_10,1384_35755,0 4824,1384,hamster,what is spinning very fast in its wheel?,hM3jzlyNIpc_0_10,1384_35756,0 4825,1384,wheel,what is a hamster spinning in?,hM3jzlyNIpc_0_10,1384_35757,0 4826,1384,hamster,what is a hamster running on?,hM3jzlyNIpc_0_10,1384_35758,0 4827,1384,hamster,what does then fall out of?,hM3jzlyNIpc_0_10,1384_35759,0 4828,1384,wheel,what did the hamster run in?,hM3jzlyNIpc_0_10,1384_35760,0 4829,1384,mill,what does a hamster run on?,hM3jzlyNIpc_0_10,1384_35761,0 4830,1384,wheel,what is a hamster spinning very fast in?,hM3jzlyNIpc_0_10,1384_35762,0 4831,1384,spin,what is a hamster doing?,hM3jzlyNIpc_0_10,1384_35763,0 4832,1385,place,where are a group of people marching?,hNECyt6Bo0A_5_10,1385_35764,0 4833,1385,place,what are a group of people marching in?,hNECyt6Bo0A_5_10,1385_35765,0 4834,1385,three,how many persons are doing same exercise?,hNECyt6Bo0A_5_10,1385_35766,0 4835,1385,three,how many individuals do aerobic exercises?,hNECyt6Bo0A_5_10,1385_35767,0 4836,1385,three,how many kids are marching in place?,hNECyt6Bo0A_5_10,1385_35768,0 4837,1385,three,how many people exercised to a video?,hNECyt6Bo0A_5_10,1385_35769,0 4838,1385,three,how many people jog in place?,hNECyt6Bo0A_5_10,1385_35770,0 4839,1385,three,how many people are marching in place?,hNECyt6Bo0A_5_10,1385_35771,0 4840,1385,three,how many people are walking in place?,hNECyt6Bo0A_5_10,1385_35772,0 4841,1385,three,how many people march in place?,hNECyt6Bo0A_5_10,1385_35773,0 4842,1385,place,where are three kids marching?,hNECyt6Bo0A_5_10,1385_35774,0 4843,1385,place,where do three people jog?,hNECyt6Bo0A_5_10,1385_35775,0 4844,1385,place,where are three people marching?,hNECyt6Bo0A_5_10,1385_35776,0 4845,1385,place,where do three people march?,hNECyt6Bo0A_5_10,1385_35777,0 4846,1385,place,where are three people walking?,hNECyt6Bo0A_5_10,1385_35778,0 4847,1385,three,how many people are marching?,hNECyt6Bo0A_5_10,1385_35779,0 4848,1385,three,how many people are exercising?,hNECyt6Bo0A_5_10,1385_35780,0 4849,1385,three,how many people exercise?,hNECyt6Bo0A_5_10,1385_35781,0 4850,1385,three,how many people are dancing?,hNECyt6Bo0A_5_10,1385_35782,0 4851,1385,video,what did the people exercise to?,hNECyt6Bo0A_5_10,1385_35783,0 4852,1385,place,what are three kids marching in?,hNECyt6Bo0A_5_10,1385_35784,0 4853,1385,place,what do three people jog in?,hNECyt6Bo0A_5_10,1385_35785,0 4854,1385,video,what did three people exercise to?,hNECyt6Bo0A_5_10,1385_35786,0 4855,1385,place,what are three people marching in?,hNECyt6Bo0A_5_10,1385_35787,0 4856,1385,place,what do three people march in?,hNECyt6Bo0A_5_10,1385_35788,0 4857,1385,exercise,what are three persons doing?,hNECyt6Bo0A_5_10,1385_35789,0 4858,1385,place,what are three people walking in?,hNECyt6Bo0A_5_10,1385_35790,0 4859,1385,march,what are a group of people doing?,hNECyt6Bo0A_5_10,1385_35791,0 4860,1385,exercise,what are the women doing?,hNECyt6Bo0A_5_10,1385_35792,0 4861,1385,march,what are three kids doing?,hNECyt6Bo0A_5_10,1385_35793,0 4862,1385,dance,what are three people doing?,hNECyt6Bo0A_5_10,1385_35794,0 4863,1385,walk,what are three people doing?,hNECyt6Bo0A_5_10,1385_35795,0 4864,1385,stamp,what are two women and a man doing?,hNECyt6Bo0A_5_10,1385_35796,0 4865,1386,goalie,who is blocking a soccer ball from entering the goal?,hNOzHvsEmg4_31_36,1386_35797,0 4866,1386,goalie,who blocked the ball out of the goal?,hNOzHvsEmg4_31_36,1386_35798,0 4867,1386,goalie,who is blocking a shot during a soccer game?,hNOzHvsEmg4_31_36,1386_35799,0 4868,1386,goalie,who makes a save in a soccer game?,hNOzHvsEmg4_31_36,1386_35800,0 4869,1386,ball,what did the goalie block out of the goal?,hNOzHvsEmg4_31_36,1386_35801,0 4870,1386,soccer,what is a goalie blocking from entering the goal?,hNOzHvsEmg4_31_36,1386_35802,0 4871,1386,shot,what is a goalie blocking during a soccer game?,hNOzHvsEmg4_31_36,1386_35803,0 4872,1386,goalie,who prevents a goal in soccer?,hNOzHvsEmg4_31_36,1386_35804,0 4873,1386,goalie,who blocks a goal in soccer?,hNOzHvsEmg4_31_36,1386_35805,0 4874,1386,two,how many teams are playing soccer?,hNOzHvsEmg4_31_36,1386_35806,0 4875,1386,goalie,who stops a soccer ball?,hNOzHvsEmg4_31_36,1386_35807,0 4876,1386,goalie,who blocks a kick?,hNOzHvsEmg4_31_36,1386_35808,0 4877,1386,goalie,who blocks a football?,hNOzHvsEmg4_31_36,1386_35809,0 4878,1386,goalkeeper,who makes a save?,hNOzHvsEmg4_31_36,1386_35810,0 4879,1386,soccer,what does a goalie stop?,hNOzHvsEmg4_31_36,1386_35811,0 4880,1386,soccer,what are some men playing?,hNOzHvsEmg4_31_36,1386_35812,0 4881,1386,football,what are men playing?,hNOzHvsEmg4_31_36,1386_35813,0 4882,1386,soccer,what are the men playing?,hNOzHvsEmg4_31_36,1386_35814,0 4883,1386,soccer,what are two teams playing?,hNOzHvsEmg4_31_36,1386_35815,0 4884,1386,play,what are two teams doing?,hNOzHvsEmg4_31_36,1386_35816,0 4885,1386,play,what are men doing?,hNOzHvsEmg4_31_36,1386_35817,0 4886,1386,block,what is a goalie doing?,hNOzHvsEmg4_31_36,1386_35818,0 4887,1386,play,what are some men doing?,hNOzHvsEmg4_31_36,1386_35819,0 4888,1386,play,what are the men doing?,hNOzHvsEmg4_31_36,1386_35820,0 4889,1387,man,who did th chimpanzee do martial arts kicks with?,hNPZmTlY_3Q_0_8,1387_35821,0 4890,1387,chimpanzee,what did martial arts kicks with a man?,hNPZmTlY_3Q_0_8,1387_35822,0 4891,1387,monkey,what is practicing martial arts moves with a man?,hNPZmTlY_3Q_0_8,1387_35823,0 4892,1387,man,who is a monkey practicing martial arts moves with?,hNPZmTlY_3Q_0_8,1387_35824,0 4893,1387,monkey,what pratices martial arts?,hNPZmTlY_3Q_0_8,1387_35825,0 4894,1387,chimpanzee,what is performing karate kicks?,hNPZmTlY_3Q_0_8,1387_35826,0 4895,1387,karate,what are a chimpanzee and a man practicing?,hNPZmTlY_3Q_0_8,1387_35827,0 4896,1387,monkey,what is doing martial arts moves?,hNPZmTlY_3Q_0_8,1387_35828,0 4897,1387,chimp,what is doing karate moves?,hNPZmTlY_3Q_0_8,1387_35829,0 4898,1387,chimpanzee,what is doing martial arts?,hNPZmTlY_3Q_0_8,1387_35830,0 4899,1387,monkey,what is practicing karate?,hNPZmTlY_3Q_0_8,1387_35831,0 4900,1387,monkey,what is karate kicking a person?,hNPZmTlY_3Q_0_8,1387_35832,0 4901,1387,monkey,what is showing fight stunts?,hNPZmTlY_3Q_0_8,1387_35833,0 4902,1387,karate,what is a chimpanzee performing kicks?,hNPZmTlY_3Q_0_8,1387_35834,0 4903,1387,man,who is a monkey fighting with?,hNPZmTlY_3Q_0_8,1387_35835,0 4904,1387,monkey,what is fighting with a man?,hNPZmTlY_3Q_0_8,1387_35836,0 4905,1387,chimp,what is kicking a target?,hNPZmTlY_3Q_0_8,1387_35837,0 4906,1387,target,what is a chimp kicking?,hNPZmTlY_3Q_0_8,1387_35838,0 4907,1387,karate,what is a chimp doing?,hNPZmTlY_3Q_0_8,1387_35839,0 4908,1387,karate,what is a monkey practicing?,hNPZmTlY_3Q_0_8,1387_35840,0 4909,1387,fight,what is a monkey showing?,hNPZmTlY_3Q_0_8,1387_35841,0 4910,1387,karate,what is a chimpanzee performing?,hNPZmTlY_3Q_0_8,1387_35842,0 4911,1387,kick,what is a chimp doing?,hNPZmTlY_3Q_0_8,1387_35843,0 4912,1387,practice,what are a chimpanzee and a man doing?,hNPZmTlY_3Q_0_8,1387_35844,0 4913,1387,fight,what is a monkey doing?,hNPZmTlY_3Q_0_8,1387_35845,0 4914,1387,show,what is a monkey doing?,hNPZmTlY_3Q_0_8,1387_35846,0 4915,1387,kick,what is a monkey is karate doing?,hNPZmTlY_3Q_0_8,1387_35847,0 4916,1387,perform,what is a chimpanzee doing?,hNPZmTlY_3Q_0_8,1387_35848,0 4917,1388,lighter,what flares to flame in slow motion?,hPyU5KjpWVc_0_35,1388_35849,0 4918,1388,person,who lights a lighter in slow motion?,hPyU5KjpWVc_0_35,1388_35850,0 4919,1388,motion,what does a lighter flare to flame in?,hPyU5KjpWVc_0_35,1388_35851,0 4920,1388,motion,what is a man striking a cigarette lighter shown in?,hPyU5KjpWVc_0_35,1388_35852,0 4921,1388,lighter,what is being lighted in slow motion?,hPyU5KjpWVc_0_35,1388_35853,0 4922,1388,motion,what a person lights a lighter in?,hPyU5KjpWVc_0_35,1388_35854,0 4923,1388,motion,what is a lighter being lighted in?,hPyU5KjpWVc_0_35,1388_35855,0 4924,1388,person,who is igniting a lighter?,hPyU5KjpWVc_0_35,1388_35856,0 4925,1388,individual,who lights a lighter?,hPyU5KjpWVc_0_35,1388_35857,0 4926,1388,someone,who is lighting a cigarette lighter?,hPyU5KjpWVc_0_35,1388_35858,0 4927,1388,someone,who is lighting a lighter?,hPyU5KjpWVc_0_35,1388_35859,0 4928,1388,someone,who is striking a lighter?,hPyU5KjpWVc_0_35,1388_35860,0 4929,1388,lighter,what an individual lights?,hPyU5KjpWVc_0_35,1388_35861,0 4930,1388,lighter,what is a person igniting?,hPyU5KjpWVc_0_35,1388_35862,0 4931,1388,man,who flicked a lighter?,hPyU5KjpWVc_0_35,1388_35863,0 4932,1388,cigarette,what is someone lighting?,hPyU5KjpWVc_0_35,1388_35864,0 4933,1388,someone,who flicked the lighter?,hPyU5KjpWVc_0_35,1388_35865,0 4934,1388,lighter,what is someone striking?,hPyU5KjpWVc_0_35,1388_35866,0 4935,1388,lighter,what is ignited?,hPyU5KjpWVc_0_35,1388_35867,0 4936,1388,light,what is someone doing?,hPyU5KjpWVc_0_35,1388_35868,0 4937,1388,light,what is a man doing?,hPyU5KjpWVc_0_35,1388_35869,0 4938,1388,ignite,what is a person doing?,hPyU5KjpWVc_0_35,1388_35870,0 4939,1388,strike,what is someone doing?,hPyU5KjpWVc_0_35,1388_35871,0 4940,1389,baby,who laughs while eating an ice cream cone?,hReROJQpSow_24_30,1389_35872,0 4941,1389,toddler,who follows a cupcake with his eyes?,hReROJQpSow_24_30,1389_35873,0 4942,1389,baby,who laughed as he ate his ice cream cone?,hReROJQpSow_24_30,1389_35874,0 4943,1389,baby,who ate his ice cream cone?,hReROJQpSow_24_30,1389_35875,0 4944,1389,baby,who laughed in his car seat?,hReROJQpSow_24_30,1389_35876,0 4945,1389,cream,what did a baby eat cone?,hReROJQpSow_24_30,1389_35877,0 4946,1389,baby,who is giggling?,hReROJQpSow_24_30,1389_35878,0 4947,1389,baby,who is laughing?,hReROJQpSow_24_30,1389_35879,0 4948,1389,laugh,what is a baby doing?,hReROJQpSow_24_30,1389_35880,0 4949,1389,eat,what is a very young child doing?,hReROJQpSow_24_30,1389_35881,0 4950,1389,laugh,what is a young child doing?,hReROJQpSow_24_30,1389_35882,0 4951,1389,eat,what is a baby laughs while doing?,hReROJQpSow_24_30,1389_35883,0 4952,1389,laugh,what is the baby doing?,hReROJQpSow_24_30,1389_35884,0 4953,1389,hold,what is a baby doing?,hReROJQpSow_24_30,1389_35885,0 4954,1390,animal,who stuffed a live rabbit is playing with a?,hSgGBHbJrmE_0_17,1390_35886,0 4955,1390,bunny,who stuffed a bunny is playing with a?,hSgGBHbJrmE_0_17,1390_35887,0 4956,1390,rabbit,what stuffed a gray rabbit is playing with a?,hSgGBHbJrmE_0_17,1390_35888,0 4957,1390,rabbit,what stuffed the real rabbit is playing with the?,hSgGBHbJrmE_0_17,1390_35889,0 4958,1390,rabbit,what stuffed a rabbit is playing with a?,hSgGBHbJrmE_0_17,1390_35890,0 4959,1390,rabbit,what did the rabbit played with a pink stuff?,hSgGBHbJrmE_0_17,1390_35891,0 4960,1390,bunny,who did bunny stuff is playing with a?,hSgGBHbJrmE_0_17,1390_35892,0 4961,1390,rabbit,what did animal bunny stuff is playing with a?,hSgGBHbJrmE_0_17,1390_35893,0 4962,1390,rabbit,what did white rabbit stuff is playing with a?,hSgGBHbJrmE_0_17,1390_35894,0 4963,1390,rabbit,what did toy stuff is playing with a?,hSgGBHbJrmE_0_17,1390_35895,0 4964,1390,rabbit,what did rabbit stuff is playing with a?,hSgGBHbJrmE_0_17,1390_35896,0 4965,1390,rabbit,what did rabbit stuff is playing with the?,hSgGBHbJrmE_0_17,1390_35897,0 4966,1390,bunny,who is playing with a toy bunny?,hSgGBHbJrmE_0_17,1390_35898,0 4967,1390,bunny,who checked out the stuffed bunny?,hSgGBHbJrmE_0_17,1390_35899,0 4968,1390,rabbit,what did a stuff a rabbit is pawing?,hSgGBHbJrmE_0_17,1390_35900,0 4969,1390,rabbit,what did a stuff a rabbit is sniffing?,hSgGBHbJrmE_0_17,1390_35901,0 4970,1390,bunny,who did the bunny check out the stuffed?,hSgGBHbJrmE_0_17,1390_35902,0 4971,1390,rabbit,what plays with a toy rabbit?,hSgGBHbJrmE_0_17,1390_35903,0 4972,1390,rabbit,what is playing with a toy rabbit?,hSgGBHbJrmE_0_17,1390_35904,0 4973,1390,rabbit,what did a stuff rabbit is pawing?,hSgGBHbJrmE_0_17,1390_35905,0 4974,1390,rabbit,what did a stuff rabbit is sniffing?,hSgGBHbJrmE_0_17,1390_35906,0 4975,1390,animal,what did a rabbit plays with a stuff?,hSgGBHbJrmE_0_17,1390_35907,0 4976,1390,bunny,who plays with a fake bunny?,hSgGBHbJrmE_0_17,1390_35908,0 4977,1390,rabbit,what plays with a toy?,hSgGBHbJrmE_0_17,1390_35909,0 4978,1390,rabbit,what is playing with a doll?,hSgGBHbJrmE_0_17,1390_35910,0 4979,1390,toy,what does a rabbit play with?,hSgGBHbJrmE_0_17,1390_35911,0 4980,1390,doll,what is a rabbit playing with?,hSgGBHbJrmE_0_17,1390_35912,0 4981,1390,stuffed,what did the bunny check out?,hSgGBHbJrmE_0_17,1390_35913,0 4982,1390,play,what is a gray rabbit doing?,hSgGBHbJrmE_0_17,1390_35914,0 4983,1390,play,what is a live rabbit doing?,hSgGBHbJrmE_0_17,1390_35915,0 4984,1390,play,what is a rabbit doing?,hSgGBHbJrmE_0_17,1390_35916,0 4985,1390,play,what is a bunny doing?,hSgGBHbJrmE_0_17,1390_35917,0 4986,1390,sniff,what is a rabbit doing?,hSgGBHbJrmE_0_17,1390_35918,0 4987,1390,play,what is the real rabbit doing?,hSgGBHbJrmE_0_17,1390_35919,0 4988,1391,someone,who is washing a small rodent looking animal in an aluminum pan?,hW8TKz2Aea4_40_50,1391_35920,0 4989,1391,person,who washes a small porcupine in a pan of water?,hW8TKz2Aea4_40_50,1391_35921,0 4990,1391,lady,who is washing a little hedgehog in the sink?,hW8TKz2Aea4_40_50,1391_35922,0 4991,1391,someone,who tried to give the hedgehog a bath?,hW8TKz2Aea4_40_50,1391_35923,0 4992,1391,rodent,what is someone washing looking animal in an aluminum pan?,hW8TKz2Aea4_40_50,1391_35924,0 4993,1391,person,who is bathing a hedgehog in a pan?,hW8TKz2Aea4_40_50,1391_35925,0 4994,1391,sink,what is a lady washing a little hedgehog in?,hW8TKz2Aea4_40_50,1391_35926,0 4995,1391,hedgehog,what is a lady washing in the sink?,hW8TKz2Aea4_40_50,1391_35927,0 4996,1391,hedgehog,what tried to get out of its bath?,hW8TKz2Aea4_40_50,1391_35928,0 4997,1391,person,who cleans a porcupine?,hW8TKz2Aea4_40_50,1391_35929,0 4998,1391,person,who washes a hedgehog?,hW8TKz2Aea4_40_50,1391_35930,0 4999,1391,person,who is washing a hedgehog?,hW8TKz2Aea4_40_50,1391_35931,0 5000,1391,person,who is washing his pet rat?,hW8TKz2Aea4_40_50,1391_35932,0 5001,1391,hedgehog,what is getting a bath?,hW8TKz2Aea4_40_50,1391_35933,0 5002,1391,someone,what is cleaning a animal?,hW8TKz2Aea4_40_50,1391_35934,0 5003,1391,bath,what is a hedgehog getting?,hW8TKz2Aea4_40_50,1391_35935,0 5004,1391,bath,what is the hedgehog getting?,hW8TKz2Aea4_40_50,1391_35936,0 5005,1391,hedgehog,what does a person wash?,hW8TKz2Aea4_40_50,1391_35937,0 5006,1391,porcupine,what does a person clean?,hW8TKz2Aea4_40_50,1391_35938,0 5007,1391,animal,what is someone cleaning?,hW8TKz2Aea4_40_50,1391_35939,0 5008,1391,gerbil,what is getting washed?,hW8TKz2Aea4_40_50,1391_35940,0 5009,1391,animal,what is being bathed?,hW8TKz2Aea4_40_50,1391_35941,0 5010,1391,pet,what is a person washing?,hW8TKz2Aea4_40_50,1391_35942,0 5011,1391,animal,what is washed?,hW8TKz2Aea4_40_50,1391_35943,0 5012,1391,wash,what is a lady doing?,hW8TKz2Aea4_40_50,1391_35944,0 5013,1391,wash,what is someone doing?,hW8TKz2Aea4_40_50,1391_35945,0 5014,1391,clean,what is someone doing?,hW8TKz2Aea4_40_50,1391_35946,0 5015,1391,wash,what is a person doing?,hW8TKz2Aea4_40_50,1391_35947,0 5016,1391,bath,what is a person doing?,hW8TKz2Aea4_40_50,1391_35948,0 5017,1392,someone,who tried to give the hedgehog a bath in the sink?,hW8TKz2Aea4_5_12,1392_35949,0 5018,1392,person,who holds a small porcupine in one hand?,hW8TKz2Aea4_5_12,1392_35950,0 5019,1392,person,who is carrying a rat in his hands?,hW8TKz2Aea4_5_12,1392_35951,0 5020,1392,hand,what is someone holding a small prickly looking animal in?,hW8TKz2Aea4_5_12,1392_35952,0 5021,1392,someone,who held a hedgehog in his hand?,hW8TKz2Aea4_5_12,1392_35953,0 5022,1392,rat,what is a person carrying in his hands?,hW8TKz2Aea4_5_12,1392_35954,0 5023,1392,person,who holds a porcupine?,hW8TKz2Aea4_5_12,1392_35955,0 5024,1392,person,who is holding hedgehog?,hW8TKz2Aea4_5_12,1392_35956,0 5025,1392,person,who holds a hedgehog?,hW8TKz2Aea4_5_12,1392_35957,0 5026,1392,hand,what is someone holding a hedgehog in?,hW8TKz2Aea4_5_12,1392_35958,0 5027,1392,person,who is holding a hedgehog?,hW8TKz2Aea4_5_12,1392_35959,0 5028,1392,someone,who is holding an animal?,hW8TKz2Aea4_5_12,1392_35960,0 5029,1392,hedgehog,what does a person hold?,hW8TKz2Aea4_5_12,1392_35961,0 5030,1392,hedgehog,what is someone holding?,hW8TKz2Aea4_5_12,1392_35962,0 5031,1392,hedgehog,what is the person holding?,hW8TKz2Aea4_5_12,1392_35963,0 5032,1392,hedgehog,what is a person holding?,hW8TKz2Aea4_5_12,1392_35964,0 5033,1392,hold,what is someone doing?,hW8TKz2Aea4_5_12,1392_35965,0 5034,1392,carry,what is a person doing?,hW8TKz2Aea4_5_12,1392_35966,0 5035,1392,hold,what is the person doing?,hW8TKz2Aea4_5_12,1392_35967,0 5036,1393,boy,who entered a balcony from the attic door?,hWhKdXcqYeU_3_12,1393_35968,0 5037,1393,man,who starts singing a song holding the wooden parapet?,hWhKdXcqYeU_3_12,1393_35969,0 5038,1393,man,who steps out onto the balcony of a small house?,hWhKdXcqYeU_3_12,1393_35970,0 5039,1393,man,who came out of a door onto a balcony?,hWhKdXcqYeU_3_12,1393_35971,0 5040,1393,man,who comes out from a house into the terrace?,hWhKdXcqYeU_3_12,1393_35972,0 5041,1393,balcony,what did a boy enter from the attic door?,hWhKdXcqYeU_3_12,1393_35973,0 5042,1393,door,what did a man come out of onto a balcony?,hWhKdXcqYeU_3_12,1393_35974,0 5043,1393,balcony,what did a man come out of a door onto?,hWhKdXcqYeU_3_12,1393_35975,0 5044,1393,song,what does a man start singing holding the wooden parapet?,hWhKdXcqYeU_3_12,1393_35976,0 5045,1393,parapet,what does a man start singing a song holding?,hWhKdXcqYeU_3_12,1393_35977,0 5046,1393,man,who steps out of a treehouse?,hWhKdXcqYeU_3_12,1393_35978,0 5047,1393,man,who stepped out onto the balcony?,hWhKdXcqYeU_3_12,1393_35979,0 5048,1393,man,who opens a door?,hWhKdXcqYeU_3_12,1393_35980,0 5049,1393,boy,who comes out of his tree house?,hWhKdXcqYeU_3_12,1393_35981,0 5050,1393,treehouse,who does a man step out of?,hWhKdXcqYeU_3_12,1393_35982,0 5051,1393,man,who walks out to a balcony?,hWhKdXcqYeU_3_12,1393_35983,0 5052,1393,man,who is standing on a balcony?,hWhKdXcqYeU_3_12,1393_35984,0 5053,1393,man,who stands on a tree house?,hWhKdXcqYeU_3_12,1393_35985,0 5054,1393,boy,who is exiting a tree house?,hWhKdXcqYeU_3_12,1393_35986,0 5055,1393,balcony,what did the man step out onto?,hWhKdXcqYeU_3_12,1393_35987,0 5056,1393,door,what does a man open?,hWhKdXcqYeU_3_12,1393_35988,0 5057,1393,balcony,what does a man walk out to?,hWhKdXcqYeU_3_12,1393_35989,0 5058,1393,balcony,what is a man standing on?,hWhKdXcqYeU_3_12,1393_35990,0 5059,1393,house,what is a boy exiting?,hWhKdXcqYeU_3_12,1393_35991,0 5060,1393,man,who looks around?,hWhKdXcqYeU_3_12,1393_35992,0 5061,1393,man,who is singing?,hWhKdXcqYeU_3_12,1393_35993,0 5062,1393,exit,what is a boy doing?,hWhKdXcqYeU_3_12,1393_35994,0 5063,1393,stand,what is a man doing?,hWhKdXcqYeU_3_12,1393_35995,0 5064,1394,sloth,what is climbing over the edge of a plastic enclosure?,hXn7D6-AAMA_0_9,1394_35996,0 5065,1394,two,how many sloths are in a plastic bin?,hXn7D6-AAMA_0_9,1394_35997,0 5066,1394,sloth,what is climbing the side of a crib?,hXn7D6-AAMA_0_9,1394_35998,0 5067,1394,crib,what is a baby sloth climbing the side of?,hXn7D6-AAMA_0_9,1394_35999,0 5068,1394,baby,what are lying down in a plastic tub?,hXn7D6-AAMA_0_9,1394_36000,0 5069,1394,sloth,what tried to get out of the box?,hXn7D6-AAMA_0_9,1394_36001,0 5070,1394,baby,who sloth moving about in a container?,hXn7D6-AAMA_0_9,1394_36002,0 5071,1394,container,what do a baby sloth moving about in?,hXn7D6-AAMA_0_9,1394_36003,0 5072,1394,sloth,what stares into the camera?,hXn7D6-AAMA_0_9,1394_36004,0 5073,1394,camera,what a small sloth stares into?,hXn7D6-AAMA_0_9,1394_36005,0 5074,1394,sloth,what is interacting with the camera?,hXn7D6-AAMA_0_9,1394_36006,0 5075,1394,sloth,what is exploring a camera?,hXn7D6-AAMA_0_9,1394_36007,0 5076,1394,camera,what is a sloth interacting with?,hXn7D6-AAMA_0_9,1394_36008,0 5077,1394,camera,what is a baby sloth exploring?,hXn7D6-AAMA_0_9,1394_36009,0 5078,1394,animal,what plays in its container?,hXn7D6-AAMA_0_9,1394_36010,0 5079,1394,container,what does an animal play in?,hXn7D6-AAMA_0_9,1394_36011,0 5080,1394,sloth,what is playing?,hXn7D6-AAMA_0_9,1394_36012,0 5081,1394,move,what is a baby sloth doing?,hXn7D6-AAMA_0_9,1394_36013,0 5082,1394,climb,what is a baby sloth doing?,hXn7D6-AAMA_0_9,1394_36014,0 5083,1394,explore,what is a baby sloth doing?,hXn7D6-AAMA_0_9,1394_36015,0 5084,1394,play,what is a baby sloth doing?,hXn7D6-AAMA_0_9,1394_36016,0 5085,1394,interact,what is a sloth doing?,hXn7D6-AAMA_0_9,1394_36017,0 5086,1394,lie,what are the baby sloths doing?,hXn7D6-AAMA_0_9,1394_36018,0 5087,1395,man,who played the keyboard?,haJn6k5zVnE_1_23,1395_36019,0 5088,1395,man,who is playing an electronic keyboard?,haJn6k5zVnE_1_23,1395_36020,0 5089,1395,man,who is playing a keyboard piano?,haJn6k5zVnE_1_23,1395_36021,0 5090,1395,man,who is playing a musical keyboard?,haJn6k5zVnE_1_23,1395_36022,0 5091,1395,man,who is playing keyboard?,haJn6k5zVnE_1_23,1395_36023,0 5092,1395,man,who plays a keyboard?,haJn6k5zVnE_1_23,1395_36024,0 5093,1395,man,who plays the keyboard?,haJn6k5zVnE_1_23,1395_36025,0 5094,1395,man,who is playing the keyboards?,haJn6k5zVnE_1_23,1395_36026,0 5095,1395,man,who plays a piano?,haJn6k5zVnE_1_23,1395_36027,0 5096,1395,man,who is playing a keyboard?,haJn6k5zVnE_1_23,1395_36028,0 5097,1395,man,who played his keyboard?,haJn6k5zVnE_1_23,1395_36029,0 5098,1395,man,who is playing a piano?,haJn6k5zVnE_1_23,1395_36030,0 5099,1395,man,who is playing on his keyboard?,haJn6k5zVnE_1_23,1395_36031,0 5100,1395,keyboard,what does a man play?,haJn6k5zVnE_1_23,1395_36032,0 5101,1395,keyboard,what is a man playing?,haJn6k5zVnE_1_23,1395_36033,0 5102,1395,keyboard,what is a man playing on?,haJn6k5zVnE_1_23,1395_36034,0 5103,1395,keyboard,what did the man play?,haJn6k5zVnE_1_23,1395_36035,0 5104,1395,play,what is a man doing?,haJn6k5zVnE_1_23,1395_36036,0 5105,1395,play,what is the man doing?,haJn6k5zVnE_1_23,1395_36037,0 5106,1396,man,who is throwing the basketball into the hoop?,hbE29pZh76I_3_8,1396_36038,0 5107,1396,ball,what does a blue team inmate put in the basket?,hbE29pZh76I_3_8,1396_36039,0 5108,1396,basket,what does a blue team inmate put the ball in?,hbE29pZh76I_3_8,1396_36040,0 5109,1396,basket,what is dwayne wade making?,hbE29pZh76I_3_8,1396_36041,0 5110,1396,two,how many teams are playing basketball?,hbE29pZh76I_3_8,1396_36042,0 5111,1396,basketball,what is a man throwing into the hoop?,hbE29pZh76I_3_8,1396_36043,0 5112,1396,basket,what did the white uniformed basketball team score?,hbE29pZh76I_3_8,1396_36044,0 5113,1396,hoop,what is a man throwing the basketball into?,hbE29pZh76I_3_8,1396_36045,0 5114,1396,dwayne,who is making basket?,hbE29pZh76I_3_8,1396_36046,0 5115,1396,basketball,who charges the basket?,hbE29pZh76I_3_8,1396_36047,0 5116,1396,player,who scores during a basketball game?,hbE29pZh76I_3_8,1396_36048,0 5117,1396,basketball,who made a running basket?,hbE29pZh76I_3_8,1396_36049,0 5118,1396,basket,what does a basketball player charge?,hbE29pZh76I_3_8,1396_36050,0 5119,1396,basketball,who makes a shot?,hbE29pZh76I_3_8,1396_36051,0 5120,1396,basketball,who makes his shot?,hbE29pZh76I_3_8,1396_36052,0 5121,1396,running,what did the basketball player make?,hbE29pZh76I_3_8,1396_36053,0 5122,1396,basketball,what are two teams playing?,hbE29pZh76I_3_8,1396_36054,0 5123,1396,basketball,what is in play?,hbE29pZh76I_3_8,1396_36055,0 5124,1396,basketball,what are some men playing?,hbE29pZh76I_3_8,1396_36056,0 5125,1396,play,what is a basketball game in?,hbE29pZh76I_3_8,1396_36057,0 5126,1396,basket,what are men playing?,hbE29pZh76I_3_8,1396_36058,0 5127,1396,basketball,what are men running down?,hbE29pZh76I_3_8,1396_36059,0 5128,1396,shot,what does a basketball player make?,hbE29pZh76I_3_8,1396_36060,0 5129,1396,throw,what is a man doing?,hbE29pZh76I_3_8,1396_36061,0 5130,1396,play,what are men doing?,hbE29pZh76I_3_8,1396_36062,0 5131,1396,play,what are some men doing?,hbE29pZh76I_3_8,1396_36063,0 5132,1396,play,what are two teams doing?,hbE29pZh76I_3_8,1396_36064,0 5133,1397,man,who is doing one armed push ups in front of an audience?,hcCLIzzB1jQ_1_7,1397_36065,0 5134,1397,man,who is doing push ups only using one finger on one hand?,hcCLIzzB1jQ_1_7,1397_36066,0 5135,1397,man,who is doing a one arm push up?,hcCLIzzB1jQ_1_7,1397_36067,0 5136,1397,man,who is doing exercise between people?,hcCLIzzB1jQ_1_7,1397_36068,0 5137,1397,man,who is doing one handed push ups?,hcCLIzzB1jQ_1_7,1397_36069,0 5138,1397,one,how many arm pushups does a man do?,hcCLIzzB1jQ_1_7,1397_36070,0 5139,1397,man,who is doing push ups?,hcCLIzzB1jQ_1_7,1397_36071,0 5140,1397,arm,what is a man doing push up?,hcCLIzzB1jQ_1_7,1397_36072,0 5141,1397,man,who does one arm pushups?,hcCLIzzB1jQ_1_7,1397_36073,0 5142,1397,man,who is doing a push up?,hcCLIzzB1jQ_1_7,1397_36074,0 5143,1397,man,who did pushups with one hand?,hcCLIzzB1jQ_1_7,1397_36075,0 5144,1397,push,who is a man doing?,hcCLIzzB1jQ_1_7,1397_36076,0 5145,1397,hand,what did the man do pushups with?,hcCLIzzB1jQ_1_7,1397_36077,0 5146,1397,exercise,what is a man doing?,hcCLIzzB1jQ_1_7,1397_36078,0 5147,1397,push,what is a man doing up?,hcCLIzzB1jQ_1_7,1397_36079,0 5148,1397,pushup,what does a man do?,hcCLIzzB1jQ_1_7,1397_36080,0 5149,1398,man,who is eating a banana by a tree?,hkkmKk9LcQk_36_43,1398_36081,0 5150,1398,tree,what is a man eating a banana by?,hkkmKk9LcQk_36_43,1398_36082,0 5151,1398,banana,what is a man eating by a tree?,hkkmKk9LcQk_36_43,1398_36083,0 5152,1398,man,who ate a banana?,hkkmKk9LcQk_36_43,1398_36084,0 5153,1398,banana,what does an indian man eat?,hkkmKk9LcQk_36_43,1398_36085,0 5154,1398,man,who eats a banana?,hkkmKk9LcQk_36_43,1398_36086,0 5155,1398,banana,what is a fat dark man peeling?,hkkmKk9LcQk_36_43,1398_36087,0 5156,1398,man,who is eating banana?,hkkmKk9LcQk_36_43,1398_36088,0 5157,1398,banana,what is a fat dark man eating?,hkkmKk9LcQk_36_43,1398_36089,0 5158,1398,banana,what does a village boy eat?,hkkmKk9LcQk_36_43,1398_36090,0 5159,1398,banana,what did a man eat?,hkkmKk9LcQk_36_43,1398_36091,0 5160,1398,banana,what did the man eat?,hkkmKk9LcQk_36_43,1398_36092,0 5161,1398,banana,what is a fat man eating?,hkkmKk9LcQk_36_43,1398_36093,0 5162,1398,banana,what does a man eat?,hkkmKk9LcQk_36_43,1398_36094,0 5163,1398,banana,what is a man eating?,hkkmKk9LcQk_36_43,1398_36095,0 5164,1398,banana,what is the man eating?,hkkmKk9LcQk_36_43,1398_36096,0 5165,1398,man,who is peeling?,hkkmKk9LcQk_36_43,1398_36097,0 5166,1398,man,who peels?,hkkmKk9LcQk_36_43,1398_36098,0 5167,1398,eat,what is a man doing?,hkkmKk9LcQk_36_43,1398_36099,0 5168,1398,eat,what is a fat man doing?,hkkmKk9LcQk_36_43,1398_36100,0 5169,1398,peel,what is a man doing?,hkkmKk9LcQk_36_43,1398_36101,0 5170,1398,peel,what is a fat dark man doing?,hkkmKk9LcQk_36_43,1398_36102,0 5171,1398,eat,what is the man doing?,hkkmKk9LcQk_36_43,1398_36103,0 5172,1399,two,how many pandas are cuddling with each other?,hksxtbcS780_7_14,1399_36104,0 5173,1399,panda,what is lying on the ground next to its mother?,hksxtbcS780_7_14,1399_36105,0 5174,1399,panda,what is laying close to a larger panda?,hksxtbcS780_7_14,1399_36106,0 5175,1399,two,how many pandas cuddle?,hksxtbcS780_7_14,1399_36107,0 5176,1399,two,how many pandas are snuggling?,hksxtbcS780_7_14,1399_36108,0 5177,1399,two,how many panda bears are laying down?,hksxtbcS780_7_14,1399_36109,0 5178,1399,two,how many pandas are laying together?,hksxtbcS780_7_14,1399_36110,0 5179,1399,two,how many baby pandas are playing?,hksxtbcS780_7_14,1399_36111,0 5180,1399,panda,what is playing with its mother?,hksxtbcS780_7_14,1399_36112,0 5181,1399,two,how many pandas are playing?,hksxtbcS780_7_14,1399_36113,0 5182,1399,mother,who did the baby panday nuzzle with?,hksxtbcS780_7_14,1399_36114,0 5183,1399,mother,who is a baby panda playing with?,hksxtbcS780_7_14,1399_36115,0 5184,1399,mother,who do the panda bear played with?,hksxtbcS780_7_14,1399_36116,0 5185,1399,panda,what is hugging its mother?,hksxtbcS780_7_14,1399_36117,0 5186,1399,mother,who is a baby panda hugging?,hksxtbcS780_7_14,1399_36118,0 5187,1399,panda,what are laying down?,hksxtbcS780_7_14,1399_36119,0 5188,1399,baby,what are playing?,hksxtbcS780_7_14,1399_36120,0 5189,1399,snuggle,what are two pandas doing?,hksxtbcS780_7_14,1399_36121,0 5190,1399,hug,what are pandas doing?,hksxtbcS780_7_14,1399_36122,0 5191,1399,hug,what are baby pandas doing?,hksxtbcS780_7_14,1399_36123,0 5192,1399,lay,what is a small panda doing?,hksxtbcS780_7_14,1399_36124,0 5193,1399,play,what are two baby pandas doing?,hksxtbcS780_7_14,1399_36125,0 5194,1399,lay,what are two panda bears doing?,hksxtbcS780_7_14,1399_36126,0 5195,1399,lie,what are pandas doing?,hksxtbcS780_7_14,1399_36127,0 5196,1399,play,what is a baby panda doing?,hksxtbcS780_7_14,1399_36128,0 5197,1399,cuddle,what are two pandas doing?,hksxtbcS780_7_14,1399_36129,0 5198,1399,play,what are the pandas doing?,hksxtbcS780_7_14,1399_36130,0 5199,1400,man,who is playing the guitar while seated?,hoinj6vyQ2g_8_16,1400_36131,0 5200,1400,guitar,what is a man playing while seated?,hoinj6vyQ2g_8_16,1400_36132,0 5201,1400,man,who is playing guitar?,hoinj6vyQ2g_8_16,1400_36133,0 5202,1400,man,who is playing a guitar?,hoinj6vyQ2g_8_16,1400_36134,0 5203,1400,man,who plays the guitar?,hoinj6vyQ2g_8_16,1400_36135,0 5204,1400,man,who is playing the guitar?,hoinj6vyQ2g_8_16,1400_36136,0 5205,1400,man,who played his guitar?,hoinj6vyQ2g_8_16,1400_36137,0 5206,1400,someone,what is playing guitar?,hoinj6vyQ2g_8_16,1400_36138,0 5207,1400,guitar,what is a young man playing?,hoinj6vyQ2g_8_16,1400_36139,0 5208,1400,guitar,what is someone playing?,hoinj6vyQ2g_8_16,1400_36140,0 5209,1400,guitar,what does a man play?,hoinj6vyQ2g_8_16,1400_36141,0 5210,1400,guitar,what is a man playing?,hoinj6vyQ2g_8_16,1400_36142,0 5211,1400,guitar,what is the man playing?,hoinj6vyQ2g_8_16,1400_36143,0 5212,1400,guitar,what did the man play?,hoinj6vyQ2g_8_16,1400_36144,0 5213,1400,play,what is a young man doing?,hoinj6vyQ2g_8_16,1400_36145,0 5214,1400,play,what is a man doing?,hoinj6vyQ2g_8_16,1400_36146,0 5215,1400,play,what is someone doing?,hoinj6vyQ2g_8_16,1400_36147,0 5216,1400,play,what is the man doing?,hoinj6vyQ2g_8_16,1400_36148,0 5217,1401,woman,who is riding a horse which is trotting slowly along the periphery of a sandy enclosure in the open?,ht2oIYBSoI0_9_21,1401_36149,0 5218,1401,woman,who is riding a horse along a perimeter?,ht2oIYBSoI0_9_21,1401_36150,0 5219,1401,woman,who is riding a horse inside a track?,ht2oIYBSoI0_9_21,1401_36151,0 5220,1401,horse,what is a woman riding along a perimeter?,ht2oIYBSoI0_9_21,1401_36152,0 5221,1401,track,what is a woman riding a horse inside?,ht2oIYBSoI0_9_21,1401_36153,0 5222,1401,perimeter,what is a woman riding a horse along?,ht2oIYBSoI0_9_21,1401_36154,0 5223,1401,horse,what is a woman riding inside a track?,ht2oIYBSoI0_9_21,1401_36155,0 5224,1401,ring,what did the horse and rider trot around?,ht2oIYBSoI0_9_21,1401_36156,0 5225,1401,someone,who rode a horse in the ring?,ht2oIYBSoI0_9_21,1401_36157,0 5226,1401,ring,what did someone ride a horse in?,ht2oIYBSoI0_9_21,1401_36158,0 5227,1401,woman,who rides a horse?,ht2oIYBSoI0_9_21,1401_36159,0 5228,1401,woman,who is riding on a horse?,ht2oIYBSoI0_9_21,1401_36160,0 5229,1401,horse,what did someone ride in the ring?,ht2oIYBSoI0_9_21,1401_36161,0 5230,1401,woman,who is riding a horse?,ht2oIYBSoI0_9_21,1401_36162,0 5231,1401,horse,what a young woman rides?,ht2oIYBSoI0_9_21,1401_36163,0 5232,1401,horse,what is a woman riding on?,ht2oIYBSoI0_9_21,1401_36164,0 5233,1401,horse,what a woman rides?,ht2oIYBSoI0_9_21,1401_36165,0 5234,1401,horse,what is a woman riding?,ht2oIYBSoI0_9_21,1401_36166,0 5235,1401,horse,what is a girl riding?,ht2oIYBSoI0_9_21,1401_36167,0 5236,1401,horse,what is the woman riding?,ht2oIYBSoI0_9_21,1401_36168,0 5237,1402,boy,who is playing on an electric keyboard?,htWPOGTagec_2_18,1402_36169,0 5238,1402,boy,who is playing an electronic keyboard?,htWPOGTagec_2_18,1402_36170,0 5239,1402,boy,who is playing the keyboard piano?,htWPOGTagec_2_18,1402_36171,0 5240,1402,boy,who experimented with the keyboard?,htWPOGTagec_2_18,1402_36172,0 5241,1402,boy,who played a keyboard?,htWPOGTagec_2_18,1402_36173,0 5242,1402,kid,who is playing with a keyboard?,htWPOGTagec_2_18,1402_36174,0 5243,1402,kid,who plays with a piano?,htWPOGTagec_2_18,1402_36175,0 5244,1402,keyboard,what is the young boy playing?,htWPOGTagec_2_18,1402_36176,0 5245,1402,boy,who is playing keyboard?,htWPOGTagec_2_18,1402_36177,0 5246,1402,boy,who is playing key board?,htWPOGTagec_2_18,1402_36178,0 5247,1402,boy,who plays a keyboard?,htWPOGTagec_2_18,1402_36179,0 5248,1402,kid,who plays the keyboard?,htWPOGTagec_2_18,1402_36180,0 5249,1402,boy,who is playing the keyboards?,htWPOGTagec_2_18,1402_36181,0 5250,1402,boy,who is playing a keyboard?,htWPOGTagec_2_18,1402_36182,0 5251,1402,keyboard,what did the little boy experiment with?,htWPOGTagec_2_18,1402_36183,0 5252,1402,boy,who is playing a piano?,htWPOGTagec_2_18,1402_36184,0 5253,1402,keyboard,what did the little boy play?,htWPOGTagec_2_18,1402_36185,0 5254,1402,piano,what does a kid play with?,htWPOGTagec_2_18,1402_36186,0 5255,1402,keyboard,what is a kid playing with?,htWPOGTagec_2_18,1402_36187,0 5256,1402,keyboard,what does a young boy play?,htWPOGTagec_2_18,1402_36188,0 5257,1402,keyboard,what is a little boy playing?,htWPOGTagec_2_18,1402_36189,0 5258,1402,keyboard,what does a kid play?,htWPOGTagec_2_18,1402_36190,0 5259,1402,keyboard,what is a boy playing?,htWPOGTagec_2_18,1402_36191,0 5260,1402,play,what is a boy doing?,htWPOGTagec_2_18,1402_36192,0 5261,1402,play,what is a kid doing?,htWPOGTagec_2_18,1402_36193,0 5262,1402,play,what is a little boy doing?,htWPOGTagec_2_18,1402_36194,0 5263,1402,stand,what is a small boy doing?,htWPOGTagec_2_18,1402_36195,0 5264,1402,play,what is a young boy doing?,htWPOGTagec_2_18,1402_36196,0 5265,1402,play,what is the boy doing?,htWPOGTagec_2_18,1402_36197,0 5266,1402,play,what is the young boy doing?,htWPOGTagec_2_18,1402_36198,0 5267,1403,woman,who is tidying up a bed by setting the sheets and pillow right?,htry5uxX0-Y_45_52,1403_36199,0 5268,1403,bed,what is a woman tidying up by setting the sheets and pillow right?,htry5uxX0-Y_45_52,1403_36200,0 5269,1403,maid,who is preparing bed?,htry5uxX0-Y_45_52,1403_36201,0 5270,1403,woman,who is making a bed?,htry5uxX0-Y_45_52,1403_36202,0 5271,1403,bed,what is a maid preparing?,htry5uxX0-Y_45_52,1403_36203,0 5272,1403,bed,what is a woman making?,htry5uxX0-Y_45_52,1403_36204,0 5273,1403,bed,what is the girl tiding up?,htry5uxX0-Y_45_52,1403_36205,0 5274,1403,bed,what did the girl make up?,htry5uxX0-Y_45_52,1403_36206,0 5275,1403,bed,what does a young girl make?,htry5uxX0-Y_45_52,1403_36207,0 5276,1403,bed,what does a girl make up?,htry5uxX0-Y_45_52,1403_36208,0 5277,1403,bed,what is a girl making up?,htry5uxX0-Y_45_52,1403_36209,0 5278,1403,bed,what is a girl making?,htry5uxX0-Y_45_52,1403_36210,0 5279,1403,bed,what did the girl make very quickly?,htry5uxX0-Y_45_52,1403_36211,0 5280,1403,prepare,what is a maid doing?,htry5uxX0-Y_45_52,1403_36212,0 5281,1403,tidy,what is a woman doing?,htry5uxX0-Y_45_52,1403_36213,0 5282,1403,tide,what is the girl doing?,htry5uxX0-Y_45_52,1403_36214,0 5283,1404,two,how many men are playing a table tennis match as the audience watches them?,hxZ-5wELSJM_0_12,1404_36215,0 5284,1404,two,how many men are playing table tennis in front of an audience?,hxZ-5wELSJM_0_12,1404_36216,0 5285,1404,pong,what did the ladies play a game of?,hxZ-5wELSJM_0_12,1404_36217,0 5286,1404,two,how many men play ping pong?,hxZ-5wELSJM_0_12,1404_36218,0 5287,1404,two,how many men are playing table tennis rather aggressively?,hxZ-5wELSJM_0_12,1404_36219,0 5288,1404,two,how many men are playing ping pong?,hxZ-5wELSJM_0_12,1404_36220,0 5289,1404,tenni,what are two men playing in front of an audience?,hxZ-5wELSJM_0_12,1404_36221,0 5290,1404,two,how many players are playing table tennis?,hxZ-5wELSJM_0_12,1404_36222,0 5291,1404,two,how many people are playing ping pong?,hxZ-5wELSJM_0_12,1404_36223,0 5292,1404,two,how many men are playing table tennis?,hxZ-5wELSJM_0_12,1404_36224,0 5293,1404,two,how many men play table tennis?,hxZ-5wELSJM_0_12,1404_36225,0 5294,1404,two,how many men does the audience watch?,hxZ-5wELSJM_0_12,1404_36226,0 5295,1404,pong,what are men playing ping?,hxZ-5wELSJM_0_12,1404_36227,0 5296,1404,pong,what are two men playing ping?,hxZ-5wELSJM_0_12,1404_36228,0 5297,1404,pong,what are two people playing ping?,hxZ-5wELSJM_0_12,1404_36229,0 5298,1404,audience,what watches two men?,hxZ-5wELSJM_0_12,1404_36230,0 5299,1404,tenni,what are two men playing rather aggressively?,hxZ-5wELSJM_0_12,1404_36231,0 5300,1404,tenni,what are two players playing?,hxZ-5wELSJM_0_12,1404_36232,0 5301,1404,tenni,what are two men playing?,hxZ-5wELSJM_0_12,1404_36233,0 5302,1404,tenni,what do two men play?,hxZ-5wELSJM_0_12,1404_36234,0 5303,1404,play,what are two men doing?,hxZ-5wELSJM_0_12,1404_36235,0 5304,1404,play,what are two players doing?,hxZ-5wELSJM_0_12,1404_36236,0 5305,1404,play,what are men doing?,hxZ-5wELSJM_0_12,1404_36237,0 5306,1404,play,what are two people doing?,hxZ-5wELSJM_0_12,1404_36238,0 5307,1405,milk,what is being poured into a blender containing strawberries and ice cream?,i2GgBwlwV0c_24_31,1405_36239,0 5308,1405,someone,who poured milk into a blender of fruit?,i2GgBwlwV0c_24_31,1405_36240,0 5309,1405,person,who is pouring milk into a blender full of fruits?,i2GgBwlwV0c_24_31,1405_36241,0 5310,1405,milk,what is being poured into a glass jar containing fresh cut fruits?,i2GgBwlwV0c_24_31,1405_36242,0 5311,1405,someone,who is poruing milk into a blender of fruit?,i2GgBwlwV0c_24_31,1405_36243,0 5312,1405,person,who is pouring milk into a blender of other ingredients?,i2GgBwlwV0c_24_31,1405_36244,0 5313,1405,milk,what is being poured on top of ice cream and strawberries in a blender?,i2GgBwlwV0c_24_31,1405_36245,0 5314,1405,milk,what did someone pour into a blender of fruit?,i2GgBwlwV0c_24_31,1405_36246,0 5315,1405,person,who is pouring milk into the blender?,i2GgBwlwV0c_24_31,1405_36247,0 5316,1405,milk,what is someone poruing into a blender of fruit?,i2GgBwlwV0c_24_31,1405_36248,0 5317,1405,milk,what is a person pouring into a blender full of fruits?,i2GgBwlwV0c_24_31,1405_36249,0 5318,1405,milk,what is a person pouring into a blender of other ingredients?,i2GgBwlwV0c_24_31,1405_36250,0 5319,1405,blender,what is milk being poured on top of ice cream and strawberries in?,i2GgBwlwV0c_24_31,1405_36251,0 5320,1405,milk,what is added to pieces of fruit in a blender?,i2GgBwlwV0c_24_31,1405_36252,0 5321,1405,milk,what is the person pouring into the blender?,i2GgBwlwV0c_24_31,1405_36253,0 5322,1405,person,who pours milk into a blender?,i2GgBwlwV0c_24_31,1405_36254,0 5323,1405,woman,who is making a fruit milk shake?,i2GgBwlwV0c_24_31,1405_36255,0 5324,1405,blender,what is milk added to pieces of fruit in?,i2GgBwlwV0c_24_31,1405_36256,0 5325,1405,someone,who is pouring milk into a blender?,i2GgBwlwV0c_24_31,1405_36257,0 5326,1405,blender,what is the person pouring milk into?,i2GgBwlwV0c_24_31,1405_36258,0 5327,1405,milk,what does a person pour into a blender?,i2GgBwlwV0c_24_31,1405_36259,0 5328,1405,milk,what poured into a blender?,i2GgBwlwV0c_24_31,1405_36260,0 5329,1405,milk,what is being poured into a mixer?,i2GgBwlwV0c_24_31,1405_36261,0 5330,1405,milk,what is someone pouring into a blender?,i2GgBwlwV0c_24_31,1405_36262,0 5331,1405,blender,what does a person pour milk into?,i2GgBwlwV0c_24_31,1405_36263,0 5332,1405,blender,what is someone pouring milk into?,i2GgBwlwV0c_24_31,1405_36264,0 5333,1405,milk,what is being poured into a blender?,i2GgBwlwV0c_24_31,1405_36265,0 5334,1405,blender,what did milk being pour into?,i2GgBwlwV0c_24_31,1405_36266,0 5335,1405,mixer,what is milk being poured into?,i2GgBwlwV0c_24_31,1405_36267,0 5336,1405,pmy,what is a person doing?,i2GgBwlwV0c_24_31,1405_36268,0 5337,1405,pmy,what is the person doing?,i2GgBwlwV0c_24_31,1405_36269,0 5338,1406,dog,what climbed into a clothes washing machine?,i2sRHf9m5KM_28_42,1406_36270,0 5339,1406,machine,what did a dog climb into a clothes washing?,i2sRHf9m5KM_28_42,1406_36271,0 5340,1406,dog,what climbs into an open clothes dryer?,i2sRHf9m5KM_28_42,1406_36272,0 5341,1406,bull,what is jumping into a washing machine?,i2sRHf9m5KM_28_42,1406_36273,0 5342,1406,dog,what climbs into a washing machine?,i2sRHf9m5KM_28_42,1406_36274,0 5343,1406,dog,what is climbing into a washing machine?,i2sRHf9m5KM_28_42,1406_36275,0 5344,1406,dog,what is getting into a washing machine?,i2sRHf9m5KM_28_42,1406_36276,0 5345,1406,dog,what crawled into the dryer?,i2sRHf9m5KM_28_42,1406_36277,0 5346,1406,dog,what is looking out the door?,i2sRHf9m5KM_28_42,1406_36278,0 5347,1406,dog,what climbed into the dryer?,i2sRHf9m5KM_28_42,1406_36279,0 5348,1406,dog,what climbs into a dryer?,i2sRHf9m5KM_28_42,1406_36280,0 5349,1406,door,what is a dog looking out?,i2sRHf9m5KM_28_42,1406_36281,0 5350,1406,dog,what climbs in a dryer?,i2sRHf9m5KM_28_42,1406_36282,0 5351,1406,dog,what is getting into a drier?,i2sRHf9m5KM_28_42,1406_36283,0 5352,1406,dryer,what did the dog crawl into?,i2sRHf9m5KM_28_42,1406_36284,0 5353,1406,dryer,what did the dog climb into?,i2sRHf9m5KM_28_42,1406_36285,0 5354,1406,dryer,what did the puppy go into?,i2sRHf9m5KM_28_42,1406_36286,0 5355,1406,dog,what gets in the dryer?,i2sRHf9m5KM_28_42,1406_36287,0 5356,1406,dog,what is in a washing machine?,i2sRHf9m5KM_28_42,1406_36288,0 5357,1406,dryer,what does a dog climb in?,i2sRHf9m5KM_28_42,1406_36289,0 5358,1406,dryer,what does a dog get in?,i2sRHf9m5KM_28_42,1406_36290,0 5359,1406,look,what is a dog climbs into a washing machine and doing?,i2sRHf9m5KM_28_42,1406_36291,0 5360,1406,wash,what is a dog climbed into a clothes doing?,i2sRHf9m5KM_28_42,1406_36292,0 5361,1406,jump,what is a bull dog doing?,i2sRHf9m5KM_28_42,1406_36293,0 5362,1406,climb,what is a dog doing?,i2sRHf9m5KM_28_42,1406_36294,0 5363,1407,cat,what is eating a small wedge of watermelon?,i3cHNObcEh8_0_10,1407_36295,0 5364,1407,cat,what is eating a slice of watermelon?,i3cHNObcEh8_0_10,1407_36296,0 5365,1407,watermelon,what is a cat eating a small wedge of?,i3cHNObcEh8_0_10,1407_36297,0 5366,1407,cat,what is eating a piece of watermelon?,i3cHNObcEh8_0_10,1407_36298,0 5367,1407,watermelon,what is a cat eating a slice of?,i3cHNObcEh8_0_10,1407_36299,0 5368,1407,watermelon,what is a cat eating a piece of?,i3cHNObcEh8_0_10,1407_36300,0 5369,1407,kitten,what is eating a water melon slice?,i3cHNObcEh8_0_10,1407_36301,0 5370,1407,cat,what ate some watermelon?,i3cHNObcEh8_0_10,1407_36302,0 5371,1407,cat,what eats some watermelon?,i3cHNObcEh8_0_10,1407_36303,0 5372,1407,cat,what ate the watermelon?,i3cHNObcEh8_0_10,1407_36304,0 5373,1407,cat,what is eating watermelon?,i3cHNObcEh8_0_10,1407_36305,0 5374,1407,cat,what is eating some watermelon?,i3cHNObcEh8_0_10,1407_36306,0 5375,1407,watermelon,what did the cat eat?,i3cHNObcEh8_0_10,1407_36307,0 5376,1407,watermelon,what does a cat eat?,i3cHNObcEh8_0_10,1407_36308,0 5377,1407,watermelon,what is the cat eating?,i3cHNObcEh8_0_10,1407_36309,0 5378,1407,eat,what is a cat doing?,i3cHNObcEh8_0_10,1407_36310,0 5379,1407,eat,what is a kitten doing?,i3cHNObcEh8_0_10,1407_36311,0 5380,1407,eat,what is the cat doing?,i3cHNObcEh8_0_10,1407_36312,0 5381,1408,man,who fought with another man who was trying to comfort him?,i3fd4nE8OCI_174_181,1408_36313,0 5382,1408,two,how many men are fighting with each other?,i3fd4nE8OCI_174_181,1408_36314,0 5383,1408,two,how many men are struggling on a sidewalk?,i3fd4nE8OCI_174_181,1408_36315,0 5384,1408,two,how many men are pushing each other around?,i3fd4nE8OCI_174_181,1408_36316,0 5385,1408,two,how many men appear to be fighting or wrestling?,i3fd4nE8OCI_174_181,1408_36317,0 5386,1408,two,how many men argue?,i3fd4nE8OCI_174_181,1408_36318,0 5387,1408,two,how many men are fighting?,i3fd4nE8OCI_174_181,1408_36319,0 5388,1408,man,who is pushing another man?,i3fd4nE8OCI_174_181,1408_36320,0 5389,1408,two,how many men are talking aggressively?,i3fd4nE8OCI_174_181,1408_36321,0 5390,1408,man,who pushed another man away?,i3fd4nE8OCI_174_181,1408_36322,0 5391,1408,man,who is a man pushing?,i3fd4nE8OCI_174_181,1408_36323,0 5392,1408,sidewalk,what are two men struggling on?,i3fd4nE8OCI_174_181,1408_36324,0 5393,1408,man,who did one man push away?,i3fd4nE8OCI_174_181,1408_36325,0 5394,1408,fight,what is two men appear to be doing?,i3fd4nE8OCI_174_181,1408_36326,0 5395,1408,fight,what are two men doing?,i3fd4nE8OCI_174_181,1408_36327,0 5396,1408,talk,what are two men doing?,i3fd4nE8OCI_174_181,1408_36328,0 5397,1408,push,what are two men doing?,i3fd4nE8OCI_174_181,1408_36329,0 5398,1408,push,what is a man doing?,i3fd4nE8OCI_174_181,1408_36330,0 5399,1408,fight,what are the men doing?,i3fd4nE8OCI_174_181,1408_36331,0 5400,1408,struggle,what are two men doing?,i3fd4nE8OCI_174_181,1408_36332,0 5401,1408,try,what was one man fought with another man who doing?,i3fd4nE8OCI_174_181,1408_36333,0 5402,1409,woman,who applies eyelash thickener?,iCiGjZEV7VI_65_75,1409_36334,0 5403,1409,eyebrow,what is a woman applying color to with a brow and liner brush?,iCiGjZEV7VI_65_75,1409_36335,0 5404,1409,woman,who is putting on eyebrow makeup?,iCiGjZEV7VI_65_75,1409_36336,0 5405,1409,woman,who is applying eye liner?,iCiGjZEV7VI_65_75,1409_36337,0 5406,1409,girl,who is putting on makeup?,iCiGjZEV7VI_65_75,1409_36338,0 5407,1409,woman,who is applying makeup?,iCiGjZEV7VI_65_75,1409_36339,0 5408,1409,thickener,what does a woman apply?,iCiGjZEV7VI_65_75,1409_36340,0 5409,1409,eyebrow,what is a woman putting on?,iCiGjZEV7VI_65_75,1409_36341,0 5410,1409,makeup,what is a girl putting on?,iCiGjZEV7VI_65_75,1409_36342,0 5411,1409,liner,what is a woman applying?,iCiGjZEV7VI_65_75,1409_36343,0 5412,1409,eyebrow,what is a woman painting?,iCiGjZEV7VI_65_75,1409_36344,0 5413,1409,paint,what is a woman doing?,iCiGjZEV7VI_65_75,1409_36345,0 5414,1409,put,what is a woman doing?,iCiGjZEV7VI_65_75,1409_36346,0 5415,1409,put,what is a girl doing?,iCiGjZEV7VI_65_75,1409_36347,0 5416,1409,draw,what is the woman doing?,iCiGjZEV7VI_65_75,1409_36348,0 5417,1410,woman,who is cubing cooked potatoes while another woman watches?,iEW-EkPQywU_61_83,1410_36349,0 5418,1410,woman,who is chopping a peeled potato into slices?,iEW-EkPQywU_61_83,1410_36350,0 5419,1410,girl,who is slicing a potato into pieces?,iEW-EkPQywU_61_83,1410_36351,0 5420,1410,woman,who slices a potato with a knife?,iEW-EkPQywU_61_83,1410_36352,0 5421,1410,knife,what does a woman slice a potato with?,iEW-EkPQywU_61_83,1410_36353,0 5422,1410,potato,what does a woman slice with a knife?,iEW-EkPQywU_61_83,1410_36354,0 5423,1410,potato,what is a woman chopping into slices?,iEW-EkPQywU_61_83,1410_36355,0 5424,1410,potato,what is a girl slicing into pieces?,iEW-EkPQywU_61_83,1410_36356,0 5425,1410,woman,who is slicing boiled potato?,iEW-EkPQywU_61_83,1410_36357,0 5426,1410,lady,who cut up a potatoe?,iEW-EkPQywU_61_83,1410_36358,0 5427,1410,woman,who is chopping a potato?,iEW-EkPQywU_61_83,1410_36359,0 5428,1410,woman,who is slicing a potato?,iEW-EkPQywU_61_83,1410_36360,0 5429,1410,woman,who is cutting potatoes?,iEW-EkPQywU_61_83,1410_36361,0 5430,1410,two,how many women are talking?,iEW-EkPQywU_61_83,1410_36362,0 5431,1410,girl,who is chopping up a potato?,iEW-EkPQywU_61_83,1410_36363,0 5432,1410,woman,who cuts up a potato?,iEW-EkPQywU_61_83,1410_36364,0 5433,1410,woman,who is cutting a potato?,iEW-EkPQywU_61_83,1410_36365,0 5434,1410,potatoe,what did the ladies demonstrate cutting?,iEW-EkPQywU_61_83,1410_36366,0 5435,1410,potatoe,what did the lady cut up?,iEW-EkPQywU_61_83,1410_36367,0 5436,1410,potato,what is a girl chopping up?,iEW-EkPQywU_61_83,1410_36368,0 5437,1410,potato,what is a woman chopping?,iEW-EkPQywU_61_83,1410_36369,0 5438,1410,potato,what is a woman slicing?,iEW-EkPQywU_61_83,1410_36370,0 5439,1410,potato,what does a woman cut up?,iEW-EkPQywU_61_83,1410_36371,0 5440,1410,potato,what is a woman cutting?,iEW-EkPQywU_61_83,1410_36372,0 5441,1410,woman,who watches?,iEW-EkPQywU_61_83,1410_36373,0 5442,1410,chop,what is a girl doing?,iEW-EkPQywU_61_83,1410_36374,0 5443,1410,slouse,what is a girl doing?,iEW-EkPQywU_61_83,1410_36375,0 5444,1410,chop,what is a woman doing?,iEW-EkPQywU_61_83,1410_36376,0 5445,1410,cub,what is a woman doing?,iEW-EkPQywU_61_83,1410_36377,0 5446,1410,cut,what is a woman doing?,iEW-EkPQywU_61_83,1410_36378,0 5447,1410,cut,what is the ladies demonstrated doing?,iEW-EkPQywU_61_83,1410_36379,0 5448,1410,cut,what is the woman doing?,iEW-EkPQywU_61_83,1410_36380,0 5449,1410,talk,what are two women doing?,iEW-EkPQywU_61_83,1410_36381,0 5450,1411,train,what passed mt fuji?,iLr7ZHAq1ro_7_11,1411_36382,0 5451,1411,mountain,what did the yellow train passed in front of the snow cap?,iLr7ZHAq1ro_7_11,1411_36383,0 5452,1411,train,what passes by mount fuji?,iLr7ZHAq1ro_7_11,1411_36384,0 5453,1411,train,what went past the snow capped mountain?,iLr7ZHAq1ro_7_11,1411_36385,0 5454,1411,snow,what did the train go past capped mountain?,iLr7ZHAq1ro_7_11,1411_36386,0 5455,1411,mountain,what did the train go past the snow capped?,iLr7ZHAq1ro_7_11,1411_36387,0 5456,1411,train,what is riding on a track in front of a mountain?,iLr7ZHAq1ro_7_11,1411_36388,0 5457,1411,track,what is a train riding on in front of a mountain?,iLr7ZHAq1ro_7_11,1411_36389,0 5458,1411,track,what is yellow passenger train speeding down?,iLr7ZHAq1ro_7_11,1411_36390,0 5459,1411,train,what is speeding down a track?,iLr7ZHAq1ro_7_11,1411_36391,0 5460,1411,passenger,what is speeding down the track?,iLr7ZHAq1ro_7_11,1411_36392,0 5461,1411,bullet,what zooms through the countryside?,iLr7ZHAq1ro_7_11,1411_36393,0 5462,1411,track,what is a yellow train speeding down?,iLr7ZHAq1ro_7_11,1411_36394,0 5463,1411,mount,what does a train pass by?,iLr7ZHAq1ro_7_11,1411_36395,0 5464,1411,countryside,what does a bullet train zoom through?,iLr7ZHAq1ro_7_11,1411_36396,0 5465,1411,train,what is riding on tracks?,iLr7ZHAq1ro_7_11,1411_36397,0 5466,1411,train,what is rolling by?,iLr7ZHAq1ro_7_11,1411_36398,0 5467,1411,train,what is passing by?,iLr7ZHAq1ro_7_11,1411_36399,0 5468,1411,train,what is moving fast?,iLr7ZHAq1ro_7_11,1411_36400,0 5469,1411,train,what is going by?,iLr7ZHAq1ro_7_11,1411_36401,0 5470,1411,train,what is moving?,iLr7ZHAq1ro_7_11,1411_36402,0 5471,1411,speed,what is a yellow train doing?,iLr7ZHAq1ro_7_11,1411_36403,0 5472,1411,speed,what is yellow passenger train doing?,iLr7ZHAq1ro_7_11,1411_36404,0 5473,1411,pas,what is a train doing?,iLr7ZHAq1ro_7_11,1411_36405,0 5474,1411,move,what is a train doing?,iLr7ZHAq1ro_7_11,1411_36406,0 5475,1411,roll,what is a train doing?,iLr7ZHAq1ro_7_11,1411_36407,0 5476,1412,man,who washes his hands in a bathroom sink?,iTA0rWPE4nY_17_23,1412_36408,0 5477,1412,man,who is wiping his hands on a towel?,iTA0rWPE4nY_17_23,1412_36409,0 5478,1412,man,who is drying his hands on a towel?,iTA0rWPE4nY_17_23,1412_36410,0 5479,1412,man,who dries his hands on a towel?,iTA0rWPE4nY_17_23,1412_36411,0 5480,1412,boy,who wiped his hands on the towel?,iTA0rWPE4nY_17_23,1412_36412,0 5481,1412,towel,what did the boy wipe his hands on?,iTA0rWPE4nY_17_23,1412_36413,0 5482,1412,towel,what is a boy drying his hands on?,iTA0rWPE4nY_17_23,1412_36414,0 5483,1412,towel,what is a man wiping his hands on?,iTA0rWPE4nY_17_23,1412_36415,0 5484,1412,towel,what is a man drying his hands on?,iTA0rWPE4nY_17_23,1412_36416,0 5485,1412,man,who is toweling his hands?,iTA0rWPE4nY_17_23,1412_36417,0 5486,1412,man,who dries his hands?,iTA0rWPE4nY_17_23,1412_36418,0 5487,1412,guy,who is drying off his hands?,iTA0rWPE4nY_17_23,1412_36419,0 5488,1412,man,who is drying his hands?,iTA0rWPE4nY_17_23,1412_36420,0 5489,1412,dry,what is a man doing?,iTA0rWPE4nY_17_23,1412_36421,0 5490,1412,towel,what is a man doing?,iTA0rWPE4nY_17_23,1412_36422,0 5491,1412,wipe,what is a man doing?,iTA0rWPE4nY_17_23,1412_36423,0 5492,1412,dry,what is a boy doing?,iTA0rWPE4nY_17_23,1412_36424,0 5493,1412,dry,what is a guy doing?,iTA0rWPE4nY_17_23,1412_36425,0 5494,1412,wash,what is someone doing?,iTA0rWPE4nY_17_23,1412_36426,0 5495,1413,baby,who is putting toys inside a larger toy?,iUYWdCxvJCI_2_14,1413_36427,0 5496,1413,baby,who puts several toys in a plastic container?,iUYWdCxvJCI_2_14,1413_36428,0 5497,1413,baby,who is putting the dishes in a container?,iUYWdCxvJCI_2_14,1413_36429,0 5498,1413,room,what is a very young child shown walking around in carrying a toy cup and saucer?,iUYWdCxvJCI_2_14,1413_36430,0 5499,1413,baby,who is dancing to a song being sung?,iUYWdCxvJCI_2_14,1413_36431,0 5500,1413,toddler,who plays with a plastic tea set?,iUYWdCxvJCI_2_14,1413_36432,0 5501,1413,container,what is the baby putting the dishes in?,iUYWdCxvJCI_2_14,1413_36433,0 5502,1413,baby,who plays with some toys?,iUYWdCxvJCI_2_14,1413_36434,0 5503,1413,baby,who is playing with toys?,iUYWdCxvJCI_2_14,1413_36435,0 5504,1413,baby,who cleans the room?,iUYWdCxvJCI_2_14,1413_36436,0 5505,1413,toddler,who is picking up toys?,iUYWdCxvJCI_2_14,1413_36437,0 5506,1413,room,what does a baby clean?,iUYWdCxvJCI_2_14,1413_36438,0 5507,1413,baby,who dances?,iUYWdCxvJCI_2_14,1413_36439,0 5508,1413,baby,who is playing around?,iUYWdCxvJCI_2_14,1413_36440,0 5509,1413,put,what is a baby girl doing?,iUYWdCxvJCI_2_14,1413_36441,0 5510,1413,dance,what is a baby doing?,iUYWdCxvJCI_2_14,1413_36442,0 5511,1413,play,what is a baby doing?,iUYWdCxvJCI_2_14,1413_36443,0 5512,1413,play,what is a small child doing?,iUYWdCxvJCI_2_14,1413_36444,0 5513,1413,pick,what is a toddler doing?,iUYWdCxvJCI_2_14,1413_36445,0 5514,1413,walk,what is a very young child is shown doing?,iUYWdCxvJCI_2_14,1413_36446,0 5515,1413,put,what is the baby doing?,iUYWdCxvJCI_2_14,1413_36447,0 5516,1414,grassland,where is a cheetah running at great speed?,iarsmqA3dck_19_25,1414_36448,0 5517,1414,cheetah,what is running at great speed on grassland?,iarsmqA3dck_19_25,1414_36449,0 5518,1414,speed,when does a cheetah run across a field?,iarsmqA3dck_19_25,1414_36450,0 5519,1414,field,what does a cheetah run full speed across?,iarsmqA3dck_19_25,1414_36451,0 5520,1414,speed,when is a cheetah running on grassland?,iarsmqA3dck_19_25,1414_36452,0 5521,1414,grassland,what is a cheetah running at great speed on?,iarsmqA3dck_19_25,1414_36453,0 5522,1414,cheetah,what runs full speed across a field?,iarsmqA3dck_19_25,1414_36454,0 5523,1414,panther,what is running fast on the grass field?,iarsmqA3dck_19_25,1414_36455,0 5524,1414,cheetah,what runs at warp speed?,iarsmqA3dck_19_25,1414_36456,0 5525,1414,predatory,what sprints through a field?,iarsmqA3dck_19_25,1414_36457,0 5526,1414,cheetah,what raced after its prey?,iarsmqA3dck_19_25,1414_36458,0 5527,1414,field,what does a predatory cat sprint through?,iarsmqA3dck_19_25,1414_36459,0 5528,1414,cheetah,what runs across a field?,iarsmqA3dck_19_25,1414_36460,0 5529,1414,cheetah,what runs through a field?,iarsmqA3dck_19_25,1414_36461,0 5530,1414,speed,when does a cheetah run?,iarsmqA3dck_19_25,1414_36462,0 5531,1414,cheetah,what is running across a field?,iarsmqA3dck_19_25,1414_36463,0 5532,1414,cheetah,what is running through a field?,iarsmqA3dck_19_25,1414_36464,0 5533,1414,field,what does a cheetah run across?,iarsmqA3dck_19_25,1414_36465,0 5534,1414,field,what is a cheetah running across?,iarsmqA3dck_19_25,1414_36466,0 5535,1414,field,what does a cheetah run through?,iarsmqA3dck_19_25,1414_36467,0 5536,1414,field,what is a cheetah running through?,iarsmqA3dck_19_25,1414_36468,0 5537,1414,cheetah,what is running in the grass?,iarsmqA3dck_19_25,1414_36469,0 5538,1414,gras,what is a cheetah running in?,iarsmqA3dck_19_25,1414_36470,0 5539,1414,prey,who did the cheetah race to catch?,iarsmqA3dck_19_25,1414_36471,0 5540,1414,prey,who did the cheetah race after?,iarsmqA3dck_19_25,1414_36472,0 5541,1414,cheetah,what is running very fast?,iarsmqA3dck_19_25,1414_36473,0 5542,1414,cheetah,what is running?,iarsmqA3dck_19_25,1414_36474,0 5543,1415,polouse,who is pointing a gun to a car driver?,ibSwITK4jjQ_14_24,1415_36475,0 5544,1415,officer,who pulled a gun on the car he had pulled over?,ibSwITK4jjQ_14_24,1415_36476,0 5545,1415,officer,who pulled a gun on the driver he pulled over?,ibSwITK4jjQ_14_24,1415_36477,0 5546,1415,cop,who pulls a gun on a person in a car?,ibSwITK4jjQ_14_24,1415_36478,0 5547,1415,polouse,who screams at the person inside a gun?,ibSwITK4jjQ_14_24,1415_36479,0 5548,1415,polouse,who points the gun at a white car parked on one side of a highway?,ibSwITK4jjQ_14_24,1415_36480,0 5549,1415,driver,who did the officer pull a gun on he pulled over?,ibSwITK4jjQ_14_24,1415_36481,0 5550,1415,car,what did the officer pull a gun on he had pulled over?,ibSwITK4jjQ_14_24,1415_36482,0 5551,1415,gun,what did the officer pull on the car he had pulled over?,ibSwITK4jjQ_14_24,1415_36483,0 5552,1415,gun,what is a police man pointing to a car driver?,ibSwITK4jjQ_14_24,1415_36484,0 5553,1415,cop,who is pointing a gun at someone?,ibSwITK4jjQ_14_24,1415_36485,0 5554,1415,gun,what did the officer pull on the driver he pulled over?,ibSwITK4jjQ_14_24,1415_36486,0 5555,1415,gun,what does a cop pull on a person in a car?,ibSwITK4jjQ_14_24,1415_36487,0 5556,1415,cop,who is trying to arrest a car driver?,ibSwITK4jjQ_14_24,1415_36488,0 5557,1415,gun,what does a police officer point at a white car parked on one side of a highway?,ibSwITK4jjQ_14_24,1415_36489,0 5558,1415,someone,what is a cop pointing a gun at?,ibSwITK4jjQ_14_24,1415_36490,0 5559,1415,gun,what is a cop pointing at someone?,ibSwITK4jjQ_14_24,1415_36491,0 5560,1415,polouse,who pulled over the car?,ibSwITK4jjQ_14_24,1415_36492,0 5561,1415,polouse,who drew his gun?,ibSwITK4jjQ_14_24,1415_36493,0 5562,1415,car,what did the police officer pull over?,ibSwITK4jjQ_14_24,1415_36494,0 5563,1415,cop,who is pulling someone over?,ibSwITK4jjQ_14_24,1415_36495,0 5564,1415,someone,what is a cop pulling over?,ibSwITK4jjQ_14_24,1415_36496,0 5565,1415,gun,what did the police officer draw?,ibSwITK4jjQ_14_24,1415_36497,0 5566,1415,polouse,who is shouting?,ibSwITK4jjQ_14_24,1415_36498,0 5567,1415,try,what is a police-man doing?,ibSwITK4jjQ_14_24,1415_36499,0 5568,1415,try,what is a cop doing?,ibSwITK4jjQ_14_24,1415_36500,0 5569,1415,point,what is a cop doing?,ibSwITK4jjQ_14_24,1415_36501,0 5570,1415,shout,what is a police man doing?,ibSwITK4jjQ_14_24,1415_36502,0 5571,1415,approach,what is a police offer doing?,ibSwITK4jjQ_14_24,1415_36503,0 5572,1415,pull,what is a cop doing?,ibSwITK4jjQ_14_24,1415_36504,0 5573,1415,aim,what is a officer doing?,ibSwITK4jjQ_14_24,1415_36505,0 5574,1416,someone,who is petting a baby tiger?,idRc_KkInds_0_6,1416_36506,0 5575,1416,tiger,who tried to open his sleepy eyes?,idRc_KkInds_0_6,1416_36507,0 5576,1416,tiger,who is someone petting?,idRc_KkInds_0_6,1416_36508,0 5577,1416,man,who is stroking a tiger cub?,idRc_KkInds_0_6,1416_36509,0 5578,1416,someone,who is petting a tiger cub?,idRc_KkInds_0_6,1416_36510,0 5579,1416,someone,who is holding a tiger cub?,idRc_KkInds_0_6,1416_36511,0 5580,1416,person,who plays with a tiger?,idRc_KkInds_0_6,1416_36512,0 5581,1416,person,who is holding a baby tiger?,idRc_KkInds_0_6,1416_36513,0 5582,1416,tiger,who does a person play with?,idRc_KkInds_0_6,1416_36514,0 5583,1416,sound,what is a tiger cub making?,idRc_KkInds_0_6,1416_36515,0 5584,1416,tiger,what is making a sound?,idRc_KkInds_0_6,1416_36516,0 5585,1416,tiger,who is someone holding?,idRc_KkInds_0_6,1416_36517,0 5586,1416,tiger,what is someone petting?,idRc_KkInds_0_6,1416_36518,0 5587,1416,tiger,who is a woman holding?,idRc_KkInds_0_6,1416_36519,0 5588,1416,tiger,who is a person holding?,idRc_KkInds_0_6,1416_36520,0 5589,1416,tiger,who is the person holding?,idRc_KkInds_0_6,1416_36521,0 5590,1416,tiger,who is a man holding?,idRc_KkInds_0_6,1416_36522,0 5591,1416,tiger,what is a woman petting?,idRc_KkInds_0_6,1416_36523,0 5592,1416,tiger,what is a man stroking?,idRc_KkInds_0_6,1416_36524,0 5593,1416,tiger,what is someone holding?,idRc_KkInds_0_6,1416_36525,0 5594,1416,tiger,who is being held?,idRc_KkInds_0_6,1416_36526,0 5595,1416,someone,who is holding?,idRc_KkInds_0_6,1416_36527,0 5596,1416,tiger,who was sleepy?,idRc_KkInds_0_6,1416_36528,0 5597,1416,hold,what is someone doing?,idRc_KkInds_0_6,1416_36529,0 5598,1416,hold,what is a person doing?,idRc_KkInds_0_6,1416_36530,0 5599,1416,hold,what is a man doing?,idRc_KkInds_0_6,1416_36531,0 5600,1416,pet,what is someone doing?,idRc_KkInds_0_6,1416_36532,0 5601,1416,pet,what is a woman doing?,idRc_KkInds_0_6,1416_36533,0 5602,1416,stroke,what is a man doing?,idRc_KkInds_0_6,1416_36534,0 5603,1416,hold,what is the person doing?,idRc_KkInds_0_6,1416_36535,0 5604,1417,man,who is sliding on the peripheral surface of a circular water slide?,idXJu0BQRvo_2_6,1417_36536,0 5605,1417,man,who swirled downwards on the water slide?,idXJu0BQRvo_2_6,1417_36537,0 5606,1417,man,who swirls around a waterslide on his back?,idXJu0BQRvo_2_6,1417_36538,0 5607,1417,person,who slides around on a circular water slide?,idXJu0BQRvo_2_6,1417_36539,0 5608,1417,boy,who is sliding around a water slide?,idXJu0BQRvo_2_6,1417_36540,0 5609,1417,man,who is slipping in a water slide?,idXJu0BQRvo_2_6,1417_36541,0 5610,1417,man,who is going around the water slide?,idXJu0BQRvo_2_6,1417_36542,0 5611,1417,boy,who is going down a water slide?,idXJu0BQRvo_2_6,1417_36543,0 5612,1417,man,who floated in a circle?,idXJu0BQRvo_2_6,1417_36544,0 5613,1417,person,who is enjoying a water slide?,idXJu0BQRvo_2_6,1417_36545,0 5614,1417,man,who is riding a water slide?,idXJu0BQRvo_2_6,1417_36546,0 5615,1417,water,what is a boy going down?,idXJu0BQRvo_2_6,1417_36547,0 5616,1417,circle,what did the man float in?,idXJu0BQRvo_2_6,1417_36548,0 5617,1417,water,what is a person enjoying?,idXJu0BQRvo_2_6,1417_36549,0 5618,1417,water,what is a man riding?,idXJu0BQRvo_2_6,1417_36550,0 5619,1417,slide,what is a boy doing?,idXJu0BQRvo_2_6,1417_36551,0 5620,1417,slip,what is a man doing?,idXJu0BQRvo_2_6,1417_36552,0 5621,1417,enjoy,what is a person doing?,idXJu0BQRvo_2_6,1417_36553,0 5622,1418,hamster,what is eating a piece of carrot?,ifS2nXfCyYo_4_34,1418_36554,0 5623,1418,carrot,what is a hamster eating a piece of?,ifS2nXfCyYo_4_34,1418_36555,0 5624,1418,carrot,what is a baby guinea pig nibbling on?,ifS2nXfCyYo_4_34,1418_36556,0 5625,1418,guineapig,who eats a piece of carrot?,ifS2nXfCyYo_4_34,1418_36557,0 5626,1418,guinea,who chews on food?,ifS2nXfCyYo_4_34,1418_36558,0 5627,1418,carrot,what does a hamster or guinea pig eat?,ifS2nXfCyYo_4_34,1418_36559,0 5628,1418,carrot,what is the guinea pig nibbling on?,ifS2nXfCyYo_4_34,1418_36560,0 5629,1418,guinea,who eats a carrot?,ifS2nXfCyYo_4_34,1418_36561,0 5630,1418,carrot,what does a guinea pig eat?,ifS2nXfCyYo_4_34,1418_36562,0 5631,1418,carrot,what does a guineapig eat a piece of?,ifS2nXfCyYo_4_34,1418_36563,0 5632,1418,gnawing,what is a small guinea pig?,ifS2nXfCyYo_4_34,1418_36564,0 5633,1418,food,what a guinea pig chews on?,ifS2nXfCyYo_4_34,1418_36565,0 5634,1418,guinea,who is eating a carrot?,ifS2nXfCyYo_4_34,1418_36566,0 5635,1418,guinea,who is eating food?,ifS2nXfCyYo_4_34,1418_36567,0 5636,1418,guniea,what is eating a carrot?,ifS2nXfCyYo_4_34,1418_36568,0 5637,1418,carrot,what does a guinea pig eat?,ifS2nXfCyYo_4_34,1418_36569,0 5638,1418,carrot,what is a guniea pig eating?,ifS2nXfCyYo_4_34,1418_36570,0 5639,1418,carrot,what is a guinea pig eating?,ifS2nXfCyYo_4_34,1418_36571,0 5640,1418,guinea,who is eating?,ifS2nXfCyYo_4_34,1418_36572,0 5641,1418,guinna,what is eating?,ifS2nXfCyYo_4_34,1418_36573,0 5642,1418,eat,what is hamster doing?,ifS2nXfCyYo_4_34,1418_36574,0 5643,1418,eat,what is a guinea pig doing?,ifS2nXfCyYo_4_34,1418_36575,0 5644,1418,eat,what is a guinna pig doing?,ifS2nXfCyYo_4_34,1418_36576,0 5645,1418,eat,what is a guniea pig doing?,ifS2nXfCyYo_4_34,1418_36577,0 5646,1418,eat,what is a hamster doing?,ifS2nXfCyYo_4_34,1418_36578,0 5647,1418,gnaw,what is a small guinea pig doing?,ifS2nXfCyYo_4_34,1418_36579,0 5648,1419,man,who tap danced on the stage?,inLBPVG8oEU_18_24,1419_36580,0 5649,1419,man,who dances in the spotlight?,inLBPVG8oEU_18_24,1419_36581,0 5650,1419,man,who dances on a stage?,inLBPVG8oEU_18_24,1419_36582,0 5651,1419,man,who is dancing on stage?,inLBPVG8oEU_18_24,1419_36583,0 5652,1419,man,who is dancing on a stage?,inLBPVG8oEU_18_24,1419_36584,0 5653,1419,stage,when do the man tap danced?,inLBPVG8oEU_18_24,1419_36585,0 5654,1419,stage,when does a man dance?,inLBPVG8oEU_18_24,1419_36586,0 5655,1419,stage,when is a man dancing?,inLBPVG8oEU_18_24,1419_36587,0 5656,1419,spotlight,what does a man dance in?,inLBPVG8oEU_18_24,1419_36588,0 5657,1419,man,who is dancing alone?,inLBPVG8oEU_18_24,1419_36589,0 5658,1419,man,who dances?,inLBPVG8oEU_18_24,1419_36590,0 5659,1419,man,who is dancing?,inLBPVG8oEU_18_24,1419_36591,0 5660,1419,dance,what is a young man doing?,inLBPVG8oEU_18_24,1419_36592,0 5661,1419,dance,what is a man doing?,inLBPVG8oEU_18_24,1419_36593,0 5662,1419,dance,what is the man doing?,inLBPVG8oEU_18_24,1419_36594,0 5663,1420,person,who is peeling a banana from the round end?,inzk2fTUe1w_1_15,1420_36595,0 5664,1420,someone,who is peeling a banana from the bottom?,inzk2fTUe1w_1_15,1420_36596,0 5665,1420,banana,what is a person peeling from the round end?,inzk2fTUe1w_1_15,1420_36597,0 5666,1420,bottom,what is someone peeling a banana from?,inzk2fTUe1w_1_15,1420_36598,0 5667,1420,banana,what is someone peeling from the bottom?,inzk2fTUe1w_1_15,1420_36599,0 5668,1420,man,who pealing a banana?,inzk2fTUe1w_1_15,1420_36600,0 5669,1420,man,who peels a banana?,inzk2fTUe1w_1_15,1420_36601,0 5670,1420,person,who is peeling a banana?,inzk2fTUe1w_1_15,1420_36602,0 5671,1420,woman,who is opening a banana?,inzk2fTUe1w_1_15,1420_36603,0 5672,1420,banana,what does a man peal?,inzk2fTUe1w_1_15,1420_36604,0 5673,1420,banana,what does someone peel?,inzk2fTUe1w_1_15,1420_36605,0 5674,1420,banana,what is someone peeling?,inzk2fTUe1w_1_15,1420_36606,0 5675,1420,banana,what does a man peel?,inzk2fTUe1w_1_15,1420_36607,0 5676,1420,banana,what is a person peeling?,inzk2fTUe1w_1_15,1420_36608,0 5677,1420,banana,what is the person peeling?,inzk2fTUe1w_1_15,1420_36609,0 5678,1420,banana,what is a woman opening?,inzk2fTUe1w_1_15,1420_36610,0 5679,1420,banana,what is being peeled?,inzk2fTUe1w_1_15,1420_36611,0 5680,1420,banana,what is peeled?,inzk2fTUe1w_1_15,1420_36612,0 5681,1420,peal,what is a man doing?,inzk2fTUe1w_1_15,1420_36613,0 5682,1420,peel,what is a person doing?,inzk2fTUe1w_1_15,1420_36614,0 5683,1420,peel,what is someone doing?,inzk2fTUe1w_1_15,1420_36615,0 5684,1420,peel,what is the person doing?,inzk2fTUe1w_1_15,1420_36616,0 5685,1421,man,who ladles pancake batter onto a hot grill?,io2dbV-Qbus_215_247,1421_36617,0 5686,1421,man,who is spooning pancake batter onto a tray?,io2dbV-Qbus_215_247,1421_36618,0 5687,1421,man,who is pouring pancake batter onto a griddle?,io2dbV-Qbus_215_247,1421_36619,0 5688,1421,man,who ladled pancake batter onto the grill?,io2dbV-Qbus_215_247,1421_36620,0 5689,1421,man,who is pouring pancake batter onto a gridle?,io2dbV-Qbus_215_247,1421_36621,0 5690,1421,person,who is pouring pancake mixture on to a stove?,io2dbV-Qbus_215_247,1421_36622,0 5691,1421,grill,what did the man ladle pancake batter onto?,io2dbV-Qbus_215_247,1421_36623,0 5692,1421,man,who is pouring batter onto a griddle?,io2dbV-Qbus_215_247,1421_36624,0 5693,1421,gridle,who is a man pouring pancake batter onto?,io2dbV-Qbus_215_247,1421_36625,0 5694,1421,tray,what is a man spooning pancake batter onto?,io2dbV-Qbus_215_247,1421_36626,0 5695,1421,someone,who ladled pancake batter onto the grittle?,io2dbV-Qbus_215_247,1421_36627,0 5696,1421,batter,who is a man pouring onto a griddle?,io2dbV-Qbus_215_247,1421_36628,0 5697,1421,griddle,what is a man pouring pancake batter onto?,io2dbV-Qbus_215_247,1421_36629,0 5698,1421,pancake,what did the man ladle onto the grill?,io2dbV-Qbus_215_247,1421_36630,0 5699,1421,pancake,what does a man ladle onto a hot grill?,io2dbV-Qbus_215_247,1421_36631,0 5700,1421,pancake,what is a man spooning onto a tray?,io2dbV-Qbus_215_247,1421_36632,0 5701,1421,man,who is making pancakes on a stove?,io2dbV-Qbus_215_247,1421_36633,0 5702,1421,pancake,what is a man pouring onto a griddle?,io2dbV-Qbus_215_247,1421_36634,0 5703,1421,pancake,what is a man pouring onto a gridle?,io2dbV-Qbus_215_247,1421_36635,0 5704,1421,grittle,what did someone ladle pancake batter onto?,io2dbV-Qbus_215_247,1421_36636,0 5705,1421,pancake,what is a person pouring on to a stove?,io2dbV-Qbus_215_247,1421_36637,0 5706,1421,griddle,what is a man pouring batter onto?,io2dbV-Qbus_215_247,1421_36638,0 5707,1421,pancake,what did someone ladle onto the grittle?,io2dbV-Qbus_215_247,1421_36639,0 5708,1421,stove,what is a man making pancakes on?,io2dbV-Qbus_215_247,1421_36640,0 5709,1421,individual,who spoons out pancake batter?,io2dbV-Qbus_215_247,1421_36641,0 5710,1421,man,who is cooking pancakes?,io2dbV-Qbus_215_247,1421_36642,0 5711,1421,chef,who is making pancakes?,io2dbV-Qbus_215_247,1421_36643,0 5712,1421,pancake,what does an individual spoon out?,io2dbV-Qbus_215_247,1421_36644,0 5713,1421,making,who pancakes?,io2dbV-Qbus_215_247,1421_36645,0 5714,1421,making,what pancakes?,io2dbV-Qbus_215_247,1421_36646,0 5715,1421,pmy,what is a man doing?,io2dbV-Qbus_215_247,1421_36647,0 5716,1421,pmy,what is a person doing?,io2dbV-Qbus_215_247,1421_36648,0 5717,1421,spoon,what is a man doing?,io2dbV-Qbus_215_247,1421_36649,0 5718,1421,cook,what is the man doing?,io2dbV-Qbus_215_247,1421_36650,0 5719,1422,cat,what keeps moving one paw like it is waving at something?,itxzpFW1z7E_22_36,1422_36651,0 5720,1422,paw,what does a cat keep moving like it is waving at something?,itxzpFW1z7E_22_36,1422_36652,0 5721,1422,cat,what shoves its head in its fur?,itxzpFW1z7E_22_36,1422_36653,0 5722,1422,cat,what is waving its paw?,itxzpFW1z7E_22_36,1422_36654,0 5723,1422,cat,what is biting on itself?,itxzpFW1z7E_22_36,1422_36655,0 5724,1422,cat,what is waving at something?,itxzpFW1z7E_22_36,1422_36656,0 5725,1422,kitten,what waves its paw and hides its face?,itxzpFW1z7E_22_36,1422_36657,0 5726,1422,cat,what is cleaning itself?,itxzpFW1z7E_22_36,1422_36658,0 5727,1422,kitten,what is biting itself?,itxzpFW1z7E_22_36,1422_36659,0 5728,1422,something,what is a cat waving at?,itxzpFW1z7E_22_36,1422_36660,0 5729,1422,cat,what suckling itself?,itxzpFW1z7E_22_36,1422_36661,0 5730,1422,cat,what is laying down?,itxzpFW1z7E_22_36,1422_36662,0 5731,1422,paw,what is a cat waving?,itxzpFW1z7E_22_36,1422_36663,0 5732,1422,fur,what is the cat cleaning?,itxzpFW1z7E_22_36,1422_36664,0 5733,1422,bite,what is a cat doing?,itxzpFW1z7E_22_36,1422_36665,0 5734,1422,clean,what is a cat doing?,itxzpFW1z7E_22_36,1422_36666,0 5735,1422,lay,what is a cat doing?,itxzpFW1z7E_22_36,1422_36667,0 5736,1422,raise,what is a cat doing?,itxzpFW1z7E_22_36,1422_36668,0 5737,1422,bite,what is a kitten doing?,itxzpFW1z7E_22_36,1422_36669,0 5738,1422,bite,what is a white cat seated on a couch doing?,itxzpFW1z7E_22_36,1422_36670,0 5739,1422,suckle,what is a white cat doing?,itxzpFW1z7E_22_36,1422_36671,0 5740,1422,clean,what is the cat doing?,itxzpFW1z7E_22_36,1422_36672,0 5741,1422,scratch,what is the cat doing?,itxzpFW1z7E_22_36,1422_36673,0 5742,1423,lady,who folded a yellow piece of paper in half?,iuqVpMdb1NM_35_43,1423_36674,0 5743,1423,woman,who is folding a sheet of yellow paper?,iuqVpMdb1NM_35_43,1423_36675,0 5744,1423,someone,who folds a piece of paper in half with the yellow side out?,iuqVpMdb1NM_35_43,1423_36676,0 5745,1423,person,who folds over a piece of paper?,iuqVpMdb1NM_35_43,1423_36677,0 5746,1423,man,who is folding a piece of paper?,iuqVpMdb1NM_35_43,1423_36678,0 5747,1423,paper,what did the lady fold a yellow piece of in half?,iuqVpMdb1NM_35_43,1423_36679,0 5748,1423,half,what did the lady fold a yellow piece of paper in?,iuqVpMdb1NM_35_43,1423_36680,0 5749,1423,paper,what is a woman folding a sheet of?,iuqVpMdb1NM_35_43,1423_36681,0 5750,1423,paper,what is a person folding a piece of?,iuqVpMdb1NM_35_43,1423_36682,0 5751,1423,paper,what is a man folding a piece of?,iuqVpMdb1NM_35_43,1423_36683,0 5752,1423,paper,what does someone fold a piece of in half with the yellow side out?,iuqVpMdb1NM_35_43,1423_36684,0 5753,1423,person,who folds a piece of paper?,iuqVpMdb1NM_35_43,1423_36685,0 5754,1423,lady,who folded the paper in half?,iuqVpMdb1NM_35_43,1423_36686,0 5755,1423,paper,what does a person fold a piece of?,iuqVpMdb1NM_35_43,1423_36687,0 5756,1423,half,what did the lady fold the paper in?,iuqVpMdb1NM_35_43,1423_36688,0 5757,1423,paper,what is someone folding a piece of?,iuqVpMdb1NM_35_43,1423_36689,0 5758,1423,paper,what did the lady fold in half?,iuqVpMdb1NM_35_43,1423_36690,0 5759,1423,woman,who is folding paper?,iuqVpMdb1NM_35_43,1423_36691,0 5760,1423,someone,who is folding some paper?,iuqVpMdb1NM_35_43,1423_36692,0 5761,1423,person,who is folding a paper?,iuqVpMdb1NM_35_43,1423_36693,0 5762,1423,paper,what is the woman?,iuqVpMdb1NM_35_43,1423_36694,0 5763,1423,paper,what is a person?,iuqVpMdb1NM_35_43,1423_36695,0 5764,1423,fold,what is a man doing?,iuqVpMdb1NM_35_43,1423_36696,0 5765,1423,fold,what is a person doing?,iuqVpMdb1NM_35_43,1423_36697,0 5766,1423,fold,what is a woman doing?,iuqVpMdb1NM_35_43,1423_36698,0 5767,1423,fold,what is someone doing?,iuqVpMdb1NM_35_43,1423_36699,0 5768,1423,fold,what is the woman doing?,iuqVpMdb1NM_35_43,1423_36700,0 5769,1424,woman,who is performing a dance on a floor that is covered with colored geometric shapes?,iwpnUHFhjWc_84_94,1424_36701,0 5770,1424,woman,who is stepping on colored powder patterns on the floor?,iwpnUHFhjWc_84_94,1424_36702,0 5771,1424,girl,who danced on the roof of a building?,iwpnUHFhjWc_84_94,1424_36703,0 5772,1424,rooftop,where is a woman doing a dance?,iwpnUHFhjWc_84_94,1424_36704,0 5773,1424,woman,who is dancing on the terrace of a building?,iwpnUHFhjWc_84_94,1424_36705,0 5774,1424,woman,who is doing a dance on a rooftop?,iwpnUHFhjWc_84_94,1424_36706,0 5775,1424,floor,what is a woman stepping on colored powder patterns on?,iwpnUHFhjWc_84_94,1424_36707,0 5776,1424,woman,who dances on a decorated brick floor?,iwpnUHFhjWc_84_94,1424_36708,0 5777,1424,dance,what is a woman doing on a rooftop?,iwpnUHFhjWc_84_94,1424_36709,0 5778,1424,girl,who is dancing on a decorated floor?,iwpnUHFhjWc_84_94,1424_36710,0 5779,1424,rooftop,what is a woman doing a dance on?,iwpnUHFhjWc_84_94,1424_36711,0 5780,1424,rooftop,where did a lady dance?,iwpnUHFhjWc_84_94,1424_36712,0 5781,1424,lady,who danced on a rooftop?,iwpnUHFhjWc_84_94,1424_36713,0 5782,1424,woman,who is ritually dancing?,iwpnUHFhjWc_84_94,1424_36714,0 5783,1424,rooftop,what did a lady dance on?,iwpnUHFhjWc_84_94,1424_36715,0 5784,1424,girl,who is dancing?,iwpnUHFhjWc_84_94,1424_36716,0 5785,1424,dance,what is a girl doing?,iwpnUHFhjWc_84_94,1424_36717,0 5786,1424,dance,what is a woman in a martial arts costume doing?,iwpnUHFhjWc_84_94,1424_36718,0 5787,1424,perform,what is a woman doing?,iwpnUHFhjWc_84_94,1424_36719,0 5788,1424,dance,what is a woman is ritually doing?,iwpnUHFhjWc_84_94,1424_36720,0 5789,1424,dance,what is the woman doing?,iwpnUHFhjWc_84_94,1424_36721,0 5790,1425,individual,who carries out different movements in a park?,iwpnUHFhjWc_9_14,1425_36722,0 5791,1425,woman,who is dancing to music in the temple premises?,iwpnUHFhjWc_9_14,1425_36723,0 5792,1425,music,what is a woman dancing to in the temple premises?,iwpnUHFhjWc_9_14,1425_36724,0 5793,1425,woman,who dances on a gazebo?,iwpnUHFhjWc_9_14,1425_36725,0 5794,1425,lady,who danced on a stage?,iwpnUHFhjWc_9_14,1425_36726,0 5795,1425,girl,who danced on the stage?,iwpnUHFhjWc_9_14,1425_36727,0 5796,1425,woman,who is ritually dancing?,iwpnUHFhjWc_9_14,1425_36728,0 5797,1425,stage,when did the lady dance?,iwpnUHFhjWc_9_14,1425_36729,0 5798,1425,stage,when did the girl dance?,iwpnUHFhjWc_9_14,1425_36730,0 5799,1425,gazebo,what does a woman dance on?,iwpnUHFhjWc_9_14,1425_36731,0 5800,1425,woman,who is dancing outside?,iwpnUHFhjWc_9_14,1425_36732,0 5801,1425,woman,who is spinning?,iwpnUHFhjWc_9_14,1425_36733,0 5802,1425,girl,who is dancing?,iwpnUHFhjWc_9_14,1425_36734,0 5803,1425,dance,what is a woman doing?,iwpnUHFhjWc_9_14,1425_36735,0 5804,1425,dance,what is a girl doing?,iwpnUHFhjWc_9_14,1425_36736,0 5805,1425,dance,what is a woman is ritually doing?,iwpnUHFhjWc_9_14,1425_36737,0 5806,1425,spin,what is a woman doing?,iwpnUHFhjWc_9_14,1425_36738,0 5807,1425,dance,what is the woman doing?,iwpnUHFhjWc_9_14,1425_36739,0 5808,1426,woman,who pours milk to a skillet containing cooked and mashed yam as another woman stirs the mixture with a spatula?,iyAoiWeD53k_120_127,1426_36740,0 5809,1426,woman,who is pouring cream into a frying pan?,iyAoiWeD53k_120_127,1426_36741,0 5810,1426,lady,who added milk to the food in the pan?,iyAoiWeD53k_120_127,1426_36742,0 5811,1426,girl,who added the milk to the cooking meat?,iyAoiWeD53k_120_127,1426_36743,0 5812,1426,woman,who is stirring the contents of a cooking utensil?,iyAoiWeD53k_120_127,1426_36744,0 5813,1426,woman,who pours milk into the utensil?,iyAoiWeD53k_120_127,1426_36745,0 5814,1426,woman,who is pouring a milk in a pan?,iyAoiWeD53k_120_127,1426_36746,0 5815,1426,milk,what does a second woman pour into the utensil?,iyAoiWeD53k_120_127,1426_36747,0 5816,1426,utensil,what does a second woman pour milk into?,iyAoiWeD53k_120_127,1426_36748,0 5817,1426,frying,what is a woman pouring cream into pan?,iyAoiWeD53k_120_127,1426_36749,0 5818,1426,cream,what is a woman pouring into a frying pan?,iyAoiWeD53k_120_127,1426_36750,0 5819,1426,milk,what did the girl add to the cooking meat?,iyAoiWeD53k_120_127,1426_36751,0 5820,1426,milk,what are the women pouring into the pan?,iyAoiWeD53k_120_127,1426_36752,0 5821,1426,woman,who pours milk into a skillet?,iyAoiWeD53k_120_127,1426_36753,0 5822,1426,woman,who stirs the mixture with a spatula?,iyAoiWeD53k_120_127,1426_36754,0 5823,1426,milk,what is a woman pouring in a pan?,iyAoiWeD53k_120_127,1426_36755,0 5824,1426,two,how many women prepare some food?,iyAoiWeD53k_120_127,1426_36756,0 5825,1426,milk,what does a woman pour into a skillet?,iyAoiWeD53k_120_127,1426_36757,0 5826,1426,skillet,what does a woman pour milk into?,iyAoiWeD53k_120_127,1426_36758,0 5827,1426,two,how many women are cooking?,iyAoiWeD53k_120_127,1426_36759,0 5828,1426,woman,who add milk to a pan?,iyAoiWeD53k_120_127,1426_36760,0 5829,1426,woman,who are preparing food?,iyAoiWeD53k_120_127,1426_36761,0 5830,1426,milk,what do a woman add to a pan?,iyAoiWeD53k_120_127,1426_36762,0 5831,1426,food,what do two women prepare?,iyAoiWeD53k_120_127,1426_36763,0 5832,1426,food,what are two woman preparing?,iyAoiWeD53k_120_127,1426_36764,0 5833,1426,cook,what is one woman doing?,iyAoiWeD53k_120_127,1426_36765,0 5834,1426,stir,what is one woman doing?,iyAoiWeD53k_120_127,1426_36766,0 5835,1426,pmy,what is a woman doing?,iyAoiWeD53k_120_127,1426_36767,0 5836,1426,cook,what are two women doing?,iyAoiWeD53k_120_127,1426_36768,0 5837,1426,prepare,what are two woman doing?,iyAoiWeD53k_120_127,1426_36769,0 5838,1426,contain,what is a woman pours milk to a skillet doing?,iyAoiWeD53k_120_127,1426_36770,0 5839,1426,pmy,what are the women doing?,iyAoiWeD53k_120_127,1426_36771,0 5840,1427,two,how many bicyclists did many jumps on their bikes?,izU1dDwnuMY_80_92,1427_36772,0 5841,1427,three,how many mountain bikers are doing tricks in the woods over very rugged terrain?,izU1dDwnuMY_80_92,1427_36773,0 5842,1427,three,how many people are riding bikes in a rural environment?,izU1dDwnuMY_80_92,1427_36774,0 5843,1427,forest,what are several bikers riding through doing tricks?,izU1dDwnuMY_80_92,1427_36775,0 5844,1427,mountain,what are doing tricks in the woods over very rugged terrain?,izU1dDwnuMY_80_92,1427_36776,0 5845,1427,terrain,what do a group of mountain bikers ride through?,izU1dDwnuMY_80_92,1427_36777,0 5846,1427,three,how many men are biking in the woods?,izU1dDwnuMY_80_92,1427_36778,0 5847,1427,path,what did the boys do many jumps on their bikes on?,izU1dDwnuMY_80_92,1427_36779,0 5848,1427,bicycle,who are doing stunts?,izU1dDwnuMY_80_92,1427_36780,0 5849,1427,cyclist,who do tricks?,izU1dDwnuMY_80_92,1427_36781,0 5850,1427,bike,what are three men doing?,izU1dDwnuMY_80_92,1427_36782,0 5851,1428,woman,who is stirring some kind of white mixture in a bowl?,j1Z890_Q3so_131_138,1428_36783,0 5852,1428,woman,who is stirring a white substance in a metal bowl?,j1Z890_Q3so_131_138,1428_36784,0 5853,1428,lady,who mixed up a batter in a bowl?,j1Z890_Q3so_131_138,1428_36785,0 5854,1428,woman,who stirs a sauce in a bowl?,j1Z890_Q3so_131_138,1428_36786,0 5855,1428,woman,who is stirring ingredients in a bowl?,j1Z890_Q3so_131_138,1428_36787,0 5856,1428,lady,who stirred the stuff in the bowl?,j1Z890_Q3so_131_138,1428_36788,0 5857,1428,woman,who is mixing ingredients in a bowl?,j1Z890_Q3so_131_138,1428_36789,0 5858,1428,batter,who do the lady mix up in a bowl?,j1Z890_Q3so_131_138,1428_36790,0 5859,1428,woman,who is stirring food in a bowl?,j1Z890_Q3so_131_138,1428_36791,0 5860,1428,girl,who is mixing stuff in a pot?,j1Z890_Q3so_131_138,1428_36792,0 5861,1428,stuff,what did the lady stir in the bowl?,j1Z890_Q3so_131_138,1428_36793,0 5862,1428,bowl,what did the lady stir the stuff in?,j1Z890_Q3so_131_138,1428_36794,0 5863,1428,bowl,what do the lady mix up a batter in?,j1Z890_Q3so_131_138,1428_36795,0 5864,1428,food,what is a woman stirring in a bowl?,j1Z890_Q3so_131_138,1428_36796,0 5865,1428,stuff,what is a girl mixing in a pot?,j1Z890_Q3so_131_138,1428_36797,0 5866,1428,bowl,what is a woman stirring ingredients in?,j1Z890_Q3so_131_138,1428_36798,0 5867,1428,bowl,what is a woman mixing ingredients in?,j1Z890_Q3so_131_138,1428_36799,0 5868,1428,bowl,what is a woman stirring food in?,j1Z890_Q3so_131_138,1428_36800,0 5869,1428,pot,what is a girl mixing stuff in?,j1Z890_Q3so_131_138,1428_36801,0 5870,1428,woman,who is stirring a slurry?,j1Z890_Q3so_131_138,1428_36802,0 5871,1428,woman,who is mixing yogurt?,j1Z890_Q3so_131_138,1428_36803,0 5872,1428,woman,who is stirring some ingredients?,j1Z890_Q3so_131_138,1428_36804,0 5873,1428,woman,who is mixing food?,j1Z890_Q3so_131_138,1428_36805,0 5874,1428,woman,who is mixing something?,j1Z890_Q3so_131_138,1428_36806,0 5875,1428,woman,who stirs something?,j1Z890_Q3so_131_138,1428_36807,0 5876,1428,yogurt,what is the woman mixing?,j1Z890_Q3so_131_138,1428_36808,0 5877,1428,food,what is a woman mixing?,j1Z890_Q3so_131_138,1428_36809,0 5878,1428,stir,what is a woman doing?,j1Z890_Q3so_131_138,1428_36810,0 5879,1428,mix,what is a woman doing?,j1Z890_Q3so_131_138,1428_36811,0 5880,1428,mix,what is a girl doing?,j1Z890_Q3so_131_138,1428_36812,0 5881,1428,mix,what is the woman doing?,j1Z890_Q3so_131_138,1428_36813,0 5882,1429,someone,who is cutting a stack of crisp tortillas into quarters?,j2Dhf-xFUxU_13_20,1429_36814,0 5883,1429,someone,who cuts a stack of tortillas into quarters?,j2Dhf-xFUxU_13_20,1429_36815,0 5884,1429,person,who is slicing flour tortillas with a knife?,j2Dhf-xFUxU_13_20,1429_36816,0 5885,1429,person,who is slicing a stack of tortillas?,j2Dhf-xFUxU_13_20,1429_36817,0 5886,1429,knife,what is a person slicing flour tortillas with?,j2Dhf-xFUxU_13_20,1429_36818,0 5887,1429,crisp,what is someone cutting a stack of into quarters?,j2Dhf-xFUxU_13_20,1429_36819,0 5888,1429,flmy,what is a person slicing with a knife?,j2Dhf-xFUxU_13_20,1429_36820,0 5889,1429,someone,who cut tortillas into quarters?,j2Dhf-xFUxU_13_20,1429_36821,0 5890,1429,person,who is slicing roties into pieces?,j2Dhf-xFUxU_13_20,1429_36822,0 5891,1429,someone,who is cutting a stack of tortillas?,j2Dhf-xFUxU_13_20,1429_36823,0 5892,1429,lady,who cut through the tortillas?,j2Dhf-xFUxU_13_20,1429_36824,0 5893,1429,cook,who is slicing tortillas?,j2Dhf-xFUxU_13_20,1429_36825,0 5894,1429,person,who is slicing some tortillas?,j2Dhf-xFUxU_13_20,1429_36826,0 5895,1429,person,who cuts up some tortillas?,j2Dhf-xFUxU_13_20,1429_36827,0 5896,1429,man,who is cutting vegetables?,j2Dhf-xFUxU_13_20,1429_36828,0 5897,1429,someone,who is slicing something?,j2Dhf-xFUxU_13_20,1429_36829,0 5898,1429,something,what is someone slicing?,j2Dhf-xFUxU_13_20,1429_36830,0 5899,1429,tomato,what do a start to slice?,j2Dhf-xFUxU_13_20,1429_36831,0 5900,1429,cut,what is someone doing?,j2Dhf-xFUxU_13_20,1429_36832,0 5901,1429,slouse,what is a person doing?,j2Dhf-xFUxU_13_20,1429_36833,0 5902,1429,cut,what is a man doing?,j2Dhf-xFUxU_13_20,1429_36834,0 5903,1429,slouse,what is the cook doing?,j2Dhf-xFUxU_13_20,1429_36835,0 5904,1430,tomato,what is someone wearing blue rubber gloves slicing with a large knife?,j2Dhf-xFUxU_20_29,1430_36836,0 5905,1430,person,who is slicing tomatoes with a large knife?,j2Dhf-xFUxU_20_29,1430_36837,0 5906,1430,someone,who is slicing a tomato with a knife?,j2Dhf-xFUxU_20_29,1430_36838,0 5907,1430,person,who is slicing a tomato into pieces?,j2Dhf-xFUxU_20_29,1430_36839,0 5908,1430,knife,what is someone slicing a tomato with?,j2Dhf-xFUxU_20_29,1430_36840,0 5909,1430,tomato,what is someone slicing with a knife?,j2Dhf-xFUxU_20_29,1430_36841,0 5910,1430,tomato,what is a person slicing into pieces?,j2Dhf-xFUxU_20_29,1430_36842,0 5911,1430,man,who sliced through the tomatoe?,j2Dhf-xFUxU_20_29,1430_36843,0 5912,1430,man,who sliced the tomatoe?,j2Dhf-xFUxU_20_29,1430_36844,0 5913,1430,cook,who cuts up some tomatos?,j2Dhf-xFUxU_20_29,1430_36845,0 5914,1430,woman,who is slicing tomato?,j2Dhf-xFUxU_20_29,1430_36846,0 5915,1430,cook,who is slicing tomatoes?,j2Dhf-xFUxU_20_29,1430_36847,0 5916,1430,person,who is slicing a tomato?,j2Dhf-xFUxU_20_29,1430_36848,0 5917,1430,someone,who is cutting a tomato?,j2Dhf-xFUxU_20_29,1430_36849,0 5918,1430,tomatoe,what did the man slice through?,j2Dhf-xFUxU_20_29,1430_36850,0 5919,1430,tomatoe,what did the man slice?,j2Dhf-xFUxU_20_29,1430_36851,0 5920,1430,tomato,what is a chef slicing?,j2Dhf-xFUxU_20_29,1430_36852,0 5921,1430,tomato,what is someone slicing?,j2Dhf-xFUxU_20_29,1430_36853,0 5922,1430,tomato,what is a woman slicing?,j2Dhf-xFUxU_20_29,1430_36854,0 5923,1430,tomato,what does a cook cut up?,j2Dhf-xFUxU_20_29,1430_36855,0 5924,1430,tomato,what is a person slicing?,j2Dhf-xFUxU_20_29,1430_36856,0 5925,1430,tomato,what is someone cutting?,j2Dhf-xFUxU_20_29,1430_36857,0 5926,1430,wear,what is someone doing?,j2Dhf-xFUxU_20_29,1430_36858,0 5927,1430,slouse,what is a person doing?,j2Dhf-xFUxU_20_29,1430_36859,0 5928,1430,slouse,what is a chef doing?,j2Dhf-xFUxU_20_29,1430_36860,0 5929,1430,slouse,what is a woman doing?,j2Dhf-xFUxU_20_29,1430_36861,0 5930,1430,cut,what is someone doing?,j2Dhf-xFUxU_20_29,1430_36862,0 5931,1430,slouse,what is the cook doing?,j2Dhf-xFUxU_20_29,1430_36863,0 5932,1431,person,who is drawing on a piece of paper?,j2sOMdilDWU_87_97,1431_36864,0 5933,1431,man,who is drawing something on a piece of paper?,j2sOMdilDWU_87_97,1431_36865,0 5934,1431,man,who drew on the pad of paper?,j2sOMdilDWU_87_97,1431_36866,0 5935,1431,something,what is a man drawing on a piece of paper?,j2sOMdilDWU_87_97,1431_36867,0 5936,1431,man,who is sketching on a pad?,j2sOMdilDWU_87_97,1431_36868,0 5937,1431,man,who drew on the white paper?,j2sOMdilDWU_87_97,1431_36869,0 5938,1431,person,who is drawing by a pencil?,j2sOMdilDWU_87_97,1431_36870,0 5939,1431,man,who is drawing something?,j2sOMdilDWU_87_97,1431_36871,0 5940,1431,someone,who is drawing a picture?,j2sOMdilDWU_87_97,1431_36872,0 5941,1431,pad,what is a man sketching on?,j2sOMdilDWU_87_97,1431_36873,0 5942,1431,pencil,what is a person drawing by?,j2sOMdilDWU_87_97,1431_36874,0 5943,1431,picture,what is someone drawing?,j2sOMdilDWU_87_97,1431_36875,0 5944,1431,something,what is a man drawing?,j2sOMdilDWU_87_97,1431_36876,0 5945,1431,man,who is drawing?,j2sOMdilDWU_87_97,1431_36877,0 5946,1431,draw,what is a man doing?,j2sOMdilDWU_87_97,1431_36878,0 5947,1431,draw,what is a person doing?,j2sOMdilDWU_87_97,1431_36879,0 5948,1431,draw,what is someone doing?,j2sOMdilDWU_87_97,1431_36880,0 5949,1431,sketch,what is a man doing?,j2sOMdilDWU_87_97,1431_36881,0 5950,1431,draw,what is the man doing?,j2sOMdilDWU_87_97,1431_36882,0 5951,1432,panda,what bears slid down the slide into the snow?,j4dMnAPZu70_11_18,1432_36883,0 5952,1432,panda,what slides down a slide into the snow?,j4dMnAPZu70_11_18,1432_36884,0 5953,1432,snow,what does the panda bear slid down the slide into?,j4dMnAPZu70_11_18,1432_36885,0 5954,1432,slide,what does the panda bear slid down into the snow?,j4dMnAPZu70_11_18,1432_36886,0 5955,1432,snow,what does a panda slide down a slide into?,j4dMnAPZu70_11_18,1432_36887,0 5956,1432,slide,what does a panda slide down into the snow?,j4dMnAPZu70_11_18,1432_36888,0 5957,1432,snow,what does a baby panda slide down into?,j4dMnAPZu70_11_18,1432_36889,0 5958,1432,panda,who is sliding into the snow?,j4dMnAPZu70_11_18,1432_36890,0 5959,1432,snow,what is a panda cub sliding into?,j4dMnAPZu70_11_18,1432_36891,0 5960,1432,panda,what bears play in the snow?,j4dMnAPZu70_11_18,1432_36892,0 5961,1432,slide,what is panda sliding on?,j4dMnAPZu70_11_18,1432_36893,0 5962,1432,panda,what slides down into the snow?,j4dMnAPZu70_11_18,1432_36894,0 5963,1432,panda,what slides down a wooden slide?,j4dMnAPZu70_11_18,1432_36895,0 5964,1432,panda,what is sliding down a slide?,j4dMnAPZu70_11_18,1432_36896,0 5965,1432,slide,what does a panda bear slide down?,j4dMnAPZu70_11_18,1432_36897,0 5966,1432,slide,what is a panda bear sliding down?,j4dMnAPZu70_11_18,1432_36898,0 5967,1432,panda,what is going down a slide?,j4dMnAPZu70_11_18,1432_36899,0 5968,1432,panda,what is sliding on the slide?,j4dMnAPZu70_11_18,1432_36900,0 5969,1432,slide,what is a baby panda going down?,j4dMnAPZu70_11_18,1432_36901,0 5970,1432,panda,what went down the slide?,j4dMnAPZu70_11_18,1432_36902,0 5971,1432,panda,what slides down a slide?,j4dMnAPZu70_11_18,1432_36903,0 5972,1432,pana,what bears slid down the slide?,j4dMnAPZu70_11_18,1432_36904,0 5973,1432,panda,what goes down a slide?,j4dMnAPZu70_11_18,1432_36905,0 5974,1432,slide,what does a baby panda slide down?,j4dMnAPZu70_11_18,1432_36906,0 5975,1432,slide,what did the panda go down?,j4dMnAPZu70_11_18,1432_36907,0 5976,1432,slide,what are panda bears playing on?,j4dMnAPZu70_11_18,1432_36908,0 5977,1432,panda,what are playing on a slide?,j4dMnAPZu70_11_18,1432_36909,0 5978,1432,slide,what does a panda slide down?,j4dMnAPZu70_11_18,1432_36910,0 5979,1432,slide,what does a baby panda go down?,j4dMnAPZu70_11_18,1432_36911,0 5980,1432,slide,what does the pana bear slid down?,j4dMnAPZu70_11_18,1432_36912,0 5981,1432,slide,what is a panda sliding down?,j4dMnAPZu70_11_18,1432_36913,0 5982,1432,slide,what is a panda bear doing?,j4dMnAPZu70_11_18,1432_36914,0 5983,1432,slide,what is a panda cub doing?,j4dMnAPZu70_11_18,1432_36915,0 5984,1432,slide,what is a panda doing?,j4dMnAPZu70_11_18,1432_36916,0 5985,1432,play,what are panda bears doing?,j4dMnAPZu70_11_18,1432_36917,0 5986,1432,slide,what is panda doing?,j4dMnAPZu70_11_18,1432_36918,0 5987,1432,play,what are pandas doing?,j4dMnAPZu70_11_18,1432_36919,0 5988,1433,panda,what slid down the slide into the snow?,j4dMnAPZu70_12_17,1433_36920,0 5989,1433,panda,what went head first down the slide into the snow?,j4dMnAPZu70_12_17,1433_36921,0 5990,1433,snow,what did the panda bear slide down the slide into?,j4dMnAPZu70_12_17,1433_36922,0 5991,1433,slide,what did the panda bear slide down into the snow?,j4dMnAPZu70_12_17,1433_36923,0 5992,1433,snow,what did the panda bear go head first down the slide into?,j4dMnAPZu70_12_17,1433_36924,0 5993,1433,head,what did the panda bear go first down the slide into the snow?,j4dMnAPZu70_12_17,1433_36925,0 5994,1433,baby,who panda rides down a slide?,j4dMnAPZu70_12_17,1433_36926,0 5995,1433,panda,what slides down a wooden slide?,j4dMnAPZu70_12_17,1433_36927,0 5996,1433,panda,what glides down a wooden slide?,j4dMnAPZu70_12_17,1433_36928,0 5997,1433,slide,what did a baby panda rides down?,j4dMnAPZu70_12_17,1433_36929,0 5998,1433,panda,what falls in the snow?,j4dMnAPZu70_12_17,1433_36930,0 5999,1433,slide,what does a baby panda glide down?,j4dMnAPZu70_12_17,1433_36931,0 6000,1433,snow,what does a baby panda fall in?,j4dMnAPZu70_12_17,1433_36932,0 6001,1433,panda,what is going down a slide?,j4dMnAPZu70_12_17,1433_36933,0 6002,1433,slide,what is a baby panda going down?,j4dMnAPZu70_12_17,1433_36934,0 6003,1433,panda,what went down the slide?,j4dMnAPZu70_12_17,1433_36935,0 6004,1433,panda,what slides into the snow?,j4dMnAPZu70_12_17,1433_36936,0 6005,1433,slide,what did the panda go down?,j4dMnAPZu70_12_17,1433_36937,0 6006,1433,panda,what rides a slide?,j4dMnAPZu70_12_17,1433_36938,0 6007,1433,panda,what is sliding in the ice?,j4dMnAPZu70_12_17,1433_36939,0 6008,1433,snow,what does a panda slide into?,j4dMnAPZu70_12_17,1433_36940,0 6009,1433,panda,what slides down a slide?,j4dMnAPZu70_12_17,1433_36941,0 6010,1433,panda,what is sliding down a slide?,j4dMnAPZu70_12_17,1433_36942,0 6011,1433,slide,what a panda rides?,j4dMnAPZu70_12_17,1433_36943,0 6012,1433,slide,what does a panda bear slide down?,j4dMnAPZu70_12_17,1433_36944,0 6013,1433,ice,what is a panda sliding in?,j4dMnAPZu70_12_17,1433_36945,0 6014,1433,slide,what is a panda sliding down?,j4dMnAPZu70_12_17,1433_36946,0 6015,1433,panda,what are sliding?,j4dMnAPZu70_12_17,1433_36947,0 6016,1433,panda,what is playing?,j4dMnAPZu70_12_17,1433_36948,0 6017,1433,slide,what is a panda doing?,j4dMnAPZu70_12_17,1433_36949,0 6018,1433,play,what is a panda doing?,j4dMnAPZu70_12_17,1433_36950,0 6019,1433,slide,what are panda bears doing?,j4dMnAPZu70_12_17,1433_36951,0 6020,1434,boy,who is playing a song on a grand piano?,j7xz1nos-xc_10_20,1434_36952,0 6021,1434,song,what is a little boy playing on a grand piano?,j7xz1nos-xc_10_20,1434_36953,0 6022,1434,boy,who is playing a piano recital?,j7xz1nos-xc_10_20,1434_36954,0 6023,1434,boy,who played the piano on stage?,j7xz1nos-xc_10_20,1434_36955,0 6024,1434,stage,when did the boy play the piano?,j7xz1nos-xc_10_20,1434_36956,0 6025,1434,piano,what did the boy play on stage?,j7xz1nos-xc_10_20,1434_36957,0 6026,1434,recital,what is the little boy playing?,j7xz1nos-xc_10_20,1434_36958,0 6027,1434,boy,who is playing a grand piano?,j7xz1nos-xc_10_20,1434_36959,0 6028,1434,boy,who is playing piano?,j7xz1nos-xc_10_20,1434_36960,0 6029,1434,boy,who plays the piano?,j7xz1nos-xc_10_20,1434_36961,0 6030,1434,boy,who is playing a piano?,j7xz1nos-xc_10_20,1434_36962,0 6031,1434,boy,who is playing the piano?,j7xz1nos-xc_10_20,1434_36963,0 6032,1434,piano,what is a little boy playing?,j7xz1nos-xc_10_20,1434_36964,0 6033,1434,piano,what does a boy play?,j7xz1nos-xc_10_20,1434_36965,0 6034,1434,piano,what is a boy playing?,j7xz1nos-xc_10_20,1434_36966,0 6035,1434,play,what is a boy doing?,j7xz1nos-xc_10_20,1434_36967,0 6036,1434,play,what is a little boy doing?,j7xz1nos-xc_10_20,1434_36968,0 6037,1434,play,what is the little boy doing?,j7xz1nos-xc_10_20,1434_36969,0 6038,1435,turtle,what walks slowly past the camera lens?,jCplbayVbtw_10_20,1435_36970,0 6039,1435,ground,what is a giant tortoise walking slowly on?,jCplbayVbtw_10_20,1435_36971,0 6040,1435,tortoise,what walked along the ground?,jCplbayVbtw_10_20,1435_36972,0 6041,1435,tortoise,what is walking slowly on the ground?,jCplbayVbtw_10_20,1435_36973,0 6042,1435,turtle,what moved along the ground?,jCplbayVbtw_10_20,1435_36974,0 6043,1435,ground,what did the tortoise walk along?,jCplbayVbtw_10_20,1435_36975,0 6044,1435,ground,what did the land turtle move along?,jCplbayVbtw_10_20,1435_36976,0 6045,1435,tortoise,what is walking toward a building?,jCplbayVbtw_10_20,1435_36977,0 6046,1435,ground,what does a large tortoise walk on?,jCplbayVbtw_10_20,1435_36978,0 6047,1435,tortoise,what walks on the ground?,jCplbayVbtw_10_20,1435_36979,0 6048,1435,building,what is a tortoise walking toward?,jCplbayVbtw_10_20,1435_36980,0 6049,1435,enclosure,what is a tortoise walking in?,jCplbayVbtw_10_20,1435_36981,0 6050,1435,turtle,what is walking by?,jCplbayVbtw_10_20,1435_36982,0 6051,1435,tortoise,what walks along slowly?,jCplbayVbtw_10_20,1435_36983,0 6052,1435,tortoise,what turns?,jCplbayVbtw_10_20,1435_36984,0 6053,1435,turtle,what is walking?,jCplbayVbtw_10_20,1435_36985,0 6054,1435,turtle,what is moving?,jCplbayVbtw_10_20,1435_36986,0 6055,1435,tortoise,what walks away?,jCplbayVbtw_10_20,1435_36987,0 6056,1435,walk,what is a turtle doing?,jCplbayVbtw_10_20,1435_36988,0 6057,1435,walk,what is a tortoise doing?,jCplbayVbtw_10_20,1435_36989,0 6058,1435,walk,what is a big turtle doing?,jCplbayVbtw_10_20,1435_36990,0 6059,1435,move,what is a turtle doing?,jCplbayVbtw_10_20,1435_36991,0 6060,1435,walk,what is a giant tortoise doing?,jCplbayVbtw_10_20,1435_36992,0 6061,1435,walk,what is the tortoise doing?,jCplbayVbtw_10_20,1435_36993,0 6062,1436,ground,what is tortoise walking slaw on?,jCplbayVbtw_28_38,1436_36994,0 6063,1436,tortoise,what is walking slaw on the ground?,jCplbayVbtw_28_38,1436_36995,0 6064,1436,slaw,what is tortoise walking on the ground?,jCplbayVbtw_28_38,1436_36996,0 6065,1436,tortoise,what came close to the camera to say hello?,jCplbayVbtw_28_38,1436_36997,0 6066,1436,tortoise,what is walking in a jungle area?,jCplbayVbtw_28_38,1436_36998,0 6067,1436,camera,what did the tortoise come close to to say hello?,jCplbayVbtw_28_38,1436_36999,0 6068,1436,turtle,what moved along the ground?,jCplbayVbtw_28_38,1436_37000,0 6069,1436,ground,what did the turtle move along?,jCplbayVbtw_28_38,1436_37001,0 6070,1436,tortoise,what is walking through the jungle?,jCplbayVbtw_28_38,1436_37002,0 6071,1436,turtle,what is walking outdoors?,jCplbayVbtw_28_38,1436_37003,0 6072,1436,jungle,what is a tortoise walking through?,jCplbayVbtw_28_38,1436_37004,0 6073,1436,tortoise,what walks slowly?,jCplbayVbtw_28_38,1436_37005,0 6074,1436,tortoise,what is walking?,jCplbayVbtw_28_38,1436_37006,0 6075,1436,walk,what is a large tortoise doing?,jCplbayVbtw_28_38,1436_37007,0 6076,1436,walk,what is a turtle doing?,jCplbayVbtw_28_38,1436_37008,0 6077,1436,walk,what is a tortoise doing?,jCplbayVbtw_28_38,1436_37009,0 6078,1436,walk,what is tortoise doing?,jCplbayVbtw_28_38,1436_37010,0 6079,1436,walk,what is a large turtle doing?,jCplbayVbtw_28_38,1436_37011,0 6080,1436,walk,what is the tortoise doing?,jCplbayVbtw_28_38,1436_37012,0 6081,1437,man,who is rolling three pieces of dough into round balls?,jD4o_Lmy6bU_117_137,1437_37013,0 6082,1437,woman,who is rolling bread dough into balls?,jD4o_Lmy6bU_117_137,1437_37014,0 6083,1437,someone,who is rolling dough into balls with their hands?,jD4o_Lmy6bU_117_137,1437_37015,0 6084,1437,four,how many smooth balls does a woman make?,jD4o_Lmy6bU_117_137,1437_37016,0 6085,1437,dough,what is a man rolling three pieces of into round balls?,jD4o_Lmy6bU_117_137,1437_37017,0 6086,1437,round,what is a man rolling three pieces of dough into?,jD4o_Lmy6bU_117_137,1437_37018,0 6087,1437,dough,what is someone rolling into balls with their hands?,jD4o_Lmy6bU_117_137,1437_37019,0 6088,1437,woman,who is making balls of dough?,jD4o_Lmy6bU_117_137,1437_37020,0 6089,1437,person,who rolls some pieces of bread?,jD4o_Lmy6bU_117_137,1437_37021,0 6090,1437,bread,what is a woman rolling into balls?,jD4o_Lmy6bU_117_137,1437_37022,0 6091,1437,woman,who makes four smooth balls?,jD4o_Lmy6bU_117_137,1437_37023,0 6092,1437,woman,who is balling dough?,jD4o_Lmy6bU_117_137,1437_37024,0 6093,1437,bread,what does a person roll some pieces of?,jD4o_Lmy6bU_117_137,1437_37025,0 6094,1437,someone,who is kneeding dough?,jD4o_Lmy6bU_117_137,1437_37026,0 6095,1437,person,who is rolling dough?,jD4o_Lmy6bU_117_137,1437_37027,0 6096,1437,dough,what is the woman making balls of?,jD4o_Lmy6bU_117_137,1437_37028,0 6097,1437,woman,who is making some food?,jD4o_Lmy6bU_117_137,1437_37029,0 6098,1437,smooth,what does a woman make?,jD4o_Lmy6bU_117_137,1437_37030,0 6099,1437,dough,what is a woman balling?,jD4o_Lmy6bU_117_137,1437_37031,0 6100,1437,dough,what is someone kneeding?,jD4o_Lmy6bU_117_137,1437_37032,0 6101,1437,dough,what is a chef rolling?,jD4o_Lmy6bU_117_137,1437_37033,0 6102,1437,dough,what is a person rolling?,jD4o_Lmy6bU_117_137,1437_37034,0 6103,1437,dough,what is the woman making?,jD4o_Lmy6bU_117_137,1437_37035,0 6104,1437,food,what is a woman making?,jD4o_Lmy6bU_117_137,1437_37036,0 6105,1437,roll,what is someone doing?,jD4o_Lmy6bU_117_137,1437_37037,0 6106,1437,roll,what is a person doing?,jD4o_Lmy6bU_117_137,1437_37038,0 6107,1437,roll,what is a man doing?,jD4o_Lmy6bU_117_137,1437_37039,0 6108,1437,roll,what is a chef doing?,jD4o_Lmy6bU_117_137,1437_37040,0 6109,1437,roll,what is a woman doing?,jD4o_Lmy6bU_117_137,1437_37041,0 6110,1437,ball,what is a woman doing?,jD4o_Lmy6bU_117_137,1437_37042,0 6111,1438,tree,what does a dog run and hides behind?,jDFn-1lXJ98_71_80,1438_37043,0 6112,1438,dog,what runs and hides behind a tree?,jDFn-1lXJ98_71_80,1438_37044,0 6113,1438,dog,what barks at something and then runs and hides behind a tree?,jDFn-1lXJ98_71_80,1438_37045,0 6114,1438,dog,what ran behind a tree to hide?,jDFn-1lXJ98_71_80,1438_37046,0 6115,1438,tree,what did the dog run behind to hide?,jDFn-1lXJ98_71_80,1438_37047,0 6116,1438,dog,what peers out from behind a tree?,jDFn-1lXJ98_71_80,1438_37048,0 6117,1438,dog,what ran to the tree and hid?,jDFn-1lXJ98_71_80,1438_37049,0 6118,1438,dog,what runs around a tree?,jDFn-1lXJ98_71_80,1438_37050,0 6119,1438,tree,what does a dog run around?,jDFn-1lXJ98_71_80,1438_37051,0 6120,1438,dog,what is hiding behind a tree?,jDFn-1lXJ98_71_80,1438_37052,0 6121,1438,dog,what is running behind a tree?,jDFn-1lXJ98_71_80,1438_37053,0 6122,1438,dog,what plays by a tree?,jDFn-1lXJ98_71_80,1438_37054,0 6123,1438,dog,what is running on the ground?,jDFn-1lXJ98_71_80,1438_37055,0 6124,1438,tree,what is a dog hiding behind?,jDFn-1lXJ98_71_80,1438_37056,0 6125,1438,tree,what is a dog running behind?,jDFn-1lXJ98_71_80,1438_37057,0 6126,1438,ground,what is a dog running on?,jDFn-1lXJ98_71_80,1438_37058,0 6127,1438,tree,what does a dog play by?,jDFn-1lXJ98_71_80,1438_37059,0 6128,1438,dog,what ran away?,jDFn-1lXJ98_71_80,1438_37060,0 6129,1438,dog,what runs away?,jDFn-1lXJ98_71_80,1438_37061,0 6130,1438,dog,what is barking?,jDFn-1lXJ98_71_80,1438_37062,0 6131,1438,hide,what is a dog doing?,jDFn-1lXJ98_71_80,1438_37063,0 6132,1438,bark,what is a dog doing?,jDFn-1lXJ98_71_80,1438_37064,0 6133,1439,man,who is playing the guitar while seated on the front porch?,jI58q6rcNLc_8_18,1439_37065,0 6134,1439,guitar,what is a man playing while seated on the front porch?,jI58q6rcNLc_8_18,1439_37066,0 6135,1439,man,who played his guitar on the patio?,jI58q6rcNLc_8_18,1439_37067,0 6136,1439,man,who plays the guitar on his porch?,jI58q6rcNLc_8_18,1439_37068,0 6137,1439,man,who is singing while playing the guitar?,jI58q6rcNLc_8_18,1439_37069,0 6138,1439,patio,what did the man play his guitar on?,jI58q6rcNLc_8_18,1439_37070,0 6139,1439,man,who is playing the guitar and singing?,jI58q6rcNLc_8_18,1439_37071,0 6140,1439,guitar,what did the man play on the patio?,jI58q6rcNLc_8_18,1439_37072,0 6141,1439,man,who played his guitar outside?,jI58q6rcNLc_8_18,1439_37073,0 6142,1439,man,who is playing guitar?,jI58q6rcNLc_8_18,1439_37074,0 6143,1439,man,who plays a guitar?,jI58q6rcNLc_8_18,1439_37075,0 6144,1439,man,who plays the guitar?,jI58q6rcNLc_8_18,1439_37076,0 6145,1439,man,who is playing a guitar?,jI58q6rcNLc_8_18,1439_37077,0 6146,1439,man,who is playing the guitar?,jI58q6rcNLc_8_18,1439_37078,0 6147,1439,guitar,what is the man playing?,jI58q6rcNLc_8_18,1439_37079,0 6148,1439,man,who is playing guitar and singing?,jI58q6rcNLc_8_18,1439_37080,0 6149,1439,guitar,what is a man playing?,jI58q6rcNLc_8_18,1439_37081,0 6150,1439,guitar,what did the man play outside?,jI58q6rcNLc_8_18,1439_37082,0 6151,1439,man,who sang?,jI58q6rcNLc_8_18,1439_37083,0 6152,1439,man,who is singing?,jI58q6rcNLc_8_18,1439_37084,0 6153,1439,man,who sings?,jI58q6rcNLc_8_18,1439_37085,0 6154,1439,play,what is a man doing?,jI58q6rcNLc_8_18,1439_37086,0 6155,1440,angel,who selects people on the beach for a trick?,jLgmCY1fEE8_16_26,1440_37087,0 6156,1440,beach,what does criss angel talk to women on?,jLgmCY1fEE8_16_26,1440_37088,0 6157,1440,angel,who talks to women on the beach?,jLgmCY1fEE8_16_26,1440_37089,0 6158,1440,two,how many girls did the man bring to his group on the beach?,jLgmCY1fEE8_16_26,1440_37090,0 6159,1440,man,who is gathering female participants at a beach?,jLgmCY1fEE8_16_26,1440_37091,0 6160,1440,man,who is talking with other women on the beach?,jLgmCY1fEE8_16_26,1440_37092,0 6161,1440,man,who is talking to women on the beach?,jLgmCY1fEE8_16_26,1440_37093,0 6162,1440,man,who persuades two ladies standing by the beach to come with him?,jLgmCY1fEE8_16_26,1440_37094,0 6163,1440,man,who brought two girls to his group on the beach?,jLgmCY1fEE8_16_26,1440_37095,0 6164,1440,beach,what is a man talking with other women on?,jLgmCY1fEE8_16_26,1440_37096,0 6165,1440,man,who introduces 2 women to his group on the beach?,jLgmCY1fEE8_16_26,1440_37097,0 6166,1440,beach,what is a man talking to women on?,jLgmCY1fEE8_16_26,1440_37098,0 6167,1440,beach,what did the man bring two girls to his group on?,jLgmCY1fEE8_16_26,1440_37099,0 6168,1440,beach,what does a man introduce 2 women to his group on?,jLgmCY1fEE8_16_26,1440_37100,0 6169,1440,beach,what do a man and two women walk across?,jLgmCY1fEE8_16_26,1440_37101,0 6170,1440,group,what did the man bring two girls to on the beach?,jLgmCY1fEE8_16_26,1440_37102,0 6171,1440,man,who is talking to women?,jLgmCY1fEE8_16_26,1440_37103,0 6172,1440,group,what does a man introduce 2 women to on the beach?,jLgmCY1fEE8_16_26,1440_37104,0 6173,1440,beach,what are people talking at?,jLgmCY1fEE8_16_26,1440_37105,0 6174,1440,talk,what is a man doing?,jLgmCY1fEE8_16_26,1440_37106,0 6175,1440,talk,what are people doing?,jLgmCY1fEE8_16_26,1440_37107,0 6176,1440,perform,what is criss angel doing?,jLgmCY1fEE8_16_26,1440_37108,0 6177,1440,gather,what is a man doing?,jLgmCY1fEE8_16_26,1440_37109,0 6178,1440,stand,what is a man persuades two ladies doing?,jLgmCY1fEE8_16_26,1440_37110,0 6179,1440,gather,what is chris angel doing?,jLgmCY1fEE8_16_26,1440_37111,0 6180,1440,talk,what is the man doing?,jLgmCY1fEE8_16_26,1440_37112,0 6181,1441,man,who slices a chicken in half dressed as scorpion?,jMO3jGQeqyk_3_6,1441_37113,0 6182,1441,man,who is chopping a chicken open with an axe?,jMO3jGQeqyk_3_6,1441_37114,0 6183,1441,man,who is cutting a chicken in half with an axe?,jMO3jGQeqyk_3_6,1441_37115,0 6184,1441,man,who chopped the chicken with an axe?,jMO3jGQeqyk_3_6,1441_37116,0 6185,1441,man,who chopped a chicken with a ax?,jMO3jGQeqyk_3_6,1441_37117,0 6186,1441,man,who axed the chicken on the table?,jMO3jGQeqyk_3_6,1441_37118,0 6187,1441,man,who cuts a chicken with an axe?,jMO3jGQeqyk_3_6,1441_37119,0 6188,1441,man,who cuts a whole chicken in half?,jMO3jGQeqyk_3_6,1441_37120,0 6189,1441,chicken,what did the man chop with an axe?,jMO3jGQeqyk_3_6,1441_37121,0 6190,1441,chicken,what did a man chop with a ax?,jMO3jGQeqyk_3_6,1441_37122,0 6191,1441,axe,what did the man chop the chicken with?,jMO3jGQeqyk_3_6,1441_37123,0 6192,1441,table,what did the man axe the chicken on?,jMO3jGQeqyk_3_6,1441_37124,0 6193,1441,chicken,what did the man axe on the table?,jMO3jGQeqyk_3_6,1441_37125,0 6194,1441,chicken,what is a man cutting in half with an axe?,jMO3jGQeqyk_3_6,1441_37126,0 6195,1441,half,what is a man cutting a chicken in with an axe?,jMO3jGQeqyk_3_6,1441_37127,0 6196,1441,half,what does a man cut a whole chicken in?,jMO3jGQeqyk_3_6,1441_37128,0 6197,1441,axe,what is a man cutting a chicken in half with?,jMO3jGQeqyk_3_6,1441_37129,0 6198,1441,chicken,what does a man cut with an axe?,jMO3jGQeqyk_3_6,1441_37130,0 6199,1441,man,who chops a turkey in half?,jMO3jGQeqyk_3_6,1441_37131,0 6200,1441,axe,what does a man cut a chicken with?,jMO3jGQeqyk_3_6,1441_37132,0 6201,1441,man,who is cutting meat with axe?,jMO3jGQeqyk_3_6,1441_37133,0 6202,1441,man,who cut the chicken in half?,jMO3jGQeqyk_3_6,1441_37134,0 6203,1441,chicken,what does a man cut in half?,jMO3jGQeqyk_3_6,1441_37135,0 6204,1441,man,who smashes some meat?,jMO3jGQeqyk_3_6,1441_37136,0 6205,1441,half,what did the man cut the chicken in?,jMO3jGQeqyk_3_6,1441_37137,0 6206,1441,man,who slices a whole chicken?,jMO3jGQeqyk_3_6,1441_37138,0 6207,1441,man,who is chopping some meat?,jMO3jGQeqyk_3_6,1441_37139,0 6208,1441,meat,what is a man cutting with axe?,jMO3jGQeqyk_3_6,1441_37140,0 6209,1441,chicken,what did the man cut in half?,jMO3jGQeqyk_3_6,1441_37141,0 6210,1441,axe,what is a man cutting meat with?,jMO3jGQeqyk_3_6,1441_37142,0 6211,1441,meat,what does a masked man smash?,jMO3jGQeqyk_3_6,1441_37143,0 6212,1441,chicken,what does a man slice?,jMO3jGQeqyk_3_6,1441_37144,0 6213,1441,meat,what is a man chopping?,jMO3jGQeqyk_3_6,1441_37145,0 6214,1441,cut,what is a man doing?,jMO3jGQeqyk_3_6,1441_37146,0 6215,1441,chop,what is a man doing?,jMO3jGQeqyk_3_6,1441_37147,0 6216,1442,man,who is pouring some cooking oil to a pan from a bottle?,jPBxl9gFqNY_110_117,1442_37148,0 6217,1442,man,who is pouring oil into a frying pan?,jPBxl9gFqNY_110_117,1442_37149,0 6218,1442,man,who puts some cooking oil in a pan?,jPBxl9gFqNY_110_117,1442_37150,0 6219,1442,man,who is pouring a liquid into a pan?,jPBxl9gFqNY_110_117,1442_37151,0 6220,1442,man,who is adding an oil into the pan?,jPBxl9gFqNY_110_117,1442_37152,0 6221,1442,man,who pours cooking oil in a pan?,jPBxl9gFqNY_110_117,1442_37153,0 6222,1442,man,who is pouring oil into a skillet?,jPBxl9gFqNY_110_117,1442_37154,0 6223,1442,man,who is pouring oil into a pan?,jPBxl9gFqNY_110_117,1442_37155,0 6224,1442,man,who is adding oil into a pan?,jPBxl9gFqNY_110_117,1442_37156,0 6225,1442,man,who is pouring oil on a pan?,jPBxl9gFqNY_110_117,1442_37157,0 6226,1442,oil,what is a man pouring into a frying pan?,jPBxl9gFqNY_110_117,1442_37158,0 6227,1442,frying,what is a man pouring oil into pan?,jPBxl9gFqNY_110_117,1442_37159,0 6228,1442,cooking,what is a man pouring to a pan from a bottle?,jPBxl9gFqNY_110_117,1442_37160,0 6229,1442,oil,what does a man pour cooking in a pan?,jPBxl9gFqNY_110_117,1442_37161,0 6230,1442,oil,what is a man pouring into a skillet?,jPBxl9gFqNY_110_117,1442_37162,0 6231,1442,oil,what is a man adding into a pan?,jPBxl9gFqNY_110_117,1442_37163,0 6232,1442,liquid,what is a man pouring into a pan?,jPBxl9gFqNY_110_117,1442_37164,0 6233,1442,oil,what is a man pouring on a pan?,jPBxl9gFqNY_110_117,1442_37165,0 6234,1442,oil,what is a man adding into the pan?,jPBxl9gFqNY_110_117,1442_37166,0 6235,1442,man,who poured oil into the pan?,jPBxl9gFqNY_110_117,1442_37167,0 6236,1442,chef,who pours oil into a pot?,jPBxl9gFqNY_110_117,1442_37168,0 6237,1442,chef,who poured oil in the pan?,jPBxl9gFqNY_110_117,1442_37169,0 6238,1442,cooking,what does a man put in a pan?,jPBxl9gFqNY_110_117,1442_37170,0 6239,1442,man,who pours oil into a pan?,jPBxl9gFqNY_110_117,1442_37171,0 6240,1442,skillet,what is a man pouring oil into?,jPBxl9gFqNY_110_117,1442_37172,0 6241,1442,oil,what did the chef pour in the pan?,jPBxl9gFqNY_110_117,1442_37173,0 6242,1442,man,who pours liquid into a pan?,jPBxl9gFqNY_110_117,1442_37174,0 6243,1442,oil,what did the man pour into the pan?,jPBxl9gFqNY_110_117,1442_37175,0 6244,1442,oil,what does a chef pour into a pot?,jPBxl9gFqNY_110_117,1442_37176,0 6245,1442,oil,what does a man pour into a pan?,jPBxl9gFqNY_110_117,1442_37177,0 6246,1442,pot,what does a chef pour oil into?,jPBxl9gFqNY_110_117,1442_37178,0 6247,1442,man,who is oiling the pan?,jPBxl9gFqNY_110_117,1442_37179,0 6248,1442,pmy,what is a man doing?,jPBxl9gFqNY_110_117,1442_37180,0 6249,1442,cook,what is a man pours doing?,jPBxl9gFqNY_110_117,1442_37181,0 6250,1442,oil,what is the man doing?,jPBxl9gFqNY_110_117,1442_37182,0 6251,1443,man,who is talking while standing on a soccer field?,jTaLGh_MKCM_5_20,1443_37183,0 6252,1443,camera,what is a man in a white outfit speaking into?,jTaLGh_MKCM_5_20,1443_37184,0 6253,1443,man,who gave a talk on a sport?,jTaLGh_MKCM_5_20,1443_37185,0 6254,1443,soccer,who tells tips about his sport?,jTaLGh_MKCM_5_20,1443_37186,0 6255,1443,talk,what did the man give on a sport?,jTaLGh_MKCM_5_20,1443_37187,0 6256,1443,sport,what did the man give a talk on?,jTaLGh_MKCM_5_20,1443_37188,0 6257,1443,man,who is talking on a soccer field?,jTaLGh_MKCM_5_20,1443_37189,0 6258,1443,player,who is speaking on a sports field?,jTaLGh_MKCM_5_20,1443_37190,0 6259,1443,sport,what does a soccer player tell tips about?,jTaLGh_MKCM_5_20,1443_37191,0 6260,1443,man,who talked about the sport?,jTaLGh_MKCM_5_20,1443_37192,0 6261,1443,man,who is speaking directly to the camera?,jTaLGh_MKCM_5_20,1443_37193,0 6262,1443,man,who talks about soccer?,jTaLGh_MKCM_5_20,1443_37194,0 6263,1443,man,who speaks into a camera?,jTaLGh_MKCM_5_20,1443_37195,0 6264,1443,man,who is speaking on the ground?,jTaLGh_MKCM_5_20,1443_37196,0 6265,1443,man,who is talking to the camera?,jTaLGh_MKCM_5_20,1443_37197,0 6266,1443,camera,what is a man speaking directly to?,jTaLGh_MKCM_5_20,1443_37198,0 6267,1443,sport,what did the man talk about?,jTaLGh_MKCM_5_20,1443_37199,0 6268,1443,camera,what does a man speak into?,jTaLGh_MKCM_5_20,1443_37200,0 6269,1443,soccer,what does a man talk about?,jTaLGh_MKCM_5_20,1443_37201,0 6270,1443,ground,what is a man speaking on?,jTaLGh_MKCM_5_20,1443_37202,0 6271,1443,camera,what is a man talking to?,jTaLGh_MKCM_5_20,1443_37203,0 6272,1443,man,who talks?,jTaLGh_MKCM_5_20,1443_37204,0 6273,1443,man,who is speaking?,jTaLGh_MKCM_5_20,1443_37205,0 6274,1443,man,who is talking?,jTaLGh_MKCM_5_20,1443_37206,0 6275,1443,look,what is a man in a white outfit doing?,jTaLGh_MKCM_5_20,1443_37207,0 6276,1443,speak,what is a man doing?,jTaLGh_MKCM_5_20,1443_37208,0 6277,1443,talk,what is a man doing?,jTaLGh_MKCM_5_20,1443_37209,0 6278,1443,stand,what is a man doing?,jTaLGh_MKCM_5_20,1443_37210,0 6279,1443,speak,what is a player doing?,jTaLGh_MKCM_5_20,1443_37211,0 6280,1443,talk,what is the man doing?,jTaLGh_MKCM_5_20,1443_37212,0 6281,1444,someone,who put a komodo dragon in a box?,jTnrm338_KY_34_42,1444_37213,0 6282,1444,box,what did someone put a komodo dragon in?,jTnrm338_KY_34_42,1444_37214,0 6283,1444,someone,who takes a komodo dragon out of one plastic box?,jTnrm338_KY_34_42,1444_37215,0 6284,1444,person,who puts a komodo dragon into a box?,jTnrm338_KY_34_42,1444_37216,0 6285,1444,someone,who puts a komodo dragon into another one?,jTnrm338_KY_34_42,1444_37217,0 6286,1444,person,who is placing a baby komodo dragon into a container?,jTnrm338_KY_34_42,1444_37218,0 6287,1444,person,who is putting a komodo dragon in a box?,jTnrm338_KY_34_42,1444_37219,0 6288,1444,person,who puts a small lizard into a plastic container?,jTnrm338_KY_34_42,1444_37220,0 6289,1444,person,who places a lizard in a plastic container?,jTnrm338_KY_34_42,1444_37221,0 6290,1444,box,what is a baby komodo dragon being placed in?,jTnrm338_KY_34_42,1444_37222,0 6291,1444,man,who put the lizard into a plastic box?,jTnrm338_KY_34_42,1444_37223,0 6292,1444,man,who transfers a komodo dragon from one container to another?,jTnrm338_KY_34_42,1444_37224,0 6293,1444,komodo,who did someone put in a box?,jTnrm338_KY_34_42,1444_37225,0 6294,1444,one,what does someone put a komodo dragon into?,jTnrm338_KY_34_42,1444_37226,0 6295,1444,box,what does a person put a komodo dragon into?,jTnrm338_KY_34_42,1444_37227,0 6296,1444,container,what is a person placing a baby komodo dragon into?,jTnrm338_KY_34_42,1444_37228,0 6297,1444,box,what did the pet store worker put the lizard into?,jTnrm338_KY_34_42,1444_37229,0 6298,1444,box,what is a person putting a komodo dragon in?,jTnrm338_KY_34_42,1444_37230,0 6299,1444,man,who put the lizard into a box?,jTnrm338_KY_34_42,1444_37231,0 6300,1444,someone,what is putting a lizard into a box?,jTnrm338_KY_34_42,1444_37232,0 6301,1444,lizard,what did the pet store worker put into the box?,jTnrm338_KY_34_42,1444_37233,0 6302,1444,komodo,what does a person put into a box?,jTnrm338_KY_34_42,1444_37234,0 6303,1444,container,what does a man transfer a komodo dragon from to another?,jTnrm338_KY_34_42,1444_37235,0 6304,1444,lizard,what did the man put into a plastic box?,jTnrm338_KY_34_42,1444_37236,0 6305,1444,komodo,what does someone take out of one plastic box?,jTnrm338_KY_34_42,1444_37237,0 6306,1444,komodo,what is a person putting in a box?,jTnrm338_KY_34_42,1444_37238,0 6307,1444,lizard,what does a person put into a plastic container?,jTnrm338_KY_34_42,1444_37239,0 6308,1444,lizard,what did the man put into a box?,jTnrm338_KY_34_42,1444_37240,0 6309,1444,box,what are people moving reptiles from to another?,jTnrm338_KY_34_42,1444_37241,0 6310,1444,person,who picks up a baby komodo dragon?,jTnrm338_KY_34_42,1444_37242,0 6311,1444,komodo,what does someone put into another one?,jTnrm338_KY_34_42,1444_37243,0 6312,1444,person,who is picking a komodo dragon?,jTnrm338_KY_34_42,1444_37244,0 6313,1444,komodo,what does a man transfer from one container to another?,jTnrm338_KY_34_42,1444_37245,0 6314,1444,box,what is someone putting a lizard into?,jTnrm338_KY_34_42,1444_37246,0 6315,1444,lizard,what is someone putting into a box?,jTnrm338_KY_34_42,1444_37247,0 6316,1444,man,who picks up a baby alligator?,jTnrm338_KY_34_42,1444_37248,0 6317,1444,woman,who is picking up a reptile?,jTnrm338_KY_34_42,1444_37249,0 6318,1444,man,who picks up a lizard?,jTnrm338_KY_34_42,1444_37250,0 6319,1444,komodo,what is a person picking?,jTnrm338_KY_34_42,1444_37251,0 6320,1444,lizard,what is placed in a box?,jTnrm338_KY_34_42,1444_37252,0 6321,1444,box,what is a lizard placed in?,jTnrm338_KY_34_42,1444_37253,0 6322,1444,lizard,what does a man pick up?,jTnrm338_KY_34_42,1444_37254,0 6323,1444,reptile,what is a woman picking up?,jTnrm338_KY_34_42,1444_37255,0 6324,1444,pick,what is a woman doing?,jTnrm338_KY_34_42,1444_37256,0 6325,1444,hold,what is someone takes a komodo dragon out of one plastic box and puts it into another one someone else doing?,jTnrm338_KY_34_42,1444_37257,0 6326,1444,pick,what is a person doing?,jTnrm338_KY_34_42,1444_37258,0 6327,1444,place,what is a person doing?,jTnrm338_KY_34_42,1444_37259,0 6328,1444,put,what is someone doing?,jTnrm338_KY_34_42,1444_37260,0 6329,1444,move,what are people doing?,jTnrm338_KY_34_42,1444_37261,0 6330,1447,two,how many men push monstrous tires along the ground?,jbzaMtPYtl8_48_58,1447_37262,0 6331,1447,two,how many men are rolling huge tires sideways down a street while spectators watch?,jbzaMtPYtl8_48_58,1447_37263,0 6332,1447,two,how many men compete in a tire rolling race?,jbzaMtPYtl8_48_58,1447_37264,0 6333,1447,two,how many people flipped tractor tires in a race?,jbzaMtPYtl8_48_58,1447_37265,0 6334,1447,two,how many men are flipping over oversized tires?,jbzaMtPYtl8_48_58,1447_37266,0 6335,1447,race,what did two people flip tractor tires in?,jbzaMtPYtl8_48_58,1447_37267,0 6336,1447,two,how many men are pushing large tires?,jbzaMtPYtl8_48_58,1447_37268,0 6337,1447,race,what are men flipping large tires in?,jbzaMtPYtl8_48_58,1447_37269,0 6338,1447,tractor,what did two people flip in a race?,jbzaMtPYtl8_48_58,1447_37270,0 6339,1447,two,how many men are moving tires?,jbzaMtPYtl8_48_58,1447_37271,0 6340,1447,pavement,what do two men each flip a huge tire down?,jbzaMtPYtl8_48_58,1447_37272,0 6341,1447,race,what are men tumbling tires in?,jbzaMtPYtl8_48_58,1447_37273,0 6342,1447,tyre,what are men rolling?,jbzaMtPYtl8_48_58,1447_37274,0 6343,1447,roll,what are two men doing?,jbzaMtPYtl8_48_58,1447_37275,0 6344,1447,push,what are two men doing?,jbzaMtPYtl8_48_58,1447_37276,0 6345,1447,flip,what are men doing?,jbzaMtPYtl8_48_58,1447_37277,0 6346,1447,move,what are two men doing?,jbzaMtPYtl8_48_58,1447_37278,0 6347,1447,tumble,what are men doing?,jbzaMtPYtl8_48_58,1447_37279,0 6348,1447,move,what is in a race held each of the two men doing?,jbzaMtPYtl8_48_58,1447_37280,0 6349,1447,move,what are the men doing?,jbzaMtPYtl8_48_58,1447_37281,0 6350,1447,roll,what is two men compete in a tire doing?,jbzaMtPYtl8_48_58,1447_37282,0 6351,1448,dog,what is walking on a grassy patch of land?,jcIrD7rNvTM_10_21,1448_37283,0 6352,1448,yard,what is a dog with three legs walking in?,jcIrD7rNvTM_10_21,1448_37284,0 6353,1448,yard,what did the three legged dog walk in?,jcIrD7rNvTM_10_21,1448_37285,0 6354,1448,gras,what does a 3 legged dog walk through?,jcIrD7rNvTM_10_21,1448_37286,0 6355,1448,gras,what is a three legged dog walking through?,jcIrD7rNvTM_10_21,1448_37287,0 6356,1448,yard,what is a three legged dog walking in?,jcIrD7rNvTM_10_21,1448_37288,0 6357,1448,dog,what is walking in the grass?,jcIrD7rNvTM_10_21,1448_37289,0 6358,1448,gras,what is a dog walking in?,jcIrD7rNvTM_10_21,1448_37290,0 6359,1448,walk,what is a black dog doing?,jcIrD7rNvTM_10_21,1448_37291,0 6360,1448,walk,what is a dog doing?,jcIrD7rNvTM_10_21,1448_37292,0 6361,1448,walk,what is a dog with three legs doing?,jcIrD7rNvTM_10_21,1448_37293,0 6362,1448,walk,what is a three legged dog doing?,jcIrD7rNvTM_10_21,1448_37294,0 6363,1448,walk,what is a three-legged dog doing?,jcIrD7rNvTM_10_21,1448_37295,0 6364,1448,walk,what is the three-legged dog doing?,jcIrD7rNvTM_10_21,1448_37296,0 6365,1449,boy,who is sitting next to someone dressed in a dog costume?,jcRCn7MeSbo_71_82,1449_37297,0 6366,1449,boy,who is talking to a person dressed up as a dog?,jcRCn7MeSbo_71_82,1449_37298,0 6367,1449,boy,who is speaking to a person in a dog costume?,jcRCn7MeSbo_71_82,1449_37299,0 6368,1449,dog,what talked to the boy in the movie?,jcRCn7MeSbo_71_82,1449_37300,0 6369,1449,child,who is a man in an animal suit talking to?,jcRCn7MeSbo_71_82,1449_37301,0 6370,1449,dog,what talked to the boy in a play?,jcRCn7MeSbo_71_82,1449_37302,0 6371,1449,boy,who did the dog talk to in a play?,jcRCn7MeSbo_71_82,1449_37303,0 6372,1449,play,what did the dog talk to the boy in?,jcRCn7MeSbo_71_82,1449_37304,0 6373,1449,boy,who is talking to a giant dog?,jcRCn7MeSbo_71_82,1449_37305,0 6374,1449,boy,who talks to a giant dog?,jcRCn7MeSbo_71_82,1449_37306,0 6375,1449,boy,who is talking to some creature?,jcRCn7MeSbo_71_82,1449_37307,0 6376,1449,kid,who is talking to dog?,jcRCn7MeSbo_71_82,1449_37308,0 6377,1449,girl,who talks to a dog?,jcRCn7MeSbo_71_82,1449_37309,0 6378,1449,boy,who is talking to a dog?,jcRCn7MeSbo_71_82,1449_37310,0 6379,1449,boy,who is talking to the dog?,jcRCn7MeSbo_71_82,1449_37311,0 6380,1449,monkey,what is talking with a boy?,jcRCn7MeSbo_71_82,1449_37312,0 6381,1449,boy,who is a monkey talking with?,jcRCn7MeSbo_71_82,1449_37313,0 6382,1449,creature,what is a boy talking to?,jcRCn7MeSbo_71_82,1449_37314,0 6383,1449,dog,what does a girl talk to?,jcRCn7MeSbo_71_82,1449_37315,0 6384,1449,dog,what is the boy talking to?,jcRCn7MeSbo_71_82,1449_37316,0 6385,1449,sit,what is a young boy doing?,jcRCn7MeSbo_71_82,1449_37317,0 6386,1449,talk,what is a monkey doing?,jcRCn7MeSbo_71_82,1449_37318,0 6387,1449,talk,what is a man in an animal suit doing?,jcRCn7MeSbo_71_82,1449_37319,0 6388,1449,talk,what is a boy doing?,jcRCn7MeSbo_71_82,1449_37320,0 6389,1449,speak,what is a boy doing?,jcRCn7MeSbo_71_82,1449_37321,0 6390,1449,talk,what are a boy and person in a costume doing?,jcRCn7MeSbo_71_82,1449_37322,0 6391,1449,talk,what is a kid doing?,jcRCn7MeSbo_71_82,1449_37323,0 6392,1449,talk,what is the boy doing?,jcRCn7MeSbo_71_82,1449_37324,0 6393,1450,man,who is doing the moonwalk while pulling a grocery cart?,jdAbpLooDgM_10_15,1450_37325,0 6394,1450,man,who moonwalks with a grocery cart in a supermarket?,jdAbpLooDgM_10_15,1450_37326,0 6395,1450,man,who is sliding across the floor with a shopping cart?,jdAbpLooDgM_10_15,1450_37327,0 6396,1450,man,who walked backwards in a store with a cart?,jdAbpLooDgM_10_15,1450_37328,0 6397,1450,man,who is doing a moon walk while pulling his trolley in a departmental store?,jdAbpLooDgM_10_15,1450_37329,0 6398,1450,man,who walked backwards down the aisle with his shopping cart?,jdAbpLooDgM_10_15,1450_37330,0 6399,1450,supermarket,what does a man moonwalks with a grocery cart in?,jdAbpLooDgM_10_15,1450_37331,0 6400,1450,floor,what is a man sliding across with a shopping cart?,jdAbpLooDgM_10_15,1450_37332,0 6401,1450,man,who is moonwalking with a shopping cart?,jdAbpLooDgM_10_15,1450_37333,0 6402,1450,man,who is walking backwards with a shopping cart?,jdAbpLooDgM_10_15,1450_37334,0 6403,1450,store,what did a man walk backwards in with a cart?,jdAbpLooDgM_10_15,1450_37335,0 6404,1450,moon,what is a man doing walk while pulling his trolley in a departmental store?,jdAbpLooDgM_10_15,1450_37336,0 6405,1450,cart,what did a man walk backwards in a store with?,jdAbpLooDgM_10_15,1450_37337,0 6406,1450,aisle,what did the man walk backwards down with his shopping cart?,jdAbpLooDgM_10_15,1450_37338,0 6407,1450,moonwalk,what does shopper do?,jdAbpLooDgM_10_15,1450_37339,0 6408,1450,shopper,who does the moonwalk?,jdAbpLooDgM_10_15,1450_37340,0 6409,1450,supermarket,what are some peoples purchasing in?,jdAbpLooDgM_10_15,1450_37341,0 6410,1450,shop,what is a man does the moonwalk with a kart while doing?,jdAbpLooDgM_10_15,1450_37342,0 6411,1450,slide,what is a man doing?,jdAbpLooDgM_10_15,1450_37343,0 6412,1450,shop,what is a man moon walks with his doing?,jdAbpLooDgM_10_15,1450_37344,0 6413,1450,move,what are people doing?,jdAbpLooDgM_10_15,1450_37345,0 6414,1450,purchase,what are some peoples doing?,jdAbpLooDgM_10_15,1450_37346,0 6415,1450,walk,what is the man doing?,jdAbpLooDgM_10_15,1450_37347,0 ================================================ FILE: data/open_ended_qa/TGIF_FrameQA.csv ================================================ ,video_id,answer,question,video_name,question_id,question_type 1,FRAMEQA1159,cookie,what is being placed in the white ice cream cone?,tumblr_no73q2fm0I1uuf348o1_250,27138,0 2,FRAMEQA9405,machine,where is the guy walking very funny?,tumblr_nedt1ck9181ttuja3o1_250,2853,3 3,FRAMEQA26835,two,how many people are sitting side by side in a bowling alley?,tumblr_ndkfsb1dgm1tbnwqmo1_400,61016,1 4,FRAMEQA3809,two,how many men are arguing next to the christmas tree?,tumblr_n9pn9xDm651ty4rvzo1_400,81281,1 5,FRAMEQA25615,glasses,what are some guys looking good and one of them is wearing?,tumblr_nkn62ijxc71sk927ro1_400,91125,0 6,FRAMEQA4460,black,what is the color of the shirt?,tumblr_nh7j4ud4Mb1u5xywco1_500,87751,2 7,FRAMEQA47608,tail,what is the white dog waving?,tumblr_nk5ddaL9zk1s28vxko1_400,43219,0 8,FRAMEQA31686,two,how many women are walking past the fiFRAMEQAlace?,tumblr_n9tuqn05ec1rd0civo1_400,59139,1 9,FRAMEQA10382,red,what is the color of the hair?,tumblr_nejfp1mhbL1thn4g2o1_100,1648,2 10,FRAMEQA51360,black,what is the color of the vests?,tumblr_nafbe4YHCY1tyuwrso1_500,101490,2 11,FRAMEQA31257,flowers,what is the young man delivering to a young lady?,tumblr_ni3n9mlV2T1rktfsqo1_250,38469,0 12,FRAMEQA25821,two,how many lovers is looking to each other and love is in the air?,tumblr_nmrqhx5WTR1u3bvteo1_r4_540,101942,1 13,FRAMEQA51329,two,how many men are sitting in the moving car?,tumblr_nevu1x7R4F1tzeksuo1_400,67414,1 14,FRAMEQA20508,laptop,what is the man talking on a headset and using?,tumblr_naibwo4B1j1royxsco1_500,60961,0 15,FRAMEQA49454,three,how many men are break dancing in synchronization?,tumblr_ncbfiuxAWU1se2adpo1_500,75141,1 16,FRAMEQA49494,white,what is the color of the shirt?,tumblr_npcm4bqF3X1shyw7fo1_400,46134,2 17,FRAMEQA14092,green,what is the color of the dress?,tumblr_nhdy8uJlce1rpfnrjo1_400,41932,2 18,FRAMEQA1500,green,what is the color of the spotlight?,tumblr_ncdihsdk1c1tzzks2o1_250,53195,2 19,FRAMEQA51544,black,what is the color of the jacket?,tumblr_nguhm8zAEm1qgyl50o1_400,72990,2 20,FRAMEQA35769,boat,where does the man start to move slowly across the lake?,tumblr_nr45p0uKof1uaugwlo1_250,31377,3 21,FRAMEQA43239,two,how many dogs are quietly lounging on the couch?,tumblr_neqoabbUAH1s9wp82o1_400,30264,1 22,FRAMEQA33270,white,what is the color of the puppy?,tumblr_nhve02JnVG1tjhld9o1_250,27694,2 23,FRAMEQA40083,black,what is the color of the hat?,tumblr_n8vfp7rK9g1riof1xo1_500,19920,2 24,FRAMEQA5173,blue,what is the color of the hat?,tumblr_n9cswzW8tA1t5ojzdo1_250,43794,2 25,FRAMEQA8273,two,how many teenagers is wearing white outfits are singing?,tumblr_nda84dI4On1t0ojyvo1_500,90101,1 26,FRAMEQA32248,room,where is the woman wearing a blue jacket is standing?,tumblr_nauka09f5w1qf6wjoo1_400,36153,3 27,FRAMEQA42992,brown,what is the color of the horse?,tumblr_nowuhcCWo71s3fuxko1_400,71803,2 28,FRAMEQA43406,black,what is the color of the hair?,tumblr_nqmfo0L2eY1thn667o1_540,100633,2 29,FRAMEQA10418,cat,what is putting its paw in another cat 's face to stop it from trying to groom the first cat?,tumblr_noaswjesmm1th7g9io1_400,95722,0 30,FRAMEQA42248,picture,what is the dolphin painting with their mouth?,tumblr_nb2mzb98AK1tkpzw0o1_400,21285,0 31,FRAMEQA2064,brown,what is the color of the door?,tumblr_nde98bVDhd1r21xqpo1_250,86043,2 32,FRAMEQA28069,three,how many men are singing into the telephone?,tumblr_nfegnfJ1AZ1qayaafo1_400,30012,1 33,FRAMEQA25214,cat,what pushes the persons hand down after they try to scratch the cat?,tumblr_nku8674mFY1qcrdgyo1_250,3555,0 34,FRAMEQA2312,drink,what is the red haired woman holding and nodding her head?,tumblr_nl08fcxHX31upy801o1_500,55119,0 35,FRAMEQA46227,red,what is the color of the hair?,tumblr_nk75mmC9z31uoz0rqo1_250,27246,2 36,FRAMEQA33265,cat,what ran across the window sill?,tumblr_n9uwiaBHQw1qhd5lfo1_400,25666,0 37,FRAMEQA10956,white,what is the color of the shirt?,tumblr_n95n6uCkRS1thi35uo1_250,36469,2 38,FRAMEQA48193,white,what is the color of the shirt?,tumblr_nc798b5n4Y1tju84uo1_500,91289,2 39,FRAMEQA31367,cigarette,what is the man singing in a blue car and smoking?,tumblr_nkv63mKCzc1ttvffso1_400,58080,0 40,FRAMEQA2196,clock,what does the man wake up and breaking?,tumblr_ndi8fl5A8e1sctiaro1_400,81093,0 41,FRAMEQA25497,car,what is spinning its back tires and causing a lot of dust?,tumblr_nhpp9aIKCk1tuoc50o1_400,39490,0 42,FRAMEQA36490,cat,what is waking up from the sleep on a bed?,tumblr_n8wivmGs4P1sc3yqlo1_250,41061,0 43,FRAMEQA52681,monkey,what is having its face groomed?,tumblr_ng1j3b3hfg1s3att3o1_400,55934,0 44,FRAMEQA43364,black,what is the color of the eye?,tumblr_ng8ae10GVz1tfxe4ko1_500,44837,2 45,FRAMEQA32219,guitar,what is the member of the band playing on stage?,tumblr_n9auyzrZNt1simukfo1_400,66175,0 46,FRAMEQA33895,white,what is the color of the shirt?,tumblr_ngquc21UJB1u5c02bo1_500,87303,2 47,FRAMEQA6567,cat,what eats some food out of a plastic red bowl?,tumblr_nbjdlk6CGv1tlw7exo1_250,68979,0 48,FRAMEQA17771,white,what is the color of the shirt?,tumblr_nh29z0v9vk1sico5po1_250,39671,2 49,FRAMEQA41308,room,where is the female moving while she talks and smile?,tumblr_nqt8a3aEgd1tlq8yzo1_400,61299,3 50,FRAMEQA2745,purple,what is the color of the convertible?,tumblr_n9n3w8BNg91tfj40ro1_400,84959,2 51,FRAMEQA16248,two,how many boys are waving their hands?,tumblr_n8rb0lxnFI1tqmsauo1_400,11491,1 52,FRAMEQA8217,three,how many men are standing close together and bump into each other?,tumblr_nav2o4Ew2D1sh75jso1_250,3977,1 53,FRAMEQA27308,red,what is the color of the top?,tumblr_n9k8xzjz181tiur4yo1_250,12182,2 54,FRAMEQA23820,two,how many people is this image of dancing together in robes?,tumblr_nq7l0nMeLY1sp0r62o1_250,80776,1 55,FRAMEQA23031,blue,what is the color of the shirt?,tumblr_nbyamsxkvF1sren05o1_400,64252,2 56,FRAMEQA50399,kitchen,where is the couple hugging?,tumblr_npneccAv8H1rq4lc6o1_500,89620,3 57,FRAMEQA17567,mirror,where is the person looking?,tumblr_ngc8tpcmwF1tiz0smo1_400,92490,3 58,FRAMEQA38338,white,what is the color of the wig?,tumblr_njxkmhiBLm1t5w6wco1_400,28857,2 59,FRAMEQA34159,meal,what are the trio of nuns sitting solemnly at the table and eating?,tumblr_nkp552aW7o1sksdxao3_400,92179,0 60,FRAMEQA24076,two,how many people are sitting next to each other and dancing?,tumblr_naa11tbBvx1tebyg2o1_400,62578,1 61,FRAMEQA34365,four,how many people are lined up against the white and blue wall?,tumblr_ncsq0iDaXw1tk7w8vo1_500,89376,1 62,FRAMEQA24158,white,what is the color of the dog?,tumblr_ng2hgxbjKw1t1ijxmo1_1280,56263,2 63,FRAMEQA14493,two,how many soccer players run towards each other and the ball?,tumblr_ni0re9ST8r1u7q0qeo1_400,65873,1 64,FRAMEQA9640,tank,where are three frogs climbing around?,tumblr_nksdyhXtpu1rhl4f0o1_250,22832,3 65,FRAMEQA5919,cat,what jumps around in the living room in front of the couch?,tumblr_ner3v7FbbI1rgchc8o1_500,72762,0 66,FRAMEQA13148,room,where is the woman standing and dancing?,tumblr_n9brbfS5661qgtp5eo1_400,43006,3 67,FRAMEQA24285,black,what is the color of the suit?,tumblr_nqyw6gulsY1s7oft8o1_250,13026,2 68,FRAMEQA3316,white,what is the color of the background?,tumblr_nkvmjqHles1tl5f3zo1_250,27620,2 69,FRAMEQA31626,guitar,what is the man playing and gesturing?,tumblr_nqw4at9cu21sxecxyo1_500,23889,0 70,FRAMEQA45901,two,how many guys is about to get in the fight?,tumblr_ndcfe5F1iy1s2t7gvo1_500,88875,1 71,FRAMEQA38710,brown,what is the color of the jacket?,tumblr_nagwpaywf01tvbb2ko1_250,450,2 72,FRAMEQA8484,classroom,where does the young man in a white shirt bow?,tumblr_ne3qgzrxld1s0r79po1_r1_500,92812,3 73,FRAMEQA12951,cat,what is standing on something with closed eyes?,tumblr_n8wjakFkdh1slj978o1_250,28681,0 74,FRAMEQA22646,car,what is driving dangerously on the highway?,tumblr_nesksmxUsA1rdfljoo1_500,76053,0 75,FRAMEQA8754,dog,what spins around while the doll is on his back?,tumblr_nkus9cARZm1r2m293o1_400,26709,0 76,FRAMEQA51230,white,what is the color of the t-shirt?,tumblr_ngjjy8pmWW1u5slc8o1_250,3675,2 77,FRAMEQA15215,purple,what is the color of the shirt?,tumblr_npjqoubgDV1u29slho1_400,50388,2 78,FRAMEQA41745,white,what is the color of the car?,tumblr_n88tfbzgHU1rhy09eo1_500,92569,2 79,FRAMEQA49969,white,what is the color of the shirt?,tumblr_nareflaVHP1rw4ex3o1_400,22635,2 80,FRAMEQA41839,black,what is the color of the dress?,tumblr_nhkjmkZVlx1u387zvo1_400,42290,2 81,FRAMEQA37331,pipe,what is the woman smoking in front of a candle?,tumblr_noumotOiwV1spw05ko1_250,36480,0 82,FRAMEQA17181,black,what is the color of the cat?,tumblr_ndrak3nYu61r95fszo1_250,11840,2 83,FRAMEQA25603,leaf,what is the dog eating?,tumblr_ndvmat0M581rlil49o1_500,52041,0 84,FRAMEQA50565,dog,what is sitting in the blue chair?,tumblr_nc51lxZqcX1tkpzw0o1_250,6269,0 85,FRAMEQA35407,shirt,what is the man wearing a long shirt and talking and touches?,tumblr_nb0u7kYz9i1tclavqo1_500,61843,0 86,FRAMEQA42571,white,what is the color of the woman?,tumblr_nbag3b30JL1ry0b5go1_400,83553,2 87,FRAMEQA35064,black,what is the color of the singlet?,tumblr_ncn4ck340P1sj24puo1_250,5283,2 88,FRAMEQA4726,champagne,what is the man spraying at the ceiling?,tumblr_nqt0rfOUFY1ux2ikeo1_400,74132,0 89,FRAMEQA48373,two,how many man are dancing in bed together?,tumblr_naa11tbBvx1tebyg2o1_400,62578,1 90,FRAMEQA32119,red,what is the color of the hair?,tumblr_na9tlcASNS1terurso1_400,29740,2 91,FRAMEQA36572,string,what is the woman tying around leaves?,tumblr_njvmt3qmAh1u370zso1_540,42521,0 92,FRAMEQA41907,sweater,what is the girl trying and wearing?,tumblr_nd1bjfBEw91redefto1_400,33132,0 93,FRAMEQA15058,two,how many little mascot characters are dancing on the soccer field?,tumblr_neua43pKJC1t0kntqo1_250,53580,1 94,FRAMEQA33699,studio,where do the pair perform dance moves?,tumblr_nadd8dv4Ho1s34j90o1_400,57968,3 95,FRAMEQA14196,black,what is the color of the lingerie?,tumblr_nezlsfnXwi1tsbbfxo1_500,54331,2 96,FRAMEQA29741,black,what is the color of the cat?,tumblr_no75u4RtUx1tyncywo1_400,65382,2 97,FRAMEQA38738,tortoise,what is sitting on the remote vacuum cleaner?,tumblr_nisxffQvO61u5ba4ao1_250,27103,0 98,FRAMEQA47528,cigarette,what is the woman lighting?,tumblr_nog086mhQn1rngtxpo1_250,49718,0 99,FRAMEQA40246,white,what is the color of the man?,tumblr_npz6msJUl81urnbuuo1_250,38417,2 100,FRAMEQA14665,three,how many men are eating and laughing with each other?,tumblr_nrl3x1VLyr1rdwooro1_400,83729,1 101,FRAMEQA36171,dog,"what are three people sitting down , and one of them is holding?",tumblr_nfe8ohMKD81tkoeqqo1_500,88138,0 102,FRAMEQA23434,blue,what is the color of the uniform?,tumblr_nhtqzuiWod1sj4atbo1_400,65203,2 103,FRAMEQA5776,brown,what is the color of the horse?,tumblr_n8pqysKgXz1sy7yfqo1_400,64680,2 104,FRAMEQA9922,cat,what jumps from the table to a counter?,tumblr_ninfq9WzsZ1s6zpepo1_250,78597,0 105,FRAMEQA41201,two,how many wrestlers is this image of fighting each other?,tumblr_nhq8z49bTR1sk0i2mo1_250,60385,1 106,FRAMEQA50824,rings,what is the man blowing while sitting in a vehicle?,tumblr_nokjiwjEvX1uvad6ao1_250,457,0 107,FRAMEQA28299,cat,what stands up and rubs her face against a dog 's face?,tumblr_ndxrsbp13F1rfyy6oo1_250,9914,0 108,FRAMEQA25659,red,what is the color of the hair?,tumblr_nf3iiwUoZR1s22c6no1_400,28434,2 109,FRAMEQA36935,vehicles,what go over bumps and ramps quickly?,tumblr_nq06ihvo7U1up68h4o1_400,28893,0 110,FRAMEQA12280,lollipop,what is the woman kissing and smiling?,tumblr_npffpme9eT1u2ok96o1_400,67063,0 111,FRAMEQA17960,two,how many woman fighting is man with white shirt breaking up?,tumblr_nokpkycdga1r2buvvo1_250,3855,1 112,FRAMEQA11275,black,what is the color of the sweatshirt?,tumblr_nk5pn1wSC41r36r8mo1_500,34236,2 113,FRAMEQA26207,car,what spins out of control on a race track but then the regains control?,tumblr_no62rm4dDC1tx8mn0o1_400,76917,0 114,FRAMEQA44766,candy,what did two children on a bus eat?,tumblr_nbtlrnLJyT1t1szv2o1_500,70108,0 115,FRAMEQA46451,bottle,what is the person with blue clothes grabbing?,tumblr_ngwbl1n70M1u5ha1qo1_400,63012,0 116,FRAMEQA36371,two,how many boys are standing and looking around?,tumblr_ngg9uzqMJo1tugymuo1_500,7396,1 117,FRAMEQA2337,two,how many women are sitting inside the room inside?,tumblr_nfwsbaUqdU1tkqyuyo1_400,29743,1 118,FRAMEQA16752,two,how many race cars is this on a track while one of them spins out and loses control?,tumblr_nbcrueGce81tx8mn0o1_400,82134,1 119,FRAMEQA5914,locker,"where does the girl speak , then a man is shown sitting?",tumblr_nc1q320Ed51s8jkazo1_250,30573,3 120,FRAMEQA5021,parakeets,what appear to kiss each other?,tumblr_n9nxz6cyx11sjuzlno1_400,36176,0 121,FRAMEQA35189,three,how many men on a couch are laughing out loud?,tumblr_n95dgjajvW1syjz5uo1_250,13891,1 122,FRAMEQA25155,black,what is the color of the shirt?,tumblr_ncwrt0iC5S1tyxnhro1_400,89409,2 123,FRAMEQA28238,two,how many men are standing on the stage doing an interview?,tumblr_nhlu54rL2M1tragfyo1_1280,55861,1 124,FRAMEQA48804,hole,what is the girl holding?,tumblr_ne0qsn9cgE1qlqxrqo1_500,99120,0 125,FRAMEQA3600,tie,what is the man wearing?,tumblr_nc7trs4lYs1t7pzp2o1_500,69255,0 126,FRAMEQA6493,white,what is the color of the shirts?,tumblr_nbgd8ebTTy1tl5qj2o1_500,3457,2 127,FRAMEQA5708,room,where does the band sing and plays instruments?,tumblr_ncw7meF4Pb1txydmgo1_500,57976,3 128,FRAMEQA12829,two,how many men fight each other using flaming swords in the dark?,tumblr_nq5wjxq0M31s71nvbo1_400,45240,1 129,FRAMEQA48407,dog,what is making the paw trick?,tumblr_ncw1h7V8au1rmdsrwo1_400,63248,0 130,FRAMEQA30171,two,how many rats are crawling around on someones shoulder?,tumblr_nguvutkldj1rs0i14o1_400,46819,1 131,FRAMEQA13179,black,what is the color of the shirt?,tumblr_nax0vtnfdQ1rkn23mo1_250,53611,2 132,FRAMEQA15145,car,what is driving on the road outside of a city?,tumblr_nd99tr1UmA1ruqk6ro1_250,4433,0 133,FRAMEQA47704,boat,what do two men ride with a bat symbol on it?,tumblr_nilyoyDugt1qdzxbio1_500,55069,0 134,FRAMEQA6407,ball,what is the soccer player wearing a uniform gets into the net?,tumblr_napzlmoxdY1tz9jaqo1_400,18449,0 135,FRAMEQA20199,blue,what is the color of the dress?,tumblr_nr7000dUK11uvpgu5o1_250,3178,2 136,FRAMEQA5064,cash,what is the man throwing at another man who is dancing at a strip club?,tumblr_nal5nm1az91r4w92no1_500,58154,0 137,FRAMEQA12824,chicken,what pecks the horse 's face then drinks its water?,tumblr_ngns3jXgPf1s6zpepo1_250,23960,0 138,FRAMEQA48730,two,how many young men are dancing and singing on the state?,tumblr_nk0b64SeZR1stm7ieo1_400,43176,1 139,FRAMEQA26195,cat,what is hiding in the drawer and pawing at a pen poked at it?,tumblr_n9vr1xjmof1tdmffyo1_250,27920,0 140,FRAMEQA17350,white,what is the color of the uniform?,tumblr_n8rs4laokt1th2t13o1_400,57403,2 141,FRAMEQA22983,two,how many men are talking to one another in front of a crowd?,tumblr_nft60biv5u1sookfro1_250,35680,1 142,FRAMEQA41826,street,where is the blue beautiful car running?,tumblr_nfxlgzOQSN1t0x7yto1_500,61137,3 143,FRAMEQA42579,shirt,what is the white man with short hair wearing?,tumblr_nfkx8qNpFC1snecwlo1_250,9410,0 144,FRAMEQA40981,two,how many women punch each other in a ring?,tumblr_nb7eheT0Oz1r272ido1_250,76772,1 145,FRAMEQA9025,street,where is the young woman dancing?,tumblr_np97noimRj1swewioo1_250,43615,3 146,FRAMEQA42197,bird,what does not want to smoke even though he can?,tumblr_nirv73J7pz1tixppbo1_400,24461,0 147,FRAMEQA47836,two,how many men dance under lights in club?,tumblr_nqmr2ybLBP1rpsrrho1_400,25420,1 148,FRAMEQA25644,guitar,what is the lady wearing the hat is singing and playing?,tumblr_n8v8orVsL81rqn31vo1_250,73123,0 149,FRAMEQA27168,six,how many people stand on stage with lights shining down on them?,tumblr_nhaaonJd0D1u6jgouo1_250,50395,1 150,FRAMEQA37671,dog,what is chasing after the large blue ball?,tumblr_nhhujqoyKU1tjhld9o1_400,54091,0 151,FRAMEQA2600,cigarette,what is the person wearing a sweater is smoking?,tumblr_nkbu9cuFSt1tfe5fyo1_250,19499,0 152,FRAMEQA37573,four,how many people are stood dancing and shaking their bodies?,tumblr_nr24ia3Q8z1uzm9a7o1_500,71205,1 153,FRAMEQA42176,two,how many men are sitting on the couch arm wrestling with each other?,tumblr_ngn0ttCSb51svos5ho1_400,36865,1 154,FRAMEQA533,brown,what is the color of the hat?,tumblr_na7ng2zh3f1thntp8o1_250,110,2 155,FRAMEQA15082,green,what is the color of the lizard?,tumblr_nhn4qolyxQ1tgouwlo1_400,52435,2 156,FRAMEQA36334,pool,where is someone floating?,tumblr_ni3i7ovyZz1r1g4n4o1_500,71609,3 157,FRAMEQA48437,window,what does the man open to a man wearing a mask?,tumblr_nr4re3vFCz1tfgtmso1_400,35435,0 158,FRAMEQA15128,round,what is the dog jumping up the stairs and then he turns?,tumblr_nbuhc5cUJn1rotc20o1_400,19595,0 159,FRAMEQA12817,blue,what is the color of the shirt?,tumblr_na99bk3j1D1rmvb15o1_500,91697,2 160,FRAMEQA32284,guitar,what is the band member playing and showing his palm?,tumblr_nmx7rfsPJE1uqpyr9o1_540,56365,0 161,FRAMEQA46418,two,how many men are performing the dance move?,tumblr_nf2c6jqkXE1tzlevco1_250,1608,1 162,FRAMEQA36444,instrument,what did the man and woman both play?,tumblr_ndrhdij2sp1tmnzbjo1_400,82149,0 163,FRAMEQA19137,cookie,what is the girl eating while wearing red glasses?,tumblr_nc41azSmAA1ru030mo1_400,31088,0 164,FRAMEQA39416,black,what is the color of the t-shirts?,tumblr_nba4zsrstP1thacl7o1_500,19023,2 165,FRAMEQA37709,two,how many friends are having the great time?,tumblr_nq7kptWdUh1txx0lfo1_500,62133,1 166,FRAMEQA25095,brown,what is the color of the shoes?,tumblr_nnx611gAZA1teszvzo1_400,40182,2 167,FRAMEQA39641,blue,what is the color of the cushion?,tumblr_n9qwatWy9m1slj978o1_400,73992,2 168,FRAMEQA25891,puppy,what is falling from the small couch?,tumblr_nhf9v5oufm1tjhld9o1_500,76043,0 169,FRAMEQA8028,doorway,what do three smiling men slowly enter?,tumblr_ngek8rCbFV1s82z36o1_500,73050,0 170,FRAMEQA19962,dog,what is climbing onto the woman and licking her face?,tumblr_nqamqac9al1r2ro17o1_400,31560,0 171,FRAMEQA261,juice,what is being poured into the glass?,tumblr_nowzu5MZZg1s3att3o1_250,14921,0 172,FRAMEQA2504,flamethrower,what is someone throwing at a wall?,tumblr_nhtmk3pXaX1u7f69to1_400,57393,0 173,FRAMEQA26696,gray,what is the color of the sweatshirt?,tumblr_nlsgkqiHFM1rmkrcqo1_500,48135,2 174,FRAMEQA35646,three,how many men danced and sang around the fire?,tumblr_nbouq51nPr1tkti7do1_500,44349,1 175,FRAMEQA48019,black,what is the color of the car?,tumblr_npaw4iQKzd1u6iefyo1_500,76767,2 176,FRAMEQA46986,dress,what is the woman walking and wearing?,tumblr_niqlvp6RBw1te3vrpo1_540,49392,0 177,FRAMEQA6192,dog,what is driving the car very funny in outdoor?,tumblr_ng67v0PpjK1tkhxdko1_400,17979,0 178,FRAMEQA32811,guitar,what is the bald man playing and staring out in the crowd?,tumblr_naiqhik3AY1rlg01uo1_500,49205,0 179,FRAMEQA325,drink,what is the man with ginger hair necking?,tumblr_njxgk8u29N1qelu08o1_500,100696,0 180,FRAMEQA30325,two,how many guys is this walking?,tumblr_nax247zhwY1sdbrm9o1_400,65700,1 181,FRAMEQA33635,cat,what tries to catch the red light while it disappears?,tumblr_nh01ubOfAY1slj978o1_400,38170,0 182,FRAMEQA24234,hat,what is the young man wearing and smiling while people walk by him?,tumblr_ndfs0976vh1tkzhg9o1_400,50462,0 183,FRAMEQA1357,two,how many people sat down on the sofa talking?,tumblr_naq3p4yhj41tgmmsko1_500,41849,1 184,FRAMEQA39963,red,what is the color of the top?,tumblr_nc086eK11B1tafc89o1_500,89374,2 185,FRAMEQA52002,white,what is the color of the shirt?,tumblr_nmm4f3RVqM1tf7f4ho1_400,58110,2 186,FRAMEQA3622,cat,what is scratching against the wind from a hair dryer?,tumblr_n9siyhJeK01sz068fo1_400,80179,0 187,FRAMEQA2767,kitten,what is someone stroking?,tumblr_njw2gle3ek1u8uroco1_400,68448,0 188,FRAMEQA44349,gun,what does the man point at the passenger of a taxi?,tumblr_nrh5qvi58Y1u0uk6mo1_400,92721,0 189,FRAMEQA8598,two,how many men are running on the track?,tumblr_np7428zJXS1sjggsso1_400,79249,1 190,FRAMEQA36586,cars,what are driving around in the garage?,tumblr_nd11cdPFVQ1s1cmjio1_400,96948,0 191,FRAMEQA46394,car,what is driving off course onto the dirt before returning to the pavement?,tumblr_ncwjr5bvbM1tx8mn0o1_400,78341,0 192,FRAMEQA38766,white,what is the color of the hat?,tumblr_nal8pu1VSt1tbje7yo1_400,66435,2 193,FRAMEQA5316,black,what is the color of the guy?,tumblr_niyn60KECL1u86no2o1_500,78745,2 194,FRAMEQA50771,room,where are the man and are woman kissing?,tumblr_nq5j7usnwj1uszqo4o1_500,80170,3 195,FRAMEQA30728,two,how many boys are standing and looking out the window?,tumblr_nqb79tYlU81utdor9o1_400,83569,1 196,FRAMEQA15136,cars,what are racing around the track very quickly?,tumblr_n9ghigU0nd1tx8mn0o1_400,55496,0 197,FRAMEQA19762,two,how many men is wearing dummy heads frighten a woman in a blue top?,tumblr_n90vul8OL31sm7km1o1_400,3794,1 198,FRAMEQA6669,dog,what stares intently at the plate of cupcakes?,tumblr_njqkzeml8y1unykvpo1_250,19006,0 199,FRAMEQA42229,red,what is the color of the team?,tumblr_ndgppcIlCu1qhrx75o1_400,84989,2 200,FRAMEQA16557,bird,what kissed the green bird?,tumblr_n9nxz6cyx11sjuzlno1_400,36176,0 201,FRAMEQA45555,car,what drove off the track and back on?,tumblr_n907c1PcRr1sncaa3o1_400,78070,0 202,FRAMEQA45481,two,how many men sit together as one man play the guitar?,tumblr_na5j2z7Ejt1tfvkwqo1_400,68462,1 203,FRAMEQA10161,red,what is the color of the tie?,tumblr_nch77vbJHs1rshgw6o1_250,8302,2 204,FRAMEQA45073,paws,what does the girl try and he puts up and wiggles out of her arm?,tumblr_nq622eUZ2O1twfmf3o1_400,7692,0 205,FRAMEQA20072,black,what is the color of the top?,tumblr_nbd6mxxR7M1t5ojzdo1_250,17389,2 206,FRAMEQA17478,elephant,what is walking and playing with tires on its legs?,tumblr_nf1kbzvsw71rwzy1eo1_400,71853,0 207,FRAMEQA27212,white,what is the color of the playing?,tumblr_nqnrnnW6Ii1tz83q2o1_500,41073,2 208,FRAMEQA11852,cat,what is the black and white cat upsetting?,tumblr_nf8v50LnUt1tk2ngvo1_500,78064,0 209,FRAMEQA5989,two,how many beautiful ladies are taking out the man 's jacket?,tumblr_ng6i6uP4kE1s5svyno1_500,93850,1 210,FRAMEQA35732,white,what is the color of the girl?,tumblr_nfdhm4hgxd1qmjp5wo1_500,90886,2 211,FRAMEQA47758,guitar,what is the man in a leather outfit holding?,tumblr_ncpa5oSCiY1ql0sfgo1_500,97128,0 212,FRAMEQA48303,kitten,what is biting the ear of a rabbit?,tumblr_ngapyhHe7Y1sohuqmo1_250,36485,0 213,FRAMEQA40790,two,how many men are making funny faces?,tumblr_nh2x1kO12G1std30eo1_500,48576,1 214,FRAMEQA44981,beam,what is the cat chasing around the floor?,tumblr_ner3v7FbbI1rgchc8o1_500,72762,0 215,FRAMEQA25104,cat,what pushes the skateboard down and gets on it and does some tricks?,tumblr_njukcfEiK11r1n65mo1_400,40925,0 216,FRAMEQA22115,black,what is the color of the top?,tumblr_ng62brRXgC1tpgrv9o1_250,7855,2 217,FRAMEQA3409,three,how many people are dancing?,tumblr_neqbvmEl2p1u36mi8o1_250,22289,1 218,FRAMEQA24908,blue,what is the color of the shirt?,tumblr_n99kv46QTX1s6r7s7o1_400,67448,2 219,FRAMEQA6848,cat,what does the squirrel jump on a cat and then slaps at another cat?,tumblr_ncko1cgtVl1rwkjivo1_400,45420,0 220,FRAMEQA24610,three,how many guys in striped shirts and red hats are singing and dancing?,tumblr_nl1flazV921remizro1_400,21549,1 221,FRAMEQA31656,two,how many guys are sitting on the couch and giving a thumbs up?,tumblr_n8x0vtknbl1rhmx5uo1_400,30378,1 222,FRAMEQA45454,black,what is the color of the dress?,tumblr_nc8jyqbEeM1sx2tx8o1_250,13713,2 223,FRAMEQA6984,dog,what is entering the police car?,tumblr_njxkdtyDbl1sht3fmo1_250,36792,0 224,FRAMEQA38332,chair,where is the woman wearing all white sits down?,tumblr_nbag3b30JL1ry0b5go1_400,83553,3 225,FRAMEQA18996,cars,what are racing down the track and the blue car loses its back end?,tumblr_nen2gpqUlI1tx8mn0o1_400,55482,0 226,FRAMEQA11035,hat,what is the man wearing and talking angrily?,tumblr_nk0p8vgCSc1tudbs0o1_400,28921,0 227,FRAMEQA16020,cars,what are running side by side on a street?,tumblr_nazajtnJAC1tn4t8jo1_400,62167,0 228,FRAMEQA37068,two,how many girls are making funny faces and smiling?,tumblr_n8q8iiFAka1toq16fo1_400,28578,1 229,FRAMEQA4566,two,how many men pretend to kiss and then turn away and laugh?,tumblr_n8q9ejQLX81ratic8o1_500,87243,1 230,FRAMEQA10495,white,what is the color of the shirt?,tumblr_nc1slkO3ZM1s8jkazo1_250,25524,2 231,FRAMEQA33379,glasses,what is the young singer in a band wearing and lifting his leg and swiveling his hips?,tumblr_nk0b64SeZR1stm7ieo1_400,43176,0 232,FRAMEQA8398,cat,what is biting and pulling at paper then it lies back?,tumblr_nnilizLpNo1rv38tao1_400,36771,0 233,FRAMEQA21267,chimp,what did the boy pet then he hugged it?,tumblr_ndwzkxNPfq1u1810lo1_500,75707,0 234,FRAMEQA29495,two,how many guys at a purple table are holding their hands up?,tumblr_ndkfsb1dgm1tbnwqmo1_400,61016,1 235,FRAMEQA48840,one,how many men hits another on his back?,tumblr_ncfa7hPZ2h1sl2cdao1_500,94639,1 236,FRAMEQA28027,butt,what is the man wiggling at a woman that is looking at him?,tumblr_nl1ywgPSKc1u3d5jno1_250,6694,0 237,FRAMEQA3319,two,how many men guy guys sing and dance danced in a hallway?,tumblr_nqwv6n9JKg1uvejg4o1_540,96739,1 238,FRAMEQA52415,two,how many men are laughing during an interview on stage?,tumblr_nirebdaFNu1rzaapno1_500,87200,1 239,FRAMEQA36868,red,what is the color of the scarf?,tumblr_na9tlcASNS1terurso1_400,29740,2 240,FRAMEQA31114,black,what is the color of the woman?,tumblr_n9l730D6FC1rjn6tpo1_250,22567,2 241,FRAMEQA16545,mascara,what is the young woman with dark hair applying?,tumblr_ndq73y7mT21u1hp4lo1_500,97252,0 242,FRAMEQA19301,two,how many young men are singing and dancing on stage in front of a huge crowd?,tumblr_nh9ue79ebR1u63zbwo1_500,50957,1 243,FRAMEQA20355,two,how many hot naked young ladies in bed are kissing each other?,tumblr_mkhcuwQp2k1rk3evro1_500,36906,1 244,FRAMEQA9235,car,what is driving past another car on a track?,tumblr_nfhs2lXSXl1rp12fxo1_1280,96025,0 245,FRAMEQA23433,three,how many young girls are hanging out together?,tumblr_nki97gCmDh1s3uqzwo1_250,4472,1 246,FRAMEQA46409,dogs,what is the woman gathering up?,tumblr_nbet5v1L6J1tkpzw0o1_250,18230,0 247,FRAMEQA45151,puppet,what plays with the drum stick while someone plays the guitar?,tumblr_nf0jfqbC7D1tkpta6o1_400,90705,0 248,FRAMEQA22186,gun,what is the man with curly hair smoking a cigar and pointing?,tumblr_nf3uzbrHlA1rmgp3fo1_500,13816,0 249,FRAMEQA5976,car,what collides with another in a turn on a wet race track?,tumblr_npgmilwWnF1tx8mn0o1_400,91034,0 250,FRAMEQA13615,hamster,what eats something while a cat sniffs it?,tumblr_ngzl9clEBn1slj978o1_400,28180,0 251,FRAMEQA7799,bedroom,where is the girl acting?,tumblr_n8z1jp62zj1s5oe7xo1_250,32764,3 252,FRAMEQA35062,one,how many woman is putting the child 's hand on her cheek?,tumblr_nq3qabmXcs1uye1fso1_250,15123,1 253,FRAMEQA21663,brown,what is the color of the hair?,tumblr_nc9qgxXlr31tmaii4o1_250,9515,2 254,FRAMEQA29483,crack,"what does the man make to another man , who pretends to slap him in return?",tumblr_n9hsdsS7si1su1uw7o1_400,59047,0 255,FRAMEQA15634,brown,what is the color of the hood?,tumblr_nrd08t8g0T1u395x4o1_400,16904,2 256,FRAMEQA41752,machine,what is the hand cranking back and forth?,tumblr_nfci1eCnqd1u33ci0o1_400,52870,0 257,FRAMEQA2045,drops,what is the man boy hit and dropped a box of tennis rackets?,tumblr_n9p1fyGr2W1tixixoo1_400,60268,0 258,FRAMEQA48404,guitar,what is the woman playing?,tumblr_nh89o8FeCP1u6fg3no1_500,61501,0 259,FRAMEQA39313,hat,"what is the man hugging another man , then he removes and throws it to the ground?",tumblr_neh40xDIkk1tj2kheo1_250,5098,0 260,FRAMEQA14562,three,how many black bean bags does the woman juggle?,tumblr_nh5z1ajZzd1rwipr5o1_r1_250,27736,1 261,FRAMEQA39256,bicycles,"what are the group of people riding down the side of a road , when two of the cyclist crash?",tumblr_na32wo3UE01r6x1a5o1_500,46207,0 262,FRAMEQA7637,green,what is the color of the cap?,tumblr_n9tbpmQLuT1tg4u20o1_250,10744,2 263,FRAMEQA43314,white,what is the color of the dresses?,tumblr_nohf3irkja1uuudqko1_400,59026,2 264,FRAMEQA33153,two,how many men are dancing and screaming at the show?,tumblr_ncntfulJrF1tbgcpko1_250,35740,1 265,FRAMEQA24649,white,what is the color of the girl?,tumblr_nl19j0KSvE1tcoa45o1_400,94306,2 266,FRAMEQA27847,guitar,what is the boy standing and playing?,tumblr_np1mqhrIMa1uwhbn9o1_250,12160,0 267,FRAMEQA43380,one,how many man squirts mustard onto another man 's beard?,tumblr_ngatv43vBu1u5on9do1_250,85687,1 268,FRAMEQA50178,two,how many old men is this dancing in front of a booth?,tumblr_npc1b21BeA1r57o71o1_500,41809,1 269,FRAMEQA11033,kitten,what was the guy holding on his shoulder?,tumblr_nakdgd05uD1tbcisxo1_400,28962,0 270,FRAMEQA26738,black,what is the color of the cat?,tumblr_nimjqmgul31u94evjo1_500,70177,2 271,FRAMEQA30002,blue,what is the color of the jumper?,tumblr_ncppfpwv0q1t7an45o1_250,26540,2 272,FRAMEQA6196,dog,what is trying to get inside through the doggie door?,tumblr_nd5o04joG21se9pwmo1_400,49244,0 273,FRAMEQA13022,two,how many men dump water onto a third man?,tumblr_navgsv2Gn21tih674o1_400,58038,1 274,FRAMEQA24430,cannabis,what is the person smoking from the special tool?,tumblr_nflx90nClv1stf9ono1_400,71008,0 275,FRAMEQA49727,white,what is the color of the clothes?,tumblr_nbag3b30JL1ry0b5go1_400,83553,2 276,FRAMEQA2872,cigarette,what is the man pulling his glasses down and smoking?,tumblr_naj41cmlq11s2l982o1_500,41846,0 277,FRAMEQA15832,trap,where is the fish being caught?,tumblr_nay1v5Pvpi1qg0cppo1_250,19061,3 278,FRAMEQA46940,blue,what is the color of the shirt?,tumblr_nkv5iz7KVL1unu56do1_400,35675,2 279,FRAMEQA33676,two,how many fingers is the guy throwing of his up into the air?,tumblr_ni152nnuwQ1u433who1_400,64676,1 280,FRAMEQA15864,helmet,what is driving the vehicle?,tumblr_ng952sa6bT1skeuupo1_400,65206,0 281,FRAMEQA32524,red,what is the color of the shirt?,tumblr_nhuiyeJfZ11u7yxjso1_250,77779,2 282,FRAMEQA28703,blue,what is the color of the dress?,tumblr_nkqzylaAQ61s3tcgro1_500,58083,2 283,FRAMEQA17233,black,what is the color of the hat?,tumblr_nfhtetuoeG1r3pgego1_500,87194,2 284,FRAMEQA5630,ball,what is the soccer player kicking around various players?,tumblr_nbn4vdgXnz1tz9jaqo1_400,82365,0 285,FRAMEQA39358,motorcycle,what did the person ride in the building?,tumblr_nasnqxg8kb1tt6vx5o1_250,43969,0 286,FRAMEQA31433,guitar,what is the man playing while singing?,tumblr_nhx7xo7jQW1u6hunpo1_400,31891,0 287,FRAMEQA11641,two,how many men are running along the track together?,tumblr_np7428zJXS1sjggsso1_400,79249,1 288,FRAMEQA13903,green,what is the color of the puppet?,tumblr_nazgabqMvX1tzjlkno1_250,46331,2 289,FRAMEQA30979,purses,what lips and folds arms while the man next to him talks?,tumblr_nadznytQ3X1tj5zkfo1_500,71352,0 290,FRAMEQA49361,blue,what is the color of the shirt?,tumblr_nbc1ktOcB51s1dp59o1_250,51885,2 291,FRAMEQA25449,four,how many girls are riding in the car while clapping and dancing in their seats?,tumblr_n8x7dbUQBA1t5z27go1_400,58848,1 292,FRAMEQA18684,bank,what is the sled hitting and two people fall out then climb back in?,tumblr_nl33fuCCKK1slj978o1_400,84963,0 293,FRAMEQA13676,black,what is the color of the hat?,tumblr_nfruzax6C81tx8l3to1_400,71405,2 294,FRAMEQA32483,car,what is driving through the sunset?,tumblr_ni06cdG8Wk1u639x2o1_500,71675,0 295,FRAMEQA46869,orange,what is walking out of the ocean?,tumblr_nb8nl1PVQh1tom9vyo1_400,61802,0 296,FRAMEQA44114,two,how many men are scared then fall off chairs?,tumblr_ndp39weJj11u1b7jeo1_500,58650,1 297,FRAMEQA25962,two,how many people are boating down the river?,tumblr_ncbz4f0VNT1shuruwo1_400,35186,1 298,FRAMEQA19329,guitars,what are two men laughing and playing?,tumblr_navtszVYAv1tys35ko1_250,15994,0 299,FRAMEQA33284,white,what is the color of the board?,tumblr_nhzsnt9b4s1u3kqrfo1_400,35156,2 300,FRAMEQA9092,white,what is the color of the man?,tumblr_nkzexecqek1r8ael3o1_400,37463,2 301,FRAMEQA19621,white,what is the color of the shirt?,tumblr_nf4zgehl7i1tlle4do1_400,36278,2 302,FRAMEQA13583,guitar,what is the man wearing black is playing?,tumblr_nnvqr0CYdX1qek1oqo1_540,93641,0 303,FRAMEQA30697,two,how many adorable rats are boxing each other?,tumblr_nd0odbifZp1tihaueo1_250,18445,1 304,FRAMEQA14606,crib,where is the baby holding a doll is being placed?,tumblr_nb4x2d8oQS1seza31o1_250,23487,3 305,FRAMEQA4520,white,what is the color of the armor?,tumblr_n9kuvyUJT91sual3ro1_250,3721,2 306,FRAMEQA39769,hedgehog,what moves along the floor rolling a toilet roll?,tumblr_npa3j5LElU1slwrsuo1_400,14492,0 307,FRAMEQA26975,two,how many girls are sitting down smiling and laughing at each other?,tumblr_nqsvfl5Pzp1uw1tf9o1_250,24221,1 308,FRAMEQA14648,red,what is the color of the shirt?,tumblr_noh7i0tW1N1qcolx2o1_500,55155,2 309,FRAMEQA47744,blue,what is the color of the jacket?,tumblr_nedvy9AhxX1qeire1o1_400,66547,2 310,FRAMEQA47562,monkey,what is trying to express something in somewhere near nature?,tumblr_me0m87oukL1rcuthno1_250,27184,0 311,FRAMEQA4845,two,how many girls are standing in front of a set of doors and one whispers to the other?,tumblr_n9p1stcULz1t5ojzdo1_250,44121,1 312,FRAMEQA24577,hallway,where are the man and a woman kissing each other?,tumblr_nc87o9h8LN1tm5e2no1_500,59553,3 313,FRAMEQA47123,car,where is the man sitting and talking?,tumblr_n9y8wqI6Xn1qlzevso1_500,98801,3 314,FRAMEQA38399,two,how many people are dancing in the dance studio?,tumblr_nadd8dv4Ho1s34j90o1_400,57968,1 315,FRAMEQA5824,steps,what is the dog taking forward and then back?,tumblr_nb1mrl3e4N1slj978o1_250,71461,0 316,FRAMEQA12884,two,how many men are ripping their shirts off in anger?,tumblr_nelh3nATly1tte9eno1_400,40152,1 317,FRAMEQA1038,car,what loses control and spins around in the middle of the racetrack?,tumblr_nlzuoyTPM61tx8mn0o1_400,78642,0 318,FRAMEQA11654,horse,what is running through the field?,tumblr_n9ebacNkn51rwfov3o1_250,1543,0 319,FRAMEQA23148,gray,what is the color of the shirt?,tumblr_n9l0zq5J771qbr5s3o1_500,67816,2 320,FRAMEQA16067,two,how many boys is this with one taking off his shirt?,tumblr_n98t7cdeNZ1skdlfto1_400,60668,1 321,FRAMEQA14866,bath,where is the man eating food whilst sitting whilst another one eats on the toilet?,tumblr_ndmu0qjhiV1rj84s9o1_500,89037,3 322,FRAMEQA45168,car,what is the cute white dog driving?,tumblr_ngtfbt9KZI1s71nvbo1_400,15351,0 323,FRAMEQA34676,black,what is the color of the dancing?,tumblr_nk1kqqpnFb1u6xg70o1_250,36370,2 324,FRAMEQA21333,black,what is the color of the guy?,tumblr_ndb1a34KjI1slpywlo1_250,47009,2 325,FRAMEQA14197,two,how many people dance in unison below the staircase?,tumblr_ndcpd67JSq1tic5ulo1_500,92841,1 326,FRAMEQA50553,cat,what did the cat put its paw on a hand and the hand petted?,tumblr_ngio6fsQ8p1ssgyoro1_400,2019,0 327,FRAMEQA10789,drawer,what are two cats opening?,tumblr_nephvvr7qF1tkura4o1_250,18471,0 328,FRAMEQA9099,horse,what is jumping on an obstacle?,tumblr_nd8luntFAK1s8qlxdo1_400,97784,0 329,FRAMEQA36991,cats,what are messing with each other?,tumblr_nra8jaNWXd1ti2yzto1_1280,17735,0 330,FRAMEQA5691,duck,what is coming towards someone and then he runs away in a car?,tumblr_nr1zh6yArU1usf060o1_400,80337,0 331,FRAMEQA43771,bird,what is the bear watching?,tumblr_npblti8bU91use8l1o1_400,82811,0 332,FRAMEQA42513,two,how many plushy soft toys is the bearded man wearing glasses is hugging?,tumblr_nqvj8l4kcT1uq7zwjo1_400,63226,1 333,FRAMEQA38570,glasses,"what is the student , wearing , reads a piece of paper on a desk and then raises his head?",tumblr_nbkmokZNrp1sue8vio1_400,15813,0 334,FRAMEQA10591,dress,what is the lady with the white hat with the feather in it wearing?,tumblr_nessuogOUs1spkf8wo1_400,68682,0 335,FRAMEQA16259,phone,what is the man holding?,tumblr_n9ljcuFQoT1tptpheo1_250,49878,0 336,FRAMEQA15962,red,what is the color of the outfit?,tumblr_n932r0pFvS1tuatvvo1_400,53129,2 337,FRAMEQA6776,gray,what is the color of the jacket?,tumblr_nek7op2Sfd1u31i4ao1_400,86944,2 338,FRAMEQA1401,white,what is the color of the door?,tumblr_nkyam1X1MM1tmnntwo1_250,37541,2 339,FRAMEQA29506,pillow,what is the person sitting and rubbing?,tumblr_nfdddhdOuN1te5p35o1_250,289,0 340,FRAMEQA51202,red,what is the color of the bib?,tumblr_noyux3yYKW1qa0byyo1_400,7032,2 341,FRAMEQA50838,cup,what does the young boy stir with a drink in it?,tumblr_np3arfHXlH1t5dv9do1_400,28652,0 342,FRAMEQA30404,chair,"where is the man sitting , he has food in front of him?",tumblr_nfkcabylR81sbxr09o1_500,48976,3 343,FRAMEQA26359,surfboard,what is the girl paddling out into the water at sunset?,tumblr_nem206krPl1tu9x1wo1_500,71159,0 344,FRAMEQA31639,cat,what is trying to cuddle with the baby?,tumblr_no18ffxNDq1tpg4boo1_400,34561,0 345,FRAMEQA21978,two,"how many wrestlers in a ring are bumping their fists together , before one of them climbs from the ring?",tumblr_ndywttSMPx1tsspsco6_500,44970,1 346,FRAMEQA41125,four,how many people hold hands together to reveal a masked man?,tumblr_nab35ghDR51tjaoico1_500,83410,1 347,FRAMEQA52200,one,how many male singer is hugging with the female singer in a concert?,tumblr_nf3exsMV8S1qfpmkno1_500,68513,1 348,FRAMEQA26803,four,"how many dudes are singing , dancing , and clapping?",tumblr_nbrv0ryvIB1tledfyo1_250,21947,1 349,FRAMEQA6133,pool,what is the woman playing?,tumblr_n9khtlxFWW1t7hjz2o1_400,20950,0 350,FRAMEQA31410,four,how many people are running and three fall in the street?,tumblr_n9arvu8wVk1th7gfko1_250,37916,1 351,FRAMEQA17131,red,what is the color of the lights?,tumblr_ncclh5CTka1th986vo1_400,3350,2 352,FRAMEQA35042,motorcycles,what are racing next to each other on a track?,tumblr_n9bdapPO481sc9qyco1_400,36760,0 353,FRAMEQA51110,two,how many men are moving their heads around each other?,tumblr_n8sskvyvQ71tco194o1_500,88611,1 354,FRAMEQA23477,car,where are three men with masks on their heads riding?,tumblr_ndyl4209U21sabd3xo1_250,23694,3 355,FRAMEQA27299,three,how many people are eating spaghetti noodles out of bowls with chopsticks and their fingers?,tumblr_nbg6ia8wuI1typ81lo1_400,61990,1 356,FRAMEQA5503,pictures,what is the girl taking on her phone?,tumblr_ncfjmx8GxD1rvdsbqo1_250,804,0 357,FRAMEQA6746,black,what is the color of the hair?,tumblr_nopvobSus81qjdy9xo1_400,59626,2 358,FRAMEQA31430,two,how many cards are driving side by side in a parking garage?,tumblr_nd11cdPFVQ1s1cmjio1_400,96948,1 359,FRAMEQA30438,white,what is the color of the t-shirt?,tumblr_nq5shcyvQ71rqlwo0o1_400,33798,2 360,FRAMEQA11594,two,how many men are pointing at each other and smile?,tumblr_nf3s3p7xA21qgs69do1_500,75808,1 361,FRAMEQA24166,black,what is the color of the top?,tumblr_nb4xgr1uC71rblf33o1_500,89609,2 362,FRAMEQA24341,two,how many men are on stage together hugging?,tumblr_n9uv1zvqSX1rpt0jio1_400,77523,1 363,FRAMEQA46759,one,how many man is reading the newspaper?,tumblr_napfl20WZw1r9n9k9o1_400,80140,1 364,FRAMEQA43888,star,what is she and she knows she has it !?,tumblr_n9hek5wjXA1tselino1_250,263,0 365,FRAMEQA37153,brown,what is the color of the hair?,tumblr_nb3x4klA5p1rw2g18o1_1280,57849,2 366,FRAMEQA24306,white,what is the color of the guy?,tumblr_nkidy4Ldfk1t47dz3o1_400,91568,2 367,FRAMEQA1459,black,what is the color of the hair?,tumblr_nc2j3elkE11ti5nreo1_250,26154,2 368,FRAMEQA29639,two,how many men are hugging each other in a messy room?,tumblr_nexxo9P8Co1tibg2uo1_400,34931,1 369,FRAMEQA7968,tank,where is the seal mimicking a man 's actions?,tumblr_naxpzlmRZc1tvp5nto1_400,56475,3 370,FRAMEQA40960,cat,what licks itself and rolls in a circle?,tumblr_nqjklxflS41uz06r7o1_250,5456,0 371,FRAMEQA666,cat,what is running down the hall and then stops and lays down?,tumblr_nrk1rp38Pq1uyssdqo1_540,10262,0 372,FRAMEQA17030,two,how many men kiss the woman 's hand as she walks up to them?,tumblr_n9v70oXqey1rw0tkfo2_r1_400,49374,1 373,FRAMEQA34914,clipboard,what is the teacher breaking in half in front of his class?,tumblr_nbwygmj1FM1todjjwo1_500,58265,0 374,FRAMEQA46296,tie,what is putting an upset face?,tumblr_nc4htjKh0T1qe0t1to1_250,16788,0 375,FRAMEQA4268,black,what is the color of the hat?,tumblr_n91fdzM1VS1s1l4fio1_400,82743,2 376,FRAMEQA45321,paw,what is one cat putting in another cat 's face to stop it from trying to groom the first cat?,tumblr_noaswjesmm1th7g9io1_400,95722,0 377,FRAMEQA7989,hat,what is the boy multicolored hair taking off?,tumblr_nb7m6oseVy1tjgll6o1_400,35257,0 378,FRAMEQA9024,two,"how many women with rainbows painted on their cheeks , kiss?",tumblr_nky1haecpO1qzdriyo1_500,95386,1 379,FRAMEQA378,two,how many soccer plays hug on a soccer field?,tumblr_n8rlcclxUX1tgyi5mo1_250,43710,1 380,FRAMEQA11006,white,what is the color of the hair?,tumblr_nd5vv1hlRE1qdmpguo2_500,85383,2 381,FRAMEQA791,two,how many young men are talking and standing very close?,tumblr_ndyuzopZti1tm0es2o1_500,48999,1 382,FRAMEQA1963,three,how many people are dancing in front of posters?,tumblr_najlujyscz1slwrsuo1_400,16170,1 383,FRAMEQA47117,turtle,what tries to bite the large tomato?,tumblr_n92y7xvWoz1t62xtyo1_500,34488,0 384,FRAMEQA6761,white,what is the color of the dress?,tumblr_npchuhU40V1s4dp9lo1_500,61840,2 385,FRAMEQA3433,three,how many young men are modeling for the picture?,tumblr_na580m6GwR1t0ojyvo1_500,94958,1 386,FRAMEQA20242,white,what is the color of the woman?,tumblr_nhqbp4iFdJ1th8ztno1_400,35238,2 387,FRAMEQA44713,guitar,what is the long-haired man playing?,tumblr_n9y9akfIvh1qlxas3o1_400,76469,0 388,FRAMEQA16499,green,what is the color of the bottle?,tumblr_njomwaECLx1qga6p9o2_400,81166,2 389,FRAMEQA17609,two,"how many men are sitting next to each other , when one touches the other on the shoulder?",tumblr_najgk2RXzP1t151ozo1_400,28115,1 390,FRAMEQA19935,white,what is the color of the sing?,tumblr_nqyn20FBG01s00yuho1_500,88485,2 391,FRAMEQA26016,window,what is the creepy man with long hair looking out?,tumblr_n9slecUQXg1rt9h1no1_500,97563,0 392,FRAMEQA27699,mirror,where does the blond boy squeeze the muscle?,tumblr_nhfer8aJcn1u74chmo1_500,79417,3 393,FRAMEQA20845,black,what is the color of the coat?,tumblr_no1l13digu1u1sccdo1_500,14251,2 394,FRAMEQA44190,two,how many people walk?,tumblr_nca3neyJbm1retkdpo1_500,99129,1 395,FRAMEQA52391,house,where is the woman signing a song?,tumblr_njvfrvtJRb1uo2e5xo1_250,28457,3 396,FRAMEQA49530,red,what is the color of the tomato?,tumblr_n92y7xvWoz1t62xtyo1_500,34488,2 397,FRAMEQA39645,car,what cuts the corner off in a race?,tumblr_nc5lm8v8r31tx8mn0o1_400,77883,0 398,FRAMEQA37599,two,how many men are dancing in the car?,tumblr_nbgkzeADl51rpsnyjo1_250,3928,1 399,FRAMEQA46871,purple,what is the color of the paper?,tumblr_nabwvrGgUt1rmv3nuo1_500,70098,2 400,FRAMEQA50154,two,how many young women are having the conversation with someone?,tumblr_nc7fe5rnLn1rv18yuo1_250,12402,1 401,FRAMEQA4321,white,what is the color of the woman?,tumblr_ngsve40Qa31u659t0o1_500,91454,2 402,FRAMEQA11575,two,how many men are looking at each other before one embraces the other tightly?,tumblr_nc9opiE4eV1soso59o1_400,67005,1 403,FRAMEQA46816,room,where are two men swaying?,tumblr_nheuo83aCM1t0w9oqo1_400,74555,3 404,FRAMEQA35903,three,how many men are talking to somebody whiles?,tumblr_n9art5oaA51r4s9t4o1_250,35466,1 405,FRAMEQA44073,white,what is the color of the hair?,tumblr_na40r0jkFh1shuxevo1_400,64296,2 406,FRAMEQA26317,two,how many guys smile and make hand gestures together?,tumblr_nhjwx6K3OR1tlujlao1_250,3760,1 407,FRAMEQA1851,cat,what is chasing something across the wooden floor?,tumblr_na223cc4GI1r6gft3o1_250,70577,0 408,FRAMEQA48202,two,how many yellow costumed creatures bend over in the gymnasium?,tumblr_neua43pKJC1t0kntqo1_250,53580,1 409,FRAMEQA47708,black,what is the color of the vest?,tumblr_nd6u1pS7KM1r0v1ajo4_250,9961,2 410,FRAMEQA33463,car,where is the baby playing?,tumblr_nr1uguIQxD1td493xo1_500,84890,3 411,FRAMEQA51518,cat,what is the man massaging?,tumblr_nd0khmXlwt1t7hjz2o1_250,27110,0 412,FRAMEQA49462,black,what is the color of the pants?,tumblr_nr5h8ba4iB1s3wsijo1_500,69389,2 413,FRAMEQA32426,car,what is the woman driving down the road?,tumblr_nd1jamcgAZ1u0agnbo1_500,73509,0 414,FRAMEQA10786,five,how many suited men does this show performing a dance routine?,tumblr_nqdkq9NdcV1souwjko1_250,22124,1 415,FRAMEQA19335,locker,what is the man wearing a navy jacket hits?,tumblr_nkpcx7Bz6I1qattp2o1_500,71572,0 416,FRAMEQA44537,three,how many boys turn around making hand gestures look surprised?,tumblr_nebjohzXeJ1thyqpfo1_250,2124,1 417,FRAMEQA31462,black,what is the color of the suit?,tumblr_nrjubnErtE1sh0wvgo1_500,14412,2 418,FRAMEQA1814,blue,what is the color of the chair?,tumblr_nfxyadbp6x1slj978o1_400,75668,2 419,FRAMEQA4878,white,what is the color of the dress?,tumblr_nr4vryXuiR1u9o6qbo1_400,19008,2 420,FRAMEQA50675,tree,what is the guy hugging and looking up at it?,tumblr_ndurbh6w6U1rm0u6lo1_400,58760,0 421,FRAMEQA51150,black,what is the color of the top?,tumblr_n93sqa0Tt21sjfh08o1_400,30171,2 422,FRAMEQA47958,five,how many cars race down the race track together?,tumblr_nfhs2lXSXl1rp12fxo1_1280,96025,1 423,FRAMEQA44401,tie,what is the man dresses in suit and gloves adjusting?,tumblr_noofl2XtVN1uw3tyuo1_250,39859,0 424,FRAMEQA2647,two,how many men are talking with one another outside at night?,tumblr_nee92e9wJt1srt4nmo1_250,81215,1 425,FRAMEQA52240,bat,what is the man swinging at a man who is trying to grab him?,tumblr_na4kccYkUt1slyjblo1_400,79101,0 426,FRAMEQA42606,blue,what is the color of the car?,tumblr_nf8ydiZBPJ1ti9lxjo1_500,68244,2 427,FRAMEQA50367,popcorn,what is the girl throwing?,tumblr_nbt3fbQve61rew6cho1_250,8904,0 428,FRAMEQA5177,four,how many men are performing synchronized dancing on a stage?,tumblr_nesw34gJQu1ts5egio1_250,9781,1 429,FRAMEQA42828,broom,what is the cat chasing?,tumblr_nqlgrb0lcL1uz06r7o1_250,2822,0 430,FRAMEQA47000,two,how many guys are talking to each other in front of something?,tumblr_nfv5xzlgj31u25yojo1_400,87470,1 431,FRAMEQA22618,guns,what are the group of men in black passing?,tumblr_n96u6soS9v1tw0ucfo1_400,26456,0 432,FRAMEQA30682,black,what is the color of the man?,tumblr_n9wch8DPCW1rvxuq0o1_250,11798,2 433,FRAMEQA15677,two,how many people are ice skating and one almost falls?,tumblr_ngum4iDEja1rp3ki0o1_250,5300,1 434,FRAMEQA39466,cat,what is raising the leg and being caressed?,tumblr_ngio6fsQ8p1ssgyoro1_400,2019,0 435,FRAMEQA4810,dress,what is the very cute girl wearing?,tumblr_nf6z08W8ZO1tmecz1o1_500,58112,0 436,FRAMEQA45130,two,how many friends slides quickly?,tumblr_nouog6B5731ssgyoro1_400,52810,1 437,FRAMEQA10553,car,where is the man driving along lots of lights?,tumblr_nkzdxdVvFc1s5n087o1_500,57448,3 438,FRAMEQA50091,two,how many women hug and one woman cries?,tumblr_neq3hvOJWL1qffcm9o4_400,33869,1 439,FRAMEQA35502,two,how many men are hugging each other?,tumblr_nbjvgxTl5A1sdpqweo1_500,57398,1 440,FRAMEQA3696,paint,what is the man using?,tumblr_n91fivx41z1trjwxwo1_400,77524,0 441,FRAMEQA22869,black,what is the color of the shirt?,tumblr_nabyq55Rts1thsojbo1_250,7588,2 442,FRAMEQA7871,two,how many smiling young men are shaking hands?,tumblr_nfowdspwlA1rlhabro1_500,60308,1 443,FRAMEQA42928,black,what is the color of the rain?,tumblr_ngt78gZQ711qzunbgo1_250,47430,2 444,FRAMEQA47344,one,how many hand is the bald man in black rising up and walking with closing eyes?,tumblr_nraf01MZL21scwzvxo1_400,101671,1 445,FRAMEQA3706,hat,what is talking and thumbs up?,tumblr_nesa7vFDOw1srdod7o1_250,12441,0 446,FRAMEQA10798,one,how many man punches another man to prevent the other man from biting him?,tumblr_ngm9qdinC11u47jf5o1_250,37360,1 447,FRAMEQA52716,locker,what is the girl opening and a boy is jumping out of it to scare someone?,tumblr_n9ljz37P2L1ti3rdpo1_400,83540,0 448,FRAMEQA13408,red,what is the color of the petals?,tumblr_njvfrvtJRb1uo2e5xo1_250,28457,2 449,FRAMEQA34988,two,how many women are fighting with the knife and a frying pan?,tumblr_npj3v5k7YO1twa8dfo1_400,13996,1 450,FRAMEQA37173,two,how many men walk out?,tumblr_nqtjxp216t1rkak8mo1_500,14818,1 451,FRAMEQA19398,black,what is the color of the shirt?,tumblr_nkojhorUl81sjmrcro1_400,48297,2 452,FRAMEQA25278,seat,what is the woman reclining and looking surprised while doing it?,tumblr_nhezpoGPlg1s71nvbo1_500,68103,0 453,FRAMEQA32727,one,how many person kicks the other person?,tumblr_nh16i2pNv61s6zpepo1_400,25142,1 454,FRAMEQA40814,heels,"what does the man click with two other people , and then they run away?",tumblr_nomhc2cRR51uoon82o1_400,56700,0 455,FRAMEQA25787,flags,what are some people waving in front of a woman?,tumblr_nctl7fbtyA1rtb17mo1_250,85628,0 456,FRAMEQA35846,white,what is the color of the cat?,tumblr_nc1hdxAtl81slj978o1_400,18218,2 457,FRAMEQA1618,two,how many boys send the girl rolling down a hill inside of a large tire?,tumblr_nfrmsb7tal1t06o0xo1_400,67695,1 458,FRAMEQA14588,two,how many asian males are laughing at something?,tumblr_ngsvtw1VqO1roxldao1_500,50556,1 459,FRAMEQA15989,cat,what is falling down in snow?,tumblr_nqbxtdsOu11tk2ngvo1_400,98201,0 460,FRAMEQA15845,hamster,what is sitting in two hands?,tumblr_ne1ae8GExo1tkkgpso1_400,22827,0 461,FRAMEQA52618,street,where is the beautiful lady with long hair driving a bicycle?,tumblr_ndcf6u3qah1rd87k4o1_250,13573,3 462,FRAMEQA49782,red,what is the color of the dress?,tumblr_nby6co3wog1snxuk3o1_250,94301,2 463,FRAMEQA18516,dice,what are being rolled on the table?,tumblr_ngz2gcvCxw1rtdnfto1_400,28359,0 464,FRAMEQA31800,two,how many young women jump off the roof in to a pool but one lands on the ground?,tumblr_nh78lk47wl1se4fueo1_400,21336,1 465,FRAMEQA43499,guitar,what is the guy playing?,tumblr_na5j2z7Ejt1tfvkwqo1_400,68462,0 466,FRAMEQA7105,cat,what is watching people make soup and trying to get his fair share?,tumblr_npy4c6ERuh1uv0y2ro1_250,13331,0 467,FRAMEQA52704,two,how many young girls are making hand gestures at each other?,tumblr_n9mcz0Bs5x1t1zoqqo1_r1_500,79390,1 468,FRAMEQA14009,black,what is the color of the lingerie?,tumblr_nre0xwdee61uyo37eo1_250,6713,2 469,FRAMEQA15641,black,what is the color of the hair?,tumblr_negdm6AfLD1tyu9j8o1_250,13780,2 470,FRAMEQA42249,cats,what are running towards three food dishes?,tumblr_nhchptHDxG1slj978o1_250,3857,0 471,FRAMEQA10180,cat,what is surprised by something and becomes scared?,tumblr_nhpugqJVgm1s6zpepo1_400,30538,0 472,FRAMEQA27619,black,what is the color of the car?,tumblr_ne4xuxJjdk1sfxnzso1_250,82976,2 473,FRAMEQA10788,two,how many team mascots give the high five in an office while another worker shakes his head?,tumblr_noal004K181rk6mu2o1_250,80772,1 474,FRAMEQA23553,hat,what is the young man wearing and smiling?,tumblr_nbbyfhxz6N1t3vunfo1_1280,91150,0 475,FRAMEQA48866,cat,what is attempting to get inside the small box?,tumblr_nbjfm8LunL1tlv2g2o1_400,78926,0 476,FRAMEQA21283,car,what drives past and almost hits the man?,tumblr_nir1ryJpQJ1slj978o1_400,25795,0 477,FRAMEQA43750,white,what is the color of the shirt?,tumblr_n4weqhDYCU1tqrkr5o1_250,51771,2 478,FRAMEQA42965,library,where is the man sitting at a desk?,tumblr_naulrlooAz1r32tvmo1_400,35210,3 479,FRAMEQA43738,cat,what is the cat chasing through the door?,tumblr_nk6z38GkkR1tmbbaro1_400,80311,0 480,FRAMEQA18134,black,what is the color of the clothing?,tumblr_njxnk5YbbF1sa0lndo1_500,74243,2 481,FRAMEQA19319,black,what is the color of the skirt?,tumblr_ng36b2y1Eb1tud48eo1_250,67836,2 482,FRAMEQA30440,yellow,what is the color of the sweaters?,tumblr_new6rapUbt1tqrf5uo2_400,66256,2 483,FRAMEQA44824,two,how many people sat down?,tumblr_n9s3ynzr7Z1r288g6o1_400,64118,1 484,FRAMEQA35826,cigarette,what was the woman with long dark hair smoking?,tumblr_nd4g1xvNl81tyu5lro1_500,68386,0 485,FRAMEQA29983,black,what is the color of the hat?,tumblr_nkx0ckeBR61shxi5go1_540,96429,2 486,FRAMEQA3296,butt,what is an otter shaking in a circle?,tumblr_nkr35ufuV21uofmw3o1_400,40169,0 487,FRAMEQA9548,white,what is the color of the shirt?,tumblr_nnjiheyDgn1u41tvho1_250,46335,2 488,FRAMEQA22126,chair,what does the cat jump off to the top of a counter?,tumblr_ninfq9WzsZ1s6zpepo1_250,78597,0 489,FRAMEQA33701,car,what is driving down the road?,tumblr_nhpp9aIKCk1tuoc50o1_400,39490,0 490,FRAMEQA40571,black,what is the color of the shirt?,tumblr_nh3wicyFbJ1u6y2kio1_250,36536,2 491,FRAMEQA3090,guitar,what is the man wearing glasses is playing?,tumblr_n9j4izA6NT1qiyk3oo1_500,102025,0 492,FRAMEQA42171,door,what does the man smile and shuts?,tumblr_n9sj99mVgs1tvy42yo1_500,10967,0 493,FRAMEQA26785,warehouse,where is the band signing?,tumblr_nioykwICNc1u8ilf5o1_400,97360,3 494,FRAMEQA37495,blue,what is the color of the jacket?,tumblr_nc5njppXLD1tjargao1_250,9765,2 495,FRAMEQA12968,tire,"what is rolling down the street and soldiers throw stuff at it , kick it and fall over?",tumblr_nczg2aOKa01tugd7xo1_400,19074,0 496,FRAMEQA9436,jacket,what is the man wearing?,tumblr_njzf9iYaNE1tul4jlo1_400,20807,0 497,FRAMEQA44573,wire,what is the man holding smoking under his chin?,tumblr_n99oknHBnr1r8wa1po1_500,68077,0 498,FRAMEQA39578,black,what is the color of the waves?,tumblr_n8wsbjPwDe1rwrktro1_500,75407,2 499,FRAMEQA15392,black,what is the color of the hair?,tumblr_nr7noqopf71qbvb1co1_400,3621,2 500,FRAMEQA34198,car,what hits another sending it on its side and making it flip over?,tumblr_njoz3heJia1tx8mn0o1_400,21855,0 501,FRAMEQA15261,car,what is skidding and turning on the country side road?,tumblr_ni06hc76UJ1u639x2o1_500,72526,0 502,FRAMEQA25400,crow,what then falls over?,tumblr_n95xq1FqHa1s0ea0ao1_400,50632,0 503,FRAMEQA36105,black,what is the color of the hair?,tumblr_nh862jAOeb1s2v55ho1_500,71319,2 504,FRAMEQA44649,red,what is the color of the outfit?,tumblr_ngk0r7YOKQ1qd6dggo1_500,88302,2 505,FRAMEQA7420,red,what is the color of the dress?,tumblr_n9fsxu29rP1tpsgaxo1_400,36703,2 506,FRAMEQA48087,cat,what was lying on the chair?,tumblr_nby8fzSw431tkpzw0o1_400,80393,0 507,FRAMEQA16047,shirt,what is the man wearing?,tumblr_nfvo34sjOO1u4nno3o1_250,68577,0 508,FRAMEQA29516,room,where is the guy with green eyes smiling?,tumblr_ngfx6plsgs1sjcg5bo2_500,39257,3 509,FRAMEQA24751,motions,what is the young man wearing a bandanna around his face and making with his hand toward his head?,tumblr_nawbyzVwlV1thhvy0o1_400,32609,0 510,FRAMEQA4713,bubbles,what is the man with very short hair blowing with bubblegum?,tumblr_narusznLKe1ti88nfo1_500,95611,0 511,FRAMEQA3422,red,what is the color of the hat?,tumblr_nfnmsjSHVf1qls6cvo1_r1_500,91421,2 512,FRAMEQA18192,red,what is the color of the lipstick?,tumblr_nbxvmfNZQf1slj978o1_250,51279,2 513,FRAMEQA28327,dog,what walked down the hall wearing a teddy bear costume?,tumblr_nerwi2g6db1stn2h6o1_500,36811,0 514,FRAMEQA3634,guitar,what did the man on the stage have?,tumblr_nax6k52cmx1tzzyazo1_400,30489,0 515,FRAMEQA18177,vehicle,what is the vehicle cutting off?,tumblr_nesksmxUsA1rdfljoo1_500,76053,0 516,FRAMEQA43929,car,what is driving slowly on the track?,tumblr_nbhh5j3uCN1tx8mn0o1_400,52689,0 517,FRAMEQA48715,blue,what is the color of the hair?,tumblr_nah0ioyzCk1trp7kao1_250,10505,2 518,FRAMEQA44301,two,how many men that are standing face to face staring at each other?,tumblr_ngfer68qTm1re05qko1_500,76658,1 519,FRAMEQA16655,vehicle,what is driving down the road?,tumblr_ng03s2BcRY1u25ovvo1_400,63607,0 520,FRAMEQA13935,three,how many men are standing looking at each other?,tumblr_njgn0ykrlJ1rjgw6yo1_250,1670,1 521,FRAMEQA33769,red,what is the color of the hair?,tumblr_ngl4hqE3rl1u26o5vo1_500,98319,2 522,FRAMEQA2984,gray,what is the color of the pants?,tumblr_naftam1wOQ1tui2odo1_250,43864,2 523,FRAMEQA40495,brown,what is the color of the dog?,tumblr_ncs6h9GZNT1rerh68o1_400,9178,2 524,FRAMEQA7641,two,how many people are rubbing each other 's hair?,tumblr_nkr8dmb0LK1upu5g5o1_250,7596,1 525,FRAMEQA38930,two,how many guys is it matching their hand sizes?,tumblr_ndwl7ilxkz1tdmimho1_500,67810,1 526,FRAMEQA25610,cars,what are racing through the road with large snowbanks?,tumblr_nfih1nAC1B1s71nvbo1_400,35092,0 527,FRAMEQA1819,two,how many girls are walking down the street together carrying bags?,tumblr_nnuwzzYVM21up8dpto1_400,77188,1 528,FRAMEQA37269,three,how many boys is bouncing on a trampoline and one jumps high and gets caught in a basketball hoop?,tumblr_nipn2lx2R71slj978o1_250,41152,1 529,FRAMEQA50812,necklace,"what is the guy with short black hair , wearing and speaking?",tumblr_nfij52cXeF1tx3acho1_250,18034,0 530,FRAMEQA31560,two,"how many women , one is dressed funny , look at each other?",tumblr_nbyei2DN1y1tm6n6po1_500,86735,1 531,FRAMEQA44405,mice,what are fighting in the room?,tumblr_nd0odbifZp1tihaueo1_250,18445,0 532,FRAMEQA31366,guitar,what did the man with long hair strum?,tumblr_n9665a9Aki1tggkgso1_500,47871,0 533,FRAMEQA19898,two,how many girls start beating another girl on the ground?,tumblr_nabnd0SUAv1tjbxaso1_400,28885,1 534,FRAMEQA31955,gray,what is the color of the hair?,tumblr_ncvzkl77wl1rhowemo1_250,91839,2 535,FRAMEQA31916,two,how many men push down the boy and beat him up?,tumblr_nauh2woNK61tj7htno1_250,3688,1 536,FRAMEQA34600,clothing,what is the lady singing and wearing?,tumblr_nrh3wftNBE1qj1p4xo1_500,26881,0 537,FRAMEQA19390,two,how many women are doing fitness and dancing?,tumblr_n9r3cdtvRU1rpnz3wo1_400,37812,1 538,FRAMEQA31710,bread,what is puffing up on the flat top grille?,tumblr_nrhik441u31r38b11o1_400,74368,0 539,FRAMEQA48917,two,how many men is throwing ice water another man?,tumblr_naq729bCOF1rj7btco1_400,28208,1 540,FRAMEQA13724,car,what is hitting and stopped?,tumblr_npih58668V1unyhx2o1_400,78353,0 541,FRAMEQA43117,blue,what is the color of the shirt?,tumblr_nezd8smQVJ1tmefd5o1_250,252,2 542,FRAMEQA14843,two,how many men are having passionate moment on the floor?,tumblr_n97vm7E6Lv1tq78elo1_400,26374,1 543,FRAMEQA52832,two,how many girls does this show with one attempting to interest the other in a gossip?,tumblr_nk4x9lSIXA1u2d9ago1_400,20625,1 544,FRAMEQA38510,glasses,what is the handsome young man positioning?,tumblr_nmep7aP37Y1ty7mjvo1_400,96832,0 545,FRAMEQA19634,chair,where is the sloth sitting and he turns and stares?,tumblr_njuw5ruVDR1unixz7o1_400,40086,3 546,FRAMEQA112,fireworks,what are exploding over water at night?,tumblr_nauvryxIRR1rpvamzo1_250,1313,0 547,FRAMEQA43081,microphone,what does the woman hold into a crowd then touches her hair?,tumblr_nc0bwgoe3C1rb1s2po2_500,100598,0 548,FRAMEQA50744,two,how many men is wearing sunglasses are fooling around in a room?,tumblr_n9f1hcMqsn1snp73jo1_500,45318,1 549,FRAMEQA42359,two,how many people are looking at each other?,tumblr_na072o293v1tzs6b2o1_500,92883,1 550,FRAMEQA36465,mascot,what gets the man in the mood to dance in front of a crowd?,tumblr_nc2uo2WwTO1sbnqs8o1_250,5833,0 551,FRAMEQA31232,white,what is the color of the vest?,tumblr_nhb5hnz0qA1s0o2flo1_400,75238,2 552,FRAMEQA33381,yellow,what is the color of the shoes?,tumblr_n9wqqqryRv1tqskljo1_400,19717,2 553,FRAMEQA30604,three,how many people are in the room and pretend to play guitars?,tumblr_nb89ryBmeP1rf6ax4o1_400,36254,1 554,FRAMEQA49311,car,what does an extreme turn in front of a semi-truck?,tumblr_nc1g2pJnfJ1sk96t7o1_400,8106,0 555,FRAMEQA44264,chair,where is the man squirming around and stretching?,tumblr_ng577nfkTT1tsxh57o1_400,12109,3 556,FRAMEQA9683,car,what is going around the track and starts to spin out?,tumblr_ngiqj7Yelt1qfqktro1_400,60770,0 557,FRAMEQA49393,black,what is the color of the hair?,tumblr_ncmjkeXNal1u060u3o1_500,100357,2 558,FRAMEQA7678,street,where does the man play air guitar and dances?,tumblr_nbcgxcAnLa1qc6y5wo1_400,33510,3 559,FRAMEQA194,booth,where does the couple cuddle and pull face?,tumblr_mr11isrNGe1say5iqo1_500,63272,3 560,FRAMEQA43004,white,what is the color of the wall?,tumblr_netkc7CJ961tdur3io1_400,55704,2 561,FRAMEQA12016,wolf,what puppy is making some noise?,tumblr_nqvuy6gtIQ1u9fb2po1_250,36656,0 562,FRAMEQA17422,black,what is the color of the guy?,tumblr_namu4oOKvg1slmgm0o1_400,26123,2 563,FRAMEQA26245,room,where are the couple of boys dancing?,tumblr_ndlmhiM9bh1u0sihjo1_250,5720,3 564,FRAMEQA37113,two,how many woman pretend to hit something or someone?,tumblr_ndfp6gnmJs1tmm9fro1_500,99644,1 565,FRAMEQA4592,three,how many boys are singing while playing electrical guitars?,tumblr_nre0r7j8Cd1r9n1lyo1_400,16346,1 566,FRAMEQA49221,cat,what is pawing at the large fish in a shallow bathtub?,tumblr_nq62qusQ2Z1tk2ngvo1_500,69624,0 567,FRAMEQA4587,horse,what do the man and a woman ride through the snow?,tumblr_nh6ypurpto1sug4g8o1_500,97696,0 568,FRAMEQA43908,black,what is the color of the shirt?,tumblr_nogenkTJ0O1uqjypdo1_250,9973,2 569,FRAMEQA729,car,what is shooting sparks behind them on the track?,tumblr_nq4d7kPtlq1unyhx2o1_400,76971,0 570,FRAMEQA10337,cat,what is being brushed and likes it?,tumblr_nr394z8H8A1uzsb7xo1_500,69717,0 571,FRAMEQA49925,foyer,where is the dog jumping around?,tumblr_n9ak83GJ1A1si00qoo1_250,24051,3 572,FRAMEQA33546,driver,what is driving and turning around?,tumblr_ni01txhXte1tx8mn0o1_400,79270,0 573,FRAMEQA37516,black,what is the color of the cat?,tumblr_ng642mdNwX1qezt9uo1_250,19353,2 574,FRAMEQA9549,car,what does the barrel roll while jumping over a ramp?,tumblr_na7u0qCxig1slj978o1_400,101240,0 575,FRAMEQA3230,two,how many people meet outside in winter to hug?,tumblr_nk4ezdlkcv1u2nvc4o1_500,62482,1 576,FRAMEQA3313,black,what is the color of the top?,tumblr_na93v8P17F1rnq510o1_500,50534,2 577,FRAMEQA45963,yellow,what is the color of the shirt?,tumblr_nonm875Gqs1uw60sro1_400,10403,2 578,FRAMEQA39621,two,how many boys are looking ahead and talking?,tumblr_ne68rePU2I1tm0es2o1_400,17195,1 579,FRAMEQA222,white,what is the color of the shirt?,tumblr_n8z1jp62zj1s5oe7xo1_250,32764,2 580,FRAMEQA19795,chimp,what jumps on the chair and runs down a hallway?,tumblr_naug822mv91tgbziwo1_400,96877,0 581,FRAMEQA36737,two,how many guys with microphones are laughing together?,tumblr_nr2anni0vZ1uup4c1o1_400,77629,1 582,FRAMEQA24292,two,how many boys is this making funny faces?,tumblr_nh9zdtgglQ1stmsx9o1_500,101014,1 583,FRAMEQA27884,cylinder,what is raised and the flame is lit at one end of the cylinder?,tumblr_nfirt6V8xT1qea5cqo1_400,64384,0 584,FRAMEQA49248,dog,"what curls up in the corner , on top of his food bowl?",tumblr_n8vebwp6YB1sm9f7mo1_r2_400,64664,0 585,FRAMEQA15432,vehicle,what crashes going around the turn and flips multiple times?,tumblr_n9pfyci2Hk1tx8mn0o1_400,63217,0 586,FRAMEQA565,three,how many people are sitting staring at each other?,tumblr_ndioe7rlJD1u15wpko1_250,37298,1 587,FRAMEQA25398,red,what is the color of the shirt?,tumblr_n9fh74CL8P1trm2z1o1_500,100154,2 588,FRAMEQA40539,rabbit,what sniffs and then turns and runs away?,tumblr_njw4erpndi1te0omro1_400,88275,0 589,FRAMEQA31870,office,where do two team mascots give a high five while another worker shakes his head?,tumblr_noal004K181rk6mu2o1_250,80772,3 590,FRAMEQA36901,four,how many girls dance then one moves forward?,tumblr_nad8wtQS6K1qbz70so1_500,48702,1 591,FRAMEQA43852,treadmill,what does the woman fall off?,tumblr_nrat8oPnCZ1scvbu9o1_400,35141,0 592,FRAMEQA10568,microphone,what is the guy laughing and holding?,tumblr_nb6lt7ZqzM1qm0hcwo1_250,6231,0 593,FRAMEQA18667,cap,what is the person wearing?,tumblr_ngoujoc3wq1t2gwrqo1_400,76940,0 594,FRAMEQA50710,tire,what is the man throwing around a garage?,tumblr_nhomv0Y6FK1sqlieso1_400,38893,0 595,FRAMEQA136,black,what is the color of the necklace?,tumblr_nqzzb3mACM1tg4filo1_250,1715,2 596,FRAMEQA15552,black,what is the color of the car?,tumblr_ni2mhm38YD1qlsp57o1_400,2508,2 597,FRAMEQA47827,white,what is the color of the shoes?,tumblr_nbfiltKZa81tqps2xo1_400,69013,2 598,FRAMEQA29651,cat,what stood up looking at something?,tumblr_nc216vPG4X1tdjuqvo1_400,30878,0 599,FRAMEQA26757,black,what is the color of the shirt?,tumblr_ncsujftSr51qhutsto1_400,30862,2 600,FRAMEQA27071,one,how many car spins off the track?,tumblr_nbatooeAde1tx8mn0o1_400,52734,1 601,FRAMEQA49894,car,what does there 's skidding on a corner on a race track?,tumblr_nd86nwgWeM1t2x9o3o1_500,54725,0 602,FRAMEQA28838,green,what is the color of the jacket?,tumblr_nh1tlrBMoR1td8ijso1_400,54413,2 603,FRAMEQA25235,brown,what is the color of the taps?,tumblr_nkpyvkKEyJ1u8vn4no1_500,56768,2 604,FRAMEQA1606,red,what is the color of the shirts?,tumblr_nr136wYNPh1urkl22o1_500,67397,2 605,FRAMEQA35800,stick,what does the woman in a dress swing?,tumblr_n9ek7fl0sD1tr4l02o1_250,65325,0 606,FRAMEQA50132,two,how many men are wrestling with each other in a ring?,tumblr_nhq8z49bTR1sk0i2mo1_250,60385,1 607,FRAMEQA25404,two,how many women are free wrestling on the ring?,tumblr_nau4x9Tl9h1sk0i2mo1_400,28032,1 608,FRAMEQA40576,brown,what is the color of the hair?,tumblr_na0osdDhc41roq12ko1_400,20949,2 609,FRAMEQA29297,two,how many girls are laughing?,tumblr_n8y4n5b77l1txzv32o1_400,32326,1 610,FRAMEQA29324,three,how many young men are pulling faces and laughing?,tumblr_nb89ryBmeP1rf6ax4o1_400,36254,1 611,FRAMEQA19259,cat,what rests with the litter of puppies and their mother?,tumblr_nhp1rdIHcP1s6zpepo1_250,27115,0 612,FRAMEQA33878,puppy,what is trying to dig the hole in the floor?,tumblr_nc9l9ewvnn1rm95kgo1_400,42806,0 613,FRAMEQA37899,black,what is the color of the man?,tumblr_nk96eyo6731th7lvro1_500,48403,2 614,FRAMEQA15133,phone,what are two people talking and one is holding in front of their face?,tumblr_nkc48iNxXB1uodfiso1_500,72935,0 615,FRAMEQA50964,black,what is the color of the hair?,tumblr_n94fi690GZ1twfcheo1_400,60282,2 616,FRAMEQA39071,bed,"where is the girl wearing a red colored top , is laying and opening her eyes?",tumblr_nk6q01txXx1tgli1no1_400,64276,3 617,FRAMEQA27487,stairs,what are three people climbing and two of them are wearing hat?,tumblr_nay0kzAbkR1twcgnlo1_400,27538,0 618,FRAMEQA38862,drums,what is the young man playing with band mates behind him?,tumblr_nbfrv4gBTS1soxo1wo1_400,24863,0 619,FRAMEQA8629,two,how many people sat smiling at each other?,tumblr_ncgxa35Hin1tztcuxo1_500,101318,1 620,FRAMEQA37713,four,how many guys are making faces to another guy recording them?,tumblr_n9soht3hXu1ty4429o1_500,91209,1 621,FRAMEQA38268,two,how many sumo wrestlers are competing in the tournament?,tumblr_nrkyzg1KPS1tinozao1_400,67090,1 622,FRAMEQA4234,bar,what is the man in a black vest pushing?,tumblr_nd6u1pS7KM1r0v1ajo4_250,9961,0 623,FRAMEQA29906,bed,where did two lovers lay?,tumblr_nc46avuPqy1sh3qtho1_500,72294,3 624,FRAMEQA27871,car,what does someone drive on a track?,tumblr_n8zp4hIxxe1sncaa3o1_400,56451,0 625,FRAMEQA5354,spoons,what are two men wearing blue sweatshirts are using?,tumblr_nkoga4fMRx1r9ka6jo1_500,90422,0 626,FRAMEQA34389,lab,where is the woman pretending to feed her dog?,tumblr_ndr4iolbn41rmme2wo1_400,28978,3 627,FRAMEQA46497,green,what is the color of the hair?,tumblr_nfxrngAe4S1rm7wvmo1_400,101414,2 628,FRAMEQA49988,two,how many guys are laughing?,tumblr_n9paf34bUZ1s5yymto1_400,58609,1 629,FRAMEQA41819,brown,what is the color of the hair?,tumblr_nagai2KcJW1slrp89o1_400,67973,2 630,FRAMEQA27046,black,what is the color of the man?,tumblr_nfhfwk7nTt1u4pmmpo1_400,24285,2 631,FRAMEQA25980,steps,what is the person doing on top of changing shapes?,tumblr_ngplu9HNKp1rn2ycso2_1280,99492,0 632,FRAMEQA3163,headphones,what is the man wearing and playing music?,tumblr_n9ip3wcTrx1t8bzkuo1_500,26309,0 633,FRAMEQA18501,machine,where is the man running and then he fall?,tumblr_nbn9hl9w4a1t7hjz2o1_250,2117,3 634,FRAMEQA41090,ball,what is someone kicking?,tumblr_nevsarqG0r1rykb0vo1_400,50084,0 635,FRAMEQA8843,red,what is the color of the woman?,tumblr_nk7ll5MJ3H1sm7thgo1_500,50274,2 636,FRAMEQA10611,basket,"where are two brown dogs revisiting , one is?",tumblr_n8pom6qgCR1tgl4z1o1_400,75583,3 637,FRAMEQA24425,green,what is the color of the top?,tumblr_nk75mmC9z31uoz0rqo1_250,27246,2 638,FRAMEQA15003,black,what is the color of the hair?,tumblr_nkyo0wgT9U1sulpwxo1_400,45796,2 639,FRAMEQA20648,blue,what is the color of the hat?,tumblr_nfeg5jmhyd1t7hjz2o1_250,27085,2 640,FRAMEQA40048,makeup,what whistles and turns his head slightly?,tumblr_ndd1gxpTVz1u106yvo1_250,11801,0 641,FRAMEQA39421,two,how many people are laying?,tumblr_nk6ja06aQx1snwydqo1_400,28917,1 642,FRAMEQA38846,black,what is the color of the man?,tumblr_npuxvmFUL31uqie69o1_400,16361,2 643,FRAMEQA25276,frogs,what are climbing around in the tank together?,tumblr_nksdyhXtpu1rhl4f0o1_250,22832,0 644,FRAMEQA35640,black,what is the color of the shirt?,tumblr_noc1iqYf6S1rma101o1_400,43121,2 645,FRAMEQA39136,shirt,what is the red head in the photo wearing?,tumblr_n96x96RDMq1tp3pcko1_250,14441,0 646,FRAMEQA35922,brown,what is the color of the jacket?,tumblr_narl5ou2XK1tecyy7o1_250,44147,2 647,FRAMEQA6688,two,how many pop stars are signing off after the show?,tumblr_ng0ykvjZDz1s74pxto1_400,74274,1 648,FRAMEQA25800,three,how many people is wearing a headpiece are dancing together?,tumblr_nbxzym9Khf1t0ojyvo1_500,95020,1 649,FRAMEQA40572,blue,what is the color of the clothing?,tumblr_nerag5bIMv1sk0i2mo1_400,30435,2 650,FRAMEQA2273,two,how many guys point to the gun and smile while another guy stands in front of them?,tumblr_nklkbe4KgW1tfs8guo1_500,56600,1 651,FRAMEQA983,car,what runs the kind of trailers that park?,tumblr_nnokjvV7Wq1uuvmpjo1_250,50472,0 652,FRAMEQA7149,one,how many boy holds up the candy bar and opens mouth?,tumblr_nkqj4fhbBi1unzgfso1_500,87645,1 653,FRAMEQA3010,white,what is the color of the jumps?,tumblr_ne5rv7FV7c1slj978o1_400,69932,2 654,FRAMEQA33380,white,what is the color of the hair?,tumblr_nfxoxw7LKR1r784vko1_500,61282,2 655,FRAMEQA13594,vehicle,what is flipping over and over on the road?,tumblr_n9pfyci2Hk1tx8mn0o1_400,63217,0 656,FRAMEQA33281,two,how many people are stood next to each other?,tumblr_nd3x8y1KwP1qla0yao1_500,17928,1 657,FRAMEQA48825,red,what is the color of the bow?,tumblr_mrs83nSzOQ1stv392o1_500,86752,2 658,FRAMEQA3334,cigarette,what is the man in head phone smoking?,tumblr_nepnu3YNTG1u2qkvco1_250,72472,0 659,FRAMEQA17248,red,what is the color of the chair?,tumblr_nh33r6GpNQ1sm86hzo1_400,31915,2 660,FRAMEQA28317,black,what is the color of the hair?,tumblr_nkwbkvxn0I1qji9umo1_500,83993,2 661,FRAMEQA47287,black,what is the color of the woman?,tumblr_ngjrqkZSMs1r2ersdo1_400,21249,2 662,FRAMEQA34969,wine,what is dancing in the living room?,tumblr_npftchiLZC1tvkzc2o1_250,47140,0 663,FRAMEQA12411,four,how many guys banged their heads in the car?,tumblr_n8xhhpcZOi1ribqy3o1_1280,33927,1 664,FRAMEQA30882,rectangle,"what does the woman hold , two men sit on a sofa and a man dances along a red carpet?",tumblr_nhrcbnhiHH1u7yulho1_400,95428,0 665,FRAMEQA45549,two,how many people are dancing ballet together on a stage?,tumblr_noevlqbJ4f1uts85bo1_500,50910,1 666,FRAMEQA33238,dog,what is the cat annoyingly bothering?,tumblr_ndxrsbp13F1rfyy6oo1_250,9914,0 667,FRAMEQA4993,black,what is the color of the dress?,tumblr_nbjl83540H1sfr1gso1_500,90394,2 668,FRAMEQA487,car,what is skidding around the corner of a snowy road?,tumblr_nhklv0Td991reseiyo1_1280,89497,0 669,FRAMEQA15846,three,how many young males are smiling?,tumblr_nqokih6riY1uxohh1o1_540,91616,1 670,FRAMEQA42369,one,how many young man is kissing another young man?,tumblr_nc66lyqL3m1qek177o1_250,51417,1 671,FRAMEQA37246,sauce,what is being poured over the bowl of ice cream?,tumblr_ngj5js922h1qezxdbo1_250,23062,0 672,FRAMEQA1375,drums,what is the half naked man with blonde hair playing?,tumblr_njwrume8cm1un7etzo1_400,67999,0 673,FRAMEQA12738,two,how many men are embracing each other happily?,tumblr_ne1rovQKEs1tomzioo1_250,2039,1 674,FRAMEQA15840,white,what is the color of the shirt?,tumblr_nb10lnTtO01tjhcu6o1_500,71855,2 675,FRAMEQA2072,two,how many people in white shirts are walking?,tumblr_ncoxe7Pzl11t0ojyvo1_250,6571,1 676,FRAMEQA9898,paws,what is the cat sitting on a stool is using?,tumblr_npfup8IJsd1t95h1uo1_400,31768,0 677,FRAMEQA16653,two,how many people are sitting down?,tumblr_nafggj6YFG1sinpl8o1_400,28298,1 678,FRAMEQA1835,airplane,what wing is flying over the clouds?,tumblr_npwwzp6mxJ1qltbjko1_400,77259,0 679,FRAMEQA11455,puppy,what rolls off of its dog bed and lands on its back?,tumblr_nap0e8yhmD1scq7eko1_250,47281,0 680,FRAMEQA1635,red,what is the color of the curtain?,tumblr_npyepxrvGU1uyrbico1_400,53848,2 681,FRAMEQA52425,white,what is the color of the shirt?,tumblr_n9h415jCrZ1tq2eeqo1_400,63553,2 682,FRAMEQA20160,guitar,what is the man leaning back and playing?,tumblr_nhqd3r08hF1tbdxy1o1_400,29884,0 683,FRAMEQA19373,two,how many men are kissing in the room?,tumblr_njmvvzXa4P1sxqls6o1_400,23669,1 684,FRAMEQA46331,two,how many women are talking in the house?,tumblr_nqr8fvbChQ1u0ql9oo1_500,58093,1 685,FRAMEQA31739,guitar,"what is the man standing up , and he is playing?",tumblr_nbcx6rpdDS1tdjk1vo1_500,83773,0 686,FRAMEQA18339,black,what is the color of the hair?,tumblr_ndygc2VkxC1ttxdrpo1_500,47791,2 687,FRAMEQA1888,three,how many men are listening to someone as they stand together?,tumblr_new21rT4rK1t0w9oqo1_400,31464,1 688,FRAMEQA31318,red,what is the color of the carts?,tumblr_nmz2tmDeda1sddro0o1_250,24985,2 689,FRAMEQA43055,room,where are two people exercising?,tumblr_namkzwQCp11qb8t93o1_400,58603,3 690,FRAMEQA33195,red,what is the color of the hat?,tumblr_ng6hsntJrr1s3f23uo1_250,1683,2 691,FRAMEQA4497,fox,what is diving into the snow?,tumblr_nprpm1WJLb1uxtn9jo1_400,75011,0 692,FRAMEQA49242,two,how many men are standing next to each other and talking?,tumblr_nh29z0v9vk1sico5po1_250,39671,1 693,FRAMEQA27595,car,what is the person driving custom?,tumblr_nhszflfDwb1u1rggjo1_400,26159,0 694,FRAMEQA24149,cat,what is falling down while sitting?,tumblr_nbn45jzc2V1tlc96ro1_400,25609,0 695,FRAMEQA52725,brown,what is the color of the hair?,tumblr_nr7bf9JXRA1tiwyqlo1_250,10543,2 696,FRAMEQA34247,two,how many girls arguing and one goes after that?,tumblr_ncjgm6KYr81tl6y18o1_400,54682,1 697,FRAMEQA16103,two,how many guys are listening to music together with headphones?,tumblr_n9tn1eXLPK1rodd5bo1_400,33070,1 698,FRAMEQA27952,two,how many men sit side by side and talk to each other?,tumblr_nq0a8cwZvc1u5ep4ro1_500,61245,1 699,FRAMEQA28399,booth,where is the woman waving her hair?,tumblr_ncqkoicsBL1qhw2j5o1_500,50686,3 700,FRAMEQA30048,dog,what is drinking from the toilet and begins to back away?,tumblr_nbfbih9DeO1slwrsuo1_400,15753,0 701,FRAMEQA25239,car,what is being driven down the street?,tumblr_na9bk7YdxS1swtjjuo1_500,54836,0 702,FRAMEQA27411,car,what still attached to gas pump drives away?,tumblr_nkn8wvwPjD1s6zpepo1_400,45738,0 703,FRAMEQA36837,horse,what are the people riding through the country?,tumblr_n9t8801hEM1qc5bc7o1_500,74344,0 704,FRAMEQA19013,guitar,what is the man in a red shirt holding with flames painted on it?,tumblr_nk38eaBV6Q1tci3xlo1_400,59416,0 705,FRAMEQA26952,ball,what was glittering as it swayed back and forth?,tumblr_nr324yZNix1uwd1pzo1_400,61014,0 706,FRAMEQA12498,costume,what is the woman wearing and bends over?,tumblr_ndz2blSzVT1tlgy1jo1_400,67085,0 707,FRAMEQA45496,paws,what is the kitten shaking while sleeping?,tumblr_njxp04rEFk1tjjnlno1_400,71522,0 708,FRAMEQA52269,bed,where does the woman with blond hair sit up?,tumblr_n9dtvaAB1g1t8991mo1_250,19358,3 709,FRAMEQA8071,gun,what is the person with blond hair holding up?,tumblr_ndnxtiHVXh1ti93qgo1_400,32518,0 710,FRAMEQA50444,cat,what walks from the window sill to the door?,tumblr_nfmdfo7AD41u4txqeo1_250,10556,0 711,FRAMEQA29759,green,what is the color of the dress?,tumblr_nju4wnnKIq1u904u2o1_250,11177,2 712,FRAMEQA921,slide,what is baseball played plays?,tumblr_npclp12iK71rrei7qo1_400,75323,0 713,FRAMEQA22165,stamp,what is the guy putting to a document while looking with a glass?,tumblr_nf4mxdUpwF1thzoibo1_500,95513,0 714,FRAMEQA9558,vehicle,what drove through some water and back out?,tumblr_net1unlnyN1sp8qslo1_400,35630,0 715,FRAMEQA32445,two,how many fingers is the man singing into a microphone and holding up?,tumblr_nduy905vtk1qb7fvmo1_r2_500,99653,1 716,FRAMEQA3367,three,how many boys are holding their hands up?,tumblr_nc5q7jKFWT1rf50qno1_500,98018,1 717,FRAMEQA38038,mirror,where is the woman looking and shaving her face?,tumblr_nbvfjzxYcR1rxuv7ko1_500,79586,3 718,FRAMEQA18842,white,what is the color of the man?,tumblr_ngu4rdTvNW1tvsb7yo1_400,3763,2 719,FRAMEQA31187,white,what is the color of the shirt?,tumblr_nhi9v72r5g1se8qb8o1_500,81954,2 720,FRAMEQA49112,guitar,what is the man playing with a puppet beside him?,tumblr_nf0jfqbC7D1tkpta6o1_400,90705,0 721,FRAMEQA5681,butts,what are the few girls shaking?,tumblr_nakuv7BiK01ssgyoro1_400,73739,0 722,FRAMEQA40529,rabbit,what is sitting still gets spooked and makes a sudden dash the other way?,tumblr_njw4erpndi1te0omro1_400,88275,0 723,FRAMEQA44676,cars,what are driving around the race track?,tumblr_nozefyGyp01unyhx2o1_400,65310,0 724,FRAMEQA17028,guitar,what is the girl and a boy in a band playing?,tumblr_nh22oslt5u1tnlmk9o1_250,51698,0 725,FRAMEQA48357,two,how many young men are signing out in the cold?,tumblr_nklek6EsNF1t08g1no1_400,97354,1 726,FRAMEQA19988,two,how many people run at each other and hug?,tumblr_noe0tfP07H1skg0tio1_400,96389,1 727,FRAMEQA18815,black,what is the color of the dances?,tumblr_ni1aorjpSL1tqzdmxo1_250,39772,2 728,FRAMEQA49921,black,what is the color of the man?,tumblr_n9ycxgDgWo1tw9irno1_400,47956,2 729,FRAMEQA45860,brown,what is the color of the paws?,tumblr_naq0fyOyiC1rj38k8o1_400,1318,2 730,FRAMEQA48449,car,what speeds away as the passenger flashes the peace sign?,tumblr_nd8dsnm0vU1ruoae6o1_1280,94851,0 731,FRAMEQA41716,two,how many men in red athletic jerseys embrace one another?,tumblr_nfny96oDYU1sefjuxo2_500,53018,1 732,FRAMEQA6815,two,how many people stand on an over sized pool table?,tumblr_ncbycrsfId1sggdd3o1_400,76625,1 733,FRAMEQA9524,window,where does the guy try to get his foot?,tumblr_nar3pl2Aky1tbopxvo1_500,71161,3 734,FRAMEQA10441,guitar,what is the man wearing a baseball cap is playing?,tumblr_nfgg52CJon1t3ypcjo1_400,30750,0 735,FRAMEQA49011,white,what is the color of the horse?,tumblr_nfsrf7PNZs1qe2thio1_500,98734,2 736,FRAMEQA51741,cat,what chews on the corn on the cob while a hand attempts to take it away?,tumblr_neqgko79h11tk2ngvo1_400,27447,0 737,FRAMEQA51176,room,where are two men hugging each other?,tumblr_nexxo9P8Co1tibg2uo1_400,34931,3 738,FRAMEQA11273,rope,what is the man holding?,tumblr_na1zg9Bkf41s2wg51o1_400,36195,0 739,FRAMEQA8702,two,how many people are sitting behind an object?,tumblr_nkvkfeYSGm1r67rvao1_500,79497,1 740,FRAMEQA6942,receiver,what catches the football one-handed and scores a touchdown?,tumblr_nk7hlh9kAJ1u3wzc8o1_100,15149,0 741,FRAMEQA40486,two,how many young women are twirling around on the beach?,tumblr_nkfj17IEnK1u1pokno1_250,53570,1 742,FRAMEQA27089,cat,what is cuddling and sleeping next to the dog on the couch?,tumblr_nqcvbmlEcZ1sht3fmo1_250,74224,0 743,FRAMEQA51382,cat,what gets it head stuck in a cup and then falls off of a table?,tumblr_nnwfcpoGEI1tk2ngvo1_400,74822,0 744,FRAMEQA32170,two,how many FRAMEQAorters are talking into two microphones?,tumblr_nr46avxZ4M1rn573lo1_400,56707,1 745,FRAMEQA16974,three,how many men are playing guitars and singing?,tumblr_nftibqLA1f1tcwc21o1_400,28432,1 746,FRAMEQA41302,two,how many men with dyed blonde hair are looking at the floor?,tumblr_nc2u4lDKeU1sbetrro1_400,81245,1 747,FRAMEQA33012,vehicle,what is the man wearing helmet driving?,tumblr_ng952sa6bT1skeuupo1_400,65206,0 748,FRAMEQA18406,white,what is the color of the shirt?,tumblr_nc1ob7LJxh1tw8vf9o1_400,68560,2 749,FRAMEQA49562,black,what is the color of the shirt?,tumblr_n96iz1D0NJ1qgmxzoo1_400,60467,2 750,FRAMEQA26727,car,what jumps out of the plane with a parachute?,tumblr_npq9jlIFaN1u1ogm0o1_1280,98065,0 751,FRAMEQA36020,ball,what hits the goalkeeper in a soccer match?,tumblr_na7uylrYdY1tz9jaqo1_250,8190,0 752,FRAMEQA33607,two,how many women are sitting in the bed snuggling?,tumblr_nh9fzj5h9Y1u57bkto1_250,42689,1 753,FRAMEQA36591,one,how many man enters the room and hugs a second man from behind?,tumblr_niu64yd0hR1qky5cmo1_250,19909,1 754,FRAMEQA26565,black,what is the color of the glasses?,tumblr_nk1f6dC53y1u5g7vro1_250,46794,2 755,FRAMEQA14682,white,what is the color of the guitar?,tumblr_nd5d4u8cos1r7gr8so1_400,51974,2 756,FRAMEQA5538,black,what is the color of the shirt?,tumblr_nk1opyJl7r1uo9hxko1_500,92632,2 757,FRAMEQA11114,car,what is moving forward with its lights flashing?,tumblr_na66rjjjdD1roly9io1_500,74616,0 758,FRAMEQA41810,white,what is the color of the coat?,tumblr_nkp0k4W1RF1u63djdo1_250,53422,2 759,FRAMEQA39223,two,how many boys are talking and laughing as one drops the microphone down?,tumblr_nrkvp0sAJs1ub68qdo1_250,10647,1 760,FRAMEQA38123,popcorn,what are the two men eating on the couch?,tumblr_nkvhjp6WO71sj3qcdo1_250,19312,0 761,FRAMEQA8874,black,what is the color of the lipstick?,tumblr_neh6x586Rl1tgic3yo1_500,89147,2 762,FRAMEQA32290,green,what is the color of the shirt?,tumblr_noqzdsp8XL1uou85do1_500,70696,2 763,FRAMEQA40125,room,where is the man ripping fabric?,tumblr_ne9v07TxUL1sjcvc1o1_250,84536,3 764,FRAMEQA24116,car,what is getting refueled in the pit stop?,tumblr_nqn1ve1SQM1unyhx2o1_400,77011,0 765,FRAMEQA9224,black,what is the color of the car?,tumblr_ndyc47w6ph1u25dj6o1_400,57531,2 766,FRAMEQA24740,butt,"what does the person touch , then the dog turns around crazy?",tumblr_nhblwqSCgu1u4i3qco1_400,9324,0 767,FRAMEQA37002,two,how many men are standing and shake hands?,tumblr_njvv3fRF7y1s1rzito1_400,2327,1 768,FRAMEQA27088,cat,what saw reflection in mirror and attacked the reflection it several times?,tumblr_nlfii6q03r1s6zpepo1_400,40034,0 769,FRAMEQA24019,room,where is the man sitting while a car speeds by outside on its roof?,tumblr_nctmog92Bx1rb9dako1_500,48442,3 770,FRAMEQA41476,red,what is the color of the cape?,tumblr_nczus9EPu31ttuja3o1_250,38398,2 771,FRAMEQA30250,jacket,what is the man removing?,tumblr_nbpchsaQdB1tg4ng0o1_250,36389,0 772,FRAMEQA41376,room,"where do two men do some dance moves , and one talks to someone?",tumblr_na8zogREs01tju8cjo1_400,33677,3 773,FRAMEQA22820,black,what is the color of the ring?,tumblr_nexk59a7Vi1ti6jc1o1_250,12968,2 774,FRAMEQA35776,bird,what is having its head rubbed?,tumblr_naxnmhhK8d1tgtinoo2_r1_400,75997,0 775,FRAMEQA46097,green,what is the color of the headgear?,tumblr_nd3844onv11qj1oazo1_400,53074,2 776,FRAMEQA28800,motorcycle,what is being chased by a police car?,tumblr_nakx4m3btR1r27dg6o1_400,18991,0 777,FRAMEQA13321,drums,what is the young man in a black jacket playing?,tumblr_nd8y7flGO81sgg5k5o1_500,50950,0 778,FRAMEQA31348,bath,where does the hedgehog relax?,tumblr_nela0aVJkV1si2peso1_250,53402,3 779,FRAMEQA50455,two,how many guys are singing and dancing with microphones?,tumblr_n8w7lerGTz1tg0gc4o1_500,61792,1 780,FRAMEQA30820,two,how many female wrestlers fight in the ring and one gets knocked out?,tumblr_n9hor8PGrA1sk0i2mo1_400,39492,1 781,FRAMEQA1811,aisle,where does the man do a boogie dance?,tumblr_nipr4lcRAR1rb52s5o1_400,15276,3 782,FRAMEQA20083,white,what is the color of the shark?,tumblr_nhbze7q65N1s6zpepo1_500,65465,2 783,FRAMEQA15807,orange,what is the color of the cat?,tumblr_na9ij3RwV91tuqmf9o1_400,28211,2 784,FRAMEQA43507,one,how many team are in red shirts?,tumblr_nhccwxLB7g1tigieto1_400,76338,1 785,FRAMEQA30373,cigarette,what is the man wearing a suit and knit hat lights?,tumblr_nflyp6lmp51qj9te3o1_500,9190,0 786,FRAMEQA31866,three,how many men are standing together in the dark area?,tumblr_nat1jsDGBA1tdmr2yo1_500,96611,1 787,FRAMEQA48155,two,how many people is moving in for a kiss and embrace?,tumblr_nkmeww4RZe1qh59g3o7_250,84666,1 788,FRAMEQA19936,mirror,where is the woman fixing her hair?,tumblr_nerzflfMNY1qdoqvio1_500,47911,3 789,FRAMEQA10626,white,what is the color of the clouds?,tumblr_n8u58zpyTj1reu7qqo1_500,92283,2 790,FRAMEQA52465,car,what is driving through the desert?,tumblr_naq0629hIq1t5ojzdo1_250,49660,0 791,FRAMEQA3100,black,what is the color of the hat?,tumblr_nfhfwk7nTt1u4pmmpo1_400,24285,2 792,FRAMEQA29464,picture,what are several guys taking together?,tumblr_nb8u1hK4Ac1sh75jso1_250,1929,0 793,FRAMEQA17676,cat,what turns and attacks the moving toy?,tumblr_n8x1wfRppX1tdmffyo1_250,45924,0 794,FRAMEQA14204,black,what is the color of the top?,tumblr_nastobJZrU1t9y9heo1_250,78743,2 795,FRAMEQA39110,car,what is being driven by a driver with palm trees on the side of the road?,tumblr_ng9bf9Vddz1u25ovvo1_400,63432,0 796,FRAMEQA47854,white,what is the color of the kitten?,tumblr_nhtqa26yvr1tjhld9o1_400,19224,2 797,FRAMEQA36183,two,how many men are wearing suits and singing?,tumblr_n9s983h2cd1se4p6ho1_400,31841,1 798,FRAMEQA50815,two,how many young men are holding an interview and talking?,tumblr_nk1et3jphj1rmskgro1_250,39535,1 799,FRAMEQA13867,ball,what does the soccer player pass to a teammate who scores a goal?,tumblr_nkunyo8ZlL1u98wygo1_500,52215,0 800,FRAMEQA16684,picture,what is the man and woman taking together and kissing?,tumblr_nnmtjjxZdT1rnjvoeo1_500,85789,0 801,FRAMEQA40077,two,how many kids is sitting in a dark room raise their hands into the air and display the peace sign?,tumblr_nazqwgPDxU1tiv0r8o1_500,63749,1 802,FRAMEQA48871,black,what is the color of the dress?,tumblr_nqym30p1cp1u3cb3fo2_400,48571,2 803,FRAMEQA31070,room,where are the group of people dancing?,tumblr_n9yucrQ0CD1rcjuu7o1_400,19184,3 804,FRAMEQA6163,two,how many young men are smiling in front of a television?,tumblr_nb1vzhS7Dk1s3t57eo1_500,73215,1 805,FRAMEQA15573,cigarette,what is the woman wearing a bra is smoking and looking in a mirror?,tumblr_np4qeqa4lO1rop7bco1_500,98407,0 806,FRAMEQA51941,cat,what is looking around suspiciously outside?,tumblr_nq0vgpO4MV1u88jnvo1_250,46248,0 807,FRAMEQA24072,black,what is the color of the shirt?,tumblr_ngi6wiekIJ1tu4yxmo1_250,11641,2 808,FRAMEQA52216,three,how many men sit at the table and play a card game?,tumblr_naktlrCRYd1rtg3qpo1_400,73510,1 809,FRAMEQA24690,two,how many men does the warrior princess beat up using a pot and a pan?,tumblr_nqjx3wHf1Q1r2lnvfo1_400,26486,1 810,FRAMEQA20438,two,how many people are skate boarding along the corridor?,tumblr_ncmis5JfW31u05byho2_400,63140,1 811,FRAMEQA29979,red,what is the color of the shirt?,tumblr_nh968zCjLO1r9p1p9o1_500,61469,2 812,FRAMEQA22130,white,what is the color of the shirt?,tumblr_n9r9y45IV51r2e0nso1_250,27251,2 813,FRAMEQA22497,brown,what is the color of the hair?,tumblr_nq0gtbRtuT1s7m95ho1_250,82953,2 814,FRAMEQA43882,two,how many people dresses of superhero are shake her hands?,tumblr_nq1kcyjyHi1uwli57o1_1280,95412,1 815,FRAMEQA34915,green,what is the color of the hat?,tumblr_nhli0qwrf61u7p8rwo1_500,36088,2 816,FRAMEQA35105,brown,what is the color of the hair?,tumblr_n98tjzGg7w1tetyjjo1_400,28644,2 817,FRAMEQA27608,headset,what is the young boy smiling and wearing?,tumblr_nr1hscYbC31sqpuloo1_540,98667,0 818,FRAMEQA38044,black,what is the color of the side?,tumblr_nnjw5ee9J71upsi9qo1_400,66985,2 819,FRAMEQA5251,black,what is the color of the automobile?,tumblr_n8vecizBZQ1sla45lo1_400,76383,2 820,FRAMEQA18436,six,how many keys are laying on top of the counter top?,tumblr_n980oaEVwU1t9r6nmo1_1280,36035,1 821,FRAMEQA31314,white,what is the color of the shirt?,tumblr_ne15z6JtB31qdl31go1_250,6499,2 822,FRAMEQA6030,horses,what are running in the field?,tumblr_nesu4nuPbX1tzd5txo1_500,97005,0 823,FRAMEQA41933,black,what is the color of the suit?,tumblr_naywiz1q9Q1sqzd72o1_250,19324,2 824,FRAMEQA2096,red,what is the color of the sofa?,tumblr_n89ev1boWG1tzl5c2o1_250,16324,2 825,FRAMEQA17897,black,what is the color of the top?,tumblr_ndvt8siwvI1s1tnf7o1_400,77723,2 826,FRAMEQA48562,car,what is the man driving?,tumblr_ncqdikuiJz1r9i49ro1_500,100071,0 827,FRAMEQA17716,two,how many men are making hand gestures and kissing?,tumblr_nbyol8TrRL1tdh0pko1_250,40211,1 828,FRAMEQA25494,handgun,what is the personal loading and pointing it at someone?,tumblr_nknokcptLl1s00ofxo1_500,99807,0 829,FRAMEQA4217,three,how many guys raise their arms high and interlock their fingers on stage?,tumblr_ng3gmzTe6F1qlnl24o1_400,44882,1 830,FRAMEQA47360,two,how many boys look up and start to wave their arms?,tumblr_nr5t5gfWQk1tjkho6o1_400,62110,1 831,FRAMEQA37525,car,what is driving slow on the track?,tumblr_nbhh5j3uCN1tx8mn0o1_400,52689,0 832,FRAMEQA21853,two,how many men in white shirts are dancing on stage?,tumblr_naq9tgb73C1retsn4o1_500,96116,1 833,FRAMEQA1726,six,how many pop stars are posing in front of a brick wall?,tumblr_ncczjfdwFt1tav0gmo1_500,93175,1 834,FRAMEQA7085,brown,what is the color of the hair?,tumblr_n97ntjwFce1qaeqj9o1_250,43796,2 835,FRAMEQA6241,one,how many woman lifts her shirt and one woman smiles?,tumblr_namg8z7z3Y1tdthfeo1_250,1696,1 836,FRAMEQA40383,black,what is the color of the hair?,tumblr_nrkai5chFn1uqslqko1_250,16524,2 837,FRAMEQA20473,gray,what is the color of the hat?,tumblr_njv8g32euR1rregeqo1_500,10251,2 838,FRAMEQA17352,green,what is the color of the shirt?,tumblr_np7lqwoYcO1s2a75qo1_500,62811,2 839,FRAMEQA13553,white,what is the color of the hair?,tumblr_nban5mzZZr1tk3k4do1_400,33901,2 840,FRAMEQA5896,two,how many happy men laugh and show their tongues at each other?,tumblr_ncrt5nXvpv1tll0p8o1_400,78962,1 841,FRAMEQA29911,cat,what is receiving the belly rub?,tumblr_nk5yoq9wXv1s6zpepo1_250,78462,0 842,FRAMEQA21092,motorcycle,what does the man slide off on the busy racetrack?,tumblr_nrep9tsyF51tx8mn0o1_400,78229,0 843,FRAMEQA40577,bear,what is blown up by the grenade?,tumblr_ndy7ccfmXN1rfibsxo1_400,62905,0 844,FRAMEQA50839,puppy,what is running and falls off the step?,tumblr_ncyjsnTzTm1tty0voo1_400,56199,0 845,FRAMEQA4339,three,how many young star is wearing white clothes are dancing with exciting look?,tumblr_nprmzqr4Z81tkeou1o1_400,18456,1 846,FRAMEQA48,four,how many young man are standing next to each other?,tumblr_nknvvc6vsl1sac2yno1_400,41115,1 847,FRAMEQA29221,napkin,what did the man in a tuxedo throw on a table?,tumblr_nht0k7k5Mk1sd3lvvo1_1280,20050,0 848,FRAMEQA17199,black,what is the color of the hair?,tumblr_nd0p5v2Azs1qejouoo1_500,92584,2 849,FRAMEQA3200,two,how many woman is smiling and moving his head?,tumblr_nbuq7antOu1t9h1yfo1_400,52004,1 850,FRAMEQA5245,two,how many men are poking each other while smiling?,tumblr_nd8dp4ELQI1tkatv1o1_500,93303,1 851,FRAMEQA5211,one,how many boy is trying to lift to another boy?,tumblr_nj9wpp5Ga01tka8t6o1_250,5200,1 852,FRAMEQA18497,white,what is the color of the helmet?,tumblr_np9l67iE301te94myo1_400,19930,2 853,FRAMEQA26376,two,how many young men dressed in black using a shotgun?,tumblr_ndgdjmRq281tk9m4mo1_400,30918,1 854,FRAMEQA32950,white,what is the color of the flower?,tumblr_ne12dpfUWZ1rbkthoo1_400,13174,2 855,FRAMEQA30216,dog,what is scared with the chocolate?,tumblr_njp4xkNl8t1tk2ngvo1_500,67971,0 856,FRAMEQA51667,black,what is the color of the sweatshirt?,tumblr_nfruzax6C81tx8l3to1_400,71405,2 857,FRAMEQA783,three,how many men are running in the swift direction?,tumblr_nb53jhDegX1tkdwmzo1_500,73706,1 858,FRAMEQA46489,bottle,"what is the man drinking ,?",tumblr_n8qvxbfc1Y1t6142fo1_250,17644,0 859,FRAMEQA24088,car,where did man starts to grin whilst sit?,tumblr_nk2v6r00g21unqpa3o1_250,24223,3 860,FRAMEQA46813,chair,where is the man slowly spinning around?,tumblr_ncq2bdiskz1qayc5ro1_400,34906,3 861,FRAMEQA32695,red,what is the color of the car?,tumblr_n9066tnq0A1tx8mn0o1_400,78618,2 862,FRAMEQA24894,frog,what climbed onto the person 's hand?,tumblr_npfa926ftF1rhl4f0o1_400,55339,0 863,FRAMEQA26459,two,how many man are kissing on stage then hug?,tumblr_nl24xtN6ei1u39i7yo1_250,5535,1 864,FRAMEQA45048,cat,what is walking in the big wheel?,tumblr_nrjzfx6FL41uz06r7o1_400,13614,0 865,FRAMEQA42890,two,how many boys are singing on the stage?,tumblr_nciucwq9Nb1tlb9eao1_500,71612,1 866,FRAMEQA48786,red,what is the color of the button?,tumblr_n9ohi0oK5e1tewfk6o1_250,9435,2 867,FRAMEQA5483,two,how many people is wearing all white are dancing?,tumblr_nbdij9TJS41swv315o1_400,38898,1 868,FRAMEQA33529,black,what is the color of the pants?,tumblr_njo0rmCdNd1u45agco1_250,14022,2 869,FRAMEQA1743,shirt,"what is the woman with long brown hair , wearing , animal print pants and pink shoes is dancing on a sidewalk?",tumblr_np97noimRj1swewioo1_250,43615,0 870,FRAMEQA38425,cat,what is the hand scratching a cat and is pushing the hand back?,tumblr_nku8674mFY1qcrdgyo1_250,3555,0 871,FRAMEQA49203,black,what is the color of the crow?,tumblr_nl2rl5ShaE1rftdx0o1_250,23330,2 872,FRAMEQA3543,car,what is the young man driving with passengers in the back?,tumblr_nbi0cr9dUk1tjt4u9o1_400,78816,0 873,FRAMEQA21703,butt,what is the woman shaking in her pajamas?,tumblr_naymij4o491rnas60o1_250,1334,0 874,FRAMEQA38704,white,what is the color of the hat?,tumblr_nejj0xVfBd1s9dtupo1_400,29070,2 875,FRAMEQA440,bicycle,what is the man riding around in a circle?,tumblr_neozsacZoD1r31wzpo1_500,56833,0 876,FRAMEQA44036,gray,what is the color of the jacket?,tumblr_nabkywE1ZI1r0f68xo1_500,98966,2 877,FRAMEQA40677,guitar,what is the guy playing while turning around?,tumblr_nd9djqIJG21r5rpejo1_250,27298,0 878,FRAMEQA36526,blue,what is the color of the sweatshirts?,tumblr_nkoga4fMRx1r9ka6jo1_500,90422,2 879,FRAMEQA7896,two,how many guys disguised are jumping and fall out in a room?,tumblr_n9owcumLu21tiyxk9o1_400,98117,1 880,FRAMEQA2765,blue,what is the color of the outfit?,tumblr_n9769ytMjb1rmykdao1_400,47723,2 881,FRAMEQA52702,pipe,what are the group of women lighting?,tumblr_n9u8lkYzEh1txrs01o1_500,85909,0 882,FRAMEQA837,black,what is the color of the cat?,tumblr_nfscrpUrfv1u4v3ypo1_250,55669,2 883,FRAMEQA39823,one,how many hand is the woman with blonde hair singing and waving?,tumblr_n9fnbbZzP71tinccvo1_250,23158,1 884,FRAMEQA11321,button,what does the woman look around and almost presses?,tumblr_n9ohi0oK5e1tewfk6o1_250,9435,0 885,FRAMEQA28805,brown,what is the color of the hair?,tumblr_n9jr6l5xL11tfx0hzo1_250,16551,2 886,FRAMEQA41330,door,what does the girl with a red jacket open?,tumblr_naf5g9uK0E1tjtk3vo1_250,16675,0 887,FRAMEQA38196,two,how many fingers is the person with cap moving?,tumblr_nbe95pILAZ1tx4ofso1_400,78959,1 888,FRAMEQA9098,two,how many men in a studio are laughing?,tumblr_n9paf34bUZ1s5yymto1_400,58609,1 889,FRAMEQA38591,white,what is the color of the objects?,tumblr_nhtmvfNyZT1t5ojzdo1_250,53339,2 890,FRAMEQA6412,blue,what is the color of the mat?,tumblr_nfo9p0RhAD1rhkkm6o1_400,19634,2 891,FRAMEQA7796,bedroom,where is the girl doing a handstand?,tumblr_nascwgRcXO1tjbf2fo1_400,35075,3 892,FRAMEQA36007,panda,what is hugging its mother?,tumblr_nc5pmkrxPP1tm39w8o1_500,99498,0 893,FRAMEQA36471,guitar,what is the guy laughing and another one is playing?,tumblr_nho4lw7YQP1tooeulo1_500,86177,0 894,FRAMEQA3881,guitar,what is the guy playing around a crowd in a stage?,tumblr_nclkqg2v8l1td05izo1_500,57625,0 895,FRAMEQA43072,red,what is the color of the carpet?,tumblr_noqxz1gAUC1smzq6ko1_400,77681,2 896,FRAMEQA13412,jacket,what did the man give to the woman?,tumblr_nomsgtmnsl1upriqso1_400,67814,0 897,FRAMEQA31904,car,what does roller plummet quickly down the track?,tumblr_nfa5niq6tJ1skrnl9o1_250,43054,0 898,FRAMEQA50017,black,what is the color of the man?,tumblr_n9z2mjZG4z1qkzi04o1_250,23777,2 899,FRAMEQA27527,two,how many soldiers is hug each other than one falls back?,tumblr_n95vewpyij1s6octbo1_400,83510,1 900,FRAMEQA27496,panda,what plays and jumps in the snow?,tumblr_nk550nmZNP1u8uroco1_400,52678,0 901,FRAMEQA49717,two,how many men shake hands and hug each other?,tumblr_nk0daewIku1qhhc4qo1_500,72486,1 902,FRAMEQA34517,red,what is the color of the top?,tumblr_nqyg7mFFIG1rzqz74o1_540,97367,2 903,FRAMEQA38406,microphone,what is the man wearing a tie picks up?,tumblr_nc2atpQsnX1rqpeyho1_400,63247,0 904,FRAMEQA30015,room,where is the girl raising her arm?,tumblr_nbf3keXrUR1tlp8abo1_1280,60932,3 905,FRAMEQA1230,turtles,what are swimming with some fish?,tumblr_n9r1ab8DhJ1twtgiao1_400,59201,0 906,FRAMEQA45441,black,what is the color of the shirt?,tumblr_noc8a1qRoV1sjmszyo1_500,59778,2 907,FRAMEQA26444,two,how many people are dancing and put their right hands up to their faces?,tumblr_np8ku9CRtg1rtl9udo1_400,79118,1 908,FRAMEQA2978,four,how many men are riding in the car laughing?,tumblr_n8sl7sBrq41qjv5vmo1_400,31074,1 909,FRAMEQA43416,yellow,what is the color of the uniform?,tumblr_na3m6nB3jv1sicolwo1_250,43933,2 910,FRAMEQA27707,airplane,"what is about to land , but keeps flying?",tumblr_n8q0g7y49C1rk1fx6o1_400,25285,0 911,FRAMEQA3046,black,what is the color of the hair?,tumblr_nraprjJl3w1uagl5ho1_500,25119,2 912,FRAMEQA12420,one,how many man is sitting at the table with his laptop?,tumblr_nc7ew9nZQK1tgyh35o1_400,64912,1 913,FRAMEQA43745,headset,where is the man moving his head and losing them?,tumblr_nan1xwT9HS1s89twbo1_250,18907,3 914,FRAMEQA32271,lobby,what does the woman enter at the same time the man falls to the ground?,tumblr_nasn21w9Ch1sk96t7o1_400,73536,0 915,FRAMEQA46158,pelican,what walks into the store and carries something out?,tumblr_n9r2p3I67n1txmq72o1_250,23722,0 916,FRAMEQA31946,machine,where does the man put his dollar?,tumblr_n9by5h0MsZ1tb760zo1_400,13027,3 917,FRAMEQA3905,car,what is the man with a backpack on waving in the air?,tumblr_nauydkI1fU1rhx3k3o1_400,68080,0 918,FRAMEQA26654,dive,what is the young boy with blue swimming trunks doing into the swimming pool at night?,tumblr_nr1y86kZN91uzd4cyo1_400,55543,0 919,FRAMEQA3582,two,how many artists are taking photos at a festival?,tumblr_nookpfY89v1sar5kpo1_400,57351,1 920,FRAMEQA25807,car,what videotapes the road in front of them as they drive?,tumblr_ne00j9tc0m1tx8mn0o1_400,55497,0 921,FRAMEQA23837,car,what is driving along the road?,tumblr_negevo44tS1u25ovvo1_400,63576,0 922,FRAMEQA27475,microphone,what does the man in a black shirt shake?,tumblr_n8pqj1rlmp1t29pn7o1_250,18874,0 923,FRAMEQA46437,two,how many men are dancing together on the stage?,tumblr_nqkzt4vq5x1usmrfgo1_500,37400,1 924,FRAMEQA17391,cage,where is the rabbit eating grass?,tumblr_nfoh2z9C1M1u3ads9o1_250,14265,3 925,FRAMEQA29870,room,where is the boy walking and smiling?,tumblr_nk6bg0r3Mt1u80smqo2_500,97152,3 926,FRAMEQA9899,two,how many black men are talking and then bobbing their heads?,tumblr_nd3x8y1KwP1qla0yao1_500,17928,1 927,FRAMEQA14456,brown,what is the color of the hair?,tumblr_ngsh5hUjvY1qjhpqlo1_500,46756,2 928,FRAMEQA44292,cat,what hits the puppy and the puppy falls?,tumblr_ncl35rMLRE1snjqzdo1_400,82992,0 929,FRAMEQA25507,hat,what is the man wearing and showing how strong he is?,tumblr_nk7in2oINS1qgcalbo1_250,22556,0 930,FRAMEQA5349,dishes,what does the man stack quickly before spraying them and putting them in an industrial dishwasher?,tumblr_njnbr0swrC1un86uao1_400,50808,0 931,FRAMEQA31957,hat,what is moving his head?,tumblr_n9d2ncvUaX1rqdzb7o1_500,93281,0 932,FRAMEQA17663,two,how many girls is wearing black are talking?,tumblr_nnjw5ee9J71upsi9qo1_400,66985,1 933,FRAMEQA35371,black,what is the color of the suit?,tumblr_nb6nz2bkKp1rbxybto1_500,57826,2 934,FRAMEQA15891,two,how many women are giving an interview and brushing something off their faces?,tumblr_nrd6a5lSj81r5wqxpo1_400,91865,1 935,FRAMEQA12745,dog,what runs to catch the snow ball?,tumblr_njuegdc5bY1rm7vxeo1_400,4946,0 936,FRAMEQA30173,wagon,what did the cat push across the floor?,tumblr_nbiz26o6VX1tdjuqvo1_400,72091,0 937,FRAMEQA9165,one,how many hockey player swats the puck before it reaches the goal line?,tumblr_ndpnjgXCsI1qhrx75o1_400,74751,1 938,FRAMEQA25412,four,how many young men perform the trick with a hat?,tumblr_nc826aUSI71slj978o1_400,46829,1 939,FRAMEQA38636,seven,how many puppies are running in the hallway?,tumblr_n92lo9JEvZ1tfz9ppo1_400,52245,1 940,FRAMEQA24772,kitten,what is playing with the cat 's tail?,tumblr_npdhgdA8ez1sxvd87o1_400,43334,0 941,FRAMEQA5167,white,what is the color of the while?,tumblr_n941xboVDa1sdnal9o1_500,93820,2 942,FRAMEQA37072,two,how many men with microphones are performing on stage?,tumblr_nh9wn01n4a1rwuk20o1_400,58448,1 943,FRAMEQA2294,bed,where is the man going to lay down while a woman sits on another bed?,tumblr_n98o4v22qh1re9f1uo1_500,61258,3 944,FRAMEQA45582,boat,where is the man driving a woman?,tumblr_nap36olmED1tk7kwio1_400,66358,3 945,FRAMEQA41635,bag,where is the man with a long beard putting an animal?,tumblr_ndjshjXoB91s71nvbo1_250,5971,3 946,FRAMEQA24105,white,what is the color of the cloth?,tumblr_nh0ddtHrBj1tg85j7o1_400,36841,2 947,FRAMEQA43353,black,what is the color of the jumps?,tumblr_nbivs5zZZp1spnjj2o1_500,96082,2 948,FRAMEQA1631,cat,what is being fed while sat on its back legs?,tumblr_nhyvthzIw21txchtio1_500,92169,0 949,FRAMEQA9268,two,how many men are standing on stage?,tumblr_nhlu54rL2M1tragfyo1_1280,55861,1 950,FRAMEQA41551,helmet,what is the guy putting on?,tumblr_nrg8fxNNsJ1qh2eiuo1_400,65735,0 951,FRAMEQA32206,bear,what is lying down while the chipmunk playing with the bear?,tumblr_nde6csPi0h1rg2esto1_400,90634,0 952,FRAMEQA34257,butterfly,what landed on a yellow flower then flies away?,tumblr_nkwxxlRnvb1sfdqnro1_400,38744,0 953,FRAMEQA50141,room,where is the man in a blue shirt kissing a woman?,tumblr_nrhrb2m1Vw1uzsdhio1_250,21057,3 954,FRAMEQA11728,two,how many men are playing guitars while another man sings on a stage?,tumblr_ng5rs5F6tJ1t1nzngo1_500,79612,1 955,FRAMEQA9978,cat,what does the squirrel jump and scares?,tumblr_ncko1cgtVl1rwkjivo1_400,45420,0 956,FRAMEQA27195,flask,what is the woman offering to a child who is refusing?,tumblr_ndvxfgvaki1r72dfyo1_500,69957,0 957,FRAMEQA21367,three,how many cars are racing around the race track?,tumblr_nhbn0vv8Gp1tx8mn0o1_400,86055,1 958,FRAMEQA48984,banana,what is the baby elephant receiving?,tumblr_n9rldadoip1twznkvo1_250,41985,0 959,FRAMEQA22812,black,what is the color of the hat?,tumblr_nrheo9QzJb1uvzz45o1_400,34711,2 960,FRAMEQA5203,flasks,what are five boys in a science class looking or holding?,tumblr_naap6eJLbo1t2bkpqo1_500,93485,0 961,FRAMEQA19923,black,what is the color of the brushes?,tumblr_nbw7xf7Ttb1s4ea5ko1_250,80815,2 962,FRAMEQA33157,purple,what is the color of the jacket?,tumblr_njw5w8Ium11shns3io1_250,81693,2 963,FRAMEQA25747,two,how many basketball teams are playing against each other?,tumblr_nagichuIGX1tvguuco1_250,53810,1 964,FRAMEQA52600,bus,what do three boys in leather jackets ride?,tumblr_ngh82hywbz1s4yzawo1_400,9181,0 965,FRAMEQA39145,tree,what did the purple haired person hug?,tumblr_ndurbh6w6U1rm0u6lo1_400,58760,0 966,FRAMEQA9015,black,what is the color of the lady?,tumblr_nao4codJpf1tdnw9bo1_400,15264,2 967,FRAMEQA9715,blue,what is the color of the wave?,tumblr_nl0ll9YbS81un7qbto1_250,1782,2 968,FRAMEQA25862,guitar,what is the man playing and singing a song?,tumblr_ney1qn9pP21ssuua8o1_250,31604,0 969,FRAMEQA25618,door,what opens and two men walk out?,tumblr_nqtjxp216t1rkak8mo1_500,14818,0 970,FRAMEQA8499,device,what is the man dancing and holding?,tumblr_neels4VnNo1u13kpoo1_250,5933,0 971,FRAMEQA41743,two,how many men sat in their car waving their hands around?,tumblr_nqtbhyWjrF1twsxdzo1_400,78772,1 972,FRAMEQA49881,blue,what is the color of the character?,tumblr_nbel8wk3Ts1qe6gfro1_400,60358,2 973,FRAMEQA2879,bicycle,"what is the person wearing a white face mask , is riding through the house?",tumblr_n9bz5ojRqc1t99fkdo1_400,29183,0 974,FRAMEQA45944,white,what is the color of the hat?,tumblr_nckb7kU2K51tvnqzoo1_500,35907,2 975,FRAMEQA34937,guitar,what is the man in a white suit playing?,tumblr_nkn9fyd7VX1rr455so1_400,28361,0 976,FRAMEQA41390,room,where is the man in a brown suit dancing?,tumblr_nfxfvg7gBH1th1z7ro1_400,33558,3 977,FRAMEQA45211,horse,what runs and jumps over two hurdles?,tumblr_nbhxrqCzyf1qmig0no1_400,4107,0 978,FRAMEQA33461,black,what is the color of the glasses?,tumblr_na0gavzs871s0p6l4o1_250,7743,2 979,FRAMEQA37244,kitten,what is laying on its back and playing with a persons fingers?,tumblr_nr1vupGapa1tk2ngvo1_400,33988,0 980,FRAMEQA29512,black,what is the color of the piece?,tumblr_naipp52gMh1s5yrv2o1_400,35259,2 981,FRAMEQA30889,car,what is driving down the road on a sunny day?,tumblr_nelzmf2VB71u25ovvo1_400,63494,0 982,FRAMEQA14978,two,how many men are talking one is looking very shocked?,tumblr_nkqvdv6FpL1sr2c0to1_400,64550,1 983,FRAMEQA1223,dog,what is jumping to the bush next to another dog?,tumblr_nb982i8Liq1slwrsuo1_400,37843,0 984,FRAMEQA26869,black,what is the color of the cat?,tumblr_n9wrdo0tex1tff33do1_400,35209,2 985,FRAMEQA11158,room,where is the guy looking?,tumblr_nkyabbLkZT1u59fpmo1_400,79233,3 986,FRAMEQA14987,sky,"what is full of intense , bright lightning?",tumblr_njsuvl3MW11qi6uhso1_250,27442,0 987,FRAMEQA39497,glasses,what is the man putting?,tumblr_nr96lqiPla1u4e9dho1_500,99905,0 988,FRAMEQA34620,black,what is the color of the clothes?,tumblr_na5x8c0GrZ1rtsaseo1_500,43276,2 989,FRAMEQA42181,blue,what is the color of the team?,tumblr_nc7fmfQkTR1ry6fnao1_400,67442,2 990,FRAMEQA23420,purple,what is the color of the dress?,tumblr_nrd3vnKADH1uakailo1_400,64496,2 991,FRAMEQA47798,car,where did the woman and man kiss kiss?,tumblr_njxd36lfK11soklsio1_1280,81055,3 992,FRAMEQA36325,two,how many young people in white shirts are carrying out a performance?,tumblr_njtkw6qmuL1u6pwr8o2_r2_500,86491,1 993,FRAMEQA44191,blue,what is the color of the shirt?,tumblr_nb9dmhTaWM1slwrsuo1_400,76757,2 994,FRAMEQA30678,black,what is the color of the hat?,tumblr_n9e1u4tufS1qdb68yo1_400,59766,2 995,FRAMEQA49238,cat,what is eating from the bowl and a puppy is biting its ears?,tumblr_n8hkl5Vn171tgetb4o1_250,27225,0 996,FRAMEQA19351,mirror,where is the young lady looking?,tumblr_nfglj8pbh61s90br6o1_250,51510,3 997,FRAMEQA33307,white,what is the color of the icing?,tumblr_no73q2fm0I1uuf348o1_250,27138,2 998,FRAMEQA1929,blue,what is the color of the man?,tumblr_nkryszFDPq1tvfpn9o1_250,13358,2 999,FRAMEQA52527,red,what is the color of the cap?,tumblr_ngcotwcexW1u1teqeo1_400,8581,2 1000,FRAMEQA27011,yellow,what is the color of the hat?,tumblr_ncxyf0KdgZ1u0b3uso1_500,88133,2 1001,FRAMEQA48380,dog,what is playing with the toy and looks up?,tumblr_niu5dzNP7G1u62tooo1_400,31034,0 1002,FRAMEQA38623,umbrellas,what are the man and a woman holding?,tumblr_nbanbjaQeV1rkcp22o1_400,28963,0 1003,FRAMEQA8856,two,how many women are wearing identical jackets and holding hands?,tumblr_nbc9b4q2IM1sxapr1o1_500,56668,1 1004,FRAMEQA35256,two,how many men start strutting down the isle at a fashion show?,tumblr_nc94ra2nr01r73xvvo1_500,62033,1 1005,FRAMEQA9562,room,where are the group of cats racing?,tumblr_nbmj5hTe5U1tegtx7o1_400,41227,3 1006,FRAMEQA12554,cat,"what sits on the dresser in a bedroom , yawns then puts out its paw and pushes a jar off onto the floor?",tumblr_na403e8Ozd1qeda9uo1_400,55798,0 1007,FRAMEQA42198,skateboard,what does the guy jump from the ramp over the rail?,tumblr_nam2idMRyx1qkelnfo1_400,66092,0 1008,FRAMEQA13456,cupcakes,what is the girl showing her dog?,tumblr_njqkzeml8y1unykvpo1_250,19006,0 1009,FRAMEQA46064,cat,what sits in front of a woman who is doing a handstand?,tumblr_nr10n4blvp1qzefipo1_r1_400,76416,0 1010,FRAMEQA12784,blue,what is the color of the shadow?,tumblr_n9hknn7k6k1rfh5aho1_500,52565,2 1011,FRAMEQA44930,two,how many women decide to kiss each other on a bed?,tumblr_nqn09pgpYK1uzayvxo1_400,54039,1 1012,FRAMEQA52471,shoe,what is the woman walking on a ledge loses?,tumblr_nqkhzz8i841uzwc0eo1_500,92675,0 1013,FRAMEQA23593,two,how many men is this image of playing with fire?,tumblr_nq5wjxq0M31s71nvbo1_400,45240,1 1014,FRAMEQA4542,house,where are two women talking?,tumblr_nqr8fvbChQ1u0ql9oo1_500,58093,3 1015,FRAMEQA14415,two,how many girls kiss each other and walk to the doors of their rooms?,tumblr_nq3qalChFT1u5d8nbo1_500,69235,1 1016,FRAMEQA27788,cloak,what is the woman wearing?,tumblr_nc2j3elkE11ti5nreo1_250,26154,0 1017,FRAMEQA894,cigarette,what is the young woman in a black mask smoking?,tumblr_ngps4f7xik1smwx64o1_500,48187,0 1018,FRAMEQA16464,apple,what is the young man eating?,tumblr_nf2d03y10U1si6w6mo1_250,26952,0 1019,FRAMEQA34530,two,how many little girls are sitting and watching the little boy dance on television?,tumblr_n9kmf8j4gZ1snj1pfo1_500,2948,1 1020,FRAMEQA42561,cigarette,what is the well-dressed woman smoking?,tumblr_nk29kx3YYa1tmp8jxo1_500,71292,0 1021,FRAMEQA46681,black,what is the color of the coat?,tumblr_n8wsbjPwDe1rwrktro1_500,75407,2 1022,FRAMEQA12769,guitar,what is the man swinging around and showing off?,tumblr_ndbe87urrf1tku5kko1_250,38920,0 1023,FRAMEQA10130,two,how many girls are bending over the table and smiling?,tumblr_ng9sg3VuL11t107ayo1_400,94319,1 1024,FRAMEQA6754,white,what is the color of the shirt?,tumblr_nkiqveRCuY1s6zpepo1_250,43646,2 1025,FRAMEQA51561,car,what pulls out into traffic using its blinker?,tumblr_noipe7K8wn1uvy8rfo1_500,87621,0 1026,FRAMEQA11406,brown,what is the color of the clothes?,tumblr_nawdliKwAp1tfcz5mo2_500,56608,2 1027,FRAMEQA7019,black,what is the color of the hair?,tumblr_njn45wPOVm1unvw6mo1_250,13627,2 1028,FRAMEQA50144,car,where does the girl stick out her tongue?,tumblr_nf8zzag5pK1tm2ntoo1_500,81639,3 1029,FRAMEQA49978,gray,what is the color of the suit?,tumblr_nbd6dlVfS21tkhe6eo1_400,98274,2 1030,FRAMEQA3167,wall,what is the girl with black top smoking and another girl moves backwards and hits?,tumblr_neafznl88c1u1k47uo1_250,36680,0 1031,FRAMEQA7387,chair,where is the man making a gun gesture with his hands and then falling backwards?,tumblr_n9ensmVNvD1ttu918o1_500,100105,3 1032,FRAMEQA8805,two,how many women are holding hands while singing?,tumblr_nc0b2lDGef1tp9bieo1_500,20330,1 1033,FRAMEQA23236,two,how many man are sitting down and laughing?,tumblr_nkn45o8Lso1sl4ny1o1_400,37681,1 1034,FRAMEQA41150,shirt,what is the young man holding?,tumblr_ne15z6JtB31qdl31go1_250,6499,0 1035,FRAMEQA51282,horns,what does the person with a blue painted face wear while sitting in front of a christmas tree?,tumblr_ngnw7hrGPi1u60vhlo1_400,33756,0 1036,FRAMEQA51834,car,what is racing down the street at night?,tumblr_np8fpolVPv1uvid27o1_1280,65265,0 1037,FRAMEQA26052,five,how many women in purple skirts are dancing on stage?,tumblr_naxxhzcV1v1r7kne1o1_400,91556,1 1038,FRAMEQA39635,cat,what is lifting its legs up before sinking between two cushions?,tumblr_nfd3x2AVM91u2rlp7o1_250,9346,0 1039,FRAMEQA13193,two,how many woman go face to face in a heated moment?,tumblr_nkzgpnYwQD1qibh0io1_250,49609,1 1040,FRAMEQA22466,room,where are two people dancing?,tumblr_nadd8dv4Ho1s34j90o1_400,57968,3 1041,FRAMEQA45858,cat,what does the man hold up?,tumblr_nki24gDtbq1u554gyo1_500,74869,0 1042,FRAMEQA14283,trick,what is the dog making?,tumblr_ncw1h7V8au1rmdsrwo1_400,63248,0 1043,FRAMEQA17334,date,what are the guy and girl having?,tumblr_ncdu2a1Q4s1terae6o1_500,100516,0 1044,FRAMEQA47350,door,what does the blonde woman pick up a purse and coat then opens?,tumblr_nkgnrucLOa1r0ia88o1_400,94553,0 1045,FRAMEQA41563,bar,what is the man sitting with a drink in front of him?,tumblr_nka7mjdwMC1tgj32eo1_250,7434,0 1046,FRAMEQA50302,three,how many men are hopping down the grassy slope?,tumblr_n89x91hNuc1t0k260o1_400,74034,1 1047,FRAMEQA10083,red,what is the color of the shirt?,tumblr_nariz0niLN1tbdnaro1_500,62341,2 1048,FRAMEQA6162,beer,"what is the man drinking and , he is talking to a woman?",tumblr_nb6fhzbqGt1typnbho1_400,32037,0 1049,FRAMEQA50497,cat,what is cleaning its paw and stops with its tongue sticking out?,tumblr_nfscrpUrfv1u4v3ypo1_250,55669,0 1050,FRAMEQA8446,shirt,what is the man with a striped shirt taking off?,tumblr_nbp36t1GRR1tod7hho1_400,32577,0 1051,FRAMEQA17563,car,what does the woman on the phone see driving through her window?,tumblr_nr6r0mgIj01qdqijqo1_400,60876,0 1052,FRAMEQA31129,two,how many planes are flying over the desert?,tumblr_nnq4tzM7M51urqm0mo1_500,85138,1 1053,FRAMEQA2062,hat,what does the man with an ugly face remove?,tumblr_n9m2vceX821rrc0yzo1_500,22915,0 1054,FRAMEQA34757,car,where is the girl wearing lipstick and a man is going?,tumblr_nooov5ZSds1un86uao1_400,15396,3 1055,FRAMEQA1133,white,what is the color of the man?,tumblr_ndq73y7mT21u1hp4lo1_500,97252,2 1056,FRAMEQA7927,blue,what is the color of the sweater?,tumblr_n9n8owFIkV1se1vi6o1_250,47029,2 1057,FRAMEQA17357,hill,what are many people riding up on horseback?,tumblr_nb2mbwe4XI1rfbfb1o1_400,54103,0 1058,FRAMEQA31595,white,what is the color of the suit?,tumblr_ng9rdfabh31slj978o1_250,24340,2 1059,FRAMEQA45184,horse,what is jumping over the horizontal pole?,tumblr_ngz9h8TxpG1qe2thio1_500,75325,0 1060,FRAMEQA23293,cat,what is sniffing around as it gets petted?,tumblr_n8v9ubRZEM1qkep7so1_400,28951,0 1061,FRAMEQA9176,one,how many woman looks at the other woman in shock?,tumblr_nes3koGSue1s2cbf9o1_250,47312,1 1062,FRAMEQA37949,bar,where is the girl getting bored?,tumblr_n8qp6qt1ZD1qa2n7ao1_400,19039,3 1063,FRAMEQA7093,room,where is the woman dancing while a man is scarred?,tumblr_n9x10wA8li1rfjpv9o1_400,75556,3 1064,FRAMEQA35075,cat,what is struggling to get a tube off of its head?,tumblr_ndk9uvBSzG1rnjm0co1_250,69793,0 1065,FRAMEQA19555,two,how many men in jackets are staring and moving?,tumblr_njdw25fiSS1s407lzo1_500,101501,1 1066,FRAMEQA45960,cat,what is climbing into the bag?,tumblr_nhg6vkuI8y1tgetb4o1_250,53401,0 1067,FRAMEQA28118,cat,what is walking on her back two feet and pushing a walker?,tumblr_ndopa89squ1tk9tvao1_500,94715,0 1068,FRAMEQA1188,two,how many fingers is the man holding up near a large truck?,tumblr_nao9dwfbWL1tbsc6ko1_500,70936,1 1069,FRAMEQA12105,black,what is the color of the cap?,tumblr_nkp4kpFCzP1re05rso1_540,96740,2 1070,FRAMEQA11004,two,how many men are holding each other and laughing?,tumblr_na405oJNXw1s7shqdo1_250,16375,1 1071,FRAMEQA2483,cat,what is looking at the cucumber given to him?,tumblr_nrf04cgRUC1ub19xmo1_400,52346,0 1072,FRAMEQA12326,white,what is the color of the top?,tumblr_ndrv3tLHp11t2zhh8o1_100,15895,2 1073,FRAMEQA23597,black,what is the color of the side?,tumblr_nk32pnnazT1skvgwao1_400,83387,2 1074,FRAMEQA2820,white,what is the color of the towel?,tumblr_ne9vnzjRAl1tt3h8co1_250,7859,2 1075,FRAMEQA295,white,what is the color of the girl?,tumblr_nopvobSus81qjdy9xo1_400,59626,2 1076,FRAMEQA25706,two,how many people jump into the pool fully clothed and then hold each other?,tumblr_nqz2rd3kpm1ur7v4wo1_400,60168,1 1077,FRAMEQA36163,pieces,what does the man playing chess with a kid knock off?,tumblr_nkyncrvBNm1r9vyoko1_500,50377,0 1078,FRAMEQA51275,cat,what stands on two legs and scratches itself on the stomach?,tumblr_niq18pqr9L1s6zpepo1_400,28033,0 1079,FRAMEQA31007,car,where is the people watching a beautiful landscape?,tumblr_ndtrd80C3P1s02qi2o1_500,75587,3 1080,FRAMEQA24121,dog,what is kissed by the boy FRAMEQAeatedly?,tumblr_ng2hgxbjKw1t1ijxmo1_1280,56263,0 1081,FRAMEQA717,two,how many people are smiling and laughing beside another person?,tumblr_ndou4ocoom1qkh9mno1_500,89736,1 1082,FRAMEQA18345,stars,what are posing in front of a brick wall?,tumblr_ncczjfdwFt1tav0gmo1_500,93175,0 1083,FRAMEQA6431,two,how many guys is sitting in a car jerk forward and shake their heads?,tumblr_nkh1k0vBMX1thjunio1_400,60945,1 1084,FRAMEQA10013,green,what is the color of the hat?,tumblr_nqx4zeo6jf1skxa1uo1_250,42730,2 1085,FRAMEQA987,red,what is the color of the jacket?,tumblr_n8vrrw9ndC1t8amt8o1_500,75390,2 1086,FRAMEQA37261,two,how many girls are smiling?,tumblr_ng486l8Fhx1u3n62mo1_400,89980,1 1087,FRAMEQA42483,bicycle,what is the guy walking?,tumblr_naz1gjhCtv1rl8ttqo1_500,81910,0 1088,FRAMEQA9867,two,how many men is this wrestling with each other?,tumblr_n9sxngq7FO1tq1ky8o1_250,48622,1 1089,FRAMEQA24728,bed,where is the girl lying and blinking her eyes?,tumblr_njsav5UOz21qieqojo1_400,80301,3 1090,FRAMEQA18825,dog,what does the boy play with a dog and jumps on top of him on the floor?,tumblr_nor474fCEo1slwrsuo1_250,36784,0 1091,FRAMEQA34321,white,what is the color of the floor?,tumblr_nc2rbqVOeq1tgwuamo1_250,69601,2 1092,FRAMEQA18883,room,where are 3 boys dancing and singing?,tumblr_n8sh1pn4ju1sgl6u3o1_250,17230,3 1093,FRAMEQA37820,white,what is the color of the man?,tumblr_nb55ousBnz1r67t5oo1_400,96008,2 1094,FRAMEQA22521,tortoise,what does the bird push into a bin?,tumblr_nb80spNot51tdmffyo1_400,22894,0 1095,FRAMEQA5270,black,what is the color of the dances?,tumblr_nkjwktzR2M1u5fpulo1_250,53381,2 1096,FRAMEQA12546,two,how many people are practicing the dance routine?,tumblr_npbpeoglhd1tqpu60o1_400,61655,1 1097,FRAMEQA32440,blue,what is the color of the shirt?,tumblr_n8pw7xpB2d1qbzxofo1_400,70470,2 1098,FRAMEQA18156,room,where is the girl dancing very funny?,tumblr_ninb3wGwKn1stnum9o1_400,30569,3 1099,FRAMEQA23119,two,how many men are singing and dancing together?,tumblr_novlokWmWb1t6t8bgo1_540,93683,1 1100,FRAMEQA15197,black,what is the color of the shirt?,tumblr_ne9v07TxUL1sjcvc1o1_250,84536,2 1101,FRAMEQA49280,three,how many guys with sunglasses on give the peace sign?,tumblr_nfx7tgZGUP1rm1lhro1_500,101620,1 1102,FRAMEQA15232,two,how many people are in the car?,tumblr_n9l6t6WLLm1shsozuo1_500,88496,1 1103,FRAMEQA35951,car,what is driving down the street?,tumblr_nev5jcwSOk1u25ovvo1_400,63427,0 1104,FRAMEQA50436,dog,what is chasing his own tail?,tumblr_na29ckRUG81tso4bpo1_250,11168,0 1105,FRAMEQA25088,dog,"what jumps after its bowl flips over , and the bowl disappears?",tumblr_nhskwbxgar1rseg36o1_250,3286,0 1106,FRAMEQA6242,green,what is the color of the polo?,tumblr_nrljkbZSIC1u5qz70o1_500,43507,2 1107,FRAMEQA6768,yellow,what is the color of the brush?,tumblr_nkwbkvxn0I1qji9umo1_500,83993,2 1108,FRAMEQA38608,bridge,what stretches over trees and a road?,tumblr_n9ms6r9wt71tis8iio1_400,4457,0 1109,FRAMEQA155,white,what is the color of the shirt?,tumblr_n912asItBL1t5f5kyo1_250,2974,2 1110,FRAMEQA1100,box,what is the man slowly moving?,tumblr_nfas3aICsP1ql0sfgo1_500,55823,0 1111,FRAMEQA34520,blue,what is the color of the suit?,tumblr_n980h4IWmV1tht4eto1_250,40248,2 1112,FRAMEQA7570,two,how many girls is this slowly sticking out their tongues?,tumblr_nkjnj8Qryj1r9w93fo1_500,28474,1 1113,FRAMEQA14420,frog,what is kicking another from in the face?,tumblr_na18cqVtG31sd26g0o1_500,53182,0 1114,FRAMEQA36624,dog,what is taking the bath with some rubber ducks?,tumblr_nqj7ahVNOh1uvie7bo1_400,32783,0 1115,FRAMEQA5367,two,how many men are having the discussion and laughing?,tumblr_nb8e43eKN01r38k4eo1_500,58370,1 1116,FRAMEQA4598,black,what is the color of the hair?,tumblr_npzronrVMY1u66yx8o1_500,22800,2 1117,FRAMEQA22970,cat,what is in the drawer and playing with a person holding a pen?,tumblr_n9vr1xjmof1tdmffyo1_250,27920,0 1118,FRAMEQA8561,tie,what is the man in a suit adjusting?,tumblr_nh7t1vdt1z1s1h8hno1_250,3800,0 1119,FRAMEQA38824,glasses,what are two beautiful women clinking with great joy?,tumblr_na5uo6rEEc1rv06c2o1_250,32590,0 1120,FRAMEQA50248,dog,what is eating food from a green bowl?,tumblr_n8uqen1tDV1sfmhxao1_400,63448,0 1121,FRAMEQA22128,two,"how many people lie on the couch , with one of them embracing the other from behind?",tumblr_nffknrYHRF1tnkfuxo1_500,96520,1 1122,FRAMEQA16355,tree,what is the snake hugging with her body?,tumblr_neu5ybxkBL1tia84ho1_r2_1280,61746,0 1123,FRAMEQA49531,dog,what is wearing headphones and is taking out?,tumblr_nb2o4pgPu71soax42o1_400,90593,0 1124,FRAMEQA48748,one,how many robot is shooting at another robot as a car flips over?,tumblr_n9jmetkIAR1r3tyyjo1_250,50898,1 1125,FRAMEQA4025,dog,what is walking on his front paws?,tumblr_nb2n5xYQmY1tdjuqvo1_500,69298,0 1126,FRAMEQA26672,cat,what sat on the chair?,tumblr_nai6yrCMc21tikvlso1_250,30763,0 1127,FRAMEQA41064,black,what is the color of the shirt?,tumblr_niukh2aLWX1s5eb1go1_500,57258,2 1128,FRAMEQA49761,piano,what is the long-haired man playing?,tumblr_npkv34KrwC1uxdjhyo1_500,39152,0 1129,FRAMEQA10582,hall,where are the men milling about?,tumblr_ncy0evJB7f1sec9ebo1_400,85959,3 1130,FRAMEQA3955,coffee,what is the woman wearing glasses and drinks?,tumblr_nepj4rr5Sb1sht3fmo1_250,86270,0 1131,FRAMEQA15055,four,how many young guys are crawling on their knees?,tumblr_n8rxpzPdkD1sl4h58o1_500,96083,1 1132,FRAMEQA15703,three,how many people are standing in an empty stadium and waving?,tumblr_n9lh8xQHCe1seb31ro1_500,91548,1 1133,FRAMEQA202,shirt,what does the man in red hold?,tumblr_ne9rffF91i1tul4jlo1_250,9054,0 1134,FRAMEQA5780,blue,what is the color of the top?,tumblr_n95fffMAzD1ssybv1o1_400,32383,2 1135,FRAMEQA34607,black,what is the color of the man?,tumblr_ni05so1zMe1qagkngo1_500,54924,2 1136,FRAMEQA34151,peel,what does the man throw and another does a back flip?,tumblr_nbtro0gBQR1tkpzw0o1_400,19682,0 1137,FRAMEQA4324,cutter,what is someone using?,tumblr_nrkqn8quHM1rlpke5o1_250,43955,0 1138,FRAMEQA38647,car,what is swerving down the highway?,tumblr_nfqzsmdHTC1s70xu2o1_500,75116,0 1139,FRAMEQA35736,two,how many men jump and fall on the floor?,tumblr_n9owcumLu21tiyxk9o1_400,98117,1 1140,FRAMEQA2349,chair,where does the girl in a jacket and hat sit down?,tumblr_njyot5SBCc1u2w55do1_250,10185,3 1141,FRAMEQA3708,two,how many men are hugging each other after a game?,tumblr_nd0ttcs6US1s9rulno1_400,78934,1 1142,FRAMEQA15979,blue,what is the color of the shirt?,tumblr_nko38yTj0p1u5tusoo1_400,54430,2 1143,FRAMEQA3050,green,what is the color of the hat?,tumblr_nel8hyd16P1u1bpwwo1_500,87119,2 1144,FRAMEQA43646,two,how many boys are riding the motorcycle down a road?,tumblr_nmcu4vUJJd1sgkvddo1_400,85530,1 1145,FRAMEQA31013,room,where is the young man waving his hands?,tumblr_n8pk4lxsBA1tfou2zo1_400,69872,3 1146,FRAMEQA36483,circle,what does the man draw with his hand?,tumblr_npkxhturUR1uxcyego1_400,73594,0 1147,FRAMEQA46052,sunglasses,what does the man on stage dance and wears?,tumblr_neu6ssZLZI1thwotuo1_400,59095,0 1148,FRAMEQA42923,room,where is the blond haired girl the only female?,tumblr_niwiwlV1AJ1u992i0o1_500,93075,3 1149,FRAMEQA48576,black,what is the color of the man?,tumblr_naf94tXA8J1rjqtkto1_500,83663,2 1150,FRAMEQA16232,hat,what is dancing beautifully?,tumblr_nquqvaPA8u1uzs8n5o1_400,86932,0 1151,FRAMEQA6571,blue,what is the color of the shirt?,tumblr_nbg50jiutg1sa6fwjo1_400,63849,2 1152,FRAMEQA21651,bed,where is the sad looking woman lying?,tumblr_n9zn52IWcy1qcohbro1_400,50343,3 1153,FRAMEQA3595,five,how many men on their knees is gyrating and pulling their shirts up?,tumblr_nompyfnbMq1rbddn1o1_500,83478,1 1154,FRAMEQA24835,red,what is the color of the jacket?,tumblr_naf5g9uK0E1tjtk3vo1_250,16675,2 1155,FRAMEQA34908,orange,what is the color of the uniforms?,tumblr_noch808AgN1s5t003o1_400,14889,2 1156,FRAMEQA20937,brown,what is the color of the hair?,tumblr_nqxrm7mWU81to8r9ro1_250,38935,2 1157,FRAMEQA17639,dog,what is jumping while the woman plays pool?,tumblr_n9khtlxFWW1t7hjz2o1_400,20950,0 1158,FRAMEQA42943,cat,what is the woman with red hair petting?,tumblr_nga6l7burm1u2umgdo1_400,30690,0 1159,FRAMEQA6895,black,what is the color of the woman?,tumblr_nhukmkiiN81u761kgo1_400,35083,2 1160,FRAMEQA48519,tire,what rolls through and men fight fought it kicked it in the kick?,tumblr_nczg2aOKa01tugd7xo1_400,19074,0 1161,FRAMEQA28265,shirt,what does the wrestler rip off and then a basketball player rips his shirt off?,tumblr_nelh3nATly1tte9eno1_400,40152,0 1162,FRAMEQA40110,ball,what is the young man kicking with his foot?,tumblr_nabhgxpYfE1tjaic7o1_r1_400,26368,0 1163,FRAMEQA15399,butts,what are two men holding microphones dance and bump together?,tumblr_n8xhwswWAH1qi4n2uo1_500,83905,0 1164,FRAMEQA37362,two,how many people does there 's in a car with one holding a can upside down?,tumblr_n8s2wj3j9W1s0vm19o1_400,54442,1 1165,FRAMEQA40740,pipe,what is the man in a tan top turning around and putting into his mouth?,tumblr_nc26g4HOAa1qcmk4ho1_250,26086,0 1166,FRAMEQA5898,black,what is the color of the hat?,tumblr_nbdrtjoyYK1tsmfzoo1_400,30461,2 1167,FRAMEQA35787,black,what is the color of the man?,tumblr_nr0veseCZt1ut16xzo1_500,67036,2 1168,FRAMEQA40636,red,what is the color of the hair?,tumblr_nc0mqwuaNb1tz6rpdo1_r1_400,31217,2 1169,FRAMEQA34510,blue,what is the color of the shirt?,tumblr_nbogvmaBEI1szmt4vo1_500,60874,2 1170,FRAMEQA52498,guitar,what is the young man with blonde hair playing?,tumblr_nb40r2QeXA1sky5jwo1_500,78616,0 1171,FRAMEQA21345,car,where is the woman sitting and he rolls up the window?,tumblr_nq3tfgU9Ir1srvjxao1_400,27347,3 1172,FRAMEQA41881,bird,what quickly scooped its head into the water and pulled out a fish for its dinner?,tumblr_naiwug6sJp1slwrsuo1_400,24088,0 1173,FRAMEQA29647,phone,what does the man slam against the wall?,tumblr_nf7ojsshQ11tfts6to1_400,23742,0 1174,FRAMEQA29629,two,how many people hold faces before hugging?,tumblr_nreb388PeN1rb1qd6o1_250,4298,1 1175,FRAMEQA51838,two,how many people are holding hands and then let go?,tumblr_ngx9rcVWEc1qdlgqgo1_250,95667,1 1176,FRAMEQA26234,black,what is the color of the hair?,tumblr_ndii8agRre1qegwm1o1_500,89932,2 1177,FRAMEQA35463,star,what is putting on the performance?,tumblr_nkoxxkqbhT1rmkveto2_250,14042,0 1178,FRAMEQA3036,four,how many men stare at each other while one of them rages?,tumblr_ngbwfkoLMR1tdmffyo1_250,39619,1 1179,FRAMEQA35333,red,what is the color of the shirt?,tumblr_n96zc72rII1tdjuqvo1_400,72856,2 1180,FRAMEQA40587,pen,where is the dog dancing and jumping at the fence?,tumblr_nfbeo6Qqr91tl8fnfo1_400,80040,3 1181,FRAMEQA42265,two,how many people are kissing each other on a bed?,tumblr_n9jqueST511rap838o1_250,230,1 1182,FRAMEQA21411,one,how many guy is turning his head towards another guy?,tumblr_nkjeasMqCh1up0xtfo1_500,101105,1 1183,FRAMEQA41673,red,what is the color of the shirt?,tumblr_nbdwc4MSz61tdjuqvo1_400,65180,2 1184,FRAMEQA2352,black,what is the color of the playing?,tumblr_np0bdooxmU1uwhbn9o1_540,100317,2 1185,FRAMEQA42925,dog,what is trying to catch something while another dog is holding it from the back?,tumblr_ndro45f3DA1qhn9jdo1_400,81160,0 1186,FRAMEQA2990,stairs,"what are the women walking up , they move slowly?",tumblr_njoz5kE1ov1u5n6bno1_250,75192,0 1187,FRAMEQA28858,black,what is the color of the woman?,tumblr_nbpdznqThh1tyu471o1_400,29159,2 1188,FRAMEQA17372,cat,what is looking at another cat which is in a box?,tumblr_nad5toBHv81s2mb0qo1_500,62745,0 1189,FRAMEQA793,kitty,what is moving towards to other cats?,tumblr_nnk8xylP9g1u5qahro1_1280,54164,0 1190,FRAMEQA43170,black,what is the color of the suit?,tumblr_nnwe4dqtcz1tksttyo1_400,65099,2 1191,FRAMEQA18728,pen,what is the man with a suit putting down?,tumblr_na2y4ck75p1taqrn1o1_500,38821,0 1192,FRAMEQA26854,two,how many young men gives cheers with their drink while overlooking the water?,tumblr_n9fxbgYr0K1rvpycko1_250,53726,1 1193,FRAMEQA10011,guns,what do two people walk and the one moves his coat to the side and grabs?,tumblr_nca3neyJbm1retkdpo1_500,99129,0 1194,FRAMEQA21066,blue,what is the color of the shirt?,tumblr_nkto6fCkCn1r0ia88o1_400,80125,2 1195,FRAMEQA49786,car,where does the man look down and talks and the woman is riding?,tumblr_na7x7kwbn51tg5klqo1_250,36639,3 1196,FRAMEQA51871,two,how many people are going up the stair case?,tumblr_njoz5kE1ov1u5n6bno1_250,75192,1 1197,FRAMEQA31014,two,how many women are drinking hot beverages at a table?,tumblr_nkidy4Ldfk1t47dz3o1_400,91568,1 1198,FRAMEQA8851,black,what is the color of the hair?,tumblr_nbh1deqvo01tl6l5bo1_250,78595,2 1199,FRAMEQA31619,monkey,what is drinking and lying down on the power line when he falls and has to grab the line?,tumblr_nbh6btDTyY1r38hk2o1_400,8486,0 1200,FRAMEQA43625,two,how many men are sitting together?,tumblr_nofxbjpWcl1shch57o1_400,42142,1 1201,FRAMEQA10998,two,how many guys on stage with microphones walked passed one another?,tumblr_nccngahQlq1sdbrm9o1_400,66360,1 1202,FRAMEQA5743,owl,what is the man petting?,tumblr_naiv7pBcv81s2l982o1_250,27670,0 1203,FRAMEQA3898,white,what is the color of the jacket?,tumblr_nezdwodIKQ1r8cauwo1_250,7172,2 1204,FRAMEQA11031,rabbit,what puts the basketball into the hoop?,tumblr_nrho0kbKHM1uzqrlco1_400,41679,0 1205,FRAMEQA3188,two,how many people in a room are hugging each other?,tumblr_npneccAv8H1rq4lc6o1_500,89620,1 1206,FRAMEQA47957,white,what is the color of the girl?,tumblr_nhb2we9rFe1u6l71oo1_250,36637,2 1207,FRAMEQA6799,red,what is the color of the bandanna?,tumblr_nabrq7LYQP1qhkvg5o1_500,72763,2 1208,FRAMEQA1777,two,how many sports players are embracing on the field?,tumblr_n8rlcclxUX1tgyi5mo1_250,43710,1 1209,FRAMEQA41383,car,what slows down to go around the curve on a race track?,tumblr_ncwjr5bvbM1tx8mn0o1_400,78341,0 1210,FRAMEQA6863,yellow,what is the color of the shirt?,tumblr_n92mm45oev1twseqpo1_250,47375,2 1211,FRAMEQA40179,cat,what pretends to be shot and plays dead and falls off the bed?,tumblr_njnhlc2q8U1u9sozlo1_400,7455,0 1212,FRAMEQA3686,cat,what is licking the bottom of a clear glass table?,tumblr_nfk0cw83nY1tdmffyo1_250,3658,0 1213,FRAMEQA47056,cat,what is being scared by something jumping?,tumblr_no19cefILe1un7qbto1_400,37818,0 1214,FRAMEQA12772,two,how many people is carrying drinks are walking by a pool?,tumblr_naneo3Z46w1tn9es9o1_400,80142,1 1215,FRAMEQA43291,dog,what is the man in sunglasses holding?,tumblr_n9sg39oVrZ1qedx60o1_500,98928,0 1216,FRAMEQA13398,black,what is the color of the hair?,tumblr_ne5q8paqlV1qeuv1ko1_400,84916,2 1217,FRAMEQA47385,puppies,what does the little boy run and then overtake him and knock him down?,tumblr_njxku2tcR71tjd6bzo1_400,40171,0 1218,FRAMEQA36410,vehicle,what is weaving quickly through traffic on a road with snow piled up high on both sides?,tumblr_nfih1nAC1B1s71nvbo1_400,35092,0 1219,FRAMEQA40490,white,what is the color of the dress?,tumblr_nfxda4oHZH1th1z7ro1_400,1198,2 1220,FRAMEQA45929,fish,what is swimming around in one place?,tumblr_n9hw28peTq1s61fbqo1_400,52981,0 1221,FRAMEQA27108,two,how many men are dancing in the place with colored lights?,tumblr_nqmr2ybLBP1rpsrrho1_400,25420,1 1222,FRAMEQA36638,dog,what is running with the toy in his mouth and falls on the floor and plays dead?,tumblr_ngzwadoN461slj978o1_400,48459,0 1223,FRAMEQA35758,car,what is the man stopping from moving with just his feet?,tumblr_nfyoq3PnfT1slj978o1_400,82128,0 1224,FRAMEQA33475,one,how many guy is it trying to avoid being hit by an object?,tumblr_na4g5y5FmJ1r8h6u4o1_500,97142,1 1225,FRAMEQA11927,chair,what is the man in suit hitting with his hand?,tumblr_nbp5l0hOiG1tio380o1_250,25234,0 1226,FRAMEQA31001,red,what is the color of the hair?,tumblr_ni33o9h6bs1qjvum0o1_250,19961,2 1227,FRAMEQA31240,paint,what is the young adult wearing?,tumblr_njnpzo4UG21t41q8xo1_400,29838,0 1228,FRAMEQA15362,paws,what are three kittens cleaning?,tumblr_n9g5efSoWD1rsxypwo1_400,22459,0 1229,FRAMEQA16312,cigarette,what is the lady with the blond hair smoking?,tumblr_n9ehw6qLr01ti3uv8o1_500,42022,0 1230,FRAMEQA31545,two,how many girls are laughing and hugging each other?,tumblr_ndzmubpy9F1tg5fh5o1_400,31116,1 1231,FRAMEQA35690,black,what is the color of the shirt?,tumblr_nqee177Pf91u8ivvko1_500,57337,2 1232,FRAMEQA46103,bear,what is the guy wearing the sunglasses is holding?,tumblr_ncq78pQzfO1qzo3n9o1_500,59958,0 1233,FRAMEQA51192,two,how many hands is the man in a beach stretching?,tumblr_nduyhsKaEd1tqd3ieo1_500,77957,1 1234,FRAMEQA29384,two,how many men are walking across the room and then hug each other?,tumblr_nkn67mXLk11qhddxpo6_250,43915,1 1235,FRAMEQA40655,cars,what are involved in an accident on a track?,tumblr_nh8g8xOFqk1tx8mn0o1_400,55560,0 1236,FRAMEQA2326,cigarette,what are the picture of someone smoking?,tumblr_nqb38eH9vk1qe9a6no1_250,4725,0 1237,FRAMEQA18313,bottle,what is the man on a stage getting from a crowd?,tumblr_ngwbl1n70M1u5ha1qo1_400,63012,0 1238,FRAMEQA49577,microphone,what is the guy grabbing about to sing?,tumblr_ngipx3UXAX1rnuooxo1_250,77797,0 1239,FRAMEQA8627,red,what is the color of the team?,tumblr_nk5odsJdK11tz9jaqo1_500,101567,2 1240,FRAMEQA48269,two,how many men look at something in a corridor and laugh?,tumblr_nhvvdlFwGZ1qdbe91o1_400,77610,1 1241,FRAMEQA40455,two,how many penguins is this image of walking until one of them falls down?,tumblr_ng46uo55Mx1slj978o1_400,50029,1 1242,FRAMEQA9904,car,where are the group of people dancing while?,tumblr_neb1kotniS1tbscvbo1_250,81480,3 1243,FRAMEQA15498,two,how many people are in the car driving fast down a winding road with helmets on?,tumblr_n9qyart36C1rkbsnzo1_250,45347,1 1244,FRAMEQA24702,three,how many friends are pointing towards the sky?,tumblr_nebjohzXeJ1thyqpfo1_250,2124,1 1245,FRAMEQA32196,cat,what is riding the toy and then it flips over and he falls off?,tumblr_nq60huObBd1tk2ngvo1_400,15603,0 1246,FRAMEQA12293,keyboard,what does the man sing and plays moving his shoulders?,tumblr_nclkulNWm01tctbxeo1_400,64884,0 1247,FRAMEQA5875,hat,what is sitting on a coach is laughing on another?,tumblr_nf5hg7loxL1u0z49so1_250,2083,0 1248,FRAMEQA29955,two,how many young men are sitting on the boat one looks passed out?,tumblr_ngtr52OeqL1u0xtr8o1_500,18794,1 1249,FRAMEQA4867,black,what is the color of the dog?,tumblr_nhifdvtMsa1tjhld9o1_250,21175,2 1250,FRAMEQA6075,car,what is driving down the race track?,tumblr_nc5lm8v8r31tx8mn0o1_400,77883,0 1251,FRAMEQA37301,cat,what is pushing over the glass object?,tumblr_ng642mdNwX1qezt9uo1_250,19353,0 1252,FRAMEQA45993,white,what is the color of the shirt?,tumblr_nb9jajxPqO1tsl8rno1_500,93397,2 1253,FRAMEQA32280,brown,what is the color of the smile?,tumblr_nbmz36bIej1rv9d8do1_500,84811,2 1254,FRAMEQA41861,blue,what is the color of the liquid?,tumblr_notrgvZmX91urtap0o1_1280,4592,2 1255,FRAMEQA39914,horns,what is the girl wearing and looking down?,tumblr_nguudqq3381si703wo1_400,30638,0 1256,FRAMEQA5594,dog,what is the woman petting and hugging?,tumblr_n8ztlpiJbO1thytpxo1_500,67302,0 1257,FRAMEQA20691,cat,what claws and scratches at the man holding it while he is conversing with another man?,tumblr_nat3hdvBzb1t0vmnto1_250,21840,0 1258,FRAMEQA49287,two,how many people are embracing in the hallway?,tumblr_njyqloY3A31u3epwjo2_1280,78443,1 1259,FRAMEQA35576,white,what is the color of the puppy?,tumblr_nbdje2GanU1tktmbso1_400,44937,2 1260,FRAMEQA16048,underwear,what is the handsome young man adjusting?,tumblr_nezfs4uELd1u1a7cmo1_250,52,0 1261,FRAMEQA26574,two,how many boys are practicing dance moves on a sidewalk?,tumblr_n99hkpMqz51sb52a1o1_400,66538,1 1262,FRAMEQA27302,gym,where does the gymnast look nervous?,tumblr_nbrwg6tMbL1t9tw2vo1_400,68224,3 1263,FRAMEQA41608,pigeon,what is standing on the pavement moving its feet?,tumblr_n9nfflcHiD1sib7jco1_250,7707,0 1264,FRAMEQA12937,retriever,what is bouncing around and playing in the snow?,tumblr_njuegdc5bY1rm7vxeo1_400,4946,0 1265,FRAMEQA48515,horse,what is running around in circles?,tumblr_n8zd1nDo0B1rwgxlqo1_500,70645,0 1266,FRAMEQA39458,cat,what walks on its hind legs to the table?,tumblr_ndj3gc8WwV1tdjuqvo1_400,11352,0 1267,FRAMEQA33755,masks,what are the bunch of factory workers assembling?,tumblr_nc8wc3bPk61tmp9jpo1_400,9479,0 1268,FRAMEQA30459,white,what is the color of the cap?,tumblr_ngl4sfejED1u4rb65o1_400,84249,2 1269,FRAMEQA26747,kangaroo,what was scratching himself vigorously as he stood?,tumblr_ndyh3iTJcd1tdjuqvo1_400,10995,0 1270,FRAMEQA13454,gray,what is the color of the shirt?,tumblr_nknppk1M7C1reubyfo1_400,14791,2 1271,FRAMEQA14954,red,what is the color of the car?,tumblr_nephlhawUk1u25ovvo1_400,63440,2 1272,FRAMEQA10988,cap,what is fallen when he is hitting with a fish?,tumblr_nftd5s8MAr1qc51c0o1_400,34579,0 1273,FRAMEQA696,white,what is the color of the suit?,tumblr_nkp3ocPFJJ1upr5mso1_400,65996,2 1274,FRAMEQA9036,bedroom,where is the man singing?,tumblr_nbnhsaAJFF1rx16sro1_400,29140,3 1275,FRAMEQA24526,gray,what is the color of the shirt?,tumblr_ncyf9sZZLi1sh1qk7o1_250,84565,2 1276,FRAMEQA42132,two,how many men are looking at each other and talking?,tumblr_nh40fkieup1sdbrm9o1_400,36772,1 1277,FRAMEQA18015,cat,what is annoyingly bothering the dog?,tumblr_ndxrsbp13F1rfyy6oo1_250,9914,0 1278,FRAMEQA48835,black,what is the color of the hair?,tumblr_nj0iew6kad1tmcdhmo1_400,32401,2 1279,FRAMEQA19002,two,how many women is playing a game and the one that wins accidentally pokes another in the eye?,tumblr_ndoqxcn3iN1sd2bbjo1_400,20274,1 1280,FRAMEQA16829,blue,what is the color of the jacket?,tumblr_nqn3tqmbjc1souwjko1_400,71821,2 1281,FRAMEQA10483,close,what is the woman holding?,tumblr_nkap7yIuHJ1unokpmo1_400,101142,0 1282,FRAMEQA21223,phone,what is an athletic man delivering a pizza and answering?,tumblr_nklj95HBGD1rxcyx0o1_250,2655,0 1283,FRAMEQA7373,guitar,what is the woman playing and singing into a microphone?,tumblr_nin3ulmI0K1ropygmo1_400,70404,0 1284,FRAMEQA39938,glasses,what is the woman walking in a mall adjusts?,tumblr_na7rlbB17h1tibxkwo1_r1_500,101504,0 1285,FRAMEQA18330,drink,what does the very excited woman spill while jumping up and down?,tumblr_nk36bmS6e51rv583mo1_250,45640,0 1286,FRAMEQA27872,black,what is the color of the woman?,tumblr_nk93w8xzrj1uoybayo1_400,60578,2 1287,FRAMEQA10543,shorts,what is the boy dancing and fall down?,tumblr_nqr8gmhlLr1rnfni9o1_400,12470,0 1288,FRAMEQA24169,three,how many men eat pizza with their mouths open?,tumblr_nh7dbzg3AX1sg80mko1_400,73798,1 1289,FRAMEQA9958,band,what is performing the song?,tumblr_nfuoql9kt21r5ihmbo1_400,96919,0 1290,FRAMEQA45091,blue,what is the color of the shirt?,tumblr_na6zm9GLDK1t7h8o0o1_400,43353,2 1291,FRAMEQA5140,makeup,what is the male band member getting done?,tumblr_nf7gq1ZaK81te9v75o1_400,73279,0 1292,FRAMEQA75,microphone,what is the man holding and looking at a crowd?,tumblr_nckqvbEDZ61u05nf4o1_500,71156,0 1293,FRAMEQA6726,black,what is the color of the top?,tumblr_neafznl88c1u1k47uo1_250,36680,2 1294,FRAMEQA30125,two,how many men are climbing out the window?,tumblr_nb2myzj0DY1tkpzw0o1_400,18190,1 1295,FRAMEQA38327,two,how many young people are running down the hall and hugging?,tumblr_niqvn9yIzC1sy6rtlo1_250,15274,1 1296,FRAMEQA7365,bird,what catches the fish in water with his beak?,tumblr_ng4pc6U2ib1rmvdlro1_400,31969,0 1297,FRAMEQA29761,two,how many men are dancing and singing together?,tumblr_n8qmsg8RNC1tcpi9io1_500,90375,1 1298,FRAMEQA7513,bed,where is the girl with her eyes closed and suddenly sits up?,tumblr_nom6zxNZYd1tyxue1o1_400,81172,3 1299,FRAMEQA53055,two,how many woman are having the race?,tumblr_npeg2iKBbw1u9kj5io1_400,80041,1 1300,FRAMEQA9300,two,how many team members are walking and bumping fists?,tumblr_n9le1merj21s5t0x8o1_400,45266,1 1301,FRAMEQA44446,two,how many men are recording music in a studio?,tumblr_nl3zdwLhgA1ttuja3o1_500,85274,1 1302,FRAMEQA17781,two,how many women are singing while one sprays herself in the face?,tumblr_nkybgr8MIr1tmnntwo1_250,35718,1 1303,FRAMEQA45597,two,how many men are performing the dance on stage?,tumblr_nb87qsBCX81r5q7yjo1_400,61542,1 1304,FRAMEQA6372,monkey,what jumps over another monkey sitting on a log?,tumblr_na7zldRIh21slj978o1_400,40880,0 1305,FRAMEQA3507,swimming,what does the penguin chase under water?,tumblr_nqdnyswOsw1qh9fn6o1_400,46476,0 1306,FRAMEQA28638,black,what is the color of the woman?,tumblr_n9vh4rEQJG1t2blrco1_250,90914,2 1307,FRAMEQA25528,two,how many women are smiling and joking in the room?,tumblr_naef7gYw6B1tjr73vo1_400,22030,1 1308,FRAMEQA48658,guitar,what is the woman playing next to a man kneeling?,tumblr_npj6idU5GU1ql8dhmo2_250,51499,0 1309,FRAMEQA5458,black,what is the color of the shirt?,tumblr_nbm5y5ves91tlzjvgo1_250,39655,2 1310,FRAMEQA31585,two,how many young men dressed identical are dancing?,tumblr_n9f5ecfGZ71remizro1_400,21976,1 1311,FRAMEQA24151,dog,what takes the teddy bear and walks away?,tumblr_nl2xspzYUT1qijtyio1_400,79663,0 1312,FRAMEQA37604,bedroom,where is the guy in a flower shirt singing?,tumblr_ne1nzeAfmz1twl08yo1_400,60290,3 1313,FRAMEQA40588,plate,where is the woman dumping mashed potatoes?,tumblr_nk08syYSt71te94myo1_400,18540,3 1314,FRAMEQA45675,green,what is the color of the iguana?,tumblr_nhn4qolyxQ1tgouwlo1_400,52435,2 1315,FRAMEQA35556,two,how many friends does this show having a good time whilst one makes silly faces?,tumblr_nhoqo9nDcU1szutyqo1_500,42089,1 1316,FRAMEQA13273,gun,"what is the man holding , then another man reaches for it?",tumblr_ndgdjmRq281tk9m4mo1_400,30918,0 1317,FRAMEQA21368,cap,what is nodding his head?,tumblr_nrdxk2otyS1sprf2xo1_500,29349,0 1318,FRAMEQA46037,face,what is the man doing with a drum crash in his back?,tumblr_nhqgtyWQb31tg0ggeo1_500,93614,0 1319,FRAMEQA24332,ferret,what is biting the person 's finger?,tumblr_njq2ngacE31sm7km1o1_400,22470,0 1320,FRAMEQA22203,puppy,what is the person holding?,tumblr_n9sg39oVrZ1qedx60o1_500,98928,0 1321,FRAMEQA38323,vehicle,what is the man driving?,tumblr_nhxsiqiqON1u7lcb4o1_500,77450,0 1322,FRAMEQA21433,three,how many dancing men does there 's followed by a couple?,tumblr_npoyo2v9tY1uy28kto1_400,31195,1 1323,FRAMEQA21607,guitar,what is the man playing and talking?,tumblr_np1dspAzMG1uvgq73o1_400,28341,0 1324,FRAMEQA46320,brown,what is the color of the hair?,tumblr_n93yyhaxpU1sofpyco1_250,19059,2 1325,FRAMEQA21750,two,how many men are dancing around outside?,tumblr_n921fiyLDf1tnwjvco1_400,19431,1 1326,FRAMEQA1839,two,how many men are sitting on the couch?,tumblr_nemscyeADV1sd32fxo1_500,60111,1 1327,FRAMEQA17077,dog,what is trying to walk in boots?,tumblr_ncxqb2uFP81thmv2qo1_400,20689,0 1328,FRAMEQA31297,guitar,what is someone playing during a concert?,tumblr_no5y23zVlY1qhwvbro1_400,51140,0 1329,FRAMEQA18691,one,how many cat is putting its paw in another cat 's face to stop it from trying to groom the first cat?,tumblr_noaswjesmm1th7g9io1_400,95722,1 1330,FRAMEQA21008,black,what is the color of the shirt?,tumblr_nfaseo5Cku1txtsyso1_500,80753,2 1331,FRAMEQA11610,drug,what is the woman wearing a black shirt is smoking?,tumblr_n9sz8trA7B1sv44h3o1_250,40753,0 1332,FRAMEQA27582,white,what is the color of the dress?,tumblr_ngc8tpcmwF1tiz0smo1_400,92490,2 1333,FRAMEQA13976,tire,what is rolling away and bumps into the car?,tumblr_nq4kot19WJ1tpg4boo1_500,83136,0 1334,FRAMEQA31381,black,what is the color of the hair?,tumblr_nc3jcdUYwZ1tx7szbo1_400,32721,2 1335,FRAMEQA44064,two,how many people are dancing in the room?,tumblr_nh7cq0YLOw1u11u8po1_500,97738,1 1336,FRAMEQA48878,clothes,what are several women walking and wearing?,tumblr_noch808AgN1s5t003o1_400,14889,0 1337,FRAMEQA10683,two,how many guys sat on a couch and one turned around and spoke to someone behind them?,tumblr_nq6ycnMUhD1u2bf8no1_500,75993,1 1338,FRAMEQA25570,guitar,what is the woman with long blond hair singing and playing?,tumblr_nf43arOaF51qfpmkno1_500,48504,0 1339,FRAMEQA28710,room,where are people hugging each other inside?,tumblr_nfrlins4gC1qaucgno1_250,21892,3 1340,FRAMEQA12037,black,what is the color of the shirt?,tumblr_nk7mh2enPY1tt9zxqo1_400,73072,2 1341,FRAMEQA46477,four,how many young women are turning away from the window?,tumblr_nd15lcdoKq1tm38vso1_500,48370,1 1342,FRAMEQA15357,two,how many girls are on stage with their arm around each other?,tumblr_ni0e5mHJLF1u2o7c8o1_400,1740,1 1343,FRAMEQA14572,glasses,what is the man holding a toy panda is taking off?,tumblr_ncq78pQzfO1qzo3n9o1_500,59958,0 1344,FRAMEQA23257,spoon,what is someone using?,tumblr_ni1dyrKWvc1sfwm8jo1_400,16778,0 1345,FRAMEQA204,four,how many girls are turning their heads to something?,tumblr_nd15lcdoKq1tm38vso1_500,48370,1 1346,FRAMEQA51219,black,what is the color of the shirt?,tumblr_nb8aj9xC8B1rplluro1_400,21598,2 1347,FRAMEQA43258,two,how many young ladies are smiling and making gestures?,tumblr_nbp324pRIa1tlea9go1_400,33695,1 1348,FRAMEQA28174,glasses,what does the young girl with short hair move down her nose?,tumblr_nokj77T5LR1uvkr19o1_400,31170,0 1349,FRAMEQA43593,chair,where does the man lean back?,tumblr_nacc15RrbE1rhg9bmo1_400,52986,3 1350,FRAMEQA35580,hurdle,what does the horse with a rider clear?,tumblr_nju519JvHq1u9mayco1_400,96900,0 1351,FRAMEQA44026,two,how many people are in bed and one rolls over onto his pillow?,tumblr_n96o5dqttH1qha21xo1_500,88139,1 1352,FRAMEQA50285,fish,what is the cat touching with its paw in a tub?,tumblr_nq62qusQ2Z1tk2ngvo1_500,69624,0 1353,FRAMEQA47169,two,how many teenage girls turn and smile at each other?,tumblr_ngegv9zMI11skv76wo1_250,36105,1 1354,FRAMEQA23580,two,how many men with microphones are laughing and joking?,tumblr_n9ywk5HGpS1rs9keno1_500,72189,1 1355,FRAMEQA50275,brown,what is the color of the bunny?,tumblr_nc2gpfzSk21tk2ngvo1_250,13592,2 1356,FRAMEQA25809,black,what is the color of the t-shirt?,tumblr_ncktzjK6x31susf16o1_250,81391,2 1357,FRAMEQA22581,car,what is driving down the street?,tumblr_nf0n8ksRhS1u25ovvo1_400,63631,0 1358,FRAMEQA9447,grass,what is the white and brown bunny eating?,tumblr_nfoh2z9C1M1u3ads9o1_250,14265,0 1359,FRAMEQA30909,paint,where is the man swimming an illuminated sword?,tumblr_nk7j7yiaRx1qivt11o1_500,97728,3 1360,FRAMEQA33415,two,how many people are standing and leaning in for the kiss?,tumblr_nqoo17fzTA1s6w6cqo1_540,101250,1 1361,FRAMEQA32680,white,what is the color of the hat?,tumblr_njxn5rSldv1u9pp05o1_400,9461,2 1362,FRAMEQA4091,black,what is the color of the glasses?,tumblr_nc0mqwuaNb1tz6rpdo1_r1_400,31217,2 1363,FRAMEQA7726,white,what is the color of the taxi?,tumblr_ncfhy9iq4a1tj3r8so1_500,87985,2 1364,FRAMEQA10950,hat,what turns into the puppet lights?,tumblr_nr53ie9eQn1re5o97o1_500,27647,0 1365,FRAMEQA10185,car,what is overtaking another car on a wet road?,tumblr_nq4d7kPtlq1unyhx2o1_400,76971,0 1366,FRAMEQA6158,airplanes,what are making some moves in the sky?,tumblr_nr3xi1KZmV1uzvpcio1_400,63904,0 1367,FRAMEQA16866,black,what is the color of the jeans?,tumblr_nb10lnTtO01tjhcu6o1_500,71855,2 1368,FRAMEQA16900,talks,what is the kid walking on the phone?,tumblr_naz1gjhCtv1rl8ttqo1_500,81910,0 1369,FRAMEQA48960,two,how many people are talking as the third walks up to them?,tumblr_n92n8zlXH21sqdix6o1_250,43885,1 1370,FRAMEQA8140,room,where is the man dancing where glitter confetti is falling?,tumblr_ni8oy7OYFT1u8omj4o1_400,44243,3 1371,FRAMEQA31375,two,how many people on a stage are hugging each other?,tumblr_npv0naAHW61uvz6e5o1_500,83419,1 1372,FRAMEQA46711,three,how many boys in white shirts are singing on a stage?,tumblr_nclfo70sVI1tg2jndo1_250,165,1 1373,FRAMEQA8443,three,how many men are playing guitar together?,tumblr_nga8g2sqtN1re60dio1_250,26505,1 1374,FRAMEQA35065,flower,"what is the person holding next to a car , whose lights flash on?",tumblr_nhop57OCs61qzk1bko1_400,32068,0 1375,FRAMEQA15073,black,what is the color of the shirt?,tumblr_nkmcdxUw7y1sl9u6jo1_400,12789,2 1376,FRAMEQA17107,blue,what is the color of the eyes?,tumblr_n9fsalp5mk1ropm1ro1_500,98945,2 1377,FRAMEQA30844,room,where are three guys dancing and singing?,tumblr_n8sh1pn4ju1sgl6u3o1_250,17230,3 1378,FRAMEQA20120,dog,what is closing his eyes while he is being washed?,tumblr_nis0671Qu01tjqbh0o1_250,1463,0 1379,FRAMEQA46682,fish,what is being boiled alive next to the barking dog?,tumblr_ngy4jkSGjY1tni61eo1_250,27236,0 1380,FRAMEQA16951,cat,what plunges through the snowfall before getting up and running away?,tumblr_nqbxtdsOu11tk2ngvo1_400,98201,0 1381,FRAMEQA17017,dog,what is running on the beach and jumping in the water?,tumblr_nc2xc108CT1sh1v2uo1_500,57385,0 1382,FRAMEQA6441,horse,what ran around the yard next to another horse?,tumblr_nj9uwvyjpy1r23fzwo1_500,59214,0 1383,FRAMEQA6490,dog,what ran and licked something?,tumblr_nfx0k7vKCu1u4cx5ko1_400,64979,0 1384,FRAMEQA20297,instruments,"what are men playing percussion , with one drumming?",tumblr_nh1kirX2YW1t4ti4zo1_250,5940,0 1385,FRAMEQA5590,guitar,what is one guy playing?,tumblr_nho4lw7YQP1tooeulo1_500,86177,0 1386,FRAMEQA52732,box,what is the man moving from one position to another?,tumblr_nfas3aICsP1ql0sfgo1_500,55823,0 1387,FRAMEQA26705,white,what is the color of the girl?,tumblr_nbe2gdERbf1tulpruo1_250,40249,2 1388,FRAMEQA11551,black,what is the color of the woman?,tumblr_n9qcwdJTNX1tib6auo1_400,24417,2 1389,FRAMEQA20246,room,where is the person standing?,tumblr_nd5sszzMyl1r20o7po1_500,43493,3 1390,FRAMEQA45604,black,what is the color of the jacket?,tumblr_ngdjwmNMmN1u2b1nuo1_250,11549,2 1391,FRAMEQA19434,black,what is the color of the shirt?,tumblr_nfrf0qcm1q1rcn2l0o1_500,87699,2 1392,FRAMEQA38920,bowl,where does the puppy sit?,tumblr_nn8b3ckHXT1rgj6reo1_400,55944,3 1393,FRAMEQA9146,two,how many men had the hug and an embrace?,tumblr_nhekqkkOoT1rt3qmdo1_250,24464,1 1394,FRAMEQA34528,bird,what takes food from a bowl to a cat and dog?,tumblr_np5yr0px4O1twfmf3o1_400,18589,0 1395,FRAMEQA29189,black,what is the color of the shorts?,tumblr_ncom59mV8o1u08u4qo1_250,23222,2 1396,FRAMEQA52358,horse,what did the woman ride swiftly down a yard?,tumblr_n9baqcXz1B1s3fuxko1_400,71884,0 1397,FRAMEQA49354,booth,where is the guy in a black hat?,tumblr_nfxia62ggu1sfcnmao1_400,40019,3 1398,FRAMEQA16263,headset,what is the man with a headset on it moving his head and then falls off?,tumblr_nan1xwT9HS1s89twbo1_250,18907,0 1399,FRAMEQA28964,two,how many women girls look at us and make faces?,tumblr_n9agpx9QDL1s4niibo1_400,32543,1 1400,FRAMEQA45739,picture,what was the young boy with dark hair getting taken?,tumblr_nlj7ukgHxw1uqezvco1_500,71943,0 1401,FRAMEQA25936,cars,what are going down the road at night?,tumblr_nabjhc7Adk1tgqy75o1_500,83904,0 1402,FRAMEQA27698,two,how many guys is this image of eating pizza?,tumblr_nh7dbzg3AX1sg80mko1_400,73798,1 1403,FRAMEQA49155,two,how many guys are riding motorcycles?,tumblr_ne2vicp4Xt1ti2fvro1_400,53169,1 1404,FRAMEQA7293,red,what is the color of the couch?,tumblr_nfk3khwvlB1u3f59ho1_500,35651,2 1405,FRAMEQA22131,hallway,where are seven puppies running?,tumblr_n92lo9JEvZ1tfz9ppo1_400,52245,3 1406,FRAMEQA38960,burger,what is the long haired man eating?,tumblr_ndbozx0BfJ1r0b9nxo1_400,28096,0 1407,FRAMEQA16309,yellow,what is the color of the hair?,tumblr_nh25kqVdbO1teaq0so1_250,18669,2 1408,FRAMEQA29325,two,how many men in black shirts are hugging each other?,tumblr_nhekqkkOoT1rt3qmdo1_250,24464,1 1409,FRAMEQA11029,black,what is the color of the shirt?,tumblr_nk6woc74I81uot1e7o1_400,63863,2 1410,FRAMEQA45303,dog,what is coming out of the cage and moving around?,tumblr_nbdje2GanU1tktmbso1_400,44937,0 1411,FRAMEQA9974,llama,what is angry and then the man is laughing?,tumblr_nbleno32sJ1tjrio9o1_250,13348,0 1412,FRAMEQA7073,two,how many men are dancing near the car parked on a street?,tumblr_ndyf9zKF011qi9fe9o1_250,21199,1 1413,FRAMEQA30811,red,what is the color of the cream?,tumblr_nfwkmh8JaB1rss4j4o1_250,19060,2 1414,FRAMEQA16273,cat,what paws the toy helicopter away out of the air?,tumblr_naeiiukOaI1qzm0hso1_400,76103,0 1415,FRAMEQA9697,one,how many snow boarder is this knocking snow onto another snow boarder?,tumblr_nbjrvdM5Tk1s3jo9no1_400,65404,1 1416,FRAMEQA581,blue,what is the color of the bed?,tumblr_nkso8itnb61upyx5zo1_400,24750,2 1417,FRAMEQA50377,horse,"what is the woman stroking , it licks its lips?",tumblr_naz9qi8pjG1sc609to1_250,35551,0 1418,FRAMEQA34482,black,what is the color of the spider?,tumblr_n9075l4nPN1thp5u0o1_400,46830,2 1419,FRAMEQA6411,black,what is the color of the cat?,tumblr_ncaawdCxWV1rvlx3so1_400,32049,2 1420,FRAMEQA47518,three,how many people are dancing?,tumblr_nab7a9zj8l1rognfto1_400,11021,1 1421,FRAMEQA27149,black,what is the color of the person?,tumblr_ncq5net4701tkyu2bo1_500,88948,2 1422,FRAMEQA16148,holder,where is the candle flickering?,tumblr_nbl18fV1iz1tjqkt0o1_400,64938,3 1423,FRAMEQA13418,black,what is the color of the bends?,tumblr_ncnclh0Da61sqeumlo1_250,20525,2 1424,FRAMEQA6323,camel,what is the girl chasing?,tumblr_njqnmqzy391rnahu9o1_250,21347,0 1425,FRAMEQA18705,three,how many young and beautiful women are climbing the stairs?,tumblr_nay0kzAbkR1twcgnlo1_400,27538,1 1426,FRAMEQA15774,dancing,what is the young man in white pants?,tumblr_nfq8lcxtjj1tsann9o1_r2_500,40935,0 1427,FRAMEQA47983,umbrella,what does the man wearing denim slowly turn?,tumblr_nezd8smQVJ1tmefd5o1_250,252,0 1428,FRAMEQA19578,black,what is the color of the shirt?,tumblr_ndc80srnP11r202reo1_500,86846,2 1429,FRAMEQA14557,pants,what is on fire?,tumblr_ndrtyiJ6Mo1t4779no1_400,61534,0 1430,FRAMEQA51969,black,what is the color of the jacket?,tumblr_ni11qwnFts1t0w22yo1_250,13191,2 1431,FRAMEQA30134,dog,what is biting the cats head and the cat humorously retaliates?,tumblr_nhh45qypGS1tjhld9o1_250,25179,0 1432,FRAMEQA30074,white,what is the color of the suits?,tumblr_ngzuosHwut1s71nvbo1_400,24459,2 1433,FRAMEQA21448,car,what is going high in space is disappeared?,tumblr_n8ctf9ELMW1taivooo1_500,79595,0 1434,FRAMEQA11666,three,how many people are singing and performing on stage?,tumblr_nes951ulUD1t9h1yfo1_400,82397,1 1435,FRAMEQA17041,fox,what is jumping into the snow?,tumblr_nprpm1WJLb1uxtn9jo1_400,75011,0 1436,FRAMEQA45128,ducklings,what tried to reach there mom and someone helped them?,tumblr_nbes1tkyPL1tkpzw0o1_250,20256,0 1437,FRAMEQA16678,lollipop,what is the blond woman eating and talking?,tumblr_ngpb6q9to71u0vqe1o1_400,34769,0 1438,FRAMEQA42296,three,how many men sing while the third smiles?,tumblr_nhs9w0ves71rc6vmmo1_400,57075,1 1439,FRAMEQA43658,three,how many guys are on stage singing with microphones?,tumblr_ndxcge7SrF1t0ojyvo1_500,50672,1 1440,FRAMEQA49249,yellow,what is the color of the shirt?,tumblr_nat8wfWBFb1taq9qwo1_250,81591,2 1441,FRAMEQA12399,two,how many men stand still in the middle of a studio?,tumblr_ncs5palRjX1ro5rv7o1_400,58317,1 1442,FRAMEQA52364,red,what is the color of the guitar?,tumblr_nc2rue39Be1qlxas3o1_400,65531,2 1443,FRAMEQA45732,jacket,what is the man wearing a big necklace straightens?,tumblr_nfjel1i9RM1u43d61o1_500,70474,0 1444,FRAMEQA12613,one,how many man is trying to lick another man 's face?,tumblr_n8zxbz23SQ1tptbi5o1_400,80113,1 1445,FRAMEQA44078,brown,what is the color of the dog?,tumblr_nfbeo6Qqr91tl8fnfo1_400,80040,2 1446,FRAMEQA8359,paint,what is someone putting on their fingernails?,tumblr_nhd8b6NZCS1u2xe60o1_400,17447,0 1447,FRAMEQA8394,two,how many people are smiling at each other in front of a union jack flag?,tumblr_ndepm5iPFa1ropieso1_1280,77491,1 1448,FRAMEQA23054,four,how many young men stand in the semi-circle talking and laughing?,tumblr_nc2y83hXxz1s9kfl4o1_500,101123,1 1449,FRAMEQA45511,mug,what is the man aggressively pushing?,tumblr_nf3gu0qW7V1t4y13wo1_400,50794,0 1450,FRAMEQA14168,two,how many girls are slowly sticking out their tongues?,tumblr_nkjnj8Qryj1r9w93fo1_500,28474,1 1451,FRAMEQA20015,black,what is the color of the suit?,tumblr_n9couvqSnM1tu91qto1_250,7995,2 1452,FRAMEQA2111,cat,what is lying down and slowly bouncing up and down?,tumblr_ne3xjjWRr51tdmffyo1_250,47903,0 1453,FRAMEQA45235,two,how many men sit at the desk?,tumblr_nqtcj5Inx41uqqy9lo1_400,65836,1 1454,FRAMEQA49812,cat,what is grabbing the woman 's snack?,tumblr_nht8l6Brfh1slj978o1_400,27972,0 1455,FRAMEQA17065,two,how many females are kissing at the dining table?,tumblr_naxjwynVlF1s78snxo1_250,20388,1 1456,FRAMEQA42751,black,what is the color of the beanie?,tumblr_ncb3i7WXVb1tlwdnpo1_250,23592,2 1457,FRAMEQA49171,spoon,what is scooping up sauces on a plate?,tumblr_ni1dyrKWvc1sfwm8jo1_400,16778,0 1458,FRAMEQA34507,black,what is the color of the hat?,tumblr_n8s6wdEJsP1th87jao1_400,61207,2 1459,FRAMEQA37813,cat,what is chewing on the cellophane bag?,tumblr_ncfjoeOSwk1r8pns9o1_400,16662,0 1460,FRAMEQA47015,street,where is the person rolling?,tumblr_nbnp7fZGcc1tol1i5o1_500,56952,3 1461,FRAMEQA8230,three,how many women run to each other and hug?,tumblr_nb2wphU00c1ts0qzho1_1280,33406,1 1462,FRAMEQA45586,necklace,what is the girl showing and smiling?,tumblr_np85pfASqn1qaxcloo1_250,2398,0 1463,FRAMEQA28414,close,what is the beautiful man with dark clothes getting?,tumblr_nfgzumpMT61u3odwpo1_500,55196,0 1464,FRAMEQA16505,room,where is the man playing an acoustic guitar?,tumblr_np0stcDMuz1u3z45ao1_500,46013,3 1465,FRAMEQA24282,gray,what is the color of the jacket?,tumblr_nh973fdNzl1tahsn4o1_250,22127,2 1466,FRAMEQA10725,blue,what is the color of the chair?,tumblr_nc51lxZqcX1tkpzw0o1_250,6269,2 1467,FRAMEQA5485,costume,what is the woman wearing made out of a flag?,tumblr_ng8hqaapJu1s6wfymo1_400,86940,0 1468,FRAMEQA32087,two,how many boys wink their eyes whilst looking at the background?,tumblr_nckjrzjHmR1sc2n9ao1_500,83916,1 1469,FRAMEQA12610,track,what does the racing car spin off during a race?,tumblr_nfdbfb4nT11tx8mn0o1_400,100983,0 1470,FRAMEQA19144,two,how many skaters are dancing across the ice together?,tumblr_nefw6jGPyb1s2kp2fo1_400,91094,1 1471,FRAMEQA29085,three,how many girls is wearing black hats walk forward together?,tumblr_nds6ogu9QS1tsn7r7o1_400,22067,1 1472,FRAMEQA34726,banana,what is the cat with a gingham bib being fed?,tumblr_nkhnomg0r01u1pokno1_250,53313,0 1473,FRAMEQA13819,white,what is the color of the shirt?,tumblr_nklmwmP2fN1r26jdlo1_400,69501,2 1474,FRAMEQA7384,horse,what is jumping and trotting cutely and insanely?,tumblr_nj9uwvyjpy1r23fzwo1_500,59214,0 1475,FRAMEQA43873,red,what is the color of the pop?,tumblr_nc4e6y37661qzm8mpo1_250,35503,2 1476,FRAMEQA8802,black,what is the color of the car?,tumblr_nowrymJVDJ1uumws9o1_250,43909,2 1477,FRAMEQA8933,shoe,what does the girl drop off?,tumblr_nqkhzz8i841uzwc0eo1_500,92675,0 1478,FRAMEQA47030,dog,what attempts to grab the pepper on a table?,tumblr_nqneh6gmCI1uva9gvo1_400,66102,0 1479,FRAMEQA23786,black,what is the color of the shirt?,tumblr_nc56edMX8f1s9q0pdo1_500,83249,2 1480,FRAMEQA52376,dog,what is playing with the toy?,tumblr_nb40f1NWsK1tjrca2o1_400,65695,0 1481,FRAMEQA31865,cat,what is riding the remote controlled car?,tumblr_nq60huObBd1tk2ngvo1_400,15603,0 1482,FRAMEQA22169,black,what is the color of the jacket?,tumblr_nknibq9AK81r8311io1_500,75875,2 1483,FRAMEQA2401,dog,what is giving the high five to a person?,tumblr_ncw1h7V8au1rmdsrwo1_400,63248,0 1484,FRAMEQA1082,two,how many people is swimming in a lake are about to kiss?,tumblr_ni335uiNaW1tebf8do2_250,47303,1 1485,FRAMEQA28156,cigarette,what is the man holding smoking?,tumblr_nioeglzBE41rqttkvo1_500,81739,0 1486,FRAMEQA37879,white,what is the color of the coat?,tumblr_nelx9gbLoH1u33n9wo1_1280,47992,2 1487,FRAMEQA44664,cat,what is lying on the cushioned surface?,tumblr_nimjqmgul31u94evjo1_500,70177,0 1488,FRAMEQA41214,black,what is the color of the shirt?,tumblr_njohpqycOr1sqbefno1_400,54082,2 1489,FRAMEQA2993,banana,what is the man holding up and looking?,tumblr_nbnd6rNKRS1trhseeo1_400,61293,0 1490,FRAMEQA20898,white,what is the color of the suit?,tumblr_ndv9otkHWR1smlr71o1_250,34478,2 1491,FRAMEQA29479,black,what is the color of the hat?,tumblr_naov96U3cP1qd0x24o1_250,6842,2 1492,FRAMEQA9587,gym,where is the guy jumping rope?,tumblr_nhyizh0JAT1tsqdy0o1_400,16014,3 1493,FRAMEQA52073,sunglasses,what is the man wearing and looking around?,tumblr_ng8dhxAt5Q1tvf4x3o1_500,54979,0 1494,FRAMEQA12660,car,what does there 's driving on a road in the country?,tumblr_nelzioHl7F1u25ovvo1_400,63575,0 1495,FRAMEQA8660,cigarette,"what is the woman with blonde hair , smoking and turning her head?",tumblr_napisgp4bL1tjdvbvo1_500,80524,0 1496,FRAMEQA12,two,how many skateboarders are passing by on the sunny day?,tumblr_nbfozbb01U1tv0ziio1_400,31216,1 1497,FRAMEQA21718,blue,what is the color of the hair?,tumblr_na4ewfkY9P1qcp4ato1_400,17530,2 1498,FRAMEQA7135,car,what is racing down the race tracks?,tumblr_nqyiresVbd1unyhx2o1_400,76911,0 1499,FRAMEQA29887,ladder,what did the kitten climb up?,tumblr_nh2j9ov5zN1u4v3ypo1_250,155,0 1500,FRAMEQA36114,black,what is the color of the shirt?,tumblr_nb4qvj4I2L1tj04kmo2_250,5480,2 1501,FRAMEQA10497,white,what is the color of the shirt?,tumblr_ndrrwnYzl21u1yyhdo1_400,280,2 1502,FRAMEQA12897,two,how many older men are looking at each other?,tumblr_nbl9upHHOv1rqr9fgo1_400,44271,1 1503,FRAMEQA22243,black,what is the color of the bear?,tumblr_nl3xu3rPoK1s6zpepo1_250,8054,2 1504,FRAMEQA1669,cat,what is the man doing the worm dance and tries to jump on him?,tumblr_n8qidhSx5p1slwpo8o1_400,21388,0 1505,FRAMEQA35952,mirror,where is the young girl looking?,tumblr_nayyw8Amj41tkxnz1o1_400,76895,3 1506,FRAMEQA15604,cliff,what are young chicks jumping off?,tumblr_ne55yo7DLv1tsmvhdo1_500,94775,0 1507,FRAMEQA15053,cars,what are two races very close to each other on the race track?,tumblr_noj5h56PEB1tx8mn0o1_400,77035,0 1508,FRAMEQA36312,two,how many girls stick out their tongue at the cam?,tumblr_nlzvsya1WR1tfjrdno1_400,31404,1 1509,FRAMEQA34759,black,what is the color of the man?,tumblr_nrjubnErtE1sh0wvgo1_500,14412,2 1510,FRAMEQA43325,white,what is the color of the girl?,tumblr_nomairinYw1uv1t6zo1_500,94679,2 1511,FRAMEQA52010,blue,what is the color of the shorts?,tumblr_nklj4p26GV1rxcyx0o1_250,16632,2 1512,FRAMEQA31851,white,what is the color of the man?,tumblr_nqn263IcBj1uzrtz5o1_500,6137,2 1513,FRAMEQA29414,two,how many men are sword fighting in the closed room?,tumblr_nr5h8ba4iB1s3wsijo1_500,69389,1 1514,FRAMEQA3679,yellow,what is the color of the shirt?,tumblr_nkw5zlOKPl1u4xluho1_500,58464,2 1515,FRAMEQA23130,cat,what falls off its playground while other cats watch it?,tumblr_ncg8b02Uyb1tmxc86o1_400,36585,0 1516,FRAMEQA27658,clothing,what is the woman in a lacy bra adjusting?,tumblr_nq36cclrEn1uvp3zyo1_500,34462,0 1517,FRAMEQA38621,cars,what are racing and drifting around the track?,tumblr_nr0uk6lrdI1raliteo1_400,79250,0 1518,FRAMEQA14864,shirts,what are the group of girls wearing football?,tumblr_nr0wrkd3SG1tfpkg4o1_500,20617,0 1519,FRAMEQA22148,green,what is the color of the scarf?,tumblr_n9q33mPy121ti34tso1_1280,96936,2 1520,FRAMEQA37644,black,what is the color of the sweater?,tumblr_nori82OpqH1sajlg5o1_500,91312,2 1521,FRAMEQA45850,black,what is the color of the men?,tumblr_nbwyn9wAq21tfvj5ao1_500,24954,2 1522,FRAMEQA14986,bedroom,where does the young man fall on the floor?,tumblr_nnwfolO27d1tmflpjo1_500,58076,3 1523,FRAMEQA43653,apple,what is the man wearing a suit is eating?,tumblr_nr93ch6vDZ1us9058o1_250,6490,0 1524,FRAMEQA39820,bird,what is happy to be getting his body scratched?,tumblr_nb3mu1R5I61tgtinoo1_250,643,0 1525,FRAMEQA19346,blue,what is the color of the bandanna?,tumblr_ne26g19AFF1tmflpjo1_500,58135,2 1526,FRAMEQA34056,room,where is the guy caressing his face?,tumblr_nbapxep1ZI1sk3b6wo1_r1_500,87916,3 1527,FRAMEQA47040,black,what is the color of the suit?,tumblr_nf8mmljGHg1r3t6cao1_500,40303,2 1528,FRAMEQA27725,gray,what is the color of the shark?,tumblr_nbplrtZnS81tbjfazo1_400,41760,2 1529,FRAMEQA14816,two,how many football players are colliding with each other while watching the ball?,tumblr_n9ewm0ilhs1riwrryo1_250,26016,1 1530,FRAMEQA9310,gray,what is the color of the hair?,tumblr_ng7vinKaZ21sht3fmo1_500,92531,2 1531,FRAMEQA51923,two,how many young men are smiling and staring at something?,tumblr_nf24phb8BO1thpehoo1_400,47579,1 1532,FRAMEQA20264,shark,what is swimming in the blue ocean?,tumblr_nhbze7q65N1s6zpepo1_500,65465,0 1533,FRAMEQA27854,ukulele,"what is the guy wearing a black shirt , is playing?",tumblr_na0lvzNzJJ1s7vtgpo1_400,1745,0 1534,FRAMEQA23509,blue,what is the color of the high?,tumblr_nq5ljp5DaL1uygmxjo1_400,21139,2 1535,FRAMEQA35563,two,how many men are sitting on top of a roof drinking together?,tumblr_n9fxbgYr0K1rvpycko1_250,53726,1 1536,FRAMEQA36250,white,what is the color of the guitar?,tumblr_ng1uqvcH4y1t1nzngo1_500,70801,2 1537,FRAMEQA30062,white,what is the color of the hair?,tumblr_ncq9kaqQ2R1tegl32o1_250,14927,2 1538,FRAMEQA3018,turns,what is the young woman doing?,tumblr_npp14yVd861ruoinvo1_400,50547,0 1539,FRAMEQA3907,guitar,what is the boy playing in front of a cool background?,tumblr_nknxletT5q1sgou7qo1_250,13620,0 1540,FRAMEQA3943,black,what is the color of the suv?,tumblr_nccy3a7yht1tguvx7o1_400,50054,2 1541,FRAMEQA51695,two,how many men are conducting the podcast and having fun?,tumblr_nebsu3wlge1r7490vo1_500,101847,1 1542,FRAMEQA28072,puppies,what does the man lay out in a row in stockings?,tumblr_nfwjvryKQj1qc4d1mo1_250,74957,0 1543,FRAMEQA20076,two,how many men are entering the room with one riding a statue?,tumblr_nqtbxhIBN81u8bjw8o1_250,24027,1 1544,FRAMEQA23967,red,what is the color of the tie?,tumblr_np6npym64j1smfzl0o1_1280,80999,2 1545,FRAMEQA12524,two,how many girls are lying under the blanket comforting each other?,tumblr_nh9fzj5h9Y1u57bkto1_250,42689,1 1546,FRAMEQA413,car,what is driving down the road on the left side?,tumblr_nfflefXvpx1u25ovvo1_400,63605,0 1547,FRAMEQA10550,shirt,what is the boy wearing and smiling?,tumblr_nd931nZhS61s1ctsqo1_400,64632,0 1548,FRAMEQA19406,motorcycle,what is skidding off the corner of a racetrack?,tumblr_nk6tq0KVmP1tx8mn0o1_400,78271,0 1549,FRAMEQA29957,red,what is the color of the hair?,tumblr_nhf9ikxHl41tc2wo7o1_250,5737,2 1550,FRAMEQA40920,cash,what is the man counting while throwing it in front of him?,tumblr_nkadbrY0j01rj4f6to1_250,49409,0 1551,FRAMEQA11308,black,what is the color of the hair?,tumblr_n9h0r5Keii1tb698ho1_250,46865,2 1552,FRAMEQA15950,two,how many women that look the same are having a picture?,tumblr_neg0g3h3gH1qgs247o1_500,69999,1 1553,FRAMEQA12838,microphone,what does the man drop on stage?,tumblr_na3eo7OIFT1qfq821o1_400,5853,0 1554,FRAMEQA48318,cars,what are racing and one hits the side and bursts into flames?,tumblr_nauhoyxzcP1tx8mn0o1_400,55526,0 1555,FRAMEQA4016,yellow,what is the color of the car?,tumblr_ne9ty1C8Dw1tr5tuwo1_500,89701,2 1556,FRAMEQA17500,two,how many young men are standing in front of burning candles?,tumblr_ndnen8mJCr1sa0lndo1_500,72354,1 1557,FRAMEQA5120,guitar,what is the man in a suit playing?,tumblr_nculypGc871u0x3uvo1_500,69278,0 1558,FRAMEQA19922,black,what is the color of the umbrella?,tumblr_nkkaabSLxV1rzui38o1_400,15437,2 1559,FRAMEQA21416,kitten,what is playing with the swishing tail of a sitting cat?,tumblr_n9abseuY0C1slj978o1_400,70847,0 1560,FRAMEQA10455,black,what is the color of the chair?,tumblr_n8s711XyXQ1th20u7o1_250,25539,2 1561,FRAMEQA49069,three,how many young men are sitting together and chatting?,tumblr_nhrlcrqLFl1u7c3syo1_500,80637,1 1562,FRAMEQA48402,hat,what did the sexy woman put down to lower her eyes?,tumblr_nbtm7qpM2J1ttyq3ao1_250,14564,0 1563,FRAMEQA14527,microphone,what is the man sitting on stage and shaking?,tumblr_n8pqj1rlmp1t29pn7o1_250,18874,0 1564,FRAMEQA28650,stars,what are performing in studio on television?,tumblr_nexi5fkr5g1u3y1flo1_250,71481,0 1565,FRAMEQA20123,black,what is the color of the suit?,tumblr_npfgad6TZq1ty118ro1_250,24270,2 1566,FRAMEQA52125,cat,what is rubbing against the young boy?,tumblr_nqzef77ISo1qzqg2go1_500,81788,0 1567,FRAMEQA31489,ball,where is the kitten playing?,tumblr_nk6t8rIVdA1tjjnlno1_400,54116,3 1568,FRAMEQA19164,scooter,what does the car avoid while traveling on a road?,tumblr_n9hl6ky3FK1qk377so1_400,84923,0 1569,FRAMEQA11474,box,where does the cat sniff another cat squashed?,tumblr_nad5toBHv81s2mb0qo1_500,62745,3 1570,FRAMEQA12229,motorcycle,what is the person driving through a factory?,tumblr_nasnqxg8kb1tt6vx5o1_250,43969,0 1571,FRAMEQA17307,blue,what is the color of the shirt?,tumblr_nkp0h7ftuy1sofgdso1_250,23766,2 1572,FRAMEQA43762,room,where is the white man making a dance steps?,tumblr_nrjtdvdsMt1sdiz3bo1_400,33402,3 1573,FRAMEQA6619,red,what is the color of the dress?,tumblr_nowj7atVBQ1s9g3wto1_500,48520,2 1574,FRAMEQA28991,road,where is the man riding the skateboard is doing tricks?,tumblr_nfg9rpwbV11soz0p7o1_400,78829,3 1575,FRAMEQA583,cover,what is the beautiful man with short hair breaking?,tumblr_ne9v07TxUL1sjcvc1o1_250,84536,0 1576,FRAMEQA8725,cage,"where is an animal eating french fries ,?",tumblr_nosv3ta6Y91rndm3wo1_250,27133,3 1577,FRAMEQA23866,guitar,what is the man in a backwards hat playing?,tumblr_nbvhcbSyBx1rgwaj9o1_400,12085,0 1578,FRAMEQA26168,backhoe,what throws the man into a pond?,tumblr_njn5u2RkUm1s6zpepo1_400,44521,0 1579,FRAMEQA2742,black,what is the color of the dances?,tumblr_n9yf34l4yG1tii3qao1_250,3917,2 1580,FRAMEQA8017,one,how many man grabs another man 's head and pulls it to his face?,tumblr_ndt3nfDJoE1sc377wo1_500,85804,1 1581,FRAMEQA35287,cat,what jumps up and closes the closet door with its paws?,tumblr_nkyam1X1MM1tmnntwo1_250,37541,0 1582,FRAMEQA41331,two,how many women are showing off their glasses and hats?,tumblr_ndcj27AOTX1tp9bieo1_250,6762,1 1583,FRAMEQA27891,bed,what is the woman jumping off?,tumblr_nbhxpcxAUv1tn9g03o1_250,20005,0 1584,FRAMEQA48775,wall,what appears in front of a desk and a man tries to escape but can not?,tumblr_na02k6GsjK1tgetb4o1_400,27463,0 1585,FRAMEQA5460,two,how many people look forward and then kiss each other?,tumblr_ngkchxtDx51tb1f6ao1_400,34124,1 1586,FRAMEQA20825,cat,what managed to run into the coca cola box?,tumblr_nb1g3oDF0D1qcgyjoo1_400,46484,0 1587,FRAMEQA29836,puppet,"what is the girl singing , and she is holding up?",tumblr_nbkqr0O34Z1twkd2qo1_250,44066,0 1588,FRAMEQA27559,two,"how many men gets surprised by the third man on a stage ,?",tumblr_n9hnnpXMzy1tt1jino1_250,18075,1 1589,FRAMEQA29201,goblet,what does the light haired person with lip piercings and a dark hat with thorns raise?,tumblr_ndrzq15FyY1s6qyp9o1_500,86885,0 1590,FRAMEQA10425,bed,where is the man moving around?,tumblr_n9m54cPuul1s7u6edo1_500,81840,3 1591,FRAMEQA20254,horse,what is chewing an exciting man 's ear on the show?,tumblr_nak0l8OX8X1tatohao1_400,58438,0 1592,FRAMEQA21925,guitar,what are the two men playing in front of the crowd?,tumblr_nr9ol4V9GF1u8skfvo1_500,66907,0 1593,FRAMEQA36315,dog,what shakes the man by the hand and then gives him a high five?,tumblr_nqt05iwece1te94myo1_400,21136,0 1594,FRAMEQA37224,black,what is the color of the bird?,tumblr_np5yr0px4O1twfmf3o1_400,18589,2 1595,FRAMEQA40100,two,how many cars are driving?,tumblr_nri0fojp0G1tx8mn0o1_400,55938,1 1596,FRAMEQA2012,orange,what is the color of the cloth?,tumblr_nb8nl1PVQh1tom9vyo1_400,61802,2 1597,FRAMEQA698,two,how many people are talking to each other?,tumblr_nognkiz2HI1uvi76ao1_500,62027,1 1598,FRAMEQA23616,dog,what are running into the car?,tumblr_njxkdtyDbl1sht3fmo1_250,36792,0 1599,FRAMEQA29778,tie,what is the man adjusting in the mirror?,tumblr_nk5andAo8C1tleghwo1_500,16997,0 1600,FRAMEQA38409,room,where is the guy with black suit opening his eyes?,tumblr_npqo9maJv31tbjksno1_540,10635,3 1601,FRAMEQA11900,phone,"what is the man wearing a black suit and hat , is using and smoking a cigarette?",tumblr_nfmfziQ3X61qj319bo1_250,27811,0 1602,FRAMEQA46344,cat,what is looking the piece of food on a glass table?,tumblr_nqneh6gmCI1uva9gvo1_400,66102,0 1603,FRAMEQA50282,tail,what is the cat staring up and twitching?,tumblr_nc1h818Si01tlk1ano1_250,7880,0 1604,FRAMEQA14630,white,what is the color of the clothing?,tumblr_nb1tyhgYEn1sda6szo1_400,78109,2 1605,FRAMEQA15296,hallway,"where is the couple , wearing coats , is hugging?",tumblr_ngivb5dOC61rwf2xmo1_500,89034,3 1606,FRAMEQA5027,bear,what is fighting and falls over?,tumblr_njb55e5csY1slwpo8o1_250,40890,0 1607,FRAMEQA42673,green,what is the color of the top?,tumblr_ngc3x7Bwpx1tv81ioo1_250,47277,2 1608,FRAMEQA29920,two,how many young men greet with the friendly happy hug?,tumblr_nogkhlzgRK1uvi76ao1_500,62375,1 1609,FRAMEQA29984,black,what is the color of the hair?,tumblr_npl4oiGQes1u8mr7go1_500,55842,2 1610,FRAMEQA15426,yellow,what is the color of the hat?,tumblr_na6u0dxvpu1s0d12ko1_500,86744,2 1611,FRAMEQA27776,ball,"what is the man kicking into a tire , but he misses?",tumblr_nctwxv3Cf61sdoqnro1_500,63764,0 1612,FRAMEQA18861,cat,what is the man holding by its tail?,tumblr_nft79he7Rj1slbfzxo1_500,72567,0 1613,FRAMEQA11296,black,what is the color of the men?,tumblr_ndmd0bTfA01ts7wbfo1_400,87448,2 1614,FRAMEQA24230,puppy,what is curious and sniffing around?,tumblr_nbdje2GanU1tktmbso1_400,44937,0 1615,FRAMEQA40006,room,where is the woman pressing her lips together and then smiling?,tumblr_njzf9iDQIe1sibw2po1_400,31961,3 1616,FRAMEQA6414,black,what is the color of the playing?,tumblr_nfnzb5N7By1t8vkd1o1_500,98954,2 1617,FRAMEQA4881,black,what is the color of the moves?,tumblr_nfg4wgqDLN1u1y9ruo1_500,50919,2 1618,FRAMEQA11901,three,how many men are standing together while one is talking?,tumblr_na5ke1JX9b1tz48xjo1_500,42575,1 1619,FRAMEQA40538,white,what is the color of the boats?,tumblr_nl1ka7Igyp1twhvlao1_400,48032,2 1620,FRAMEQA158,two,how many boys is this sitting and talking while one boy plays with his necklace?,tumblr_niuy3acWZ61shch57o1_250,40241,1 1621,FRAMEQA7537,elephant,what is struggling to walk?,tumblr_n922rsMb261te2f6lo1_400,82171,0 1622,FRAMEQA46710,guitar,what is the guy playing and other guy is dancing in a stage?,tumblr_nalxhkgg2y1rstjlro1_400,39089,0 1623,FRAMEQA3166,two,how many men are pushing and wrestling with each other?,tumblr_nbpvltiHql1tjag8mo1_250,21881,1 1624,FRAMEQA47434,diver,what is cashing an octopus?,tumblr_n9idf18Lt31sjcycuo1_250,73363,0 1625,FRAMEQA45946,car,where are two people holding each other?,tumblr_natxvuXPzH1shtm22o1_500,76035,3 1626,FRAMEQA32954,red,what is the color of the backdrop?,tumblr_neelihONdq1tsc7yfo1_250,9841,2 1627,FRAMEQA36869,brown,what is the color of the hair?,tumblr_nct666AvNA1se0i5uo1_250,45155,2 1628,FRAMEQA7337,two,how many dogs are chasing the ball while dragging a young boy?,tumblr_ng8hdgB5OO1slj978o1_400,92423,1 1629,FRAMEQA13281,dog,what is showing her tongue to something?,tumblr_nkvji4ecmU1qjxfevo1_250,8778,0 1630,FRAMEQA2376,steps,what is the guy walking up backwards on his hands?,tumblr_ndh2k4MQeD1tw8vf9o1_400,91590,0 1631,FRAMEQA3900,two,how many men are listening to people talk with serious looks on their face?,tumblr_nnn4qtnGxr1tek63jo1_500,39140,1 1632,FRAMEQA4514,gun,what is the man pointing at something?,tumblr_ndnxtiHVXh1ti93qgo1_400,32518,0 1633,FRAMEQA22666,nightclub,where is the girl dancing around?,tumblr_nh002o5HB61t8syzjo1_400,18606,3 1634,FRAMEQA30812,round,"what does the man turn in front of a woman , they both smile?",tumblr_nk4svrV1uI1rde1vuo1_500,58176,0 1635,FRAMEQA23235,two,how many young boys are seeing each other and hugging?,tumblr_npdc7wPDYW1uvkm4po1_500,101115,1 1636,FRAMEQA29678,two,how many eccentrically dressed women fight in hand-to-hand combat?,tumblr_net63gZcoG1sk0i2mo1_250,31782,1 1637,FRAMEQA42906,two,how many girls are wearing headsets together?,tumblr_nc9xh5NZ6d1stafvxo1_400,87951,1 1638,FRAMEQA45420,two,how many men is sitting down laugh as they look in front of them?,tumblr_nhi35f292k1stuhtso1_500,44342,1 1639,FRAMEQA2631,medic,what is treating an injured player in a football game?,tumblr_n8qvxbfc1Y1t6142fo1_250,17644,0 1640,FRAMEQA9029,car,what is the man pushing with his feet and it is smoking?,tumblr_nfyoq3PnfT1slj978o1_400,82128,0 1641,FRAMEQA32039,two,how many musicians play guitar on stage together?,tumblr_ng1uqvcH4y1t1nzngo1_500,70801,1 1642,FRAMEQA24328,two,how many boys is embracing falls while one of them scream?,tumblr_n901479nQ81rja3l7o1_250,17171,1 1643,FRAMEQA3591,cap,what is the black guy removing and walking?,tumblr_namu4oOKvg1slmgm0o1_400,26123,0 1644,FRAMEQA4886,two,how many men with same face are talking each other and turning head to the other?,tumblr_nhsmbhcMSy1smv6svo1_500,48493,1 1645,FRAMEQA21901,white,what is the color of the man?,tumblr_nnzm18sXEV1rdynt3o1_500,168,2 1646,FRAMEQA28439,mice,what are playing with their arms?,tumblr_nd0odbifZp1tihaueo1_250,18445,0 1647,FRAMEQA47639,cat,what jumps off the chair to the top of a counter?,tumblr_ninfq9WzsZ1s6zpepo1_250,78597,0 1648,FRAMEQA52988,stick,where is the woman making faces?,tumblr_n9wwljwZk61sbh7xuo1_500,61117,3 1649,FRAMEQA12476,dog,what is ripping apart the stuffed dog while another watched?,tumblr_ngu3mzFpwr1tdjuqvo1_400,67982,0 1650,FRAMEQA44633,costume,what is the cat wearing while riding an automatic vacuum?,tumblr_nap9tkwsHK1s50jqco1_250,50841,0 1651,FRAMEQA24470,cats,what are running to eat something after somebody opens the door?,tumblr_nhchptHDxG1slj978o1_250,3857,0 1652,FRAMEQA9944,car,what flies in the clouded blue sky between two buildings?,tumblr_n8ctf9ELMW1taivooo1_500,79595,0 1653,FRAMEQA12574,two,how many men are sitting down and dancing with their hands?,tumblr_ndj7s5BKDq1tum2v5o1_250,10152,1 1654,FRAMEQA17460,two,how many boys are sitting on the couch and looking upwards?,tumblr_njodpwEZQ41u8js9ho1_500,40905,1 1655,FRAMEQA50390,three,how many men laugh and clap their hands together?,tumblr_na5l4nwhbZ1rodqjco1_500,93324,1 1656,FRAMEQA15269,orange,what is the color of the hat?,tumblr_nc1cszD2L21tjdvfuo1_1280,54206,2 1657,FRAMEQA45014,jacket,what is the man turning and adjusting?,tumblr_n8qskodLIl1qcty0ro1_250,127,0 1658,FRAMEQA23039,red,what is the color of the hair?,tumblr_nq3yztArii1trlsmdo1_250,13171,2 1659,FRAMEQA5181,mug,what does the woman kick at another woman?,tumblr_n9rm225ieV1tdmffyo1_250,19751,0 1660,FRAMEQA2715,dog,what is hopping up the stairs?,tumblr_nbuhc5cUJn1rotc20o1_400,19595,0 1661,FRAMEQA14037,brown,what is the color of the hair?,tumblr_n9frp5eApG1t5ojzdo1_250,13712,2 1662,FRAMEQA24956,white,what is the color of the shirt?,tumblr_nfdhm4hgxd1qmjp5wo1_500,90886,2 1663,FRAMEQA24512,white,what is the color of the color?,tumblr_nrlcpoA7j61ungyc9o1_500,93000,2 1664,FRAMEQA47527,two,how many girls are sitting at the table with microphones?,tumblr_n9w2k0vtbr1rqxjc9o1_400,57867,1 1665,FRAMEQA47859,two,how many people on both sides of him swing their hair?,tumblr_nf5simhyMX1u3ti95o1_250,15157,1 1666,FRAMEQA10842,bird,what is walking up to the cat 's face and nibbling at it?,tumblr_n97k6nnj3K1tbjfazo1_400,34099,0 1667,FRAMEQA19106,jacket,what is the woman with short hair wearing?,tumblr_nhc93dy1rj1u4t4tso1_500,90731,0 1668,FRAMEQA7211,train,what crashes into an object and a huge explosion occurs?,tumblr_nkwri28wKr1tm3clao1_400,27987,0 1669,FRAMEQA52188,two,how many woman are standing in front on a blue door?,tumblr_n9p1stcULz1t5ojzdo1_250,44121,1 1670,FRAMEQA46122,kitchen,where are the crazy girls having a cat fight?,tumblr_nafnschGYZ1r8w2xvo1_400,13207,3 1671,FRAMEQA2082,one,how many man sneeze makes the other laugh?,tumblr_nhaz8iK79E1tn3rq6o1_400,61450,1 1672,FRAMEQA21124,black,what is the color of the man?,tumblr_n96bpp0Lma1r37y87o1_400,7343,2 1673,FRAMEQA39982,microphone,where is the woman singing a song?,tumblr_n92p88zgpM1tt7994o1_250,5757,3 1674,FRAMEQA43957,white,what is the color of the shirt?,tumblr_nkkdvvGao31tipom1o1_400,35603,2 1675,FRAMEQA1355,blue,what is the color of the top?,tumblr_nhg67dv2uD1tgetb4o1_400,56393,2 1676,FRAMEQA19024,cat,what jumps onto the running toddler and runs away?,tumblr_nkybhohXkX1tmnntwo1_400,93625,0 1677,FRAMEQA46179,three,how many people are walking in front of a line of people?,tumblr_nhp246FgbJ1tk1kc2o1_400,37801,1 1678,FRAMEQA19027,cat,what is walking the dog on a leash?,tumblr_n9dxxv9ONq1sk96t7o1_400,59286,0 1679,FRAMEQA4987,cat,what are the puppies chasing throughout the house?,tumblr_npsr937NMb1tpg4boo1_250,27621,0 1680,FRAMEQA2242,white,what is the color of the shirt?,tumblr_nd5sszzMyl1r20o7po1_500,43493,2 1681,FRAMEQA14064,purple,what is the color of the liquid?,tumblr_nkyr5zAE6p1u0bd1bo1_400,68746,2 1682,FRAMEQA10604,cigar,what does the man pick up a bundle of money then smokes?,tumblr_nptcxjHAJf1uxo4tfo1_500,60939,0 1683,FRAMEQA39173,red,what is the color of the shirt?,tumblr_nc3uo0BExS1trkkpko1_250,9393,2 1684,FRAMEQA10885,orange,what is the color of the dress?,tumblr_ncqcsfFKnr1rshkvyo1_400,52329,2 1685,FRAMEQA14990,one,how many boy is playing with the nose of another boy when the boy motions for him to stop?,tumblr_n8ygtqbDoS1th8gzmo1_500,97019,1 1686,FRAMEQA31341,two,how many girls are kissing and then one girl talks?,tumblr_nhx5igYXE61u38aego1_500,73993,1 1687,FRAMEQA8496,black,what is the color of the hair?,tumblr_n9vksaep7X1thc5tio1_250,47062,2 1688,FRAMEQA50672,two,how many men are playing music and dancing?,tumblr_nbfth4o5uV1qzfmdho1_400,37507,1 1689,FRAMEQA27970,blue,what is the color of the background?,tumblr_ncx742lmV61rcumn7o1_400,96209,2 1690,FRAMEQA3033,two,how many people dance close together in the hall together?,tumblr_npa30jXsLg1qdvza8o1_400,96685,1 1691,FRAMEQA44876,black,what is the color of the shirt?,tumblr_nk37choqIF1uos7q4o1_400,30118,2 1692,FRAMEQA21310,one,how many guy has his arm around the shoulder of another guy?,tumblr_ncribxI9q81qi39coo1_500,99517,1 1693,FRAMEQA15104,car,what is driving and loses the tire?,tumblr_nq5lrzi7xk1tx8mn0o1_400,78316,0 1694,FRAMEQA25377,suit,"what is the man , wearing , comes through a door held open by another man?",tumblr_nkryq13Fgy1tvfpn9o1_500,96976,0 1695,FRAMEQA49426,two,how many guys are fighting?,tumblr_nhphqvEEG11slj978o1_400,87067,1 1696,FRAMEQA33783,rope,what are two men jumping at the same time?,tumblr_npmvj70dMN1qztqp5o1_500,61017,0 1697,FRAMEQA22595,cat,what is playing in the snow with his owner?,tumblr_njs0fvt8Hb1tk2ngvo1_500,76500,0 1698,FRAMEQA41857,cat,what runs away from the flying toy?,tumblr_ngbssiZkk81tk2ngvo1_400,55993,0 1699,FRAMEQA19498,two,how many men dance while one man watches?,tumblr_n9yucrQ0CD1rcjuu7o1_400,19184,1 1700,FRAMEQA3354,blue,what is the color of the face?,tumblr_ngnw7hrGPi1u60vhlo1_400,33756,2 1701,FRAMEQA51951,two,how many footballers celebrate by punching the air simultaneously?,tumblr_npkf8jbfkA1uxhu44o1_400,40031,1 1702,FRAMEQA49031,two,how many men are dancing down the street?,tumblr_n8qe20CCbF1teai02o1_400,67100,1 1703,FRAMEQA37978,black,what is the color of the jacket?,tumblr_n8zhqyqkRq1s1g2ero1_500,84790,2 1704,FRAMEQA52289,two,how many cars are racing?,tumblr_nrah086BN91tx8mn0o1_400,91940,1 1705,FRAMEQA961,white,what is the color of the suit?,tumblr_nac2p29bq51srzj7lo1_250,8489,2 1706,FRAMEQA9775,dog,what plays with the ball and a bird?,tumblr_ngv6p5XLxa1u4i3qco1_400,36984,0 1707,FRAMEQA40359,two,how many woman are sitting and playing guitars?,tumblr_ngv80p45u21sewywlo1_250,39505,1 1708,FRAMEQA37556,white,what is the color of the shirt?,tumblr_njy5lh8wY21u1m2sso1_500,76227,2 1709,FRAMEQA34026,gray,what is the color of the eyes?,tumblr_npl3rsZ5rC1ux8xe0o1_400,53768,2 1710,FRAMEQA33037,black,what is the color of the man?,tumblr_ng6ilnI1iL1tkvqk7o1_500,83137,2 1711,FRAMEQA19977,wheel,what is the man driving a race car loses steering?,tumblr_no3fm3Y8ip1un86uao1_500,34502,0 1712,FRAMEQA20948,white,what is the color of the guy?,tumblr_nd6u5vgOwZ1tekfeyo1_500,82710,2 1713,FRAMEQA26707,black,what is the color of the gloves?,tumblr_ncrtgugzFi1tz6gnyo1_500,47621,2 1714,FRAMEQA3105,lions,what wrestle and one licks the other?,tumblr_ncy89sSxEH1t4eui2o1_500,84234,0 1715,FRAMEQA22567,cat,what is wearing a costume is eating a banana?,tumblr_nkhnomg0r01u1pokno1_250,53313,0 1716,FRAMEQA4689,tights,what is the woman pulling up while sitting on a bed?,tumblr_n9e4inWZv51rk2gato1_400,43463,0 1717,FRAMEQA693,racetrack,what is the racing car skidding off while taking a corner?,tumblr_nreudiOfno1tx8mn0o1_400,78282,0 1718,FRAMEQA37339,butterfly,what is sitting on the flower?,tumblr_nkwxxlRnvb1sfdqnro1_400,38744,0 1719,FRAMEQA47832,two,"how many young boys on a deck , one picks up the other and carries him?",tumblr_neolataYzl1smpuhno1_500,88901,1 1720,FRAMEQA49908,car,what pulls out in front of the other race car?,tumblr_ner7ylN8ki1sncaa3o1_400,55584,0 1721,FRAMEQA43116,two,how many men look on at the man covered with duct tape?,tumblr_naiu2l4iHW1tjlguuo1_500,97942,1 1722,FRAMEQA35113,cat,what is startled by some bananas and flips around hysterically?,tumblr_nba8fj99IL1swsvnfo1_400,41749,0 1723,FRAMEQA32589,sun,what glasses claps and bows?,tumblr_ncacvoVom71sai51xo1_500,76351,0 1724,FRAMEQA18435,guitar,what does the man in a room strum?,tumblr_ney1qn9pP21ssuua8o1_250,31604,0 1725,FRAMEQA50405,cat,what is wearing a shirt stands on its hind legs and gives a person a high five?,tumblr_nr2wgxdabT1u76jino1_400,42056,0 1726,FRAMEQA7410,two,how many males in black uniform are playing with two floating cats?,tumblr_nebx0vqnAG1tqybg9o1_400,43459,1 1727,FRAMEQA19068,three,how many men is sitting the one in the back covers his face with his arm?,tumblr_n9orznkSQa1sorauco1_400,79628,1 1728,FRAMEQA29631,yellow,what is the color of the jersey?,tumblr_nh25kqVdbO1teaq0so1_250,18669,2 1729,FRAMEQA2058,hat,what is the man with long hair wearing and talking?,tumblr_ncz16vtohx1tmhwpbo1_400,42438,0 1730,FRAMEQA35316,two,how many men are smiling and laughing at each other?,tumblr_nkp92t0mM21si94j3o1_500,62382,1 1731,FRAMEQA27266,two,how many men on motorcycles are doing wheelies?,tumblr_nhmyliMMZn1t0cpnmo1_500,82692,1 1732,FRAMEQA32176,one,how many man holds his hand out for a fist bump?,tumblr_n9le1merj21s5t0x8o1_400,45266,1 1733,FRAMEQA39118,room,where is the fashion model walking?,tumblr_n9tuqn05ec1rd0civo1_400,59139,3 1734,FRAMEQA18301,green,what is the color of the jacket?,tumblr_nl2dbqG2Mn1tkv5hvo1_250,41342,2 1735,FRAMEQA51736,two,how many women are wrestling?,tumblr_ng6783M04i1sqox3co1_250,49468,1 1736,FRAMEQA8872,dog,what is the man petting with a skeletal hand on a stick?,tumblr_nhd9eyiVHn1row8k8o1_400,52836,0 1737,FRAMEQA39571,car,what is doing the turn in the middle of the track?,tumblr_nk9d7bL7eY1tx8mn0o1_400,56415,0 1738,FRAMEQA52935,floor,where is the group of fish swimming?,tumblr_n9wt2qU5EK1tbjfazo1_400,69923,3 1739,FRAMEQA5128,black,what is the color of the mask?,tumblr_ngps4f7xik1smwx64o1_500,48187,2 1740,FRAMEQA7990,black,what is the color of the hair?,tumblr_nirpp5q5l71u8w5t6o1_400,1746,2 1741,FRAMEQA20470,gray,what is the color of the sweater?,tumblr_nknb86YzIa1u3knpvo5_400,12,2 1742,FRAMEQA10395,beer,what are several men cheering and drinking?,tumblr_nbnqliX1Xy1tgwlf5o1_500,77595,0 1743,FRAMEQA7929,white,what is the color of the shirt?,tumblr_nraer7SgkL1tqphfho1_500,71845,2 1744,FRAMEQA23156,cat,what is pawing at the boy 's face?,tumblr_nqgyd6uGf41rw1wnno1_500,33187,0 1745,FRAMEQA26275,berries,what are being dropped into the blender?,tumblr_nb5rai5TiW1tkypqvo1_250,23146,0 1746,FRAMEQA19435,car,what is slicing in the curve over the snowy road?,tumblr_nhklv0Td991reseiyo1_1280,89497,0 1747,FRAMEQA29472,car,where did the group of kids ride down the street?,tumblr_nrcbdvtDHl1u3n11qo1_500,57651,3 1748,FRAMEQA1564,white,what is the color of the man?,tumblr_nc7o1juY5G1tm4jv9o1_250,23498,2 1749,FRAMEQA17802,dog,what is this being squirted in the mouth by a water gun?,tumblr_nbsdx5f0Gm1rb71dxo1_400,69966,0 1750,FRAMEQA33272,white,what is the color of the shirt?,tumblr_nabzm3PL5r1sfcy9jo1_500,68696,2 1751,FRAMEQA43398,red,what is the color of the hair?,tumblr_nee158JiiR1r7qucoo1_400,63913,2 1752,FRAMEQA6702,purple,what is the color of the sheet?,tumblr_nabwvrGgUt1rmv3nuo1_500,70098,2 1753,FRAMEQA50157,mask,what is the person wearing and moving lights on their hands?,tumblr_nfgqcmmccZ1te2r7co1_400,82180,0 1754,FRAMEQA36973,dog,what is running down the hall on two legs?,tumblr_nb2n5xYQmY1tdjuqvo1_500,69298,0 1755,FRAMEQA37980,two,how many people walk through the door one after the other?,tumblr_nbbtk3YVpn1tkyu2bo1_250,5189,1 1756,FRAMEQA36513,cat,what is running amok in the kitchen?,tumblr_nhpugqJVgm1s6zpepo1_400,30538,0 1757,FRAMEQA19073,black,what is the color of the guy?,tumblr_ne32rt51C21tlipiko1_500,68467,2 1758,FRAMEQA42355,coffee,what is the cute girl grabbing and drinking it?,tumblr_n9tb8ftut51tcssiro1_400,65511,0 1759,FRAMEQA31813,black,what is the color of the shirt?,tumblr_na47kyP5yR1td4yjbo1_400,33749,2 1760,FRAMEQA29978,three,how many female artists does the image show performing on a stage?,tumblr_nk1owjaSEb1qgvgxbo1_250,3345,1 1761,FRAMEQA46803,black,what is the color of the man?,tumblr_n9t1ycvMk81rmqkjuo1_500,81984,2 1762,FRAMEQA20210,red,what is the color of the carpet?,tumblr_niuqb9DhOU1tjx386o1_250,16138,2 1763,FRAMEQA28062,two,how many fire sparklers is the woman holding in her hands out by the beach?,tumblr_nd91urmt3f1tmecz1o1_400,63566,1 1764,FRAMEQA8321,heels,what is the woman wearing?,tumblr_ncz222VcuZ1ttuz3po1_400,1324,0 1765,FRAMEQA11166,guitar,what is the man with long hair and a beard playing?,tumblr_naxx2ihA7a1rqhgwuo1_500,94253,0 1766,FRAMEQA48009,two,how many people does this show splitting a pack of cards?,tumblr_nc8m05WdLB1tljy7co1_500,101528,1 1767,FRAMEQA21138,two,how many men are wearing tattoos in a room?,tumblr_nr5t5gfWQk1tjkho6o1_400,62110,1 1768,FRAMEQA42724,black,what is the color of the man?,tumblr_ndyfoeWTpX1qa051so1_500,85777,2 1769,FRAMEQA26777,dog,what is digging his head in the snow and licks himself?,tumblr_ncj1cj63rn1trxml2o1_500,79343,0 1770,FRAMEQA7497,dog,what is trying to jump over his fenced enclosure?,tumblr_nfbeo6Qqr91tl8fnfo1_400,80040,0 1771,FRAMEQA24417,two,how many men are walking and talking in an alley?,tumblr_ncfa7hPZ2h1sl2cdao1_500,94639,1 1772,FRAMEQA11186,three,how many girls are spinning on stage against a forest background?,tumblr_ndcczs10pL1r4bi5do1_250,51381,1 1773,FRAMEQA9677,two,how many guys are talking?,tumblr_n9f88htQ4d1trf38oo1_500,94219,1 1774,FRAMEQA3515,red,what is the color of the laughs?,tumblr_nr2yi2tEwm1ux03doo1_400,66974,2 1775,FRAMEQA13730,decorator,what is making the flower with icing?,tumblr_nk2y1oOWfv1sqefk3o1_400,29081,0 1776,FRAMEQA22887,gray,what is the color of the man?,tumblr_nis929B11K1sxod2fo1_250,50970,2 1777,FRAMEQA7603,five,how many people in ninja costumes are doing flips and posing?,tumblr_nk0spcvzzb1tqkvbxo1_400,35945,1 1778,FRAMEQA4194,white,what is the color of the car?,tumblr_ncdvtc57Ux1tx8mn0o1_400,52693,2 1779,FRAMEQA25894,yellow,what is the color of the banana?,tumblr_naewvsd2Hj1rpjr5so1_500,27793,2 1780,FRAMEQA22683,two,how many men are jumping rope at the same time?,tumblr_npmvj70dMN1qztqp5o1_500,61017,1 1781,FRAMEQA25654,black,what is the color of the jacket?,tumblr_n9t1xjdehh1ti9jboo1_400,60095,2 1782,FRAMEQA31654,two,how many men are talking in the kitchen?,tumblr_n9u8sctqwf1takocao1_500,99638,1 1783,FRAMEQA50075,black,what is the color of the hair?,tumblr_nf1ympW7je1rmcnl8o1_500,82563,2 1784,FRAMEQA52883,brown,what is the color of the hair?,tumblr_nf8yxryLBY1rasykto1_250,38850,2 1785,FRAMEQA23535,two,how many people outdoors by the water are talking?,tumblr_nhvd9bsgbE1u7ielzo1_500,97433,1 1786,FRAMEQA28277,three,how many young men are sitting down together?,tumblr_no62vs7NV21uvo3r1o1_100,5803,1 1787,FRAMEQA29742,two,how many men in football kits are shaking hands?,tumblr_n9ktdqW1gV1st6jdpo1_250,16196,1 1788,FRAMEQA14250,black,what is the color of the jacket?,tumblr_nfhvhieq9O1u4qysso1_400,62996,2 1789,FRAMEQA50153,cub,what is licking the man 's face?,tumblr_nchyfz0sQj1slj978o1_250,27666,0 1790,FRAMEQA44291,drums,what is the man sitting at a drum set and playing?,tumblr_nbkisdPmRk1ruhz45o1_500,56956,0 1791,FRAMEQA1587,blue,what is the color of the shirt?,tumblr_natzb43BNr1tdmffyo1_400,50030,2 1792,FRAMEQA24604,white,what is the color of the trimming?,tumblr_nnohewxZAc1s9i6j1o1_400,25897,2 1793,FRAMEQA8532,two,how many men are dancing to the beat of lively music?,tumblr_nhia9fbNSN1syml9co1_400,88883,1 1794,FRAMEQA7823,red,what is the color of the suits?,tumblr_nhzhvabsfq1s4nyalo1_400,26694,2 1795,FRAMEQA9789,brown,what is the color of the hair?,tumblr_nah50jbmeS1sfymw8o1_400,79948,2 1796,FRAMEQA20085,white,what is the color of the outfits?,tumblr_n9e3fpyjjr1sq1mmgo1_400,60560,2 1797,FRAMEQA49479,yellow,what is the color of the outfit?,tumblr_nobe26hwiZ1s5jrcko1_400,77076,2 1798,FRAMEQA888,green,what is the color of the car?,tumblr_n8zp4hIxxe1sncaa3o1_400,56451,2 1799,FRAMEQA52300,one,how many man spills his drink?,tumblr_nkj564CLrz1u7s4oro1_400,41105,1 1800,FRAMEQA13823,four,how many girls is wearing short skirts are playing in the field?,tumblr_nfwyt1ud1v1tkrqtzo1_500,83401,1 1801,FRAMEQA11921,breakfast,what does the person cut up after pouring on syrup?,tumblr_nl1yi5TXGX1s62it9o1_250,90631,0 1802,FRAMEQA45626,white,what is the color of the dress?,tumblr_nax1m6RT3M1taukq1o1_500,76436,2 1803,FRAMEQA9913,two,how many women are happily wearing headsets and playing a console game?,tumblr_nc9xh5NZ6d1stafvxo1_400,87951,1 1804,FRAMEQA23771,red,what is the color of the wine?,tumblr_nf46bks1TO1qcafneo1_250,18856,2 1805,FRAMEQA758,chair,"where is the girl sitting ,?",tumblr_n9yargKVPA1ra5tilo1_500,88389,3 1806,FRAMEQA19598,two,how many men smile and look to the side?,tumblr_nh29z0v9vk1sico5po1_250,39671,1 1807,FRAMEQA16463,horse,what is running through the pasture?,tumblr_nowuhcCWo71s3fuxko1_400,71803,0 1808,FRAMEQA145,monkey,"what does the man hold , then looks away?",tumblr_neh91mOt5X1sh2bv5o1_500,69384,0 1809,FRAMEQA16788,four,how many people in a car are laughing and joking?,tumblr_n9n8owFIkV1se1vi6o1_250,47029,1 1810,FRAMEQA33194,one,how many man moves his legs while another man plays a guitar?,tumblr_nbjiylGWRL1tlsqhto1_250,91085,1 1811,FRAMEQA1969,bucket,where does the litter of kittens cry?,tumblr_nfarhcHDam1seb8aro1_400,65054,3 1812,FRAMEQA22857,picture,what is the cat playing with a phone and taking?,tumblr_n9tiwqdAI71tdmffyo1_400,15936,0 1813,FRAMEQA19383,snack,what is the young woman using a computer and having?,tumblr_niwi7oCIWW1qatdo3o1_500,57281,0 1814,FRAMEQA19673,two,how many women is the man watching excitedly?,tumblr_naf8zdZnK81rjqtkto1_400,83201,1 1815,FRAMEQA12978,two,how many female identical twins are talking and laughing?,tumblr_nbuq7antOu1t9h1yfo1_400,52004,1 1816,FRAMEQA44352,car,where did tow people sit and shaking their hands?,tumblr_nqtbhyWjrF1twsxdzo1_400,78772,3 1817,FRAMEQA9770,brown,what is the color of the horse?,tumblr_n8z5gkpbGb1rwgxlqo1_500,74583,2 1818,FRAMEQA37193,gray,what is the color of the cat?,tumblr_nhxl2nzKDV1u4v3ypo1_400,36764,2 1819,FRAMEQA47557,red,what is the color of the microphone?,tumblr_ndujix89UO1u1lbl0o1_250,9663,2 1820,FRAMEQA33768,black,what is the color of the man?,tumblr_njupvneEJG1unubnvo1_250,39798,2 1821,FRAMEQA31696,ball,what does the baseball game show being thrown?,tumblr_njvqpwZ6qj1u9bs4qo1_500,31250,0 1822,FRAMEQA22656,black,what is the color of the shirt?,tumblr_nhs3djg65p1s3f3n2o1_250,80713,2 1823,FRAMEQA22516,two,how many people does the woman stab with two swords?,tumblr_nq78cpVU5G1tcbh6ko1_500,97251,1 1824,FRAMEQA37626,guitar,what is the man playing and singing with his band on stage?,tumblr_nkppl4d1vF1u6m0glo1_250,26093,0 1825,FRAMEQA23280,street,where is the person opening and umbrella while standing?,tumblr_ngt78gZQ711qzunbgo1_250,47430,3 1826,FRAMEQA19126,dog,what tries to bite something in the air?,tumblr_nkwg77Ux711r5ygbco1_250,47488,0 1827,FRAMEQA11303,white,what is the color of the shirt?,tumblr_n8xab5aAa51rpsmpqo1_250,11249,2 1828,FRAMEQA15953,dress,what is the woman wearing?,tumblr_no7ms6bQkF1qf738lo1_500,47662,0 1829,FRAMEQA28424,kangaroo,what pushes the man into a pond from behind?,tumblr_n97xz6RSz21tgyx9vo1_400,44697,0 1830,FRAMEQA25572,dog,what is backing up on the comforter?,tumblr_nb1mrl3e4N1slj978o1_250,71461,0 1831,FRAMEQA7268,red,what is the color of the hair?,tumblr_na33rpe5JC1skvqs1o1_250,38412,2 1832,FRAMEQA30622,girl,what is jumping and taking someone 's hand?,tumblr_na7kdnXQoA1tuatvvo1_400,44409,0 1833,FRAMEQA1559,two,how many fingers did the guy smile and held up?,tumblr_nhw10gEtVb1th4k9no1_1280,52450,1 1834,FRAMEQA42694,cat,what is giving the dog a back rub with its paws?,tumblr_nhxl2nzKDV1u4v3ypo1_400,36764,0 1835,FRAMEQA6337,white,what is the color of the shirt?,tumblr_no7frjTMmN1u4wcs2o1_400,39464,2 1836,FRAMEQA48182,cats,what run to their bowls and start eating?,tumblr_nhchptHDxG1slj978o1_250,3857,0 1837,FRAMEQA30176,suspenders,what unhook during an event?,tumblr_nkzxgkhPUa1shch57o1_250,2618,0 1838,FRAMEQA16542,toy,what are two policemen chasing and hitting?,tumblr_nad9ej0PCm1sk96t7o1_400,63718,0 1839,FRAMEQA15584,elephants,what play music in an open field?,tumblr_npwfpv91tK1uyo4nfo1_500,61661,0 1840,FRAMEQA36433,white,what is the color of the shirt?,tumblr_n9rfpjNIk91tzs6b2o1_500,92057,2 1841,FRAMEQA12413,black,what is the color of the jacket?,tumblr_ncizwyYsXB1s9q0pdo1_250,27270,2 1842,FRAMEQA16536,fox,what shook around and looked straight with its mouth open?,tumblr_njwg4tiDgC1u8eq3no1_400,66173,0 1843,FRAMEQA33551,car,what is driving down the street?,tumblr_nf2n4ztlqF1u25ovvo1_400,63509,0 1844,FRAMEQA15241,airplane,what is flying over the ocean about to land on a navy ship?,tumblr_nk9bepAt5K1sq12j9o1_400,82896,0 1845,FRAMEQA36189,black,what is the color of the hair?,tumblr_nlsgn1kl551uof04fo1_500,88964,2 1846,FRAMEQA31622,boar,what does well staying on the surfboard in the ocean?,tumblr_npwsjxjEwY1tpg4boo1_500,80906,0 1847,FRAMEQA33749,drums,what is the man in a hat playing?,tumblr_n9jj516Viy1rwad3do1_250,78741,0 1848,FRAMEQA893,blue,what is the color of the hat?,tumblr_nb7upoDzIi1s6lq6so1_250,41437,2 1849,FRAMEQA33867,bird,what is pushing the turtle off a ledge and into a bucket?,tumblr_nb80spNot51tdmffyo1_400,22894,0 1850,FRAMEQA12910,black,what is the color of the tuxedo?,tumblr_ncb19s7Pm01tn1tjzo1_500,48338,2 1851,FRAMEQA20804,one,how many girl smiles while the other one is talking and smiling?,tumblr_nm5g67lpIs1r2mlm8o1_500,95960,1 1852,FRAMEQA46226,guitar,what do two musicians play on stage together?,tumblr_ng1uqvcH4y1t1nzngo1_500,70801,0 1853,FRAMEQA17229,ball,what does the soccer player kick past a goalie into the goal?,tumblr_nk3bdtgM5X1ty4xioo1_500,63358,0 1854,FRAMEQA3474,bubble,what is the girl wearing a red and white top is blowing?,tumblr_nd6tl5MFnq1u110syo1_500,92964,0 1855,FRAMEQA14395,two,how many men are dancing together and falling over?,tumblr_nfi5pz1OK01twoivuo1_250,417,1 1856,FRAMEQA1329,black,what is the color of the jacket?,tumblr_n96l1sX4yo1s3nbpco1_500,88506,2 1857,FRAMEQA15932,red,what is the color of the umbrella?,tumblr_nc6vuenb6t1tvi3k9o1_400,32791,2 1858,FRAMEQA17878,hat,"what is the man singing and dancing , falls off and he grabs it?",tumblr_ng6hsntJrr1s3f23uo1_250,1683,0 1859,FRAMEQA7374,two,how many young boys are swinging bats in a batting cage?,tumblr_np0kxcHgTJ1uvdb8xo1_400,62177,1 1860,FRAMEQA51115,black,what is the color of the top?,tumblr_ndufzyTI4k1tlhv9no1_500,101733,2 1861,FRAMEQA29437,black,what is the color of the jacket?,tumblr_nfjel1i9RM1u43d61o1_500,70474,2 1862,FRAMEQA17712,airplane,what is the man walking off?,tumblr_nh1zx5bDSP1tqrf5uo1_400,66187,0 1863,FRAMEQA40632,four,how many men are standing and start dancing together?,tumblr_nd6lx47Ndj1slrp89o1_400,45369,1 1864,FRAMEQA26254,pictures,what do two lovers have a fun and making?,tumblr_mr11isrNGe1say5iqo1_500,63272,0 1865,FRAMEQA38286,room,where is the girl with red hair smoking?,tumblr_nee158JiiR1r7qucoo1_400,63913,3 1866,FRAMEQA50561,black,what is the color of the suit?,tumblr_nkv73zC1m21rxyt1xo1_500,69188,2 1867,FRAMEQA7146,blue,what is the color of the shirt?,tumblr_ncejjuBADu1rhze17o1_400,85452,2 1868,FRAMEQA45986,window,what is the man with a hood leaning out and shaking his head?,tumblr_nc1q320Ed51s8jkazo1_250,30573,0 1869,FRAMEQA20046,umbrella,what is the woman holding and surrounded by flying birds?,tumblr_nkkaabSLxV1rzui38o1_400,15437,0 1870,FRAMEQA40511,trunk,what is the man in a blue shirt blowing and wiping off?,tumblr_naj3brtcOB1sjcvr3o1_400,27188,0 1871,FRAMEQA28528,ball,what is one basketball player throwing?,tumblr_nabzy4yOL81tsxh57o1_400,50858,0 1872,FRAMEQA47644,two,how many young men are dancing together on the stage?,tumblr_nr58uwv0IK1t0ojyvo1_400,15296,1 1873,FRAMEQA2876,two,how many men walk through the building together with coffee?,tumblr_nk32pnnazT1skvgwao1_400,83387,1 1874,FRAMEQA19489,black,what is the color of the girl?,tumblr_ndnpjvXW4x1sp70bgo1_250,7403,2 1875,FRAMEQA46834,car,what is edging down an incline towards a body of water?,tumblr_nfflcuX90m1u25ovvo1_400,63666,0 1876,FRAMEQA6838,black,what is the color of the shirt?,tumblr_ngagwkaeLH1rkbo6ho1_400,46084,2 1877,FRAMEQA15630,seven,how many men all do a standing back flip at the same time while holding hands?,tumblr_ndpbmiziDk1slj978o1_400,40913,1 1878,FRAMEQA10851,frogs,"what sit on rocks , and one of them climbs from one to the other?",tumblr_nksdyhXtpu1rhl4f0o1_250,22832,0 1879,FRAMEQA46564,two,how many women in lingerie and capes clasp their hands together and walk holding hands?,tumblr_ngfwivvI3v1rmxyxeo1_250,45678,1 1880,FRAMEQA15030,cigarette,what is the bearded man wearing a black shirt is smoking?,tumblr_nk2gmq8jhM1si8uq7o1_400,31244,0 1881,FRAMEQA16356,two,how many men are in the car and one dumps out a can?,tumblr_n8s2wj3j9W1s0vm19o1_400,54442,1 1882,FRAMEQA1947,car,what is being driven down the road?,tumblr_netczdYQLZ1u25ovvo1_400,63490,0 1883,FRAMEQA20539,cat,what is the raccoon stealing food?,tumblr_ncaqiodMqL1r3a5jdo1_250,17208,0 1884,FRAMEQA4752,two,how many men are kissing while another two men laugh?,tumblr_n94fo5XLEK1s71fqlo1_250,49701,1 1885,FRAMEQA5519,two,how many men are dancing inside the car?,tumblr_nopqno1m9H1r2ga1uo1_400,77278,1 1886,FRAMEQA9001,white,what is the color of the cat?,tumblr_nju9ibDTtt1u3g519o1_400,54134,2 1887,FRAMEQA19377,black,what is the color of the men?,tumblr_nfipaisUIE1sqsp7io1_500,71739,2 1888,FRAMEQA50799,one,how many runs are the men dancing then across the stage?,tumblr_ndd7topxfn1tj2kheo1_400,44245,1 1889,FRAMEQA7737,guitar,what does the young guy play among a group of dancing people?,tumblr_nqtz5nskY91u6j7oxo1_250,1667,0 1890,FRAMEQA41847,two,how many woman are lifting weights and exercising?,tumblr_nb7mt8Xm4z1tkeyq7o1_250,76150,1 1891,FRAMEQA19982,black,what is the color of the jacket?,tumblr_nnk20yEj701u0kse9o1_500,7406,2 1892,FRAMEQA50006,two,how many boys are playing around with each other?,tumblr_neshm22YoP1ty0043o1_400,22860,1 1893,FRAMEQA21028,two,how many young boys are smiling as they rest their heads together?,tumblr_nckjnmQk1a1siybp5o1_250,13898,1 1894,FRAMEQA38052,white,what is the color of the girl?,tumblr_nk2vux3HHB1rl202so1_250,5298,2 1895,FRAMEQA14867,floor,what is the shirtless man hitting with a hammer?,tumblr_nfky23RT5W1tiz10fo1_250,11113,0 1896,FRAMEQA42514,two,how many guys is wearing microphones are looking closing at each other and then one tuns away?,tumblr_n9ywk5HGpS1rs9keno1_500,72189,1 1897,FRAMEQA24289,white,what is the color of the shirt?,tumblr_nihobb7cQ81u8uroco1_250,44716,2 1898,FRAMEQA5987,white,what is the color of the pup?,tumblr_nfdl028aPE1rufswgo1_400,25068,2 1899,FRAMEQA17980,two,how many groups of three men are getting ready to sing into microphones?,tumblr_nb8fknCDNU1thi9glo1_400,65016,1 1900,FRAMEQA36548,two,how many men fight indoors in an empty building?,tumblr_nim1nvt1em1sqlieso1_400,93077,1 1901,FRAMEQA18920,cat,what pushes the door and then falls to the floor while another cat watches?,tumblr_njouy2MkRI1unyeoio1_400,20303,0 1902,FRAMEQA30239,belt,what are the man and a woman wearing and losing weight?,tumblr_n9vqbipKqn1tas5ixo1_400,22435,0 1903,FRAMEQA23033,red,what is the color of the carpet?,tumblr_nb9ztnMJ2s1ti8b6yo1_500,26328,2 1904,FRAMEQA16367,two,how many young guys are looking fancy in the photo shoot?,tumblr_nl0dca3y0r1u8ogblo1_500,97415,1 1905,FRAMEQA12604,octopus,what is the deep sea diver cashing?,tumblr_n9idf18Lt31sjcycuo1_250,73363,0 1906,FRAMEQA26758,cat,what is playfully fighting with the dog?,tumblr_nki72xibIX1tatohao1_250,3605,0 1907,FRAMEQA39496,picture,what are two women having?,tumblr_neg0g3h3gH1qgs247o1_500,69999,0 1908,FRAMEQA33792,cigarette,what is the young man holding?,tumblr_n9aq10meZT1rufn8zo1_500,52080,0 1909,FRAMEQA47310,dish,where is chocolate sauce being poured?,tumblr_ngj5js922h1qezxdbo1_250,23062,3 1910,FRAMEQA46726,two,how many girls are weeping together in the darkness?,tumblr_ncmkrlulEL1tt4nxqo1_250,26024,1 1911,FRAMEQA46229,blue,what is the color of the shirt?,tumblr_necbt7TYbT1ttsz9wo1_400,60187,2 1912,FRAMEQA23849,guitar,what is the guy holding and raising it above his head?,tumblr_na5xrhfzrg1s5gcujo1_250,14789,0 1913,FRAMEQA24317,white,what is the color of the shorts?,tumblr_ncgsqqABFo1tp9bieo1_250,241,2 1914,FRAMEQA12949,room,where does the young man perform some slow dance moves with mirrors?,tumblr_na3xhdCxli1sq0gyxo1_500,46592,3 1915,FRAMEQA35804,black,what is the color of the lips?,tumblr_nfees7tCzu1tm9kuyo1_500,88622,2 1916,FRAMEQA38730,black,what is the color of the man?,tumblr_ndnekyGEgf1sa0lndo1_500,71413,2 1917,FRAMEQA52862,two,how many girls is the man lifting up in the air with weights?,tumblr_ne00ewlpW41tdjuqvo1_400,13329,1 1918,FRAMEQA48377,white,what is the color of the dog?,tumblr_n9dxxv9ONq1sk96t7o1_400,59286,2 1919,FRAMEQA47202,underwear,what is the man touching on stage?,tumblr_n8u8i5aVLm1teg0elo1_250,21697,0 1920,FRAMEQA12464,chair,where is man with white hair sitting?,tumblr_ndyc6dwsa21qalhmdo1_500,83472,3 1921,FRAMEQA4943,gray,what is the color of the hair?,tumblr_npc1b21BeA1r57o71o1_500,41809,2 1922,FRAMEQA5326,truck,what goes over the sand dune and then crashes?,tumblr_njpreqZ6fr1unq0gjo1_250,46570,0 1923,FRAMEQA52224,white,what is the color of the stars?,tumblr_njoamk0kmi1unf50eo1_250,16053,2 1924,FRAMEQA28906,two,how many girls are inside the shopping car?,tumblr_nbzkb341bX1s71nvbo1_500,60746,1 1925,FRAMEQA18289,bed,where is the woman with blonde hair sitting up?,tumblr_n9dtvaAB1g1t8991mo1_250,19358,3 1926,FRAMEQA6973,snowmobile,what drives off beside the line of vehicles?,tumblr_nknz6sf5O21tdvo93o1_400,42106,0 1927,FRAMEQA5262,dress,"what is the woman , standing in the dark , wears?",tumblr_nf6z08W8ZO1tmecz1o1_500,58112,0 1928,FRAMEQA49042,two,how many people are riding on motorbikes in a race?,tumblr_n9bdapPO481sc9qyco1_400,36760,1 1929,FRAMEQA31515,three,how many dark haired boys are standing looking funny?,tumblr_na8yacMvXl1t0ojyvo1_250,25575,1 1930,FRAMEQA22103,white,what is the color of the wrap?,tumblr_nagcw5rVv51s1nv88o1_500,98892,2 1931,FRAMEQA31589,white,what is the color of the dog?,tumblr_n9sg39oVrZ1qedx60o1_500,98928,2 1932,FRAMEQA50593,hat,what is the man wearing all black and a backpack is pulling off?,tumblr_n9wch8DPCW1rvxuq0o1_250,11798,0 1933,FRAMEQA39591,one,how many man is looking forward and other smoking the pipe?,tumblr_ni3dx3ld831rftdx0o1_250,87575,1 1934,FRAMEQA44147,white,what is the color of the shirt?,tumblr_njoi8yo35Q1rm1twgo1_500,88478,2 1935,FRAMEQA884,two,how many boys are sitting on the couch laughing?,tumblr_nd57hoEbnf1tnzvzmo1_400,59606,1 1936,FRAMEQA48604,two,how many kids is figuring out how to work a microphone?,tumblr_ng5aqx1lf91s4gxnlo1_500,44772,1 1937,FRAMEQA15593,dog,what is the dog ripping apart?,tumblr_ngu3mzFpwr1tdjuqvo1_400,67982,0 1938,FRAMEQA16804,white,what is the color of the shirt?,tumblr_n90ljfXkjj1si20l6o1_250,46317,2 1939,FRAMEQA21279,cigarette,what is the man wearing a hooded jacket is smoking?,tumblr_nb1vsdEVUb1sdbuhgo1_400,45332,0 1940,FRAMEQA28075,four,how many different male adults does this appear to show making some kind of hand signals?,tumblr_nk23tfXlSI1tm695uo1_250,18845,1 1941,FRAMEQA31150,two,how many men ride the boat with a bat symbol on it?,tumblr_nilyoyDugt1qdzxbio1_500,55069,1 1942,FRAMEQA49931,kitten,what is licking his paw while laying in the covers?,tumblr_nqaqp0wsgy1tpg4boo1_400,74024,0 1943,FRAMEQA17831,two,how many men is the man in white rapping then are rapping together?,tumblr_no16zgrlE81sr8pwbo1_400,53970,1 1944,FRAMEQA51159,bathtub,where is the dog showering?,tumblr_nis0671Qu01tjqbh0o1_250,1463,3 1945,FRAMEQA33737,three,how many young men are shouting at the phone?,tumblr_nfegnfJ1AZ1qayaafo1_400,30012,1 1946,FRAMEQA23787,car,what is running fast in the highway?,tumblr_ng9bf9Vddz1u25ovvo1_400,63432,0 1947,FRAMEQA14127,three,how many young men are talking and laughing?,tumblr_nqokih6riY1uxohh1o1_540,91616,1 1948,FRAMEQA10518,phone,what is the young man holding up?,tumblr_nbjdo8al2f1tfukzmo1_400,60233,0 1949,FRAMEQA18933,black,what is the color of the hair?,tumblr_nfmprtryRm1s013u0o2_r1_500,55145,2 1950,FRAMEQA41803,dog,what is licking the girl in the face?,tumblr_nhobtsS0jM1s86yfto1_250,9556,0 1951,FRAMEQA50683,trees,what are the man and a woman walking?,tumblr_nknrigFden1ty49xko6_250,39731,0 1952,FRAMEQA33967,gray,what is the color of the top?,tumblr_njiymqvJPP1tb2ysso1_500,77914,2 1953,FRAMEQA34538,white,what is the color of the wall?,tumblr_npkxhturUR1uxcyego1_400,73594,2 1954,FRAMEQA21553,bicycle,what is the man with sunglasses riding?,tumblr_najdllMh1q1t0xoqgo1_250,40742,0 1955,FRAMEQA33623,white,what is the color of the shirt?,tumblr_nbjxv2X6PU1siulnco1_250,92,2 1956,FRAMEQA28610,two,how many men in front of mics and one male is moving his arms?,tumblr_no8x9toqT11u7hl9wo1_400,62572,1 1957,FRAMEQA13695,mall,where does the man walk and gets embarrassed?,tumblr_nhpf1zbuOM1tcktvuo1_250,19048,3 1958,FRAMEQA38873,blue,what is the color of the shirt?,tumblr_n90w55xQEA1txn5dao1_250,43653,2 1959,FRAMEQA44340,two,how many girls are laughing and holding hands?,tumblr_ne0hq9nCDK1tuw0i7o1_500,99652,1 1960,FRAMEQA28443,bow,what is the woman kissing?,tumblr_npplhk1yOz1tbeohdo1_540,56295,0 1961,FRAMEQA4664,car,what does the woman in a white car suddenly stop on a highway?,tumblr_nh5u2chPoA1rp5w0lo1_400,82442,0 1962,FRAMEQA28781,street,where is the group of guys disguised?,tumblr_nkkbt1vaZh1tqkvbxo1_400,37215,3 1963,FRAMEQA6704,two,how many guys are dancing around naked together and smiling?,tumblr_nac1kn8aGM1tei7rdo1_500,72313,1 1964,FRAMEQA901,blue,what is the color of the hair?,tumblr_naq4afnM0Z1s5o1jwo1_400,41704,2 1965,FRAMEQA23642,sticks,"what does the boy drummer , beat to the rhythm?",tumblr_np0bdooxmU1uwhbn9o1_540,100317,0 1966,FRAMEQA35223,tie,what is the man fixing?,tumblr_nrhfdwpc7R1qistg3o1_400,57115,0 1967,FRAMEQA40389,car,what is spinning out on the wet track?,tumblr_nfxlr1iOlx1tx8mn0o1_400,55730,0 1968,FRAMEQA21105,white,what is the color of the shirt?,tumblr_no16zgrlE81sr8pwbo1_400,53970,2 1969,FRAMEQA48705,brown,what is the color of the cabinet?,tumblr_niv7ivzNmF1u5d5ryo1_400,1080,2 1970,FRAMEQA18506,red,what is the color of the shirt?,tumblr_nfv7xsmCdz1tgjmwwo1_250,2746,2 1971,FRAMEQA46528,guitar,what are the three men playing together?,tumblr_nga8g2sqtN1re60dio1_250,26505,0 1972,FRAMEQA23576,black,what is the color of the mug?,tumblr_nfhrkqujGn1tssk6do1_400,30632,2 1973,FRAMEQA30743,store,where does man smile and laughs?,tumblr_ncd4nhEpYN1rkm6bqo1_500,68959,3 1974,FRAMEQA47548,room,where does the young person look around?,tumblr_ndbje3BEQe1tvul0no1_400,29408,3 1975,FRAMEQA51228,black,what is the color of the hair?,tumblr_nk4ossRfwJ1tjjaylo1_250,11153,2 1976,FRAMEQA52790,rope,"what is the man in a shirt and tie trying , but stops him?",tumblr_nddj8qyOmU1ro9khto1_250,89032,0 1977,FRAMEQA8119,cars,what is racing in the car race?,tumblr_nhbn0vv8Gp1tx8mn0o1_400,86055,0 1978,FRAMEQA23669,two,how many sports guys are hugging each other?,tumblr_nc0ih2uUAV1tquxyyo1_500,93964,1 1979,FRAMEQA18140,dog,what is driving a toy car is towing another dog in a trolley?,tumblr_ngtfbt9KZI1s71nvbo1_400,15351,0 1980,FRAMEQA5523,two,how many girls are blowing smoke out of their mouths?,tumblr_nd8vbdRFut1shopj2o1_250,61352,1 1981,FRAMEQA51181,pug,what is the young man holding and talking?,tumblr_nokgkjPvdh1uot1e7o1_400,60623,0 1982,FRAMEQA21681,black,what is the color of the cat?,tumblr_n9j6u0SS061ri0wzfo1_400,39368,2 1983,FRAMEQA41055,green,what is the color of the frog?,tumblr_nh8lleEpNz1rhl4f0o1_400,81049,2 1984,FRAMEQA12881,red,what is the color of the key?,tumblr_n9nn597Mqk1r5n5jmo1_250,47107,2 1985,FRAMEQA18989,three,how many men are turning to look to the left?,tumblr_nk1mtw4zVW1qhccx4o1_500,98906,1 1986,FRAMEQA23595,dog,what is the woman showing to somebody?,tumblr_n930rehOiH1t3eg01o1_400,33312,0 1987,FRAMEQA27969,tie,what is the man adjusting in a bedroom?,tumblr_nk5andAo8C1tleghwo1_500,16997,0 1988,FRAMEQA52767,white,what is the color of the outfit?,tumblr_nohf3irkja1uuudqko1_400,59026,2 1989,FRAMEQA40058,headgear,what is the teen wearing and concentrating on something?,tumblr_nd3844onv11qj1oazo1_400,53074,0 1990,FRAMEQA597,white,what is the color of the shirt?,tumblr_ncfd23essc1rmnbk5o1_400,52153,2 1991,FRAMEQA46963,two,how many girls are dancing terribly together in the bedroom?,tumblr_nghj6gFDD91u5eovyo1_400,21368,1 1992,FRAMEQA39996,trunk,what opens and the sunroof comes out?,tumblr_n9zu57mMW51t36lbdo1_400,53950,0 1993,FRAMEQA32108,dog,what is carrying the ball and dunking it in a net?,tumblr_nq60eugCBm1tk2ngvo1_500,85137,0 1994,FRAMEQA12062,two,how many woman are laying in the bed together and snuggling?,tumblr_nazsf0WpWr1tgqqmdo1_400,67094,1 1995,FRAMEQA39413,dog,what is the man in a black shirt tickling?,tumblr_nfdl028aPE1rufswgo1_400,25068,0 1996,FRAMEQA25627,cat,what is the dog touching a cats head as if its petting?,tumblr_n9mhncAnrG1tfer0ho1_400,15516,0 1997,FRAMEQA42580,cat,what is spinning in circles on a wooden floor?,tumblr_n99i8z85VV1tbjfazo1_400,38782,0 1998,FRAMEQA8281,four,how many men are driving down the road and headbanging?,tumblr_n8xhhpcZOi1ribqy3o1_1280,33927,1 1999,FRAMEQA1092,headphones,what is the woman wearing and dancing in place?,tumblr_ncza8xIcHW1tuzm6po1_400,65138,0 2000,FRAMEQA27258,black,what is the color of the hair?,tumblr_na3j1ifbVC1qksoito1_400,66376,2 2001,FRAMEQA7241,car,where does the man set off a confetti cannon?,tumblr_nnzz2eyFYT1tvo8x5o1_500,60863,3 2002,FRAMEQA3053,white,what is the color of the stage?,tumblr_ngxch41oJy1tkjmmko1_500,101061,2 2003,FRAMEQA38248,room,where is the man dancing?,tumblr_nd9duy7IEm1trwttjo1_250,1591,3 2004,FRAMEQA50164,two,how many guys is dancing very funny in the room?,tumblr_n8zjjsp2E21tecuevo1_400,42865,1 2005,FRAMEQA49056,black,what is the color of the shirt?,tumblr_n8ku06s5kP1t6ksnpo1_500,90011,2 2006,FRAMEQA31883,two,how many man having a fun in the club and looks very happy?,tumblr_ni7bzqpypD1trvyawo1_400,17991,1 2007,FRAMEQA11538,tubes,what is the skater with white shirt jumping?,tumblr_ncazxuSQtP1tps3kao1_400,62450,0 2008,FRAMEQA46199,dance,what is the woman practicing and showing her flexibility?,tumblr_ndizmmSDER1tobehfo1_250,53426,0 2009,FRAMEQA43221,cup,what does the singing man hold up?,tumblr_nkkgi9P3nt1qll2s1o1_400,67725,0 2010,FRAMEQA43730,two,how many young men are laughing together?,tumblr_nblx1kLOlU1tyv4s2o1_500,95966,1 2011,FRAMEQA44856,five,how many men have the group hug together?,tumblr_nfiz3nbFdl1sqsp7io1_500,76263,1 2012,FRAMEQA49741,cub,what fell off of the slide?,tumblr_nfhsaj7nv21t7io47o1_250,36393,0 2013,FRAMEQA53069,dog,what is helping another dog retrieve something from a pool?,tumblr_ndro45f3DA1qhn9jdo1_400,81160,0 2014,FRAMEQA6597,two,how many men are chasing each other through a hallway?,tumblr_ne61f5xOgp1u2opwno1_250,84349,1 2015,FRAMEQA39139,ball,what is the man kicking?,tumblr_nkkcmok2Dk1tdqqpjo1_400,18998,0 2016,FRAMEQA46866,pandas,what are near the toy horse and one plays with it?,tumblr_njtxedpe7W1t7an45o1_250,27296,0 2017,FRAMEQA22787,one,how many guy got tackled?,tumblr_nhq8z49bTR1sk0i2mo1_250,60385,1 2018,FRAMEQA17310,bus,what is the person walking towards a moving bus and then using?,tumblr_n950jbgmRB1ty56o1o1_400,21875,0 2019,FRAMEQA49022,brown,what is the color of the dog?,tumblr_nqvuy6gtIQ1u9fb2po1_250,36656,2 2020,FRAMEQA6369,iguana,what is fighting the cat?,tumblr_nhn4qolyxQ1tgouwlo1_400,52435,0 2021,FRAMEQA13404,white,what is the color of the top?,tumblr_nh7dbrGYV51syww0ro1_400,17288,2 2022,FRAMEQA42470,room,where is the person throwing a book?,tumblr_nhvbgxJW4s1u6lo1go1_400,66050,3 2023,FRAMEQA44480,bird,what is standing on an animal which is under water?,tumblr_njo4rh80wh1slj978o1_500,85914,0 2024,FRAMEQA48762,room,where is the girl expressing very funny?,tumblr_ngyrfb6hzc1rlvjr1o1_400,33915,3 2025,FRAMEQA43261,two,how many people does there 's singing into a microphone on a stage?,tumblr_ncfok5iX5E1srqnzqo1_400,59369,1 2026,FRAMEQA47652,black,what is the color of the hair?,tumblr_nbxwcqyL2t1s0234jo1_400,45763,2 2027,FRAMEQA41043,two,how many men are walking in the garden?,tumblr_naj9smLJW61tb2khbo1_250,46323,1 2028,FRAMEQA40964,window,what is the man holding a small child looked out?,tumblr_ne72c3gF971u1431qo1_400,12283,0 2029,FRAMEQA11264,room,where is the guy thinking and smiling?,tumblr_ndr5ywtRaY1tiutwwo1_250,14386,3 2030,FRAMEQA34384,concert,what do men in eighties close play?,tumblr_nfnfu7EwM91r3diajo1_500,43197,0 2031,FRAMEQA48007,two,how many men are rehearsing the song and smiling?,tumblr_nqejl6aULY1s6wmvgo1_250,11994,1 2032,FRAMEQA23,dandelion,what is the person blowing with a woman?,tumblr_nfnuevqLzN1u37d6qo1_250,87556,0 2033,FRAMEQA18199,two,how many men spit on one man then he hits one of the men that spit on him?,tumblr_nd1q5qKoHg1tumw11o1_100,33117,1 2034,FRAMEQA45940,ball,what does the baseball player swing and hits?,tumblr_nkiaplKlq61rp8svmo1_400,75218,0 2035,FRAMEQA46870,hat,what is the woman tipping at someone?,tumblr_n9wtxekbRV1s6f9ago1_500,71312,0 2036,FRAMEQA28813,garden,where are two men walking and one man pushes the other onto a bed?,tumblr_naj9smLJW61tb2khbo1_250,46323,3 2037,FRAMEQA37150,black,what is the color of the coat?,tumblr_nax649zJEz1sqpl8fo1_400,47890,2 2038,FRAMEQA29598,brown,what is the color of the hair?,tumblr_ndalo1iQWh1rrjxv9o1_250,4206,2 2039,FRAMEQA38328,queen,what is getting applauded under disco lights?,tumblr_nj9s1mylGE1sn65ego1_250,13598,0 2040,FRAMEQA23021,door,what does man in gray suit close?,tumblr_npzz6lGvVe1u32cyao1_400,28059,0 2041,FRAMEQA736,elephant,what is playing with some tires on a field?,tumblr_nf1kbzvsw71rwzy1eo1_400,71853,0 2042,FRAMEQA29673,cats,what are laying behind apples while a third cat is sleeping?,tumblr_nfcolpASZD1sht3fmo1_250,68601,0 2043,FRAMEQA23803,car,what speeds down the race track and drifts at a corner?,tumblr_nitvmqOok11r05qsbo1_400,70773,0 2044,FRAMEQA42983,cat,what swats at the pen while hiding in a drawer?,tumblr_n9vr1xjmof1tdmffyo1_250,27920,0 2045,FRAMEQA4296,instruments,what is the band wearing black clothing are playing?,tumblr_nnymrk5szy1rjb18uo1_400,60695,0 2046,FRAMEQA15731,cat,what does the woman lightly scratch on the neck while smiling?,tumblr_ncaawdCxWV1rvlx3so1_400,32049,0 2047,FRAMEQA6962,blue,what is the color of the blazer?,tumblr_nbrba7uzD21r0ajmso1_500,59077,2 2048,FRAMEQA51353,two,how many people are holding their hands together?,tumblr_nqg0uj5LBQ1sn23iho1_400,53029,1 2049,FRAMEQA2032,two,how many men in black are standing at the corner?,tumblr_nbafnh36931svh8clo1_250,1567,1 2050,FRAMEQA48935,white,what is the color of the sheet?,tumblr_ne5w7sROwX1tjdvfuo1_400,80200,2 2051,FRAMEQA5952,black,what is the color of the woman?,tumblr_njvfrvtJRb1uo2e5xo1_250,28457,2 2052,FRAMEQA15431,picture,what is the woman cutting down the middle with a sharp object?,tumblr_nfykv0aK2g1u51u27o1_400,98683,0 2053,FRAMEQA48869,guitar,what is the person in a shiny jacket playing and then they lift their head?,tumblr_nakdvwOdMw1qlxas3o1_400,56285,0 2054,FRAMEQA40480,tricycle,what did the young boy rid down a hallway and stops upon seeing two twin girls?,tumblr_n7f6rvr58y1qaqx8xo1_500,80584,0 2055,FRAMEQA21077,shirt,what is the man looking through binoculars and a woman closes in a door?,tumblr_ngtd3euAIt1rwc3zyo1_400,28060,0 2056,FRAMEQA22582,cat,what is looking at something with surprise?,tumblr_nl0oqeBJLk1qzs91yo1_1280,27459,0 2057,FRAMEQA42409,two,how many children is the man in a leather jacket hugging?,tumblr_nbe5908NiN1re0mxqo1_400,13562,1 2058,FRAMEQA3187,two,how many guys are holding hands and swinging their arms?,tumblr_ncwgbmoRKU1spxe4io1_250,2319,1 2059,FRAMEQA28042,hat,what is the man in a parachute suit taking off?,tumblr_n9ukfkM5oh1tsgkt1o1_500,85356,0 2060,FRAMEQA4238,chair,where was the woman with black hair sitting?,tumblr_nagxk9TdwJ1t653keo1_250,53209,3 2061,FRAMEQA32654,racing,what goes off the track and slows to a stop?,tumblr_nooglpxw3a1tx8mn0o1_400,79027,0 2062,FRAMEQA24586,cars,what almost crash into one another?,tumblr_ner7ylN8ki1sncaa3o1_400,55584,0 2063,FRAMEQA21507,garage,where are two cars driving around?,tumblr_nd11cdPFVQ1s1cmjio1_400,96948,3 2064,FRAMEQA14192,room,where is the woman dancing?,tumblr_nah4qi9p621tg1uwio1_400,30271,3 2065,FRAMEQA6874,rings,what do the pair of gloved hands move and their mounts forward in a line?,tumblr_nit83eq5sB1u9se2do1_400,16211,0 2066,FRAMEQA18075,phone,what is the woman holding and talking?,tumblr_nrefpvwRqT1uauvk5o1_250,38407,0 2067,FRAMEQA31778,horn,what is the bear dancing and playing?,tumblr_nd1lzaN9G21tp02izo1_400,25343,0 2068,FRAMEQA48974,coffee,what is the girl drinking while looking at her phone?,tumblr_n9tb8ftut51tcssiro1_400,65511,0 2069,FRAMEQA216,black,what is the color of the trousers?,tumblr_nak7e2ZUC11qirq69o1_400,57333,2 2070,FRAMEQA15267,black,what is the color of the clothing?,tumblr_n9h1p7cyTs1tin82no1_500,91778,2 2071,FRAMEQA28043,white,what is the color of the hair?,tumblr_ngyrfb6hzc1rlvjr1o1_400,33915,2 2072,FRAMEQA45894,dog,what is the man wrestling in front of another person?,tumblr_nddbm8rMmA1u18qxqo1_400,35419,0 2073,FRAMEQA27491,black,what is the color of the hair?,tumblr_ndbv2jyZsD1tffyufo1_500,94075,2 2074,FRAMEQA22378,cat,what is touching the fish with its paw in a tub?,tumblr_nq62qusQ2Z1tk2ngvo1_500,69624,0 2075,FRAMEQA7969,four,how many guys is this doing silly dances while they are wearing hooded jackets?,tumblr_nr24ia3Q8z1uzm9a7o1_500,71205,1 2076,FRAMEQA36401,entrance,what is the man wearing a cheese head makes?,tumblr_n9lwf2HVlF1qfjzhxo1_250,41646,0 2077,FRAMEQA53059,two,how many people did FRAMEQAorter with microphone dodge on a motorbike?,tumblr_nihobb7cQ81u8uroco1_250,44716,1 2078,FRAMEQA9433,turtle,what is riding the vacuum cleaner on a hardwood floor?,tumblr_nisxffQvO61u5ba4ao1_250,27103,0 2079,FRAMEQA47208,cat,what is chewing on the corner of the book?,tumblr_nd59g8nitC1qjpmwio1_500,43150,0 2080,FRAMEQA5147,can,what is being peeled causes a large explosion?,tumblr_nexhjhoBOY1s9emmto1_400,37018,0 2081,FRAMEQA27165,banana,what is the guy victimizing with his face?,tumblr_n8qbwbd8sH1swdkm1o1_250,4004,0 2082,FRAMEQA36412,two,how many men are scaring each other at a trailer?,tumblr_nbwj21dmKY1tnljkco1_400,67066,1 2083,FRAMEQA28103,airplane,what takes off but is waving around?,tumblr_ni1vxsCvAy1s71nvbo1_500,94662,0 2084,FRAMEQA20917,white,what is the color of the shirt?,tumblr_nfb9q9tKFi1tx8n02o1_500,97914,2 2085,FRAMEQA38272,guitar,what is the man wearing a bandanna and vest is playing?,tumblr_nb4vm4piNG1tjyjnio1_250,6080,0 2086,FRAMEQA34390,chimpanzee,what is running and jumping through the house?,tumblr_naug822mv91tgbziwo1_400,96877,0 2087,FRAMEQA25408,bear,"what does not notice the black bird , but the bear cub does?",tumblr_npblti8bU91use8l1o1_400,82811,0 2088,FRAMEQA43472,black,what is the color of the hair?,tumblr_npntu0IvQH1qf69tyo1_500,75077,2 2089,FRAMEQA45446,cat,what watches the kitten sitting on a mans head?,tumblr_nk5lq2YzjS1unlruzo1_400,49153,0 2090,FRAMEQA33154,glass,what does the woman with a nose ring push forward?,tumblr_nhxhn7hkCS1qf0omxo1_400,4563,0 2091,FRAMEQA38798,two,how many people are hugging each other in a room?,tumblr_nalgunb5tA1rm4q61o1_250,6552,1 2092,FRAMEQA12559,rope,what is the man holding?,tumblr_nin6hhwnC81tehwjso1_r1_400,46462,0 2093,FRAMEQA17360,spoon,what is the woman with brown hair and a fringe putting into her mouth?,tumblr_n8xaa8ScfH1rhhof0o1_500,24404,0 2094,FRAMEQA6227,white,what is the color of the backdrop?,tumblr_nknn48RyDX1s8cogvo1_250,46893,2 2095,FRAMEQA13917,orange,what is the color of the machines?,tumblr_nesls65ifv1qj1s5io1_400,80347,2 2096,FRAMEQA303,black,what is the color of the strips?,tumblr_nb5u58Wfdx1rpqzspo1_400,65712,2 2097,FRAMEQA15048,hat,what is the woman with horns wearing and it falls down?,tumblr_ngx0elpYfP1u0x2y0o1_400,28741,0 2098,FRAMEQA52976,two,how many guys are signing on the stage at a concert?,tumblr_nh9wn01n4a1rwuk20o1_400,58448,1 2099,FRAMEQA13635,blue,what is the color of the scarf?,tumblr_n9y3mpknIW1rl4lcmo1_250,14733,2 2100,FRAMEQA9802,two,how many girls are playing musical instruments and singing?,tumblr_nbdybmLWnP1rlpjp7o1_250,45669,1 2101,FRAMEQA29349,cat,what is trying to jump into the box and is failing?,tumblr_nhg54hiSG91tgetb4o1_250,50207,0 2102,FRAMEQA52341,white,what is the color of the cat?,tumblr_nrk1rp38Pq1uyssdqo1_540,10262,2 2103,FRAMEQA48944,warehouse,where are the group of men singing?,tumblr_nhr21u5HJv1sniu8co1_1280,101289,3 2104,FRAMEQA44241,kitchen,where are the man and woman hugging each other?,tumblr_nacqlmg29U1sn53c3o1_500,76786,3 2105,FRAMEQA48264,vehicle,what is traveling very quickly through the wooded area?,tumblr_ngx5sbnr6K1tx8mn0o1_400,67283,0 2106,FRAMEQA43169,four,how many guys are joking very funny in the room?,tumblr_nkhsufcYqd1u0fsqao1_500,89950,1 2107,FRAMEQA45258,car,what is out of street?,tumblr_nhdvlzako31tx8mn0o1_400,78335,0 2108,FRAMEQA18620,car,what is driving in circes around the track?,tumblr_nee7hlohYU1tx8mn0o1_400,52719,0 2109,FRAMEQA29451,birds,what are two men holding close to each other?,tumblr_ngco2hZoYX1sflxw5o1_250,8062,0 2110,FRAMEQA36923,two,how many people are outdoors hugging each other?,tumblr_ndu6tuMh651sveek6o1_250,8600,1 2111,FRAMEQA7316,two,how many women are moving their arms and shoulders?,tumblr_ne4ukt1AIR1r7zltao1_400,58770,1 2112,FRAMEQA17467,chair,where is the woman moving around?,tumblr_nkipeiHUUT1t5pc1to1_250,5147,3 2113,FRAMEQA34765,two,how many women with long hair and microphones are talking?,tumblr_nhmi7dGdup1qgeu41o1_500,94202,1 2114,FRAMEQA23765,shirt,what is the woman with red lipstick wearing?,tumblr_nfd11g9m741tm2ntoo1_500,67219,0 2115,FRAMEQA33404,black,what is the color of the shirt?,tumblr_nfdl028aPE1rufswgo1_400,25068,2 2116,FRAMEQA35102,yellow,what is the color of the hair?,tumblr_niqqnd2LXB1qjvwfto1_500,32862,2 2117,FRAMEQA7919,two,how many men are walking up together?,tumblr_njavyfLo1J1u9268ao1_400,9220,1 2118,FRAMEQA18956,cat,what is playing with an ornament on a tree?,tumblr_ngmmjdC8aq1qznkspo1_500,62809,0 2119,FRAMEQA46785,banana,what is the young man eating?,tumblr_nda5gzOBFC1thgb9yo1_250,16396,0 2120,FRAMEQA12648,hat,what is the man wearing turned his head away?,tumblr_nea2zdghTC1tlysvco1_400,29868,0 2121,FRAMEQA47126,two,how many women are in the room with lots of other people?,tumblr_njvg8iryVv1u36jzho1_250,12523,1 2122,FRAMEQA51418,two,how many guys are talking while one moves his hands around?,tumblr_nk55jsBaYj1u0dfk0o1_400,61440,1 2123,FRAMEQA41374,two,how many people hold their hands up high and then bow?,tumblr_nrfehsYDWe1u7r745o1_400,46511,1 2124,FRAMEQA44757,two,"how many people look out the window excitedly , screaming and pointing?",tumblr_n94vgu7eef1rraz85o1_400,48177,1 2125,FRAMEQA21699,two,how many people are laughing together and hugging?,tumblr_n9ur83cCdO1s7u8pro1_250,32294,1 2126,FRAMEQA51397,robot,what is the robot driving and attacking?,tumblr_nc31o8OdwG1qhq89to1_500,58113,0 2127,FRAMEQA32607,gray,what is the color of the top?,tumblr_nheuh0DekV1u71ddqo1_500,38754,2 2128,FRAMEQA47047,sky,what are two men kissing each other and is blue?,tumblr_namh3klriu1tk3dj9o1_500,83996,0 2129,FRAMEQA12111,egg,what does the bird lay while riding a vacuum?,tumblr_nak34sUK131slj978o1_400,50795,0 2130,FRAMEQA17271,two,how many women are singing together and dancing?,tumblr_ncggr1cNhU1s9ltd9o1_500,85223,1 2131,FRAMEQA12079,red,what is the color of the cars?,tumblr_nbpoa8XFSr1swtjjuo1_500,97084,2 2132,FRAMEQA6552,moth,what is the bat opening and spreading its wings?,tumblr_nhkmxjaSAq1u777vko1_500,57894,0 2133,FRAMEQA24016,two,how many blonde haired woman are wearing black clothes and talking?,tumblr_njvix3hzTK1u3wykjo1_250,13812,1 2134,FRAMEQA6637,bowl,where is the boy stirring something?,tumblr_nkl0odLJ991txousio1_400,61880,3 2135,FRAMEQA31995,three,how many boys are hopping around on one leg?,tumblr_n89x91hNuc1t0k260o1_400,74034,1 2136,FRAMEQA34496,black,what is the color of the woman?,tumblr_npm5udlNsB1ssgyoro1_250,27213,2 2137,FRAMEQA31239,four,how many shirtless men are standing in the room and moving around?,tumblr_ncss6i7D9Y1t8zp0to1_400,34125,1 2138,FRAMEQA531,two,how many young people are seen interacting intimately with one another?,tumblr_nmn8zkxwZV1u76ef6o1_1280,96802,1 2139,FRAMEQA33052,dog,what starts patting its legs on a person?,tumblr_nk4ygqewgH1tibyhjo1_400,57401,0 2140,FRAMEQA39310,black,what is the color of the man?,tumblr_ncocreXQMU1smz1zko1_250,23073,2 2141,FRAMEQA22534,two,how many people are sitting beside each other while one is taking a drink?,tumblr_naaquolONI1rqryl2o1_500,99615,1 2142,FRAMEQA29097,dog,what runs away from a stick that was on it?,tumblr_nk3riuu61q1rojld8o1_400,79952,0 2143,FRAMEQA28720,bear,what is falling in front of a man?,tumblr_nfhsaj7nv21t7io47o1_250,36393,0 2144,FRAMEQA16782,white,what is the color of the dresses?,tumblr_ne9ywnJtxX1t09iyco1_500,75498,2 2145,FRAMEQA23714,black,what is the color of the man?,tumblr_nhamj8SXDA1u6f7t5o1_400,65602,2 2146,FRAMEQA23528,three,how many young woman stand around?,tumblr_na7lbbYb9b1tj6bsgo1_250,14012,1 2147,FRAMEQA52377,two,how many men in t-shirts dance wave their arms?,tumblr_ne0yhhKN911situ0so1_500,87994,1 2148,FRAMEQA3668,two,how many men are fighting with swords while another is jumping in the air?,tumblr_nc2q4csgq91txeyrmo1_250,35741,1 2149,FRAMEQA516,four,how many people are having the conversation?,tumblr_na5lf1I2KB1t5ojzdo1_250,19969,1 2150,FRAMEQA45639,turtle,what gets a new set of wheels?,tumblr_nnjx2ofDsR1ussefyo1_400,62536,0 2151,FRAMEQA38230,white,what is the color of the man?,tumblr_nemtylU1ek1sspq5qo1_250,32816,2 2152,FRAMEQA8770,five,how many women is wearing black clothes walk along a street?,tumblr_n9msz5bJ7Y1spkaepo1_400,62640,1 2153,FRAMEQA49389,monkey,what is having its eyebrows plucked and smiles?,tumblr_npqkuhVCs31tkhxdko1_400,1357,0 2154,FRAMEQA12848,two,how many guys are performing?,tumblr_nho4lw7YQP1tooeulo1_500,86177,1 2155,FRAMEQA34296,car,what is speeding on the race track?,tumblr_nd9ii12sYt1tx8mn0o1_400,66589,0 2156,FRAMEQA30612,white,what is the color of the horse?,tumblr_nc428jorCe1tl4bloo1_400,64224,2 2157,FRAMEQA17398,two,how many pairs of gloved hands stick a red cross on a white cloth?,tumblr_nh0ddtHrBj1tg85j7o1_400,36841,1 2158,FRAMEQA20390,black,what is the color of the clothing?,tumblr_nqs999ZRhM1uxceulo1_400,26066,2 2159,FRAMEQA52855,backpack,what is the guy wearing and looking around?,tumblr_namttvIuZM1ts3h88o1_250,3013,0 2160,FRAMEQA39833,dog,what opens its eyes while it lies on a wooden floor?,tumblr_nck4we3kAN1r4phxao1_400,91647,0 2161,FRAMEQA41552,two,how many soccer players are embracing for the kiss on the cheek?,tumblr_na8ib9Oyf21sy603fo1_250,8269,1 2162,FRAMEQA13113,black,what is the color of the hair?,tumblr_nc0dhlZLLw1ts3zgzo1_250,7715,2 2163,FRAMEQA36271,dog,what is the woman holding and cuddling?,tumblr_n9h6s64oTE1qh439wo1_500,79368,0 2164,FRAMEQA744,three,how many leopards are in the cage trying to get out?,tumblr_nfysduIWKB1u029u8o1_400,37642,1 2165,FRAMEQA10071,white,what is the color of the shirt?,tumblr_ncyd2oxaHK1s5kmdmo1_250,38355,2 2166,FRAMEQA25195,beverages,what are two women drinking at a table?,tumblr_nkidy4Ldfk1t47dz3o1_400,91568,0 2167,FRAMEQA42459,two,how many men are dancing at the party together?,tumblr_nhx280JEg61suduoyo1_400,22059,1 2168,FRAMEQA4083,bouquet,what is the person with a veil walking and carrying?,tumblr_n9hhx6Tsyj1rftdx0o1_250,53576,0 2169,FRAMEQA50376,red,what is the color of the fingernails?,tumblr_nc3cwgFIwf1rcnjvno1_500,55080,2 2170,FRAMEQA36048,black,what is the color of the stockings?,tumblr_n93tutzrrp1tb5w14o1_400,29742,2 2171,FRAMEQA1878,helmet,what is the sportsman running and removing?,tumblr_nko9kdhd8b1shcu57o1_250,47475,0 2172,FRAMEQA16593,red,what is the color of the stares?,tumblr_nd6u5vgOwZ1tekfeyo1_500,82710,2 2173,FRAMEQA27429,room,where are two boys moving and dancing?,tumblr_n9r0jnVOmO1qfhxh5o1_400,65939,3 2174,FRAMEQA15874,ball,what does the man control better than anyone on the field?,tumblr_ng0agzCLGr1tz9jaqo1_500,101645,0 2175,FRAMEQA43718,car,what is fuming over the man 's strength?,tumblr_nfyoq3PnfT1slj978o1_400,82128,0 2176,FRAMEQA52292,two,how many girls are waving their arms and dancing?,tumblr_nc0jxoYxes1tkdc7qo1_250,76255,1 2177,FRAMEQA17516,red,what is the color of the dress?,tumblr_n8tiqifppP1qhj4gko1_500,55004,2 2178,FRAMEQA39461,car,what is being driven over the small child?,tumblr_nr9ok0sAQE1u9vl8lo1_400,54033,0 2179,FRAMEQA37491,seven,how many women in tall boots dance erotically?,tumblr_newn7v8rYN1stqtbvo1_500,76464,1 2180,FRAMEQA26166,two,how many people stood on stage singing a sing?,tumblr_n99vbo9pk71tf7kp3o1_500,75263,1 2181,FRAMEQA17846,dogs,what are playing with dolls in a room?,tumblr_ngu3mzFpwr1tdjuqvo1_400,67982,0 2182,FRAMEQA31197,white,what is the color of the shirt?,tumblr_na7sb2nPWG1t6ksnpo1_500,48793,2 2183,FRAMEQA33293,puppy,what is falling asleep with his front two paws in his water dish?,tumblr_nn8b3ckHXT1rgj6reo1_400,55944,0 2184,FRAMEQA35409,trumpet,what does the person play along with a band?,tumblr_n9w9q4OrwW1szkudno5_500,77978,0 2185,FRAMEQA447,two,how many men are sitting on the couch talking and smiling?,tumblr_nda2qhxKfP1tn1i0no1_500,88868,1 2186,FRAMEQA30832,surfboard,what does someone turn around on a high wave?,tumblr_neryckEsZS1qhwq64o1_500,69544,0 2187,FRAMEQA21631,two,how many guys in tan coats are riding on a four wheeler?,tumblr_ne6d928mgq1sayp7jo1_250,80077,1 2188,FRAMEQA10916,black,what is the color of the shirt?,tumblr_niswdlribH1siwa6ao1_500,97261,2 2189,FRAMEQA7815,gym,where is the man working out?,tumblr_ndayi6M8cK1th4ipno1_400,41211,3 2190,FRAMEQA2037,blue,what is the color of the eyes?,tumblr_npxf8wubW91qlhoemo1_400,27451,2 2191,FRAMEQA856,bird,what is playing around with the small pumpkin?,tumblr_ne0v8hQfU71sjuzlno1_400,37917,0 2192,FRAMEQA30535,two,how many guys on motor scooters are driving own a road?,tumblr_nbpvtttnNx1redfc8o1_500,90884,1 2193,FRAMEQA21687,crow,what is the young woman with black hair shooing away?,tumblr_ndxspvkFfy1tgose8o1_250,38929,0 2194,FRAMEQA44477,three,how many men are dancing in unison together?,tumblr_np88x8KELj1srwy2po1_400,96841,1 2195,FRAMEQA50752,ball,what did the person kick quickly into the net?,tumblr_nitqpoiFcB1qc85nuo1_400,101375,0 2196,FRAMEQA42105,black,what is the color of the fence?,tumblr_nprglcBVTc1unyhx2o1_400,65277,2 2197,FRAMEQA26437,black,what is the color of the heeled?,tumblr_njtr71EuXh1u0alpro1_500,60645,2 2198,FRAMEQA45849,red,what is the color of the cap?,tumblr_nh1qheHfba1t4snx4o1_250,12481,2 2199,FRAMEQA10535,one,how many man is talking?,tumblr_nrdt6jdQ4C1u494rjo1_500,81207,1 2200,FRAMEQA29996,white,what is the color of the shorts?,tumblr_noise3JpIW1toq0iso1_540,63270,2 2201,FRAMEQA8524,white,what is the color of the shirt?,tumblr_nhlduh5x7Y1tknx5ho1_250,18313,2 2202,FRAMEQA14726,microphone,what is the girl holding and she is hugging another girl?,tumblr_ngw6bwDfFA1tmo8ldo1_250,41373,0 2203,FRAMEQA8332,two,how many females start dancing with the mic in their hand?,tumblr_nhjczrGsrN1sua8z0o1_250,1672,1 2204,FRAMEQA17000,carpet,what crawling against and falling fell?,tumblr_neddm7VXxe1u2b0jwo1_400,80932,0 2205,FRAMEQA50194,two,how many people have the conversation on a beach?,tumblr_ncjcla0Mpc1rf76tuo1_400,28358,1 2206,FRAMEQA45141,apartment,where are the young couple kissing?,tumblr_nl3ljyQlT21u34u6eo1_500,89062,3 2207,FRAMEQA20025,two,how many young men look at an item together?,tumblr_nec847BeIU1tv34hgo1_500,40858,1 2208,FRAMEQA1239,white,what is the color of the t-shirt?,tumblr_nd8g21EDnl1u07egpo1_500,100544,2 2209,FRAMEQA15777,black,what is the color of the hair?,tumblr_nb8c0panhq1tjisrpo1_250,22225,2 2210,FRAMEQA16764,two,how many women have their heads close together?,tumblr_nk1o4wrz6A1t1d43io1_500,88073,1 2211,FRAMEQA18120,one,how many male singer lifts up the shirt of another male singer?,tumblr_nba4zsrstP1thacl7o1_500,19023,1 2212,FRAMEQA11481,hat,what did the bald man give a girl and she put it on?,tumblr_ncxsl29ZXD1tmth2jo1_250,47237,0 2213,FRAMEQA20841,tail,what is the cat wiggling underneath a curtain?,tumblr_nrdf8ua9mH1u76jino1_400,15090,0 2214,FRAMEQA22723,white,what is the color of the chairs?,tumblr_nk1owjaSEb1qgvgxbo1_250,3345,2 2215,FRAMEQA48246,black,what is the color of the hear?,tumblr_nconinasRR1s9gxsqo1_500,89274,2 2216,FRAMEQA16440,black,what is the color of the dress?,tumblr_nr1d9tie9A1uapkkko1_400,6149,2 2217,FRAMEQA53048,car,what is driving along the road?,tumblr_n971luAydg1skeuupo1_400,74145,0 2218,FRAMEQA34716,pony,what walks into the building and scares an old man?,tumblr_ndg6m6C0nY1tdmffyo1_400,86974,0 2219,FRAMEQA42164,car,what speeds down the track?,tumblr_nbrjkcGkJR1tx8mn0o1_400,55503,0 2220,FRAMEQA31390,white,what is the color of the chicken?,tumblr_noozcvca8b1uuexz4o1_500,73127,2 2221,FRAMEQA38568,car,what is driving backwards to park between tires?,tumblr_nfxlr1iOlx1tx8mn0o1_400,55730,0 2222,FRAMEQA34185,room,where are two men dancing?,tumblr_novlokWmWb1t6t8bgo1_540,93683,3 2223,FRAMEQA17085,two,how many boys share the laugh in front of a microphone?,tumblr_njvg6yWRQo1u3sw0yo1_250,47272,1 2224,FRAMEQA13245,dog,what is getting excited about the lemon and jumps around?,tumblr_nk98cz79at1tk2ngvo1_400,68986,0 2225,FRAMEQA50174,two,how many men are engaged in the fight with one holding a knife?,tumblr_ndfxdnLORb1rmy96xo1_500,97235,1 2226,FRAMEQA21491,two,how many young men are talking into microphones in a radio studio?,tumblr_nr46avxZ4M1rn573lo1_400,56707,1 2227,FRAMEQA51493,car,what does there 's passing another one with sparks coming from the back of it?,tumblr_nr12heBDzF1siem3jo1_400,93803,0 2228,FRAMEQA2629,goat,what is eating peanut butter from a spoon?,tumblr_nhf2pkEfCK1ssgyoro1_400,70176,0 2229,FRAMEQA19223,shirt,what is the man unbuttoning and looking straight ahead?,tumblr_nnsotwRNgh1tmavx8o1_250,1691,0 2230,FRAMEQA19141,two,how many kids with microphones on their head are thinking?,tumblr_noytvf2W2r1u6pwr8o1_r2_500,86355,1 2231,FRAMEQA3690,car,what bounces in the air as people look on?,tumblr_nqjman0b8a1qcehyco1_400,50340,0 2232,FRAMEQA3116,cars,what round the corner at a racetrack?,tumblr_ne0jf2Dmtj1tr5tuwo1_500,71919,0 2233,FRAMEQA52563,hat,what is the man with a beard talking and wearing?,tumblr_nbznblT3yw1rfvxbco2_400,18804,0 2234,FRAMEQA31004,two,how many persons are smiling while they look at the face?,tumblr_nazxdcpJP91thua8uo1_250,17248,1 2235,FRAMEQA35619,car,what is drifting around in the circle?,tumblr_n91l33EgZY1rpqn0wo1_500,73230,0 2236,FRAMEQA30742,mask,what does the woman in a red hooded cape with dark gloves remove?,tumblr_ms4kvoOQeL1rgryh8o1_500,24942,0 2237,FRAMEQA15120,white,what is the color of the gown?,tumblr_nk1g9eYGGP1u9kikho1_400,50878,2 2238,FRAMEQA2301,headdress,what is the man wearing make up and is sitting at a desk?,tumblr_ndwhafR5HW1tm4bmbo1_400,60783,0 2239,FRAMEQA8212,two,how many men is this image of sitting down looking at each other?,tumblr_nqscoi71bd1upirrro1_500,57842,1 2240,FRAMEQA28623,two,how many men hug and then continue rapping?,tumblr_n9uv1zvqSX1rpt0jio1_400,77523,1 2241,FRAMEQA3081,black,what is the color of the monkey?,tumblr_nk2vkqraUl1s6zpepo1_250,44090,2 2242,FRAMEQA36689,three,how many teenagers are laughing and joking with each other?,tumblr_nb3o0vDFSV1ty4rvzo1_250,2158,1 2243,FRAMEQA9129,hat,"what is the boy in a hat sitting down , and he is removing?",tumblr_na8mwwLFDM1skvnslo1_400,58275,0 2244,FRAMEQA47222,dog,what is dressed in the sweating while wearing a wig?,tumblr_n8y79dwmex1tdjuqvo1_250,16924,0 2245,FRAMEQA48799,room,where is the woman dancing?,tumblr_nhhl4xUkM11tiblojo1_250,22582,3 2246,FRAMEQA19049,black,what is the color of the earring?,tumblr_nber13xCxA1t0yxwdo1_400,90654,2 2247,FRAMEQA1339,car,what is slowly driven on the shoulder of the road?,tumblr_n907c1PcRr1sncaa3o1_400,78070,0 2248,FRAMEQA580,white,what is the color of the chair?,tumblr_nr4083ljaR1u7dvowo1_540,79713,2 2249,FRAMEQA13441,house,what is sitting amid the snow scene?,tumblr_nfux46GbgX1snu2seo1_400,919,0 2250,FRAMEQA37557,two,how many mascots clap their hands together and then sit down?,tumblr_noal004K181rk6mu2o1_250,80772,1 2251,FRAMEQA49430,stick,what is the girl using?,tumblr_njxnhePk1F1qeaeqco1_250,49050,0 2252,FRAMEQA22268,two,how many boys are dancing around on the stage?,tumblr_nd5rycDrcR1tf7kp3o1_500,84784,1 2253,FRAMEQA45333,kitty,what is wearing the jacket and standing up on two feet to tap a hand?,tumblr_nr2wgxdabT1u76jino1_400,42056,0 2254,FRAMEQA22762,white,what is the color of the running?,tumblr_nfmbdqyPlr1qhi0ato1_250,14144,2 2255,FRAMEQA43943,bubbles,what is the young boy wearing a suit and tie is looking to the distance and are floating around?,tumblr_nc8e4peYNx1rcivpuo1_500,101709,0 2256,FRAMEQA10511,one,how many hand is the bare-chested man in tattoos holding up?,tumblr_nbtjaqqMTQ1sj02yno1_400,17255,1 2257,FRAMEQA7550,turns,what is the very cute shirtless man doing inside of a hoop?,tumblr_nc3dcktrA31ticciso1_400,58502,0 2258,FRAMEQA49555,white,what is the color of the man?,tumblr_nkqgvgtZfb1s35d3lo1_500,41805,2 2259,FRAMEQA20686,two,how many men in hats are hugging each other?,tumblr_neh40xDIkk1tj2kheo1_250,5098,1 2260,FRAMEQA50379,two,how many workers is playing with his helmets?,tumblr_nbk98p7g3J1slj978o1_400,44732,1 2261,FRAMEQA27763,pillow,what is the man standing by a mirror then is moving?,tumblr_noyfaouv1s1tplwgro1_500,60868,0 2262,FRAMEQA21742,black,what is the color of the shirt?,tumblr_nkzexecqek1r8ael3o1_400,37463,2 2263,FRAMEQA49688,two,how many people with long hair are kissing and touching the neck and face of the other?,tumblr_nq23l4xPj61tdi2n7o1_500,65341,1 2264,FRAMEQA51164,three,how many men are goofing around in the studio?,tumblr_ndlmhiM9bh1u0sihjo1_250,5720,1 2265,FRAMEQA16162,red,what is the color of the skirts?,tumblr_nq513q76F81u3cb3fo1_400,46038,2 2266,FRAMEQA10063,horse,what is the person riding across a grassy hill?,tumblr_ndlmvfdO8l1tidcnvo1_400,64293,0 2267,FRAMEQA36576,car,what is driving on the road?,tumblr_nfmv6zvVmc1u25ovvo1_400,63416,0 2268,FRAMEQA29537,cars,what are racing around the race track?,tumblr_nhbn0vv8Gp1tx8mn0o1_400,86055,0 2269,FRAMEQA299,brown,what is the color of the dog?,tumblr_njp4xkNl8t1tk2ngvo1_500,67971,2 2270,FRAMEQA35022,two,how many men are pulling faces?,tumblr_n8rmaa7zrF1trm2z1o1_250,27282,1 2271,FRAMEQA37337,sweater,what is the boy smiling and touching?,tumblr_nlj7ukgHxw1uqezvco1_500,71943,0 2272,FRAMEQA11782,two,how many men are fighting each other outside?,tumblr_nbdyfx9M9v1tiv70go1_400,28050,1 2273,FRAMEQA4869,three,how many men are these who are dancing side by side?,tumblr_na5rzqybN61te5frpo1_1280,45922,1 2274,FRAMEQA18629,bowl,where is the cat biting a fish?,tumblr_nf189lUyiY1tdjuqvo1_400,38805,3 2275,FRAMEQA33267,one,how many young woman is dressed in the suit?,tumblr_nh8y8dlNj81u3fot3o1_500,81261,1 2276,FRAMEQA8177,black,what is the color of the suits?,tumblr_nf1d6ntdfo1rkc8b3o2_500,92451,2 2277,FRAMEQA35166,horse,what is being shown on display?,tumblr_na1zg9Bkf41s2wg51o1_400,36195,0 2278,FRAMEQA6317,red,what is the color of the room?,tumblr_nq36cclrEn1uvp3zyo1_500,34462,2 2279,FRAMEQA49205,studio,where are the man and a woman singing?,tumblr_njz44cKW5C1sba90go1_540,90331,3 2280,FRAMEQA44055,two,how many thumbs is the white woman giving up?,tumblr_nr2cdxmG9W1turx3wo1_250,14303,1 2281,FRAMEQA11890,suit,what is the man wearing?,tumblr_nqohhcgGYi1r1pstjo1_400,24326,0 2282,FRAMEQA17442,black,what is the color of the cat?,tumblr_nntolgMF0D1tyncywo1_250,53460,2 2283,FRAMEQA41863,guitar,what is the man singing and playing to the rhythmic lighting?,tumblr_ne4irzAToO1svos5ho1_400,26602,0 2284,FRAMEQA6204,wheel,what is the worker continuously spinning?,tumblr_nnl9ypbvvF1usyjg5o1_500,59362,0 2285,FRAMEQA45561,white,what is the color of the shirt?,tumblr_nbduqfCR9m1tl1yedo1_500,79447,2 2286,FRAMEQA47146,two,how many young man sing and dance in front of a microphone?,tumblr_nd9x50b1Zr1u103uqo1_400,26459,1 2287,FRAMEQA18880,red,what is the color of the shirt?,tumblr_nr136wYNPh1urkl22o1_500,67397,2 2288,FRAMEQA13973,green,what is the color of the door?,tumblr_nh2les6Lt11t5ojzdo1_250,81335,2 2289,FRAMEQA9705,two,how many men are hugging at the baseball game?,tumblr_nf3l77geE51tckhoro1_250,43984,1 2290,FRAMEQA42376,white,what is the color of the suit?,tumblr_ncpots8K611thq4xuo1_400,40422,2 2291,FRAMEQA21108,blue,what is the color of the shirt?,tumblr_nrhj8xVwwc1rd12nio1_250,9297,2 2292,FRAMEQA21098,two,how many young boys are dancing and gyrating around?,tumblr_nafbe4YHCY1tyuwrso1_500,101490,1 2293,FRAMEQA39407,white,what is the color of the bikini?,tumblr_ncvq16e3bp1tl3lpbo1_400,63601,2 2294,FRAMEQA1120,dog,what turns his head and stares?,tumblr_n9ji43A1Rt1titlh5o1_250,19769,0 2295,FRAMEQA48360,two,how many beautiful men with short hair are making sighs with the hands?,tumblr_naa11tbBvx1tebyg2o1_400,62578,1 2296,FRAMEQA4663,black,what is the color of the cap?,tumblr_nfi7wk5NaL1rifrfzo1_400,42796,2 2297,FRAMEQA44049,two,how many people are pushing each others feet with their own feet?,tumblr_nchrar0KYb1tmd31ao1_400,21163,1 2298,FRAMEQA1150,room,where are some people laughing at something?,tumblr_nksqcq3SSs1s0taylo1_400,22924,3 2299,FRAMEQA11184,gum,what does the woman spit out while talking to a man?,tumblr_ngjlp5kgcv1tehdato1_400,70204,0 2300,FRAMEQA46275,toy,what is the person apparently fixing?,tumblr_nc5wjeO42X1scelspo1_250,52745,0 2301,FRAMEQA45727,sunglasses,what is the man moving around on his face?,tumblr_ng52z8PL7o1t2dezjo1_400,65025,0 2302,FRAMEQA51886,black,what is the color of the suits?,tumblr_nauqdi6XJW1sje108o1_500,11524,2 2303,FRAMEQA31086,tie,what is the man in a suit talking and adjusting?,tumblr_nh7t1vdt1z1s1h8hno1_250,3800,0 2304,FRAMEQA36594,red,what is the color of the jacket?,tumblr_nbgn5rXBcf1tymzl2o1_400,65752,2 2305,FRAMEQA48320,room,where are the bunch of guys dancing around?,tumblr_n9yucrQ0CD1rcjuu7o1_400,19184,3 2306,FRAMEQA5214,yellow,what is the color of the scarf?,tumblr_nahgllYsQa1te9jx5o1_400,70111,2 2307,FRAMEQA45834,dog,what is staring ahead at someone while they are outside?,tumblr_n9ji43A1Rt1titlh5o1_250,19769,0 2308,FRAMEQA34306,curb,what is the man holding a garbage bag is walking down a street and jumps?,tumblr_ngnkhsnQGT1tg0fs9o1_400,87115,0 2309,FRAMEQA2447,car,"what is driving on the road , and then leaves it?",tumblr_ne00j9tc0m1tx8mn0o1_400,55497,0 2310,FRAMEQA14811,black,what is the color of the stands?,tumblr_nf5j25EmSI1rz6jjpo1_500,81740,2 2311,FRAMEQA44408,two,how many men are carrying microphones and dancing on a stage?,tumblr_nd5rycDrcR1tf7kp3o1_500,84784,1 2312,FRAMEQA5317,dog,what is looking around with its tongue out?,tumblr_nbx1tmy96X1tpo01go1_400,4945,0 2313,FRAMEQA38726,snake,what is chasing the white mouse?,tumblr_n9emuzqIhv1sk96t7o1_400,42486,0 2314,FRAMEQA13991,one,how many boy is talking to another boy at a school?,tumblr_njocvnKcFO1tifehbo1_400,55408,1 2315,FRAMEQA47974,two,how many men are sitting in small boats in the water?,tumblr_nhmkxiOfQS1r7kw0wo1_250,25153,1 2316,FRAMEQA46634,black,what is the color of the shirt?,tumblr_njxhochglk1sjb704o1_500,70668,2 2317,FRAMEQA44473,car,"what is the man driving , he looks at his passenger who is sleeping?",tumblr_ncvwisimqr1tmhwpbo1_250,56167,0 2318,FRAMEQA20130,dog,what is playing with the fake dog?,tumblr_no9t9j1OOA1usf060o1_250,26545,0 2319,FRAMEQA20916,room,where is the cute couple dancing?,tumblr_nq7jh4DbZY1r65nqjo1_500,54728,3 2320,FRAMEQA23609,black,what is the color of the man?,tumblr_npsss3YbI91rda9yxo1_500,70256,2 2321,FRAMEQA32725,gun,what is the man wearing a mask on the top of his head lights a cigarette and pulls out?,tumblr_nduzc4QNa11tmn3zuo1_400,64006,0 2322,FRAMEQA28144,white,what is the color of the goat?,tumblr_nq8pahvjZZ1uym2rjo1_400,20839,2 2323,FRAMEQA364,cat,what is playing very funny in the room?,tumblr_nqjklxflS41uz06r7o1_250,5456,0 2324,FRAMEQA11203,white,what is the color of the hair?,tumblr_nbf412WZn71tl6o7ko1_500,70230,2 2325,FRAMEQA41782,black,what is the color of the shirt?,tumblr_n8pqj1rlmp1t29pn7o1_250,18874,2 2326,FRAMEQA2814,black,what is the color of the boy?,tumblr_nerwf18fKw1tav4r9o1_400,84123,2 2327,FRAMEQA51361,two,how many young people are posing for the picture?,tumblr_ncmbyneIXL1qj8gilo1_500,71495,1 2328,FRAMEQA18916,two,how many men sit in the room and talk to each other?,tumblr_nq0a8cwZvc1u5ep4ro1_500,61245,1 2329,FRAMEQA8486,puppy,what is the cat eating from a bowl and is biting its ears?,tumblr_n8hkl5Vn171tgetb4o1_250,27225,0 2330,FRAMEQA49552,hat,what is the person with blonde hair wearing and talking?,tumblr_nb4gm0K4eA1tjiuk2o1_500,93595,0 2331,FRAMEQA21030,five,how many people on motorbikes who are jumping on ramps but it shows in reverse?,tumblr_nkk0waiRpk1unu0wio1_400,37502,1 2332,FRAMEQA22750,two,how many people are sitting at the booth and talking?,tumblr_n9qimeVRl31rm2suio1_400,13867,1 2333,FRAMEQA4344,suit,what are the boy with painted face by sticking?,tumblr_noofl2XtVN1uw3tyuo1_250,39859,0 2334,FRAMEQA6802,dogs,what move their heads from side to side?,tumblr_n8pom6qgCR1tgl4z1o1_400,75583,0 2335,FRAMEQA43047,two,how many people are dumping water on a man in a chair?,tumblr_natc7tHJGT1r1zmnpo1_400,65027,1 2336,FRAMEQA47687,white,what is the color of the shirt?,tumblr_nb1kpmxC281rkn23mo1_250,9788,2 2337,FRAMEQA7782,bow-tie,where does the man watch the woman as she jumps out of sight?,tumblr_n9en9zWoph1t0vmnto1_500,81728,3 2338,FRAMEQA10249,yellow,what is the color of the shirt?,tumblr_nk2y0pV0us1uorc9do2_250,8229,2 2339,FRAMEQA12076,airplane,what is flying in the sky sideways?,tumblr_narmwnsQzg1rtbkxgo1_400,20178,0 2340,FRAMEQA40295,white,what is the color of the man?,tumblr_nrifz9OHXA1r7dalho1_500,57761,2 2341,FRAMEQA24957,wig,what does the woman grab off of another woman 's head?,tumblr_nk4zmkCAr61u3b1hio1_250,35786,0 2342,FRAMEQA29672,car,"what is driving along in the desert , raising a cloud of dust?",tumblr_naq0629hIq1t5ojzdo1_250,49660,0 2343,FRAMEQA23044,white,what is the color of the shirt?,tumblr_n9ojivgX6N1qedx60o2_500,96484,2 2344,FRAMEQA13255,freezer,what is the man opening and taking something from it?,tumblr_naug61u7Kv1tgbziwo1_400,96773,0 2345,FRAMEQA41222,hat,what is blinking his eyes while talking?,tumblr_nam6nd8gMr1s9iqrfo1_400,14161,0 2346,FRAMEQA346,two,how many young girls are doing an arm dance?,tumblr_nghj6gFDD91u5eovyo1_400,21368,1 2347,FRAMEQA34216,rabbit,what is being stroked by the hand?,tumblr_neslna8yBt1tk2ngvo1_400,55987,0 2348,FRAMEQA11970,cars,what raced and the third car moved to first?,tumblr_nit1e4bC5N1tx8mn0o1_400,96402,0 2349,FRAMEQA17095,two,how many lovers embraced in the kiss?,tumblr_nc1y3bI5fF1trrm20o1_400,77206,1 2350,FRAMEQA43331,black,what is the color of the man?,tumblr_nbchtjXGlv1qchnreo1_400,86899,2 2351,FRAMEQA26239,green,what is the color of the suit?,tumblr_nkc5joOqMs1u3mw17o1_250,71272,2 2352,FRAMEQA8588,three,how many girls are dancing on the stage?,tumblr_n94yoj1LD01si7h1qo1_400,61213,1 2353,FRAMEQA34224,three,how many young men in black is teasing with each other in the room?,tumblr_neu0myvkQY1u28lfio2_1280,92767,1 2354,FRAMEQA41065,four,how many women are singing at the concert?,tumblr_nnkpi9gRWK1s778oho1_400,66032,1 2355,FRAMEQA8195,dog,what does the person show?,tumblr_nfqa4dEj3v1tet6zho1_400,62046,0 2356,FRAMEQA360,boat,what is going fast on the water?,tumblr_nilyoyDugt1qdzxbio1_500,55069,0 2357,FRAMEQA12655,white,what is the color of the dress?,tumblr_npfzvj5CkX1uxxr4no4_250,14198,2 2358,FRAMEQA47928,two,how many men are boxing in a boxing ring?,tumblr_notxiy4db81t1bfgzo1_400,35039,1 2359,FRAMEQA50318,scooter,what is the guy riding in front of another?,tumblr_nbpvtttnNx1redfc8o1_500,90884,0 2360,FRAMEQA10186,black,what is the color of the jacket?,tumblr_nfhvj2SkLt1tkoeqqo1_500,42554,2 2361,FRAMEQA8159,three,how many frogs are climbing around in the tank together?,tumblr_nksdyhXtpu1rhl4f0o1_250,22832,1 2362,FRAMEQA25481,black,what is the color of the man?,tumblr_nf65r6i5Ea1sjkon8o1_400,41537,2 2363,FRAMEQA29133,red,what is the color of the suit?,tumblr_nrjcfkUSzB1uaedmbo1_250,78463,2 2364,FRAMEQA40445,car,what drifts while smoke comes out the back?,tumblr_ndb4y8ZLES1t03l64o1_400,42848,0 2365,FRAMEQA50485,brown,what is the color of the hair?,tumblr_nazlg99bnp1tjba7no1_250,49653,2 2366,FRAMEQA29222,three,how many boys look at each other against the sky?,tumblr_njvkcm3JBJ1u3ruqqo1_500,72438,1 2367,FRAMEQA6809,black,what is the color of the hat?,tumblr_n92wk6HIP41seplkho3_400,29791,2 2368,FRAMEQA17430,green,what is the color of the wall?,tumblr_nohuamOayN1rntj9yo1_400,71978,2 2369,FRAMEQA51867,one,how many woman does there 's swaying back and forth with her hands pointing?,tumblr_nin5ihnofV1shg312o1_540,36027,1 2370,FRAMEQA48476,red,what is the color of the shirt?,tumblr_ne9rffF91i1tul4jlo1_250,9054,2 2371,FRAMEQA49050,two,how many woman dance from side to side while is wearing skirts?,tumblr_nl0lw5qYfq1uoz9klo1_400,22334,1 2372,FRAMEQA7952,guitar,what is this three girls singing and one is playing?,tumblr_ncehmvUQzC1tmicsyo1_400,59826,0 2373,FRAMEQA29268,flowers,"what is the man running , delivering , and signing?",tumblr_n9k1bvGVte1tomucgo1_400,61466,0 2374,FRAMEQA31765,black,what is the color of the uniform?,tumblr_na77n04nvH1rqb3bqo1_250,38386,2 2375,FRAMEQA44309,mirror,where is the woman smoking and watching herself?,tumblr_nfifascixz1tket94o1_500,83160,3 2376,FRAMEQA12576,bicycle,what is the man riding?,tumblr_ncdtu2RWrh1tfn4y9o1_250,16129,0 2377,FRAMEQA10462,black,what is the color of the mes-singly?,tumblr_nl3vj0whpR1s93eg4o1_400,38217,2 2378,FRAMEQA4583,skis,what is the dog pushing to the ground and skiing on them?,tumblr_nh39e5Eyfh1u5quhyo1_400,14890,0 2379,FRAMEQA36103,tail,what is an animal chasing?,tumblr_na29ckRUG81tso4bpo1_250,11168,0 2380,FRAMEQA73,two,how many bearded men are standing close when one man bites the other man 's neck?,tumblr_nhohl7YseY1s3f033o1_250,89385,1 2381,FRAMEQA37907,two,how many motorcycles are riding on the road?,tumblr_ne2vicp4Xt1ti2fvro1_400,53169,1 2382,FRAMEQA13448,road,what is the black car driving around?,tumblr_ne4xuxJjdk1sfxnzso1_250,82976,0 2383,FRAMEQA37013,white,what is the color of the shirt?,tumblr_n9ljcuFQoT1tptpheo1_250,49878,2 2384,FRAMEQA48783,red,what is the color of the pack?,tumblr_nqxzm6DUfa1ut2i25o1_250,14793,2 2385,FRAMEQA3951,robot,what is this walking down a flight of steps?,tumblr_no3edfgW4X1u71py1o1_250,12211,0 2386,FRAMEQA9550,car,where are the man and a woman talking?,tumblr_nht4i30HAy1u7ebs7o1_500,96214,3 2387,FRAMEQA2006,three,how many people dressed funny sing and laugh while playing the guitar?,tumblr_ncehmvUQzC1tmicsyo1_400,59826,1 2388,FRAMEQA32528,ladder,what does the kitten climb to the top bunk?,tumblr_nh2j9ov5zN1u4v3ypo1_250,155,0 2389,FRAMEQA42798,red,what is the color of the hair?,tumblr_nc4kxjTHRs1rmqkjuo1_400,82396,2 2390,FRAMEQA25973,two,how many boys are dressed in black the front one is talking?,tumblr_naosc4D5wx1tf1g00o1_250,20217,1 2391,FRAMEQA31182,train,what are carrying passengers going through a tunnel?,tumblr_m17cbwGbTH1qcay1ao1_500,34432,0 2392,FRAMEQA30366,cat,what is the pig licking?,tumblr_npabf7wMc81tatohao1_250,36414,0 2393,FRAMEQA45217,room,where were two guys talking when another guy bursts in?,tumblr_nkluxwUCXZ1up5k6ro1_250,77807,3 2394,FRAMEQA41169,white,what is the color of the girl?,tumblr_nhobtsS0jM1s86yfto1_250,9556,2 2395,FRAMEQA17932,two,how many men are in the darkened room?,tumblr_ncusywWoFr1skzykeo1_250,21512,1 2396,FRAMEQA51846,car,what is skidding down the road with other cars following it?,tumblr_nk1adbX9Zu1r3mccco1_500,48587,0 2397,FRAMEQA36507,egg,what is someone braking into the bowl?,tumblr_nbfz03nMP41tz0q9ko1_1280,33105,0 2398,FRAMEQA27863,white,what is the color of the shirt?,tumblr_nb48dltPmv1tntd2io1_500,73902,2 2399,FRAMEQA27238,white,what is the color of the shirt?,tumblr_npkycvYc841smjbgko1_400,2666,2 2400,FRAMEQA33313,two,how many motorcyclist popped wheelies and raced down the track?,tumblr_nhmyliMMZn1t0cpnmo1_500,82692,1 2401,FRAMEQA41720,blue,what is the color of the suit?,tumblr_nkadbrY0j01rj4f6to1_250,49409,2 2402,FRAMEQA37088,hat,what does the man pull off another man?,tumblr_ng69gxGVxg1u59g9so1_400,52028,0 2403,FRAMEQA11873,room,where is the person sitting and blowing smoke from their mouth?,tumblr_nh5wlgslxv1tl5ztao1_400,31986,3 2404,FRAMEQA663,two,how many fingers is the man pointing to his forehead?,tumblr_njvl80Edsp1u2goeko1_400,31080,1 2405,FRAMEQA17589,tire,what does the man throw onto the car?,tumblr_nhomv0Y6FK1sqlieso1_400,38893,0 2406,FRAMEQA49126,instruments,what are the group of men playing?,tumblr_nig4b0b1ln1rs9adzo1_400,59598,0 2407,FRAMEQA40422,two,how many young men in sunglasses are walking past a parked car?,tumblr_nbwyn9wAq21tfvj5ao1_500,24954,1 2408,FRAMEQA29383,jacket,what is the man wearing a necklace adjusts?,tumblr_nfiklnpmXO1u1axtzo1_250,9046,0 2409,FRAMEQA37343,dog,what is the person shaking their dog and looks happy?,tumblr_njwg4tiDgC1u8eq3no1_400,66173,0 2410,FRAMEQA28271,three,how many people are dancing in front of a can with fire in it?,tumblr_nbouq51nPr1tkti7do1_500,44349,1 2411,FRAMEQA27845,two,how many kittens have apples on their paws and are nodding their heads?,tumblr_nfcolpASZD1sht3fmo1_250,68601,1 2412,FRAMEQA4435,dress,what is the girl with long brown hair wearing?,tumblr_nay097eg3Y1s5y049o1_500,47813,0 2413,FRAMEQA22677,drums,what is the man with sunglasses playing?,tumblr_nhh11uNa5j1tngqkyo1_250,8192,0 2414,FRAMEQA28150,two,how many people are standing?,tumblr_nhh2bh2wBY1ra3tfmo1_500,89335,1 2415,FRAMEQA31965,bus,what is going out of the track?,tumblr_nl1o37byzo1tkso41o1_400,43357,0 2416,FRAMEQA37634,deal,what are the group of cats having?,tumblr_njo3xwphio1tk2ngvo1_400,30518,0 2417,FRAMEQA45233,black,what is the color of the curtain?,tumblr_nc6xz3dqv81rmf34ao1_400,63467,2 2418,FRAMEQA22174,gray,what is the color of the shirt?,tumblr_nbp20daPPv1ses81bo1_250,5643,2 2419,FRAMEQA47982,car,what is driving in the track?,tumblr_n8zp4hIxxe1sncaa3o1_400,56451,0 2420,FRAMEQA13502,makeup,what is the woman wearing and recording a blog?,tumblr_naroz5NXEs1s0yep4o1_400,28468,0 2421,FRAMEQA11937,three,how many men are sitting on the couch talking?,tumblr_namomnmjd51sjugf2o1_500,73930,1 2422,FRAMEQA39043,snake,what is being hatched from an egg?,tumblr_n8u37yY8T21s3att3o1_400,40003,0 2423,FRAMEQA11366,ship,what does the trailer back up into the water and comes out?,tumblr_nhbc8vzATx1s6zpepo1_400,87125,0 2424,FRAMEQA29667,bathroom,where is the man flexing his muscles?,tumblr_nhlucajwmi1r2kpfmo1_400,1917,3 2425,FRAMEQA33257,black,what is the color of the jacket?,tumblr_nebqwlQxEk1sc6vkuo1_500,83312,2 2426,FRAMEQA46520,white,what is the color of the dancing?,tumblr_ndi5ueYftk1sjx9hio1_500,67777,2 2427,FRAMEQA24379,bills,what is the black man tossing?,tumblr_nkadbrY0j01rj4f6to1_250,49409,0 2428,FRAMEQA25531,piece,what is being cut from the white cake with strawberries on it?,tumblr_nkji35ZEpf1u3w3ryo1_250,36401,0 2429,FRAMEQA35950,five,how many balls is the woman bouncing while balancing on a board contraption?,tumblr_nhuvtlz6f81tq4njio1_400,46370,1 2430,FRAMEQA3992,cat,what is standing up and closing the white door?,tumblr_nkyam1X1MM1tmnntwo1_250,37541,0 2431,FRAMEQA31987,black,what is the color of the shirt?,tumblr_nirpcxDWj51slkktxo1_250,51013,2 2432,FRAMEQA48997,two,how many man are waving their hands and shaking their heads?,tumblr_neyn5fQWKo1r3ydxho1_1280,57540,1 2433,FRAMEQA36537,room,where are two people dancing?,tumblr_nek73cMum61tlbm9qo1_400,54344,3 2434,FRAMEQA21823,blue,what is the color of the hair?,tumblr_nr9su8xLtl1uz1tgjo1_400,13081,2 2435,FRAMEQA32822,paws,what does the cat put on a screen?,tumblr_nobxqkQ9G11tpg4boo1_250,22695,0 2436,FRAMEQA19462,bed,where is the person laying?,tumblr_n9zn52IWcy1qcohbro1_400,50343,3 2437,FRAMEQA16728,room,where is the man dancing?,tumblr_njugpaKONg1timrhso1_250,17630,3 2438,FRAMEQA32369,two,how many athletes are hugging each other in an arena?,tumblr_n99c0fzIzc1sd9re8o2_250,13430,1 2439,FRAMEQA38344,red,what is the color of the jacket?,tumblr_ne3tqh85vZ1tz3e8yo1_400,1928,2 2440,FRAMEQA43135,four,how many women dressed in suits and hats are dancing?,tumblr_ngb2ovfyKz1qeagqto1_500,87675,1 2441,FRAMEQA32681,green,what is the color of the door?,tumblr_niu64yd0hR1qky5cmo1_250,19909,2 2442,FRAMEQA20010,two,how many white guys are having fun conversation?,tumblr_nrkvp0sAJs1ub68qdo1_250,10647,1 2443,FRAMEQA31159,microphone,what does the man on stage adjust?,tumblr_ngipx3UXAX1rnuooxo1_250,77797,0 2444,FRAMEQA17570,two,how many dark haired girls are sitting at the table?,tumblr_ne0hq9nCDK1tuw0i7o1_500,99652,1 2445,FRAMEQA11356,two,how many people in headphones moved their heads around?,tumblr_nl3zdwLhgA1ttuja3o1_500,85274,1 2446,FRAMEQA49865,door,"what is the girl opening , items fall out and she makes a face?",tumblr_ng59f6lsBw1tbw56lo1_400,44820,0 2447,FRAMEQA32237,two,how many girls are having fun in the blue ocean?,tumblr_nr39gaCvZn1uybeupo1_400,85471,1 2448,FRAMEQA47869,black,what is the color of the jacket?,tumblr_n9imcgraMv1qc8hkfo1_500,58753,2 2449,FRAMEQA8724,drinks,what do the few guys dance as they hold?,tumblr_n8sqbuRsJc1tgyh35o1_400,64116,0 2450,FRAMEQA44456,white,what is the color of the shirt?,tumblr_nbbnq50DwK1sepp2wo1_400,42853,2 2451,FRAMEQA5855,red,what is the color of the top?,tumblr_nerf6iPAlT1tdjuqvo1_250,44098,2 2452,FRAMEQA48940,four,how many men are standing in the circle?,tumblr_nhi4hjjnIM1twtuudo1_250,16603,1 2453,FRAMEQA11524,two,how many men man boys throw their hands around and sing to us?,tumblr_naly48pXks1t3eui8o1_500,2542,1 2454,FRAMEQA5577,two,how many actors are hugging at the conference?,tumblr_na405oJNXw1s7shqdo1_250,16375,1 2455,FRAMEQA36743,ball,what did the soccer team pass around the field?,tumblr_nog48ftGLF1tigieto1_500,99774,0 2456,FRAMEQA23753,dog,what is eating what appears to be pasta?,tumblr_n91mzrxl5h1r4phxao1_400,81135,0 2457,FRAMEQA39263,cafeteria,"where is the girl wearing a light colored sweater , dives ,?",tumblr_nf3x6m8etJ1u2lsxjo1_500,85880,3 2458,FRAMEQA3646,bubble,what is the young boy blowing with bubblegum?,tumblr_ndpne1baVW1rylr5ko1_500,97318,0 2459,FRAMEQA8105,two,how many people pass each other by a wall?,tumblr_nqx3cbf4Xz1t0ojyvo1_500,99894,1 2460,FRAMEQA35381,two,how many women look at each other with snarling looks?,tumblr_n8a0e46Baz1qcwyxho1_500,41796,1 2461,FRAMEQA18432,cigarette,what is this image of a lady in black smoking?,tumblr_nhbwfjkIRX1u6q9r2o1_250,11953,0 2462,FRAMEQA3754,dress,what is the woman reading on the roof and is flowing?,tumblr_nbfcwnjXBV1tdpae7o1_400,4428,0 2463,FRAMEQA50849,white,what is the color of the girl?,tumblr_ncyyl1NVgD1sxfrgdo1_400,33358,2 2464,FRAMEQA2154,piano,what is the man playing in front of a microphone?,tumblr_npkv34KrwC1uxdjhyo1_500,39152,0 2465,FRAMEQA9180,goggles,what is the man wearing and holding a martini in a pool?,tumblr_nc4qhhSLmI1rxcaido1_250,43667,0 2466,FRAMEQA38655,blue,what is the color of the jacket?,tumblr_nklvmbxVSC1qeurwuo1_250,53608,2 2467,FRAMEQA22935,wagon,where is the man driving down the road?,tumblr_n9rmj7Ecu51tigxjpo1_400,73785,3 2468,FRAMEQA28390,car,what bounces up and down next to the man singing into a microphone with his arm in the air?,tumblr_n8tie8OOhC1tfj40ro1_400,84962,0 2469,FRAMEQA25311,man,what is looking into the distance?,tumblr_na7vcrlEAM1sr0xveo1_400,97808,0 2470,FRAMEQA41047,yellow,what is the color of the dress?,tumblr_ndpi16gbsF1u1eqgwo1_400,35372,2 2471,FRAMEQA41908,cups,what do the man and a woman smile and hug as they hold?,tumblr_n9bsegeE7J1tetcdwo1_500,79566,0 2472,FRAMEQA22209,two,how many men walk dramatically down the catwalk?,tumblr_nc94ra2nr01r73xvvo1_500,62033,1 2473,FRAMEQA26983,three,how many men dance with one of them sandwiched between the other two men?,tumblr_nh9h3dC7Wb1u6bdo9o1_400,54185,1 2474,FRAMEQA11298,red,what is the color of the wine?,tumblr_njnpvxnQZZ1twuu9lo1_250,15339,2 2475,FRAMEQA41699,two,how many young women on a couch do a silly dance?,tumblr_ndwywb6JYu1qd8xguo1_500,10965,1 2476,FRAMEQA18543,car,what is the cat riding?,tumblr_nq60huObBd1tk2ngvo1_400,15603,0 2477,FRAMEQA12541,two,how many people are kicking each other while laying on the ground?,tumblr_nchrar0KYb1tmd31ao1_400,21163,1 2478,FRAMEQA43749,two,how many men are sharing the moment in bed?,tumblr_nkw7jnai031rm0ja8o1_400,52202,1 2479,FRAMEQA49283,bird,what is hunting and grabs the fish?,tumblr_naiwug6sJp1slwrsuo1_400,24088,0 2480,FRAMEQA51571,dolphin,what is painting the picture with its mouth?,tumblr_nb2mzb98AK1tkpzw0o1_400,21285,0 2481,FRAMEQA7597,white,what is the color of the hat?,tumblr_nr53ie9eQn1re5o97o1_500,27647,2 2482,FRAMEQA45945,two,how many people are moving around and playing with tennis balls?,tumblr_nezwgxkYSL1trp7kao1_500,38597,1 2483,FRAMEQA37990,black,what is the color of the hair?,tumblr_noc8a1qRoV1sjmszyo1_500,59778,2 2484,FRAMEQA953,white,what is the color of the sheet?,tumblr_nh81xsJ7O01qhqng8o1_500,89023,2 2485,FRAMEQA24075,bubble,what is the girl with bruises on her face making with bubblegum?,tumblr_nrkc0sh9Q61us2u6eo1_500,62422,0 2486,FRAMEQA43538,mascara,what is the woman applying in front of a mirror?,tumblr_ncevbsEdgu1sfsp8mo1_250,49824,0 2487,FRAMEQA12190,card,what is the man getting pinned on his mouth?,tumblr_nef3lafKhM1sfx4ouo1_250,96336,0 2488,FRAMEQA5497,white,what is the color of the shirt?,tumblr_nbxzvxK6hJ1tnea94o1_400,65161,2 2489,FRAMEQA36794,building,what is falling and the man and woman are staring?,tumblr_noa6rx5v411uvvlngo1_500,67582,0 2490,FRAMEQA26501,banana,what is the young man with dark hair eating?,tumblr_n8qbwbd8sH1swdkm1o1_250,4004,0 2491,FRAMEQA31905,car,what is drifting around the corner?,tumblr_n9k66hDtUT1s9lpi5o1_400,54195,0 2492,FRAMEQA44210,umbrella,what is the girl holding and sending a kiss?,tumblr_nc6vuenb6t1tvi3k9o1_400,32791,0 2493,FRAMEQA21297,hat,what is the man in old fashioned costume removing?,tumblr_nogrjsVaZT1qiz3j8o1_540,20996,0 2494,FRAMEQA32343,red,what is the color of the sweater?,tumblr_n9k8xzjz181tiur4yo1_250,12182,2 2495,FRAMEQA45955,white,what is the color of the woman?,tumblr_nhef7ip3A31txcppto1_250,20520,2 2496,FRAMEQA39294,dog,what is the guy holding?,tumblr_nbuxw8BkXX1tlwdp4o1_400,65656,0 2497,FRAMEQA17769,phone,what is the man sitting his car and pulling out?,tumblr_nko35llwGE1u9vg2vo1_500,88852,0 2498,FRAMEQA13950,two,how many athletes are posing in dark lighting?,tumblr_n9jsshBHVv1roay1bo1_250,17178,1 2499,FRAMEQA50435,microphone,what is the boy wearing a watch is holding and giving a thumbs up?,tumblr_nkodyvmkCZ1u9f952o9_250,12301,0 2500,FRAMEQA18509,bird,what goes into the store and steals a bag of something and runs away?,tumblr_n9r2p3I67n1txmq72o1_250,23722,0 2501,FRAMEQA36720,white,what is the color of the sweater?,tumblr_nfkopzxSre1tg9gzmo1_500,21744,2 2502,FRAMEQA38626,black,what is the color of the costume?,tumblr_ndfm7qADvQ1ste7mro1_250,3717,2 2503,FRAMEQA13949,green,what is the color of the hair?,tumblr_n9spvzQJb81rg6mvpo1_400,32276,2 2504,FRAMEQA24544,two,how many men are on the stage hugging each other?,tumblr_npv0naAHW61uvz6e5o1_500,83419,1 2505,FRAMEQA45029,trunks,what does the man adjust in the ocean?,tumblr_n8x3um6BPr1rac9v2o1_400,39916,0 2506,FRAMEQA46385,black,what is the color of the shirt?,tumblr_n9wda2TCP21rdth4wo1_500,71733,2 2507,FRAMEQA25334,three,how many boys is this that are sitting in a group?,tumblr_ne3dziL8xT1rhy02xo1_500,72822,1 2508,FRAMEQA42964,ball,what does the baseball player hit really far?,tumblr_nrl16zOfFD1uynlu6o1_400,62902,0 2509,FRAMEQA25100,white,what is the color of the hat?,tumblr_nb58nff2VI1qmrkoro1_250,23357,2 2510,FRAMEQA13400,room,where are the man and woman dancing?,tumblr_nq9tkzX6Mn1syyvtvo1_400,64701,3 2511,FRAMEQA24014,two,how many children is wearing head coverings are singing and laughing?,tumblr_njs6zrrNmC1qimid5o1_250,4029,1 2512,FRAMEQA44090,two,how many dancing men slide on the floor into each other and pose?,tumblr_n95kw5hm8o1tfgg7jo1_500,102010,1 2513,FRAMEQA30399,liquor,what is being poured into the shot glass?,tumblr_no3swt5pjq1s6ooqoo1_250,16833,0 2514,FRAMEQA18561,room,where is the man doing handstands?,tumblr_n91m5sAaio1qj3ripo1_400,5160,3 2515,FRAMEQA43068,two,how many basketball guys are doing the hand shake?,tumblr_nq0ietOo6o1qa3o0zo2_500,82603,1 2516,FRAMEQA38602,two,how many men have the fight at a bar?,tumblr_nct6zs76IQ1t70et2o1_400,65061,1 2517,FRAMEQA21154,cat,what is climbing out of the tent?,tumblr_n8x7oaXb1D1sj1td7o1_250,19037,0 2518,FRAMEQA27276,two,how many female models are walking and holding hands?,tumblr_nbc9b4q2IM1sxapr1o1_500,56668,1 2519,FRAMEQA28194,white,what is the color of the looks?,tumblr_nnwo4pR4eE1tk2ngvo1_400,56306,2 2520,FRAMEQA12047,cigarette,what is the man laying in bed and smoking?,tumblr_nguizjs4Pa1u5hpeio1_250,21210,0 2521,FRAMEQA30819,two,how many men are banging their chests together and they both fall down?,tumblr_nfpfh1RQGx1toym0ao1_400,29656,1 2522,FRAMEQA24619,two,how many men stand outside talking and laughing?,tumblr_nb2v1qUAmT1tjk3cbo1_250,49758,1 2523,FRAMEQA34131,two,how many lovers stand among the trees at night and link hands?,tumblr_noelv1D1uI1tdtm2ao1_400,85653,1 2524,FRAMEQA24077,two,how many people is lounging lift their heads up to look at a laptop?,tumblr_ng329lAqkq1sh2a17o1_400,64842,1 2525,FRAMEQA24788,white,what is the color of the dress?,tumblr_njabihiB4w1tuh8exo1_400,77,2 2526,FRAMEQA40718,red,what is the color of the shirt?,tumblr_ngztpl8S711u6tclbo1_400,60950,2 2527,FRAMEQA20318,cat,what is poking its head up from behind a window?,tumblr_nk22l3T7h61u2mmn8o1_400,43464,0 2528,FRAMEQA41007,white,what is the color of the guitar?,tumblr_n9v14rHt3R1riy1p3o1_400,39342,2 2529,FRAMEQA4830,hat,what is the person standing and wearing?,tumblr_naf2udFCsT1txa4xgo1_400,68587,0 2530,FRAMEQA41512,dress,what is the woman standing?,tumblr_n9wn5mOBXJ1ttuja3o1_250,36660,0 2531,FRAMEQA16401,scarf,what is the woman tying around a mannequin?,tumblr_n97yrfHtCi1t5lsj5o1_500,54283,0 2532,FRAMEQA39236,two,how many women sat looking at each other?,tumblr_nes3koGSue1s2cbf9o1_250,47312,1 2533,FRAMEQA12944,dog,what pushes the toy away barks sitting at a table?,tumblr_nhjoevhfoc1te94myo1_400,10630,0 2534,FRAMEQA26813,two,how many men is this image of talking to each other?,tumblr_n9sho7J99O1tggdauo1_400,14816,1 2535,FRAMEQA48073,black,what is the color of the hair?,tumblr_nhrwlnA5yo1rvuwsco1_250,18509,2 2536,FRAMEQA15887,two,how many people are sat side by side and talking?,tumblr_neg0g3h3gH1qgs247o1_500,69999,1 2537,FRAMEQA6795,black,what is the color of the car?,tumblr_nqyiresVbd1unyhx2o1_400,76911,2 2538,FRAMEQA42567,squash,what is the man in a handicap cart waving?,tumblr_nhdi1douhg1r03eaxo1_400,76259,0 2539,FRAMEQA14002,store,where is the guy with the tattoos on his chest talking?,tumblr_nc9l2lY8w01s627ico1_400,86939,3 2540,FRAMEQA8224,blue,what is the color of the shirt?,tumblr_ndcasjajr01re0fngo1_400,29830,2 2541,FRAMEQA34590,headphones,what is the young man wearing?,tumblr_na3330wJ541r1e6f9o1_500,98499,0 2542,FRAMEQA34685,snake,what is hugging the tree with her body?,tumblr_neu5ybxkBL1tia84ho1_r2_1280,61746,0 2543,FRAMEQA1626,cat,what is sitting in the corner near a door?,tumblr_nex4xp2DL31slj978o1_250,3264,0 2544,FRAMEQA17121,hamster,what is moving around in his cage?,tumblr_na07x1hrbL1ti3y6yo1_400,25005,0 2545,FRAMEQA19971,dog,what is opening and closing its mouth while an animal is in water behind it?,tumblr_ngy4jkSGjY1tni61eo1_250,27236,0 2546,FRAMEQA17203,cheese,what is being placed on the slice of bread?,tumblr_neqbltdM1G1rftdx0o1_400,45406,0 2547,FRAMEQA32930,blue,what is the color of the coat?,tumblr_nhreaq0fbQ1u7dl8fo1_250,47460,2 2548,FRAMEQA47221,sunglasses,what is the man wearing while talking and smiling?,tumblr_ndr5xbefiA1s239z7o1_250,35516,0 2549,FRAMEQA42280,yellow,what is the color of the hair?,tumblr_ngig7vTBrE1txov4eo1_250,9844,2 2550,FRAMEQA4874,dog,what is hanging in the car window and a man turns his head and reacts to the dog?,tumblr_n9h68813s31txehx9o1_500,94877,0 2551,FRAMEQA51775,cigarette,what is the woman taking out of her mouth before exhaling smoke?,tumblr_nekjo7McVO1t6zhvzo1_400,32107,0 2552,FRAMEQA12483,dog,what is drinking out of the toilet bowl?,tumblr_nbfbih9DeO1slwrsuo1_400,15753,0 2553,FRAMEQA11663,snake,"what is the girl holding a snake and kisses , then the snake kisses her?",tumblr_nbag18Nh9E1s78p7ko1_500,59188,0 2554,FRAMEQA37898,blue,what is the color of the shirt?,tumblr_nc826aUSI71slj978o1_400,46829,2 2555,FRAMEQA45951,three,how many men are talking over their meal?,tumblr_na7ssmBprR1taym8lo1_400,71670,1 2556,FRAMEQA50767,black,what is the color of the dress?,tumblr_n8uic7q38E1rxj7ooo1_400,18405,2 2557,FRAMEQA24990,cigarette,what does the man inhale then blows smoke out of his nostrils?,tumblr_nbbnq50DwK1sepp2wo1_400,42853,0 2558,FRAMEQA36149,white,what is the color of the shirt?,tumblr_nc5ik20yvI1tti8vwo1_500,88627,2 2559,FRAMEQA47592,dress,"what does the woman wear , dances seductively?",tumblr_n8uic7q38E1rxj7ooo1_400,18405,0 2560,FRAMEQA16579,car,what begins the race with other cars?,tumblr_nb330aM2rd1taqruuo1_400,64237,0 2561,FRAMEQA3252,blue,what is the color of the eyes?,tumblr_n8wb6eXG2c1thsjzqo1_400,64996,2 2562,FRAMEQA24080,sword,what did the man in a robe unsheathe slowly?,tumblr_n92gvgCiks1r4w6cwo1_500,81763,0 2563,FRAMEQA6492,white,what is the color of the shirt?,tumblr_ne3qgzrxld1s0r79po1_r1_500,92812,2 2564,FRAMEQA867,blue,what is the color of the car?,tumblr_nfxlgzOQSN1t0x7yto1_500,61137,2 2565,FRAMEQA14530,two,how many men is this image of sitting down on a couch making silly faces?,tumblr_na2k21xDU51shtuz8o1_250,73231,1 2566,FRAMEQA44276,guitar,what is the man with dyed red hair playing?,tumblr_nhdzjchAEe1tepwnvo1_500,25115,0 2567,FRAMEQA22449,orange,what is the color of the coat?,tumblr_ne3s2a0pF31sqlieso1_250,74740,2 2568,FRAMEQA13865,three,how many young people are standing in front of a police telephone?,tumblr_nav6oaPHdu1tkrm74o1_500,68826,1 2569,FRAMEQA7169,red,what is the color of the girl?,tumblr_ne2nhl9fVr1u2ppnho1_400,33569,2 2570,FRAMEQA981,four,how many men are crawling on all fours?,tumblr_n8rxpzPdkD1sl4h58o1_500,96083,1 2571,FRAMEQA22964,bowl,where does the fish lay as a cat tries to pull him out?,tumblr_nf189lUyiY1tdjuqvo1_400,38805,3 2572,FRAMEQA43994,blue,what is the color of the hat?,tumblr_n9wa8lugFs1r8a1kho1_500,96102,2 2573,FRAMEQA6810,black,what is the color of the shirt?,tumblr_npdlzlPd9o1sj2opgo1_250,14294,2 2574,FRAMEQA44581,dog,what is looking around while standing on a couch?,tumblr_nh0sftU2oI1sgc1txo1_400,1442,0 2575,FRAMEQA3094,white,what is the color of the shirt?,tumblr_n8xt13cRaK1th5x8zo1_400,39190,2 2576,FRAMEQA11274,kiss,what are dancing in the dressing room?,tumblr_nk22u5Kq8E1raiukoo1_400,76563,0 2577,FRAMEQA42971,red,what is the color of the fish?,tumblr_n9hw28peTq1s61fbqo1_400,52981,2 2578,FRAMEQA7867,cat,what does the woman pet and kisses?,tumblr_nakevodx4L1s1txlxo1_400,32762,0 2579,FRAMEQA41970,cage,where does an animal climb a wall?,tumblr_nfysduIWKB1u029u8o1_400,37642,3 2580,FRAMEQA23423,white,what is the color of the shirt?,tumblr_nh22tam7s41rud96vo1_400,71903,2 2581,FRAMEQA52308,two,how many guys are on stage performing a concert?,tumblr_nk9vp9aJut1sdbrm9o1_400,33629,1 2582,FRAMEQA34166,three,how many men are wearing glasses and are smoking?,tumblr_nq7k6pBzzN1qm466ao1_500,24484,1 2583,FRAMEQA40329,room,where is the person doing a back flip?,tumblr_npp14yVd861ruoinvo1_400,50547,3 2584,FRAMEQA14375,possum,what is the himalayan cat his grooming?,tumblr_ncmnxtXMH81rd87k4o1_250,13409,0 2585,FRAMEQA16744,blue,what is the color of the shirt?,tumblr_nhio8wIAJ21u4f3j0o1_400,79239,2 2586,FRAMEQA38545,white,what is the color of the man?,tumblr_ndr9g7hj371sutnv4o1_500,26601,2 2587,FRAMEQA17825,black,what is the color of the shirt?,tumblr_ne3w76eSSb1u28yp1o1_500,48570,2 2588,FRAMEQA51396,blue,what is the color of the sweatshirt?,tumblr_n951b2b8S81t3pqzeo1_250,2787,2 2589,FRAMEQA32171,stockings,what is the girl fixing?,tumblr_n93tutzrrp1tb5w14o1_400,29742,0 2590,FRAMEQA37937,tree,what is the man shaking?,tumblr_nhe8vgQHTM1rvab3po1_250,21670,0 2591,FRAMEQA20959,two,how many girls are hugging each other with another girl pointing her hands?,tumblr_n8w7avDq101qb4p6go1_500,71582,1 2592,FRAMEQA46329,two,how many guitar players are performing live on stage?,tumblr_ng1uqvcH4y1t1nzngo1_500,70801,1 2593,FRAMEQA25720,clothes,what does the man somehow give to a person in mid air?,tumblr_nd3uvmrNjc1tgetb4o1_250,274,0 2594,FRAMEQA20581,headphones,what is the man blowing smoke out and wearing?,tumblr_nbmxzkirLv1txhlaeo1_250,5045,0 2595,FRAMEQA51285,red,what is the color of the hallway?,tumblr_nbwoxqjLik1tit9eco1_r1_500,95676,2 2596,FRAMEQA29285,dog,what is sitting on the couch and its puppies are sleeping next to it and a cat is curled up to it too?,tumblr_nhp1rdIHcP1s6zpepo1_250,27115,0 2597,FRAMEQA10507,kitten,what tries to get off the guy 's shoulder?,tumblr_nakdgd05uD1tbcisxo1_400,28962,0 2598,FRAMEQA7921,shirts,what do two wrestlers rip in front of a crowd?,tumblr_nelh3nATly1tte9eno1_400,40152,0 2599,FRAMEQA3824,building,what transforms into the robot and starts to dance?,tumblr_nplr9dMQ9H1uxicgso1_400,34952,0 2600,FRAMEQA40459,black,what is the color of the man?,tumblr_n9hf7vt5UL1tiqx4yo1_250,15348,2 2601,FRAMEQA35376,black,what is the color of the pants?,tumblr_nbaz4cGyXC1r324mgo1_500,89434,2 2602,FRAMEQA51486,black,what is the color of the top?,tumblr_n9qx6wLCjC1rid382o1_500,89086,2 2603,FRAMEQA37723,tray,where is the cat sitting on a stool is using its paws to attack paper?,tumblr_npfup8IJsd1t95h1uo1_400,31768,3 2604,FRAMEQA17126,black,what is the color of the coat?,tumblr_ng2baoLdip1thv17io1_1280,99336,2 2605,FRAMEQA26041,horse,what is jumping around in the snow?,tumblr_n6kmok3DdI1r1x3klo1_250,11769,0 2606,FRAMEQA26117,guitar,what is the man playing for a crowd of people?,tumblr_n9ziy4WYm21t29pn7o1_250,2306,0 2607,FRAMEQA50335,black,what is the color of the jacket?,tumblr_n94ie7oGYq1rws9d6o1_250,16973,2 2608,FRAMEQA18736,cigarette,what is the boy lighting and blowing out smoke?,tumblr_na7fsb2EGT1tirmpjo1_500,36074,0 2609,FRAMEQA49767,black,what is the color of the something?,tumblr_ni0zbqqPTH1tmeg7go1_500,87229,2 2610,FRAMEQA19315,black,what is the color of the dress?,tumblr_npjopzbz3k1qz8lpeo1_250,42542,2 2611,FRAMEQA35506,panda,what is moving his arms around as it sits in the snow?,tumblr_namd90alfg1qg9j7eo1_250,10806,0 2612,FRAMEQA17083,yellow,what is the color of the car?,tumblr_nkmeww4RZe1qh59g3o7_250,84666,2 2613,FRAMEQA28029,treadmill,what is the person being interviews in a gym and a person falls off?,tumblr_nf2a16IKOW1twoe5do1_400,82986,0 2614,FRAMEQA366,dog,what is pouncing on someone on a bed?,tumblr_nk4ygqewgH1tibyhjo1_400,57401,0 2615,FRAMEQA33292,three,how many women are walking with each other in white dresses?,tumblr_nd6ycl8B3R1snixmzo1_400,68918,1 2616,FRAMEQA47748,black,what is the color of the bra?,tumblr_ndnibodag31tli86to1_250,16395,2 2617,FRAMEQA44729,two,"how many man standing together , the one man yells?",tumblr_n9ewypfFC21tgj8ebo1_400,35356,1 2618,FRAMEQA45143,two,how many young people is wearing coats are facing each other and talking?,tumblr_n9fgg3pFQC1tin09xo1_250,51435,1 2619,FRAMEQA34679,cat,what is standing on his hind legs and moving his front two arms rapidly while hunching over?,tumblr_niq18pqr9L1s6zpepo1_400,28033,0 2620,FRAMEQA52491,office,where are the couple of people hanging out and talking?,tumblr_n9wkpeXC991re6qqko1_500,88635,3 2621,FRAMEQA14103,black,what is the color of the hair?,tumblr_nej1d4mOLQ1rnwhulo1_500,71777,2 2622,FRAMEQA47039,white,what is the color of the teeth?,tumblr_nb81l88uvu1rs532ao1_250,23077,2 2623,FRAMEQA13149,two,how many guys is sitting next to each other are laughing?,tumblr_ngsvtw1VqO1roxldao1_500,50556,1 2624,FRAMEQA3895,glasses,what is the young man wearing and speaking?,tumblr_ncsg9mN04U1t170ypo1_500,17265,0 2625,FRAMEQA7120,white,what is the color of the shirt?,tumblr_noai717XNp1r6o5eeo1_400,57093,2 2626,FRAMEQA14776,road,what does the motorcycle approaches and its back tire lift off?,tumblr_n8pjlmexAb1qlbtloo1_1280,50229,0 2627,FRAMEQA45461,shirt,what is the man wearing and playing his guitar?,tumblr_na5ataOKNF1ra19auo1_250,32238,0 2628,FRAMEQA44367,sunglasses,what are the man and a woman wearing and moving their hands around?,tumblr_n8zkz0clvD1t4tud5o1_250,47109,0 2629,FRAMEQA2329,three,how many people are pFRAMEQAaring the huge batch of soup?,tumblr_nc4z54JieK1som6aeo1_250,18398,1 2630,FRAMEQA2153,brown,what is the color of the hair?,tumblr_niokyrDPDi1r35105o1_250,42645,2 2631,FRAMEQA5090,guitar,what is the boy playing in front of a microphone?,tumblr_nrc6viwFXO1tbw0t6o1_500,74486,0 2632,FRAMEQA47417,black,what is the color of the man?,tumblr_ng0kmzzi0r1tgt39ko1_400,44221,2 2633,FRAMEQA20019,ship,what is taking off from the shuttle?,tumblr_n8q2u62j8H1sqofgbo1_400,44819,0 2634,FRAMEQA39658,guitar,"what is the woman singing , and she is playing?",tumblr_nkmd3bmcQP1upo311o1_400,19530,0 2635,FRAMEQA32659,white,what is the color of the veil?,tumblr_n9hhx6Tsyj1rftdx0o1_250,53576,2 2636,FRAMEQA636,green,what is the color of the hair?,tumblr_n97i1a0Cc21ryj8xlo1_400,59384,2 2637,FRAMEQA8621,purple,what is the color of the dress?,tumblr_nl08fcxHX31upy801o1_500,55119,2 2638,FRAMEQA22447,room,where is the woman dancing?,tumblr_n9x10wA8li1rfjpv9o1_400,75556,3 2639,FRAMEQA48179,cap,what does the young man wear on his head while sitting down?,tumblr_nc3vm1BT0P1tl8x1eo1_500,24178,0 2640,FRAMEQA11403,black,what is the color of the suit?,tumblr_ni0e5mHJLF1u2o7c8o1_400,1740,2 2641,FRAMEQA38865,dog,what is listening music and stops?,tumblr_nb2o4pgPu71soax42o1_400,90593,0 2642,FRAMEQA12279,two,how many men are using laptops and then high five each other?,tumblr_nebsu3wlge1r7490vo1_500,101847,1 2643,FRAMEQA13673,cigarette,what is someone lighting?,tumblr_nirv73J7pz1tixppbo1_400,24461,0 2644,FRAMEQA2580,red,what is the color of the fez?,tumblr_nkgn3fIdl11u4ecywo1_400,42456,2 2645,FRAMEQA16073,guitar,what is the boy in a leather jacket playing?,tumblr_nknxletT5q1sgou7qo1_250,13620,0 2646,FRAMEQA13934,kitchen,where is the woman screaming?,tumblr_nblhu2dxb81s662kvo1_250,6359,3 2647,FRAMEQA3516,shirt,what is sitting man watching a guy shake his rear holding?,tumblr_nfsmn8JV6z1sqm4zbo1_500,46775,0 2648,FRAMEQA5902,black,what is the color of the suit?,tumblr_nr9z85obWn1uaz0fio1_250,27255,2 2649,FRAMEQA19668,black,what is the color of the costume?,tumblr_nrcelcGlRd1sht3fmo1_250,99243,2 2650,FRAMEQA19972,dog,what running on the beach and falls down?,tumblr_ncqbubNR881tdmffyo1_500,57557,0 2651,FRAMEQA36204,two,how many people are moving their feet together while laying on the floor?,tumblr_nchrar0KYb1tmd31ao1_400,21163,1 2652,FRAMEQA30069,alley,where does the young man dance and shakes his bottom?,tumblr_ngzr04ahth1t0hc4so1_400,64417,3 2653,FRAMEQA32022,car,where is the girl dancing?,tumblr_nqotedLtZG1tjz3ato1_400,64601,3 2654,FRAMEQA41327,cup,what is the woman holding next to the fire?,tumblr_nf19z5qOg31s8zojyo1_250,12232,0 2655,FRAMEQA30773,two,how many guys hold on and then passionately kiss each other?,tumblr_neosawCPpL1u04u4bo1_250,32607,1 2656,FRAMEQA42542,two,how many woman with long hair are clapping together?,tumblr_ng18v4iOw91u4hyr2o1_500,94617,1 2657,FRAMEQA48062,white,what is the color of the hair?,tumblr_na0rptDA7v1thtfeto1_400,69330,2 2658,FRAMEQA52817,white,what is the color of the sweatshirt?,tumblr_nmeocfPzsS1u2z3v8o1_250,5476,2 2659,FRAMEQA12869,chair,where is the girl with long hair bobbing around?,tumblr_n92go6IlpT1ro34d5o1_500,34517,3 2660,FRAMEQA47542,black,what is the color of the gloves?,tumblr_nai6960Q1M1tjkdj7o1_250,14225,2 2661,FRAMEQA49363,office,where is the man smiling and walking?,tumblr_ni8pby75eq1sv8skeo1_250,2112,3 2662,FRAMEQA27868,pillow,what is the baby holding and swinging in a toy?,tumblr_n8sl1lfgHI1s01ehvo1_250,43207,0 2663,FRAMEQA33317,two,how many motorcycle riders ride wheelies down the race track?,tumblr_nhmyliMMZn1t0cpnmo1_500,82692,1 2664,FRAMEQA26308,black,what is the color of the hair?,tumblr_n96ushKsHQ1rktim0o1_400,28886,2 2665,FRAMEQA48761,one,how many eye does the man have closed and has a hand on his face?,tumblr_ncdjrnvBst1tqw00to1_500,72197,1 2666,FRAMEQA7356,two,how many girls are singing and dancing to the song?,tumblr_ncggr1cNhU1s9ltd9o1_500,85223,1 2667,FRAMEQA1809,car,what is sliding off the track?,tumblr_nbrgn3y2N31tx8mn0o1_400,80363,0 2668,FRAMEQA46488,gray,what is the color of the shirt?,tumblr_ney69ux4541u2hqlpo1_250,12295,2 2669,FRAMEQA10627,one,how many man pushes another man in an office?,tumblr_nee3oelZr21tl3pamo1_250,3856,1 2670,FRAMEQA31635,two,how many men are hugging at the end of a football game?,tumblr_n99c0fzIzc1sd9re8o2_250,13430,1 2671,FRAMEQA18828,two,how many very cute people are walking while watching snow falling?,tumblr_nch6fvpc531tl6tllo1_500,26598,1 2672,FRAMEQA21801,helmet,"what is the guy in a blue sports uniform , also wearing?",tumblr_np58jvmXRX1rl84n7o1_400,49007,0 2673,FRAMEQA22564,mask,what does the young woman remove revealing her true face?,tumblr_ms4kvoOQeL1rgryh8o1_500,24942,0 2674,FRAMEQA19719,two,how many men are dancing on stage in costumes?,tumblr_nhzszrgVPB1shch57o1_250,41369,1 2675,FRAMEQA14963,black,what is the color of the suit?,tumblr_n9l730D6FC1rjn6tpo1_250,22567,2 2676,FRAMEQA38897,mirror,where is the man driving and looking?,tumblr_ngocss8lv11s0s7b6o1_400,42817,3 2677,FRAMEQA45613,one,how many man is sitting at the table?,tumblr_nc7ew9nZQK1tgyh35o1_400,64912,1 2678,FRAMEQA43189,black,what is the color of the girl?,tumblr_nklzp8I6PP1upngsao1_250,6381,2 2679,FRAMEQA18683,piano,what is the man singing and playing?,tumblr_nl2ju5qBvQ1upm7mmo1_500,54986,0 2680,FRAMEQA12509,two,how many handsome persons are sitting on the chair?,tumblr_noagkbLLFO1rz4xj6o1_1280,66638,1 2681,FRAMEQA12749,microphone,what is the young man holding and winking and lifting his finger?,tumblr_ndmbc0mImx1tvkq6vo1_250,17162,0 2682,FRAMEQA33434,beverage,what is the girl flipping her hair to the side and drinking?,tumblr_ne9r7oq5FA1s03rdoo1_400,43101,0 2683,FRAMEQA18380,black,what is the color of the jacket?,tumblr_nawb6zqqjz1rn9czio2_250,24831,2 2684,FRAMEQA41536,shoe,what is the man polishing with a tie dyed shirt?,tumblr_nph9oahgME1sj5w9fo1_400,39411,0 2685,FRAMEQA30993,black,what is the color of the hair?,tumblr_nf6xqvd0Jl1qf69tyo1_500,30797,2 2686,FRAMEQA45646,weapon,what does the man swing quickly around his arm?,tumblr_n9awd0Hzvt1tpfr3do1_500,50016,0 2687,FRAMEQA2105,green,what is the color of the liquid?,tumblr_nhjycfSH801sfuqj8o1_400,65005,2 2688,FRAMEQA52782,two,how many men dressed in black looking rather unhappy?,tumblr_nnn4qtnGxr1tek63jo1_500,39140,1 2689,FRAMEQA9400,cats,what are opening the drawer to look inside it?,tumblr_nephvvr7qF1tkura4o1_250,18471,0 2690,FRAMEQA42734,puppy,what is jumping out of the box?,tumblr_ngfdl91Enp1ta0siuo1_250,23803,0 2691,FRAMEQA18737,microphone,what is the man with black hair holding?,tumblr_npntu0IvQH1qf69tyo1_500,75077,0 2692,FRAMEQA790,two,how many people greet each other and slap hands?,tumblr_nnvw8yLQXV1sy9nfjo1_540,91905,1 2693,FRAMEQA26829,two,how many men are dancing and then falling off the balcony?,tumblr_nfi5pz1OK01twoivuo1_250,417,1 2694,FRAMEQA4704,cat,what is rolling down the stairs?,tumblr_nq21n4xlTu1qi1atio1_250,45750,0 2695,FRAMEQA15539,two,how many young man are singing into the microphone?,tumblr_nho9k1uktf1sov0w3o1_250,43995,1 2696,FRAMEQA27876,black,what is the color of the cloth?,tumblr_nfbat3qUnM1txvktjo1_250,15664,2 2697,FRAMEQA6248,white,what is the color of the man?,tumblr_nfpgnfekrZ1thlpapo1_250,1848,2 2698,FRAMEQA51938,car,where is the dog sad?,tumblr_noejltSfgA1tpg4boo1_400,17989,3 2699,FRAMEQA30097,car,what moves from side to side while skidding across a track?,tumblr_nd86nwgWeM1t2x9o3o1_500,54725,0 2700,FRAMEQA21019,stick,what is the man in black dress taking?,tumblr_ncgl6t3yLm1tqwtb6o1_500,99002,0 2701,FRAMEQA23559,bed,where are the couple and the man rolls on top of the woman?,tumblr_na3z9wYgAV1r1e6f9o1_500,98497,3 2702,FRAMEQA11350,two,how many men are sitting side by side and laughing?,tumblr_nqo2x3bbpv1uuh0teo1_400,89238,1 2703,FRAMEQA6887,two,how many guys is this image of onstage singing together?,tumblr_nixculfZ3b1qlbj8uo1_500,101727,1 2704,FRAMEQA34975,two,how many girls is talking expressly in the room?,tumblr_nkocex8iVE1qjame9o1_250,84471,1 2705,FRAMEQA7632,rabbit,what is the kitty cat licking ear?,tumblr_ngapyhHe7Y1sohuqmo1_250,36485,0 2706,FRAMEQA28116,guitars,what are the group of people playing?,tumblr_nf4ylsG3bX1u0iufgo1_500,76526,0 2707,FRAMEQA19062,cat,what is sitting up on its hind legs and falls backward after a piece of cheese is placed on its face?,tumblr_nrae7mMdrN1ua4mf8o1_400,76640,0 2708,FRAMEQA8237,bear,what slipped while walking with his mother?,tumblr_ni3sk8Rk081u8orsuo1_250,36559,0 2709,FRAMEQA36355,rodent,what is lying on its back and shivering?,tumblr_nnw6wwCf201qi6fy2o1_400,40088,0 2710,FRAMEQA20305,green,what is the color of the jersey?,tumblr_n9wnb04QPP1t1tf12o1_400,21562,2 2711,FRAMEQA18370,two,how many pairs is the heavy set woman putting of sunglasses on her head?,tumblr_nh968zCjLO1r9p1p9o1_500,61469,1 2712,FRAMEQA8793,blue,what is the color of the shirt?,tumblr_nelugrsfHA1qcaryto1_400,35224,2 2713,FRAMEQA50011,purple,what is the color of the earrings?,tumblr_njpa4yFBB41s4vjdko1_400,37464,2 2714,FRAMEQA10990,horse,what is the person riding across a field?,tumblr_ndlmqd8eIh1tidcnvo1_400,64316,0 2715,FRAMEQA9835,two,how many men give each other a high five?,tumblr_nfi98s3ntx1shsnyco1_500,101984,1 2716,FRAMEQA29635,black,what is the color of the jacket?,tumblr_nfm83tUrfH1u3z6lho1_250,3513,2 2717,FRAMEQA235,two,how many men are talking?,tumblr_nh9ue79ebR1u63zbwo1_500,50957,1 2718,FRAMEQA4595,rabbit,what is running in the circle on the bed?,tumblr_nfndwo7hfa1t7an45o1_500,91769,0 2719,FRAMEQA12456,blue,what is the color of the blinking?,tumblr_nfp07udA6a1sa63q9o1_250,15904,2 2720,FRAMEQA30571,cat,what is on top of furniture trying to scratch its head?,tumblr_niv7ivzNmF1u5d5ryo1_400,1080,0 2721,FRAMEQA36913,car,what is crashing into something in the rain?,tumblr_ndyc47w6ph1u25dj6o1_400,57531,0 2722,FRAMEQA65,hat,what is making moves with his hands?,tumblr_nklmon3cLG1u576abo1_250,17534,0 2723,FRAMEQA1422,box,where is the cat stretching and playing?,tumblr_ngite8IUNJ1r5uqe5o1_500,83208,3 2724,FRAMEQA51665,black,what is the color of the clothing?,tumblr_nfs209qdkn1u06yl0o1_500,97192,2 2725,FRAMEQA35096,black,what is the color of the shirt?,tumblr_n8vswusTl91tnyxl4o1_500,76812,2 2726,FRAMEQA7853,two,how many people are crawling on the floor toward a doorway?,tumblr_njxcc3Muq71ta4f2po1_500,92416,1 2727,FRAMEQA18100,two,how many people are talking and smiling while holding the phone?,tumblr_ndc5y9NdSL1u17tjio1_400,62294,1 2728,FRAMEQA44835,white,what is the color of the room?,tumblr_nj9rcd5g6r1sw5721o1_500,91807,2 2729,FRAMEQA36563,red,what is the color of the car?,tumblr_netcx4DbEN1u25ovvo1_400,63409,2 2730,FRAMEQA15397,red,what is the color of the hair?,tumblr_n9es5w4gE71sv8elno1_250,15102,2 2731,FRAMEQA48618,guns,what are guys wearing masks and pulling out?,tumblr_nduzc4QNa11tmn3zuo1_400,64006,0 2732,FRAMEQA823,two,how many women are smoking on the bed as the smoke is blowing away?,tumblr_nfplbjsvOQ1u4bx69o1_400,85920,1 2733,FRAMEQA2298,blue,what is the color of the towel?,tumblr_nkwbkvxn0I1qji9umo1_500,83993,2 2734,FRAMEQA20551,beach,what is the small dog running along before tripping and landing on its stomach?,tumblr_ngsuhqvHMY1rzwvkdo1_400,59438,0 2735,FRAMEQA44973,red,what is the color of the sunglasses?,tumblr_ncr8kjIvC91soy6h3o1_250,32308,2 2736,FRAMEQA20854,gun,what is the man given?,tumblr_ng7nje14RG1s6zpepo1_400,47878,0 2737,FRAMEQA45753,white,what is the color of the scores?,tumblr_namuciBtaT1r06temo1_500,93376,2 2738,FRAMEQA23013,two,how many people is this touching their foreheads together?,tumblr_ni20ssyPb91u84fnpo1_400,85079,1 2739,FRAMEQA6393,white,what is the color of the lady?,tumblr_noyxk3unTA1u01edeo1_250,14364,2 2740,FRAMEQA31848,two,how many young golfers are swirling their hips on the golf course?,tumblr_ncbcbhoKhs1r80o0mo1_500,101339,1 2741,FRAMEQA11467,white,what is the color of the hair?,tumblr_n9fjnea55D1sftrgmo1_500,50493,2 2742,FRAMEQA35244,room,where is the guy standing just dancing?,tumblr_njzoqihFzL1tsaobuo1_400,28495,3 2743,FRAMEQA35414,brown,what is the color of the guy?,tumblr_n9y146ualL1stbarjo1_500,55083,2 2744,FRAMEQA7801,cereals,"what are two men eating ,?",tumblr_n1wdvaQgaI1scy8zoo1_400,36893,0 2745,FRAMEQA23333,bear,what is walking holding her cub?,tumblr_n9al1mawYK1thcwtbo1_500,70761,0 2746,FRAMEQA4662,red,what is the color of the scores?,tumblr_nin8fp1Mk31ruk292o1_400,101477,2 2747,FRAMEQA47242,black,what is the color of the shirt?,tumblr_njr6h2kNOi1rkcbb8o1_400,691,2 2748,FRAMEQA25679,meal,what are three men talking over?,tumblr_na7ssmBprR1taym8lo1_400,71670,0 2749,FRAMEQA33051,yellow,what is the color of the blocks?,tumblr_n8x7ghjKH01tdwqw4o1_500,59819,2 2750,FRAMEQA44715,two,how many guys is fighting around the crowd in a boxing ring?,tumblr_njvtl39O371u2mqcoo1_400,52909,1 2751,FRAMEQA24144,white,what is the color of the shirts?,tumblr_n9sp35Fn9g1r9vmd9o1_400,41670,2 2752,FRAMEQA47818,dog,what is running and getting caught in the fence in a park?,tumblr_nrlcpoA7j61ungyc9o1_500,93000,0 2753,FRAMEQA8033,chicken,what is the person holding?,tumblr_noozcvca8b1uuexz4o1_500,73127,0 2754,FRAMEQA37325,two,how many young men with drinks are talking?,tumblr_nhuoksIv0d1ra6i3zo1_500,95617,1 2755,FRAMEQA9930,two,how many masked men are wearing costumes and speaking?,tumblr_ne6n5ulYf11sccnr4o1_250,5567,1 2756,FRAMEQA46934,black,what is the color of the shirt?,tumblr_nqt0rfOUFY1ux2ikeo1_400,74132,2 2757,FRAMEQA19759,black,what is the color of the shirt?,tumblr_nc9seliTsj1rigtemo1_500,57607,2 2758,FRAMEQA2866,horse,what is the woman riding?,tumblr_n9baqcXz1B1s3fuxko1_400,71884,0 2759,FRAMEQA8354,blue,what is the color of the eyes?,tumblr_neq138EJYV1u38ucqo1_500,74621,2 2760,FRAMEQA22252,black,what is the color of the guys?,tumblr_nhqlf57uyd1u22oxeo1_500,41782,2 2761,FRAMEQA13169,mirror,where is the man skipping?,tumblr_nhyizh0JAT1tsqdy0o1_400,16014,3 2762,FRAMEQA2027,white,what is the color of the sunglasses?,tumblr_nc5xkfbVPQ1tsmc92o1_400,50561,2 2763,FRAMEQA34556,sunglasses,what is the person with dark hair wearing and looking upwards?,tumblr_na7qbi6YqP1taym8lo1_400,73168,0 2764,FRAMEQA43580,monkey,what grooms the smaller monkey?,tumblr_nhnhys0agY1tcltsqo1_400,66216,0 2765,FRAMEQA38443,car,where is the guy trying to kiss a girl?,tumblr_nnyjmeHAg51upqmhpo1_250,39679,3 2766,FRAMEQA48107,black,what is the color of the shirt?,tumblr_ndaud7pQw81r4z25lo1_400,28204,2 2767,FRAMEQA28996,two,how many bottles is the man holding of liquors with his hands?,tumblr_n9w8iiyU0l1tqlsu7o1_1280,70381,1 2768,FRAMEQA12126,brown,what is the color of the hair?,tumblr_naoihgu5Hy1sw5721o1_500,89185,2 2769,FRAMEQA10779,four,how many males are singing and dancing on the stage with backup dancers?,tumblr_ndd7topxfn1tj2kheo1_400,44245,1 2770,FRAMEQA6119,two,how many men is wearing suits frown and a third is smiling?,tumblr_na8x97Ahoi1tdjuqvo1_250,16734,1 2771,FRAMEQA41651,white,what is the color of the shirt?,tumblr_nfpnf4qkMy1qb2rmxo1_500,48957,2 2772,FRAMEQA14842,cat,what are the man holding on a treadmill?,tumblr_nojpv0LDGS1tpg4boo1_250,25879,0 2773,FRAMEQA44206,dog,what plays with the white kitten?,tumblr_nhtqa26yvr1tjhld9o1_400,19224,0 2774,FRAMEQA16746,two,how many teams play soccer together on a field?,tumblr_n8q1o6rJ5y1svnovjo1_400,89556,1 2775,FRAMEQA9963,guitar,what is the man with long dark hair holding?,tumblr_n8t77uLMSw1tgftffo1_1280,87483,0 2776,FRAMEQA7676,five,how many men are sitting in the group staring at something?,tumblr_nepdv7f0qN1s0566ao1_1280,94729,1 2777,FRAMEQA9328,two,how many wrestlers are fighting?,tumblr_nf7oleJL0U1rkoaqfo1_400,52666,1 2778,FRAMEQA52697,red,what is the color of the hat?,tumblr_n932r0pFvS1tuatvvo1_400,53129,2 2779,FRAMEQA25451,one,how many man grabs another man from behind?,tumblr_nauqdi6XJW1sje108o1_500,11524,1 2780,FRAMEQA20690,cat,what pushed the wagon across the floor?,tumblr_nbiz26o6VX1tdjuqvo1_400,72091,0 2781,FRAMEQA46107,track,what does the car spin off with lots of smoke?,tumblr_nadk481D381tx8mn0o1_400,53118,0 2782,FRAMEQA30162,bench,what does he kick?,tumblr_nc2723hhf91tj9d1zo1_250,38384,0 2783,FRAMEQA13604,two,how many women are holding hands and being pulled apart in handcuffs?,tumblr_npp13hVgZN1uv3dw9o1_250,45040,1 2784,FRAMEQA19796,black,what is the color of the shirt?,tumblr_nbpto8N9UJ1tkisfzo1_500,92193,2 2785,FRAMEQA25983,two,how many men are driving down the road?,tumblr_n94ma8VGpr1qhd6ylo1_500,48315,1 2786,FRAMEQA44346,cat,what sat watching the man put food into plate?,tumblr_npy4c6ERuh1uv0y2ro1_250,13331,0 2787,FRAMEQA29913,white,what is the color of the tee?,tumblr_n8ydzfbYwt1t7iwv2o1_400,77020,2 2788,FRAMEQA39994,black,what is the color of the men?,tumblr_ndywttSMPx1tsspsco6_500,44970,2 2789,FRAMEQA821,five,"how many young men are together , with two holding glass bottles with colored liquid?",tumblr_naap6eJLbo1t2bkpqo1_500,93485,1 2790,FRAMEQA34057,two,how many people are fighting in the dark room?,tumblr_nkhbeuZhcR1u8dfc7o1_400,96835,1 2791,FRAMEQA3826,cat,what walks around the corner and gets scared by a person?,tumblr_ne35uinLzV1tdjuqvo1_500,49418,0 2792,FRAMEQA24301,truck,what is sliding down the road covered in snow?,tumblr_nhklv0Td991reseiyo1_1280,89497,0 2793,FRAMEQA20867,hat,what is the girl taking off?,tumblr_nk90851bF31rreccuo1_500,99821,0 2794,FRAMEQA24635,blue,what is the color of the trunks?,tumblr_nr1y86kZN91uzd4cyo1_400,55543,2 2795,FRAMEQA50895,five,how many men in business suits stand in a circle and dance while holding microphones?,tumblr_n8uwnaDVr21tqwcufo1_500,99782,1 2796,FRAMEQA8806,horse,what is the woman riding through a prairie?,tumblr_naklo5nlUu1trttyqo1_400,96853,0 2797,FRAMEQA50904,cigar,what is the woman given?,tumblr_nqx9eiAV6R1tfs6x6o1_250,67714,0 2798,FRAMEQA25085,guitar,"what is the rock star , holding , jumps in the air and then moves to the back of stage?",tumblr_n5kowxbf2n1t2s1n6o1_500,72346,0 2799,FRAMEQA46751,kitten,what is playing with another cats wagging tail?,tumblr_n9abseuY0C1slj978o1_400,70847,0 2800,FRAMEQA2479,white,what is the color of the sheets?,tumblr_nh81xsJ7O01qhqng8o1_500,89023,2 2801,FRAMEQA27722,band,what plays their instruments together?,tumblr_nnymrk5szy1rjb18uo1_400,60695,0 2802,FRAMEQA15395,house,where are the man and a woman kissing?,tumblr_nrau5m8NVn1uzkmfso1_400,59543,3 2803,FRAMEQA14549,black,what is the color of the shorts?,tumblr_na3ertI5uM1tv46ebo1_400,7481,2 2804,FRAMEQA3848,white,what is the color of the pants?,tumblr_nafziwG2uz1tvfoj7o1_400,17593,2 2805,FRAMEQA16083,car,what fell off the dirt track?,tumblr_nl126a6rbk1unyhx2o1_400,79257,0 2806,FRAMEQA46860,red,what is the color of the guy?,tumblr_n9jmetkIAR1r3tyyjo1_250,50898,2 2807,FRAMEQA9869,three,how many boys are doing stupid things in a store?,tumblr_najmw24iuw1qlo2n6o1_400,20067,1 2808,FRAMEQA8211,black,what is the color of the hair?,tumblr_nd4mmvShmv1rf9buho1_500,62708,2 2809,FRAMEQA41695,transportation,what are two man riding and eating?,tumblr_nbtlrnLJyT1t1szv2o1_500,70108,0 2810,FRAMEQA14282,two,how many man are signing in the club?,tumblr_n9h3b7VMJO1spgwbno1_400,78896,1 2811,FRAMEQA9561,one,how many eye is the man wearing a knit cap and winking?,tumblr_nf0wufzoeS1tjiwz9o1_400,33273,1 2812,FRAMEQA37464,yellow,what is the color of the car?,tumblr_ndelr27Acc1u0b1c1o1_400,46359,2 2813,FRAMEQA39625,black,what is the color of the outfit?,tumblr_nk4df7nAnU1txithmo1_500,60229,2 2814,FRAMEQA2610,white,what is the color of the pants?,tumblr_nc56qahgCd1tfeeomo1_400,52912,2 2815,FRAMEQA23670,white,what is the color of the top?,tumblr_ne5vojKDQN1qd1gq2o1_400,28256,2 2816,FRAMEQA28529,dog,what is sleeping near the door?,tumblr_nqqe7tTVgT1ssgyoro1_250,10404,0 2817,FRAMEQA40207,brown,what is the color of the hair?,tumblr_nkn7gxUg5r1unhekuo1_400,59805,2 2818,FRAMEQA40962,two,how many boys are riding scooters on the road?,tumblr_nbpvtttnNx1redfc8o1_500,90884,1 2819,FRAMEQA12684,black,what is the color of the woman?,tumblr_ndrmssNqHz1qi7zngo1_400,41180,2 2820,FRAMEQA492,two,how many men are fighting in the wrestling ring?,tumblr_noqtqqd13G1sqh42jo1_400,61055,1 2821,FRAMEQA25420,two,how many young women are walking down the hallway?,tumblr_nfhv6kFXNm1ql0sfgo1_500,55824,1 2822,FRAMEQA30409,green,what is the color of the hood?,tumblr_net301HxTP1s6dwvho1_400,28187,2 2823,FRAMEQA25927,bird,what lays an egg while riding a vacuum?,tumblr_nak34sUK131slj978o1_400,50795,0 2824,FRAMEQA6771,shampoo,what does the woman rinse out of her hair?,tumblr_nqzeryQ2Mb1u6zuaro1_250,8740,0 2825,FRAMEQA42684,car,what backs up into the stack of tires?,tumblr_nfxlr1iOlx1tx8mn0o1_400,55730,0 2826,FRAMEQA23051,two,how many men on stage are singing into microphones?,tumblr_njabelknbz1qcedqco2_500,93822,1 2827,FRAMEQA6520,cat,what rolls around on the top of a brown cabinet?,tumblr_niv7ivzNmF1u5d5ryo1_400,1080,0 2828,FRAMEQA14123,black,what is the color of the guy?,tumblr_nd496wzB9v1rrjxv9o1_250,13929,2 2829,FRAMEQA44283,two,how many men are joking and laughing with each other?,tumblr_nel8hyd16P1u1bpwwo1_500,87119,1 2830,FRAMEQA22708,green,what is the color of the shorts?,tumblr_nco7huA9Kl1tqcnjko1_250,767,2 2831,FRAMEQA50566,black,what is the color of the hair?,tumblr_noz1mwmySX1uwbv5so1_400,73386,2 2832,FRAMEQA39853,studio,where is the guy singing a song?,tumblr_nhf1vh9e1T1rvnnwfo1_500,60795,3 2833,FRAMEQA26720,black,what is the color of the jacket?,tumblr_n91v0cmZja1qfees0o1_400,78689,2 2834,FRAMEQA11365,two,how many people are laughing and waving their hands around?,tumblr_nazb3hJkDh1rf0qrxo1_400,59669,1 2835,FRAMEQA12236,two,how many men in a car and they are dancing around?,tumblr_njy7qk5Iqv1rr6d5go1_400,62367,1 2836,FRAMEQA34746,caps,what are the group of girls flicking with their fingers?,tumblr_nafngzqDRD1teqt83o1_250,22609,0 2837,FRAMEQA42117,iguana,what does the cat smell tail?,tumblr_neygedcDOt1tkhxdko1_400,46613,0 2838,FRAMEQA29150,bank,what is the cyclist hitting before flying into water?,tumblr_n8ylpyKEtW1tagn6ao1_400,91881,0 2839,FRAMEQA23489,glasses,what is the handsome young man removed?,tumblr_nitdtkGfuf1slj978o1_250,10079,0 2840,FRAMEQA23124,shirt,what are the few men running in a forest and one of them is balling up there?,tumblr_nipa1eGIfM1qhzqk1o1_500,86077,0 2841,FRAMEQA12254,two,how many young men are skateboarding along the path?,tumblr_nbfozbb01U1tv0ziio1_400,31216,1 2842,FRAMEQA37921,car,what is speeding down the road at night?,tumblr_np8fpolVPv1uvid27o1_1280,65265,0 2843,FRAMEQA7882,black,what is the color of the sweatshirt?,tumblr_nhkvtw3BHU1rdixa9o1_400,32551,2 2844,FRAMEQA23652,brown,what is the color of the dog?,tumblr_nhy3t8q7sF1sbjgb9o1_500,73834,2 2845,FRAMEQA2190,box,what does the muscled man with a bare chest receive by a pool?,tumblr_nklj8pQZTT1rxcyx0o1_250,2632,0 2846,FRAMEQA12140,one,how many makes are turn with the ball?,tumblr_nb0l1eo8tj1tjcqx1o1_500,99747,1 2847,FRAMEQA4615,white,what is the color of the flags?,tumblr_nkq03zqHC61un0bvgo1_400,87394,2 2848,FRAMEQA17037,black,what is the color of the man?,tumblr_nkoiw6PN6o1uprddoo1_500,73447,2 2849,FRAMEQA36024,three,how many men relax on couch while two smoke cigarettes?,tumblr_nq7k6pBzzN1qm466ao1_500,24484,1 2850,FRAMEQA11223,two,how many women does there 's holding microphones walking on a stage?,tumblr_nfryd89f6l1qec31no1_400,5317,1 2851,FRAMEQA25879,white,what is the color of the shirt?,tumblr_n9ag3iabTq1ti0984o1_250,9601,2 2852,FRAMEQA47239,floor,where is the white girl doing break dance?,tumblr_nomairinYw1uv1t6zo1_500,94679,3 2853,FRAMEQA42730,hook,what is the man in black rubbing?,tumblr_njupvneEJG1unubnvo1_250,39798,0 2854,FRAMEQA12343,toy,what is the cat riding and then it flips over and he falls off?,tumblr_nq60huObBd1tk2ngvo1_400,15603,0 2855,FRAMEQA28223,gym,where is the guy with black shirt screaming?,tumblr_nfks7qjG1m1ts3zgzo1_400,87058,3 2856,FRAMEQA14495,car,where is the man shaking and riding?,tumblr_nbwqodrOjf1tlg9spo1_400,59289,3 2857,FRAMEQA52393,two,how many man are taking off their dark capes to show their body?,tumblr_nmz3n9aYMe1rxmp17o1_500,97109,1 2858,FRAMEQA40075,street,where is two guys fighting while at a guy its sparks fly from his face?,tumblr_ni1p5r1Cso1rbfulyo1_500,83657,3 2859,FRAMEQA42190,skateboard,what is the boy riding down a hill and around a corner?,tumblr_ngsnyihBqf1soz0p7o1_400,57164,0 2860,FRAMEQA19466,vehicle,what is careening down the snow covered mountain?,tumblr_ndpf97AVbq1u1dqrlo1_250,31636,0 2861,FRAMEQA52018,brown,what is the color of the hair?,tumblr_nr8fjcJhBa1uz1tgjo1_250,8222,2 2862,FRAMEQA16769,gray,what is the color of the shirt?,tumblr_npl3rsZ5rC1ux8xe0o1_400,53768,2 2863,FRAMEQA19146,five,how many buildings are shown close up with more buildings behind and a gray sky?,tumblr_nds0nftICq1tqs077o1_500,86723,1 2864,FRAMEQA14272,white,what is the color of the shirt?,tumblr_neh6ut4xxG1tiirhlo1_400,64639,2 2865,FRAMEQA5015,horse,what is walking through automatic doors into a building?,tumblr_ndg6m6C0nY1tdmffyo1_400,86974,0 2866,FRAMEQA18653,gum,what is the girl with a flowered shirt chewing?,tumblr_nfxzk6xDVz1qm2e6bo1_400,13302,0 2867,FRAMEQA29406,car,what is speeding fast down the road?,tumblr_ne1kuie2DW1tdjuqvo1_400,2600,0 2868,FRAMEQA16402,black,what is the color of the shirt?,tumblr_ndy7kwbeei1tlhv9no1_500,99446,2 2869,FRAMEQA10963,squirrel,what jumps on the cat and then the cat slaps at another cat?,tumblr_ncko1cgtVl1rwkjivo1_400,45420,0 2870,FRAMEQA48092,blue,what is the color of the girl?,tumblr_ni3fk61acW1tly55no2_400,96672,2 2871,FRAMEQA41809,scenery,what is green when traveling under the bridge?,tumblr_n9ms6r9wt71tis8iio1_400,4457,0 2872,FRAMEQA12041,snake,what is removing itself from a shell?,tumblr_n8u37yY8T21s3att3o1_400,40003,0 2873,FRAMEQA26039,brown,what is the color of the clothing?,tumblr_nkx7m7Uxtt1un04u9o1_400,19378,2 2874,FRAMEQA34091,black,what is the color of the boy?,tumblr_n8vpy6hFXB1soz0p7o1_400,78953,2 2875,FRAMEQA31049,cat,what is the dog chasing onto a board that is lying on the side of the pool?,tumblr_n2sx1v7vCB1r2y8uzo1_400,10316,0 2876,FRAMEQA12516,two,how many men are looking out the glass window at rain?,tumblr_nk64ns1uhs1u7382xo1_500,77564,1 2877,FRAMEQA10757,goat,what is eating from the spoon that someone gives to it?,tumblr_nhb7pgWlIn1slj978o1_500,76483,0 2878,FRAMEQA30287,room,where is the man dancing?,tumblr_nbjk03Dkr51thx52wo1_400,68974,3 2879,FRAMEQA46108,one,how many guy turns around?,tumblr_nhlu54rL2M1tragfyo1_1280,55861,1 2880,FRAMEQA26681,clothing,what are two young people kissing and removing?,tumblr_nobecu8wyv1s5cww5o1_400,63193,0 2881,FRAMEQA14564,black,what is the color of the shirt?,tumblr_n9pbjfB81W1twvnifo1_250,46887,2 2882,FRAMEQA51429,two,how many girls are walking onto the stage slowly?,tumblr_njzu0gm7Tt1u9be15o1_500,41484,1 2883,FRAMEQA11528,playing,what is celebrating on the stage?,tumblr_nr9lyoOfEj1rjxehgo1_540,42143,0 2884,FRAMEQA34132,car,what is getting back on track?,tumblr_n9066hvJ6R1tx8mn0o1_400,76810,0 2885,FRAMEQA39524,drink,what is the person moving in front of a skull?,tumblr_n9gvzkuSii1tgn0uro1_500,24503,0 2886,FRAMEQA13272,ball,what does the boy kick at another boy 's face?,tumblr_nkquyuZT3T1t382eqo1_500,72560,0 2887,FRAMEQA29660,wheelchair,where does the man imitate a man?,tumblr_nd1izlG0yA1s5p0j3o1_250,40740,3 2888,FRAMEQA33943,purple,what is the color of the hair?,tumblr_nhmof9AmBa1qmsoz0o1_400,34179,2 2889,FRAMEQA52981,car,where does 's two people and one is driving around a curve?,tumblr_nhxsiqiqON1u7lcb4o1_500,77450,3 2890,FRAMEQA21772,blue,what is the color of the shirt?,tumblr_nb6h8wHH8F1sm7km1o1_250,11277,2 2891,FRAMEQA31404,cat,what is playing with the kitchen bin?,tumblr_nhr64ytyfc1u7wiuzo1_400,73336,0 2892,FRAMEQA15969,black,what is the color of the pants?,tumblr_nkhshojsYV1u2rt2no1_250,6431,2 2893,FRAMEQA50729,two,how many girls are laughing and then hug each other?,tumblr_ndc4yd4wi41thz97ro1_400,30933,1 2894,FRAMEQA12492,black,what is the color of the man?,tumblr_no609nDQaJ1ut9t2yo1_500,59971,2 2895,FRAMEQA5076,black,what is the color of the cat?,tumblr_ner3v7FbbI1rgchc8o1_500,72762,2 2896,FRAMEQA48834,black,what is the color of the coat?,tumblr_n9it4hQnrt1sl5c6po1_250,24428,2 2897,FRAMEQA24031,two,how many young men speak to each other while standing close together?,tumblr_neycf1b1Y81s81a83o1_500,43536,1 2898,FRAMEQA4327,car,what is on the race track and is driving forward?,tumblr_n907c1PcRr1sncaa3o1_400,78070,0 2899,FRAMEQA9537,black,what is the color of the hair?,tumblr_neu62dEFNe1trp7kao1_400,80015,2 2900,FRAMEQA39845,black,what is the color of the shirt?,tumblr_nbchtjXGlv1qchnreo1_400,86899,2 2901,FRAMEQA21275,two,how many young girls with black hair are kissing and posing?,tumblr_nappfviAuS1tfuo7co1_400,31319,1 2902,FRAMEQA25079,kitten,what is yawning as it lays between two white sheets?,tumblr_nqaqp0wsgy1tpg4boo1_400,74024,0 2903,FRAMEQA46210,scooter,what is the child falling off?,tumblr_ne236gfB5I1rrxy7do1_500,95119,0 2904,FRAMEQA20746,performer,what is using multiple drums?,tumblr_nf8rs94sSj1tcot63o1_250,13953,0 2905,FRAMEQA4512,brown,what is the color of the hair?,tumblr_njy5lh8wY21u1m2sso1_500,76227,2 2906,FRAMEQA19246,black,what is the color of the jacket?,tumblr_ng8yynWpbN1u5tr2io1_250,84456,2 2907,FRAMEQA36332,shirt,what is the woman singing and wearing?,tumblr_net6ntCXzY1smkpc2o1_400,18767,0 2908,FRAMEQA52067,two,how many young men is sitting in a chair are watching another young man approach them with his hands over his head?,tumblr_nkzhrtN0fn1rif4nho1_400,22853,1 2909,FRAMEQA20099,guitar,what does the young man sing and plays?,tumblr_no5axsMNcC1s45pwko1_540,96249,0 2910,FRAMEQA26331,purple,what is the color of the skirts?,tumblr_naxxhzcV1v1r7kne1o1_400,91556,2 2911,FRAMEQA37520,black,what is the color of the woman?,tumblr_nauohdXxUf1r3qv9to1_400,96944,2 2912,FRAMEQA42020,cheese,what does the man put on a cat?,tumblr_nrae7mMdrN1ua4mf8o1_400,76640,0 2913,FRAMEQA17353,black,what is the color of the men?,tumblr_ndgdjmRq281tk9m4mo1_400,30918,2 2914,FRAMEQA8310,black,what is the color of the hat?,tumblr_nfxia62ggu1sfcnmao1_400,40019,2 2915,FRAMEQA11674,car,what loses control and skids through a turn?,tumblr_nrcentF2yy1unyhx2o1_400,76890,0 2916,FRAMEQA3785,gray,what is the color of the jacket?,tumblr_negdrj3DSk1sggdd3o1_500,95494,2 2917,FRAMEQA28303,car,what is running very fast in the track?,tumblr_nbo3syb9wg1rhy09eo1_500,98035,0 2918,FRAMEQA42767,microphone,what is the woman holding and talking as a man approaches her smiling?,tumblr_noqt1xz8xT1tfrbpqo1_400,59556,0 2919,FRAMEQA28770,two,how many people in lab coats are hugging each other excitedly?,tumblr_npr040dxJ71ri4vooo1_500,93627,1 2920,FRAMEQA39446,boat,where does an injured man watch a gun be shot into the air?,tumblr_nhe1zrDFSF1u73el8o1_250,84657,3 2921,FRAMEQA15078,puppy,what got wet and his owner is blow drying him?,tumblr_nggwvt9aWm1t7an45o1_500,92691,0 2922,FRAMEQA27163,hat,what is the young woman a blue jacket and is walking through an office?,tumblr_nklvmbxVSC1qeurwuo1_250,53608,0 2923,FRAMEQA15563,one,how many woman is wearing red is hugging another woman?,tumblr_nrjimhejuj1uawws4o1_250,53230,1 2924,FRAMEQA39838,cake,what is the person presenting with candles?,tumblr_nctnnzxMkJ1sdpy9wo1_400,21723,0 2925,FRAMEQA4736,chair,where is the person sitting down and swaying their body?,tumblr_nrglqlxxfe1tpmv5yo1_400,57671,3 2926,FRAMEQA41842,ball,what does the soccer player kick to another player?,tumblr_n9i8lnSiXR1rt0zdlo1_500,80922,0 2927,FRAMEQA48445,instruments,"what are the group of people singing , dancing and playing?",tumblr_nl1dalnS1E1tm0nkno1_500,58413,0 2928,FRAMEQA15492,three,how many girls are dancing with their hair flowing in a breeze?,tumblr_nptbdl1fVs1tw4vtzo1_400,50182,1 2929,FRAMEQA51766,black,what is the color of the t-shirt?,tumblr_na0lvzNzJJ1s7vtgpo1_400,1745,2 2930,FRAMEQA31792,car,what is this driving through a narrow city street?,tumblr_no37v6clUi1qzho3ao1_400,94742,0 2931,FRAMEQA12959,stick,what does the man place into his mouth?,tumblr_ncdisr8Ig21tmf1dho1_250,44664,0 2932,FRAMEQA42952,cars,what is running in the wet street?,tumblr_nnw2qphCJA1uuh2j1o1_500,67719,0 2933,FRAMEQA18091,tie,what is the man fixing in front of the other man?,tumblr_n9fwbfEVPD1qaltrro1_500,95976,0 2934,FRAMEQA19001,boxes,what is the man using?,tumblr_nc12xtUG5s1tkeyq7o1_400,50710,0 2935,FRAMEQA39350,leash,what is the cat using?,tumblr_njoau5H0HV1s1ukk9o1_400,81129,0 2936,FRAMEQA10892,dog,what is sad in the car?,tumblr_noejltSfgA1tpg4boo1_400,17989,0 2937,FRAMEQA45953,two,how many men are riding in the car while one looks ahead?,tumblr_nmeplkwIog1ss8ekqo2_540,95474,1 2938,FRAMEQA24236,red,what is the color of the eyes?,tumblr_n99oknHBnr1r8wa1po1_500,68077,2 2939,FRAMEQA7569,dog,what is getting into bed and puts his blanket on him?,tumblr_nbxgairu4F1slwrsuo1_400,99415,0 2940,FRAMEQA48773,three,how many girls stick their tongues out through their fingers?,tumblr_namuwpKydj1s5fsr0o1_250,11761,1 2941,FRAMEQA46511,two,how many delinquents are riding in the car?,tumblr_nkr55pkjAU1uot1e7o1_400,64614,1 2942,FRAMEQA20495,two,how many dancers perform the sensual dance under spotlights?,tumblr_nb6684P6Hv1tkyzcyo1_250,81420,1 2943,FRAMEQA33150,cat,what jumps and pushes pushed the door shut and orange cat falls fell?,tumblr_njouy2MkRI1unyeoio1_400,20303,0 2944,FRAMEQA25148,black,what is the color of the car?,tumblr_nf87a1ENfb1u25ovvo1_400,63565,2 2945,FRAMEQA7680,white,what is the color of the man?,tumblr_njss7pkaUq1unlazfo1_400,19591,2 2946,FRAMEQA14881,bouquet,where does the girl smell the flowers?,tumblr_ncp4d5tmIX1rd7kgvo1_500,37853,3 2947,FRAMEQA3256,two,how many guys are dancing in the stage of music?,tumblr_ngprdolIp31u4xco9o1_400,44431,1 2948,FRAMEQA6468,bread,what is the blond hair man eating with his hand?,tumblr_ndbozx0BfJ1r0b9nxo1_400,28096,0 2949,FRAMEQA30518,four,how many men dressed in super hero costumes pose?,tumblr_ne66d4ll0f1tlxce2o1_400,53791,1 2950,FRAMEQA9478,brown,what is the color of the hair?,tumblr_nel3rnwdPj1qcyvxso1_400,21055,2 2951,FRAMEQA52963,moth,what is flying in the small class enclosure?,tumblr_nk90fqhAgg1u1k55co1_500,75410,0 2952,FRAMEQA21038,three,how many young men are seated in white chairs?,tumblr_n9art5oaA51r4s9t4o1_250,35466,1 2953,FRAMEQA30194,gym,where does the man do gymnastics tricks?,tumblr_nd24xaX8d11qkb1azo1_250,3172,3 2954,FRAMEQA22671,sleeve,"where is the man moving his arms up and down , but only one arm is?",tumblr_nb4xgr1uC71rblf33o1_500,89609,3 2955,FRAMEQA49484,driver,what loses control of his bike?,tumblr_ne4qrqXl5N1tx8mn0o1_400,52742,0 2956,FRAMEQA21541,three,how many men sit on the couch and hold microphones?,tumblr_ng0nn0IZ1X1rhq4gso1_250,43749,1 2957,FRAMEQA42065,red,what is the color of the hair?,tumblr_ndg1bwVKCx1rjj4bjo1_400,31750,2 2958,FRAMEQA15443,cigarette,what is the man driving and smoking?,tumblr_nc6au1WajV1rw2wd7o1_500,100442,0 2959,FRAMEQA38875,black,what is the color of the stares?,tumblr_n9hkn9QARC1swas2to1_250,8686,2 2960,FRAMEQA12568,car,what is driving down the track?,tumblr_ng1de5pymv1tx8mn0o1_400,55734,0 2961,FRAMEQA16689,horse,what is prancing in the courtyard?,tumblr_mgo1kl7MLM1qe2thio1_500,94323,0 2962,FRAMEQA22704,jacket,what is the young man yanking off while covering his eyes with his hat?,tumblr_nhbrrg8gc01u4832po2_500,8675,0 2963,FRAMEQA37498,bar,where is the guy beating another one?,tumblr_nauh2woNK61tj7htno1_250,3688,3 2964,FRAMEQA15640,ball,what is the man shooting at something?,tumblr_ndl8pvG3At1sklh5yo1_500,15227,0 2965,FRAMEQA52630,gun,what does the man put a gun on the ground and shoots at him?,tumblr_ncvhq250Md1rt1dljo1_400,28503,0 2966,FRAMEQA43247,black,what is the color of the jacket?,tumblr_nh10qcQznP1rspaggo1_400,35343,2 2967,FRAMEQA31498,black,what is the color of the woman?,tumblr_nhb5szHqtc1qd18pzo1_250,8201,2 2968,FRAMEQA16301,rifles,what is the person handed and he is throwing them out of a window?,tumblr_n96u6soS9v1tw0ucfo1_400,26456,0 2969,FRAMEQA9239,black,what is the color of the hair?,tumblr_n9su71dIbK1sebl0go1_500,91707,2 2970,FRAMEQA42264,lenses,what did the person rub if their glasses?,tumblr_nf1ml2SDrL1tmaii4o1_250,10057,0 2971,FRAMEQA47524,two,how many girls are dancing and giving the peace sign?,tumblr_nd4s80baYg1s5y3pfo1_400,56409,1 2972,FRAMEQA30541,two,how many men sat down on chairs talking to each other?,tumblr_nk55jsBaYj1u0dfk0o1_400,61440,1 2973,FRAMEQA20213,two,how many men sing and dance on stage?,tumblr_nd5rycDrcR1tf7kp3o1_500,84784,1 2974,FRAMEQA48922,building,"where does the guy dance , the girl watches him?",tumblr_ne67exaejd1sjzx2go1_400,20825,3 2975,FRAMEQA25737,two,how many men are talking in the car?,tumblr_n9y8wqI6Xn1qlzevso1_500,98801,1 2976,FRAMEQA6167,store,where is the man smiling and looking down while?,tumblr_ncd4nhEpYN1rkm6bqo1_500,68959,3 2977,FRAMEQA19127,black,what is the color of the jacket?,tumblr_n8tavjHiIF1rulogqo1_500,85229,2 2978,FRAMEQA19767,boat,what crosses the lake quickly?,tumblr_npf5kbV03n1u1ogm0o1_400,32114,0 2979,FRAMEQA50126,brown,what is the color of the bag?,tumblr_nery6zlDcp1s5p0j3o1_400,5676,2 2980,FRAMEQA9409,black,what is the color of the shirt?,tumblr_nkk4f2lxcb1u0govto1_250,5199,2 2981,FRAMEQA49219,dog,what jumps onto the man and then leaps up to a toy hanging from a tree?,tumblr_ni3ew49dux1tjhld9o1_400,66199,0 2982,FRAMEQA45702,two,how many men run to each other and hug?,tumblr_npo5gyxOv11u0x5aho1_250,51566,1 2983,FRAMEQA41422,white,what is the color of the shirt?,tumblr_nhccm1k3hA1u5imt4o1_500,44161,2 2984,FRAMEQA30566,gray,what is the color of the man?,tumblr_nhzd9uYCbl1u6oo0lo1_400,62904,2 2985,FRAMEQA39502,red,what is the color of the robe?,tumblr_naohfoNYRf1rqio5ho1_400,60662,2 2986,FRAMEQA3790,stick,what is the woman in purple and white outfit throwing a long ribbon?,tumblr_ncr0uc8mHj1r10ojgo1_500,76403,0 2987,FRAMEQA20033,dog,what is playing with balls on a pool table?,tumblr_nivi02t5ys1tk2ibto1_250,23127,0 2988,FRAMEQA10257,butt,what is the woman waving on a tombstone?,tumblr_nfic3pugLo1td28fxo1_400,71858,0 2989,FRAMEQA35944,red,what is the color of the hair?,tumblr_ne2nhl9fVr1u2ppnho1_400,33569,2 2990,FRAMEQA12629,two,how many men are faking that they 're confronting?,tumblr_ndw164NVKb1slj978o1_400,42305,1 2991,FRAMEQA28333,yellow,what is the color of the hair?,tumblr_no7ms6bQkF1qf738lo1_500,47662,2 2992,FRAMEQA4966,mirror,where is the woman wearing a bra is smoking a cigarette and looking?,tumblr_np4qeqa4lO1rop7bco1_500,98407,3 2993,FRAMEQA1199,blue,what is the color of the t-shirt?,tumblr_nav2g3vCTF1tq2eeqo1_250,6666,2 2994,FRAMEQA24246,cars,what are racing on the road?,tumblr_nbatooeAde1tx8mn0o1_400,52734,0 2995,FRAMEQA18890,two,how many men in white shirts make faces?,tumblr_nf24phb8BO1thpehoo1_400,47579,1 2996,FRAMEQA40348,black,what is the color of the hair?,tumblr_njy6ugZvKl1rzkug6o2_400,29266,2 2997,FRAMEQA42496,two,how many girls with long dark hair are gesturing?,tumblr_nacr4yNfLD1tej38vo1_400,28544,1 2998,FRAMEQA45985,red,what is the color of the hat?,tumblr_nkp0k4W1RF1u63djdo1_250,53422,2 2999,FRAMEQA30674,almonds,what are animals eating given by a human?,tumblr_nr1otxgnPQ1rlmonbo1_250,13333,0 3000,FRAMEQA20684,room,where are two men having a conversation?,tumblr_n8u1myS5dT1tgh87to1_400,87168,3 3001,FRAMEQA4312,rabbit,what jumped on someone 's bed and moved very swiftly?,tumblr_nfndwo7hfa1t7an45o1_500,91769,0 3002,FRAMEQA889,cat,what is holding up its paw and looking around?,tumblr_nhomuemFfD1u684yco1_250,13612,0 3003,FRAMEQA22393,white,what is the color of the bunny?,tumblr_nc0sriD2CI1rcku3no1_250,24526,2 3004,FRAMEQA30402,two,how many men sit on the sofa enjoying a joke they hear?,tumblr_nda2qhxKfP1tn1i0no1_500,88868,1 3005,FRAMEQA4308,robot,what is shooting at another robot as a car flips over?,tumblr_n9jmetkIAR1r3tyyjo1_250,50898,0 3006,FRAMEQA4249,brown,what is the color of the hair?,tumblr_nfbdq1Bpfa1so39joo1_400,43468,2 3007,FRAMEQA44430,puppy,what is playing with half a lemon?,tumblr_nk98cz79at1tk2ngvo1_400,68986,0 3008,FRAMEQA11252,two,how many boys in hats are singing on stage?,tumblr_ngj7b6qsNq1u5xpiko1_r1_500,95392,1 3009,FRAMEQA39993,two,how many cute girls are taking pictures together and smiling?,tumblr_ncau65g1Vf1tcmvxuo1_500,89216,1 3010,FRAMEQA1166,dog,what attempts to pick up the ball from between a boy 's legs and accidentally bites him?,tumblr_ndzw33j6bu1th8rjso1_400,31035,0 3011,FRAMEQA5941,horse,what is the young woman training?,tumblr_n8z5gkpbGb1rwgxlqo1_500,74583,0 3012,FRAMEQA43121,black,what is the color of the backdrop?,tumblr_nqu42e7sF81s371wso1_500,83564,2 3013,FRAMEQA16414,white,what is the color of the hair?,tumblr_n9602ftWXN1qjjfngo1_500,92400,2 3014,FRAMEQA33354,horse,what is the girl with a green shirt riding?,tumblr_nkztrpIfva1qcaryto1_400,64171,0 3015,FRAMEQA27485,cat,what does the woman hold to her chest?,tumblr_nhf1orqAZx1qfi90vo1_400,30323,0 3016,FRAMEQA41550,track,what did the race car fell off?,tumblr_nl126a6rbk1unyhx2o1_400,79257,0 3017,FRAMEQA30522,ball,what is the man kicking behind his back?,tumblr_nopyj6DOCW1ryce90o1_250,6709,0 3018,FRAMEQA40561,fish,what is blow taken out of a bowl of water?,tumblr_n9i79qR88q1qkkmvxo1_250,2343,0 3019,FRAMEQA904,dog,what does the girl help out of a hole?,tumblr_newwf9wxYr1sdss0qo1_250,318,0 3020,FRAMEQA34522,white,what is the color of the car?,tumblr_nev5jcwSOk1u25ovvo1_400,63427,2 3021,FRAMEQA43487,bicycle,what is the young woman riding?,tumblr_nr2smr238Q1uxz2yto1_400,57188,0 3022,FRAMEQA42770,two,how many men are on the stage singing and dancing?,tumblr_n9rb0b8mi11qfrgvko1_r2_500,62588,1 3023,FRAMEQA44470,cat,what is moving his tail which is on his head?,tumblr_n8kiswJ7Ht1slb5kno1_500,71356,0 3024,FRAMEQA2920,fish,what swims over the octopus and the octopus throws its tentacles up?,tumblr_na3k3l3Yn01sk96t7o1_500,38964,0 3025,FRAMEQA39426,black,what is the color of the girl?,tumblr_nfdydadEF41u34yteo1_400,15814,2 3026,FRAMEQA39189,two,how many boys are talking in the bedroom?,tumblr_nqzsp7tuTy1uuiij8o1_400,51083,1 3027,FRAMEQA49085,cat,what is starring at something?,tumblr_nfscrpUrfv1u4v3ypo1_250,55669,0 3028,FRAMEQA19192,white,what is the color of the shirt?,tumblr_nafgig9MwE1th4tggo1_400,83608,2 3029,FRAMEQA46372,black,what is the color of the shirt?,tumblr_nfks7qjG1m1ts3zgzo1_400,87058,2 3030,FRAMEQA8422,red,what is the color of the hat?,tumblr_nrglqlxxfe1tpmv5yo1_400,57671,2 3031,FRAMEQA7181,two,how many boys hold up their hands and two fingers?,tumblr_nazqwgPDxU1tiv0r8o1_500,63749,1 3032,FRAMEQA35011,black,what is the color of the clothes?,tumblr_njvix3hzTK1u3wykjo1_250,13812,2 3033,FRAMEQA37252,two,how many men are sitting at the table?,tumblr_ngeiwy1VlF1t7gqeso1_500,76492,1 3034,FRAMEQA46599,white,what is the color of the door?,tumblr_nqqe7tTVgT1ssgyoro1_250,10404,2 3035,FRAMEQA38619,puppy,what is the woman holding?,tumblr_nbuxw8BkXX1tlwdp4o1_400,65656,0 3036,FRAMEQA9191,tank,what is the man with funny short hair showing to another man?,tumblr_nhihfqgnjK1u71wuao1_400,58907,0 3037,FRAMEQA48421,three,how many tree frogs sit on rocks?,tumblr_nksdyhXtpu1rhl4f0o1_250,22832,1 3038,FRAMEQA30671,three,how many guys are carrying the fourth guy through purple paper?,tumblr_nabwvrGgUt1rmv3nuo1_500,70098,1 3039,FRAMEQA40811,three,how many men are sitting?,tumblr_ndur53HK751tlqrclo1_250,41543,1 3040,FRAMEQA13658,three,how many women with hats sit and eat together?,tumblr_nkp552aW7o1sksdxao3_400,92179,1 3041,FRAMEQA47033,hat,what is woman adjusting and pursing her lips?,tumblr_npjbm8zizK1txgyxzo1_500,83843,0 3042,FRAMEQA7818,window,where is the dog hanging and a man turns his head and reacts to the dog?,tumblr_n9h68813s31txehx9o1_500,94877,3 3043,FRAMEQA49118,pot,what is the woman wearing a tie and stirring?,tumblr_np9wd6T7fT1tkxy83o1_250,3901,0 3044,FRAMEQA45167,dog,what gives the high five to a person who is lying on a couch?,tumblr_nhymlqyEFX1s61ex7o1_250,77866,0 3045,FRAMEQA52445,cigarette,what is the man smoking looking at something?,tumblr_nbbnq50DwK1sepp2wo1_400,42853,0 3046,FRAMEQA47354,dog,what is the person holding and touching?,tumblr_ndr4iolbn41rmme2wo1_400,28978,0 3047,FRAMEQA36615,bracelet,what does the person put onto another person 's hand?,tumblr_njvitlXC2D1u7xqnso1_250,51903,0 3048,FRAMEQA43002,red,what is the color of the hair?,tumblr_nh33r6GpNQ1sm86hzo1_400,31915,2 3049,FRAMEQA23507,white,what is the color of the shirt?,tumblr_noikj9h4iM1uvdkzko1_400,10298,2 3050,FRAMEQA49984,black,what is the color of the hair?,tumblr_n9zlvzY5jO1sp3selo1_250,46937,2 3051,FRAMEQA42741,blue,what is the color of the shirt?,tumblr_nbepi1b71e1tiq0ddo1_250,15692,2 3052,FRAMEQA17792,horse,what gallops around in the dirt field?,tumblr_n8pqysKgXz1sy7yfqo1_400,64680,0 3053,FRAMEQA27410,two,how many men performs dance moves on a stage?,tumblr_n99vbo9pk71tf7kp3o1_500,75263,1 3054,FRAMEQA4434,glasses,what is the woman smoking a cigarette is lowering?,tumblr_n94xke8sQB1qgx9mzo1_500,79394,0 3055,FRAMEQA34524,white,what is the color of the car?,tumblr_ne1kuie2DW1tdjuqvo1_400,2600,2 3056,FRAMEQA5828,five,how many men are sitting holding carved melons?,tumblr_nel0tcd6HR1tvclvso1_400,27055,1 3057,FRAMEQA16669,knife,what does the man use?,tumblr_nr93ch6vDZ1us9058o1_250,6490,0 3058,FRAMEQA30825,black,what is the color of the trunks?,tumblr_nko1xmch5R1szlm39o1_500,56741,2 3059,FRAMEQA25376,white,what is the color of the hats?,tumblr_nqwmhysJ721ua5q7mo1_500,32856,2 3060,FRAMEQA30199,mouse,what is the young man using on his computer?,tumblr_ndhqqxOYj31toc5cao1_500,41185,0 3061,FRAMEQA30019,bottle,"what does the man on a stage throw to a second man , who then catches it?",tumblr_na6cjjaMGj1t6ksnpo1_500,92517,0 3062,FRAMEQA25388,hat,what is the man wearing with beads on it?,tumblr_nd2jess8rr1rxz4glo1_500,74988,0 3063,FRAMEQA8327,sun,what is the man trying but is in his face?,tumblr_nqr991zaOa1u6w3s2o1_250,36528,0 3064,FRAMEQA18074,guitar,what jumped jumps around the stage?,tumblr_njyuctzCGw1u8jz2vo1_400,44048,0 3065,FRAMEQA52409,seven,how many young men are wearing suits and posing for a photo?,tumblr_nojudwiLpl1qedx60o1_540,91615,1 3066,FRAMEQA4183,cat,what sits on top of a mans head?,tumblr_nqt86b7tD31rltsrco1_400,87329,0 3067,FRAMEQA24396,white,what is the color of the shirt?,tumblr_na2hqmICLQ1tsz0rqo1_1280,42172,2 3068,FRAMEQA52132,black,what is the color of the bra?,tumblr_nklvhuCJ821qd8xguo1_400,7816,2 3069,FRAMEQA32720,wire,what is the man twisting around his hands?,tumblr_n9okijMTqj1s8thapo1_r1_500,5420,0 3070,FRAMEQA9997,instruments,what are the group of musician jumping and playing?,tumblr_nhs9w0ves71rc6vmmo1_400,57075,0 3071,FRAMEQA38460,car,what is someone driving through a town?,tumblr_nfmv6zvVmc1u25ovvo1_400,63416,0 3072,FRAMEQA52185,two,how many women are looking at floating flower petals?,tumblr_ncf204gwSi1qjhpqlo2_500,50956,1 3073,FRAMEQA15764,dog,what is playing in the snow?,tumblr_njuegdc5bY1rm7vxeo1_400,4946,0 3074,FRAMEQA16179,exercise,what is the girl doing at the edge of the water?,tumblr_n9r53bp6Jm1ticeeeo1_400,77562,0 3075,FRAMEQA22221,brown,what is the color of the hair?,tumblr_nhrlcrqLFl1u7c3syo1_500,80637,2 3076,FRAMEQA5718,stairs,what is the man in a hat walking up holding a bottle of water?,tumblr_n914bjCRnC1tq63bwo1_250,17532,0 3077,FRAMEQA41455,white,what is the color of the shirt?,tumblr_naji9ftfcU1t6ksnpo1_500,71380,2 3078,FRAMEQA33595,two,how many girls are holding hands and walking down a hallway?,tumblr_nkemwuoZE91snw3iao1_250,82980,1 3079,FRAMEQA5959,room,where is the woman tap dancing?,tumblr_n94nt4bfr81tsrcx9o1_250,5579,3 3080,FRAMEQA11189,piano,what is the man playing next to a lamp?,tumblr_ndfl1xyQ891tzhdamo1_400,70563,0 3081,FRAMEQA10835,blue,what is the color of the shirt?,tumblr_nbo7owWIkv1twoe5do1_400,90649,2 3082,FRAMEQA4398,cigarette,what is the man wearing a mask on the top of his head lights and pulls out a gun?,tumblr_nduzc4QNa11tmn3zuo1_400,64006,0 3083,FRAMEQA11432,two,how many young women are standing and talking together?,tumblr_nbyei2DN1y1tm6n6po1_500,86735,1 3084,FRAMEQA36264,wand,"what is the boy holding , and he is turning around?",tumblr_nqx3qys4VS1u6psyao1_500,97313,0 3085,FRAMEQA22805,picture,what is the man signing with a white marker?,tumblr_ngqv0fIvLp1qd80wyo1_400,45758,0 3086,FRAMEQA52394,purse,what is the woman throwing into the air and catching it?,tumblr_nfggtzJj401rw4ndto1_400,447,0 3087,FRAMEQA16138,white,what is the color of the shoes?,tumblr_njtqv2WV6P1u0alpro1_500,56760,2 3088,FRAMEQA27752,guitars,what is the rock band jumping and playing?,tumblr_n9535qdmnf1tyyv4yo1_400,57859,0 3089,FRAMEQA11126,cat,what is hanging from the blanket unable to reach the floor?,tumblr_me6kztASh41rlgitoo1_500,62758,0 3090,FRAMEQA41462,black,what is the color of the eye?,tumblr_n9qhspZ5B21ti70d0o1_400,80407,2 3091,FRAMEQA7370,two,how many girls are looking at each other?,tumblr_nqsvfl5Pzp1uw1tf9o1_250,24221,1 3092,FRAMEQA9960,shirt,what is the man wearing and smiling and laughing?,tumblr_nepa4xWCUO1rzia65o1_250,2379,0 3093,FRAMEQA6265,stones,what is the young man skipping across the water?,tumblr_nko5j7T8JT1sn9nmoo1_400,36746,0 3094,FRAMEQA5694,white,what is the color of the cat?,tumblr_ndab1nCacB1rjh61io1_400,37279,2 3095,FRAMEQA12730,two,how many men are talking to each other whilst holding microphones?,tumblr_npycjy1sgd1tfeyjso1_400,35175,1 3096,FRAMEQA14386,two,how many people are dancing together while on a stage?,tumblr_na93v8P17F1rnq510o1_500,50534,1 3097,FRAMEQA4151,knife,what is the man flipping and attacking a person?,tumblr_ndfxdnLORb1rmy96xo1_500,97235,0 3098,FRAMEQA17481,red,what is the color of the shirt?,tumblr_n9o2c5bcu71ti2qwco1_400,91886,2 3099,FRAMEQA28655,two,how many wrestlers are fighting?,tumblr_noqtqqd13G1sqh42jo1_400,61055,1 3100,FRAMEQA20796,chair,where is the man shuffling papers?,tumblr_ngxfp5rbhJ1svp9edo1_1280,84696,3 3101,FRAMEQA23179,two,how many young men are dancing and singing?,tumblr_novlokWmWb1t6t8bgo1_540,93683,1 3102,FRAMEQA24634,one,how many guy is wearing glasses is talking to another one?,tumblr_new6rapUbt1tqrf5uo2_400,66256,1 3103,FRAMEQA23043,show,what are people watching on the waterfront?,tumblr_nauvryxIRR1rpvamzo1_250,1313,0 3104,FRAMEQA35977,car,what is driving down the race track?,tumblr_ncdvtc57Ux1tx8mn0o1_400,52693,0 3105,FRAMEQA33778,dress,what was the woman wearing?,tumblr_ngzs89AHSP1u1gaf4o1_500,98423,0 3106,FRAMEQA19597,room,where is the man talking?,tumblr_nconinasRR1s9gxsqo1_500,89274,3 3107,FRAMEQA10922,dog,what is grooming the kitten lying on the carpet?,tumblr_nhtqa26yvr1tjhld9o1_400,19224,0 3108,FRAMEQA44820,bag,what are two people standing and one of them is holding?,tumblr_nhh2bh2wBY1ra3tfmo1_500,89335,0 3109,FRAMEQA6828,black,what is the color of the jacket?,tumblr_n9yi9qpZL21sz8fueo1_250,11635,2 3110,FRAMEQA44223,cigarette,what is the girl smoking and trying to look sophisticated?,tumblr_ngkwncNAQg1u323uto1_500,80350,0 3111,FRAMEQA49631,cat,what does the cat attack shaped balloon?,tumblr_nbxf7950qG1tdjuqvo1_500,76474,0 3112,FRAMEQA13442,guitar,what does the woman play as a man behind her blows a horn?,tumblr_nab7byQv4u1sg2mbto1_400,61087,0 3113,FRAMEQA50395,two,how many men on a stage sing on microphones together?,tumblr_n9phc4iTZp1ro6r5ao1_400,82456,1 3114,FRAMEQA634,cars,what are passing by the bridge at night?,tumblr_nabjhc7Adk1tgqy75o1_500,83904,0 3115,FRAMEQA7939,car,what is burning rubber on the road?,tumblr_nagwqpek6t1sl4e5go1_400,96671,0 3116,FRAMEQA6039,dog,what is running and laying on the floor?,tumblr_ngzwadoN461slj978o1_400,48459,0 3117,FRAMEQA24036,goat,what is licking peanut butter off a spoon held by a human hand?,tumblr_nhb7pgWlIn1slj978o1_500,76483,0 3118,FRAMEQA4414,blue,what is the color of the coat?,tumblr_nin1vxOTbQ1s67qyco1_250,3498,2 3119,FRAMEQA16119,two,how many men sing into microphones while dancing on a stage?,tumblr_njzig0qT8k1qczfu6o1_1280,73159,1 3120,FRAMEQA48173,black,what is the color of the beard?,tumblr_nazxsdiBsV1twj93bo1_500,100680,2 3121,FRAMEQA49891,two,how many girls are dressed in bikinis and raising their right hands in the air for a high five?,tumblr_nodi2rLQXk1tselino1_400,25780,1 3122,FRAMEQA16090,blue,what is the color of the shirt?,tumblr_noejbnP6im1rryn4mo1_500,70287,2 3123,FRAMEQA26843,guitar,what is the man with a long hair playing?,tumblr_nb6zw8puNv1tj3ht2o1_500,70067,0 3124,FRAMEQA13009,two,how many men with microphones close to the mouth are dancing and hugging?,tumblr_nect19Qa771te83nuo1_250,19725,1 3125,FRAMEQA651,sunglasses,what is the man wearing and smiling while wearing a suit?,tumblr_n8x30kDQeu1qc21o3o1_500,50544,0 3126,FRAMEQA47029,sunglasses,what is the man hugging a woman with dark hair and wearing?,tumblr_nk71ejZbSL1s8hmnvo1_250,47367,0 3127,FRAMEQA15493,two,how many men does there 's driving in a car singing and shaking their heads?,tumblr_n8xhhpcZOi1ribqy3o1_1280,33927,1 3128,FRAMEQA10964,bear,what is rolling around in the snow?,tumblr_nk550nmZNP1u8uroco1_400,52678,0 3129,FRAMEQA33754,frog,what climbs up the plant then gets kicked in the face by another frog?,tumblr_na18cqVtG31sd26g0o1_500,53182,0 3130,FRAMEQA46386,red,what is the color of the top?,tumblr_nf22adJ0VT1qd0q05o1_400,67256,2 3131,FRAMEQA43638,black,what is the color of the guy?,tumblr_ng12ciNZC11qjpkhao1_250,6433,2 3132,FRAMEQA37219,black,what is the color of the clothing?,tumblr_ncfhy9iq4a1tj3r8so1_500,87985,2 3133,FRAMEQA1464,white,what is the color of the top?,tumblr_nfdgokPB5G1rgo5qmo1_500,25088,2 3134,FRAMEQA51090,stocking,what is being pulled up over the leg?,tumblr_nkux12i23M1tirdpvo1_400,96809,0 3135,FRAMEQA46999,black,what is the color of the suit?,tumblr_na7u2cDoHU1rtsaseo1_500,43247,2 3136,FRAMEQA29606,white,what is the color of the shirt?,tumblr_nbn5zbqcXl1sicdkvo1_250,8506,2 3137,FRAMEQA15732,cars,what are sliding and crashing on the race track?,tumblr_njtrbqjPLb1unyhx2o1_400,78277,0 3138,FRAMEQA30364,cat,what is inside the box while a bunny sits on top of it?,tumblr_npvj0dWS9A1tpg4boo1_400,27950,0 3139,FRAMEQA45770,white,what is the color of the cat?,tumblr_njnhlc2q8U1u9sozlo1_400,7455,2 3140,FRAMEQA22440,dog,what jumps up at someone?,tumblr_ncs6h9GZNT1rerh68o1_400,9178,0 3141,FRAMEQA7272,black,what is the color of the man?,tumblr_nnjwd9zoNn1upsi9qo1_400,66967,2 3142,FRAMEQA7429,yellow,what is the color of the car?,tumblr_nc9yko81WN1s71nvbo1_400,24090,2 3143,FRAMEQA18816,three,how many men are dancing and singing together into microphones?,tumblr_ndp1ysrClu1trkb77o1_500,97264,1 3144,FRAMEQA4793,two,how many people are winking at each other?,tumblr_nkqgvgtZfb1s35d3lo1_500,41805,1 3145,FRAMEQA32861,stick,what does the man lift?,tumblr_n9bv1dPta41s07ds4o1_1280,22798,0 3146,FRAMEQA46,two,how many girls are sitting really close to the boy in a car?,tumblr_ngns9l1MRx1tbjoeto1_400,66105,1 3147,FRAMEQA28107,red,what is the color of the hair?,tumblr_nr3gqdjyOS1tb8nb7o1_250,77771,2 3148,FRAMEQA25316,three,how many men are moving their legs while holding a rope?,tumblr_nofgplOU5S1sjsdi9o1_500,49462,1 3149,FRAMEQA23757,three,how many men are playing air guitar with grimace faces?,tumblr_nb89ryBmeP1rf6ax4o1_400,36254,1 3150,FRAMEQA19513,two,how many men are holding down the man in a colorful shirt and trying to stick something in his mouth with a foot?,tumblr_no3s4rbT7k1uv5902o1_400,65845,1 3151,FRAMEQA15978,car,what is overturning several times?,tumblr_nrah086BN91tx8mn0o1_400,91940,0 3152,FRAMEQA1197,black,what is the color of the woman?,tumblr_ncv2ubyfXj1tcd2tgo1_250,27602,2 3153,FRAMEQA863,car,what spins out and drives off drove?,tumblr_n8vnsgagJw1to3k6do1_400,70408,0 3154,FRAMEQA40941,two,how many young men are standing next to each other?,tumblr_n9lpsunVP61t1j1f4o1_250,10941,1 3155,FRAMEQA45989,balloon,what is moved near to the real cat that attacks it?,tumblr_nbxf7950qG1tdjuqvo1_500,76474,0 3156,FRAMEQA11753,shirts,what are two men ripping off in anger?,tumblr_nelh3nATly1tte9eno1_400,40152,0 3157,FRAMEQA24778,three,how many men is this holding microphones getting ready to sing?,tumblr_nbad3kmtlO1qbih2ho1_500,24377,1 3158,FRAMEQA22296,hallway,where are the bunch of people moving?,tumblr_n9ww61BUlL1sz8wuto1_1280,62547,3 3159,FRAMEQA6872,guitar,what does the guitar player move around on stage?,tumblr_ng9owiPitI1u4pbd2o1_500,89655,0 3160,FRAMEQA34786,one,how many car does there 's passing another one with sparks coming from the back of it?,tumblr_nr12heBDzF1siem3jo1_400,93803,1 3161,FRAMEQA33099,black,what is the color of the glasses?,tumblr_n8s8xouBrA1so0g1uo1_400,30455,2 3162,FRAMEQA36974,three,how many men are dancing around on the stage?,tumblr_n912asItBL1t5f5kyo1_250,2974,1 3163,FRAMEQA38410,cat,"what grooms its foot while laying on its side , stops , and its tongue remains stuck out?",tumblr_nfscrpUrfv1u4v3ypo1_250,55669,0 3164,FRAMEQA52581,scythe,what is silhouetted farmer spinning against a blue sky?,tumblr_noziupQsO11ut1d6co1_500,90118,0 3165,FRAMEQA50052,guitar,what is the young man playing?,tumblr_ngsvr4N2KC1u4pnh1o1_500,74688,0 3166,FRAMEQA35765,tie,what is the man loosening up?,tumblr_nd8zhukL0U1u0h3teo1_500,20065,0 3167,FRAMEQA51733,two,how many men is this image of kissing each other?,tumblr_nav9fkK9AI1ss8l8fo1_500,73150,1 3168,FRAMEQA44278,black,what is the color of the person?,tumblr_nfvmweoKSc1tldu19o1_500,83149,2 3169,FRAMEQA43309,brown,what is the color of the hair?,tumblr_nr2cdxmG9W1turx3wo1_250,14303,2 3170,FRAMEQA22094,bird,what walks up and gently pecks the cat 's head?,tumblr_n97k6nnj3K1tbjfazo1_400,34099,0 3171,FRAMEQA22804,black,what is the color of the man?,tumblr_nap6vvlmYV1rqs3gco1_400,44942,2 3172,FRAMEQA50941,creature,what is animated by filling it with air?,tumblr_nhdy8uJlce1rpfnrjo1_400,41932,0 3173,FRAMEQA37230,monkey,what is dancing and moving his hands in jungle?,tumblr_nd9es8cEtL1tc95klo1_400,77527,0 3174,FRAMEQA6254,three,how many girls are having fun at night?,tumblr_ncuo84ErSe1rixjzfo1_400,52680,1 3175,FRAMEQA40842,room,where is the woman holding wine dancing?,tumblr_npftchiLZC1tvkzc2o1_250,47140,3 3176,FRAMEQA39978,two,how many men are coming inside the building?,tumblr_nbbuocrieZ1s5t0x8o1_250,85591,1 3177,FRAMEQA33480,black,what is the color of the jacket?,tumblr_na6ss6zATK1tht2hyo1_250,51664,2 3178,FRAMEQA14194,airplanes,what are flying over the water?,tumblr_nrg7ha63Zf1sdbhp4o1_400,51214,0 3179,FRAMEQA32391,green,what is the color of the dress?,tumblr_nbksp3vGFL1s5c47lo1_250,12816,2 3180,FRAMEQA28833,drink,what does the man push off a table?,tumblr_nb4hqaqjfy1rwlucwo1_500,59918,0 3181,FRAMEQA20228,two,how many sumo wrestlers are having the match?,tumblr_nrkyzg1KPS1tinozao1_400,67090,1 3182,FRAMEQA39831,gray,what is the color of the rubs?,tumblr_neydqqcDtv1sayfpso1_250,71662,2 3183,FRAMEQA46853,black,what is the color of the jacket?,tumblr_na2b8qVQJy1tih0nao1_250,13159,2 3184,FRAMEQA29729,black,what is the color of the dress?,tumblr_ndc8atzdk41rkufmbo1_500,82325,2 3185,FRAMEQA27453,two,how many girls are talking to each other and smiling at each other?,tumblr_ng8huxJJg41qbzfhbo1_250,13231,1 3186,FRAMEQA10771,three,how many dogs is this image of a man and a woman walking?,tumblr_ngqiv4WRnr1s1pq0jo1_500,101300,1 3187,FRAMEQA22893,cat,what is attacking the paper coming out of a printer?,tumblr_npfup8IJsd1t95h1uo1_400,31768,0 3188,FRAMEQA17129,drink,what is the woman chugging?,tumblr_n8vicp8VBy1t4pld3o1_400,31607,0 3189,FRAMEQA50348,white,what is the color of the shirt?,tumblr_ncm9v4ci8y1tvha8to1_250,10664,2 3190,FRAMEQA31485,cat,what is the cute girl grabbing and kissing it?,tumblr_n9igzcnoug1r0p6epo1_400,29518,0 3191,FRAMEQA2590,white,what is the color of the shirt?,tumblr_na5ke1JX9b1tz48xjo1_500,42575,2 3192,FRAMEQA42986,dress,what is the woman wearing on stage?,tumblr_n9p314m7oa1twbspoo1_250,17154,0 3193,FRAMEQA439,cello,what does the musician violently play during a performance?,tumblr_ndrhdij2sp1tmnzbjo1_400,82149,0 3194,FRAMEQA49261,car,where is the girl singing a song popular?,tumblr_nqtjn9aMbk1qbvprao1_500,60192,3 3195,FRAMEQA1330,cat,what jumps into the box but fails?,tumblr_nhg54hiSG91tgetb4o1_250,50207,0 3196,FRAMEQA37164,glasses,what is the woman wearing and moving her hands?,tumblr_nklx070fBD1qan8eoo1_400,83313,0 3197,FRAMEQA28535,bird,"what rolls in the snow , and ends up on its back?",tumblr_n95xq1FqHa1s0ea0ao1_400,50632,0 3198,FRAMEQA13046,pup,what is laying on the floor?,tumblr_niu5dzNP7G1u62tooo1_400,31034,0 3199,FRAMEQA3633,box,what is dropping from the sky in front of a man?,tumblr_no47e8h5by1rvirsco1_500,59313,0 3200,FRAMEQA50397,white,what is the color of the shirt?,tumblr_ncfvwtaD6p1tvrhh5o1_400,66192,2 3201,FRAMEQA53024,white,what is the color of the clothing?,tumblr_nafjr4e15v1rdl60ao1_500,72562,2 3202,FRAMEQA51322,container,where is the cat stuck?,tumblr_no73v10L191uuefq3o1_250,11614,3 3203,FRAMEQA10072,four,how many people are talking to one other girl?,tumblr_napca8xCGy1tewcf7o1_400,28031,1 3204,FRAMEQA14626,two,"how many girls are holding each other , and one blows a kiss?",tumblr_npqo3gqPc91rtl9udo1_400,84980,1 3205,FRAMEQA43149,black,what is the color of the hat?,tumblr_nfxrngAe4S1rm7wvmo1_400,101414,2 3206,FRAMEQA48641,cars,what yellow and blue are running on a race in slow motion?,tumblr_nd91nlEKaI1tx8mn0o1_400,55564,0 3207,FRAMEQA37352,four,how many men in black are waving their hands?,tumblr_n8rwhlo9uB1tptf7do1_250,38342,1 3208,FRAMEQA10181,animal,what is swimming through some water?,tumblr_nahb37wZcQ1tbjfazo1_400,64226,0 3209,FRAMEQA48331,trick,what is the boy doing?,tumblr_nkyc17OlXU1sh022qo1_400,87132,0 3210,FRAMEQA29931,blue,what is the color of the eyes?,tumblr_nkyrftUORo1u86zz3o1_250,21675,2 3211,FRAMEQA46690,two,how many white race cars turn the corner fast?,tumblr_ne0jf2Dmtj1tr5tuwo1_500,71919,1 3212,FRAMEQA8864,trampoline,what is rolling by the window?,tumblr_nhmsu1C2LZ1u77r94o1_250,5531,0 3213,FRAMEQA40738,yellow,what is the color of the shirt?,tumblr_nd7lsdYhvX1tsstpdo1_250,6185,2 3214,FRAMEQA22679,two,how many young men in black t-shirts are hugging on stage?,tumblr_nba4zsrstP1thacl7o1_500,19023,1 3215,FRAMEQA20135,juice,what is the woman wearing a hat is drinking through a straw?,tumblr_nmcvu4Nn5R1us6f70o1_250,17497,0 3216,FRAMEQA31996,two,"how many women kiss each other , before they turn and walk away?",tumblr_nq3qalChFT1u5d8nbo1_500,69235,1 3217,FRAMEQA36529,two,how many people are looking at each other in the eyes?,tumblr_n9b2510ZPL1rx90qpo1_250,38426,1 3218,FRAMEQA4003,orange,what is the color of the butterfly?,tumblr_nkwxxlRnvb1sfdqnro1_400,38744,2 3219,FRAMEQA33574,red,what is the color of the smoke?,tumblr_n9i1feAZnI1slw55qo1_400,38187,2 3220,FRAMEQA37320,floor,what is the covered vacuum sweeping?,tumblr_nht9m1g7151s6zpepo1_250,78562,0 3221,FRAMEQA44920,black,what is the color of the jacket?,tumblr_ngwulvWgkk1u3im44o1_500,75778,2 3222,FRAMEQA21829,black,what is the color of the hat?,tumblr_ncvb9ar22f1th3l9oo1_500,99912,2 3223,FRAMEQA28200,car,what are these people driving and listening to music?,tumblr_n9qyart36C1rkbsnzo1_250,45347,0 3224,FRAMEQA28454,cloaks,what are two men looking focused and removing?,tumblr_nmz3n9aYMe1rxmp17o1_500,97109,0 3225,FRAMEQA51221,black,what is the color of the hair?,tumblr_nagp0infEi1syu2lno1_400,21591,2 3226,FRAMEQA51585,two,how many men is this image of dancing?,tumblr_np1j7fZTjF1rn75pro1_540,77375,1 3227,FRAMEQA14443,white,what is the color of the t-shirt?,tumblr_nlfhjtMhtz1r0nzaoo1_250,19979,2 3228,FRAMEQA31897,yellow,what is the color of the band?,tumblr_nlsgumFtJF1srbyoyo1_400,35611,2 3229,FRAMEQA26426,blackjack,what is the man playing at a crowded casino?,tumblr_nhd5mxgLuD1u71lxzo1_500,98865,0 3230,FRAMEQA33454,three,how many guys are laughing and playing around?,tumblr_nh9n7aITh11rc58pfo1_250,35470,1 3231,FRAMEQA7352,brown,what is the color of the hair?,tumblr_ncqbhf2Nt31th1exko1_400,80132,2 3232,FRAMEQA9496,cat,what buries his face in his paws?,tumblr_n8wjakFkdh1slj978o1_250,28681,0 3233,FRAMEQA44749,black,what is the color of the man?,tumblr_nglbp3rqtN1sju7t3o1_400,40408,2 3234,FRAMEQA38507,dog,what is tipping the cat into a bath of water?,tumblr_noswtqDMKC1tyncywo1_400,29427,0 3235,FRAMEQA10537,car,what avoids the scooter while traveling on a road?,tumblr_n9hl6ky3FK1qk377so1_400,84923,0 3236,FRAMEQA27502,green,what is the color of the dress?,tumblr_nqsxagg3Xz1u78tt8o1_500,84183,2 3237,FRAMEQA50243,mask,what is the woman wearing and dancing?,tumblr_nbw09yHJDi1ti7sj0o1_400,14933,0 3238,FRAMEQA52626,blue,what is the color of the shirts?,tumblr_ncr8j0oYR81r44co8o1_250,47782,2 3239,FRAMEQA11632,kitten,what sniffs the person 's foot and jumps away?,tumblr_n9crpj4At81tbusc0o1_400,46834,0 3240,FRAMEQA4162,room,where is the man turning around?,tumblr_nl1uy9eDen1seb31ro1_500,98244,3 3241,FRAMEQA7368,two,how many people are sitting in front of a screen that is showing images of bare chested men?,tumblr_np83c1F0Un1uogow0o1_500,24641,1 3242,FRAMEQA27025,bear,what is playing the trumpet and dancing?,tumblr_nd1lzaN9G21tp02izo1_400,25343,0 3243,FRAMEQA39492,two,"how many people is facing each other , as they hit fist to fist?",tumblr_n9jww1Tbcq1t7f0qno1_500,68514,1 3244,FRAMEQA33665,car,what is racing down the track and is turning very fast while smoking?,tumblr_nb920sP7nG1s1g1ilo1_250,56169,0 3245,FRAMEQA33092,phone,what is the young lady scrolling?,tumblr_njq64q1CbU1r2w02fo1_400,58962,0 3246,FRAMEQA38015,horse,what is getting the horseshoe put on?,tumblr_npjrckDyiu1qe2thio1_500,67512,0 3247,FRAMEQA51093,two,how many people are fighting with mixed martial arts?,tumblr_nc1ob7LJxh1tw8vf9o1_400,68560,1 3248,FRAMEQA27369,one,how many car starts to burn?,tumblr_nri0fojp0G1tx8mn0o1_400,55938,1 3249,FRAMEQA35270,two,how many people is it fighting with a dark background?,tumblr_nd4ygr9qGi1sn8mzco1_250,84446,1 3250,FRAMEQA7263,gray,what is the color of the t-shirt?,tumblr_ney69ux4541u2hqlpo1_250,12295,2 3251,FRAMEQA4577,white,what is the color of the guy?,tumblr_n9g7puMMHO1rbplvwo1_250,20018,2 3252,FRAMEQA33995,two,how many boys are talking with each other and smiling?,tumblr_nqy0wwLGsd1tl934lo1_250,51764,1 3253,FRAMEQA46673,bathroom,where is the shirtless tattooed man flexing his muscle and winking?,tumblr_nhlucajwmi1r2kpfmo1_400,1917,3 3254,FRAMEQA44813,cat,what walks up to two bananas and freaks out?,tumblr_nba8fj99IL1swsvnfo1_400,41749,0 3255,FRAMEQA16039,two,how many boys is standing together place their hands together?,tumblr_ndwl7ilxkz1tdmimho1_500,67810,1 3256,FRAMEQA21794,pen,what are the man and a woman scrutinizing?,tumblr_nr7xw07qzo1u40qnio1_400,91545,0 3257,FRAMEQA44721,five,how many young men are posing for photographs?,tumblr_ncqlayumGa1u0r2qfo1_500,88783,1 3258,FRAMEQA32116,cat,what is rolling on the ground?,tumblr_ngcdhqJX4R1tp6wqio1_500,61838,0 3259,FRAMEQA30616,bicycles,what are flying in the air in front of a sunset?,tumblr_naxb5i3AlN1sqquj8o1_250,53455,0 3260,FRAMEQA14800,three,how many men are dancing and moving their arms in sync?,tumblr_njrf9tKUfZ1rujq2co1_500,101326,1 3261,FRAMEQA15450,watch,what is throwing his book?,tumblr_nhvbgxJW4s1u6lo1go1_400,66050,0 3262,FRAMEQA44003,corgi,what is the person holding?,tumblr_na6oo2PKSC1silsr6o1_400,35103,0 3263,FRAMEQA37138,two,how many females is wearing gray costumes are performing a dance routine on stage?,tumblr_nf32wfId1W1u1kbnho1_250,19038,1 3264,FRAMEQA3665,black,what is the color of the shirt?,tumblr_nfij52cXeF1tx3acho1_250,18034,2 3265,FRAMEQA1574,guitar,what is the man with long hair playing?,tumblr_nqouq3KQKB1ut6dhgo1_400,77342,0 3266,FRAMEQA34777,dishes,what is the man washing in a restaurant while listening to head phones?,tumblr_njnbr0swrC1un86uao1_400,50808,0 3267,FRAMEQA37509,dog,what is staring at the treat?,tumblr_nfqa4dEj3v1tet6zho1_400,62046,0 3268,FRAMEQA1306,bird,what dances in front of a smaller bird?,tumblr_nec7jpgXtw1s71nvbo1_400,27462,0 3269,FRAMEQA21226,dog,what is slowly barking in slow motion?,tumblr_nkro0iKPRH1upx448o1_500,72145,0 3270,FRAMEQA42404,bag,what is the man embracing?,tumblr_nhh2bh2wBY1ra3tfmo1_500,89335,0 3271,FRAMEQA4957,makeup,what are two people doing?,tumblr_n8uw0bs3ZI1qinzfzo1_400,29461,0 3272,FRAMEQA28688,boat,what is floating on the sea when a huge creature comes breaking through the surface?,tumblr_np3hxoij0J1tj3r8so1_400,29591,0 3273,FRAMEQA15465,dog,what tries to bite the red balloon?,tumblr_ngf79bgJEJ1sht3fmo1_400,1473,0 3274,FRAMEQA38628,hat,what is the man throwing onto a woman 's leg?,tumblr_ncgx0gSMVZ1rne0ito1_400,24150,0 3275,FRAMEQA37969,blue,what is the color of the balls?,tumblr_ncd6eyR4Ya1ryaiojo1_400,69338,2 3276,FRAMEQA52770,dog,what is receiving some water jets in his mouth?,tumblr_nbsdx5f0Gm1rb71dxo1_400,69966,0 3277,FRAMEQA165,spider,what does the tool with bristles on the end pick up off the floor?,tumblr_nfdhg6tHlo1s4pilyo1_400,65579,0 3278,FRAMEQA21083,cigarette,what is the man in a tie smoking?,tumblr_ndu22lJGYu1r6rqr1o1_500,52571,0 3279,FRAMEQA50640,earring,what is the man wearing and singing into a microphone?,tumblr_nad9fpNKZC1sojiylo1_400,73512,0 3280,FRAMEQA29545,bull,what charges the man and a woman and knocks them down?,tumblr_nc8g0k6Rac1tatohao1_400,41038,0 3281,FRAMEQA10428,room,where is the tip of something smoking?,tumblr_nesf0m509L1rs3efuo1_500,30498,3 3282,FRAMEQA36648,two,how many people with dark hair stuck out their tongues?,tumblr_nlzvsya1WR1tfjrdno1_400,31404,1 3283,FRAMEQA16019,turtle,what is being fed food by a human?,tumblr_now3qv2rty1tgouwlo1_400,15794,0 3284,FRAMEQA4306,cat,what is walking the dog on a leash?,tumblr_njoau5H0HV1s1ukk9o1_400,81129,0 3285,FRAMEQA38095,wheel,where is the brown cat walking?,tumblr_nrjzfx6FL41uz06r7o1_400,13614,3 3286,FRAMEQA41026,cat,what is sticking out it 's tongue?,tumblr_nbc2uhXce31slwrsuo1_250,1365,0 3287,FRAMEQA17063,cat,what does the man throw at another man as a weapon?,tumblr_nqgrtb47iN1tb0ub4o1_400,32115,0 3288,FRAMEQA22482,motorcycle,what flips its driver onto the tracks and slides into the grassy field?,tumblr_ndo9mexi0q1tx8mn0o1_400,52724,0 3289,FRAMEQA51072,room,where are two women kissing?,tumblr_npebl4xJIb1sczfc3o1_500,100521,3 3290,FRAMEQA36301,two,how many horses give each other a high five?,tumblr_n9hp20yyXi1ttuja3o1_400,65594,1 3291,FRAMEQA38363,stadium,where is the person doing an interview?,tumblr_n9v5t2V89h1temvgfo1_250,43769,3 3292,FRAMEQA50306,two,how many men are playing the game of table tennis?,tumblr_ndt7p5Ww511s71nvbo1_400,24653,1 3293,FRAMEQA16893,black,what is the color of the sunglasses?,tumblr_njy2llEMDi1u1jnleo1_500,46168,2 3294,FRAMEQA36895,two,how many boys are taking drinks out of water bottles?,tumblr_nh9wynnpCd1u6z7x7o1_500,48884,1 3295,FRAMEQA4177,panda,what is the baby panda holding?,tumblr_n9al1mawYK1thcwtbo1_500,70761,0 3296,FRAMEQA36842,three,how many colorful dice are thrown multiple times?,tumblr_ngz2gcvCxw1rtdnfto1_400,28359,1 3297,FRAMEQA52304,cap,what did the hockey player 's drink have?,tumblr_np9l67iE301te94myo1_400,19930,0 3298,FRAMEQA41816,two,"how many young men are smiling and clapping their hands , looking at each other?",tumblr_n0wbw0JDIC1rj823eo1_400,93418,1 3299,FRAMEQA42407,black,what is the color of the hat?,tumblr_npxi5iuzFO1uy7t3eo1_500,95838,2 3300,FRAMEQA12401,hallway,where does the girl with yellow hat spin then stops?,tumblr_na6u0dxvpu1s0d12ko1_500,86744,3 3301,FRAMEQA45119,black,what is the color of the lingerie?,tumblr_nhfopwsnzc1u75on0o1_400,75796,2 3302,FRAMEQA46102,one,how many man does there 's laughing at another man playing a fake guitar?,tumblr_ndxno3rMQC1svbli1o1_250,49641,1 3303,FRAMEQA29570,car,what is spinning in circles on a parking lot?,tumblr_npaw4iQKzd1u6iefyo1_500,76767,0 3304,FRAMEQA20371,two,how many young girls are laughing and drinking?,tumblr_na5uo6rEEc1rv06c2o1_250,32590,1 3305,FRAMEQA19499,one,how many man is on top of another man in bed?,tumblr_nkw7jnai031rm0ja8o1_400,52202,1 3306,FRAMEQA25835,green,what is the color of the dress?,tumblr_npgic1jBgU1utmlppo1_500,97357,2 3307,FRAMEQA481,car,what spins out going through the turn?,tumblr_nfdbfb4nT11tx8mn0o1_400,100983,0 3308,FRAMEQA1371,kitchen,where is the cat running?,tumblr_nhpugqJVgm1s6zpepo1_400,30538,3 3309,FRAMEQA41823,drink,what is the guy holding while dancing?,tumblr_nbu4nnFWBN1tok1iao1_400,82135,0 3310,FRAMEQA16441,foxes,what is the man ticking tummy?,tumblr_np67fnXaAj1tatohao1_400,67730,0 3311,FRAMEQA4071,gym,where does the woman put down the barbell?,tumblr_nciq5cuIxH1tt0b1ho1_250,3203,3 3312,FRAMEQA34847,two,how many guys are sitting on the couch and talking?,tumblr_nemscyeADV1sd32fxo1_500,60111,1 3313,FRAMEQA5508,cat,what gets in the way of showing a woman doing a yoga pose?,tumblr_nr10n4blvp1qzefipo1_r1_400,76416,0 3314,FRAMEQA40673,two,how many men in athletic clothing are hugging each other?,tumblr_nhtqzuiWod1sj4atbo1_400,65203,1 3315,FRAMEQA36544,suit,what is putting angry face?,tumblr_nb0tag2Sc31sr2axwo1_250,27106,0 3316,FRAMEQA22205,cat,what is chasing something across a wooden floor?,tumblr_na223cc4GI1r6gft3o1_250,70577,0 3317,FRAMEQA46200,dog,what is being shook by someone?,tumblr_njwg4tiDgC1u8eq3no1_400,66173,0 3318,FRAMEQA256,shark,what is swimming around the floating cage?,tumblr_nbsow8trHJ1tlsvejo1_400,70700,0 3319,FRAMEQA39732,car,what rotates at high speed and make clouds of dust?,tumblr_nh2ih2Tpka1rknd4so1_400,54485,0 3320,FRAMEQA33141,four,how many men in smart clothing are standing in a line together?,tumblr_ngfpt91NJR1u4h7glo1_500,57449,1 3321,FRAMEQA37532,orange,what is the color of the juice?,tumblr_nmcvu4Nn5R1us6f70o1_250,17497,2 3322,FRAMEQA41522,piano,what is the boy playing while singing into a microphone?,tumblr_nkobmrxOqy1u8s5muo1_400,46617,0 3323,FRAMEQA21476,shirt,what is the man wearing and smiling?,tumblr_nivsff9LA71raooppo1_500,15601,0 3324,FRAMEQA22965,popcorn,what is the woman in a leopard print hat eating?,tumblr_nnyl3sHshs1tjbfjto1_400,70065,0 3325,FRAMEQA35344,two,how many men stand on the sidewalk?,tumblr_nbee7vMnNj1th1gndo1_400,67016,1 3326,FRAMEQA6648,black,what is the color of the gown?,tumblr_nkvfrfYpKG1sco6ako1_400,70613,2 3327,FRAMEQA3453,car,what is driving up to the black fence on the race track?,tumblr_nprglcBVTc1unyhx2o1_400,65277,0 3328,FRAMEQA51421,black,what is the color of the pants?,tumblr_n8xoi33thn1tuoukno1_250,13455,2 3329,FRAMEQA31076,yellow,what is the color of the dress?,tumblr_nhxforhx5a1rx75eko1_400,97369,2 3330,FRAMEQA39247,black,what is the color of the hair?,tumblr_njvjpmd0lJ1tmssd6o1_500,71674,2 3331,FRAMEQA42594,two,how many women walk through the door and into a crowd?,tumblr_nfeov630X81u426jpo1_500,47850,1 3332,FRAMEQA28475,two,how many men is wearing same clothes hug each other and hold each others backs?,tumblr_nk4ezdlkcv1u2nvc4o1_500,62482,1 3333,FRAMEQA31768,guitar,what is the young man swinging around on a stage?,tumblr_ndbe87urrf1tku5kko1_250,38920,0 3334,FRAMEQA31662,black,what is the color of the hair?,tumblr_ndb0mlx2Ms1rozqomo1_250,39658,2 3335,FRAMEQA4441,two,how many people are having an arm wrestle?,tumblr_ngn0ttCSb51svos5ho1_400,36865,1 3336,FRAMEQA39176,black,what is the color of the dress?,tumblr_no7ms6bQkF1qf738lo1_500,47662,2 3337,FRAMEQA24207,sword,what is the young woman holding?,tumblr_n9dype7riV1tfbj8go1_500,43494,0 3338,FRAMEQA10246,tubes,what are sailors tossing across a ship?,tumblr_n8ptkwQ8rn1tabm5fo1_400,69555,0 3339,FRAMEQA4427,yellow,what is the color of the blankets?,tumblr_nfwjvryKQj1qc4d1mo1_250,74957,2 3340,FRAMEQA35290,white,what is the color of the man?,tumblr_nd9q316CkR1qckrt4o1_500,58028,2 3341,FRAMEQA11476,bird,what shakes and flaps his wings on a branch?,tumblr_nczlfupRqq1tvuidio1_500,84031,0 3342,FRAMEQA14265,cars,what are driving on the road during a sunset?,tumblr_ngi2t0tDEr1rx9shjo1_400,56919,0 3343,FRAMEQA36851,four,how many guys are running and three of them fall?,tumblr_n9arvu8wVk1th7gfko1_250,37916,1 3344,FRAMEQA527,two,how many men are watching the piece of machinery and talking?,tumblr_nhihfqgnjK1u71wuao1_400,58907,1 3345,FRAMEQA33980,mammal,what is rolling over?,tumblr_nrjj1i27sk1uv0y2ro1_250,74778,0 3346,FRAMEQA46733,blue,what is the color of the hair?,tumblr_ngdqxovcVv1rfx6qqo1_400,29189,2 3347,FRAMEQA46417,gray,what is the color of the attire?,tumblr_ngweqi8eLU1u6p4xzo1_400,81223,2 3348,FRAMEQA1063,room,where is two guys dancing very funny?,tumblr_n8zjjsp2E21tecuevo1_400,42865,3 3349,FRAMEQA26027,kitten,what is playing with baubles on a christmas tree?,tumblr_nh40cqYid51s6zpepo1_250,2329,0 3350,FRAMEQA51459,car,what is skidding around the corner of a race track?,tumblr_nivsjccx9w1r05qsbo1_400,68322,0 3351,FRAMEQA1176,purple,what is the color of the wings?,tumblr_nov6tduqos1uvi3rjo1_400,54480,2 3352,FRAMEQA28666,chair,where is the man with red hair sitting and another man pops up from behind?,tumblr_ndhvugvD2U1s3mq1do1_400,59821,3 3353,FRAMEQA44626,two,how many cars almost crash into one another?,tumblr_ner7ylN8ki1sncaa3o1_400,55584,1 3354,FRAMEQA3469,car,what is smoking behind the bush?,tumblr_nagwqpek6t1sl4e5go1_400,96671,0 3355,FRAMEQA35594,two,how many men are boxing?,tumblr_nhq8bvxG6q1sk0i2mo1_250,55588,1 3356,FRAMEQA40792,bag,what is the man bouncing?,tumblr_ndv2l5YD0M1rhexgoo1_250,25553,0 3357,FRAMEQA48307,drums,what are two men wearing masks are dancing and playing?,tumblr_nf22adJ0VT1qd0q05o1_400,67256,0 3358,FRAMEQA19203,sheep,what rolls down the hill in the rain?,tumblr_nfa0f8zRRV1rs02yxo1_250,40651,0 3359,FRAMEQA16952,car,what leaves the parking space and another car parks in the space and a man pees on that car?,tumblr_neeuriGyRN1tcott6o1_400,47984,0 3360,FRAMEQA26475,two,how many people are in the room?,tumblr_ncxsl29ZXD1tmth2jo1_250,47237,1 3361,FRAMEQA40662,yellow,what is the color of the ball?,tumblr_ne538w5f3w1u2rlp7o1_400,40687,2 3362,FRAMEQA3647,black,what is the color of the man?,tumblr_ng2qlbUIlP1ttgu7yo1_400,12426,2 3363,FRAMEQA52416,black,what is the color of the suit?,tumblr_ngbwzlcnCk1r8l54qo1_400,31660,2 3364,FRAMEQA52665,car,what is skidding off the track and into a dirt field?,tumblr_nooglpxw3a1tx8mn0o1_400,79027,0 3365,FRAMEQA4809,two,how many women are staring at each other?,tumblr_naduko6Opl1qcvlffo1_100,93937,1 3366,FRAMEQA38659,brown,what is the color of the hair?,tumblr_npg911ZWBI1uxqfano1_250,12783,2 3367,FRAMEQA17371,chair,where is the man sitting while holding a box and talking?,tumblr_nba7eaFpjd1sqd2xqo1_400,7965,3 3368,FRAMEQA50391,white,what is the color of the pants?,tumblr_nfq8lcxtjj1tsann9o1_r2_500,40935,2 3369,FRAMEQA410,cat,what is sitting on the couch doing nothing?,tumblr_nkngomyhg61u9o884o1_400,21925,0 3370,FRAMEQA14066,yellow,what is the color of the shirt?,tumblr_nkbc7fiUtn1rc27bho1_400,408,2 3371,FRAMEQA5185,shirt,what is the guy wearing and looking backwards and smiling?,tumblr_nhzfvxCesw1u7uk4xo1_250,25551,0 3372,FRAMEQA49685,rings,what is the man blowing into the air?,tumblr_ne3x52SXYf1r1vx3po1_r1_500,98148,0 3373,FRAMEQA26940,black,what is the color of the car?,tumblr_ngpaoaNNIH1rpqn0wo1_500,61804,2 3374,FRAMEQA32010,blue,what is the color of the team?,tumblr_nohfozNdq31tz9jaqo1_500,101574,2 3375,FRAMEQA50008,black,what is the color of the shirt?,tumblr_neh6x586Rl1tgic3yo1_500,89147,2 3376,FRAMEQA28481,brown,what is the color of the dog?,tumblr_nb40f1NWsK1tjrca2o1_400,65695,2 3377,FRAMEQA51977,purple,what is the color of the shirt?,tumblr_n9q33mPy121ti34tso1_1280,96936,2 3378,FRAMEQA37402,two,how many men look sadly out of windows?,tumblr_nk64ns1uhs1u7382xo1_500,77564,1 3379,FRAMEQA24904,cat,what is the girl petting?,tumblr_nhek07vQZc1te94myo1_400,23862,0 3380,FRAMEQA26023,two,how many females does this show kissing each other?,tumblr_nn6p2bkq1i1us8iupo1_500,83601,1 3381,FRAMEQA18744,chases,what chased the hand of a man?,tumblr_n9q49mS7ND1t3xx9ao1_400,33502,0 3382,FRAMEQA5320,toy,what is the man in a hat holding?,tumblr_nhrq4zTBiW1td8ijso1_400,54537,0 3383,FRAMEQA33572,white,what is the color of the guy?,tumblr_nkpcx7Bz6I1qattp2o1_500,71572,2 3384,FRAMEQA10344,two,how many men are pushing each other down?,tumblr_ndw164NVKb1slj978o1_400,42305,1 3385,FRAMEQA16448,car,where are guys dancing while it drives by?,tumblr_nbp6myEsCd1tegiwio1_500,44587,3 3386,FRAMEQA45539,three,how many people are hugging each other while a crowd watches?,tumblr_n9qzicJ4gq1sn3gx2o1_250,35486,1 3387,FRAMEQA39649,two,how many guys with sunglasses are greeting in outdoor?,tumblr_nflzmwpuPQ1tigbm3o1_400,59344,1 3388,FRAMEQA39437,armchair,where is the young woman getting comfortable?,tumblr_nnkk7xhuSU1sa6u20o1_400,50845,3 3389,FRAMEQA13126,black,what is the color of the lips?,tumblr_nge88cl1IR1tk7malo1_400,30818,2 3390,FRAMEQA451,room,"where are the man and a woman kissing each other ,?",tumblr_ni1rgcUyWL1u7lbeoo1_500,86030,3 3391,FRAMEQA34961,black,what is the color of the top?,tumblr_nhenpyWz8l1qdbxg1o1_250,10863,2 3392,FRAMEQA45272,two,how many guys are looking and smiling in the room?,tumblr_nhyzo769BX1shllpeo1_400,29481,1 3393,FRAMEQA13333,crow,what is moving its head from one side to the other?,tumblr_np0eq9SpgL1sxixu7o1_250,51670,0 3394,FRAMEQA30599,black,what is the color of the drinking?,tumblr_n9qimeVRl31rm2suio1_400,13867,2 3395,FRAMEQA11121,instruments,"what are the group of boys singing , dancing , and playing?",tumblr_nb5u5x93171rj46xdo4_r1_500,93280,0 3396,FRAMEQA4762,car,what is released out of the back of an airplane?,tumblr_npq9jlIFaN1u1ogm0o1_1280,98065,0 3397,FRAMEQA3418,cat,"what is defending itself from a puppy , which then falls backwards?",tumblr_ncl35rMLRE1snjqzdo1_400,82992,0 3398,FRAMEQA40316,dancer,what does the split while standing in a sort of handstand?,tumblr_n9lhgzbAo31sg317do1_400,74188,0 3399,FRAMEQA37014,blue,what is the color of the jacket?,tumblr_ncqher86Kc1tm761xo1_500,10949,2 3400,FRAMEQA19724,three,how many young men are sitting together?,tumblr_nfb23gwoUs1t8bzkuo1_500,96628,1 3401,FRAMEQA34135,black,what is the color of the hat?,tumblr_nppe4itAAr1sz4xdoo1_500,89152,2 3402,FRAMEQA42451,red,what is the color of the shirt?,tumblr_nav1brsK0W1sjoqhwo1_400,63986,2 3403,FRAMEQA44363,cigarette,what is the boy in a baseball cap smoking?,tumblr_nbp4csVh0n1qc17seo1_400,59864,0 3404,FRAMEQA2665,two,how many white team players with short hair congratulate each other?,tumblr_nct52sYe2r1u0sv5po1_500,95749,1 3405,FRAMEQA24798,spider,what falls onto the man sitting on the couch and he runs away?,tumblr_nps81duVvm1uxhlvco1_400,45766,0 3406,FRAMEQA46007,black,what is the color of the shirt?,tumblr_nafvx0HnxX1rctjeio1_250,51384,2 3407,FRAMEQA4124,chimpanzee,what is the young man sitting on a rock is stroking?,tumblr_ndwzkxNPfq1u1810lo1_500,75707,0 3408,FRAMEQA21357,two,how many people are stood outdoors talking to someone?,tumblr_na8pus0OAH1t9au5fo1_400,16340,1 3409,FRAMEQA11840,two,how many women are slowing taking the jacket off of a man?,tumblr_ng6i6uP4kE1s5svyno1_500,93850,1 3410,FRAMEQA17382,cars,what are racing on the track?,tumblr_nr9op5Q2rg1unyhx2o1_400,78234,0 3411,FRAMEQA43086,car,what is turning very quick and leaving behind the trail of dust?,tumblr_nh2ih2Tpka1rknd4so1_400,54485,0 3412,FRAMEQA50406,car,what is this spinning out on a track?,tumblr_nrc4n8V2xU1tx8mn0o1_400,93104,0 3413,FRAMEQA16076,white,what is the color of the dog?,tumblr_nk5ddaL9zk1s28vxko1_400,43219,2 3414,FRAMEQA49713,mirror,where is the man fixing his hair?,tumblr_nhg7r5IqE81sojbe9o1_250,31950,3 3415,FRAMEQA5613,car,what is driving on the road and going around a corner?,tumblr_n9aw9xL3oK1tx8mn0o1_400,77235,0 3416,FRAMEQA4808,boots,what does the woman man walk down the runway in a blue coat jacket and walked?,tumblr_nedvy9AhxX1qeire1o1_400,66547,0 3417,FRAMEQA32131,black,what is the color of the hair?,tumblr_n9t89xPnUv1s9p889o1_400,63519,2 3418,FRAMEQA34735,bed,where does the man put on his sunglasses when the clock turns nine?,tumblr_njvt58aRya1u9uafoo1_400,66055,3 3419,FRAMEQA36147,clothing,what is the young person adjusting?,tumblr_njr6h2kNOi1rkcbb8o1_400,691,0 3420,FRAMEQA17366,drink,what is the guy holding while looking around and smiling?,tumblr_nquj86RWoW1uyk370o1_250,10534,0 3421,FRAMEQA27528,red,what is the color of the hair?,tumblr_njxg0u02UC1tdmffyo1_250,8666,2 3422,FRAMEQA575,black,what is the color of the car?,tumblr_nevu1x7R4F1tzeksuo1_400,67414,2 3423,FRAMEQA22138,elephant,what tries to take some bananas with its trunk?,tumblr_nag50gxnPI1tdjuqvo1_250,24769,0 3424,FRAMEQA51065,two,how many guys in a band are playing guitar crazily?,tumblr_nip2p8nEbB1rz19y8o1_500,73340,1 3425,FRAMEQA31115,tree,what is the man pulling?,tumblr_nem3w0B2961ttab97o1_400,29697,0 3426,FRAMEQA7623,white,what is the color of the dance?,tumblr_nc8whp8jDQ1t0yxwdo1_500,87698,2 3427,FRAMEQA46423,car,what is racing through the track in slow motion?,tumblr_n8vecizBZQ1sla45lo1_400,76383,0 3428,FRAMEQA49553,two,how many people are singing while riding in the truck?,tumblr_ncq8eyMlrJ1qkf1cno1_400,52199,1 3429,FRAMEQA12243,white,what is the color of the shirt?,tumblr_nc3e3globU1snid6qo1_400,66138,2 3430,FRAMEQA47727,black,what is the color of the player?,tumblr_ng33g4VJPm1qmnxmfo1_400,36932,2 3431,FRAMEQA38561,blue,what is the color of the background?,tumblr_njp4u1XiXD1tt84zlo1_500,57884,2 3432,FRAMEQA40972,dog,what is showering in the bathtub?,tumblr_nis0671Qu01tjqbh0o1_250,1463,0 3433,FRAMEQA43632,balloon,what is going down in front of a woman 's face and she puts her head in her shirt?,tumblr_n97n2cS7li1rxa8glo1_500,86305,0 3434,FRAMEQA1151,shirt,what is the man removing on the boat?,tumblr_nb6x6yDo3T1qi1h3ao1_250,2972,0 3435,FRAMEQA45513,four,how many children in winter attire are walking in the street with their mother?,tumblr_nq5iztgMBE1upitezo1_400,54129,1 3436,FRAMEQA9849,drums,what does the young person sit and plays?,tumblr_nby6tvbCeZ1siu9kqo1_400,34568,0 3437,FRAMEQA28304,red,what is the color of the car?,tumblr_nitvmqOok11r05qsbo1_400,70773,2 3438,FRAMEQA11672,white,what is the color of the girl?,tumblr_nknb86YzIa1u3knpvo5_400,12,2 3439,FRAMEQA41144,black,what is the color of the guy?,tumblr_nhsbn1IuVN1slqc17o1_250,20702,2 3440,FRAMEQA24607,room,where did the girl blow a kiss?,tumblr_nax1m6RT3M1taukq1o1_500,76436,3 3441,FRAMEQA43076,gray,what is the color of the cat?,tumblr_nejxcpZ7Tn1tbo2gbo1_400,48764,2 3442,FRAMEQA40296,cat,what is the young woman holding up?,tumblr_n9wrdo0tex1tff33do1_400,35209,0 3443,FRAMEQA38089,sunglasses,what is the man sitting very still and wearing?,tumblr_ne3dziL8xT1rhy02xo1_500,72822,0 3444,FRAMEQA32697,rotors,what are spinning around?,tumblr_nbbqb0Csnu1s0ov26o1_250,4326,0 3445,FRAMEQA3082,black,what is the color of the robe?,tumblr_naje2j4n8S1qazjvjo1_250,47238,2 3446,FRAMEQA47703,two,how many guys are looking at each other?,tumblr_nkm1e1fJVT1r8ici8o1_500,100860,1 3447,FRAMEQA7792,red,what is the color of the nose?,tumblr_ngyrfb6hzc1rlvjr1o1_400,33915,2 3448,FRAMEQA39462,fox,what is jumping into the snow?,tumblr_njq3ur8qv41unykvpo1_400,46132,0 3449,FRAMEQA25297,car,what drives down the race track and jumps jumped?,tumblr_ng1de5pymv1tx8mn0o1_400,55734,0 3450,FRAMEQA26826,ranch,where is the woman riding a horse?,tumblr_nelugrsfHA1qcaryto1_400,35224,3 3451,FRAMEQA46960,yellow,what is the color of the flags?,tumblr_nnwzkgSJFc1qg0or6o1_400,62997,2 3452,FRAMEQA14892,four,how many guys in the middle of the ring are spinning in a circle to see who can fall down first?,tumblr_neueo4Xx7q1t06o0xo1_400,76566,1 3453,FRAMEQA28622,black,what is the color of the clothes?,tumblr_nh5c36L6Tk1s0zb3xo1_250,1751,2 3454,FRAMEQA39193,turtle,what is slowly eating its treat?,tumblr_now3qv2rty1tgouwlo1_400,15794,0 3455,FRAMEQA12264,window,what does the young girl lean out?,tumblr_no3hrbcaP11up2ixko1_250,82954,0 3456,FRAMEQA40657,cars,what are driving over the bridge in the night?,tumblr_nabjhc7Adk1tgqy75o1_500,83904,0 3457,FRAMEQA16268,studio,where are several young men dancing?,tumblr_n8trqkKcnv1tdy2k0o1_400,65679,3 3458,FRAMEQA2509,shower,where are the group of kittens playing?,tumblr_nfarhcHDam1seb8aro1_400,65054,3 3459,FRAMEQA13997,room,where is the man grabbing another man 's shoulders?,tumblr_nj9rcd5g6r1sw5721o1_500,91807,3 3460,FRAMEQA39841,two,how many men are boxing each other while others watch?,tumblr_nhkxskmh3h1rlakuxo1_500,95997,1 3461,FRAMEQA23466,three,how many women are hugging and taking the photo?,tumblr_nk43srE90O1t7ej2to1_250,13739,1 3462,FRAMEQA27757,door,what is the gray cat kicking with its back leg?,tumblr_n9xu4w1Lfq1tatohao1_400,40652,0 3463,FRAMEQA7113,white,what is the color of the tutu?,tumblr_ndvt8siwvI1s1tnf7o1_400,77723,2 3464,FRAMEQA46734,two,how many costumed men walk down the hallway talking to each other?,tumblr_n961ixhQyx1ttxslwo1_250,21630,1 3465,FRAMEQA19944,two,how many beautiful men with long hair are putting heads together?,tumblr_ni20ssyPb91u84fnpo1_400,85079,1 3466,FRAMEQA1980,two,"how many men are playing rock , paper , scissors as they stand by the door?",tumblr_nbv7fnwnlh1tm2vn6o1_400,28619,1 3467,FRAMEQA18265,brown,what is the color of the shirt?,tumblr_nl2hisJPt81sfz5oto1_250,36994,2 3468,FRAMEQA28849,sunglasses,what is the woman rubbing with her fingers?,tumblr_nf1ml2SDrL1tmaii4o1_250,10057,0 3469,FRAMEQA22707,cat,what is riding the skateboard and performing some tricks?,tumblr_njukcfEiK11r1n65mo1_400,40925,0 3470,FRAMEQA3075,hedgehog,what carries an empty toilet paper roll?,tumblr_na7ovlzraN1s8qlxdo1_500,67883,0 3471,FRAMEQA2224,green,what is the color of the dress?,tumblr_nr9lkz6igG1uaf3d2o1_250,2065,2 3472,FRAMEQA33548,blue,what is the color of the jacket?,tumblr_nnjptfMtGh1u83xiro1_500,40820,2 3473,FRAMEQA19809,driver,what is driving the race car?,tumblr_n9066hvJ6R1tx8mn0o1_400,76810,0 3474,FRAMEQA27634,guitar,what is the blonde man playing and headbanging?,tumblr_nc2rue39Be1qlxas3o1_400,65531,0 3475,FRAMEQA15125,brown,what is the color of the hair?,tumblr_noundoF2gu1qjmps3o1_250,65264,2 3476,FRAMEQA43035,black,what is the color of the cat?,tumblr_nim4ueNtko1sgt69lo1_500,41541,2 3477,FRAMEQA38407,two,how many wrestlers fell down in the ring together?,tumblr_nf7oleJL0U1rkoaqfo1_400,52666,1 3478,FRAMEQA11684,two,how many men are looking towards the ceiling while one sings?,tumblr_naytkonAuO1scv4uso1_500,86741,1 3479,FRAMEQA38393,one,how many guy talked to another guy?,tumblr_nk4spuzkLx1u3aa5ho1_500,99689,1 3480,FRAMEQA34727,three,how many people are sitting down laughing together?,tumblr_n90x2fuBVp1skm6iho1_250,53681,1 3481,FRAMEQA41193,cat,what is the girl wearing glasses is petting?,tumblr_n9gglqx17d1twg5ujo1_400,31689,0 3482,FRAMEQA37400,queen,what is laughing inside of the bar?,tumblr_nkqzylaAQ61s3tcgro1_500,58083,0 3483,FRAMEQA32776,blue,what is the color of the helmet?,tumblr_np58jvmXRX1rl84n7o1_400,49007,2 3484,FRAMEQA24911,blue,what is the color of the vest?,tumblr_njoe9tQzNp1uneb7wo1_400,30081,2 3485,FRAMEQA48459,blue,what is the color of the walls?,tumblr_njk8dgIgDF1rrs7bmo1_500,70881,2 3486,FRAMEQA9862,black,what is the color of the jacket?,tumblr_nfjv24ooua1u3f59ho1_400,7872,2 3487,FRAMEQA29892,bed,"where is the woman with blonde hair , laying and crying on her pillow?",tumblr_new8owyMCV1s81cpko1_500,100331,3 3488,FRAMEQA10890,black,what is the color of the shirt?,tumblr_no0w1gQdxo1qk66rqo1_500,90116,2 3489,FRAMEQA15009,pencil,what is being applied to the young woman 's lips?,tumblr_n9kithPB8s1twwysgo1_400,45757,0 3490,FRAMEQA22351,car,what got out of balance on a car racing?,tumblr_nivsjccx9w1r05qsbo1_400,68322,0 3491,FRAMEQA17450,two,"how many teams are playing the soccer match , when one side scores a goal?",tumblr_nl375sM5GF1tigieto1_400,101682,1 3492,FRAMEQA2973,laptop,what is the boy using and sneezing in slow motion?,tumblr_nkirmvB9yO1u7ri8ro1_500,45016,0 3493,FRAMEQA40568,two,how many men sit together and smile and laugh?,tumblr_nfao9fM1Ph1tqwtb6o1_250,27818,1 3494,FRAMEQA6921,room,where is the man playing the guitar?,tumblr_ngfkf6PEqV1u287g3o1_500,34368,3 3495,FRAMEQA12067,red,what is the color of the hair?,tumblr_ndkfviG28R1u1z0zno1_250,8282,2 3496,FRAMEQA4548,blue,what is the color of the hair?,tumblr_ncbzrln3AJ1rbm647o1_250,15701,2 3497,FRAMEQA37363,guitar,what is the man wearing a suit and tie is playing?,tumblr_nculypGc871u0x3uvo1_500,69278,0 3498,FRAMEQA10774,office,where does one man push another man?,tumblr_nee3oelZr21tl3pamo1_250,3856,3 3499,FRAMEQA45589,room,where is the man dancing?,tumblr_n8pk4lxsBA1tfou2zo1_400,69872,3 3500,FRAMEQA1252,food,what is the dog eating?,tumblr_n8uqen1tDV1sfmhxao1_400,63448,0 3501,FRAMEQA24003,robot,what falls trying to walk?,tumblr_nr9bjmjCEh1un86uao1_400,72641,0 3502,FRAMEQA26878,white,what is the color of the blazer?,tumblr_nac2p29bq51srzj7lo1_250,8489,2 3503,FRAMEQA41093,ship,what is going along the sea in a rough wave?,tumblr_nfwuw0DVot1rftdx0o1_400,69984,0 3504,FRAMEQA21043,one,how many man is smiling at another dirty man?,tumblr_n9adwvqs131rw8dw3o1_400,65019,1 3505,FRAMEQA43626,two,how many beautiful girls with long hair are talking?,tumblr_nk77q2amba1unawq7o1_250,15856,1 3506,FRAMEQA52996,truck,what goes of the track while attempting to take a corner at speed?,tumblr_nfvp6qwyZi1tx8mn0o1_400,55600,0 3507,FRAMEQA21136,street,where is an army tank doing doughnuts?,tumblr_nfbymug4lI1tjxr89o1_400,69634,3 3508,FRAMEQA43224,pillow,what is the man hugging and sleeping?,tumblr_nhgtj3FQM21rouslso1_400,87961,0 3509,FRAMEQA50827,bird,what picks up the crumb of food and offers it to the cat that refuses to eat it while the dog does?,tumblr_na02l5mrrH1tgetb4o1_400,82095,0 3510,FRAMEQA30893,fox,what is jumping into the snowdrift?,tumblr_nprpm1WJLb1uxtn9jo1_400,75011,0 3511,FRAMEQA15972,two,how many beautiful ladies with soccer clothes are making exercises?,tumblr_nacqaixw0M1r2atcqo1_500,55027,1 3512,FRAMEQA27666,white,what is the color of the car?,tumblr_nps8udvCeF1urlrpuo1_500,92986,2 3513,FRAMEQA8210,orange,what is the color of the squash?,tumblr_ne0v8hQfU71sjuzlno1_400,37917,2 3514,FRAMEQA45218,two,"how many men are sitting on the couch , one with an arm on the other?",tumblr_n8pwqeVOHS1smsztso1_500,11023,1 3515,FRAMEQA36553,sheets,what hang on the clothes line and blow in the wind?,tumblr_ne9pqpnV1K1qz874do1_500,99519,0 3516,FRAMEQA26296,rabbits,what are playing very funny in the room?,tumblr_nc2gpfzSk21tk2ngvo1_250,13592,0 3517,FRAMEQA23279,red,what is the color of the hair?,tumblr_na3jkb2jro1tjoy7to1_250,17786,2 3518,FRAMEQA39945,car,what is skidding down the track sideways?,tumblr_ndb4y8ZLES1t03l64o1_400,42848,0 3519,FRAMEQA31460,two,how many men with fake injuries are grinning?,tumblr_nfwyadLrQK1qb0dkjo1_400,40672,1 3520,FRAMEQA30991,pizza,what is the short hair person with glasses eating?,tumblr_nfl2gcItVI1tl3ivmo1_500,95859,0 3521,FRAMEQA34184,car,what spins around the curve of a racetrack?,tumblr_naqqqzR4NB1tx8mn0o1_400,90290,0 3522,FRAMEQA45516,ball,what does the girl slam dunk in outdoor?,tumblr_ndar2w45c51t7jda2o1_250,3625,0 3523,FRAMEQA52313,black,what is the color of the suit?,tumblr_nox34tXaCU1u95gjqo1_400,64245,2 3524,FRAMEQA22684,black,what is the color of the wings?,tumblr_nglb9d1D1O1tbjx0uo1_500,54730,2 3525,FRAMEQA15588,blue,what is the color of the shirt?,tumblr_naqr8iApeZ1tknp3uo1_250,18053,2 3526,FRAMEQA40864,blue,what is the color of the shirt?,tumblr_navzhxd3PB1tz9jaqo1_500,48481,2 3527,FRAMEQA50836,blue,what is the color of the jeep?,tumblr_ndruvpvdl31rojrheo1_500,70799,2 3528,FRAMEQA27771,cat,what is moving her claws near somebody?,tumblr_n9siyhJeK01sz068fo1_400,80179,0 3529,FRAMEQA36207,glove,where did the woman move her hand in front of her face?,tumblr_nf9738qiDj1qlnmvgo1_400,69562,3 3530,FRAMEQA15790,shirts,what are the boys taking off?,tumblr_no7emoSSII1uuekcqo1_500,90515,0 3531,FRAMEQA33069,two,how many people are talking to an interviewer?,tumblr_nfv8zfjW0v1rwe02ao1_250,45681,1 3532,FRAMEQA1337,table,what is opening into the larger table?,tumblr_nfwilrpYiI1tkogwwo1_500,54276,0 3533,FRAMEQA6440,black,what is the color of the polish?,tumblr_neokw6f6dx1r0gzqfo1_400,33879,2 3534,FRAMEQA19260,two,how many soccer teams is this battling for the ball?,tumblr_nhccwxLB7g1tigieto1_400,76338,1 3535,FRAMEQA43402,bat,what does the girl hold up?,tumblr_npu3dmmwdW1srz1ujo1_250,12627,0 3536,FRAMEQA10593,two,how many men are smiling?,tumblr_nemscyeADV1sd32fxo1_500,60111,1 3537,FRAMEQA42620,four,how many females on chairs wave at the cop?,tumblr_nqvlitw9nW1t5ygabo1_400,64594,1 3538,FRAMEQA50421,three,how many people turn to face someone in front of them?,tumblr_nav6oaPHdu1tkrm74o1_500,68826,1 3539,FRAMEQA44110,black,what is the color of the guy?,tumblr_nkmcdxUw7y1sl9u6jo1_400,12789,2 3540,FRAMEQA36330,two,how many men are standing together one man moves his head around?,tumblr_nkya8yAVNN1tde1woo1_250,8206,1 3541,FRAMEQA19835,two,how many teams is wearing black and white are skating across the ice holding hockey sticks?,tumblr_nbe1zfc8PP1tkras0o1_500,62556,1 3542,FRAMEQA25327,coffee,what is the girl sitting in the dark drinks?,tumblr_nfz7kmxjde1tssk6do1_400,32004,0 3543,FRAMEQA38251,scratched,what is the man wearing behind his ear?,tumblr_nf4x2c4BCf1tid424o1_250,19280,0 3544,FRAMEQA35522,black,what is the color of the dress?,tumblr_n7xfccgKwl1sjcw61o1_250,51636,2 3545,FRAMEQA37736,two,how many football players are hugging as the celebration?,tumblr_n94g0xApdN1rqb3bqo1_500,96156,1 3546,FRAMEQA17380,three,how many men are holding objects two are clicking red lights?,tumblr_ng8o1nWNXz1u5segmo1_400,76676,1 3547,FRAMEQA4469,white,what is the color of the curtains?,tumblr_nqb79tYlU81utdor9o1_400,83569,2 3548,FRAMEQA32977,drink,what is the young woman on stage taking?,tumblr_nhd7axFTLH1sagouso1_500,71549,0 3549,FRAMEQA34105,black,what is the color of the hair?,tumblr_nappfviAuS1tfuo7co1_400,31319,2 3550,FRAMEQA34133,red,what is the color of the shirt?,tumblr_n9ucnlmCk51qzxorvo1_250,9249,2 3551,FRAMEQA33119,black,what is the color of the dress?,tumblr_nc5svmC3HW1tbppspo1_400,32239,2 3552,FRAMEQA32202,one,how many man is laughing at another man holding a guitar?,tumblr_ndbtxwbsTf1sbnzfro1_250,23081,1 3553,FRAMEQA19866,syrup,what is the person pouring on a stack of pancakes?,tumblr_nl1yi5TXGX1s62it9o1_250,90631,0 3554,FRAMEQA50606,black,what is the color of the hair?,tumblr_mr12up76jT1suye07o1_250,4039,2 3555,FRAMEQA25099,wall,what does the creepy man break?,tumblr_na95y0Ys5c1rjao7ro1_400,99035,0 3556,FRAMEQA2852,car,what falls from the sky and lands on the road?,tumblr_nexxznjybj1sto45zo1_400,42866,0 3557,FRAMEQA8551,two,how many men with black coats are exiting a room?,tumblr_nk32pnnazT1skvgwao1_400,83387,1 3558,FRAMEQA44081,cone,what is the boy eating and smiling?,tumblr_nkkxa7jWy61ts48umo1_500,40066,0 3559,FRAMEQA44457,two,how many people are having an argument in the ocean?,tumblr_nk484h7Rb21tyhr1ho1_400,78825,1 3560,FRAMEQA12744,three,how many young guys in front of microphones and with headphones are laughing?,tumblr_nhpumpvxAx1tawgedo2_500,91438,1 3561,FRAMEQA36293,two,"how many people are fighting , while the larger man breaks up the fight?",tumblr_nokpkycdga1r2buvvo1_250,3855,1 3562,FRAMEQA27032,car,where are two people sitting?,tumblr_njvyypTKbV1uo3x7lo1_400,87486,3 3563,FRAMEQA43300,black,what is the color of the jacket?,tumblr_ncc1ycDVbj1rijrceo1_500,88715,2 3564,FRAMEQA17365,bat,what is the man swinging and struggling with another man?,tumblr_na4kccYkUt1slyjblo1_400,79101,0 3565,FRAMEQA12051,red,what is the color of the chair?,tumblr_niv97maKxN1tapxt5o1_400,58280,2 3566,FRAMEQA51013,black,what is the color of the hair?,tumblr_ngoujoc3wq1t2gwrqo1_400,76940,2 3567,FRAMEQA50119,car,what is passing through water with speed?,tumblr_npdeeniOGl1s06j30o1_400,57148,0 3568,FRAMEQA17378,brown,what is the color of the hair?,tumblr_ni1ean3ue01sg4418o1_250,5756,2 3569,FRAMEQA32546,scooter,what is dog wearing a red cape pushes and jumps on?,tumblr_ndwfzx0hL91tgkdkbo1_250,5671,0 3570,FRAMEQA2671,drives,what drove through the garage with no time at all?,tumblr_n88tfbzgHU1rhy09eo1_500,92569,0 3571,FRAMEQA4112,close,what does the man move to his lips?,tumblr_nra1bqjxbb1tdn56eo1_400,74144,0 3572,FRAMEQA15997,white,what is the color of the shirt?,tumblr_nj462r5ObB1rpx9qeo1_500,56139,2 3573,FRAMEQA46988,two,how many males are wearing hats and chewing gum?,tumblr_nho36xy72u1sfxtxno1_1280,56346,1 3574,FRAMEQA37988,black,what is the color of the shirt?,tumblr_n8qnb2z4Va1teyig6o1_500,95017,2 3575,FRAMEQA28613,luggage,what does the guy put on a luggage rack in a hotel room?,tumblr_noyfaouv1s1tplwgro1_500,60868,0 3576,FRAMEQA1666,four,how many children walk hand in hand with an adult?,tumblr_nq5iztgMBE1upitezo1_400,54129,1 3577,FRAMEQA36767,car,what leaves smoke behind as it races down the course?,tumblr_n8uckhNDnS1to3k6do1_500,66915,0 3578,FRAMEQA29165,two,how many women who appear to be friends are hugging each other and screaming?,tumblr_nr3cvnawGP1tkgy96o1_400,38899,1 3579,FRAMEQA10552,vehicle,where is the woman wearing a blue sweatshirt is riding?,tumblr_nfgljvCbkT1u41fj6o1_250,14703,3 3580,FRAMEQA25102,guitar,what is the very cute boy playing?,tumblr_nhqd3r08hF1tbdxy1o1_400,29884,0 3581,FRAMEQA43992,two,how many people does this show that are sitting on a hard wood floor doing different gestures with their arms?,tumblr_ng39jqAGro1tj86sdo1_400,64069,1 3582,FRAMEQA22760,chair,where is the sad animal sitting?,tumblr_njuw5ruVDR1unixz7o1_400,40086,3 3583,FRAMEQA628,brown,what is the color of the coat?,tumblr_niwdo4WvDN1u967xao1_500,72906,2 3584,FRAMEQA22272,red,what is the color of the shirt?,tumblr_nguc5he8Eg1tp0axfo1_400,32227,2 3585,FRAMEQA40693,two,how many men is standing inside are hugging and kissing?,tumblr_nl24xtN6ei1u39i7yo1_250,5535,1 3586,FRAMEQA40729,room,where does the young man smile cheekily?,tumblr_n8vswusTl91tnyxl4o1_500,76812,3 3587,FRAMEQA46696,black,what is the color of the guy?,tumblr_nnyem6v3Lw1u8l6ewo1_250,87559,2 3588,FRAMEQA31538,dogs,what jumps and plays with her puppies?,tumblr_ne29e5pZmc1sz068fo1_250,40146,0 3589,FRAMEQA36740,lift,what is the man thrown and crashes?,tumblr_nghto1RCpc1ts22kko1_400,81056,0 3590,FRAMEQA32796,two,how many young men one wearing a baseball cap are talking?,tumblr_njzkbhJCQ51sp70bgo1_250,7563,1 3591,FRAMEQA40644,white,what is the color of the box?,tumblr_nbjfm8LunL1tlv2g2o1_400,78926,2 3592,FRAMEQA18110,bird,what is feeding the cat and dog?,tumblr_np5yr0px4O1twfmf3o1_400,18589,0 3593,FRAMEQA22979,monkey,what is looking the hand?,tumblr_nk2vkqraUl1s6zpepo1_250,44090,0 3594,FRAMEQA4591,bird,what is climbing through the cardboard tube?,tumblr_n993yi7TgY1sjuzlno1_400,8582,0 3595,FRAMEQA20498,kitten,what taught to beg for something?,tumblr_np5134IWAi1tpg4boo1_400,33617,0 3596,FRAMEQA49606,dog,what turns around and wags its tail?,tumblr_nffsy8wfSM1t2t9szo1_400,35128,0 3597,FRAMEQA23685,car,what spins out between two trucks on a freeway?,tumblr_nc1g2pJnfJ1sk96t7o1_400,8106,0 3598,FRAMEQA34866,white,what is the color of the shirt?,tumblr_nb45dqeKN21sdbrm9o1_400,66071,2 3599,FRAMEQA21220,two,how many ghost is trying to scare the audience?,tumblr_n8vk28nV921tv6x4go1_500,68505,1 3600,FRAMEQA43315,two,how many men are talking and making hand gestures?,tumblr_nfv8zfjW0v1rwe02ao1_250,45681,1 3601,FRAMEQA50607,horse,what is the horse trainer exercising in a building?,tumblr_n8zd1nDo0B1rwgxlqo1_500,70645,0 3602,FRAMEQA35179,one,how many man throws his hat?,tumblr_nq7ys7Apj91t8s5t0o1_540,81259,1 3603,FRAMEQA3384,car,what is going on the road?,tumblr_nelzs6i5ro1u25ovvo1_400,63645,0 3604,FRAMEQA24794,black,what is the color of the shirt?,tumblr_nf9l0c8Pja1sjxysio1_400,76544,2 3605,FRAMEQA50048,paw,what does the kitten raise towards something?,tumblr_nds8crBvqP1tml03go1_400,53863,0 3606,FRAMEQA24585,one,how many man is talking?,tumblr_ng4jraMcwT1u3gi2vo1_500,89732,1 3607,FRAMEQA49543,black,what is the color of the hair?,tumblr_nbc4qhn5me1tdx46ao1_400,52402,2 3608,FRAMEQA50722,frame,what are the men holding up?,tumblr_newsvqZ4qi1rkvelpo1_400,46170,0 3609,FRAMEQA24481,black,what is the color of the male?,tumblr_ne4mckbaQB1qh2eiuo1_400,66426,2 3610,FRAMEQA3656,shoes,what is the person showing off?,tumblr_njtqv2WV6P1u0alpro1_500,56760,0 3611,FRAMEQA46047,white,what is the color of the shirt?,tumblr_ndxxjq1Fib1smv1p3o1_500,2554,2 3612,FRAMEQA8891,one,how many boy shimmies and smiles?,tumblr_nc7yamQvrO1tg38keo1_250,9035,1 3613,FRAMEQA33790,shirt,what is the guy buttoning up?,tumblr_ncj45x0Ant1sn5krco1_500,76769,0 3614,FRAMEQA49707,three,how many cars raced?,tumblr_nhbrltf1I31tx8mn0o1_400,86057,1 3615,FRAMEQA52044,yellow,what is the color of the top?,tumblr_nciapoyvN51u00hdxo2_500,95757,2 3616,FRAMEQA9363,guitar,what is the man playing and singing into a microphone?,tumblr_nhx7xo7jQW1u6hunpo1_400,31891,0 3617,FRAMEQA27628,bed,where is the woman laying reading a magazine?,tumblr_nc0cdlJuRc1r1rl4fo1_250,8191,3 3618,FRAMEQA43026,black,what is the color of the horse?,tumblr_nj9uwvyjpy1r23fzwo1_500,59214,2 3619,FRAMEQA12905,white,what is the color of the man?,tumblr_nc43dlSitp1qz5yzjo1_500,98023,2 3620,FRAMEQA15332,two,how many girls with pig tails and lean in towards the middle of the table?,tumblr_ngbtze9cdg1u4u0oeo1_400,63492,1 3621,FRAMEQA38590,brown,what is the color of the hair?,tumblr_nfesdbDpzJ1u41fj6o1_250,15439,2 3622,FRAMEQA3293,car,where do two helmeted people sit?,tumblr_ni01txhXte1tx8mn0o1_400,79270,3 3623,FRAMEQA4102,white,what is the color of the top?,tumblr_nde0e5AYBy1r80g0io1_500,16995,2 3624,FRAMEQA47677,two,how many guys are sitting on the roof and talking to one another?,tumblr_nl24faq4tH1uo8kgzo1_500,81844,1 3625,FRAMEQA4412,cigar,what is the man bringing to his mouth?,tumblr_np0q4uRErR1sgyo02o1_540,89856,0 3626,FRAMEQA19100,dog,what is emerging from the large pile of snow?,tumblr_ng4rt94t1g1tdjuqvo1_400,86983,0 3627,FRAMEQA40597,black,what is the color of the shirt?,tumblr_nq513q76F81u3cb3fo1_400,46038,2 3628,FRAMEQA5052,two,how many men hold their faces close to one another?,tumblr_nl0nfx9TmT1tcnublo1_250,23387,1 3629,FRAMEQA42099,dog,what knocks the cat in to a bath tub and the cat jumps back out?,tumblr_nbh3y0lqgx1tuj3bpo1_400,34855,0 3630,FRAMEQA49187,two,how many people are kissing and laughing and smiling?,tumblr_ncjlbfKQeY1qma4ejo1_500,34375,1 3631,FRAMEQA35939,two,how many people kissing and lit only by the small light that one is swinging?,tumblr_npx35lQNlc1tg6dv1o1_500,11124,1 3632,FRAMEQA27691,car,what loses its trunk while driving on a track with several other cars?,tumblr_nen2gpqUlI1tx8mn0o1_400,55482,0 3633,FRAMEQA47269,glasses,what is the girl waving and smiling and wearing?,tumblr_nhklesKZzn1stnum9o1_400,32469,0 3634,FRAMEQA14885,blue,what is the color of the shirt?,tumblr_ndpkdsmBEF1u1graho1_250,9957,2 3635,FRAMEQA23656,blue,what is the color of the shirt?,tumblr_nfck4ufpLo1t1o9tno1_250,27615,2 3636,FRAMEQA9985,bathroom,where are the group of people trying to stop a leak?,tumblr_nguxxvuPLQ1s6sj31o1_400,27403,3 3637,FRAMEQA10872,one,how many woman pouts as she looks another woman in the face?,tumblr_na072o293v1tzs6b2o1_500,92883,1 3638,FRAMEQA38667,microphone,what is the man in a black shirt holding?,tumblr_ndmbc0mImx1tvkq6vo1_250,17162,0 3639,FRAMEQA51259,green,what is the color of the top?,tumblr_n96fzvPIrN1s2wg51o1_500,46532,2 3640,FRAMEQA3571,two,how many cats are playing with each other in a room?,tumblr_nkqx3b5Le21sz068fo1_250,24078,1 3641,FRAMEQA41000,black,what is the color of the playing?,tumblr_npvd59Kkj41urzqxmo1_500,101769,2 3642,FRAMEQA32635,airplanes,what are flying over the desert?,tumblr_nnq4tzM7M51urqm0mo1_500,85138,0 3643,FRAMEQA48953,guitar,what does the guy with a plaid shirt sing and plays?,tumblr_ncdfc4Icvr1r1ga5qo1_400,56612,0 3644,FRAMEQA10459,bear,what is holding the baby panda bear?,tumblr_nc5pmkrxPP1tm39w8o1_500,99498,0 3645,FRAMEQA8,two,how many people hold their hands to their face while coughing?,tumblr_nff9h9wrPu1u0tsh3o1_400,62154,1 3646,FRAMEQA44211,dog,what is being confused and tilting his adorable head?,tumblr_nh0sftU2oI1sgc1txo1_400,1442,0 3647,FRAMEQA40136,two,how many hockey players are hugging each other on the ice?,tumblr_nhqm4eBnny1qhxpzlo1_500,67200,1 3648,FRAMEQA26801,window,what is the man with black hair glancing out?,tumblr_nf8xogFyv21rcxrido1_400,45115,0 3649,FRAMEQA49703,building,"what does the cat jump to a door latch , opens the door , and the cat and four dogs enter through the door?",tumblr_ngzhkq39Nz1twdzc1o1_250,8947,0 3650,FRAMEQA21464,pigeon,what is moving up and down?,tumblr_n9nfflcHiD1sib7jco1_250,7707,0 3651,FRAMEQA35570,blinks,what shut both eyes simultaneously?,tumblr_nc9bkrCAkG1tjmhcco1_500,89890,0 3652,FRAMEQA43161,makeup,what is looking left and right?,tumblr_nr75qe0zTP1r4lhi3o1_400,29492,0 3653,FRAMEQA13520,phone,what is the woman in an office answering?,tumblr_nfxauxAEZA1ssgk4vo1_500,65252,0 3654,FRAMEQA31691,white,what is the color of the cars?,tumblr_ne0jf2Dmtj1tr5tuwo1_500,71919,2 3655,FRAMEQA39218,dog,what does the big dog let out of it 's cage?,tumblr_ncx9u3ivlb1tdmffyo1_400,101281,0 3656,FRAMEQA26868,white,what is the color of the sports?,tumblr_n9fl1v6DiP1rn8lhxo1_500,95276,2 3657,FRAMEQA19326,two,how many men are walking past the woman in a hallway?,tumblr_nr9rcq0fb11qewsw4o1_540,41991,1 3658,FRAMEQA22371,crotch,what is he holding?,tumblr_n94qcs8lKc1t0ud6co1_250,21812,0 3659,FRAMEQA7071,white,what is the color of the jacket?,tumblr_nr6stqpbWn1uazlgho1_400,51100,2 3660,FRAMEQA16574,cat,what runs around on white bed sheets?,tumblr_ne5w7sROwX1tjdvfuo1_400,80200,0 3661,FRAMEQA35213,two,how many men are walking towards each other and then hug?,tumblr_n94g0xApdN1rqb3bqo1_500,96156,1 3662,FRAMEQA6924,purple,what is the color of the jacket?,tumblr_nb0xfl7yCv1r687lto1_400,31907,2 3663,FRAMEQA6117,black,what is the color of the jacket?,tumblr_nkn67mXLk11qhddxpo6_250,43915,2 3664,FRAMEQA3732,two,how many men are pretending to dance in the street and one breaks away?,tumblr_ndoptcS3Kt1u11azoo1_500,60572,1 3665,FRAMEQA42662,window,what are two men climbing out and one falls?,tumblr_nb2myzj0DY1tkpzw0o1_400,18190,0 3666,FRAMEQA25876,black,what is the color of the hat?,tumblr_ni0vbrOZl91tqwxyeo1_250,8669,2 3667,FRAMEQA31497,dishwasher,what are the girl and guy loading with dishes?,tumblr_n7cuepMM7D1rs656zo1_500,7366,0 3668,FRAMEQA37794,jacket,what is the man standing up unbuttons and takes it off?,tumblr_njvri85Mv81u33e4bo1_500,19169,0 3669,FRAMEQA9208,cat,what is walking over the narrow platform above water?,tumblr_ndwu84DGXF1slj978o1_400,40897,0 3670,FRAMEQA36154,pillow,what is the handsome young guy hugging?,tumblr_nhgtj3FQM21rouslso1_400,87961,0 3671,FRAMEQA6732,cat,what is falling off of the windowsill?,tumblr_nrbcaupBvH1tfnm8co1_400,10153,0 3672,FRAMEQA20418,car,what gray is running on the road?,tumblr_nf2n9dCyxP1u25ovvo1_400,63626,0 3673,FRAMEQA45768,necklace,what is the man wearing a black tank top is spinning around his neck?,tumblr_na93v8P17F1rnq510o1_500,50534,0 3674,FRAMEQA25302,blue,what is the color of the eyes?,tumblr_nq6tt8iXcI1t0jtguo2_1280,99404,2 3675,FRAMEQA35327,black,what is the color of the woman?,tumblr_n8yb524aiH1soqa55o1_400,33912,2 3676,FRAMEQA49482,white,what is the color of the kitten?,tumblr_ncz194PjME1rjh61io1_250,801,2 3677,FRAMEQA45932,car,what is spinning as it goes in the turn?,tumblr_no430e8ehj1tx8mn0o1_400,65298,0 3678,FRAMEQA1952,car,what trunk opens and the sunroof comes out?,tumblr_n9zu57mMW51t36lbdo1_400,53950,0 3679,FRAMEQA43110,cat,what is drinking from the pool when a person jumps up from swimming it jumps and runs away?,tumblr_ng7zzq1GXt1qiikiio1_500,92621,0 3680,FRAMEQA42701,pup,what is getting the good head rub?,tumblr_nfdl028aPE1rufswgo1_400,25068,0 3681,FRAMEQA20563,red,what is the color of the shirt?,tumblr_nbcgxcAnLa1qc6y5wo1_400,33510,2 3682,FRAMEQA27562,dog,what does the woman hug and bites?,tumblr_n9v3fohGft1t3eg01o1_400,30777,0 3683,FRAMEQA51183,black,what is the color of the man?,tumblr_nfokkyTDI41qf3bxio1_500,78723,2 3684,FRAMEQA7703,black,what is the color of the shirt?,tumblr_ncn4ck340P1sj24puo1_250,5283,2 3685,FRAMEQA17758,skills,what is the girl showing off?,tumblr_n9dype7riV1tfbj8go1_500,43494,0 3686,FRAMEQA7907,two,how many men in black run their hands down the front of a pop star who has just lifted his black vest up?,tumblr_nau25zCJpy1tee2zqo1_500,94641,1 3687,FRAMEQA32525,blue,what is the color of the dress?,tumblr_nfdccwWcd01r4nut8o1_500,74829,2 3688,FRAMEQA32505,red,what is the color of the woman?,tumblr_nl08fcxHX31upy801o1_500,55119,2 3689,FRAMEQA30200,two,how many men walk toward the woman?,tumblr_n9snmfaad41rlw2xio1_250,31304,1 3690,FRAMEQA8989,five,how many people dressed as punks are sitting and chatting in a stair well?,tumblr_nb4v6xHBqe1tkrdioo1_250,44889,1 3691,FRAMEQA26728,two,how many people are doing the cool levitating trick?,tumblr_nh3sdhA9bu1u5c0f8o1_500,80181,1 3692,FRAMEQA40961,cars,what are colliding with each other?,tumblr_nazoqqzPK61rcr3teo1_250,84564,0 3693,FRAMEQA6055,brown,what is the color of the puppy?,tumblr_n9jzweddcj1qdifbfo1_500,75198,2 3694,FRAMEQA15359,two,how many men are crying and touching their foreheads together?,tumblr_ni20ssyPb91u84fnpo1_400,85079,1 3695,FRAMEQA42003,white,what is the color of the shirt?,tumblr_njo0rmCdNd1u45agco1_250,14022,2 3696,FRAMEQA9853,red,what is the color of the jacket?,tumblr_ngr2h0X78F1tckyfno1_400,30725,2 3697,FRAMEQA8183,sleeves,what is the man rolling up and walking away from a young woman?,tumblr_na85j1b4mr1t62d7zo1_250,15937,0 3698,FRAMEQA8172,blue,what is the color of the sky?,tumblr_narmwnsQzg1rtbkxgo1_400,20178,2 3699,FRAMEQA15903,bedroom,where is the man holding his arm up and speaking?,tumblr_nde0meprcs1s7yxh6o1_400,80842,3 3700,FRAMEQA32395,red,what is the color of the tie?,tumblr_nknbdinpz91sph7v6o1_400,30470,2 3701,FRAMEQA25073,black,what is the color of the clothes?,tumblr_n9hvtzkimT1tirskjo1_400,39158,2 3702,FRAMEQA48782,brown,what is the color of the dress?,tumblr_n9hf7vt5UL1tiqx4yo1_250,15348,2 3703,FRAMEQA13920,cupcakes,what is the woman holding while looking from one to the other?,tumblr_npbu1izdzO1urprh7o1_400,41674,0 3704,FRAMEQA26092,cat,what plays with an orange cats tail?,tumblr_n9abseuY0C1slj978o1_400,70847,0 3705,FRAMEQA42352,red,what is the color of the sweatshirt?,tumblr_nh1kirX2YW1t4ti4zo1_250,5940,2 3706,FRAMEQA25965,drums,what is the man in black playing?,tumblr_na0mw3gkjB1qlxas3o1_400,68298,0 3707,FRAMEQA26268,model,what is caught off guard during her performance?,tumblr_ne0phzvXyf1si9mq4o1_500,84796,0 3708,FRAMEQA7787,black,what is the color of the jacket?,tumblr_nn0wlydgs81spn3uuo1_1280,58210,2 3709,FRAMEQA19034,cars,what are driving with one in the front and one in the back?,tumblr_nr9op5Q2rg1unyhx2o1_400,78234,0 3710,FRAMEQA38445,ties,what are the group of boys walking down the hallway and undoing?,tumblr_ndcfe5F1iy1s2t7gvo1_500,88875,0 3711,FRAMEQA3344,cigarette,what does the man smoke and blows out smoke?,tumblr_n939x61M6o1s75d81o1_400,65578,0 3712,FRAMEQA2724,two,how many men are embracing and kissing each other indoors?,tumblr_ng66xtlMK21t7a8jmo1_400,98788,1 3713,FRAMEQA7545,white,what is the color of the chairs?,tumblr_n9art5oaA51r4s9t4o1_250,35466,2 3714,FRAMEQA37192,cat,what is on the table and jumps off the table?,tumblr_nfcd09xbXE1tdjuqvo1_400,16291,0 3715,FRAMEQA49669,black,what is the color of the guy?,tumblr_nk6r6tPi0N1sufrqro1_500,63753,2 3716,FRAMEQA6253,red,what is the color of the shirt?,tumblr_na5ataOKNF1ra19auo1_250,32238,2 3717,FRAMEQA38917,flags,what is the group of dancers turning?,tumblr_nnwzkgSJFc1qg0or6o1_400,62997,0 3718,FRAMEQA19979,black,what is the color of the hair?,tumblr_nf5vio91dp1u3ctzeo1_400,33803,2 3719,FRAMEQA49929,two,how many young men look at each other and smile?,tumblr_nkjeasMqCh1up0xtfo1_500,101105,1 3720,FRAMEQA9748,circle,what is the woman making with dough?,tumblr_nedtlpS43B1trwdnlo1_400,42030,0 3721,FRAMEQA9073,cat,what is walking on the rotating circle?,tumblr_nrjzfx6FL41uz06r7o1_400,13614,0 3722,FRAMEQA27400,white,what is the color of the shirt?,tumblr_nb791wIAkg1rx36jdo1_250,10773,2 3723,FRAMEQA24318,black,what is the color of the shirt?,tumblr_na6alb5Ca61qjpqono1_400,8474,2 3724,FRAMEQA43071,two,how many dark haired girls are standing and one hugs the other?,tumblr_nqshzrxEcJ1tcip37o1_250,15556,1 3725,FRAMEQA16843,puppy,what is jumping and falls off the wall?,tumblr_ncyjsnTzTm1tty0voo1_400,56199,0 3726,FRAMEQA19967,cigarette,what is the man smoking in front of a bus?,tumblr_nl2dq7GgNi1r967i1o1_400,63199,0 3727,FRAMEQA31094,black,what is the color of the pants?,tumblr_nav1brsK0W1sjoqhwo1_400,63986,2 3728,FRAMEQA18986,puppy,what is trying to play with the cat by biting its ear?,tumblr_nejxcpZ7Tn1tbo2gbo1_400,48764,0 3729,FRAMEQA43394,two,how many guys are laughing and cracking up?,tumblr_nb77vkeQkn1s2l982o1_500,63362,1 3730,FRAMEQA22647,horse,what is someone riding through a field outside?,tumblr_n9t8801hEM1qc5bc7o1_500,74344,0 3731,FRAMEQA16572,modeling,what is the woman and a man is talking?,tumblr_nk8hramQFg1uob0pko1_400,36914,0 3732,FRAMEQA13173,gun,what is the policeman waving toward a very large woman who falls down in the street?,tumblr_nmrvpx2otm1usmtiho1_250,21506,0 3733,FRAMEQA31089,two,how many men are talking to each other and smiling?,tumblr_nhk3b9NsJo1qbpuo2o1_500,88888,1 3734,FRAMEQA47403,circle,what is the young man writing?,tumblr_ni0mrhhy7K1t68nnmo1_500,94842,0 3735,FRAMEQA1644,two,how many men in black vests are hugging each other?,tumblr_n9vuv0Bgll1ticpqdo1_400,57264,1 3736,FRAMEQA19238,ball,what did the man in a gray shirt throw at the basket?,tumblr_ndl8pvG3At1sklh5yo1_500,15227,0 3737,FRAMEQA1481,yellow,what is the color of the shirt?,tumblr_nk8n38zP5b1unhekuo1_400,66354,2 3738,FRAMEQA14874,cat,what sprays the fire extinguisher in a mans face?,tumblr_ncizfxCBrD1tk8jwao1_400,60971,0 3739,FRAMEQA7303,white,what is the color of the shirt?,tumblr_nn2qfrcFhQ1tlg6slo1_250,15494,2 3740,FRAMEQA29052,brown,what is the color of the hair?,tumblr_nacm19mtDu1thtwwro1_250,39579,2 3741,FRAMEQA17566,puppy,what is scratching at the floor?,tumblr_nc9l9ewvnn1rm95kgo1_400,42806,0 3742,FRAMEQA14334,bath,what is the parakeet taking under a stream of water?,tumblr_nblj3dVAIl1sm013wo1_400,65862,0 3743,FRAMEQA47084,white,what is the color of the boy?,tumblr_nf2uu3uHFS1ss66xxo1_250,12981,2 3744,FRAMEQA18300,two,how many people in costumes stand opposite each other and play guitars?,tumblr_n9jeioN38z1r26tq5o1_250,5815,1 3745,FRAMEQA19151,clothing,what is the man dancing and moving around?,tumblr_ng167k0goi1rk8pnlo1_250,10724,0 3746,FRAMEQA52557,two,how many women are in the hot bath surrounded by candles?,tumblr_nqxdsn2yZB1r2lnvfo1_400,26152,1 3747,FRAMEQA13402,white,what is the color of the interrupts?,tumblr_nhs1biycNX1tktlyio1_400,82362,2 3748,FRAMEQA37221,black,what is the color of the hugs?,tumblr_ney67x8wtj1qememvo1_400,22473,2 3749,FRAMEQA52611,dog,what licks water from the running faucet?,tumblr_na7ortnyJB1s0nx6go1_100,4838,0 3750,FRAMEQA10844,brown,what is the color of the hair?,tumblr_nqljzrYT1E1utakepo1_500,62447,2 3751,FRAMEQA17774,jet,what attempts to land on the runway?,tumblr_n8q0g7y49C1rk1fx6o1_400,25285,0 3752,FRAMEQA17100,black,what is the color of the clothing?,tumblr_nqspfnDHiF1rsp6cpo1_400,19148,2 3753,FRAMEQA244,blue,what is the color of the shirt?,tumblr_na2llnbU4P1qkelnfo1_400,65644,2 3754,FRAMEQA1018,stick,what is the person holding with a hand?,tumblr_ncgl6t3yLm1tqwtb6o1_500,99002,0 3755,FRAMEQA42316,green,what is the color of the leaves?,tumblr_ndcvis8jts1tbcrm5o1_250,3820,2 3756,FRAMEQA13913,black,what is the color of the car?,tumblr_n6g89evyVF1qhzavho1_r1_400,47650,2 3757,FRAMEQA13872,dog,what is lifting his head up out of a pile of snow?,tumblr_ncj1cj63rn1trxml2o1_500,79343,0 3758,FRAMEQA27253,black,what is the color of the necklace?,tumblr_nac7r67PCz1ttrqwxo1_250,6638,2 3759,FRAMEQA2117,two,how many young men are sitting and laughing?,tumblr_nirebdaFNu1rzaapno1_500,87200,1 3760,FRAMEQA35898,warehouse,where is the man performing spinning break dance moves?,tumblr_nq6nzcIWOL1uyimcco1_500,96614,3 3761,FRAMEQA977,puppy,what jumps and tries to climb over the wall?,tumblr_ng6a7uQ9h71slj978o1_400,48977,0 3762,FRAMEQA30745,sword,what is the man in face paint swimming?,tumblr_nk7j7yiaRx1qivt11o1_500,97728,0 3763,FRAMEQA24942,car,what is the man in a christmas hat driving?,tumblr_ngtpdn8oHz1s0w3iqo1_400,57885,0 3764,FRAMEQA17586,three,how many people throw the fourth person into the water?,tumblr_nay02vNVDY1thjycro1_1280,55749,1 3765,FRAMEQA23167,makeup,what is the lady with long dark colored hair showing off?,tumblr_nr8qs2rHGr1u5g8bjo1_400,1222,0 3766,FRAMEQA35259,two,how many man are on stage singing and playing?,tumblr_nf7t5vzyxn1s8a8w8o1_400,63065,1 3767,FRAMEQA25256,horse,what blinks and then looks away?,tumblr_ndm302Gvzr1srpy25o1_500,56698,0 3768,FRAMEQA6230,street,where is the boy with brown jacket running?,tumblr_nc8zxwAEVB1tmze3vo1_400,64410,3 3769,FRAMEQA26959,red,what is the color of the lipstick?,tumblr_nfd11g9m741tm2ntoo1_500,67219,2 3770,FRAMEQA1650,tortillas,what is the woman making on a wooden table?,tumblr_nedtlpS43B1trwdnlo1_400,42030,0 3771,FRAMEQA14285,room,where is the guy playing the guitar?,tumblr_nhqd3r08hF1tbdxy1o1_400,29884,3 3772,FRAMEQA43262,camel,what opens its mouth and startles a man?,tumblr_n9r1hmflic1tir7o2o1_400,24798,0 3773,FRAMEQA50113,boat,where does the man float away on the sea?,tumblr_nr45p0uKof1uaugwlo1_250,31377,3 3774,FRAMEQA593,blue,what is the color of the eyes?,tumblr_nazjjgoRKZ1tk5zero1_500,69829,2 3775,FRAMEQA8243,black,what is the color of the box?,tumblr_nbplrtZnS81tbjfazo1_400,41760,2 3776,FRAMEQA14102,one,how many woman is smoking while another woman is playing with her hair?,tumblr_nfplbjsvOQ1u4bx69o1_400,85920,1 3777,FRAMEQA14187,blue,what is the color of the uniforms?,tumblr_n9p40kKIrP1s2ir5ko1_500,88309,2 3778,FRAMEQA43856,two,how many girls run towards each other while holding big balls and the balls bounce off?,tumblr_nemookTxfy1u359i4o1_400,38122,1 3779,FRAMEQA19779,car,what is chasing down the motorcycle on a road?,tumblr_nhlbtylYD61t4k3lzo1_250,93530,0 3780,FRAMEQA44793,yellow,what is the color of the bag?,tumblr_n8sopfHH201tbn1tto1_400,68160,2 3781,FRAMEQA15503,two,how many young men in a bedroom are making weird faces?,tumblr_n9vuv0Bgll1ticpqdo1_400,57264,1 3782,FRAMEQA6866,black,what is the color of the shirt?,tumblr_ndj80jP9UY1sfnh08o1_250,76857,2 3783,FRAMEQA25127,dogs,what jump up and run across the floor?,tumblr_nk3riuu61q1rojld8o1_400,79952,0 3784,FRAMEQA38794,one,how many man talks while one man moves the fish tattoo on his arm?,tumblr_naopjceBs01rar35do1_250,5248,1 3785,FRAMEQA42189,three,how many boys laughed together inside of the room?,tumblr_nhpumpvxAx1tawgedo2_500,91438,1 3786,FRAMEQA39344,brown,what is the color of the hair?,tumblr_ndb37uXXWs1rk6emro1_250,22358,2 3787,FRAMEQA28577,teapot,what is the lady with the red hair and pink shirt holding?,tumblr_ngydaduWj01skjjtto1_250,45622,0 3788,FRAMEQA35699,two,how many people exercise while kicking their legs outward?,tumblr_ncfde03d5t1qznclso1_500,40293,1 3789,FRAMEQA47322,microphone,what is the man in a white shirt waving?,tumblr_n90ljfXkjj1si20l6o1_250,46317,0 3790,FRAMEQA28433,car,what is losing control between two lorries?,tumblr_nc1g2pJnfJ1sk96t7o1_400,8106,0 3791,FRAMEQA50325,two,how many woman in sunhats and bikinis and a man are sailing on a boat?,tumblr_nbo1yyTZnj1qjatdbo1_500,59890,1 3792,FRAMEQA11394,three,how many people with long hair are singing while closing their eyes?,tumblr_n948aoVVp91qfwpqqo1_500,44318,1 3793,FRAMEQA9441,three,how many men are polishing the car one is shoving another away?,tumblr_nqsb78BSRH1u03tmro1_400,76894,1 3794,FRAMEQA29045,brown,what is the color of the hair?,tumblr_ne19bcaQes1tkh11do1_500,58483,2 3795,FRAMEQA8862,bow,what is the boy holding and pointing?,tumblr_nh3sxvWBpy1rl2njso1_400,77703,0 3796,FRAMEQA23589,car,what was wrecking and almost crushed the hero?,tumblr_ndvwznqbN61u04yxso1_500,98375,0 3797,FRAMEQA40859,red,what is the color of the shirts?,tumblr_ndkvaxBCbI1t6t8bgo1_500,95583,2 3798,FRAMEQA15107,barbel,what is the woman with only a single arm lifting?,tumblr_nffjb8ayhY1tw8vf9o1_400,14879,0 3799,FRAMEQA9598,cat,what is sitting in the sink with its head under a faucet lapping at the running water as it rolls off its nose?,tumblr_ng2hhrvC6B1slj978o1_400,19523,0 3800,FRAMEQA31603,black,what is the color of the man?,tumblr_ngvhms78FN1qkzi04o1_250,1806,2 3801,FRAMEQA44956,cartwheel,what does the woman do using a pole?,tumblr_nkyjemkHsE1t086keo1_250,53385,0 3802,FRAMEQA17679,dog,what is playing on the bad and slides off?,tumblr_nflm4phy0P1u4txqeo1_250,27288,0 3803,FRAMEQA8472,musician,what is playing on stage while enjoying himself?,tumblr_nimd7uus8Z1u2pml6o1_400,54508,0 3804,FRAMEQA24551,red,what is the color of the dress?,tumblr_nefbbzoLcn1ts89who1_400,25681,2 3805,FRAMEQA3605,black,what is the color of the man?,tumblr_njvociiGrl1u2vubao1_400,82737,2 3806,FRAMEQA28257,pool,where is the man with black hair swimming?,tumblr_ngoujoc3wq1t2gwrqo1_400,76940,3 3807,FRAMEQA34887,cat,what is underneath the glass table trying to eat the food?,tumblr_nfk0cw83nY1tdmffyo1_250,3658,0 3808,FRAMEQA27445,hat,what is the man with dark skin holding with his right hand?,tumblr_nlmw5fND5l1uqfzp4o1_500,42549,0 3809,FRAMEQA52764,black,what is the color of the jacket?,tumblr_nhddwoPJnz1tdvdxeo1_250,51543,2 3810,FRAMEQA11381,black,what is the color of the hair?,tumblr_nqg0gnDP7v1uxh7dyo1_540,101254,2 3811,FRAMEQA35232,cat,what tries to attack its friend but is attacked in return?,tumblr_nr78fdPO5w1slwrsuo1_400,43420,0 3812,FRAMEQA12194,two,how many woman is this dancing together on a dance floor?,tumblr_n93jmiVDRT1ruob34o1_250,67105,1 3813,FRAMEQA3234,three,how many young men were reading the book?,tumblr_njgn0ykrlJ1rjgw6yo1_250,1670,1 3814,FRAMEQA46470,black,what is the color of the suit?,tumblr_nqt4ms9xkH1u54uvqo1_500,88116,2 3815,FRAMEQA44381,blue,what is the color of the letters?,tumblr_nqveo9P2as1tae455o1_400,66327,2 3816,FRAMEQA26761,two,how many guys are dancing energetically on the stage?,tumblr_ncilobU0pA1t151ozo1_400,63596,1 3817,FRAMEQA24389,door,what is the man opening?,tumblr_nf2cavLMyV1sbpxeho1_400,38123,0 3818,FRAMEQA19786,rhino,what is this chasing some people?,tumblr_njsd1xvdMx1twhh4bo1_400,37070,0 3819,FRAMEQA30111,bird,what is on the train and walks out the door when it opens?,tumblr_ne9r1sfDAc1qzcbnmo1_250,6221,0 3820,FRAMEQA40559,two,how many dogs lay on the couch and looked away?,tumblr_neqoabbUAH1s9wp82o1_400,30264,1 3821,FRAMEQA17038,dog,what greets the mailman and takes the mail into the house?,tumblr_nc0bml1h561t7io47o1_250,14250,0 3822,FRAMEQA50238,three,how many men is wearing pink feathered headpieces dance around with microphones in their hands?,tumblr_nbxzym9Khf1t0ojyvo1_500,95020,1 3823,FRAMEQA48055,exits,what does the pigeon run?,tumblr_ne9r1sfDAc1qzcbnmo1_250,6221,0 3824,FRAMEQA24571,cat,what watches fish being removed from a bowl?,tumblr_npy4c6ERuh1uv0y2ro1_250,13331,0 3825,FRAMEQA30016,black,what is the color of the clothes?,tumblr_nq9laels8z1stktiko1_400,37163,2 3826,FRAMEQA41926,cat,what is lounging at something excitingly?,tumblr_ncql8t7uii1u073goo1_400,33354,0 3827,FRAMEQA39665,jacket,what is blinking her eyes?,tumblr_nf3jh1OWsz1rvlovyo1_500,100312,0 3828,FRAMEQA11775,cars,what turn the corner fast?,tumblr_ne0jf2Dmtj1tr5tuwo1_500,71919,0 3829,FRAMEQA42910,black,what is the color of the underwear?,tumblr_ne3dghnoGa1r1endqo1_250,43714,2 3830,FRAMEQA39156,store,where is the man drinking alcohol?,tumblr_nhzgtdxyFO1u5hpvco1_250,53677,3 3831,FRAMEQA12633,two,how many men sit and make funny faces and smile?,tumblr_nd0fwvSQfh1tlyyvzo1_400,25188,1 3832,FRAMEQA51883,two,how many guys are warming up while in a batting cage?,tumblr_np0kxcHgTJ1uvdb8xo1_400,62177,1 3833,FRAMEQA2606,cars,what are racing side by side and spins out?,tumblr_npgmilwWnF1tx8mn0o1_400,91034,0 3834,FRAMEQA26196,dog,what does the man pick up and the woman holds up a box of cupcakes?,tumblr_nc2v5yMTI61tibdkoo1_500,70971,0 3835,FRAMEQA36257,piano,what is the man hitting with a bat?,tumblr_naxep6N7nq1td6onfo1_500,52854,0 3836,FRAMEQA41242,guitar,what is the man giving another man and he starts playing it?,tumblr_nefe46IPQf1tjiaa2o1_400,33997,0 3837,FRAMEQA52042,chimpanzee,what is running and jumping on furniture in a house?,tumblr_naug822mv91tgbziwo1_400,96877,0 3838,FRAMEQA31752,black,what is the color of the cap?,tumblr_nfmdmzflNl1qdpugqo1_400,82072,2 3839,FRAMEQA25391,black,what is the color of the hair?,tumblr_ndfdd3dcX31u1otrso1_500,68407,2 3840,FRAMEQA35310,robot,what is hanging with the light on its head?,tumblr_nivk6uk2XY1u9wwjjo1_500,91309,0 3841,FRAMEQA27279,mask,what is the man wearing and looking around?,tumblr_n8sgrlcrxP1r26e3ho1_250,15490,0 3842,FRAMEQA47240,ball,what is the man with the blue shirt and blue bandanna around his head playing?,tumblr_ndl8pvG3At1sklh5yo1_500,15227,0 3843,FRAMEQA7381,two,how many boys rest against each other and one kisses the other on the head?,tumblr_no41byJTGq1uqpzm6o1_400,56702,1 3844,FRAMEQA49215,black,what is the color of the hat?,tumblr_nd9duy7IEm1trwttjo1_250,1591,2 3845,FRAMEQA14882,two,how many people is sitting on a couch are talking and laughing?,tumblr_nb2wtt5EEO1tnlurpo1_250,12826,1 3846,FRAMEQA32996,cigarette,what is the man sitting in front of some rocks and smoking?,tumblr_nggodxoEKB1t62uudo1_500,39362,0 3847,FRAMEQA42918,car,what slides off the racetrack and spews smoke?,tumblr_nadk481D381tx8mn0o1_400,53118,0 3848,FRAMEQA17778,pole,what is the guy with the white sweat pants working?,tumblr_nfq8lcxtjj1tsann9o1_r2_500,40935,0 3849,FRAMEQA42174,frog,what reacts to the fingertip approaching him?,tumblr_nr4ssypv3Y1uaujqao1_400,35099,0 3850,FRAMEQA11798,white,what is the color of the lady?,tumblr_nc08s26xB11r8z647o1_250,6488,2 3851,FRAMEQA32555,bear,what did the man with long hair put in his shirt?,tumblr_nbaeccyznw1r1vxywo1_250,2889,0 3852,FRAMEQA9870,tire,what is the car going on the road and is spinning?,tumblr_nbo3syb9wg1rhy09eo1_500,98035,0 3853,FRAMEQA37236,jacket,what is the young man wearing and singing?,tumblr_n8xmlnuVnk1ru8amgo1_400,72331,0 3854,FRAMEQA8541,two,how many men are looking focused and removing cloaks?,tumblr_nmz3n9aYMe1rxmp17o1_500,97109,1 3855,FRAMEQA33045,two,how many guys are making the hand touch between a glass?,tumblr_nb9btuooRz1r9b1ifo1_500,50904,1 3856,FRAMEQA37631,brown,what is the color of the man?,tumblr_nrkvp0sAJs1ub68qdo1_250,10647,2 3857,FRAMEQA51610,purple,what is the color of the bag?,tumblr_ndv2l5YD0M1rhexgoo1_250,25553,2 3858,FRAMEQA19955,yellow,what is the color of the hair?,tumblr_nk039jetLe1r0fn19o1_500,91871,2 3859,FRAMEQA22333,two,how many girls with long hair are leaning forward and smiling?,tumblr_ng9sg3VuL11t107ayo1_400,94319,1 3860,FRAMEQA47478,tie,what are two men laughing together as one waves?,tumblr_nhvvdlFwGZ1qdbe91o1_400,77610,0 3861,FRAMEQA43299,cap,what is the man wearing and smiling?,tumblr_nb1tyhgYEn1sda6szo1_400,78109,0 3862,FRAMEQA30853,car,what crashes and spins out of control?,tumblr_nour3aj5RW1tx8mn0o1_400,77014,0 3863,FRAMEQA41497,car,what spins around as the second car falls down?,tumblr_nf8ydiZBPJ1ti9lxjo1_500,68244,0 3864,FRAMEQA3975,ski,what is the man wearing a white helmet is holding?,tumblr_nitvxeekfD1rqcmheo1_250,18914,0 3865,FRAMEQA13340,cat,what is falling asleep while its tail wags?,tumblr_n8x3mbPjxt1qh3zyto1_400,71069,0 3866,FRAMEQA38427,two,how many wrestlers perform the stunt in a ring as a crowd watches?,tumblr_npp2j48dG51sbzhteo1_400,67073,1 3867,FRAMEQA40887,wall,what is the man dancing and kicking?,tumblr_nrirwkdIzJ1rkx8z0o1_500,26907,0 3868,FRAMEQA46567,pajama,what is the woman wearing?,tumblr_n9uy32nVrJ1twwb4zo1_400,31730,0 3869,FRAMEQA46289,white,what is the color of the shirt?,tumblr_nbpt5t2YIF1qbsctso1_500,83889,2 3870,FRAMEQA16670,woodchucks,what are riding on an automatic vacuum while it is running?,tumblr_n8lnh1FJTf1tgkdkbo1_500,38863,0 3871,FRAMEQA12323,one,how many woman is eating while another woman is talking?,tumblr_nitnyhCyvG1u7sc67o1_500,97234,1 3872,FRAMEQA461,guitar,what is the guy playing and singing in a stage?,tumblr_nb39fmBCPf1t1kdtqo1_400,9677,0 3873,FRAMEQA13879,blue,what is the color of the shirt?,tumblr_nan6m7zxjt1tk128jo1_500,99356,2 3874,FRAMEQA26536,rodent,what rubs its mouth on someone 's wrist?,tumblr_ngqi9pDqn61r3fht5o1_250,26058,0 3875,FRAMEQA4045,two,how many guys are laughing?,tumblr_ndpvxa0eJz1qfz6d1o1_400,22517,1 3876,FRAMEQA27518,dog,what is eating the strand of food?,tumblr_n91mzrxl5h1r4phxao1_400,81135,0 3877,FRAMEQA20576,chair,where does the guy make many funny faces?,tumblr_nh5v0qIgaK1tynqeho1_400,53008,3 3878,FRAMEQA37918,office,where is the crazy woman dancing?,tumblr_nhhl4xUkM11tiblojo1_250,22582,3 3879,FRAMEQA23892,black,what is the color of the swings?,tumblr_nclbo4udPh1s3h0ixo1_400,12797,2 3880,FRAMEQA49103,black,what is the color of the shirts?,tumblr_nhekqkkOoT1rt3qmdo1_250,24464,2 3881,FRAMEQA34827,dogs,what run in the same direction together?,tumblr_n92lo9JEvZ1tfz9ppo1_400,52245,0 3882,FRAMEQA4744,cat,what does the woman look out the door and comes in through the snow?,tumblr_nkaj46inhY1tya7mxo1_400,63930,0 3883,FRAMEQA36696,three,how many happy children does this show in the snow?,tumblr_n92n8zlXH21sqdix6o1_250,43885,1 3884,FRAMEQA23549,lanes,what is the red car changing on a busy highway?,tumblr_noipe7K8wn1uvy8rfo1_500,87621,0 3885,FRAMEQA3987,red,what is the color of the carpet?,tumblr_njn3igFQG31u6o3qyo1_500,92191,2 3886,FRAMEQA25547,candle,what is glowing within the mosaic holder?,tumblr_nbl18fV1iz1tjqkt0o1_400,64938,0 3887,FRAMEQA32573,warehouse,where are the group of eight men dancing?,tumblr_n939ymGjYz1teogu2o1_400,67163,3 3888,FRAMEQA3778,dog,what watches as the man struggles in the water?,tumblr_nbuzvzDFcu1tdjuqvo1_400,42452,0 3889,FRAMEQA46691,two,how many men are dancing while lights behind them are flashing?,tumblr_ncilobU0pA1t151ozo1_400,63596,1 3890,FRAMEQA18923,car,what is driving away with glowing red tail lights?,tumblr_ncclh5CTka1th986vo1_400,3350,0 3891,FRAMEQA8027,white,what is the color of the shirt?,tumblr_nrcglziXiE1r0rbcso1_500,67575,2 3892,FRAMEQA19942,two,how many men are standing in the snow talking?,tumblr_nhi5q5NVDx1qdo688o1_500,78008,1 3893,FRAMEQA25573,banana,what is the guy in a plaid shirt eating?,tumblr_niob33jK5s1tdmffyo1_250,73602,0 3894,FRAMEQA45750,black,what is the color of the suit?,tumblr_ndz6v9plHU1s4gcyso1_500,86796,2 3895,FRAMEQA37107,tag,what is the man in a black shirt showing?,tumblr_nbchtjXGlv1qchnreo1_400,86899,0 3896,FRAMEQA14908,alley,where are people hugging each other and kissing each other?,tumblr_nksuzg00mr1t7an45o1_400,41508,3 3897,FRAMEQA33686,black,what is the color of the blazer?,tumblr_nqyw6gulsY1s7oft8o1_250,13026,2 3898,FRAMEQA31550,gloves,what is the man wearing and crossing himself?,tumblr_nf5b9hqFWD1rqiklvo1_400,43125,0 3899,FRAMEQA13565,cat,what takes the step backward then stands on its hind legs?,tumblr_np5134IWAi1tpg4boo1_400,33617,0 3900,FRAMEQA22019,cat,what is the person holding a brush and is rubbing on the brush?,tumblr_nr394z8H8A1uzsb7xo1_500,69717,0 3901,FRAMEQA34575,red,what is the color of the hair?,tumblr_nfd9cwA9WC1u47ul7o1_250,19032,2 3902,FRAMEQA16687,two,how many race cars are racing?,tumblr_nr12heBDzF1siem3jo1_400,93803,1 3903,FRAMEQA26383,bottle,what is the man holding and blowing the smoke out?,tumblr_ngblduCMle1tbzapzo1_400,30752,0 3904,FRAMEQA2754,car,what is smoking and going backwards?,tumblr_ndb4y8ZLES1t03l64o1_400,42848,0 3905,FRAMEQA14000,bed,where is the young boy wearing pajamas live as a woman touches his arm?,tumblr_nfanhywx5y1u1i12jo1_500,100152,3 3906,FRAMEQA10278,butts,what are three people dancing and all of them slap?,tumblr_neqbvmEl2p1u36mi8o1_250,22289,0 3907,FRAMEQA24185,sheep,what jumped on top of the man?,tumblr_ndn0rnXruV1tdmffyo1_250,31047,0 3908,FRAMEQA27913,black,what is the color of the clothes?,tumblr_nf9mfgbbZH1shbho8o1_500,68954,2 3909,FRAMEQA48456,cars,what are taking part in a race?,tumblr_ndelr27Acc1u0b1c1o1_400,46359,0 3910,FRAMEQA2850,white,what is the color of the puppy?,tumblr_nbt9t3GNcv1tdjuqvo1_400,32039,2 3911,FRAMEQA40566,dinosaur,what is watching the nuclear explosion?,tumblr_nblx5xbbZS1tig5w8o1_500,59855,0 3912,FRAMEQA37029,two,how many girls are hugging?,tumblr_nc2tbjQ4oZ1rmiij7o1_500,57669,1 3913,FRAMEQA12136,dog,what steals some food and FRAMEQAlaces it with a cat?,tumblr_nolxxzhyg81tk2ngvo1_400,49339,0 3914,FRAMEQA34976,puppy,what is walking along the sidewalk?,tumblr_n9v6txFBWy1tc31mqo1_400,65105,0 3915,FRAMEQA34025,two,how many people are standing together while swaying and talking?,tumblr_nheuo83aCM1t0w9oqo1_400,74555,1 3916,FRAMEQA50145,box,where are seven kittens meowing?,tumblr_nfarhcHDam1seb8aro1_400,65054,3 3917,FRAMEQA34012,star,what is wearing white clothes are dancing with exciting look?,tumblr_nprmzqr4Z81tkeou1o1_400,18456,0 3918,FRAMEQA43575,cat,what is the bird tapping on the nose with its beak?,tumblr_n97k6nnj3K1tbjfazo1_400,34099,0 3919,FRAMEQA11153,surface,what is erupting and causing an avalanche?,tumblr_nh5mfia6i01rjjly3o1_500,41927,0 3920,FRAMEQA46501,blue,what is the color of the shirt?,tumblr_njvri85Mv81u33e4bo1_500,19169,2 3921,FRAMEQA42526,cat,what is scared by its owner and jumps high into the air?,tumblr_nk987ekiXS1r5uv3zo1_250,1461,0 3922,FRAMEQA1638,drink,what is the girl taking and then making a sign with her hand?,tumblr_njx5xaqW1f1rp69xto1_400,28327,0 3923,FRAMEQA22267,tub,where is the woman bleeding and passing out?,tumblr_nr70pjtOjD1rpktdko1_400,67130,3 3924,FRAMEQA30130,black,what is the color of the shirt?,tumblr_nrlffmM9Wd1uzmksuo1_250,37993,2 3925,FRAMEQA6715,gray,what is the color of the top?,tumblr_n9wgeq5I4S1sb5dnao1_250,6899,2 3926,FRAMEQA23322,coffee,what are two men talking and drinking together?,tumblr_nc8y9rCjm11sta3neo1_250,18364,0 3927,FRAMEQA31156,black,what is the color of the hair?,tumblr_nba9erdYbj1s4ymmoo2_400,13846,2 3928,FRAMEQA16387,band,what is performing while paint drips down the walls?,tumblr_nqcyl77OKE1uvzwo8o1_400,35237,0 3929,FRAMEQA50604,microphone,what is the young man with long hair handling?,tumblr_nc5ik20yvI1tti8vwo1_500,88627,0 3930,FRAMEQA44801,six,how many boys pose together for the group picture?,tumblr_njy2vvQwpe1u3aopho1_500,92078,1 3931,FRAMEQA33827,house,where is the girl kicking a door?,tumblr_nkjj7ntrNZ1ssgyoro1_250,2196,3 3932,FRAMEQA43311,snowboard,what is the man grabbing and doing a jump?,tumblr_nl3s8xxgSs1u1z1awo1_500,83972,0 3933,FRAMEQA43783,two,how many male lions wrestle and one licks the other?,tumblr_ncy89sSxEH1t4eui2o1_500,84234,1 3934,FRAMEQA51707,brown,what is the color of the hair?,tumblr_nhkjmkZVlx1u387zvo1_400,42290,2 3935,FRAMEQA17036,black,what is the color of the woman?,tumblr_nc5xkfbVPQ1tsmc92o1_400,50561,2 3936,FRAMEQA14807,dog,what is playing with its kittens?,tumblr_ne29e5pZmc1sz068fo1_250,40146,0 3937,FRAMEQA44940,cat,what is crossing the beam on the water?,tumblr_ndwu84DGXF1slj978o1_400,40897,0 3938,FRAMEQA27819,two,how many men sit talking to each other in a dark room?,tumblr_nbx8aewg0R1rbd7evo1_500,100425,1 3939,FRAMEQA49664,snowboard,what is the man riding down a stair railing?,tumblr_ni3d2iPBG21r8q949o1_400,42830,0 3940,FRAMEQA8835,blue,what is the color of the shirt?,tumblr_nkr7i2kHa71tk27r2o1_400,27949,2 3941,FRAMEQA41156,elephant,what ate the two bananas?,tumblr_n9rldadoip1twznkvo1_250,41985,0 3942,FRAMEQA30242,door,what does the blue animal frown and closes?,tumblr_nde98bVDhd1r21xqpo1_250,86043,0 3943,FRAMEQA14348,white,what is the color of the suit?,tumblr_nbwe4oGIZf1ti3vf1o1_250,13617,2 3944,FRAMEQA34839,glasses,"what is the woman , wearing , hops around her couch while pointing at her face?",tumblr_n9gp2baRLi1rl3td7o1_400,30759,0 3945,FRAMEQA6822,donut,what is the person on a motorcycle making?,tumblr_neozsacZoD1r31wzpo1_500,56833,0 3946,FRAMEQA18639,bird,what did the white bird kiss?,tumblr_n9nxz6cyx11sjuzlno1_400,36176,0 3947,FRAMEQA9539,two,how many young man are dancing and bumping hips on stage?,tumblr_n8xhwswWAH1qi4n2uo1_500,83905,1 3948,FRAMEQA39959,gray,what is the color of the hat?,tumblr_nessuogOUs1spkf8wo1_400,68682,2 3949,FRAMEQA50328,one,how many girl puts her head back and rubs it on the girl next to her?,tumblr_nhoqo9nDcU1szutyqo1_500,42089,1 3950,FRAMEQA18711,mustard,what is the man squirting on another man?,tumblr_ngatv43vBu1u5on9do1_250,85687,0 3951,FRAMEQA16568,black,what is the color of the jeans?,tumblr_n9lp1cFATE1thmyo0o1_500,101953,2 3952,FRAMEQA30647,car,what is speeding down the dirt road and stops in some shrubs?,tumblr_ne00j9tc0m1tx8mn0o1_400,55497,0 3953,FRAMEQA9137,bear,what roars and sits on an ice block?,tumblr_nnwo4pR4eE1tk2ngvo1_400,56306,0 3954,FRAMEQA14289,white,what is the color of the clothes?,tumblr_nqnrdxUw2R1u3f56mo1_500,68336,2 3955,FRAMEQA44978,two,how many men are singing together on stage?,tumblr_ncfok5iX5E1srqnzqo1_400,59369,1 3956,FRAMEQA47474,three,how many people are holding each other while crying?,tumblr_n9qzicJ4gq1sn3gx2o1_250,35486,1 3957,FRAMEQA21178,blue,what is the color of the jacket?,tumblr_na8dhrx1Pa1rbgz0xo1_500,81730,2 3958,FRAMEQA4751,wig,what is the small dog wearing?,tumblr_n8y79dwmex1tdjuqvo1_250,16924,0 3959,FRAMEQA18500,two,how many guys are on the stage with microphones while walking by each other?,tumblr_njtkw6qmuL1u6pwr8o2_r2_500,86491,1 3960,FRAMEQA45697,bear,what is watching the bird while sitting and another bear came up?,tumblr_npblti8bU91use8l1o1_400,82811,0 3961,FRAMEQA49597,two,how many young people are dressed nicely and are posing with each other?,tumblr_nfuliyXf1O1rx5795o1_400,1690,1 3962,FRAMEQA44501,cat,what is drinking something from the red bowl?,tumblr_nbjdlk6CGv1tlw7exo1_250,68979,0 3963,FRAMEQA36860,tricycle,what is someone with a mask on riding through a house?,tumblr_n9bz5ojRqc1t99fkdo1_400,29183,0 3964,FRAMEQA5345,two,how many men are walking and talking with each other?,tumblr_na05z08opP1ry1g5io1_400,17330,1 3965,FRAMEQA29290,jacket,what is the kitty wearing and standing up on two feet to tap a hand?,tumblr_nr2wgxdabT1u76jino1_400,42056,0 3966,FRAMEQA39694,cat,what is the person feeding with chopsticks?,tumblr_nhyvthzIw21txchtio1_500,92169,0 3967,FRAMEQA28291,two,how many men dressed up with mustaches are talking to each other?,tumblr_nb74ml20iT1r75i3co1_250,45786,1 3968,FRAMEQA21773,red,what is the color of the lips?,tumblr_nejtlgrkmT1u1pi4oo1_400,35293,2 3969,FRAMEQA9408,red,what is the color of the outfit?,tumblr_ndkdtmIRUr1u1z1awo1_500,61104,2 3970,FRAMEQA39702,two,how many men are fought?,tumblr_nhq8z49bTR1sk0i2mo1_250,60385,1 3971,FRAMEQA51092,dog,what is running through the woods and sliding down a hill?,tumblr_nfa0f8zRRV1rs02yxo1_250,40651,0 3972,FRAMEQA30148,fireworks,what are exploding in the background of the night sky?,tumblr_ne3zbi8nSQ1r26z3ao1_250,79775,0 3973,FRAMEQA16130,two,how many young boys are laughing and acting silly?,tumblr_ncn2z78qvl1t0ojyvo1_500,89276,1 3974,FRAMEQA26930,dog,what is standing around by itself?,tumblr_nfljjzNN0y1u4vf33o1_400,69301,0 3975,FRAMEQA18937,tunnel,where is the guy with the white shirt skateboarding?,tumblr_nf58ex9daJ1tmmir0o1_400,64515,3 3976,FRAMEQA34578,red,what is the color of the pants?,tumblr_ndruvpvdl31rojrheo1_500,70799,2 3977,FRAMEQA27717,theater,where is the couple joking around?,tumblr_nrfuguaBzT1uaa51jo1_500,88893,3 3978,FRAMEQA33189,three,how many boys are dancing together in the line?,tumblr_ngpnflPD2K1sklqsoo1_400,58049,1 3979,FRAMEQA18220,yellow,what is the color of the car?,tumblr_nqpemb0oal1tj3r8so1_400,40151,2 3980,FRAMEQA51095,road,what are two guys on motor scooters driving?,tumblr_nbpvtttnNx1redfc8o1_500,90884,0 3981,FRAMEQA6223,bedroom,where is the girl stomping around?,tumblr_n8xd4qp4Kb1qlao6to1_400,29657,3 3982,FRAMEQA45149,car,what is cutting off another one at the boxes?,tumblr_ner7ylN8ki1sncaa3o1_400,55584,0 3983,FRAMEQA4821,black,what is the color of the coat?,tumblr_nl0daap0PB1u8ogblo1_500,97457,2 3984,FRAMEQA42200,three,how many young teenagers are watching the show on the computer?,tumblr_nkmfankMEK1rf76tuo3_250,27616,1 3985,FRAMEQA6532,machine,where is somebody writing?,tumblr_nqnzvmVMtf1rl4lhqo1_500,92580,3 3986,FRAMEQA46851,fireworks,what does the man set off by banging a big hammer on the stage?,tumblr_n9y25gHC9K1repza7o1_400,69328,0 3987,FRAMEQA36911,mascara,what is the woman with brown hair and eyes applying?,tumblr_ndq73y7mT21u1hp4lo1_500,97252,0 3988,FRAMEQA39062,black,what is the color of the dog?,tumblr_ne2eksOOna1smdw0io1_400,28461,2 3989,FRAMEQA40031,white,what is the color of the coat?,tumblr_nrculsseiX1qzppyxo1_250,6360,2 3990,FRAMEQA40873,two,how many guys are posing for the photo shoot?,tumblr_nl0dca3y0r1u8ogblo1_500,97415,1 3991,FRAMEQA38565,white,what is the color of the hair?,tumblr_ng2cffje8r1qjhqsyo1_400,37556,2 3992,FRAMEQA7338,two,how many girls are walking on the stage?,tumblr_nhodoqhefk1ruoqrro2_400,55473,1 3993,FRAMEQA33287,piano,what is the woman smiling and playing?,tumblr_nhkxn39ENN1s3h8r8o1_400,57268,0 3994,FRAMEQA19819,turtles,what are swimming around in water?,tumblr_njpwlvEji61unh7rgo1_400,35416,0 3995,FRAMEQA49256,red,what is the color of the hair?,tumblr_nga6l7burm1u2umgdo1_400,30690,2 3996,FRAMEQA51592,yellow,what is the color of the characters?,tumblr_neua43pKJC1t0kntqo1_250,53580,2 3997,FRAMEQA36962,red,what is the color of the panda?,tumblr_nk550nmZNP1u8uroco1_400,52678,2 3998,FRAMEQA41391,elephant,what is trying to stand for the first time?,tumblr_nptdekVE6l1tfnm8co1_400,45462,0 3999,FRAMEQA25277,red,what is the color of the trail?,tumblr_ni12hwTxbn1sm32ino1_500,72849,2 4000,FRAMEQA37690,gray,what is the color of the suit?,tumblr_n8vg6uBfvE1t8vkd1o1_500,101043,2 4001,FRAMEQA41963,six,how many men dance the routine on stage while one of them sings into a microphone?,tumblr_n9o426sPJ51smv61so1_400,65094,1 4002,FRAMEQA36643,dog,what is wearing the sweater and a wig?,tumblr_n8y79dwmex1tdjuqvo1_250,16924,0 4003,FRAMEQA41855,dog,what does the guy kick and then the dog hits him in the crotch with a rake?,tumblr_njrzdxnmrz1tgetb4o1_250,39882,0 4004,FRAMEQA49716,black,what is the color of the skater?,tumblr_ngqkp9NXom1t3liooo1_400,29101,2 4005,FRAMEQA43835,wheels,what is the car doing spins and are smoking?,tumblr_nbu0bmRkFb1tya5iuo1_500,71634,0 4006,FRAMEQA43229,black,what is the color of the stick?,tumblr_n9j3qvBQsM1rf9xmzo1_400,44623,2 4007,FRAMEQA2374,puppy,what is sniffing the man 's legs?,tumblr_nam4laekMg1raer1zo1_500,90546,0 4008,FRAMEQA8879,two,how many young men are sitting on the sofa and smiling?,tumblr_naq3p4yhj41tgmmsko1_500,41849,1 4009,FRAMEQA33747,three,how many men are talking?,tumblr_n9xwop6vVU1te9jtmo1_500,66564,1 4010,FRAMEQA36361,box,what is the man with a hat getting shaped award?,tumblr_naf3n9tRJN1td8ijso1_500,47511,0 4011,FRAMEQA17209,three,how many dices of different colors are being rolled?,tumblr_ngz2gcvCxw1rtdnfto1_400,28359,1 4012,FRAMEQA2356,black,what is the color of the shirt?,tumblr_nc43dlSitp1qz5yzjo1_500,98023,2 4013,FRAMEQA8300,knife,what is the man talking on a telephone picks up?,tumblr_noka4jzEvu1uvvbrro1_250,23792,0 4014,FRAMEQA19735,car,what is driving slowly on the race track?,tumblr_ncdvtc57Ux1tx8mn0o1_400,52693,0 4015,FRAMEQA13234,white,what is the color of the shirt?,tumblr_nccfbu3O271rmcoi9o1_400,11336,2 4016,FRAMEQA12508,blue,what is the color of the ocean?,tumblr_nhbze7q65N1s6zpepo1_500,65465,2 4017,FRAMEQA3224,black,what is the color of the shirt?,tumblr_nk93w8xzrj1uoybayo1_400,60578,2 4018,FRAMEQA13110,blue,what is the color of the eyes?,tumblr_nfp07udA6a1sa63q9o1_250,15904,2 4019,FRAMEQA45116,rat,what is fed with milk with an injection bottle?,tumblr_not9kcZnFJ1uu6jgto1_400,20368,0 4020,FRAMEQA32366,room,where is the man playing a guitar?,tumblr_na5ataOKNF1ra19auo1_250,32238,3 4021,FRAMEQA38227,black,what is the color of the wig?,tumblr_n9mcomp3VE1sa9k0fo1_250,6285,2 4022,FRAMEQA37484,two,how many men are walking down the hallway?,tumblr_ndjfgohCV31tl8x1eo2_r1_1280,90198,1 4023,FRAMEQA630,kitten,what turns in the circle while looking beneath itself?,tumblr_nh2ve9qFfE1u4v3ypo1_500,49202,0 4024,FRAMEQA13671,one,how many arm is the guy spinning in a circle while dancing and throwing into the air?,tumblr_ndas0gKlwT1s2prj9o1_250,16584,1 4025,FRAMEQA8692,headphones,what is the person wearing laughing with another person as they walk?,tumblr_nemlr0qXJL1rwfvfro1_400,21542,0 4026,FRAMEQA46945,box,what is the man in pain and is in front of him?,tumblr_nbcj908B4V1tkjhdko1_500,93957,0 4027,FRAMEQA16277,sheep,what is facing the cow and reverses backwards then runs towards it?,tumblr_ngcyybdpPO1qct8qno1_400,96856,0 4028,FRAMEQA24767,two,"how many men in a room do some dance moves , and one talks to someone?",tumblr_na8zogREs01tju8cjo1_400,33677,1 4029,FRAMEQA10142,black,what is the color of the dress?,tumblr_ndpu91LvOA1rhxlc2o1_400,3562,2 4030,FRAMEQA4406,locker,what does the woman open up?,tumblr_n9ljz37P2L1ti3rdpo1_400,83540,0 4031,FRAMEQA2013,black,what is the color of the sweater?,tumblr_nkp2yb8VBA1rv99tvo2_250,7349,2 4032,FRAMEQA3069,microphone,what is the man with long hair gripping?,tumblr_nb6s48cgKH1tcvnmho1_400,59797,0 4033,FRAMEQA17416,dog,what is licking water from a faucet?,tumblr_na7ortnyJB1s0nx6go1_100,4838,0 4034,FRAMEQA5023,black,what is the color of the man?,tumblr_nbpchsaQdB1tg4ng0o1_250,36389,2 4035,FRAMEQA20739,blue,what is the color of the shirt?,tumblr_nelx9gbLoH1u33n9wo1_1280,47992,2 4036,FRAMEQA28063,car,what does this show roller moving downwards with some people in it?,tumblr_nfa5niq6tJ1skrnl9o1_250,43054,0 4037,FRAMEQA41349,two,how many woman is this kissing each other?,tumblr_namb9eKBsf1tk0ytuo1_400,57007,1 4038,FRAMEQA36538,two,how many young men is sitting are talking to each other?,tumblr_nfv5xzlgj31u25yojo1_400,87470,1 4039,FRAMEQA47312,guitar,what is the woman holding and standing on a stage?,tumblr_nilncsL7s01svos5ho1_400,40974,0 4040,FRAMEQA46099,bath,what are two women taking together?,tumblr_nqxdsn2yZB1r2lnvfo1_400,26152,0 4041,FRAMEQA16015,cats,what are playing with each other between a bike wheel?,tumblr_nra8jaNWXd1ti2yzto1_1280,17735,0 4042,FRAMEQA23982,two,how many football players are running down the field and one catches the ball?,tumblr_nk7hlh9kAJ1u3wzc8o1_100,15149,1 4043,FRAMEQA8166,two,how many men are staring at each other intensely?,tumblr_ngfer68qTm1re05qko1_500,76658,1 4044,FRAMEQA16457,bat,what is opening its moth and spreading its wings?,tumblr_nhkmxjaSAq1u777vko1_500,57894,0 4045,FRAMEQA36415,bird,what is rocking its head back and forth until it barfs out a worm?,tumblr_ndr9dyUwwa1u1ijg8o1_400,26386,0 4046,FRAMEQA47721,close,what is the man with dark hair holding to his mouth?,tumblr_n9y2jhq01L1rts5xfo1_250,23,0 4047,FRAMEQA8250,dog,what is happily walking along on the leash?,tumblr_nd6gv9Zbaz1r4phxao1_400,94809,0 4048,FRAMEQA21575,yellow,what is the color of the cat?,tumblr_nk987ekiXS1r5uv3zo1_250,1461,2 4049,FRAMEQA44442,car,where does the person run over another person?,tumblr_nr9ok0sAQE1u9vl8lo1_400,54033,3 4050,FRAMEQA1843,rings,what is someone wearing and giving someone a hug?,tumblr_ndr6g1Uyiu1qmlbemo1_500,92583,0 4051,FRAMEQA22947,cat,what jumps up in the air?,tumblr_nk987ekiXS1r5uv3zo1_250,1461,0 4052,FRAMEQA26223,brown,what is the color of the hair?,tumblr_nqa72svB2q1uxws2zo1_400,24859,2 4053,FRAMEQA52182,black,what is the color of the hair?,tumblr_nq513q76F81u3cb3fo1_400,46038,2 4054,FRAMEQA32109,black,what is the color of the shirts?,tumblr_nk7ba776pi1thbdaio1_500,74018,2 4055,FRAMEQA24074,bungee,what is this jumping off a tower?,tumblr_na5955DXLa1skvqs1o1_500,45575,0 4056,FRAMEQA26990,bedroom,where is the woman doing tricks?,tumblr_nhef7ip3A31txcppto1_250,20520,3 4057,FRAMEQA35834,dog,what sees the treat and jumps around?,tumblr_ncvl3c8kSe1t7j74xo1_250,1449,0 4058,FRAMEQA12953,black,what is the color of the cap?,tumblr_ngso9lZMR01r6xk6do1_400,33861,2 4059,FRAMEQA34873,room,where is the guy crying?,tumblr_n9ydozmYSs1t8cae9o1_500,55311,3 4060,FRAMEQA16883,three,how many men hold microphones while standing in a semi circle?,tumblr_nbad3kmtlO1qbih2ho1_500,24377,1 4061,FRAMEQA7738,blue,what is the color of the car?,tumblr_nd91nlEKaI1tx8mn0o1_400,55564,2 4062,FRAMEQA32475,three,how many men is this playing the drums?,tumblr_nd52u0m5cZ1r6z87zo1_250,24022,1 4063,FRAMEQA45129,paws,what does the dog hop and waves in the air?,tumblr_naq0fyOyiC1rj38k8o1_400,1318,0 4064,FRAMEQA20294,red,what is the color of the hair?,tumblr_nhlyb88ivB1u049uio1_500,99883,2 4065,FRAMEQA52516,motorcycles,what are two guys riding and one flips off the front of his?,tumblr_ne2vicp4Xt1ti2fvro1_400,53169,0 4066,FRAMEQA19472,one,how many guy sings while another played guitar?,tumblr_njziaa2Zn31u8fu4co1_500,52099,1 4067,FRAMEQA8203,puppies,what are chasing the cat throughout the house?,tumblr_npsr937NMb1tpg4boo1_250,27621,0 4068,FRAMEQA22790,green,what is the color of the jacket?,tumblr_n9snmfaad41rlw2xio1_250,31304,2 4069,FRAMEQA16964,two,how many men are driving in the car and one man licks the other?,tumblr_nqtzzkjgf81rpb34go1_400,60156,1 4070,FRAMEQA20146,belt,what is the wrestler holding up wrestling?,tumblr_npfcj4xatM1utt6zho1_400,93090,0 4071,FRAMEQA43498,chair,where does the guy walk by and waves as another just sits?,tumblr_nhgvywHCuZ1thpbnjo1_400,50872,3 4072,FRAMEQA24120,white,what is the color of the shirts?,tumblr_nclfo70sVI1tg2jndo1_250,165,2 4073,FRAMEQA39840,gray,what is the color of the jacket?,tumblr_nrjsoh5vlN1sfwh8no1_400,86550,2 4074,FRAMEQA24445,three,how many friends are hugging at an event?,tumblr_n9qzicJ4gq1sn3gx2o1_250,35486,1 4075,FRAMEQA18138,red,what is the color of the shirt?,tumblr_nisq9mFoW21tbs50qo1_500,73695,2 4076,FRAMEQA3892,blue,what is the color of the ball?,tumblr_nhhujqoyKU1tjhld9o1_400,54091,2 4077,FRAMEQA4818,nightclub,where is the woman dancing?,tumblr_nb72ccwXWg1tkrxymo1_500,57969,3 4078,FRAMEQA29239,car,what is the woman washing with liquid?,tumblr_npgic1jBgU1utmlppo1_500,97357,0 4079,FRAMEQA17224,blue,what is the color of the dress?,tumblr_ne3lbfewRi1slj978o1_250,36311,2 4080,FRAMEQA46318,cigarette,what is the man smoking very quickly?,tumblr_n93bkoyPtY1qa5ehho1_400,57243,0 4081,FRAMEQA15908,two,how many young guys are out drinking shakes?,tumblr_nbivlx2sZy1tiqdeho1_400,68717,1 4082,FRAMEQA20428,white,what is the color of the shirt?,tumblr_nb24d6muvo1qc93dho1_400,17442,2 4083,FRAMEQA28415,chair,where is the boy with red hair sitting and playing a guitar?,tumblr_nculypGc871u0x3uvo1_500,69278,3 4084,FRAMEQA14592,two,how many men are dancing in front of an american flag and flames?,tumblr_nm93s5pJEJ1qbrl65o1_400,82287,1 4085,FRAMEQA39238,microphone,where is man singing and moving?,tumblr_nagwhxoNB31sx2mzoo1_500,96385,3 4086,FRAMEQA40671,white,what is the color of the guy?,tumblr_nh7kldLCpB1sdbrm9o1_250,9339,2 4087,FRAMEQA51913,purple,what is the color of the blouse?,tumblr_nqgtrswsrb1qax4nyo3_500,76452,2 4088,FRAMEQA9755,mirror,where is the woman looking and fixing her hair?,tumblr_n8vcdumjlM1th8gzmo1_500,88561,3 4089,FRAMEQA13120,two,how many young girls are standing?,tumblr_nc2rxyDWRp1sbow0fo1_500,95622,1 4090,FRAMEQA38141,cat,what is looking at the ceiling and jumps and falls?,tumblr_nc1h818Si01tlk1ano1_250,7880,0 4091,FRAMEQA27585,blue,what is the color of the varnish?,tumblr_npc6v49jBd1u2xe60o1_400,11988,2 4092,FRAMEQA10303,cap,what is the girl wearing and flipping her hair?,tumblr_nhdnbkd7pB1tccohro1_500,92324,0 4093,FRAMEQA53038,black,what is the color of the pilot?,tumblr_ncsvdePTit1tbmi9ho1_400,85621,2 4094,FRAMEQA38522,red,what is the color of the lipstick?,tumblr_nhnz7zKMYj1t0pznvo1_250,11016,2 4095,FRAMEQA6543,black,what is the color of the shirt?,tumblr_n9cg1spL9g1sz9hlbo1_250,28380,2 4096,FRAMEQA51885,blue,what is the color of the feathers?,tumblr_nelhankJre1tg6141o1_500,96576,2 4097,FRAMEQA12780,black,what is the color of the guy?,tumblr_nkb339CAjq1uozyoro1_400,87593,2 4098,FRAMEQA37900,jet,"what appears to be landing , but then suddenly takes off again?",tumblr_n8q0g7y49C1rk1fx6o1_400,25285,0 4099,FRAMEQA22753,white,what is the color of the guy?,tumblr_nkkdvvGao31tipom1o1_400,35603,2 4100,FRAMEQA23326,rink,where are the couple of skaters rotated?,tumblr_nbaq3aBbnd1tb1py0o2_400,58688,3 4101,FRAMEQA46050,car,where are the men singing and dancing?,tumblr_nrlc3i7KYK1sqiy4oo1_400,60244,3 4102,FRAMEQA18747,two,how many people are figure skating on ice?,tumblr_nnyrc8Z2uX1rs6s3mo1_500,82955,1 4103,FRAMEQA30536,two,how many young women are greeting each other at an airport?,tumblr_n99yz3noHL1rjrczro1_400,5619,1 4104,FRAMEQA30266,octopus,what is trying to catch the fish?,tumblr_na3k3l3Yn01sk96t7o1_500,38964,0 4105,FRAMEQA45018,guitar,what is the man playing on a stage and making an obscene gesture?,tumblr_nb77zsyMUJ1sn0ok1o1_250,4225,0 4106,FRAMEQA28607,cat,what slowly climbs onto his back legs?,tumblr_nc216vPG4X1tdjuqvo1_400,30878,0 4107,FRAMEQA4803,white,what is the color of the shirt?,tumblr_ndbckywZKY1u0cbtjo1_250,23338,2 4108,FRAMEQA30749,turtles,what are dancing at the party with other people?,tumblr_nceczwihSL1sb01bko1_250,51352,0 4109,FRAMEQA39829,two,how many other people is the man pushing around a store in a shopping cart?,tumblr_najmw24iuw1qlo2n6o1_400,20067,1 4110,FRAMEQA1740,two,how many men are making fake gun signs with their hands?,tumblr_n90hf0rDEo1t0ojyvo1_250,25494,1 4111,FRAMEQA52127,car,what is the dog driving across the road?,tumblr_ng67v0PpjK1tkhxdko1_400,17979,0 4112,FRAMEQA42278,cars,what are driving fast and in sync?,tumblr_n9ghigU0nd1tx8mn0o1_400,55496,0 4113,FRAMEQA39821,guitar,what is the girl playing and whipping her hair around by the sea?,tumblr_nb8c0panhq1tjisrpo1_250,22225,0 4114,FRAMEQA8583,yellow,what is the color of the slide?,tumblr_nkyaonXHxl1tmnntwo1_400,18209,2 4115,FRAMEQA4367,black,what is the color of the man?,tumblr_np1t4vqCw51uupe4vo1_250,19334,2 4116,FRAMEQA21574,ball,what is the man jumping in the air and throwing at another man?,tumblr_naohfoNYRf1rqio5ho1_400,60662,0 4117,FRAMEQA23544,hat,what is the man waving in the air and shouting?,tumblr_nhic56wdN51swdjefo1_400,61203,0 4118,FRAMEQA3659,black,what is the color of the horse?,tumblr_n8u2swNpQV1qe2thio1_500,73413,2 4119,FRAMEQA16736,dog,what pushes the pair of upright skis down and proceeds to jump on them and ski?,tumblr_nh39e5Eyfh1u5quhyo1_400,14890,0 4120,FRAMEQA22883,black,what is the color of the guy?,tumblr_nm93s5pJEJ1qbrl65o1_400,82287,2 4121,FRAMEQA20198,puppy,what is walking on the road with his tongue out?,tumblr_n9v6txFBWy1tc31mqo1_400,65105,0 4122,FRAMEQA861,pool,where is the boy skateboarding?,tumblr_nak7e2ZUC11qirq69o1_400,57333,3 4123,FRAMEQA3092,two,how many women are talking about something waving hands?,tumblr_nai0l5mxue1tosnwso1_400,59373,1 4124,FRAMEQA19872,door,what is the very cute girl opening to a cute man?,tumblr_npzxj9c0Ne1r0vgovo1_500,97445,0 4125,FRAMEQA43021,white,what is the color of the shirt?,tumblr_ncll77hAUJ1tzrs58o1_250,48294,2 4126,FRAMEQA30391,wig,what is the black woman taking off?,tumblr_nqu3w0hZk81u176r8o1_250,90899,0 4127,FRAMEQA36642,mirror,where is the man in the suit looking?,tumblr_njq5e3s3tS1tkkgpso1_500,49408,3 4128,FRAMEQA4060,shoe,what is the man cleaning with a cloth?,tumblr_nph9oahgME1sj5w9fo1_400,39411,0 4129,FRAMEQA46008,tail,what is the dog briefly wagging and looking at something?,tumblr_n9xv6aqQ5A1qmgppeo1_250,38221,0 4130,FRAMEQA53076,black,what is the color of the one?,tumblr_n9wgflENh81sv54yao1_400,57145,2 4131,FRAMEQA47053,mirror,where is the mans ' face shown?,tumblr_ngocss8lv11s0s7b6o1_400,42817,3 4132,FRAMEQA32648,knife,what is the man holding and smiling?,tumblr_ne9y6ssSON1tk8n6jo1_250,39630,0 4133,FRAMEQA46687,two,how many black horses are running in the field?,tumblr_nesu4nuPbX1tzd5txo1_500,97005,1 4134,FRAMEQA276,white,what is the color of the cap?,tumblr_nerb97GIve1r36gcfo1_400,20074,2 4135,FRAMEQA17111,two,how many women are holding one another and kissing each other passionately?,tumblr_non9dnF1Om1u4uss5o1_400,78286,1 4136,FRAMEQA38905,blue,what is the color of the shirt?,tumblr_nak20te0ek1tndo5vo1_250,47088,2 4137,FRAMEQA17531,blue,what is the color of the clothes?,tumblr_nklvmbxVSC1qeurwuo1_250,53608,2 4138,FRAMEQA40905,white,what is the color of the suit?,tumblr_nqx65gR5vx1u75zfco1_500,84203,2 4139,FRAMEQA15303,black,what is the color of the shirt?,tumblr_njomwaECLx1qga6p9o2_400,81166,2 4140,FRAMEQA8352,cigarette,what is the man with dark hair smoking?,tumblr_nf5nxeWYoX1u36sfeo1_500,84829,0 4141,FRAMEQA45709,two,how many men are chewing gum with their mouths open?,tumblr_nho36xy72u1sfxtxno1_1280,56346,1 4142,FRAMEQA25081,dog,what is licking the cheetah on the floor?,tumblr_naeyc6yQWy1tahfdeo1_250,56593,0 4143,FRAMEQA26766,gray,what is the color of the jacket?,tumblr_naq4afnM0Z1s5o1jwo1_400,41704,2 4144,FRAMEQA34299,shell,what is the guy tickling and the turtle is squirming away?,tumblr_neqagz6lei1tdjuqvo1_400,15374,0 4145,FRAMEQA180,costumes,what are the man and a woman wearing and looking surprised?,tumblr_ngkuhrpI341txsmyfo1_400,40487,0 4146,FRAMEQA25511,two,how many people does this show carefully entering a building?,tumblr_nklld32jOh1qg5lg0o1_250,53712,1 4147,FRAMEQA31269,black,what is the color of the shirt?,tumblr_naepk5DoIi1snxvgpo1_400,75860,2 4148,FRAMEQA42947,bedroom,where does the man get his head rubbed?,tumblr_noz8tsEjKu1u719p2o1_400,65079,3 4149,FRAMEQA47192,white,what is the color of the jacket?,tumblr_n9ffgnCzzc1rqp9xfo1_500,90840,2 4150,FRAMEQA9553,shield,where does the man shoot an unarmed man who has his hands up?,tumblr_ncet92koKM1qef8h0o1_400,59219,3 4151,FRAMEQA22819,black,what is the color of the spots?,tumblr_ne0v8hQfU71sjuzlno1_400,37917,2 4152,FRAMEQA20849,cat,what sniffs another cat squashed in a cardboard box?,tumblr_nad5toBHv81s2mb0qo1_500,62745,0 4153,FRAMEQA31391,two,how many men are hugging and going through an obstacle of friends?,tumblr_npfsu5KiUJ1qzlu7po1_540,93677,1 4154,FRAMEQA10018,stick,what is the hockey skating off the ice and causes him to fall down?,tumblr_ni6tcg0JrP1slj978o1_400,19167,0 4155,FRAMEQA50217,white,what is the color of the jacket?,tumblr_nac2p29bq51srzj7lo1_250,8489,2 4156,FRAMEQA27312,two,how many soccer teams play while the player in red scores a goal?,tumblr_nin8fp1Mk31ruk292o1_400,101477,1 4157,FRAMEQA49589,white,what is the color of the shirt?,tumblr_nf8793lRgU1rbgz0xo1_1280,87835,2 4158,FRAMEQA21706,orange,what is the color of the nails?,tumblr_ndbdow0oY81tb2kgho1_400,96428,2 4159,FRAMEQA14621,puppy,what sits with his paws in a water bowl?,tumblr_nn8b3ckHXT1rgj6reo1_400,55944,0 4160,FRAMEQA50340,black,what is the color of the dog?,tumblr_nis0671Qu01tjqbh0o1_250,1463,2 4161,FRAMEQA26751,white,what is the color of the car?,tumblr_ng9bf9Vddz1u25ovvo1_400,63432,2 4162,FRAMEQA1930,two,how many men are walking together and talking?,tumblr_nemlr0qXJL1rwfvfro1_400,21542,1 4163,FRAMEQA28969,kitten,what is crawling forward slowly?,tumblr_n8rkeb4Wyf1tbjfazo1_250,92043,0 4164,FRAMEQA29291,black,what is the color of the bra?,tumblr_no6e8o2eIn1us4ateo1_250,3088,2 4165,FRAMEQA25390,road,what is the black car driving down splashing puddles?,tumblr_nf87a1ENfb1u25ovvo1_400,63565,0 4166,FRAMEQA22043,red,what is the color of the hat?,tumblr_nh3j7brGNJ1rzia65o1_250,25486,2 4167,FRAMEQA11345,orange,what is the color of the shirt?,tumblr_nh0kdyeFRd1t4txt8o1_400,31025,2 4168,FRAMEQA20638,car,what is spinning around on the road?,tumblr_ngilgcU4iR1u0fgfyo2_400,59008,0 4169,FRAMEQA40114,confetti,what are people in graduation caps and gowns dancing and is falling?,tumblr_nolul6tmEz1svi4tpo1_250,335,0 4170,FRAMEQA5510,room,where is the person drying a cub?,tumblr_nggwvt9aWm1t7an45o1_500,92691,3 4171,FRAMEQA46859,paws,what is the gray cat kneading on the back of a pug dog?,tumblr_nhxl2nzKDV1u4v3ypo1_400,36764,0 4172,FRAMEQA38000,room,where does the cat throw down a cup?,tumblr_njxyfpFOvW1tzhkoao1_400,1074,3 4173,FRAMEQA3438,microphone,what is the guy holding and one is looking straight?,tumblr_nbvef9bc6T1rzia65o1_250,6549,0 4174,FRAMEQA41515,red,what is the color of the coat?,tumblr_ngxgwdWTfH1tjcz2uo1_500,101330,2 4175,FRAMEQA22445,flower,what is the man wearing white is sniffing?,tumblr_n9e0qe1Ghp1sztu6fo1_400,54657,0 4176,FRAMEQA28400,two,how many females pull the hoods of their sweaters up?,tumblr_nlzw6wlLMO1tfjrdno1_400,29179,1 4177,FRAMEQA13043,three,how many women stand together one waving and the other two making faces?,tumblr_nh6d4afATN1tg9gzmo1_400,3214,1 4178,FRAMEQA46002,gesture,what is the boy wearing a bandanna pulls?,tumblr_nawbyzVwlV1thhvy0o1_400,32609,0 4179,FRAMEQA34164,two,how many young men are hugging?,tumblr_ney67x8wtj1qememvo1_400,22473,1 4180,FRAMEQA2846,black,what is the color of the fedora?,tumblr_nkamhjvueV1uobh2eo1_400,29350,2 4181,FRAMEQA24186,room,where are the boy in a red shirt and girl laughing?,tumblr_nhyzo769BX1shllpeo1_400,29481,3 4182,FRAMEQA50685,brown,what is the color of the hair?,tumblr_na9wfx9Vmk1qg7e36o1_500,55123,2 4183,FRAMEQA1403,hallway,where are two people hugging each other?,tumblr_nklnw6kpNZ1qfgm2wo1_250,84350,3 4184,FRAMEQA21855,room,where is the man looking up?,tumblr_nk2b8bUbDl1ts6h7so1_1280,83694,3 4185,FRAMEQA24368,two,how many men on stage are jumping up and down?,tumblr_niqcigaPUP1u5gxqso1_500,94203,1 4186,FRAMEQA29422,brown,what is the color of the hair?,tumblr_njpxkdchXu1tqmfzto1_500,50985,2 4187,FRAMEQA681,hill,what is the snowboarder riding down covered in snow?,tumblr_nbmwvtSPmy1s3jo9no1_500,68730,0 4188,FRAMEQA17290,car,what is driving very quickly through an indoor parking garage?,tumblr_nbxshaRNzf1rlqrz3o1_500,68911,0 4189,FRAMEQA44939,dog,what is seen running very fast down the road?,tumblr_ml7ilcuyQt1ql2bpeo1_500,99994,0 4190,FRAMEQA2252,kitten,what tries to stay awake but then falls asleep?,tumblr_n8wivmGs4P1sc3yqlo1_250,41061,0 4191,FRAMEQA50041,red,what is the color of the cap?,tumblr_ndhlolhgCM1tmjjtfo1_250,12908,2 4192,FRAMEQA10491,portfolio,what is the blonde female wearing and arranging herself?,tumblr_nkm312M7Vf1r1lkado1_500,83528,0 4193,FRAMEQA29900,red,what is the color of the laughs?,tumblr_noyux3yYKW1qa0byyo1_400,7032,2 4194,FRAMEQA22294,ball,"what is the person in a green shirt leaning back , and moves from under him?",tumblr_na9ijtkcws1ti2sgvo3_250,46241,0 4195,FRAMEQA1156,one,how many woman with white hair is on a cellphone?,tumblr_nban5mzZZr1tk3k4do1_400,33901,1 4196,FRAMEQA10282,guns,what is the man wearing a red scarf flips around?,tumblr_ng5sskpeoG1qmfh6ho1_500,67805,0 4197,FRAMEQA37306,black,what is the color of the hat?,tumblr_npdrfnn6w01uxuob2o1_250,46923,2 4198,FRAMEQA20328,two,how many young men with microphones sing on stage?,tumblr_njzig0qT8k1qczfu6o1_1280,73159,1 4199,FRAMEQA40093,violin,what is the man in a bowler hat playing?,tumblr_nhknb9MuDd1qldwwwo1_500,22557,0 4200,FRAMEQA7805,brown,what is the color of the horse?,tumblr_ndlmycDsSK1tidcnvo1_400,63831,2 4201,FRAMEQA6194,necklace,what is the woman wearing?,tumblr_n9cepvQnUm1sm0tyko1_250,48559,0 4202,FRAMEQA21802,two,how many kids are dancing and having fun?,tumblr_n8ryrfShMG1rlxkkto1_400,1241,1 4203,FRAMEQA9043,bottle,what is the man wearing a black shirt pops open?,tumblr_nqt0rfOUFY1ux2ikeo1_400,74132,0 4204,FRAMEQA976,house,where do the few people appear to be dancing?,tumblr_njq6vgwcOv1qa4oddo1_400,59852,3 4205,FRAMEQA13383,photographs,what are the man and woman taking on their phones?,tumblr_n9of28KjW41td7sqyo1_250,70685,0 4206,FRAMEQA16208,black,what is the color of the shirt?,tumblr_nfvo34sjOO1u4nno3o1_250,68577,2 4207,FRAMEQA43140,cat,what throws down the cup in a room?,tumblr_njxyfpFOvW1tzhkoao1_400,1074,0 4208,FRAMEQA38669,umbrella,what is the person holding and standing in the rain?,tumblr_nc6vuenb6t1tvi3k9o1_400,32791,0 4209,FRAMEQA45868,uniforms,what are the bunch of boys wearing and messing around?,tumblr_nrb25j3b8V1spcxkpo1_250,18667,0 4210,FRAMEQA34322,red,what is the color of the suit?,tumblr_nh3p6vEgrE1qh4znio1_400,58009,2 4211,FRAMEQA8473,two,how many men hug after one was hit in the face with a pie?,tumblr_njy2ahhYsH1u3y1g4o1_250,69520,1 4212,FRAMEQA21322,one,how many player hits the puck into the goal?,tumblr_nhqet4G5HN1qhrx75o1_400,65395,1 4213,FRAMEQA41100,cigarette,what is the guy with a beard lighting up?,tumblr_ncqc6mF0dW1tmcq9lo1_400,29304,0 4214,FRAMEQA36621,bath,what is the woman taking and waves her fingers and candles light up?,tumblr_ndnnkfdRGI1rq9ek2o1_500,85134,0 4215,FRAMEQA17197,money,what is the man in a dark blue suit throwing?,tumblr_nkadbrY0j01rj4f6to1_250,49409,0 4216,FRAMEQA41186,two,how many woman are talking?,tumblr_ng2vlqcXhu1sneimso1_500,101840,1 4217,FRAMEQA1175,tank,what is going at full speed and then brakes?,tumblr_nhxyiivlNC1t06byno1_400,28984,0 4218,FRAMEQA20153,black,what is the color of the shirt?,tumblr_ndgc8nubQG1qapfv1o1_400,74136,2 4219,FRAMEQA10288,headphones,what is the man removing from his head?,tumblr_ng6frm8Fbw1r784vko1_500,58029,0 4220,FRAMEQA42431,black,what is the color of the shirt?,tumblr_n9ssmh7KSo1t29pn7o1_500,48430,2 4221,FRAMEQA23486,brown,what is the color of the hair?,tumblr_ndhet7vUVd1t0m49go1_500,73864,2 4222,FRAMEQA22285,black,what is the color of the suit?,tumblr_neypdwBtx91r7a225o1_250,12697,2 4223,FRAMEQA36369,two,how many women dressed in red are dancing together?,tumblr_nhzhvabsfq1s4nyalo1_400,26694,1 4224,FRAMEQA6553,two,how many people are sitting one is playing guitar?,tumblr_nbjiylGWRL1tlsqhto1_250,91085,1 4225,FRAMEQA44280,beer,what is the guy wearing sunglasses and drinking?,tumblr_nr7badeW1R1uaavsyo1_500,73284,0 4226,FRAMEQA2371,two,how many girls are doing jumping exercises on a wooden bench?,tumblr_ncxy7vIbUJ1tt3dbuo1_500,76376,1 4227,FRAMEQA34148,four,how many men ride in the right hand drive car?,tumblr_nrcbdvtDHl1u3n11qo1_500,57651,1 4228,FRAMEQA41379,two,how many men are dancing in the dark room?,tumblr_novlokWmWb1t6t8bgo1_540,93683,1 4229,FRAMEQA1278,yellow,what is the color of the face?,tumblr_nfdddhdOuN1te5p35o1_250,289,2 4230,FRAMEQA41519,blue,what is the color of the jacket?,tumblr_nh4uxuDDsO1u5zq37o1_500,95948,2 4231,FRAMEQA24307,black,what is the color of the shirt?,tumblr_ne0llj1byG1u1ukj4o1_500,34940,2 4232,FRAMEQA24475,blue,what is the color of the top?,tumblr_nh10dmctaF1u6020vo1_250,11072,2 4233,FRAMEQA39103,cat,what jumps out from the bunch and opens a door?,tumblr_ngzhkq39Nz1twdzc1o1_250,8947,0 4234,FRAMEQA32103,bear,what is the young guy kissing?,tumblr_n8q47znhFo1th5omjo1_400,57045,0 4235,FRAMEQA19334,egg,what is the man juggling and cooks it in the shape of an arrow?,tumblr_nrdutikHSx1rqqgwvo1_250,18473,0 4236,FRAMEQA10452,two,how many guys in yellow sweaters met next to water?,tumblr_new6rapUbt1tqrf5uo2_400,66256,1 4237,FRAMEQA40700,two,how many girls is the man pushing sitting in a shopping cart?,tumblr_nbzkb341bX1s71nvbo1_500,60746,1 4238,FRAMEQA14378,two,how many men are walking together?,tumblr_nhk3b9NsJo1qbpuo2o1_500,88888,1 4239,FRAMEQA23441,two,how many people is holding large balls crash into each other?,tumblr_ncd6eyR4Ya1ryaiojo1_400,69338,1 4240,FRAMEQA47559,bomb,what did someone open a can of biscuits and then went off?,tumblr_nexhjhoBOY1s9emmto1_400,37018,0 4241,FRAMEQA43924,makeup,what is the woman putting on while looking at a mirror?,tumblr_nqivtqoJ981u6krjho1_500,38143,0 4242,FRAMEQA5356,rv,where are the man and woman dancing?,tumblr_nqotedLtZG1tjz3ato1_400,64601,3 4243,FRAMEQA35927,two,how many people are dancing fast in the room?,tumblr_nimsybmFR21tznw84o1_500,63365,1 4244,FRAMEQA27317,red,what is the color of the hair?,tumblr_nopfu0F3tz1tq1dw1o1_250,36341,2 4245,FRAMEQA34810,cigarette,what is the boy with long hair smoking?,tumblr_nbf2peigGM1rpjuouo1_250,82668,0 4246,FRAMEQA38768,cat,what jumps head first into a cardboard box?,tumblr_nbadug35Zi1tl0ko9o1_400,57534,0 4247,FRAMEQA12607,one,how many man is walking away while another one stays on the same spot?,tumblr_n9u8sctqwf1takocao1_500,99638,1 4248,FRAMEQA24814,car,what pulls into the closed off car garage?,tumblr_n88tfbzgHU1rhy09eo1_500,92569,0 4249,FRAMEQA18175,black,what is the color of the shirt?,tumblr_nk1f6dC53y1u5g7vro1_250,46794,2 4250,FRAMEQA32747,cone,what is the little boy licking while sleeping?,tumblr_nk9l8ptCh11s6zpepo1_250,9948,0 4251,FRAMEQA26343,blue,what is the color of the eye?,tumblr_njqigaE0Cj1tlmnruo1_500,102006,2 4252,FRAMEQA7447,room,where are three people and pretend to play guitars?,tumblr_nb89ryBmeP1rf6ax4o1_400,36254,3 4253,FRAMEQA35513,black,what is the color of the man?,tumblr_njgnhqCm5H1rjvqz7o1_1280,84195,2 4254,FRAMEQA13936,room,where is the guy singing?,tumblr_n8kt58I4Bp1t6ksnpo1_500,93118,3 4255,FRAMEQA11997,two,how many teams are playing hockey on an ice rink?,tumblr_neaa4aW69h1qhrx75o1_400,72548,1 4256,FRAMEQA36893,two,how many beautiful boys without shirt are on a stage touching each other?,tumblr_nem4qtJZ6l1tsn1ypo1_250,18215,1 4257,FRAMEQA7659,bottle,what is the man holding?,tumblr_nmazfr4MNp1uot1e7o1_400,60043,0 4258,FRAMEQA24945,dog,what does the guy with a beard pull off the table?,tumblr_nagzc9ga3p1qjn6two1_250,41405,0 4259,FRAMEQA16682,room,where does the dancer in white shake her hips?,tumblr_nkzcdc7sV61u9tojjo1_400,65212,3 4260,FRAMEQA38361,red,what is the color of the light?,tumblr_na7miq1rPj1qdauj7o1_400,36901,2 4261,FRAMEQA1625,car,what drives along the track while causing smoke?,tumblr_n8uckhNDnS1to3k6do1_500,66915,0 4262,FRAMEQA7695,two,how many young women are fighting in the snow?,tumblr_noise3JpIW1toq0iso1_540,63270,1 4263,FRAMEQA38743,cars,what are driving quickly down the road?,tumblr_nqtams4V1k1u2ep9yo1_500,61078,0 4264,FRAMEQA11349,two,how many people are talking and have paint on their face?,tumblr_nd9b86RibY1t30yt2o1_400,82248,1 4265,FRAMEQA3449,two,how many man are sitting on the sofa watching television?,tumblr_niw20xqfYh1qjzq4lo1_400,81088,1 4266,FRAMEQA20227,gray,what is the color of the shirt?,tumblr_ndgt410YO81sgk3z2o1_250,19330,2 4267,FRAMEQA36386,two,how many young women are making peace signs with their hands?,tumblr_nd54ew6UDB1taq8dio1_500,92187,1 4268,FRAMEQA9642,dog,what lies on the flow and eats a strand of cooked pasta?,tumblr_n91mzrxl5h1r4phxao1_400,81135,0 4269,FRAMEQA22621,two,how many men with a beautiful view behind are screaming?,tumblr_nnvy1kVUHL1utyjq6o1_400,32097,1 4270,FRAMEQA28634,two,how many men are smiling and happy together?,tumblr_nfglfqkprz1u37v6fo1_250,93338,1 4271,FRAMEQA14171,car,what approaches the flooded road slowly?,tumblr_nfflcuX90m1u25ovvo1_400,63666,0 4272,FRAMEQA20803,black,what is the color of the hat?,tumblr_ncr9ubPJfK1ri7ltoo1_500,73477,2 4273,FRAMEQA45017,door,what is somebody opening?,tumblr_neop4eEVpg1rzuy5oo1_400,22302,0 4274,FRAMEQA52761,sunglasses,what is the guy wearing and smiling big?,tumblr_n8x30kDQeu1qc21o3o1_500,50544,0 4275,FRAMEQA21086,gray,what is the color of the costumes?,tumblr_nf32wfId1W1u1kbnho1_250,19038,2 4276,FRAMEQA20987,claws,what is the cat moving near somebody?,tumblr_n9siyhJeK01sz068fo1_400,80179,0 4277,FRAMEQA41922,blue,what is the color of the shirt?,tumblr_nct86ni9tg1ss1bu2o1_400,61491,2 4278,FRAMEQA46828,four,how many thieves descend from the ceiling into the vault?,tumblr_n9vh2js6zv1t1j5ogo1_250,44032,1 4279,FRAMEQA19035,black,what is the color of the models?,tumblr_n9buvpXnDu1rhs3x9o1_400,58024,2 4280,FRAMEQA13888,puppet,what is the girl with pink hair holding up?,tumblr_nbkqr0O34Z1twkd2qo1_250,44066,0 4281,FRAMEQA6420,machine,what is the man showing somebody?,tumblr_ndm0hud5pX1u15l5io1_400,56779,0 4282,FRAMEQA19999,black,what is the color of the guy?,tumblr_n9427c7gK51te8576o1_500,99045,2 4283,FRAMEQA2416,white,what is the color of the shirt?,tumblr_nh3j7brGNJ1rzia65o1_250,25486,2 4284,FRAMEQA32902,two,how many guys are singing and dancing on the stage in a concert?,tumblr_n8w7lerGTz1tg0gc4o1_500,61792,1 4285,FRAMEQA21509,lands,what is the fox jumping and head first in snow?,tumblr_nr0urrvsyq1uaoej6o1_400,45806,0 4286,FRAMEQA24735,dog,what jumps on the man on the floor?,tumblr_ng3g6sMCFG1qez0bvo1_500,86729,0 4287,FRAMEQA24549,two,how many men are riding in the car and one rubs his hands over his face?,tumblr_n7qjawvGqz1tbse9vo1_250,81595,1 4288,FRAMEQA10536,red,what is the color of the hair?,tumblr_nbllbtxGHp1t5ojzdo1_250,51563,2 4289,FRAMEQA13689,cat,what pushed the object off the table?,tumblr_ng642mdNwX1qezt9uo1_250,19353,0 4290,FRAMEQA32077,one,how many man smiles at the other?,tumblr_nhk3b9NsJo1qbpuo2o1_500,88888,1 4291,FRAMEQA26269,two,how many people with microphones are dancing and singing?,tumblr_n96dolAgQu1txgijyo1_500,92945,1 4292,FRAMEQA21997,two,how many players are giving the double high five on a sports pitch?,tumblr_nc2w70pKoD1s44ybio1_400,70872,1 4293,FRAMEQA923,brown,what is the color of the coat?,tumblr_nnjw9z68lq1u3hgt0o1_250,46513,2 4294,FRAMEQA27115,car,what is the man wearing sunglasses and a backwards baseball cap is driving?,tumblr_na9bk7YdxS1swtjjuo1_500,54836,0 4295,FRAMEQA12711,white,what is the color of the uniforms?,tumblr_nr2vau6kkr1utqicho1_500,82529,2 4296,FRAMEQA15052,blue,what is the color of the t-shirt?,tumblr_nc2uo2WwTO1sbnqs8o1_250,5833,2 4297,FRAMEQA48776,white,what is the color of the suit?,tumblr_n90k7w0LPs1rq6fvoo1_500,82901,2 4298,FRAMEQA19671,orange,what is peeling itself into a character?,tumblr_nl0lw9PkLw1sht3fmo1_250,72976,0 4299,FRAMEQA27807,bear,what is wearing the red hat and a woman with blonde hair is talking?,tumblr_nhys5kaxEu1u7u0ceo1_500,95988,0 4300,FRAMEQA37061,two,how many men is this image of sitting down talking to each other and laughing?,tumblr_njzchnvwXU1slw38eo1_250,14509,1 4301,FRAMEQA5948,car,what is moving out of the building?,tumblr_na66rjjjdD1roly9io1_500,74616,0 4302,FRAMEQA9681,dog,what is sniffing the tennis ball?,tumblr_njyb2pcEGb1tlmquvo1_400,83456,0 4303,FRAMEQA27187,motorcycles,what are going around the turn and two of them crash?,tumblr_nrb4qwDaQ11tx8mn0o1_400,55919,0 4304,FRAMEQA37158,gum,what is the girl chewing and rolling her eyes?,tumblr_nfxzk6xDVz1qm2e6bo1_400,13302,0 4305,FRAMEQA19777,two,how many men are smiling at something?,tumblr_nqrx03OM6K1uxst7zo1_500,99159,1 4306,FRAMEQA15336,red,what is the color of the head?,tumblr_nr7bf9JXRA1tiwyqlo1_250,10543,2 4307,FRAMEQA52826,white,what is the color of the girl?,tumblr_nqotedLtZG1tjz3ato1_400,64601,2 4308,FRAMEQA52407,white,what is the color of the dress?,tumblr_npswm4R1kB1tk15f6o1_400,57097,2 4309,FRAMEQA9879,guitar,what is the boy with short dark hair playing in front of a red light?,tumblr_na7miq1rPj1qdauj7o1_400,36901,0 4310,FRAMEQA6832,turnstile,what is the man wearing white is jumping?,tumblr_n8xfckoIle1slj978o1_250,9322,0 4311,FRAMEQA20003,bot,what is holding then flinging the cat 's toy for it to play with?,tumblr_nofh1qIEXw1tfnm8co1_400,37950,0 4312,FRAMEQA40151,car,what is man in black racing?,tumblr_nhuah4DLZD1u2ui2ko1_500,86869,0 4313,FRAMEQA4482,red,what is the color of the balloon?,tumblr_n97n2cS7li1rxa8glo1_500,86305,2 4314,FRAMEQA42841,car,what attempts to go around the corner but instead loses control?,tumblr_nk9d7bL7eY1tx8mn0o1_400,56415,0 4315,FRAMEQA864,cat,what is running around trying to get into the door?,tumblr_no75u4RtUx1tyncywo1_400,65382,0 4316,FRAMEQA48977,room,where are two men kissing?,tumblr_njmvvzXa4P1sxqls6o1_400,23669,3 4317,FRAMEQA48671,brown,what is the color of the hair?,tumblr_njuernNJhS1ta9uaco1_250,14443,2 4318,FRAMEQA23083,moth,what is flying inside the glass dome?,tumblr_nk90fqhAgg1u1k55co1_500,75410,0 4319,FRAMEQA23562,horse,what looks up and blinks its eyes and looks back down?,tumblr_ni2yugot1B1tiz27ro1_500,37357,0 4320,FRAMEQA5070,microphone,what is the guy in a white shirt holding and blowing air out of his mouth?,tumblr_nc5ik20yvI1tti8vwo1_500,88627,0 4321,FRAMEQA26986,car,what is driving through the bunch of sheep?,tumblr_nfktxo8hC71tgetb4o1_250,85332,0 4322,FRAMEQA8197,cat,what does the dog knock in to a bath tub and the cat jumps back out?,tumblr_nbh3y0lqgx1tuj3bpo1_400,34855,0 4323,FRAMEQA9833,two,how many women are standing?,tumblr_ngr0o5orpD1u1de1ro1_500,48665,1 4324,FRAMEQA38855,one,how many guy is making the sign with his glass?,tumblr_nfrob3zSe11u1cig2o1_500,71106,1 4325,FRAMEQA5872,purple,what is the color of the shirt?,tumblr_ncv2ubyfXj1tcd2tgo1_250,27602,2 4326,FRAMEQA22891,two,how many men are playing drums on a stage?,tumblr_nd52u0m5cZ1r6z87zo1_250,24022,1 4327,FRAMEQA34099,green,what is the color of the shirt?,tumblr_n9ktdqW1gV1st6jdpo1_250,16196,2 4328,FRAMEQA32461,hose,what ran and jumped over the fence?,tumblr_nfsrf7PNZs1qe2thio1_500,98734,0 4329,FRAMEQA5073,two,how many schoolgirls play around and pose with peace signs?,tumblr_nd4s80baYg1s5y3pfo1_400,56409,1 4330,FRAMEQA42698,brown,what is the color of the man?,tumblr_nbz4feEHpL1sk5ccgo1_250,3902,2 4331,FRAMEQA46375,two,how many twins are sitting together and looking at each other?,tumblr_na41oyCHeF1rcndp1o1_500,9702,1 4332,FRAMEQA4190,dog,what goes to bed and covers himself with a blanket?,tumblr_nbxgairu4F1slwrsuo1_400,99415,0 4333,FRAMEQA18292,cap,what is the boy wearing and another boy is raising his eyebrows?,tumblr_n8rmaa7zrF1trm2z1o1_250,27282,0 4334,FRAMEQA18852,blue,what is the color of the car?,tumblr_nen2gpqUlI1tx8mn0o1_400,55482,2 4335,FRAMEQA39868,two,how many guys are hugging?,tumblr_nbigfaMpHw1rhe0jeo1_250,41462,1 4336,FRAMEQA12878,brown,what is the color of the couch?,tumblr_n8sj5tOb671se5xexo1_400,24353,2 4337,FRAMEQA13835,yellow,what is the color of the shirt?,tumblr_ng970sSWti1thldh3o1_400,38036,2 4338,FRAMEQA21639,suitcase,what does the person unzip?,tumblr_nfwko4ck431u4v3ypo1_400,72642,0 4339,FRAMEQA50930,two,how many men are in the car talking and laughing?,tumblr_nfpuisFRl11t2mzx0o1_400,82197,1 4340,FRAMEQA15207,dog,what did the cat pull around by the dog 's lead?,tumblr_n9dxxv9ONq1sk96t7o1_400,59286,0 4341,FRAMEQA2499,tie,what is the man wearing and smiling broadly?,tumblr_nd8gli2Fqo1qe849no1_250,40750,0 4342,FRAMEQA50996,green,what is the color of the hair?,tumblr_nkxfoqCw4r1qeavo7o1_400,65563,2 4343,FRAMEQA29750,black,what is the color of the clothing?,tumblr_nklfp2TT031t0qj4zo1_400,64942,2 4344,FRAMEQA21808,three,how many young men are dancing on the stage?,tumblr_ne3ne5opC11sgl8xeo1_500,86738,1 4345,FRAMEQA52312,street,where is the man wearing a suit is dancing?,tumblr_n9kylgd6ii1rpovzzo1_400,64788,3 4346,FRAMEQA30955,cat,what walks with the ball in between its legs?,tumblr_neu6972ngW1rhkv10o1_400,27997,0 4347,FRAMEQA9952,two,how many team mates are talking to each other?,tumblr_nelrob2YG41u32mywo1_250,84517,1 4348,FRAMEQA9225,white,what is the color of the shirt?,tumblr_nb2ajl9DH41tkdgp6o1_250,23241,2 4349,FRAMEQA4932,dog,what falls down while running across the beach?,tumblr_ncqbubNR881tdmffyo1_500,57557,0 4350,FRAMEQA34302,car,what is being washed out by water?,tumblr_nh05khMCWi1s71nvbo1_400,54609,0 4351,FRAMEQA28010,white,what is the color of the background?,tumblr_n9y1bvkwkg1tj37coo1_250,49649,2 4352,FRAMEQA14231,brown,what is the color of the hair?,tumblr_nhnxvvuqO61qhyoyno1_500,70220,2 4353,FRAMEQA48770,two,how many men are sitting in front of laptops?,tumblr_nebsu3wlge1r7490vo1_500,101847,1 4354,FRAMEQA23611,dog,what is biting the young man who is sleeping on a sofa?,tumblr_ndzw33j6bu1th8rjso1_400,31035,0 4355,FRAMEQA52952,gray,what is the color of the shirt?,tumblr_n9ejfd8JwT1ti98teo1_500,68793,2 4356,FRAMEQA31293,car,what is driving down the road with palm trees along the side?,tumblr_ne9ty1C8Dw1tr5tuwo1_500,89701,0 4357,FRAMEQA7270,two,how many people are crawling around on the floor?,tumblr_njxcc3Muq71ta4f2po1_500,92416,1 4358,FRAMEQA35970,two,how many girls are talking one smiles and looks away?,tumblr_n98w8z1TGU1ttpy61o1_250,98159,1 4359,FRAMEQA29687,street,where is the guy putting a glass?,tumblr_ndyft4jnrc1r32adho1_400,81138,3 4360,FRAMEQA47940,car,where is the person talking to someone through the open window?,tumblr_nedjc7aFL11tk34mko1_500,79887,3 4361,FRAMEQA34852,brown,what is the color of the hair?,tumblr_nl2hisJPt81sfz5oto1_250,36994,2 4362,FRAMEQA15195,dog,what gets his in the head with a frisbee and does n't care?,tumblr_ngm9yhvYpt1qg8w48o1_400,25215,0 4363,FRAMEQA47470,black,what is the color of the hair?,tumblr_no6xcisQQU1ttstb6o1_500,48414,2 4364,FRAMEQA39508,one,how many man is laying on another man on the ground?,tumblr_naw665PAt51tktrwbo1_250,2895,1 4365,FRAMEQA51688,two,how many helmeted people sit in the driving race car?,tumblr_ni01txhXte1tx8mn0o1_400,79270,1 4366,FRAMEQA22487,paw,"what is the fluffy cat , sitting on a table , reaches out and pushes a glass off the table?",tumblr_njxyq4bNFX1tzhkoao1_400,11308,0 4367,FRAMEQA46071,skateboard,what is the man riding and doing tricks at the same time?,tumblr_nh24kvm9ft1rq31wzo1_400,81695,0 4368,FRAMEQA33821,black,what is the color of the jacket?,tumblr_n9n9u0bQkJ1qijeudo1_500,92813,2 4369,FRAMEQA28190,brown,what is the color of the hair?,tumblr_naxwhdLvNY1qgf0vjo1_500,85323,2 4370,FRAMEQA7166,two,how many people sat next to each other talking?,tumblr_ne68rePU2I1tm0es2o1_400,17195,1 4371,FRAMEQA28355,white,what is the color of the scratched?,tumblr_nf4x2c4BCf1tid424o1_250,19280,2 4372,FRAMEQA21247,black,what is the color of the wings?,tumblr_ncee4dyhyZ1t2yxr0o1_500,98312,2 4373,FRAMEQA10221,mountain,what is standing above the flat area of land?,tumblr_nafjyxGRto1tjgfjko1_400,59176,0 4374,FRAMEQA2521,two,how many men is this dancing and singing on a stage?,tumblr_n99vbo9pk71tf7kp3o1_500,75263,1 4375,FRAMEQA22274,two,how many young kids are singing and walking together?,tumblr_nqwv6n9JKg1uvejg4o1_540,96739,1 4376,FRAMEQA1418,pizza,what is an athletic man delivering and answering his cell phone?,tumblr_nklj95HBGD1rxcyx0o1_250,2655,0 4377,FRAMEQA32283,two,how many people get up from behind the couch and surprise people?,tumblr_nfcozcs5xE1rfzipho1_400,32999,1 4378,FRAMEQA8556,blue,what is the color of the shirt?,tumblr_nfs4rqmTxc1rt48xfo1_r1_1280,95471,2 4379,FRAMEQA39314,banana,what is being fed to the cat wearing a dress?,tumblr_nkhnomg0r01u1pokno1_250,53313,0 4380,FRAMEQA12595,hat,what is the short haired person putting on?,tumblr_ndaot5SytE1tuzzkvo1_400,32733,0 4381,FRAMEQA7349,tools,what is the young man holding?,tumblr_ncepuifpK81rsfjdwo1_250,14846,0 4382,FRAMEQA34291,white,what is the color of the blouse?,tumblr_ndrp5s99y11rjquvjo1_500,93128,2 4383,FRAMEQA16539,white,what is the color of the t-shirt?,tumblr_ndyudiRTHn1u26x8po1_250,23421,2 4384,FRAMEQA40271,two,how many men are sitting in chairs?,tumblr_nkzhrtN0fn1rif4nho1_400,22853,1 4385,FRAMEQA16934,two,how many guys are moving and dancing around?,tumblr_naj9q9qZ3d1spmkl4o1_500,45222,1 4386,FRAMEQA32628,machine,what are having the jousting match?,tumblr_nesls65ifv1qj1s5io1_400,80347,0 4387,FRAMEQA36212,white,what is the color of the top?,tumblr_nd931nZhS61s1ctsqo1_400,64632,2 4388,FRAMEQA32845,black,what is the color of the tuxedo?,tumblr_nemp1budLR1t97h17o1_400,69910,2 4389,FRAMEQA23134,two,how many men are singing on stage and playing guitar?,tumblr_nrlgwkAmGV1qb1u6io1_250,27294,1 4390,FRAMEQA49231,suit,what is the man wearing and standing up?,tumblr_nf19w8EkTl1t2hpuno1_400,11743,0 4391,FRAMEQA47989,four,how many boys are looking at something and smiling?,tumblr_no51i7FwV61uuvan0o1_500,86187,1 4392,FRAMEQA15285,blue,what is the color of the headphones?,tumblr_nalyu8AJ3b1t1j5ogo1_250,27249,2 4393,FRAMEQA15971,kitten,what is playing with the piece of paper?,tumblr_na260dZVY11txmq72o1_250,26579,0 4394,FRAMEQA9741,two,how many young men are wrapping their arms around one another?,tumblr_nalgunb5tA1rm4q61o1_250,6552,1 4395,FRAMEQA8241,cars,what are there racing?,tumblr_np8vdxZrdi1tx8mn0o1_400,76908,0 4396,FRAMEQA11902,two,how many girls is this walking through a set of doors?,tumblr_n8sg4dnVGy1teocxjo1_400,66445,1 4397,FRAMEQA22748,duck,what is sitting between two white kittens?,tumblr_nko149Q7AN1u8uroco1_250,43578,0 4398,FRAMEQA15470,cat,what is looking at and playing with fish?,tumblr_n8hk45xsAu1tgetb4o1_400,66886,0 4399,FRAMEQA15468,headsets,what are two girls wearing together and one is shocked?,tumblr_nc9xh5NZ6d1stafvxo1_400,87951,0 4400,FRAMEQA12867,two,how many different groups of men are dancing wearing two different sets of clothes?,tumblr_nkkqdmYAMm1sipe8no1_500,95007,1 4401,FRAMEQA40979,airplane,"what flies into the air , the streets crumble below it?",tumblr_nbv0ml7KVI1tbep7no1_500,95154,0 4402,FRAMEQA35943,room,where is two girls talking?,tumblr_nkocex8iVE1qjame9o1_250,84471,3 4403,FRAMEQA50055,cat,what is playing with the wire and falls off a chair?,tumblr_nc0eqq49V51rw1wnno1_400,70838,0 4404,FRAMEQA38935,red,what is the color of the outfits?,tumblr_nbci2vFibY1st6smgo1_500,73073,2 4405,FRAMEQA7390,black,what is the color of the rail?,tumblr_ncm3t6uN6S1qhzqk1o1_500,77713,2 4406,FRAMEQA45564,green,what is the color of the t-shirt?,tumblr_nrljkbZSIC1u5qz70o1_500,43507,2 4407,FRAMEQA48624,ball,what is the man wearing sunglasses hits?,tumblr_nq79d1R2uE1rered3o1_400,77208,0 4408,FRAMEQA15205,red,what is the color of the woman?,tumblr_ni33o9h6bs1qjvum0o1_250,19961,2 4409,FRAMEQA28984,black,what is the color of the jacket?,tumblr_n9yfsnDNsW1qhejm2o1_500,95366,2 4410,FRAMEQA8987,dog,what is rubbing the mans head on a chair?,tumblr_naf1uaXSXE1ts0kzio1_400,41589,0 4411,FRAMEQA44419,blue,what is the color of the shirt?,tumblr_n8rbiqMVtr1tezv66o1_400,59037,2 4412,FRAMEQA35754,black,what is the color of the laughing?,tumblr_name16OoO71si20l6o1_250,23543,2 4413,FRAMEQA39181,red,what is the color of the flowers?,tumblr_ncduqksVUf1tri1soo1_400,65210,2 4414,FRAMEQA13058,two,how many young men are dancing and having fun?,tumblr_nkraguGpTL1u7pcrso1_500,72814,1 4415,FRAMEQA27152,dog,what drops the yellow ball and then chases it?,tumblr_n8s0xxT2ig1ssgyoro1_400,56060,0 4416,FRAMEQA19799,dog,what does the girl grab and he snaps at her?,tumblr_nq622eUZ2O1twfmf3o1_400,7692,0 4417,FRAMEQA4617,ball,what is the basketball player wearing a dark colored uniform is dribbling?,tumblr_ndrvrv1LdJ1rzng9wo1_400,40945,0 4418,FRAMEQA28129,two,how many guys are sitting and watching some in a room?,tumblr_niw20xqfYh1qjzq4lo1_400,81088,1 4419,FRAMEQA40660,red,what is the color of the sofa?,tumblr_n8x0vtknbl1rhmx5uo1_400,30378,2 4420,FRAMEQA49759,t-shirt,what is the slim and beautiful woman with long hair showing and giving a thumb and smile?,tumblr_npkwz6QpbC1unkbhwo1_250,7462,0 4421,FRAMEQA2433,black,what is the color of the bit?,tumblr_nh5vdcsC771rai4l8o1_250,17098,2 4422,FRAMEQA5359,tail,what is the cat white black color jumping and moving?,tumblr_nc1h818Si01tlk1ano1_250,7880,0 4423,FRAMEQA14877,doors,what is the woman wearing black lingerie opens and looks out?,tumblr_nre0xwdee61uyo37eo1_250,6713,0 4424,FRAMEQA45576,white,what is the color of the footballers?,tumblr_ndncr8qDWL1ry6fnao1_400,80122,2 4425,FRAMEQA33727,glasses,"what is the boy , wearing , hugs another person and smiles?",tumblr_n8yfuvRPzW1th6vrno1_500,89947,0 4426,FRAMEQA10764,two,how many friends share the high five together?,tumblr_ndc5y9NdSL1u17tjio1_400,62294,1 4427,FRAMEQA6464,brown,what is the color of the cat?,tumblr_nrjzfx6FL41uz06r7o1_400,13614,2 4428,FRAMEQA32673,car,"where are two men dancing , one of them is shaking his head?",tumblr_nbgkzeADl51rpsnyjo1_250,3928,3 4429,FRAMEQA35910,car,what is going around the track?,tumblr_n9aw9xL3oK1tx8mn0o1_400,77235,0 4430,FRAMEQA46419,two,how many teenage boys are talking and laughing?,tumblr_n9yquiyMK91r6oiiao1_400,101018,1 4431,FRAMEQA11241,guitar,what are the two guys in a band playing crazily?,tumblr_nip2p8nEbB1rz19y8o1_500,73340,0 4432,FRAMEQA33828,rings,what is the man exhaling and sucking them back in?,tumblr_nkte68ucI51si31pso1_400,11528,0 4433,FRAMEQA48507,brown,what is the color of the hair?,tumblr_nbg8y0pmj21she1i6o1_250,10527,2 4434,FRAMEQA46402,room,where are two women smiling and joking?,tumblr_naef7gYw6B1tjr73vo1_400,22030,3 4435,FRAMEQA15459,green,what is the color of the witch?,tumblr_n9powlIXXD1tiu45ao1_400,29851,2 4436,FRAMEQA21590,truck,what crashes into the bus on a rainy day?,tumblr_n9fp6mawvc1tg4n19o1_500,89277,0 4437,FRAMEQA18032,horse,what is making the turn in the field?,tumblr_n8pqysKgXz1sy7yfqo1_400,64680,0 4438,FRAMEQA32979,bird,what is being scratched by the hand?,tumblr_nb3mu1R5I61tgtinoo1_250,643,0 4439,FRAMEQA32133,two,how many people is sitting are talking to each other?,tumblr_nhkoxqBeA41qik8zvo1_500,100936,1 4440,FRAMEQA26144,white,what is the color of the shirt?,tumblr_ngxgwdWTfH1tjcz2uo1_500,101330,2 4441,FRAMEQA48765,bed,where is the woman laying with her arms crossed then opens her eyes?,tumblr_njsav5UOz21qieqojo1_400,80301,3 4442,FRAMEQA26307,garage,where is the man walking?,tumblr_noi69zAwNr1sgwg9go1_400,39096,3 4443,FRAMEQA8482,guitar,what is the man with short hair playing?,tumblr_nftibqLA1f1tcwc21o1_400,28432,0 4444,FRAMEQA43493,cage,where are two young boys swinging bats?,tumblr_np0kxcHgTJ1uvdb8xo1_400,62177,3 4445,FRAMEQA29273,car,what is driving through the dirt off a track?,tumblr_nahga9eNFz1tx8mn0o1_400,78232,0 4446,FRAMEQA3012,yellow,what is the color of the hair?,tumblr_n9zyatt9Ac1tihotxo1_250,23212,2 4447,FRAMEQA41729,octopuses,what is the girl holding and waving?,tumblr_n9w68eOVgx1tif07xo1_400,36909,0 4448,FRAMEQA32827,bird,what sits on the fence looking to its left?,tumblr_nclxudn5MX1qa4y0oo1_500,67749,0 4449,FRAMEQA18368,horse,what is jumping over two hurdles?,tumblr_nbhxrqCzyf1qmig0no1_400,4107,0 4450,FRAMEQA5376,cap,what is coming from the car?,tumblr_nery6zlDcp1s5p0j3o1_400,5676,0 4451,FRAMEQA30079,black,what is the color of the hat?,tumblr_na08xb9OsP1svos5ho1_400,3805,2 4452,FRAMEQA28794,two,how many people are slapping their hands against each other?,tumblr_n9t1ycvMk81rmqkjuo1_500,81984,1 4453,FRAMEQA27581,green,what is the color of the eyes?,tumblr_ngfx6plsgs1sjcg5bo2_500,39257,2 4454,FRAMEQA24515,cigarette,what is the handsome old man smoking?,tumblr_nfmfziQ3X61qj319bo1_250,27811,0 4455,FRAMEQA10639,cigarette,what is the young man lighting and smoking?,tumblr_nfeonvBBad1srvunio1_250,20526,0 4456,FRAMEQA51657,black,what is the color of the hat?,tumblr_nfeov630X81u426jpo1_500,47850,2 4457,FRAMEQA14476,two,how many young people are talking and dressed as elves?,tumblr_ngkuhrpI341txsmyfo1_400,40487,1 4458,FRAMEQA8676,one,how many guy drove?,tumblr_nq3whcvNsE1r0d1r1o1_500,79347,1 4459,FRAMEQA46491,performs,how many tricks is the man wearing a cap is outside on his skateboard?,tumblr_ngagpi6yvY1rkbo6ho1_400,89132,1 4460,FRAMEQA31017,white,what is the color of the shirt?,tumblr_nio3kp0yiC1tp92iyo1_250,5960,2 4461,FRAMEQA36292,red,what is the color of the dress?,tumblr_njtvm1ky4S1u9tekro1_500,76852,2 4462,FRAMEQA48626,glasses,what is the woman?,tumblr_nafeokdd2G1rkg0aio1_400,64967,0 4463,FRAMEQA1103,three,how many girls are crawling around on the floor?,tumblr_nnw2cys1031qcpuklo1_500,67461,1 4464,FRAMEQA50163,white,what is the color of the girl?,tumblr_nbovmhO8lQ1t08tbeo1_500,68894,2 4465,FRAMEQA34033,pot,what does the person walk away?,tumblr_nc4z54JieK1som6aeo1_250,18398,0 4466,FRAMEQA36165,horse,what moves his eye slowly to look to his side?,tumblr_ndm302Gvzr1srpy25o1_500,56698,0 4467,FRAMEQA12163,dog,what is running to the truck to drop a bomb off before it explodes?,tumblr_nc50ehFDSZ1tkpzw0o1_400,97524,0 4468,FRAMEQA49322,three,how many sweaty men in sleeveless outfits lift something from the ground?,tumblr_nat1jsDGBA1tdmr2yo1_500,96611,1 4469,FRAMEQA35900,cases,what is the woman wearing a black sweater is rearranging on a shelf?,tumblr_nks1ucMHvh1r0slduo1_400,64982,0 4470,FRAMEQA38237,puppy,what is cuddling with the cat?,tumblr_nelekc7qgX1rtcpyfo1_250,23195,0 4471,FRAMEQA31665,one,how many person is looking at the other?,tumblr_ncdinuJxSW1taahxyo1_400,77696,1 4472,FRAMEQA23957,cars,what are racing around the race track when one of them spins?,tumblr_nkrkl4u4JU1unyhx2o1_400,96258,0 4473,FRAMEQA26059,cat,what picks her kitten up goes over the wall?,tumblr_nnwqd1fykp1sm7eoto1_500,40619,0 4474,FRAMEQA24090,black,what is the color of the shirt?,tumblr_ndyvgluqf71tm0es2o1_250,12524,2 4475,FRAMEQA24485,white,what is the color of the man?,tumblr_naklwl1u1y1tjjgbwo1_500,26638,2 4476,FRAMEQA31302,two,how many men face an army on a cold winter day?,tumblr_npfagkDT3Z1qz61bho1_400,80688,1 4477,FRAMEQA41765,bus,what are two men riding to some place?,tumblr_najvvu3Y0I1se3ifso1_250,57959,0 4478,FRAMEQA22057,black,what is the color of the shirt?,tumblr_ndk037PLLJ1tdn8xmo1_500,70856,2 4479,FRAMEQA34974,yellow,what is the color of the shirt?,tumblr_nb5zc0ldvd1tkyroqo1_500,100493,2 4480,FRAMEQA5774,deer,what is enjoying being stroked by the person 's hand?,tumblr_nqvgl9LZyY1uv0y2ro1_250,20413,0 4481,FRAMEQA10265,red,what is the color of the dance?,tumblr_nibscxbjOp1qlbj8uo1_500,84835,2 4482,FRAMEQA46404,two,how many people are performing dance moves on a stage?,tumblr_nkw9pdcCxs1u8s3tzo1_250,8086,1 4483,FRAMEQA21418,black,what is the color of the top?,tumblr_ndrfj8UMpZ1sofhfko1_500,23791,2 4484,FRAMEQA36938,turtle,what is walking in the street?,tumblr_nba4pcH1vc1slj978o1_400,14475,0 4485,FRAMEQA30513,brown,what is the color of the hair?,tumblr_naoi1yLJAq1s034x5o1_500,50545,2 4486,FRAMEQA3031,three,how many women play on the floor with a blanket?,tumblr_nnw2cys1031qcpuklo1_500,67461,1 4487,FRAMEQA33323,two,how many people are hugging tightly and slowly?,tumblr_ncbwoiwcXo1reut2bo1_500,91828,1 4488,FRAMEQA4494,two,how many guys sky dived and held their arms out?,tumblr_n977ivF2qU1two872o1_500,55789,1 4489,FRAMEQA18443,two,how many men are walking in the park?,tumblr_na05z08opP1ry1g5io1_400,17330,1 4490,FRAMEQA19810,banana,what is wearing sunglasses is playing the trumpet?,tumblr_naewvsd2Hj1rpjr5so1_500,27793,0 4491,FRAMEQA17080,wall,where does the blonde boy climbing wall and falls?,tumblr_n9z4saXhhl1suovrfo1_250,18084,3 4492,FRAMEQA30855,two,how many men are talking and drinking coffee together?,tumblr_nc8y9rCjm11sta3neo1_250,18364,1 4493,FRAMEQA14033,black,what is the color of the hair?,tumblr_nr6wu9RNsq1uz4yjlo1_500,82033,2 4494,FRAMEQA33251,gray,what is the color of the suit?,tumblr_ndc106iim91rgb5tho1_250,3308,2 4495,FRAMEQA48494,balloon,"what is the man filling with an aerosol , and holding a lighter underneath , it explodes in flames?",tumblr_nlj721y4ly1tngihso1_400,39076,0 4496,FRAMEQA17212,kitten,what tries to grab an animated mouse on a tablet?,tumblr_nbonmh32QP1slwrsuo1_400,13378,0 4497,FRAMEQA17652,white,what is the color of the man?,tumblr_nk2v6r00g21unqpa3o1_250,24223,2 4498,FRAMEQA41950,black,what is the color of the shirt?,tumblr_nf33t0vOAz1syou1io1_500,14107,2 4499,FRAMEQA30595,ball,what does the soccer player flip past another soccer player?,tumblr_nq3cdi4S1R1u7q0qeo1_400,96221,0 4500,FRAMEQA2435,three,how many teens look and walk away while one of them does a hand gesture?,tumblr_nag2vziX7H1rawraqo1_500,94649,1 4501,FRAMEQA2918,black,what is the color of the hat?,tumblr_n9ehfs2T7p1ttgk5ro1_250,2258,2 4502,FRAMEQA47953,two,how many women wave goodbye and slowly close the door behind them?,tumblr_n8sg4dnVGy1teocxjo1_400,66445,1 4503,FRAMEQA14629,phone,what is the man in a suit and tie holding to his ear?,tumblr_nf4x84UeBt1sbqfh7o1_250,8630,0 4504,FRAMEQA47318,black,what is the color of the t-shirt?,tumblr_nb8t4qdj741r5bh48o1_500,85728,2 4505,FRAMEQA33360,blanket,what is the woman holding and it falls over her behind?,tumblr_na4nwcgf721tq6drmo1_250,11567,0 4506,FRAMEQA51772,brown,what is the color of the gloves?,tumblr_nkles2NbB11rlb2tvo1_1280,54196,2 4507,FRAMEQA13054,coat,what does the woman adjust?,tumblr_nappn5EVPG1t8jvi1o1_500,52923,0 4508,FRAMEQA27678,car,what comes around the corner of a track and spins out?,tumblr_nour3aj5RW1tx8mn0o1_400,77014,0 4509,FRAMEQA12677,car,where does the man shut his window whilst lights flash in the background?,tumblr_nqmrnfJHqY1r9pv19o1_500,73803,3 4510,FRAMEQA48698,knives,what is the man throwing at a young woman holding paddles?,tumblr_n9ousdC7yv1tdjuqvo1_400,21043,0 4511,FRAMEQA45071,frame,where is the chin bobbing?,tumblr_nkp0avQWPh1si8uq7o1_400,64881,3 4512,FRAMEQA17280,white,what is the color of the shirt?,tumblr_ni1g3fczxJ1ra78amo1_100,14840,2 4513,FRAMEQA8180,dog,what is barking at every vehicle that passes by?,tumblr_nrkm38Aep41u80mmjo1_400,56068,0 4514,FRAMEQA38518,white,what is the color of the people?,tumblr_njy9hdR3rh1u2zo17o1_400,71375,2 4515,FRAMEQA6454,two,how many women are dancing together in front of a fountain?,tumblr_ne4ukt1AIR1r7zltao1_400,58770,1 4516,FRAMEQA41392,yellow,what is the color of the duck?,tumblr_n92oq4Hega1ts0kzio1_400,34144,2 4517,FRAMEQA10169,cat,what is walking across water on a steel rail?,tumblr_nat7piX07F1slj978o1_250,16348,0 4518,FRAMEQA45663,black,what is the color of the chest?,tumblr_ndyfoeWTpX1qa051so1_500,85777,2 4519,FRAMEQA7505,black,what is the color of the guy?,tumblr_nhx2a5Ldzl1sdbrm9o1_400,85456,2 4520,FRAMEQA29219,black,what is the color of the jacket?,tumblr_n8x1k9arXy1th7vhgo1_250,53456,2 4521,FRAMEQA9307,doors,what does man open walking into a room?,tumblr_nd3vynn0a81rregeqo1_500,34224,0 4522,FRAMEQA33225,trolley,what do two men stand in a trolley and another one pushes along?,tumblr_najmw24iuw1qlo2n6o1_400,20067,0 4523,FRAMEQA24664,chair,what is the young man with white hair riding?,tumblr_ncq9kaqQ2R1tegl32o1_250,14927,0 4524,FRAMEQA23592,noodles,what is the man in a suit and tie eating with his hands?,tumblr_nbg6ia8wuI1typ81lo1_400,61990,0 4525,FRAMEQA50182,two,"how many men are talking , one cries and holds a handkerchief to his nose , the other tries to comfort him?",tumblr_no65vn27ry1s5zcijo1_400,87423,1 4526,FRAMEQA27862,red,what is the color of the room?,tumblr_nheuo83aCM1t0w9oqo1_400,74555,2 4527,FRAMEQA9250,red,what is the color of the balloon?,tumblr_nf5479yc0v1suhp97o1_500,59776,2 4528,FRAMEQA5433,gray,what is the color of the shirt?,tumblr_nk22wlkaMq1tuh3l3o1_400,68118,2 4529,FRAMEQA27446,goat,what slammed into the little boy beside the red trailer?,tumblr_nnukunx7r61uuj39do1_400,37449,0 4530,FRAMEQA8822,suit,what is holding his pet?,tumblr_n8ptmsvc1I1th4an4o1_500,69752,0 4531,FRAMEQA20911,wrap,what is the woman unrolling and looking mad?,tumblr_no963fPopI1uuv7imo1_500,30434,0 4532,FRAMEQA38754,cat,what is playing with the piece of string?,tumblr_ner3v7FbbI1rgchc8o1_500,72762,0 4533,FRAMEQA18072,kitten,what is touching the fish with their face and paw?,tumblr_n8hk45xsAu1tgetb4o1_400,66886,0 4534,FRAMEQA46397,room,where is the small baby making a mess?,tumblr_nqyszt5Ni41td493xo1_500,70615,3 4535,FRAMEQA50777,white,what is the color of the hat?,tumblr_nb1tyhgYEn1sda6szo1_400,78109,2 4536,FRAMEQA7194,cat,what is surprised when someone places a pink flower on its head?,tumblr_nqpkgekB2L1t673d8o1_250,18793,0 4537,FRAMEQA49113,glasses,what does the girl move down slightly?,tumblr_nc5xkfbVPQ1tsmc92o1_400,50561,0 4538,FRAMEQA4672,cart,where is the boy pushing two standing boys?,tumblr_nbp2e0Uw4E1sj5pwvo1_400,23814,3 4539,FRAMEQA7627,white,what is the color of the bear?,tumblr_nbcfhzsUZH1r7blyco1_400,89505,2 4540,FRAMEQA30734,room,where is the man jumping?,tumblr_ncmq0cCMma1sxr88mo1_500,56007,3 4541,FRAMEQA8312,cat,what is laying down and begins kicking his legs?,tumblr_nrj8tiIIWd1tkhxdko1_400,22505,0 4542,FRAMEQA25742,shirt,what is the soccer player wearing?,tumblr_ndbh9dqQku1sgrzwto1_400,63510,0 4543,FRAMEQA48737,white,what is the color of the clothing?,tumblr_nfpzlvf6oq1r6d38lo1_250,22394,2 4544,FRAMEQA10632,two,"how many people does when the man in a mask put the hood of a car down , inside of the car get scared?",tumblr_ne44f8BnGg1qhmhclo1_500,97777,1 4545,FRAMEQA50129,two,how many guys wear sunglasses and play air drums?,tumblr_nk2xke0BQS1uopxvxo1_500,84797,1 4546,FRAMEQA3112,white,what is the color of the singing?,tumblr_ney7igW9Zl1tik3sgo1_250,36658,2 4547,FRAMEQA32884,car,what is here racing?,tumblr_nqyiresVbd1unyhx2o1_400,76911,0 4548,FRAMEQA15124,blue,what is the color of the shirt?,tumblr_naj3brtcOB1sjcvr3o1_400,27188,2 4549,FRAMEQA37596,two,how many lovers is playing with hands and look very happy?,tumblr_noelv1D1uI1tdtm2ao1_400,85653,1 4550,FRAMEQA20333,black,what is the color of the shirt?,tumblr_nk84wqh2Vm1tmaii4o1_250,19449,2 4551,FRAMEQA4806,room,where are two men talking?,tumblr_na9rbrw8PT1tjys71o1_250,68864,3 4552,FRAMEQA3533,blue,what is the color of the horse?,tumblr_njtxedpe7W1t7an45o1_250,27296,2 4553,FRAMEQA10151,shirt,what is the guy staring forward and touching?,tumblr_nfieggHos51tz7e01o1_250,23240,0 4554,FRAMEQA48657,two,how many men is wearing costumes are falling to the floor?,tumblr_n9ycxgDgWo1tw9irno1_400,47956,1 4555,FRAMEQA27450,blue,what is the color of the costume?,tumblr_n8ywiw6h2O1thwjzto1_250,20874,2 4556,FRAMEQA37814,gym,where is the lady with black pants and a green shirt exercising?,tumblr_nbrh6eMkuA1tkdyoao1_400,82205,3 4557,FRAMEQA52477,black,what is the color of the jacket?,tumblr_nhdpcfJ9wz1r440y4o1_400,32240,2 4558,FRAMEQA6646,beer,what is the woman drinking while sitting on a couch?,tumblr_nct6fkK6O11tk0p0po1_400,31741,0 4559,FRAMEQA39784,red,what is the color of the shirt?,tumblr_na35maMaeX1r17l27o2_500,93211,2 4560,FRAMEQA32832,white,what is the color of the shirt?,tumblr_n9ft5xtWBY1skz3lko1_500,72890,2 4561,FRAMEQA30400,guitar,what is the rock star playing at a concert?,tumblr_n2juodBtsG1ttwpt3o1_500,49533,0 4562,FRAMEQA25711,chicken,what does the person with a pan chase?,tumblr_nckpskUOON1tbpthxo1_400,65077,0 4563,FRAMEQA40464,animals,what is the man making behind another man?,tumblr_njy7o4JdmP1u2mi4fo1_400,51173,0 4564,FRAMEQA9568,car,what did three cars race and moved to first?,tumblr_nit1e4bC5N1tx8mn0o1_400,96402,0 4565,FRAMEQA28266,two,how many teenagers are singing?,tumblr_nll23tPe0j1uqj9elo1_500,93777,1 4566,FRAMEQA42281,dog,what is waving its tail?,tumblr_nk5ddaL9zk1s28vxko1_400,43219,0 4567,FRAMEQA25217,one,how many woman is applying eye make-up on her right eye?,tumblr_nb6dao7Wjg1t3vq9ho1_400,59203,1 4568,FRAMEQA41588,tails,what are some people wearing and swimming underwater?,tumblr_n8smhsNjcz1t6so35o3_400,52021,0 4569,FRAMEQA30013,toy,what does the guy hold while taking?,tumblr_nhrq4zTBiW1td8ijso1_400,54537,0 4570,FRAMEQA26440,bear,what is the teenager grabbing while talking?,tumblr_n8q47znhFo1th5omjo1_400,57045,0 4571,FRAMEQA21893,cat,what scares the woman standing on the side of a building?,tumblr_ne35uinLzV1tdjuqvo1_500,49418,0 4572,FRAMEQA35949,white,what is the color of the shirt?,tumblr_ncj0b4qFmm1tk9c2ao1_400,4727,2 4573,FRAMEQA31378,white,what is the color of the shirt?,tumblr_nkmkyk3u3L1tm06zno1_400,68022,2 4574,FRAMEQA42059,turtle,what misses while trying to bite food?,tumblr_ndxaa8dPaC1u24b8uo1_500,82019,0 4575,FRAMEQA8688,red,what is the color of the lipstick?,tumblr_nbd7vubGi41r27fbxo1_250,4851,2 4576,FRAMEQA5046,snake,what is following the mouse around its container?,tumblr_n9emuzqIhv1sk96t7o1_400,42486,0 4577,FRAMEQA206,cigarette,what is man on stage holding a guitar is lighting?,tumblr_nowuvtVkdP1uvne53o1_400,33280,0 4578,FRAMEQA27060,two,how many people try to drop the grown man into a crib?,tumblr_ni0wm1MHqZ1s6zpepo1_250,51836,1 4579,FRAMEQA25672,shoe,what is being put on the horse?,tumblr_npjrckDyiu1qe2thio1_500,67512,0 4580,FRAMEQA42506,car,where is the man running funny?,tumblr_nqohhcgGYi1r1pstjo1_400,24326,3 4581,FRAMEQA12826,guitar,what is the long haired man leaning back and holding?,tumblr_ndrhyfL5yO1s0mjn5o1_400,58868,0 4582,FRAMEQA25260,two,how many girls is wearing black are dancing together?,tumblr_ngfktiCBxK1sbnbk1o1_400,34032,1 4583,FRAMEQA23801,brown,what is the color of the beard?,tumblr_ncr1ueQn9z1t5lviko1_250,27112,2 4584,FRAMEQA30479,black,what is the color of the man?,tumblr_na7vcrlEAM1sr0xveo1_400,97808,2 4585,FRAMEQA26392,two,how many women are fighting in the kitchen?,tumblr_npj3v5k7YO1twa8dfo1_400,13996,1 4586,FRAMEQA28631,chair,where is the guy sitting and dancing?,tumblr_nbqkbsQwOJ1qfcoxlo1_500,85720,3 4587,FRAMEQA24608,microphone,what is the young man offered?,tumblr_nhgd4tdMjV1ts3o9ao1_250,2088,0 4588,FRAMEQA47681,drawer,where is the cat and playing with a person holding a pen?,tumblr_n9vr1xjmof1tdmffyo1_250,27920,3 4589,FRAMEQA35326,black,what is the color of the hair?,tumblr_n8vp9k3ABC1thrhd5o1_250,47273,2 4590,FRAMEQA51930,black,what is the color of the top?,tumblr_na1zgdH9ZR1qccipro1_400,39812,2 4591,FRAMEQA26297,orange,what is the color of the shirt?,tumblr_nhyizh0JAT1tsqdy0o1_400,16014,2 4592,FRAMEQA30790,airplane,what takes off as the earth collapses beneath them?,tumblr_nbv0ml7KVI1tbep7no1_500,95154,0 4593,FRAMEQA8000,cigarette,"what does girl hold with right hand ,?",tumblr_nrdwcyxDx61u66jq3o1_250,3694,0 4594,FRAMEQA38478,ball,what did the keeper kick in soccer?,tumblr_n8w0s850qY1ttzauho1_500,100693,0 4595,FRAMEQA29234,two,how many men are walking?,tumblr_ncfa7hPZ2h1sl2cdao1_500,94639,1 4596,FRAMEQA28219,guitar,what is the man with a beard playing?,tumblr_nr7jp1slnJ1u978z2o2_400,7617,0 4597,FRAMEQA4233,shoe,what is the person in a room tossing about?,tumblr_nfggtzJj401rw4ndto1_400,447,0 4598,FRAMEQA12980,room,where is the man hugging a baby?,tumblr_nb4iicB9A01tijrpco1_500,62711,3 4599,FRAMEQA32452,room,where is the woman kissing a man?,tumblr_nk31otefby1tleghwo1_500,92217,3 4600,FRAMEQA10519,wolf,what is looking up when he 's a wolf?,tumblr_nitkjlvfER1ra78amo1_100,13528,0 4601,FRAMEQA16187,horse,what jumps up and down in the snow?,tumblr_n6kmok3DdI1r1x3klo1_250,11769,0 4602,FRAMEQA15364,two,how many people are sitting next to each other carving pumpkins?,tumblr_ne8yo1RByn1r7xloyo1_400,101514,1 4603,FRAMEQA44802,two,how many girls are stretching their legs and moving forward?,tumblr_npeg2iKBbw1u9kj5io1_400,80041,1 4604,FRAMEQA39225,barbel,"what is the man lifting ,?",tumblr_nkizp0As2f1sjsdi9o1_250,46711,0 4605,FRAMEQA6281,green,what is the color of the clothing?,tumblr_ndb37uXXWs1rk6emro1_250,22358,2 4606,FRAMEQA14161,two,how many men in red are on a stage performing?,tumblr_nfaj6sdQYe1re06l8o1_400,50188,1 4607,FRAMEQA6252,white,what is the color of the man?,tumblr_nf5m5fBbyF1u11j39o1_500,46582,2 4608,FRAMEQA9301,frog,what does the person hold out their hand and jumps on it?,tumblr_npfa926ftF1rhl4f0o1_400,55339,0 4609,FRAMEQA25465,black,what is the color of the boy?,tumblr_n9wch8DPCW1rvxuq0o1_250,11798,2 4610,FRAMEQA28749,red,what is the color of the car?,tumblr_nd1581WZAJ1surxvho1_250,47099,2 4611,FRAMEQA7930,red,what is the color of the dress?,tumblr_nbqjb78h2e1t0jqwno1_250,15395,2 4612,FRAMEQA1588,two,how many women are crying and looking very sad?,tumblr_ncmkrlulEL1tt4nxqo1_250,26024,1 4613,FRAMEQA46878,bathtub,where is the young boy sitting while still wearing clothes?,tumblr_no3jpmtGki1uscox5o1_500,96789,3 4614,FRAMEQA32938,white,what is the color of the wall?,tumblr_nkqyrrDHMf1upvohzo1_400,69802,2 4615,FRAMEQA4422,room,where is the man with short hair standing?,tumblr_n9dkkuacx41sl89nwo1_400,96002,3 4616,FRAMEQA19242,road,what is the red car driving down passing all the grass?,tumblr_nfflefXvpx1u25ovvo1_400,63605,0 4617,FRAMEQA8602,two,how many boys are laughing and smiling and moving their hands?,tumblr_nag9s4yd0c1txncr3o1_500,95076,1 4618,FRAMEQA45852,door,what is the striped cat standing up and closing?,tumblr_nkyam1X1MM1tmnntwo1_250,37541,0 4619,FRAMEQA13930,two,how many men in striped red and white shirts are pointing?,tumblr_nqwmhysJ721ua5q7mo1_500,32856,1 4620,FRAMEQA16551,black,what is the color of the boy?,tumblr_nnjwd9zoNn1upsi9qo1_400,66967,2 4621,FRAMEQA40719,two,how many people are in the room and one of them kisses another on the cheek?,tumblr_nqz47dYQB41ua5hw2o1_250,13934,1 4622,FRAMEQA18885,room,what is the boy wearing a suit and bow tie is entering?,tumblr_nkryq13Fgy1tvfpn9o1_500,96976,0 4623,FRAMEQA21294,three,how many men talk to one another in a kitchen?,tumblr_n9sho7J99O1tggdauo1_400,14816,1 4624,FRAMEQA44850,red,what is the color of the chair?,tumblr_nazcze5vKT1thn2bho1_250,25705,2 4625,FRAMEQA573,cat,what is the dog tipping into a bath of water?,tumblr_noswtqDMKC1tyncywo1_400,29427,0 4626,FRAMEQA48090,black,what is the color of the hair?,tumblr_n9codlYOUt1tei1yuo1_500,6135,2 4627,FRAMEQA38699,cat,what gets its paw stuck in a mouse trap and runs around wildly?,tumblr_nhpugqJVgm1s6zpepo1_400,30538,0 4628,FRAMEQA26180,white,what is the color of the shirt?,tumblr_nf58ex9daJ1tmmir0o1_400,64515,2 4629,FRAMEQA17958,building,where is the horse trainer exercising her horse?,tumblr_n8zd1nDo0B1rwgxlqo1_500,70645,3 4630,FRAMEQA44904,white,what is the color of the shirt?,tumblr_nip76fLqwA1rrqplco1_500,37808,2 4631,FRAMEQA13438,black,what is the color of the man?,tumblr_nhg3xgIuHx1tst1r3o1_250,53647,2 4632,FRAMEQA9988,black,what is the color of the glasses?,tumblr_nfsmqbZ9tQ1t1nk7eo1_400,60946,2 4633,FRAMEQA37545,white,what is the color of the tops?,tumblr_nobe08t7lw1r902nto1_400,57733,2 4634,FRAMEQA17215,mirror,where is the guy looking?,tumblr_ncmxxsTCYl1t5lviko1_250,92019,3 4635,FRAMEQA48084,room,where are two sad men hugging?,tumblr_nfu029ChXA1twvdtso1_250,51823,3 4636,FRAMEQA14098,microphone,what is the man wearing sunglasses is smiling and holding?,tumblr_nb5omdZR4p1tsqmfco1_500,88637,0 4637,FRAMEQA1537,two,how many people is it?,tumblr_nc6s7sAIcc1swpoago1_400,70302,1 4638,FRAMEQA22319,bat,"what is the man , using as a weapon , hits a zombie in the head?",tumblr_nj722iKfJY1u7hpo7o1_500,90202,0 4639,FRAMEQA36956,two,how many men are kissing the woman 's hand as she walks between the two of them?,tumblr_n9v70oXqey1rw0tkfo2_r1_400,49374,1 4640,FRAMEQA1311,two,how many men are laughing and pointing at each other?,tumblr_neqo62WkUz1u38y0ao1_500,78143,1 4641,FRAMEQA51940,three,how many people are in the room with a window?,tumblr_nk9dzvhw3W1st35iko1_400,64381,1 4642,FRAMEQA45636,toy,what is the cat licking?,tumblr_ncmnxtXMH81rd87k4o1_250,13409,0 4643,FRAMEQA41230,red,what is the color of the vest?,tumblr_neqyaxfZfv1ry1ioco2_500,97316,2 4644,FRAMEQA5237,black,what is the color of the shirt?,tumblr_nbnd6rNKRS1trhseeo1_400,61293,2 4645,FRAMEQA45287,road,where did the black man flat collapse and praying?,tumblr_neyimghSIJ1sqwf9so1_500,75844,3 4646,FRAMEQA22193,dog,what is running around and has eyebrows drawn on its face?,tumblr_nbspjswqQu1sz068fo1_250,39915,0 4647,FRAMEQA31468,black,what is the color of the hair?,tumblr_nk8dq27ECT1s6zpepo1_250,19956,2 4648,FRAMEQA10125,trucks,what are going over the lot of hills?,tumblr_nq06ihvo7U1up68h4o1_400,28893,0 4649,FRAMEQA30846,glasses,what is the man touching and pointing?,tumblr_nqxtr2IkNY1trdw2po1_540,4910,0 4650,FRAMEQA1922,white,what is the color of the top?,tumblr_nb48dltPmv1tntd2io1_500,73902,2 4651,FRAMEQA27269,blue,what is the color of the eyes?,tumblr_njk8dgIgDF1rrs7bmo1_500,70881,2 4652,FRAMEQA48281,two,how many guys are playing guitars under some lights?,tumblr_na6m9ty5TR1qjwz8qo1_250,27638,1 4653,FRAMEQA16680,car,what is driving through snow covered mountains?,tumblr_negevo44tS1u25ovvo1_400,63576,0 4654,FRAMEQA7244,black,what is the color of the clothes?,tumblr_nec1h2hsBk1rlqu38o1_500,40075,2 4655,FRAMEQA8399,black,what is the color of the suit?,tumblr_n92lmeEmjl1temiwgo1_r1_500,94918,2 4656,FRAMEQA11695,chair,what does dog push out from underneath man?,tumblr_npmetmIe3v1use8l1o1_400,36200,0 4657,FRAMEQA43932,boxers,what are fighting in the ring?,tumblr_neyjq3tjnp1rpq8aco1_400,82800,0 4658,FRAMEQA37715,two,how many guys are walking slowly towards the vault?,tumblr_nojc0uHi1c1tmavx8o1_400,42824,1 4659,FRAMEQA28760,two,how many costumed men are talking to each other and posing?,tumblr_nb74ml20iT1r75i3co1_250,45786,1 4660,FRAMEQA18557,drum,what is man playing in front of a brick wall?,tumblr_nca11jFXRI1qhb3vzo1_500,57597,0 4661,FRAMEQA48158,bedroom,where is the man singing?,tumblr_n8xmlnuVnk1ru8amgo1_400,72331,3 4662,FRAMEQA20857,flower,what is the person putting into a gun?,tumblr_ncbrxaMA9X1speqgzo1_500,68168,0 4663,FRAMEQA5365,black,what is the color of the girl?,tumblr_ngl1a42vds1s2yagbo1_250,713,2 4664,FRAMEQA46425,cat,what is sleeping inside the box while another cat sees him?,tumblr_nad5toBHv81s2mb0qo1_500,62745,0 4665,FRAMEQA35091,room,where is the man wearing a hat smiles?,tumblr_na41taiBVK1shahvmo1_500,53180,3 4666,FRAMEQA26894,room,where are two men wearing sunglasses are fooling around?,tumblr_n9f1hcMqsn1snp73jo1_500,45318,3 4667,FRAMEQA39211,black,what is the color of the t-shirt?,tumblr_njq76iN8qX1u594gko1_500,48685,2 4668,FRAMEQA43007,two,how many young men sit on the couch together?,tumblr_nd57hoEbnf1tnzvzmo1_400,59606,1 4669,FRAMEQA3320,three,how many people is wearing big hats are walking?,tumblr_nds6ogu9QS1tsn7r7o1_400,22067,1 4670,FRAMEQA11417,two,how many people are performing on the stage?,tumblr_n9og9wBTgA1t22o2oo1_400,79107,1 4671,FRAMEQA19300,bus,what is the swat team raiding?,tumblr_njpddaSVGc1un86uao1_400,64584,0 4672,FRAMEQA33448,two,how many men are alternating throwing garbage into a giant hole?,tumblr_nkhse2X0fN1uoio1ko1_400,72796,1 4673,FRAMEQA37537,red,what is the color of the bucket?,tumblr_nfarhcHDam1seb8aro1_400,65054,2 4674,FRAMEQA10522,dog,what is following the laser pointer and bites a boy in his crotch?,tumblr_ndzw33j6bu1th8rjso1_400,31035,0 4675,FRAMEQA27971,two,how many people is this with some kind of gadget smiling and each other?,tumblr_ng8o1nWNXz1u5segmo1_400,76676,1 4676,FRAMEQA48296,cat,what runs and jumps into the wall several times?,tumblr_nlfii6q03r1s6zpepo1_400,40034,0 4677,FRAMEQA19191,cat,what smells an iguana 's tail as the iguana eats?,tumblr_neygedcDOt1tkhxdko1_400,46613,0 4678,FRAMEQA36491,butterfly,what is moving its wings and a hand is writing on paper with an ink tip pen?,tumblr_np4u4zNuv21rjxtuwo1_400,35441,0 4679,FRAMEQA28298,four,how many guys are making some faces and one girl?,tumblr_njy2vsSN3R1u3aadfo1_500,92227,1 4680,FRAMEQA31081,guitar,what is the man singing into a mic and playing?,tumblr_nftibqLA1f1tcwc21o1_400,28432,0 4681,FRAMEQA13021,room,what is crowded with some guys and one is armed?,tumblr_ndnekyGEgf1sa0lndo1_500,71413,0 4682,FRAMEQA8474,hedgehog,what is curled up and floating in water?,tumblr_nela0aVJkV1si2peso1_250,53402,0 4683,FRAMEQA5080,phone,what is she kissing?,tumblr_nk132aAxXT1tg9gzmo1_500,90841,0 4684,FRAMEQA22985,tree,what is the man shaking and knocking down the ornaments on the tree?,tumblr_nhe8vgQHTM1rvab3po1_250,21670,0 4685,FRAMEQA10410,drums,what is the boy playing and doing tricks with drum sticks?,tumblr_nqmndvLQjb1uxf548o1_400,30829,0 4686,FRAMEQA51274,challenge,what does the woman do?,tumblr_naxlj6MkoW1qfqoopo1_500,89565,0 4687,FRAMEQA37024,two,how many people are talking to each other?,tumblr_nee92e9wJt1srt4nmo1_250,81215,1 4688,FRAMEQA19826,two,how many people are hugging each other in a hallway?,tumblr_nklnw6kpNZ1qfgm2wo1_250,84350,1 4689,FRAMEQA22354,black,what is the color of the dog?,tumblr_ncj1cj63rn1trxml2o1_500,79343,2 4690,FRAMEQA7347,dog,what is trying to grab some food?,tumblr_nijrydrPVc1rtzdq7o1_400,94791,0 4691,FRAMEQA3083,blue,what is the color of the t-shirt?,tumblr_ncn6j1KjeH1rsm126o1_400,36191,2 4692,FRAMEQA18322,two,how many people sat singing the song together?,tumblr_nbf41w5Hqw1spslz8o1_500,90538,1 4693,FRAMEQA34192,white,what is the color of the shirt?,tumblr_nr5gsre85l1rs13bbo1_400,72620,2 4694,FRAMEQA16937,toilet,where is the dog drinking?,tumblr_nbfbih9DeO1slwrsuo1_400,15753,3 4695,FRAMEQA45294,gray,what is the color of the car?,tumblr_nfqoyfh3sz1u25ovvo1_400,63597,2 4696,FRAMEQA7493,bird,what shakes his tail feather while moving backwards on a mossy log?,tumblr_nczlfupRqq1tvuidio1_500,84031,0 4697,FRAMEQA43103,box,what does the young man hit with a hammer and it catches fire?,tumblr_n932icNWVf1s3att3o1_400,2930,0 4698,FRAMEQA323,guitar,what does the man with tattoos play?,tumblr_n9v14rHt3R1riy1p3o1_400,39342,0 4699,FRAMEQA13897,black,what is the color of the makeup?,tumblr_nhtce8TxcX1u7genpo1_500,5913,2 4700,FRAMEQA7681,yellow,what is the color of the motorcycle?,tumblr_n9hl6ky3FK1qk377so1_400,84923,2 4701,FRAMEQA28493,two,how many women are talking together into the microphone?,tumblr_ngw6bwDfFA1tmo8ldo1_250,41373,1 4702,FRAMEQA6358,two,how many men smile and embrace in the hug?,tumblr_nhebn0UepF1sdrnczo1_250,51591,1 4703,FRAMEQA22414,machine,what is the man blowing up?,tumblr_nj2ah47Cgl1u80nl9o1_400,26814,0 4704,FRAMEQA43312,tie,what is the woman wearing and stirring a black pot?,tumblr_np9wd6T7fT1tkxy83o1_250,3901,0 4705,FRAMEQA38455,brown,what is the color of the hair?,tumblr_ncs2zopqhR1u0oghro1_500,40817,2 4706,FRAMEQA4366,black,what is the color of the shirt?,tumblr_njodji5ahy1rj51zgo1_250,8331,2 4707,FRAMEQA30277,white,what is the color of the suits?,tumblr_nebhvpBUgh1rgxfumo1_250,1163,2 4708,FRAMEQA49719,blue,what is the color of the shirt?,tumblr_n95fffMAzD1ssybv1o1_400,32383,2 4709,FRAMEQA51892,airplane,what is flying over the road that is collapsing?,tumblr_nbv0ml7KVI1tbep7no1_500,95154,0 4710,FRAMEQA50641,green,what is the color of the cat?,tumblr_nd3wo9RJe91tkhxdko1_250,68397,2 4711,FRAMEQA49474,candy,what is the man wearing a blue jacket is putting into his mouth?,tumblr_nqn3tqmbjc1souwjko1_400,71821,0 4712,FRAMEQA8974,pool,where are the group of people playing?,tumblr_nckg4oA1Tr1t5a4c7o1_400,64343,3 4713,FRAMEQA14261,llamas,what is the man holding?,tumblr_nqvj8l4kcT1uq7zwjo1_400,63226,0 4714,FRAMEQA8493,cat,"what swats at the candle and blows it out , then watches the smoke rise?",tumblr_nc28ihKPGx1slwrsuo1_400,34010,0 4715,FRAMEQA38047,black,what is the color of the hair?,tumblr_nhq6ze0bhp1sja7kao1_250,12929,2 4716,FRAMEQA20176,dog,what is licking the face of a cheetah?,tumblr_naeyc6yQWy1tahfdeo1_250,56593,0 4717,FRAMEQA765,two,how many men are spitting food into each others ' mouths from across a room?,tumblr_naqyh4k9gq1s99ctgo1_500,98962,1 4718,FRAMEQA52031,black,what is the color of the hair?,tumblr_nki5ufFD2g1rl58kdo1_400,28904,2 4719,FRAMEQA25067,red,what is the color of the hat?,tumblr_ni50v7R0s31u1dgb1o1_250,772,2 4720,FRAMEQA52583,car,what drives through the mass of trees?,tumblr_ncz0atFAdD1qac99eo1_400,35538,0 4721,FRAMEQA52970,box,"what does the mouse exit , and it is pushed by a cat?",tumblr_nkoj4fayWP1slj978o1_400,38644,0 4722,FRAMEQA4236,cat,what is kicked away by another cat that is lying on the floor?,tumblr_n9j6u0SS061ri0wzfo1_400,39368,0 4723,FRAMEQA50138,cat,what is the girl with glasses holding?,tumblr_n9gglqx17d1twg5ujo1_400,31689,0 4724,FRAMEQA28766,three,how many males row the boat on water?,tumblr_nkyhhgTo8b1tw2zo1o1_400,50150,1 4725,FRAMEQA38110,two,how many young men miss?,tumblr_n94fo5XLEK1s71fqlo1_250,49701,1 4726,FRAMEQA48353,frog,what is opening his mouth unusually wide?,tumblr_nr4ssypv3Y1uaujqao1_400,35099,0 4727,FRAMEQA4811,black,what is the color of the woman?,tumblr_ncnclh0Da61sqeumlo1_250,20525,2 4728,FRAMEQA37930,white,what is the color of the shirt?,tumblr_n9x10s8jtl1tg7q8lo1_400,48185,2 4729,FRAMEQA5690,black,what is the color of the clothing?,tumblr_nhywm4Iq3L1rbdewvo1_500,46530,2 4730,FRAMEQA12579,bubble,what is the woman blowing and wearing a black fur vest?,tumblr_njmov237Wm1sy82cio1_500,87719,0 4731,FRAMEQA38005,bird,"what does the polar bear do not notice , but the bear cub does?",tumblr_npblti8bU91use8l1o1_400,82811,0 4732,FRAMEQA19115,two,how many men in suits are singing on stage?,tumblr_n9s983h2cd1se4p6ho1_400,31841,1 4733,FRAMEQA16516,studio,where is the model posing?,tumblr_ndn0jvjEdb1u1anm2o1_400,56874,3 4734,FRAMEQA27178,white,what is the color of the person?,tumblr_nmps1wPRN61useig5o1_250,3045,2 4735,FRAMEQA18669,one,how many man lifts the knife to his neck?,tumblr_ne4cexoiPR1ste7mro1_r1_500,67029,1 4736,FRAMEQA18893,two,how many people is it fighting and falling on the floor?,tumblr_nkhbeuZhcR1u8dfc7o1_400,96835,1 4737,FRAMEQA36214,skateboard,where does the woman stop a girl and she falls?,tumblr_ne236gfB5I1rrxy7do1_500,95119,3 4738,FRAMEQA18661,bag,what is the guy walking in the street and holding?,tumblr_nerwf18fKw1tav4r9o1_400,84123,0 4739,FRAMEQA34919,microphone,"what is the woman wearing a tank top with dark orange hair , lifts up to her mouth ,?",tumblr_njrmo9arP31s2mg9to1_500,88169,0 4740,FRAMEQA33324,black,what is the color of the rabbit?,tumblr_nf9fj4glx61swtmgzo1_500,46702,2 4741,FRAMEQA13993,green,what is the color of the couch?,tumblr_nhfopwsnzc1u75on0o1_400,75796,2 4742,FRAMEQA5297,red,what is the color of the lipstick?,tumblr_ndujix89UO1u1lbl0o1_250,9663,2 4743,FRAMEQA32028,two,how many guys are talking back and forth to each other?,tumblr_njvt4xtqsW1u30he7o1_400,89355,1 4744,FRAMEQA41887,headphones,what is the man wearing and making hand gestures?,tumblr_nisss1aNSV1ti30pto1_250,43842,0 4745,FRAMEQA16888,black,what is the color of the woman?,tumblr_nku9l3LvoR1rhjt2zo1_400,30739,2 4746,FRAMEQA47960,three,how many people are laying together talking?,tumblr_nh6ogaoDLQ1tv8k7po1_400,70363,1 4747,FRAMEQA24564,dog,what is chewing on the soft object?,tumblr_nb40f1NWsK1tjrca2o1_400,65695,0 4748,FRAMEQA5248,building,where are the band of men performing?,tumblr_nc4qq4ZMRs1r1gt0co1_400,59520,3 4749,FRAMEQA6193,car,what is the strong man driving?,tumblr_ngtpdn8oHz1s0w3iqo1_400,57885,0 4750,FRAMEQA41883,hat,what is the man?,tumblr_ndhlolhgCM1tmjjtfo1_250,12908,0 4751,FRAMEQA28998,cap,"what is the sportsman , wearing , talks and bends his head forward?",tumblr_nhexdhCBD61u5v821o1_400,79190,0 4752,FRAMEQA39952,black,what is the color of the man?,tumblr_nr6iucpXXm1sht3fmo1_400,96033,2 4753,FRAMEQA32420,three,how many men are looking at something and holding their hands forward?,tumblr_nc5q7jKFWT1rf50qno1_500,98018,1 4754,FRAMEQA41915,doorway,where is the man wearing a tie is standing and talking?,tumblr_ni8pby75eq1sv8skeo1_250,2112,3 4755,FRAMEQA44351,car,what is the man driving and meteor is in the sky?,tumblr_nazajtnJAC1tn4t8jo1_400,62167,0 4756,FRAMEQA15611,bow,what is the man firing while performing a somersault?,tumblr_nbor73nQVG1tlf703o1_400,89451,0 4757,FRAMEQA46346,instrument,what is the person playing and moving their body in front of a crowd?,tumblr_ncaqcxiGHD1thc9hdo1_400,42852,0 4758,FRAMEQA44514,white,what is the color of the hair?,tumblr_ni11vxPmR71stuueeo1_400,63638,2 4759,FRAMEQA29784,microphone,what is the young man holding and then he winks and points?,tumblr_nacwz6uN1g1tjd83eo1_400,18795,0 4760,FRAMEQA19650,beer,what is the man wearing sunglasses smiles and drinks?,tumblr_nr7badeW1R1uaavsyo1_500,73284,0 4761,FRAMEQA19170,four,how many men strut with microphones while in a spotlight?,tumblr_nb8p14Jp6n1slfugro1_500,86508,1 4762,FRAMEQA17859,cat,"what attacks another cats tail , which causes that cat to attack another cat?",tumblr_nf8v50LnUt1tk2ngvo1_500,78064,0 4763,FRAMEQA46656,two,how many sumo wrestlers are wrestling?,tumblr_nrkyzg1KPS1tinozao1_400,67090,1 4764,FRAMEQA48242,giraffe,what is the woman showing to the viewer?,tumblr_nom37wmmGg1s4eg66o1_500,57612,0 4765,FRAMEQA23455,cam,what is the person smiling and kissing?,tumblr_nau7jbveIM1r2x87io1_400,33806,0 4766,FRAMEQA14317,two,how many men are smiling while poking their cheeks?,tumblr_nfalpqnjBU1u43iqlo1_250,10355,1 4767,FRAMEQA36751,white,what is the color of the shirt?,tumblr_nplu37Tk5i1uvqau3o1_400,64984,2 4768,FRAMEQA37304,white,what is the color of the shirt?,tumblr_nacr7fJNBK1tdqljso1_500,68737,2 4769,FRAMEQA859,blue,what is the color of the shirt?,tumblr_np97noimRj1swewioo1_250,43615,2 4770,FRAMEQA5239,car,what is the young lady with a green dress on washing?,tumblr_npgic1jBgU1utmlppo1_500,97357,0 4771,FRAMEQA8350,two,how many men were talking and laughing together?,tumblr_nckn34k0481tp4h5xo1_400,59461,1 4772,FRAMEQA22593,kitten,what is crawling around while other kittens sleep?,tumblr_nnk8xylP9g1u5qahro1_1280,54164,0 4773,FRAMEQA17909,black,what is the color of the t-shirt?,tumblr_nc568l5Ijc1sjy24po1_400,84951,2 4774,FRAMEQA13538,two,how many people start touching and kissing each other?,tumblr_nkguu7jdxL1u7a4duo1_250,47966,1 4775,FRAMEQA39201,bed,where are two woman laying and snuggling?,tumblr_nazsf0WpWr1tgqqmdo1_400,67094,3 4776,FRAMEQA26627,two,how many men dressed in black are walking away from their car?,tumblr_nbwyn9wAq21tfvj5ao1_500,24954,1 4777,FRAMEQA44135,close,what does the cat in a blue blanket hold to it?,tumblr_n29eb50PTx1rxpytqo1_250,25431,0 4778,FRAMEQA4880,two,how many men are posing for the cell phone picture?,tumblr_nbzobuxqUi1s3cp8no1_250,9853,1 4779,FRAMEQA15928,two,how many women is this image of hugging each other?,tumblr_nqshzrxEcJ1tcip37o1_250,15556,1 4780,FRAMEQA41518,surface,what is the group of killer whales skimming?,tumblr_nobg1ms55S1tfz725o1_400,80252,0 4781,FRAMEQA46364,room,where are man and woman kissing each-other?,tumblr_n9rl82iCoh1rc1nlfo1_400,32291,3 4782,FRAMEQA29138,stairs,what is the man talking and walking up?,tumblr_nfmdmzflNl1qdpugqo1_400,82072,0 4783,FRAMEQA38375,two,how many people are sitting beside each other drinking?,tumblr_nqs99p3Pvz1ts9vfxo1_250,45171,1 4784,FRAMEQA25788,white,what is the color of the jacket?,tumblr_necxhxfHhH1tl414ro1_400,15863,2 4785,FRAMEQA48810,two,how many small babies are pulling toys from a shelf?,tumblr_nqyszt5Ni41td493xo1_500,70615,1 4786,FRAMEQA29893,dolphin,what is jumping in a see?,tumblr_natbqgxNBR1tswxu9o1_500,100179,0 4787,FRAMEQA5549,three,how many men in red shirts and jeans are walking?,tumblr_ndkvaxBCbI1t6t8bgo1_500,95583,1 4788,FRAMEQA27362,microphones,what do three men hold while standing in a semi circle?,tumblr_nbad3kmtlO1qbih2ho1_500,24377,0 4789,FRAMEQA15520,dog,what is eating food out of a dog dish?,tumblr_n8uqen1tDV1sfmhxao1_400,63448,0 4790,FRAMEQA2327,orange,what is the color of the suit?,tumblr_nqzm28JXgg1r7owcpo1_400,26030,2 4791,FRAMEQA51800,track,what did the race car drive off and back on?,tumblr_n907c1PcRr1sncaa3o1_400,78070,0 4792,FRAMEQA31797,kitchen,where is the man with wired hair shocking?,tumblr_no7f3olx4g1s373hwo1_400,48174,3 4793,FRAMEQA50283,blue,what is the color of the shirt?,tumblr_nkn7gxUg5r1unhekuo1_400,59805,2 4794,FRAMEQA7157,white,what is the color of the jacket?,tumblr_n93yyhaxpU1sofpyco1_250,19059,2 4795,FRAMEQA29826,two,how many girls are drinking the glass of wine?,tumblr_na5uo6rEEc1rv06c2o1_250,32590,1 4796,FRAMEQA10816,cat,"what sways from side to side , losing balance as it tries to walk forward?",tumblr_nhr07tgEBl1tq4njio1_250,12670,0 4797,FRAMEQA40524,butterfly,what is sitting on the floor opening and closing its wings?,tumblr_nfyf3dGT7t1sqkp0fo1_250,60028,0 4798,FRAMEQA30932,t-shirt,what is the man lifting on the stage?,tumblr_nd9lnkbAXJ1qj1oazo1_400,53097,0 4799,FRAMEQA34023,mirror,where are the girl and boy watching themselves?,tumblr_nk6zc2rIbF1uo70tmo1_500,95809,3 4800,FRAMEQA22066,elephant,what is getting its feet caught in tires?,tumblr_nf1kbzvsw71rwzy1eo1_400,71853,0 4801,FRAMEQA19750,groove,what is the lady getting on?,tumblr_nefaiatKqJ1siijy4o1_250,19993,0 4802,FRAMEQA43370,cliff,what does the person jump off into a lake?,tumblr_nfv0q6CIhM1u32r8qo1_400,29813,0 4803,FRAMEQA31155,black,what is the color of the dancing?,tumblr_n8xyivJU3s1tgy948o1_250,11573,2 4804,FRAMEQA25033,wall,what is the small dog licking?,tumblr_nollsdsfZs1sm6bgxo1_400,31771,0 4805,FRAMEQA51670,gun,what is the man in uniform tamping on the ground and it explodes in his face?,tumblr_ncvhq250Md1rt1dljo1_400,28503,0 4806,FRAMEQA6836,tricks,what is the man practicing on mounds of dirt?,tumblr_nam9o5Pavd1tstm7eo1_400,66036,0 4807,FRAMEQA42888,two,how many men one is talking on the phone while the other is crying?,tumblr_nk039jetLe1r0fn19o1_500,91871,1 4808,FRAMEQA45793,car,"what flies off of the dirt ramp , spins , and lands on another ramp?",tumblr_na7u0qCxig1slj978o1_400,101240,0 4809,FRAMEQA29265,butterfly,what is spreading and flapping its wings?,tumblr_nfyf3dGT7t1sqkp0fo1_250,60028,0 4810,FRAMEQA22332,coat,what is the person with the red hair wearing and staring off in the snow?,tumblr_ngsfslT5aX1u2cx64o1_250,151,0 4811,FRAMEQA21737,shoe,what is the man tying on the bus step?,tumblr_n950jbgmRB1ty56o1o1_400,21875,0 4812,FRAMEQA23613,black,what is the color of the hair?,tumblr_ncwve3IvuZ1r8562fo1_500,20063,2 4813,FRAMEQA22054,two,how many girls go into the room and slowly close the door?,tumblr_n8sg4dnVGy1teocxjo1_400,66445,1 4814,FRAMEQA23325,motorcycles,what are racing round the track when one skids off the track and the rider falls off his bike?,tumblr_n93blvtL4p1sncaa3o1_400,65287,0 4815,FRAMEQA26543,microphone,what is the young man holding and dancing on stage?,tumblr_nnxyq2TP0K1tzvjdwo1_250,13050,0 4816,FRAMEQA43985,white,what is the color of the car?,tumblr_ngiqj7Yelt1qfqktro1_400,60770,2 4817,FRAMEQA9668,mask,what are two boys sitting next to each other and one of them is wearing?,tumblr_nc8usq5bxK1t6ckbko1_400,57386,0 4818,FRAMEQA12975,two,how many people stood kissing each other outdoors?,tumblr_ncxbsiw5cz1u0ylq0o1_400,91667,1 4819,FRAMEQA37126,blue,what is the color of the flame?,tumblr_ngcfegJJME1rol18zo1_400,38024,2 4820,FRAMEQA34800,scooter,what is the dog wearing a red cape is riding?,tumblr_ndwfzx0hL91tgkdkbo1_250,5671,0 4821,FRAMEQA19004,two,how many men dance on a stage with red lighting?,tumblr_nczubwv8w11t0k6fmo1_250,6245,1 4822,FRAMEQA49714,diver,what an air ring to knock down rocks?,tumblr_n8ott1a35b1tgkdkbo1_400,45417,0 4823,FRAMEQA37321,two,how many guys sit on the red couch and the one wearing a hat kicks his legs in the air while laughing?,tumblr_naz252SYcX1rhmx5uo1_r1_400,34056,1 4824,FRAMEQA11408,door,what is the woman opening and getting in?,tumblr_nnkqmlsRPP1uoyfr8o1_400,64657,0 4825,FRAMEQA33868,rabbit,what is getting out of the cage?,tumblr_np1qhvy9Kv1sg8vg6o1_500,66732,0 4826,FRAMEQA27359,car,what hit the curve and messed up its tire?,tumblr_n9066hvJ6R1tx8mn0o1_400,76810,0 4827,FRAMEQA14483,car,what is driving on the road at night?,tumblr_ncclh5CTka1th986vo1_400,3350,0 4828,FRAMEQA30651,glasses,what is the man wearing?,tumblr_nmep7aP37Y1ty7mjvo1_400,96832,0 4829,FRAMEQA21379,car,what is slipping on the road?,tumblr_nfqzsmdHTC1s70xu2o1_500,75116,0 4830,FRAMEQA43603,two,how many girls are chewing gum and blowing bubbles?,tumblr_nlzvsya1WR1tfjrdno1_400,31404,1 4831,FRAMEQA16074,violin,what is the man wearing a hat is playing?,tumblr_nhknb9MuDd1qldwwwo1_500,22557,0 4832,FRAMEQA3108,two,how many men reacts at the top of a roller coaster?,tumblr_nkgn5np1dx1snfmdco1_500,88151,1 4833,FRAMEQA14532,blue,what is the color of the team?,tumblr_nayqmaurYw1sa71wco1_400,90284,2 4834,FRAMEQA14884,two,how many people are hugging each other in the stage?,tumblr_ncbwoiwcXo1reut2bo1_500,91828,1 4835,FRAMEQA24741,coat,what is the woman holding a microphone walks and drops?,tumblr_ncs731Hn2X1slj978o1_250,16949,0 4836,FRAMEQA30120,three,how many girls in white dresses are walking near some trees?,tumblr_nd6ycl8B3R1snixmzo1_400,68918,1 4837,FRAMEQA10088,white,what is the color of the girl?,tumblr_nazdbcRYkw1tfffkuo1_400,53846,2 4838,FRAMEQA3616,black,what is the color of the air?,tumblr_nfvlbqeY3K1rm1b9ko1_400,3713,2 4839,FRAMEQA7280,white,what is the color of the shirt?,tumblr_n9g121qryo1tioszuo1_400,48025,2 4840,FRAMEQA38605,dumbbell,what is someone with a tattooed wrist holding up?,tumblr_nh3qmmiPUy1u19ilbo1_250,70114,0 4841,FRAMEQA36452,two,how many men are hugging amid the trees?,tumblr_nc9opiE4eV1soso59o1_400,67005,1 4842,FRAMEQA26191,tie,what is the young man adjusting while running?,tumblr_nd8zhukL0U1u0h3teo1_500,20065,0 4843,FRAMEQA6788,two,how many girls come across several boys sitting on a sofa?,tumblr_nbu4exjls81ty5wkdo1_500,61237,1 4844,FRAMEQA26123,gray,what is the color of the shirt?,tumblr_nabkgnRlPI1sfb4loo1_500,89016,2 4845,FRAMEQA50765,blue,what is the color of the car?,tumblr_nfflcuX90m1u25ovvo1_400,63666,2 4846,FRAMEQA32823,track,what is the race car sliding off?,tumblr_nbrgn3y2N31tx8mn0o1_400,80363,0 4847,FRAMEQA45933,star,what is practicing in the studio?,tumblr_n8xcp5NcIC1twhn6do1_250,2334,0 4848,FRAMEQA44263,train,what is speeding through the station?,tumblr_m17cbwGbTH1qcay1ao1_500,34432,0 4849,FRAMEQA26121,three,"how many men dance together , with their arms out , while laughing?",tumblr_njrf9tKUfZ1rujq2co1_500,101326,1 4850,FRAMEQA38902,dolphin,what jumps from the water to paint a picture?,tumblr_nb2mzb98AK1tkpzw0o1_400,21285,0 4851,FRAMEQA17996,four,how many women are happy and smiling broadly?,tumblr_ncqg3ayNE81s2w9y9o1_500,74773,1 4852,FRAMEQA47594,cigarette,what is the man smoking?,tumblr_nhv7jy5DBj1sjv6nlo1_250,37961,0 4853,FRAMEQA24825,egg,what is the girl smashing on top of her head?,tumblr_n8tkdr4Eby1rdyrrfo1_400,42825,0 4854,FRAMEQA45642,sea,what is the man with a white shirt looking?,tumblr_n9npusDaUk1t1j1f4o1_250,2981,0 4855,FRAMEQA24330,cars,what are driving in the street at night?,tumblr_nqtams4V1k1u2ep9yo1_500,61078,0 4856,FRAMEQA40159,three,how many girls are dancing in the club?,tumblr_ng8b6xSueH1u5s6sso1_500,33941,1 4857,FRAMEQA51109,carrot,what is an animal eating?,tumblr_n985jc2Wyr1sj2zt0o1_400,33712,0 4858,FRAMEQA20716,chips,what is the man playing poker and are being moved away?,tumblr_nhd5mxgLuD1u71lxzo1_500,98865,0 4859,FRAMEQA27633,guitar,what is the man playing on a stage in front of a crowd?,tumblr_nhd4arqBU91u6monlo1_400,73389,0 4860,FRAMEQA26454,two,how many girls on stage kiss and then exit through doors on opposite sides?,tumblr_nq3qalChFT1u5d8nbo1_500,69235,1 4861,FRAMEQA6168,yellow,what is the color of the sweatshirt?,tumblr_nonm875Gqs1uw60sro1_400,10403,2 4862,FRAMEQA1507,two,how many men with black suit are dancing?,tumblr_ndz6v9plHU1s4gcyso1_500,86796,1 4863,FRAMEQA28501,car,what is switching lanes on the highway?,tumblr_noipe7K8wn1uvy8rfo1_500,87621,0 4864,FRAMEQA2434,gift,what is the young boy unwrapping and looking happy?,tumblr_nbb0rxsAsx1tkaus8o1_400,24698,0 4865,FRAMEQA8918,gray,what is the color of the waistcoat?,tumblr_nc87hbmT7S1s97opco1_400,6912,2 4866,FRAMEQA13127,two,how many young people are holding hands and talking?,tumblr_ngyb87nN0D1s4vjdko1_400,37467,1 4867,FRAMEQA19465,red,what is the color of the hair?,tumblr_ndhvugvD2U1s3mq1do1_400,59821,2 4868,FRAMEQA45088,phone,what awakens him and he gets up?,tumblr_n89ev1boWG1tzl5c2o1_250,16324,0 4869,FRAMEQA48378,car,what sped away and man limped after across the parking lot?,tumblr_n9747pO9gM1sdtm33o1_250,51371,0 4870,FRAMEQA35874,cage,where are two guys warming up while?,tumblr_np0kxcHgTJ1uvdb8xo1_400,62177,3 4871,FRAMEQA38504,ropes,what do the shirtless guy jump outside?,tumblr_nklj4p26GV1rxcyx0o1_250,16632,0 4872,FRAMEQA25924,drums,what is this guy playing with drumsticks?,tumblr_nbkisdPmRk1ruhz45o1_500,56956,0 4873,FRAMEQA52350,cat,what is the black cat poking through the bicycle wheel?,tumblr_nra8jaNWXd1ti2yzto1_1280,17735,0 4874,FRAMEQA43616,white,what is the color of the room?,tumblr_nkqyrrDHMf1upvohzo1_400,69802,2 4875,FRAMEQA42453,guitars,what are two guys playing under some lights?,tumblr_na6m9ty5TR1qjwz8qo1_250,27638,0 4876,FRAMEQA52871,kitten,what is the man sitting on his bed and holding?,tumblr_ne26g19AFF1tmflpjo1_500,58135,0 4877,FRAMEQA12620,two,how many men with ties on their heads are crying and hugging?,tumblr_nklltj6mj01u8ivvko1_500,58940,1 4878,FRAMEQA10184,car,what is moving along the track?,tumblr_ngpaoaNNIH1rpqn0wo1_500,61804,0 4879,FRAMEQA38976,two,how many man are jump roping using the same jump rope?,tumblr_npmvj70dMN1qztqp5o1_500,61017,1 4880,FRAMEQA16519,singer,what is being pushed by his friend?,tumblr_nfcce89zzc1tubwqbo1_400,92147,0 4881,FRAMEQA6359,car,what is the race car driver driving?,tumblr_n9066hvJ6R1tx8mn0o1_400,76810,0 4882,FRAMEQA8107,two,how many children are using the swing and hit a baby?,tumblr_ndvahzjscl1s9mufoo1_400,35827,1 4883,FRAMEQA45677,cat,what is walking with the balloon stuck between its legs?,tumblr_neu6972ngW1rhkv10o1_400,27997,0 4884,FRAMEQA13146,cat,what does the person and cat touch each move to bite the hand?,tumblr_ndlhwgX2fm1tm15nlo1_400,50753,0 4885,FRAMEQA11827,blue,what is the color of the shirt?,tumblr_ni1p9zvcKj1t61hfoo1_500,101475,2 4886,FRAMEQA43351,hallway,where are two girls talking?,tumblr_nk1z6y9MoU1qgw2r7o1_400,59922,3 4887,FRAMEQA32210,rocket,what heads into space after taking off?,tumblr_n8q2u62j8H1sqofgbo1_400,44819,0 4888,FRAMEQA43194,net,where does the black guy put a basketball?,tumblr_nka6muC94q1r5ykfzo1_400,15983,3 4889,FRAMEQA39594,blue,what is the color of the shirt?,tumblr_nbgkzsde6P1qj7i8oo1_500,38579,2 4890,FRAMEQA15246,blows,what is the man smoking out the smoke?,tumblr_nok21e8tqE1uqej0yo1_500,44961,0 4891,FRAMEQA19522,bicycle,what did the person rid past a tower?,tumblr_n9wdvdxF7z1snmv5eo1_400,65642,0 4892,FRAMEQA16416,two,how many people are standing beside each other with microphones?,tumblr_njo9npiBPU1u2qfs8o1_400,77147,1 4893,FRAMEQA50287,sky,what is changing fast with the house in the background?,tumblr_n9vgph6QvE1rzptkoo1_400,66051,0 4894,FRAMEQA44270,cap,what is showing his hand?,tumblr_nk3ulp2fiG1u9nqipo1_500,91596,0 4895,FRAMEQA20694,room,where are two girls fighting each other?,tumblr_nf3x6m8etJ1u2lsxjo1_500,85880,3 4896,FRAMEQA12077,two,how many mean are laughing and smiling together?,tumblr_nr2anni0vZ1uup4c1o1_400,77629,1 4897,FRAMEQA25406,pipe,what is the man in the glasses smoking and blowing out smoke?,tumblr_nb7aakO7fM1rcf1byo1_400,56793,0 4898,FRAMEQA44929,two,how many men run up some stairs together laughing?,tumblr_ndjfgohCV31tl8x1eo2_r1_1280,90198,1 4899,FRAMEQA9508,blanket,what is the woman wearing and talking?,tumblr_ndpfbiRxhh1taqkiao1_500,40287,0 4900,FRAMEQA29668,black,what is the color of the clothes?,tumblr_n90q90yk8s1qhqng8o1_500,69803,2 4901,FRAMEQA7559,red,what is the color of the hair?,tumblr_n9u6g2ilEM1qh7r42o1_400,31117,2 4902,FRAMEQA41450,road,what does the small teal colored car approach slowly?,tumblr_nfflcuX90m1u25ovvo1_400,63666,0 4903,FRAMEQA49711,car,what is driving past tall buildings in the background?,tumblr_nd99tr1UmA1ruqk6ro1_250,4433,0 4904,FRAMEQA17650,two,how many men are smiling and laughing !?,tumblr_ndpvxa0eJz1qfz6d1o1_400,22517,1 4905,FRAMEQA48779,bathtub,where is the young man sitting while wearing a shirt and tie?,tumblr_n9ens5DPpF1ttu918o1_500,86383,3 4906,FRAMEQA33326,black,what is the color of the hair?,tumblr_niv358uYAh1u9vehoo1_400,56398,2 4907,FRAMEQA31596,black,what is the color of the shirt?,tumblr_ndnukojLjK1sx7rvmo1_400,22594,2 4908,FRAMEQA53032,two,how many woman are close to each other?,tumblr_nk1o4wrz6A1t1d43io1_500,88073,1 4909,FRAMEQA20361,zipper,where is the silly man lighting a firecracker?,tumblr_nim2enDF3P1u1on4lo1_500,35768,3 4910,FRAMEQA15879,bath,what is the dog taking with some rubber ducks?,tumblr_nqj7ahVNOh1uvie7bo1_400,32783,0 4911,FRAMEQA43053,hat,what is the man taking off and flipping it then putting it back on?,tumblr_nkxj24nYDk1rhiuffo1_400,29599,0 4912,FRAMEQA51968,bow,what is the woman talking in a mic and wearing?,tumblr_n8tx52dF7T1th5r3po1_500,86023,0 4913,FRAMEQA37391,two,how many soccer players try to get the ball?,tumblr_nb0l1eo8tj1tjcqx1o1_500,99747,1 4914,FRAMEQA36098,phone,what is the man sitting in a car is answering?,tumblr_nko35llwGE1u9vg2vo1_500,88852,0 4915,FRAMEQA13893,room,where are four shirtless men standing and moving around?,tumblr_ncss6i7D9Y1t8zp0to1_400,34125,3 4916,FRAMEQA6231,sticks,what is the baby beating together?,tumblr_nbwk65nfT91r57bhho1_250,24228,0 4917,FRAMEQA47912,bar,where is the group of men dancing?,tumblr_nofgplOU5S1sjsdi9o1_500,49462,3 4918,FRAMEQA41319,black,what is the color of the bird?,tumblr_npblti8bU91use8l1o1_400,82811,2 4919,FRAMEQA45651,hat,what did somebody knock off the guy wearing the tan shirt?,tumblr_nfcfvwvGGQ1rum1ilo1_250,51015,0 4920,FRAMEQA29797,bow,what is the man holding and pointing?,tumblr_nh3sxvWBpy1rl2njso1_400,77703,0 4921,FRAMEQA4348,two,how many people are sitting on the chair?,tumblr_na0s23vugd1sft9vjo1_250,51890,1 4922,FRAMEQA20475,black,what is the color of the pants?,tumblr_nobe08t7lw1r902nto1_400,57733,2 4923,FRAMEQA27794,bag,where is the man gets an animal?,tumblr_ndjshjXoB91s71nvbo1_250,5971,3 4924,FRAMEQA4903,cat,what is tender sleeping next to his mother?,tumblr_njxp04rEFk1tjjnlno1_400,71522,0 4925,FRAMEQA7975,brown,what is the color of the dog?,tumblr_n8uqen1tDV1sfmhxao1_400,63448,2 4926,FRAMEQA19036,two,how many girls are performing the flip in a room?,tumblr_nfygp4DKxV1tw8vf9o1_400,19168,1 4927,FRAMEQA3596,tambourine,what is the man in a tank top playing?,tumblr_ncaqcxiGHD1thc9hdo1_400,42852,0 4928,FRAMEQA30078,shirt,what does the man with a beard remove?,tumblr_n3j8kw9PbL1qdafpto1_400,22923,0 4929,FRAMEQA43268,turtle,what climbs on top of and bites a bears face?,tumblr_na5lfp2AsH1tn37i7o1_500,37338,0 4930,FRAMEQA17853,car,what is racing and starts to spin out around the corner?,tumblr_nb9airoPJM1rs58dao1_500,57001,0 4931,FRAMEQA23342,white,what is the color of the shirt?,tumblr_n9d2ncvUaX1rqdzb7o1_500,93281,2 4932,FRAMEQA7725,cookie,"what is the man eating , and he is laughing at a puppet talking?",tumblr_nr9z85obWn1uaz0fio1_250,27255,0 4933,FRAMEQA11566,orange,what is the color of the food?,tumblr_new1xjf0SM1se75noo1_500,22617,2 4934,FRAMEQA40247,theater,where does an animated woman sit?,tumblr_ngpt98m8yA1rsg4lno1_500,57299,3 4935,FRAMEQA53050,black,what is the color of the guy?,tumblr_nkjwktzR2M1u5fpulo1_250,53381,2 4936,FRAMEQA46668,three,how many young men are laughing and joking together?,tumblr_nab7ciEHF71the81go1_400,87128,1 4937,FRAMEQA29021,shirt,what is the man slowly unbuttoning?,tumblr_nnsotwRNgh1tmavx8o1_250,1691,0 4938,FRAMEQA36,shirt,what is the girl wearing a blue shirt rips off?,tumblr_nbz0yeXa3A1qflnb4o1_250,27613,0 4939,FRAMEQA34162,black,what is the color of the dress?,tumblr_nk2vux3HHB1rl202so1_250,5298,2 4940,FRAMEQA32421,red,what is the color of the words?,tumblr_nam6nd8gMr1s9iqrfo1_400,14161,2 4941,FRAMEQA25552,two,how many hand are being separated on the stage?,tumblr_np0uy5YAUD1t3fnpjo1_500,77935,1 4942,FRAMEQA44765,train,where is the man sitting?,tumblr_nhionq5o8d1u7ndwko1_400,84323,3 4943,FRAMEQA49407,box,what are hands opening?,tumblr_ndau5kAPfn1rvbl65o1_400,46065,0 4944,FRAMEQA14757,two,how many cats are moving on the floor of a room?,tumblr_nkqx3b5Le21sz068fo1_250,24078,1 4945,FRAMEQA6634,door,what is the young woman with long hair opening?,tumblr_naf5g9uK0E1tjtk3vo1_250,16675,0 4946,FRAMEQA20755,cat,what is frightened by the toaster and jumps off the table?,tumblr_n8urd6PMiY1tgkdkbo1_400,74900,0 4947,FRAMEQA28435,two,how many pictures are then shown?,tumblr_nh9b5ripty1tgux4fo1_250,90983,1 4948,FRAMEQA43635,black,what is the color of the eyes?,tumblr_ndwkqrpiAF1smyl7xo1_500,100456,2 4949,FRAMEQA421,bicycle,what is the person riding down a dirt road?,tumblr_nhw0okMoCW1tx8mn0o1_400,77744,0 4950,FRAMEQA25769,two,how many people are standing next to each other singing?,tumblr_ni0z9cQOGd1tdytspo1_500,94401,1 4951,FRAMEQA45458,two,how many girls in red suits are dancing?,tumblr_nhzhvabsfq1s4nyalo1_400,26694,1 4952,FRAMEQA19292,star,what is signing for the crowd and showing off his chest?,tumblr_ndo5t4jt651txq11zo1_400,66215,0 4953,FRAMEQA8521,red,what is the color of the man?,tumblr_njwxz3cqjU1uo5qabo1_250,7134,2 4954,FRAMEQA4691,two,how many dogs are playing on kids toys on cement?,tumblr_ngtfbt9KZI1s71nvbo1_400,15351,1 4955,FRAMEQA48563,dog,what is running on the beach and trips and falls on his face?,tumblr_ngsuhqvHMY1rzwvkdo1_400,59438,0 4956,FRAMEQA2948,boats,what are moving around hastily in the water?,tumblr_nl1ka7Igyp1twhvlao1_400,48032,0 4957,FRAMEQA21422,car,what is this driving down a rural road?,tumblr_nir1imp3Hd1tkwbico1_400,4655,0 4958,FRAMEQA18978,wire,what does the drinking monkey fall off?,tumblr_nbh6btDTyY1r38hk2o1_400,8486,0 4959,FRAMEQA4653,gun,what is the man leaning against a wall and holding?,tumblr_n9552fexor1teip1lo1_250,15850,0 4960,FRAMEQA18689,four,how many models are walking down the catwalk together?,tumblr_ni0zbqqPTH1tmeg7go1_500,87229,1 4961,FRAMEQA12251,black,what is the color of the hair?,tumblr_n8xi4jxmhS1s605u4o2_500,85772,2 4962,FRAMEQA10332,two,how many young oriental men are looking into the distance?,tumblr_nbj56iP7bu1s0r79po1_1280,53013,1 4963,FRAMEQA31719,room,where is the man in a dark coat smoking?,tumblr_nhdd5izFsK1s9tznyo1_400,84073,3 4964,FRAMEQA36038,two,how many young people are embracing and hugging each other?,tumblr_n9fgnpR3q91tin09xo1_500,73478,1 4965,FRAMEQA47934,horse,what is running around and the woman is holding it?,tumblr_n8z5gkpbGb1rwgxlqo1_500,74583,0 4966,FRAMEQA9743,cat,what is attacking the socked foot?,tumblr_nbud39wvWd1r3uz8ro1_400,50653,0 4967,FRAMEQA32699,ball,what is the man kicking into a net?,tumblr_na9bex9JOe1tj4gvco1_400,87970,0 4968,FRAMEQA2666,robot,what is emerging from the building?,tumblr_nplr9dMQ9H1uxicgso1_400,34952,0 4969,FRAMEQA49868,ball,where is the cat getting stuck?,tumblr_nk6t8rIVdA1tjjnlno1_400,54116,3 4970,FRAMEQA21199,guitar,what was the man with no shirt playing?,tumblr_nb692thYgT1toja74o1_400,35829,0 4971,FRAMEQA33886,white,what is the color of the shirt?,tumblr_naj0igzlHR1sxdbkxo1_400,58615,2 4972,FRAMEQA19865,motorcycle,what are the couple of people riding?,tumblr_nmcu4vUJJd1sgkvddo1_400,85530,0 4973,FRAMEQA13975,two,how many guys with dark shirts and sunglasses are playing air drums while singing?,tumblr_nk2xke0BQS1uopxvxo1_500,84797,1 4974,FRAMEQA27197,red,what is the color of the shirt?,tumblr_nmeqaxE11G1u2z3v8o1_400,21601,2 4975,FRAMEQA40290,phone,what is the man holding up and pointing at something?,tumblr_ne10rzDM2R1tote40o1_500,55112,0 4976,FRAMEQA24052,flower,what does the hand place into the rifle barrel of a soldier?,tumblr_ncbrxaMA9X1speqgzo1_500,68168,0 4977,FRAMEQA20748,black,what is the color of the bra?,tumblr_nkmha6Y6CS1tvcmypo1_250,51016,2 4978,FRAMEQA28237,car,what does the guy wear a blue shirt and cap and break dances and passes beside him?,tumblr_n8pw7xpB2d1qbzxofo1_400,70470,0 4979,FRAMEQA5905,sauce,what does the person scoop up using a white spoon?,tumblr_ni1dyrKWvc1sfwm8jo1_400,16778,0 4980,FRAMEQA47151,cat,what is walking and keeps falling over?,tumblr_nhr07tgEBl1tq4njio1_250,12670,0 4981,FRAMEQA50876,shirts,what are the group nave men taking off?,tumblr_no7emoSSII1uuekcqo1_500,90515,0 4982,FRAMEQA10206,two,how many wrestlers stare at each other and then begin to fight?,tumblr_nk22m121jw1twrr5wo1_500,47857,1 4983,FRAMEQA41350,white,what is the color of the shirt?,tumblr_ngsnyihBqf1soz0p7o1_400,57164,2 4984,FRAMEQA3304,brown,what is the color of the hair?,tumblr_nfi3fglcjF1u3r5iuo1_250,17374,2 4985,FRAMEQA11565,chair,where is the woman swinging around?,tumblr_n9hzp32P4s1txqrq4o1_250,36070,3 4986,FRAMEQA49802,white,what is the color of the girl?,tumblr_nf7414AjTw1u3b9xqo1_250,21619,2 4987,FRAMEQA15452,three,how many asian girls are acting silly while getting dressed?,tumblr_norzf0Bf5a1t3c0tdo1_1280,80048,1 4988,FRAMEQA49874,car,what is passing the white car on the road while a man is driving it?,tumblr_netczdYQLZ1u25ovvo1_400,63490,0 4989,FRAMEQA41460,circle,what are four men standing in a circle and is turning?,tumblr_nhi4hjjnIM1twtuudo1_250,16603,0 4990,FRAMEQA9760,tunnel,where is the man riding a skateboard?,tumblr_nq63u1ULnD1tfeni1o1_400,35631,3 4991,FRAMEQA48047,bicycle,"what did the man rid down a steep hill , across a road , and into the path of a car before being hit?",tumblr_nq6ixis8h81uqx07to1_400,36000,0 4992,FRAMEQA27823,wig,what is the woman wearing and talking?,tumblr_njqrw7Gno11u18qbbo1_400,64427,0 4993,FRAMEQA7383,shirt,what is the woman wearing and smiling?,tumblr_nm5g67lpIs1r2mlm8o1_500,95960,0 4994,FRAMEQA27886,three,how many smiling men slowly enter the doorway?,tumblr_ngek8rCbFV1s82z36o1_500,73050,1 4995,FRAMEQA24979,cat,what is batting at the toy helicopter and it falls down?,tumblr_naeiiukOaI1qzm0hso1_400,76103,0 4996,FRAMEQA10053,two,how many boys are signing something?,tumblr_nfsqc8tKtS1rifrfzo1_500,96966,1 4997,FRAMEQA46603,dog,what rubs the young mans head?,tumblr_naf1uaXSXE1ts0kzio1_400,41589,0 4998,FRAMEQA6605,penguins,what are walking and one falls down?,tumblr_ng46uo55Mx1slj978o1_400,50029,0 4999,FRAMEQA40104,glasses,what is the woman blowing a kiss and fixing?,tumblr_n8ti1si24z1th8yo9o1_400,72465,0 5000,FRAMEQA2306,white,what is the color of the shirt?,tumblr_nl0daap0PB1u8ogblo1_500,97457,2 5001,FRAMEQA41147,black,what is the color of the umbrella?,tumblr_ngt78gZQ711qzunbgo1_250,47430,2 5002,FRAMEQA21864,dog,what is licking the person 's face?,tumblr_n8vaofH4lm1s1hn6lo1_400,58281,0 5003,FRAMEQA10343,black,what is the color of the tie?,tumblr_nbjsyhLncl1tujnioo1_500,40549,2 5004,FRAMEQA40710,headphones,what runs through the building?,tumblr_nfytvq62FZ1u4eksfo1_500,89279,0 5005,FRAMEQA46868,three,how many men are running and sliding on the giant slip and slide?,tumblr_na898jZGcd1rreivlo1_400,79268,1 5006,FRAMEQA46141,white,what is the color of the shirt?,tumblr_nafmcp0OZJ1ti4rwjo1_250,8642,2 5007,FRAMEQA20770,cat,what reaches down and swats at another cats tail and the cat that got swatted at attacks another cat thinking it was him?,tumblr_nf8v50LnUt1tk2ngvo1_500,78064,0 5008,FRAMEQA37682,green,what is the color of the shirt?,tumblr_ndh1t5XuKp1sht3fmo1_400,57336,2 5009,FRAMEQA29249,bus,what are the group of young people riding tour?,tumblr_ngh82hywbz1s4yzawo1_400,9181,0 5010,FRAMEQA26375,two,how many people are sitting on the red couch while one person kicks their legs in the air?,tumblr_naz252SYcX1rhmx5uo1_r1_400,34056,1 5011,FRAMEQA32761,song,what is the band on stage playing?,tumblr_nfnfu7EwM91r3diajo1_500,43197,0 5012,FRAMEQA30713,black,what is the color of the shirt?,tumblr_nevrd9FOp21tf406do1_400,78987,2 5013,FRAMEQA2033,panda,what sat on the blue horse toy?,tumblr_njtxedpe7W1t7an45o1_250,27296,0 5014,FRAMEQA14469,gray,what is the color of the shirt?,tumblr_nbgnauMWl71tyy9wio1_400,57419,2 5015,FRAMEQA12098,brown,what is the color of the gloves?,tumblr_nbnxe9gZGR1qb8axro1_500,49944,2 5016,FRAMEQA10654,black,what is the color of the hat?,tumblr_npdlzlPd9o1sj2opgo1_250,14294,2 5017,FRAMEQA11433,microphone,what is the man wearing a hat holds while performing?,tumblr_nd2wgnLlKm1u0suito1_500,97166,0 5018,FRAMEQA3585,cat,what is playing with the toy and running around?,tumblr_n8x1wfRppX1tdmffyo1_250,45924,0 5019,FRAMEQA17943,cat,what is jumping up and grabbing the man around his waist from the back?,tumblr_neubjlHnuq1tdjuqvo1_250,40937,0 5020,FRAMEQA36738,grass,what is the rabbit in a cage eating?,tumblr_nfoh2z9C1M1u3ads9o1_250,14265,0 5021,FRAMEQA20276,black,what is the color of the cap?,tumblr_n946l6WWHJ1ri0wnso1_400,64134,2 5022,FRAMEQA42775,red,what is the color of the jacket?,tumblr_ne2t08LZcs1s9578so1_250,5047,2 5023,FRAMEQA4693,brown,what is the color of the eyes?,tumblr_naq0hxXFef1t5ojzdo1_250,81334,2 5024,FRAMEQA913,hamster,what falls down into the hole?,tumblr_nr39rv7eQq1sht3fmo1_250,12915,0 5025,FRAMEQA37473,stick,what is the baby holding and a lady is moving the baby 's hands?,tumblr_nbwk65nfT91r57bhho1_250,24228,0 5026,FRAMEQA28484,red,what is the color of the sweatshirt?,tumblr_nqichfFL771utcanao1_500,96580,2 5027,FRAMEQA26964,antlers,what does the man in a hat inspect?,tumblr_ncn9viAE6Z1reh0fqo1_400,38101,0 5028,FRAMEQA9920,hat,what is raising his hand?,tumblr_nkamhjvueV1uobh2eo1_400,29350,0 5029,FRAMEQA52265,black,what is the color of the vests?,tumblr_n9vuv0Bgll1ticpqdo1_400,57264,2 5030,FRAMEQA51661,two,how many guys are singing to each other in front of a crowd?,tumblr_ndekj98WUz1u19fjro1_500,49220,1 5031,FRAMEQA52562,two,how many men in are dancing in the front seat of a car?,tumblr_nopqno1m9H1r2ga1uo1_400,77278,1 5032,FRAMEQA32591,black,what is the color of the man?,tumblr_nkadbrY0j01rj4f6to1_250,49409,2 5033,FRAMEQA11409,two,how many women are standing outside the store and dancing?,tumblr_nl0lw5qYfq1uoz9klo1_400,22334,1 5034,FRAMEQA21527,cigarette,what is the man walking and smoking by a trailer?,tumblr_nl2dq7GgNi1r967i1o1_400,63199,0 5035,FRAMEQA11463,button,what is the girl showing on her tongue?,tumblr_nhelgy8a1k1u3sgaao1_250,73270,0 5036,FRAMEQA48279,feather,what does the little green bird shake while moving backwards on a mossy log?,tumblr_nczlfupRqq1tvuidio1_500,84031,0 5037,FRAMEQA23217,one,how many race car on a track throws out sparks while it tries to pass another?,tumblr_nr12heBDzF1siem3jo1_400,93803,1 5038,FRAMEQA23731,two,how many men is wearing vests are talking to each other?,tumblr_nb84pl57j11qd80wyo1_400,40867,1 5039,FRAMEQA17942,two,how many guys have their eyes closed and are breathing heavily?,tumblr_n97vm7E6Lv1tq78elo1_400,26374,1 5040,FRAMEQA35082,black,what is the color of the jacket?,tumblr_njvri85Mv81u33e4bo1_500,19169,2 5041,FRAMEQA9543,black,what is the color of the hair?,tumblr_nk95ytqTRC1tl34d6o1_500,27445,2 5042,FRAMEQA13002,two,how many people are participating in the ballet dance?,tumblr_n9uqttYJz61rwiud9o1_400,20999,1 5043,FRAMEQA6419,room,where are two people hugging each other?,tumblr_npneccAv8H1rq4lc6o1_500,89620,3 5044,FRAMEQA37543,brown,what is the color of the horse?,tumblr_n8x4u9gEFy1s2wg51o1_500,68398,2 5045,FRAMEQA3682,shirt,what is the man singing and holding up?,tumblr_nl2iriwRIP1rsxxvao1_500,13611,0 5046,FRAMEQA9382,car,what is stunt being blown up by a man with a howitzer gun?,tumblr_noojj9QsI61urniueo1_500,56954,0 5047,FRAMEQA7288,dog,what is yelling at somebody to give some food?,tumblr_nhpddqo8rN1tjhld9o1_400,52440,0 5048,FRAMEQA18670,dogs,what are dressed as the man and a woman?,tumblr_na1tbz3mD61slj978o1_400,28588,0 5049,FRAMEQA29172,three,how many people inside a room yell into a telephone?,tumblr_nfegnfJ1AZ1qayaafo1_400,30012,1 5050,FRAMEQA35398,red,what is the color of the car?,tumblr_niu9lzNQeU1u8p1pwo1_500,73805,2 5051,FRAMEQA19093,two,how many belts is the man in a construction hat wearing?,tumblr_nbfo31Hlh81qhya5no1_250,7657,1 5052,FRAMEQA42000,dog,what is jumping in front of a person?,tumblr_n8ql3v2iH21r5jmwdo1_400,60583,0 5053,FRAMEQA20555,handcuffs,what is someone removing and walking outside at a gas station?,tumblr_nd1axvPIfX1qls3joo1_250,67965,0 5054,FRAMEQA36285,gun,what is the man with the collared shirt holding on the man with the black hair?,tumblr_nklkbe4KgW1tfs8guo1_500,56600,0 5055,FRAMEQA27370,dog,what is licking the mouth of a lady with a red shirt?,tumblr_ne2eksOOna1smdw0io1_400,28461,0 5056,FRAMEQA26,blue,what is the color of the light?,tumblr_nkn5rr1Hsk1ssmhpzo2_400,29254,2 5057,FRAMEQA21697,insect,what is on the black backdrop?,tumblr_neot4s0EBL1s2ls31o1_400,32047,0 5058,FRAMEQA37645,green,what is the color of the shirt?,tumblr_nc0tgl1Yvl1tl2cb1o1_400,15474,2 5059,FRAMEQA28669,black,what is the color of the shirt?,tumblr_nc7pept4AI1tkkxovo1_500,50212,2 5060,FRAMEQA2750,mug,what does the girl bring up to her face?,tumblr_nivjidmWB71u9t1qio1_400,64223,0 5061,FRAMEQA49443,blue,what is the color of the door?,tumblr_ndpk1qQv9c1t7jda2o1_250,31678,2 5062,FRAMEQA35349,green,what is the color of the shirt?,tumblr_nqcilrcO8s1tbvh0jo1_400,15353,2 5063,FRAMEQA36062,cat,what is high up on the shelf and playing with a ball attached to a string?,tumblr_nbdib2bbIb1s4zvpgo1_250,76388,0 5064,FRAMEQA34265,cat,what is jumping on surf board to cross swimming pool?,tumblr_n2sx1v7vCB1r2y8uzo1_400,10316,0 5065,FRAMEQA36268,cat,what is trying to walk but continues to fall over?,tumblr_nhr07tgEBl1tq4njio1_250,12670,0 5066,FRAMEQA42365,pool,where is the man wearing goggles and holding a martini?,tumblr_nc4qhhSLmI1rxcaido1_250,43667,3 5067,FRAMEQA11144,black,what is the color of the hair?,tumblr_n9i7tse09X1sitaf4o1_400,65222,2 5068,FRAMEQA50905,two,how many men in suits are smiling and bowing their heads?,tumblr_nhlru7ee4T1sy8u6lo1_500,88870,1 5069,FRAMEQA46970,cello,what is the man with long hair and a beard playing?,tumblr_ndrhdij2sp1tmnzbjo1_400,82149,0 5070,FRAMEQA52604,stairs,what is the dog hopping up?,tumblr_nbuhc5cUJn1rotc20o1_400,19595,0 5071,FRAMEQA26532,black,what is the color of the girls?,tumblr_nkg5leY4e21sof15vo1_500,21834,2 5072,FRAMEQA18372,dog,what runs off the deck and lands in a bush?,tumblr_nb982i8Liq1slwrsuo1_400,37843,0 5073,FRAMEQA50536,car,what is going around the curve with smoke coming from the back tires?,tumblr_n9k66hDtUT1s9lpi5o1_400,54195,0 5074,FRAMEQA43893,window,what are the pair of men staring out?,tumblr_nk64ns1uhs1u7382xo1_500,77564,0 5075,FRAMEQA21212,gun,what does the man in leather lower?,tumblr_na5xrhfzrg1s5gcujo1_250,14789,0 5076,FRAMEQA40884,two,how many men start laughing at the same time?,tumblr_nqo2x3bbpv1uuh0teo1_400,89238,1 5077,FRAMEQA27653,mustard,what does one man squirt onto another man 's beard?,tumblr_ngatv43vBu1u5on9do1_250,85687,0 5078,FRAMEQA33477,two,how many people are acting silly while driving a truck?,tumblr_ncq8eyMlrJ1qkf1cno1_400,52199,1 5079,FRAMEQA36534,stick,what did the man in black throw on fire at the truck?,tumblr_n9tou9864c1su5apvo1_400,38737,0 5080,FRAMEQA12390,black,what is the color of the smoking?,tumblr_nhbwfjkIRX1u6q9r2o1_250,11953,2 5081,FRAMEQA22849,brown,what is the color of the hair?,tumblr_n8xaa8ScfH1rhhof0o1_500,24404,2 5082,FRAMEQA25988,two,how many young women smile at each other sweetly during a conversation?,tumblr_npmcdtvcab1u4uss5o1_400,71104,1 5083,FRAMEQA44546,black,what is the color of the shirt?,tumblr_na0lvzNzJJ1s7vtgpo1_400,1745,2 5084,FRAMEQA41613,two,how many rally car is trying to pass each other?,tumblr_ndkajbX6dP1tx8mn0o1_400,78352,1 5085,FRAMEQA26991,two,how many young men are putting on sports uniforms?,tumblr_nb8f1rqRt71svcbf4o1_400,65451,1 5086,FRAMEQA6244,shirt,what is the woman in a turquoise dress cutting up?,tumblr_nfgkpzxpv01qclz9ho1_1280,99900,0 5087,FRAMEQA48020,white,what is the color of the hat?,tumblr_no16zgrlE81sr8pwbo1_400,53970,2 5088,FRAMEQA8562,skateboard,what is the man jumping on the steps?,tumblr_nisvcdQi5f1sf8gclo1_400,41501,0 5089,FRAMEQA34019,white,what is the color of the shirt?,tumblr_np6npym64j1smfzl0o1_1280,80999,2 5090,FRAMEQA11570,guitar,what is the young man wearing black is playing?,tumblr_nb77zsyMUJ1sn0ok1o1_250,4225,0 5091,FRAMEQA11933,one,how many man is dancing in the middle of a group?,tumblr_ng25ke8p0Z1tfe0zmo1_400,86647,1 5092,FRAMEQA47255,two,how many musicians perform on stage sing a song and dance around?,tumblr_nd9x50b1Zr1u103uqo1_400,26459,1 5093,FRAMEQA26350,four,how many woman are performing the dance routine indoors?,tumblr_nc6y1y14lB1thjxh3o1_500,96610,1 5094,FRAMEQA48920,black,what is the color of the lipstick?,tumblr_njqrw7Gno11u18qbbo1_400,64427,2 5095,FRAMEQA27642,five,how many women bounce around with white mini lights in the background?,tumblr_nh298xxMHt1sqbahto1_500,91400,1 5096,FRAMEQA50155,white,what is the color of the costume?,tumblr_n8u6lospbz1snu5veo1_500,20363,2 5097,FRAMEQA686,white,what is the color of the man?,tumblr_njxnl2qMrX1sa0lndo1_500,69839,2 5098,FRAMEQA15672,box,what is the boy handing to someone?,tumblr_nfe07vBmKZ1tg9gzmo1_400,48521,0 5099,FRAMEQA19274,store,where is the young man making funny faces?,tumblr_nrdxk2otyS1sprf2xo1_500,29349,3 5100,FRAMEQA50768,guitar,what are the man and woman playing?,tumblr_nb86ccUD2V1rhm6oto1_400,87130,0 5101,FRAMEQA2568,red,what is the color of the shirt?,tumblr_niuspkh0pL1u8dv8eo1_250,35476,2 5102,FRAMEQA51327,one,how many banana peel does the man slip after another but lands on his feet?,tumblr_na4969a0oY1qjgxd2o1_400,78029,1 5103,FRAMEQA20329,stadium,where is the lot of soccer players running?,tumblr_n9fy6nXk3E1rptys0o1_250,51273,3 5104,FRAMEQA15002,two,how many cats are next to the door?,tumblr_n9xu4w1Lfq1tatohao1_400,40652,1 5105,FRAMEQA9977,three,how many young men in suits are dancing?,tumblr_nf1d6ntdfo1rkc8b3o2_500,92451,1 5106,FRAMEQA2112,orange,what is the color of the flower?,tumblr_ncbrxaMA9X1speqgzo1_500,68168,2 5107,FRAMEQA40304,bed,where is the black dog snuggling?,tumblr_nepw693vsr1tk2ngvo1_400,55996,3 5108,FRAMEQA47866,brown,what is the color of the coat?,tumblr_nagwpaywf01tvbb2ko1_250,450,2 5109,FRAMEQA19229,cup,what does the girl accept?,tumblr_ndzecpFkf21u27r3ro1_1280,65482,0 5110,FRAMEQA27256,room,where are two men hugging each other?,tumblr_nfrlins4gC1qaucgno1_250,21892,3 5111,FRAMEQA9499,two,how many teenage girls take pose for pictures together?,tumblr_n8q8iiFAka1toq16fo1_400,28578,1 5112,FRAMEQA48098,car,what are men carrying with other men in it?,tumblr_nqyed3Aeob1urf1roo1_400,56885,0 5113,FRAMEQA51860,gratings,what does the baby hit with his head?,tumblr_nelnykQsDv1u3426ro1_500,99485,0 5114,FRAMEQA32898,shirt,what is the guy wearing all white is ripping open?,tumblr_noikj9h4iM1uvdkzko1_400,10298,0 5115,FRAMEQA33956,hat,what does the redhead grab?,tumblr_ne4hcghIrU1tac8jro1_400,64088,0 5116,FRAMEQA11880,kitty,what is being cuddled by its owner?,tumblr_nev8ygd3491tmnswbo1_400,43441,0 5117,FRAMEQA37857,white,what is the color of the shirt?,tumblr_nbgjlsgNfd1skvcujo1_500,95762,2 5118,FRAMEQA30725,car,where is the man with a bandage on his head riding?,tumblr_nbj47m9ewZ1tkodheo1_250,45642,3 5119,FRAMEQA34466,dog,what is the person holding and bouncing?,tumblr_n9sg39oVrZ1qedx60o1_500,98928,0 5120,FRAMEQA14218,black,what is the color of the hat?,tumblr_nc7kpk6wBZ1r0h55so1_500,88558,2 5121,FRAMEQA21923,horse,what is the girl riding through a track and the horse is playing around?,tumblr_na213y4pel1tdek48o1_400,43172,0 5122,FRAMEQA6146,three,how many arrows land does the bulls eye on a target see on it?,tumblr_nimx36kHCE1u23q7to1_400,98757,1 5123,FRAMEQA52015,black,what is the color of the wolf?,tumblr_nina5vfIdD1u95biro2_400,60896,2 5124,FRAMEQA313,red,what is the color of the top?,tumblr_nfj08ohqkv1sulnrzo1_250,69092,2 5125,FRAMEQA35098,cat,what raised up and looked in the window?,tumblr_nk22l3T7h61u2mmn8o1_400,43464,0 5126,FRAMEQA15834,white,what is the color of the hat?,tumblr_ndmmafYKjg1smipaso1_500,20608,2 5127,FRAMEQA15981,two,how many women are smiling at each other?,tumblr_ngv80p45u21sewywlo1_250,39505,1 5128,FRAMEQA36454,car,what is driving in the mountain sand?,tumblr_njpreqZ6fr1unq0gjo1_250,46570,0 5129,FRAMEQA41003,black,what is the color of the dress?,tumblr_n8sr0oUI821rkywpto1_1280,98104,2 5130,FRAMEQA48095,milk,what is someone pouring from a jug into a cup?,tumblr_nacgnkjiPg1thrruso1_500,46224,0 5131,FRAMEQA31712,microphone,what is the girl waving holding?,tumblr_n90rfkkUu61rzgfigo1_500,99504,0 5132,FRAMEQA7572,two,how many young guys with caps are moving their hands?,tumblr_nkyfxvKq0p1rwwygfo1_500,92839,1 5133,FRAMEQA46101,car,what is going through street with the lights on?,tumblr_nev5jcwSOk1u25ovvo1_400,63427,0 5134,FRAMEQA33704,motorcycle,what is racing down an outdoor track?,tumblr_nafvslrxEZ1tx8mn0o1_400,76974,0 5135,FRAMEQA9075,four,how many guys starts looking to the girl?,tumblr_napca8xCGy1tewcf7o1_400,28031,1 5136,FRAMEQA35508,bed,where does the man smile up at someone ca n't see?,tumblr_nhfe4lRQyu1u6mtaro1_250,16461,3 5137,FRAMEQA24540,room,where are two people dancing?,tumblr_nh7cq0YLOw1u11u8po1_500,97738,3 5138,FRAMEQA6047,blackbird,what is this feeding a cat and a dog?,tumblr_na02l5mrrH1tgetb4o1_400,82095,0 5139,FRAMEQA34481,black,what is the color of the shirt?,tumblr_no7jjumZkp1rpuigeo1_250,6010,2 5140,FRAMEQA33987,trampoline,what is being blown down the road by the storm?,tumblr_nhmsu1C2LZ1u77r94o1_250,5531,0 5141,FRAMEQA48442,car,what is sliding backwards on the wet street?,tumblr_nnw2qphCJA1uuh2j1o1_500,67719,0 5142,FRAMEQA47635,two,how many friends is this image of with microphones poking each other playfully?,tumblr_nd8dp4ELQI1tkatv1o1_500,93303,1 5143,FRAMEQA44516,black,what is the color of the man?,tumblr_nqs999ZRhM1uxceulo1_400,26066,2 5144,FRAMEQA4237,elephant,what tried to grab the bucket?,tumblr_njq1sabA971unh5yxo1_400,46615,0 5145,FRAMEQA32466,black,what is the color of the clothing?,tumblr_ndcoyrI1im1rllc9co1_1280,44817,2 5146,FRAMEQA19350,hallway,where is the person singing?,tumblr_nbwoxqjLik1tit9eco1_r1_500,95676,3 5147,FRAMEQA18524,gym,where does the young man do a back somersault?,tumblr_nf1cf3Neme1qdj4eqo1_400,41718,3 5148,FRAMEQA20786,guitar,what is the man wearing a red shirt is holding?,tumblr_nk38eaBV6Q1tci3xlo1_400,59416,0 5149,FRAMEQA50929,black,what is the color of the shirt?,tumblr_ndv4x7AMcL1s2ksddo1_r1_400,11328,2 5150,FRAMEQA16478,white,what is the color of the shirt?,tumblr_naf17coVdO1ts0kzio1_400,70558,2 5151,FRAMEQA16923,scaffolding,what is the boy jumping off into a large lake?,tumblr_ne4huuCRY11tr8rxho1_400,28325,0 5152,FRAMEQA46593,black,what is the color of the sunglasses?,tumblr_nls6piuLZx1rm97r4o1_250,84529,2 5153,FRAMEQA22537,sheet,what does the man pull off the side of a vehicle?,tumblr_ncqakeYaVG1u0np6zo1_250,1863,0 5154,FRAMEQA37077,fish,what is swimming very slowly in some water?,tumblr_n9hw28peTq1s61fbqo1_400,52981,0 5155,FRAMEQA8553,bedroom,where is the young girl dancing?,tumblr_nd93viKo511shv03qo1_r6_400,11371,3 5156,FRAMEQA52038,black,what is the color of the jacket?,tumblr_ncy4plCMec1tm5nq5o1_250,6674,2 5157,FRAMEQA34447,chair,what is the man standing up and throwing and yelling angrily at a woman?,tumblr_nnwjbtR2Jj1qkwapco1_400,83539,0 5158,FRAMEQA32344,three,how many girls in uniform are dancing and smiling?,tumblr_nbty9s2XML1tbfhyyo1_250,1896,1 5159,FRAMEQA22029,two,how many men in white suits stand on a stage with a lady in long sparkly dress?,tumblr_ngzuosHwut1s71nvbo1_400,24459,1 5160,FRAMEQA45954,two,how many men with surf boards celebrate in the water?,tumblr_ngw762RrkF1u4dor7o1_1280,77354,1 5161,FRAMEQA50074,two,how many guys looked at the computer and laughed?,tumblr_nekejw2Vnh1tpgapwo1_500,77959,1 5162,FRAMEQA9586,shirt,what is the woman with red hair wearing?,tumblr_nat8wfWBFb1taq9qwo1_250,81591,0 5163,FRAMEQA51481,seal,what is the little girl at an aquarium and swims by?,tumblr_njxcmw74K91u8uroco1_250,2106,0 5164,FRAMEQA15963,red,what is the color of the hair?,tumblr_njf93legHY1rblmq9o1_500,84019,2 5165,FRAMEQA33708,two,how many men are dancing around each other?,tumblr_na8wxp8WPB1r6oiiao1_250,6775,1 5166,FRAMEQA29247,building,what looks beautiful at the night?,tumblr_n8ax63tZVO1qc8xs9o1_400,24312,0 5167,FRAMEQA4834,two,how many people are talking?,tumblr_nckn34k0481tp4h5xo1_400,59461,1 5168,FRAMEQA19790,white,what is the color of the shirt?,tumblr_ncdihsdk1c1tzzks2o1_250,53195,2 5169,FRAMEQA34633,white,what is the color of the shirt?,tumblr_nbwp42fmNd1spabbwo1_250,53392,2 5170,FRAMEQA52687,car,"what drives towards the big pink balloon , which bursts as the car approaches it?",tumblr_nqpemb0oal1tj3r8so1_400,40151,0 5171,FRAMEQA13754,ball,what is the soccer player keeping away?,tumblr_n90gw6Akfm1rly19co1_500,93055,0 5172,FRAMEQA31673,blue,what is the color of the jacket?,tumblr_ncg765LMOZ1tmaii4o1_250,7519,2 5173,FRAMEQA24647,cat,what put its paw on a hand and the hand petted the cat?,tumblr_ngio6fsQ8p1ssgyoro1_400,2019,0 5174,FRAMEQA10119,shirts,what is five men on their knees gyrating and pulling up?,tumblr_nompyfnbMq1rbddn1o1_500,83478,0 5175,FRAMEQA14620,black,what is the color of the hair?,tumblr_ndvqyftJPT1th9cdzo1_500,96290,2 5176,FRAMEQA26845,locker,where is the man in a towel looking?,tumblr_ncsp5rS8rC1r78dgto1_400,5809,3 5177,FRAMEQA45967,bear,what gets blown up by grenades?,tumblr_ndy7ccfmXN1rfibsxo1_400,62905,0 5178,FRAMEQA20320,money,what does the door open and a hand grabs out?,tumblr_naq2ljxqpt1sqatvxo1_250,54229,0 5179,FRAMEQA9698,black,what is the color of the man?,tumblr_na0mw3gkjB1qlxas3o1_400,68298,2 5180,FRAMEQA3599,two,how many guys is fighting in the street while at a guy its sparks fly from his face?,tumblr_ni1p5r1Cso1rbfulyo1_500,83657,1 5181,FRAMEQA26506,two,how many boys on a stage are walking?,tumblr_nk9vp9aJut1sdbrm9o1_400,33629,1 5182,FRAMEQA8816,cat,what is playing around in the box?,tumblr_ngite8IUNJ1r5uqe5o1_500,83208,0 5183,FRAMEQA25454,sunglasses,what did the red head woman and raises her eyebrows as she turns her head?,tumblr_nhd5mguzE01sq0o5eo1_250,20456,0 5184,FRAMEQA5461,white,what is the color of the shirt?,tumblr_nmifhlT0vB1u60j96o1_250,8894,2 5185,FRAMEQA22841,two,how many people in suits with microphones are dancing and waving their arms?,tumblr_ng476zEkYt1s7qa4ao1_500,99952,1 5186,FRAMEQA2527,backpack,what is the guy looking at someone and holding?,tumblr_n9cbjlJbp01tf6zmyo1_250,1305,0 5187,FRAMEQA51062,two,how many young men with brown hair are smiling?,tumblr_negrp50MCD1rmfypqo1_500,97810,1 5188,FRAMEQA11310,juice,what does the girl in a white hat sip from a straw?,tumblr_nh777pWSdg1r9qdkno1_400,41257,0 5189,FRAMEQA32983,two,how many men are doing skateboarding tricks on a half pipe near the water?,tumblr_nqxxwoxpjy1rv5gmso1_400,77195,1 5190,FRAMEQA8471,brown,what is the color of the drink?,tumblr_n8vicp8VBy1t4pld3o1_400,31607,2 5191,FRAMEQA14662,berries,what is the young woman eating?,tumblr_nce30kjLYV1qfsrsoo1_500,49170,0 5192,FRAMEQA48647,gray,what is the color of the shirt?,tumblr_naoi1yLJAq1s034x5o1_500,50545,2 5193,FRAMEQA21114,towels,what is the woman unpacking from a box?,tumblr_n9lnbnMCrY1rkpicyo1_400,86191,0 5194,FRAMEQA11874,highway,where is the white car running?,tumblr_ng9bf9Vddz1u25ovvo1_400,63432,3 5195,FRAMEQA4781,brown,what is the color of the hair?,tumblr_nqotedLtZG1tjz3ato1_400,64601,2 5196,FRAMEQA28555,two,how many men are stood gesturing to the crowd?,tumblr_nch7bgbitX1ty31s3o1_250,86718,1 5197,FRAMEQA9551,two,how many young women are talking and laughing together?,tumblr_nh2rewR6IG1rhzqaho1_400,101155,1 5198,FRAMEQA13769,three,how many boys with headphones and mics in front of them are laughing?,tumblr_nhpumpvxAx1tawgedo2_500,91438,1 5199,FRAMEQA1946,microphone,what is the guy singing and gripping?,tumblr_nb8hdf8Ks61s8gc8po1_500,49426,0 5200,FRAMEQA21635,white,what is the color of the cap?,tumblr_nbc1qnKRyZ1tvtr5do1_250,53196,2 5201,FRAMEQA5127,red,what is the color of the coat?,tumblr_mql1pvhNCl1qeb8xzo1_500,24695,2 5202,FRAMEQA3020,room,where is the man sitting and going in and out of focus?,tumblr_ng0usjJWj41rebzpvo1_400,36898,3 5203,FRAMEQA9941,stadium,where are the group of men waiving?,tumblr_n9lh8xQHCe1seb31ro1_500,91548,3 5204,FRAMEQA49904,dog,what pats the head of an angry cat?,tumblr_n9mhncAnrG1tfer0ho1_400,15516,0 5205,FRAMEQA49817,hat,what is the man wearing?,tumblr_nak8paCoDj1ts7wbfo1_400,46117,0 5206,FRAMEQA9423,guitar,what is the beautiful man with long hair playing?,tumblr_nksdtqXSNt1unkjfko1_400,32100,0 5207,FRAMEQA3966,two,how many men dance while holding mics and one of them spins his necklace around his neck?,tumblr_na93v8P17F1rnq510o1_500,50534,1 5208,FRAMEQA24855,horse,what is leaning over the fence and licking?,tumblr_n8x4u9gEFy1s2wg51o1_500,68398,0 5209,FRAMEQA38236,two,how many people are running at each other and then hugging?,tumblr_nb2wphU00c1ts0qzho1_1280,33406,1 5210,FRAMEQA49328,two,how many young girls are wearing sunglasses and hats?,tumblr_ndcj27AOTX1tp9bieo1_250,6762,1 5211,FRAMEQA15259,black,what is the color of the hat?,tumblr_ncixxdsOHf1sxy0d0o1_250,35676,2 5212,FRAMEQA13372,two,how many men is it staring at each other and smiling?,tumblr_nk61a04KIs1tto5o6o1_250,39549,1 5213,FRAMEQA37781,two,how many guys are entering the hotel on the door?,tumblr_nbbuocrieZ1s5t0x8o1_250,85591,1 5214,FRAMEQA27247,white,what is the color of the coat?,tumblr_noeb5a1D4z1qzh9rto1_400,65285,2 5215,FRAMEQA50605,two,how many people is hugging and smiling while the man is holding an instrument in his hand?,tumblr_nf3exsMV8S1qfpmkno1_500,68513,1 5216,FRAMEQA38776,blue,what is the color of the shirt?,tumblr_nfxk86wJjk1qm4h7ko1_400,24707,2 5217,FRAMEQA19675,seven,how many fingers does the young lady hold up?,tumblr_ndi56898WC1s52tx6o1_500,86080,1 5218,FRAMEQA44900,shower,where is the man getting splashed by water?,tumblr_natxt8QoeK1stw21io1_500,58376,3 5219,FRAMEQA43572,glasses,what is the girl with short hair and makeup on her face wearing and moving?,tumblr_nep1zhFsa81tywrtso1_400,32050,0 5220,FRAMEQA42129,turtle,what is the guy tickling a turtle 's shell and is squirming away?,tumblr_neqagz6lei1tdjuqvo1_400,15374,0 5221,FRAMEQA17964,dog,what tries to retrieve the ball from the pool as another dog bites its tail?,tumblr_ndro45f3DA1qhn9jdo1_400,81160,0 5222,FRAMEQA20840,gun,what is the man dressed and military uniform and holding?,tumblr_nav0bbGnOb1snbe4ao1_400,65875,0 5223,FRAMEQA26939,three,how many girls in pink turn and pose?,tumblr_njvezjw04N1unmn69o1_400,24800,1 5224,FRAMEQA41543,black,what is the color of the shirt?,tumblr_nc6q7aAfw31r4ghsso1_500,39311,2 5225,FRAMEQA47042,white,what is the color of the boots?,tumblr_njabihiB4w1tuh8exo1_400,77,2 5226,FRAMEQA28653,black,what is the color of the hat?,tumblr_ngzxc0zvYL1r82feqo1_500,20566,2 5227,FRAMEQA28465,dog,what is jumping up the stairs and then he turns round when he gets to the top?,tumblr_nbuhc5cUJn1rotc20o1_400,19595,0 5228,FRAMEQA31252,red,what is the color of the cape?,tumblr_ms4kvoOQeL1rgryh8o1_500,24942,2 5229,FRAMEQA7765,yellow,what is the color of the towel?,tumblr_nf5olbZaM81rs0blno1_500,95390,2 5230,FRAMEQA13219,lane,where is the person on a yellow motorcycle riding?,tumblr_n9hl6ky3FK1qk377so1_400,84923,3 5231,FRAMEQA2957,room,where is the man dancing while another man dances in another room?,tumblr_nee10oHKIS1taytvao1_400,58994,3 5232,FRAMEQA6120,scarf,what is the guy removing from around his neck?,tumblr_ng0vxeyviE1rco9sno1_250,17322,0 5233,FRAMEQA17777,white,what is the color of the shirt?,tumblr_ng9f9xUSun1u3u3o3o1_400,79138,2 5234,FRAMEQA50582,cat,what is someone holding under its front arms and wiggling it?,tumblr_ngx8mtOFt51rdm91ko1_400,32691,0 5235,FRAMEQA43801,two,how many men are making faces and wagging their tongues?,tumblr_ncrt5nXvpv1tll0p8o1_400,78962,1 5236,FRAMEQA8777,blue,what is the color of the jacket?,tumblr_nh5d7bNBng1u4gijho1_250,3905,2 5237,FRAMEQA50644,two,how many very handsome boys are into the black car?,tumblr_nevu1x7R4F1tzeksuo1_400,67414,1 5238,FRAMEQA43656,red,what is the color of the jerseys?,tumblr_nd321grlU71tsxw1zo1_400,66166,2 5239,FRAMEQA39065,cat,what is using the snow blower to blow snow as a human?,tumblr_ncizfxCBrD1tk8jwao1_400,60971,0 5240,FRAMEQA18976,dog,what is trying to jump onto the couch?,tumblr_nhu5ez5Nx21tdjuqvo1_400,18965,0 5241,FRAMEQA42458,motorcycle,what is the person crashing while going around a curve?,tumblr_ne0esqISos1tx8mn0o1_400,52721,0 5242,FRAMEQA8993,white,what is the color of the helmet?,tumblr_neanhluuup1u26rdio1_500,58044,2 5243,FRAMEQA50692,guitar,what are three people playing on stage?,tumblr_nre0r7j8Cd1r9n1lyo1_400,16346,0 5244,FRAMEQA50471,two,how many men are caressing?,tumblr_nfho038AlR1su2ypvo1_400,45965,1 5245,FRAMEQA16761,gun,what is the person shooting?,tumblr_nhsrguyVn81t63i8io1_500,56761,0 5246,FRAMEQA1948,four,how many large men are walking across the stage?,tumblr_no9uomroFk1rndm3wo1_400,39073,1 5247,FRAMEQA7723,instruments,what are two people playing together in a room?,tumblr_nqzqaupSSA1u96zdso1_500,70130,0 5248,FRAMEQA38789,one,how many man is reading?,tumblr_njv3g9ZEQV1ts13wdo1_250,75984,1 5249,FRAMEQA23502,cat,what is standing under the faucet and drinking from it?,tumblr_ng2hhrvC6B1slj978o1_400,19523,0 5250,FRAMEQA35046,candle,what is burning on the table?,tumblr_nbl18fV1iz1tjqkt0o1_400,64938,0 5251,FRAMEQA31292,two,how many young men are singing and playing guitars?,tumblr_navtszVYAv1tys35ko1_250,15994,1 5252,FRAMEQA49429,hat,what is the guy?,tumblr_nf5hg7loxL1u0z49so1_250,2083,0 5253,FRAMEQA42817,red,what is the color of the shirt?,tumblr_nq3jlqPzkI1skv761o1_400,29618,2 5254,FRAMEQA11514,bar,where did the man stand moving his body?,tumblr_nbf8q10uxS1qagvw9o1_250,41327,3 5255,FRAMEQA16899,two,how many young men are sitting and talking?,tumblr_nqscoi71bd1upirrro1_500,57842,1 5256,FRAMEQA39924,black,what is the color of the man?,tumblr_nr6qo41QuT1r2ersdo1_500,39355,2 5257,FRAMEQA3879,car,where is the man and smiling very cheesy?,tumblr_nk2v6r00g21unqpa3o1_250,24223,3 5258,FRAMEQA12094,two,how many young people are looking at the corpse?,tumblr_nhyz2w3sCH1u8371so1_400,51215,1 5259,FRAMEQA9836,two,how many men have the conversation?,tumblr_nhq8rxjMRd1tt81apo1_400,59808,1 5260,FRAMEQA35030,brown,what is the color of the hair?,tumblr_nchx7oOJmF1rybkoro1_500,99117,2 5261,FRAMEQA38068,cat,what pulled the dog around by the dog 's lead?,tumblr_n9dxxv9ONq1sk96t7o1_400,59286,0 5262,FRAMEQA51205,four,how many men in white suits are singing together?,tumblr_nebhvpBUgh1rgxfumo1_250,1163,1 5263,FRAMEQA7558,white,what is the color of the shirt?,tumblr_nkwp8uMMLW1tco118o1_250,9696,2 5264,FRAMEQA5217,dog,what is looking sad is sitting with purple wings on their ears?,tumblr_nov6tduqos1uvi3rjo1_400,54480,0 5265,FRAMEQA20283,one,how many man is wearing red looks at another and laughs?,tumblr_nfpuisFRl11t2mzx0o1_400,82197,1 5266,FRAMEQA41395,two,how many boxers are arguing on the ring?,tumblr_nqemmiLRm21u3u66ko1_400,64429,1 5267,FRAMEQA18450,four,how many people is wearing black and white are standing and laughing?,tumblr_nfihtkUgrh1u316two1_500,5806,1 5268,FRAMEQA43399,cars,what are going the road at night in front of a building?,tumblr_nqtams4V1k1u2ep9yo1_500,61078,0 5269,FRAMEQA44985,rope,where is the chameleon swinging?,tumblr_nk75gnN9yC1sht3fmo1_250,11849,3 5270,FRAMEQA31077,guitar,what is the guy playing confidently while boasting a puffy hairdo?,tumblr_nkmhq44qmI1tfej6zo1_400,33852,0 5271,FRAMEQA22997,black,what is the color of the outfit?,tumblr_ng0usjJWj41rebzpvo1_400,36898,2 5272,FRAMEQA47401,tie,what does the man get pushed into his face?,tumblr_n9fwbfEVPD1qaltrro1_500,95976,0 5273,FRAMEQA36970,hat,what is the young man flipping in the air?,tumblr_nkxj24nYDk1rhiuffo1_400,29599,0 5274,FRAMEQA46260,ball,what does the man kick?,tumblr_na7uylrYdY1tz9jaqo1_250,8190,0 5275,FRAMEQA9737,dog,what does the big dog let out of a cage?,tumblr_ncx9u3ivlb1tdmffyo1_400,101281,0 5276,FRAMEQA40922,two,how many women are singing dancing and shaking their shoulders and hips on stage?,tumblr_nl0fz8rTT21rc6zqzo1_250,7769,1 5277,FRAMEQA17355,gym,where are two men running?,tumblr_np7428zJXS1sjggsso1_400,79249,3 5278,FRAMEQA11706,black,what is the color of the machine?,tumblr_ncnclh0Da61sqeumlo1_250,20525,2 5279,FRAMEQA25363,car,what is skidding off the racetrack while taking a corner?,tumblr_nreudiOfno1tx8mn0o1_400,78282,0 5280,FRAMEQA12424,three,how many people are roller skating around the rink?,tumblr_npj5kigFw31rszhaco1_1280,82150,1 5281,FRAMEQA43583,red,what is the color of the shirt?,tumblr_n9e8daAb7o1tozex2o1_400,33800,2 5282,FRAMEQA43322,gray,what is the color of the suit?,tumblr_noibtowlNT1tum256o1_500,48578,2 5283,FRAMEQA25998,two,how many men are waling?,tumblr_nhfkba24Lg1qgd51ro1_250,12591,1 5284,FRAMEQA19284,bird,what did the person feed through the window?,tumblr_nr1otxgnPQ1rlmonbo1_250,13333,0 5285,FRAMEQA37919,dress,"what is the woman , wearing , is singing with a microphone?",tumblr_npchuhU40V1s4dp9lo1_500,61840,0 5286,FRAMEQA38759,three,how many guys are carrying another guy through a large purple sheet?,tumblr_nabwvrGgUt1rmv3nuo1_500,70098,1 5287,FRAMEQA18596,pants,what are men sitting down are pulling on their socks and strapping?,tumblr_ne0e2zazzA1tf81rso1_400,38543,0 5288,FRAMEQA51301,two,how many women are clapping and wearing different clothes?,tumblr_ng18v4iOw91u4hyr2o1_500,94617,1 5289,FRAMEQA47768,puppet,what is banging its head on the side of the marionette stage?,tumblr_ncigafqVwf1tgsaito1_400,42920,0 5290,FRAMEQA45373,tree,what stands in front of a house with many windows?,tumblr_ngst4bKY2q1tk9glao1_400,100723,0 5291,FRAMEQA52879,octopus,what loses its camouflage and swims away?,tumblr_nn8bxrdwTP1sht3fmo1_250,26655,0 5292,FRAMEQA19753,two,how many men are staring at other men walking by?,tumblr_na44dr5Omn1tjpvwpo1_250,47137,1 5293,FRAMEQA34949,white,what is the color of the shirt?,tumblr_nes40rmxPE1u3pzj0o1_400,53059,2 5294,FRAMEQA5571,yellow,what is the color of the cat?,tumblr_n8urd6PMiY1tgkdkbo1_400,74900,2 5295,FRAMEQA19286,two,how many people are watching something on a phone and laughing?,tumblr_mepd430TAF1rosr1ho1_500,88804,1 5296,FRAMEQA37664,vehicle,what is moving and showing the clear sky with empty fields of grass?,tumblr_nir1imp3Hd1tkwbico1_400,4655,0 5297,FRAMEQA40545,flowers,what does this show on a tea cup?,tumblr_nc2spimDis1tmrnl8o1_500,51156,0 5298,FRAMEQA4776,two,how many people is laying on the beach are kissing each other?,tumblr_nkk5d5OAP41u6hnr3o1_500,72515,1 5299,FRAMEQA40184,three,how many beautiful mermaids are swimming together underwater?,tumblr_n8smhsNjcz1t6so35o3_400,52021,1 5300,FRAMEQA36404,wheel,what is rolling around the car park and knocks into a car?,tumblr_nq4kot19WJ1tpg4boo1_500,83136,0 5301,FRAMEQA25530,black,what is the color of the hair?,tumblr_nrj3ihiSvs1u2xxbqo1_1280,61662,2 5302,FRAMEQA11421,vegetables,what are changing their aspect from green?,tumblr_nc0ggmHHk21tq3jd9o1_400,53160,0 5303,FRAMEQA40997,cap,what is rubbing somebody s leg in bath?,tumblr_ngqi9pDqn61r3fht5o1_250,26058,0 5304,FRAMEQA3391,white,what is the color of the shirt?,tumblr_nb6x6yDo3T1qi1h3ao1_250,2972,2 5305,FRAMEQA23483,mirror,where is the bearded lady having her beard trimmed and looks?,tumblr_nbnlp3d0FA1tldvawo1_400,54491,3 5306,FRAMEQA49458,cars,what are racing on the dirt path?,tumblr_nbpoa8XFSr1swtjjuo1_500,97084,0 5307,FRAMEQA46521,two,how many people are walking?,tumblr_nktz7xUsKO1upudqio1_250,51600,1 5308,FRAMEQA43763,red,what is the color of the suit?,tumblr_ngf845m4JU1rv43xgo1_400,20840,2 5309,FRAMEQA1023,cat,what is climbing over the man 's shoulder?,tumblr_nft79he7Rj1slbfzxo1_500,72567,0 5310,FRAMEQA29002,brown,what is the color of the dog?,tumblr_n8vaofH4lm1s1hn6lo1_400,58281,2 5311,FRAMEQA36832,elephant,what is rubbing himself on the ground two other elephants are watching?,tumblr_ndty8uvoqn1sukgyxo1_400,57588,0 5312,FRAMEQA26262,two,how many female friends are smiling at each other?,tumblr_n9hmg4UEOf1thtos8o1_400,33561,1 5313,FRAMEQA40758,one,how many man walks down the hall and glances side ways?,tumblr_nas8bv4aZB1taq9qwo1_250,46972,1 5314,FRAMEQA37080,ball,what is the young man dribbling?,tumblr_ndyen1F4h41seb31ro1_400,30640,0 5315,FRAMEQA30049,black,what is the color of the shirt?,tumblr_negezmwUpO1spote4o1_500,93793,2 5316,FRAMEQA2982,black,what is the color of the man?,tumblr_nc40txavRM1tm4pbeo1_400,63720,2 5317,FRAMEQA52114,brown,what is the color of the hair?,tumblr_nd6tl5MFnq1u110syo1_500,92964,2 5318,FRAMEQA20534,cat,what does the young woman smile and lifts into the air while a young man stands quietly behind her?,tumblr_n9wrdo0tex1tff33do1_400,35209,0 5319,FRAMEQA4766,car,what is driving down the dark street?,tumblr_nd4fsjihYG1u0lsh1o1_400,84128,0 5320,FRAMEQA38182,car,what is gong very fast on the dirt road and slides around a curve into the trees?,tumblr_nl126a6rbk1unyhx2o1_400,79257,0 5321,FRAMEQA46480,two,how many grown people are shaking each others hands?,tumblr_njuqynOmaR1qat224o1_400,32946,1 5322,FRAMEQA35254,two,how many men are moving around next to each other?,tumblr_ngy2thk5VL1rn16efo1_r1_500,71393,1 5323,FRAMEQA14129,rag,what is the young man with a mirror in front of him biting?,tumblr_nk7dzchXJO1tctaqvo1_400,46310,0 5324,FRAMEQA46280,black,what is the color of the dress?,tumblr_nc9zmy3L2J1ruoqrro1_500,54974,2 5325,FRAMEQA3066,hat,what is the man wearing?,tumblr_nfiy4ozoNY1s7kd47o1_500,70735,0 5326,FRAMEQA52614,black,what is the color of the woman?,tumblr_nk279dARPm1u3wykjo1_400,55353,2 5327,FRAMEQA37459,hoop,where is the man twirling?,tumblr_nc3dcktrA31ticciso1_400,58502,3 5328,FRAMEQA45100,guitar,what is the man playing and singing to someone?,tumblr_na5j2z7Ejt1tfvkwqo1_400,68462,0 5329,FRAMEQA50378,drink,what is the man wearing a sombrero in the pools pours?,tumblr_n9r5jyrlhR1sfbetvo1_250,71505,0 5330,FRAMEQA37012,dog,what is sitting on the chair the way a human does?,tumblr_njuk1huMBo1unlpflo1_400,63604,0 5331,FRAMEQA18700,two,how many people are touching each others noses?,tumblr_njqc6vBcZi1u23wvyo1_500,61214,1 5332,FRAMEQA43736,black,what is the color of the suit?,tumblr_ngu4rdTvNW1tvsb7yo1_400,3763,2 5333,FRAMEQA25696,brown,what is the color of the stares?,tumblr_nmlvz4PWsb1ttrhu8o1_500,99859,2 5334,FRAMEQA33470,hospital,where do 2 women start to kiss?,tumblr_ncc1ycDVbj1rijrceo1_500,88715,3 5335,FRAMEQA1824,black,what is the color of the skirt?,tumblr_nf8mgr448W1r4qyf7o1_500,26283,2 5336,FRAMEQA43861,three,how many girls are dancing on the stage?,tumblr_nptbdl1fVs1tw4vtzo1_400,50182,1 5337,FRAMEQA46272,pool,where are the man and a woman kissing each other?,tumblr_n9flqtUIJf1scms8to1_500,98495,3 5338,FRAMEQA7984,guitar,what is someone playing?,tumblr_nd5d4u8cos1r7gr8so1_400,51974,0 5339,FRAMEQA26525,black,what is the color of the shirt?,tumblr_nl07wlwiAR1sm6z8wo1_400,10470,2 5340,FRAMEQA34079,two,how many people walked and talked to each other?,tumblr_nhidkpCNdx1rm7xsro1_400,61938,1 5341,FRAMEQA28225,rope,what is the horse rolling on the ground and a man is holding?,tumblr_nin6hhwnC81tehwjso1_r1_400,46462,0 5342,FRAMEQA30609,ball,what are the men passing around the field?,tumblr_n8rp02Ml9d1th5f0ro2_400,38227,0 5343,FRAMEQA2931,keys,what do the woman 's fingers punch on a laptop which is sitting on her lap?,tumblr_nfevqkmkWq1rpbsywo1_500,84182,0 5344,FRAMEQA1555,three,how many men are singing in the vehicle?,tumblr_nrlc3i7KYK1sqiy4oo1_400,60244,1 5345,FRAMEQA13874,yellow,what is the color of the object?,tumblr_nqaik6ZkRa1uxws2zo1_400,24576,2 5346,FRAMEQA13750,crotch,"what is the man in a white shirt grabbing , and he is raising his arm?",tumblr_nkjhd849y71u3aq49o1_540,50778,0 5347,FRAMEQA14275,black,what is the color of the hair?,tumblr_nhmmiofPei1u6f9bmo1_250,8514,2 5348,FRAMEQA986,instruments,what are young people playing?,tumblr_n96gwarazJ1r81bzfo1_500,62688,0 5349,FRAMEQA45888,otter,what ate the few bites of cat food at a kitchen table?,tumblr_nfi8e5fJhT1tdjuqvo1_500,88290,0 5350,FRAMEQA10967,room,where do three guys look?,tumblr_nat1jsDGBA1tdmr2yo1_500,96611,3 5351,FRAMEQA44411,corridor,where does the lady stop?,tumblr_nb7ga4aK9F1tdyi9oo1_400,35085,3 5352,FRAMEQA21324,tires,what are smoking as someone revs the accelerator with the handbrake on?,tumblr_nb2amuCSF01suocdbo1_500,70395,0 5353,FRAMEQA42152,black,what is the color of the hair?,tumblr_nhuoksIv0d1ra6i3zo1_500,95617,2 5354,FRAMEQA29159,black,what is the color of the clothing?,tumblr_nja4tbKh6P1un6ltvo1_250,5770,2 5355,FRAMEQA35185,blue,what is the color of the hat?,tumblr_ncdinuJxSW1taahxyo1_400,77696,2 5356,FRAMEQA52926,two,how many young men sit on the curb next to a hedge and have a conversation?,tumblr_niuy3acWZ61shch57o1_250,40241,1 5357,FRAMEQA23482,dog,what is excitedly dancing and looking at something low down?,tumblr_nb1mrl3e4N1slj978o1_250,71461,0 5358,FRAMEQA31322,two,how many men shake hands and another makes a smooth transition?,tumblr_no0sotbQkP1utno2io1_400,12916,1 5359,FRAMEQA39442,black,what is the color of the shirt?,tumblr_ndalo1iQWh1rrjxv9o1_250,4206,2 5360,FRAMEQA14313,two,how many soccer players bump heads and one hits the other on the head?,tumblr_n8ptm83Gmv1sc1cefo1_250,14456,1 5361,FRAMEQA16794,red,what is the color of the fedora?,tumblr_ncz5bgkqTO1tkalc5o1_250,2024,2 5362,FRAMEQA34811,cat,what is sitting on the wall wagging his tail?,tumblr_np7ctpyie61r7t178o1_500,52859,0 5363,FRAMEQA43179,wheel,what is the man on a moving car smashing the windshield and grabbing steering?,tumblr_nkjv9qFUwH1tltf5to1_540,88559,0 5364,FRAMEQA34297,four,how many men are standing together posing for pictures?,tumblr_njn3igFQG31u6o3qyo1_500,92191,1 5365,FRAMEQA10026,ball,what is the man in a woolen hat keeping in the air with his feet?,tumblr_nevsarqG0r1rykb0vo1_400,50084,0 5366,FRAMEQA3242,white,what is the color of the shirt?,tumblr_ngx8i4P8R61rdm91ko1_400,32373,2 5367,FRAMEQA42773,white,what is the color of the kit?,tumblr_na9ijld2mu1rqb3bqo1_250,9555,2 5368,FRAMEQA30705,brown,what is the color of the hair?,tumblr_nfio5acYBE1tybs7po1_400,30923,2 5369,FRAMEQA46267,two,how many men give interesting looks and then clap their hands?,tumblr_ne5uusuvNn1u2p22ho1_250,13113,1 5370,FRAMEQA1372,two,how many funny girls laugh and one lays her head on the other?,tumblr_nhoqo9nDcU1szutyqo1_500,42089,1 5371,FRAMEQA9850,two,how many men are making peace signs and funny faces?,tumblr_na2k21xDU51shtuz8o1_250,73231,1 5372,FRAMEQA6377,chair,where is the man sitting and talking?,tumblr_naoun5Qf411t90iy0o1_500,52064,3 5373,FRAMEQA49830,cat,what is sitting on the chair at a table swatting at candle smoke?,tumblr_nc28ihKPGx1slwrsuo1_400,34010,0 5374,FRAMEQA17785,window,"what does the person look out , they see it from looking up?",tumblr_ndjbzgIO1U1tjd11mo1_500,76480,0 5375,FRAMEQA38432,two,how many young men are eating the snack on a bus?,tumblr_nbtlrnLJyT1t1szv2o1_500,70108,1 5376,FRAMEQA43600,white,what is the color of the man?,tumblr_nkv73zC1m21rxyt1xo1_500,69188,2 5377,FRAMEQA16120,one,how many man is holding a microphone and one man with a guitar strapped on are both decorated with many tattoos?,tumblr_n94pz0wUGh1s218xco1_500,92294,1 5378,FRAMEQA43108,dog,what is snuggling in the bed?,tumblr_nepw693vsr1tk2ngvo1_400,55996,0 5379,FRAMEQA471,two,how many identical men are sitting in chair?,tumblr_na41oyCHeF1rcndp1o1_500,9702,1 5380,FRAMEQA46131,car,what races around the curve while people watch?,tumblr_no37v6clUi1qzho3ao1_400,94742,0 5381,FRAMEQA22640,hat,what is the mask man in black showing?,tumblr_nfhfwk7nTt1u4pmmpo1_400,24285,0 5382,FRAMEQA16376,car,what goes down the slope into the water in front of a group of people?,tumblr_net1unlnyN1sp8qslo1_400,35630,0 5383,FRAMEQA34552,two,how many people stood singing the song in to the microphone?,tumblr_nd1jigD3041rgqetqo1_250,82686,1 5384,FRAMEQA23797,black,what is the color of the background?,tumblr_nrljkbZSIC1u5qz70o1_500,43507,2 5385,FRAMEQA16204,cat,what is the girl showing to somebody?,tumblr_n9wrdo0tex1tff33do1_400,35209,0 5386,FRAMEQA4986,black,what is the color of the sweater?,tumblr_ngl13o76hU1tgzsvro1_250,36610,2 5387,FRAMEQA41535,two,how many guy in long coats are standing around?,tumblr_nbafnh36931svh8clo1_250,1567,1 5388,FRAMEQA52124,white,what is the color of the stuff?,tumblr_nbodhjd7BL1rs27k2o1_250,10428,2 5389,FRAMEQA51005,trumpet,what is the person in a banana costume playing?,tumblr_naewvsd2Hj1rpjr5so1_500,27793,0 5390,FRAMEQA32956,necklace,what is the girl with long hair wearing?,tumblr_n9cepvQnUm1sm0tyko1_250,48559,0 5391,FRAMEQA51416,cat,what are two men talking and one is holding?,tumblr_nat3hdvBzb1t0vmnto1_250,21840,0 5392,FRAMEQA45015,one,how many man is making the face?,tumblr_njo8t1fszK1u1wrwxo1_250,50396,1 5393,FRAMEQA11180,white,what is the color of the top?,tumblr_nk2bofz9lN1u04jkto1_500,57100,2 5394,FRAMEQA34508,bed,where is the woman shooting up after waking up?,tumblr_nom6zxNZYd1tyxue1o1_400,81172,3 5395,FRAMEQA37048,horse,what is walking forward through the dirt?,tumblr_ndlmycDsSK1tidcnvo1_400,63831,0 5396,FRAMEQA22232,black,what is the color of the woman?,tumblr_na9dyj81wq1tinuvfo1_400,7364,2 5397,FRAMEQA26171,two,how many men stand in the trolley?,tumblr_najmw24iuw1qlo2n6o1_400,20067,1 5398,FRAMEQA903,orange,what is the color of the top?,tumblr_ne5u53Y1w41tw8vf9o1_400,71526,2 5399,FRAMEQA37299,three,how many men are relaxing while sitting?,tumblr_ne0pilw3Xs1qam9qho1_r2_500,85298,1 5400,FRAMEQA37280,dog,what is looking around and sitting on the beach near water?,tumblr_nfljjzNN0y1u4vf33o1_400,69301,0 5401,FRAMEQA8669,vehicle,where is the woman riding and smiling funny?,tumblr_n9co60ue2d1tyqxvmo1_500,99792,3 5402,FRAMEQA46708,car,where are three people bobbing their heads?,tumblr_ndyl4209U21sabd3xo1_250,23694,3 5403,FRAMEQA24208,two,how many blonde woman are talking to each other?,tumblr_ng8huxJJg41qbzfhbo1_250,13231,1 5404,FRAMEQA28572,black,what is the color of the jacket?,tumblr_n9bvjpD1sK1qgyvz3o1_250,17795,2 5405,FRAMEQA37036,helmet,what is the woman wearing?,tumblr_nc8kyvQDPt1qge29wo1_400,84958,0 5406,FRAMEQA30875,trainer,what is exercising her horse in a building?,tumblr_n8zd1nDo0B1rwgxlqo1_500,70645,0 5407,FRAMEQA34924,groundhog,what is the person pulling out of a hole in the ground?,tumblr_newwf9wxYr1sdss0qo1_250,318,0 5408,FRAMEQA21342,yellow,what is the color of the boat?,tumblr_nc3e3globU1snid6qo1_400,66138,2 5409,FRAMEQA14328,gorilla,what hugs the woman while she picks it up?,tumblr_nflomgPlCj1t0rduno1_400,54179,0 5410,FRAMEQA40753,two,how many men are laughing while sitting?,tumblr_nqo2x3bbpv1uuh0teo1_400,89238,1 5411,FRAMEQA9265,kitten,what climbed up the metal ladder?,tumblr_nh2j9ov5zN1u4v3ypo1_250,155,0 5412,FRAMEQA43355,snake,what is this coiling around the branch of a tree?,tumblr_neu5ybxkBL1tia84ho1_r2_1280,61746,0 5413,FRAMEQA28556,two,how many young ladies are walking and smiling and laughing?,tumblr_na7zofXXBQ1t5ojzdo1_250,14465,1 5414,FRAMEQA17904,skateboard,what is the man in a red shirt riding down the curvy road?,tumblr_nr6w5vugtC1tfn8dso1_400,79205,0 5415,FRAMEQA29019,horse,what is walking outside in the nature?,tumblr_n8xa4psLDY1sb7v5lo1_500,70371,0 5416,FRAMEQA8833,white,what is the color of the shirts?,tumblr_nf24phb8BO1thpehoo1_400,47579,2 5417,FRAMEQA27808,car,what is going through the residential area?,tumblr_nfmv6zvVmc1u25ovvo1_400,63416,0 5418,FRAMEQA51499,yellow,what is the color of the hand?,tumblr_ncdv4ebLbw1tenxbgo1_250,43929,2 5419,FRAMEQA46769,suit,what is the man wearing and smiling?,tumblr_ndalydtPUu1u12owmo1_500,87212,0 5420,FRAMEQA4252,two,how many lovers are kissing then?,tumblr_n9o0r4ji5o1snkc47o1_250,81449,1 5421,FRAMEQA22675,two,how many young guys play with their hair?,tumblr_ne9wlbbLg11tfou8do1_400,60514,1 5422,FRAMEQA749,shirt,what is the man wearing a blue t - is sitting on the steps and eating?,tumblr_nkv5iz7KVL1unu56do1_400,35675,0 5423,FRAMEQA19328,two,how many men smile at each other after one of them has his hair parted to the side?,tumblr_nqx38kWLfU1t0ojyvo1_400,21752,1 5424,FRAMEQA34704,black,what is the color of the hat?,tumblr_ncgx0gSMVZ1rne0ito1_400,24150,2 5425,FRAMEQA18028,oar,what is the surfer standing on a large board using?,tumblr_nki2bnVTOg1up3auao1_500,57909,0 5426,FRAMEQA20837,car,what is skidding on the track.a?,tumblr_no62rm4dDC1tx8mn0o1_400,76917,0 5427,FRAMEQA38649,shirts,what are kissing each other?,tumblr_nk7ba776pi1thbdaio1_500,74018,0 5428,FRAMEQA44224,dog,what bares its teeth as it barks?,tumblr_nkro0iKPRH1upx448o1_500,72145,0 5429,FRAMEQA43259,nugget,what is the guy wearing a blue checkered shirt eats?,tumblr_ng9rxraygM1u1bqbwo1_250,3076,0 5430,FRAMEQA38451,two,how many airplanes are flying through the air above the clouds?,tumblr_nnq4tzM7M51urqm0mo1_500,85138,1 5431,FRAMEQA30849,two,how many men are turning to look at something?,tumblr_npb6eieHYv1uxot71o1_500,11924,1 5432,FRAMEQA2870,black,what is the color of the hat?,tumblr_nbg8vizTGK1s1q1rro1_500,92853,2 5433,FRAMEQA36969,two,how many ladies are kissing each other passionately in a room?,tumblr_non9dnF1Om1u4uss5o1_400,78286,1 5434,FRAMEQA25426,brown,what is the color of the hair?,tumblr_njvslkkidf1u2mqcoo1_500,74752,2 5435,FRAMEQA46482,two,how many men are sitting in chairs?,tumblr_nfg9btxKYw1u41f5eo1_400,56637,1 5436,FRAMEQA18742,white,what is the color of the shirt?,tumblr_nc7ghkx0rA1r91wsno1_500,88364,2 5437,FRAMEQA16695,two,how many women are jumping onto the log?,tumblr_ncxy7vIbUJ1tt3dbuo1_500,76376,1 5438,FRAMEQA40352,fox,what plays guitar too loud and blows speakers?,tumblr_n94nipTYJT1thddx0o1_400,42988,0 5439,FRAMEQA35867,kitten,what crawls near the bunch of other kittens?,tumblr_nnk8xylP9g1u5qahro1_1280,54164,0 5440,FRAMEQA40072,photographs,what is the woman with long dark hair taking?,tumblr_nh3uu1kiDK1rswar7o1_500,97574,0 5441,FRAMEQA48531,tail,what is the brown and white dog staring and wagging?,tumblr_nffsy8wfSM1t2t9szo1_400,35128,0 5442,FRAMEQA41798,two,how many girls are making out with each other?,tumblr_non9dnF1Om1u4uss5o1_400,78286,1 5443,FRAMEQA45737,two,how many birds bob their head up and down?,tumblr_n9nxz6cyx11sjuzlno1_400,36176,1 5444,FRAMEQA7671,bird,what is taking the nut from a person 's hand?,tumblr_nr1otxgnPQ1rlmonbo1_250,13333,0 5445,FRAMEQA33488,guitar,what are two men with black hair playing?,tumblr_n94fi690GZ1twfcheo1_400,60282,0 5446,FRAMEQA5629,dog,what did the black man wiggle at children?,tumblr_nfeetqIQkZ1so9ango1_400,35037,0 5447,FRAMEQA14462,kitchen,where is the woman standing?,tumblr_n9198gwVHK1tyyj4so1_400,61502,3 5448,FRAMEQA25452,red,what is the color of the sweater?,tumblr_nouudbjKtI1u0el0yo1_250,38411,2 5449,FRAMEQA51789,cellphone,where is the man winking at a woman?,tumblr_nbg7uliVyd1rze3q1o1_500,86397,3 5450,FRAMEQA37309,airplane,what starts to land on boat with a landing strip?,tumblr_nk9bepAt5K1sq12j9o1_400,82896,0 5451,FRAMEQA44437,green,what is the color of the thing?,tumblr_nhanpu9jjb1u5o5sjo1_250,27232,2 5452,FRAMEQA38119,black,what is the color of the hair?,tumblr_nhoafqx2kj1u7yu1to1_400,56974,2 5453,FRAMEQA23932,brown,what is the color of the hair?,tumblr_ncxsl29ZXD1tmth2jo1_250,47237,2 5454,FRAMEQA23298,two,how many cats are together?,tumblr_n90wdbaCbJ1sakfnpo1_250,40595,1 5455,FRAMEQA33476,two,how many people ride in the car together and look away?,tumblr_ndtnspUwjN1u1ph7jo1_1280,45506,1 5456,FRAMEQA37336,dog,what put its paw on a cats head and patted it?,tumblr_n9mhncAnrG1tfer0ho1_400,15516,0 5457,FRAMEQA22796,hamsters,what were playing around together?,tumblr_na07x1hrbL1ti3y6yo1_400,25005,0 5458,FRAMEQA15933,dancing,what is woman wearing?,tumblr_nbnc6qlJF21tzjp9uo1_250,18254,0 5459,FRAMEQA31901,room,where is the woman cutting her hair?,tumblr_nq9ufi6TrL1uur22co1_250,23274,3 5460,FRAMEQA11304,two,how many people in black wave their arms while they dance?,tumblr_n8zjjsp2E21tecuevo1_400,42865,1 5461,FRAMEQA2897,dog,what is running on two legs?,tumblr_nerwi2g6db1stn2h6o1_500,36811,0 5462,FRAMEQA49037,white,what is the color of the man?,tumblr_ncyd2oxaHK1s5kmdmo1_250,38355,2 5463,FRAMEQA30311,dog,what walks on his two front legs?,tumblr_nb2n5xYQmY1tdjuqvo1_500,69298,0 5464,FRAMEQA50450,two,how many men are dancing in front of a group of people?,tumblr_n9ag3iabTq1ti0984o1_250,9601,1 5465,FRAMEQA44443,two,how many boys are hugging and turn to each other?,tumblr_ncribxI9q81qi39coo1_500,99517,1 5466,FRAMEQA14680,bottle,what does the man on stage kick to another man who then catches it?,tumblr_na6cjjaMGj1t6ksnpo1_500,92517,0 5467,FRAMEQA4365,blue,what is the color of the shirt?,tumblr_ng8v5lde1d1rqnpmeo1_250,10463,2 5468,FRAMEQA32385,cigarette,what is the man in black tuxedo smoking?,tumblr_nemp1budLR1t97h17o1_400,69910,0 5469,FRAMEQA46649,black,what is the color of the car?,tumblr_nhklv0Td991reseiyo1_1280,89497,2 5470,FRAMEQA43802,five,how many guys all turned around at the same time?,tumblr_ne2yqn7s1f1sl5la9o1_500,71770,1 5471,FRAMEQA8110,bottle,what is the man with mike holding?,tumblr_nc83vxbtD81rmcnl8o1_500,40301,0 5472,FRAMEQA2584,horse,what is the woman riding around a stable?,tumblr_nc428jorCe1tl4bloo1_400,64224,0 5473,FRAMEQA42163,two,how many men jump backward?,tumblr_ndp39weJj11u1b7jeo1_500,58650,1 5474,FRAMEQA31444,car,what is turning around the corner?,tumblr_ncdvtc57Ux1tx8mn0o1_400,52693,0 5475,FRAMEQA11571,four,how many boys are doing something near a pool?,tumblr_nk2ttxGRQJ1sy4yl3o1_400,88236,1 5476,FRAMEQA29731,one,how many man flips the skateboard and a second man lands on the skateboard?,tumblr_n9r1v3mlIp1qdds9go1_400,42116,1 5477,FRAMEQA39093,hat,what is the man with beard wearing?,tumblr_nh3j7brGNJ1rzia65o1_250,25486,0 5478,FRAMEQA49662,car,what is driving down the road and kids are moving around?,tumblr_nbo00fyoGF1t9xpn4o1_400,85675,0 5479,FRAMEQA42429,blue,what is the color of the shirt?,tumblr_nb71pfZ5ue1rcivpuo1_500,99272,2 5480,FRAMEQA47534,black,what is the color of the balls?,tumblr_nh5z1ajZzd1rwipr5o1_r1_250,27736,2 5481,FRAMEQA24143,white,what is the color of the top?,tumblr_ndewuvK3y31tclizvo1_250,27219,2 5482,FRAMEQA42711,two,how many women are walking into the room together?,tumblr_nkugdj9ohz1rqxy4lo1_500,84777,1 5483,FRAMEQA16127,red,what is the color of the apple?,tumblr_na5ojlCiVS1tuv1l1o1_500,101430,2 5484,FRAMEQA7697,car,what was the woman with long dark hair driving?,tumblr_nd1jamcgAZ1u0agnbo1_500,73509,0 5485,FRAMEQA49488,white,what is the color of the drink?,tumblr_n9rq8iQZvP1tpb3fho1_250,87532,2 5486,FRAMEQA25210,red,what is the color of the suit?,tumblr_nd5afoHKml1tfsdl2o1_250,17096,2 5487,FRAMEQA10870,walls,what is the cat leaping and bouncing off?,tumblr_ngv9m5pOMl1slj978o1_400,37576,0 5488,FRAMEQA22734,cup,where is the girl drinking wine?,tumblr_n9vtsihZHq1tj05klo1_500,50012,3 5489,FRAMEQA42553,black,what is the color of the suit?,tumblr_nb5q4l2gK91rixe5zo1_400,56114,2 5490,FRAMEQA8430,three,how many boys in leather jackets ride a red bus?,tumblr_ngh82hywbz1s4yzawo1_400,9181,1 5491,FRAMEQA7843,black,what is the color of the hair?,tumblr_nre0ygmiud1urhg9no1_400,37019,2 5492,FRAMEQA11886,cars,what are speeding around the race track?,tumblr_nozefyGyp01unyhx2o1_400,65310,0 5493,FRAMEQA8663,money,what are hands bundling and throwing it down?,tumblr_ngg3bgc0U21qlcsfio1_500,3569,0 5494,FRAMEQA37170,two,how many men smile and look down while talking?,tumblr_nqrx03OM6K1uxst7zo1_500,99159,1 5495,FRAMEQA49621,bed,where is the man laying and smoking a cigarette?,tumblr_nguizjs4Pa1u5hpeio1_250,21210,3 5496,FRAMEQA25764,black,what is the color of the hat?,tumblr_nk4p06mEhY1u2lrtfo1_1280,66838,2 5497,FRAMEQA3496,two,how many wrestlers rip their shirts in front of a crowd?,tumblr_nelh3nATly1tte9eno1_400,40152,1 5498,FRAMEQA47543,red,what is the color of the clothing?,tumblr_njtvm1ky4S1u9tekro1_500,76852,2 5499,FRAMEQA24280,cat,what is setting on the bathtub fence and a dog pushed it to fall inside it?,tumblr_nbh3y0lqgx1tuj3bpo1_400,34855,0 5500,FRAMEQA40141,gun,what is the man wearing a mask on top of his head lights a cigarette then points at a man with a gun?,tumblr_nduzc4QNa11tmn3zuo1_400,64006,0 5501,FRAMEQA42825,car,where is the man wearing a santa claus hat is sitting?,tumblr_ngtpdn8oHz1s0w3iqo1_400,57885,3 5502,FRAMEQA50053,two,how many tough boxers in a boxing ring are fighting?,tumblr_no0933CNzs1uv4mmfo1_400,58519,1 5503,FRAMEQA43462,wand,"what is the cat licking , and then starts wracking it FRAMEQAeatedly?",tumblr_npuazcydPD1te94myo1_400,4445,0 5504,FRAMEQA40330,snack,what is the man eating during a football game?,tumblr_ni1qdoBVER1u5ha1qo1_250,21978,0 5505,FRAMEQA44421,red,what is the color of the heels?,tumblr_ncrtqmpi3I1t0urg8o1_500,85244,2 5506,FRAMEQA5738,purse,what does the blonde woman pick up and coat then opens a door?,tumblr_nkgnrucLOa1r0ia88o1_400,94553,0 5507,FRAMEQA26071,two,how many women are talking as one walks toward the other?,tumblr_nkzgpnYwQD1qibh0io1_250,49609,1 5508,FRAMEQA26094,red,what is the color of the beanie?,tumblr_ndwj2x0l3x1tfps03o1_500,10254,2 5509,FRAMEQA9187,red,what is the color of the shirt?,tumblr_nbun4vIfhR1rodjq5o1_250,8188,2 5510,FRAMEQA10309,concoction,what is the man mixing and feeling smug?,tumblr_nkkppg69N71u8aep9o1_250,7151,0 5511,FRAMEQA21654,orange,what is the color of the shirt?,tumblr_ndlrraQaRy1ssgyoro1_250,2450,2 5512,FRAMEQA33319,black,what is the color of the man?,tumblr_n9tou9864c1su5apvo1_400,38737,2 5513,FRAMEQA14708,cat,what does the person throw something across the room and does a back flip?,tumblr_ng1pndMpd61s6zpepo1_400,25900,0 5514,FRAMEQA51251,two,how many guys walk down the street and one smiles?,tumblr_nhnjpmSOue1tnkij0o1_250,23391,1 5515,FRAMEQA1607,five,how many men is standing while getting hit by an object?,tumblr_nkpquj0Nyh1u9h6d6o1_250,16065,1 5516,FRAMEQA50311,white,what is the color of the rope?,tumblr_nk75gnN9yC1sht3fmo1_250,11849,2 5517,FRAMEQA47638,suit,what is the person wearing and trying to run up a tree?,tumblr_nokwt1ZuPX1u5ha5do1_500,8577,0 5518,FRAMEQA47394,jacket,what is the man in a club taking off?,tumblr_nk1dswgMLu1tp7zxjo1_250,13652,0 5519,FRAMEQA49065,peel,what does the man slip after another but lands on his feet?,tumblr_na4969a0oY1qjgxd2o1_400,78029,0 5520,FRAMEQA34016,bag,what does the buff female athlete carry and throws?,tumblr_ncm6einCxX1tw8vf9o1_400,11196,0 5521,FRAMEQA12287,gesture,what is the man making with his hands and then falling backwards in a chair?,tumblr_n9ensmVNvD1ttu918o1_500,100105,0 5522,FRAMEQA32701,drums,what is the woman with long blonde hair playing?,tumblr_ndnbthMNqW1ss14eso1_250,11584,0 5523,FRAMEQA46075,hospital,where is the girl visiting her friend?,tumblr_ndjeo42uTc1qdzqcjo1_250,37766,3 5524,FRAMEQA22458,two,how many guys are making waves with their hands?,tumblr_ne0yhhKN911situ0so1_500,87994,1 5525,FRAMEQA9959,two,how many men are kissing each other on stage?,tumblr_nftkx9YNfX1qm0hcwo1_400,25130,1 5526,FRAMEQA45181,car,what is driving down the street?,tumblr_na9bk7YdxS1swtjjuo1_500,54836,0 5527,FRAMEQA52273,red,what is the color of the hair?,tumblr_nfyrpdSktQ1tr2xwio1_400,64233,2 5528,FRAMEQA29250,dandelion,what is held in front of a car and is blown?,tumblr_nrjkkdYkM51qdbvc2o1_400,77320,0 5529,FRAMEQA13378,elephant,what rolls on the ground while another small elephant sits on him?,tumblr_nblkdlG0wb1qj5hh7o1_250,81080,0 5530,FRAMEQA21733,four,how many men look out and perform various hand gestures?,tumblr_npxdqeQDlj1rndm3wo1_400,82713,1 5531,FRAMEQA52902,one,how many arm is in the sleeve?,tumblr_nb4xgr1uC71rblf33o1_500,89609,1 5532,FRAMEQA40438,guitar,what is the guy playing and singing with two other people?,tumblr_ncehmvUQzC1tmicsyo1_400,59826,0 5533,FRAMEQA5754,two,how many individuals are dancing outside of a car?,tumblr_ndyf9zKF011qi9fe9o1_250,21199,1 5534,FRAMEQA16824,white,what is the color of the dancing?,tumblr_np3poavdcN1qip8rqo1_500,91776,2 5535,FRAMEQA20290,black,what is the color of the hair?,tumblr_ngrowlLTYj1tmddexo1_500,22045,2 5536,FRAMEQA14338,car,what is performing the jump and flipping over?,tumblr_na7u0qCxig1slj978o1_400,101240,0 5537,FRAMEQA16275,bird,what pecks the horse and drinks its water?,tumblr_ngns3jXgPf1s6zpepo1_250,23960,0 5538,FRAMEQA30168,microphone,what does the man roll back and forth in his hands?,tumblr_nhr21u5HJv1sniu8co1_1280,101289,0 5539,FRAMEQA16256,white,what is the color of the vest?,tumblr_n9siszhG1N1r6pekco1_250,9861,2 5540,FRAMEQA6473,computer,what is the man wearing sunglasses is using?,tumblr_nqy6gpwoGz1uy0526o1_400,32991,0 5541,FRAMEQA19392,star,what is lying down on stage while lights flash?,tumblr_n9lp1cFATE1thmyo0o1_500,101953,0 5542,FRAMEQA52451,room,where are some sports players throwing and dancing?,tumblr_na4o38uibi1sw33zno1_400,64774,3 5543,FRAMEQA4908,hall,what did the dog walk down wearing a teddy bear costume?,tumblr_nerwi2g6db1stn2h6o1_500,36811,0 5544,FRAMEQA14008,shirt,what is dancing while singing?,tumblr_nfmmsqxC1C1u3kw7bo1_500,87309,0 5545,FRAMEQA22007,yellow,what is the color of the picture?,tumblr_n9je6f5n8M1sn0pdto1_400,59625,2 5546,FRAMEQA34615,black,what is the color of the board?,tumblr_nfpco7YgzP1tqwtb6o1_500,45263,2 5547,FRAMEQA27740,red,what is the color of the man?,tumblr_ncw9e8WBuP1tkengwo2_500,74250,2 5548,FRAMEQA28891,orange,what is the color of the blanket?,tumblr_nb8nl1PVQh1tom9vyo1_400,61802,2 5549,FRAMEQA49677,dress,what does the woman wear?,tumblr_ndzkzuIWqn1sldl65o1_400,35170,0 5550,FRAMEQA39009,gray,what is the color of the cat?,tumblr_n9c03vG9GB1tyeuq0o1_250,27241,2 5551,FRAMEQA23784,two,how many sumo wrestlers are pushing the man back and forth between their stomachs?,tumblr_ndyfoeWTpX1qa051so1_500,85777,1 5552,FRAMEQA33742,red,what is the color of the antlers?,tumblr_ngkbm8DACb1t0w9oqo1_400,15773,2 5553,FRAMEQA13746,dog,what is wearing the brunette wig?,tumblr_n8y79dwmex1tdjuqvo1_250,16924,0 5554,FRAMEQA26967,cat,what is sitting down then he jumps up and holds on to a door?,tumblr_nkyan4eWHz1tmnntwo1_400,26777,0 5555,FRAMEQA2063,white,what is the color of the bangs?,tumblr_nd6tl5MFnq1u110syo1_500,92964,2 5556,FRAMEQA12432,green,what is the color of the bowl?,tumblr_n8uqen1tDV1sfmhxao1_400,63448,2 5557,FRAMEQA47856,bird,what stands on the back of a hippopotamus in a lake?,tumblr_njo4rh80wh1slj978o1_500,85914,0 5558,FRAMEQA37896,cats,"what are together , one is licking the other ones ear?",tumblr_n90wdbaCbJ1sakfnpo1_250,40595,0 5559,FRAMEQA45139,guitar,what is the man with blonde hair wearing an orange suit is playing while standing in front of a huge american flag?,tumblr_nqzm28JXgg1r7owcpo1_400,26030,0 5560,FRAMEQA11290,gray,what is the color of the shirt?,tumblr_nrbogrx63R1tglvd6o1_250,81445,2 5561,FRAMEQA764,black,what is the color of the man?,tumblr_ne1y69Oedd1rvus2lo1_400,66402,2 5562,FRAMEQA10174,claws,what is an animal throwing into the air?,tumblr_nksrv0Ob4q1u8uroco1_400,25813,0 5563,FRAMEQA46460,earphone,what is the girl removing from her ears?,tumblr_na3gcjTgzt1tjotwjo1_250,47448,0 5564,FRAMEQA32952,two,how many men laying down in suits and wearing sunglasses are making hand gestures?,tumblr_nkp3ocPFJJ1upr5mso1_400,65996,1 5565,FRAMEQA4939,two,how many girls are watching the boy perform on tv?,tumblr_n9kmf8j4gZ1snj1pfo1_500,2948,1 5566,FRAMEQA25080,room,where is the guy with black jacket smoking?,tumblr_ndsj3v5btb1rpjuouo1_500,79446,3 5567,FRAMEQA37169,room,where is two animal playing so cute?,tumblr_naeyc6yQWy1tahfdeo1_250,56593,3 5568,FRAMEQA39803,two,how many men make facial expressions as they look behind?,tumblr_nb1108xDwG1slsl6ro1_500,88064,1 5569,FRAMEQA21930,hallway,what are two doctors walking down?,tumblr_nf1nlpijnR1u2lw0po1_400,77200,0 5570,FRAMEQA34544,black,what is the color of the shirt?,tumblr_nfyamtRXwu1si8uq7o1_400,32648,2 5571,FRAMEQA5060,black,what is the color of the shirt?,tumblr_n904evRElI1r20o7po1_500,87702,2 5572,FRAMEQA41004,blue,what is the color of the shirt?,tumblr_npz10iHpPb1ssqvb0o1_400,39205,2 5573,FRAMEQA42621,black,what is the color of the sofa?,tumblr_ndyvgluqf71tm0es2o1_250,12524,2 5574,FRAMEQA35079,horse,what is running through the dirt?,tumblr_nhlvobrJMp1tln8qzo1_400,65403,0 5575,FRAMEQA36220,cigarette,what is the man wearing a hat lit?,tumblr_nkpk1mOGIM1u2ddo1o1_400,77514,0 5576,FRAMEQA43890,trailer,what stops just before hitting the car that tries to pull out in front of it?,tumblr_nem95mQccd1slw55qo1_400,88258,0 5577,FRAMEQA11998,two,how many people clutch little fingers?,tumblr_nklmclT3p41tculako1_400,93033,1 5578,FRAMEQA10171,two,how many children in school uniforms are smiling and laughing with two young adults?,tumblr_ncf358sL3r1sm54imo1_400,37179,1 5579,FRAMEQA34916,car,where are two men driving and yelling?,tumblr_nfj9394H2n1r8d2fho1_1280,94316,3 5580,FRAMEQA51819,rink,where does man take another man down?,tumblr_n97zsdRSs81taoa7go1_250,13137,3 5581,FRAMEQA38459,bench,what does the man turn into a picnic table?,tumblr_n9imlri1WQ1s3att3o1_400,46098,0 5582,FRAMEQA36406,magazine,what does someone remove from their pocket?,tumblr_nkwi7i4BC51rftdx0o1_400,92471,0 5583,FRAMEQA48364,two,how many women is this image of wrestling?,tumblr_nooy6etADJ1sqh42jo1_400,62499,1 5584,FRAMEQA35229,five,how many people are walking in the line moving their arms?,tumblr_nbp31zmK7o1tlzda7o1_250,52570,1 5585,FRAMEQA36174,white,what is the color of the girl?,tumblr_njxnl2qMrX1sa0lndo1_500,69839,2 5586,FRAMEQA20531,guns,what is the man walking and throwing?,tumblr_ng5sskpeoG1qmfh6ho1_500,67805,0 5587,FRAMEQA30357,black,what is the color of the hair?,tumblr_nffv1dwI4U1tchtq5o1_250,30782,2 5588,FRAMEQA24847,lollipop,what is the young man slowly licking?,tumblr_ngi2acC9XI1u3jef1o1_500,100080,0 5589,FRAMEQA3028,two,how many girls are sitting next to each other and are looking at each other?,tumblr_nkns7cDp5D1swk6pzo6_250,41204,1 5590,FRAMEQA11739,dog,what is the baby crawling and looking straight?,tumblr_nanp56KwNG1ra8x2co1_250,12150,0 5591,FRAMEQA11326,laptop,"what is the man holding , and pointing at it?",tumblr_nd6keloVPQ1tkz87ao1_250,53668,0 5592,FRAMEQA1561,two,how many men are doing the secret hand shake?,tumblr_nhwxneQIVn1rb8uj5o1_400,65786,1 5593,FRAMEQA37984,elevator,what opens up to the shy girl?,tumblr_n99jfgwQKW1ti1xc1o1_250,33662,0 5594,FRAMEQA21435,white,what is the color of the hat?,tumblr_nir4hpcZqn1sw4189o1_500,92070,2 5595,FRAMEQA6823,river,what is running through the city with a bridge crossing it?,tumblr_n9zykaCkxu1sqghk4o1_400,101525,0 5596,FRAMEQA51378,chair,where is the woman with long blonde hair spinning?,tumblr_nkuwugWpwO1tocarto1_250,39758,3 5597,FRAMEQA4925,white,what is the color of the shirt?,tumblr_n9wtigiK4p1tx4tt5o1_400,26140,2 5598,FRAMEQA162,red,what is the color of the truck?,tumblr_nc5wjeO42X1scelspo1_250,52745,2 5599,FRAMEQA2467,black,what is the color of the girl?,tumblr_ncjbptIR5Z1tk4g7no1_500,74377,2 5600,FRAMEQA7195,two,how many men are grabbing each other by the neck?,tumblr_nbjeosjIwS1tug0gzo1_400,84208,1 5601,FRAMEQA6762,brown,what is the color of the hair?,tumblr_nmtj1dCOYI1uocxtso1_400,10322,2 5602,FRAMEQA24574,bag,what is the person holding and waving their arms in the air?,tumblr_n9h0noxlcN1sbsacvo1_400,85475,0 5603,FRAMEQA38638,bedroom,where are the guy and girl dancing?,tumblr_ngmnfpKAs41u3y59to1_250,34592,3 5604,FRAMEQA44186,shirt,what is the woman?,tumblr_ncv2ubyfXj1tcd2tgo1_250,27602,0 5605,FRAMEQA47694,banana,what is the person wearing shaped being dragged across a room?,tumblr_ncl7d2DRMe1qbv408o1_r1_400,35872,0 5606,FRAMEQA49708,bottle,where does the man smile and drinks beer?,tumblr_nr7badeW1R1uaavsyo1_500,73284,3 5607,FRAMEQA26225,cat,what is moving wildly on the couch to remove a tube from its head?,tumblr_ndk9uvBSzG1rnjm0co1_250,69793,0 5608,FRAMEQA2689,car,what is fueling up at the race?,tumblr_nqn1ve1SQM1unyhx2o1_400,77011,0 5609,FRAMEQA45393,red,what is the color of the jacket?,tumblr_n9dc9lz0mG1tasn90o1_250,38260,2 5610,FRAMEQA6298,one,how many man on stage leans over to whisper in someone 's ear?,tumblr_nb84pl57j11qd80wyo1_400,40867,1 5611,FRAMEQA8747,pig,what is nuzzling and cleaning the cat?,tumblr_npabf7wMc81tatohao1_250,36414,0 5612,FRAMEQA29240,brown,what is the color of the hair?,tumblr_n9gch7dwop1tchtlno1_250,90933,2 5613,FRAMEQA13737,white,what is the color of the shirt?,tumblr_nbf2peigGM1rpjuouo1_250,82668,2 5614,FRAMEQA37533,room,where is the man laughing and standing?,tumblr_nd931nZhS61s1ctsqo1_400,64632,3 5615,FRAMEQA19404,earring,"what is the guy using a black hat , is also using?",tumblr_nber13xCxA1t0yxwdo1_400,90654,0 5616,FRAMEQA9788,black,what is the color of the dog?,tumblr_nepw693vsr1tk2ngvo1_400,55996,2 5617,FRAMEQA26534,pool,where are lots of people having fun?,tumblr_nckg4oA1Tr1t5a4c7o1_400,64343,3 5618,FRAMEQA49632,cigarette,what is this image of two men onstage sharing?,tumblr_ndcdp9qa9l1raaknro1_500,56535,0 5619,FRAMEQA38569,guitars,what are two men playing on a stage to a crowd?,tumblr_nr9ol4V9GF1u8skfvo1_500,66907,0 5620,FRAMEQA44004,two,how many men are sitting and hugging together?,tumblr_nk3mstXSp41rp0ayqo1_400,63496,1 5621,FRAMEQA3553,one,how many guy sipped his drink and the other touched his hair?,tumblr_nbivlx2sZy1tiqdeho1_400,68717,1 5622,FRAMEQA11834,case,what are two people going up?,tumblr_njoz5kE1ov1u5n6bno1_250,75192,0 5623,FRAMEQA40798,blue,what is the color of the hair?,tumblr_nclxdhfsKG1s9ar26o1_400,32642,2 5624,FRAMEQA31941,wolf,what is turning head to the perfume with attraction?,tumblr_nk4o2pe1Ah1u2c2quo1_500,84041,0 5625,FRAMEQA1148,brown,what is the color of the hair?,tumblr_nkx8sjWBmj1st1mg9o1_400,7113,2 5626,FRAMEQA37647,star,what is singing in darkness on stage?,tumblr_na6m9ty5TR1qjwz8qo1_250,27638,0 5627,FRAMEQA20585,red,what is the color of the hair?,tumblr_ngsfslT5aX1u2cx64o1_250,151,2 5628,FRAMEQA43062,two,how many men with same shirt is holding each other looking down?,tumblr_nfmnppGF0g1rer2fjo1_250,49663,1 5629,FRAMEQA50713,clothes,what is the woman smoking and wearing?,tumblr_nc37dloqbL1rq5x90o1_500,17468,0 5630,FRAMEQA200,dog,what tries to step through the doggy door?,tumblr_nd5o04joG21se9pwmo1_400,49244,0 5631,FRAMEQA37638,white,what is the color of the shirt?,tumblr_ng09o6NQAh1u542c1o1_400,29069,2 5632,FRAMEQA34118,black,what is the color of the guy?,tumblr_nb3coldvak1sixphro1_250,21213,2 5633,FRAMEQA4448,black,what is the color of the rabbit?,tumblr_ndcvis8jts1tbcrm5o1_250,3820,2 5634,FRAMEQA45142,wall,what are two cats next to a door and the cat scratches?,tumblr_n9xu4w1Lfq1tatohao1_400,40652,0 5635,FRAMEQA4557,black,what is the color of the uniform?,tumblr_nebx0vqnAG1tqybg9o1_400,43459,2 5636,FRAMEQA45885,room,where are two ladies kissing each other passionately?,tumblr_non9dnF1Om1u4uss5o1_400,78286,3 5637,FRAMEQA50018,brown,what is the color of the puppy?,tumblr_n9e2tqLvWh1tdmffyo1_250,25535,2 5638,FRAMEQA44763,two,how many people hold hands and point them in the air?,tumblr_n9orvbaWYO1tiayalo1_400,70422,1 5639,FRAMEQA30181,boat,what is the woman getting off and kissing a bearded man in sunglasses?,tumblr_nfghin7vcs1t3037qo1_400,67106,0 5640,FRAMEQA49939,pig,what is looking up in the air?,tumblr_na07x1hrbL1ti3y6yo1_400,25005,0 5641,FRAMEQA50805,four,how many people makes faces and peace signs?,tumblr_nh7f06Iimr1r1xcixo1_400,28875,1 5642,FRAMEQA34706,two,how many men are having the conversation in a room?,tumblr_n8u1myS5dT1tgh87to1_400,87168,1 5643,FRAMEQA41267,cape,what is turning into the lot of black birds?,tumblr_niwmiuolPN1tud7j4o1_500,98837,0 5644,FRAMEQA38181,two,how many girls is wearing sweaters are walking trough a field?,tumblr_nfvfa6KzJr1sqp9nuo1_400,64151,1 5645,FRAMEQA17534,black,what is the color of the suits?,tumblr_np88x8KELj1srwy2po1_400,96841,2 5646,FRAMEQA26153,white,what is the color of the dress?,tumblr_nama5mGz671rlq8l9o1_400,59676,2 5647,FRAMEQA30114,three,how many cups does the woman arrange on a table?,tumblr_nbv33uJdK11sfhzddo1_500,88760,1 5648,FRAMEQA35647,cigarette,what is the man smoking while looking at someone or something?,tumblr_nh4kp4iSKN1rsfix9o1_500,50621,0 5649,FRAMEQA38717,instrument,what is the man or a woman playing with both hands?,tumblr_n9wbyaTXBZ1t4mpk7o1_400,35386,0 5650,FRAMEQA37911,dog,what is the woman walking a small bobcat on a leash and it attacks?,tumblr_nbv1p9aCuo1tahfdeo1_250,44809,0 5651,FRAMEQA25677,five,how many men are looking to the side?,tumblr_ncqlayumGa1u0r2qfo1_500,88783,1 5652,FRAMEQA9557,brown,what is the color of the hair?,tumblr_nba7mrIRaG1te5fy0o1_500,79432,2 5653,FRAMEQA39892,brown,what is the color of the hair?,tumblr_nf56f9mTiv1u3akejo1_400,82219,2 5654,FRAMEQA7656,jacket,what does the woman throw off of her shoulders?,tumblr_njw5w8Ium11shns3io1_250,81693,0 5655,FRAMEQA42268,three,how many women are dancing on the stage?,tumblr_n9d64e3Zyo1rsxlf3o1_500,92256,1 5656,FRAMEQA32390,brown,what is the color of the hair?,tumblr_mpyllgM20U1qcbva9o1_400,41532,2 5657,FRAMEQA32291,guitar,what is the man laying on the floor and playing?,tumblr_nnvotoD9bf1urraj4o1_500,46257,0 5658,FRAMEQA53079,two,how many people are in the recording studio?,tumblr_nl3zdwLhgA1ttuja3o1_500,85274,1 5659,FRAMEQA10748,car,where are the group of children riding?,tumblr_nbi2omTVCV1tp29hho1_400,41028,3 5660,FRAMEQA23448,drink,what is the boy sipping and smiling to someone?,tumblr_nbhrvfl1oT1s92jogo1_500,94440,0 5661,FRAMEQA5692,two,how many dancers are dancing in the foggy room?,tumblr_nnjn15MCNP1tsnqf4o1_400,61799,1 5662,FRAMEQA43180,net,where is the soccer player scoring a goal?,tumblr_nl375sM5GF1tigieto1_400,101682,3 5663,FRAMEQA21160,guitar,what is the woman singing and playing?,tumblr_nkmd3bmcQP1upo311o1_400,19530,0 5664,FRAMEQA10547,gray,what is the color of the shirt?,tumblr_naxu9dyJiY1txp45vo1_250,6659,2 5665,FRAMEQA17982,bubble,what does two boys a watching something and one pop?,tumblr_ndpne1baVW1rylr5ko1_500,97318,0 5666,FRAMEQA4187,puppies,what are running down the vestibule?,tumblr_n92lo9JEvZ1tfz9ppo1_400,52245,0 5667,FRAMEQA44455,skateboard,what does the skater turn around at full speed?,tumblr_nakkmkV6lL1tfkgsfo1_400,66429,0 5668,FRAMEQA43889,tablet,where is the dog watching the piano?,tumblr_nca2zmXP3d1slj978o1_400,65425,3 5669,FRAMEQA27321,cat,what jumps on the toy?,tumblr_nbxf7950qG1tdjuqvo1_500,76474,0 5670,FRAMEQA44620,two,how many men are standing together with one 's arm around the other?,tumblr_ncribxI9q81qi39coo1_500,99517,1 5671,FRAMEQA41472,car,what drives forwards while smoke comes out of the back?,tumblr_nbrjkcGkJR1tx8mn0o1_400,55503,0 5672,FRAMEQA22386,monkey,what dances and walks through the jungle?,tumblr_nd9es8cEtL1tc95klo1_400,77527,0 5673,FRAMEQA46091,two,how many people is it?,tumblr_n9b2510ZPL1rx90qpo1_250,38426,1 5674,FRAMEQA40469,two,how many people are snowboarding in the snow?,tumblr_nceq8oO2lI1tpae88o1_1280,63673,1 5675,FRAMEQA25284,shirt,what is the woman wearing and singing?,tumblr_ne3w76eSSb1u28yp1o1_500,48570,0 5676,FRAMEQA4032,black,what is the color of the clothing?,tumblr_ndop0fsg361th018eo1_1280,98189,2 5677,FRAMEQA25783,two,how many people is this talking trash to each other?,tumblr_nl0570dobK1uoozmvo1_500,17799,1 5678,FRAMEQA5252,three,how many men are sitting on the couch talking into microphones?,tumblr_ng0nn0IZ1X1rhq4gso1_250,43749,1 5679,FRAMEQA12539,car,what is driving slowly down the road?,tumblr_n94efhu6am1tfer95o1_500,72820,0 5680,FRAMEQA21352,butterfly,what is the little girl chasing?,tumblr_naxpitJ4Nf1ssppoho1_250,51436,0 5681,FRAMEQA37368,black,what is the color of the shirt?,tumblr_nr89g6yGER1uaa0x0o1_500,60617,2 5682,FRAMEQA13032,motorcycle,what is traveling on the road?,tumblr_n8pjlmexAb1qlbtloo1_1280,50229,0 5683,FRAMEQA8449,black,what is the color of the clothes?,tumblr_n8vpy6hFXB1soz0p7o1_400,78953,2 5684,FRAMEQA27890,brown,what is the color of the dog?,tumblr_nijrydrPVc1rtzdq7o1_400,94791,2 5685,FRAMEQA29622,one,how many finger does the man with a tattoo on his arm point to the right of him?,tumblr_n93nehnQiZ1tad983o1_100,1994,1 5686,FRAMEQA10858,beanie,what is the man with a beard wearing?,tumblr_ni11njEHBX1u86jejo1_250,14186,0 5687,FRAMEQA25021,two,how many men are talking?,tumblr_ng6elw4KPi1tb8qpro1_250,19283,1 5688,FRAMEQA24058,phone,what is the woman saying something and holding?,tumblr_nrefpvwRqT1uauvk5o1_250,38407,0 5689,FRAMEQA33421,two,how many men raises their head and stare at someone as they smile?,tumblr_njodpwEZQ41u8js9ho1_500,40905,1 5690,FRAMEQA32657,black,what is the color of the hat?,tumblr_n8xt13cRaK1th5x8zo1_400,39190,2 5691,FRAMEQA5050,two,how many pair of hands are hanging down?,tumblr_nadff8qS1V1tf396vo1_500,83819,1 5692,FRAMEQA30919,black,what is the color of the sweater?,tumblr_nks1ucMHvh1r0slduo1_400,64982,2 5693,FRAMEQA43153,black,what is the color of the man?,tumblr_ng0vxeyviE1rco9sno1_250,17322,2 5694,FRAMEQA27087,penguin,what does the cat knock over?,tumblr_n8x1wfRppX1tdmffyo1_250,45924,0 5695,FRAMEQA18150,white,what is the color of the jumper?,tumblr_nc084cTCqr1rkeisdo1_400,11133,2 5696,FRAMEQA49162,dog,what is playing with someone in the snow?,tumblr_nkwg77Ux711r5ygbco1_250,47488,0 5697,FRAMEQA5478,ball,what does the man dribble and then slam dunks it?,tumblr_nka6muC94q1r5ykfzo1_400,15983,0 5698,FRAMEQA44735,room,where does the woman wear black and dances ballet?,tumblr_ney3dbZCd71tqa07xo1_500,75920,3 5699,FRAMEQA23706,wig,what is the woman wearing and trying to be sexy?,tumblr_njxkmhiBLm1t5w6wco1_400,28857,0 5700,FRAMEQA22761,brown,what is the color of the hair?,tumblr_naozs4fnJF1tk8054o1_500,70769,2 5701,FRAMEQA40099,car,what is the man driving and shaking his head?,tumblr_naw8zsiXqa1qzwouio1_400,63555,0 5702,FRAMEQA32069,hallway,where is the young man dancing and singing?,tumblr_no6t0etE261t0ojyvo1_400,10457,3 5703,FRAMEQA38436,two,how many people fought?,tumblr_nc2q4csgq91txeyrmo1_250,35741,1 5704,FRAMEQA44272,cat,what is rolling itself into a hamster ball?,tumblr_nk6t8rIVdA1tjjnlno1_400,54116,0 5705,FRAMEQA8001,race,what are people recording on the side of the race track?,tumblr_nfz5jf3a3j1sl4e5go1_500,91711,0 5706,FRAMEQA18484,guitar,what is the man with long hair playing?,tumblr_ndrhyfL5yO1s0mjn5o1_400,58868,0 5707,FRAMEQA27837,two,how many people struggle under water and then kiss?,tumblr_nkmf37ggVI1sjh0axo1_250,15412,1 5708,FRAMEQA44518,hat,what is the person wearing and spinning a mic while sitting on a stool?,tumblr_n912uxe68J1sexzuno1_500,50053,0 5709,FRAMEQA1144,black,what is the color of the jacket?,tumblr_nhprfiQ0eR1tjuuleo1_250,1893,2 5710,FRAMEQA39903,black,what is the color of the hair?,tumblr_np1j7fZTjF1rn75pro1_540,77375,2 5711,FRAMEQA46427,cat,what is trying to get something?,tumblr_njxyfpFOvW1tzhkoao1_400,1074,0 5712,FRAMEQA36022,excitedly,"what do two people look out ,?",tumblr_n94vgu7eef1rraz85o1_400,48177,0 5713,FRAMEQA2485,money,what does the person throw at another person?,tumblr_njrmp52ukf1u2qfs8o1_250,16204,0 5714,FRAMEQA50746,car,what is passing by another one?,tumblr_nesksmxUsA1rdfljoo1_500,76053,0 5715,FRAMEQA49392,car,what is running in the street?,tumblr_nfxlgzOQSN1t0x7yto1_500,61137,0 5716,FRAMEQA7934,cats,"what are lying side by side , groomed each other?",tumblr_noaswjesmm1th7g9io1_400,95722,0 5717,FRAMEQA26182,black,what is the color of the suit?,tumblr_nk6u7h2I8Z1saeojro1_400,15571,2 5718,FRAMEQA35654,two,how many people are wrapping their arms around each other?,tumblr_ndwtpuwpHb1u1bpwwo1_500,48152,1 5719,FRAMEQA28662,black,what is the color of the jacket?,tumblr_nim0u4qBet1rblf33o1_500,24376,2 5720,FRAMEQA20919,white,what is the color of the girl?,tumblr_njyi6ks5eL1u7c8z0o1_250,22966,2 5721,FRAMEQA40835,costume,what is the woman wearing made from candy?,tumblr_nemqyctCqK1sbqfh7o1_250,38441,0 5722,FRAMEQA15121,black,what is the color of the people?,tumblr_n8zjjsp2E21tecuevo1_400,42865,2 5723,FRAMEQA14713,black,what is the color of the man?,tumblr_ndg2qo1VQh1r6w3oho1_500,38091,2 5724,FRAMEQA27708,ball,what does the red team kick into the soccer goal?,tumblr_nk5odsJdK11tz9jaqo1_500,101567,0 5725,FRAMEQA20592,cat,what is playing with the phone and taking a picture?,tumblr_n9tiwqdAI71tdmffyo1_400,15936,0 5726,FRAMEQA45135,kitten,what crawls on top of a photographers head?,tumblr_nqt86b7tD31rltsrco1_400,87329,0 5727,FRAMEQA23923,building,what is being built next to the water?,tumblr_nblvftkxsM1t4phwpo1_400,35534,0 5728,FRAMEQA6118,motorcycle,what goes down the race track?,tumblr_nafvslrxEZ1tx8mn0o1_400,76974,0 5729,FRAMEQA12813,room,where are two guys joking?,tumblr_ni34syMevA1u30ycao1_500,95849,3 5730,FRAMEQA28054,black,what is the color of the hair?,tumblr_nbuxofDUaP1trlo5to1_400,48690,2 5731,FRAMEQA48826,cat,what is playing the keyboard on a tablet?,tumblr_nca2zmXP3d1slj978o1_400,65425,0 5732,FRAMEQA345,two,how many boys with dark hair are standing in a nightclub?,tumblr_nbc7u35pYt1sdbrm9o1_400,65496,1 5733,FRAMEQA32872,skateboard,"what is the guy riding ,?",tumblr_muvgi0Qb2c1rlik61o1_400,65002,0 5734,FRAMEQA20342,snack,what is the cat grabbing?,tumblr_nht8l6Brfh1slj978o1_400,27972,0 5735,FRAMEQA21763,two,how many girls is wearing surf tables are running through a beach?,tumblr_nf1dprmAw71tw8vf9o1_1280,86626,1 5736,FRAMEQA39528,red,what is the color of the dress?,tumblr_n9tuqn05ec1rd0civo1_400,59139,2 5737,FRAMEQA31130,kitten,what meows as other kittens walk around it?,tumblr_n9c03vG9GB1tyeuq0o1_250,27241,0 5738,FRAMEQA13821,carriage,what is the woman in a white dress riding?,tumblr_nd2h3kKDkD1tw2zo1o2_r3_400,44297,0 5739,FRAMEQA29034,purple,what is the color of the coat?,tumblr_ngsfslT5aX1u2cx64o1_250,151,2 5740,FRAMEQA6293,cat,what is walking on its hind legs and a man goes into a robot suit?,tumblr_nju9ibDTtt1u3g519o1_400,54134,0 5741,FRAMEQA26576,three,how many military are training on how to climb the wall?,tumblr_ndrs7v2neT1ttuja3o1_250,5601,1 5742,FRAMEQA9911,white,what is the color of the cake?,tumblr_nkji35ZEpf1u3w3ryo1_250,36401,2 5743,FRAMEQA30572,room,"where does the woman , with long hair , open her mouth?",tumblr_na85llG7VQ1rht9qto1_400,33742,3 5744,FRAMEQA29602,blue,what is the color of the car?,tumblr_nf0n8ksRhS1u25ovvo1_400,63631,2 5745,FRAMEQA18185,microphones,what are men wearing black are dancing and holding?,tumblr_najytbPljs1s0j7iyo1_500,94673,0 5746,FRAMEQA8377,two,how many people are in the room?,tumblr_ncizcaTsv91ry3jfko1_500,75527,1 5747,FRAMEQA52803,white,what is the color of the file?,tumblr_ne7hbbIStG1tqthh5o1_400,56436,2 5748,FRAMEQA50337,three,how many men are sitting on the couch and smoking?,tumblr_nq7k6pBzzN1qm466ao1_500,24484,1 5749,FRAMEQA33198,red,what is the color of the shirt?,tumblr_nqqp4woKq61t0t2pco1_250,50323,2 5750,FRAMEQA24675,two,how many people are skateboarding and flip over each other?,tumblr_nqxxwoxpjy1rv5gmso1_400,77195,1 5751,FRAMEQA26976,two,how many boys are sitting next to each other and laughing?,tumblr_nfbab1nX5s1u2eoido1_500,95714,1 5752,FRAMEQA6548,three,how many girl with black shirt are dancing?,tumblr_nq513q76F81u3cb3fo1_400,46038,1 5753,FRAMEQA32618,two,how many men are wrestling?,tumblr_nkopqiVNB01un86uao1_250,86699,1 5754,FRAMEQA33437,cat,what is running across the floor and into a box?,tumblr_nb1g3oDF0D1qcgyjoo1_400,46484,0 5755,FRAMEQA14110,bathtub,where is the cat chasing a fish?,tumblr_nq62qusQ2Z1tk2ngvo1_500,69624,3 5756,FRAMEQA18190,two,how many wrestlers are knocking each other down in the ring?,tumblr_ndrv41jHnK1rlowhpo1_400,63063,1 5757,FRAMEQA32376,ball,what does the soccer player dribbles then pass?,tumblr_nhccwxLB7g1tigieto1_400,76338,0 5758,FRAMEQA33693,dog,what is turning into the man who looks upset?,tumblr_nina5vfIdD1u95biro2_400,60896,0 5759,FRAMEQA43880,two,how many men is talking about something one is using hand gestures?,tumblr_ncz9wdNmgj1tgftffo1_400,40373,1 5760,FRAMEQA30235,red,what is the color of the hair?,tumblr_nb4yysgw0F1ti4mkxo1_500,59799,2 5761,FRAMEQA25850,dog,what is receiving the belly rub?,tumblr_nfxhsp8ug21s6zpepo1_400,68620,0 5762,FRAMEQA23171,room,where is the man wearing a jacket is standing?,tumblr_nl2cbemHoE1uot1e7o1_400,64631,3 5763,FRAMEQA46217,car,where are two men talking?,tumblr_n9y8wqI6Xn1qlzevso1_500,98801,3 5764,FRAMEQA15976,white,what is the color of the cap?,tumblr_n99skaFerS1s1ye39o1_250,23535,2 5765,FRAMEQA24525,white,what is the color of the shirt?,tumblr_nhk803HfRY1u1826wo1_250,1883,2 5766,FRAMEQA5123,white,what is the color of the teeth?,tumblr_n9lvtnE3tA1s92i7mo1_400,21864,2 5767,FRAMEQA18121,parakeet,what is taking the bath under a stream of water?,tumblr_nblj3dVAIl1sm013wo1_400,65862,0 5768,FRAMEQA44733,white,what is the color of the shirt?,tumblr_ng0agzCLGr1tz9jaqo1_500,101645,2 5769,FRAMEQA48875,three,how many men are sitting together?,tumblr_ne2s6tD89Q1tdqz0co1_500,67602,1 5770,FRAMEQA4081,gray,what is the color of the shirt?,tumblr_nc8uv49Wi11tp09vco1_250,77746,2 5771,FRAMEQA26692,white,what is the color of the person?,tumblr_ncl5x8DW461rj8475o1_400,93891,2 5772,FRAMEQA31917,store,where is the woman fixing a mannequin?,tumblr_n97yrfHtCi1t5lsj5o1_500,54283,3 5773,FRAMEQA6062,cap,what is the girl taking at a guy in a room?,tumblr_ngpmp6xUWQ1qbvf9jo1_500,95373,0 5774,FRAMEQA15031,hat,what is the bear wearing and a woman with blonde hair is talking?,tumblr_nhys5kaxEu1u7u0ceo1_500,95988,0 5775,FRAMEQA31655,black,what is the color of the car?,tumblr_ngf9rveb2q1sh98coo1_400,94749,2 5776,FRAMEQA3852,two,how many guys is this practicing a song while wearing headphones?,tumblr_nes4nhypOg1td8ijso1_400,54509,1 5777,FRAMEQA23763,two,how many young boys are dancing funny and smiling?,tumblr_nqhv0vJeU91uswv18o1_400,63451,1 5778,FRAMEQA25075,dog,what is dancing happily and fast?,tumblr_na3xfcUdnK1tiamx1o1_400,19533,0 5779,FRAMEQA25846,masks,what are the man and a woman wearing?,tumblr_nc8yn0AUFo1qk5xgqo1_400,60822,0 5780,FRAMEQA46645,cigarette,what was the woman with dark hair smoking?,tumblr_nh5wlgslxv1tl5ztao1_400,31986,0 5781,FRAMEQA11795,two,how many men is wearing paint on their face are talking?,tumblr_nd9b86RibY1t30yt2o1_400,82248,1 5782,FRAMEQA33614,two,how many people are spending time together as a couple?,tumblr_ndobesqq141sveek6o1_250,47422,1 5783,FRAMEQA13208,brown,what is the color of the hair?,tumblr_nnzkzxzWdA1qhojs7o1_250,19244,2 5784,FRAMEQA14350,call,what is the person taking and watching someone?,tumblr_ngf57i9qu81ra6i3zo1_500,101049,0 5785,FRAMEQA1870,orange,what is the color of the cat?,tumblr_ndia525bro1rc7zl1o1_400,77620,2 5786,FRAMEQA46631,black,what is the color of the woman?,tumblr_nbn2o2iNh81qzbagvo1_500,89373,2 5787,FRAMEQA1915,red,what is the color of the dress?,tumblr_nam2zbsmve1tvg9jzo1_500,68174,2 5788,FRAMEQA8124,goat,what is the man bringing to the table?,tumblr_nagzc9ga3p1qjn6two1_250,41405,0 5789,FRAMEQA18354,two,how many man are singing and making hand gestures?,tumblr_nbyol8TrRL1tdh0pko1_250,40211,1 5790,FRAMEQA51551,pigeon,what is rolling down on the paper stand?,tumblr_noag3k38241tzmcano1_250,27870,0 5791,FRAMEQA6141,car,where are two delinquents riding?,tumblr_nkr55pkjAU1uot1e7o1_400,64614,3 5792,FRAMEQA13280,two,how many women are fighting outside the wrestling ring?,tumblr_nooy6etADJ1sqh42jo1_400,62499,1 5793,FRAMEQA35925,chair,where is the man shaking?,tumblr_nq9z4yt75S1srjus2o1_400,79907,3 5794,FRAMEQA29489,blue,what is the color of the eyes?,tumblr_nktdtfEy261t0s6h6o1_400,87072,2 5795,FRAMEQA18263,two,how many people are walking to get into the vehicle?,tumblr_nd19bgsTCX1sxkh0mo1_500,48313,1 5796,FRAMEQA43556,blue,what is the color of the car?,tumblr_nbo3fs3Gfn1qdfgy3o1_500,60504,2 5797,FRAMEQA15638,clothes,what is the woman with blonde hair taking off?,tumblr_nbz0yeXa3A1qflnb4o1_250,27613,0 5798,FRAMEQA28945,tire,where is the man rolling down a hill?,tumblr_nfdf1xfsD11t06o0xo1_400,68862,3 5799,FRAMEQA46287,one,how many man who moves his head and opens his mouth?,tumblr_n8tl2qYrHn1tpmsu8o1_250,12648,1 5800,FRAMEQA32714,car,where are two men playing air drums?,tumblr_nqtbhyWjrF1twsxdzo1_400,78772,3 5801,FRAMEQA42743,clothes,what are falling on the couple walking down a snowy street?,tumblr_nirh7qn89K1u9pk5io1_250,35792,0 5802,FRAMEQA27610,windshield,what is the man on a moving car smashing and grabbing the steering wheel?,tumblr_nkjv9qFUwH1tltf5to1_540,88559,0 5803,FRAMEQA49213,pony,what is someone riding around a field?,tumblr_n9wubdPzBI1ttu94ro1_400,40358,0 5804,FRAMEQA32682,room,where is the boy pointing something out?,tumblr_nkjiqrtAxD1tltvuqo1_250,6468,3 5805,FRAMEQA8710,car,what swerves while going around the corner before straightening out again?,tumblr_nk1adbX9Zu1r3mccco1_500,48587,0 5806,FRAMEQA23112,black,what is the color of the shirt?,tumblr_nh34ovjtXS1sofp8to1_500,62395,2 5807,FRAMEQA43241,one,how many guy talked?,tumblr_nbyu3z5ACj1t2al9go1_400,83806,1 5808,FRAMEQA36001,room,where is the white cat playing very funny?,tumblr_nqjklxflS41uz06r7o1_250,5456,3 5809,FRAMEQA20,room,where is bob sponge watching a television show?,tumblr_n92olkleN71tf2rjmo1_500,46198,3 5810,FRAMEQA44764,room,where is the boy wearing white shirt is coming?,tumblr_naimwuna081tiwd2mo1_250,14610,3 5811,FRAMEQA21511,nose,what is zoomed in while it pokes out its tongue?,tumblr_naz9qi8pjG1sc609to1_250,35551,0 5812,FRAMEQA6904,dog,what is running along the beach before tripping and landing on its stomach?,tumblr_ngsuhqvHMY1rzwvkdo1_400,59438,0 5813,FRAMEQA37769,three,how many men on stand sing into their microphones and make wild hand motions?,tumblr_njv1tfOh4x1unfaf3o1_400,76272,1 5814,FRAMEQA23201,dog,what is eating the leaf while someone is threading flowers?,tumblr_ndvmat0M581rlil49o1_500,52041,0 5815,FRAMEQA7363,black,what is the color of the shirt?,tumblr_nr2cdxmG9W1turx3wo1_250,14303,2 5816,FRAMEQA50761,two,how many girls is wearing animal costumes are sitting on a couch?,tumblr_nqbwismBUN1txc44no1_400,64155,1 5817,FRAMEQA10994,white,what is the color of the heels?,tumblr_ncz222VcuZ1ttuz3po1_400,1324,2 5818,FRAMEQA31294,room,where are the rock band kiss dancing?,tumblr_nk22u5Kq8E1raiukoo1_400,76563,3 5819,FRAMEQA52594,black,what is the color of the shirt?,tumblr_naklwl1u1y1tjjgbwo1_500,26638,2 5820,FRAMEQA7584,cars,what are driving on a road while the sun is setting?,tumblr_ngi2t0tDEr1rx9shjo1_400,56919,0 5821,FRAMEQA11066,two,how many women run at each other with exercise balls and fall over?,tumblr_nemookTxfy1u359i4o1_400,38122,1 5822,FRAMEQA12686,seven,how many people are standing in the line and bow together?,tumblr_nqcige9a1w1tion9oo1_500,60826,1 5823,FRAMEQA51375,blue,what is the color of the shorts?,tumblr_nevufdegMK1ttbw80o1_400,4398,2 5824,FRAMEQA12759,car,what is speeding on the race track?,tumblr_nbo3fs3Gfn1qdfgy3o1_500,60504,0 5825,FRAMEQA41336,stairs,what is the man in a black baseball cap going up?,tumblr_nfmdmzflNl1qdpugqo1_400,82072,0 5826,FRAMEQA25760,white,what is the color of the shirt?,tumblr_nax247zhwY1sdbrm9o1_400,65700,2 5827,FRAMEQA49854,instrument,what is the man holding and biting his lip?,tumblr_nes4ajxdH01u2rqewo1_400,27373,0 5828,FRAMEQA16987,classroom,where does the man take his shirt off?,tumblr_nfpnf4qkMy1qb2rmxo1_500,48957,3 5829,FRAMEQA34285,two,how many woman struggle to walk in heels?,tumblr_njzu0gm7Tt1u9be15o1_500,41484,1 5830,FRAMEQA28368,orange,what is the color of the blazer?,tumblr_nfao6d193m1siv5bao1_500,49396,2 5831,FRAMEQA35296,two,how many men with black shirt are looking?,tumblr_nk1mtw4zVW1qhccx4o1_500,98906,1 5832,FRAMEQA45800,cat,what is putting some paper through a machine?,tumblr_na260dZVY11txmq72o1_250,26579,0 5833,FRAMEQA32550,jacket,what is looking at something?,tumblr_n925rigiW81qhfla8o1_500,72650,0 5834,FRAMEQA17135,drink,what does the man poor and it overflows?,tumblr_njoi3huNbE1tzhdnfo1_500,86821,0 5835,FRAMEQA23654,black,what is the color of the kitten?,tumblr_ne5w7sROwX1tjdvfuo1_400,80200,2 5836,FRAMEQA45244,white,what is the color of the wig?,tumblr_njvm8qtT591qzwt0go1_400,7667,2 5837,FRAMEQA23806,guitar,what is the man in suit playing?,tumblr_n9ca9mmyaU1rplluro1_400,44721,0 5838,FRAMEQA10025,car,what is the young blonde girl hitting with a golf club?,tumblr_neyfonjRiM1rt9t46o1_250,16748,0 5839,FRAMEQA27078,black,what is the color of the dress?,tumblr_n8xrsdx6WY1tg0kf3o1_250,27224,2 5840,FRAMEQA23160,cake,what is the woman eating very messily?,tumblr_nfojm1yS181u4xddzo1_500,92016,0 5841,FRAMEQA53067,room,where are several people slowly walking around?,tumblr_ndvmao2sgM1scghp4o1_500,88700,3 5842,FRAMEQA25273,black,what is the color of the suit?,tumblr_nglj2fIAPt1tupygmo2_250,8258,2 5843,FRAMEQA14863,five,how many young girls are dancing with brooms?,tumblr_ni3bhgVXHU1u86ghoo1_500,98685,1 5844,FRAMEQA44723,cat,what pushes the wagon across the hardwood floor?,tumblr_nbiz26o6VX1tdjuqvo1_400,72091,0 5845,FRAMEQA47663,luggage,what does the woman drop while running to a man who gets up from the hood of a car?,tumblr_ngyv10hj891u4tbtuo1_400,23843,0 5846,FRAMEQA19712,two,how many people is the female contestant with blonde hair and wearing a blue top high fives either side of her?,tumblr_nq5ljp5DaL1uygmxjo1_400,21139,1 5847,FRAMEQA49275,jacket,what is the man wearing looking into the mirror?,tumblr_nefradf58s1tu3ue8o1_500,4218,0 5848,FRAMEQA5751,tail,what is the dog chasing in a circle?,tumblr_na29ckRUG81tso4bpo1_250,11168,0 5849,FRAMEQA32064,black,what is the color of the pants?,tumblr_nbrh6eMkuA1tkdyoao1_400,82205,2 5850,FRAMEQA31551,stadium,where are three people standing and waving?,tumblr_n9lh8xQHCe1seb31ro1_500,91548,3 5851,FRAMEQA7778,drums,what is the person in the dark playing?,tumblr_nqu1u9hThh1uso7sno1_400,69271,0 5852,FRAMEQA49680,red,what is the color of the shirt?,tumblr_nist56EAVk1r412ako1_250,2686,2 5853,FRAMEQA5036,blue,what is the color of the shirt?,tumblr_nfp07udA6a1sa63q9o1_250,15904,2 5854,FRAMEQA22498,car,what is driving on the road?,tumblr_nfxlgzOQSN1t0x7yto1_500,61137,0 5855,FRAMEQA51034,capsule,where are two cats and several men floating?,tumblr_nebx0vqnAG1tqybg9o1_400,43459,3 5856,FRAMEQA29649,woman,what rushes over to hug the man wearing all leather?,tumblr_nbpuobhJ591ry0b5go1_400,9466,0 5857,FRAMEQA27255,tank,what is smoking moving around in a circle?,tumblr_nfbymug4lI1tjxr89o1_400,69634,0 5858,FRAMEQA15360,cat,what does someone place a green object in front of a tabby cat and looks up?,tumblr_nrf04cgRUC1ub19xmo1_400,52346,0 5859,FRAMEQA18519,black,what is the color of the moves?,tumblr_nh40fkieup1sdbrm9o1_400,36772,2 5860,FRAMEQA8518,room,where are two boys talking to each other and standing?,tumblr_n9y6tmnuQd1r5japgo1_400,66394,3 5861,FRAMEQA723,bicycles,what are some people riding?,tumblr_n949p2g4GF1tabm5fo1_500,67205,0 5862,FRAMEQA5812,room,where is the guy dancing while recording?,tumblr_navb86zWjN1tvf3juo1_250,15564,3 5863,FRAMEQA7035,cigarette,what is the girl lighting and smoking it?,tumblr_nqx8d5lIq11rl5rsqo1_400,31942,0 5864,FRAMEQA37847,two,how many men are kissing and hugging each other?,tumblr_nl24xtN6ei1u39i7yo1_250,5535,1 5865,FRAMEQA42806,red,what is the color of the jerseys?,tumblr_nfny96oDYU1sefjuxo2_500,53018,2 5866,FRAMEQA26847,black,what is the color of the hat?,tumblr_nber13xCxA1t0yxwdo1_400,90654,2 5867,FRAMEQA47932,car,what speeds into curve and slows down as it goes around it?,tumblr_nfhs2lXSXl1rp12fxo1_1280,96025,0 5868,FRAMEQA27102,blue,what is the color of the suites?,tumblr_nmcuqi7OVl1tfhys7o1_r1_540,96176,2 5869,FRAMEQA22672,gray,what is the color of the cat?,tumblr_njw2gle3ek1u8uroco1_400,68448,2 5870,FRAMEQA17408,purple,what is the color of the shirts?,tumblr_nhb2we9rFe1u6l71oo1_250,36637,2 5871,FRAMEQA43418,headsets,what are two women happily wearing and playing a console game?,tumblr_nc9xh5NZ6d1stafvxo1_400,87951,0 5872,FRAMEQA2060,two,how many guys in black are makeup each other?,tumblr_ndlwghHVNJ1s230fzo1_400,59672,1 5873,FRAMEQA2140,two,how many blond women are arguing outside on the stage?,tumblr_ngduwu0Imi1u4bf8bo1_250,43884,1 5874,FRAMEQA9563,car,what is taking off at the race?,tumblr_ndasm67IHk1tr5tuwo1_500,49883,0 5875,FRAMEQA22950,three,how many men are sitting near each other?,tumblr_nh9n7aITh11rc58pfo1_250,35470,1 5876,FRAMEQA20923,bedroom,where is the young woman dancing?,tumblr_na9dyj81wq1tinuvfo1_400,7364,3 5877,FRAMEQA49924,two,how many men is this image of smiling and laughing at each other?,tumblr_n8zf8nP9hp1r8mefxo1_500,90480,1 5878,FRAMEQA29390,brown,what is the color of the looks?,tumblr_nbdu4fOWp81sbd2hxo1_500,68078,2 5879,FRAMEQA48716,cars,what are racing down the race track?,tumblr_nh0s0kFIfP1tx8mn0o1_400,55469,0 5880,FRAMEQA27501,two,how many guys do the trust fall on a stage?,tumblr_n9c9tsjxU11t6ksnpo1_500,97624,1 5881,FRAMEQA15809,dog,what trips and falls into the swimming pool?,tumblr_nge2siSPYW1sppy9co1_250,52861,0 5882,FRAMEQA43518,car,what is the young male driving at night?,tumblr_nr7stdcCki1ua80mjo1_500,4438,0 5883,FRAMEQA41133,brown,what is the color of the hair?,tumblr_nqvg22g44W1ua373oo1_250,13821,2 5884,FRAMEQA22033,brown,what is the color of the hair?,tumblr_nisdslB9ek1ttp9cro1_250,19277,2 5885,FRAMEQA30466,two,how many guys with cones on their head rub them together?,tumblr_njox7s52pH1sico5po1_250,49619,1 5886,FRAMEQA43177,one,how many person grabs the other ones face?,tumblr_na2vq684DG1rl6i8ko1_400,28892,1 5887,FRAMEQA22531,costume,what is the lady giving a speech on the microphone and wearing?,tumblr_nhenpyWz8l1qdbxg1o1_250,10863,0 5888,FRAMEQA44491,green,what is the color of the flag?,tumblr_noks4v4Q2a1ut6u2zo1_400,41035,2 5889,FRAMEQA29763,shirt,what is the boy taking off?,tumblr_ney69ux4541u2hqlpo1_250,12295,0 5890,FRAMEQA52294,card,what is the person removing from the top of a deck of cards?,tumblr_nc8m05WdLB1tljy7co1_500,101528,0 5891,FRAMEQA5033,red,what is the color of the top?,tumblr_n9dyv7vIVV1r93qrbo1_250,3951,2 5892,FRAMEQA22079,cigarette,what is the man lighting with a lighter?,tumblr_ne8owlPzt81tj27eyo1_250,3231,0 5893,FRAMEQA22831,black,what is the color of the dress?,tumblr_npu4dnNtOk1urnbuuo1_250,47354,2 5894,FRAMEQA7446,two,how many teams is this playing soccer on a field?,tumblr_nfkyk0wbLw1rnp3hyo1_400,87465,1 5895,FRAMEQA7735,snowball,what did man throw with his left hand while in a graveyard?,tumblr_m4387mGrlc1r6m5e8o1_250,35989,0 5896,FRAMEQA20441,two,how many girls are laughing and smiling while they hug?,tumblr_nhuoqrL7bS1qf8758o1_500,13343,1 5897,FRAMEQA28453,house,where are two women dancing?,tumblr_nq7l0nMeLY1sp0r62o1_250,80776,3 5898,FRAMEQA39590,car,what is reversing on the street next to a park?,tumblr_nnokjvV7Wq1uuvmpjo1_250,50472,0 5899,FRAMEQA40123,three,how many woman are making funny faces and laughing?,tumblr_n9affceDKc1s4niibo1_400,31390,1 5900,FRAMEQA32753,egg,what is someone vacuuming with a chicken on top of vacuum and it laid?,tumblr_nak34sUK131slj978o1_400,50795,0 5901,FRAMEQA43803,three,how many people are driving the cars in a high velocity race?,tumblr_n9q9ktUtOe1sncaa3o1_400,54013,1 5902,FRAMEQA11054,car,where are four girls riding?,tumblr_n8x7dbUQBA1t5z27go1_400,58848,3 5903,FRAMEQA38168,three,"how many men stand , look at one another , and fall to the ground laughing?",tumblr_n9sp35Fn9g1r9vmd9o1_400,41670,1 5904,FRAMEQA28210,piano,what does the musician passionately play while moving his body in rhythm?,tumblr_nam1sweE7I1twkbdko1_500,60875,0 5905,FRAMEQA21326,wing,what is flying over the clouds?,tumblr_npwwzp6mxJ1qltbjko1_400,77259,0 5906,FRAMEQA219,shark,what does the man grab by the tail at the beach?,tumblr_nrjp8rMCHM1un86uao1_250,26568,0 5907,FRAMEQA51814,white,what is the color of the clothes?,tumblr_ndxno3rMQC1svbli1o1_250,49641,2 5908,FRAMEQA8665,two,how many girls does this show lying side by side with one caressing the other?,tumblr_nc6r8fPjrh1tkhxdko1_500,48513,1 5909,FRAMEQA34604,chair,where is someone sliding?,tumblr_n9odk1infz1twkhcoo1_400,82092,3 5910,FRAMEQA21072,bowl,what disappears under the ground?,tumblr_nhskwbxgar1rseg36o1_250,3286,0 5911,FRAMEQA8611,black,what is the color of the man?,tumblr_ngp2i5ff7j1sp70bgo1_500,71669,2 5912,FRAMEQA49903,two,how many people are wearing costumes and dancing?,tumblr_nhzszrgVPB1shch57o1_250,41369,1 5913,FRAMEQA39756,black,what is the color of the shirt?,tumblr_ncktzjK6x31susf16o1_250,81391,2 5914,FRAMEQA40888,red,what is the color of the car?,tumblr_njpreqZ6fr1unq0gjo1_250,46570,2 5915,FRAMEQA9270,black,what is the color of the woman?,tumblr_ndbdow0oY81tb2kgho1_400,96428,2 5916,FRAMEQA23601,red,what is the color of the dress?,tumblr_na0kusbUiR1thdynpo1_400,12305,2 5917,FRAMEQA15270,violin,what does he 's playing in the night time?,tumblr_nqaoqwjrk81uy7pfuo1_500,70841,0 5918,FRAMEQA49000,door,what are the young long hair women with bread in mouth opening hurriedly?,tumblr_njp9i28V8y1tuiwglo1_500,54702,0 5919,FRAMEQA21176,black,what is the color of the clothes?,tumblr_np4ck6wChP1up32d0o1_500,96615,2 5920,FRAMEQA20909,lipstick,what is the girl trying and wearing?,tumblr_nqsa9zsdy41upov4lo1_400,64266,0 5921,FRAMEQA52239,orange,what is the color of the blanket?,tumblr_n96ot3UKsh1r4a9o5o1_250,18262,2 5922,FRAMEQA19288,room,where is the man in a suit walking and chewing gum with red lights?,tumblr_nl25w2m2ln1qilpy6o1_400,40149,3 5923,FRAMEQA45928,three,how many men are sitting around and talking to each other with microphones?,tumblr_ngy1993nCa1spaf7ho1_r1_250,75763,1 5924,FRAMEQA28242,one,"how many person is talking to another one , who is looking upset?",tumblr_npzyxwAdQ91s1nv88o1_540,96763,1 5925,FRAMEQA31998,two,how many men are hugging each other on stage?,tumblr_nbwu6g8ViV1s5112po1_500,74204,1 5926,FRAMEQA42857,two,how many beautiful cars yellow and blue are running on a race in slow motion?,tumblr_nd91nlEKaI1tx8mn0o1_400,55564,1 5927,FRAMEQA47911,balls,what is the dog chasing on a pool table?,tumblr_nivi02t5ys1tk2ibto1_250,23127,0 5928,FRAMEQA26184,squirrel,what jumps off the top of a doorway all the way to the floor?,tumblr_n8lnhsDTPU1tgkdkbo1_250,35848,0 5929,FRAMEQA17984,guitars,what are the group of people playing and shaking their hips?,tumblr_nfnfu7EwM91r3diajo1_500,43197,0 5930,FRAMEQA33640,cage,what does the rabbit escape by squeezing through the bars?,tumblr_np1qhvy9Kv1sg8vg6o1_500,66732,0 5931,FRAMEQA10116,black,what is the color of the hair?,tumblr_nh07lr7LIE1tqm4yoo1_500,77165,2 5932,FRAMEQA45781,two,how many men are sitting together on the couch and making faces?,tumblr_nd7flcAAEj1thr6umo1_400,47926,1 5933,FRAMEQA21734,motorcycles,what are speeding on the freeway?,tumblr_nc0160uqpI1sbrhq7o1_400,70301,0 5934,FRAMEQA3984,two,how many guys are laughing while are sitting in the room?,tumblr_njzchnvwXU1slw38eo1_250,14509,1 5935,FRAMEQA46625,octopus,what comes up from the ground to catch a fish?,tumblr_na3k3l3Yn01sk96t7o1_500,38964,0 5936,FRAMEQA32552,white,what is the color of the shirt?,tumblr_nqtnk3wmuA1uwpzgto1_500,76381,2 5937,FRAMEQA36115,red,what is the color of the trousers?,tumblr_n9ag3iabTq1ti0984o1_250,9601,2 5938,FRAMEQA18047,two,how many guys is this image of in sweaters talking to each other?,tumblr_ng4jraMcwT1u3gi2vo1_500,89732,1 5939,FRAMEQA8266,skateboard,where does the man perform a flip?,tumblr_n9y3b433Y61terdm3o1_400,35142,3 5940,FRAMEQA20775,alley,where are two men drinking alcohol?,tumblr_ndkfsb1dgm1tbnwqmo1_400,61016,3 5941,FRAMEQA3064,box,what opens to reveal the dancing couple?,tumblr_ndau5kAPfn1rvbl65o1_400,46065,0 5942,FRAMEQA49170,two,how many people are hugging and kissing passionately?,tumblr_noslb4zYYu1rkr23zo1_250,28815,1 5943,FRAMEQA19128,cat,what looking at something and falls down a hole?,tumblr_nr39rv7eQq1sht3fmo1_250,12915,0 5944,FRAMEQA29486,ball,what does the soccer player pass to a teammate?,tumblr_n8q1o6rJ5y1svnovjo1_400,89556,0 5945,FRAMEQA39793,sunroof,what does the car 's trunk open and comes out?,tumblr_n9zu57mMW51t36lbdo1_400,53950,0 5946,FRAMEQA9813,butterfly,what flies on the yellow flower?,tumblr_nkwxxlRnvb1sfdqnro1_400,38744,0 5947,FRAMEQA13207,boat,what is coming in the canal?,tumblr_n8ppyziWjS1rnh6v7o1_400,15213,0 5948,FRAMEQA19296,hat,what does the woman pull down over her eyes?,tumblr_nbtm7qpM2J1ttyq3ao1_250,14564,0 5949,FRAMEQA4898,shop,where do the men give each other a hug?,tumblr_nhekqkkOoT1rt3qmdo1_250,24464,3 5950,FRAMEQA3867,white,what is the color of the hat?,tumblr_nhbnrz30Tr1u1vw4mo1_500,81775,2 5951,FRAMEQA51321,black,what is the color of the hair?,tumblr_nfpco7YgzP1tqwtb6o1_500,45263,2 5952,FRAMEQA32931,black,what is the color of the shirt?,tumblr_nk7in2oINS1qgcalbo1_250,22556,2 5953,FRAMEQA3390,black,what is the color of the singer?,tumblr_nd5mx9LRgu1sh0d88o1_250,6342,2 5954,FRAMEQA15663,two,how many dark clothed men are shaking hands?,tumblr_njvv3fRF7y1s1rzito1_400,2327,1 5955,FRAMEQA52755,rabbit,what is scared and he is running on the floor?,tumblr_njw4erpndi1te0omro1_400,88275,0 5956,FRAMEQA2328,blue,what is the color of the t?,tumblr_nkv5iz7KVL1unu56do1_400,35675,2 5957,FRAMEQA37300,white,what is the color of the shirt?,tumblr_n9npusDaUk1t1j1f4o1_250,2981,2 5958,FRAMEQA11747,black,what is the color of the sweatshirt?,tumblr_np83rihrid1sad7cpo1_250,19203,2 5959,FRAMEQA14486,knife,what are the faces of two men superimposed and one man lifts to his neck?,tumblr_ne4cexoiPR1ste7mro1_r1_500,67029,0 5960,FRAMEQA16603,cat,what stretches and slowly sinks into the pillow?,tumblr_nfd3x2AVM91u2rlp7o1_250,9346,0 5961,FRAMEQA1517,two,how many fingers is the young girl making a face and holding up?,tumblr_nkh0ermIow1tmd6tdo1_400,4372,1 5962,FRAMEQA18216,banana,what is the guy in a black shirt holding?,tumblr_nbnd6rNKRS1trhseeo1_400,61293,0 5963,FRAMEQA8495,black,what is the color of the dress?,tumblr_nkhogkmy7K1untprdo1_500,68995,2 5964,FRAMEQA10007,motorcycle,what is the man performing a trick falls and crashes?,tumblr_nr05r1Bpfp1t0064ko1_400,76046,0 5965,FRAMEQA21633,two,how many women stood next to trees looking scared?,tumblr_n9vksaep7X1thc5tio1_250,47062,1 5966,FRAMEQA11855,red,what is the color of the cross?,tumblr_nh0ddtHrBj1tg85j7o1_400,36841,2 5967,FRAMEQA9148,two,how many men are running together in the gym?,tumblr_np7428zJXS1sjggsso1_400,79249,1 5968,FRAMEQA1448,bear,what falls out of the tree and breaks a limb off of it?,tumblr_ncap7ix7eJ1thbgs3o1_250,10789,0 5969,FRAMEQA18793,microphone,"what is the lady addressing while smiling , shining and wearing a yellow outfit?",tumblr_nobe26hwiZ1s5jrcko1_400,77076,0 5970,FRAMEQA36701,turtle,what is the bird pushing off a ledge and into a bucket?,tumblr_nb80spNot51tdmffyo1_400,22894,0 5971,FRAMEQA4655,cigarette,what is the man wearing headphones is smoking?,tumblr_nepnu3YNTG1u2qkvco1_250,72472,0 5972,FRAMEQA10808,three,how many women in red skirts with black hair are dancing?,tumblr_nq513q76F81u3cb3fo1_400,46038,1 5973,FRAMEQA7209,cake,what did the girl with the dark hair cut with a big knife?,tumblr_nep9xj16Yh1smur93o1_400,31079,0 5974,FRAMEQA39560,two,how many girls are kissing with rainbows on their faces?,tumblr_nky1haecpO1qzdriyo1_500,95386,1 5975,FRAMEQA48514,two,how many girls are giving high fives to a boy?,tumblr_nfmdf9Rdmf1u41cnao1_500,67597,1 5976,FRAMEQA21457,room,where is the young girl falling?,tumblr_ngi9a7ePP51si6uplo1_500,26190,3 5977,FRAMEQA1545,black,what is the color of the shirt?,tumblr_nj0iew6kad1tmcdhmo1_400,32401,2 5978,FRAMEQA24209,blue,what is the color of the car?,tumblr_natb2zaImk1tzhdamo1_500,61052,2 5979,FRAMEQA26673,black,what is the color of the hair?,tumblr_nqzqlrpIFU1u1z2mio1_400,31200,2 5980,FRAMEQA20337,white,what is the color of the girl?,tumblr_nkx078AjSx1rq3c4co1_500,57493,2 5981,FRAMEQA48709,alley,where are two men walking and talking?,tumblr_ncfa7hPZ2h1sl2cdao1_500,94639,3 5982,FRAMEQA36810,two,how many crazy women with colorful bikini are fighting in the boxing ring?,tumblr_nb7eheT0Oz1r272ido1_250,76772,1 5983,FRAMEQA48225,jacket,what is the man white man with short hair wearing and talking?,tumblr_n9k8xzjz181tiur4yo1_250,12182,0 5984,FRAMEQA48102,black,what is the color of the man?,tumblr_np4ck6wChP1up32d0o1_500,96615,2 5985,FRAMEQA4447,white,what is the color of the shirt?,tumblr_n9gjoiFaDh1so81xuo1_400,11179,2 5986,FRAMEQA26579,piano,what does the man play?,tumblr_n99imgXYgN1tyvyt1o1_400,68565,0 5987,FRAMEQA2262,black,what is the color of the clothes?,tumblr_ndf8j0RPst1s96znho1_500,83523,2 5988,FRAMEQA42577,ship,what is flying in the air?,tumblr_nf0rsx4U7o1tqwtb6o1_400,36945,0 5989,FRAMEQA31729,room,where does the person in black scream?,tumblr_ncq5net4701tkyu2bo1_500,88948,3 5990,FRAMEQA20556,dog,what sits on the shore of a lake?,tumblr_nfljjzNN0y1u4vf33o1_400,69301,0 5991,FRAMEQA20053,pool,where is person swimming?,tumblr_new1wuYyJp1rhv34lo1_500,65350,3 5992,FRAMEQA13958,room,where is the man dancing?,tumblr_ngl13o76hU1tgzsvro1_250,36610,3 5993,FRAMEQA38744,two,how many men with black hair are parading?,tumblr_nbh1deqvo01tl6l5bo1_250,78595,1 5994,FRAMEQA45400,dog,what is wearing the cape and riding a scooter?,tumblr_ndwfzx0hL91tgkdkbo1_250,5671,0 5995,FRAMEQA12386,black,what is the color of the clothes?,tumblr_n8q75sHDJM1tchbt3o1_500,25856,2 5996,FRAMEQA47986,chair,where is the woman spinning around?,tumblr_nkuwugWpwO1tocarto1_250,39758,3 5997,FRAMEQA51500,three,"how many men dance in the street , then two of them wave goodbye?",tumblr_nomhc2cRR51uoon82o1_400,56700,1 5998,FRAMEQA6735,three,how many guys are singing and moving on the stage?,tumblr_njv1tfOh4x1unfaf3o1_400,76272,1 5999,FRAMEQA35551,wall,what is the boy running up and jumping?,tumblr_niud9uxv741tm4s86o1_500,87224,0 6000,FRAMEQA12650,black,what is the color of the cap?,tumblr_nasvey3LcC1s0j7iyo1_500,81836,2 6001,FRAMEQA48335,black,what is the color of the outfit?,tumblr_nauohdXxUf1r3qv9to1_400,96944,2 6002,FRAMEQA52472,black,what is the color of the suit?,tumblr_npqo9maJv31tbjksno1_540,10635,2 6003,FRAMEQA50203,horse,what is galloping through the rural field?,tumblr_ndlmvfdO8l1tidcnvo1_400,64293,0 6004,FRAMEQA14076,sunglasses,"what is the man moving down his nose ,?",tumblr_ndgna3orE71toiobbo1_500,54995,0 6005,FRAMEQA8388,black,what is the color of the bra?,tumblr_ng6gcuM63S1rj8ymxo1_400,5337,2 6006,FRAMEQA20823,two,how many women are pulling off the mans jacket?,tumblr_ng6i6uP4kE1s5svyno1_500,93850,1 6007,FRAMEQA16031,black,what is the color of the hat?,tumblr_nak8paCoDj1ts7wbfo1_400,46117,2 6008,FRAMEQA30895,cup,what is the woman holding?,tumblr_nn2rzl5NVF1utwz4no1_400,11474,0 6009,FRAMEQA48578,stadium,where are the players playing?,tumblr_nb6lcsQaDf1sj36hjo1_400,67091,3 6010,FRAMEQA28771,dog,what is jumping around the room?,tumblr_nbdje2GanU1tktmbso1_400,44937,0 6011,FRAMEQA20870,kittens,what are playing and one falls from its perch?,tumblr_nojnjdkri81urlrpuo1_500,49168,0 6012,FRAMEQA19966,car,where is the man smoking a cigarette?,tumblr_nd9lvuNePt1u15aayo1_400,34747,3 6013,FRAMEQA52103,black,what is the color of the hair?,tumblr_nkh0ermIow1tmd6tdo1_400,4372,2 6014,FRAMEQA34343,horse,what is the girl riding a horse through a track and is playing around?,tumblr_na213y4pel1tdek48o1_400,43172,0 6015,FRAMEQA38324,blue,what is the color of the polish?,tumblr_npc6v49jBd1u2xe60o1_400,11988,2 6016,FRAMEQA39227,lingerie,where is the girl standing next to lockers talking to someone?,tumblr_nazlg99bnp1tjba7no1_250,49653,3 6017,FRAMEQA2358,white,what is the color of the shirt?,tumblr_nkxvqaazzU1up8baqo1_250,3440,2 6018,FRAMEQA3511,white,what is the color of the shirt?,tumblr_ndkfviG28R1u1z0zno1_250,8282,2 6019,FRAMEQA51063,kitten,what is sitting on the side of a large dog who turns around to look at it?,tumblr_nhp1rdIHcP1s6zpepo1_250,27115,0 6020,FRAMEQA50295,colors,what is the woman standing and her hair is changing?,tumblr_nfr1cufhrl1u0juyyo1_500,92292,0 6021,FRAMEQA38834,bed,"where does the girl sit , crying and eating a sandwich?",tumblr_nkg0rwoSOi1tkkgpso1_400,30371,3 6022,FRAMEQA34576,two,how many people are showing off and all over?,tumblr_mhzoo3n2ZK1r8egmso1_400,15859,1 6023,FRAMEQA26853,red,what is the color of the corridor?,tumblr_nbwoxqjLik1tit9eco1_r1_500,95676,2 6024,FRAMEQA22744,three,how many men stood dancing in the room?,tumblr_ngpnflPD2K1sklqsoo1_400,58049,1 6025,FRAMEQA15370,black,what is the color of the robe?,tumblr_ndu69ysOxt1ta9mkfo1_500,97682,2 6026,FRAMEQA91,black,what is the color of the costume?,tumblr_nc2q4csgq91txeyrmo1_250,35741,2 6027,FRAMEQA22851,black,what is the color of the shirt?,tumblr_nflzlx0vM81r8n07ho1_500,69323,2 6028,FRAMEQA4949,black,what is the color of the jacket?,tumblr_nklko2lwo01qlujrso6_250,23380,2 6029,FRAMEQA37825,red,what is the color of the cubs?,tumblr_nnzlhp8DpG1tgouwlo1_500,38497,2 6030,FRAMEQA779,tank,where is the hippo flipping and turning?,tumblr_nb1azd6ZVk1tahfdeo1_250,24120,3 6031,FRAMEQA14014,car,what is being zoomed in on?,tumblr_n8i6t05H331rhy09eo1_500,70580,0 6032,FRAMEQA51597,glasses,what is the guy listening to something is wearing?,tumblr_nimq3d11I51s7xw0ro1_250,20556,0 6033,FRAMEQA12063,costume,what did the woman have put on her head?,tumblr_nhxrp43ATC1u7mpzto1_500,83466,0 6034,FRAMEQA35101,ball,what does the player kick into the net off the crossbar?,tumblr_namuciBtaT1r06temo1_500,93376,0 6035,FRAMEQA16976,black,what is the color of the dress?,tumblr_n9p314m7oa1twbspoo1_250,17154,2 6036,FRAMEQA20007,two,how many girls are shown?,tumblr_nkc48iNxXB1uodfiso1_500,72935,1 6037,FRAMEQA2648,gray,what is the color of the cat?,tumblr_nq0vgpO4MV1u88jnvo1_250,46248,2 6038,FRAMEQA3134,door,what does the pale colored ferret open with his head?,tumblr_nkshrz1UUz1u3g519o1_400,68749,0 6039,FRAMEQA41070,two,how many young men are holding the microphone between them?,tumblr_ng5aqx1lf91s4gxnlo1_500,44772,1 6040,FRAMEQA51474,dog,what is yawning while the person scratches his head?,tumblr_nhy3t8q7sF1sbjgb9o1_500,73834,0 6041,FRAMEQA14938,two,how many cars are colliding with each other?,tumblr_nazoqqzPK61rcr3teo1_250,84564,1 6042,FRAMEQA36944,dog,what is shaking it tails and picks up a mail from a person in a van?,tumblr_nc0bml1h561t7io47o1_250,14250,0 6043,FRAMEQA6936,four,how many young ladies are in their undergarments?,tumblr_nappy3hY3X1sjfo83o1_500,96990,1 6044,FRAMEQA149,cat,what is yawning and stretching on the person 's stomach?,tumblr_n974aiV3pP1tyycvto1_400,82732,0 6045,FRAMEQA29435,two,how many women is this embracing each other?,tumblr_nflki2KNrG1u2hsato1_250,90896,1 6046,FRAMEQA1400,two,how many people are on stage one leans down and touches the stage with his hands?,tumblr_ngc49xMsxc1r86r30o1_250,16091,1 6047,FRAMEQA14751,cap,what is the young man holding on with both hands?,tumblr_na7wylszqY1riowufo1_250,2893,0 6048,FRAMEQA32531,four,how many combat planes fly in formation next to each other?,tumblr_nr3xi1KZmV1uzvpcio1_400,63904,1 6049,FRAMEQA15580,cars,what are speeding around the corner on a race track?,tumblr_npgmilwWnF1tx8mn0o1_400,91034,0 6050,FRAMEQA10755,blue,what is the color of the outfit?,tumblr_nr7000dUK11uvpgu5o1_250,3178,2 6051,FRAMEQA26797,green,what is the color of the shirt?,tumblr_nrljkbZSIC1u5qz70o1_500,43507,2 6052,FRAMEQA7935,two,how many women smile and lean back on each other?,tumblr_na3mv90rSu1snioijo1_250,8407,1 6053,FRAMEQA43129,dog,what are five young girls dancing with brooms and runs on the street?,tumblr_ni3bhgVXHU1u86ghoo1_500,98685,0 6054,FRAMEQA53065,two,how many hamsters were playing around together?,tumblr_na07x1hrbL1ti3y6yo1_400,25005,1 6055,FRAMEQA17591,shirt,what is the man taking off?,tumblr_nex14mjdf71rjqi8yo1_400,57626,0 6056,FRAMEQA18168,lapel,where is the man wearing a suit and a flower?,tumblr_nkoayb3XdE1rtsl8yo1_250,3106,3 6057,FRAMEQA31614,bedroom,where is the man with glasses dancing?,tumblr_nb7qy5DyEh1si0qiyo1_400,64997,3 6058,FRAMEQA47125,one,how many man turns to stare at another man?,tumblr_nbolyqW2ZU1tj37deo1_400,74663,1 6059,FRAMEQA138,white,what is the color of the t-shirt?,tumblr_nc5l1vCwUU1rjtfuuo1_400,22260,2 6060,FRAMEQA3947,two,how many guys are talking into microphones?,tumblr_nrfuobNaSN1ustdamo1_500,68060,1 6061,FRAMEQA39851,two,how many boys stand next to their lockers and make eye contact?,tumblr_njocvnKcFO1tifehbo1_400,55408,1 6062,FRAMEQA40914,sky,what does the lot of lightning flash light up?,tumblr_na27jm6QiN1rikxpmo1_400,59204,0 6063,FRAMEQA24791,two,how many soccer players yell at each other and butt heads?,tumblr_n8ptm83Gmv1sc1cefo1_250,14456,1 6064,FRAMEQA5244,cat,what gets up from the lying position and leaves a fake tail behind?,tumblr_nknodg8h931slwpo8o1_250,85109,0 6065,FRAMEQA35382,gray,what is the color of the jacket?,tumblr_nq3qf4WRTo1ttvngao1_400,50798,2 6066,FRAMEQA51726,pool,where does the woman hold a dog up to show a baby?,tumblr_nqp0xxEoF91td493xo1_500,70898,3 6067,FRAMEQA44949,corn,what are the man and a cat eating on the cob?,tumblr_nnvvpgeXHI1slwpo8o1_400,6011,0 6068,FRAMEQA49243,black,what is the color of the man?,tumblr_njy0j2MwQW1u2mmn8o1_250,29016,2 6069,FRAMEQA36963,red,what is the color of the hair?,tumblr_nheonn6u3e1r2m5fko1_1280,45464,2 6070,FRAMEQA35719,rings,what is the man blowing and the other man swallows the smoke ring?,tumblr_nf8bhbRmqr1s3att3o1_400,28574,0 6071,FRAMEQA27618,cat,what was struggling to climb up the table?,tumblr_ne5xnkmNbh1tk2ngvo1_400,53122,0 6072,FRAMEQA12692,car,what is skidding and blowing smoke on a track?,tumblr_n8uckhNDnS1to3k6do1_500,66915,0 6073,FRAMEQA40784,twirl,what is the ballerina doing with on leg up in the air on a stage?,tumblr_naadu72Yf41rih4r2o1_400,20856,0 6074,FRAMEQA36946,brown,what is the color of the hair?,tumblr_nb54cq4esp1tkdiu5o1_500,92840,2 6075,FRAMEQA35385,three,how many people are standing in an elevator?,tumblr_ncn6fbUX131t5lviko1_250,49614,1 6076,FRAMEQA19940,car,what is driving on the racetrack?,tumblr_nc5lm8v8r31tx8mn0o1_400,77883,0 6077,FRAMEQA16713,purple,what is the color of the hair?,tumblr_nreb388PeN1rb1qd6o1_250,4298,2 6078,FRAMEQA23921,cat,what smacks the gray cat in a case of mistaken identify after being bit my a squirrel?,tumblr_ndia525bro1rc7zl1o1_400,77620,0 6079,FRAMEQA24313,box,what is the shirtless bald man taking from someone?,tumblr_nklj8pQZTT1rxcyx0o1_250,2632,0 6080,FRAMEQA51469,picture,what is the man wearing a black jacket is throwing to the ground?,tumblr_nfm146v67f1u44rezo1_500,63307,0 6081,FRAMEQA46414,black,what is the color of the shirt?,tumblr_n94c9kD6eu1s0wfo1o1_250,40368,2 6082,FRAMEQA15744,car,what is racing down the track and crashes into the side of the track?,tumblr_njy3wfD2FB1tx8mn0o1_400,76947,0 6083,FRAMEQA15316,two,how many young men smile gently at each other?,tumblr_ncrhl6yWq81qi39coo1_500,96488,1 6084,FRAMEQA42398,guitar,what is the person playing?,tumblr_no5y23zVlY1qhwvbro1_400,51140,0 6085,FRAMEQA4128,seven,how many people are standing on podiums waving yellow flags?,tumblr_nnwzkgSJFc1qg0or6o1_400,62997,1 6086,FRAMEQA2099,brown,what is the color of the jacket?,tumblr_ng0t7rKbum1u53evzo1_500,48284,2 6087,FRAMEQA27629,five,how many men in sweaters dance on a stage?,tumblr_nk21m7cvgz1suivgao1_400,59580,1 6088,FRAMEQA39499,house,where were two men dancing around?,tumblr_nj9qf9m6OT1trbt9ao1_400,28960,3 6089,FRAMEQA52791,red,what is the color of the hair?,tumblr_nbwjt7RAnP1tm4ad2o1_500,101760,2 6090,FRAMEQA39303,three,how many men in a vehicle are singing?,tumblr_nrlc3i7KYK1sqiy4oo1_400,60244,1 6091,FRAMEQA25159,two,how many soccer players look nervous?,tumblr_n8q8ymfs5t1ql34a1o1_500,87320,1 6092,FRAMEQA48096,white,what is the color of the man?,tumblr_ne9tdxdCGH1r980sno1_r1_500,96094,2 6093,FRAMEQA47075,cat,what is looking out of the window before jumping out onto a balcony?,tumblr_nbadfkbZvN1tl0ko9o1_400,38032,0 6094,FRAMEQA42595,hallway,where are two young men standing and gesturing with their hands?,tumblr_nhjwx6K3OR1tlujlao1_250,3760,3 6095,FRAMEQA45567,brown,what is the color of the hair?,tumblr_n9gx7oW7um1qci0h0o1_500,45292,2 6096,FRAMEQA50100,one,how many foot did someone in black shoes raise?,tumblr_njtr71EuXh1u0alpro1_500,60645,1 6097,FRAMEQA26577,cat,what gets its head stuck in a mug?,tumblr_nnwfcpoGEI1tk2ngvo1_400,74822,0 6098,FRAMEQA50271,blue,what is the color of the eyes?,tumblr_ngpdvtvLyP1u2sak3o1_250,51550,2 6099,FRAMEQA119,yellow,what is the color of the creatures?,tumblr_neua43pKJC1t0kntqo1_250,53580,2 6100,FRAMEQA3938,two,how many men without shirts are hugging on a soccer field?,tumblr_nd0ttcs6US1s9rulno1_400,78934,1 6101,FRAMEQA41768,dough,what does the man pick up and then it falls on him?,tumblr_nl1lkqvatH1s6zpepo1_400,26859,0 6102,FRAMEQA15095,elephant,what is riding atop of another breeding?,tumblr_nblkdlG0wb1qj5hh7o1_250,81080,0 6103,FRAMEQA48533,four,how many people are dressed in superhero costumes?,tumblr_ne66d4ll0f1tlxce2o1_400,53791,1 6104,FRAMEQA1123,black,what is the color of the shorts?,tumblr_nb3lneXQNe1qi5ldlo1_500,58974,2 6105,FRAMEQA11716,studio,where does the female dancer spin?,tumblr_no5pqde8ni1rifk13o1_250,53342,3 6106,FRAMEQA35392,three,how many men are sitting on the sofa?,tumblr_nadznytQ3X1tj5zkfo1_500,71352,1 6107,FRAMEQA22210,dog,what is wearing a red cape is riding a scooter?,tumblr_ndwfzx0hL91tgkdkbo1_250,5671,0 6108,FRAMEQA19646,dock,what is the guy jumping off into a lake?,tumblr_njolrr2lk11s399vuo1_400,28617,0 6109,FRAMEQA22870,two,how many people is this dancing with a car in the background?,tumblr_ndu1fawTmi1rpucoso1_250,40882,1 6110,FRAMEQA7788,cat,what is curious about a hamster that is eating?,tumblr_ngzl9clEBn1slj978o1_400,28180,0 6111,FRAMEQA18214,black,what is the color of the dances?,tumblr_ndrgwo2ChI1tmnzbjo1_500,97210,2 6112,FRAMEQA35819,car,where did four guys bang their heads?,tumblr_n8xhhpcZOi1ribqy3o1_1280,33927,3 6113,FRAMEQA43784,one,how many man listens intently to another man speak?,tumblr_niug00kIQZ1tu05oyo1_400,25074,1 6114,FRAMEQA18334,device,what is the woman underwater activating by example?,tumblr_nqusa2AVho1t6r3t0o1_400,83682,0 6115,FRAMEQA46747,taxi,what spins out of control after getting rear ended by another car?,tumblr_nazoqqzPK61rcr3teo1_250,84564,0 6116,FRAMEQA6968,truck,what is running fast that one of the wheel blows up?,tumblr_nk3iivXYey1u7lrdno1_500,91155,0 6117,FRAMEQA14461,brown,what is the color of the bulldog?,tumblr_nbsdx5f0Gm1rb71dxo1_400,69966,2 6118,FRAMEQA2853,cat,what is attacking the hand and kicking its feet?,tumblr_nrj8tiIIWd1tkhxdko1_400,22505,0 6119,FRAMEQA44494,bar,where is the drunk man dancing?,tumblr_nql8slVS0v1u1q122o1_400,35814,3 6120,FRAMEQA41023,motorcycle,what is the person riding down a road?,tumblr_n9eblfUw4E1sna4i4o1_250,4523,0 6121,FRAMEQA29990,hall,where do two people dance close?,tumblr_npa30jXsLg1qdvza8o1_400,96685,3 6122,FRAMEQA52249,singing,what is the person swinging?,tumblr_ng9owiPitI1u4pbd2o1_500,89655,0 6123,FRAMEQA4505,cat,what is the girl wearing a black shirt is kissing?,tumblr_nk37choqIF1uos7q4o1_400,30118,0 6124,FRAMEQA25966,black,what is the color of the couple?,tumblr_na9o7hUCQC1sv932qo1_250,808,2 6125,FRAMEQA33706,two,how many entertainment stars are being interviews by the FRAMEQAorter?,tumblr_nbuxofDUaP1trlo5to1_400,48690,1 6126,FRAMEQA52939,stares,what is the woman wearing a white dress?,tumblr_nfd11g9m741tm2ntoo1_500,67219,0 6127,FRAMEQA14646,skate,what is the young guy riding and getting ready for a trick?,tumblr_n9euhcHVsj1t1a1dlo1_250,13359,0 6128,FRAMEQA36745,three,how many lads at leisure seated and in conversation?,tumblr_no62vs7NV21uvo3r1o1_100,5803,1 6129,FRAMEQA39005,horse,what is jumping over some barrels?,tumblr_np3jvwNxHX1u1gesoo1_400,66325,0 6130,FRAMEQA7502,card,what does the person in a tux read?,tumblr_nr0vw5ntIo1thx58do1_540,91143,0 6131,FRAMEQA32491,white,what is the color of the dress?,tumblr_ney7igW9Zl1tik3sgo1_250,36658,2 6132,FRAMEQA8016,two,how many lovers is playing with balloons and they look very happy?,tumblr_mnfuzbyex91qe2lmeo1_500,81919,1 6133,FRAMEQA51705,two,how many blond girls are sitting close together?,tumblr_ng8huxJJg41qbzfhbo1_250,13231,1 6134,FRAMEQA42370,corridor,where do the couple of young people look scared?,tumblr_nnjb06Vy3C1uti9noo1_250,87553,3 6135,FRAMEQA11131,black,what is the color of the turns?,tumblr_n8x7ghjKH01tdwqw4o1_500,59819,2 6136,FRAMEQA20707,sunglasses,what does the man with a bleeding face put on?,tumblr_ncahrts1au1s71nvbo1_400,57065,0 6137,FRAMEQA45784,cats,what are playing together with the cylinder?,tumblr_nk3tu3h9Yz1u1v0pco1_400,88816,0 6138,FRAMEQA33111,orange,what is the color of the jacket?,tumblr_nk15pvmV3m1qzb52xo1_400,29669,2 6139,FRAMEQA19270,tank,where did the person fail to catch the goldfish?,tumblr_no4czdLnmS1tnjsjuo1_1280,14627,3 6140,FRAMEQA2636,two,how many men are smiling at each other while wearing the same clothes?,tumblr_negrp50MCD1rmfypqo1_500,97810,1 6141,FRAMEQA50360,car,where is the boy sitting and smiling?,tumblr_nad0y6Ci4u1tjbpqfo1_250,47065,3 6142,FRAMEQA43297,drums,what does the man play and the man behind him plays the guitar?,tumblr_nhh11uNa5j1tngqkyo1_250,8192,0 6143,FRAMEQA49887,red,what is the color of the woman?,tumblr_nr51n6uG1g1tqzdmxo1_250,36332,2 6144,FRAMEQA53078,piano,what is the guy playing and singing on stage?,tumblr_ney2qpWl7D1tv2q4bo1_400,2296,0 6145,FRAMEQA37535,brown,what is the color of the hair?,tumblr_nc4iytkj9W1tjjejho1_250,39706,2 6146,FRAMEQA40918,room,where is the young man dancing?,tumblr_ndp629pKAf1rxcenzo1_400,64357,3 6147,FRAMEQA28241,red,what is the color of the headband?,tumblr_nk1mufq2Ab1sico5po1_250,6051,2 6148,FRAMEQA8130,blue,what is the color of the door?,tumblr_npvfwwSEYu1sfmhxao1_400,52459,2 6149,FRAMEQA35070,skateboard,what is the man riding from a roof to a sidewalk?,tumblr_na2llnbU4P1qkelnfo1_400,65644,0 6150,FRAMEQA100,white,what is the color of the man?,tumblr_nqbwc4WRcy1qz72sno1_500,76818,2 6151,FRAMEQA4740,two,how many wrestlers is this fighting outside of the ring?,tumblr_nk7e9752qs1unbc8go1_400,52130,1 6152,FRAMEQA8275,cat,what runs away from the floating machine?,tumblr_ngbssiZkk81tk2ngvo1_400,55993,0 6153,FRAMEQA6287,headphones,what is the man smiling and adjusting in his ear?,tumblr_nq491cDKzo1tbxk1ao1_400,25038,0 6154,FRAMEQA28816,horse,what is checking smelling something close up?,tumblr_n8x4u9gEFy1s2wg51o1_500,68398,0 6155,FRAMEQA35995,red,what is the color of the lighting?,tumblr_nczubwv8w11t0k6fmo1_250,6245,2 6156,FRAMEQA3210,two,how many boys are standing next to each other?,tumblr_nkow3gFUC21tljkklo2_250,2773,1 6157,FRAMEQA9174,guitar,what does the person play on a stage very enthusiastically?,tumblr_nr4axjoDqg1tkp4r2o1_250,19141,0 6158,FRAMEQA6751,ball,what is the person jumping up in the air and kicking?,tumblr_na7hpl6dpk1tfhnexo1_250,78460,0 6159,FRAMEQA48169,dog,what jumps up from the pile of snow?,tumblr_ng4rt94t1g1tdjuqvo1_400,86983,0 6160,FRAMEQA6602,car,what is skidding around the corner and off the road?,tumblr_nrc4n8V2xU1tx8mn0o1_400,93104,0 6161,FRAMEQA483,black,what is the color of the shirt?,tumblr_n9sz8trA7B1sv44h3o1_250,40753,2 6162,FRAMEQA52677,cigarette,what is the man smoking in front of a forest?,tumblr_ndraq7VgPA1rq1604o1_500,90690,0 6163,FRAMEQA38760,room,where are two young men fooling around?,tumblr_nh1j8nYj1F1smwbflo1_400,29663,3 6164,FRAMEQA10529,two,how many men is this dancing and snapping their fingers?,tumblr_nir4h8gDt81tb5plwo1_250,6561,1 6165,FRAMEQA25995,cat,what attacks the cat shaped balloon?,tumblr_nbxf7950qG1tdjuqvo1_500,76474,0 6166,FRAMEQA48924,walls,what is the man jumping on a skateboard?,tumblr_nbanebYjIn1syy1ujo1_400,66182,0 6167,FRAMEQA13028,dog,what is tilting his head slightly at an angle?,tumblr_nhidzpk1Bu1tjhld9o1_250,23339,0 6168,FRAMEQA5704,white,what is the color of the shirt?,tumblr_nc87hbmT7S1s97opco1_400,6912,2 6169,FRAMEQA18562,white,what is the color of the coat?,tumblr_nheujcDvAL1u6ps3vo1_400,35800,2 6170,FRAMEQA47163,three,how many people are putting up peace signs with their hands?,tumblr_nrfrgqf2gd1uxi6bbo1_500,94380,1 6171,FRAMEQA4586,cover,what is the man putting to another man?,tumblr_namp6mWvlq1qminp2o1_250,47287,0 6172,FRAMEQA24382,chick,what is jumping on the shelf trying to fly?,tumblr_ne55yo7DLv1tsmvhdo1_500,94775,0 6173,FRAMEQA32177,hospital,"where is the guy wearing a brown coat , is visiting another guy?",tumblr_niwdo4WvDN1u967xao1_500,72906,3 6174,FRAMEQA13511,dog,what is laying in the tub of water while a kid is in a float?,tumblr_nn4nr9hX3C1sm7eoto1_500,41251,0 6175,FRAMEQA36095,car,where are two young men enjoying a ride and laughing?,tumblr_ncc1baT5HP1svs31wo1_400,2743,3 6176,FRAMEQA3278,fish,what lays in the big bowl as a cat tries to pull him out?,tumblr_nf189lUyiY1tdjuqvo1_400,38805,0 6177,FRAMEQA8539,two,how many men with black hair are playing the guitar?,tumblr_n94fi690GZ1twfcheo1_400,60282,1 6178,FRAMEQA26865,keyboard,what is the man playing with lots of effort?,tumblr_n9zxu0By4F1slmv53o1_500,54951,0 6179,FRAMEQA12064,star,what is giggling inside the studio?,tumblr_ng3spyNCrB1sq9tvpo1_400,58299,0 6180,FRAMEQA36492,black,what is the color of the hat?,tumblr_neh6ut4xxG1tiirhlo1_400,64639,2 6181,FRAMEQA26892,three,how many boys are dancing as one plays the guitar?,tumblr_ncs3d4Hye11tb92v8o1_400,59364,1 6182,FRAMEQA48363,black,what is the color of the clothing?,tumblr_ncqq12FqgR1u0rv50o1_500,75994,2 6183,FRAMEQA20587,red,what is the color of the dot?,tumblr_ngyrfb6hzc1rlvjr1o1_400,33915,2 6184,FRAMEQA24115,cigarette,what is the boy with a white shirt smoking?,tumblr_nbf2peigGM1rpjuouo1_250,82668,0 6185,FRAMEQA12831,comb,what does the man in a sports uniform place into his hair?,tumblr_n9msm7HMOO1thfulao1_500,95600,0 6186,FRAMEQA47879,star,what is laughing and making victory sign?,tumblr_nabkywE1ZI1r0f68xo1_500,98966,0 6187,FRAMEQA26127,brown,what is the color of the hair?,tumblr_nahi8nDJSh1tz17wqo1_500,83188,2 6188,FRAMEQA45773,building,where do two men fight?,tumblr_nim1nvt1em1sqlieso1_400,93077,3 6189,FRAMEQA129,black,what is the color of the suit?,tumblr_nbpuobhJ591ry0b5go1_400,9466,2 6190,FRAMEQA47753,four,how many men are headbanging together in the dark?,tumblr_nexv4oxDWU1tdxdrdo1_400,58313,1 6191,FRAMEQA20677,roll,what does the hedgehog carry?,tumblr_na7ovlzraN1s8qlxdo1_500,67883,0 6192,FRAMEQA7260,device,what does man wear attached to his glasses?,tumblr_nf1ppiOr4r1s84144o1_250,82977,0 6193,FRAMEQA43790,two,how many men approach each other and whisper in their ears?,tumblr_n95vewpyij1s6octbo1_400,83510,1 6194,FRAMEQA22813,cars,what turn the corner and speed down the straight away?,tumblr_nh0s0kFIfP1tx8mn0o1_400,55469,0 6195,FRAMEQA38325,two,how many young men are grinning and winking for someone?,tumblr_nckjrzjHmR1sc2n9ao1_500,83916,1 6196,FRAMEQA28620,two,how many men are dancing in the performance on stage?,tumblr_ncilobU0pA1t151ozo1_400,63596,1 6197,FRAMEQA240,black,what is the color of the jacket?,tumblr_ndfgrhpeWx1thylgdo1_500,48117,2 6198,FRAMEQA24680,bicycle,what did guy ride over the fence?,tumblr_nep4b0pXnK1u26rdio1_500,57888,0 6199,FRAMEQA38346,two,how many cats are opening the drawer to look inside it?,tumblr_nephvvr7qF1tkura4o1_250,18471,1 6200,FRAMEQA37266,red,what is the color of the hat?,tumblr_ndwj2x0l3x1tfps03o1_500,10254,2 6201,FRAMEQA13642,red,what is the color of the mike?,tumblr_ni18qdsJyr1u5vyipo1_250,23415,2 6202,FRAMEQA22092,gray,what is the color of the dress?,tumblr_n9mcomp3VE1sa9k0fo1_250,6285,2 6203,FRAMEQA44181,tank,what is skidding to the halt on a road?,tumblr_nhxyiivlNC1t06byno1_400,28984,0 6204,FRAMEQA33061,goat,what rams the girl who is dancing?,tumblr_najg0y3ZQX1tatohao1_250,10583,0 6205,FRAMEQA47070,two,how many young girls are jumping around while dancing?,tumblr_nc0jxoYxes1tkdc7qo1_250,76255,1 6206,FRAMEQA14304,hedgehog,what is playing with the toilet roll?,tumblr_na7ovlzraN1s8qlxdo1_500,67883,0 6207,FRAMEQA39891,runway,what does the model walk down wearing a long black jacket?,tumblr_njsf8qqbKL1rnj7d3o1_400,67332,0 6208,FRAMEQA40117,horse,what jumps and pFRAMEQAares to fall?,tumblr_mgo1kl7MLM1qe2thio1_500,94323,0 6209,FRAMEQA72,cone,what are the pair of guys rubbing shaped hats together?,tumblr_njox7s52pH1sico5po1_250,49619,0 6210,FRAMEQA29499,two,how many people is wearing school ties are dancing?,tumblr_ng486l8Fhx1u3n62mo1_400,89980,1 6211,FRAMEQA24839,white,what is the color of the suit?,tumblr_noofl2XtVN1uw3tyuo1_250,39859,2 6212,FRAMEQA10188,three,how many male passengers are riding in the back seat of a car?,tumblr_nc95blevQd1sg10q0o1_250,49450,1 6213,FRAMEQA42658,four,how many young men are singing and saluting with their hands?,tumblr_nb18o9DZR91r9clqho1_500,71005,1 6214,FRAMEQA17957,two,how many young men are clapping and talking on stage?,tumblr_nch7bgbitX1ty31s3o1_250,86718,1 6215,FRAMEQA34452,dog,what lets the little dog out of a cage?,tumblr_ncx9u3ivlb1tdmffyo1_400,101281,0 6216,FRAMEQA48911,white,what is the color of the flower?,tumblr_n9e0qe1Ghp1sztu6fo1_400,54657,2 6217,FRAMEQA39438,drink,what does the teenager in a white shirt sip?,tumblr_na00hxaoq01so8ipho1_500,79541,0 6218,FRAMEQA30356,two,how many men turn around suddenly and stop?,tumblr_ncl0nxfMG31t5lviko1_250,43918,1 6219,FRAMEQA27409,bathtub,where does the man sit?,tumblr_navz04i2T01tpmdr3o1_250,31122,3 6220,FRAMEQA12670,two,how many boys is this talking to one another?,tumblr_n9858a3WXw1shmm4co1_400,79082,1 6221,FRAMEQA34476,car,what makes the sharp turn while in a race?,tumblr_nd9ii12sYt1tx8mn0o1_400,66589,0 6222,FRAMEQA36018,black,what is the color of the shirt?,tumblr_nfxdgzZ1W81t9h1yfo1_400,63730,2 6223,FRAMEQA30750,white,what is the color of the chair?,tumblr_nbsiu1qENF1s2z19ko1_400,67449,2 6224,FRAMEQA32603,black,what is the color of the jacket?,tumblr_nhx1pzIVPj1qzs8ldo1_400,37204,2 6225,FRAMEQA31364,trumpet,what is the big yellow banana wearing sunglasses is playing?,tumblr_naewvsd2Hj1rpjr5so1_500,27793,0 6226,FRAMEQA21282,car,what is driven around the track until it skids?,tumblr_ngpaoaNNIH1rpqn0wo1_500,61804,0 6227,FRAMEQA25476,purple,what is the color of the hair?,tumblr_nbovmhO8lQ1t08tbeo1_500,68894,2 6228,FRAMEQA33944,two,how many young people are greeting each other with a hand shake and hug?,tumblr_nb50ccDCSC1swjcnao1_500,61180,1 6229,FRAMEQA45487,car,what is traveling sideways on the racetrack?,tumblr_nrcentF2yy1unyhx2o1_400,76890,0 6230,FRAMEQA19970,guitar,what are the woman and a man playing under the snow?,tumblr_nheonn6u3e1r2m5fko1_1280,45464,0 6231,FRAMEQA51877,frog,what is climbing onto the person 's hand from a branch?,tumblr_nh8lleEpNz1rhl4f0o1_400,81049,0 6232,FRAMEQA52570,dog,what is laying down and licking the middle of the couch?,tumblr_nnn5nj7vw21s8rggqo1_250,2604,0 6233,FRAMEQA26452,two,how many lovers illuminated by the swinging inspection light?,tumblr_npx35lQNlc1tg6dv1o1_500,11124,1 6234,FRAMEQA45177,statue,what is zoomed into view?,tumblr_nko0d0GuMv1s8hdzqo7_250,51290,0 6235,FRAMEQA51568,two,how many people is this giving a singing performance?,tumblr_nbearz2UtH1tykzato1_500,91827,1 6236,FRAMEQA49125,monkey,what does the large monkey groom?,tumblr_nhnhys0agY1tcltsqo1_400,66216,0 6237,FRAMEQA29733,four,how many men are standing in the bright colored house when one man makes another disappear?,tumblr_nkluxwUCXZ1up5k6ro1_250,77807,1 6238,FRAMEQA18591,three,how many men are enjoying themselves jumping on a rubber buoy?,tumblr_nmctp8E72g1rhpmtko1_400,85003,1 6239,FRAMEQA25461,white,what is the color of the man?,tumblr_naug61u7Kv1tgbziwo1_400,96773,2 6240,FRAMEQA26316,ball,what does the boy kick into the basket?,tumblr_n96t56IqpN1tz9mg2o1_250,12443,0 6241,FRAMEQA31215,black,what is the color of the marks?,tumblr_nd9b86RibY1t30yt2o1_400,82248,2 6242,FRAMEQA49992,black,what is the color of the shirt?,tumblr_nk1mtw4zVW1qhccx4o1_500,98906,2 6243,FRAMEQA52232,black,what is the color of the women?,tumblr_n9msz5bJ7Y1spkaepo1_400,62640,2 6244,FRAMEQA21308,picture,what is the man showing to the FRAMEQAorter on tv?,tumblr_na6ei1nNR71roqbapo1_250,15332,0 6245,FRAMEQA38535,guitar,what is the man with a guitar singing and playing?,tumblr_na6m9ty5TR1qjwz8qo1_250,27638,0 6246,FRAMEQA32870,round,what is the girl wearing glasses is spinning?,tumblr_ncwtrlgXnQ1rjz4byo1_400,29191,0 6247,FRAMEQA19088,kitchen,where is the girl wearing a hat and laughing?,tumblr_nf9m8zTe8u1rlog3io1_400,79038,3 6248,FRAMEQA25300,black,what is the color of the woman?,tumblr_ndizuwjz6S1tw1kcao1_400,52682,2 6249,FRAMEQA797,two,how many men are laughing together and wiggling their tongues?,tumblr_ncrt5nXvpv1tll0p8o1_400,78962,1 6250,FRAMEQA44902,ramp,"what is the guy wearing a striped shirt and jeans , rides a skateboard up and launches himself through the air?",tumblr_n8sp7rpg971rcboh0o1_500,24370,0 6251,FRAMEQA21577,white,what is the color of the dress?,tumblr_njz7qqK5AO1u3g519o1_400,32233,2 6252,FRAMEQA48410,white,what is the color of the man?,tumblr_nl19j0KSvE1tcoa45o1_400,94306,2 6253,FRAMEQA8456,four,how many trim young men flex on stage?,tumblr_njn8iw5kKP1una83oo1_500,33829,1 6254,FRAMEQA28274,microphone,what is the girl with long blonde hair dancing and holding and smiling?,tumblr_nqvahqJXxD1ua2kc4o1_250,51308,0 6255,FRAMEQA39790,hallway,where is the teen trying to be scary?,tumblr_na95y0Ys5c1rjao7ro1_400,99035,3 6256,FRAMEQA1586,two,how many women is holding batons dance wildly on stage?,tumblr_ncom59mV8o1u08u4qo1_250,23222,1 6257,FRAMEQA29009,motorcycle,what does the man come off during a race?,tumblr_nrep9tsyF51tx8mn0o1_400,78229,0 6258,FRAMEQA40325,black,what is the color of the hair?,tumblr_nhlz3dnn231u5808to1_500,81813,2 6259,FRAMEQA2744,stick,what is the boy standing and twirling?,tumblr_ngv0l3gloB1try5kvo1_500,95598,0 6260,FRAMEQA37552,red,what is the color of the hat?,tumblr_ncz5bgkqTO1tkalc5o1_250,2024,2 6261,FRAMEQA21873,gun,what is the man rapidly firing?,tumblr_nc7t11scOH1tjmrqwo1_400,77615,0 6262,FRAMEQA52211,hat,what is the man removing and waving to an audience?,tumblr_nahq77DHbg1tv8d7ko1_400,12529,0 6263,FRAMEQA38716,dog,what is fighting with the raccoon in a toilet?,tumblr_ncfs8trHLG1slj978o1_400,76304,0 6264,FRAMEQA17044,white,what is the color of the man?,tumblr_nrjtdvdsMt1sdiz3bo1_400,33402,2 6265,FRAMEQA48794,mirror,where is the dark haired girl standing and looking?,tumblr_njrkhq4G421te8h2uo1_500,93844,3 6266,FRAMEQA36863,gum,what is the man chewing?,tumblr_narusznLKe1ti88nfo1_500,95611,0 6267,FRAMEQA52417,room,where is the young woman doing yoga poses?,tumblr_ndyrwzBubZ1ts3zgzo1_500,75732,3 6268,FRAMEQA12532,cigarette,what is the priest smoking and looking down?,tumblr_nkbu9cuFSt1tfe5fyo1_250,19499,0 6269,FRAMEQA10494,cart,where is the man waving a squash?,tumblr_nhdi1douhg1r03eaxo1_400,76259,3 6270,FRAMEQA36663,black,what is the color of the jacket?,tumblr_nd8y7flGO81sgg5k5o1_500,50950,2 6271,FRAMEQA39856,shoe,what is the girl walking on a roof top looses?,tumblr_nqkhzz8i841uzwc0eo1_500,92675,0 6272,FRAMEQA37090,dog,what sniffs the turtle and then gets bitten by it?,tumblr_na6t4gSzKE1tgetb4o1_400,47560,0 6273,FRAMEQA38330,three,how many women is this image of posing and acting silly?,tumblr_nrfrgqf2gd1uxi6bbo1_500,94380,1 6274,FRAMEQA13145,black,what is the color of the shirt?,tumblr_nc8vwm75GP1t34y55o1_500,34439,2 6275,FRAMEQA5034,car,what is changing lanes on a busy highway?,tumblr_noipe7K8wn1uvy8rfo1_500,87621,0 6276,FRAMEQA26639,bracelet,what is the person holding their phone and wearing?,tumblr_njpf8u9tA71u65utjo1_1280,77635,0 6277,FRAMEQA49058,ball,what is the brown and white dog chasing?,tumblr_n8s0xxT2ig1ssgyoro1_400,56060,0 6278,FRAMEQA10,white,what is the color of the guy?,tumblr_nbld3tfp061sj9i7fo1_500,85779,2 6279,FRAMEQA48642,chair,where is the young lady relaxing?,tumblr_nnkk7xhuSU1sa6u20o1_400,50845,3 6280,FRAMEQA19044,bleachers,what is the woman in the white shirt running up?,tumblr_nb9jajxPqO1tsl8rno1_500,93397,0 6281,FRAMEQA7053,dog,what is wearing large purple ears?,tumblr_nov6tduqos1uvi3rjo1_400,54480,0 6282,FRAMEQA9085,pot,where is the man spitting on something and putting it?,tumblr_nc4z54JieK1som6aeo1_250,18398,3 6283,FRAMEQA12458,room,where are two young people dancing?,tumblr_nafofu1EYY1t7yv08o1_400,2489,3 6284,FRAMEQA9038,two,how many dancers are sliding back to back?,tumblr_n95kw5hm8o1tfgg7jo1_500,102010,1 6285,FRAMEQA6649,black,what is the color of the man?,tumblr_n9yf90aSou1stgwlqo1_400,59433,2 6286,FRAMEQA27148,wheel,what is the man turning steering in his vehicle on a cloudy day?,tumblr_ndg61klBqW1tl5qj2o1_500,50284,0 6287,FRAMEQA38149,dress,what is the very cute girl showing?,tumblr_nr9nn2lztk1uaf3d2o1_250,2230,0 6288,FRAMEQA16184,two,how many guys are shaking hands?,tumblr_nqg0uj5LBQ1sn23iho1_400,53029,1 6289,FRAMEQA18262,ball,what does the girl keep basketball?,tumblr_lxm746fURS1r8upkio1_r1_500,91092,0 6290,FRAMEQA18759,butter,what is the goat being fed from a spoon?,tumblr_nhf2pkEfCK1ssgyoro1_400,70176,0 6291,FRAMEQA26587,two,how many dogs are playing with dolls in a room?,tumblr_ngu3mzFpwr1tdjuqvo1_400,67982,1 6292,FRAMEQA1899,white,what is the color of the button?,tumblr_nhelgy8a1k1u3sgaao1_250,73270,2 6293,FRAMEQA19963,two,how many men with fire ropes in their hands are fighting?,tumblr_nq5wjxq0M31s71nvbo1_400,45240,1 6294,FRAMEQA7498,two,how many cats are laying behind apples while a third cat is sleeping?,tumblr_nfcolpASZD1sht3fmo1_250,68601,1 6295,FRAMEQA50663,cat,what is sleeping and rubbing its eyes?,tumblr_ndso8nSpZU1slj978o1_250,36754,0 6296,FRAMEQA22678,gray,what is the color of the shirt?,tumblr_nebu2j0h941rssvv3o1_400,30886,2 6297,FRAMEQA12124,cat,"what is jumping out of the window , and it bounces off of a wall onto a table?",tumblr_n9uwiaBHQw1qhd5lfo1_400,25666,0 6298,FRAMEQA35850,two,how many little puppies are mimicking the toy falling?,tumblr_nnzlhp8DpG1tgouwlo1_500,38497,1 6299,FRAMEQA2891,five,how many men stand in the middle of a smokey forest scene?,tumblr_neupg2MUNK1qc41a1o1_1280,94292,1 6300,FRAMEQA14222,two,how many men are looking at each other as they are moving on a vehicle?,tumblr_n94ma8VGpr1qhd6ylo1_500,48315,1 6301,FRAMEQA13057,two,how many ladies are walking together at the party?,tumblr_nnvyjfAQdB1u4bltfo1_500,66578,1 6302,FRAMEQA8536,black,what is the color of the men?,tumblr_nnn4qtnGxr1tek63jo1_500,39140,2 6303,FRAMEQA17711,two,how many men are wrestling each other in an arena?,tumblr_nhq8bvxG6q1sk0i2mo1_250,55588,1 6304,FRAMEQA27911,two,how many men are talking right before one screams out loud?,tumblr_ndxifdb0gA1u08kkro1_400,33753,1 6305,FRAMEQA45156,guitar,what is the young man playing and singing and smiling?,tumblr_ncdfc4Icvr1r1ga5qo1_400,56612,0 6306,FRAMEQA30384,two,how many men are slamming themselves into the ground?,tumblr_n9owcumLu21tiyxk9o1_400,98117,1 6307,FRAMEQA42759,two,how many girls is wearing caps are trying to take a picture?,tumblr_ngws0aBHUj1slj978o1_400,40615,1 6308,FRAMEQA10975,two,how many men are laying down and putting their finger to their mouths?,tumblr_nkp3ocPFJJ1upr5mso1_400,65996,1 6309,FRAMEQA32640,train,what is crashing into the large metal block?,tumblr_nkwri28wKr1tm3clao1_400,27987,0 6310,FRAMEQA3009,car,where are the bunch of people singing while people are carrying the car?,tumblr_nqyed3Aeob1urf1roo1_400,56885,3 6311,FRAMEQA37444,hallway,where are two girls having a conversation?,tumblr_nk1z6y9MoU1qgw2r7o1_400,59922,3 6312,FRAMEQA48106,red,what is the color of the sweatshirt?,tumblr_nc9qsvK3cL1qzxt6io1_250,77850,2 6313,FRAMEQA44154,balls,what do two guys with long blonde streaked hair throw and bounce?,tumblr_nezwgxkYSL1trp7kao1_500,38597,0 6314,FRAMEQA13871,hedgehog,what lies in the ball in the water?,tumblr_nela0aVJkV1si2peso1_250,53402,0 6315,FRAMEQA37837,three,how many guys are posing for pictures together?,tumblr_nb8u1hK4Ac1sh75jso1_250,1929,1 6316,FRAMEQA36521,red,what is the color of the hair?,tumblr_nbc3f3YZyH1tbozp9o1_250,10891,2 6317,FRAMEQA12721,basement,where is the band dancing?,tumblr_nol17yj8DG1uvefqno1_500,62017,3 6318,FRAMEQA41779,white,what is the color of the shirt?,tumblr_nbstv7B4Ff1rf33qpo1_500,74408,2 6319,FRAMEQA19196,two,how many men are skating with each other?,tumblr_ngum4iDEja1rp3ki0o1_250,5300,1 6320,FRAMEQA20874,two,how many guitarists are playing and dancing in front of microphones?,tumblr_neybknCSaS1u0bmpoo1_400,17773,1 6321,FRAMEQA41783,three,how many men in suits are dancing on stage?,tumblr_na5rzqybN61te5frpo1_1280,45922,1 6322,FRAMEQA18268,cat,what nudges the lizard who then stops eating?,tumblr_neygedcDOt1tkhxdko1_400,46613,0 6323,FRAMEQA28873,two,how many men are singing and spinning around?,tumblr_ndg6jfOZY31rcwrblo1_400,33496,1 6324,FRAMEQA5396,car,where is the young girl adjusting her dark glasses?,tumblr_njh449BVt81u29slho1_500,87651,3 6325,FRAMEQA2628,black,what is the color of the hair?,tumblr_mwoklkYUdg1sfrgdbo1_400,52341,2 6326,FRAMEQA26784,two,how many men with a horse mask are looking at each other and hi five?,tumblr_n9hp20yyXi1ttuja3o1_400,65594,1 6327,FRAMEQA27539,cat,what is walking on the treadmill while watching food on a plate?,tumblr_n9mzyvftsL1the8uso1_400,46051,0 6328,FRAMEQA41180,library,where are people reading when a woman throws a book on the floor?,tumblr_no64gpVd5j1t047qfo1_400,60556,3 6329,FRAMEQA51196,dog,what is jumping on the truck dropping something then runs and the thing it dropped explodes?,tumblr_nc50ehFDSZ1tkpzw0o1_400,97524,0 6330,FRAMEQA7060,machine,what is the man dunking a basketball but falls down?,tumblr_nhfg2603rL1u5a5y1o1_400,79132,0 6331,FRAMEQA37052,eyeliner,what is talking and looks up?,tumblr_nhw74v6B9h1sk9xwto1_500,80167,0 6332,FRAMEQA43011,door,what is the man closing?,tumblr_neccfuJowv1t5z2hyo1_400,33757,0 6333,FRAMEQA39912,cat,what holds the beer and licks the can?,tumblr_ng2ar7n3F71u4v3ypo1_400,22058,0 6334,FRAMEQA8576,black,what is the color of the hair?,tumblr_no7mk5Fq5U1u6d8xwo1_250,13236,2 6335,FRAMEQA16352,paw,what did the cat use?,tumblr_nh97cpE0ME1u4v3ypo1_400,7646,0 6336,FRAMEQA13908,two,how many man is having the fun?,tumblr_nqq5oq8jTh1sfwa6ho1_400,4817,1 6337,FRAMEQA16622,dog,what are running through the shower of confetti in slow-motion?,tumblr_ml7ilcuyQt1ql2bpeo1_500,99994,0 6338,FRAMEQA51750,motorcycle,what is the man falling off after wrecking in the dirt?,tumblr_nhhmfoZ3lr1tx8mn0o1_400,55616,0 6339,FRAMEQA48785,kitten,what is stalking something on the floor?,tumblr_n8rkeb4Wyf1tbjfazo1_250,92043,0 6340,FRAMEQA48414,cigarette,what is the man lighting up?,tumblr_nbnsu0m0or1rig0zgo1_400,34066,0 6341,FRAMEQA11257,studio,where does the man throw a book behind him?,tumblr_njadd2WUH61tkdho6o1_400,25138,3 6342,FRAMEQA52993,black,what is the color of the jacket?,tumblr_nf9uh8qGX91theax5o1_400,66410,2 6343,FRAMEQA30086,stairs,how many while is the person doing a trick down backwards?,tumblr_n9r3z1nrFa1ti3vtqo1_400,88933,1 6344,FRAMEQA24035,black,what is the color of the hair?,tumblr_ndtha3ANlJ1tqurn0o1_250,9893,2 6345,FRAMEQA8204,cat,what is chewing on the plastic bag instead of its food?,tumblr_ncfjoeOSwk1r8pns9o1_400,16662,0 6346,FRAMEQA1316,cat,what is playing in the snow?,tumblr_nc2meimXrD1slwrsuo1_250,35720,0 6347,FRAMEQA41449,orange,what is the color of the hat?,tumblr_nd00a2dHuw1ryusrfo1_400,29961,2 6348,FRAMEQA2442,brown,what is the color of the fox?,tumblr_njq3ur8qv41unykvpo1_400,46132,2 6349,FRAMEQA42995,black,what is the color of the man?,tumblr_njy1c2EugU1u3ufkwo1_400,71063,2 6350,FRAMEQA13118,black,what is the color of the hair?,tumblr_ndi825xKE51u0jh8co1_400,63392,2 6351,FRAMEQA27391,red,what is the color of the bowl?,tumblr_nhskwbxgar1rseg36o1_250,3286,2 6352,FRAMEQA38578,cat,what is the young woman cuddling?,tumblr_nakevodx4L1s1txlxo1_400,32762,0 6353,FRAMEQA39064,car,where is the man holding a conversation with another man?,tumblr_nfglqfDg3L1u1lt1go1_400,61054,3 6354,FRAMEQA18992,blue,what is the color of the shirt?,tumblr_n8rex42OdN1rtdvdvo1_250,69293,2 6355,FRAMEQA13270,boxers,what are boxing in a ring?,tumblr_nc7o1juY5G1tm4jv9o1_250,23498,0 6356,FRAMEQA42019,white,what is the color of the looks?,tumblr_nc1slkO3ZM1s8jkazo1_250,25524,2 6357,FRAMEQA46739,black,what is the color of the man?,tumblr_nd4l35ZHWA1sht3fmo1_250,25271,2 6358,FRAMEQA28629,black,what is the color of the woman?,tumblr_nez3xrdHf41tos9avo1_500,82804,2 6359,FRAMEQA7571,two,how many similarly dressed men are speaking into microphones before pointing at each other and laughing?,tumblr_neqo62WkUz1u38y0ao1_500,78143,1 6360,FRAMEQA36989,two,how many young man side by side are talking about something then looking at each other?,tumblr_nqscoi71bd1upirrro1_500,57842,1 6361,FRAMEQA16828,three,how many people are playing guitar on stage?,tumblr_nre0r7j8Cd1r9n1lyo1_400,16346,1 6362,FRAMEQA16852,two,how many guys are on stage laughing at each other?,tumblr_ncfuxdjqNq1sn0bdyo1_500,85407,1 6363,FRAMEQA45273,two,how many men are stood performing the song?,tumblr_naly48pXks1t3eui8o1_500,2542,1 6364,FRAMEQA14724,dog,what starts to hump the little girls leg and she runs out of the room?,tumblr_njqtbeGRwd1tmrlzco1_400,19492,0 6365,FRAMEQA8691,white,what is the color of the boys?,tumblr_ngzrykxVoi1u5bwv8o1_500,65459,2 6366,FRAMEQA4332,room,where is the girl doing a funny expression?,tumblr_neylu1tP051swonpwo1_500,70974,3 6367,FRAMEQA36139,shirt,"what is the man , wearing , is waving his hand?",tumblr_ng9rdfabh31slj978o1_250,24340,0 6368,FRAMEQA1727,black,what is the color of the man?,tumblr_n8znm5WZag1rr3ks0o1_500,44906,2 6369,FRAMEQA30838,cigarette,what is the hand placing into a woman 's mouth?,tumblr_nqx9eiAV6R1tfs6x6o1_250,67714,0 6370,FRAMEQA27759,cat,"what jumps to the door latch , opens the door , and the cat and four dogs enter the building through the door?",tumblr_ngzhkq39Nz1twdzc1o1_250,8947,0 6371,FRAMEQA26791,kitchen,where are the man and a girl hugging?,tumblr_nacqlmg29U1sn53c3o1_500,76786,3 6372,FRAMEQA39944,right,what is the bird catching from the water?,tumblr_ng4pc6U2ib1rmvdlro1_400,31969,0 6373,FRAMEQA26794,chair,where is the cute dog sitting?,tumblr_njuk1huMBo1unlpflo1_400,63604,3 6374,FRAMEQA2946,blue,what is the color of the coat?,tumblr_ncr1ueQn9z1t5lviko1_250,27112,2 6375,FRAMEQA5994,cat,what is sleeping on top of a lizard?,tumblr_nlwyy9St4p1tjqvkeo1_250,36683,0 6376,FRAMEQA28553,car,where are two men sitting?,tumblr_nevu1x7R4F1tzeksuo1_400,67414,3 6377,FRAMEQA15502,two,how many people are holding each other and dancing?,tumblr_nki1ahTcY11sxjf4ho1_400,34681,1 6378,FRAMEQA30,white,what is the color of the shirt?,tumblr_nfao2nqkHJ1sslh00o1_400,61636,2 6379,FRAMEQA3770,two,how many friends are arm wrestling on a green couch?,tumblr_ngn0ttCSb51svos5ho1_400,36865,1 6380,FRAMEQA48332,black,what is the color of the shirt?,tumblr_nanwiiF2PH1srp6ljo1_500,97586,2 6381,FRAMEQA17138,three,how many people are climbing stairs?,tumblr_nay0kzAbkR1twcgnlo1_400,27538,1 6382,FRAMEQA2622,four,how many men is wearing a suit with dark hair gesticulate?,tumblr_npxdqeQDlj1rndm3wo1_400,82713,1 6383,FRAMEQA35117,two,how many person in a room are dancing a song?,tumblr_ngmnfpKAs41u3y59to1_250,34592,1 6384,FRAMEQA16391,white,what is the color of the man?,tumblr_nqd1emIDJp1so7p3zo1_400,41210,2 6385,FRAMEQA26886,two,how many young persons are performing the dark parade?,tumblr_n9buvpXnDu1rhs3x9o1_400,58024,1 6386,FRAMEQA1258,white,what is the color of the woman?,tumblr_nk1f6dC53y1u5g7vro1_250,46794,2 6387,FRAMEQA13647,brown,what is the color of the hair?,tumblr_npjox4Klua1uwrqzco1_400,28629,2 6388,FRAMEQA35662,two,how many cars are driving with one in the front and one in the back?,tumblr_nr9op5Q2rg1unyhx2o1_400,78234,1 6389,FRAMEQA50574,mirror,where does the woman scream then grabs her head?,tumblr_ncxca0P4Bi1tdmffyo1_250,46324,3 6390,FRAMEQA13805,cake,what did the man catch?,tumblr_noq334cIjl1uw7253o1_400,85509,0 6391,FRAMEQA45387,dog,what is the cat drinking something and is biting her?,tumblr_n8hkl5Vn171tgetb4o1_250,27225,0 6392,FRAMEQA24663,two,how many guys is this standing under an umbrella and talking to someone?,tumblr_ngrlu3nb1T1u0sggco1_500,93562,1 6393,FRAMEQA36314,guitar,what is the man playing and holding?,tumblr_ngfkf6PEqV1u287g3o1_500,34368,0 6394,FRAMEQA2397,cat,what is the woman with a white shirt hugging?,tumblr_ngx8i4P8R61rdm91ko1_400,32373,0 6395,FRAMEQA20998,room,where is the man dancing?,tumblr_nd38eemAiK1ttd1wro1_400,55764,3 6396,FRAMEQA43729,hat,what is the man singing and falls off his head?,tumblr_nnw21g7QP51tmcb1ho1_500,61641,0 6397,FRAMEQA37000,flashlights,what are two men holding and talking to each other?,tumblr_nr583sbl9h1uasmbpo1_250,49822,0 6398,FRAMEQA25621,pet,what is the boy wearing suit holding?,tumblr_n8ptmsvc1I1th4an4o1_500,69752,0 6399,FRAMEQA5918,guitar,what is the man wearing an orange shirt is playing?,tumblr_n9mxo7lBDU1ttpy61o1_250,10604,0 6400,FRAMEQA41606,four,how many elephants play music in an open field?,tumblr_npwfpv91tK1uyo4nfo1_500,61661,1 6401,FRAMEQA35236,vehicle,what is cutting off another vehicle?,tumblr_nesksmxUsA1rdfljoo1_500,76053,0 6402,FRAMEQA8706,bear,what is the man wearing sunglasses carries?,tumblr_ncq78pQzfO1qzo3n9o1_500,59958,0 6403,FRAMEQA41873,gray,what is the color of the shirt?,tumblr_nf9mfgbbZH1shbho8o1_500,68954,2 6404,FRAMEQA18361,room,where is the lady smiling and waving?,tumblr_n9o6mgHR5z1qarzako1_400,17506,3 6405,FRAMEQA34583,pastry,what is the boy holding out and also eating it?,tumblr_ne1q71Yuov1u1xquho1_500,88088,0 6406,FRAMEQA45570,dog,what is getting frightened by the jack in a box?,tumblr_nfpvh9ebBo1r7tnfno1_500,47623,0 6407,FRAMEQA1407,car,"what speeds up to catch up to another car , but then the trailing car is shown a weapon and the car falls back?",tumblr_no95meGFVR1uuv7imo1_400,39488,0 6408,FRAMEQA13194,horse,what is running around in the dark?,tumblr_n8u2swNpQV1qe2thio1_500,73413,0 6409,FRAMEQA27338,brown,what is the color of the hair?,tumblr_nqy7nuWJKL1sgulfgo1_400,82122,2 6410,FRAMEQA26792,two,how many people are doing the ballet dance on a stage?,tumblr_n9uqttYJz61rwiud9o1_400,20999,1 6411,FRAMEQA26666,brown,what is the color of the hair?,tumblr_njnzf3XbEh1r9dv8go1_250,23600,2 6412,FRAMEQA19306,tuxedo,what does the man dance and wears?,tumblr_ne12dpfUWZ1rbkthoo1_400,13174,0 6413,FRAMEQA6931,car,"what is driving down the road , begins to flip over and over?",tumblr_n9pfyci2Hk1tx8mn0o1_400,63217,0 6414,FRAMEQA43696,gray,what is the color of the dress?,tumblr_nklw8b3eSg1tq4wu3o4_400,77068,2 6415,FRAMEQA25422,cat,what is curiously playing with an owl and pokes it in the face?,tumblr_nnx2foZwmV1tpg4boo1_250,50694,0 6416,FRAMEQA50070,guitar,what is the man wearing black sings and plays?,tumblr_npwecrQwp81uy65puo1_500,85845,0 6417,FRAMEQA50212,hat,what is the young man with long hair wearing?,tumblr_ncz16vtohx1tmhwpbo1_400,42438,0 6418,FRAMEQA18182,blue,what is the color of the shirt?,tumblr_n8xazkoKve1tzsy9xo2_250,1615,2 6419,FRAMEQA49105,curtain,what is the man pulling aside while talking on a radio?,tumblr_nb19n3as2p1spr0qzo1_500,72826,0 6420,FRAMEQA36571,ball,what is the dog sniffing?,tumblr_njyb2pcEGb1tlmquvo1_400,83456,0 6421,FRAMEQA50907,two,how many young well dressed men are posing for something?,tumblr_nb9ztnMJ2s1ti8b6yo1_500,26328,1 6422,FRAMEQA20645,black,what is the color of the suit?,tumblr_nffu3gBCBO1s71sn6o1_400,63548,2 6423,FRAMEQA2098,bird,what is the man getting off of an elevator and shooting?,tumblr_nqtjxp216t1rkak8mo1_500,14818,0 6424,FRAMEQA12459,white,what is the color of the blanket?,tumblr_ndpfbiRxhh1taqkiao1_500,40287,2 6425,FRAMEQA47637,fork,what is man throwing at another man?,tumblr_nhxb1prPSe1trrwb4o1_400,86581,0 6426,FRAMEQA46245,trick,what does the man do with a fence?,tumblr_nep4b0pXnK1u26rdio1_500,57888,0 6427,FRAMEQA34929,two,how many women are laughing together over the card?,tumblr_nazb3hJkDh1rf0qrxo1_400,59669,1 6428,FRAMEQA37875,two,how many topless men say something at each other as one of them walks by?,tumblr_nhqa0w4T6e1u7c3syo1_250,90930,1 6429,FRAMEQA48452,two,how many woman make faces and laugh with each other?,tumblr_nczmk3kCg81u06q6wo1_400,30869,1 6430,FRAMEQA9305,white,what is the color of the shirt?,tumblr_nba6uwDJXc1tat768o1_400,8874,2 6431,FRAMEQA11171,black,what is the color of the jacket?,tumblr_nf56f9mTiv1u3akejo1_400,82219,2 6432,FRAMEQA38422,two,how many cars spin out while going around the curve?,tumblr_nr0uk6lrdI1raliteo1_400,79250,1 6433,FRAMEQA21063,gun,what is the man looking forwards and another man holds?,tumblr_nav0bbGnOb1snbe4ao1_400,65875,0 6434,FRAMEQA45051,red,what is the color of the top?,tumblr_ng7we3c0mA1qkbcjgo1_250,3195,2 6435,FRAMEQA30231,bed,where does the man stretch around?,tumblr_n9m54cPuul1s7u6edo1_500,81840,3 6436,FRAMEQA49599,drink,what did the man pour all over himself?,tumblr_nkj564CLrz1u7s4oro1_400,41105,0 6437,FRAMEQA5727,guitar,"what is the bald man in makeup screaming and playing , he looks away?",tumblr_njs6ceesFH1tll6f9o1_400,67344,0 6438,FRAMEQA33549,roof,what does the young man reduce?,tumblr_ncyo5jIXCe1tk9tvao1_500,80171,0 6439,FRAMEQA18357,purple,what is the color of the shirt?,tumblr_najaxvpaHO1tc98tio1_250,727,2 6440,FRAMEQA12962,white,what is the color of the dress?,tumblr_njrhi6GShl1s28ej9o1_500,62663,2 6441,FRAMEQA16901,mice,what are sitting together with eyes open?,tumblr_nc260rtUoT1t2v6v7o1_250,2350,0 6442,FRAMEQA20676,sunglasses,what is the guy wearing and drinking a beer?,tumblr_nr7badeW1R1uaavsyo1_500,73284,0 6443,FRAMEQA470,restroom,where are three people dancing?,tumblr_nh9h3dC7Wb1u6bdo9o1_400,54185,3 6444,FRAMEQA42809,blue,what is the color of the mat?,tumblr_nb669dto3V1sqr1umo1_500,80078,2 6445,FRAMEQA18714,two,how many men sit together in the dark while wearing headphones?,tumblr_nfjubkFVUp1sorauco1_400,94513,1 6446,FRAMEQA12297,black,what is the color of the clothes?,tumblr_nc37dloqbL1rq5x90o1_500,17468,2 6447,FRAMEQA128,mirror,where is the man checking out his appearance?,tumblr_njq5e3s3tS1tkkgpso1_500,49408,3 6448,FRAMEQA38148,fish,what nibbles on some food and disappears into a hole?,tumblr_nay1v5Pvpi1qg0cppo1_250,19061,0 6449,FRAMEQA20028,car,what is the man driving and talking or singing?,tumblr_n9427c7gK51te8576o1_500,99045,0 6450,FRAMEQA4188,two,how many women hug as the knight walks away?,tumblr_nk25aqnmAB1u33e4bo1_500,71276,1 6451,FRAMEQA37360,two,how many men is this image of in shorts fighting?,tumblr_nc7o1juY5G1tm4jv9o1_250,23498,1 6452,FRAMEQA1716,cat,what fell asleep suddenly on the couch?,tumblr_n8wivmGs4P1sc3yqlo1_250,41061,0 6453,FRAMEQA16648,blue,what is the color of the shirt?,tumblr_nbl9upHHOv1rqr9fgo1_400,44271,2 6454,FRAMEQA44510,bubble,what is the blonde girl standing and blowing?,tumblr_ng4zg8XziB1tclwv6o1_100,17155,0 6455,FRAMEQA15024,face,what is the guy making?,tumblr_nkm1nnj4Wi1u7dd45o1_250,5932,0 6456,FRAMEQA28185,shark,what is swimming inside of the tank?,tumblr_nbplrtZnS81tbjfazo1_400,41760,0 6457,FRAMEQA30857,dog,what sits with another dog and howls?,tumblr_nqvuy6gtIQ1u9fb2po1_250,36656,0 6458,FRAMEQA4979,armchair,where does the fat ginger cat recline?,tumblr_nai6yrCMc21tikvlso1_250,30763,3 6459,FRAMEQA49754,two,how many men are doing the twist dance simultaneously?,tumblr_nawj17CSHS1tkt0dwo1_250,6706,1 6460,FRAMEQA46672,umbrella,what is the man in a blue shirt twirling?,tumblr_nezd8smQVJ1tmefd5o1_250,252,0 6461,FRAMEQA38367,red,what is the color of the bus?,tumblr_ngh82hywbz1s4yzawo1_400,9181,2 6462,FRAMEQA15787,white,what is the color of the scores?,tumblr_nbe1zfc8PP1tkras0o1_500,62556,2 6463,FRAMEQA3189,box,"where does the jack pop and scares a small dog , who jumps away?",tumblr_nfpvh9ebBo1r7tnfno1_500,47623,3 6464,FRAMEQA6187,cookie,what is the man in a withe suit eating?,tumblr_npno7hrxMQ1uy0616o1_r1_400,38009,0 6465,FRAMEQA10966,two,how many people are sitting in the car?,tumblr_njvyypTKbV1uo3x7lo1_400,87486,1 6466,FRAMEQA33657,black,what is the color of the dress?,tumblr_n9cko3DzkV1t9xq5ho1_400,33545,2 6467,FRAMEQA16749,dog,what is looking up?,tumblr_nh0sftU2oI1sgc1txo1_400,1442,0 6468,FRAMEQA46466,rag,where is the guy holding a dog while running and screaming?,tumblr_nbrmv0Ds3t1tc97obo1_500,71433,3 6469,FRAMEQA16754,black,what is the color of the man?,tumblr_nb3v70H86R1r3ic5yo1_500,61566,2 6470,FRAMEQA45256,picture,what is the dolphin painting with its mouth?,tumblr_nb2mzb98AK1tkpzw0o1_400,21285,0 6471,FRAMEQA48181,dog,what is playing with the cat who is eating?,tumblr_n8hkl5Vn171tgetb4o1_250,27225,0 6472,FRAMEQA31436,two,how many people are holding each other and one kisses the other person?,tumblr_nam5vurNJs1qzq1wdo1_250,1445,1 6473,FRAMEQA23625,black,what is the color of the man?,tumblr_nf5yquethl1rcl2ewo1_1280,82834,2 6474,FRAMEQA18754,blue,what is the color of the ocean?,tumblr_nr39gaCvZn1uybeupo1_400,85471,2 6475,FRAMEQA15869,car,what hits another car and causes it to spin around?,tumblr_nbcrueGce81tx8mn0o1_400,82134,0 6476,FRAMEQA48987,red,what is the color of the hair?,tumblr_ngost8GMhb1t5gkiuo1_250,3059,2 6477,FRAMEQA10598,sunglasses,what is the young man taking off?,tumblr_ncnrq6JtWW1tsq66oo1_500,90856,0 6478,FRAMEQA52026,headband,"what is the man , wearing , talks and raises on eyebrow?",tumblr_nk1mufq2Ab1sico5po1_250,6051,0 6479,FRAMEQA11393,black,what is the color of the man?,tumblr_nc6et7xaK01tx791go1_250,2153,2 6480,FRAMEQA33605,black,what is the color of the cap?,tumblr_ndaot5SytE1tuzzkvo1_400,32733,2 6481,FRAMEQA44306,room,where is the person stood up?,tumblr_nddq9zmcQL1tmp9jpo1_500,85009,3 6482,FRAMEQA15398,room,where is the cat biting some?,tumblr_nd59g8nitC1qjpmwio1_500,43150,3 6483,FRAMEQA41155,two,how many men are embracing as the crowd watches?,tumblr_nfx12yL0PW1r6pekco1_250,19311,1 6484,FRAMEQA16007,white,what is the color of the sheets?,tumblr_nqaqp0wsgy1tpg4boo1_400,74024,2 6485,FRAMEQA8567,two,how many men walked into an office?,tumblr_nbss3cYIpi1sgwg9go1_400,45435,1 6486,FRAMEQA24480,white,what is the color of the underneath?,tumblr_neqyaxfZfv1ry1ioco2_500,97316,2 6487,FRAMEQA52966,bicycle,what is he riding along the wall of a stairwell?,tumblr_nh3ayu9QTp1u5u404o1_400,61039,0 6488,FRAMEQA30430,white,what is the color of the shirt?,tumblr_nfbdq1Bpfa1so39joo1_400,43468,2 6489,FRAMEQA33743,rabbit,what is sitting on the towel and another rabbit is running in circles?,tumblr_nc2gpfzSk21tk2ngvo1_250,13592,0 6490,FRAMEQA3850,two,how many soccer players are fist bumping each other?,tumblr_nq82kjUdyZ1rqv2y0o1_400,46828,1 6491,FRAMEQA3623,room,where does the man drum a beat and dances danced?,tumblr_ngcotwcexW1u1teqeo1_400,8581,3 6492,FRAMEQA7218,bear,what is running and sliding across ice?,tumblr_ni3sk8Rk081u8orsuo1_250,36559,0 6493,FRAMEQA47060,ball,what is getting kicked into the goal?,tumblr_nrgprzOCNt1ua2xwko1_250,90417,0 6494,FRAMEQA49167,dog,what is being pushed on the floor?,tumblr_nrexu1YS0E1uz06r7o1_400,16261,0 6495,FRAMEQA25389,room,what is the young doctor entering through a door?,tumblr_nch7clLs5L1tmllzbo1_250,47113,0 6496,FRAMEQA44153,bed,where are two man dancing?,tumblr_naa11tbBvx1tebyg2o1_400,62578,3 6497,FRAMEQA33904,two,how many men with glasses of beer in their hands touch them together?,tumblr_nbnqliX1Xy1tgwlf5o1_500,77595,1 6498,FRAMEQA33453,cloak,where does the cartoon character look around?,tumblr_nko0d0GuMv1s8hdzqo7_250,51290,3 6499,FRAMEQA18141,dog,what is playing with the white kitten?,tumblr_nhtqa26yvr1tjhld9o1_400,19224,0 6500,FRAMEQA41889,white,what is the color of the shirt?,tumblr_nbpp9wHoQd1sq7kg0o1_400,36184,2 6501,FRAMEQA46194,dog,what is licking the woman 's face?,tumblr_njdegqHsrc1unoxe4o1_250,15245,0 6502,FRAMEQA33994,motorcycle,"what hits the back of a car , then the rider lands on top?",tumblr_nam1c5I1j61tdjuqvo1_400,46061,0 6503,FRAMEQA21366,white,what is the color of the hamster?,tumblr_ne1ae8GExo1tkkgpso1_400,22827,2 6504,FRAMEQA2849,two,how many girls are talking to each other?,tumblr_nkns7cDp5D1swk6pzo6_250,41204,1 6505,FRAMEQA6969,dog,what is licking the girl in her face?,tumblr_ne2eksOOna1smdw0io1_400,28461,0 6506,FRAMEQA28668,guitar,what is the man playing in front of a crowd?,tumblr_nnvqr0CYdX1qek1oqo1_540,93641,0 6507,FRAMEQA551,two,how many men are trying to high five but misses?,tumblr_nqy0wwLGsd1tl934lo1_250,51764,1 6508,FRAMEQA47259,white,what is the color of the hair?,tumblr_nqm6cyy9v01uyse67o1_400,87339,2 6509,FRAMEQA30437,red,what is the color of the shirt?,tumblr_niwegtvbzZ1u9u0ofo1_1280,31860,2 6510,FRAMEQA20643,purple,what is the color of the clothes?,tumblr_ncih67bNUL1smlaa6o1_250,96458,2 6511,FRAMEQA10289,two,how many girls smiled?,tumblr_ngjv0nLZVq1rehrt3o1_500,90525,1 6512,FRAMEQA48549,butterfly,what is the young girl chasing?,tumblr_naxpitJ4Nf1ssppoho1_250,51436,0 6513,FRAMEQA37632,car,where are the man and woman sitting?,tumblr_njvyypTKbV1uo3x7lo1_400,87486,3 6514,FRAMEQA36029,red,what is the color of the t-shirt?,tumblr_nbcdx0zvW21t1tf12o1_400,79153,2 6515,FRAMEQA7602,guitar,what is the young oriental person strumming and watching someone who is pointing at the guitar?,tumblr_n9o0vbrAQf1qedx60o1_500,94470,0 6516,FRAMEQA43897,cat,what puts his paws on a screen?,tumblr_nobxqkQ9G11tpg4boo1_250,22695,0 6517,FRAMEQA44842,two,how many young boys with glasses are eating pizza?,tumblr_nfl2gcItVI1tl3ivmo1_500,95859,1 6518,FRAMEQA547,black,what is the color of the woman?,tumblr_njb0ljx8qq1u92e13o1_250,47045,2 6519,FRAMEQA28707,cars,what taillights shine red in the darkness?,tumblr_ncclh5CTka1th986vo1_400,3350,0 6520,FRAMEQA1501,wheel,what is the man twisting steering around?,tumblr_nnl9ypbvvF1usyjg5o1_500,59362,0 6521,FRAMEQA19421,room,where is the man walking around?,tumblr_nhmuiozIZa1u6k7wlo1_400,14574,3 6522,FRAMEQA41689,two,how many guys are showing from feet to heads?,tumblr_nl0dca3y0r1u8ogblo1_500,97415,1 6523,FRAMEQA3267,car,what is spinning around making dust on the road?,tumblr_nbu0bmRkFb1tya5iuo1_500,71634,0 6524,FRAMEQA14994,two,how many friends are talking on top of a very tall roof?,tumblr_nl24faq4tH1uo8kgzo1_500,81844,1 6525,FRAMEQA45824,toys,what is the bearded man wearing glasses is hugging?,tumblr_nqvj8l4kcT1uq7zwjo1_400,63226,0 6526,FRAMEQA12732,green,what is the color of the woman?,tumblr_n96ushKsHQ1rktim0o1_400,28886,2 6527,FRAMEQA8849,mouse,what is the snake chasing?,tumblr_n9emuzqIhv1sk96t7o1_400,42486,0 6528,FRAMEQA44750,turns,what around then walks away?,tumblr_nl2ceoBbcE1uot1e7o1_400,64822,0 6529,FRAMEQA49545,white,what is the color of the coat?,tumblr_ng6hjfQRmk1tyafo7o1_500,85849,2 6530,FRAMEQA48985,blue,what is the color of the suite?,tumblr_nf78d4nUie1u08opmo1_250,6461,2 6531,FRAMEQA27324,fish,what does the cat chase thrown by a toy that walked toward it?,tumblr_nofh1qIEXw1tfnm8co1_400,37950,0 6532,FRAMEQA8494,two,how many men try to high five?,tumblr_nct52sYe2r1u0sv5po1_500,95749,1 6533,FRAMEQA36790,black,what is the color of the hair?,tumblr_njxgho5NhF1ta4f2po1_500,76782,2 6534,FRAMEQA38201,white,what is the color of the mask?,tumblr_ncqq12FqgR1u0rv50o1_500,75994,2 6535,FRAMEQA44852,two,"how many men is wearing black coats , are talking to each other?",tumblr_nmidu9wwmu1urnbuuo1_250,84514,1 6536,FRAMEQA19815,cigarette,what is the guy wearing a suit is smoking?,tumblr_na7fsb2EGT1tirmpjo1_500,36074,0 6537,FRAMEQA36133,white,what is the color of the t-shirt?,tumblr_ngzyd2qp8B1t4dymjo1_400,28739,2 6538,FRAMEQA51163,blue,what is the color of the shirt?,tumblr_nd0khmXlwt1t7hjz2o1_250,27110,2 6539,FRAMEQA18887,elephant,what is receiving the banana?,tumblr_n9rldadoip1twznkvo1_250,41985,0 6540,FRAMEQA18017,car,what is the young boy stopping and turning around?,tumblr_nh90mv4OUV1u5g7cbo1_500,97835,0 6541,FRAMEQA29919,rats,what are running around on the person 's shoulder?,tumblr_nguvutkldj1rs0i14o1_400,46819,0 6542,FRAMEQA44678,three,how many girls are singing and dancing on stage?,tumblr_ngtjb7U3aq1u5fjsuo1_500,92397,1 6543,FRAMEQA30660,black,what is the color of the clothing?,tumblr_nh5xfmyhJn1romov5o1_500,73928,2 6544,FRAMEQA18626,guitar,what is the boy playing?,tumblr_ncs3d4Hye11tb92v8o1_400,59364,0 6545,FRAMEQA47905,purple,what is the color of the hat?,tumblr_n9p0i1XkpA1tizlzoo1_500,91365,2 6546,FRAMEQA45112,phone,what is the young man sitting in a car holds up?,tumblr_no5orm7PbC1u91nf3o1_500,93254,0 6547,FRAMEQA31487,cat,what is the woman with dyed red hair stroking?,tumblr_nga6l7burm1u2umgdo1_400,30690,0 6548,FRAMEQA33709,one,how many guy is pointing?,tumblr_n8rmaa7zrF1trm2z1o1_250,27282,1 6549,FRAMEQA17432,necklace,what is the boy with dark shirt showing off?,tumblr_njr6h2kNOi1rkcbb8o1_400,691,0 6550,FRAMEQA38107,two,how many dark haired girls are standing and making gestures?,tumblr_n9hmg4UEOf1thtos8o1_400,33561,1 6551,FRAMEQA44174,road,where does the guy jump and kicks a ball?,tumblr_nabhgxpYfE1tjaic7o1_r1_400,26368,3 6552,FRAMEQA22329,blue,what is the color of the shirt?,tumblr_ncpf71w8u61tm3xzzo1_500,71590,2 6553,FRAMEQA49633,tires,what is the black car spinning and causing a lot of dust?,tumblr_nhpp9aIKCk1tuoc50o1_400,39490,0 6554,FRAMEQA44919,puppy,what falls off of the tiny couch and rolls over?,tumblr_nap0e8yhmD1scq7eko1_250,47281,0 6555,FRAMEQA29480,three,how many guys make the hand signal in the air?,tumblr_ng3gmzTe6F1qlnl24o1_400,44882,1 6556,FRAMEQA27050,black,what is the color of the clothing?,tumblr_n9hmg4UEOf1thtos8o1_400,33561,2 6557,FRAMEQA50512,ball,what are two dogs chasing while dragging a young boy?,tumblr_ng8hdgB5OO1slj978o1_400,92423,0 6558,FRAMEQA47971,green,what is the color of the hair?,tumblr_n96iz1D0NJ1qgmxzoo1_400,60467,2 6559,FRAMEQA1817,telephone,what is the man holding to his ear?,tumblr_nb6n02JOCF1tkifulo1_400,72339,0 6560,FRAMEQA39374,two,how many wrestlers are competing in the ring?,tumblr_natftdaDTB1rwc3zyo1_400,25651,1 6561,FRAMEQA36472,two,how many men are laughing in front of a computer?,tumblr_ncdgwaJUcv1tc19umo1_400,38005,1 6562,FRAMEQA25022,black,what is the color of the cup?,tumblr_ng8k3m3Omi1tmemc1o1_250,15943,2 6563,FRAMEQA52365,cigarette,what is the man smoking and blowing the smoke out of his nose?,tumblr_ne5y7kffb81tg2dlwo1_400,12761,0 6564,FRAMEQA18795,blue,what is the color of the shirt?,tumblr_nbl3qsGZRT1s7cqs5o1_250,233,2 6565,FRAMEQA71,cat,what is scared by the fake tarantula?,tumblr_no19cefILe1un7qbto1_400,37818,0 6566,FRAMEQA51497,cat,what is playing with the baby 's arm?,tumblr_no18ffxNDq1tpg4boo1_400,34561,0 6567,FRAMEQA35496,five,how many males are sitting on the curb?,tumblr_nepdv7f0qN1s0566ao1_1280,94729,1 6568,FRAMEQA30257,cat,what is falling off the firetruck they are riding on?,tumblr_nq60huObBd1tk2ngvo1_400,15603,0 6569,FRAMEQA2774,pug,what is licking the window pane?,tumblr_nollsdsfZs1sm6bgxo1_400,31771,0 6570,FRAMEQA15755,lollipop,what is this man sucking and walking down the street?,tumblr_n9tm6jPJCb1t2wqhqo1_500,101221,0 6571,FRAMEQA50429,syrup,what is being poured onto the stack of pancakes?,tumblr_njwzuum2ZL1uo2vcso1_500,66772,0 6572,FRAMEQA33953,blue,what is the color of the flame?,tumblr_nbf741ongs1spn5deo1_400,24465,2 6573,FRAMEQA47547,two,how many people stop playing guitar and look ahead?,tumblr_nd8s1tUL2H1trp7kao1_500,26600,1 6574,FRAMEQA34310,bananas,what did the baby elephant eat?,tumblr_n9rldadoip1twznkvo1_250,41985,0 6575,FRAMEQA30940,black,what is the color of the backdrop?,tumblr_neot4s0EBL1s2ls31o1_400,32047,2 6576,FRAMEQA42403,woman,what is pointing to the map and talking?,tumblr_ndzmhiHo1X1tdmffyo1_250,18486,0 6577,FRAMEQA4895,two,how many singers perform on stage and look at each other?,tumblr_nezwxeSAOH1u0z49so1_500,95964,1 6578,FRAMEQA13232,black,what is the color of the coats?,tumblr_nmidu9wwmu1urnbuuo1_250,84514,2 6579,FRAMEQA34798,red,what is the color of the jacket?,tumblr_ng2qlbUIlP1ttgu7yo1_400,12426,2 6580,FRAMEQA52180,bed,where is the girl laying and a man walks away?,tumblr_ncsabwaZow1qiwatvo1_250,70411,3 6581,FRAMEQA664,cat,what is turning the page of a book for a girl?,tumblr_nal4phaW6f1ti0272o1_500,94261,0 6582,FRAMEQA4284,two,how many women are kissing?,tumblr_n9b7fuvZcB1thc5tio1_250,45636,1 6583,FRAMEQA2202,white,what is the color of the shirt?,tumblr_n91vygXxvR1skzoijo1_250,21222,2 6584,FRAMEQA16635,user,what does this show doing a rope climbing exercise?,tumblr_nfoe8oymgx1tt3dbuo1_250,72031,0 6585,FRAMEQA10905,taxi,"what is the guy wearing black clothing , stops and gets in?",tumblr_ncfhy9iq4a1tj3r8so1_500,87985,0 6586,FRAMEQA29547,two,how many boys is wearing black pants were laughing together?,tumblr_n8xoi33thn1tuoukno1_250,13455,1 6587,FRAMEQA3725,red,what is the color of the hat?,tumblr_ne4kuuZpVa1rlngqxo1_400,62540,2 6588,FRAMEQA20709,black,what is the color of the suit?,tumblr_na9cdkxspS1s90mmno1_250,53558,2 6589,FRAMEQA32216,cane,what is the man with dark hair unfolding?,tumblr_nca7t61SCR1tmu5ofo1_500,35588,0 6590,FRAMEQA8722,guitar,what is the man in sunglasses playing?,tumblr_nf7t5vzyxn1s8a8w8o1_400,63065,0 6591,FRAMEQA24421,rope,what is the woman holding and surrounded by smoke?,tumblr_ne30n9fzMt1tpkltho1_250,46325,0 6592,FRAMEQA40355,sunglasses,what is the black haired woman wearing?,tumblr_nc5xkfbVPQ1tsmc92o1_400,50561,0 6593,FRAMEQA12535,car,what is the girl with dark hair washing?,tumblr_npgic1jBgU1utmlppo1_500,97357,0 6594,FRAMEQA45778,cat,what is the man petting?,tumblr_nc8b7fU5a11s0svh1o1_500,60230,0 6595,FRAMEQA8489,two,how many men in a band are performing on stage?,tumblr_nb1xg89xFX1sdbrm9o1_400,66371,1 6596,FRAMEQA33565,two,how many young men is wearing black vests are dancing?,tumblr_nafbe4YHCY1tyuwrso1_500,101490,1 6597,FRAMEQA25232,two,how many men walk together?,tumblr_n9le1merj21s5t0x8o1_400,45266,1 6598,FRAMEQA17295,black,what is the color of the horse?,tumblr_n9t8801hEM1qc5bc7o1_500,74344,2 6599,FRAMEQA9994,rats,what are boxing each other?,tumblr_nd0odbifZp1tihaueo1_250,18445,0 6600,FRAMEQA42202,black,what is the color of the hat?,tumblr_n9wtxekbRV1s6f9ago1_500,71312,2 6601,FRAMEQA25046,costume,what is an animal riding on top of a robot and wearing?,tumblr_nap9tkwsHK1s50jqco1_250,50841,0 6602,FRAMEQA37422,guitar,what is one boy playing?,tumblr_nbjiylGWRL1tlsqhto1_250,91085,0 6603,FRAMEQA32157,two,how many guys are staring off into the distance?,tumblr_nchcsb5jYa1tz9jaqo1_250,7935,1 6604,FRAMEQA26142,two,how many boys are looking out the window of a train?,tumblr_ni0mb2u6OI1taix0oo1_400,59232,1 6605,FRAMEQA34096,hat,what is the young person biting?,tumblr_njxn5rSldv1u9pp05o1_400,9461,0 6606,FRAMEQA34745,rabbit,what escapes the cage by squeezing through the bars?,tumblr_np1qhvy9Kv1sg8vg6o1_500,66732,0 6607,FRAMEQA49236,red,what is the color of the shirt?,tumblr_nexxo9P8Co1tibg2uo1_400,34931,2 6608,FRAMEQA51616,cat,what plays with another huge cat?,tumblr_nhh45qypGS1tjhld9o1_250,25179,0 6609,FRAMEQA40595,theater,where is the woman rubbing drugs on her gums from the fingers of a man?,tumblr_na09f2go3u1qkrfyno1_500,100378,3 6610,FRAMEQA39928,two,how many men are fighting on the sidewalk?,tumblr_na4g5y5FmJ1r8h6u4o1_500,97142,1 6611,FRAMEQA48651,microphone,what is the man laughing and holding?,tumblr_nbld3tfp061sj9i7fo1_500,85779,0 6612,FRAMEQA3961,white,what is the color of the horse?,tumblr_mgo1kl7MLM1qe2thio1_500,94323,2 6613,FRAMEQA30361,two,how many men are talking to each other using microphones?,tumblr_npycjy1sgd1tfeyjso1_400,35175,1 6614,FRAMEQA28955,two,how many men are standing and talking together?,tumblr_n9y6tmnuQd1r5japgo1_400,66394,1 6615,FRAMEQA23730,red,what is the color of the lipstick?,tumblr_nb5t3kRi9k1tkslcoo1_400,23918,2 6616,FRAMEQA24587,bucket,what is the young man holding?,tumblr_nambqoJbYC1tz9jaqo1_250,13301,0 6617,FRAMEQA21877,two,how many girls are talking in the hallway?,tumblr_nk1z6y9MoU1qgw2r7o1_400,59922,1 6618,FRAMEQA33382,white,what is the color of the kitten?,tumblr_nh40cqYid51s6zpepo1_250,2329,2 6619,FRAMEQA33283,four,how many teenagers are on stage talking into a microphone?,tumblr_nclfo70sVI1tg2jndo1_250,165,1 6620,FRAMEQA47498,brown,what is the color of the hair?,tumblr_nl25w2m2ln1qilpy6o1_400,40149,2 6621,FRAMEQA27065,popsicle,what does the man with long dark hair lick slowly?,tumblr_nc4e6y37661qzm8mpo1_250,35503,0 6622,FRAMEQA40339,black,what is the color of the dress?,tumblr_n8vlr7Y0CU1sed105o1_500,69826,2 6623,FRAMEQA37876,black,what is the color of the nail?,tumblr_ndbdow0oY81tb2kgho1_400,96428,2 6624,FRAMEQA29588,five,how many guys are standing out by the pool?,tumblr_nk2ttxGRQJ1sy4yl3o1_400,88236,1 6625,FRAMEQA12028,car,what is driving down the street in the rain?,tumblr_nf87a1ENfb1u25ovvo1_400,63565,0 6626,FRAMEQA22746,two,how many boys stare at each other in front of lockers?,tumblr_njocvnKcFO1tifehbo1_400,55408,1 6627,FRAMEQA20994,birds,what engage in strange mating behavior with the male dancing?,tumblr_nec7jpgXtw1s71nvbo1_400,27462,0 6628,FRAMEQA32404,cat,what is the lady reading a book and is turning the pages?,tumblr_nal4phaW6f1ti0272o1_500,94261,0 6629,FRAMEQA22366,tent,where is the young man jumping and dancing?,tumblr_nhjba06VKF1sh76iyo1_400,29331,3 6630,FRAMEQA1820,microphone,what is the girl wearing sunglasses and holding?,tumblr_nep8u5gYPM1sixr68o1_400,25027,0 6631,FRAMEQA17413,two,how many people danced crazily and fell over the railing?,tumblr_nfi5pz1OK01twoivuo1_250,417,1 6632,FRAMEQA8999,two,how many young men are having the discussion while seated?,tumblr_nirebdaFNu1rzaapno1_500,87200,1 6633,FRAMEQA23851,door,what is the man opening and acting surprised?,tumblr_nhrjfnzGT41rhyrx7o1_250,23090,0 6634,FRAMEQA49611,helmet,what is the woman taking off and a man is smoking?,tumblr_niylzkzVR11u9zc8lo1_500,100671,0 6635,FRAMEQA33388,oven,where is the piece of bread dough expanding?,tumblr_nd8jkjOdOl1tozyi0o1_400,75245,3 6636,FRAMEQA21233,five,how many men sit in the semi-circle while a timer counts down?,tumblr_nq7ys7Apj91t8s5t0o1_540,81259,1 6637,FRAMEQA29398,road,what is the white car moving down passing streetlights and trees?,tumblr_nelzmf2VB71u25ovvo1_400,63494,0 6638,FRAMEQA31311,gum,what is the young handsome guy with black hat chewing while walking on the street?,tumblr_no4lrfJC0h1uuu6ydo1_250,352,0 6639,FRAMEQA7594,cat,what jumped with its head in a box and rolled over the ground with its head in the box?,tumblr_nbjfm8LunL1tlv2g2o1_400,78926,0 6640,FRAMEQA33285,two,how many women hugged one cried and the other laughed?,tumblr_nr3cvnawGP1tkgy96o1_400,38899,1 6641,FRAMEQA36651,car,what is driving down the tree lined street?,tumblr_nelzmf2VB71u25ovvo1_400,63494,0 6642,FRAMEQA30509,gray,what is the color of the jacket?,tumblr_nh1n39LnjR1sgwg9go1_400,39074,2 6643,FRAMEQA1277,two,how many people is dancing are holding each other on stage?,tumblr_nf43yk0Urg1rxhelho1_250,81509,1 6644,FRAMEQA31233,carrot,what is the brown hamster eating?,tumblr_n985jc2Wyr1sj2zt0o1_400,33712,0 6645,FRAMEQA37871,drums,what are two men in a car playing?,tumblr_nqtbhyWjrF1twsxdzo1_400,78772,0 6646,FRAMEQA17798,flower,"what was put into the gun , and the fired a shot?",tumblr_nfmuusmxvU1tvjj7co1_500,60637,0 6647,FRAMEQA19848,red,what is the color of the bear?,tumblr_nk550nmZNP1u8uroco1_400,52678,2 6648,FRAMEQA23810,white,what is the color of the dress?,tumblr_nbsj1j0D7F1teapyzo1_250,17651,2 6649,FRAMEQA44204,car,what turns around the corner of a race track?,tumblr_nbo3fs3Gfn1qdfgy3o1_500,60504,0 6650,FRAMEQA25261,white,what is the color of the man?,tumblr_ndumiurqqk1rt9tego1_400,24602,2 6651,FRAMEQA17347,white,what is the color of the dress?,tumblr_n9dbhb1w9h1rmmz60o1_500,73530,2 6652,FRAMEQA46155,hat,what is the young woman fixing?,tumblr_nezif0sqIP1rriuwto1_400,30043,0 6653,FRAMEQA33843,car,where are the man and woman riding and spitting a ping pong ball back and forth at each other?,tumblr_n97ntjwFce1qaeqj9o1_250,43796,3 6654,FRAMEQA26743,two,how many people are standing next to each other than kiss?,tumblr_ncd7y4jTWE1tmt2yao1_500,65232,1 6655,FRAMEQA36937,orange,what is the long-haired model wearing and walking?,tumblr_nhs5zds8og1rozqomo1_400,6322,0 6656,FRAMEQA20538,steps,what is the white man making in a room?,tumblr_nrjtdvdsMt1sdiz3bo1_400,33402,0 6657,FRAMEQA2275,two,how many men one holding a guitar are hugging?,tumblr_na6fj3GHOF1ti42h0o1_250,50962,1 6658,FRAMEQA31428,black,what is the color of the man?,tumblr_niuspkh0pL1u8dv8eo1_250,35476,2 6659,FRAMEQA35272,trees,what is the fog covering in the forest?,tumblr_n9hakp4Wd51smtg6no1_400,80843,0 6660,FRAMEQA15021,ball,what is the soccer player doing spins moves and keeping from the other team?,tumblr_nbn4vdgXnz1tz9jaqo1_400,82365,0 6661,FRAMEQA18614,guitar,what is the man playing on stage?,tumblr_nqouq3KQKB1ut6dhgo1_400,77342,0 6662,FRAMEQA10895,three,how many men is sitting on a couch raise their hands at the same time?,tumblr_njzlgndUk11u2r7xso1_400,81271,1 6663,FRAMEQA39398,kitten,what climbs the bunk bed ladder to the top bunk?,tumblr_nh2j9ov5zN1u4v3ypo1_250,155,0 6664,FRAMEQA48440,three,how many girls are all smiling and blowing kisses?,tumblr_neunn9Mwuk1tdbjcro1_400,31826,1 6665,FRAMEQA10673,dice,what are thrown multiple times?,tumblr_ngz2gcvCxw1rtdnfto1_400,28359,0 6666,FRAMEQA9056,broom,where is the witch riding?,tumblr_nec1h2hsBk1rlqu38o1_500,40075,3 6667,FRAMEQA26723,pan,where is the man pouring alcohol and catching it on fire?,tumblr_nhfwv7PrzZ1t9xf20o1_500,13671,3 6668,FRAMEQA31110,two,how many topless girls kiss and one makes a face?,tumblr_mkhcuwQp2k1rk3evro1_500,36906,1 6669,FRAMEQA43931,two,how many thumbs does the guy with pink hair do up?,tumblr_nrg5j1pWNg1ub2dj4o1_250,9053,1 6670,FRAMEQA3937,white,what is the color of the dress?,tumblr_nfokkyTDI41qf3bxio1_500,78723,2 6671,FRAMEQA31058,brown,what is the color of the hair?,tumblr_n9y3xs3vHi1tj3auuo1_250,22404,2 6672,FRAMEQA28086,cat,what is wiggling its tail underneath a curtain?,tumblr_nrdf8ua9mH1u76jino1_400,15090,0 6673,FRAMEQA2908,ball,what does the footballer stop going out of play?,tumblr_nkcbwoUZuk1s30fcoo1_540,91908,0 6674,FRAMEQA38966,black,what is the color of the man?,tumblr_naa1bnUBXR1rfd0pgo1_400,18986,2 6675,FRAMEQA46415,scarf,what is the man with black jacket waving?,tumblr_n91v0cmZja1qfees0o1_400,78689,0 6676,FRAMEQA31052,gift,what is the guy dancing and holding?,tumblr_nk9knh1M1X1u9xtf5o1_400,2486,0 6677,FRAMEQA13011,store,where are three boys doing stupid things?,tumblr_najmw24iuw1qlo2n6o1_400,20067,3 6678,FRAMEQA5366,two,how many lovers are singing aloud inside the car?,tumblr_njvltpG4Cf1rdvg51o1_400,57433,1 6679,FRAMEQA14490,two,how many beautiful women are singing and dancing on stage?,tumblr_nre9qqQRxE1uzud0co2_400,64114,1 6680,FRAMEQA6527,jacket,what is this image of a woman in blue taking off slowly?,tumblr_naw7y7BnjT1rjhjgno1_250,4317,0 6681,FRAMEQA51083,brown,what is the color of the hair?,tumblr_naee5xFlr41tjf814o1_400,26399,2 6682,FRAMEQA1794,two,how many girls lay on the boat while a man sings?,tumblr_nbo1yyTZnj1qjatdbo1_500,59890,1 6683,FRAMEQA3451,two,how many men are arguing and making faces at each other?,tumblr_njvt4xtqsW1u30he7o1_400,89355,1 6684,FRAMEQA16766,design,what is the person cutting into the shell of a watermelon?,tumblr_nr4wp15M1R1sht3fmo1_250,73936,0 6685,FRAMEQA41904,berries,what is the girl eating?,tumblr_nce30kjLYV1qfsrsoo1_500,49170,0 6686,FRAMEQA29227,black,what is the color of the hair?,tumblr_n9affceDKc1s4niibo1_400,31390,2 6687,FRAMEQA11746,two,how many women on the couch are having a conversation?,tumblr_nqbwismBUN1txc44no1_400,64155,1 6688,FRAMEQA8900,wheel,what is the man spinning on a large valve?,tumblr_nnl9ypbvvF1usyjg5o1_500,59362,0 6689,FRAMEQA5010,red,what is the color of the shirt?,tumblr_nr6w5vugtC1tfn8dso1_400,79205,2 6690,FRAMEQA11702,two,how many men stand nose to nose and one laughs?,tumblr_n9ywk5HGpS1rs9keno1_500,72189,1 6691,FRAMEQA12370,hippopotamus,what comes to the surface of the water beside a bird?,tumblr_njo4rh80wh1slj978o1_500,85914,0 6692,FRAMEQA51472,mask,what is the person with a sweater using?,tumblr_nd2k27sveM1r3cqi5o1_250,1025,0 6693,FRAMEQA8338,white,what is the color of the kitten?,tumblr_ndab1nCacB1rjh61io1_400,37279,2 6694,FRAMEQA5937,two,how many men are standing and nodding their heads?,tumblr_ngeevvgPzP1s5zcijo1_500,32310,1 6695,FRAMEQA36618,blue,what is the color of the eyes?,tumblr_ncs6h9GZNT1rerh68o1_400,9178,2 6696,FRAMEQA24726,two,how many dogs are lying peacefully on the couch?,tumblr_neqoabbUAH1s9wp82o1_400,30264,1 6697,FRAMEQA28644,sky,"what are the clouds covering , they move to the left?",tumblr_ndurbnwj7K1qmcdwao1_400,25602,0 6698,FRAMEQA44484,two,how many wrestlers attack each other in a large ring?,tumblr_nn2r6dEP9b1us2olno1_500,79403,1 6699,FRAMEQA39074,three,how many guys are taking the picture in a room?,tumblr_na580m6GwR1t0ojyvo1_500,94958,1 6700,FRAMEQA38337,black,what is the color of the running?,tumblr_ngi0pvfg9o1rly7k0o1_500,89248,2 6701,FRAMEQA23588,chicken,what is the guy hitting with his head?,tumblr_ni2gaft02A1u3mx44o1_250,46940,0 6702,FRAMEQA931,dog,what is chasing the cat onto a board that is lying on the side of the pool?,tumblr_n2sx1v7vCB1r2y8uzo1_400,10316,0 6703,FRAMEQA2299,dog,what is crawling onto the chair and sitting?,tumblr_nc51lxZqcX1tkpzw0o1_250,6269,0 6704,FRAMEQA47764,microphone,what are two guys laughing and one grabs?,tumblr_n9paf34bUZ1s5yymto1_400,58609,0 6705,FRAMEQA47082,yellow,what is the color of the suit?,tumblr_nmy661scIV1rmv5xlo1_540,20754,2 6706,FRAMEQA48928,car,what is driving slowly behind the blue car?,tumblr_nd91nlEKaI1tx8mn0o1_400,55564,0 6707,FRAMEQA24717,dog,what is jumping out of the cardboard box?,tumblr_ngfdl91Enp1ta0siuo1_250,23803,0 6708,FRAMEQA30208,black,what is the color of the hair?,tumblr_njv9ifV0lo1re9kgbo1_400,32981,2 6709,FRAMEQA52685,three,how many young men is wearing sunglasses are posing?,tumblr_nfx7tgZGUP1rm1lhro1_500,101620,1 6710,FRAMEQA6678,black,what is the color of the woman?,tumblr_nf38owmnAJ1t8amt8o1_500,97138,2 6711,FRAMEQA14715,white,what is the color of the object?,tumblr_nbthmbg6ta1tih2xyo1_250,12156,2 6712,FRAMEQA16816,two,how many girls is this image of singing?,tumblr_nabd00gKoa1si16xbo1_r1_500,97931,1 6713,FRAMEQA12086,car,what crashes into the wall after barely missing a pedestrian?,tumblr_nmx6y03hWy1staknao1_400,56959,0 6714,FRAMEQA40493,blue,what is the color of the shirt?,tumblr_npds0vwrYb1utnc7zo1_250,6254,2 6715,FRAMEQA8095,vehicle,what is going to the ramp at a water theme park?,tumblr_nqtcpjc1X71u6qmkgo1_400,60136,0 6716,FRAMEQA37364,dog,what is the man kissing and hugging?,tumblr_nfyndnYw1C1rmkebwo1_400,32270,0 6717,FRAMEQA48914,coffee,what does the man knock out of another man 's hand?,tumblr_nf3gu0qW7V1t4y13wo1_400,50794,0 6718,FRAMEQA7846,black,what is the color of the suit?,tumblr_mnutecijZ71rkw2b4o1_250,45077,2 6719,FRAMEQA34490,white,what is the color of the floor?,tumblr_ngplu9HNKp1rn2ycso2_1280,99492,2 6720,FRAMEQA28569,white,what is the color of the man?,tumblr_nrdokecWbU1uzms92o1_400,13327,2 6721,FRAMEQA26461,ball,what is the man hitting golf on a green?,tumblr_nr9xonZ5iR1uvfg79o1_400,70092,0 6722,FRAMEQA18006,two,how many men are wrestling?,tumblr_ndckk40bTy1r7f6ubo1_250,77856,1 6723,FRAMEQA49090,two,how many men are dancing the choreography on the stage?,tumblr_nqkzt4vq5x1usmrfgo1_500,37400,1 6724,FRAMEQA43825,three,how many men are riding in the back of a car?,tumblr_nc95blevQd1sg10q0o1_250,49450,1 6725,FRAMEQA3423,instruments,what are some people playing?,tumblr_n9fwjsqrPd1tqvc95o1_400,32400,0 6726,FRAMEQA2793,car,where are bunch of people moving around?,tumblr_n8sl7sBrq41qjv5vmo1_400,31074,3 6727,FRAMEQA52744,bicycle,what is the girl riding down a hallway?,tumblr_n9bz5ojRqc1t99fkdo1_400,29183,0 6728,FRAMEQA49471,blue,what is the color of the shirt?,tumblr_nem3w0B2961ttab97o1_400,29697,2 6729,FRAMEQA45383,rats,what are crawling around on someones shoulder?,tumblr_nguvutkldj1rs0i14o1_400,46819,0 6730,FRAMEQA50982,picture,what is the person turning around on a desk?,tumblr_ne3zxi2tnf1t7hjz2o1_400,71510,0 6731,FRAMEQA47451,black,what is the color of the shirt?,tumblr_ne5wedpGdD1qisvn0o1_500,37083,2 6732,FRAMEQA15363,dog,what does the white puppy try but gets it instead?,tumblr_nijrydrPVc1rtzdq7o1_400,94791,0 6733,FRAMEQA21587,cigarette,what is the man with his guitar lighting up?,tumblr_nowuvtVkdP1uvne53o1_400,33280,0 6734,FRAMEQA36094,robot,what is scanning upside down?,tumblr_nivk6uk2XY1u9wwjjo1_500,91309,0 6735,FRAMEQA52452,two,"how many men are eating cereals , trying not to laugh?",tumblr_n1wdvaQgaI1scy8zoo1_400,36893,1 6736,FRAMEQA27835,phone,what does the young lady answer?,tumblr_nbkzg243Sd1r2sl5ho1_400,37058,0 6737,FRAMEQA1415,torch,what does the person light and it emits a flame?,tumblr_nhdqgy84WC1r4fe3xo1_500,57514,0 6738,FRAMEQA304,black,what is the color of the walking?,tumblr_nr6wu26Pe01qfqngko1_500,48462,2 6739,FRAMEQA17558,motorcycle,what are two boys riding down a road?,tumblr_nmcu4vUJJd1sgkvddo1_400,85530,0 6740,FRAMEQA49420,machine,what depicts the man hitting a deer?,tumblr_nguf3fNgwx1s71nvbo1_400,31138,0 6741,FRAMEQA6221,window,where is the woman looking?,tumblr_nhanpu9jjb1u5o5sjo1_250,27232,3 6742,FRAMEQA23885,two,how many men are tired after fighting each other?,tumblr_ncwdg5LAhM1u0tiq0o1_250,15549,1 6743,FRAMEQA46926,drums,what is the man 's silhouette playing?,tumblr_nqu1u9hThh1uso7sno1_400,69271,0 6744,FRAMEQA40799,two,how many people are singing and smiling here?,tumblr_nq0rcrb4371sprwgfo1_400,44282,1 6745,FRAMEQA36562,red,what is the color of the dress?,tumblr_nfglj8pbh61s90br6o1_250,51510,2 6746,FRAMEQA38885,knives,what is the man throwing at a girl with a pineapple on top of her head?,tumblr_n9ousdC7yv1tdjuqvo1_400,21043,0 6747,FRAMEQA45789,red,what is the color of the earphones?,tumblr_ncrsw2qHWe1slhvg9o1_500,59390,2 6748,FRAMEQA29016,cat,what is playing with the trash can lid?,tumblr_nhr64ytyfc1u7wiuzo1_400,73336,0 6749,FRAMEQA24354,window,what shatters and the policeman is smiling?,tumblr_n9jm4vnraT1tr9zzwo1_250,51612,0 6750,FRAMEQA15209,champagne,what is the woman with black hair drinking?,tumblr_nfbrkjB7sK1smq40po1_250,16252,0 6751,FRAMEQA16036,cigarette,what does there 's smoking blowing smoke?,tumblr_nejz7hm7Cu1u2lrlao1_400,62453,0 6752,FRAMEQA18724,red,what is the color of the balloon?,tumblr_ngf79bgJEJ1sht3fmo1_400,1473,2 6753,FRAMEQA13675,talks,what is the man holding with another man?,tumblr_npfxbkWk5Z1s94w5go1_250,23036,0 6754,FRAMEQA36326,meal,what are the group of men sharing together?,tumblr_njn51xCYFt1tldu19o1_500,70213,0 6755,FRAMEQA1119,black,what is the color of the hair?,tumblr_nr0x6auTXZ1uq7elzo1_400,19913,2 6756,FRAMEQA46863,black,what is the color of the horses?,tumblr_nesu4nuPbX1tzd5txo1_500,97005,2 6757,FRAMEQA39002,red,what is the color of the shirt?,tumblr_ngmx782QcM1tjjejho1_250,39751,2 6758,FRAMEQA32558,two,how many young men is wearing black are looking at something?,tumblr_nbafnh36931svh8clo1_250,1567,1 6759,FRAMEQA8063,studio,where is the woman pole dancing?,tumblr_ndizmmSDER1tobehfo1_250,53426,3 6760,FRAMEQA6206,gorilla,what outside is jumping at the window?,tumblr_nr45wgSapM1uaujqao1_400,64873,0 6761,FRAMEQA21845,car,where is the man kissing another man and riding?,tumblr_nav5cxDWtT1tv0ziio1_400,31478,3 6762,FRAMEQA27924,dog,what is walking around the room?,tumblr_na4zqx8sRJ1tdjuqvo1_250,74416,0 6763,FRAMEQA11633,room,where are two men sitting and laughing together?,tumblr_nkn45o8Lso1sl4ny1o1_400,37681,3 6764,FRAMEQA22302,two,how many guys are joking front the crowd in a room?,tumblr_ni34syMevA1u30ycao1_500,95849,1 6765,FRAMEQA27720,one,how many monkey jumps over the other surprised monkey?,tumblr_na7zldRIh21slj978o1_400,40880,1 6766,FRAMEQA5790,black,what is the color of the jacket?,tumblr_nk61cci1An1unc2dzo1_250,30048,2 6767,FRAMEQA3343,black,what is the color of the hat?,tumblr_nd9cawxigV1takghro1_250,19999,2 6768,FRAMEQA19533,car,what is the racer racing and starts to drift?,tumblr_ngqsseRkvH1tr5tuwo1_400,50815,0 6769,FRAMEQA43167,instruments,what are two girls playing and singing?,tumblr_nbdybmLWnP1rlpjp7o1_250,45669,0 6770,FRAMEQA2826,roll,what does the car do while jumping over a ramp?,tumblr_na7u0qCxig1slj978o1_400,101240,0 6771,FRAMEQA45148,black,what is the color of the guy?,tumblr_nbo5r6Eta01tlowj1o1_500,69197,2 6772,FRAMEQA26432,curtain,what does the man pull back revealing a man with no face?,tumblr_ncyhf7lZHf1rdzrdeo1_1280,84955,0 6773,FRAMEQA29873,yellow,what is the color of the sweater?,tumblr_nkqqclNEyH1t7hjfwo1_250,9502,2 6774,FRAMEQA44316,microphone,what is the young singer holding?,tumblr_n9fmz0qeyA1rml9mio1_250,5931,0 6775,FRAMEQA2406,kitten,what is swatting at the bug on a computer?,tumblr_nbonmh32QP1slwrsuo1_400,13378,0 6776,FRAMEQA19667,door,what does the woman look out and a cat comes in through the snow?,tumblr_nkaj46inhY1tya7mxo1_400,63930,0 6777,FRAMEQA47984,sunglasses,what is the lady with the blond hair riding in the car took off?,tumblr_n8st3d7GLU1ru1g19o1_500,98940,0 6778,FRAMEQA22942,two,how many pets are sitting side by side?,tumblr_ngy4jkSGjY1tni61eo1_250,27236,1 6779,FRAMEQA19560,two,how many guys are sitting at the table talking and having drinks?,tumblr_n9lbia4caa1swt5n8o1_500,92188,1 6780,FRAMEQA1114,car,where are the couple people riding?,tumblr_n9qyart36C1rkbsnzo1_250,45347,3 6781,FRAMEQA8837,car,"where do the man and woman sit , they look at one another , and the woman exits the car?",tumblr_nglczjnOxY1s3ffcpo1_250,47334,3 6782,FRAMEQA48144,mirror,where is the man in a jacket looking?,tumblr_nbvv8uqaG61s92jogo1_500,76044,3 6783,FRAMEQA16836,car,what does the race car pass during a race on a track?,tumblr_ncqiquZx9u1tx8mn0o1_400,65286,0 6784,FRAMEQA5467,jacket,what is the man wearing with no shirt?,tumblr_nl2cbemHoE1uot1e7o1_400,64631,0 6785,FRAMEQA16560,brown,what is the color of the hair?,tumblr_nay86yaqtf1tudw8yo1_400,27034,2 6786,FRAMEQA47525,chair,"where does the guy lean , his head nods to the left?",tumblr_ni1p9zvcKj1t61hfoo1_500,101475,3 6787,FRAMEQA15435,boxers,what are in the ring when one drop kicks the other?,tumblr_n9gdhs28LW1srbyoyo1_400,88226,0 6788,FRAMEQA26399,two,how many people are standing?,tumblr_nq0ietOo6o1qa3o0zo2_500,82603,1 6789,FRAMEQA30610,car,"where is the man us riding , and he had a bandage on his head?",tumblr_nbj47m9ewZ1tkodheo1_250,45642,3 6790,FRAMEQA19914,cap,what is licking the steel vessel?,tumblr_ndrq7sa3Am1u1b0p0o1_250,71885,0 6791,FRAMEQA14730,balls,what is the woman bouncing while balancing on a board contraption?,tumblr_nhuvtlz6f81tq4njio1_400,46370,0 6792,FRAMEQA25264,white,what is the color of the towel?,tumblr_ndx0xsBZwT1ql3gweo1_500,99687,2 6793,FRAMEQA35501,black,what is the color of the hair?,tumblr_ndx6yuTBZd1t3ghero1_400,14413,2 6794,FRAMEQA12186,two,how many guys talk to each other and one stares ahead?,tumblr_ndnen8mJCr1sa0lndo1_500,72354,1 6795,FRAMEQA32235,red,what is the color of the blink?,tumblr_nbf412WZn71tl6o7ko1_500,70230,2 6796,FRAMEQA12703,room,where are the group of guys dancing?,tumblr_nfq2lpexwE1u3f64so1_500,79591,3 6797,FRAMEQA27181,bird,what is putting the plastic rings on the yellow spike?,tumblr_nhvz1zHlqY1slj978o1_250,27919,0 6798,FRAMEQA4430,black,what is the color of the background?,tumblr_na25kynLSX1qmkpfbo1_250,44064,2 6799,FRAMEQA26326,red,what is the color of the tie?,tumblr_njprhzVKe41t0ojyvo1_400,11531,2 6800,FRAMEQA20203,vegetable,what does the person on a scooter hold up?,tumblr_nhdi1douhg1r03eaxo1_400,76259,0 6801,FRAMEQA9055,two,how many man are sitting by each other?,tumblr_nb8e43eKN01r38k4eo1_500,58370,1 6802,FRAMEQA24132,two,how many men are slamming their hands together?,tumblr_ngw762RrkF1u4dor7o1_1280,77354,1 6803,FRAMEQA18571,cats,what are in the room playing with each other?,tumblr_nr78fdPO5w1slwrsuo1_400,43420,0 6804,FRAMEQA21198,bath,what is the man giving her daughter?,tumblr_nklengft0R1unphqfo1_400,32465,0 6805,FRAMEQA29969,chair,where is the man taking a sip of wine?,tumblr_n9rnmgt44f1rb2s8bo1_400,80953,3 6806,FRAMEQA10931,star,"what scores the goal , and everyone celebrates?",tumblr_nafghuNYvk1tp3ejwo1_400,58652,0 6807,FRAMEQA11081,balloons,what are falling down on the talk show host?,tumblr_nna22wyqkJ1ur3duoo1_400,41507,0 6808,FRAMEQA18539,instruments,what do the group of fake elephants play outside?,tumblr_npwfpv91tK1uyo4nfo1_500,61661,0 6809,FRAMEQA49899,two,how many males are dancing in time together outside at night?,tumblr_nen3ysIv0O1qae7oyo1_500,90210,1 6810,FRAMEQA37761,men,what are taking their shirts off?,tumblr_no7emoSSII1uuekcqo1_500,90515,0 6811,FRAMEQA36053,white,what is the color of the pants?,tumblr_noee81YaOa1sm91blo1_1280,31318,2 6812,FRAMEQA3981,white,what is the color of the surfboard?,tumblr_ndotjhRiX51t8n92fo1_500,49070,2 6813,FRAMEQA27543,bed,where is the young man tossing and stretching?,tumblr_n9m54cPuul1s7u6edo1_500,81840,3 6814,FRAMEQA24360,two,how many children under a tent are talking to an adult and posing?,tumblr_ngapatoAz51s9142do1_400,25381,1 6815,FRAMEQA49362,flask,what does the man stand and puts into his pocket?,tumblr_nkkmf9jmlY1u9qwyco1_250,10094,0 6816,FRAMEQA50195,two,how many women embrace in the crowded room surrounded by people?,tumblr_njv1apgxUT1u3epwjo1_1280,87599,1 6817,FRAMEQA24805,two,how many cars are racing side by side and spins out?,tumblr_npgmilwWnF1tx8mn0o1_400,91034,1 6818,FRAMEQA23919,three,how many people are talking on the stage while holding microphones?,tumblr_nbc7u35pYt1sdbrm9o1_400,65496,1 6819,FRAMEQA15060,mice,what are crawling on the person with wild hair?,tumblr_naq4afnM0Z1s5o1jwo1_400,41704,0 6820,FRAMEQA12534,two,how many kittens are playing?,tumblr_nojnjdkri81urlrpuo1_500,49168,1 6821,FRAMEQA48909,cat,what is gesturing to be given some food?,tumblr_naidmtIv1H1twoe5do1_400,21499,0 6822,FRAMEQA13263,chair,where is the woman spinning?,tumblr_na7hxgWqvo1qe40wlo1_400,81231,3 6823,FRAMEQA25642,two,how many guys with black hair are laughing and talking?,tumblr_nihx73QAqi1rf4bn2o2_r1_540,101197,1 6824,FRAMEQA7847,guitars,what are two young men playing and singing on stage?,tumblr_na7mrc0HwL1qdauj7o1_400,36894,0 6825,FRAMEQA51563,circles,what is the formula car doing on the floor?,tumblr_nrc4axMW2T1r92mkgo1_400,62304,0 6826,FRAMEQA33340,two,how many men are looking at each other intensely?,tumblr_npxtbon4aF1u0j5uyo1_400,31489,1 6827,FRAMEQA18327,green,what is the color of the shirt?,tumblr_nkztrpIfva1qcaryto1_400,64171,2 6828,FRAMEQA14668,cat,what tries to jump from the bookshelf to a door but falls?,tumblr_njouy2MkRI1unyeoio1_400,20303,0 6829,FRAMEQA28811,white,what is the color of the glasses?,tumblr_nabjgnLs1w1si703wo1_400,33375,2 6830,FRAMEQA30281,brown,what is the color of the hair?,tumblr_naud1p6m7w1sw1xhgo1_250,20506,2 6831,FRAMEQA8925,shirt,what are two guys kissing each other and one is taking off?,tumblr_n9lnqa0TkE1rac9v2o1_400,47875,0 6832,FRAMEQA10815,white,what is the color of the man?,tumblr_n9h4shbMYh1r40rxao1_r1_500,91355,2 6833,FRAMEQA18202,red,what is the color of the ball?,tumblr_ngxqtqgyOm1sqlieso1_400,50893,2 6834,FRAMEQA33466,white,what is the color of the coat?,tumblr_nplgqa6TnF1su25v0o1_400,30934,2 6835,FRAMEQA42233,white,what is the color of the man?,tumblr_ncj0b4qFmm1tk9c2ao1_400,4727,2 6836,FRAMEQA542,graffiti,what is someone painting on a building with paint?,tumblr_ndyi4zNrQM1s4yuteo1_500,86684,0 6837,FRAMEQA43963,three,how many men is sitting in directors style chairs are talking?,tumblr_ngy1993nCa1spaf7ho1_r1_250,75763,1 6838,FRAMEQA18674,black,what is the color of the guy?,tumblr_npuxvmFUL31uqie69o1_400,16361,2 6839,FRAMEQA23980,one,how many guy is wearing white is laughing over another one?,tumblr_nel4t7kzLa1sk7iiyo1_250,9547,1 6840,FRAMEQA51462,black,what is the color of the pants?,tumblr_nedt1ck9181ttuja3o1_250,2853,2 6841,FRAMEQA6495,black,what is the color of the cat?,tumblr_ne5xnkmNbh1tk2ngvo1_400,53122,2 6842,FRAMEQA48848,gray,what is the color of the coat?,tumblr_nkp0h7ftuy1sofgdso1_250,23766,2 6843,FRAMEQA380,blue,what is the color of the sky?,tumblr_njvkcm3JBJ1u3ruqqo1_500,72438,2 6844,FRAMEQA49274,cigarette,what is the white man smoking and brushes his hair?,tumblr_nemtylU1ek1sspq5qo1_250,32816,0 6845,FRAMEQA47195,dog,what gives the warm nuzzle to a dark haired woman?,tumblr_n8vaofH4lm1s1hn6lo1_400,58281,0 6846,FRAMEQA30032,studio,where are two men recording music?,tumblr_nl3zdwLhgA1ttuja3o1_500,85274,3 6847,FRAMEQA40780,fox,what is this lying on the floor and pawing the carpet?,tumblr_n9cky9gUyi1rlte6do1_500,89306,0 6848,FRAMEQA26950,green,what is the color of the shirt?,tumblr_nhryql9avz1th7rxjo1_1280,94782,2 6849,FRAMEQA4405,two,how many people are kissing on the beach with the water hitting them?,tumblr_nkk5d5OAP41u6hnr3o1_500,72515,1 6850,FRAMEQA49843,blue,what is the color of the shirt?,tumblr_nga7fiM0PT1qg2370o1_400,15586,2 6851,FRAMEQA2851,racer,what comes off his bike and skids along the ground?,tumblr_nbw7obBlMP1tx8mn0o1_400,52738,0 6852,FRAMEQA28843,blue,what is the color of the dress?,tumblr_na1p3nrVRc1snid6qo1_400,66238,2 6853,FRAMEQA49300,two,how many doctors are walking down the hallway when a patient vomits on one of them?,tumblr_nf1nlpijnR1u2lw0po1_400,77200,1 6854,FRAMEQA43674,cars,what are running around in the circle on the track?,tumblr_n9ghigU0nd1tx8mn0o1_400,55496,0 6855,FRAMEQA9651,two,how many girls are leaning in and smiling?,tumblr_ngbtze9cdg1u4u0oeo1_400,63492,1 6856,FRAMEQA40667,black,what is the color of the rubs?,tumblr_ncmftyRpXj1tmvz19o1_250,250,2 6857,FRAMEQA45851,two,how many people are laughing?,tumblr_norcq7bjX01qe849no1_250,10751,1 6858,FRAMEQA13144,box,where is the man as he listens to a boom box?,tumblr_ndkgi9WxPa1te83nuo1_250,1770,3 6859,FRAMEQA9321,blue,what is the color of the puppet?,tumblr_nbel8wk3Ts1qe6gfro1_400,60358,2 6860,FRAMEQA9473,blue,what is the color of the sky?,tumblr_njp4u1XiXD1tt84zlo1_500,57884,2 6861,FRAMEQA21039,cat,what reclines in an armchair?,tumblr_nai6yrCMc21tikvlso1_250,30763,0 6862,FRAMEQA9486,black,what is the color of the hair?,tumblr_npz6msJUl81urnbuuo1_250,38417,2 6863,FRAMEQA6326,three,how many men are standing side by side and smiling?,tumblr_n8aurnLRR01qlbj8uo1_r1_500,88108,1 6864,FRAMEQA27206,black,what is the color of the shirt?,tumblr_nene7m6nXo1shp2peo1_400,65485,2 6865,FRAMEQA38784,hat,what is the man wearing black clothes is grabbing?,tumblr_n9hvtzkimT1tirskjo1_400,39158,0 6866,FRAMEQA45701,white,what is the color of the shirt?,tumblr_nctun9U7MZ1u0tx7oo1_250,21237,2 6867,FRAMEQA44910,black,what is the color of the outfit?,tumblr_nb8nijuMcp1tg6h6to1_500,50527,2 6868,FRAMEQA38922,green,what is the color of the car?,tumblr_nb330aM2rd1taqruuo1_400,64237,2 6869,FRAMEQA51715,jacket,what is the man?,tumblr_nk61cci1An1unc2dzo1_250,30048,0 6870,FRAMEQA51856,two,how many people are in front of microphones?,tumblr_no8x9toqT11u7hl9wo1_400,62572,1 6871,FRAMEQA16558,two,how many cars are driving around in the garage?,tumblr_nd11cdPFVQ1s1cmjio1_400,96948,1 6872,FRAMEQA21492,cat,what is chewing on the plastic bag?,tumblr_ncfjoeOSwk1r8pns9o1_400,16662,0 6873,FRAMEQA7654,black,what is the color of the jacket?,tumblr_ncs4caxQYC1s0un7wo1_400,84223,2 6874,FRAMEQA39338,cat,what is startled by the green lizard?,tumblr_nhn4qolyxQ1tgouwlo1_400,52435,0 6875,FRAMEQA39498,room,where is the person waving a fan?,tumblr_neaak1zNkv1qmr78eo1_400,64124,3 6876,FRAMEQA16879,bag,what does the man say hi to some men and then he holds and picks it up with another bag?,tumblr_ncr85pdqTI1sht3fmo1_250,46733,0 6877,FRAMEQA18535,two,how many men are sitting together and are talking and smiling?,tumblr_nfx7hdCQhQ1s57zi7o1_400,54111,1 6878,FRAMEQA50983,white,what is the color of the shirts?,tumblr_ncoxe7Pzl11t0ojyvo1_250,6571,2 6879,FRAMEQA45869,black,what is the color of the top?,tumblr_nhbzxyNwEn1rkopy3o1_400,98608,2 6880,FRAMEQA26510,dog,what is sitting on the blanket wearing a sweater?,tumblr_nd35q1BzTi1rqfhi2o1_250,3277,0 6881,FRAMEQA27571,two,how many singers are performing the same dance move?,tumblr_nfryd89f6l1qec31no1_400,5317,1 6882,FRAMEQA42647,black,what is the color of the hair?,tumblr_nknr9xW0hU1u922jno2_400,78072,2 6883,FRAMEQA30814,two,how many men look around and show surprise at what they see?,tumblr_nb1108xDwG1slsl6ro1_500,88064,1 6884,FRAMEQA306,mirror,where is the female looking and smiling?,tumblr_nd0p5v2Azs1qejouoo1_500,92584,3 6885,FRAMEQA48910,cigarette,what is the woman lighting and covering her cigarette with her hand?,tumblr_nate0yTgIe1tkqgqvo1_250,47078,0 6886,FRAMEQA6925,red,what is the color of the highlights?,tumblr_npelkjKwEq1tk9cjho1_250,13102,2 6887,FRAMEQA47924,black,what is the color of the shirt?,tumblr_n9v14rHt3R1riy1p3o1_400,39342,2 6888,FRAMEQA2559,two,how many men are sitting together making strange faces and smiling?,tumblr_nd0fwvSQfh1tlyyvzo1_400,25188,1 6889,FRAMEQA37792,two,how many people are talking?,tumblr_n8ptqhbSXp1rjwte6o1_400,67868,1 6890,FRAMEQA51986,jump,what did the man help in the air?,tumblr_ni3ew49dux1tjhld9o1_400,66199,0 6891,FRAMEQA51179,kitchen,where do three men talk?,tumblr_n9sho7J99O1tggdauo1_400,14816,3 6892,FRAMEQA19565,red,what is the color of the dress?,tumblr_nax80qeXcZ1qdovbqo1_r1_500,52620,2 6893,FRAMEQA25206,car,where is the woman riding?,tumblr_ncx3sdZxov1rtwr5go1_400,79097,3 6894,FRAMEQA1072,kitten,what is the woman with long hair holding and talking?,tumblr_nba7mrIRaG1te5fy0o1_500,79432,0 6895,FRAMEQA12981,car,where did the man pass another car?,tumblr_netczdYQLZ1u25ovvo1_400,63490,3 6896,FRAMEQA51765,three,how many guys on a stage spoke among themselves?,tumblr_nkgj20P5aj1tij95mo1_400,58796,1 6897,FRAMEQA49024,tire,what comes off of the race car and rolls away?,tumblr_nq5lrzi7xk1tx8mn0o1_400,78316,0 6898,FRAMEQA9689,two,"how many people are hugging , kissing , and spinning around?",tumblr_nksuzg00mr1t7an45o1_400,41508,1 6899,FRAMEQA50601,red,what is the color of the stick?,tumblr_n9wwljwZk61sbh7xuo1_500,61117,2 6900,FRAMEQA41671,window,what do people look out at mountain passing by?,tumblr_ni0mb2u6OI1taix0oo1_400,59232,0 6901,FRAMEQA40621,ball,what is one soccer team keeping from another soccer team?,tumblr_nc20yxAKBE1tx5rbeo1_400,87101,0 6902,FRAMEQA14290,two,how many men is this spooning on a couch?,tumblr_nffknrYHRF1tnkfuxo1_500,96520,1 6903,FRAMEQA45026,two,how many girls is wearing black hats are walking?,tumblr_nds6ogu9QS1tsn7r7o1_400,22067,1 6904,FRAMEQA41448,black,what is the color of the bags?,tumblr_nh5z1ajZzd1rwipr5o1_r1_250,27736,2 6905,FRAMEQA1868,three,how many guys is this giving each other high fives?,tumblr_ne2ecomrOS1u2oapqo1_500,26335,1 6906,FRAMEQA27323,studio,where does the man take off his red shirt?,tumblr_n98t7cdeNZ1skdlfto1_400,60668,3 6907,FRAMEQA49655,piano,what does the child play?,tumblr_nfk4gpAOiF1sgdp1uo1_250,3996,0 6908,FRAMEQA1655,cigarette,what is the man smoking while standing outside on a windy day?,tumblr_ndraq7VgPA1rq1604o1_500,90690,0 6909,FRAMEQA11507,red,what is the color of the hair?,tumblr_nhdzjchAEe1tepwnvo1_500,25115,2 6910,FRAMEQA10828,drink,what is the woman with an orange cardigan having and looking away?,tumblr_nktgnoK1z31t15h2ho1_250,11454,0 6911,FRAMEQA15773,car,what drives down the highway?,tumblr_ni06cdG8Wk1u639x2o1_500,71675,0 6912,FRAMEQA50973,blue,what is the color of the shirt?,tumblr_nr1l7twZC21tdpeyco1_250,99723,2 6913,FRAMEQA29447,white,what is the color of the player?,tumblr_n8reauf0cL1sevihno1_400,64572,2 6914,FRAMEQA24206,two,how many young woman are leaning on each other and smiling?,tumblr_na3mv90rSu1snioijo1_250,8407,1 6915,FRAMEQA40137,black,what is the color of the hair?,tumblr_nbtv3tspE71tv8f7co1_500,74491,2 6916,FRAMEQA40463,stairs,what is the man wearing white runs up?,tumblr_nnzm18sXEV1rdynt3o1_500,168,0 6917,FRAMEQA27687,stadium,where are the team of sports men and some mascots clapping the crowd?,tumblr_n9dzv8FBNJ1spk7pfo1_250,12778,3 6918,FRAMEQA2603,four,how many girls dressed in white and red are dancing and singing at a concert?,tumblr_nelya4Kxzh1u34q9wo1_250,82974,1 6919,FRAMEQA24723,room,where is the guy winking his eye?,tumblr_n9evj5q8FJ1r3ldhzo1_100,853,3 6920,FRAMEQA7864,violin,what is the young woman in a white dress playing?,tumblr_n9g3lqfsMq1rdk1zoo1_400,60984,0 6921,FRAMEQA31833,goat,what is butting the young boy who falls to the ground?,tumblr_nnukunx7r61uuj39do1_400,37449,0 6922,FRAMEQA12441,two,how many women are sitting on the sofa on christmas and smiling?,tumblr_ngegv9zMI11skv76wo1_250,36105,1 6923,FRAMEQA19255,two,how many young men are dancing and signing on the stage?,tumblr_njreu3yRWx1rujq2co1_500,101983,1 6924,FRAMEQA11124,orange,what is the color of the hair?,tumblr_nl08fcxHX31upy801o1_500,55119,2 6925,FRAMEQA23207,two,how many people are looking up and talking?,tumblr_naytkonAuO1scv4uso1_500,86741,1 6926,FRAMEQA23696,two,how many people are kissing?,tumblr_no4mczo7UB1qirwpco1_500,98207,1 6927,FRAMEQA13139,works,what are exploding above the body of water?,tumblr_nauvryxIRR1rpvamzo1_250,1313,0 6928,FRAMEQA21266,room,where are two men practicing boxing?,tumblr_nhkxskmh3h1rlakuxo1_500,95997,3 6929,FRAMEQA40344,blue,what is the color of the sweater?,tumblr_nbrba7uzD21r0ajmso1_500,59077,2 6930,FRAMEQA16652,turtle,what is the hand touching shell?,tumblr_neqagz6lei1tdjuqvo1_400,15374,0 6931,FRAMEQA24471,cat,what is trying to eat food through a glass table but failing horribly?,tumblr_ng0wn2TFG01tk2ngvo1_400,1209,0 6932,FRAMEQA36365,castle,what set into rocks is engulfed in flames?,tumblr_nqmkp7w5rI1tmqleoo1_400,99358,0 6933,FRAMEQA5680,two,how many men turn to look at each other?,tumblr_nbss3cYIpi1sgwg9go1_400,45435,1 6934,FRAMEQA9487,blue,what is the color of the shirt?,tumblr_nedhnos8rx1rjn473o1_500,44995,2 6935,FRAMEQA25599,two,how many young men are playing guitars on a stage?,tumblr_njte62Bwpv1t4la1fo1_400,25986,1 6936,FRAMEQA14737,two,how many men are sitting on the couch together?,tumblr_njodpwEZQ41u8js9ho1_500,40905,1 6937,FRAMEQA14948,rabbit,what is coming out of the cardboard box?,tumblr_nf9fj4glx61swtmgzo1_500,46702,0 6938,FRAMEQA39347,two,"how many men are lifting up their arms , while they are sitting down?",tumblr_notwusKOgr1sqpx7ko1_400,100986,1 6939,FRAMEQA32843,white,what is the color of the shirt?,tumblr_nfb17xXE8j1tvn491o1_500,69769,2 6940,FRAMEQA39799,white,what is the color of the lights?,tumblr_nh298xxMHt1sqbahto1_500,91400,2 6941,FRAMEQA35054,cat,what is pulling at the collar of the leash he is attached to?,tumblr_nb8rmk4FML1tl20oxo1_250,39280,0 6942,FRAMEQA6568,three,how many cats is wearing hats are playing with catnip?,tumblr_njo3xwphio1tk2ngvo1_400,30518,1 6943,FRAMEQA4197,sandwich,what does the man eat?,tumblr_nrffifGPGh1rfolw9o1_400,37528,0 6944,FRAMEQA8288,rabbit,what is the rabbit sitting on a towel and is running in circles?,tumblr_nc2gpfzSk21tk2ngvo1_250,13592,0 6945,FRAMEQA6888,cat,what is walking across the bridge over water?,tumblr_ndwu84DGXF1slj978o1_400,40897,0 6946,FRAMEQA24742,picture,what is the man making and smiling?,tumblr_nc6oonCucA1tc2v0no1_500,40289,0 6947,FRAMEQA582,car,what is going on the road and the tire is spinning?,tumblr_nbo3syb9wg1rhy09eo1_500,98035,0 6948,FRAMEQA27371,black,what is the color of the top?,tumblr_nfesdbDpzJ1u41fj6o1_250,15439,2 6949,FRAMEQA5526,cat,what gets up and leaves the tail behind on the floor?,tumblr_nknodg8h931slwpo8o1_250,85109,0 6950,FRAMEQA21677,chips,what is the girl with dark hair and glasses eating?,tumblr_nen200COd21u2nf1so1_400,29193,0 6951,FRAMEQA8947,green,what is the color of the shirts?,tumblr_nf3wn08K8f1tkgkzxo1_250,90971,2 6952,FRAMEQA46041,black,what is the color of the girl?,tumblr_ngzz934frj1t4f4loo1_400,30356,2 6953,FRAMEQA24665,room,where are several men standing pretty still?,tumblr_nawqv9iVq81s0h1fio1_500,57652,3 6954,FRAMEQA19754,two,how many guys are dancing at the christmas event?,tumblr_nhx280JEg61suduoyo1_400,22059,1 6955,FRAMEQA16272,cigarette,what is the man lighting with a match?,tumblr_ngcvxuaICP1u5u010o1_400,96793,0 6956,FRAMEQA11211,earpiece,what does the woman remove before talking?,tumblr_na3gcjTgzt1tjotwjo1_250,47448,0 6957,FRAMEQA10360,two,how many men are hugging each other on stage?,tumblr_ne1rovQKEs1tomzioo1_250,2039,1 6958,FRAMEQA14124,bird,what is sitting on the piece of wire?,tumblr_nclxudn5MX1qa4y0oo1_500,67749,0 6959,FRAMEQA24409,chair,what does the man go and a dog pushes away?,tumblr_nh42ws7eWR1tatohao1_400,36756,0 6960,FRAMEQA34294,balloon,what did the boxer dog attack?,tumblr_ngf79bgJEJ1sht3fmo1_400,1473,0 6961,FRAMEQA18943,black,what is the color of the shirt?,tumblr_nr286erOKg1tk0c4jo1_400,79183,2 6962,FRAMEQA43145,yellow,what is the color of the car?,tumblr_nbo3syb9wg1rhy09eo1_500,98035,2 6963,FRAMEQA4202,horse,what is the woman riding around a room?,tumblr_nc428jorCe1tl4bloo1_400,64224,0 6964,FRAMEQA31384,red,what is the color of the crashes?,tumblr_np8vdxZrdi1tx8mn0o1_400,76908,2 6965,FRAMEQA15283,cat,what is poking the cat through the bicycle wheel?,tumblr_nra8jaNWXd1ti2yzto1_1280,17735,0 6966,FRAMEQA44139,ski,what 's down the mountain?,tumblr_na5aodi5wy1tph724o1_400,64126,0 6967,FRAMEQA17397,two,how many men are walking toward the tunnel?,tumblr_nojc0uHi1c1tmavx8o1_400,42824,1 6968,FRAMEQA6752,red,what is the color of the curtain?,tumblr_neju1aGKr11u2l6fco1_400,75459,2 6969,FRAMEQA48506,doorway,where does the guy shoot a man in the head?,tumblr_n9kwbo2P5H1rc6jvuo1_400,97799,3 6970,FRAMEQA14634,shirt,"what does the man touches his head , then lift?",tumblr_n9a9aqzQdp1saga3vo1_400,32082,0 6971,FRAMEQA5882,black,what is the color of the hat?,tumblr_niqzllM4Uk1u9nt3mo1_250,6832,2 6972,FRAMEQA13122,black,what is the color of the dress?,tumblr_np5aw09Aa31shzpsuo1_500,100114,2 6973,FRAMEQA29952,black,what is the color of the player?,tumblr_n94c9kD6eu1s0wfo1o1_250,40368,2 6974,FRAMEQA50083,motors,what is the salesman of sports cars demonstrating?,tumblr_nph943L4Y41smgou0o1_400,74733,0 6975,FRAMEQA8345,two,how many people stand in front of a large blue flame?,tumblr_ngcfegJJME1rol18zo1_400,38024,1 6976,FRAMEQA25638,car,what runs off of the racetrack on a curve?,tumblr_ndkajbX6dP1tx8mn0o1_400,78352,0 6977,FRAMEQA44077,room,where are the group of guys they not moving less one?,tumblr_nbzsdygb6n1tiw4ggo1_500,100694,3 6978,FRAMEQA44642,white,what is the color of the dress?,tumblr_njb0tk9AB11un84ego1_250,2690,2 6979,FRAMEQA21075,two,how many standing boys is the boy pushing in a shopping cart?,tumblr_nbp2e0Uw4E1sj5pwvo1_400,23814,1 6980,FRAMEQA31844,bubbles,what is the young girl blowing through a bubble wand?,tumblr_njmov237Wm1sy82cio1_500,87719,0 6981,FRAMEQA51056,two,how many men with microphones are talking and laughing?,tumblr_npycjy1sgd1tfeyjso1_400,35175,1 6982,FRAMEQA13530,cat,what is the hand petting?,tumblr_n974aiV3pP1tyycvto1_400,82732,0 6983,FRAMEQA1518,two,how many white skulls are on the black background?,tumblr_n8vk28nV921tv6x4go1_500,68505,1 6984,FRAMEQA9747,brown,what is the color of the hair?,tumblr_ncbz5sgQ9L1s0svh1o1_500,62531,2 6985,FRAMEQA20646,knife,what is the man wearing a mask grabs?,tumblr_nf4xc3fWJM1u3hixuo1_400,30515,0 6986,FRAMEQA42666,burrito,what is the man eating inside?,tumblr_nrffifGPGh1rfolw9o1_400,37528,0 6987,FRAMEQA21284,vehicle,what is the person driving and moving?,tumblr_naw8zsiXqa1qzwouio1_400,63555,0 6988,FRAMEQA15645,kitten,what snuggles inside of the large man 's shirt and rubs his face?,tumblr_novwf7DkV31slwrsuo1_400,33999,0 6989,FRAMEQA43028,two,how many men are near each other?,tumblr_nr4yfgSIEU1u7r745o1_500,35666,1 6990,FRAMEQA47013,two,how many young girls are leaning over the table and smiling?,tumblr_ng9sg3VuL11t107ayo1_400,94319,1 6991,FRAMEQA52941,red,what is the color of the cape?,tumblr_ndwfzx0hL91tgkdkbo1_250,5671,2 6992,FRAMEQA40821,black,what is the color of the shoes?,tumblr_njtr71EuXh1u0alpro1_500,60645,2 6993,FRAMEQA34440,red,what is the color of the jacket?,tumblr_n4wduzUXym1tqrkr5o1_250,43875,2 6994,FRAMEQA36451,two,how many children on a bus ate candy?,tumblr_nbtlrnLJyT1t1szv2o1_500,70108,1 6995,FRAMEQA30933,room,where does the man strum a guitar?,tumblr_ney1qn9pP21ssuua8o1_250,31604,3 6996,FRAMEQA16792,sunglasses,what does the woman with a cigarette in her hand lower?,tumblr_n94xke8sQB1qgx9mzo1_500,79394,0 6997,FRAMEQA766,brown,what is the color of the hair?,tumblr_nov7q4OB4P1uqu9z8o1_400,39079,2 6998,FRAMEQA15669,dog,what then covers himself up with a blanket?,tumblr_nbxgairu4F1slwrsuo1_400,99415,0 6999,FRAMEQA3833,purple,what is the color of the polish?,tumblr_nny6ezmNUD1te0qzbo1_400,56785,2 7000,FRAMEQA25258,two,how many guys are spinning around together in the circle?,tumblr_nr3ug1STRd1qfyovfo1_540,96745,1 7001,FRAMEQA14605,purple,what is the color of the shirt?,tumblr_nhkes0gSSf1u0h3teo1_250,1426,2 7002,FRAMEQA40919,car,what is driving along the road fast?,tumblr_nd4fsjihYG1u0lsh1o1_400,84128,0 7003,FRAMEQA4790,cat,what is climbing into the christmas tree and playing with the ornaments?,tumblr_nh40cqYid51s6zpepo1_250,2329,0 7004,FRAMEQA38550,paws,what is the dog sticking in water and falling asleep?,tumblr_nn8b3ckHXT1rgj6reo1_400,55944,0 7005,FRAMEQA6450,white,what is the color of the man?,tumblr_ndc80srnP11r202reo1_500,86846,2 7006,FRAMEQA17907,one,how many person is looking up at another when they kiss?,tumblr_nhohl7YseY1s3f033o1_250,89385,1 7007,FRAMEQA2697,white,what is the color of the man?,tumblr_nhscpr7T9N1qevcs2o1_400,92264,2 7008,FRAMEQA8876,two,how many men are hugging while one of them waves?,tumblr_nkow3gFUC21tljkklo2_250,2773,1 7009,FRAMEQA48526,black,what is the color of the gloves?,tumblr_naxjabeSW11t2s1j1o1_500,100016,2 7010,FRAMEQA46083,two,how many female twins do the little dance on a couch?,tumblr_ndwywb6JYu1qd8xguo1_500,10965,1 7011,FRAMEQA6812,two,how many men are walking away from the car?,tumblr_nbwyn9wAq21tfvj5ao1_500,24954,1 7012,FRAMEQA35033,white,what is the color of the mask?,tumblr_n9bz5ojRqc1t99fkdo1_400,29183,2 7013,FRAMEQA4686,cat,what is sleeping with its head on top of a gecko?,tumblr_nlwyy9St4p1tjqvkeo1_250,36683,0 7014,FRAMEQA39615,two,how many fingers did the guy have help in front of him?,tumblr_nc78altiBi1tkc0ggo1_500,76307,1 7015,FRAMEQA3006,dog,what is riding on the power jeep?,tumblr_ng67v0PpjK1tkhxdko1_400,17979,0 7016,FRAMEQA48947,three,how many women are dancing?,tumblr_ng8b6xSueH1u5s6sso1_500,33941,1 7017,FRAMEQA51363,two,how many men are talking and looking at an ice rink?,tumblr_nhi5q5NVDx1qdo688o1_500,78008,1 7018,FRAMEQA51777,three,how many man are laughing and clapping hysterically?,tumblr_na5l4nwhbZ1rodqjco1_500,93324,1 7019,FRAMEQA27380,red,what is the color of the lipstick?,tumblr_n9zlvzY5jO1sp3selo1_250,46937,2 7020,FRAMEQA28417,two,how many boxers are in the ring when one drop kicks the other?,tumblr_n9gdhs28LW1srbyoyo1_400,88226,1 7021,FRAMEQA2532,three,how many men are sitting and smiling at something all with their hands folded?,tumblr_n9art5oaA51r4s9t4o1_250,35466,1 7022,FRAMEQA44572,three,how many teenage boys is wearing white shirts bend forward and laugh?,tumblr_n9sp35Fn9g1r9vmd9o1_400,41670,1 7023,FRAMEQA15728,piano,what is the man playing?,tumblr_ndm7dz8BTZ1seb31ro1_400,22584,0 7024,FRAMEQA20237,two,how many men float through the water in barrels?,tumblr_nhmkxiOfQS1r7kw0wo1_250,25153,1 7025,FRAMEQA44646,cat,what is sleeping and stretching out its arms?,tumblr_ndso8nSpZU1slj978o1_250,36754,0 7026,FRAMEQA5067,vehicle,what is the person wearing a helmet and gloves drives?,tumblr_ng952sa6bT1skeuupo1_400,65206,0 7027,FRAMEQA33901,microphone,what does the man hold?,tumblr_n9mxo7lBDU1ttpy61o1_250,10604,0 7028,FRAMEQA24339,singlet,where does the boy pretend to walk in slow motion with a bottle in his hand?,tumblr_ncn4ck340P1sj24puo1_250,5283,3 7029,FRAMEQA40494,two,how many dark haired women are cuddling on the sofa?,tumblr_n8ys4qki9V1szkw14o1_400,46094,1 7030,FRAMEQA40583,blue,what is the color of the sky?,tumblr_noziupQsO11ut1d6co1_500,90118,2 7031,FRAMEQA30304,blue,what is the color of the animal?,tumblr_ne2nhl9fVr1u2ppnho1_400,33569,2 7032,FRAMEQA48455,bird,what walks behind the wolf that is eating something?,tumblr_nl2rl5ShaE1rftdx0o1_250,23330,0 7033,FRAMEQA1499,dog,what is chasing balls on a pool table?,tumblr_nivi02t5ys1tk2ibto1_250,23127,0 7034,FRAMEQA34354,black,what is the color of the shirt?,tumblr_n9ho30GLBm1sf6c4co1_250,10962,2 7035,FRAMEQA6954,black,what is the color of the shirt?,tumblr_ne64xoWvjy1qfnup3o1_250,5054,2 7036,FRAMEQA12916,ball,what is the player turning with his hand?,tumblr_n8pwmrX2ZE1tfhnexo1_400,93372,0 7037,FRAMEQA6339,door,what does the man open while crouching down?,tumblr_ngqsshv5dg1tluxceo1_400,17326,0 7038,FRAMEQA27393,white,what is the color of the shirt?,tumblr_nc5lioBLqf1tbeb4mo1_500,48811,2 7039,FRAMEQA27315,guitar,what is the man with blonde hair playing?,tumblr_nb40r2QeXA1sky5jwo1_500,78616,0 7040,FRAMEQA12552,black,what is the color of the clothes?,tumblr_nkhogkmy7K1untprdo1_500,68995,2 7041,FRAMEQA11391,180,how many degrees does the long-haired man in shiny trousers and an open shirt spin?,tumblr_mmv0kampwW1sovfbao1_250,34483,1 7042,FRAMEQA43608,red,what is the color of the hair?,tumblr_njqj3bMKQF1unc0x7o1_250,90984,2 7043,FRAMEQA9367,stadium,where are the players playing?,tumblr_nk7hlmJaCj1u3b5deo1_100,13092,3 7044,FRAMEQA43280,black,what is the color of the man?,tumblr_nodhmeDGTt1tadzeeo1_400,65197,2 7045,FRAMEQA38609,horse,what is jumping up and down?,tumblr_n6kmok3DdI1r1x3klo1_250,11769,0 7046,FRAMEQA9610,black,what is the color of the jacket?,tumblr_ndsj3v5btb1rpjuouo1_500,79446,2 7047,FRAMEQA38827,two,how many people are giving each other high fives?,tumblr_nbt3166F731tjpng4o1_500,92690,1 7048,FRAMEQA24944,comb,what is the soccer player sticking to his curly hair?,tumblr_n9msm7HMOO1thfulao1_500,95600,0 7049,FRAMEQA22514,cat,what is falling asleep and his head is dropping on the bed?,tumblr_ngv8o5fqeJ1u68w9so1_400,60657,0 7050,FRAMEQA22576,brown,what is the color of the hair?,tumblr_np8gfaOo6M1tcisf6o1_250,4263,2 7051,FRAMEQA39241,white,what is the color of the shirt?,tumblr_na5qcvN7OT1qkv1mko1_250,5697,2 7052,FRAMEQA1145,two,how many dogs are dressed as the man and a woman?,tumblr_na1tbz3mD61slj978o1_400,28588,1 7053,FRAMEQA22116,car,where are four people dancing and clapping their hands?,tumblr_n8x7dbUQBA1t5z27go1_400,58848,3 7054,FRAMEQA52646,two,how many men are looking at the computer and smiling?,tumblr_nqrx03OM6K1uxst7zo1_500,99159,1 7055,FRAMEQA23087,doorway,where is the man talking?,tumblr_nf5w59SBs41u0g8iko1_400,9674,3 7056,FRAMEQA5802,dryer,where is the person spinning around?,tumblr_njb4zjWy8G1un8n5no1_400,58776,3 7057,FRAMEQA29116,horse,what is rolling on the ground and a man is holding the lead rope?,tumblr_nin6hhwnC81tehwjso1_r1_400,46462,0 7058,FRAMEQA20223,yellow,what is the color of the boards?,tumblr_nh5uuh80qQ1u2ok96o1_400,82389,2 7059,FRAMEQA44412,red,what is the color of the turtleneck?,tumblr_n9qvrhLwzq1r54uz2o1_400,28811,2 7060,FRAMEQA52356,microphone,what is the woman holding and singing and swinging around?,tumblr_nq3x7gCDa51r69dm8o1_400,41144,0 7061,FRAMEQA2009,two,how many girls with microphones are hugging each other and laughing?,tumblr_ni0e5mHJLF1u2o7c8o1_400,1740,1 7062,FRAMEQA11904,two,how many woman lit the cigarette with a giant lighter behind him?,tumblr_njy95umIRd1qddljdo1_400,32086,1 7063,FRAMEQA42413,guitar,what is the guy dancing and playing?,tumblr_nr77in6HRv1urraj4o1_500,50533,0 7064,FRAMEQA39399,puppy,what is sliding backwards on the floor?,tumblr_nbt9t3GNcv1tdjuqvo1_400,32039,0 7065,FRAMEQA28281,torches,what is the man juggling?,tumblr_ne8i29lmlc1rmnmfgo1_400,17150,0 7066,FRAMEQA37259,two,how many people is this getting ready for halloween?,tumblr_ne8yo1RByn1r7xloyo1_400,101514,1 7067,FRAMEQA25133,room,where is the girl with black shirt watching some?,tumblr_ncyyl1NVgD1sxfrgdo1_400,33358,3 7068,FRAMEQA45623,pullover,where does the person lick his top teeth?,tumblr_ndt8izVm3e1u1pi4oo1_400,35127,3 7069,FRAMEQA38755,cub,what is the man holding and the lion is licking his face?,tumblr_nchyfz0sQj1slj978o1_250,27666,0 7070,FRAMEQA15504,two,how many people are dumping water on another person?,tumblr_naq729bCOF1rj7btco1_400,28208,1 7071,FRAMEQA2965,black,what is the color of the clothes?,tumblr_nauhia4ADE1tfni3oo1_400,21503,2 7072,FRAMEQA48338,black,what is the color of the birds?,tumblr_niwmiuolPN1tud7j4o1_500,98837,2 7073,FRAMEQA48890,two,how many men are running across the stage?,tumblr_nqtoiyEZKi1uu6w8bo1_500,99289,1 7074,FRAMEQA28750,dog,what abruptly wakes up from the nap?,tumblr_ndfb7sHq6r1tbg9d2o1_500,97079,0 7075,FRAMEQA18346,crotch,what is the young man holding?,tumblr_n9fj9fsHcA1ruvb05o1_500,75551,0 7076,FRAMEQA37494,purple,what is the color of the top?,tumblr_nd4waufSpU1qgii4so1_400,80281,2 7077,FRAMEQA27602,car,where is the woman wearing ear buds and putting on sunglasses?,tumblr_njh449BVt81u29slho1_500,87651,3 7078,FRAMEQA7803,white,what is the color of the men?,tumblr_nbg3cseAxD1s47dt7o1_500,62539,2 7079,FRAMEQA15811,two,how many men is this with the man in the forefront staring and then looking down?,tumblr_ncof91dmSJ1rluteyo1_500,82043,1 7080,FRAMEQA22674,box,what is the guy holding?,tumblr_n9p1fyGr2W1tixixoo1_400,60268,0 7081,FRAMEQA5464,black,what is the color of the hair?,tumblr_nbua5vbBnJ1th8gzmo1_500,87726,2 7082,FRAMEQA47613,red,what is the color of the woman?,tumblr_nouudbjKtI1u0el0yo1_250,38411,2 7083,FRAMEQA20875,guitar,what is the guy with the red shirt playing?,tumblr_na5ataOKNF1ra19auo1_250,32238,0 7084,FRAMEQA24397,dog,what tries to get to his owner but falls off the bed?,tumblr_nflm4phy0P1u4txqeo1_250,27288,0 7085,FRAMEQA17417,two,how many people are standing close to each other?,tumblr_ne4c3hRuqZ1sm50zqo1_500,36927,1 7086,FRAMEQA5020,three,how many men fight each other with colorful swords?,tumblr_nlxzyxkQLW1u52c2xo1_250,23633,1 7087,FRAMEQA27192,dog,what attacked the red balloon?,tumblr_ngf79bgJEJ1sht3fmo1_400,1473,0 7088,FRAMEQA31249,two,how many man are hugging each other fondly?,tumblr_nfi7iq5CVX1u4qc5yo1_400,28401,1 7089,FRAMEQA1032,two,how many woman in a pool hug then smile?,tumblr_n9qycyrMPe1tid4e3o1_250,15970,1 7090,FRAMEQA5793,cat,what is staring up and twitching its tail then jumping?,tumblr_nc1h818Si01tlk1ano1_250,7880,0 7091,FRAMEQA15635,room,where is the woman with a dark coat walking?,tumblr_nivbfa2ctl1t0ccl7o1_250,39510,3 7092,FRAMEQA5243,one,how many race car hits another sending it on its side and making it flip over?,tumblr_njoz3heJia1tx8mn0o1_400,21855,1 7093,FRAMEQA37756,black,what is the color of the cat?,tumblr_ndopa89squ1tk9tvao1_500,94715,2 7094,FRAMEQA39038,cat,what climbs into the paper bag?,tumblr_nhg6vkuI8y1tgetb4o1_250,53401,0 7095,FRAMEQA39544,cigarette,what is an angry man smoking?,tumblr_nfpubqKlJ11szh8ieo1_250,20476,0 7096,FRAMEQA16538,butt,what is the performer shaking for a lady?,tumblr_nrjmxuJrpb1sw471io1_400,33241,0 7097,FRAMEQA33309,two,how many men are jumping and dancing with each other?,tumblr_npmvj70dMN1qztqp5o1_500,61017,1 7098,FRAMEQA51862,white,what is the color of the robe?,tumblr_noiez5sPNW1u58xl4o1_500,60853,2 7099,FRAMEQA32850,two,how many men in suits are walking in front of a glass door?,tumblr_nbss3cYIpi1sgwg9go1_400,45435,1 7100,FRAMEQA24889,three,how many friends are jumping and happy and hug each other?,tumblr_n9jrh32UiA1scv8s8o1_250,33326,1 7101,FRAMEQA50889,glasses,"what is the man , wearing , slides open a door and dances through while carrying a walking tick and radio?",tumblr_n9iy2q8Dyp1s9lomgo1_250,15540,0 7102,FRAMEQA9769,guitar,what are the person 's hands playing very quickly?,tumblr_nogjx24Wzp1u6z7i8o1_500,71209,0 7103,FRAMEQA48767,chair,where is the dog sitting?,tumblr_nc51lxZqcX1tkpzw0o1_250,6269,3 7104,FRAMEQA16183,dog,what is touching the cats head as if its petting the cat?,tumblr_n9mhncAnrG1tfer0ho1_400,15516,0 7105,FRAMEQA51042,cup,what is the woman holding and dancing?,tumblr_neu43fKXYn1sj961qo1_r1_250,17723,0 7106,FRAMEQA44728,two,how many guys are singing and making some moves with their hands?,tumblr_nkyfxvKq0p1rwwygfo1_500,92839,1 7107,FRAMEQA10429,white,what is the color of the woman?,tumblr_njz44cKW5C1sba90go1_540,90331,2 7108,FRAMEQA46371,ski,what is moving through the water?,tumblr_nor1hzgJKs1uphi0wo1_1280,96807,0 7109,FRAMEQA23137,white,what is the color of the smoke?,tumblr_nir5kizmPH1snmvsao1_250,429,2 7110,FRAMEQA27430,black,what is the color of the shirt?,tumblr_nc7twzBcFV1tboe07o1_250,2938,2 7111,FRAMEQA45943,white,what is the color of the dress?,tumblr_njvkf2BwN71u3ruqqo1_400,19797,2 7112,FRAMEQA17260,straw,what is the girl tonguing and looking around the room?,tumblr_nr1461ncLI1uyohjro1_500,76025,0 7113,FRAMEQA42499,two,how many guitarists are playing their guitars together?,tumblr_niml4vDdxa1s43pimo1_500,87715,1 7114,FRAMEQA778,red,what is the color of the motorcycle?,tumblr_ndo9mexi0q1tx8mn0o1_400,52724,2 7115,FRAMEQA15939,brown,what is the color of the hair?,tumblr_nfnu4rW2T61u4xw0zo1_500,100584,2 7116,FRAMEQA49486,two,how many women are cuddling and kissing each other?,tumblr_nbwwflJurY1qc8e7lo1_400,66007,1 7117,FRAMEQA32332,room,where is the person dancing around?,tumblr_ng2qlbUIlP1ttgu7yo1_400,12426,3 7118,FRAMEQA11619,ball,what does the soccer team pass back and forth to score?,tumblr_nazhbf8XPy1tigieto1_400,84938,0 7119,FRAMEQA52657,monkey,what is grooming the smaller monkey?,tumblr_nhnhys0agY1tcltsqo1_400,66216,0 7120,FRAMEQA13068,two,how many young men are pressing their hands together?,tumblr_ndwl7ilxkz1tdmimho1_500,67810,1 7121,FRAMEQA44485,black,what is the color of the man?,tumblr_najgdrKOWV1teiq60o1_500,74304,2 7122,FRAMEQA9596,two,how many stupid women are fighting in their underwear?,tumblr_nafnschGYZ1r8w2xvo1_400,13207,1 7123,FRAMEQA19487,blue,what is the color of the puppet?,tumblr_nde98bVDhd1r21xqpo1_250,86043,2 7124,FRAMEQA24275,green,what is the color of the object?,tumblr_npahm5k3YQ1ro0x7uo1_250,24987,2 7125,FRAMEQA52746,glasses,what is the young girl in a car adjusting?,tumblr_njh449BVt81u29slho1_500,87651,0 7126,FRAMEQA13365,gray,what is the color of the jacket?,tumblr_nd4ltbxUxw1roam4co1_500,86318,2 7127,FRAMEQA17656,vehicle,what crashes head on into another vehicle?,tumblr_nc31o8OdwG1qhq89to1_500,58113,0 7128,FRAMEQA26451,room,where are two men moving and singing?,tumblr_npkxhturUR1uxcyego1_400,73594,3 7129,FRAMEQA12862,two,how many girls are walking along with the man and passing a piece of paper between them?,tumblr_nirnfzXfEK1t7y4nto2_400,50131,1 7130,FRAMEQA24220,cat,what is running across the pavement into the house?,tumblr_no75u4RtUx1tyncywo1_400,65382,0 7131,FRAMEQA3779,black,what is the color of the woman?,tumblr_ne13ygyzyP1t5ojzdo1_250,6688,2 7132,FRAMEQA107,dog,what is walking down the sidewalk with its tongue out?,tumblr_n9v6txFBWy1tc31mqo1_400,65105,0 7133,FRAMEQA3413,black,what is the color of the suit?,tumblr_nbc41z0R6O1tkmfumo1_250,47223,2 7134,FRAMEQA52971,two,how many guitarists are playing music on stage?,tumblr_niqzj9bg5M1r1i417o1_500,36921,1 7135,FRAMEQA11885,gym,where is the girl doing exercises?,tumblr_ncegncqlk21tkyo15o1_250,76279,3 7136,FRAMEQA17772,two,how many girls are fighting each other in a lunch room?,tumblr_nf3x6m8etJ1u2lsxjo1_500,85880,1 7137,FRAMEQA11785,two,how many guys are putting there arms around each other and laughing?,tumblr_nkr8dmb0LK1upu5g5o1_250,7596,1 7138,FRAMEQA6074,piano,what is the man playing and moving his body around?,tumblr_nam1sweE7I1twkbdko1_500,60875,0 7139,FRAMEQA42162,cap,"what is the man , wearing , pushes a melting ice cream into his mouth as some drops from his hand?",tumblr_nbdrvlk5n11tl9e0co1_250,44094,0 7140,FRAMEQA21254,black,what is the color of the hair?,tumblr_nkrz2b07y11rxj7ooo1_250,2162,2 7141,FRAMEQA32217,car,what is running near the water well in a track?,tumblr_nf87a1ENfb1u25ovvo1_400,63565,0 7142,FRAMEQA13018,snowboard,what is doing tricks on his snowboard?,tumblr_nkwevdfwXv1toyl9ro1_400,58540,0 7143,FRAMEQA43367,room,where is the guy speaking and touching his face?,tumblr_n9gl73jiW11si92i8o1_500,12739,3 7144,FRAMEQA29881,room,where is the girl with blonde hair dancing?,tumblr_notz47rcwY1sq24x8o1_400,19107,3 7145,FRAMEQA7874,black,what is the color of the hats?,tumblr_nds6ogu9QS1tsn7r7o1_400,22067,2 7146,FRAMEQA46403,dog,what sits on the sofa with a strange expression on its face?,tumblr_njuk1huMBo1unlpflo1_400,63604,0 7147,FRAMEQA45194,car,what did the man drive around a track?,tumblr_n9066tnq0A1tx8mn0o1_400,78618,0 7148,FRAMEQA19008,black,what is the color of the shirt?,tumblr_n97twqSx7R1s0j7iyo1_500,71372,2 7149,FRAMEQA39337,white,what is the color of the man?,tumblr_nkn0fjyZdU1u2oi1bo1_400,63052,2 7150,FRAMEQA39390,clown,what is rocking back and forth?,tumblr_njku6reaVI1u6ktjmo1_250,51889,0 7151,FRAMEQA44837,two,how many men are being interviewed and being to laugh?,tumblr_nagmqkc3IH1t24hnto1_400,77196,1 7152,FRAMEQA9673,cigarette,what is the man falling into a chair and smoking?,tumblr_nkulzveVZa1s2y2x1o1_250,77806,0 7153,FRAMEQA25253,bed,where is the girl jumping and doing rounds?,tumblr_njo67z0f8B1u1pokno1_400,34164,3 7154,FRAMEQA31319,cat,what is biting some in a room?,tumblr_nd59g8nitC1qjpmwio1_500,43150,0 7155,FRAMEQA4359,two,how many girls with long dark hair are smiling?,tumblr_nfwsbaUqdU1tkqyuyo1_400,29743,1 7156,FRAMEQA30564,black,what is the color of the jacket?,tumblr_nd91d84Ej81rwad3do1_400,76683,2 7157,FRAMEQA40950,chair,where is the cat bouncing?,tumblr_ne3xjjWRr51tdmffyo1_250,47903,3 7158,FRAMEQA35817,two,how many men in white are hugging in front of a crowd?,tumblr_nbg3cseAxD1s47dt7o1_500,62539,1 7159,FRAMEQA34934,box,what is being opened and the contents are spilling out?,tumblr_nc5poqix5U1tj1rafo1_400,58535,0 7160,FRAMEQA20397,cat,what is jumping in the back of a dog?,tumblr_nabb9j5rq71rw1wnno1_400,69434,0 7161,FRAMEQA41323,garage,where are the group of men walking?,tumblr_ndmd0bTfA01ts7wbfo1_400,87448,3 7162,FRAMEQA9370,yellow,what is the color of the uniform?,tumblr_ng970sSWti1thldh3o1_400,38036,2 7163,FRAMEQA46791,cartwheel,what is the young woman with a sword performing?,tumblr_nawdliKwAp1tfcz5mo2_500,56608,0 7164,FRAMEQA38921,two,how many girls pose and make faces together while they smile?,tumblr_nbp324pRIa1tlea9go1_400,33695,1 7165,FRAMEQA25749,corridor,where is the man dancing?,tumblr_naoyfvnSx51r8lgn6o1_500,96569,3 7166,FRAMEQA49472,cat,what is trying to get into the tent?,tumblr_n8x7oaXb1D1sj1td7o1_250,19037,0 7167,FRAMEQA22500,kitten,what is nibbling on the bunny rabbits ears?,tumblr_ngapyhHe7Y1sohuqmo1_250,36485,0 7168,FRAMEQA17796,t-shirt,what is the young man removing by pulling it over his head?,tumblr_ney69ux4541u2hqlpo1_250,12295,0 7169,FRAMEQA25434,horse,what is walking through glass doors?,tumblr_ndg6m6C0nY1tdmffyo1_400,86974,0 7170,FRAMEQA16621,car,what is driving down the road?,tumblr_nelzs6i5ro1u25ovvo1_400,63645,0 7171,FRAMEQA44341,sunglasses,what is the woman riding an escalator adjusts?,tumblr_na7rlbB17h1tibxkwo1_r1_500,101504,0 7172,FRAMEQA15114,blue,what is the color of the shirt?,tumblr_nhzgtdxyFO1u5hpvco1_250,53677,2 7173,FRAMEQA31572,two,how many people are moving around together in the room?,tumblr_ndd0liU8F51u0bmj8o1_250,59662,1 7174,FRAMEQA11375,car,where is the man racing down a strip?,tumblr_ndasm67IHk1tr5tuwo1_500,49883,3 7175,FRAMEQA21399,classroom,"where does the boy look at a girl who looks back at him , smiles , and turns away?",tumblr_nbdu4fOWp81sbd2hxo1_500,68078,3 7176,FRAMEQA50626,cat,what is moving in circles while she stays on something?,tumblr_nap9tkwsHK1s50jqco1_250,50841,0 7177,FRAMEQA18287,red,what is the color of the dress?,tumblr_nk422ugqDv1qj7p4ho1_400,23642,2 7178,FRAMEQA876,popcorn,what is the woman eating from a bowl?,tumblr_nd73ono6M61tssk6do1_400,33092,0 7179,FRAMEQA6434,two,how many woman is this posing for a photo?,tumblr_ncau65g1Vf1tcmvxuo1_500,89216,1 7180,FRAMEQA48966,figure,what is the man making on stage?,tumblr_njy7o4JdmP1u2mi4fo1_400,51173,0 7181,FRAMEQA3337,feather,what is the girl lifting with magic?,tumblr_njxnhePk1F1qeaeqco1_250,49050,0 7182,FRAMEQA50798,green,what is the color of the t-shirt?,tumblr_n95bh90s761tugubmo1_250,3745,2 7183,FRAMEQA7802,two,how many girls is sitting on the floor and then get up?,tumblr_ng6o125mhO1s2shh0o1_400,32759,1 7184,FRAMEQA35071,cat,what is wearing the shark costume while riding an automatic vacuum?,tumblr_nap9tkwsHK1s50jqco1_250,50841,0 7185,FRAMEQA30878,phone,what is the young woman answering on the street?,tumblr_nbkzg243Sd1r2sl5ho1_400,37058,0 7186,FRAMEQA32138,cat,what is the squirrel biting a cat and it turns and attacks?,tumblr_ncko1cgtVl1rwkjivo1_400,45420,0 7187,FRAMEQA18449,two,how many women with long hair are running on a bridge?,tumblr_ncecowzOHz1tky8vdo1_400,76171,1 7188,FRAMEQA46172,diver,what is knocking down rocks with air bubbles?,tumblr_n8ott1a35b1tgkdkbo1_400,45417,0 7189,FRAMEQA16361,four,how many people are dancing and clapping their hands in a car?,tumblr_n8x7dbUQBA1t5z27go1_400,58848,1 7190,FRAMEQA31541,two,how many basketball players are having the discussion?,tumblr_nelrob2YG41u32mywo1_250,84517,1 7191,FRAMEQA29589,four,how many men are standing together and doing different poses?,tumblr_ngfpt91NJR1u4h7glo1_500,57449,1 7192,FRAMEQA29941,car,what is the man driving with a woman in the passenger seat?,tumblr_nowrymJVDJ1uumws9o1_250,43909,0 7193,FRAMEQA36390,machine,what is the person moving over some blocks of wood?,tumblr_nfci1eCnqd1u33ci0o1_400,52870,0 7194,FRAMEQA878,two,how many women are kissing in the room?,tumblr_npebl4xJIb1sczfc3o1_500,100521,1 7195,FRAMEQA11355,airplane,what are the group of young people boarding?,tumblr_negf45USHl1u2j78co1_250,2107,0 7196,FRAMEQA45154,black,what is the color of the singer?,tumblr_nauihwVLAC1s33orio1_500,66636,2 7197,FRAMEQA38749,white,what is the color of the male?,tumblr_nocn6xpjWd1tjx27mo1_400,91632,2 7198,FRAMEQA23296,guitar,what is the young person with died blonde hair playing?,tumblr_n9o0vbrAQf1qedx60o1_500,94470,0 7199,FRAMEQA11608,cat,what stands up in the corner and pulls the curtain to hide himself?,tumblr_nex4xp2DL31slj978o1_250,3264,0 7200,FRAMEQA6256,two,how many race cars crash while racing on the race track?,tumblr_njoz3heJia1tx8mn0o1_400,21855,1 7201,FRAMEQA22152,black,what is the color of the jacket?,tumblr_nbktcer8TP1synqozo1_500,93815,2 7202,FRAMEQA34427,guitar,what is the kangaroo playing and scratching himself?,tumblr_ndyh3iTJcd1tdjuqvo1_400,10995,0 7203,FRAMEQA41999,two,how many fingers is the man with tattoo in his body lifting?,tumblr_nao9dwfbWL1tbsc6ko1_500,70936,1 7204,FRAMEQA29626,blue,what is the color of the shirt?,tumblr_ndxa2eKWcV1salk6vo1_400,66107,2 7205,FRAMEQA35193,cat,what is looking up under the glass table?,tumblr_nfk0cw83nY1tdmffyo1_250,3658,0 7206,FRAMEQA6058,two,"how many men stand beside the large , white doll?",tumblr_nk6g39be3f1trv4w5o1_400,48560,1 7207,FRAMEQA31480,black,what is the color of the suit?,tumblr_narl33GzW21tecyy7o1_250,19943,2 7208,FRAMEQA42977,two,how many men is this hugging on stage?,tumblr_nfx12yL0PW1r6pekco1_250,19311,1 7209,FRAMEQA13638,brown,what is the color of the horse?,tumblr_ndm302Gvzr1srpy25o1_500,56698,2 7210,FRAMEQA35720,toy,what is the man wearing headphones is kissing?,tumblr_npahm5k3YQ1ro0x7uo1_250,24987,0 7211,FRAMEQA30186,black,what is the color of the hat?,tumblr_nc791vTJcs1rmvc6mo1_400,33318,2 7212,FRAMEQA36488,room,where is the girl with dark hair dancing?,tumblr_npqkeicVyS1urit4io1_500,60167,3 7213,FRAMEQA47606,bed,where are two people rolling around?,tumblr_n96o5dqttH1qha21xo1_500,88139,3 7214,FRAMEQA18158,two,how many comedians are performing in the stage?,tumblr_nel4t7kzLa1sk7iiyo1_250,9547,1 7215,FRAMEQA12050,black,what is the color of the woman?,tumblr_nr4vryXuiR1u9o6qbo1_400,19008,2 7216,FRAMEQA41821,goat,what jumps off the ledge then walks behind a tree?,tumblr_nevmlnaUJr1tdmffyo1_400,8464,0 7217,FRAMEQA37777,white,what is the color of the shirt?,tumblr_n8vvflvDJG1r4g57go1_500,50241,2 7218,FRAMEQA2556,cat,what is the cat tied up with a white dog and is scared?,tumblr_n9dxxv9ONq1sk96t7o1_400,59286,0 7219,FRAMEQA3614,two,how many girls is this hugging and smiling?,tumblr_npqo3gqPc91rtl9udo1_400,84980,1 7220,FRAMEQA7499,white,what is the color of the clothes?,tumblr_nkp0k4W1RF1u63djdo1_250,53422,2 7221,FRAMEQA12764,white,what is the color of the dress?,tumblr_nem8gpQBGp1tmo3g8o1_400,60002,2 7222,FRAMEQA17674,rabbit,what is on top of a box containing a kitten?,tumblr_npvj0dWS9A1tpg4boo1_400,27950,0 7223,FRAMEQA1813,cars,what did cars race through a racetrack race?,tumblr_n9q9ktUtOe1sncaa3o1_400,54013,0 7224,FRAMEQA662,car,what is driving down the street?,tumblr_nfqoyfh3sz1u25ovvo1_400,63597,0 7225,FRAMEQA6240,makeup,what is the young woman having done?,tumblr_ncqgktCjAl1tlq7xdo1_400,77095,0 7226,FRAMEQA27243,two,how many young man are having fun laughing?,tumblr_n90lo4ayHL1trm2z1o1_250,51359,1 7227,FRAMEQA52916,three,how many men are having the fun conversation?,tumblr_n9sho7J99O1tggdauo1_400,14816,1 7228,FRAMEQA23381,drink,what is the woman taking from a tiny glass?,tumblr_n8xlvd72vz1teon97o1_250,16683,0 7229,FRAMEQA16104,tub,where is a family?,tumblr_nnsnziHoXc1ro4jalo1_500,91305,3 7230,FRAMEQA2351,cat,what jumped off the couch and walked to the door?,tumblr_nfmdfo7AD41u4txqeo1_250,10556,0 7231,FRAMEQA47488,two,how many guys is singing and dancing in the stage?,tumblr_nhyr5ynnyZ1u832tco1_500,89096,1 7232,FRAMEQA28590,white,what is the color of the sunglasses?,tumblr_npkoql9zof1uwhtsjo1_250,35472,2 7233,FRAMEQA44777,two,how many people play with each other 's hair and smile?,tumblr_nfaqctqMXx1u28t0lo1_250,5364,1 7234,FRAMEQA7031,three,how many guys are performing their music show in the stage?,tumblr_np62ekg9ZP1ta8o4no1_250,57708,1 7235,FRAMEQA3530,black,what is the color of the glasses?,tumblr_najdllMh1q1t0xoqgo1_250,40742,2 7236,FRAMEQA50534,black,what is the color of the suit?,tumblr_nk1888Z7Rf1soxppho1_500,34516,2 7237,FRAMEQA420,hall,where is the girl watching some?,tumblr_nddhjyJeIU1qfvfmto1_500,72358,3 7238,FRAMEQA27040,two,how many men are turning their heads?,tumblr_n9b2510ZPL1rx90qpo1_250,38426,1 7239,FRAMEQA19822,cat,what is hissing while standing on the person 's knee?,tumblr_n9c03vG9GB1tyeuq0o1_250,27241,0 7240,FRAMEQA36281,signs,what are two men making with their hands?,tumblr_n90hf0rDEo1t0ojyvo1_250,25494,0 7241,FRAMEQA26312,black,what is the color of the bangs?,tumblr_ngdq4bTF1K1u4q8jjo1_500,91814,2 7242,FRAMEQA20703,guitar,what is the guy wearing blue playing?,tumblr_ngqw2fXCTZ1rlpvdxo1_250,16218,0 7243,FRAMEQA37705,classroom,where does the girl in glasses smile looks?,tumblr_nfsmqbZ9tQ1t1nk7eo1_400,60946,3 7244,FRAMEQA40398,two,how many dancer with black hair are dancing?,tumblr_nknr9xW0hU1u922jno2_400,78072,1 7245,FRAMEQA46780,black,what is the color of the hat?,tumblr_nffjb8ayhY1tw8vf9o1_400,14879,2 7246,FRAMEQA4933,car,where is the man talking?,tumblr_n98gksRLsF1tv6chqo1_500,19027,3 7247,FRAMEQA21762,dog,what tries to reach for biscuit before bigger one eats it?,tumblr_nijrydrPVc1rtzdq7o1_400,94791,0 7248,FRAMEQA3830,car,what is driving fast on the road and crashes into some plants?,tumblr_nasp5mc5s41tx8mn0o1_400,55618,0 7249,FRAMEQA31458,white,what is the color of the man?,tumblr_njmvfrXqDL1tzhdnfo1_400,66381,2 7250,FRAMEQA23056,brown,what is the color of the hair?,tumblr_nbov37iDaw1s3sl66o1_250,16145,2 7251,FRAMEQA8483,scarf,what is the guy wearing and smoking a cigarette?,tumblr_nkr302wD1d1s3xft0o1_400,66391,0 7252,FRAMEQA10909,white,what is the color of the shirt?,tumblr_njs6ceesFH1tll6f9o1_400,67344,2 7253,FRAMEQA6541,white,what is the color of the bandanna?,tumblr_nafuzveLwl1tjrkd0o1_400,37513,2 7254,FRAMEQA5617,green,what is the color of the suit?,tumblr_no00ddSlG31t34v14o1_250,81154,2 7255,FRAMEQA36596,white,what is the color of the shirt?,tumblr_nrifz9OHXA1r7dalho1_500,57761,2 7256,FRAMEQA22088,five,how many guys in suits are spinning around?,tumblr_ng07waiEct1rscvico1_400,11346,1 7257,FRAMEQA20651,panda,what is holding the big panda?,tumblr_n9al1mawYK1thcwtbo1_500,70761,0 7258,FRAMEQA26107,singer,what is talking to the rock singer with a large butt?,tumblr_ndcdp9qa9l1raaknro1_500,56535,0 7259,FRAMEQA14200,white,what is the color of the dress?,tumblr_nea5lyH6TK1rp9kgfo1_500,70876,2 7260,FRAMEQA40585,room,what are two people sitting down and someone else enters?,tumblr_nafggj6YFG1sinpl8o1_400,28298,0 7261,FRAMEQA47448,airplane,where is the guy touching other guys?,tumblr_n9g8pk1fkR1tevldxo1_400,30581,3 7262,FRAMEQA26722,cars,what are driving the road in the dark?,tumblr_nggyen6SeD1r1esw8o1_500,67210,0 7263,FRAMEQA28527,floor,what is the person hitting with a baseball bat?,tumblr_naxep6N7nq1td6onfo1_500,52854,0 7264,FRAMEQA51365,blue,what is the color of the shirt?,tumblr_nfhfz9U1go1tghqjmo1_500,87917,2 7265,FRAMEQA11953,bear,what slides on the ice as he runs?,tumblr_ni3sk8Rk081u8orsuo1_250,36559,0 7266,FRAMEQA37069,jacket,what is the person taking off while singing and dancing?,tumblr_ni05so1zMe1qagkngo1_500,54924,0 7267,FRAMEQA5560,hall,where is the guy with a cap walking?,tumblr_nhz8czNPjn1qeereko1_1280,93001,3 7268,FRAMEQA4807,two,how many guys are sitting together?,tumblr_n9lbia4caa1swt5n8o1_500,92188,1 7269,FRAMEQA10102,cannon,what is shot beside the laptop?,tumblr_nlj7u9svNG1s6zpepo1_400,82818,0 7270,FRAMEQA5486,tail,what does the cat smell?,tumblr_neygedcDOt1tkhxdko1_400,46613,0 7271,FRAMEQA16837,butt,what is the man standing over a bike and rubbing?,tumblr_n8rqi06djV1rnn3cno1_250,23051,0 7272,FRAMEQA7386,black,what is the color of the hair?,tumblr_nbd6mxxR7M1t5ojzdo1_250,17389,2 7273,FRAMEQA20851,three,how many young boys are standing together and laughing?,tumblr_ndp1ysrClu1trkb77o1_500,97264,1 7274,FRAMEQA40840,black,what is the color of the jacket?,tumblr_nfm146v67f1u44rezo1_500,63307,2 7275,FRAMEQA42757,car,where are the group of young people singing?,tumblr_n9bfkffhAg1tf2whho1_400,18627,3 7276,FRAMEQA50181,white,what is the color of the man?,tumblr_nghnsy9tub1skqoaho1_400,62925,2 7277,FRAMEQA10136,two,how many girls are laughing and smiling while pretending to scare someone?,tumblr_naef7gYw6B1tjr73vo1_400,22030,1 7278,FRAMEQA15912,jacket,what are two women pulling off?,tumblr_ng6i6uP4kE1s5svyno1_500,93850,0 7279,FRAMEQA44080,red,what is the color of the jacket?,tumblr_nhxbfztqER1tzhdamo1_500,85634,2 7280,FRAMEQA34880,white,what is the color of the man?,tumblr_noyo842ZhQ1sonpgjo1_400,30297,2 7281,FRAMEQA5306,two,how many men are talking and touching each other?,tumblr_nbdro9plFr1tfri6co1_400,19670,1 7282,FRAMEQA26396,white,what is the color of the shirt?,tumblr_ndv4idx5Wc1tgmz7do1_400,95415,2 7283,FRAMEQA39724,dog,what is walking on the carpet in a room?,tumblr_na4zqx8sRJ1tdjuqvo1_250,74416,0 7284,FRAMEQA18984,elephant,what is shooting water from its trunk?,tumblr_nr0xuomYVF1uqy5dho1_250,82672,0 7285,FRAMEQA17163,star,what is addressing the crowd from the stage?,tumblr_n8v942Cw1q1r6654qo1_500,5914,0 7286,FRAMEQA23646,black,what is the color of the shirt?,tumblr_nk2gmq8jhM1si8uq7o1_400,31244,2 7287,FRAMEQA32769,guitar,what is the man wearing a white tee shirt is playing?,tumblr_ncj0b4qFmm1tk9c2ao1_400,4727,0 7288,FRAMEQA12798,ball,what did the woman jumps and catches catch?,tumblr_ncwwwj2mvE1u0x47zo1_500,76825,0 7289,FRAMEQA43699,purple,what is the color of the suit?,tumblr_nh26ktHkqQ1sffyevo1_400,85444,2 7290,FRAMEQA25916,pants,what is the boy pulling down inappropriately?,tumblr_nqx3goKTK71t0ojyvo1_400,8463,0 7291,FRAMEQA1942,ball,what is the soccer player kicking?,tumblr_n9vz1u2IKj1tz9jaqo1_400,96194,0 7292,FRAMEQA2222,balls,what is the girl juggling and dropping them?,tumblr_nh5z1ajZzd1rwipr5o1_r1_250,27736,0 7293,FRAMEQA38032,ball,what is the very cute man with short hair throwing?,tumblr_nabzy4yOL81tsxh57o1_400,50858,0 7294,FRAMEQA31695,bubble,what is the young woman chewing gum blowing with the gum?,tumblr_nrkc0sh9Q61us2u6eo1_500,62422,0 7295,FRAMEQA43440,three,how many men are attempting to row the boat across a lake?,tumblr_nkyhhgTo8b1tw2zo1o1_400,50150,1 7296,FRAMEQA40143,studio,where is the man wearing headphones is laughing?,tumblr_njoe512UyJ1ta4f2po1_500,86852,3 7297,FRAMEQA6662,cloth,what is two lovers taking off with kissing?,tumblr_nobecu8wyv1s5cww5o1_400,63193,0 7298,FRAMEQA17003,white,what is the color of the robot?,tumblr_nivk6uk2XY1u9wwjjo1_500,91309,2 7299,FRAMEQA23867,green,what is the color of the skin?,tumblr_nec1h2hsBk1rlqu38o1_500,40075,2 7300,FRAMEQA40111,star,what is pointing at herself and dancing along?,tumblr_npxgumJwdE1ros9sso1_250,2010,0 7301,FRAMEQA36071,clothing,what is the woman in a red room adjusting?,tumblr_nq36cclrEn1uvp3zyo1_500,34462,0 7302,FRAMEQA5011,three,how many men are dancing in the row?,tumblr_net9msbsuS1r0c0rjo1_400,5132,1 7303,FRAMEQA23071,serviette,what is the woman wearing and rubbing her hands with a tissue?,tumblr_nczp2qvU8V1tsq7wxo1_400,32744,0 7304,FRAMEQA14773,three,how many women are dancing and singing in the club with fancy lighting?,tumblr_ng8b6xSueH1u5s6sso1_500,33941,1 7305,FRAMEQA32386,red,what is the color of the hair?,tumblr_nk1ldtCFnm1rcnyh1o1_540,46123,2 7306,FRAMEQA33429,two,how many girls are playing?,tumblr_ng6o125mhO1s2shh0o1_400,32759,1 7307,FRAMEQA26812,truck,what is this unloading a boat into a lake?,tumblr_nhbc8vzATx1s6zpepo1_400,87125,0 7308,FRAMEQA16382,two,how many men are standing back to back in the circle?,tumblr_ncs5palRjX1ro5rv7o1_400,58317,1 7309,FRAMEQA17268,two,how many men laugh and then one says shut up?,tumblr_n9fvulP7Wu1sh5rgdo1_500,45880,1 7310,FRAMEQA28495,two,how many people is touching each others head looking angry?,tumblr_n9lt3cvvy61trvs7go1_400,57272,1 7311,FRAMEQA40606,two,how many wolves are clinging on to the man?,tumblr_nj458883cd1qdn0lqo1_500,48918,1 7312,FRAMEQA2997,two,how many girls walk with their hands parallel to the floor?,tumblr_njzu0gm7Tt1u9be15o1_500,41484,1 7313,FRAMEQA40085,wig,what is the girl or boy wearing and sitting in front of a map?,tumblr_nf2hv8gSF11tkxs3fo1_400,28460,0 7314,FRAMEQA32740,two,how many guys is this image of playing and having fun?,tumblr_n9rm0wQ5KP1thg4lco1_400,33455,1 7315,FRAMEQA46718,room,where are the young couple kissing?,tumblr_nkulv7z8YZ1tzejvio1_400,97507,3 7316,FRAMEQA53047,two,how many women wink at each other while sitting?,tumblr_na17ppTVng1tn4oroo1_500,89162,1 7317,FRAMEQA52140,cat,what is being stroked by the girl with brown hair?,tumblr_nba7mrIRaG1te5fy0o1_500,79432,0 7318,FRAMEQA21261,glasses,what is the man wearing and putting his hands to his cheeks?,tumblr_neostvxdgZ1s3urzuo1_250,15575,0 7319,FRAMEQA27774,toy,what is the dog bringing and then stepping back?,tumblr_ngo9zfHkp61qixslso1_400,13941,0 7320,FRAMEQA23700,red,what is the color of the trunks?,tumblr_ndumiurqqk1rt9tego1_400,24602,2 7321,FRAMEQA29379,toast,what pops up making the cat jump off the stool and knocking it over?,tumblr_n8urd6PMiY1tgkdkbo1_400,74900,0 7322,FRAMEQA5881,yellow,what is the color of the shirt?,tumblr_nckmwntNmv1qj7ylio1_250,15976,2 7323,FRAMEQA25612,two,how many professional wrestlers hit the mat at the same time?,tumblr_ndrv41jHnK1rlowhpo1_400,63063,1 7324,FRAMEQA31824,green,what is the color of the dress?,tumblr_nh3j88dsbs1u5hfl4o1_250,15280,2 7325,FRAMEQA49399,one,how many man is tackling another man on a stage?,tumblr_n8wgisVPCk1tfioy3o1_500,92536,1 7326,FRAMEQA48684,bird,what is tapping the cat on the nose with its beak?,tumblr_n97k6nnj3K1tbjfazo1_400,34099,0 7327,FRAMEQA49898,kit,where is the man walking backwards?,tumblr_na9ijld2mu1rqb3bqo1_250,9555,3 7328,FRAMEQA48587,white,what is the color of the scarf?,tumblr_ne3w76eSSb1u28yp1o1_500,48570,2 7329,FRAMEQA27809,gray,what is the color of the cat?,tumblr_nf8v50LnUt1tk2ngvo1_500,78064,2 7330,FRAMEQA43408,bats,what are jumping onto the large blue cushion?,tumblr_n9qwatWy9m1slj978o1_400,73992,0 7331,FRAMEQA50539,bed,where is the man laying smoking a cigarette?,tumblr_nguizjs4Pa1u5hpeio1_250,21210,3 7332,FRAMEQA12220,cat,what is walking on the treadmill towards food?,tumblr_n9mzyvftsL1the8uso1_400,46051,0 7333,FRAMEQA1615,black,what is the color of the man?,tumblr_naid7nj0Ad1tc51qlo1_1280,62137,2 7334,FRAMEQA8487,guitar,what is someone strumming with a plectrum?,tumblr_nafjr4e15v1rdl60ao1_500,72562,0 7335,FRAMEQA15558,coat,what is the man wearing and smiling?,tumblr_n9it4hQnrt1sl5c6po1_250,24428,0 7336,FRAMEQA30655,black,what is the color of the coat?,tumblr_naekrosZth1s2zgxfo1_500,72270,2 7337,FRAMEQA48620,two,how many male athletes are hugging each other?,tumblr_nfny96oDYU1sefjuxo2_500,53018,1 7338,FRAMEQA21970,white,what is the color of the man?,tumblr_n7f2kzhB2U1svxaato1_250,1017,2 7339,FRAMEQA8852,gray,what is the color of the jacket?,tumblr_nlsgkqiHFM1rmkrcqo1_500,48135,2 7340,FRAMEQA32020,shower,where is the girl asleep and a guy turns on the water?,tumblr_nqyt6qiuFP1uqboh1o1_500,38556,3 7341,FRAMEQA3374,four,how many young woman are posing together and smiling?,tumblr_nbfv8pOFQ91r3s7e9o1_400,4875,1 7342,FRAMEQA52873,drink,what is the person in a red shirt drinking?,tumblr_n9ucnlmCk51qzxorvo1_250,9249,0 7343,FRAMEQA20975,five,how many men is wearing dark outfits with dark hair look down?,tumblr_njykg3xiBN1u85shpo1_1280,96950,1 7344,FRAMEQA32545,black,what is the color of the shirt?,tumblr_nc722sHNRh1tpdn69o1_400,30028,2 7345,FRAMEQA3204,dog,what is yawning while being scratched on the head?,tumblr_nhy3t8q7sF1sbjgb9o1_500,73834,0 7346,FRAMEQA52752,bobcat,what is the woman walking on a leash and it attacks a dog?,tumblr_nbv1p9aCuo1tahfdeo1_250,44809,0 7347,FRAMEQA14093,two,how many men look at each other in the night time?,tumblr_new5vfefZx1sdc1qco1_400,98609,1 7348,FRAMEQA11808,blue,what is the color of the water?,tumblr_nfkopzxSre1tg9gzmo1_500,21744,2 7349,FRAMEQA4506,room,where are the two men singing and dancing?,tumblr_n9uscu0MKn1tdve1no1_r1_500,68564,3 7350,FRAMEQA11085,two,how many people are dancing on stage and someone is playing guitar?,tumblr_ncl72mqPLe1rvltxro1_500,23929,1 7351,FRAMEQA10822,brown,what is the color of the dog?,tumblr_nh0sftU2oI1sgc1txo1_400,1442,2 7352,FRAMEQA4936,flower,what does someone intricately carve into a watermelon?,tumblr_nr4wp15M1R1sht3fmo1_250,73936,0 7353,FRAMEQA49081,room,where are two guys sitting and watching some?,tumblr_niw20xqfYh1qjzq4lo1_400,81088,3 7354,FRAMEQA42063,white,what is the color of the shirt?,tumblr_neib4lKN3B1tvs3k8o1_500,81920,2 7355,FRAMEQA34503,white,what is the color of the suit?,tumblr_nrkkxw1MIR1uxae7wo1_500,34271,2 7356,FRAMEQA52290,car,what is driving off of the race track?,tumblr_nri0fojp0G1tx8mn0o1_400,55938,0 7357,FRAMEQA37365,white,what is the color of the talks?,tumblr_n8w0qiOHm51sic5d1o1_250,49816,2 7358,FRAMEQA10530,griddle,what is the chef creating?,tumblr_nklbtrCvpF1trhvavo1_400,63242,0 7359,FRAMEQA21424,guitar,what is the man playing and moving around?,tumblr_ngoamhBq8M1t9h1yfo1_400,18158,0 7360,FRAMEQA3670,three,how many women dressed in nuns clothing are at the table?,tumblr_nkp552aW7o1sksdxao3_400,92179,1 7361,FRAMEQA18594,black,what is the color of the horse?,tumblr_n8xa4psLDY1sb7v5lo1_500,70371,2 7362,FRAMEQA23687,bedroom,where does the young girl smile while putting her arms in the air?,tumblr_nc8w0sTSKh1t85yovo1_400,33613,3 7363,FRAMEQA49331,two,how many guys is wearing headphones are performing on a stage?,tumblr_njtkw6qmuL1u6pwr8o2_r2_500,86491,1 7364,FRAMEQA9371,leaves,what was the black bunny rabbit eating?,tumblr_ndcvis8jts1tbcrm5o1_250,3820,0 7365,FRAMEQA46006,two,how many girls are drinking something?,tumblr_nra6g5KAfA1usnj8do1_400,82926,1 7366,FRAMEQA24431,hat,what is the girl with the long dark hair wearing?,tumblr_nqx4zeo6jf1skxa1uo1_250,42730,0 7367,FRAMEQA2497,squirrel,what jumps and scares an orange cat?,tumblr_ncko1cgtVl1rwkjivo1_400,45420,0 7368,FRAMEQA20805,box,where is the black cat lying and playing with a round object?,tumblr_nntolgMF0D1tyncywo1_250,53460,3 7369,FRAMEQA42810,sky,what are thunder and lightning lighting up?,tumblr_na27jm6QiN1rikxpmo1_400,59204,0 7370,FRAMEQA7367,ball,what does the man throw at someone in a costume but it bounces back and hits him instead?,tumblr_nkgjsaoPTt1u1pokno1_500,100084,0 7371,FRAMEQA12531,brown,what is the color of the bag?,tumblr_ne9wdl32Aq1slj978o1_400,52029,2 7372,FRAMEQA39675,black,what is the color of the man?,tumblr_nk1zj9jxie1u2leaoo1_500,98126,2 7373,FRAMEQA13426,black,what is the color of the hair?,tumblr_negezmwUpO1spote4o1_500,93793,2 7374,FRAMEQA28725,two,how many people dance and wave their arms?,tumblr_n8zjjsp2E21tecuevo1_400,42865,1 7375,FRAMEQA38880,black,what is the color of the man?,tumblr_naohfoNYRf1rqio5ho1_400,60662,2 7376,FRAMEQA3055,noodles,what is the man eating with chop sticks?,tumblr_nkihuwMaiG1qff887o1_500,53061,0 7377,FRAMEQA47545,two,how many guys are on the sidewalk dancing together?,tumblr_n99hkpMqz51sb52a1o1_400,66538,1 7378,FRAMEQA20596,red,what is the color of the headscarf?,tumblr_naimvfMVl91tug3w5o1_400,28097,2 7379,FRAMEQA48221,room,where are the man and a woman dancing?,tumblr_nju11yo3w51un17g7o1_250,93722,3 7380,FRAMEQA35454,two,how many men ride in the car while one steers wildly?,tumblr_njy7qk5Iqv1rr6d5go1_400,62367,1 7381,FRAMEQA336,black,what is the color of the hair?,tumblr_no109jnJVv1u8k4roo1_500,62452,2 7382,FRAMEQA14473,cat,what is jumping and playing with the christmas ornament?,tumblr_ngmmjdC8aq1qznkspo1_500,62809,0 7383,FRAMEQA33042,garden,where does the woman standing look to the side?,tumblr_ndi825xKE51u0jh8co1_400,63392,3 7384,FRAMEQA33066,room,where is woman talking?,tumblr_np6tx8PWjl1r3mfwoo1_500,59019,3 7385,FRAMEQA35911,pass,what is the person in a sweatshirt watching by?,tumblr_nd8otmU7uH1tk9glao2_500,99530,0 7386,FRAMEQA33741,room,where are the man and a woman dancing?,tumblr_npfcbburKv1uqba17o1_500,99857,3 7387,FRAMEQA22756,two,how many kids are beside each other making funny faces?,tumblr_n9mdaySgUM1tzixe8o1_500,92239,1 7388,FRAMEQA22308,two,how many women are taking the bath together?,tumblr_nqxdsn2yZB1r2lnvfo1_400,26152,1 7389,FRAMEQA37225,sun,what is the woman stand in a pool of water and is shining behind her?,tumblr_nf7jcxJEXE1tvkuhho1_400,72305,0 7390,FRAMEQA35260,door,what is the person coming out?,tumblr_nd37gnJ6z11s5115zo1_400,59146,0 7391,FRAMEQA5315,car,what is going on the snow covered road?,tumblr_njqgugwhX21u5o1buo1_1280,57491,0 7392,FRAMEQA9130,two,how many people are holding hands and then let go?,tumblr_npp13hVgZN1uv3dw9o1_250,45040,1 7393,FRAMEQA25803,blue,what is the color of the dress?,tumblr_np6q31hIzO1tplwjvo1_400,55495,2 7394,FRAMEQA10138,fireworks,what does this woman hold up to her face?,tumblr_nd91urmt3f1tmecz1o1_400,63566,0 7395,FRAMEQA8523,white,what is the color of the man?,tumblr_n9couvqSnM1tu91qto1_250,7995,2 7396,FRAMEQA2415,jacket,what is the young woman and a red hat is walking through an office?,tumblr_nklvmbxVSC1qeurwuo1_250,53608,0 7397,FRAMEQA7784,white,what is the color of the shirt?,tumblr_nkyy7b3e731tt9zxqo1_500,73229,2 7398,FRAMEQA37032,motorcycle,what is the man in a costume riding?,tumblr_nd8s8zoiic1s71nvbo1_400,44199,0 7399,FRAMEQA16815,white,what is the color of the dog?,tumblr_nqneh6gmCI1uva9gvo1_400,66102,2 7400,FRAMEQA41980,stadium,where are the players playing hockey?,tumblr_ndpnjgXCsI1qhrx75o1_400,74751,3 7401,FRAMEQA36500,car,where are the woman and a man singing?,tumblr_njvltpG4Cf1rdvg51o1_400,57433,3 7402,FRAMEQA30301,taxi,what is involved in the car crash?,tumblr_nazoqqzPK61rcr3teo1_250,84564,0 7403,FRAMEQA39279,guitar,what is the woman in a sparkly jacket playing?,tumblr_nakdvwOdMw1qlxas3o1_400,56285,0 7404,FRAMEQA34555,shirts,what are the group of men posing together and wearing?,tumblr_nmx84j4l8X1skgpuwo1_1280,96821,0 7405,FRAMEQA13213,black,what is the color of the coat?,tumblr_n9n7fxGuGC1rw9vqmo1_250,17157,2 7406,FRAMEQA20253,two,how many men are posing for the picture on a stage?,tumblr_n90hf0rDEo1t0ojyvo1_250,25494,1 7407,FRAMEQA42512,cat,what is cuddling with the stuffed dog?,tumblr_n8yfdjJ9921t7hjz2o1_250,42715,0 7408,FRAMEQA32049,steps,what forwards and nods without emotion?,tumblr_nfyy4pkeKZ1qdch8fo1_1280,93636,0 7409,FRAMEQA37608,black,what is the color of the suit?,tumblr_nrck59A3RN1tu5z4ho1_400,68621,2 7410,FRAMEQA51022,two,how many men stare at each other while walking in a circle?,tumblr_n9dkn0IQug1sl89nwo1_400,25606,1 7411,FRAMEQA49071,cat,what is nursing the bunch of baby ducklings?,tumblr_niwp74ihnO1slwrsuo1_400,75890,0 7412,FRAMEQA19787,two,how many girls make nodding faces at each other?,tumblr_naduko6Opl1qcvlffo1_100,93937,1 7413,FRAMEQA12421,shirt,what is the woman wearing and dancing?,tumblr_ngrowlLTYj1tmddexo1_500,22045,0 7414,FRAMEQA41939,white,what is the color of the shirt?,tumblr_ncmf9iu3nr1tf406do1_400,33259,2 7415,FRAMEQA12865,black,what is the color of the suit?,tumblr_ng0kmzzi0r1tgt39ko1_400,44221,2 7416,FRAMEQA49584,door,where is the man looking out a slot?,tumblr_nevr3gOI1m1u11y7uo1_500,34405,3 7417,FRAMEQA38316,orange,what is the color of the hair?,tumblr_nfxbk5ckRo1sh7n3uo1_250,8702,2 7418,FRAMEQA34053,seven,how many fingers does the lady put up in the air?,tumblr_ndi56898WC1s52tx6o1_500,86080,1 7419,FRAMEQA48210,jacket,what is the man with long hair wearing?,tumblr_ndpage5NpP1tx2mybo1_400,32395,0 7420,FRAMEQA8415,brown,what is the color of the looks?,tumblr_nfzfabyUbK1rro3hqo1_400,58308,2 7421,FRAMEQA4425,two,how many men hug and one man pats the other man on back?,tumblr_n9xvfh2oUz1rjf48qo1_250,23453,1 7422,FRAMEQA8756,two,how many people stand on the stage as one tries to make an advance at the other?,tumblr_nhs1biycNX1tktlyio1_400,82362,1 7423,FRAMEQA42559,white,what is the color of the hat?,tumblr_ne1xjnM1hW1t0w9oqo1_400,13418,2 7424,FRAMEQA47765,blue,what is the color of the shirt?,tumblr_nhjkyrim291u75yfvo1_500,56529,2 7425,FRAMEQA43449,blue,what is the color of the sweats?,tumblr_n6jfle8aKI1qlzevso1_500,96466,2 7426,FRAMEQA9115,bicycle,what is the man in glasses and a hat riding?,tumblr_n8ua4nGrbw1r7whoco1_400,72980,0 7427,FRAMEQA44290,two,how many men are talking and making hand signals?,tumblr_nkqvdv6FpL1sr2c0to1_400,64550,1 7428,FRAMEQA46647,black,what is the color of the cat?,tumblr_n92oq4Hega1ts0kzio1_400,34144,2 7429,FRAMEQA41574,brown,what is the color of the hair?,tumblr_nisxx6zgyH1qev7kjo1_250,43619,2 7430,FRAMEQA8652,dog,what walks up to the guy and smells his shoe?,tumblr_nam4laekMg1raer1zo1_500,90546,0 7431,FRAMEQA48858,shirt,what is the guy wearing?,tumblr_nkzxgkhPUa1shch57o1_250,2618,0 7432,FRAMEQA47069,guitar,what does one man play?,tumblr_nrc8g830sV1uaj6rjo1_500,44334,0 7433,FRAMEQA27554,two,how many men in black suits are hugging each other?,tumblr_nauqdi6XJW1sje108o1_500,11524,1 7434,FRAMEQA45711,two,how many girls are talking and one moves away?,tumblr_ng6o125mhO1s2shh0o1_400,32759,1 7435,FRAMEQA34489,ramp,what does the man on his snowboard fall off?,tumblr_njrz13iOGi1tgetb4o1_400,79660,0 7436,FRAMEQA31177,two,how many men dressed in army gear walk across a field?,tumblr_n8gvhaY7Ab1td876vo1_250,47429,1 7437,FRAMEQA37140,white,what is the color of the shirt?,tumblr_nrda3ddr3F1rodd5bo1_540,92458,2 7438,FRAMEQA23287,bathroom,where are three men dancing?,tumblr_nh9h3dC7Wb1u6bdo9o1_400,54185,3 7439,FRAMEQA45536,red,what is the color of the dress?,tumblr_nonz8cGSoF1u01edeo1_250,1556,2 7440,FRAMEQA51742,porpoise,what plays with two young children through the glass of his aquarium?,tumblr_ncosuakrUx1sht3fmo1_250,5701,0 7441,FRAMEQA42297,chair,where does the lonely guy sit?,tumblr_nf0p2l32G81t0yxwdo1_500,97782,3 7442,FRAMEQA2836,blue,what is the color of the jumps?,tumblr_nn2r6dEP9b1us2olno1_500,79403,2 7443,FRAMEQA22825,fish,what is swimming around in confusion?,tumblr_n9hw28peTq1s61fbqo1_400,52981,0 7444,FRAMEQA48864,scissors,what is the girl holding?,tumblr_nao7pbwlE41tjdvbvo1_250,41307,0 7445,FRAMEQA25869,two,how many models is wearing trench coats are holding hands and walking forward?,tumblr_nbc9b4q2IM1sxapr1o1_500,56668,1 7446,FRAMEQA13955,two,how many guys walk up to each other and hug in front of a crowd?,tumblr_nbg3cseAxD1s47dt7o1_500,62539,1 7447,FRAMEQA46584,white,what is the color of the background?,tumblr_nenetc9nJO1tj0zcro1_1280,85550,2 7448,FRAMEQA17448,fighter,what is getting ready to fight in the match?,tumblr_nc29j9Qmmu1t7j74xo1_400,56325,0 7449,FRAMEQA22555,ferret,what opens the cupboard door with his head?,tumblr_nkshrz1UUz1u3g519o1_400,68749,0 7450,FRAMEQA32371,box,what is the man in white taking out from a lab fridge?,tumblr_naug61u7Kv1tgbziwo1_400,96773,0 7451,FRAMEQA3557,bandannas,what are the group of boys walking together?,tumblr_nbg9ppojxb1te9qibo1_500,92866,0 7452,FRAMEQA22895,white,what is the color of the vest?,tumblr_nbjom6xSMb1tkxnzho1_500,95711,2 7453,FRAMEQA51836,two,how many guys sit on the couch and eat popcorn?,tumblr_nkvhjp6WO71sj3qcdo1_250,19312,1 7454,FRAMEQA2245,red,what is the color of the sweater?,tumblr_n8xwsxN6Co1twn7jgo1_400,29271,2 7455,FRAMEQA15528,three,how many people are singing and nodding their heads while another person stares at them?,tumblr_nc5m9aR7iv1tmvnipo1_500,95713,1 7456,FRAMEQA44708,white,what is the color of the cat?,tumblr_nojpv0LDGS1tpg4boo1_250,25879,2 7457,FRAMEQA35424,cigarette,what is the woman slowly taking out of her mouth?,tumblr_n9aujcnojD1riyhs3o1_400,46395,0 7458,FRAMEQA12898,studio,where is the man dancing and gyrating his hips?,tumblr_na3xhdCxli1sq0gyxo1_500,46592,3 7459,FRAMEQA29500,horse,what was galloping around the ring?,tumblr_n8z5gkpbGb1rwgxlqo1_500,74583,0 7460,FRAMEQA3562,three,how many young men have silly fun moving their bodies?,tumblr_na9b47JmFf1r9hl28o1_400,87141,1 7461,FRAMEQA43182,car,where is the woman riding?,tumblr_nc4kxjTHRs1rmqkjuo1_400,82396,3 7462,FRAMEQA33505,white,what is the color of the jacket?,tumblr_n810pw2rtt1qgii4so1_1280,84268,2 7463,FRAMEQA16054,two,how many girls exercise on the wooden bench?,tumblr_ncxy7vIbUJ1tt3dbuo1_500,76376,1 7464,FRAMEQA13869,black,what is the color of the woman?,tumblr_nexgtpuz0A1qehc8no1_500,68284,2 7465,FRAMEQA33691,red,what is the color of the cap?,tumblr_n95f1j7set1tgruvyo1_400,62958,2 7466,FRAMEQA35731,white,what is the color of the girl?,tumblr_ncmnt6KaMM1rv7n53o1_250,51527,2 7467,FRAMEQA22284,bases,what is the man running during a game?,tumblr_nc99a9TFbP1rndkq5o1_250,70994,0 7468,FRAMEQA44187,pool,where is the woman sitting while?,tumblr_nckg4oA1Tr1t5a4c7o1_400,64343,3 7469,FRAMEQA11786,white,what is the color of the shirt?,tumblr_nrbx72GURX1raqy7mo1_400,35201,2 7470,FRAMEQA8587,sunglasses,what is the person wearing ear buds pushes down their nose and peers over them?,tumblr_nokj77T5LR1uvkr19o1_400,31170,0 7471,FRAMEQA14278,black,what is the color of the hair?,tumblr_nclw1hPX1O1tmmmiro1_500,87876,2 7472,FRAMEQA15365,two,how many men are wresting in the wrestling match?,tumblr_nghmju272O1qdxu8so1_400,61321,1 7473,FRAMEQA44882,black,what is the color of the hair?,tumblr_nf2yati2JY1ssl4i0o1_500,71438,2 7474,FRAMEQA16846,mirror,where does the woman smoke and fixes her hair?,tumblr_nk9rniezlG1u60zcpo1_500,34364,3 7475,FRAMEQA35306,cake,what is the man wearing a hooded top is holding with candles?,tumblr_nctnnzxMkJ1sdpy9wo1_400,21723,0 7476,FRAMEQA27045,two,how many people are standing together on stage while one claps?,tumblr_n0wbw0JDIC1rj823eo1_400,93418,1 7477,FRAMEQA42643,black,what is the color of the shirt?,tumblr_n8v942Cw1q1r6654qo1_500,5914,2 7478,FRAMEQA871,one,how many man is talking to another man who listens quietly?,tumblr_nal5nh7p9L1qi0267o1_250,10920,1 7479,FRAMEQA24139,two,how many kids pretend to fight at the beach?,tumblr_n93korFZlm1sx5lxbo1_500,95918,1 7480,FRAMEQA20270,two,"how many hockey players are smiling , hug each other?",tumblr_nhqm4eBnny1qhxpzlo1_500,67200,1 7481,FRAMEQA10353,three,how many boys are dancing and singing in the room?,tumblr_n8sh1pn4ju1sgl6u3o1_250,17230,1 7482,FRAMEQA6400,two,how many men are playing pool on a huge pool table?,tumblr_ncbycrsfId1sggdd3o1_400,76625,1 7483,FRAMEQA46176,horse,what is running across dirt?,tumblr_n8u2swNpQV1qe2thio1_500,73413,0 7484,FRAMEQA35986,duckling,what sits on the desk and cuddles with a notebook?,tumblr_nk1dbdIdcS1uo49wlo1_400,90702,0 7485,FRAMEQA39331,dog,what is looking up and barking?,tumblr_nhpddqo8rN1tjhld9o1_400,52440,0 7486,FRAMEQA2369,black,what is the color of the jacket?,tumblr_ne1acumHMb1t5ojzdo1_250,8621,2 7487,FRAMEQA5561,bicycles,what are people riding up in the sky?,tumblr_naxb5i3AlN1sqquj8o1_250,53455,0 7488,FRAMEQA37795,guitar,what is the man playing?,tumblr_nbfth4o5uV1qzfmdho1_400,37507,0 7489,FRAMEQA28914,kitten,what is sitting on someones lap gets scared by a hand?,tumblr_nb2oh2bSvK1tkpzw0o1_400,25145,0 7490,FRAMEQA50783,two,how many people are holding each other than kiss each other?,tumblr_newrcpj47E1u1ym3zo1_250,46934,1 7491,FRAMEQA37315,black,what is the color of the hair?,tumblr_ngcjylbPtg1tsr93so1_1280,76860,2 7492,FRAMEQA46087,panda,what is playing with snowflakes in the snow?,tumblr_namd90alfg1qg9j7eo1_250,10806,0 7493,FRAMEQA46173,two,how many athletes approach each other and embrace hands?,tumblr_nq1xbdzSNA1spbq2fo1_250,21669,1 7494,FRAMEQA42886,purple,what is the color of the top?,tumblr_najaxvpaHO1tc98tio1_250,727,2 7495,FRAMEQA46190,curtain,what is the cat standing up on the corner is closing with his paw?,tumblr_nex4xp2DL31slj978o1_250,3264,0 7496,FRAMEQA9719,white,what is the color of the room?,tumblr_npkxhturUR1uxcyego1_400,73594,2 7497,FRAMEQA25220,white,what is the color of the man?,tumblr_ndtrdwML301t1o9tno1_250,14272,2 7498,FRAMEQA2939,brown,what is the color of the hair?,tumblr_nh74lksIfZ1u6da7qo1_500,84029,2 7499,FRAMEQA27428,blue,what is the color of the hair?,tumblr_ni3fk61acW1tly55no2_400,96672,2 7500,FRAMEQA7330,sunglasses,what is the girl with her boy friend wearing?,tumblr_na3330wJ541r1e6f9o1_500,98499,0 7501,FRAMEQA25173,cigarette,what is the man with dark hair smoking?,tumblr_nkvhr0Jus31updujzo1_400,26640,0 7502,FRAMEQA40898,white,what is the color of the wrestler?,tumblr_n9uzodf3Kx1srbyoyo1_400,77918,2 7503,FRAMEQA39846,tunnel,where is the singer with short blonde hair and shades dancing?,tumblr_noeby6VDea1rftdx0o1_400,16806,3 7504,FRAMEQA19657,shirt,what does the man put back on as a blonde woman look on?,tumblr_nfo2vpa9lP1qj7p4ho1_250,19911,0 7505,FRAMEQA23848,white,what is the color of the t-shirt?,tumblr_nc798b5n4Y1tju84uo1_500,91289,2 7506,FRAMEQA30763,blue,what is the color of the uses?,tumblr_nbdeasYxsj1sbs8z8o1_400,52401,2 7507,FRAMEQA25833,yellow,what is the color of the car?,tumblr_no62rm4dDC1tx8mn0o1_400,76917,2 7508,FRAMEQA35464,red,what is the color of the boots?,tumblr_ncb83m7DU11sp9uxmo1_500,56997,2 7509,FRAMEQA30906,cat,what is showing its face slowly through the window?,tumblr_nk22l3T7h61u2mmn8o1_400,43464,0 7510,FRAMEQA15948,vehicle,what is approaching the building surrounded by a fence?,tumblr_nprglcBVTc1unyhx2o1_400,65277,0 7511,FRAMEQA52464,cats,what are running and slipping on the hallway floor?,tumblr_nbmj5hTe5U1tegtx7o1_400,41227,0 7512,FRAMEQA42017,black,what is the color of the dress?,tumblr_nmvmkqaym01u12ezho1_400,97587,2 7513,FRAMEQA19854,red,what is the color of the chair?,tumblr_ndhvugvD2U1s3mq1do1_400,59821,2 7514,FRAMEQA51520,monkey,"what is trying to sit on the wire and drink a bottle and falls off , but grabs on and takes a drink?",tumblr_nbh6btDTyY1r38hk2o1_400,8486,0 7515,FRAMEQA27524,gray,what is the color of the jacket?,tumblr_ncvzkl77wl1rhowemo1_250,91839,2 7516,FRAMEQA23178,winks,what is the man wearing wore at the crowd?,tumblr_n8rnrbIvJA1rvy9jpo1_500,99452,0 7517,FRAMEQA12173,three,how many people are on stage when one woman snatches the jacket of another woman?,tumblr_nk4zmkCAr61u3b1hio1_250,35786,1 7518,FRAMEQA8411,cat,what is trying to get food under glass table?,tumblr_ng0wn2TFG01tk2ngvo1_400,1209,0 7519,FRAMEQA44106,red,what is the color of the hair?,tumblr_nahc22gszh1qk0ghio1_400,35205,2 7520,FRAMEQA20367,cat,what lies with its eyes almost shut and its tail twitching?,tumblr_n8x3mbPjxt1qh3zyto1_400,71069,0 7521,FRAMEQA20699,yellow,what is the color of the hair?,tumblr_n8vrrw9ndC1t8amt8o1_500,75390,2 7522,FRAMEQA49184,toast,what does the man at a bar offer with a drink?,tumblr_nndantIoHF1qg2p2fo1_1280,91061,0 7523,FRAMEQA7262,headphones,what is someone putting a cassette in a player and putting on?,tumblr_nphtpt0gV41ur4hiao1_400,48815,0 7524,FRAMEQA12658,green,what is the color of the room?,tumblr_nhs46ihJuj1tdi3uyo1_250,47083,2 7525,FRAMEQA16891,black,what is the color of the man?,tumblr_notyiwTyGV1qbuqcio1_500,34427,2 7526,FRAMEQA52210,car,what pulls the gas handle out of the pump and the pump catches on fire?,tumblr_nkn8wvwPjD1s6zpepo1_400,45738,0 7527,FRAMEQA25413,cigarette,what is the woman lighting and blowing smoke out of her mouth?,tumblr_nb4a74MWni1rfibsxo1_400,96261,0 7528,FRAMEQA37775,tail,what is wagging underneath the curtain?,tumblr_nrdf8ua9mH1u76jino1_400,15090,0 7529,FRAMEQA52500,car,what is the man sitting and pulling out his cell phone?,tumblr_nko35llwGE1u9vg2vo1_500,88852,0 7530,FRAMEQA30224,orange,what is the color of the cat?,tumblr_nr10n4blvp1qzefipo1_r1_400,76416,2 7531,FRAMEQA46550,car,what is flying through the sky and then disappears?,tumblr_n8ctf9ELMW1taivooo1_500,79595,0 7532,FRAMEQA13399,butterfly,what is sitting on a woman 's finger suddenly takes flight?,tumblr_n35ls7XDUF1ts0z95o1_250,6479,0 7533,FRAMEQA18297,frog,what is the woman reaching over and touching?,tumblr_nhwanmiWzD1qlkuvao1_250,76552,0 7534,FRAMEQA23340,two,how many races cars are very close to each other on the race track?,tumblr_noj5h56PEB1tx8mn0o1_400,77035,1 7535,FRAMEQA31235,black,what is the color of the one?,tumblr_nc2q4csgq91txeyrmo1_250,35741,2 7536,FRAMEQA35624,bed,where is the girl smoking a cigarette?,tumblr_nhi301UlXH1u0jmtso1_1280,75670,3 7537,FRAMEQA13739,jeep,where is the duck chasing the men?,tumblr_nr1zh6yArU1usf060o1_400,80337,3 7538,FRAMEQA12527,twirls,what is the person on a stage doing?,tumblr_ndrejtNzph1sspv6go1_500,54143,0 7539,FRAMEQA1875,bench,what is the person in a jean vest turning into a table?,tumblr_n9imlri1WQ1s3att3o1_400,46098,0 7540,FRAMEQA51560,mirror,where is the woman seductively kissing her reflection?,tumblr_n9oo3e1Cfi1rro1neo1_400,1120,3 7541,FRAMEQA15480,white,what is the color of the shirt?,tumblr_nqx65gR5vx1u75zfco1_500,84203,2 7542,FRAMEQA2837,airplane,what is struggling to take off from the runway?,tumblr_ni1vxsCvAy1s71nvbo1_500,94662,0 7543,FRAMEQA19003,harp,what is the woman playing during medieval times?,tumblr_navhs9xovL1sbjnn2o1_250,27759,0 7544,FRAMEQA33015,blue,what is the color of the shirt?,tumblr_npfxbkWk5Z1s94w5go1_250,23036,2 7545,FRAMEQA37562,mirror,where is the man looking and winks?,tumblr_njq5e3s3tS1tkkgpso1_500,49408,3 7546,FRAMEQA22710,dog,what is the boy kissing on the head then blows a kiss?,tumblr_ng2hgxbjKw1t1ijxmo1_1280,56263,0 7547,FRAMEQA8038,room,where is the midget dancing?,tumblr_nd5afoHKml1tfsdl2o1_250,17096,3 7548,FRAMEQA39063,black,what is the color of the horse?,tumblr_n96fzvPIrN1s2wg51o1_500,46532,2 7549,FRAMEQA10325,pet,what is the man holding?,tumblr_n8ptmsvc1I1th4an4o1_500,69752,0 7550,FRAMEQA9334,dog,what is barking at trucks going past him in a car on the freeway?,tumblr_nrkm38Aep41u80mmjo1_400,56068,0 7551,FRAMEQA5313,two,how many men are standing?,tumblr_nd4y9cyuiJ1tqyrjvo1_400,90283,1 7552,FRAMEQA10219,black,what is the color of the hair?,tumblr_nirqd6HOcY1u9qqf7o1_250,51414,2 7553,FRAMEQA46406,two,"how many man are in the vehicle , one points and talks and the other laughs?",tumblr_ncc1baT5HP1svs31wo1_400,2743,1 7554,FRAMEQA42060,orange,what is the color of the scarf?,tumblr_nhkexjjOQI1u1cc70o1_500,97174,2 7555,FRAMEQA40440,black,what is the color of the girl?,tumblr_nalejiKii21ti13z5o1_250,27247,2 7556,FRAMEQA12118,shirt,what does the boy pull off by the neck?,tumblr_nahwfbkCLC1smb63lo1_250,748,0 7557,FRAMEQA51548,black,what is the color of the shirt?,tumblr_ndmbc0mImx1tvkq6vo1_250,17162,2 7558,FRAMEQA37745,dog,what is rubbing itself against a sofa?,tumblr_na3xfcUdnK1tiamx1o1_400,19533,0 7559,FRAMEQA26800,two,how many men are sitting on the stage and speaking into microphones?,tumblr_nfao6d193m1siv5bao1_500,49396,1 7560,FRAMEQA17222,singer,what tilts his heads back as he singing?,tumblr_nr4yfgSIEU1u7r745o1_500,35666,0 7561,FRAMEQA48704,corridor,where are two wrestling women walking forwards?,tumblr_n9sj5cqJdi1sycli7o1_500,75249,3 7562,FRAMEQA25149,blue,what is the color of the suit?,tumblr_nklmwmP2fN1r26jdlo1_400,69501,2 7563,FRAMEQA6542,three,how many women whisper into the man 's ears in succession?,tumblr_nhloxhwJxu1r7pxppo1_400,67089,1 7564,FRAMEQA41502,squirrel,what leaps from the ceiling and glides to the floor?,tumblr_n8lnhsDTPU1tgkdkbo1_250,35848,0 7565,FRAMEQA6633,two,how many people sat together and are smiling?,tumblr_nhi35f292k1stuhtso1_500,44342,1 7566,FRAMEQA17374,dog,what is covered by lot of snow?,tumblr_ncj1cj63rn1trxml2o1_500,79343,0 7567,FRAMEQA28663,three,how many men with microphones are singing and leaning back?,tumblr_ncwvss26Bs1spzgf5o1_500,10673,1 7568,FRAMEQA35830,glasses,what is the girl moving and then she sends a kiss?,tumblr_n8ti1si24z1th8yo9o1_400,72465,0 7569,FRAMEQA11105,three,how many man are going in circles and going up and down?,tumblr_nc5jq9YHHz1twj3jvo1_500,61007,1 7570,FRAMEQA32293,cat,what is falling with the package?,tumblr_nb1g3oDF0D1qcgyjoo1_400,46484,0 7571,FRAMEQA49485,three,how many people are performing on the stage?,tumblr_nbduqfCR9m1tl1yedo1_500,79447,1 7572,FRAMEQA3873,cat,what is the squirrel biting and it turns and attacks another cat?,tumblr_ncko1cgtVl1rwkjivo1_400,45420,0 7573,FRAMEQA36161,two,how many people are kissing on the rooftop?,tumblr_namh3klriu1tk3dj9o1_500,83996,1 7574,FRAMEQA31499,two,how many dogs move their heads from side to side?,tumblr_n8pom6qgCR1tgl4z1o1_400,75583,1 7575,FRAMEQA22896,dogs,what are quietly lounging on the couch?,tumblr_neqoabbUAH1s9wp82o1_400,30264,0 7576,FRAMEQA33806,trucks,what are billowing smoke as they race?,tumblr_nfvp6qwyZi1tx8mn0o1_400,55600,0 7577,FRAMEQA8375,black,what is the color of the bird?,tumblr_ndvdp5rZG41s71nvbo1_250,4069,2 7578,FRAMEQA36535,four,how many people are standing together while one pulls off a shirt?,tumblr_n9mtd8IOiG1t0ojyvo1_250,12897,1 7579,FRAMEQA42366,one,how many man does there 's playing a guitar on stage and smiling?,tumblr_nc5t5t8F9x1tidrdwo1_400,65582,1 7580,FRAMEQA52041,device,what is the man wearing?,tumblr_njprg882nT1u9v8ero1_400,29796,0 7581,FRAMEQA51004,three,how many cats run to their bowls and start eating?,tumblr_nhchptHDxG1slj978o1_250,3857,1 7582,FRAMEQA251,cat,what is outside buried in the snow?,tumblr_npr7lkdUyx1s71nvbo1_500,83711,0 7583,FRAMEQA13262,black,what is the color of the clothing?,tumblr_ni1pxegM8m1si6tlqo1_250,41380,2 7584,FRAMEQA18813,red,what is the color of the tattoo?,tumblr_nkzh0iC0aH1sjr4yvo1_400,58641,2 7585,FRAMEQA44126,dog,what tries to walk while wearing tennis shoes?,tumblr_ncxqb2uFP81thmv2qo1_400,20689,0 7586,FRAMEQA2463,dog,what is watching the piano in the tablet?,tumblr_nca2zmXP3d1slj978o1_400,65425,0 7587,FRAMEQA19349,steps,what are the group of guys walking down smiling?,tumblr_nae9boB8gn1tz9jaqo1_250,22384,0 7588,FRAMEQA38339,dog,what runs fast and suddenly lies on his side on the floor?,tumblr_ngzwadoN461slj978o1_400,48459,0 7589,FRAMEQA24954,gray,what is the color of the suit?,tumblr_ng9yuk4CQq1tlik6so1_250,18829,2 7590,FRAMEQA36469,car,what is going down the highway?,tumblr_nfowj6p4zs1u25ovvo1_400,63438,0 7591,FRAMEQA4608,cigarette,what is the young man smoking and holding a guitar?,tumblr_nexprrqDDT1rmf606o1_250,16137,0 7592,FRAMEQA29028,one,how many man talks the lot as he leans his head on another person?,tumblr_n9lt3cvvy61trvs7go1_400,57272,1 7593,FRAMEQA45552,room,where are two guys dancing?,tumblr_nbus1etSWV1tkyu2bo1_250,8125,3 7594,FRAMEQA32990,hat,"what does the blonde woman give a peace sign , then a redhead grabs?",tumblr_ne4hcghIrU1tac8jro1_400,64088,0 7595,FRAMEQA28318,purple,what is the color of the shirt?,tumblr_n9r4i6sIO61slvl84o1_250,41358,2 7596,FRAMEQA51206,cat,what is looking finger and fall?,tumblr_njnhlc2q8U1u9sozlo1_400,7455,0 7597,FRAMEQA7601,red,what is the color of the door?,tumblr_nkjj7ntrNZ1ssgyoro1_250,2196,2 7598,FRAMEQA1964,white,what is the color of the scores?,tumblr_n8qb7oGgwM1rcu974o1_250,21680,2 7599,FRAMEQA36573,three,how many men are smiling and making funny faces?,tumblr_na8x97Ahoi1tdjuqvo1_250,16734,1 7600,FRAMEQA26301,two,how many guns are pointed at the man?,tumblr_no84zvfF701qbz10so1_500,55032,1 7601,FRAMEQA19567,white,what is the color of the star?,tumblr_nff45qQynl1s75jjso1_400,24736,2 7602,FRAMEQA17406,room,where is the girl dancing?,tumblr_nffrobxU9J1u4na82o3_250,13626,3 7603,FRAMEQA43478,brown,what is the color of the hair?,tumblr_nbafv4aA3r1tjmsyuo1_500,95493,2 7604,FRAMEQA11625,scarf,what is the young man wrapping around his head?,tumblr_nqn263IcBj1uzrtz5o1_500,6137,0 7605,FRAMEQA29205,zoo,where does the llama turn his head?,tumblr_nq8pahvjZZ1uym2rjo1_400,20839,3 7606,FRAMEQA42238,two,how many men are fighting over the green bird?,tumblr_ngco2hZoYX1sflxw5o1_250,8062,1 7607,FRAMEQA4320,one,how many man grabs the shoulder of another as he walks by?,tumblr_ndkvaxBCbI1t6t8bgo1_500,95583,1 7608,FRAMEQA41749,monkey,what eats ate eating carrots with his hands?,tumblr_nosv3ta6Y91rndm3wo1_250,27133,0 7609,FRAMEQA43961,gray,what is the color of the shirt?,tumblr_np49o2tB721try7qyo1_250,84589,2 7610,FRAMEQA32312,two,how many men dressed in black walk side by side?,tumblr_nk32pnnazT1skvgwao1_400,83387,1 7611,FRAMEQA30756,tub,where do the bunch of people make faces?,tumblr_nnsnziHoXc1ro4jalo1_500,91305,3 7612,FRAMEQA35790,guitar,what did the man and a guy play on stage for fans?,tumblr_njte62Bwpv1t4la1fo1_400,25986,0 7613,FRAMEQA46134,hat,what is the girl or guy doing a scary hand gesture and wearing?,tumblr_ngzxc0zvYL1r82feqo1_500,20566,0 7614,FRAMEQA22524,car,where is the man singing and smoking a cigarette?,tumblr_nkv63mKCzc1ttvffso1_400,58080,3 7615,FRAMEQA7466,horse,what is the person riding?,tumblr_n96fzvPIrN1s2wg51o1_500,46532,0 7616,FRAMEQA25013,two,how many men in white shirts are singing on stage?,tumblr_njziaa2Zn31u8fu4co1_500,52099,1 7617,FRAMEQA11084,two,how many young men sit in the back of a car and dance?,tumblr_nbgkzeADl51rpsnyjo1_250,3928,1 7618,FRAMEQA52900,tender,what is the cut cat sleeping next to his mother?,tumblr_njxp04rEFk1tjjnlno1_400,71522,0 7619,FRAMEQA39879,cat,what is trying to catch something?,tumblr_ndb6k2PKFz1rtlmp4o1_250,18919,0 7620,FRAMEQA34983,red,what is the color of the lipstick?,tumblr_nd6fty53jA1rol592o1_500,89046,2 7621,FRAMEQA43197,white,what is the color of the woman?,tumblr_ncityr4XKD1qblt8ro1_500,96285,2 7622,FRAMEQA29001,bird,what was running around in the room?,tumblr_nrac5ifOWX1utou2jo1_400,62192,0 7623,FRAMEQA27482,one,how many man jumps toward the other man with his arms in the air?,tumblr_nlzwwj6elv1ta4f2po1_500,73747,1 7624,FRAMEQA9891,boats,what are together on the calm sea?,tumblr_nrl2hcm4tP1r8l9z5o1_250,916,0 7625,FRAMEQA50321,two,how many people in an audience are clapping and laughing?,tumblr_nhmq23SV5m1u7vw3ko1_500,48801,1 7626,FRAMEQA46865,car,what swerves around the track and skids?,tumblr_nitvmqOok11r05qsbo1_400,70773,0 7627,FRAMEQA6319,white,what is the color of the horse?,tumblr_nacngfa5N21r959nro1_400,35211,2 7628,FRAMEQA15951,dog,what is removing the rope from the bar?,tumblr_nbuzvzDFcu1tdjuqvo1_400,42452,0 7629,FRAMEQA18964,guitar,what is the man holding and dancing with one hand in the air?,tumblr_n8uslmr6Tm1tb9e3fo1_250,10192,0 7630,FRAMEQA47576,black,what is the color of the shirt?,tumblr_njnpvxnQZZ1twuu9lo1_250,15339,2 7631,FRAMEQA49017,blue,what is the color of the shirt?,tumblr_n99skaFerS1s1ye39o1_250,23535,2 7632,FRAMEQA30095,camel,what is running down the hill in front of a female?,tumblr_njqnmqzy391rnahu9o1_250,21347,0 7633,FRAMEQA4658,guitar,what is the blond boy playing and singing into a headset?,tumblr_nbvej9NLlj1rq00p0o1_500,93311,0 7634,FRAMEQA875,blue,what is the color of the car?,tumblr_nb9airoPJM1rs58dao1_500,57001,2 7635,FRAMEQA37703,white,what is the color of the car?,tumblr_nesksmxUsA1rdfljoo1_500,76053,2 7636,FRAMEQA9847,room,where did three men stand dancing?,tumblr_ngpnflPD2K1sklqsoo1_400,58049,3 7637,FRAMEQA52388,chair,where does the girl sit down?,tumblr_njyot5SBCc1u2w55do1_250,10185,3 7638,FRAMEQA43714,room,where are two people playing instruments?,tumblr_nqzqaupSSA1u96zdso1_500,70130,3 7639,FRAMEQA13326,gray,what is the color of the hair?,tumblr_nis929B11K1sxod2fo1_250,50970,2 7640,FRAMEQA18117,jacket,what is the woman wrapping around herself?,tumblr_nb8nijuMcp1tg6h6to1_500,50527,0 7641,FRAMEQA7721,white,what is the color of the top?,tumblr_ni1n7iJhKv1u7ide8o1_400,42874,2 7642,FRAMEQA29568,bowl,what is the man wearing a pink suit pretends and then throws?,tumblr_nb4pb9RTBf1sjp7p6o1_500,62579,0 7643,FRAMEQA19901,cat,what is bouncing in the chair?,tumblr_ne3xjjWRr51tdmffyo1_250,47903,0 7644,FRAMEQA20332,motorcycle,what did the person rid?,tumblr_nasnqxg8kb1tt6vx5o1_250,43969,0 7645,FRAMEQA286,blue,what is the color of the scarf?,tumblr_nhreaq0fbQ1u7dl8fo1_250,47460,2 7646,FRAMEQA31779,ball,what do the kids throw back and forth to each other while jumping into the pool?,tumblr_nkte7fmIqx1s6zpepo1_400,50080,0 7647,FRAMEQA43881,two,how many people is this smiling and giving high fives?,tumblr_nqy0wwLGsd1tl934lo1_250,51764,1 7648,FRAMEQA50480,brown,what is the color of the hair?,tumblr_nk2vux3HHB1rl202so1_250,5298,2 7649,FRAMEQA42607,studio,where is the woman practicing cartwheels?,tumblr_nkyjemkHsE1t086keo1_250,53385,3 7650,FRAMEQA43571,green,what is the color of the hair?,tumblr_nf63x9XNF61s7be03o1_250,17738,2 7651,FRAMEQA41916,glasses,what is the woman putting and taking a pipe?,tumblr_noumotOiwV1spw05ko1_250,36480,0 7652,FRAMEQA10730,gun,what is the man with safety glasses using?,tumblr_nc7t11scOH1tjmrqwo1_400,77615,0 7653,FRAMEQA25098,cat,what is running away from the baby?,tumblr_nkybhohXkX1tmnntwo1_400,93625,0 7654,FRAMEQA14260,kitten,what is shaking paws while sleeping?,tumblr_njxp04rEFk1tjjnlno1_400,71522,0 7655,FRAMEQA37517,building,what does the man jump off onto another next to another man?,tumblr_nee24nvJCa1rpqr23o1_400,78951,0 7656,FRAMEQA9527,cigarette,what is this man in a suit and tie smoking?,tumblr_n99g80NrHy1rfd881o1_250,14642,0 7657,FRAMEQA39805,dog,what is running and falling down at the beach?,tumblr_ncqbubNR881tdmffyo1_500,57557,0 7658,FRAMEQA29443,blue,what is the color of the shirt?,tumblr_nh2czp9Mrv1rpqr23o1_250,5843,2 7659,FRAMEQA51081,cat,what is jumping into the box and falling off of a couch?,tumblr_nbadug35Zi1tl0ko9o1_400,57534,0 7660,FRAMEQA20537,horse,what is jumping over the hurdle and then rolling around on the ground?,tumblr_na213y4pel1tdek48o1_400,43172,0 7661,FRAMEQA10721,white,what is the color of the jacket?,tumblr_nr4jfl16Cl1syfpbbo1_500,101310,2 7662,FRAMEQA1696,black,what is the color of the woman?,tumblr_ng3spyNCrB1sq9tvpo1_400,58299,2 7663,FRAMEQA38043,cat,what is lying on the couch is looking to the side?,tumblr_nby8fzSw431tkpzw0o1_400,80393,0 7664,FRAMEQA23812,white,what is the color of the shirt?,tumblr_npy843CsLa1sxmt29o1_400,65714,2 7665,FRAMEQA20833,gray,what is the color of the cat?,tumblr_n9xu4w1Lfq1tatohao1_400,40652,2 7666,FRAMEQA47293,two,how many man are taking pictures with a stick?,tumblr_nbzobuxqUi1s3cp8no1_250,9853,1 7667,FRAMEQA26588,disc,what is being played on the record player?,tumblr_notwo9EXP21rkq1vmo1_500,91447,0 7668,FRAMEQA50130,drums,what are two men playing on a stage?,tumblr_nd52u0m5cZ1r6z87zo1_250,24022,0 7669,FRAMEQA27389,cat,what is licking water from a dripping tap?,tumblr_nrhdzmfYSE1s2pll9o1_250,7659,0 7670,FRAMEQA26447,car,what does the drift around a turn?,tumblr_ngiqj7Yelt1qfqktro1_400,60770,0 7671,FRAMEQA11444,guitar,what does the young man play?,tumblr_n9o0vbrAQf1qedx60o1_500,94470,0 7672,FRAMEQA43568,two,how many man stand around and look at each other angrily?,tumblr_nrk1jrdGhR1uakcnho1_500,71562,1 7673,FRAMEQA11734,flowers,what is the man tossing into the crowd?,tumblr_n9lv4b2SW11s4eig5o1_250,5238,0 7674,FRAMEQA30273,fly,what is on top of a leaf?,tumblr_nac7umDO0N1tjct3zo1_500,40939,0 7675,FRAMEQA38424,two,how many people are smiling at each other?,tumblr_nkojohuXJ41sar6a1o1_400,75780,1 7676,FRAMEQA28016,cars,what are racing on the track as one stalls?,tumblr_nh8g8xOFqk1tx8mn0o1_400,55560,0 7677,FRAMEQA20000,vegetables,what are quickly cooked in the pan?,tumblr_nc0ggmHHk21tq3jd9o1_400,53160,0 7678,FRAMEQA5415,brown,what is the color of the hair?,tumblr_nk1kqqpnFb1u6xg70o1_250,36370,2 7679,FRAMEQA1630,two,how many men are standing in the bathroom with some alcohol?,tumblr_n9z2mjZG4z1qkzi04o1_250,23777,1 7680,FRAMEQA37755,room,where is the guy holding balloon animals?,tumblr_n8y33kztmb1tcqa3qo1_250,27396,3 7681,FRAMEQA17555,wash,what is the pedestrian watching?,tumblr_ng6x4iCSrt1slj978o1_500,100805,0 7682,FRAMEQA16729,two,how many man are hugging each other and being upset?,tumblr_nbigfaMpHw1rhe0jeo1_250,41462,1 7683,FRAMEQA28078,black,what is the color of the hair?,tumblr_nfars4Bun81rlg77no1_500,88690,2 7684,FRAMEQA40593,jacket,what is the woman standing under an umbrella and closing?,tumblr_nfuhxi1S9m1tb4ropo1_250,5946,0 7685,FRAMEQA34181,two,how many people are fighting each other and kicking?,tumblr_nim1nvt1em1sqlieso1_400,93077,1 7686,FRAMEQA38677,dog,what is sticking his head out the sun roof and his teeth are showing?,tumblr_nb6itwHzFO1slj978o1_250,23975,0 7687,FRAMEQA37750,two,how many men are embracing each other?,tumblr_ney67x8wtj1qememvo1_400,22473,1 7688,FRAMEQA39549,cat,what is holding onto an object and trying to eat it?,tumblr_neqgko79h11tk2ngvo1_400,27447,0 7689,FRAMEQA28436,white,what is the color of the dress?,tumblr_naxndc7o421tej170o2_500,94895,2 7690,FRAMEQA14804,cigarette,what is the man smoking with two people behind him?,tumblr_nh2fsecMUu1sjaih3o1_400,90090,0 7691,FRAMEQA14868,two,how many girls is wearing black clothing are talking and smiling?,tumblr_n9hmg4UEOf1thtos8o1_400,33561,1 7692,FRAMEQA3414,band,what is playing the concert in a crowded venue?,tumblr_nhvtu2PkC51qlj76no1_500,18821,0 7693,FRAMEQA39235,black,what is the color of the woman?,tumblr_n98c90V7xS1sm3y75o1_500,86425,2 7694,FRAMEQA26809,puppy,what is the girl with major cleavage carrying and smiling?,tumblr_nk2cngaaiL1u3a0b7o1_250,48058,0 7695,FRAMEQA37523,two,how many guys hit each other on the floor?,tumblr_nghmju272O1qdxu8so1_400,61321,1 7696,FRAMEQA10468,orange,what is the color of the juice?,tumblr_nelr3ztDAw1u0z8bjo1_250,85495,2 7697,FRAMEQA5025,black,what is the color of the man?,tumblr_ng2oiuJgw01svos5ho1_400,39272,2 7698,FRAMEQA42683,blue,what is the color of the eyes?,tumblr_nc4iytkj9W1tjjejho1_250,39706,2 7699,FRAMEQA13968,harness,what are the group of people in black using?,tumblr_n9vh2js6zv1t1j5ogo1_250,44032,0 7700,FRAMEQA5642,two,how many bananas did the baby elephant eat?,tumblr_n9rldadoip1twznkvo1_250,41985,1 7701,FRAMEQA8094,cat,what runs down the hall then lays down?,tumblr_nrk1rp38Pq1uyssdqo1_540,10262,0 7702,FRAMEQA9895,pool,where is man kissing a woman while?,tumblr_nbuvcycrMb1tana87o1_250,78506,3 7703,FRAMEQA19817,two,how many girls are scuba diving under water?,tumblr_nais2wBIx11s71nvbo1_500,61166,1 7704,FRAMEQA46817,two,how many teenage girls are putting the hoods on their coats?,tumblr_nlzw6wlLMO1tfjrdno1_400,29179,1 7705,FRAMEQA33721,green,what is the color of the flower?,tumblr_njvmt3qmAh1u370zso1_540,42521,2 7706,FRAMEQA6341,airplanes,what fly close to each other over a desert?,tumblr_nnq4tzM7M51urqm0mo1_500,85138,0 7707,FRAMEQA17600,two,how many men hug and hold each other tightly?,tumblr_nc0ih2uUAV1tquxyyo1_500,93964,1 7708,FRAMEQA32653,black,what is the color of the hat?,tumblr_no4lrfJC0h1uuu6ydo1_250,352,2 7709,FRAMEQA42755,black,what is the color of the boy?,tumblr_nk6r6tPi0N1sufrqro1_500,63753,2 7710,FRAMEQA31026,jacket,what is the man taking off?,tumblr_nccwnhLJjY1qlihd0o1_500,20591,0 7711,FRAMEQA9410,two,how many men smile and speak to each other and walk down a road?,tumblr_nhk3b9NsJo1qbpuo2o1_500,88888,1 7712,FRAMEQA21814,black,what is the color of the bird?,tumblr_ndxspvkFfy1tgose8o1_250,38929,2 7713,FRAMEQA5284,car,what is gliding sideways on the track?,tumblr_ne1kuie2DW1tdjuqvo1_400,2600,0 7714,FRAMEQA16080,white,what is the color of the clothes?,tumblr_nk2dswSibc1ti81ado1_400,64845,2 7715,FRAMEQA17056,car,what is being turned into the convertible car?,tumblr_n9zu57mMW51t36lbdo1_400,53950,0 7716,FRAMEQA44847,opening,what does the cat lick before stopping?,tumblr_nrhdzmfYSE1s2pll9o1_250,7659,0 7717,FRAMEQA35636,black,what is the color of the sweater?,tumblr_nemtylU1ek1sspq5qo1_250,32816,2 7718,FRAMEQA14035,two,how many men are holding each other and falling down?,tumblr_n901479nQ81rja3l7o1_250,17171,1 7719,FRAMEQA35162,car,what is sliding around the corner on a racing track?,tumblr_ni06hc76UJ1u639x2o1_500,72526,0 7720,FRAMEQA5072,five,how many balloons does the man have on strings?,tumblr_ncce6eafkp1qkbofio1_400,49380,1 7721,FRAMEQA47855,black,what is the color of the man?,tumblr_nir5kizmPH1snmvsao1_250,429,2 7722,FRAMEQA35144,blue,what is the color of the jacket?,tumblr_nkrcgum4dL1sp70bgo1_400,33084,2 7723,FRAMEQA38217,dog,what is dancing and jumping on his hind legs?,tumblr_nfbeo6Qqr91tl8fnfo1_400,80040,0 7724,FRAMEQA30202,car,where are two people and one is laughing?,tumblr_n9l6t6WLLm1shsozuo1_500,88496,3 7725,FRAMEQA34796,brown,what is the color of the hair?,tumblr_n8ybrqylkm1qeysfio1_250,38438,2 7726,FRAMEQA19640,dog,what is the woman wearing a red dress is holding?,tumblr_nk2cngaaiL1u3a0b7o1_250,48058,0 7727,FRAMEQA757,guitar,what is the guy with long hair playing?,tumblr_nc2rue39Be1qlxas3o1_400,65531,0 7728,FRAMEQA47734,two,how many yellow characters stand on an indoor field and bow?,tumblr_neua43pKJC1t0kntqo1_250,53580,1 7729,FRAMEQA8765,tail,what is the cat moving?,tumblr_n8kiswJ7Ht1slb5kno1_500,71356,0 7730,FRAMEQA8796,juice,what is the man standing and drinking?,tumblr_nc9k4y7xcN1qj7ylio1_250,7848,0 7731,FRAMEQA5677,drink,what does the man move away from the person next to him?,tumblr_njn51xCYFt1tldu19o1_500,70213,0 7732,FRAMEQA20009,cat,what walks in circles on glass?,tumblr_nh2ve9qFfE1u4v3ypo1_500,49202,0 7733,FRAMEQA798,cigarette,what is the creature with an antenna on its head smoking?,tumblr_ndce9hl2FS1tsn1aso1_500,34465,0 7734,FRAMEQA10713,bed,where is the person laying blowing smoke rings?,tumblr_nfg071UT1y1u24nfoo1_250,37810,3 7735,FRAMEQA7023,motorcycle,what stops while the other motorcycle is on the ground?,tumblr_nhw1ktJ3Dd1tx8mn0o1_400,77737,0 7736,FRAMEQA26864,dog,what walks forwards then jumps up?,tumblr_ncs6h9GZNT1rerh68o1_400,9178,0 7737,FRAMEQA35077,room,where are two men and one of them is looking down then points?,tumblr_ncusywWoFr1skzykeo1_250,21512,3 7738,FRAMEQA34822,red,what is the color of the scarf?,tumblr_ndcczs10pL1r4bi5do1_250,51381,2 7739,FRAMEQA19626,room,where is the cute girl singing?,tumblr_naezgmYC1N1tjg4vgo1_250,16087,3 7740,FRAMEQA12984,brick,what does the man put down for little ducks?,tumblr_nbes1tkyPL1tkpzw0o1_250,20256,0 7741,FRAMEQA2764,headphones,what is the kid wearing on his head?,tumblr_nhxyrmRV2x1u7lk74o1_400,35223,0 7742,FRAMEQA5986,piano,what does the man with a moon for a head play?,tumblr_ncl7d2DRMe1qbv408o1_r1_400,35872,0 7743,FRAMEQA37387,car,what is pulling into the circular driveway?,tumblr_ne4xuxJjdk1sfxnzso1_250,82976,0 7744,FRAMEQA11270,orange,what is the color of the shirt?,tumblr_nisefh2V791u7fyrjo1_250,49729,2 7745,FRAMEQA17770,black,what is the color of the hair?,tumblr_ndxspvkFfy1tgose8o1_250,38929,2 7746,FRAMEQA37539,two,how many young men are folding bed sheets?,tumblr_nqrag9xM6l1qi27q9o1_250,40814,1 7747,FRAMEQA43497,brown,what is the color of the jacket?,tumblr_nc8zxwAEVB1tmze3vo1_400,64410,2 7748,FRAMEQA23924,purple,what is the color of the hat?,tumblr_nann6fCDOH1t5w6wco1_400,28507,2 7749,FRAMEQA22638,brown,what is the color of the hair?,tumblr_nc26msUSeT1rn4engo1_400,82125,2 7750,FRAMEQA43612,motorcycle,what is the car chasing down the highway?,tumblr_nhlbtylYD61t4k3lzo1_250,93530,0 7751,FRAMEQA24916,black,what is the color of the suit?,tumblr_nba3cuyO0E1tl3ks1o1_500,90421,2 7752,FRAMEQA26391,star,what is feeding pink heart-shaped cookie to somebody?,tumblr_ne1q71Yuov1u1xquho1_500,88088,0 7753,FRAMEQA39627,three,how many men who are wearing black suits dance in a circle?,tumblr_np88x8KELj1srwy2po1_400,96841,1 7754,FRAMEQA43598,bird,what crawled through the cardboard tube?,tumblr_n993yi7TgY1sjuzlno1_400,8582,0 7755,FRAMEQA32947,two,how many girls are stretching out before their ballet recital?,tumblr_ne3j8sSsx51u0a3u8o1_400,50647,1 7756,FRAMEQA954,two,how many man is performing in a concert sing and hold to each other?,tumblr_nc29jdM0IG1t6t8bgo1_500,95727,1 7757,FRAMEQA51703,bathroom,where is the boy brushing his teeth?,tumblr_ngmx782QcM1tjjejho1_250,39751,3 7758,FRAMEQA27067,glasses,what does the guitar player in black adjust?,tumblr_n94c9kD6eu1s0wfo1o1_250,40368,0 7759,FRAMEQA11173,black,what is the color of the hat?,tumblr_ndpvlv2vBX1qfz6d1o1_500,71892,2 7760,FRAMEQA31914,guitar,what is the man playing?,tumblr_nhzpw5TzFF1u814lco1_400,61222,0 7761,FRAMEQA52857,cat,what makes black cat fall down ladder?,tumblr_nkv2wwA6vd1tatohao1_400,41874,0 7762,FRAMEQA22190,two,how many friends are sitting on the couch talking to each other?,tumblr_nd7flcAAEj1thr6umo1_400,47926,1 7763,FRAMEQA45610,frame,what is the guy speaking into a microphone and holding up?,tumblr_naf3n9tRJN1td8ijso1_500,47511,0 7764,FRAMEQA14941,brown,what is the color of the horse?,tumblr_ndlmqd8eIh1tidcnvo1_400,64316,2 7765,FRAMEQA43250,insect,what is flying out of the cage?,tumblr_nrgl64288d1uayg4ko1_500,82882,0 7766,FRAMEQA16601,cats,what are playing with each other in a room?,tumblr_nkqx3b5Le21sz068fo1_250,24078,0 7767,FRAMEQA45204,car,what is crashing into the barriers on a race track?,tumblr_njy3wfD2FB1tx8mn0o1_400,76947,0 7768,FRAMEQA5044,red,what is the color of the shirt?,tumblr_nb3bd9GirY1shee74o1_250,51307,2 7769,FRAMEQA14048,dog,what is kissing the woman in a red shirt?,tumblr_ne2eksOOna1smdw0io1_400,28461,0 7770,FRAMEQA21395,horses,what are people watching?,tumblr_nl2bhazRt01u1nko6o1_400,28705,0 7771,FRAMEQA3236,cat,what is following something?,tumblr_ncql995UBl1u073goo1_400,28410,0 7772,FRAMEQA34138,coat,what is the woman with long hair putting in front of her face?,tumblr_ngtua6mnFp1sf7oa4o1_400,16107,0 7773,FRAMEQA19869,black,what is the color of the dress?,tumblr_nju1iwQyUo1un53eto1_400,62948,2 7774,FRAMEQA32197,white,what is the color of the room?,tumblr_n8s9e8kRKq1svgp20o1_500,99745,2 7775,FRAMEQA8853,one,how many man is standing by the car?,tumblr_n9by90fW3W1ruvp0co1_500,89807,1 7776,FRAMEQA4473,bed,where is the girl sitting up messing her hair up?,tumblr_nd1e6cP1M51s61j2vo1_400,28909,3 7777,FRAMEQA19620,two,how many females are laughing at something together?,tumblr_n8y4n5b77l1txzv32o1_400,32326,1 7778,FRAMEQA43942,horse,what jumped over the tall wooden fence?,tumblr_nfsrf7PNZs1qe2thio1_500,98734,0 7779,FRAMEQA52861,white,what is the color of the woman?,tumblr_nr2cdxmG9W1turx3wo1_250,14303,2 7780,FRAMEQA34102,door,what is the person opening to a room?,tumblr_noese0qKy21qipc57o1_500,60419,0 7781,FRAMEQA8120,two,how many fingers did the guy sing then held up with hi tongue out?,tumblr_nd1cadaCNH1sops1co1_250,1483,1 7782,FRAMEQA7404,white,what is the color of the man?,tumblr_ngzunfJM151tkc327o1_400,95987,2 7783,FRAMEQA22086,blue,what is the color of the hair?,tumblr_nfxcdi6Vyq1sfwk5to1_250,39722,2 7784,FRAMEQA19984,dress,what does the woman hold held?,tumblr_neu66zHOSo1r5um3mo1_400,66221,0 7785,FRAMEQA40410,guitar,what is the young man tuning before laughing out loud?,tumblr_nc5t5t8F9x1tidrdwo1_400,65582,0 7786,FRAMEQA4831,cat,what jumps head first into a box and falls out?,tumblr_nhg54hiSG91tgetb4o1_250,50207,0 7787,FRAMEQA36889,car,what is driving on the road swerves and almost hits a man?,tumblr_nazi03WXVg1slj978o1_500,62179,0 7788,FRAMEQA27353,two,how many girls are these that are holding microphones and singing?,tumblr_nre9qqQRxE1uzud0co2_400,64114,1 7789,FRAMEQA14145,microphone,what are two men in a studio laughing and one picks up?,tumblr_n9paf34bUZ1s5yymto1_400,58609,0 7790,FRAMEQA18866,black,what is the color of the man?,tumblr_nfi5xzNQxc1thpi76o1_250,37419,2 7791,FRAMEQA4418,tail,what is the little cat pulling to another big cat?,tumblr_npdhgdA8ez1sxvd87o1_400,43334,0 7792,FRAMEQA28146,three,how many men jump and turn in the group on stage?,tumblr_np88x8KELj1srwy2po1_400,96841,1 7793,FRAMEQA26896,bedroom,where are two males making gestures with their hands?,tumblr_nazqwgPDxU1tiv0r8o1_500,63749,3 7794,FRAMEQA8104,white,what is the color of the players?,tumblr_nct52sYe2r1u0sv5po1_500,95749,2 7795,FRAMEQA43542,candy,what is the guy giving a football player?,tumblr_ni1qdoBVER1u5ha1qo1_250,21978,0 7796,FRAMEQA3042,two,how many young people are kissing and removing each others clothing?,tumblr_nobecu8wyv1s5cww5o1_400,63193,1 7797,FRAMEQA49476,two,how many men are on the stage?,tumblr_n94pz0wUGh1s218xco1_500,92294,1 7798,FRAMEQA40851,skateboard,what is the cat riding and performing some tricks?,tumblr_njukcfEiK11r1n65mo1_400,40925,0 7799,FRAMEQA5943,two,how many people are very close together singing into the microphone?,tumblr_ng64tsv1cY1tg5lq8o1_250,23017,1 7800,FRAMEQA38939,building,where are the man and a woman dancing?,tumblr_nq7jh4DbZY1r65nqjo1_500,54728,3 7801,FRAMEQA9230,cat,what is knocking over the small glass cup?,tumblr_njxyq4bNFX1tzhkoao1_400,11308,0 7802,FRAMEQA25485,dog,what is running to water?,tumblr_nc2xc108CT1sh1v2uo1_500,57385,0 7803,FRAMEQA114,two,how many girls with hats and glasses make faces?,tumblr_ndcj27AOTX1tp9bieo1_250,6762,1 7804,FRAMEQA44731,kitchen,where is man trying to extinguish a fire?,tumblr_nbaunu62st1slj978o1_250,82937,3 7805,FRAMEQA12462,library,where are the young man and woman embracing?,tumblr_nl3ljyQlT21u34u6eo1_500,89062,3 7806,FRAMEQA18420,kittens,what are cleaning their paws as they sit in a small container?,tumblr_n9g5efSoWD1rsxypwo1_400,22459,0 7807,FRAMEQA29458,cat,what is chewing on the corn on the cob?,tumblr_neqgko79h11tk2ngvo1_400,27447,0 7808,FRAMEQA5868,watermelon,what does someone carve into a flower?,tumblr_nr4wp15M1R1sht3fmo1_250,73936,0 7809,FRAMEQA48124,ball,what does the soccer player dribble through several defenders?,tumblr_nbn4vdgXnz1tz9jaqo1_400,82365,0 7810,FRAMEQA135,two,how many fingers does the young boy lift in the air?,tumblr_ni152nnuwQ1u433who1_400,64676,1 7811,FRAMEQA18318,three,how many girls is wearing blue jumpsuits are singing and dancing?,tumblr_njvezjw04N1unmn69o1_400,24800,1 7812,FRAMEQA23114,glasses,what is the woman in camouflage grabbing and moving?,tumblr_n8pv9bfpjq1ruazbno1_500,45887,0 7813,FRAMEQA48738,chair,what does the young man fall off?,tumblr_niv5i1tpLx1s6zpepo1_400,72636,0 7814,FRAMEQA42710,shirt,what is the young man with his hand in front of his face raising up?,tumblr_nl2iriwRIP1rsxxvao1_500,13611,0 7815,FRAMEQA13827,boat,what is going through the water?,tumblr_nilyoyDugt1qdzxbio1_500,55069,0 7816,FRAMEQA37754,car,what is speeding down the road with buildings on the side?,tumblr_np8fpolVPv1uvid27o1_1280,65265,0 7817,FRAMEQA31161,hallway,what do two costumed men walk down talking to each other?,tumblr_n961ixhQyx1ttxslwo1_250,21630,0 7818,FRAMEQA47699,two,how many boys are fighting with pointy hats on their heads?,tumblr_njox7s52pH1sico5po1_250,49619,1 7819,FRAMEQA18009,white,what is the color of the shirt?,tumblr_niom611F581qbk9sio1_500,68144,2 7820,FRAMEQA40416,two,how many long hair men in black with helmet is holding two hand to fight?,tumblr_ndywttSMPx1tsspsco6_500,44970,1 7821,FRAMEQA30452,black,what is the color of the pantyhose?,tumblr_nkux12i23M1tirdpvo1_400,96809,2 7822,FRAMEQA827,two,how many young men is wearing red antler headdresses are smiling?,tumblr_ngkbm8DACb1t0w9oqo1_400,15773,1 7823,FRAMEQA2639,white,what is the color of the hair?,tumblr_n8x5byGReo1tn5k2xo1_250,38397,2 7824,FRAMEQA10719,bear,what is the grenade rolling towards a teddy bear and then explodes?,tumblr_ndy7ccfmXN1rfibsxo1_400,62905,0 7825,FRAMEQA45270,blue,what is the color of the shirt?,tumblr_nbz0yeXa3A1qflnb4o1_250,27613,2 7826,FRAMEQA34909,black,what is the color of the jacket?,tumblr_nfyxc5sgiN1r97gquo1_400,29414,2 7827,FRAMEQA49813,cat,what is on top of the chair and tries to jump on counter?,tumblr_ninfq9WzsZ1s6zpepo1_250,78597,0 7828,FRAMEQA36567,two,how many people are in the car looking at each other?,tumblr_na17ppTVng1tn4oroo1_500,89162,1 7829,FRAMEQA13439,drink,what is the woman taking and then patting her chest?,tumblr_nok04gJ0dF1ssgyoro1_250,14757,0 7830,FRAMEQA1681,two,how many guys sit and talked and shook hands?,tumblr_nhkoxqBeA41qik8zvo1_500,100936,1 7831,FRAMEQA23409,black,what is the color of the hair?,tumblr_nhx5xm9wAQ1u7lwzro1_400,62936,2 7832,FRAMEQA2633,cigarette,what is the man with a baseball hat lighting?,tumblr_nkpk1mOGIM1u2ddo1o1_400,77514,0 7833,FRAMEQA35960,two,how many men were dancing around in the house?,tumblr_nj9qf9m6OT1trbt9ao1_400,28960,1 7834,FRAMEQA52778,orange,what is the color of the uniform?,tumblr_n90gw6Akfm1rly19co1_500,93055,2 7835,FRAMEQA11809,stadium,where are players playing football?,tumblr_nhzozuOBUD1qa2qf2o1_400,29347,3 7836,FRAMEQA49367,red,what is the color of the hair?,tumblr_nderaiQnL51r098l7o1_400,28375,2 7837,FRAMEQA30730,room,where are two people looking each other?,tumblr_ne49poeZeL1tmjapgo1_500,36788,3 7838,FRAMEQA17127,room,where are the woman and a man talking?,tumblr_nbguwh3avY1r32u50o1_250,52604,3 7839,FRAMEQA31,glove,where does the baseball player catch a ball?,tumblr_nohuamOayN1rntj9yo1_400,71978,3 7840,FRAMEQA15160,white,what is the color of the shirt?,tumblr_nb1pnbrSwq1t6ksnpo1_500,82573,2 7841,FRAMEQA20058,guitar,what is the man playing in front of a crowd of people?,tumblr_nnvqr0CYdX1qek1oqo1_540,93641,0 7842,FRAMEQA16210,black,what is the color of the person?,tumblr_njzzn8NlFp1tyah89o1_250,10519,2 7843,FRAMEQA16896,black,what is the color of the guy?,tumblr_nka6muC94q1r5ykfzo1_400,15983,2 7844,FRAMEQA38416,singer,what is having the drink while on stage?,tumblr_nk322sHZj91trdzyco1_500,59746,0 7845,FRAMEQA50210,two,how many red headed women are staring intently at something?,tumblr_nq2k2tNV5l1src26ro1_500,73394,1 7846,FRAMEQA31598,two,how many young boys were dancing around the room?,tumblr_nfpab2qFcV1s3i8oso1_500,95398,1 7847,FRAMEQA37151,purple,what is the color of the outfit?,tumblr_nh26ktHkqQ1sffyevo1_400,85444,2 7848,FRAMEQA35721,brown,what is the color of the hair?,tumblr_n9dv4oVQDc1ti7qypo1_250,51476,2 7849,FRAMEQA48066,two,how many guys are standing next to each other?,tumblr_ng1tosEKEK1u3dafwo1_250,5482,1 7850,FRAMEQA18136,dog,what looks confused and then falls off the bed?,tumblr_nflm4phy0P1u4txqeo1_250,27288,0 7851,FRAMEQA24387,window,what does the girl look out the passenger side of her car then she raises?,tumblr_nq3tfgU9Ir1srvjxao1_400,27347,0 7852,FRAMEQA32503,microphone,what is the woman in a red dress holding?,tumblr_nonz8cGSoF1u01edeo1_250,1556,0 7853,FRAMEQA16472,two,how many guys are standing in the brick hallway?,tumblr_nhvvdlFwGZ1qdbe91o1_400,77610,1 7854,FRAMEQA19834,two,how many women are showing off their breasts in a dark place?,tumblr_namg8z7z3Y1tdthfeo1_250,1696,1 7855,FRAMEQA19602,two,how many men are standing by each other and making signs with their fingers?,tumblr_nqb0w0uVAG1urxja6o1_500,92260,1 7856,FRAMEQA38294,cigarette,what is the young man smoking and walking along?,tumblr_n9tm6jPJCb1t2wqhqo1_500,101221,0 7857,FRAMEQA7259,dog,what stands in an open doorway and hits its paws on the door?,tumblr_nd5o04joG21se9pwmo1_400,49244,0 7858,FRAMEQA23792,flowers,what does the woman hold close to her face?,tumblr_nedj6p1oYc1u0re54o1_250,15728,0 7859,FRAMEQA6898,black,what is the color of the dress?,tumblr_ndrgwo2ChI1tmnzbjo1_500,97210,2 7860,FRAMEQA29262,turtle,what is dancing and moving underneath the stream of water?,tumblr_ndq39cqvhJ1qhvk2yo1_400,7895,0 7861,FRAMEQA13996,black,what is the color of the shirt?,tumblr_nfihtkUgrh1u316two1_500,5806,2 7862,FRAMEQA37053,kitten,what is jumping out on top of a dog?,tumblr_nabb9j5rq71rw1wnno1_400,69434,0 7863,FRAMEQA39731,glasses,what does this show smiling?,tumblr_nkwqd636Mc1u87564o1_400,77117,0 7864,FRAMEQA36924,makeup,what is the woman wearing?,tumblr_nfowdspwlA1rlhabro1_500,60308,0 7865,FRAMEQA26051,red,what is the color of the top?,tumblr_nk2a2mpIYB1u3zgs0o1_500,45064,2 7866,FRAMEQA25867,blue,what is the color of the character?,tumblr_ncq6zyNQRi1tse6e7o1_400,44867,2 7867,FRAMEQA38770,sunglasses,what are the group of people smiling and four of them are wearing?,tumblr_no1f0h2OcY1uv46mio1_500,93531,0 7868,FRAMEQA3667,blue,what is the color of the outfit?,tumblr_ne2lv2FE0B1ql2wy7o1_400,7495,2 7869,FRAMEQA49148,car,what almost hits the man and instead hits a wall?,tumblr_nmx6y03hWy1staknao1_400,56959,0 7870,FRAMEQA7049,two,how many guitarists are rocking out on stage together?,tumblr_nr9ol4V9GF1u8skfvo1_500,66907,1 7871,FRAMEQA27343,two,how many men are turning and stopped?,tumblr_ndoptcS3Kt1u11azoo1_500,60572,1 7872,FRAMEQA52653,lipstick,what is the girl applying on her lips?,tumblr_nbfxm0sP931rntqodo1_400,30547,0 7873,FRAMEQA41733,brown,what is the color of the hair?,tumblr_naaq5wiwfB1tihs37o1_250,59040,2 7874,FRAMEQA49520,round,what does the man turn with a serious look on his face?,tumblr_nepyrlLssW1sib6jko1_400,68563,0 7875,FRAMEQA15186,two,how many guys sing the duet on stage?,tumblr_nrlgwkAmGV1qb1u6io1_250,27294,1 7876,FRAMEQA28362,car,what is in the race when it slides across the track and crashes?,tumblr_nadk481D381tx8mn0o1_400,53118,0 7877,FRAMEQA11323,balloon,what did the man tie into a balloon animal?,tumblr_ndyr8rSi4d1to0jsbo1_250,19082,0 7878,FRAMEQA29692,microphone,what is woman with blonde hair pointing and singing?,tumblr_nne1xzU4bX1tdrapno1_500,80497,0 7879,FRAMEQA48967,five,how many girls are dancing in front of lights?,tumblr_nh298xxMHt1sqbahto1_500,91400,1 7880,FRAMEQA4401,yellow,what is the color of the blue?,tumblr_nfmprtryRm1s013u0o2_r1_500,55145,2 7881,FRAMEQA34358,green,what is the color of the hat?,tumblr_nk1ef2n01Q1sgfw2yo1_250,3624,2 7882,FRAMEQA17078,white,what is the color of the girl?,tumblr_ndkgi9WxPa1te83nuo1_250,1770,2 7883,FRAMEQA34049,trunks,what is someone riding the waves is wearing swimming?,tumblr_ndumiurqqk1rt9tego1_400,24602,0 7884,FRAMEQA15315,cat,what is sitting on the cat bed and yawning?,tumblr_nhxrmjqiJv1slj978o1_250,36590,0 7885,FRAMEQA11783,guitar,what is the man playing and the other one is playing the drums?,tumblr_nbcj1gnaNb1tt9t0wo1_400,66981,0 7886,FRAMEQA21251,three,how many men are sitting on the sofa when the middle one puts his legs in the air?,tumblr_nknwol9MTw1rr3vzso1_400,31139,1 7887,FRAMEQA39334,three,how many kids were riding on the bus?,tumblr_ncl1hj9oPL1smxuyoo1_400,35017,1 7888,FRAMEQA24118,gray,what is the color of the neck?,tumblr_nh2cio27zt1u5p6oyo1_500,68895,2 7889,FRAMEQA39744,guitar,what is the band playing and signing for a crowd?,tumblr_n9j4izA6NT1qiyk3oo1_500,102025,0 7890,FRAMEQA33016,white,what is the color of the object?,tumblr_nqveo9P2as1tae455o1_400,66327,2 7891,FRAMEQA42389,building,where did the person ride the motorcycle?,tumblr_nasnqxg8kb1tt6vx5o1_250,43969,3 7892,FRAMEQA4820,clothes,what is the woman showing on a runway?,tumblr_nbzsojeEKz1sm6tcso1_400,10484,0 7893,FRAMEQA51241,cars,what are racing and one wrecks into the dirt?,tumblr_nrah086BN91tx8mn0o1_400,91940,0 7894,FRAMEQA10434,black,what is the color of the woman?,tumblr_nnzxcjYq391rbpro7o1_500,96559,2 7895,FRAMEQA15462,studio,where are two men laughing and one picks up a microphone?,tumblr_n9paf34bUZ1s5yymto1_400,58609,3 7896,FRAMEQA29407,ball,"what does the man throw ,?",tumblr_nezwgxkYSL1trp7kao1_500,38597,0 7897,FRAMEQA39556,black,what is the color of the lipstick?,tumblr_nc6j45sSgI1s0altuo1_400,30520,2 7898,FRAMEQA48687,plate,what do the pair of hands hold with little cakes on it?,tumblr_n9c3crt8br1ql1nv3o1_500,91606,0 7899,FRAMEQA9823,cat,what is walking on its hind legs?,tumblr_nju9ibDTtt1u3g519o1_400,54134,0 7900,FRAMEQA8461,white,what is the color of the dress?,tumblr_nhpmgxxX6U1u66cs6o1_400,79032,2 7901,FRAMEQA45468,cars,what crash while racing on the race track?,tumblr_njoz3heJia1tx8mn0o1_400,21855,0 7902,FRAMEQA11225,dog,what does the man smile and pets?,tumblr_nk8jxhpgcP1tuo9b6o1_250,9982,0 7903,FRAMEQA20822,stick,"what does the person hold , they bring it closer to their body?",tumblr_ncgl6t3yLm1tqwtb6o1_500,99002,0 7904,FRAMEQA30238,cat,what is drinking water from the faucet?,tumblr_ng2hhrvC6B1slj978o1_400,19523,0 7905,FRAMEQA16444,black,what is the color of the boy?,tumblr_nk9bmlrirm1uosfkco1_400,72287,2 7906,FRAMEQA22412,cat,what plays with the cell phone image of itself?,tumblr_n9tiwqdAI71tdmffyo1_400,15936,0 7907,FRAMEQA36295,bird,what is pecking at the small orange squash?,tumblr_ne0v8hQfU71sjuzlno1_400,37917,0 7908,FRAMEQA12637,room,where is the guy using his keyboard?,tumblr_nqtrxiojIN1ua0og2o1_400,64484,3 7909,FRAMEQA7075,two,how many men high five and one gives up his seat to the other?,tumblr_ndqlp2j2aX1roami5o1_500,85814,1 7910,FRAMEQA30994,white,what is the color of the shirt?,tumblr_n9wvlc6Yyy1tj1kzuo1_250,16163,2 7911,FRAMEQA28011,device,what does the man work made from string?,tumblr_nbfms5bNhL1s3lrg5o1_400,33329,0 7912,FRAMEQA22246,white,what is the color of the hair?,tumblr_mhddmuITm21rk29ido1_500,89716,2 7913,FRAMEQA29166,money,what are some hands holding and a girl is being in chains?,tumblr_ncfy4g6M611rmh5d4o1_500,3447,0 7914,FRAMEQA17606,bear,what is walking along and gets scared by the man?,tumblr_noj3zgE9801uqlgxno1_500,82866,0 7915,FRAMEQA30866,glasses,what is the man removing in the crowd?,tumblr_ncygwiepmq1qfdlipo1_500,4993,0 7916,FRAMEQA21304,two,how many men are shaking hands?,tumblr_njvv3fRF7y1s1rzito1_400,2327,1 7917,FRAMEQA6773,two,how many old men with gray hair are dancing?,tumblr_npc1b21BeA1r57o71o1_500,41809,1 7918,FRAMEQA2484,two,how many people are next to each other and one kisses the other?,tumblr_net32tTYzv1tf8zv4o1_1280,46641,1 7919,FRAMEQA34473,cat,what is the girl hugging and kissing?,tumblr_n9igzcnoug1r0p6epo1_400,29518,0 7920,FRAMEQA16605,dog,what is sitting on the mat on the floor?,tumblr_nhidzpk1Bu1tjhld9o1_250,23339,0 7921,FRAMEQA41927,blue,what is the color of the shorts?,tumblr_ncu18wMxsX1tb2khbo1_250,11496,2 7922,FRAMEQA12647,two,how many people is wearing black are walking on the stage?,tumblr_n9buvpXnDu1rhs3x9o1_400,58024,1 7923,FRAMEQA29385,brown,what is the color of the hair?,tumblr_ni3ifpHmOa1qc94ixo1_500,44795,2 7924,FRAMEQA45170,three,how many people are being mimes on stage?,tumblr_nl1flazV921remizro1_400,21549,1 7925,FRAMEQA18902,lake,what does the white jeep boat cross quickly?,tumblr_npf5kbV03n1u1ogm0o1_400,32114,0 7926,FRAMEQA8086,three,how many guys danced and waved their hands?,tumblr_net9msbsuS1r0c0rjo1_400,5132,1 7927,FRAMEQA7945,car,what is making the left hand turn at a corner?,tumblr_nb330aM2rd1taqruuo1_400,64237,0 7928,FRAMEQA13082,phone,what is the man in a gray shirt holding and smiling?,tumblr_nhewmmMC4c1t0w9oqo1_500,55471,0 7929,FRAMEQA27376,octopus,what does the fish swim over the octopus and throws its tentacles up?,tumblr_na3k3l3Yn01sk96t7o1_500,38964,0 7930,FRAMEQA16388,bath,what are the women taking together outside?,tumblr_nqxdsn2yZB1r2lnvfo1_400,26152,0 7931,FRAMEQA2284,two,how many boys sit at the table and drink milkshakes?,tumblr_nbivlx2sZy1tiqdeho1_400,68717,1 7932,FRAMEQA3191,yellow,what is the color of the background?,tumblr_nfmprtryRm1s013u0o2_r1_500,55145,2 7933,FRAMEQA37881,bathroom,where is the young girl signing and looking at herself in the mirror?,tumblr_npc0uzSrRd1qfp2q7o1_250,1393,3 7934,FRAMEQA31209,wig,what is the beautiful young woman taking off?,tumblr_nqu3w0hZk81u176r8o1_250,90899,0 7935,FRAMEQA26546,sledgehammer,what is the man with no top on swinging?,tumblr_nfky23RT5W1tiz10fo1_250,11113,0 7936,FRAMEQA51982,cigarette,what did the person light from a lighter?,tumblr_nisvuzpqme1twfip5o1_400,42384,0 7937,FRAMEQA23895,two,how many man are showing hugging while playing the guitar?,tumblr_n8w2rvoTUU1tg9l46o1_400,18693,1 7938,FRAMEQA21616,two,how many men are moving their arms up and down?,tumblr_nk2xke0BQS1uopxvxo1_500,84797,1 7939,FRAMEQA28264,nightclub,where is the man with facial hair standing and pointing to something?,tumblr_nq2m2lCfLO1r8jb1xo1_400,17212,3 7940,FRAMEQA33112,flowers,what is the man turning around and smelling?,tumblr_nbx8q1KV9e1rwdmvno1_500,26083,0 7941,FRAMEQA13942,shirt,what is the man taking off and throwing it down?,tumblr_nbp20daPPv1ses81bo1_250,5643,0 7942,FRAMEQA16093,bird,what is this a girl that holding and then she leans forward and kisses it?,tumblr_n9bvirYyri1ruy90oo1_400,3766,0 7943,FRAMEQA29847,chair,where is the woman sitting?,tumblr_n92b7tMx081tgzjmro1_400,28772,3 7944,FRAMEQA47285,guitar,what are two men playing?,tumblr_ng5rs5F6tJ1t1nzngo1_500,79612,0 7945,FRAMEQA12675,cat,what is being lazy and lying in the corner?,tumblr_nqxes8zoYk1rulxe0o1_400,71466,0 7946,FRAMEQA33465,two,how many women kiss while the group of people watch from behind?,tumblr_n8qs2qtH6b1tdbrb1o1_250,23613,1 7947,FRAMEQA46416,two,how many men are speaking with two other people besides them?,tumblr_n9lpsunVP61t1j1f4o1_250,10941,1 7948,FRAMEQA45798,dog,what is chasing after an object thrown on to the grass?,tumblr_nhhujqoyKU1tjhld9o1_400,54091,0 7949,FRAMEQA12656,two,"how many guys are dancing on the television set by squatting , leaning backward , and waving their arms back and forth?",tumblr_ncntfulJrF1tbgcpko1_250,35740,1 7950,FRAMEQA19342,microphone,what is the man wearing a blue shirt is holding and speaking?,tumblr_npz10iHpPb1ssqvb0o1_400,39205,0 7951,FRAMEQA39447,two,how many old ladies are dancing while the man at a desk watches?,tumblr_ncbvir8XTq1sggdd3o1_250,41306,1 7952,FRAMEQA23863,card,what is the long haired man in a nice fancy tuxedo suit and white gloves holding?,tumblr_na371ywy2Y1r8f3ano1_500,46216,0 7953,FRAMEQA9938,blue,what is the color of the shirt?,tumblr_nbmz36bIej1rv9d8do1_500,84811,2 7954,FRAMEQA37447,black,what is the color of the jacket?,tumblr_nemehiFEYa1qalzuto1_250,81519,2 7955,FRAMEQA18191,blue,what is the color of the shirt?,tumblr_ncyyl1NVgD1sxfrgdo1_400,33358,2 7956,FRAMEQA36081,puppy,what is being held by somebody in his arms?,tumblr_n9e2tqLvWh1tdmffyo1_250,25535,0 7957,FRAMEQA24876,two,how many women are walking down the hallway together?,tumblr_n9sj5cqJdi1sycli7o1_500,75249,1 7958,FRAMEQA31347,two,how many women are looking at each other and pulling faces?,tumblr_nd7lyk28OJ1qdtwtzo1_250,26072,1 7959,FRAMEQA23830,white,what is the color of the woman?,tumblr_nbnxe9gZGR1qb8axro1_500,49944,2 7960,FRAMEQA28552,ocean,what is the fighter plane flying over about to land on a navy ship?,tumblr_nk9bepAt5K1sq12j9o1_400,82896,0 7961,FRAMEQA52008,two,how many people are rolling around in bed together?,tumblr_n96o5dqttH1qha21xo1_500,88139,1 7962,FRAMEQA31358,two,how many cats are shoving each other and fighting?,tumblr_nefmbhSoi71sg891po1_400,18465,1 7963,FRAMEQA30735,two,how many girls is this image of sitting down talking to each other?,tumblr_njrwofTG731u04lbzo1_500,55099,1 7964,FRAMEQA8795,room,where is the guy looking happy?,tumblr_nc5bx5KHcB1tmtpb9o1_500,40848,3 7965,FRAMEQA51693,cat,what is biting the fish in a bowl?,tumblr_nf189lUyiY1tdjuqvo1_400,38805,0 7966,FRAMEQA1234,white,what is the color of the car?,tumblr_nee7hlohYU1tx8mn0o1_400,52719,2 7967,FRAMEQA18025,two,"how many horse riders chase the cow in the ring , while spectators watch?",tumblr_njn33xtHeN1smsmueo1_400,60084,1 7968,FRAMEQA33515,black,what is the color of the shirt?,tumblr_nffsp6xkeS1t7an45o1_250,15968,2 7969,FRAMEQA21420,shuttle,what is flying over the earth?,tumblr_nf0rsx4U7o1tqwtb6o1_400,36945,0 7970,FRAMEQA23718,loop,what does the person on a bike do through a wooden structure?,tumblr_nhqyihc5zY1tqqhsxo1_400,37919,0 7971,FRAMEQA17551,headphones,what is the man wearing and screaming?,tumblr_nqoxo2xNwk1u22tvfo1_250,21459,0 7972,FRAMEQA16718,black,what is the color of the kitty?,tumblr_nev8ygd3491tmnswbo1_400,43441,2 7973,FRAMEQA23244,car,what drives by and looks at the group of women sitting in the sun?,tumblr_nqvlitw9nW1t5ygabo1_400,64594,0 7974,FRAMEQA43131,cigarette,what is the man in a car smoking?,tumblr_nd9lvuNePt1u15aayo1_400,34747,0 7975,FRAMEQA41475,gray,what is the color of the shirt?,tumblr_nhxhfotwHw1stu6szo1_500,86443,2 7976,FRAMEQA4671,balcony,what does the girl jump off?,tumblr_nge1acwnt81sjxzs0o1_400,76122,0 7977,FRAMEQA16629,cat,what is standing up on the corner is closing the curtain with his paw?,tumblr_nex4xp2DL31slj978o1_250,3264,0 7978,FRAMEQA4673,bed,where is the man lying eating while another man sits beside him on the bed reading a book?,tumblr_njv3g9ZEQV1ts13wdo1_250,75984,3 7979,FRAMEQA38462,two,how many women with head sets on are talking to each other?,tumblr_nc9xh5NZ6d1stafvxo1_400,87951,1 7980,FRAMEQA22635,two,how many elderly people are dancing in what appears to be the club?,tumblr_npc1b21BeA1r57o71o1_500,41809,1 7981,FRAMEQA30205,two,how many guys is wearing uniform are dancing by waving their shoulders?,tumblr_ndz6v9plHU1s4gcyso1_500,86796,1 7982,FRAMEQA11063,white,what is the color of the tears?,tumblr_nk2a2mpIYB1u3zgs0o1_500,45064,2 7983,FRAMEQA18371,two,how many guys rip the flag down off a wall?,tumblr_nd3qvcdW511tq4l8jo1_250,43971,1 7984,FRAMEQA27457,gray,what is the color of the sky?,tumblr_nds0nftICq1tqs077o1_500,86723,2 7985,FRAMEQA29416,two,how many men are talking in the room?,tumblr_na9rbrw8PT1tjys71o1_250,68864,1 7986,FRAMEQA31320,green,what is the color of the frog?,tumblr_nhwanmiWzD1qlkuvao1_250,76552,2 7987,FRAMEQA30025,sunglasses,what are three men wearing and one shoves another man away?,tumblr_n9f1hcMqsn1snp73jo1_500,45318,0 7988,FRAMEQA25522,red,what is the color of the hair?,tumblr_ncz5bgkqTO1tkalc5o1_250,2024,2 7989,FRAMEQA47581,two,how many women in bathing suits are talking to a man?,tumblr_ndqri2BZCQ1tuvbx1o2_500,56011,1 7990,FRAMEQA32154,band,what is playing music while the sexy girls dance?,tumblr_ncw7meF4Pb1txydmgo1_500,57976,0 7991,FRAMEQA17918,two,how many brown dogs is revisiting?,tumblr_n8pom6qgCR1tgl4z1o1_400,75583,1 7992,FRAMEQA52659,two,how many people are bowing with their arm stretched out?,tumblr_nrfehsYDWe1u7r745o1_400,46511,1 7993,FRAMEQA8943,cat,what is squirming on the bed?,tumblr_n9e0koRNI51r390ico1_250,17008,0 7994,FRAMEQA28551,black,what is the color of the outfit?,tumblr_n9qcwdJTNX1tib6auo1_400,24417,2 7995,FRAMEQA48086,gray,what is the color of the hair?,tumblr_nnzt2wmz6S1ql37t5o1_500,59469,2 7996,FRAMEQA12415,shirt,what did the tan man take off?,tumblr_n9ynr6xLmV1tgwlf5o1_250,13254,0 7997,FRAMEQA49425,glasses,what is the man pulling down and smoking a cigarette?,tumblr_naj41cmlq11s2l982o1_500,41846,0 7998,FRAMEQA12093,red,what is the color of the car?,tumblr_nivsjccx9w1r05qsbo1_400,68322,2 7999,FRAMEQA17521,two,how many children are lying in bed?,tumblr_nk6ja06aQx1snwydqo1_400,28917,1 8000,FRAMEQA20675,cat,what slides down the set of stairs?,tumblr_nq21n4xlTu1qi1atio1_250,45750,0 8001,FRAMEQA40694,three,how many guys does there 's dancing on a stage waving their arms?,tumblr_nklxk4KnVx1u447bgo1_400,51220,1 8002,FRAMEQA20027,two,how many people are running toward each other on a beach?,tumblr_nazmj4ROip1rewgqho1_500,60069,1 8003,FRAMEQA15005,dough,what is rising on the pan?,tumblr_nd8jkjOdOl1tozyi0o1_400,75245,0 8004,FRAMEQA25731,two,how many young men are dancing near each other?,tumblr_nr58uwv0IK1t0ojyvo1_400,15296,1 8005,FRAMEQA22976,two,how many young people are hugging each other?,tumblr_njv4k2CXi71u0cwu7o1_250,81329,1 8006,FRAMEQA27182,two,how many girls are sitting and smiling at each other?,tumblr_ngegv9zMI11skv76wo1_250,36105,1 8007,FRAMEQA20765,two,how many penguins are walking?,tumblr_ng46uo55Mx1slj978o1_400,50029,1 8008,FRAMEQA1592,red,what is the color of the jacket?,tumblr_nknoi9ewkB1rtehgxo1_400,81134,2 8009,FRAMEQA36421,sunglasses,what does the boy with tattoos pull off?,tumblr_ncygwiepmq1qfdlipo1_500,4993,0 8010,FRAMEQA20722,tank,where are terrapins swimming around?,tumblr_n9r1ab8DhJ1twtgiao1_400,59201,3 8011,FRAMEQA43275,five,how many people are in the car having fun and dancing?,tumblr_neb1kotniS1tbscvbo1_250,81480,1 8012,FRAMEQA26887,one,how many man runs up with his hands moving?,tumblr_njvuotGEtO1tq56fho1_500,75232,1 8013,FRAMEQA21390,stick,what is the guy wearing the black shirt is holding hockey?,tumblr_nhnznbimJv1sr8pwbo1_400,57915,0 8014,FRAMEQA46809,dog,what is barking at passing cars while driving down a road?,tumblr_nrkm38Aep41u80mmjo1_400,56068,0 8015,FRAMEQA12010,two,how many men is wearing black pants are fighting with chains?,tumblr_nr5h8ba4iB1s3wsijo1_500,69389,1 8016,FRAMEQA24873,black,what is the color of the top?,tumblr_ne3dghnoGa1r1endqo1_250,43714,2 8017,FRAMEQA7362,white,what is the color of the shirt?,tumblr_niq9l0fhTo1qc3nnco1_400,76775,2 8018,FRAMEQA10168,shorts,what is the guy playing the drums is wearing?,tumblr_njwrume8cm1un7etzo1_400,67999,0 8019,FRAMEQA35330,black,what is the color of the jacket?,tumblr_nqgdlsdvel1u3ngjwo1_250,51710,2 8020,FRAMEQA1988,closet,where is the man sitting and tying his shoes in front of a mirror?,tumblr_nkng211T8e1tgij0ro1_500,90158,3 8021,FRAMEQA14412,popcorn,what is the woman wearing a hat is eating?,tumblr_nnyl3sHshs1tjbfjto1_400,70065,0 8022,FRAMEQA13651,one,how many girl flips her hair?,tumblr_ndr4dwtJGP1rug7q0o1_400,79204,1 8023,FRAMEQA39295,blue,what is the color of the top?,tumblr_n9cbdnL7c11trnz9so1_400,80225,2 8024,FRAMEQA3758,yellow,what is the color of the object?,tumblr_nfd778t4T21toc82ho1_400,63625,2 8025,FRAMEQA30764,red,what is the color of the lips?,tumblr_n8wb6eXG2c1thsjzqo1_400,64996,2 8026,FRAMEQA20970,red,what is the color of the floor?,tumblr_npjopzbz3k1qz8lpeo1_250,42542,2 8027,FRAMEQA5469,two,how many people walk out the window?,tumblr_nb2myzj0DY1tkpzw0o1_400,18190,1 8028,FRAMEQA20650,cigarette,what is the man smoking and blowing smoke out in front of him?,tumblr_nkuiicX5AB1upul5no1_250,10224,0 8029,FRAMEQA52080,butt,what is the man on stage slapping?,tumblr_n9cyrkj1F11thzf6lo1_500,26892,0 8030,FRAMEQA48434,butterfly,what is landing on the woman 's lips and flying off?,tumblr_n9uux7pi6m1trk3cho1_500,90040,0 8031,FRAMEQA4172,cat,"what tries to jump on the counter , but falls off a table?",tumblr_nfcd09xbXE1tdjuqvo1_400,16291,0 8032,FRAMEQA4409,green,what is the color of the shirt?,tumblr_nl1s39DNKd1u874fbo1_400,62869,2 8033,FRAMEQA25105,brown,what is the color of the hair?,tumblr_nc2aafgc6m1siygd7o1_400,33088,2 8034,FRAMEQA412,cat,what is chasing the broom while someone sweeps the floor?,tumblr_nqlgrb0lcL1uz06r7o1_250,2822,0 8035,FRAMEQA5434,two,how many guys are making the salute on the stage?,tumblr_napoi43mJY1sdbrm9o1_250,19593,1 8036,FRAMEQA52380,white,what is the color of the dress?,tumblr_neyfonjRiM1rt9t46o1_250,16748,2 8037,FRAMEQA25129,yellow,what is the color of the hair?,tumblr_n99x6g6den1tcuqh9o1_400,29633,2 8038,FRAMEQA25729,four,how many males are taking turns talking into a microphone?,tumblr_nkj5yl01mk1thirzao1_400,62405,1 8039,FRAMEQA12327,black,what is the color of the blazer?,tumblr_npt77cfh9l1uxtx27o1_250,51792,2 8040,FRAMEQA41482,room,where are two people hugging each other?,tumblr_nalgunb5tA1rm4q61o1_250,6552,3 8041,FRAMEQA32910,two,how many women are looking at each other?,tumblr_naduko6Opl1qcvlffo1_100,93937,1 8042,FRAMEQA29259,makeup,what are the group of women helping put on?,tumblr_n8uw0bs3ZI1qinzfzo1_400,29461,0 8043,FRAMEQA16439,blue,what is the color of the dumps?,tumblr_nbtf0jqUNA1tkj2cmo1_250,8265,2 8044,FRAMEQA42223,two,how many men are rocking out with their guitars on stage?,tumblr_njte62Bwpv1t4la1fo1_400,25986,1 8045,FRAMEQA7845,computer,what is the young woman using and having a snack?,tumblr_niwi7oCIWW1qatdo3o1_500,57281,0 8046,FRAMEQA15985,two,how many girls are nodding their heads?,tumblr_nk4098ugL11u8qazco1_400,56071,1 8047,FRAMEQA15243,black,what is the color of the jacket?,tumblr_nox493KEDt1uwbzmxo1_250,15772,2 8048,FRAMEQA36910,dog,what is the man scratching with a wooden scratching stick?,tumblr_nhd9eyiVHn1row8k8o1_400,52836,0 8049,FRAMEQA29304,bus,what are some people riding and talking?,tumblr_najvvu3Y0I1se3ifso1_250,57959,0 8050,FRAMEQA36495,room,where are two people and one of them puts a hat on their head?,tumblr_ncxsl29ZXD1tmth2jo1_250,47237,3 8051,FRAMEQA34803,chair,where does someone fall trying to sit?,tumblr_npmetmIe3v1use8l1o1_400,36200,3 8052,FRAMEQA43283,black,what is the color of the woman?,tumblr_npjbm8zizK1txgyxzo1_500,83843,2 8053,FRAMEQA8185,car,what is diving on a race track?,tumblr_nbk9h1Vx7T1tx8mn0o1_400,77249,0 8054,FRAMEQA20847,two,how many people are bumping heads and falling down on a soccer field?,tumblr_nfpfh1RQGx1toym0ao1_400,29656,1 8055,FRAMEQA40024,headphones,what is the man wearing in the back seat of a car?,tumblr_nk8dq27ECT1s6zpepo1_250,19956,0 8056,FRAMEQA29727,blue,what is the color of the costume?,tumblr_npyvlqdC0S1tgcqt2o1_400,44730,2 8057,FRAMEQA35092,cat,what is able to massage another cat?,tumblr_na60jik2x61swxhaso1_400,28844,0 8058,FRAMEQA2673,red,what is the color of the lights?,tumblr_ng8o1nWNXz1u5segmo1_400,76676,2 8059,FRAMEQA48370,pole,what is the woman pushing into the corners of a ceiling?,tumblr_nrlalpSGQ91qzkvqho1_250,16979,0 8060,FRAMEQA9510,green,what is the color of the mat?,tumblr_nf3xpnk7yh1u3co76o1_400,8671,2 8061,FRAMEQA10115,car,what is veering off the track in a race?,tumblr_nlzuoyTPM61tx8mn0o1_400,78642,0 8062,FRAMEQA14815,anchor,what starts throwing punches at his desk?,tumblr_nh1ursnSEu1rftgwuo1_250,8822,0 8063,FRAMEQA17927,dog,what peaks in the car window and scares a man?,tumblr_n9h68813s31txehx9o1_500,94877,0 8064,FRAMEQA22376,plaid,where does the man hug and smiles another man?,tumblr_nft284Gssf1tmmb47o1_250,23280,3 8065,FRAMEQA17272,car,what is going around the turn on a racetrack?,tumblr_n8vecizBZQ1sla45lo1_400,76383,0 8066,FRAMEQA1208,banana,what is the man eating lying down?,tumblr_nda5gzOBFC1thgb9yo1_250,16396,0 8067,FRAMEQA50339,white,what is the color of the shirt?,tumblr_ney66jVqi61ssvehso1_500,77648,2 8068,FRAMEQA20798,two,how many people are helping each other today?,tumblr_nf2nys6IVp1tghqjmo1_500,87409,1 8069,FRAMEQA42080,horse,what is blinking and lowering his head in a stable?,tumblr_ni2yugot1B1tiz27ro1_500,37357,0 8070,FRAMEQA5059,red,what is the color of the shirt?,tumblr_ncyudkKo6c1sr8o8oo1_400,44438,2 8071,FRAMEQA18365,juice,what does the man gyrate and drinks?,tumblr_neldh8Joqr1tmpmi6o1_1280,79874,0 8072,FRAMEQA3797,gray,what is the color of the shirt?,tumblr_nfk8w94say1rejkllo1_500,73807,2 8073,FRAMEQA40926,white,what is the color of the shirt?,tumblr_nftltzB0hO1sgp15to1_500,47633,2 8074,FRAMEQA14676,sunglasses,what is the girl wearing and holding a glass on her hand?,tumblr_npkoql9zof1uwhtsjo1_250,35472,0 8075,FRAMEQA52331,racer,what makes the very sharp turn and makes it?,tumblr_nepeym75h91tx8mn0o1_400,55579,0 8076,FRAMEQA41845,brown,what is the color of the hair?,tumblr_nkoiw6PN6o1uprddoo1_500,73447,2 8077,FRAMEQA11108,guitar,what is the man playing in front of a microphone?,tumblr_nrc6viwFXO1tbw0t6o1_500,74486,0 8078,FRAMEQA45972,two,how many men are dancing in front of a car and motorcycle?,tumblr_ndu1fawTmi1rpucoso1_250,40882,1 8079,FRAMEQA28006,white,what is the color of the t-shirt?,tumblr_nfgkpzxpv01qclz9ho1_1280,99900,2 8080,FRAMEQA46717,red,what is the color of the hair?,tumblr_nf3uujUt4X1s8i73yo1_400,28306,2 8081,FRAMEQA20774,two,how many men are talking with odd faces?,tumblr_nfpu6sfKuH1qd80wyo1_400,41614,1 8082,FRAMEQA5529,two,how many people are on the bed kissing and cuddling with each other?,tumblr_na3z9wYgAV1r1e6f9o1_500,98497,1 8083,FRAMEQA44773,gray,what is the color of the shirt?,tumblr_nfjsmn1Xji1te9mf9o1_250,13292,2 8084,FRAMEQA5086,puppy,what is playing with half a lemon on the ground?,tumblr_nk98cz79at1tk2ngvo1_400,68986,0 8085,FRAMEQA16688,hat,what is the man wearing a suit is getting thrown onto his head?,tumblr_ncfvamCHdp1slj978o1_400,197,0 8086,FRAMEQA29524,street,where are four people running and three fall?,tumblr_n9arvu8wVk1th7gfko1_250,37916,3 8087,FRAMEQA5635,car,what is chasing the motorbike along a freeway and skids into the central reservation?,tumblr_nakx4m3btR1r27dg6o1_400,18991,0 8088,FRAMEQA43870,black,what is the color of the boy?,tumblr_nevp0nML291t8akpjo1_400,87803,2 8089,FRAMEQA19415,two,how many men sat in the car look at each other?,tumblr_n94ma8VGpr1qhd6ylo1_500,48315,1 8090,FRAMEQA51543,black,what is the color of the lady?,tumblr_nc5zxn3LvC1s3k8iso1_400,63955,2 8091,FRAMEQA21058,gray,what is the color of the jacket?,tumblr_nqd4e6imSb1sht3fmo1_400,89972,2 8092,FRAMEQA38974,yellow,what is the color of the lei?,tumblr_nqqxc3aCoy1uzoiz6o1_400,65697,2 8093,FRAMEQA47684,black,what is the color of the outside?,tumblr_ndu69ysOxt1ta9mkfo1_500,97682,2 8094,FRAMEQA36290,black,what is the color of the shirt?,tumblr_nraprjJl3w1uagl5ho1_500,25119,2 8095,FRAMEQA32891,three,how many men are moving round and doing funny dance?,tumblr_nc5jq9YHHz1twj3jvo1_500,61007,1 8096,FRAMEQA50992,two,how many men are looking?,tumblr_ngzyt9eRNK1rblf33o1_500,86244,1 8097,FRAMEQA25089,gray,what is the color of the suit?,tumblr_npzz6lGvVe1u32cyao1_400,28059,2 8098,FRAMEQA10450,dog,what shakes himself in slow motion?,tumblr_nk5ddaL9zk1s28vxko1_400,43219,0 8099,FRAMEQA37986,green,what is the color of the shirt?,tumblr_nd6gv9Zbaz1r4phxao1_400,94809,2 8100,FRAMEQA32460,dog,what does the man in a black shirt hold?,tumblr_nokgkjPvdh1uot1e7o1_400,60623,0 8101,FRAMEQA9817,red,what is the color of the lipstick?,tumblr_nf1n9nSjtk1u0juyyo1_250,9440,2 8102,FRAMEQA13815,two,how many men high five as they stand in front of a map?,tumblr_nfi98s3ntx1shsnyco1_500,101984,1 8103,FRAMEQA23255,blue,what is the color of the hair?,tumblr_nhbwcsRKj61u6mv2go1_250,21079,2 8104,FRAMEQA42902,terrapins,what are swimming around in the fish tank?,tumblr_n9r1ab8DhJ1twtgiao1_400,59201,0 8105,FRAMEQA37004,guitars,what are the man and a woman playing on a stage?,tumblr_nh22oslt5u1tnlmk9o1_250,51698,0 8106,FRAMEQA30285,tail,what does the cat tickle?,tumblr_neygedcDOt1tkhxdko1_400,46613,0 8107,FRAMEQA6315,pop,what is the young man eating?,tumblr_nc4e6y37661qzm8mpo1_250,35503,0 8108,FRAMEQA11980,kitten,what is hoping around on the ground?,tumblr_nnw9ylw8zC1tpg4boo1_250,68610,0 8109,FRAMEQA39553,black,what is the color of the headdress?,tumblr_nhrwzi3knp1u7yxjso1_400,54436,2 8110,FRAMEQA49646,white,what is the color of the shirt?,tumblr_n9f1hcMqsn1snp73jo1_500,45318,2 8111,FRAMEQA19177,guitar,what is the man playing in front of a store?,tumblr_ney1qn9pP21ssuua8o1_250,31604,0 8112,FRAMEQA39537,two,how many young men raise their hand and gesture and then bow?,tumblr_n9flwiVMFP1tpe9lro1_250,9456,1 8113,FRAMEQA14615,black,what is the color of the coat?,tumblr_nn2bd8dUsF1utvsgfo1_250,9028,2 8114,FRAMEQA7110,train,where is the woman sitting?,tumblr_n94m015YpL1tep2q5o1_400,59187,3 8115,FRAMEQA43423,twirls,what around then she places her hand on her hair and dances?,tumblr_nkc2myDS1Q1sj9u91o1_250,49626,0 8116,FRAMEQA33165,wheelchair,where is the man passing by people?,tumblr_n9n0wjrVkC1tdjuqvo1_400,50725,3 8117,FRAMEQA30937,three,how many different cups is the lady lining up on a table?,tumblr_nbv33uJdK11sfhzddo1_500,88760,1 8118,FRAMEQA16287,black,what is the color of the hair?,tumblr_ncemd5Cxsw1t7ux2so1_400,72261,2 8119,FRAMEQA41210,makeup,what is the happy girl getting done?,tumblr_na5e7cqw5L1r7w2obo1_r3_500,52541,0 8120,FRAMEQA41451,tool,what is fixing the shoe for an animal?,tumblr_npjrckDyiu1qe2thio1_500,67512,0 8121,FRAMEQA6871,black,what is the color of the vest?,tumblr_njmov237Wm1sy82cio1_500,87719,2 8122,FRAMEQA52479,cigar,what is the man in a red vest with a white shirt underneath smoking?,tumblr_neqyaxfZfv1ry1ioco2_500,97316,0 8123,FRAMEQA31509,box,what does the boy move with a stoic look on his face?,tumblr_nfas3aICsP1ql0sfgo1_500,55823,0 8124,FRAMEQA45269,white,what is the color of the shirt?,tumblr_n9wd37ruiw1ti8b6yo1_250,3252,2 8125,FRAMEQA47544,six,how many people on stage are standing in front of a car?,tumblr_nhaaonJd0D1u6jgouo1_250,50395,1 8126,FRAMEQA24538,hat,what is the man wearing a black hat is removing from the man sitting next to him?,tumblr_net9q3fbJj1rxd60qo1_250,38852,0 8127,FRAMEQA25665,car,what is running fast in the track around a crowd?,tumblr_ndasm67IHk1tr5tuwo1_500,49883,0 8128,FRAMEQA49651,red,what is the color of the stuff?,tumblr_n9m2vceX821rrc0yzo1_500,22915,2 8129,FRAMEQA33950,hay,what is the girl putting into a burning fire?,tumblr_ncopkoC3FY1roq4e2o1_400,78639,0 8130,FRAMEQA13985,two,how many men in suits sit on a sofa and share a laugh?,tumblr_n9zybpUiWe1tra8tyo1_500,83057,1 8131,FRAMEQA52167,cigarette,what is the woman smoking and blowing smoke?,tumblr_nhsixzeSF01qc17seo1_500,77568,0 8132,FRAMEQA4725,two,how many women with short hair are smiling and talking?,tumblr_ncvw02a1fQ1t9h1yfo1_400,50141,1 8133,FRAMEQA51914,two,how many men are sitting in the room and laughing together?,tumblr_nkn45o8Lso1sl4ny1o1_400,37681,1 8134,FRAMEQA48896,three,how many men is standing together dressed one chatters his teeth in the middle ones ear?,tumblr_ngu8cfNenW1ripg1ro1_500,57236,1 8135,FRAMEQA11924,room,where is the woman doing some gymnastics?,tumblr_n8t7li2oGl1qb11yjo1_400,96871,3 8136,FRAMEQA26686,band,what is performing on stage before a crowd?,tumblr_nr2kjflmzu1r17mwpo1_540,59055,0 8137,FRAMEQA20640,torch,what is the man in overalls lighting blow?,tumblr_nhdqgy84WC1r4fe3xo1_500,57514,0 8138,FRAMEQA42931,two,how many woman 's are singing with the microphone and playing a musical instrument?,tumblr_nbearz2UtH1tykzato1_500,91827,1 8139,FRAMEQA43829,two,how many men are hugging and laughing at something?,tumblr_na405oJNXw1s7shqdo1_250,16375,1 8140,FRAMEQA322,chair,what is the man with short hair and glasses falling off?,tumblr_ni05olbLcN1u1c6rno1_250,53686,0 8141,FRAMEQA44844,two,how many men are sitting in front of microphones and laughing?,tumblr_nr2anni0vZ1uup4c1o1_400,77629,1 8142,FRAMEQA13814,three,how many men dance by rocking back and forth while the woman records them?,tumblr_ngpnflPD2K1sklqsoo1_400,58049,1 8143,FRAMEQA3802,white,what is the color of the suits?,tumblr_ng8cq0OE6r1u2z3v8o3_250,2254,2 8144,FRAMEQA15445,three,how many young men in white suits are singing into a microphone together?,tumblr_n9jjd1vxrB1rhbco5o1_250,47233,1 8145,FRAMEQA52130,black,what is the color of the shirt?,tumblr_nconinasRR1s9gxsqo1_500,89274,2 8146,FRAMEQA38176,bicycle,what did the man ride over a large ball?,tumblr_ngxqtqgyOm1sqlieso1_400,50893,0 8147,FRAMEQA26104,four,how many men are dancing together on the stage?,tumblr_njn8iw5kKP1una83oo1_500,33829,1 8148,FRAMEQA4067,black,what is the color of the hat?,tumblr_n9hvtzkimT1tirskjo1_400,39158,2 8149,FRAMEQA17204,milk,what is feeding to the very cute little rabbit?,tumblr_not9kcZnFJ1uu6jgto1_400,20368,0 8150,FRAMEQA20488,panther,what are the typical corporate industrialist feeding?,tumblr_nnv8efkDCK1rqru0yo1_400,64523,0 8151,FRAMEQA45565,guitar,what is the man in front of bright lights playing?,tumblr_nekewm14Rx1seb31ro1_500,63354,0 8152,FRAMEQA39081,brown,what is the color of the hair?,tumblr_nbk6g8Dydm1s22j6co1_250,4887,2 8153,FRAMEQA37564,two,how many men in black suits make weird body movements?,tumblr_nb8nziviJ61tkxcpoo1_250,39669,1 8154,FRAMEQA5740,three,how many girls in red and black dresses were dancing?,tumblr_nq513q76F81u3cb3fo1_400,46038,1 8155,FRAMEQA39308,two,how many men are having the serious discussion while looking at an army tank?,tumblr_nhihfqgnjK1u71wuao1_400,58907,1 8156,FRAMEQA1487,two,how many man having a fight and is very dirty fight?,tumblr_nnzxkpnkEc1t9qxjmo1_250,48965,1 8157,FRAMEQA704,dog,what is driving the toy car across the road?,tumblr_ng67v0PpjK1tkhxdko1_400,17979,0 8158,FRAMEQA41517,two,how many people are in the room with two microphones in front of them?,tumblr_noygepnmqA1tvw35wo1_250,8773,1 8159,FRAMEQA30418,two,how many people are dancing together in the room?,tumblr_nadd8dv4Ho1s34j90o1_400,57968,1 8160,FRAMEQA10355,kitten,what is walking while looking up?,tumblr_nk7876agwW1slwrsuo1_400,16802,0 8161,FRAMEQA31457,green,what is the color of the shirt?,tumblr_nbuuylqusz1tbt8d2o1_400,29018,2 8162,FRAMEQA38926,car,what spins around on the track?,tumblr_nkrkl4u4JU1unyhx2o1_400,96258,0 8163,FRAMEQA40401,three,"how many girls all is having dark colored hair are holding on to each other , smiling and laughing?",tumblr_ncuo84ErSe1rixjzfo1_400,52680,1 8164,FRAMEQA46979,bed,where are two men sharing a moment?,tumblr_nkw7jnai031rm0ja8o1_400,52202,3 8165,FRAMEQA12726,red,what is the color of the lipstick?,tumblr_nepylkq42m1t5ojzdo1_250,15466,2 8166,FRAMEQA18963,two,how many girls are standing beside each other smiling?,tumblr_nk1o4wrz6A1t1d43io1_500,88073,1 8167,FRAMEQA34797,black,what is the color of the vest?,tumblr_nau25zCJpy1tee2zqo1_500,94641,2 8168,FRAMEQA9979,black,what is the color of the hair?,tumblr_nouvypVt4E1r9lvg6o1_400,16658,2 8169,FRAMEQA46783,hat,"what does the man throw at another man , and it lands on his head?",tumblr_ncfvamCHdp1slj978o1_400,197,0 8170,FRAMEQA45192,fountain,where are the woman and a man dancing?,tumblr_nhg0vcBsEx1tgitqpo1_500,7279,3 8171,FRAMEQA6310,black,what is the color of the hat?,tumblr_nkp48eoRnd1u3a68lo1_500,75940,2 8172,FRAMEQA28790,red,what is the color of the sweater?,tumblr_n9qvrhLwzq1r54uz2o1_400,28811,2 8173,FRAMEQA38300,microphone,what does the woman take off her coat and holding?,tumblr_ncs731Hn2X1slj978o1_250,16949,0 8174,FRAMEQA19181,tie,what is the young woman with long curly hair straightening?,tumblr_n9ycr8zaLA1to7bdco1_250,1859,0 8175,FRAMEQA40454,two,how many girls are doing the dance routine?,tumblr_nbczbxoW5U1r1jb3so1_500,94902,1 8176,FRAMEQA51569,two,how many men is wearing suits are dancing on a stage?,tumblr_na2s3oGmK91sekz9eo1_400,48596,1 8177,FRAMEQA20464,dog,what stares at something in a store?,tumblr_nhdr3clKDa1sntw1mo1_400,39810,0 8178,FRAMEQA6364,four,how many wheel motorbike is the man in yellow driving with a nice drift?,tumblr_nk4vj0em9H1u1m6w4o1_500,39383,1 8179,FRAMEQA21719,black,what is the color of the sweater?,tumblr_nkywyb1qXc1qj6w89o1_500,7385,2 8180,FRAMEQA34743,red,what is the color of the vest?,tumblr_nfe1neYEd81qcwyxho1_400,34065,2 8181,FRAMEQA44221,two,how many people is this meeting and shaking hands?,tumblr_nhkoxqBeA41qik8zvo1_500,100936,1 8182,FRAMEQA25421,sky,what is the blazing fire lighting up?,tumblr_ng9z8vnjWI1r7b8pso1_1280,837,0 8183,FRAMEQA17961,two,how many men walk through the entrance of a building?,tumblr_nbbuocrieZ1s5t0x8o1_250,85591,1 8184,FRAMEQA27433,pool,where is the baby in one pool with a swim ring and the dog is?,tumblr_nn4nr9hX3C1sm7eoto1_500,41251,3 8185,FRAMEQA8037,horse,what are the man and a woman riding?,tumblr_n9t8801hEM1qc5bc7o1_500,74344,0 8186,FRAMEQA31479,photograph,what is the man signing with a sliver pen?,tumblr_ngqv0fIvLp1qd80wyo1_400,45758,0 8187,FRAMEQA11698,shirt,what is the girl taking off and kissing him?,tumblr_nobecu8wyv1s5cww5o1_400,63193,0 8188,FRAMEQA10310,two,how many people are talking?,tumblr_nkc48iNxXB1uodfiso1_500,72935,1 8189,FRAMEQA23214,black,what is the color of the man?,tumblr_nelgzg0Sl91r0oqh7o1_500,89347,2 8190,FRAMEQA1442,dog,what does the person hold?,tumblr_n91362IjQP1syoifvo1_500,50369,0 8191,FRAMEQA18912,car,what is skidding around in the parking lot?,tumblr_nbxshaRNzf1rlqrz3o1_500,68911,0 8192,FRAMEQA30871,kitten,what is wearing the top hat and gets it knocked off?,tumblr_nc8b7fU5a11s0svh1o1_500,60230,0 8193,FRAMEQA41691,photographs,what is the young lady giving to a young man?,tumblr_nqxm80ySXt1usju2ko1_250,36455,0 8194,FRAMEQA8643,cat,what is sitting around doing nothing?,tumblr_nk3tgnyofk1txpva2o1_500,78132,0 8195,FRAMEQA12543,brown,what is the color of the rabbit?,tumblr_njw4erpndi1te0omro1_400,88275,2 8196,FRAMEQA46616,horses,what give each other a high five?,tumblr_n9hp20yyXi1ttuja3o1_400,65594,0 8197,FRAMEQA28542,room,where is the person sweeping?,tumblr_nnl5xbyxKV1r5uv3zo1_400,17449,3 8198,FRAMEQA17855,guitar,what is the long haired young man playing?,tumblr_natpusTxxx1svos5ho1_400,21396,0 8199,FRAMEQA29705,white,what is the color of the shirt?,tumblr_napo7m8xr71thq1yio1_250,16888,2 8200,FRAMEQA31740,red,what is the color of the girl?,tumblr_nfyrpdSktQ1tr2xwio1_400,64233,2 8201,FRAMEQA10943,white,what is the color of the ball?,tumblr_nkgjsaoPTt1u1pokno1_500,100084,2 8202,FRAMEQA45266,frog,what is this trying to bite a person 's finger?,tumblr_nr4ssypv3Y1uaujqao1_400,35099,0 8203,FRAMEQA28948,green,what is the color of the toy?,tumblr_npahm5k3YQ1ro0x7uo1_250,24987,2 8204,FRAMEQA23951,puppy,what dug at the floor while the other slept?,tumblr_nc9l9ewvnn1rm95kgo1_400,42806,0 8205,FRAMEQA8458,two,how many people are standing up and looking at each other?,tumblr_nrk1jrdGhR1uakcnho1_500,71562,1 8206,FRAMEQA9346,dog,what sits up on its back paws and then reaches around a wall?,tumblr_naq0fyOyiC1rj38k8o1_400,1318,0 8207,FRAMEQA8374,suit,what is dancing while singing?,tumblr_nheojg8ou31sqwk8ko1_250,3300,0 8208,FRAMEQA37326,window,what does the man in a car shut?,tumblr_nqmrnfJHqY1r9pv19o1_500,73803,0 8209,FRAMEQA5186,cat,what is walking along the low wall?,tumblr_ne5xnkmNbh1tk2ngvo1_400,53122,0 8210,FRAMEQA37149,brown,what is the color of the hair?,tumblr_n9mri5J5kI1smd0f6o1_400,33393,2 8211,FRAMEQA34860,cap,what does the man wear?,tumblr_n9bi70IW9w1t0tdj5o1_250,17375,0 8212,FRAMEQA15572,bedroom,where does the woman do a bong hit?,tumblr_nfnuwqIZYf1r6a3k1o1_400,63899,3 8213,FRAMEQA49157,white,what is the color of the clothing?,tumblr_ncep6g3gEo1tik3sgo1_500,99919,2 8214,FRAMEQA45743,one,how many man flips the other one?,tumblr_nkopqiVNB01un86uao1_250,86699,1 8215,FRAMEQA25246,cat,what is pulling the tail to another big cat?,tumblr_npdhgdA8ez1sxvd87o1_400,43334,0 8216,FRAMEQA42586,cat,what is sticking out his tongue and wiggling it?,tumblr_nbc2uhXce31slwrsuo1_250,1365,0 8217,FRAMEQA34068,purple,what is the color of the drink?,tumblr_na00hxaoq01so8ipho1_500,79541,2 8218,FRAMEQA2672,picture,what is the woman with black hair talking to another woman and someone is taking?,tumblr_n8ug3oAT981rit0dno1_500,93869,0 8219,FRAMEQA1015,egg,"what did the woman crack into a bowl , it has a double yolk?",tumblr_nbfz03nMP41tz0q9ko1_1280,33105,0 8220,FRAMEQA50847,black,what is the color of the seductively?,tumblr_nrd7r6TBqF1usqmhvo1_250,2135,2 8221,FRAMEQA40045,horse,what is running and jumping on the contest?,tumblr_nd8luntFAK1s8qlxdo1_400,97784,0 8222,FRAMEQA2354,white,what is the color of the clothing?,tumblr_n9xvfh2oUz1rjf48qo1_250,23453,2 8223,FRAMEQA24786,four,how many hands in surgical gloves paste red tape in the shape of a cross?,tumblr_nh0ddtHrBj1tg85j7o1_400,36841,1 8224,FRAMEQA19832,two,how many men in white suits dance on stage?,tumblr_ng8cq0OE6r1u2z3v8o3_250,2254,1 8225,FRAMEQA509,gray,what is the color of the wig?,tumblr_nhkvtw3BHU1rdixa9o1_400,32551,2 8226,FRAMEQA18627,corridor,where is the young man singing?,tumblr_nbwoxqjLik1tit9eco1_r1_500,95676,3 8227,FRAMEQA26863,car,where is the baby riding?,tumblr_nr1uguIQxD1td493xo1_500,84890,3 8228,FRAMEQA21815,horse,what is the person in a green top riding?,tumblr_n96fzvPIrN1s2wg51o1_500,46532,0 8229,FRAMEQA32187,black,what is the color of the hair?,tumblr_nfij52cXeF1tx3acho1_250,18034,2 8230,FRAMEQA29396,mirror,where is the guy arranging herself?,tumblr_n8xrsdx6WY1tg0kf3o1_250,27224,3 8231,FRAMEQA49567,dogs,"what are revisiting , one is in a basket?",tumblr_n8pom6qgCR1tgl4z1o1_400,75583,0 8232,FRAMEQA7901,green,what is the color of the pants?,tumblr_nr5189zMVE1tewmvuo1_400,32777,2 8233,FRAMEQA30960,black,what is the color of the shirt?,tumblr_n8vcakoP9a1tx53tvo1_250,11589,2 8234,FRAMEQA9413,stairs,what do two men run up together laughing?,tumblr_ndjfgohCV31tl8x1eo2_r1_1280,90198,0 8235,FRAMEQA28660,black,what is the color of the top?,tumblr_ne2kfm8zXz1tjmmd9o1_250,5964,2 8236,FRAMEQA20491,three,how many leopards is prowling in their enclosure whilst being watched by spectators?,tumblr_nfysduIWKB1u029u8o1_400,37642,1 8237,FRAMEQA7563,white,what is the color of the t-shirt?,tumblr_n9ao7dJQgG1ti0ll0o1_250,982,2 8238,FRAMEQA33406,car,what is leaking sparks on the track?,tumblr_nq4d7kPtlq1unyhx2o1_400,76971,0 8239,FRAMEQA52375,red,what is the color of the hair?,tumblr_nf5hyiSE5K1tj2to3o1_250,43705,2 8240,FRAMEQA22315,puppy,what pushes itself backwards across a slippery floor?,tumblr_nbt9t3GNcv1tdjuqvo1_400,32039,0 8241,FRAMEQA15167,guitar,what is the young man in a black t-shirt playing?,tumblr_na0lvzNzJJ1s7vtgpo1_400,1745,0 8242,FRAMEQA11500,boat,where does the person fall out and into the water?,tumblr_nbg0gxyGxh1tlqcx1o1_500,69880,3 8243,FRAMEQA49076,two,how many stuffed llamas is the man holding?,tumblr_nqvj8l4kcT1uq7zwjo1_400,63226,1 8244,FRAMEQA35595,white,what is the color of the outfit?,tumblr_nrkkxw1MIR1uxae7wo1_500,34271,2 8245,FRAMEQA12790,drums,what is the man playing?,tumblr_nk4hvwnbLO1timjsqo1_400,95266,0 8246,FRAMEQA18710,blue,what is the color of the hair?,tumblr_n9ah6nPGJQ1snpf7yo1_500,73854,2 8247,FRAMEQA36080,cat,what chews intently on an object with its eyes closed?,tumblr_nd59g8nitC1qjpmwio1_500,43150,0 8248,FRAMEQA23541,one,how many soccer team is keeping the ball from another soccer team?,tumblr_nc20yxAKBE1tx5rbeo1_400,87101,1 8249,FRAMEQA38610,room,where is the television playing?,tumblr_na6wajqX0X1tukn5ao1_400,98091,3 8250,FRAMEQA5039,cub,"what does the polar bear do not notice a black bird , but does?",tumblr_npblti8bU91use8l1o1_400,82811,0 8251,FRAMEQA11277,brown,what is the color of the hair?,tumblr_nfkhbfCrw41s7s5bwo1_500,90483,2 8252,FRAMEQA41207,cat,what is walking and falls off the box?,tumblr_ncg8b02Uyb1tmxc86o1_400,36585,0 8253,FRAMEQA11281,strips,what is the man wearing on his forehead?,tumblr_nb5u58Wfdx1rpqzspo1_400,65712,0 8254,FRAMEQA30213,two,how many people are walking arm in arm while singing?,tumblr_n8q6dzeRYu1tgwv6ro1_500,90864,1 8255,FRAMEQA11364,jeep,what is driving on top of the water?,tumblr_npf5kbV03n1u1ogm0o1_400,32114,0 8256,FRAMEQA32205,two,how many people are waving at people and walking away?,tumblr_noy2z9dQI01u1uykho1_400,82363,1 8257,FRAMEQA43993,cat,"what is sitting on the stool , when the toaster pops out toast the cat gets scared and jumps off?",tumblr_n8urd6PMiY1tgkdkbo1_400,74900,0 8258,FRAMEQA3741,hat,what is the man wearing and sitting next to a girl that is wearing a hat?,tumblr_nfmio5gcZb1u4uwvmo1_400,57274,0 8259,FRAMEQA44758,black,what is the color of the outfit?,tumblr_ne2kfm8zXz1tjmmd9o1_250,5964,2 8260,FRAMEQA44694,brown,what is the color of the hair?,tumblr_n7x16nwNKb1rdv08ro1_250,6955,2 8261,FRAMEQA43928,makeup,what does the woman get applied to her face?,tumblr_na5e7cqw5L1r7w2obo1_r3_500,52541,0 8262,FRAMEQA2743,white,what is the color of the puppy?,tumblr_n9sg39oVrZ1qedx60o1_500,98928,2 8263,FRAMEQA31735,dog,"what does the person touch a dogs butt , then turns around crazy?",tumblr_nhblwqSCgu1u4i3qco1_400,9324,0 8264,FRAMEQA21726,house,where does the dog on a skateboard cross the floor?,tumblr_nfas85i8vi1qz4c39o1_400,5589,3 8265,FRAMEQA6289,car,what is the blonde haired woman screaming and driving?,tumblr_nrcq3zetc31r2v01io1_400,15835,0 8266,FRAMEQA13311,clothes,what does two women leave and gets?,tumblr_nqr8fvbChQ1u0ql9oo1_500,58093,0 8267,FRAMEQA24804,two,how many men are hugging each other on a field?,tumblr_n8rlcclxUX1tgyi5mo1_250,43710,1 8268,FRAMEQA21365,room,where is the woman smoking?,tumblr_n8th9v3J0Q1sawu1vo1_500,100784,3 8269,FRAMEQA10860,black,what is the color of the man?,tumblr_nbng5xnLx61thjdhso1_1280,40403,2 8270,FRAMEQA45491,grass,what are people walking along while looking tired?,tumblr_ndrnfybuPl1rl8hy1o1_400,65009,0 8271,FRAMEQA38793,pool,where is the woman smiling whilst looking up?,tumblr_n90y95G51t1twipgeo1_400,8927,3 8272,FRAMEQA38848,mouse,what taps its arms as it drinks from a small bottle?,tumblr_not9kcZnFJ1uu6jgto1_400,20368,0 8273,FRAMEQA21230,piano,what is the man playing and singing on stage?,tumblr_n9sune2zw21s8thapo1_500,12176,0 8274,FRAMEQA36865,goldfish,what swims around the hand in a tank?,tumblr_no4czdLnmS1tnjsjuo1_1280,14627,0 8275,FRAMEQA18293,chicken,what is the boy with dark hair eating?,tumblr_ng9rxraygM1u1bqbwo1_250,3076,0 8276,FRAMEQA32613,door,what is the woman opening with a doughnut in her mouth?,tumblr_njp9i28V8y1tuiwglo1_500,54702,0 8277,FRAMEQA9403,two,how many women are smiling?,tumblr_nfwsbaUqdU1tkqyuyo1_400,29743,1 8278,FRAMEQA28594,tail,what is moving on top of a cat 's head?,tumblr_n8kiswJ7Ht1slb5kno1_500,71356,0 8279,FRAMEQA20006,dog,what is eating its dog food?,tumblr_n8uqen1tDV1sfmhxao1_400,63448,0 8280,FRAMEQA37268,black,what is the color of the man?,tumblr_ndh1t5XuKp1sht3fmo1_400,57336,2 8281,FRAMEQA20577,black,what is the color of the dress?,tumblr_nd05j8CSms1txvftwo1_250,23360,2 8282,FRAMEQA7889,brown,what is the color of the hair?,tumblr_nc28qjehJz1rs1rw7o1_500,43188,2 8283,FRAMEQA7580,shirt,what is the young man explaining to the man in front of him?,tumblr_nfl3gwHGEz1u4tfo6o1_500,71752,0 8284,FRAMEQA40095,bull,what charges and rams the man and a woman?,tumblr_nc8g0k6Rac1tatohao1_400,41038,0 8285,FRAMEQA26962,black,what is the color of the hat?,tumblr_n9euhcHVsj1t1a1dlo1_250,13359,2 8286,FRAMEQA5493,elevator,where are three people standing?,tumblr_ncn6fbUX131t5lviko1_250,49614,3 8287,FRAMEQA20773,two,how many penguins is walking along the ice and one slips and falls?,tumblr_ng46uo55Mx1slj978o1_400,50029,1 8288,FRAMEQA20901,one,how many person places the bracelet on the others hand?,tumblr_njvitlXC2D1u7xqnso1_250,51903,1 8289,FRAMEQA5215,blue,what is the color of the dress?,tumblr_nr8qs2rHGr1u5g8bjo1_400,1222,2 8290,FRAMEQA47238,dog,what is the woman kissing?,tumblr_nba91bUWgD1qiuxgpo1_400,30370,0 8291,FRAMEQA16795,bag,what is the guy receiving and he drops it down?,tumblr_ncr85pdqTI1sht3fmo1_250,46733,0 8292,FRAMEQA44879,two,how many people are looking at each other and talking?,tumblr_n9fgg3pFQC1tin09xo1_250,51435,1 8293,FRAMEQA9173,two,how many other people is the man pulling on a moving dolly?,tumblr_nkq6tnFoXV1rif4nho1_400,24121,1 8294,FRAMEQA19926,room,where is the guy with white shirt moving the eyes?,tumblr_nkyy7b3e731tt9zxqo1_500,73229,3 8295,FRAMEQA19729,yellow,what is the color of the hair?,tumblr_nqh1cwf6xD1rimengo1_400,78809,2 8296,FRAMEQA3514,guitar,what is the young man wearing a plaid shirt plays?,tumblr_ncdfc4Icvr1r1ga5qo1_400,56612,0 8297,FRAMEQA19092,red,what is the color of the girl?,tumblr_nb1drkOtbS1ruj6z8o1_500,60497,2 8298,FRAMEQA2278,black,what is the color of the clothes?,tumblr_nfokkyTDI41qf3bxio1_500,78723,2 8299,FRAMEQA32606,hamster,what is eating the carrot?,tumblr_n985jc2Wyr1sj2zt0o1_400,33712,0 8300,FRAMEQA16956,one,how many man is leaning over another man who is looking over?,tumblr_nbcirl0aQW1tad1t8o1_250,8072,1 8301,FRAMEQA31555,white,what is the color of the shirt?,tumblr_nglax486gU1u3jifro1_250,47089,2 8302,FRAMEQA44122,dog,what is lag playing with a ball on a couch?,tumblr_njyb2pcEGb1tlmquvo1_400,83456,0 8303,FRAMEQA2454,cat,what is the girl holding and kisses him?,tumblr_nk37choqIF1uos7q4o1_400,30118,0 8304,FRAMEQA19157,three,how many men are sitting down having the discussion?,tumblr_n8yg6ihGk61rdmmjro1_500,76002,1 8305,FRAMEQA19569,sedan,what does the drift in a circle?,tumblr_n91l33EgZY1rpqn0wo1_500,73230,0 8306,FRAMEQA43977,clothing,what does the woman show off in front of a mirror?,tumblr_nk6t6jg9tD1u9jburo1_500,36130,0 8307,FRAMEQA31369,black,what is the color of the dress?,tumblr_npsvyvbQxZ1un9274o1_400,3926,2 8308,FRAMEQA3300,white,what is the color of the room?,tumblr_ndb1a34KjI1slpywlo1_250,47009,2 8309,FRAMEQA52306,cup,what is the woman with an odd face holding up?,tumblr_ndrzq15FyY1s6qyp9o1_500,86885,0 8310,FRAMEQA24272,headphones,what is the boy using a computer and wearing?,tumblr_ne4kuuZpVa1rlngqxo1_400,62540,0 8311,FRAMEQA19139,octopus,what is emerging from coral in the sea?,tumblr_nn8bxrdwTP1sht3fmo1_250,26655,0 8312,FRAMEQA14078,horse,what is running laps around its trainer?,tumblr_n8zd1nDo0B1rwgxlqo1_500,70645,0 8313,FRAMEQA9489,black,what is the color of the eyeliner?,tumblr_nh07lr7LIE1tqm4yoo1_500,77165,2 8314,FRAMEQA140,pocket,where is the man standing and trying to stick his hand?,tumblr_n8rm9gnAtC1twwmr1o1_400,18440,3 8315,FRAMEQA2427,white,what is the color of the car?,tumblr_nkevr8kpEw1u8uroco1_400,73345,2 8316,FRAMEQA46436,hat,what is the girl wearing and smiling at someone?,tumblr_nfnmsjSHVf1qls6cvo1_r1_500,91421,0 8317,FRAMEQA44033,green,what is the color of the shirt?,tumblr_nav2o4Ew2D1sh75jso1_250,3977,2 8318,FRAMEQA9514,black,what is the color of the shirt?,tumblr_nhqe05boZB1shac5fo1_500,67428,2 8319,FRAMEQA534,car,where do four men ride?,tumblr_nrcbdvtDHl1u3n11qo1_500,57651,3 8320,FRAMEQA16835,blue,what is the color of the curtains?,tumblr_nkn6cr8jai1u7y8p9o1_400,54037,2 8321,FRAMEQA3844,red,what is the color of the dress?,tumblr_nrdonp8pqR1uzuq8ro1_250,78116,2 8322,FRAMEQA15424,pole,what does the man jump off?,tumblr_nff2ppIqf61sk0i2mo1_400,37596,0 8323,FRAMEQA2139,dog,what is laying on blankets chewing on something?,tumblr_nl3vj0whpR1s93eg4o1_400,38217,0 8324,FRAMEQA44459,round,what are the three men moving and doing funny dance?,tumblr_nc5jq9YHHz1twj3jvo1_500,61007,0 8325,FRAMEQA6843,two,how many girls with long hair are hugging?,tumblr_n9larxUxd71sofft2o1_400,79022,1 8326,FRAMEQA7115,two,how many people are slowly climbing the set of stairs?,tumblr_njoz5kE1ov1u5n6bno1_250,75192,1 8327,FRAMEQA14544,two,how many men are laughing together?,tumblr_ncaw26Ufyo1s77tqjo1_500,61327,1 8328,FRAMEQA52431,black,what is the color of the guy?,tumblr_nd7al0WxSd1temb16o1_500,97779,2 8329,FRAMEQA11361,two,how many men danced on stage in front of a crowd of people?,tumblr_nbrfjpkE8f1qbt20xo1_250,43640,1 8330,FRAMEQA15448,pizza,what is the person slicing with a pizza cutter?,tumblr_nrkqn8quHM1rlpke5o1_250,43955,0 8331,FRAMEQA32663,room,where is the girl moving her hips?,tumblr_nfwmuacJ7m1tegtwko1_400,17698,3 8332,FRAMEQA28935,two,how many people are standing next to each other dancing?,tumblr_nbqkbsQwOJ1qfcoxlo1_500,85720,1 8333,FRAMEQA10316,two,how many construction workers are getting hurt when they try to do a trick?,tumblr_nbk98p7g3J1slj978o1_400,44732,1 8334,FRAMEQA49938,cat,what starts to moving his head from one side to other?,tumblr_nbud39wvWd1r3uz8ro1_400,50653,0 8335,FRAMEQA39105,planet,what is flying behind the girl that is blowing a bubble with her gum?,tumblr_nd6tl5MFnq1u110syo1_500,92964,0 8336,FRAMEQA11764,white,what is the color of the guy?,tumblr_ndhet7vUVd1t0m49go1_500,73864,2 8337,FRAMEQA52497,cigarette,what is the young man with blonde hair smoking?,tumblr_n9aq10meZT1rufn8zo1_500,52080,0 8338,FRAMEQA13640,bed,where are two children lying and another child is moving her head really fast?,tumblr_nk6ja06aQx1snwydqo1_400,28917,3 8339,FRAMEQA8009,cat,what sniffs and swats at the strawberry?,tumblr_npozmb4kvw1uy2r7ro1_400,37250,0 8340,FRAMEQA20835,bird,what goes into the shop and steals some food?,tumblr_n9r2p3I67n1txmq72o1_250,23722,0 8341,FRAMEQA33200,black,what is the color of the hair?,tumblr_njwz48IDxF1u8dfc7o1_250,11412,2 8342,FRAMEQA52138,two,how many young men dance while several others sit around watching?,tumblr_nbwj61hEvs1ssxspno1_500,10278,1 8343,FRAMEQA30143,car,what is the man driving and looking to the right?,tumblr_njzrcyqAqu1u89ejyo1_500,73326,0 8344,FRAMEQA29179,white,what is the color of the shirt?,tumblr_nagou6rOfU1t2piwdo1_400,59198,2 8345,FRAMEQA36034,two,how many men are shaking hands while sitting at a table?,tumblr_ndhcudXfFK1r9ihkro1_500,89213,1 8346,FRAMEQA30977,two,how many members of a boy band are singing as they walk across the stage?,tumblr_nh7kldLCpB1sdbrm9o1_250,9339,1 8347,FRAMEQA19083,two,how many women are jogging outdoors side by side?,tumblr_ncecowzOHz1tky8vdo1_400,76171,1 8348,FRAMEQA35861,brown,what is the color of the hair?,tumblr_nh2les6Lt11t5ojzdo1_250,81335,2 8349,FRAMEQA34754,red,what is the color of the jumpsuit?,tumblr_nhszflfDwb1u1rggjo1_400,26159,2 8350,FRAMEQA48913,drill,what is the man in his underwear holding while running on a treadmill?,tumblr_n9yqv21JEu1tc3z07o1_400,62316,0 8351,FRAMEQA21897,rope,what does the man run and throws into the air?,tumblr_n9w54dvKdg1tfn460o1_400,98240,0 8352,FRAMEQA20808,two,how many bicycles is the young man performing stunts using?,tumblr_nes9azrasQ1tdmffyo1_400,52016,1 8353,FRAMEQA18393,two,how many men are hugging as one is crying?,tumblr_nfrlins4gC1qaucgno1_250,21892,1 8354,FRAMEQA13672,orange,what is the color of the cat?,tumblr_ng2ar7n3F71u4v3ypo1_400,22058,2 8355,FRAMEQA30891,cars,"what are driving around the track , two of them spinning around?",tumblr_nr0uk6lrdI1raliteo1_400,79250,0 8356,FRAMEQA33046,shirt,what is the man making up with the hands?,tumblr_ncj45x0Ant1sn5krco1_500,76769,0 8357,FRAMEQA24736,two,how many woman are on the stage accepting an award?,tumblr_nisrmaAbbk1sht3fmo1_250,73029,1 8358,FRAMEQA17981,white,what is the color of the kitten?,tumblr_nhomuemFfD1u684yco1_250,13612,2 8359,FRAMEQA23814,two,how many male athletes are smiling and laughing?,tumblr_nk1et3jphj1rmskgro1_250,39535,1 8360,FRAMEQA10453,purple,what is the color of the bandanna?,tumblr_ngw1gwZNRY1qgivvbo1_500,69883,2 8361,FRAMEQA1271,baboon,what rubs the computer keyboard and puts his hands on his head?,tumblr_nq3l4pzkwU1sht3fmo1_400,57578,0 8362,FRAMEQA47680,two,how many people are pushing on each other 's faces?,tumblr_nfaqctqMXx1u28t0lo1_250,5364,1 8363,FRAMEQA12733,mirror,what is the man punching and breaking?,tumblr_ngwg7sysNW1ti9y0go1_400,72848,0 8364,FRAMEQA18799,turns,what are four males taking talking into a microphone?,tumblr_nkj5yl01mk1thirzao1_400,62405,0 8365,FRAMEQA34072,kitten,what does the man hold?,tumblr_nq3jron62A1tyncywo1_400,16529,0 8366,FRAMEQA40211,white,what is the color of the shirt?,tumblr_nes7uvKrwA1r3liqro1_500,90527,2 8367,FRAMEQA52729,two,how many men in army uniforms are walking through a field?,tumblr_n8gvhaY7Ab1td876vo1_250,47429,1 8368,FRAMEQA2174,bear,what dances in the woods and falls over?,tumblr_njb55e5csY1slwpo8o1_250,40890,0 8369,FRAMEQA12061,two,how many people are sledding down the hill and fall off?,tumblr_nl33fuCCKK1slj978o1_400,84963,1 8370,FRAMEQA855,one,how many man is standing?,tumblr_nc7ew9nZQK1tgyh35o1_400,64912,1 8371,FRAMEQA50190,white,what is the color of the guy?,tumblr_nbwh5vMeEy1tbdpulo1_400,24735,2 8372,FRAMEQA52910,black,what is the color of the wings?,tumblr_nkap9g1Iud1u7nkc5o1_250,8637,2 8373,FRAMEQA37800,flowers,"what is the boy carrying ,?",tumblr_ng47s11WJM1tg9gzmo1_250,6727,0 8374,FRAMEQA24598,guitar,what is the man holding and moving his head around?,tumblr_n9ca9mmyaU1rplluro1_400,44721,0 8375,FRAMEQA38080,white,what is the color of the balloon?,tumblr_nkjhnhmF4l1tmxcjqo1_500,94127,2 8376,FRAMEQA5241,black,what is the color of the skirt?,tumblr_niusi5DiBN1r027rto1_250,820,2 8377,FRAMEQA11306,guitar,what is the man holding and bobbing his head?,tumblr_nhv8yzFmkd1u3l54uo1_400,63798,0 8378,FRAMEQA14230,shirt,what does the game show host adjust?,tumblr_nnunhrJl321u4f3j0o1_540,58346,0 8379,FRAMEQA48058,bath,where is the cap rubbing somebody s leg?,tumblr_ngqi9pDqn61r3fht5o1_250,26058,3 8380,FRAMEQA46704,white,what is the color of the people?,tumblr_nbdij9TJS41swv315o1_400,38898,2 8381,FRAMEQA5136,dog,what is sticking its head out the window of a car?,tumblr_nrjtpivMv91s71nvbo1_400,17143,0 8382,FRAMEQA26438,yellow,what is the color of the vehicle?,tumblr_ng03s2BcRY1u25ovvo1_400,63607,2 8383,FRAMEQA23253,glass,what is the man wearing a snorkel in the water holds?,tumblr_nc4qhhSLmI1rxcaido1_250,43667,0 8384,FRAMEQA29843,two,how many motorcyclists does this show driving down a road when one of them flips head over heels?,tumblr_ne2vicp4Xt1ti2fvro1_400,53169,1 8385,FRAMEQA48612,drink,what is the blonde haired man sipping through a straw?,tumblr_nbhrvfl1oT1s92jogo1_500,94440,0 8386,FRAMEQA47386,chairs,what is the singer with microphone in his hand dancing?,tumblr_ngao4qDAtx1u5slc8o1_250,3683,0 8387,FRAMEQA16202,one,how many man jump kicks another man in a grassy area?,tumblr_no4v9wzhum1sxt5qxo1_400,66777,1 8388,FRAMEQA19514,horse,what are the guy and a woman riding?,tumblr_nh6ypurpto1sug4g8o1_500,97696,0 8389,FRAMEQA991,two,how many people are kissing while the wind is blowing their hair?,tumblr_ncgv1evYKH1r81i6do1_250,90496,1 8390,FRAMEQA16677,two,how many women are sitting down and kissing each other?,tumblr_nkk749BdeM1qcri9wo1_1280,99569,1 8391,FRAMEQA33156,two,how many men are on stage singing together?,tumblr_na74lx7PzG1qdap0qo1_500,40816,1 8392,FRAMEQA37728,four,how many girls is wearing black shirts are holding up their arms?,tumblr_nad8wtQS6K1qbz70so1_500,48702,1 8393,FRAMEQA40831,two,how many bikes flip over on the side of the road?,tumblr_na32wo3UE01r6x1a5o1_500,46207,1 8394,FRAMEQA10230,hamster,what is standing on the grass and chewing it?,tumblr_ncbbj6piQ91qkplr2o1_250,2118,0 8395,FRAMEQA17113,room,where is the young man approaching a woman?,tumblr_nkvc4j7YLk1u8ypyuo1_400,34753,3 8396,FRAMEQA33991,cat,what watches as something flies around in the room?,tumblr_ngbssiZkk81tk2ngvo1_400,55993,0 8397,FRAMEQA23098,black,what is the color of the jacket?,tumblr_nb70faMADo1tgwlf5o1_250,20159,2 8398,FRAMEQA15244,black,what is the color of the car?,tumblr_nnkqmlsRPP1uoyfr8o1_400,64657,2 8399,FRAMEQA38108,black,what is the color of the hats?,tumblr_nc9q74s0ti1tgcx82o1_400,73206,2 8400,FRAMEQA27033,cat,what tickles an iguana 's tail while the iguana is eating?,tumblr_neygedcDOt1tkhxdko1_400,46613,0 8401,FRAMEQA31370,hat,what is the boy flipping around from side to side?,tumblr_n8x0x7C4AL1spu0zro1_400,86909,0 8402,FRAMEQA9378,machine,what is filling with smoke and there is a flame present?,tumblr_np1oltv5F41te6s3so1_250,8455,0 8403,FRAMEQA49265,purple,what is the color of the jacket?,tumblr_ne899a7xR51tkmovro1_250,7004,2 8404,FRAMEQA44022,guitar,what is the man in the black shirt playing with his tongue out?,tumblr_nevrd9FOp21tf406do1_400,78987,0 8405,FRAMEQA43403,white,what is the color of the outfits?,tumblr_nda84dI4On1t0ojyvo1_500,90101,2 8406,FRAMEQA39848,two,how many members of a band shake their hair back and forth?,tumblr_ngjtdnuRPI1ttvxmgo1_250,89414,1 8407,FRAMEQA3376,black,what is the color of the hat?,tumblr_negqc72Vi91tk3suwo1_500,74186,2 8408,FRAMEQA18832,float,"what does the student in a class , make in the air with a wand?",tumblr_njxnhePk1F1qeaeqco1_250,49050,0 8409,FRAMEQA42933,one,how many man hits another and knocks him down and then hits him again?,tumblr_nakmlyurfi1t0cxw9o1_400,87864,1 8410,FRAMEQA50404,three,how many people are speaking to each other?,tumblr_nafggj6YFG1sinpl8o1_400,28298,1 8411,FRAMEQA51390,jewelry,what is the hand moving on a table?,tumblr_nit83eq5sB1u9se2do1_400,16211,0 8412,FRAMEQA5772,white,what is the color of the t-shirt?,tumblr_nj9wv2JLhU1tl5qj2o1_500,49480,2 8413,FRAMEQA19000,room,where are two girls talking sitting?,tumblr_nhxq4ucmdv1tg5klqo1_250,16910,3 8414,FRAMEQA35778,car,what is in the lead as it turns a corner?,tumblr_nd91nlEKaI1tx8mn0o1_400,55564,0 8415,FRAMEQA33508,two,how many teams play soccer on a soccer field?,tumblr_n9i8lnSiXR1rt0zdlo1_500,80922,1 8416,FRAMEQA21722,fabric,what is the man ripping angrily in a white room?,tumblr_ne9v07TxUL1sjcvc1o1_250,84536,0 8417,FRAMEQA37403,dog,what is this giving a man a high five with his paws?,tumblr_nqt05iwece1te94myo1_400,21136,0 8418,FRAMEQA23248,cigarette,what is the man wearing a black jacket is smoking?,tumblr_ng8cxoLAlN1ret264o1_250,36511,0 8419,FRAMEQA13777,black,what is the color of the hat?,tumblr_n9l8ofOPZN1qz5sfko1_1280,46604,2 8420,FRAMEQA42392,black,what is the color of the umbrella?,tumblr_ndalydtPUu1u12owmo1_500,87212,2 8421,FRAMEQA37862,red,what is the color of the shirt?,tumblr_ne2eksOOna1smdw0io1_400,28461,2 8422,FRAMEQA22005,white,what is the color of the top?,tumblr_nk4yarSAUP1u2j0yeo1_400,82820,2 8423,FRAMEQA47288,tail,what is the dog chasing?,tumblr_na29ckRUG81tso4bpo1_250,11168,0 8424,FRAMEQA32272,blue,what is the color of the shorts?,tumblr_ncw0wcn5Ew1tijnqno1_500,59414,2 8425,FRAMEQA7436,coins,what is the man tossing into a well as his companion changes?,tumblr_nb7yy71XkD1tkpzw0o1_250,24105,0 8426,FRAMEQA32944,two,how many woman are dancing and waving their hands in the air?,tumblr_ne2lv2FE0B1ql2wy7o1_400,7495,1 8427,FRAMEQA10636,bed,where is the person lying while people are clapping?,tumblr_n9zn52IWcy1qcohbro1_400,50343,3 8428,FRAMEQA43206,white,what is the color of the dress?,tumblr_njvhzh2Nrp1u2bd00o1_400,32001,2 8429,FRAMEQA13681,black,what is the color of the neck?,tumblr_nht68zHYa61u7ukg9o1_500,7020,2 8430,FRAMEQA37019,three,how many fingers is the person wearing a red jacket and sunglasses raises?,tumblr_nbgn5rXBcf1tymzl2o1_400,65752,1 8431,FRAMEQA45841,black,what is the color of the car?,tumblr_nhpp9aIKCk1tuoc50o1_400,39490,2 8432,FRAMEQA48186,motorcycle,what crashes during the race on a track?,tumblr_nofz2co9ZD1unyhx2o1_400,78206,0 8433,FRAMEQA6792,bicycle,what is the man riding and doing tricks?,tumblr_n9wgrdONLC1st14noo1_400,31020,0 8434,FRAMEQA32295,two,how many girls make faces while another girl talks?,tumblr_n9908v7o3G1t4ar34o1_250,786,1 8435,FRAMEQA35484,gun,what is the man laughing and holding?,tumblr_n9wf1mRoOD1tbv8ipo1_500,52566,0 8436,FRAMEQA9091,black,what is the color of the hair?,tumblr_n9ja7mNHW31r48o7go4_250,6592,2 8437,FRAMEQA46206,gray,what is the color of the shirt?,tumblr_ndram4msIo1qlzevso1_500,98737,2 8438,FRAMEQA33072,two,how many man are riding public transportation and eating?,tumblr_nbtlrnLJyT1t1szv2o1_500,70108,1 8439,FRAMEQA42618,white,what is the color of the woman?,tumblr_ncc1ycDVbj1rijrceo1_500,88715,2 8440,FRAMEQA22836,green,what is the color of the shirt?,tumblr_np6i87hU3N1u2hb9ko1_400,8828,2 8441,FRAMEQA28151,two,how many cupcakes is the woman holding while looking from one to the other?,tumblr_npbu1izdzO1urprh7o1_400,41674,1 8442,FRAMEQA39987,black,what is the color of the clothing?,tumblr_nkq03zqHC61un0bvgo1_400,87394,2 8443,FRAMEQA21566,black,what is the color of the jacket?,tumblr_nbaz4cGyXC1r324mgo1_500,89434,2 8444,FRAMEQA35188,black,what is the color of the hair?,tumblr_na34svB1vd1sfguf8o1_400,27448,2 8445,FRAMEQA38696,handset,what is the guy putting on his ears?,tumblr_nexvlqqh1j1tsz1ogo1_250,42723,0 8446,FRAMEQA56,white,what is the color of the dress?,tumblr_nfd11g9m741tm2ntoo1_500,67219,2 8447,FRAMEQA6217,two,how many men are sitting next to each other and wearing head sets?,tumblr_nfjubkFVUp1sorauco1_400,94513,1 8448,FRAMEQA41660,two,how many men are sat on the red sofa wearing headphones?,tumblr_n8x0vtknbl1rhmx5uo1_400,30378,1 8449,FRAMEQA49684,black,what is the color of the hair?,tumblr_n9r5ygni5T1s7z48ho1_500,26043,2 8450,FRAMEQA18617,cap,what is talking and smiling?,tumblr_na7wylszqY1riowufo1_250,2893,0 8451,FRAMEQA49565,white,what is the color of the mouse?,tumblr_nkoj4fayWP1slj978o1_400,38644,2 8452,FRAMEQA31731,three,how many girls is wearing black are dancing in front of white chairs?,tumblr_nk1owjaSEb1qgvgxbo1_250,3345,1 8453,FRAMEQA38838,chick,what is talking with someone?,tumblr_ne0llj1byG1u1ukj4o1_500,34940,0 8454,FRAMEQA45097,bathtub,where is the man sitting and hollering for someone?,tumblr_nglxv67MiY1qaj27do1_500,79557,3 8455,FRAMEQA48663,car,what is driving around the crescent shaped road?,tumblr_ne4xuxJjdk1sfxnzso1_250,82976,0 8456,FRAMEQA25587,two,how many referees are in each others faces acting as if they are going to kiss?,tumblr_n8q9ejQLX81ratic8o1_500,87243,1 8457,FRAMEQA14516,jets,what is the dog receiving in his mouth?,tumblr_nbsdx5f0Gm1rb71dxo1_400,69966,0 8458,FRAMEQA5292,black,what is the color of the leather?,tumblr_ne2my0wqMO1tmg8yyo1_500,48460,2 8459,FRAMEQA7520,dog,what dressed in the costume?,tumblr_nerwi2g6db1stn2h6o1_500,36811,0 8460,FRAMEQA5362,cigarette,what does the man hold and lights?,tumblr_nkpk1mOGIM1u2ddo1o1_400,77514,0 8461,FRAMEQA26589,two,how many women hold hands and walk down the runway?,tumblr_ngfwivvI3v1rmxyxeo1_250,45678,1 8462,FRAMEQA9615,pool,where are people playing and swimming?,tumblr_nfgexoQLGs1tb6iobo1_400,52669,3 8463,FRAMEQA22691,brown,what is the color of the outfit?,tumblr_nojzfeq9tU1rygrpxo1_400,60840,2 8464,FRAMEQA40413,two,how many young men are playing guitars and singing on stage?,tumblr_na7mrc0HwL1qdauj7o1_400,36894,1 8465,FRAMEQA14166,white,what is the color of the man?,tumblr_nfkx8qNpFC1snecwlo1_250,9410,2 8466,FRAMEQA980,two,how many woman are dancing the tango together on a stage?,tumblr_nf32wfId1W1u1kbnho1_250,19038,1 8467,FRAMEQA32446,black,what is the color of the hair?,tumblr_np4rw2ejxf1qbzfa1o1_500,45324,2 8468,FRAMEQA2685,black,what is the color of the dress?,tumblr_ncgl6t3yLm1tqwtb6o1_500,99002,2 8469,FRAMEQA6759,cat,what is jumping onto the door?,tumblr_nkyan4eWHz1tmnntwo1_400,26777,0 8470,FRAMEQA24291,blue,what is the color of the sweater?,tumblr_n9cbjlJbp01tf6zmyo1_250,1305,2 8471,FRAMEQA1654,two,how many men in dark shirts are sitting beside each other?,tumblr_nib7t0miDp1rscw8vo1_400,22500,1 8472,FRAMEQA8529,white,what is the color of the girl?,tumblr_naj0iuFdz91qhoso4o1_250,16855,2 8473,FRAMEQA26553,white,what is the color of the jacket?,tumblr_ng8cq0OE6r1u2z3v8o3_250,2254,2 8474,FRAMEQA31652,cat,what is trying to get the toilet paper roll off of its head?,tumblr_ndk9uvBSzG1rnjm0co1_250,69793,0 8475,FRAMEQA34267,black,what is the color of the fingernails?,tumblr_ncbukbwrbP1tc6jy7o1_250,11226,2 8476,FRAMEQA5811,race,what is going on when one of the cars runs off the track and wrecks?,tumblr_n9di4xF53b1r0dpzwo1_400,81235,0 8477,FRAMEQA49914,white,what is the color of the car?,tumblr_nelzs6i5ro1u25ovvo1_400,63645,2 8478,FRAMEQA45886,piece,what does the man roll across his cheek?,tumblr_noevz1ygRX1s59on0o1_540,100982,0 8479,FRAMEQA23301,black,what is the color of the outfit?,tumblr_nkkaabSLxV1rzui38o1_400,15437,2 8480,FRAMEQA26031,cat,what licks the pipe opening before stopping?,tumblr_nrhdzmfYSE1s2pll9o1_250,7659,0 8481,FRAMEQA4208,goat,what jumps over the back of a man that is sitting down?,tumblr_ndn0rnXruV1tdmffyo1_250,31047,0 8482,FRAMEQA40414,bulldog,what is standing trying to catch water in his month?,tumblr_nbsdx5f0Gm1rb71dxo1_400,69966,0 8483,FRAMEQA51827,blue,what is the color of the car?,tumblr_nkv63mKCzc1ttvffso1_400,58080,2 8484,FRAMEQA2311,jacket,what does the man adjust while walking?,tumblr_ncw1z6JhA81u0ycqbo1_400,35831,0 8485,FRAMEQA21309,penguin,what follows another in the water then turns around suddenly?,tumblr_nqdnyswOsw1qh9fn6o1_400,46476,0 8486,FRAMEQA9419,door,what does the woman close?,tumblr_nda4kvB8V61tyxziho1_400,28707,0 8487,FRAMEQA40022,two,how many men stare at each other and walk in circles?,tumblr_n9dkn0IQug1sl89nwo1_400,25606,1 8488,FRAMEQA20925,cat,what runs through the tunnel and knocks over bowling pins?,tumblr_n8sopfHH201tbn1tto1_400,68160,0 8489,FRAMEQA31145,car,where is the person sitting and looking at something?,tumblr_ndrod1dd4w1thbkl7o1_500,96496,3 8490,FRAMEQA27394,white,what is the color of the cup?,tumblr_nhne3zpLKF1u7r2dko1_500,66650,2 8491,FRAMEQA17628,violin,what is the man with long dark hair playing?,tumblr_nr4tczdT6l1r82feqo1_500,40213,0 8492,FRAMEQA27879,shirt,"what is the person with short , black hair wearing and raising their hand up to their mouth?",tumblr_n9o2c5bcu71ti2qwco1_400,91886,0 8493,FRAMEQA51121,red,what is the color of the hair?,tumblr_nann6fCDOH1t5w6wco1_400,28507,2 8494,FRAMEQA24469,sweatshirt,what is the girl with blonde hair wearing?,tumblr_nonm875Gqs1uw60sro1_400,10403,0 8495,FRAMEQA47507,two,how many men is this image of onstage sharing a cigarette?,tumblr_ndcdp9qa9l1raaknro1_500,56535,1 8496,FRAMEQA24412,mask,what is the person dancing around and wearing?,tumblr_n94en0BQte1r9m0e9o1_400,33476,0 8497,FRAMEQA15655,white,what is the color of the top?,tumblr_nezg2amqbT1qbhhz8o1_400,48696,2 8498,FRAMEQA26082,green,what is the color of the car?,tumblr_neend692r31u25ovvo1_400,63543,2 8499,FRAMEQA27896,two,how many people are walking down the street together?,tumblr_nrhj8xVwwc1rd12nio1_250,9297,1 8500,FRAMEQA37064,two,how many women are eating all together?,tumblr_nkri3vybCq1tnv2gbo1_400,57775,1 8501,FRAMEQA30163,door,what does the woman kick open angrily?,tumblr_nkjj7ntrNZ1ssgyoro1_250,2196,0 8502,FRAMEQA20882,blue,what is the color of the tape?,tumblr_ne3zxi2tnf1t7hjz2o1_400,71510,2 8503,FRAMEQA7210,blue,what is the color of the cellphone?,tumblr_n8wd5dRwq51tcifwoo1_250,13507,2 8504,FRAMEQA2461,two,how many people are playing ping pong?,tumblr_nfm255tiGL1tgvhzeo1_500,100755,1 8505,FRAMEQA43590,birds,what bob their head up and down?,tumblr_n9nxz6cyx11sjuzlno1_400,36176,0 8506,FRAMEQA6371,green,what is the color of the top?,tumblr_nj7wqtKiM31qfd4lio1_500,92309,2 8507,FRAMEQA31409,guitar,what are three men playing with grimace faces?,tumblr_nb89ryBmeP1rf6ax4o1_400,36254,0 8508,FRAMEQA36375,red,what is the color of the shirt?,tumblr_nr77u8gvg41tfn8dso1_400,79228,2 8509,FRAMEQA32598,black,what is the color of the man?,tumblr_nbrmv0Ds3t1tc97obo1_500,71433,2 8510,FRAMEQA7604,street,where is the blond haired lady with the white dress dancing?,tumblr_nfdhm4hgxd1qmjp5wo1_500,90886,3 8511,FRAMEQA40717,black,what is the color of the hair?,tumblr_nfees7tCzu1tm9kuyo1_500,88622,2 8512,FRAMEQA40323,cats,what are next to the door and the cat scratches the wall?,tumblr_n9xu4w1Lfq1tatohao1_400,40652,0 8513,FRAMEQA37353,bear,what is standing on his hind legs playing the trumpet?,tumblr_nd1lzaN9G21tp02izo1_400,25343,0 8514,FRAMEQA44453,black,what is the color of the shirt?,tumblr_nreossSjG51sj0m3lo1_400,52905,2 8515,FRAMEQA32165,two,how many people are on stage whipping their heads around?,tumblr_ngjtdnuRPI1ttvxmgo1_250,89414,1 8516,FRAMEQA24941,two,how many men walk through the hall singing and pointing?,tumblr_naepk5DoIi1snxvgpo1_400,75860,1 8517,FRAMEQA38631,yellow,what is the color of the hair?,tumblr_njyi6ks5eL1u7c8z0o1_250,22966,2 8518,FRAMEQA29775,penguins,what swim back and forth in the water?,tumblr_nqdnyswOsw1qh9fn6o1_400,46476,0 8519,FRAMEQA5769,knife,what is the woman holding in front of a man and he is looking scared?,tumblr_nqy6o19Yiy1uzovyco1_250,76591,0 8520,FRAMEQA26870,hat,what does the person with a turtle neck on push down?,tumblr_n9wtxekbRV1s6f9ago1_500,71312,0 8521,FRAMEQA25670,two,how many women with very long hair are talking?,tumblr_nimxqenJnW1ti7q8uo1_400,31621,1 8522,FRAMEQA15111,two,how many men are laughing at each other while one leans over?,tumblr_np3fv0Iucb1sxj25eo1_500,80507,1 8523,FRAMEQA28764,green,what is the color of the hair?,tumblr_ndx664QEL81scfb0oo1_250,19964,2 8524,FRAMEQA28104,workout,what is the woman doing?,tumblr_nptvh4iByf1uwr6ado1_400,66677,0 8525,FRAMEQA32299,gray,what is the color of the sweater?,tumblr_nimn2utX5C1u1c8a5o1_400,58079,2 8526,FRAMEQA43269,two,how many girls walk up to each other and embrace?,tumblr_na35maMaeX1r17l27o2_500,93211,1 8527,FRAMEQA42503,two,how many teams is this image of playing a game of basketball?,tumblr_nak2srv7T21tj4h5io1_400,49141,1 8528,FRAMEQA20044,white,what is the color of the shirt?,tumblr_nlfhjtMhtz1r0nzaoo1_250,19979,2 8529,FRAMEQA11434,white,what is the color of the boat?,tumblr_npf5kbV03n1u1ogm0o1_400,32114,2 8530,FRAMEQA35824,brown,what is the color of the man?,tumblr_nqujydUdLF1uyk370o1_250,7138,2 8531,FRAMEQA11201,white,what is the color of the shirt?,tumblr_nfd11g9m741tm2ntoo1_500,67219,2 8532,FRAMEQA41786,blue,what is the color of the tie?,tumblr_ng7vinKaZ21sht3fmo1_500,92531,2 8533,FRAMEQA19099,bear,what is the panda bear holding?,tumblr_nc5pmkrxPP1tm39w8o1_500,99498,0 8534,FRAMEQA26274,green,what is the color of the car?,tumblr_nbhh5j3uCN1tx8mn0o1_400,52689,2 8535,FRAMEQA40916,bat,what is the woman in pink holding?,tumblr_npu3dmmwdW1srz1ujo1_250,12627,0 8536,FRAMEQA35558,rounds,what is the girl in a bed jumping and doing in the air and falling?,tumblr_njo67z0f8B1u1pokno1_400,34164,0 8537,FRAMEQA6894,white,what is the color of the shirt?,tumblr_nfao6d193m1siv5bao1_500,49396,2 8538,FRAMEQA12890,two,how many people are hugging and jumping up and down?,tumblr_npr040dxJ71ri4vooo1_500,93627,1 8539,FRAMEQA25548,instrument,what is the guy sitting with other men and playing?,tumblr_nk91vx1EMO1su33lco1_400,63155,0 8540,FRAMEQA20310,glasses,what is the man in the black shirt adjusting?,tumblr_n94c9kD6eu1s0wfo1o1_250,40368,0 8541,FRAMEQA33248,mug,what does the girl kick off her foot towards another lady who dodges it?,tumblr_n9rm225ieV1tdmffyo1_250,19751,0 8542,FRAMEQA8424,cap,what is the young woman taking off and shaking out her hair?,tumblr_nd8oxuZ1tJ1tsbbfxo1_400,72549,0 8543,FRAMEQA29288,bench,where are the group of soccer players sitting?,tumblr_njs8xrhgZK1rqb3bqo1_500,88682,3 8544,FRAMEQA8295,hospital,where is the man in a suit dancing?,tumblr_n980h4IWmV1tht4eto1_250,40248,3 8545,FRAMEQA7617,white,what is the color of the man?,tumblr_nrjn90GHJr1tml5fdo1_540,87921,2 8546,FRAMEQA31885,black,what is the color of the jacket?,tumblr_npdlzlPd9o1sj2opgo1_250,14294,2 8547,FRAMEQA7320,black,what is the color of the hair?,tumblr_nflejfi8IS1qm5dtfo1_400,66409,2 8548,FRAMEQA7816,two,how many red panda cubs are playing with baby toys?,tumblr_nnzlhp8DpG1tgouwlo1_500,38497,1 8549,FRAMEQA17659,dog,what is trying to get the ball off of a couch?,tumblr_njyb2pcEGb1tlmquvo1_400,83456,0 8550,FRAMEQA22659,room,where was the hockey team celebrating?,tumblr_nnv4go7V7n1tscz4ro1_400,73292,3 8551,FRAMEQA44759,two,how many women put their glasses of drink together before drinking them?,tumblr_nqw1d49uwo1tb2ztwo1_250,80693,1 8552,FRAMEQA50259,red,what is the color of the outfit?,tumblr_neqlv0wUeb1rjhjgno1_250,21274,2 8553,FRAMEQA1485,stadium,where is the man taking a bow?,tumblr_njob4hlJui1swixd9o1_500,89188,3 8554,FRAMEQA31664,theater,where is the girl rolling down the carpeted aisle?,tumblr_ne4xrfzxOe1r164i9o1_500,60445,3 8555,FRAMEQA7613,dog,what is sitting in the steel vessel?,tumblr_n8vebwp6YB1sm9f7mo1_r2_400,64664,0 8556,FRAMEQA2901,bear,what walks through the portal then a woman turns to a family on a couch?,tumblr_nhys5kaxEu1u7u0ceo1_500,95988,0 8557,FRAMEQA49532,two,how many people are dancing in a club one of them is in an animal suit?,tumblr_nfvd8odLEF1tqgjq4o1_400,56466,1 8558,FRAMEQA31054,two,how many woman are sticking their tongues out?,tumblr_nkjnj8Qryj1r9w93fo1_500,28474,1 8559,FRAMEQA47463,guitar,what is the girl playing surrounded by fire?,tumblr_nkxr47G0SY1u3cb3fo2_400,61185,0 8560,FRAMEQA14513,five,how many girls perform on stage in matching dresses?,tumblr_ncqevkyJx61rlzi76o1_400,62267,1 8561,FRAMEQA12729,car,what is crashing into another car and spinning out on a race track?,tumblr_njtrbqjPLb1unyhx2o1_400,78277,0 8562,FRAMEQA3140,jacket,what does the young man adjust while looking in the mirror?,tumblr_nefradf58s1tu3ue8o1_500,4218,0 8563,FRAMEQA35284,white,what is the color of the dress?,tumblr_n8wwvpBAKf1r7vovuo1_500,92170,2 8564,FRAMEQA33161,two,how many people are stood talking to someone?,tumblr_n9uscu0MKn1tdve1no1_r1_500,68564,1 8565,FRAMEQA52982,brown,what is the color of the hair?,tumblr_nbe2gdERbf1tulpruo1_250,40249,2 8566,FRAMEQA31517,red,what is the color of the carpet?,tumblr_nklmwmP2fN1r26jdlo1_400,69501,2 8567,FRAMEQA2842,piece,where does snow fall off a white car?,tumblr_nkevr8kpEw1u8uroco1_400,73345,3 8568,FRAMEQA6579,red,what is the color of the car?,tumblr_ni06cdG8Wk1u639x2o1_500,71675,2 8569,FRAMEQA32592,sparklers,what is the woman holding in her hands out by the beach?,tumblr_nd91urmt3f1tmecz1o1_400,63566,0 8570,FRAMEQA43766,black,what is the color of the man?,tumblr_nnwp7qr9i91s119npo1_500,93705,2 8571,FRAMEQA39307,waterfall,what is running at the forest?,tumblr_nd99ocFDAo1tigub5o1_1280,93743,0 8572,FRAMEQA18090,two,how many men are sitting down and laughing?,tumblr_nagmqkc3IH1t24hnto1_400,77196,1 8573,FRAMEQA16485,two,how many guys ride in the back of a car together?,tumblr_nk4ymtPhaY1u2xw7qo1_500,66662,1 8574,FRAMEQA21466,black,what is the color of the one?,tumblr_naosc4D5wx1tf1g00o1_250,20217,2 8575,FRAMEQA2618,black,what is the color of the man?,tumblr_ng8l2jyH5C1tldu19o1_500,24419,2 8576,FRAMEQA40668,blue,what is the color of the shirt?,tumblr_nebsgpCK4u1u1j0hao1_400,42507,2 8577,FRAMEQA5625,two,how many girls are playing with the bottle?,tumblr_nkybgr8MIr1tmnntwo1_250,35718,1 8578,FRAMEQA31496,three,how many cats are playing in front of their owner?,tumblr_n9c03vG9GB1tyeuq0o1_250,27241,1 8579,FRAMEQA29238,two,how many women wrestlers are walking down a hallway?,tumblr_n9sj5cqJdi1sycli7o1_500,75249,1 8580,FRAMEQA9516,shirt,what is the boy wearing another boy on his cheeks?,tumblr_nkxi6gXNzW1uphofro1_250,23054,0 8581,FRAMEQA10062,black,what is the color of the man?,tumblr_nfeetqIQkZ1so9ango1_400,35037,2 8582,FRAMEQA40057,paw,what is the cat dipping into a glass of milk?,tumblr_ncxt71hFPt1t7io47o1_250,23002,0 8583,FRAMEQA15848,rodent,what is nibbling on the snack?,tumblr_nblw0sbvEm1s4zvpgo1_400,71849,0 8584,FRAMEQA43128,black,what is the color of the smiles?,tumblr_ne0tugw9s31twi5blo1_400,56414,2 8585,FRAMEQA39389,mirror,where is the young boy looking and crying?,tumblr_no5jxo9MsG1r6m8dmo1_500,79406,3 8586,FRAMEQA315,lettuce,what is the bunny eating on the floor?,tumblr_ndcvis8jts1tbcrm5o1_250,3820,0 8587,FRAMEQA38548,white,what is the color of the hair?,tumblr_nb1pnbrSwq1t6ksnpo1_500,82573,2 8588,FRAMEQA27525,crashes,what crashed into another car and runs off the track?,tumblr_njtrbqjPLb1unyhx2o1_400,78277,0 8589,FRAMEQA45180,studio,where are three men goofing around?,tumblr_ndlmhiM9bh1u0sihjo1_250,5720,3 8590,FRAMEQA1892,red,what is the color of the laughing?,tumblr_nco0vdTzvA1t7lab9o1_400,32678,2 8591,FRAMEQA9071,black,what is the color of the shirts?,tumblr_nbin1ebpcV1r08vafo1_400,30571,2 8592,FRAMEQA37760,two,how many young men are thinking together?,tumblr_nklfy9dNIS1u8e12yo2_400,86577,1 8593,FRAMEQA34627,puppy,what managed to sit in the small bowl of water?,tumblr_n8vebwp6YB1sm9f7mo1_r2_400,64664,0 8594,FRAMEQA8589,duck,what is falling asleep on the book?,tumblr_nk1dbdIdcS1uo49wlo1_400,90702,0 8595,FRAMEQA45440,sun,what is shining from this view of a highway?,tumblr_ngi2t0tDEr1rx9shjo1_400,56919,0 8596,FRAMEQA13042,singing,what is the woman dangling?,tumblr_nbkqr0O34Z1twkd2qo1_250,44066,0 8597,FRAMEQA38334,white,what is the color of the hood?,tumblr_necxhxfHhH1tl414ro1_400,15863,2 8598,FRAMEQA1679,three,how many cats are running towards three food dishes?,tumblr_nhchptHDxG1slj978o1_250,3857,1 8599,FRAMEQA198,car,what is driving along the dusty track?,tumblr_nhyz55Zgxg1tx8mn0o1_400,78412,0 8600,FRAMEQA5654,computer,what does the blue-eyed man close?,tumblr_ncsaytJHd31sree6ao1_400,51093,0 8601,FRAMEQA16258,cat,what is laying on its back and wants to get petted?,tumblr_n9e0koRNI51r390ico1_250,17008,0 8602,FRAMEQA13375,red,what is the color of the couch?,tumblr_naz252SYcX1rhmx5uo1_r1_400,34056,2 8603,FRAMEQA32191,blue,what is the color of the shirt?,tumblr_ne9s6vkP6F1qeb231o1_250,77766,2 8604,FRAMEQA37171,one,how many wrestler runs toward and attacks the second wrestler?,tumblr_n9uzodf3Kx1srbyoyo1_400,77918,1 8605,FRAMEQA15313,black,what is the color of the wheel?,tumblr_ni2mhm38YD1qlsp57o1_400,2508,2 8606,FRAMEQA45775,popsicle,what is the man with long hair eating?,tumblr_nfwkmh8JaB1rss4j4o1_250,19060,0 8607,FRAMEQA1308,car,what is rolling on the road?,tumblr_nelzioHl7F1u25ovvo1_400,63575,0 8608,FRAMEQA47881,gray,what is the color of the top?,tumblr_noyfaouv1s1tplwgro1_500,60868,2 8609,FRAMEQA32016,blue,what is the color of the boy?,tumblr_nc4iytkj9W1tjjejho1_250,39706,2 8610,FRAMEQA43082,cat,what is the young woman hugging and kissing?,tumblr_n9igzcnoug1r0p6epo1_400,29518,0 8611,FRAMEQA39312,bench,what is the man pressing two girls by him self?,tumblr_ne00ewlpW41tdjuqvo1_400,13329,0 8612,FRAMEQA31984,rodent,what is standing on its hind legs?,tumblr_nklnyqrf7o1u1v0pco1_400,52456,0 8613,FRAMEQA52134,shirt,what does the man with tattoos remove?,tumblr_njmy7jJZ8a1tm4ov9o1_500,97829,0 8614,FRAMEQA1065,red,what is the color of the lips?,tumblr_n9el1cf3Qh1sk144yo1_250,6753,2 8615,FRAMEQA43876,two,how many girls are looking at each other and smiling?,tumblr_nqgc2nFurH1urmhquo1_540,93650,1 8616,FRAMEQA35342,two,how many men are embracing on stage in front of a crowd?,tumblr_nfx12yL0PW1r6pekco1_250,19311,1 8617,FRAMEQA760,cat,what is staring as it lies backward?,tumblr_nkrg3fVzAP1rms80do1_400,7400,0 8618,FRAMEQA5684,yellow,what is the color of the tie?,tumblr_ndc106iim91rgb5tho1_250,3308,2 8619,FRAMEQA28642,kangaroo,what rolls over on the ground?,tumblr_nirdu9dR9r1u4aqzmo1_400,26252,0 8620,FRAMEQA20493,dog,what is the girl wearing glasses kisses and it licks its lips?,tumblr_nba91bUWgD1qiuxgpo1_400,30370,0 8621,FRAMEQA11051,cat,what then falls off a window sill?,tumblr_nrbcaupBvH1tfnm8co1_400,10153,0 8622,FRAMEQA11940,two,how many guys is this image of sitting down looking at each other?,tumblr_nd7flcAAEj1thr6umo1_400,47926,1 8623,FRAMEQA37396,black,what is the color of the hair?,tumblr_ndq73y7mT21u1hp4lo1_500,97252,2 8624,FRAMEQA21676,two,how many boys are moving and dancing in the room?,tumblr_n9r0jnVOmO1qfhxh5o1_400,65939,1 8625,FRAMEQA44671,two,how many young women are dancing and having fun?,tumblr_nihwdfvxb61sx3lhyo1_400,98740,1 8626,FRAMEQA50526,brown,what is the color of the hair?,tumblr_n8rkzr1aNz1rsqw97o1_250,6651,2 8627,FRAMEQA48936,black,what is the color of the hair?,tumblr_nglb9d1D1O1tbjx0uo1_500,54730,2 8628,FRAMEQA11656,studio,where are the bunch of kids practicing dance moves?,tumblr_nk707d1SiT1rha6j7o1_500,95756,3 8629,FRAMEQA32169,two,how many people with hats on are sitting by each other?,tumblr_nfmio5gcZb1u4uwvmo1_400,57274,1 8630,FRAMEQA31895,five,how many men are sitting down holding watermelons?,tumblr_nel0tcd6HR1tvclvso1_400,27055,1 8631,FRAMEQA15219,tomato,what is the turtle pushing with its head?,tumblr_n92y7xvWoz1t62xtyo1_500,34488,0 8632,FRAMEQA8264,blue,what is the color of the eyes?,tumblr_nqx4zeo6jf1skxa1uo1_250,42730,2 8633,FRAMEQA9033,guns,what is the man putting in his vest and strapping for battle?,tumblr_nfnsq7ptmZ1sk96t7o1_250,39113,0 8634,FRAMEQA38396,two,how many people are running towards each other and bounce back?,tumblr_ncd6eyR4Ya1ryaiojo1_400,69338,1 8635,FRAMEQA35920,blue,what is the color of the dress?,tumblr_ncf2h4FpH61tlstgdo1_400,87872,2 8636,FRAMEQA10097,car,what is chasing the motorcycle down the highway?,tumblr_nhlbtylYD61t4k3lzo1_250,93530,0 8637,FRAMEQA14432,black,what is the color of the bends?,tumblr_no0w1gQdxo1qk66rqo1_500,90116,2 8638,FRAMEQA41986,red,what is the color of the lights?,tumblr_nl25w2m2ln1qilpy6o1_400,40149,2 8639,FRAMEQA23570,two,how many men are battered and bruised looking up?,tumblr_naw2njzOfu1qj7i8oo1_500,100013,1 8640,FRAMEQA13589,instruments,what is the band playing and shouting into a microphone?,tumblr_nb0pkreKb81tjr3nro1_400,59431,0 8641,FRAMEQA49735,two,how many boys is playing table tennis shake hands and then one pushes over the umpire?,tumblr_nfm255tiGL1tgvhzeo1_500,100755,1 8642,FRAMEQA30416,two,how many caped people does there 's playing guitars moving on a stage?,tumblr_n9jeioN38z1r26tq5o1_250,5815,1 8643,FRAMEQA20601,airplane,what is trying to land on the run way?,tumblr_na1eah7Rjw1slwrsuo1_500,86728,0 8644,FRAMEQA36152,white,what is the color of the shirt?,tumblr_nknw3pqtos1rzywd8o1_250,44019,2 8645,FRAMEQA51725,ball,what is the man with white shoes twirling?,tumblr_n8pwmrX2ZE1tfhnexo1_400,93372,0 8646,FRAMEQA40626,cheeseburger,what does the man show off?,tumblr_nblqr9rLQQ1ssgyoro1_400,73875,0 8647,FRAMEQA7645,white,what is the color of the sheet?,tumblr_ncw0wcn5Ew1tijnqno1_500,59414,2 8648,FRAMEQA44687,cat,what is stuck inside the plastic box?,tumblr_no73v10L191uuefq3o1_250,11614,0 8649,FRAMEQA39485,two,how many people practice throwing punches at each other?,tumblr_n93korFZlm1sx5lxbo1_500,95918,1 8650,FRAMEQA340,tank,what is driving forward then slams on the breaks?,tumblr_nhxyiivlNC1t06byno1_400,28984,0 8651,FRAMEQA9902,red,what is the color of the carpet?,tumblr_ng3bhm9zzP1u15fgvo1_400,73598,2 8652,FRAMEQA8751,black,what is the color of the tie?,tumblr_n9ffgnCzzc1rqp9xfo1_500,90840,2 8653,FRAMEQA735,strawberry,what is the person giving a cat?,tumblr_npozmb4kvw1uy2r7ro1_400,37250,0 8654,FRAMEQA3465,garden,"where is the woman singing and a man is driving a car , and another one appears to be?",tumblr_nqtjn9aMbk1qbvprao1_500,60192,3 8655,FRAMEQA8462,dogs,what sit and move their heads back and forth?,tumblr_n8pom6qgCR1tgl4z1o1_400,75583,0 8656,FRAMEQA3455,white,what is the color of the shirts?,tumblr_ncpf2tLxkQ1twoe5do1_400,53066,2 8657,FRAMEQA15531,flag,what is the young boy holding in front of his face?,tumblr_n9ivaaMrtw1twcw4no1_400,33348,0 8658,FRAMEQA11518,black,what is the color of the hair?,tumblr_nes5f2Cdt31tmaii4o1_500,99957,2 8659,FRAMEQA44063,one,how many boy sings on stage and two others laugh at each other?,tumblr_njvkp9ghpO1sho2p1o1_250,19950,1 8660,FRAMEQA10597,white,what is the color of the outfit?,tumblr_nrandzeiC71qlcjs4o1_400,47917,2 8661,FRAMEQA36787,black,what is the color of the man?,tumblr_nacjth17GZ1sfnqh2o1_400,13795,2 8662,FRAMEQA43164,eight,how many ghosts are swaying back and forth to the music?,tumblr_n5dtds5SMm1twu18ko1_500,44901,1 8663,FRAMEQA42432,white,what is the color of the hair?,tumblr_ncityr4XKD1qblt8ro1_500,96285,2 8664,FRAMEQA46517,microphone,what does the blonde haired woman hold up to the audience?,tumblr_ngqoyoaqM81smn077o1_500,85894,0 8665,FRAMEQA22558,two,how many men throw metal disks at each other?,tumblr_nbnpmeDREl1t7qum9o1_400,98622,1 8666,FRAMEQA7283,cat,what stands up against the door and pushes it closed?,tumblr_nkyam1X1MM1tmnntwo1_250,37541,0 8667,FRAMEQA20068,blue,what is the color of the shirt?,tumblr_nex14mjdf71rjqi8yo1_400,57626,2 8668,FRAMEQA4255,car,what is doing circles on the floor?,tumblr_nrc4axMW2T1r92mkgo1_400,62304,0 8669,FRAMEQA7918,headphones,what is the boy wearing and making hand gestures?,tumblr_nebrsyHwge1tky9gno1_400,31671,0 8670,FRAMEQA29704,car,what passes buy the man as he dances and sings?,tumblr_nklfp2TT031t0qj4zo1_400,64942,0 8671,FRAMEQA38289,ball,what is the man kicking into a goal?,tumblr_nq5cguWcqG1u7q0qeo1_400,40951,0 8672,FRAMEQA51270,white,what is the color of the cat?,tumblr_ncz194PjME1rjh61io1_250,801,2 8673,FRAMEQA4380,doorway,where is the young girl waving hello?,tumblr_ngdfhyjwif1r0kw6ko1_400,20091,3 8674,FRAMEQA38143,three,how many men is this image of walking down a street?,tumblr_nhp246FgbJ1tk1kc2o1_400,37801,1 8675,FRAMEQA50374,cat,what is pushing an ornament off a table?,tumblr_ng642mdNwX1qezt9uo1_250,19353,0 8676,FRAMEQA31633,wall,what does the shirtless young man with wet hair rub his hand?,tumblr_nj7yqf2xEy1qh8obpo1_r1_400,61467,0 8677,FRAMEQA48996,red,what is the color of the shirt?,tumblr_nahgllYsQa1te9jx5o1_400,70111,2 8678,FRAMEQA25252,two,how many men is wearing suits are standing back to back?,tumblr_ncs5palRjX1ro5rv7o1_400,58317,1 8679,FRAMEQA11485,two,how many young girls are sitting down?,tumblr_na9wfx9Vmk1qg7e36o1_500,55123,1 8680,FRAMEQA41561,two,how many fingers is the man holding up?,tumblr_ng7oar7Gev1u176ipo1_250,5939,1 8681,FRAMEQA39452,turns,what does the ballerina perform on a stage?,tumblr_nbxsrhbTam1tf6qceo1_250,37887,0 8682,FRAMEQA50779,wolf,what is the man watching?,tumblr_nina5vfIdD1u95biro2_400,60896,0 8683,FRAMEQA1697,black,what is the color of the man?,tumblr_ndrak3nYu61r95fszo1_250,11840,2 8684,FRAMEQA3602,fish,what does the cat watch being removed from a bowl?,tumblr_npy4c6ERuh1uv0y2ro1_250,13331,0 8685,FRAMEQA28404,two,how many people are looking ahead while holding the drink?,tumblr_nhuoksIv0d1ra6i3zo1_500,95617,1 8686,FRAMEQA20616,two,how many people slowly look at each other disappointed?,tumblr_ne49poeZeL1tmjapgo1_500,36788,1 8687,FRAMEQA42045,shirt,what is the man adjusting with his hands?,tumblr_nfi656Csb11u3pgazo1_250,7435,0 8688,FRAMEQA9278,guitar,what is the man holding and moving backwards?,tumblr_ndop0fsg361th018eo1_1280,98189,0 8689,FRAMEQA46034,horse,what walks in the grass outside?,tumblr_nowuhcCWo71s3fuxko1_400,71803,0 8690,FRAMEQA1463,window,what is the man looking out?,tumblr_np4o7rcN851tq8n90o1_400,38240,0 8691,FRAMEQA20573,six,how many people are standing in front of a car on a stage?,tumblr_nhaaonJd0D1u6jgouo1_250,50395,1 8692,FRAMEQA32374,black,what is the color of the glasses?,tumblr_nklx070fBD1qan8eoo1_400,83313,2 8693,FRAMEQA23572,dog,what chewed on something looked up and raised its ears?,tumblr_niu5dzNP7G1u62tooo1_400,31034,0 8694,FRAMEQA11425,lands,what is the young boy trying but face first in his back?,tumblr_np6d78GtyQ1tje07po1_500,68616,0 8695,FRAMEQA31053,black,what is the color of the hat?,tumblr_nbjf6kQUhE1svos5ho1_500,86875,2 8696,FRAMEQA20181,two,how many girls does there 's dancing in front of pictures on a wall?,tumblr_nghj6gFDD91u5eovyo1_400,21368,1 8697,FRAMEQA52662,red,what is the color of the jacket?,tumblr_npg165WqM91uxpfeho1_r1_400,65486,2 8698,FRAMEQA14252,two,how many boys sit and smile?,tumblr_nh9zdtgglQ1stmsx9o1_500,101014,1 8699,FRAMEQA41158,two,how many men is this that are opening doors?,tumblr_nfs3zdVBpy1u2uoslo1_250,16817,1 8700,FRAMEQA14951,black,what is the color of the hair?,tumblr_nrdp4qxwvJ1uz1tgjo1_250,51585,2 8701,FRAMEQA18537,two,how many women is wearing spectacles are dancing in front of another woman?,tumblr_ng8j7afCAt1rn9s7oo1_250,59777,1 8702,FRAMEQA43045,white,what is the color of the dog?,tumblr_nbuhc5cUJn1rotc20o1_400,19595,2 8703,FRAMEQA14974,white,what is the color of the wall?,tumblr_nl1dalnS1E1tm0nkno1_500,58413,2 8704,FRAMEQA42252,brown,what is the color of the hair?,tumblr_nhxq4ucmdv1tg5klqo1_250,16910,2 8705,FRAMEQA43844,two,how many young men are stood on the stage talking to each other?,tumblr_nbc7u35pYt1sdbrm9o1_400,65496,1 8706,FRAMEQA7828,car,what jumps the curb on a race track?,tumblr_nr9op5Q2rg1unyhx2o1_400,78234,0 8707,FRAMEQA23850,toothpick,what does the hand stick into liquid and colors spread?,tumblr_ndv1ycsv271s4jnano1_400,66056,0 8708,FRAMEQA25832,brown,what is the color of the hair?,tumblr_nqf4c3MuhI1tyijzno1_400,74597,2 8709,FRAMEQA51539,white,what is the color of the layer?,tumblr_nnkgiuZZhn1un86uao1_500,94584,2 8710,FRAMEQA14961,chair,where is the man flipping through papers?,tumblr_ngxfp5rbhJ1svp9edo1_1280,84696,3 8711,FRAMEQA52225,airplane,what is flying above the clouds in the sunlight?,tumblr_npwwzp6mxJ1qltbjko1_400,77259,0 8712,FRAMEQA1886,white,what is the color of the car?,tumblr_nh5u2chPoA1rp5w0lo1_400,82442,2 8713,FRAMEQA48133,white,what is the color of the lady?,tumblr_ndyscvfO4c1sjzf6wo1_400,28569,2 8714,FRAMEQA7925,money,what is in hands and people gathered keeping a girl in chain?,tumblr_ncfy4g6M611rmh5d4o1_500,3447,0 8715,FRAMEQA47726,drink,what does the man slowly serve while moving a nearly empty glass with the other hand?,tumblr_nbxty7IKdx1sircq6o1_400,4113,0 8716,FRAMEQA36298,butterfly,what flaps its wings as someone draws?,tumblr_np4u4zNuv21rjxtuwo1_400,35441,0 8717,FRAMEQA49853,three,how many guys look down together in the dark room?,tumblr_nat1jsDGBA1tdmr2yo1_500,96611,1 8718,FRAMEQA10753,black,what is the color of the hair?,tumblr_n8ug3oAT981rit0dno1_500,93869,2 8719,FRAMEQA24154,green,what is the color of the hair?,tumblr_nqseu4Hndq1uyi17so1_500,73991,2 8720,FRAMEQA17718,blue,what is the color of the jacket?,tumblr_nd5jz5nZ6P1qjvd9io1_250,704,2 8721,FRAMEQA36388,two,how many lovers have the fun?,tumblr_mr11isrNGe1say5iqo1_500,63272,1 8722,FRAMEQA42706,bat,what is unfolding his wings and screeching?,tumblr_nhkmxjaSAq1u777vko1_500,57894,0 8723,FRAMEQA22670,two,how many guys are doing the secret handshake?,tumblr_nhwxneQIVn1rb8uj5o1_400,65786,1 8724,FRAMEQA15876,tree,what branches are blowing on the beach?,tumblr_n6xecn3WXZ1tw9x4ao1_500,69964,0 8725,FRAMEQA36856,brown,what is the color of the hair?,tumblr_nbv3veBCq21r1ze62o1_400,96885,2 8726,FRAMEQA10103,three,how many men are sitting on the sofa and talking to each other?,tumblr_namomnmjd51sjugf2o1_500,73930,1 8727,FRAMEQA40250,clothing,what is falling from the sky as two people walk by?,tumblr_nirh7qn89K1u9pk5io1_250,35792,0 8728,FRAMEQA42601,black,what is the color of the man?,tumblr_nqdgrxLFvZ1uspy7qo1_400,83606,2 8729,FRAMEQA210,two,how many guys is this acting silly in a booth?,tumblr_n9pbjfB81W1twvnifo1_250,46887,1 8730,FRAMEQA14890,gray,what is the color of the shirt?,tumblr_ndl8pvG3At1sklh5yo1_500,15227,2 8731,FRAMEQA22938,card,what is the young man explaining to another young man?,tumblr_no8y3eBHDv1tlf6zgo1_250,50914,0 8732,FRAMEQA9832,cat,what is playing with an ornament on a christmas tree?,tumblr_ngwe7aRwEW1u4lqc0o1_250,38433,0 8733,FRAMEQA38100,two,how many beautiful man are playing the guitar on a stage?,tumblr_n94fi690GZ1twfcheo1_400,60282,1 8734,FRAMEQA24886,blue,what is the color of the dress?,tumblr_n8rz4aCB7g1teon97o1_250,84340,2 8735,FRAMEQA9402,brown,what is the color of the hair?,tumblr_nkn3mz20G61t7gzr5o1_250,42184,2 8736,FRAMEQA48539,car,where is the man being driven?,tumblr_nmeplkwIog1ss8ekqo2_540,95474,3 8737,FRAMEQA31557,white,what is the color of the mouse?,tumblr_n9emuzqIhv1sk96t7o1_400,42486,2 8738,FRAMEQA11685,cat,what lies in the box and looks very happy?,tumblr_nntolgMF0D1tyncywo1_250,53460,0 8739,FRAMEQA42300,white,what is the color of the man?,tumblr_ni32scddOZ1u0ed70o1_500,56559,2 8740,FRAMEQA36588,two,how many guys are kissing with their eyes closed?,tumblr_nav9fkK9AI1ss8l8fo1_500,73150,1 8741,FRAMEQA29267,seal,what follows the man who has the bucket?,tumblr_njfubw35U31u8uroco1_400,74013,0 8742,FRAMEQA21820,gym,where does the woman do side crunches?,tumblr_npa0fdgqzm1tkvqk7o1_500,72004,3 8743,FRAMEQA7176,door,what is the guy laughing and closing?,tumblr_neccfuJowv1t5z2hyo1_400,33757,0 8744,FRAMEQA52039,black,what is the color of the man?,tumblr_nfbc69z0qM1sju7t3o1_400,64576,2 8745,FRAMEQA41831,black,what is the color of the shirt?,tumblr_niremvFMRe1u2gwbho1_400,61098,2 8746,FRAMEQA10490,two,how many women in a gym holding hands and is walking away from man?,tumblr_nkemwuoZE91snw3iao1_250,82980,1 8747,FRAMEQA13839,room,where is the guy buttoning a shirt?,tumblr_ncj45x0Ant1sn5krco1_500,76769,3 8748,FRAMEQA14862,cigarette,what is the woman smoking and exhaling?,tumblr_nqb38eH9vk1qe9a6no1_250,4725,0 8749,FRAMEQA2008,bowl,"what does the dog jump , and disappears?",tumblr_nhskwbxgar1rseg36o1_250,3286,0 8750,FRAMEQA24378,puppy,what is alerted from the sleeping position?,tumblr_ndfb7sHq6r1tbg9d2o1_500,97079,0 8751,FRAMEQA48673,bow,what is the girl in a hat and a striped shirt taking?,tumblr_na7ng2zh3f1thntp8o1_250,110,0 8752,FRAMEQA35211,red,what is the color of the heart?,tumblr_ncgsprzuX31snfcayo1_250,6492,2 8753,FRAMEQA12393,dog,what is laying down and looking up at something?,tumblr_n9xv6aqQ5A1qmgppeo1_250,38221,0 8754,FRAMEQA49372,car,what comes off the course and returns to the road?,tumblr_ncwjr5bvbM1tx8mn0o1_400,78341,0 8755,FRAMEQA45591,brown,what is the color of the hair?,tumblr_nqodpt5v6K1u6pfheo1_500,40309,2 8756,FRAMEQA32683,two,how many people are walking one of them is walking backwards?,tumblr_noq8ccdLyz1upk2b9o1_500,92604,1 8757,FRAMEQA36462,two,how many people are sat singing whilst one plays a guitar?,tumblr_nhvn12P7qN1tjjqb9o1_400,64348,1 8758,FRAMEQA19282,guitar,what is the man playing?,tumblr_ngsvr4N2KC1u4pnh1o1_500,74688,0 8759,FRAMEQA52136,cat,what is mildly entertained by the pumpkin head?,tumblr_nd2k27sveM1r3cqi5o1_250,1025,0 8760,FRAMEQA25600,chair,where is the woman sitting and sipping from a mug?,tumblr_ng8k3m3Omi1tmemc1o1_250,15943,3 8761,FRAMEQA8439,popsicle,what is the man with long hair licking?,tumblr_nfwkmh8JaB1rss4j4o1_250,19060,0 8762,FRAMEQA20435,black,what is the color of the shirt?,tumblr_nebq9afgmY1snrb8oo1_400,33688,2 8763,FRAMEQA48266,cigarette,what is the guy wearing a scarf and smoking?,tumblr_nkr302wD1d1s3xft0o1_400,66391,0 8764,FRAMEQA21787,two,how many men are putting on their coats and hiding in a corner?,tumblr_nb1dd1CYBF1riflwso1_400,31308,1 8765,FRAMEQA18696,two,how many men are sitting together?,tumblr_nd0fwvSQfh1tlyyvzo1_400,25188,1 8766,FRAMEQA11423,cat,what is playing with the ball on a string?,tumblr_nbdib2bbIb1s4zvpgo1_250,76388,0 8767,FRAMEQA34009,brown,what is the color of the hair?,tumblr_nbt4anaFfA1rdtddvo1_250,6564,2 8768,FRAMEQA41623,cone,what is the guy sticking on his forehead?,tumblr_nkm1jpxtCI1tux4fao1_400,57091,0 8769,FRAMEQA7165,red,what is the color of the truck?,tumblr_njpreqZ6fr1unq0gjo1_250,46570,2 8770,FRAMEQA5953,gun,what does the man change to another man?,tumblr_ng7nje14RG1s6zpepo1_400,47878,0 8771,FRAMEQA24309,lipstick,where is the girl eagerly looking at something?,tumblr_n9zlvzY5jO1sp3selo1_250,46937,3 8772,FRAMEQA38271,puppies,what are running in the hallway?,tumblr_n92lo9JEvZ1tfz9ppo1_400,52245,0 8773,FRAMEQA47930,white,what is the color of the stuff?,tumblr_n9ty6nCn2v1rmfmnvo1_500,95646,2 8774,FRAMEQA40936,black,what is the color of the lady?,tumblr_nb1xf7AQoy1tjeqb9o1_250,12328,2 8775,FRAMEQA51431,blue,what is the color of the shirt?,tumblr_ne7ge8jJs31s2z8wpo1_400,79131,2 8776,FRAMEQA38431,black,what is the color of the hat?,tumblr_n97g5uG3Q41r0020go1_500,72411,2 8777,FRAMEQA41628,brown,what is the color of the hair?,tumblr_n9fol1Zr7d1ti7k0co1_250,7553,2 8778,FRAMEQA39900,two,how many men are singing into microphones in a studio?,tumblr_njabelknbz1qcedqco2_500,93822,1 8779,FRAMEQA17089,guitar,what does the man throw towards a crowd?,tumblr_nf6ns9a6tg1tjubn4o1_400,24972,0 8780,FRAMEQA25116,one,how many male dances and falls to the ground?,tumblr_n9f5ecfGZ71remizro1_400,21976,1 8781,FRAMEQA39951,baboon,what rubs the keyboard quickly and then covers his head?,tumblr_nq3l4pzkwU1sht3fmo1_400,57578,0 8782,FRAMEQA17732,cat,"what is the girl holding , and she is smiling?",tumblr_nakevodx4L1s1txlxo1_400,32762,0 8783,FRAMEQA524,alleyway,where is the boy with a white shirt looking frustrated?,tumblr_nb2ajl9DH41tkdgp6o1_250,23241,3 8784,FRAMEQA22107,two,how many people rush towards each other and hug?,tumblr_nb2wphU00c1ts0qzho1_1280,33406,1 8785,FRAMEQA9763,guitar,what is the man wearing a black shirt is playing?,tumblr_n9v14rHt3R1riy1p3o1_400,39342,0 8786,FRAMEQA9834,lipstick,where is the girl blowing a kiss?,tumblr_nb3jy9gTPE1t5ojzdo1_250,46935,3 8787,FRAMEQA10814,black,what is the color of the scarf?,tumblr_niwmiuolPN1tud7j4o1_500,98837,2 8788,FRAMEQA21542,guitar,what is the young man smiling and playing?,tumblr_ngsvr4N2KC1u4pnh1o1_500,74688,0 8789,FRAMEQA46748,black,what is the color of the hair?,tumblr_ndw8ltL3iK1t7ux2so1_400,30807,2 8790,FRAMEQA2807,black,what is the color of the cap?,tumblr_nqn263IcBj1uzrtz5o1_500,6137,2 8791,FRAMEQA48754,black,what is the color of the dress?,tumblr_nhrkfjaJSg1qjshvjo1_400,38124,2 8792,FRAMEQA45408,white,what is the color of the shirt?,tumblr_nam5cbzh441ss9ufto1_250,624,2 8793,FRAMEQA19890,brown,what is the color of the hair?,tumblr_nf7920hTqu1sfttdzo1_500,78742,2 8794,FRAMEQA12679,brown,what is the color of the hair?,tumblr_nr8qs2rHGr1u5g8bjo1_400,1222,2 8795,FRAMEQA35480,cat,what tries to jump to the window and fails?,tumblr_nq6fgo0RyG1tk2ngvo1_400,71717,0 8796,FRAMEQA9388,shield,what is the man saying something and holding?,tumblr_naasuxlyZM1tjx960o1_500,90016,0 8797,FRAMEQA18845,brown,what is the color of the hair?,tumblr_negrp50MCD1rmfypqo1_500,97810,2 8798,FRAMEQA8416,chair,where is the person diving in the ocean?,tumblr_njo4h5V7hD1uncsido1_400,69701,3 8799,FRAMEQA34035,two,how many men are staring at other men passing?,tumblr_na44dr5Omn1tjpvwpo1_250,47137,1 8800,FRAMEQA8464,white,what is the color of the walls?,tumblr_n8rkewhXrC1slprrpo1_500,101229,2 8801,FRAMEQA13504,tuxedos,what are the group of men wearing and one is talking?,tumblr_nojudwiLpl1qedx60o1_540,91615,0 8802,FRAMEQA13220,two,how many people sat in the car talking to each other?,tumblr_n8s2wj3j9W1s0vm19o1_400,54442,1 8803,FRAMEQA48333,two,how many men are laughing hard while sitting down?,tumblr_nagmqkc3IH1t24hnto1_400,77196,1 8804,FRAMEQA41888,chair,"where is the man sitting , talking , smiling and waving his hand?",tumblr_nrgs5llZHj1rfolw9o1_400,7196,3 8805,FRAMEQA34020,motorcycle,what is sliding around the turn?,tumblr_npwwjhQIqf1tx8mn0o1_400,78325,0 8806,FRAMEQA13001,two,how many men is wearing coats and winter hats are hugging?,tumblr_nk4ezdlkcv1u2nvc4o1_500,62482,1 8807,FRAMEQA25551,black,what is the color of the top?,tumblr_nk52edbKl91ra78amo1_100,12594,2 8808,FRAMEQA43586,cheetah,what is running on the pink rug?,tumblr_nqxvud6IgD1thktw9o1_250,533,0 8809,FRAMEQA42094,three,how many men is this sitting on a stage and laughing?,tumblr_na5l4nwhbZ1rodqjco1_500,93324,1 8810,FRAMEQA49638,room,where are the bunch of men posing?,tumblr_nawqv9iVq81s0h1fio1_500,57652,3 8811,FRAMEQA18355,white,what is the color of the girl?,tumblr_nkqgvgtZfb1s35d3lo1_500,41805,2 8812,FRAMEQA40222,red,what is the color of the clothes?,tumblr_nd7dppyDSv1rk5ju2o1_500,52050,2 8813,FRAMEQA26974,two,how many young girls are singing and rocking to each other?,tumblr_nc0b2lDGef1tp9bieo1_500,20330,1 8814,FRAMEQA23773,black,what is the color of the hair?,tumblr_nfehfqRurV1r67on6o1_250,10833,2 8815,FRAMEQA5573,bubbles,what is the man blowing?,tumblr_nf8bhbRmqr1s3att3o1_400,28574,0 8816,FRAMEQA19254,cat,what is leaping and bouncing off walls?,tumblr_ngv9m5pOMl1slj978o1_400,37576,0 8817,FRAMEQA32824,car,where are four people laughing and joking?,tumblr_n9n8owFIkV1se1vi6o1_250,47029,3 8818,FRAMEQA11010,cat,what does this show waiting by a window and then moving to the door?,tumblr_nfmdfo7AD41u4txqeo1_250,10556,0 8819,FRAMEQA43922,car,where are the pair of men sitting and goofing around?,tumblr_nfpuisFRl11t2mzx0o1_400,82197,3 8820,FRAMEQA13970,guitar,what did the girl play with a skeleton band and fire around her?,tumblr_nkxr47G0SY1u3cb3fo2_400,61185,0 8821,FRAMEQA33851,red,what is the color of the wool?,tumblr_nccsgkmUmJ1qhdgseo1_250,81324,2 8822,FRAMEQA2324,white,what is the color of the shirt?,tumblr_naimwuna081tiwd2mo1_250,14610,2 8823,FRAMEQA7692,room,where is the young girl standing?,tumblr_nezh23Liet1tz6sv9o1_1280,91907,3 8824,FRAMEQA22108,two,how many cats are in the room playing with each other?,tumblr_nr78fdPO5w1slwrsuo1_400,43420,1 8825,FRAMEQA25380,yellow,what is the color of the suit?,tumblr_np0hkt5rBF1utqnppo1_250,8586,2 8826,FRAMEQA15675,red,what is the color of the bowl?,tumblr_nbjdlk6CGv1tlw7exo1_250,68979,2 8827,FRAMEQA22877,blue,what is the color of the shirt?,tumblr_nhp7tjym1V1u7wldxo1_400,30314,2 8828,FRAMEQA52736,bicycle,what is the girl riding outside?,tumblr_nr2smr238Q1uxz2yto1_400,57188,0 8829,FRAMEQA30941,car,what drove smoothly along the road?,tumblr_netcx4DbEN1u25ovvo1_400,63409,0 8830,FRAMEQA12690,car,what is being driven on the dark road in the rain?,tumblr_n9tdb0xnR41th6pvpo1_400,60298,0 8831,FRAMEQA28064,pillow,what is the man holding up?,tumblr_ncgsprzuX31snfcayo1_250,6492,0 8832,FRAMEQA22144,belt,what is the young man at the steering wheel checking?,tumblr_nbi0cr9dUk1tjt4u9o1_400,78816,0 8833,FRAMEQA17799,gray,what is the color of the cat?,tumblr_nrf04cgRUC1ub19xmo1_400,52346,2 8834,FRAMEQA28738,white,what is the color of the dress?,tumblr_ncz222VcuZ1ttuz3po1_400,1324,2 8835,FRAMEQA22091,ball,"what are soccer players playing on a field , and one player kicks into the goal?",tumblr_ndnmc06P9U1tjig0uo1_400,60509,0 8836,FRAMEQA6444,two,how many young men are sitting close together and eating the piece of pizza?,tumblr_nh7dbzg3AX1sg80mko1_400,73798,1 8837,FRAMEQA29208,room,where is the man with leather jacket dancing?,tumblr_ni1aorjpSL1tqzdmxo1_250,39772,3 8838,FRAMEQA50024,cat,what dressed up is riding on a vacuum cleaner?,tumblr_njxru9zMoB1qkvy72o1_400,58697,0 8839,FRAMEQA2026,bear,what is the woman smiling and holding?,tumblr_nhq6ze0bhp1sja7kao1_250,12929,0 8840,FRAMEQA2945,elephant,what is trying to sit down topples over?,tumblr_nptdekVE6l1tfnm8co1_400,45462,0 8841,FRAMEQA50583,white,what is the color of the horse?,tumblr_nh6ypurpto1sug4g8o1_500,97696,2 8842,FRAMEQA27416,two,how many young men are sitting together while one of them is holding a triangular object?,tumblr_ngzyt9eRNK1rblf33o1_500,86244,1 8843,FRAMEQA35777,stocking,what is the woman putting on?,tumblr_n9e4inWZv51rk2gato1_400,43463,0 8844,FRAMEQA26644,brown,what is the color of the hair?,tumblr_nfbpn75kGf1u409xro1_250,53250,2 8845,FRAMEQA10350,two,how many people are dancing in front of a car?,tumblr_ndu1fawTmi1rpucoso1_250,40882,1 8846,FRAMEQA25554,letters,what is the person onto a wall?,tumblr_ndyi4zNrQM1s4yuteo1_500,86684,0 8847,FRAMEQA11132,two,how many mice are playing with their arms?,tumblr_nd0odbifZp1tihaueo1_250,18445,1 8848,FRAMEQA33586,black,what is the color of the hair?,tumblr_nc2my3p0WI1synx1zo1_400,65541,2 8849,FRAMEQA37116,hall,where is the man hugging a woman?,tumblr_nl0ze7lNnv1r9slz6o1_400,57152,3 8850,FRAMEQA16490,dog,what is running into the ocean and immersing himself?,tumblr_nc2xc108CT1sh1v2uo1_500,57385,0 8851,FRAMEQA1312,basket,where are two men playing basketball and one puts it?,tumblr_nrandzeiC71qlcjs4o1_400,47917,3 8852,FRAMEQA6332,street,where is the person smoking his motorcycle tire?,tumblr_nbngkoByJ11scotfso1_400,76454,3 8853,FRAMEQA39972,pill,what is the girl tossing into her mouth?,tumblr_n9k8rtwwg11srx5iro1_400,32740,0 8854,FRAMEQA52544,band,what is jumping and playing guitars?,tumblr_n9535qdmnf1tyyv4yo1_400,57859,0 8855,FRAMEQA8351,white,what is the color of the car?,tumblr_noojj9QsI61urniueo1_500,56954,2 8856,FRAMEQA29662,flowers,what does the man hold and then a woman say something?,tumblr_ni3n9mlV2T1rktfsqo1_250,38469,0 8857,FRAMEQA15585,two,how many people are standing outdoors looking at something?,tumblr_nkthvo0iK91qmoyvzo1_500,34410,1 8858,FRAMEQA34474,blue,what is the color of the tulle?,tumblr_np6q31hIzO1tplwjvo1_400,55495,2 8859,FRAMEQA2182,brown,what is the color of the hair?,tumblr_nchdxew8v61rgl329o1_250,4919,2 8860,FRAMEQA51104,peel,"what does the man throw on the sidewalk , which trips another man who does a flip and lands on a recycle bin?",tumblr_nbtro0gBQR1tkpzw0o1_400,19682,0 8861,FRAMEQA35584,black,what is the color of the stuff?,tumblr_nfs1edxkV01u4xnwyo1_1280,65254,2 8862,FRAMEQA38254,black,what is the color of the pants?,tumblr_nczndqMaKH1rr9oewo1_500,71091,2 8863,FRAMEQA11724,guitar,what did the guy with long hair play?,tumblr_ndrhyfL5yO1s0mjn5o1_400,58868,0 8864,FRAMEQA1450,two,how many men are headbanging at the open door?,tumblr_n9ynh2Hx361qfyx3mo1_400,35241,1 8865,FRAMEQA23406,black,what is the color of the man?,tumblr_njz44cKW5C1sba90go1_540,90331,2 8866,FRAMEQA27248,room,where are some boys starting to dance?,tumblr_nk707d1SiT1rha6j7o1_500,95756,3 8867,FRAMEQA29076,sunglasses,what is the woman passenger in a car removing?,tumblr_n8st3d7GLU1ru1g19o1_500,98940,0 8868,FRAMEQA353,five,how many men are posing for the photo shoot?,tumblr_ncqlayumGa1u0r2qfo1_500,88783,1 8869,FRAMEQA28467,two,how many men are laughing at some food?,tumblr_ngeiwy1VlF1t7gqeso1_500,76492,1 8870,FRAMEQA25771,pool,where did the girl star straight ahead?,tumblr_nf7jcxJEXE1tvkuhho1_400,72305,3 8871,FRAMEQA2728,black,what is the color of the leather?,tumblr_nfvmweoKSc1tldu19o1_500,83149,2 8872,FRAMEQA26562,bag,what is the man in the white shirt punching?,tumblr_nkkhilUtwi1rkmghzo1_250,43958,0 8873,FRAMEQA31951,car,where are five men trying to evade the police car?,tumblr_nhxiwtAC4Q1u7itf7o1_500,96891,3 8874,FRAMEQA51331,dog,what is briefly wagging its tail and looking at something?,tumblr_n9xv6aqQ5A1qmgppeo1_250,38221,0 8875,FRAMEQA1808,two,how many girls are dancing and kissing each other?,tumblr_nbczbxoW5U1r1jb3so1_500,94902,1 8876,FRAMEQA45324,dogs,what is the man in a red bandanna eating?,tumblr_nfzln4hPwu1u4lqc0o1_400,52384,0 8877,FRAMEQA50080,two,how many women start to kiss suggestively in the hospital?,tumblr_ncc1ycDVbj1rijrceo1_500,88715,1 8878,FRAMEQA24335,black,what is the color of the shirt?,tumblr_n9his996cn1rcpzsoo1_500,100479,2 8879,FRAMEQA40052,two,how many girls pull the hoods on their tops over their heads?,tumblr_nlzw6wlLMO1tfjrdno1_400,29179,1 8880,FRAMEQA40854,two,how many grown men is this kissing in public?,tumblr_nav9fkK9AI1ss8l8fo1_500,73150,1 8881,FRAMEQA45020,white,what is the color of the man?,tumblr_n8vhckZvil1rd47n5o1_500,71061,2 8882,FRAMEQA20512,brown,what is the color of the hair?,tumblr_nas5orConK1t1tts4o1_400,29052,2 8883,FRAMEQA21911,yellow,what is the color of the taxi?,tumblr_nazoqqzPK61rcr3teo1_250,84564,2 8884,FRAMEQA18113,black,what is the color of the suit?,tumblr_nc7fe5rnLn1rv18yuo1_250,12402,2 8885,FRAMEQA44566,two,how many girls are fighting in the ring and tumbling around?,tumblr_ndtsd85pkv1sk0i2mo1_400,50800,1 8886,FRAMEQA7600,pictures,what are the young man and woman having taken and the man gets mad?,tumblr_nbht40Boo11sfb11po1_500,95730,0 8887,FRAMEQA40578,red,what is the color of the shirts?,tumblr_n9sfgibcXy1qhawdao1_400,57929,2 8888,FRAMEQA30444,five,how many men walk along the beach at sundown?,tumblr_nbsl1uhMol1ttjtjgo1_500,93544,1 8889,FRAMEQA21033,suitcase,what is the man holding from a closet?,tumblr_ncr2nkGFeG1rcreg3o1_250,15719,0 8890,FRAMEQA3551,human,what is the dog petting head?,tumblr_naf1uaXSXE1ts0kzio1_400,41589,0 8891,FRAMEQA3834,white,what is the color of the bird?,tumblr_n9nxz6cyx11sjuzlno1_400,36176,2 8892,FRAMEQA307,one,how many man pats another on the shoulder?,tumblr_nfglfqkprz1u37v6fo1_250,93338,1 8893,FRAMEQA18972,black,what is the color of the man?,tumblr_njql28RkhO1tgvlsso1_400,68264,2 8894,FRAMEQA7718,fence,what did the white hose run and jumped over?,tumblr_nfsrf7PNZs1qe2thio1_500,98734,0 8895,FRAMEQA47148,two,how many lions cuddle and lick one another?,tumblr_ncy89sSxEH1t4eui2o1_500,84234,1 8896,FRAMEQA8693,white,what is the color of the shirt?,tumblr_ncm3t6uN6S1qhzqk1o1_500,77713,2 8897,FRAMEQA3546,dog,what shakes his head and tail while standing in front of a rope?,tumblr_nk5ddaL9zk1s28vxko1_400,43219,0 8898,FRAMEQA40628,two,how many boys are practicing the dance routine?,tumblr_n8sskvyvQ71tco194o1_500,88611,1 8899,FRAMEQA46540,dog,what moves his leg when a hand scratches him?,tumblr_ng850mh9Uy1slj978o1_400,34151,0 8900,FRAMEQA46638,street,where is the white and awesome cars running?,tumblr_nnw2qphCJA1uuh2j1o1_500,67719,3 8901,FRAMEQA26771,cat,what is the girl in a short dress carrying and swinging its body?,tumblr_ngx8mtOFt51rdm91ko1_400,32691,0 8902,FRAMEQA21621,two,how many hind legs is golden color a cat moving?,tumblr_n8x7oaXb1D1sj1td7o1_250,19037,1 8903,FRAMEQA16765,car,what is skidding around the corner on a race track?,tumblr_nrcentF2yy1unyhx2o1_400,76890,0 8904,FRAMEQA30480,three,how many young men are looking at each other against a backdrop of a blue sky?,tumblr_njvkcm3JBJ1u3ruqqo1_500,72438,1 8905,FRAMEQA32253,sink,where is the person washing a monkeys foot?,tumblr_nr28vfwkXm1uxebowo1_400,1743,3 8906,FRAMEQA1585,two,how many cats are messing with each other?,tumblr_nra8jaNWXd1ti2yzto1_1280,17735,1 8907,FRAMEQA46136,black,what is the color of the hat?,tumblr_na41taiBVK1shahvmo1_500,53180,2 8908,FRAMEQA49237,two,how many young girls are making hand and facial gestures?,tumblr_np8ku9CRtg1rtl9udo1_400,79118,1 8909,FRAMEQA28251,black,what is the color of the hair?,tumblr_nkmwl1qv0i1upp2a7o1_250,27221,2 8910,FRAMEQA40497,skateboard,what is the man riding on the street?,tumblr_ngrkolWs8D1qakqfso1_400,83164,0 8911,FRAMEQA15637,rabbit,what is eating grass inside the cage?,tumblr_nfoh2z9C1M1u3ads9o1_250,14265,0 8912,FRAMEQA41015,black,what is the color of the glasses?,tumblr_neycl1cubc1qicrrfo1_250,9902,2 8913,FRAMEQA21344,gorilla,what is hitting and almost breaking the glass?,tumblr_nr45wgSapM1uaujqao1_400,64873,0 8914,FRAMEQA32865,two,how many guys roll around on the grassy ground?,tumblr_nnjk2xnlKE1uuqdooo1_250,47155,1 8915,FRAMEQA52518,cat,what is bouncing around the room and hits the wall?,tumblr_ngv9m5pOMl1slj978o1_400,37576,0 8916,FRAMEQA39371,car,what is driving along the concrete road beside some grass?,tumblr_neend692r31u25ovvo1_400,63543,0 8917,FRAMEQA44867,white,what is the color of the tuft?,tumblr_nco71ciDG91twtnevo1_250,15456,2 8918,FRAMEQA13478,two,how many people are laying in the bed and are kissing?,tumblr_nckla3gUyG1t7an45o1_500,100571,1 8919,FRAMEQA39628,car,where is the young lady signing?,tumblr_ngmbd5Mgbo1u5la57o1_500,60757,3 8920,FRAMEQA34946,cat,what is hiding on the flower pot with a hand touching?,tumblr_njw2gle3ek1u8uroco1_400,68448,0 8921,FRAMEQA11340,star,"what dressed in dark clothing and long , black leather trench coat?",tumblr_n9it4hQnrt1sl5c6po1_250,24428,0 8922,FRAMEQA6945,two,how many men are holding their breaths and one spits on the other?,tumblr_nhaz8iK79E1tn3rq6o1_400,61450,1 8923,FRAMEQA20209,black,what is the color of the hair?,tumblr_nbhwxgPSVu1sntpr0o1_400,29714,2 8924,FRAMEQA33688,red,what is the color of the shirt?,tumblr_ndkgi9WxPa1te83nuo1_250,1770,2 8925,FRAMEQA39353,red,what is the color of the shirt?,tumblr_nbisiy2pff1tkh8ago2_250,2338,2 8926,FRAMEQA39116,two,how many lovers finally met and looks very happy?,tumblr_np6641Fv5D1rg2wrpo1_250,13352,1 8927,FRAMEQA28028,garage,where is the man performing?,tumblr_nd39gezYGY1ttgu7yo1_400,61218,3 8928,FRAMEQA13077,room,what are two men entering with one?,tumblr_nqtbxhIBN81u8bjw8o1_250,24027,0 8929,FRAMEQA33023,divers,what is photographing the large school of fish?,tumblr_n9gg32YmTl1sjcycuo1_250,76819,0 8930,FRAMEQA41836,keyboard,what does the man play while singing?,tumblr_nkobmrxOqy1u8s5muo1_400,46617,0 8931,FRAMEQA47770,bicycle,what does the woman pedal while wearing a tiger print scarf?,tumblr_ndcf6u3qah1rd87k4o1_250,13573,0 8932,FRAMEQA13674,car,what are three men polishing?,tumblr_nqsb78BSRH1u03tmro1_400,76894,0 8933,FRAMEQA14761,room,where is the man standing and making a face?,tumblr_n8ysaeQLZy1sleo2do1_500,20658,3 8934,FRAMEQA30738,black,what is the color of the suit?,tumblr_ndalydtPUu1u12owmo1_500,87212,2 8935,FRAMEQA42436,fish,what is the bird hunting and grabs?,tumblr_naiwug6sJp1slwrsuo1_400,24088,0 8936,FRAMEQA28295,machine,what is working over the target on a table?,tumblr_nkr7dew1PD1qfozfoo1_500,60586,0 8937,FRAMEQA51694,two,how many women are glancing over at each other?,tumblr_nk15pvmV3m1qzb52xo1_400,29669,1 8938,FRAMEQA38447,horse,what is pooing on the woman 's head?,tumblr_nb3gfrf4JY1tatohao1_400,39114,0 8939,FRAMEQA38681,tie,what is the man looking into a mirror and fixing?,tumblr_nk5andAo8C1tleghwo1_500,16997,0 8940,FRAMEQA15046,cars,what slowly drove through the parking deck?,tumblr_nd11cdPFVQ1s1cmjio1_400,96948,0 8941,FRAMEQA14743,guitar,what does the guy sing and plays into a microphone?,tumblr_nkppl4d1vF1u6m0glo1_250,26093,0 8942,FRAMEQA12507,two,how many armed guys are getting out of the car?,tumblr_nc2h0evKgf1qbbmg6o1_500,96517,1 8943,FRAMEQA12013,one,how many man in black play 's ukulele and sings into a microphone while another dances?,tumblr_nqzqaupSSA1u96zdso1_500,70130,1 8944,FRAMEQA35375,drink,what is the woman drinking and doing a waving motion in front of her mouth?,tumblr_nok04gJ0dF1ssgyoro1_250,14757,0 8945,FRAMEQA7555,two,how many girls are making the toast with each other?,tumblr_nqw1d49uwo1tb2ztwo1_250,80693,1 8946,FRAMEQA16293,bird,what places colored rings onto a toy placed?,tumblr_nhvz1zHlqY1slj978o1_250,27919,0 8947,FRAMEQA33730,white,what is the color of the guy?,tumblr_noikj9h4iM1uvdkzko1_400,10298,2 8948,FRAMEQA20105,cars,what are spinning around the corner on a track?,tumblr_ndelr27Acc1u0b1c1o1_400,46359,0 8949,FRAMEQA51211,toy,what is smoking the cigarette?,tumblr_ndce9hl2FS1tsn1aso1_500,34465,0 8950,FRAMEQA51077,two,how many men are looking at each other and smiling?,tumblr_n8zf8nP9hp1r8mefxo1_500,90480,1 8951,FRAMEQA11003,black,what is the color of the woman?,tumblr_nk15pvmV3m1qzb52xo1_400,29669,2 8952,FRAMEQA52324,three,how many men with masks on their heads are riding in a car?,tumblr_ndyl4209U21sabd3xo1_250,23694,1 8953,FRAMEQA6630,couch,what is the tiny puppy falling off?,tumblr_nhf9v5oufm1tjhld9o1_500,76043,0 8954,FRAMEQA46743,cat,what pulls out the drawer and looks inside?,tumblr_nephvvr7qF1tkura4o1_250,18471,0 8955,FRAMEQA49497,buttons,what is the man tapping on a wrist device?,tumblr_nb9wspZqGo1tkc9f9o1_250,16882,0 8956,FRAMEQA48543,turtle,what is on top of a stuffed teddy bear and chewing at its mouth?,tumblr_na5lfp2AsH1tn37i7o1_500,37338,0 8957,FRAMEQA40637,drums,what is the man playing before an audience?,tumblr_ni00qzptwh1radsy5o1_500,60574,0 8958,FRAMEQA41369,car,what is the man driving?,tumblr_nc78r0NrnH1rxobalo2_r1_400,34090,0 8959,FRAMEQA15544,green,what is the color of the hair?,tumblr_na1zgdH9ZR1qccipro1_400,39812,2 8960,FRAMEQA27199,white,what is the color of the skulls?,tumblr_n8vk28nV921tv6x4go1_500,68505,2 8961,FRAMEQA28677,red,what is the color of the car?,tumblr_nfflefXvpx1u25ovvo1_400,63605,2 8962,FRAMEQA30805,two,how many girls are trying to look attractive whilst hitch hiking?,tumblr_n9yr1wYMdx1r6oiiao1_500,84810,1 8963,FRAMEQA33577,piano,what is the person wearing a black outfit is playing?,tumblr_nc2723hhf91tj9d1zo1_250,38384,0 8964,FRAMEQA14107,black,what is the color of the dress?,tumblr_nra0pv48J11urj103o1_400,4244,2 8965,FRAMEQA27925,shot,what flame is moving back and forth in a circular motion?,tumblr_njyh7c2ceW1sfpwc1o1_500,58736,0 8966,FRAMEQA32953,one,how many man talks into a microphone winks eye?,tumblr_ne316p18xs1rpexmto1_500,55275,1 8967,FRAMEQA42700,room,where is the guy doing funny movements?,tumblr_nbauwunaii1tl12szo1_400,37259,3 8968,FRAMEQA15920,white,what is the color of the jersey?,tumblr_na8ib9Oyf21sy603fo1_250,8269,2 8969,FRAMEQA24761,room,where is the boy with earrings talking and walking away?,tumblr_nfrf0qcm1q1rcn2l0o1_500,87699,3 8970,FRAMEQA41276,red,what is the color of the car?,tumblr_naq0629hIq1t5ojzdo1_250,49660,2 8971,FRAMEQA42742,guitar,what is the young guy playing on a stage?,tumblr_nait93JoFa1t1hwbqo1_250,7808,0 8972,FRAMEQA20757,cat,what stares to the left and then knocks a cup over?,tumblr_njxyfpFOvW1tzhkoao1_400,1074,0 8973,FRAMEQA4893,car,what was smoking then it turned?,tumblr_nqyiresVbd1unyhx2o1_400,76911,0 8974,FRAMEQA1005,blue,what is the color of the shirt?,tumblr_nawuacXtk21ti8b6yo1_250,7703,2 8975,FRAMEQA23294,two,how many girls are posing together in the bedroom?,tumblr_n9mskz1L1d1tizn8ho1_400,30132,1 8976,FRAMEQA40620,white,what is the color of the cat?,tumblr_nqjklxflS41uz06r7o1_250,5456,2 8977,FRAMEQA27300,red,what is the color of the lipstick?,tumblr_ncnjscfPdU1slguvpo1_250,17784,2 8978,FRAMEQA37859,pipe,what is one man looking forward and other smoking?,tumblr_ni3dx3ld831rftdx0o1_250,87575,0 8979,FRAMEQA45977,two,how many men is sitting beside each other stare into each others eyes?,tumblr_nk61a04KIs1tto5o6o1_250,39549,1 8980,FRAMEQA16046,one,how many man appears to be playing drums?,tumblr_nbx8aewg0R1rbd7evo1_500,100425,1 8981,FRAMEQA11931,jacket,what are two beautiful ladies taking out?,tumblr_ng6i6uP4kE1s5svyno1_500,93850,0 8982,FRAMEQA22518,cats,what are moving on the floor of a room?,tumblr_nkqx3b5Le21sz068fo1_250,24078,0 8983,FRAMEQA28222,two,how many tams is this image of playing a game of soccer?,tumblr_njrkev4Xcm1u7q0qeo1_500,85618,1 8984,FRAMEQA27675,room,where is the man wearing black does a dance?,tumblr_ndb1a34KjI1slpywlo1_250,47009,3 8985,FRAMEQA1468,black,what is the color of the shirt?,tumblr_ncmq0cCMma1sxr88mo1_500,56007,2 8986,FRAMEQA25158,brown,what is the color of the hair?,tumblr_nbw6o5Wyrp1tv4dj3o1_250,4627,2 8987,FRAMEQA43318,rodents,what are sitting on top of a circular object?,tumblr_n8lnh1FJTf1tgkdkbo1_500,38863,0 8988,FRAMEQA13436,cat,what is the woman holding and hugging?,tumblr_ngx8i4P8R61rdm91ko1_400,32373,0 8989,FRAMEQA40805,two,how many women have the very shocked look on their faces?,tumblr_nd7lyk28OJ1qdtwtzo1_250,26072,1 8990,FRAMEQA40465,wheel,what does the man spin?,tumblr_nbfms5bNhL1s3lrg5o1_400,33329,0 8991,FRAMEQA39049,orange,what is the color of the juice?,tumblr_nh777pWSdg1r9qdkno1_400,41257,2 8992,FRAMEQA42725,bed,where is the woman having a nightmare?,tumblr_nqh1cwf6xD1rimengo1_400,78809,3 8993,FRAMEQA8109,swords,what is the floating person in black clothing holding?,tumblr_nqspfnDHiF1rsp6cpo1_400,19148,0 8994,FRAMEQA13826,two,how many women in bikinis are giving each other a high five?,tumblr_nodi2rLQXk1tselino1_400,25780,1 8995,FRAMEQA29578,phone,what is the girl sitting next to a boy and she pulls out of his ear to talk to him?,tumblr_n9ec7gVPmi1r1e6f9o1_500,67554,0 8996,FRAMEQA12274,glasses,what is the man wearing in front of the lady?,tumblr_nr96lqiPla1u4e9dho1_500,99905,0 8997,FRAMEQA33365,black,what is the color of the dog?,tumblr_naq0fyOyiC1rj38k8o1_400,1318,2 8998,FRAMEQA38964,tie,what is the young man rubs his stomach under is?,tumblr_nrk1dlRO9H1uanc3bo1_250,6551,0 8999,FRAMEQA51256,microphone,what is the man on stage holding and rubs his lips?,tumblr_ncimxmZUSy1s9ih6zo1_400,35664,0 9000,FRAMEQA52337,one,how many student flies the paper from his desk to his neighbor 's desk?,tumblr_ndlqzmdkNA1tgetb4o1_400,88410,1 9001,FRAMEQA26194,white,what is the color of the dress?,tumblr_ndgay9vIw91tlmnxxo1_250,303,2 9002,FRAMEQA23539,green,what is the color of the uniform?,tumblr_nnkcdaEQSZ1r8c7bzo1_400,53096,2 9003,FRAMEQA37385,gown,what is the woman wearing?,tumblr_lr2avokSCq1r2btt4o1_500,52484,0 9004,FRAMEQA22326,bow,what did the man pull?,tumblr_nnk25weMH51uu9a08o1_250,81379,0 9005,FRAMEQA32767,car,"what is chasing another car , both speeding down the road?",tumblr_nhxiwtAC4Q1u7itf7o1_500,96891,0 9006,FRAMEQA28217,black,what is the color of the outfit?,tumblr_nkv4na6kW51tmecz1o1_500,67886,2 9007,FRAMEQA9283,two,how many guys are sitting there?,tumblr_nktkib4aFf1ql1a7vo1_500,76225,1 9008,FRAMEQA23204,gray,what is the color of the shirt?,tumblr_nccba1gU461s95n00o1_250,1831,2 9009,FRAMEQA42795,library,where are the young man and a young woman kissing?,tumblr_nl3ljyQlT21u34u6eo1_500,89062,3 9010,FRAMEQA13485,house,"where are the guys dancing , people watch them?",tumblr_nhx280JEg61suduoyo1_400,22059,3 9011,FRAMEQA50558,office,where is the woman dancing while men are fighting behind her?,tumblr_ncza8xIcHW1tuzm6po1_400,65138,3 9012,FRAMEQA32082,guitar,what is the man playing while standing?,tumblr_ng6marczEE1rvy5gto1_500,77810,0 9013,FRAMEQA19526,white,what is the color of the mask?,tumblr_nce2gxmBmk1tvjj7co1_500,59532,2 9014,FRAMEQA1660,red,what is the color of the jacket?,tumblr_nkm848NqkM1tec7too1_250,43778,2 9015,FRAMEQA39146,rabbit,what is the man holding and turning around in his chair?,tumblr_n9q0wbAvnk1slorlzo1_400,97560,0 9016,FRAMEQA35549,cat,what is being fondled tenderly by the man?,tumblr_nk5yoq9wXv1s6zpepo1_250,78462,0 9017,FRAMEQA611,two,how many men are speaking to each other in a black and white color scheme?,tumblr_ngsvtbbPBQ1u62vgyo1_400,68608,1 9018,FRAMEQA27420,three,how many men are swinging light sabers at each other?,tumblr_nlxzyxkQLW1u52c2xo1_250,23633,1 9019,FRAMEQA36156,dog,what is carrying a ball drops it to pick up another?,tumblr_n8s0xxT2ig1ssgyoro1_400,56060,0 9020,FRAMEQA52458,mirror,where is the woman looking and touching her hair?,tumblr_nerzflfMNY1qdoqvio1_500,47911,3 9021,FRAMEQA794,car,where is the girl yelling?,tumblr_nh2001EMsX1u1s6txo1_400,11369,3 9022,FRAMEQA33457,red,what is the color of the carpet?,tumblr_nhrcbnhiHH1u7yulho1_400,95428,2 9023,FRAMEQA18475,two,how many skateboarders are doing flips on a ramp?,tumblr_nqxxwoxpjy1rv5gmso1_400,77195,1 9024,FRAMEQA50292,belts,what is the man in a construction hat wearing?,tumblr_nbfo31Hlh81qhya5no1_250,7657,0 9025,FRAMEQA42309,two,how many guys listen to music and bang their heads?,tumblr_neyn5fQWKo1r3ydxho1_1280,57540,1 9026,FRAMEQA28230,white,what is the color of the shirt?,tumblr_nczwtwNRH01qes0v0o1_400,64575,2 9027,FRAMEQA19464,dog,what is laying down on the blanket?,tumblr_n9xv6aqQ5A1qmgppeo1_250,38221,0 9028,FRAMEQA34707,two,how many men are laughing as the third looks on?,tumblr_na8yacMvXl1t0ojyvo1_250,25575,1 9029,FRAMEQA30351,cars,what are racing down the track at a race?,tumblr_noh6zccJke1unyhx2o1_400,78360,0 9030,FRAMEQA19057,snowboard,what is she riding on a green ramp?,tumblr_njuea8VOv61u636iqo1_400,66970,0 9031,FRAMEQA15088,butt,what are two men embracing each other and one of them grabs?,tumblr_ney67x8wtj1qememvo1_400,22473,0 9032,FRAMEQA14909,two,how many men are wrestling each other in a ring?,tumblr_nh65gpkbU21u6wi1io1_400,34642,1 9033,FRAMEQA30907,guitar,what is the man in the white shirt playing?,tumblr_njs6ceesFH1tll6f9o1_400,67344,0 9034,FRAMEQA34523,red,what is the color of the lipstick?,tumblr_nd545e1wuK1rjj4bjo1_400,33013,2 9035,FRAMEQA28450,white,what is the color of the shirt?,tumblr_nfjv24ooua1u3f59ho1_400,7872,2 9036,FRAMEQA22623,four,how many men on stage are holding shoulders and moving together?,tumblr_nd6lx47Ndj1slrp89o1_400,45369,1 9037,FRAMEQA5703,three,how many men are wearing sunglasses?,tumblr_n9f1hcMqsn1snp73jo1_500,45318,1 9038,FRAMEQA15168,chair,where is the animal sitting?,tumblr_njuw5ruVDR1unixz7o1_400,40086,3 9039,FRAMEQA42518,bathroom,where are the group of men falling?,tumblr_nguxxvuPLQ1s6sj31o1_400,27403,3 9040,FRAMEQA47280,room,what is the man yelling and leaving?,tumblr_no3s4rbT7k1uv5902o1_400,65845,0 9041,FRAMEQA7230,fox,what is being chased away by the cat?,tumblr_ni2r0l3BTc1slj978o1_400,49338,0 9042,FRAMEQA26488,mirror,where is the girl with the long dark hair smiling?,tumblr_ncvemamh3r1tugq3go1_400,33041,3 9043,FRAMEQA40747,catapult,what launches an object into the air?,tumblr_nffuk46ddi1s3m10do1_250,21033,0 9044,FRAMEQA23278,two,how many people are talking and nodding to each other?,tumblr_nk4spuzkLx1u3aa5ho1_500,99689,1 9045,FRAMEQA39341,flower,what is the little girl receiving from a man?,tumblr_nbxc1beSqb1sb7pz4o1_400,42519,0 9046,FRAMEQA36093,red,what is the color of the guy?,tumblr_nksqcq3SSs1s0taylo1_400,22924,2 9047,FRAMEQA21516,box,what is the woman holding and throwing something behind her?,tumblr_n9cswzW8tA1t5ojzdo1_250,43794,0 9048,FRAMEQA30686,vehicle,where is the cute couple sitting?,tumblr_nnyjmeHAg51upqmhpo1_250,39679,3 9049,FRAMEQA19451,snack,what is the young man in a white shirt eating?,tumblr_nfzln4hPwu1u4lqc0o1_400,52384,0 9050,FRAMEQA29213,ammunition,what is the person loading into a part of a gun?,tumblr_nkwi7i4BC51rftdx0o1_400,92471,0 9051,FRAMEQA27286,ball,what hits the boy holding a box of sports equipment?,tumblr_n9p1fyGr2W1tixixoo1_400,60268,0 9052,FRAMEQA31910,animal,what is the man folding with his hands?,tumblr_ndyr8rSi4d1to0jsbo1_250,19082,0 9053,FRAMEQA51485,potatoes,what does the woman throw onto a man 's plate?,tumblr_nk08syYSt71te94myo1_400,18540,0 9054,FRAMEQA36592,red,what is the color of the top?,tumblr_na3ertI5uM1tv46ebo1_400,7481,2 9055,FRAMEQA28923,phone,what is the woman holding up to her mouth?,tumblr_nkc48iNxXB1uodfiso1_500,72935,0 9056,FRAMEQA1039,three,how many kittens cuddle together in the small container?,tumblr_n9g5efSoWD1rsxypwo1_400,22459,1 9057,FRAMEQA5657,lemur,what is bouncing off the walls?,tumblr_nhxu3kMb2e1s71nvbo1_400,40521,0 9058,FRAMEQA30586,two,how many men are sitting and drumming their hands on their legs?,tumblr_nr9zjlheTF1tua54co1_400,62561,1 9059,FRAMEQA26862,four,how many men are recorded while making faces?,tumblr_n9soht3hXu1ty4429o1_500,91209,1 9060,FRAMEQA7979,cigarette,what is the woman in the mask smoking?,tumblr_ngps4f7xik1smwx64o1_500,48187,0 9061,FRAMEQA271,bathroom,where is the boy standing and smiling?,tumblr_nfr6feQ1ii1smz8r1o1_400,54085,3 9062,FRAMEQA51243,cat,what does this show prancing around a room trying to catch a light dot?,tumblr_ncql995UBl1u073goo1_400,28410,0 9063,FRAMEQA52766,hat,what is the girl wearing and smiling?,tumblr_ncr9ubPJfK1ri7ltoo1_500,73477,0 9064,FRAMEQA2675,butterfly,what is flying in the glass?,tumblr_nk90fqhAgg1u1k55co1_500,75410,0 9065,FRAMEQA37430,blue,what is the color of the shirt?,tumblr_nkvahg5EtM1upd83yo1_250,21698,2 9066,FRAMEQA41089,four,how many people is this sitting at a booth in a restaurant?,tumblr_nc59rv0l3t1r7oaaro1_400,65406,1 9067,FRAMEQA36561,dog,what is taking very small steps forward and then back?,tumblr_nb1mrl3e4N1slj978o1_250,71461,0 9068,FRAMEQA36959,dog,what is licking water from a faucet in the sink?,tumblr_na7ortnyJB1s0nx6go1_100,4838,0 9069,FRAMEQA39580,t-shirt,what is the young girl mad and cutting up?,tumblr_nfgkpzxpv01qclz9ho1_1280,99900,0 9070,FRAMEQA25346,mountain,what does the skier competently navigate?,tumblr_nlj7o4Z6xO1tsonebo1_400,76040,0 9071,FRAMEQA29646,two,how many race cars are speeding around the corner on a race track?,tumblr_npgmilwWnF1tx8mn0o1_400,91034,1 9072,FRAMEQA45925,booth,where is the woman shaking her hair?,tumblr_ncqkoicsBL1qhw2j5o1_500,50686,3 9073,FRAMEQA9796,cat,what is staring at something with wide eyes?,tumblr_nl0oqeBJLk1qzs91yo1_1280,27459,0 9074,FRAMEQA7327,red,what is the color of the top?,tumblr_n9x7mf8kmY1rl9v18o1_400,11731,2 9075,FRAMEQA47086,two,"how many guys are walking off to the side , while a third moves forward and dances?",tumblr_nr7z61zzSu1shch57o1_500,22514,1 9076,FRAMEQA3007,drink,what is being poured from one bottle to another?,tumblr_nfvpbzWgrL1satsh4o1_250,564,0 9077,FRAMEQA26551,red,what is the color of the box?,tumblr_nfe07vBmKZ1tg9gzmo1_400,48521,2 9078,FRAMEQA21819,red,what is the color of the couch?,tumblr_nd6nvw51nP1rykobjo1_400,54023,2 9079,FRAMEQA12606,car,what is driving down the main street?,tumblr_netcx4DbEN1u25ovvo1_400,63409,0 9080,FRAMEQA11377,two,how many men dressed in blue shirts are talking?,tumblr_ncr8j0oYR81r44co8o1_250,47782,1 9081,FRAMEQA22570,red,what is the color of the face?,tumblr_ndnvv6fuwM1ti93qgo1_400,30026,2 9082,FRAMEQA45058,piano,what is the man playing while looking someone or something?,tumblr_npc32rGh621uulfsxo1_500,59234,0 9083,FRAMEQA29928,room,where is the guy with cap crouched down?,tumblr_na49quYRyM1rblf33o1_500,19830,3 9084,FRAMEQA39925,room,where is the young woman dressed?,tumblr_nnk57sGzUF1tjaw8no1_500,86359,3 9085,FRAMEQA40540,two,how many men shake hands and one man points at the other?,tumblr_nflzmwpuPQ1tigbm3o1_400,59344,1 9086,FRAMEQA42832,pictures,what is the man taking at an award show?,tumblr_n9h26nRNV01rfyy6oo1_500,62666,0 9087,FRAMEQA13518,three,how many men are sitting on the boat moving along some water?,tumblr_n9orznkSQa1sorauco1_400,79628,1 9088,FRAMEQA4225,black,what is the color of the eyes?,tumblr_naezgmYC1N1tjg4vgo1_250,16087,2 9089,FRAMEQA22504,bicycle,what is the man riding down the road without holding onto the handles?,tumblr_npwsugC09s1uxqtu9o1_250,48548,0 9090,FRAMEQA4742,phone,what is the girl with the long black hair showing off?,tumblr_nk132aAxXT1tg9gzmo1_500,90841,0 9091,FRAMEQA36408,puppy,what is laying on the blanket?,tumblr_nhifdvtMsa1tjhld9o1_250,21175,0 9092,FRAMEQA47611,monkey,what sits while the person washes its body?,tumblr_nr28vfwkXm1uxebowo1_400,1743,0 9093,FRAMEQA36125,towel,"what does the young person run through their hair , then their hand and a slogan appears?",tumblr_nay84a39Un1tgr5e4o1_100,35691,0 9094,FRAMEQA24730,black,what is the color of the playing?,tumblr_n8wqpyVYzD1ryp605o1_1280,63237,2 9095,FRAMEQA6482,skateboard,what is the girl riding down the street?,tumblr_nhuiyeJfZ11u7yxjso1_250,77779,0 9096,FRAMEQA10993,chair,where is the man wearing black sits and it falls over?,tumblr_nnwfolO27d1tmflpjo1_500,58076,3 9097,FRAMEQA11250,white,what is the color of the dog?,tumblr_nfx0k7vKCu1u4cx5ko1_400,64979,2 9098,FRAMEQA7875,car,where are two men going?,tumblr_nevu1x7R4F1tzeksuo1_400,67414,3 9099,FRAMEQA15384,red,what is the color of the dress?,tumblr_nk2cflszPt1u04jkto1_500,65480,2 9100,FRAMEQA23606,white,what is the color of the girl?,tumblr_n941xboVDa1sdnal9o1_500,93820,2 9101,FRAMEQA33047,window,where is the cat sitting and them jumps out onto a table?,tumblr_nbadfkbZvN1tl0ko9o1_400,38032,3 9102,FRAMEQA31133,two,how many people are kissing each other on the mouth?,tumblr_ne2t08LZcs1s9578so1_250,5047,1 9103,FRAMEQA12049,chair,where does the heavily made up man with pointed ears spin around?,tumblr_ncq2bdiskz1qayc5ro1_400,34906,3 9104,FRAMEQA52984,white,what is the color of the man?,tumblr_nbqyccttfr1t6zd1xo1_500,51027,2 9105,FRAMEQA12454,mountain,what does the skier come down covered in snow?,tumblr_na5aodi5wy1tph724o1_400,64126,0 9106,FRAMEQA1642,band,what is playing the song and singing?,tumblr_n9lft7vTIh1r7tsclo1_400,61378,0 9107,FRAMEQA47217,horse,what is the woman riding around a stable?,tumblr_n9wubdPzBI1ttu94ro1_400,40358,0 9108,FRAMEQA850,black,what is the color of the clothing?,tumblr_n936g6qOmM1tfvq31o1_500,72963,2 9109,FRAMEQA23311,two,how many guys are dressed as comic book characters in the street?,tumblr_nq1kcyjyHi1uwli57o1_1280,95412,1 9110,FRAMEQA32102,firecrackers,what is someone shooting at two men running in the snow?,tumblr_nq60pmn4yQ1qzvub2o1_400,74591,0 9111,FRAMEQA22001,red,what is the color of the earring?,tumblr_nb5pvb0KQb1sov9opo1_500,62369,2 9112,FRAMEQA12069,cigarette,what is the man smoking and looking down?,tumblr_nkbu9cuFSt1tfe5fyo1_250,19499,0 9113,FRAMEQA49250,white,what is the color of the kid?,tumblr_ngabmmLBSp1u5puiqo1_250,20871,2 9114,FRAMEQA23930,ribs,what is the man talking eating and nodding?,tumblr_njvociiGrl1u2vubao1_400,82737,0 9115,FRAMEQA29171,purple,what is the color of the shirt?,tumblr_niq9e6Q1aC1u9nxeno1_250,84579,2 9116,FRAMEQA13285,two,how many fingers is the young man moving around on each hand?,tumblr_nck1koAUcW1tm0ao8o1_250,15495,1 9117,FRAMEQA18103,green,what is the color of the shadow?,tumblr_nebni51x4q1u1209ao1_250,14951,2 9118,FRAMEQA20169,road,where is the man standing while cars are dodging him until he is finally hit?,tumblr_nba6q7knEq1t7jda2o1_400,80850,3 9119,FRAMEQA22435,door,what is the girl pushing someone into a closet and shutting?,tumblr_nd51f3SjEw1u0k0t5o1_400,81286,0 9120,FRAMEQA42667,jacket,what is the woman adjusting?,tumblr_ndrsrjjRsF1tx3i7qo1_400,65633,0 9121,FRAMEQA14966,two,how many men in white outfits were demonstrating karate?,tumblr_n9e3fpyjjr1sq1mmgo1_400,60560,1 9122,FRAMEQA32329,white,what is the color of the room?,tumblr_n9tuqn05ec1rd0civo1_400,59139,2 9123,FRAMEQA18716,ball,what are the man and woman riding in a car and spitting back and forth at each other?,tumblr_n97ntjwFce1qaeqj9o1_250,43796,0 9124,FRAMEQA15,fish,what is going inside the hole?,tumblr_nay1v5Pvpi1qg0cppo1_250,19061,0 9125,FRAMEQA13435,puppy,what is crawling toward something?,tumblr_n95d2oPwhy1suyqwko1_400,56086,0 9126,FRAMEQA28985,suit,what is the man in sunglasses buttoning up?,tumblr_noibtowlNT1tum256o1_500,48578,0 9127,FRAMEQA51909,cat,what is resting and is nibbling on its own tail?,tumblr_na8ztgwPRU1tj8blpo1_250,11564,0 9128,FRAMEQA25330,pipe,what is the man wearing a white hat is smoking?,tumblr_nejj0xVfBd1s9dtupo1_400,29070,0 9129,FRAMEQA46367,cat,what is the woman presenting a show with a cat and walks away from her?,tumblr_nhek07vQZc1te94myo1_400,23862,0 9130,FRAMEQA7825,briefcase,what is the man wearing a dark colored suit is holding?,tumblr_npjopzbz3k1qz8lpeo1_250,42542,0 9131,FRAMEQA19368,brown,what is the color of the dog?,tumblr_nor474fCEo1slwrsuo1_250,36784,2 9132,FRAMEQA1200,microphone,what are three women dancing and one is holding?,tumblr_ng8b6xSueH1u5s6sso1_500,33941,0 9133,FRAMEQA46886,car,"where are the man and a woman , the man spills milk over his face?",tumblr_nqzvhbSCmZ1uzxfpso1_400,64234,3 9134,FRAMEQA24570,car,where is the man speeding down the road and screaming?,tumblr_nfj9394H2n1r8d2fho1_1280,94316,3 9135,FRAMEQA10957,coat,what do two people walk and the one moves to the side and grabs his guns?,tumblr_nca3neyJbm1retkdpo1_500,99129,0 9136,FRAMEQA43083,car,what is making the drift on a track?,tumblr_nitvmqOok11r05qsbo1_400,70773,0 9137,FRAMEQA4314,one,how many horse does there 's running down a path in mountains?,tumblr_nhlvobrJMp1tln8qzo1_400,65403,1 9138,FRAMEQA33771,bed,where did the man in a brown coat stand?,tumblr_niwdo4WvDN1u967xao1_500,72906,3 9139,FRAMEQA35529,rat,what is playing on the man 's finger?,tumblr_nh3wqiYVkG1tatohao1_400,39479,0 9140,FRAMEQA11863,two,how many men are eating popcorn on the couch?,tumblr_nkvhjp6WO71sj3qcdo1_250,19312,1 9141,FRAMEQA9121,white,what is the color of the van?,tumblr_nebvi7SFVZ1twoe5do1_400,50108,2 9142,FRAMEQA5908,three,how many men are giving an interview in to mics?,tumblr_nbs0eegTdx1sdbrm9o1_400,66226,1 9143,FRAMEQA20926,black,what is the color of the jacket?,tumblr_njvn0hikNA1u2b6voo1_500,82324,2 9144,FRAMEQA23300,brown,what is the color of the lady?,tumblr_nnoyv4nNHR1qfh2h8o1_250,37926,2 9145,FRAMEQA11826,steps,what did the person in a white coat run down and into a car?,tumblr_nbejqsLg3q1r5hca9o1_400,53913,0 9146,FRAMEQA50303,helmet,what is the boy wearing while moving his eyes?,tumblr_ncz46sP1A21rujq2co1_500,17200,0 9147,FRAMEQA24714,guitar,what is the man playing a tambourine and another man is playing?,tumblr_nax6k52cmx1tzzyazo1_400,30489,0 9148,FRAMEQA3229,two,how many dogs sit and move their heads back and forth?,tumblr_n8pom6qgCR1tgl4z1o1_400,75583,1 9149,FRAMEQA7472,goat,what is getting on the man back?,tumblr_ndn0rnXruV1tdmffyo1_250,31047,0 9150,FRAMEQA25781,black,what is the color of the coat?,tumblr_npxgumJwdE1ros9sso1_250,2010,2 9151,FRAMEQA48695,car,what spins off the race track with lots of smoke?,tumblr_nadk481D381tx8mn0o1_400,53118,0 9152,FRAMEQA8558,two,how many men are sitting beside each other on a couch and one looks at the people behind him?,tumblr_nq6ycnMUhD1u2bf8no1_500,75993,1 9153,FRAMEQA25024,hat,what is the man wearing with a pike crown on it?,tumblr_ncy21yF0Kz1sn0ag3o1_400,12421,0 9154,FRAMEQA10349,two,how many guys are looking at the computer and laughing hysterically?,tumblr_ncdgwaJUcv1tc19umo1_400,38005,1 9155,FRAMEQA15610,sunglasses,what is the man wearing and smiling and moving his head?,tumblr_njn0g3ctx41unxzjvo1_500,68635,0 9156,FRAMEQA47262,workshop,where is the boy with a robotic hand?,tumblr_nh0xoaIiwF1twc1jlo1_250,15110,3 9157,FRAMEQA17917,bicycle,what is the woman crashing into a motorcycle while crossing the street?,tumblr_nc78tkTV3I1tmnu7to1_500,84107,0 9158,FRAMEQA52447,glasses,what is the man with long hair touching?,tumblr_naxi2a5emm1svos5ho1_500,43546,0 9159,FRAMEQA10346,room,where is the woman singing?,tumblr_np6tx8PWjl1r3mfwoo1_500,59019,3 9160,FRAMEQA48227,red,what is the color of the ball?,tumblr_nge2knoRgA1u5wl66o1_400,46808,2 9161,FRAMEQA25091,street,where is the man wearing black clothing is dancing?,tumblr_nklfp2TT031t0qj4zo1_400,64942,3 9162,FRAMEQA7112,two,how many boys are kissing each other?,tumblr_namh3klriu1tk3dj9o1_500,83996,1 9163,FRAMEQA41490,green,what is the color of the shorts?,tumblr_ncdtu2RWrh1tfn4y9o1_250,16129,2 9164,FRAMEQA51111,two,how many hands are hugging the naked man who is wearing a shirt?,tumblr_nhki3wxzWJ1rftdx0o1_500,71040,1 9165,FRAMEQA34492,car,where is the man leaning in to kiss a woman?,tumblr_nnyjmeHAg51upqmhpo1_250,39679,3 9166,FRAMEQA27259,two,how many hands of different colors are holding hands?,tumblr_nps8vbPpXA1urlrpuo1_400,12300,1 9167,FRAMEQA11037,yellow,what is the color of the man?,tumblr_nolojmhtzU1sqc2mro1_500,54557,2 9168,FRAMEQA19017,two,how many boys are sitting on the couch?,tumblr_ng329lAqkq1sh2a17o1_400,64842,1 9169,FRAMEQA29968,two,how many men are folding something and are speaking?,tumblr_nqrag9xM6l1qi27q9o1_250,40814,1 9170,FRAMEQA22299,white,what is the color of the t-shirt?,tumblr_natmkzuoGH1sfvn09o1_500,65283,2 9171,FRAMEQA5394,red,what is the color of the shirt?,tumblr_nqg1r8MD9C1tz9jaqo1_250,14490,2 9172,FRAMEQA7450,two,how many men are looking at each other with blank faces?,tumblr_nf8njyfxZm1rksztxo1_500,94977,1 9173,FRAMEQA47365,two,how many sad men are hugging in the room?,tumblr_nfu029ChXA1twvdtso1_250,51823,1 9174,FRAMEQA6433,white,what is the color of the woman?,tumblr_ngl1a42vds1s2yagbo1_250,713,2 9175,FRAMEQA20834,blue,what is the color of the frisbee?,tumblr_na4o38uibi1sw33zno1_400,64774,2 9176,FRAMEQA37371,lipstick,what is someone applying to an oriental woman?,tumblr_n9kithPB8s1twwysgo1_400,45757,0 9177,FRAMEQA15824,cigarette,"what is the guy wearing a jacket , is sitting down and smoking?",tumblr_n9rgn7Eq4c1s6g9rgo1_400,57441,0 9178,FRAMEQA29874,stick,what is the man in the forest swinging?,tumblr_ne6crjyvCg1sa0lndo1_500,76736,0 9179,FRAMEQA16163,two,how many men in a group are sliding into each other?,tumblr_n95kw5hm8o1tfgg7jo1_500,102010,1 9180,FRAMEQA3998,black,what is the color of the shirt?,tumblr_nceckcd2e91tqr8yro1_400,42995,2 9181,FRAMEQA27647,red,what is the color of the hair?,tumblr_nby6co3wog1snxuk3o1_250,94301,2 9182,FRAMEQA15913,glove,where does the baseball catch a baseball?,tumblr_n9rbgzcFRe1rs467vo1_400,53938,3 9183,FRAMEQA46723,cat,what is sitting next to the box when a white mouse comes out of a hole in the box?,tumblr_nkoj4fayWP1slj978o1_400,38644,0 9184,FRAMEQA49266,instrument,what does the guitarist play on stage?,tumblr_nhmxyoTez41ruh5zyo1_400,44360,0 9185,FRAMEQA29154,car,what raises into the air as a black car spins under it?,tumblr_nf8ydiZBPJ1ti9lxjo1_500,68244,0 9186,FRAMEQA25162,rabbit,what is eating some green leaves on the carpet?,tumblr_ndcvis8jts1tbcrm5o1_250,3820,0 9187,FRAMEQA50588,black,what is the color of the woman?,tumblr_nk98vlIOFW1u8hiixo1_500,70591,2 9188,FRAMEQA13765,sweater,what is the young boy taking off?,tumblr_n9mtd8IOiG1t0ojyvo1_250,12897,0 9189,FRAMEQA38973,puppies,what are mimicking the toy falling?,tumblr_nnzlhp8DpG1tgouwlo1_500,38497,0 9190,FRAMEQA24673,brown,what is the color of the hair?,tumblr_nht2snWzRa1u5imt4o1_500,87030,2 9191,FRAMEQA11169,cane,"what is the man walking through a museum , dressed in a suit and carrying?",tumblr_nb8fuhJiTs1trjxujo1_250,2113,0 9192,FRAMEQA40356,black,what is the color of the man?,tumblr_no14zzwIRx1u76qh3o1_250,7031,2 9193,FRAMEQA19033,two,how many officers are arresting the black man on the side of the road?,tumblr_nd4l35ZHWA1sht3fmo1_250,25271,1 9194,FRAMEQA25940,cage,what is the shark swimming around?,tumblr_nbsow8trHJ1tlsvejo1_400,70700,0 9195,FRAMEQA51983,red,what is the color of the car?,tumblr_nnokjvV7Wq1uuvmpjo1_250,50472,2 9196,FRAMEQA27057,cat,what is the man throwing at another man?,tumblr_nqgrtb47iN1tb0ub4o1_400,32115,0 9197,FRAMEQA14374,two,how many women with short hair are laughing and smiling?,tumblr_ncvw02a1fQ1t9h1yfo1_400,50141,1 9198,FRAMEQA36948,two,how many boys are sitting next to each other?,tumblr_nc8usq5bxK1t6ckbko1_400,57386,1 9199,FRAMEQA50578,crow,what is walking on the wooden floor inside and being followed around by a person?,tumblr_nrac5ifOWX1utou2jo1_400,62192,0 9200,FRAMEQA26662,white,what is the color of the shirt?,tumblr_nkr6x3qfJK1tewds3o1_500,39331,2 9201,FRAMEQA25735,gray,what is the color of the suit?,tumblr_nfj56pBdEU1r9qhhio1_400,86530,2 9202,FRAMEQA39877,mirror,"where is the woman singing , and she is dancing in a field?",tumblr_njvfu0D0re1uo2e5xo1_400,64010,3 9203,FRAMEQA8465,ashtray,where is the man 's cigarette sitting idol?,tumblr_nklxqvsSIg1t3jcsio1_400,75852,3 9204,FRAMEQA37202,hallway,"where is the young woman standing , looking sad?",tumblr_nddhjyJeIU1qfvfmto1_500,72358,3 9205,FRAMEQA157,two,how many people are swimming under the water?,tumblr_nais2wBIx11s71nvbo1_500,61166,1 9206,FRAMEQA32036,two,how many men with black shirt are smiling?,tumblr_n9pbjfB81W1twvnifo1_250,46887,1 9207,FRAMEQA17528,car,what is speeding down the road and the tire is spinning fast?,tumblr_nbo3syb9wg1rhy09eo1_500,98035,0 9208,FRAMEQA31175,green,what is the color of the hood?,tumblr_ndfm7qADvQ1ste7mro1_250,3717,2 9209,FRAMEQA5850,white,what is the color of the girl?,tumblr_nbhwxgPSVu1sntpr0o1_400,29714,2 9210,FRAMEQA8698,cat,what are sitting on the wall wags its tail?,tumblr_np7ctpyie61r7t178o1_500,52859,0 9211,FRAMEQA25106,black,what is the color of the hair?,tumblr_nhtce8TxcX1u7genpo1_500,5913,2 9212,FRAMEQA27976,chair,where is the woman hit with a bucket of water?,tumblr_nao4codJpf1tdnw9bo1_400,15264,3 9213,FRAMEQA15986,dog,what is startled when the food bowl disappears?,tumblr_nhskwbxgar1rseg36o1_250,3286,0 9214,FRAMEQA16474,red,what is the color of the shirt?,tumblr_nfxauxAEZA1ssgk4vo1_500,65252,2 9215,FRAMEQA9101,lipstick,what did someone put on a girl and she laughed?,tumblr_na5e7cqw5L1r7w2obo1_r3_500,52541,0 9216,FRAMEQA28070,white,what is the color of the girl?,tumblr_ndrp5s99y11rjquvjo1_500,93128,2 9217,FRAMEQA34580,two,how many women are hugging next to the bed on a floor?,tumblr_n8ys4qki9V1szkw14o1_400,46094,1 9218,FRAMEQA22325,red,what is the color of the sweater?,tumblr_nc9qgxXlr31tmaii4o1_250,9515,2 9219,FRAMEQA10827,cars,what are racing around the track and one starts to go sideways?,tumblr_nk1adbX9Zu1r3mccco1_500,48587,0 9220,FRAMEQA13870,noodle,what is the guy eating?,tumblr_nnz2d7SvNE1un10nuo1_250,19568,0 9221,FRAMEQA15818,cat,what is the pig nuzzling and cleaning him off?,tumblr_npabf7wMc81tatohao1_250,36414,0 9222,FRAMEQA7357,brown,what is the color of the mustache?,tumblr_notji8LBNw1tqa3xwo1_400,34848,2 9223,FRAMEQA34446,two,how many men is holding steel bars are walking around?,tumblr_n9dkn0IQug1sl89nwo1_400,25606,1 9224,FRAMEQA36797,t-shirt,what is the young man taking off?,tumblr_nbp20daPPv1ses81bo1_250,5643,0 9225,FRAMEQA26648,three,how many people are all dancing in the room in sync?,tumblr_n5rm1eQHRE1tcnzj9o1_500,97836,1 9226,FRAMEQA21274,two,how many men is walking with costumes on the floor?,tumblr_n961ixhQyx1ttxslwo1_250,21630,1 9227,FRAMEQA7439,white,what is the color of the man?,tumblr_naha579HaB1tggah7o1_500,91224,2 9228,FRAMEQA49324,two,how many women look each other in the eyes?,tumblr_njrwofTG731u04lbzo1_500,55099,1 9229,FRAMEQA35648,cigarette,what is the man wearing a suit and smoking?,tumblr_ndc106iim91rgb5tho1_250,3308,0 9230,FRAMEQA47177,gray,what is the color of the shirt?,tumblr_nq0gax1h8I1uxtjooo1_500,68204,2 9231,FRAMEQA31667,missiles,what is the long haired woman shooting from her shirt?,tumblr_na83b5II9w1r8idi4o1_250,85709,0 9232,FRAMEQA21007,tie,what does the man with a beard loosen?,tumblr_nrf7nx6bqW1si8uq7o1_400,33298,0 9233,FRAMEQA7911,helicopter,where is the man sitting?,tumblr_noyfekqixM1sj7lv3o1_400,33877,3 9234,FRAMEQA22405,blue,what is the color of the car?,tumblr_nfowj6p4zs1u25ovvo1_400,63438,2 9235,FRAMEQA48359,hat,what is the beautiful lady with white clothes taking off while sitting?,tumblr_nbag3b30JL1ry0b5go1_400,83553,0 9236,FRAMEQA37595,suit,what is the man with short hair smirking and wearing?,tumblr_nflj4vMeEw1rjn473o1_500,26575,0 9237,FRAMEQA24875,black,what is the color of the man?,tumblr_nkz1d7Ed6a1up1p8qo1_250,10910,2 9238,FRAMEQA1025,room,where are three guys taking a picture?,tumblr_na580m6GwR1t0ojyvo1_500,94958,3 9239,FRAMEQA15632,black,what is the color of the outfits?,tumblr_nh8f4tvodl1u6g06xo1_500,100067,2 9240,FRAMEQA13343,ball,what does man catch during a football game?,tumblr_ndysqmtQga1s9fzcoo1_400,49010,0 9241,FRAMEQA29237,car,what is going through the road?,tumblr_nephlhawUk1u25ovvo1_400,63440,0 9242,FRAMEQA45497,yellow,what is the color of the car?,tumblr_nbu0bmRkFb1tya5iuo1_500,71634,2 9243,FRAMEQA46971,two,how many girls are having the conversation in a hallway?,tumblr_nk1z6y9MoU1qgw2r7o1_400,59922,1 9244,FRAMEQA26130,white,what is the color of the emblem?,tumblr_nastobJZrU1t9y9heo1_250,78743,2 9245,FRAMEQA48212,microphone,what does the woman with paint on her face smile and lifts?,tumblr_njrmo9arP31s2mg9to1_500,88169,0 9246,FRAMEQA15643,car,what drifts sideways through the snow?,tumblr_njqgugwhX21u5o1buo1_1280,57491,0 9247,FRAMEQA23384,blue,what is the color of the shoes?,tumblr_nd3uyoJnby1tgetb4o1_400,68835,2 9248,FRAMEQA44297,two,how many young men are wearing microphones and singing?,tumblr_nda84dI4On1t0ojyvo1_500,90101,1 9249,FRAMEQA29305,cat,what is the pig nuzzling and cleaning?,tumblr_npabf7wMc81tatohao1_250,36414,0 9250,FRAMEQA4859,white,what is the color of the woman?,tumblr_n9s0jqqDqU1t345owo1_500,75758,2 9251,FRAMEQA43171,black,what is the color of the hair?,tumblr_nfu7zcqXi01u4ynqeo1_500,71458,2 9252,FRAMEQA7634,two,how many young men are touching each other on a stage?,tumblr_nc3ak2Hla71rdjyr4o1_250,82631,1 9253,FRAMEQA42511,catfish,what does the man with a blue shirt catch?,tumblr_n8rex42OdN1rtdvdvo1_250,69293,0 9254,FRAMEQA41817,goat,what is this eating from a spoon?,tumblr_nhb7pgWlIn1slj978o1_500,76483,0 9255,FRAMEQA10837,dog,what is the cat attacking?,tumblr_npdmedUpvr1tyncywo1_400,25608,0 9256,FRAMEQA34606,cat,what is putting her leg on a hand?,tumblr_nku8674mFY1qcrdgyo1_250,3555,0 9257,FRAMEQA29490,cap,what is the man wearing and talking to other people?,tumblr_nkto6fCkCn1r0ia88o1_400,80125,0 9258,FRAMEQA49375,room,where are four guys joking very funny?,tumblr_nkhsufcYqd1u0fsqao1_500,89950,3 9259,FRAMEQA33349,red,what is the color of the shirt?,tumblr_ncg81lAXg91tmaii4o1_500,71467,2 9260,FRAMEQA36099,black,what is the color of the liquid?,tumblr_ngj5js922h1qezxdbo1_250,23062,2 9261,FRAMEQA35431,two,how many men with long hair and button down shirts are talking into microphones?,tumblr_ncr8j0oYR81r44co8o1_250,47782,1 9262,FRAMEQA14429,white,what is the color of the girl?,tumblr_ndcmzxaV6B1u0gj0xo1_500,54726,2 9263,FRAMEQA29046,two,how many boys are bobbing up and down?,tumblr_n8sskvyvQ71tco194o1_500,88611,1 9264,FRAMEQA23907,pan,where are some seasoned vegetables quickly cooked?,tumblr_nc0ggmHHk21tq3jd9o1_400,53160,3 9265,FRAMEQA50533,one,how many boy with curly hair is talking?,tumblr_nrdt6jdQ4C1u494rjo1_500,81207,1 9266,FRAMEQA6131,fox,what leaps into the air and falls face first into the snow?,tumblr_njq3ur8qv41unykvpo1_400,46132,0 9267,FRAMEQA42576,two,how many ballet dancers are dancing in the room?,tumblr_nknr9xW0hU1u922jno2_400,78072,1 9268,FRAMEQA35996,iguana,what does the cat tickle tail?,tumblr_neygedcDOt1tkhxdko1_400,46613,0 9269,FRAMEQA16989,guitar,what is the young man wearing black clothing is playing?,tumblr_ndop0fsg361th018eo1_1280,98189,0 9270,FRAMEQA49341,cigarette,what is the guy lighting with another one?,tumblr_nbnsu0m0or1rig0zgo1_400,34066,0 9271,FRAMEQA40937,chair,where is the young lady with blonde hair twirling?,tumblr_nkuwugWpwO1tocarto1_250,39758,3 9272,FRAMEQA13506,green,what is the color of the sweater?,tumblr_n9n4s1RWyG1tyxuumo1_400,30158,2 9273,FRAMEQA1043,two,how many men are riding the bus to some place?,tumblr_najvvu3Y0I1se3ifso1_250,57959,1 9274,FRAMEQA40256,black,what is the color of the jacket?,tumblr_nklx28Ho9n1sjcdfto1_250,36407,2 9275,FRAMEQA42581,car,what is driving across the large puddle?,tumblr_net1unlnyN1sp8qslo1_400,35630,0 9276,FRAMEQA31285,one,how many hand is the singer confidently hitting the notes and raising up in the air?,tumblr_njs60h8O8b1rx2wm4o3_400,19171,1 9277,FRAMEQA47666,two,how many guys are singing into the microphone?,tumblr_nqljzrYT1E1utakepo1_500,62447,1 9278,FRAMEQA28459,yellow,what is the color of the car?,tumblr_nbxshaRNzf1rlqrz3o1_500,68911,2 9279,FRAMEQA22249,red,what is the color of the sofa?,tumblr_nd6nvw51nP1rykobjo1_400,54023,2 9280,FRAMEQA37730,yellow,what is the color of the sweater?,tumblr_na9rzjZeoI1rrukfao1_500,92110,2 9281,FRAMEQA11044,two,how many people sit in chairs facing each other?,tumblr_na41oyCHeF1rcndp1o1_500,9702,1 9282,FRAMEQA27026,red,what is the color of the shirt?,tumblr_njxg0u02UC1tdmffyo1_250,8666,2 9283,FRAMEQA25740,toothbrush,what is someone using?,tumblr_ndvdp5rZG41s71nvbo1_250,4069,0 9284,FRAMEQA5204,one,how many animal is almost falling from the wood?,tumblr_ngaifyb2wi1sk5jw6o1_400,81694,1 9285,FRAMEQA27989,pictures,"what is the woman wearing , have taken?",tumblr_nr1l7twZC21tdpeyco1_250,99723,0 9286,FRAMEQA36054,two,how many people does there 's on a stage doing gymnastic moves?,tumblr_nb87qsBCX81r5q7yjo1_400,61542,1 9287,FRAMEQA31552,two,how many girls stood looking at the girl 's hair?,tumblr_nk77q2amba1unawq7o1_250,15856,1 9288,FRAMEQA2122,shirt,what is the girl with curly dark hair wearing and smiling?,tumblr_nguc5he8Eg1tp0axfo1_400,32227,0 9289,FRAMEQA49855,white,what is the color of the background?,tumblr_no109jnJVv1u8k4roo1_500,62452,2 9290,FRAMEQA4511,scarf,what is the girl turning around and falls off?,tumblr_n937waZcug1tgcs2go1_500,88619,0 9291,FRAMEQA39668,black,what is the color of the men?,tumblr_nd3x8y1KwP1qla0yao1_500,17928,2 9292,FRAMEQA26363,birds,what are moving around on the floor?,tumblr_ncdd1skPib1tkdu95o1_400,41753,0 9293,FRAMEQA39240,car,what is driving around the race track?,tumblr_ndelr27Acc1u0b1c1o1_400,46359,0 9294,FRAMEQA18241,black,what is the color of the hair?,tumblr_n8v0hbiup01rhmx5uo1_r5_250,74194,2 9295,FRAMEQA28077,red,what is the color of the lipstick?,tumblr_nqcuvcowRa1uvsv56o3_400,50602,2 9296,FRAMEQA610,cat,what is sitting on a stool is using its paws to attack paper in a printer tray?,tumblr_npfup8IJsd1t95h1uo1_400,31768,0 9297,FRAMEQA24546,phone,what is the person holding and wearing an animated bracelet?,tumblr_njpf8u9tA71u65utjo1_1280,77635,0 9298,FRAMEQA41005,blue,what is the color of the sweater?,tumblr_noyqd0AgM41s3z68no1_500,92301,2 9299,FRAMEQA3818,hat,what is the man singing into a microphone and falls off?,tumblr_nnw21g7QP51tmcb1ho1_500,61641,0 9300,FRAMEQA39519,napkin,what is the man with black hair handing out?,tumblr_nfehfqRurV1r67on6o1_250,10833,0 9301,FRAMEQA20606,one,how many man is screaming with another man?,tumblr_nfjubkFVUp1sorauco1_400,94513,1 9302,FRAMEQA22397,room,where is the young man watching lighting?,tumblr_n9030eO66Y1ttoztjo1_250,57488,3 9303,FRAMEQA50253,two,how many dark horses with dark manes gallop beside each other?,tumblr_nesu4nuPbX1tzd5txo1_500,97005,1 9304,FRAMEQA48022,two,how many man are laughing at something?,tumblr_nbyu3z5ACj1t2al9go1_400,83806,1 9305,FRAMEQA17410,cars,what are three people driving in a high velocity race?,tumblr_n9q9ktUtOe1sncaa3o1_400,54013,0 9306,FRAMEQA9831,two,how many different hands are holding each other to show unity?,tumblr_nps8vbPpXA1urlrpuo1_400,12300,1 9307,FRAMEQA17511,chair,where is the woman turning around?,tumblr_nhdpcfJ9wz1r440y4o1_400,32240,3 9308,FRAMEQA47846,pane,what is the cream pug licking?,tumblr_nollsdsfZs1sm6bgxo1_400,31771,0 9309,FRAMEQA47457,two,how many people are kissing sensually on the rooftop?,tumblr_nksw6vxA9p1up015ro1_400,51218,1 9310,FRAMEQA22539,two,how many young people are dancing in the room?,tumblr_nafofu1EYY1t7yv08o1_400,2489,1 9311,FRAMEQA36824,two,how many hands reach around the person to hold them?,tumblr_ndr6g1Uyiu1qmlbemo1_500,92583,1 9312,FRAMEQA17920,beer,what is the man lowing from his mouth and staring at a girl?,tumblr_ngj9zpMYzD1u49rjuo1_400,79120,0 9313,FRAMEQA19524,bag,what does the man throw off a pier then jumps onto a bench?,tumblr_nb0ucyKamo1qmvxdro1_400,40574,0 9314,FRAMEQA4956,one,how many man pushes the other man?,tumblr_ncaw26Ufyo1s77tqjo1_500,61327,1 9315,FRAMEQA23550,gray,what is the color of the sweater?,tumblr_notz47rcwY1sq24x8o1_400,19107,2 9316,FRAMEQA10292,cat,what is the man holding?,tumblr_ng2ar7n3F71u4v3ypo1_400,22058,0 9317,FRAMEQA50443,ball,what does the soccer player get stolen from him?,tumblr_nb80fudpnn1qcgyflo1_500,99742,0 9318,FRAMEQA42509,two,how many men are sitting in the car driving slowly?,tumblr_nmeplkwIog1ss8ekqo2_540,95474,1 9319,FRAMEQA21149,pictures,what are two man taking with a stick?,tumblr_nbzobuxqUi1s3cp8no1_250,9853,0 9320,FRAMEQA52956,two,how many guys are sitting and talking while one of them plays with a necklace around his neck?,tumblr_niuy3acWZ61shch57o1_250,40241,1 9321,FRAMEQA5833,elephant,what is the man in a blue shirt blowing and wiping off trunk?,tumblr_naj3brtcOB1sjcvr3o1_400,27188,0 9322,FRAMEQA6428,blue,what is the color of the suit?,tumblr_nl2v6fvO681rqh4g8o1_500,62669,2 9323,FRAMEQA41297,one,how many person is throwing something to another person?,tumblr_na6cjjaMGj1t6ksnpo1_500,92517,1 9324,FRAMEQA1384,two,how many fingers is someone holding up and talking into a microphone?,tumblr_nduy905vtk1qb7fvmo1_r2_500,99653,1 9325,FRAMEQA21570,net,where is the dog carrying a ball and dunking it?,tumblr_nq60eugCBm1tk2ngvo1_500,85137,3 9326,FRAMEQA1957,cat,what is upsetting the grey cat?,tumblr_nf8v50LnUt1tk2ngvo1_500,78064,0 9327,FRAMEQA15014,cat,what is the man with long hair holding?,tumblr_ndrak3nYu61r95fszo1_250,11840,0 9328,FRAMEQA18988,blue,what is the color of the shirt?,tumblr_nclxdhfsKG1s9ar26o1_400,32642,2 9329,FRAMEQA17067,two,how many girls show their affection by hugging each other?,tumblr_ndu5nq965K1u1pokno1_250,2802,1 9330,FRAMEQA41692,two,how many men sit and act silly and have fun?,tumblr_nrf2yjRx8H1u5hn3po2_540,86611,1 9331,FRAMEQA39894,two,how many males in a hotel bedroom are making gestures with their hands?,tumblr_nazqwgPDxU1tiv0r8o1_500,63749,1 9332,FRAMEQA4868,room,where is the group of guys surprised?,tumblr_nb9vr4CKps1qli0myo1_500,99930,3 9333,FRAMEQA48138,bag,what breaks open over the construction workers head?,tumblr_nhlskfg3251sk96t7o1_400,85512,0 9334,FRAMEQA51307,headset,"what does the man wear , he dances on the stage?",tumblr_ncx2iyEeec1u0anq1o1_250,3560,0 9335,FRAMEQA3525,black,what is the color of the top?,tumblr_ndkea1hSnO1u1ya6zo1_400,67653,2 9336,FRAMEQA29935,spider,what falls down on the man and scares him?,tumblr_nps81duVvm1uxhlvco1_400,45766,0 9337,FRAMEQA15606,three,how many scantily clad women gyrate and dance while lights are flashing?,tumblr_nckd72nhSk1rbxxq5o1_250,2011,1 9338,FRAMEQA22134,car,what is creating the lot of smoke during a race?,tumblr_n9066tnq0A1tx8mn0o1_400,78618,0 9339,FRAMEQA25673,dog,what is very excited and jumping up at the door?,tumblr_n9ak83GJ1A1si00qoo1_250,24051,0 9340,FRAMEQA11577,kitchen,where is the quiet bland woman standing?,tumblr_n9198gwVHK1tyyj4so1_400,61502,3 9341,FRAMEQA52805,car,what is the guy driving and he has a copilot?,tumblr_ni01txhXte1tx8mn0o1_400,79270,0 9342,FRAMEQA6333,white,what is the color of the man?,tumblr_n96l1sX4yo1s3nbpco1_500,88506,2 9343,FRAMEQA2799,lipstick,what is the white woman applying to her lips?,tumblr_n9s0jqqDqU1t345owo1_500,75758,0 9344,FRAMEQA21999,two,how many people are kissing watched by some other people?,tumblr_nkulv7z8YZ1tzejvio1_400,97507,1 9345,FRAMEQA41442,yellow,what is the color of the frame?,tumblr_n980oaEVwU1t9r6nmo1_1280,36035,2 9346,FRAMEQA10148,bathroom,where is the furry animal walking?,tumblr_ng6a7uQ9h71slj978o1_400,48977,3 9347,FRAMEQA25643,monkey,what is the young man kissing?,tumblr_neh91mOt5X1sh2bv5o1_500,69384,0 9348,FRAMEQA20175,green,what is the color of the ramp?,tumblr_njuea8VOv61u636iqo1_400,66970,2 9349,FRAMEQA51470,chair,where does the woman sit?,tumblr_n8x7rthA4v1rebthyo1_400,56783,3 9350,FRAMEQA42397,skate,what is the woman helping?,tumblr_ndv2l5YD0M1rhexgoo1_250,25553,0 9351,FRAMEQA30717,brown,what is the color of the dogs?,tumblr_n8pom6qgCR1tgl4z1o1_400,75583,2 9352,FRAMEQA3935,bicycle,what is the man riding down the road without holding the handlebars?,tumblr_npwsugC09s1uxqtu9o1_250,48548,0 9353,FRAMEQA25338,classroom,where does the student slide a piece of paper to another student?,tumblr_ndlqzmdkNA1tgetb4o1_400,88410,3 9354,FRAMEQA49147,white,what is the color of the top?,tumblr_noundoF2gu1qjmps3o1_250,65264,2 9355,FRAMEQA36827,two,how many men with dark hair are dancing?,tumblr_ne0yhhKN911situ0so1_500,87994,1 9356,FRAMEQA24102,two,how many fingers is the girl holding to her head while sitting behind another girl?,tumblr_novoqq01ZJ1tecuzto1_500,80685,1 9357,FRAMEQA25772,cigarette,what did person smoking sit on his car?,tumblr_nkv63mKCzc1ttvffso1_400,58080,0 9358,FRAMEQA39743,two,how many guitarists are playing face to face on stage?,tumblr_n9jeioN38z1r26tq5o1_250,5815,1 9359,FRAMEQA12362,white,what is the color of the outfit?,tumblr_ngrowlLTYj1tmddexo1_500,22045,2 9360,FRAMEQA50737,three,how many men are sitting on the couch and raising one arm in the air?,tumblr_njzlgndUk11u2r7xso1_400,81271,1 9361,FRAMEQA13749,studio,where is the man laughing and clapping his hands?,tumblr_npnyxidXvB1uxh7dyo1_540,101184,3 9362,FRAMEQA38111,three,how many men in various clothing are looking uncomfortable?,tumblr_nh7niah1Gf1qhzyero1_250,13398,1 9363,FRAMEQA4009,two,how many people are standing beside each other?,tumblr_ncdinuJxSW1taahxyo1_400,77696,1 9364,FRAMEQA19208,scooters,what are two boys riding on the road?,tumblr_nbpvtttnNx1redfc8o1_500,90884,0 9365,FRAMEQA26164,green,what is the color of the nails?,tumblr_nab2tmk7fx1sk26zho1_500,30255,2 9366,FRAMEQA14580,hallway,"where does the guy do a circle , then he does the splits?",tumblr_ndvbjkjeN31relckwo1_400,15704,3 9367,FRAMEQA31284,black,what is the color of the shirt?,tumblr_nhg95a0V261u6z2a1o1_400,32565,2 9368,FRAMEQA7398,white,what is the color of the mustache?,tumblr_nfyngbHW2w1sfwliho1_400,37693,2 9369,FRAMEQA25544,two,how many military men are laughing while smoking the cigarette?,tumblr_nrl3x1VLyr1rdwooro1_400,83729,1 9370,FRAMEQA42067,two,how many people are exercising together in the room?,tumblr_namkzwQCp11qb8t93o1_400,58603,1 9371,FRAMEQA37764,blue,what is the color of the shirt?,tumblr_nrk17uPSV31uanc3bo1_400,18608,2 9372,FRAMEQA27193,cat,what is the dog biting a cats head and humorously retaliates?,tumblr_nhh45qypGS1tjhld9o1_250,25179,0 9373,FRAMEQA9671,two,how many women are wrestling each other in a ring?,tumblr_ng6783M04i1sqox3co1_250,49468,1 9374,FRAMEQA24995,snake,"what is the girl holding and kisses the snake , then the snake kisses her?",tumblr_nbag18Nh9E1s78p7ko1_500,59188,0 9375,FRAMEQA49098,horse,what is running with the mounted rider?,tumblr_nacngfa5N21r959nro1_400,35211,0 9376,FRAMEQA35057,mouse,"what exits the box , and it is pushed by a cat?",tumblr_nkoj4fayWP1slj978o1_400,38644,0 9377,FRAMEQA26875,cats,what are about to have the fight?,tumblr_ndia525bro1rc7zl1o1_400,77620,0 9378,FRAMEQA12090,two,how many lovers lay in the bed together?,tumblr_nc46avuPqy1sh3qtho1_500,72294,1 9379,FRAMEQA27660,cat,what is very surprised and scared?,tumblr_nkrg3fVzAP1rms80do1_400,7400,0 9380,FRAMEQA52214,cat,what jumps back and runs away after it smells someone 's feet?,tumblr_n9crpj4At81tbusc0o1_400,46834,0 9381,FRAMEQA40575,cat,what stood on the sofa jumping up?,tumblr_ncql8t7uii1u073goo1_400,33354,0 9382,FRAMEQA11908,green,what is the color of the shirt?,tumblr_nefskewDyh1qhk29lo1_400,25607,2 9383,FRAMEQA20241,red,what is the color of the shirt?,tumblr_nbuwnkT1vH1rwppz1o1_250,38740,2 9384,FRAMEQA1460,snake,what is the woman holding?,tumblr_nbag18Nh9E1s78p7ko1_500,59188,0 9385,FRAMEQA21884,microphone,what is the woman with long hair dancing and holding?,tumblr_naxndc7o421tej170o2_500,94895,0 9386,FRAMEQA30272,one,how many girl pokes another girl with a microphone?,tumblr_nhdtu4Ywgw1tipyyxo1_250,17377,1 9387,FRAMEQA11526,desks,what are the group of classmates wave waving their arms and tip over?,tumblr_nfl4ngA2vq1s71nvbo1_250,38035,0 9388,FRAMEQA36502,duck,what is following the cat around the house?,tumblr_n92oq4Hega1ts0kzio1_400,34144,0 9389,FRAMEQA10306,red,what is the color of the car?,tumblr_noipe7K8wn1uvy8rfo1_500,87621,2 9390,FRAMEQA1417,three,how many guys are dancing and singing in the room?,tumblr_n8sh1pn4ju1sgl6u3o1_250,17230,1 9391,FRAMEQA13611,cat,what is licking the bunny rabbit 's ear?,tumblr_ngapyhHe7Y1sohuqmo1_250,36485,0 9392,FRAMEQA24113,hills,what is the biker jumping on his bicycle?,tumblr_nam9o5Pavd1tstm7eo1_400,66036,0 9393,FRAMEQA36964,two,how many guys are looking away and smiling under the rain?,tumblr_nkthvo0iK91qmoyvzo1_500,34410,1 9394,FRAMEQA35289,white,what is the color of the shirt?,tumblr_nn2sf8mQdm1urhayqo1_250,43815,2 9395,FRAMEQA36403,room,where is the girl singing?,tumblr_nf7da0oy5t1u3v5ejo1_400,7200,3 9396,FRAMEQA34470,white,what is the color of the hair?,tumblr_nhmuiozIZa1u6k7wlo1_400,14574,2 9397,FRAMEQA2691,monkey,what jumps over another small monkey?,tumblr_na7zldRIh21slj978o1_400,40880,0 9398,FRAMEQA48551,stairway,what is the man excitedly running up?,tumblr_ngyugwP9s41qe74g0o1_400,37270,0 9399,FRAMEQA3699,cat,what is touching and pushing back another cat?,tumblr_nefmbhSoi71sg891po1_400,18465,0 9400,FRAMEQA23471,two,how many men are fighting on the balcony?,tumblr_ndtrdwML301t1o9tno1_250,14272,1 9401,FRAMEQA40528,two,how many young friends are rocking when meeting at the doorway?,tumblr_n9ynh2Hx361qfyx3mo1_400,35241,1 9402,FRAMEQA42900,black,what is the color of the hair?,tumblr_nebqwlQxEk1sc6vkuo1_500,83312,2 9403,FRAMEQA43443,whisk,what is the young woman smiling and licking?,tumblr_n8tl89WPwG1rqtkgno2_400,64765,0 9404,FRAMEQA48015,five,how many boys in a science class are looking or holding flasks?,tumblr_naap6eJLbo1t2bkpqo1_500,93485,1 9405,FRAMEQA39572,picture,what is the girl taking with a cell phone from the audience?,tumblr_n9of28KjW41td7sqyo1_250,70685,0 9406,FRAMEQA44092,white,what is the color of the hair?,tumblr_nckjnmQk1a1siybp5o1_250,13898,2 9407,FRAMEQA27134,blue,what is the color of the shirt?,tumblr_naftam1wOQ1tui2odo1_250,43864,2 9408,FRAMEQA27689,dolphin,what is swimming in water that is very blue?,tumblr_nghostxfzQ1sxw6mio1_500,62768,0 9409,FRAMEQA53045,black,what is the color of the suits?,tumblr_nb8nziviJ61tkxcpoo1_250,39669,2 9410,FRAMEQA29535,red,what is the color of the shoes?,tumblr_ncb83m7DU11sp9uxmo1_500,56997,2 9411,FRAMEQA33203,car,where are two men riding while one looks ahead?,tumblr_nmeplkwIog1ss8ekqo2_540,95474,3 9412,FRAMEQA37079,guitar,what is the person with red hair playing?,tumblr_nhdzjchAEe1tepwnvo1_500,25115,0 9413,FRAMEQA45728,two,how many women dance next to the sofa?,tumblr_nk1ldtCFnm1rcnyh1o1_540,46123,1 9414,FRAMEQA49852,dog,what is sitting in the chair?,tumblr_njuk1huMBo1unlpflo1_400,63604,0 9415,FRAMEQA19376,room,where are two girls performing a flip?,tumblr_nfygp4DKxV1tw8vf9o1_400,19168,3 9416,FRAMEQA17992,green,what is the color of the frog?,tumblr_nr4ssypv3Y1uaujqao1_400,35099,2 9417,FRAMEQA50111,room,where is the young couple kissing?,tumblr_nqu3et3Y4P1ut22z1o1_500,55243,3 9418,FRAMEQA45259,two,"how many persons are shown , with 1 holding a stuffed animal?",tumblr_nfe8ohMKD81tkoeqqo1_500,88138,1 9419,FRAMEQA13297,dog,what is barking in slow motion?,tumblr_nkro0iKPRH1upx448o1_500,72145,0 9420,FRAMEQA38099,trolley,what is the man pushing with two men are standing?,tumblr_nbp2e0Uw4E1sj5pwvo1_400,23814,0 9421,FRAMEQA47207,white,what is the color of the shirt?,tumblr_n9rlrmdEu11thghico1_400,28334,2 9422,FRAMEQA23767,two,"how many men shake their heads along to music , while one of them sings into a microphone?",tumblr_nd9x50b1Zr1u103uqo1_400,26459,1 9423,FRAMEQA41212,two,how many stuffed octopuses is the girl holding and waving?,tumblr_n9w68eOVgx1tif07xo1_400,36909,1 9424,FRAMEQA36848,three,how many teenagers are dancing on the glass stage?,tumblr_nav2g3vCTF1tq2eeqo1_250,6666,1 9425,FRAMEQA24527,cellphone,where is the man smiling and winking at someone?,tumblr_nbg7uliVyd1rze3q1o1_500,86397,3 9426,FRAMEQA23762,bottles,what is the man holding and smiling?,tumblr_n9w8iiyU0l1tqlsu7o1_1280,70381,0 9427,FRAMEQA14181,window,what is the tan and black dog licking?,tumblr_nollsdsfZs1sm6bgxo1_400,31771,0 9428,FRAMEQA7036,mirror,where is the man with long hair looking and pulling on his side burns?,tumblr_neuot0y1DW1tifif8o1_500,55393,3 9429,FRAMEQA42110,chair,where is the toddler annoying a sleeping cat?,tumblr_n8kxz4xN4Y1ten01no1_250,34919,3 9430,FRAMEQA43219,building,what is the vehicle approaching surrounded by a fence?,tumblr_nprglcBVTc1unyhx2o1_400,65277,0 9431,FRAMEQA10216,cat,what walks in water while wearing a harness?,tumblr_n9kuvyUJT91sual3ro1_250,3721,0 9432,FRAMEQA36232,two,how many guys are on the floor?,tumblr_ngm9qdinC11u47jf5o1_250,37360,1 9433,FRAMEQA22008,black,what is the color of the swimsuit?,tumblr_nqa72svB2q1uxws2zo1_400,24859,2 9434,FRAMEQA42212,train,what is driving around the track?,tumblr_nf7d1tsaJ21r5vzuho1_500,55834,0 9435,FRAMEQA25969,car,what is driving through sand with a huge cloud of dust behind it?,tumblr_nahga9eNFz1tx8mn0o1_400,78232,0 9436,FRAMEQA37883,sweater,what is the man wearing and pushing his hair from his face?,tumblr_ncm95x9qzw1tp450ko1_250,18493,0 9437,FRAMEQA348,car,what is riding down the highway in the rain?,tumblr_nebvi7SFVZ1twoe5do1_400,50108,0 9438,FRAMEQA48795,panda,"what does the woman try , but grabs her leg?",tumblr_nbz29i6Bom1thf1cyo1_250,85507,0 9439,FRAMEQA15842,two,how many young men make gestures with their arms while singing and walking down a street?,tumblr_n8qe20CCbF1teai02o1_400,67100,1 9440,FRAMEQA21816,kitten,what snuggles with her teddy bear?,tumblr_n8yfdjJ9921t7hjz2o1_250,42715,0 9441,FRAMEQA17870,white,what is the color of the shirt?,tumblr_nbjsyhLncl1tujnioo1_500,40549,2 9442,FRAMEQA16354,black,what is the color of the woman?,tumblr_nbcirl0aQW1tad1t8o1_250,8072,2 9443,FRAMEQA27217,car,where did two men sit waving their hands around?,tumblr_nqtbhyWjrF1twsxdzo1_400,78772,3 9444,FRAMEQA11923,black,what is the color of the shirt?,tumblr_nap1wyU5vb1r8wsomo1_400,29689,2 9445,FRAMEQA18020,three,how many man are rowing the boat in a lake?,tumblr_nkyhhgTo8b1tw2zo1o1_400,50150,1 9446,FRAMEQA1581,car,"what is making unusually fast turns around each bend ,?",tumblr_nkrf6t4Kcu1u9xj6to1_500,92709,0 9447,FRAMEQA41767,bar,where is the couple of man and brunette girl sitting?,tumblr_ncdu2a1Q4s1terae6o1_500,100516,3 9448,FRAMEQA32675,drink,what does the man raise with a straw to his mouth?,tumblr_na00hxaoq01so8ipho1_500,79541,0 9449,FRAMEQA1658,sled,what is hitting the snow bank and two people fall out then climb back in?,tumblr_nl33fuCCKK1slj978o1_400,84963,0 9450,FRAMEQA38480,gray,what is the color of the jacket?,tumblr_nb8nijuMcp1tg6h6to1_500,50527,2 9451,FRAMEQA33385,chair,where is the person with dark hair rocking and looking around?,tumblr_nly094QBPn1upxc78o1_400,30559,3 9452,FRAMEQA45734,room,where is the girl caressing her face?,tumblr_ne0mekSizo1t7kj7go1_400,32718,3 9453,FRAMEQA25974,white,what is the color of the hat?,tumblr_nf4x2c4BCf1tid424o1_250,19280,2 9454,FRAMEQA11272,two,how many men roll another man in a tire down a hill?,tumblr_nfrmsb7tal1t06o0xo1_400,67695,1 9455,FRAMEQA51197,cat,what is trying to enter somewhere but she is jumping around?,tumblr_nlfii6q03r1s6zpepo1_400,40034,0 9456,FRAMEQA52794,cigarette,what is the woman holding?,tumblr_n86ladW4vm1sp03kqo1_500,100060,0 9457,FRAMEQA33512,white,what is the color of the blouse?,tumblr_no0wtz5OTs1sj8qgio1_250,39640,2 9458,FRAMEQA45802,brown,what is the color of the hair?,tumblr_nbfv8pOFQ91r3s7e9o1_400,4875,2 9459,FRAMEQA21879,three,how many men are hugging and talking and smiling?,tumblr_nr9vqonvXy1s3i7d8o1_400,88554,1 9460,FRAMEQA7957,white,what is the color of the girl?,tumblr_nb7eheT0Oz1r272ido1_250,76772,2 9461,FRAMEQA47575,two,how many men are running and sliding on plastic?,tumblr_na898jZGcd1rreivlo1_400,79268,1 9462,FRAMEQA52250,blue,what is the color of the shirt?,tumblr_ncyzpvxcjK1tddirao1_250,84640,2 9463,FRAMEQA18708,black,what is the color of the hair?,tumblr_nco9okZ0s41qexaavo1_500,27595,2 9464,FRAMEQA40033,nut,what is the bird taking from a person 's hand?,tumblr_nr1otxgnPQ1rlmonbo1_250,13333,0 9465,FRAMEQA27436,white,what is the color of the woman?,tumblr_nkrwc25SFj1tjeooqo1_250,84675,2 9466,FRAMEQA12024,four,how many men are lifting up the woman into a basketball hoop?,tumblr_nevw1awXz41slj978o1_400,22090,1 9467,FRAMEQA21089,two,how many young men sing on the stage?,tumblr_n9rb0b8mi11qfrgvko1_r2_500,62588,1 9468,FRAMEQA6943,white,what is the color of the car?,tumblr_n90zk6uWPr1thp3rho1_r1_400,70210,2 9469,FRAMEQA19887,hat,what are three people climbing stairs and two of them are wearing?,tumblr_nay0kzAbkR1twcgnlo1_400,27538,0 9470,FRAMEQA39270,car,what is spinning on the road way?,tumblr_n91l33EgZY1rpqn0wo1_500,73230,0 9471,FRAMEQA44730,white,what is the color of the shirt?,tumblr_n985xvic8d1ssp6pho1_500,59052,2 9472,FRAMEQA14331,floor,where was the man spinning around?,tumblr_niwegtvbzZ1u9u0ofo1_1280,31860,3 9473,FRAMEQA10718,three,how many women is this image of laughing and talking together?,tumblr_ndoqxcn3iN1sd2bbjo1_400,20274,1 9474,FRAMEQA21783,microphone,where is the man signing something?,tumblr_novff6Z8vc1stagfqo1_1280,99558,3 9475,FRAMEQA30104,two,how many women are in a kitchen one leaves and gets clothes?,tumblr_nqr8fvbChQ1u0ql9oo1_500,58093,1 9476,FRAMEQA24310,red,what is the color of the dress?,tumblr_nrelopx9uJ1uzo2v4o1_500,46747,2 9477,FRAMEQA768,three,how many scantily clothed singers are dancing on stage?,tumblr_nb8kvjkqs61tfeeomo1_500,100314,1 9478,FRAMEQA16559,two,how many parakeets appear to kiss each other?,tumblr_n9nxz6cyx11sjuzlno1_400,36176,1 9479,FRAMEQA14220,kitten,what walks on the wooden floor with its tail up?,tumblr_nk7876agwW1slwrsuo1_400,16802,0 9480,FRAMEQA7906,guitar,what is the man singing and playing on stage?,tumblr_npstuoilBW1uxd2coo1_500,79444,0 9481,FRAMEQA21343,three,how many men are playing soccer together?,tumblr_nb0l1eo8tj1tjcqx1o1_500,99747,1 9482,FRAMEQA15169,blue,what is the color of the shirt?,tumblr_nfv5xzlgj31u25yojo1_400,87470,2 9483,FRAMEQA53052,black,what is the color of the t-shirt?,tumblr_nk4ijsCm9m1tt7yxgo1_250,19980,2 9484,FRAMEQA48702,two,how many men are driving fast in the car and yelling?,tumblr_nfj9394H2n1r8d2fho1_1280,94316,1 9485,FRAMEQA41593,car,where is the man with blonde hair and wearing gloves sitting?,tumblr_nad0y6Ci4u1tjbpqfo1_250,47065,3 9486,FRAMEQA37361,two,how many ball players are dancing around on the field?,tumblr_nfs4rqmTxc1rt48xfo1_r1_1280,95471,1 9487,FRAMEQA35199,red,what is the color of the sweater?,tumblr_nhxcffAmRy1sg50dyo1_250,51351,2 9488,FRAMEQA10320,brown,what is the color of the hair?,tumblr_nfpu6sfKuH1qd80wyo1_400,41614,2 9489,FRAMEQA23648,gray,what is the color of the cat?,tumblr_ne5w7sROwX1tjdvfuo1_400,80200,2 9490,FRAMEQA9462,one,how many woman does there 's snapping her fingers shaking her arms talking?,tumblr_no43ynobD21u21kjao1_400,48617,1 9491,FRAMEQA29782,red,what is the color of the jacket?,tumblr_nazvrzRVVm1skz7b3o1_500,93992,2 9492,FRAMEQA8673,dog,what is riding on the mine cart?,tumblr_nc9toz2pYc1t5lviko1_250,27726,0 9493,FRAMEQA37476,black,what is the color of the shorts?,tumblr_nb0u0kCLwc1rn11fao1_250,24489,2 9494,FRAMEQA4723,feathers,what are slowly falling down around the man?,tumblr_nelhankJre1tg6141o1_500,96576,0 9495,FRAMEQA36677,black,what is the color of the guy?,tumblr_njy0j2MwQW1u2mmn8o1_250,29016,2 9496,FRAMEQA20400,dresses,what did the woman have?,tumblr_nqmzb7uPVV1r38uzco1_400,25779,0 9497,FRAMEQA52154,pipe,what is the woman putting her glasses and taking?,tumblr_noumotOiwV1spw05ko1_250,36480,0 9498,FRAMEQA24929,sink,what does the man set on fire?,tumblr_njtdkz4VlK1qcqzi5o1_400,60908,0 9499,FRAMEQA34003,dog,what is playing with another animal which is in a toilet?,tumblr_ncfs8trHLG1slj978o1_400,76304,0 9500,FRAMEQA6011,wristband,what is the girl adjusting?,tumblr_nqkg1uZkKU1r91uyxo1_540,96749,0 9501,FRAMEQA6249,pool,"what is the girl shooting , then jumps up to celebrate?",tumblr_nr9u0pdSej1uyj8ozo1_250,10795,0 9502,FRAMEQA6749,red,what is the color of the shirt?,tumblr_nfv6g2nUvC1s3lpszo1_400,45443,2 9503,FRAMEQA16297,cigarette,what is the man with black hair smoking?,tumblr_negdm6AfLD1tyu9j8o1_250,13780,0 9504,FRAMEQA52401,two,how many penguins swim back and forth in the water?,tumblr_nqdnyswOsw1qh9fn6o1_400,46476,1 9505,FRAMEQA46061,guitar,what is the short haired man playing?,tumblr_na7miq1rPj1qdauj7o1_400,36901,0 9506,FRAMEQA36785,confetti,what does the young man throw into the air?,tumblr_nk35kbgEms1u8aa6qo1_540,37377,0 9507,FRAMEQA29264,gray,what is the color of the sweatshirt?,tumblr_nery6zlDcp1s5p0j3o1_400,5676,2 9508,FRAMEQA25959,two,how many young men are standing in the hallway and gesturing with their hands?,tumblr_nhjwx6K3OR1tlujlao1_250,3760,1 9509,FRAMEQA14947,two,how many people are holding hands and then letting go?,tumblr_ngx9rcVWEc1qdlgqgo1_250,95667,1 9510,FRAMEQA31046,room,where is the man doing somersaults?,tumblr_nd2n3u5VLQ1tdmffyo1_250,21600,3 9511,FRAMEQA44645,three,how many women are standing together one is waving the other two are making faces?,tumblr_nh6d4afATN1tg9gzmo1_400,3214,1 9512,FRAMEQA12627,race,what is in progress while a female spectator takes photos?,tumblr_nfz5jf3a3j1sl4e5go1_500,91711,0 9513,FRAMEQA26159,kitten,what is the pie and the top pulled back and there 's hugging a teddy bear?,tumblr_nnw0q7MHTa1rwofevo1_500,80243,0 9514,FRAMEQA29310,drumsticks,what is the young man playing the drums and twirling?,tumblr_netj73fZBe1rpee4eo1_400,11349,0 9515,FRAMEQA42955,bird,what is crawling through the paper towel tube?,tumblr_n993yi7TgY1sjuzlno1_400,8582,0 9516,FRAMEQA24584,dog,what is the guy holding and waving it around?,tumblr_nfeetqIQkZ1so9ango1_400,35037,0 9517,FRAMEQA22085,butt,what is the beautiful man with a shirt touching?,tumblr_ndrysqqJNN1tumcowo1_400,2301,0 9518,FRAMEQA38709,two,how many guys are sitting at the table in a restaurant?,tumblr_ndi35jWc6Z1tm6rguo1_250,47727,1 9519,FRAMEQA15140,red,what is the color of the room?,tumblr_nfyy4pkeKZ1qdch8fo1_1280,93636,2 9520,FRAMEQA10932,dough,what is the woman kneading into a flat circular shape?,tumblr_nedtlpS43B1trwdnlo1_400,42030,0 9521,FRAMEQA4875,dog,what is bringing the toy and then stepping back?,tumblr_ngo9zfHkp61qixslso1_400,13941,0 9522,FRAMEQA37235,red,what is the color of the car?,tumblr_netczdYQLZ1u25ovvo1_400,63490,2 9523,FRAMEQA5548,blue,what is the color of the uniform?,tumblr_np58jvmXRX1rl84n7o1_400,49007,2 9524,FRAMEQA47085,penguin,what is the man holding?,tumblr_nakv21BDwu1s7ue6co1_400,60312,0 9525,FRAMEQA40512,black,what is the color of the shirt?,tumblr_na6ruvUUJV1tiqkyno1_250,2433,2 9526,FRAMEQA46844,white,what is the color of the cove?,tumblr_n9wad9kYd71s2z19ko1_400,61253,2 9527,FRAMEQA21439,three,how many men are dancing in the bathroom?,tumblr_nh9h3dC7Wb1u6bdo9o1_400,54185,1 9528,FRAMEQA47352,dog,what is jumping over the man and a wall?,tumblr_nk25ppxz3K1u300dqo1_500,36905,0 9529,FRAMEQA41382,white,what is the color of the shirt?,tumblr_nczkhrfc9P1ta3dyjo1_1280,83665,2 9530,FRAMEQA51376,four,how many models walk on the runway while wearing a variety of fall outerwear?,tumblr_ni0zbqqPTH1tmeg7go1_500,87229,1 9531,FRAMEQA27987,two,how many women are trying to catch the car?,tumblr_n9yr1wYMdx1r6oiiao1_500,84810,1 9532,FRAMEQA15234,red,what is the color of the hair?,tumblr_nc45y9Enzy1ttogc7o1_400,37616,2 9533,FRAMEQA51372,black,what is the color of the glasses?,tumblr_nbgbm5yvBo1totmz5o1_250,48940,2 9534,FRAMEQA32512,gun,what is the woman in a hat aiming at a man?,tumblr_n90zf3auVF1tekwoeo1_400,52992,0 9535,FRAMEQA16675,shark,what is swimming in the water?,tumblr_nbplrtZnS81tbjfazo1_400,41760,0 9536,FRAMEQA19808,motorcycle,what is person riding down the rode?,tumblr_n8pjlmexAb1qlbtloo1_1280,50229,0 9537,FRAMEQA49325,two,how many men is sitting in an embrace converse with another man at a party?,tumblr_nk3mstXSp41rp0ayqo1_400,63496,1 9538,FRAMEQA38423,white,what is the color of the dress?,tumblr_na6ic4G9Lt1sm28e8o1_250,7409,2 9539,FRAMEQA26485,black,what is the color of the jacket?,tumblr_nfb17xXE8j1tvn491o1_500,69769,2 9540,FRAMEQA1211,shirt,what is man with white shirt touching?,tumblr_nklmwmP2fN1r26jdlo1_400,69501,0 9541,FRAMEQA40722,green,what is the color of the carpet?,tumblr_neddm7VXxe1u2b0jwo1_400,80932,2 9542,FRAMEQA15555,star,what shoots water at other girls?,tumblr_nkpvu8gTpu1sp6rs3o1_500,100032,0 9543,FRAMEQA6676,white,what is the color of the dog?,tumblr_nkgadlovZC1tk2ngvo1_250,11473,2 9544,FRAMEQA46192,kitten,what smells the strawberry and smacks it out of person 's hand?,tumblr_npozmb4kvw1uy2r7ro1_400,37250,0 9545,FRAMEQA8309,dog,what is licking the clear glass wall?,tumblr_nollsdsfZs1sm6bgxo1_400,31771,0 9546,FRAMEQA36975,cat,what is kneading his paws on the back of a pug dog?,tumblr_nhxl2nzKDV1u4v3ypo1_400,36764,0 9547,FRAMEQA19089,microphone,where is the woman singing and dressed in shorts and a sleeveless top?,tumblr_nkublcusyZ1tlxkplo1_250,4776,3 9548,FRAMEQA45671,dog,what is being scratched and is kicking his leg?,tumblr_ng850mh9Uy1slj978o1_400,34151,0 9549,FRAMEQA33667,blue,what is the color of the car?,tumblr_negevo44tS1u25ovvo1_400,63576,2 9550,FRAMEQA8631,hat,what is the cute girl holding?,tumblr_npjbm8zizK1txgyxzo1_500,83843,0 9551,FRAMEQA29565,drinks,what is the man carrying?,tumblr_nbq3w171PU1snwcf6o1_400,93083,0 9552,FRAMEQA40241,two,how many others spin around?,tumblr_naand6DjAO1te592qo1_400,11636,1 9553,FRAMEQA31276,two,how many teenage boys make peace signs and wave?,tumblr_na9rbrw8PT1tjys71o1_250,68864,1 9554,FRAMEQA14681,two,how many women go in for the very big hug?,tumblr_nrjimhejuj1uawws4o1_250,53230,1 9555,FRAMEQA23169,one,"how many girl moves in shirt , opens her mouth and smiles?",tumblr_npkwz6QpbC1unkbhwo1_250,7462,1 9556,FRAMEQA13768,cat,what is playing with someone 's finger and falls over?,tumblr_n6h5on9Mx21ql8b6oo1_400,44392,0 9557,FRAMEQA37503,door,what opens and there stands the boy in a shirt and tie and sheers reach out and decapitate him?,tumblr_nctc6eHbir1qz4tu8o1_250,66813,0 9558,FRAMEQA2991,two,how many men are singing and dancing in the living room?,tumblr_n9uscu0MKn1tdve1no1_r1_500,68564,1 9559,FRAMEQA8235,two,how many hands are beginning to hold together tightly?,tumblr_najbft9X221tdv1l9o1_250,21190,1 9560,FRAMEQA13519,two,how many women dance while is singing into microphones?,tumblr_nl0fz8rTT21rc6zqzo1_250,7769,1 9561,FRAMEQA16429,black,what is the color of the woman?,tumblr_ndt9dsgt7K1tk8b8io1_250,9043,2 9562,FRAMEQA15607,white,what is the color of the suit?,tumblr_ni0jvfEMjs1rgxj3lo1_250,7146,2 9563,FRAMEQA31638,red,what is the color of the shirt?,tumblr_nc9y6qQFYI1s3hs94o1_250,25498,2 9564,FRAMEQA13211,cat,what is riding the skate board at a park?,tumblr_njukcfEiK11r1n65mo1_400,40925,0 9565,FRAMEQA26221,cat,what is trying to scratch the person?,tumblr_nds8crBvqP1tml03go1_400,53863,0 9566,FRAMEQA29417,room,where are two person dancing a song?,tumblr_ngmnfpKAs41u3y59to1_250,34592,3 9567,FRAMEQA26479,room,where is the man smoking a cigarette?,tumblr_npwl0h91fW1s3g7rco1_400,33011,3 9568,FRAMEQA26922,two,how many men are going in the black car?,tumblr_nevu1x7R4F1tzeksuo1_400,67414,1 9569,FRAMEQA45592,kitchen,where do the man and a woman hold up a dog and a box of cupcake mix?,tumblr_nc2v5yMTI61tibdkoo1_500,70971,3 9570,FRAMEQA8569,black,what is the color of the shirt?,tumblr_nfyxc5sgiN1r97gquo1_400,29414,2 9571,FRAMEQA27392,one,how many man is dancing behind another man who is standing still?,tumblr_nkx42t9nu51tf10cmo1_500,73009,1 9572,FRAMEQA50029,blue,what is the color of the dress?,tumblr_n8q2q6OWBt1twyq43o1_500,86757,2 9573,FRAMEQA20661,two,how many men have the singing battle with back up dancers?,tumblr_no1e92K0Zi1ts7wbfo1_500,49453,1 9574,FRAMEQA39098,car,what is going on the road?,tumblr_nd4fsjihYG1u0lsh1o1_400,84128,0 9575,FRAMEQA38439,two,how many young men are sitting and talking together?,tumblr_ncgxa35Hin1tztcuxo1_500,101318,1 9576,FRAMEQA5909,two,how many men are doing martial arts?,tumblr_nh16i2pNv61s6zpepo1_400,25142,1 9577,FRAMEQA40160,bag,where is the man trying to carry an animal?,tumblr_ndjshjXoB91s71nvbo1_250,5971,3 9578,FRAMEQA12582,room,where are some football players talking?,tumblr_ncsp5rS8rC1r78dgto1_400,5809,3 9579,FRAMEQA28286,banana,what is the cat wearing a costume is eating?,tumblr_nkhnomg0r01u1pokno1_250,53313,0 9580,FRAMEQA27942,room,where are two young boys fighting?,tumblr_nf01q0SeKq1t657loo1_400,59903,3 9581,FRAMEQA870,fox,what is walking across the snow and attacks prey?,tumblr_nr0urrvsyq1uaoej6o1_400,45806,0 9582,FRAMEQA38386,two,how many men kiss as one of the men has no shirt on?,tumblr_n9lnqa0TkE1rac9v2o1_400,47875,1 9583,FRAMEQA19647,two,how many woman are staring at someone else?,tumblr_n9em29g9jM1qmsb71o1_400,100539,1 9584,FRAMEQA5100,bear,what is the handsome young man drinking?,tumblr_nalre1PM7t1tu2taqo1_400,58219,0 9585,FRAMEQA41713,bear,what eats some human food?,tumblr_nl3vj0whpR1s93eg4o1_400,38217,0 9586,FRAMEQA7097,two,how many soccer players are playing for fun on the field?,tumblr_n9vz1u2IKj1tz9jaqo1_400,96194,1 9587,FRAMEQA29832,guitar,what is the woman playing and jumping up and down?,tumblr_nhzwg34b4x1rtyk4po1_500,45728,0 9588,FRAMEQA52781,cookie,what is the woman wearing red glasses is eating?,tumblr_nc41azSmAA1ru030mo1_400,31088,0 9589,FRAMEQA16014,candle,what is the woman carrying and trying to blow the smoke?,tumblr_nradr0LvQR1tb2qw4o1_250,482,0 9590,FRAMEQA12963,white,what is the color of the dress?,tumblr_nd2h3kKDkD1tw2zo1o2_r3_400,44297,2 9591,FRAMEQA9214,two,how many men is holding microphones dance and bump their butts together?,tumblr_n8xhwswWAH1qi4n2uo1_500,83905,1 9592,FRAMEQA28844,puppy,what is the person holding?,tumblr_n9e2tqLvWh1tdmffyo1_250,25535,0 9593,FRAMEQA38191,orange,what is the color of the moves?,tumblr_nr10n4blvp1qzefipo1_r1_400,76416,2 9594,FRAMEQA51265,two,how many men are playing guitar in front of the crowd?,tumblr_nr9ol4V9GF1u8skfvo1_500,66907,1 9595,FRAMEQA42362,suits,what are two guys wearing and looking at each other?,tumblr_ncrhl6yWq81qi39coo1_500,96488,0 9596,FRAMEQA26244,hat,what does the man in a blue shirt spin to the fourth man in line?,tumblr_nc826aUSI71slj978o1_400,46829,0 9597,FRAMEQA22919,car,what is driving down the palm tree lined street?,tumblr_ne9ty1C8Dw1tr5tuwo1_500,89701,0 9598,FRAMEQA51162,black,what is the color of the suit?,tumblr_ndwqt70ENH1sqp9mao1_400,52294,2 9599,FRAMEQA40097,two,how many angry young men are boxing in a ring?,tumblr_nqemmiLRm21u3u66ko1_400,64429,1 9600,FRAMEQA24628,two,how many girls is this image of kissing each other?,tumblr_na0a8uaKRe1tt3g2no1_500,86790,1 9601,FRAMEQA9175,elephant,what falls over in the straw?,tumblr_nptdekVE6l1tfnm8co1_400,45462,0 9602,FRAMEQA21469,dog,what is the white girl with brown hair playing?,tumblr_nhobtsS0jM1s86yfto1_250,9556,0 9603,FRAMEQA28803,hat,what is the wearing dancing?,tumblr_nibscxbjOp1qlbj8uo1_500,84835,0 9604,FRAMEQA23725,violin,what is the woman in a white dress playing?,tumblr_n9g3lqfsMq1rdk1zoo1_400,60984,0 9605,FRAMEQA10676,two,how many young black horses are running?,tumblr_nesu4nuPbX1tzd5txo1_500,97005,1 9606,FRAMEQA51347,jacket,what is the man wearing a hat is fastening?,tumblr_njv8g32euR1rregeqo1_500,10251,0 9607,FRAMEQA43422,shirt,what is the blonde woman breaking and a guy is looking?,tumblr_nbz0yeXa3A1qflnb4o1_250,27613,0 9608,FRAMEQA43029,chair,where is the woman sitting and seductively clicking her tongue?,tumblr_nkb2733IGk1u1r8m3o1_400,78100,3 9609,FRAMEQA32542,white,what is the color of the shirt?,tumblr_nos6tzadWg1uqc9zlo1_500,48381,2 9610,FRAMEQA7667,two,how many men is this shaking hands and patting each other 's shoulders?,tumblr_nbdro9plFr1tfri6co1_400,19670,1 9611,FRAMEQA35097,white,what is the color of the dress?,tumblr_n8zb9zXSus1s2nkuro1_500,84071,2 9612,FRAMEQA13446,white,what is the color of the car?,tumblr_nelzioHl7F1u25ovvo1_400,63575,2 9613,FRAMEQA35540,toast,what are two girls making with each other?,tumblr_nqw1d49uwo1tb2ztwo1_250,80693,0 9614,FRAMEQA18673,two,how many men are smiling and laughing at something?,tumblr_nd4y9cyuiJ1tqyrjvo1_400,90283,1 9615,FRAMEQA27320,two,how many girls in ballet uniforms are doing ballet?,tumblr_nh3o9muUyk1tm1rujo1_400,41181,1 9616,FRAMEQA35461,two,how many dark haired men are hugging each other on stage?,tumblr_nqknqqjWiH1sjpd78o1_400,74109,1 9617,FRAMEQA1799,chair,where is the man holding a rabbit and turning around?,tumblr_n9q0wbAvnk1slorlzo1_400,97560,3 9618,FRAMEQA24356,two,how many people take off their black robes?,tumblr_nmz3n9aYMe1rxmp17o1_500,97109,1 9619,FRAMEQA34905,two,how many men are sitting on the couch and shaking hands?,tumblr_nhwxneQIVn1rb8uj5o1_400,65786,1 9620,FRAMEQA25619,robot,what slowly opens up its eyes and taps a finger?,tumblr_nbtlpb4htq1sh1sffo1_500,49489,0 9621,FRAMEQA51184,diver,what is trying to catch an animal?,tumblr_n9idf18Lt31sjcycuo1_250,73363,0 9622,FRAMEQA47779,two,how many young men with microphones communicate with each other?,tumblr_npl1ihcovf1u06zrlo1_250,2745,1 9623,FRAMEQA7717,black,what is the color of the man?,tumblr_ncfbw1i0Vr1tmkydso1_500,59133,2 9624,FRAMEQA14538,black,what is the color of the cap?,tumblr_nbw1801wlK1t2wqhqo1_400,21953,2 9625,FRAMEQA47899,red,what is the color of the glasses?,tumblr_nc41azSmAA1ru030mo1_400,31088,2 9626,FRAMEQA32637,guitar,what is the man wearing a red shirt and playing?,tumblr_na5ataOKNF1ra19auo1_250,32238,0 9627,FRAMEQA4318,one,how many large butterfly is moving its wings?,tumblr_np4u4zNuv21rjxtuwo1_400,35441,1 9628,FRAMEQA12132,two,how many men look towards each other and lean closer together?,tumblr_nebsloMCPa1rebtppo1_500,83125,1 9629,FRAMEQA20327,two,how many young men in t-shirts with microphones are singing?,tumblr_ni0z9cQOGd1tdytspo1_500,94401,1 9630,FRAMEQA39909,picture,what is the soccer player getting an award and having taken with other people?,tumblr_nre2dtB8up1sb4xq3o1_500,61595,0 9631,FRAMEQA18026,toy,what is opening and shutting its mouth?,tumblr_nbyk6aaScH1r5pvcmo1_400,60782,0 9632,FRAMEQA44972,office,where is the woman answering her cell phone?,tumblr_nfxauxAEZA1ssgk4vo1_500,65252,3 9633,FRAMEQA4800,guitar,what is the person wearing white clothing is playing?,tumblr_nafjr4e15v1rdl60ao1_500,72562,0 9634,FRAMEQA8779,black,what is the color of the dress?,tumblr_nf6z08W8ZO1tmecz1o1_500,58112,2 9635,FRAMEQA41978,star,what is looking ahead with the sinister look?,tumblr_nd3844onv11qj1oazo1_400,53074,0 9636,FRAMEQA17972,ball,what is the soccer player hitting off her head?,tumblr_n9ewm0ilhs1riwrryo1_250,26016,0 9637,FRAMEQA34833,cat,what is pawing at something in the air?,tumblr_ndb6k2PKFz1rtlmp4o1_250,18919,0 9638,FRAMEQA28604,green,what is the color of the hood?,tumblr_nge1acwnt81sjxzs0o1_400,76122,2 9639,FRAMEQA41208,fly,what does the man make through his nose?,tumblr_ncj9kxfpvm1ti5n8to1_250,733,0 9640,FRAMEQA22451,blue,what is the color of the tuxedo?,tumblr_ne899a7xR51tkmovro1_250,7004,2 9641,FRAMEQA17276,sculpture,what falls onto its side?,tumblr_nr9bjmjCEh1un86uao1_400,72641,0 9642,FRAMEQA11517,two,how many people is this image of leaning against a wall kissing each other?,tumblr_nnjeqxINyh1sfy3nfo1_500,88547,1 9643,FRAMEQA43561,airplane,what takes off and flies above another airplane on the ground?,tumblr_na1eah7Rjw1slwrsuo1_500,86728,0 9644,FRAMEQA33300,three,how many ballet dancers dressed in white are dancing?,tumblr_nb214iSPxA1tdmffyo1_250,14238,1 9645,FRAMEQA19140,two,"how many soccer players is wearing white uniforms and one player wearing a blue uniform , are fighting for control of the soccer ball?",tumblr_nr2vau6kkr1utqicho1_500,82529,1 9646,FRAMEQA41594,vehicle,where are three men singing?,tumblr_nrlc3i7KYK1sqiy4oo1_400,60244,3 9647,FRAMEQA49182,two,how many men are sitting together?,tumblr_nkitkhGcr51qdlihoo1_500,63296,1 9648,FRAMEQA17198,blue,what is the color of the shirt?,tumblr_nrhrb2m1Vw1uzsdhio1_250,21057,2 9649,FRAMEQA8944,two,how many women is the man lifting up on a bar?,tumblr_ne00ewlpW41tdjuqvo1_400,13329,1 9650,FRAMEQA52022,two,how many men are playing guitar while one man is singing?,tumblr_ng5rs5F6tJ1t1nzngo1_500,79612,1 9651,FRAMEQA26920,egg,what does the man slice into two with a cooking utensil?,tumblr_n9guiyTTbi1tfen5bo1_250,22972,0 9652,FRAMEQA3538,coat,what does the man in the gray hat adjust?,tumblr_njv8g32euR1rregeqo1_500,10251,0 9653,FRAMEQA18838,two,how many men are performing the dance routine?,tumblr_ncntfulJrF1tbgcpko1_250,35740,1 9654,FRAMEQA19975,white,what is the color of the puppy?,tumblr_nijrydrPVc1rtzdq7o1_400,94791,2 9655,FRAMEQA22682,two,how many children stood looking at animals at an aquarium?,tumblr_ncosuakrUx1sht3fmo1_250,5701,1 9656,FRAMEQA9288,two,how many guys jump back and throw up their hands?,tumblr_n9uscu0MKn1tdve1no1_r1_500,68564,1 9657,FRAMEQA44870,dog,what is playing with the toy dog?,tumblr_no9t9j1OOA1usf060o1_250,26545,0 9658,FRAMEQA26804,dress,what is the woman wearing?,tumblr_ndyscvfO4c1sjzf6wo1_400,28569,0 9659,FRAMEQA33262,brown,what is the color of the substance?,tumblr_njx713VxJE1qgwe2io1_250,14268,2 9660,FRAMEQA35672,blue,what is the color of the sweatshirt?,tumblr_nfgljvCbkT1u41fj6o1_250,14703,2 9661,FRAMEQA22275,two,how many girls are holding their heads with hands and then hugging?,tumblr_nreb388PeN1rb1qd6o1_250,4298,1 9662,FRAMEQA13385,black,what is the color of the shirt?,tumblr_nb6s48cgKH1tcvnmho1_400,59797,2 9663,FRAMEQA44251,black,what is the color of the hat?,tumblr_njvi0ekA7l1u2vc96o1_500,89821,2 9664,FRAMEQA905,car,what spins out on the race track?,tumblr_nbatooeAde1tx8mn0o1_400,52734,0 9665,FRAMEQA50875,two,how many men is this hugging and patting each other on the back?,tumblr_n9l8ofOPZN1qz5sfko1_1280,46604,1 9666,FRAMEQA16966,black,what is the color of the pants?,tumblr_na3xhdCxli1sq0gyxo1_500,46592,2 9667,FRAMEQA36339,white,what is the color of the guitar?,tumblr_n9auyzrZNt1simukfo1_400,66175,2 9668,FRAMEQA41778,drink,what is the man wearing a black jacket is smiling and holding?,tumblr_nquj86RWoW1uyk370o1_250,10534,0 9669,FRAMEQA43720,shark,what is swimming in the deep blue ocean?,tumblr_nhbze7q65N1s6zpepo1_500,65465,0 9670,FRAMEQA7229,two,how many men is the man watching high five?,tumblr_nk5tob8U6W1rsdx8zo1_250,36538,1 9671,FRAMEQA29525,dogs,what lay on the couch and looked away?,tumblr_neqoabbUAH1s9wp82o1_400,30264,0 9672,FRAMEQA29212,room,what is the man entering?,tumblr_ncmrnnNzKo1t5lviko1_500,74652,0 9673,FRAMEQA26183,two,how many guys with medium black hair are talking?,tumblr_nhuoksIv0d1ra6i3zo1_500,95617,1 9674,FRAMEQA45713,microphone,what is the dark haired boy swinging back and forth and holding?,tumblr_na5qcvN7OT1qkv1mko1_250,5697,0 9675,FRAMEQA37135,white,what is the color of the uniform?,tumblr_ngx21oxUmx1qhrx75o1_400,76491,2 9676,FRAMEQA50268,cone,what does the man with nylon on his head swat?,tumblr_nr42r1NAQf1uaujqao1_400,65101,0 9677,FRAMEQA14504,two,how many men are sitting at the bench?,tumblr_nqtcj5Inx41uqqy9lo1_400,65836,1 9678,FRAMEQA26733,monkey,what is bouncing down the hallway?,tumblr_nhxu3kMb2e1s71nvbo1_400,40521,0 9679,FRAMEQA4026,four,how many men strike poses as another takes a picture?,tumblr_n9soht3hXu1ty4429o1_500,91209,1 9680,FRAMEQA20633,crotch,what is the man holding and making grinding movements?,tumblr_nkxvqaazzU1up8baqo1_250,3440,0 9681,FRAMEQA558,blue,what is the color of the background?,tumblr_ni3ifpHmOa1qc94ixo1_500,44795,2 9682,FRAMEQA23159,puppet,what is closing the brown door?,tumblr_nde98bVDhd1r21xqpo1_250,86043,0 9683,FRAMEQA33668,cat,what is being very friendly to another ginger cat?,tumblr_n90wdbaCbJ1sakfnpo1_250,40595,0 9684,FRAMEQA8343,street,where is the guy break dancing?,tumblr_nq6nzcIWOL1uyimcco1_500,96614,3 9685,FRAMEQA41787,cat,what knocks the baby penguin over?,tumblr_n8x1wfRppX1tdmffyo1_250,45924,0 9686,FRAMEQA18949,drumsticks,what does the drummer bang onto his drums in front of an audience?,tumblr_n8sm8xTWku1qkzi04o1_250,2761,0 9687,FRAMEQA1774,cat,what is standing right next to the door?,tumblr_nqqe7tTVgT1ssgyoro1_250,10404,0 9688,FRAMEQA40175,dog,what is playing with the toy that it has in the mouth?,tumblr_ngo9zfHkp61qixslso1_400,13941,0 9689,FRAMEQA13423,chair,where are the two identical men sitting?,tumblr_na41oyCHeF1rcndp1o1_500,9702,3 9690,FRAMEQA555,cat,what is staring intently at something in front of him?,tumblr_nl0oqeBJLk1qzs91yo1_1280,27459,0 9691,FRAMEQA18657,skateboard,what is the boy riding towards a ramp?,tumblr_ne2vwwZaUv1tcsf0uo1_400,61172,0 9692,FRAMEQA20269,room,what does the man look up at the ceiling n?,tumblr_ngug5dX7C21ruqod2o1_250,70532,0 9693,FRAMEQA52176,two,how many race cars are going around the race track?,tumblr_nri0fojp0G1tx8mn0o1_400,55938,1 9694,FRAMEQA42899,two,how many men is wearing white shirts are arguing?,tumblr_nbgjlsgNfd1skvcujo1_500,95762,1 9695,FRAMEQA34404,picture,what is this a man and then switches to a wrist band?,tumblr_njpf8u9tA71u65utjo1_1280,77635,0 9696,FRAMEQA13187,balloons,what is the woman dancing happily and are behind her?,tumblr_ncfnx1eh6m1tevyhdo1_500,95890,0 9697,FRAMEQA47356,plate,where does the hand set a stick?,tumblr_ndv1ycsv271s4jnano1_400,66056,3 9698,FRAMEQA36440,cigarette,what is the small alien toy smoking?,tumblr_ndce9hl2FS1tsn1aso1_500,34465,0 9699,FRAMEQA932,guitar,what is the man holding and singing in front of another man?,tumblr_n8t77uLMSw1tgftffo1_1280,87483,0 9700,FRAMEQA34694,car,what did the man crash during a race?,tumblr_nhbrltf1I31tx8mn0o1_400,86057,0 9701,FRAMEQA52392,two,how many well-dressed men are holding the conversation?,tumblr_nea2zdghTC1tlysvco1_400,29868,1 9702,FRAMEQA917,kangaroo,what is playing the air guitar and scratching himself?,tumblr_ndyh3iTJcd1tdjuqvo1_400,10995,0 9703,FRAMEQA41659,four,how many young women are doing the silly dance while holding microphones?,tumblr_nh5xc7xC5G1qcu75qo1_400,16930,1 9704,FRAMEQA20988,car,where is the girl singing?,tumblr_ncq8eyMlrJ1qkf1cno1_400,52199,3 9705,FRAMEQA48033,napkin,"what is the man standing up at a table during dinner , and he is throwing?",tumblr_nht0k7k5Mk1sd3lvvo1_1280,20050,0 9706,FRAMEQA1704,black,what is the color of the hair?,tumblr_nh85vvLn5D1u6gniuo1_400,32912,2 9707,FRAMEQA23446,shirt,what is the woman wearing and looking straight ahead?,tumblr_nfd11g9m741tm2ntoo1_500,67219,0 9708,FRAMEQA26982,puppy,what rolls off of the tiny couch?,tumblr_nhf9v5oufm1tjhld9o1_500,76043,0 9709,FRAMEQA47871,pets,what are sitting side by side?,tumblr_ngy4jkSGjY1tni61eo1_250,27236,0 9710,FRAMEQA31938,chair,where is the man biting his fingernails?,tumblr_nazcze5vKT1thn2bho1_250,25705,3 9711,FRAMEQA16673,bin,what is the cat hitting with its paw?,tumblr_nb6bp2wUl71t7jda2o1_400,71135,0 9712,FRAMEQA22361,truck,what goes over the small hill and does a nose dive?,tumblr_njpreqZ6fr1unq0gjo1_250,46570,0 9713,FRAMEQA38778,brown,what is the color of the hair?,tumblr_nc8e4peYNx1rcivpuo1_500,101709,2 9714,FRAMEQA4088,street,where is the girl with long hair dancing?,tumblr_nefaiatKqJ1siijy4o1_250,19993,3 9715,FRAMEQA35491,bird,what is walking around on the floor?,tumblr_nrac5ifOWX1utou2jo1_400,62192,0 9716,FRAMEQA44032,car,what is entering the garage?,tumblr_n88tfbzgHU1rhy09eo1_500,92569,0 9717,FRAMEQA34977,penguin,what chases another penguin swimming under water?,tumblr_nqdnyswOsw1qh9fn6o1_400,46476,0 9718,FRAMEQA43604,flags,what are the large group of people rolling over and waving?,tumblr_nkq03zqHC61un0bvgo1_400,87394,0 9719,FRAMEQA11221,two,how many men are fighting in the front seat of a car?,tumblr_n8sl7sBrq41qjv5vmo1_400,31074,1 9720,FRAMEQA16188,car,what do the girl drive down the road?,tumblr_new8c8mQDS1tebytso1_500,97834,0 9721,FRAMEQA1745,dog,what does the man go and pushes his chair away?,tumblr_nh42ws7eWR1tatohao1_400,36756,0 9722,FRAMEQA8368,white,what is the color of the top?,tumblr_napzl4gzgc1tukjnpo1_500,94102,2 9723,FRAMEQA18865,black,what is the color of the clothing?,tumblr_nhlja2c3I61qfayp5o1_400,18126,2 9724,FRAMEQA15057,red,what is the color of the balloon?,tumblr_neu6972ngW1rhkv10o1_400,27997,2 9725,FRAMEQA311,microphone,what is someone grabbing and singing into it?,tumblr_no6si0cRpR1svos5ho1_400,85631,0 9726,FRAMEQA6987,one,how many man cries and one man wipes tears from his eyes?,tumblr_nfdc35WaSX1u3l171o1_500,101667,1 9727,FRAMEQA36489,bird,what is the man wearing a hat is shooting?,tumblr_nbdrtjoyYK1tsmfzoo1_400,30461,0 9728,FRAMEQA21515,white,what is the color of the flags?,tumblr_nqveo9P2as1tae455o1_400,66327,2 9729,FRAMEQA32819,black,what is the color of the singing?,tumblr_nk5k9lbSaO1qjam7no1_540,50784,2 9730,FRAMEQA16081,guitar,what is the man leaning back and raising?,tumblr_nboqf2kOcT1renxlgo1_400,79037,0 9731,FRAMEQA13379,brown,what is the color of the hair?,tumblr_nf43yk0Urg1rxhelho1_250,81509,2 9732,FRAMEQA43342,three,how many men dance side to side and snap their fingers?,tumblr_na5rzqybN61te5frpo1_1280,45922,1 9733,FRAMEQA19118,red,what is the color of the eyes?,tumblr_nh6yhxFELz1sug4g8o1_r1_500,97951,2 9734,FRAMEQA18392,guitar,what are two people with long messy hair playing?,tumblr_nd8s1tUL2H1trp7kao1_500,26600,0 9735,FRAMEQA28111,one,how many boy is whispering something into another boy 's ear?,tumblr_n9bfkffhAg1tf2whho1_400,18627,1 9736,FRAMEQA42805,two,how many boys are talking to each other and standing in a room?,tumblr_n9y6tmnuQd1r5japgo1_400,66394,1 9737,FRAMEQA47987,elephant,what sticks its head out a window then puts its trunk in a hanging pail?,tumblr_njq1sabA971unh5yxo1_400,46615,0 9738,FRAMEQA44677,three,how many people are running along the line of trees?,tumblr_nelqmzBsfA1qhqng8o1_500,67679,1 9739,FRAMEQA34231,stairs,what is the man wearing all white is climbing up?,tumblr_nnzm18sXEV1rdynt3o1_500,168,0 9740,FRAMEQA25694,three,how many people are sitting down?,tumblr_nfe8ohMKD81tkoeqqo1_500,88138,1 9741,FRAMEQA41321,black,what is the color of the shirt?,tumblr_ngt2prFBuC1rdc8jao1_250,81347,2 9742,FRAMEQA36168,two,how many girls are dancing with each other?,tumblr_ngfktiCBxK1sbnbk1o1_400,34032,1 9743,FRAMEQA33357,room,where is the man kissing a woman?,tumblr_nb0varcEI71sd6qhwo1_500,97683,3 9744,FRAMEQA15668,pizza,what is the blonde boy stuffing into his mouth?,tumblr_ncsfs9XntW1tepekso2_500,59716,0 9745,FRAMEQA31117,red,what is the color of the girl?,tumblr_nitazkhnAd1u1egsso1_500,93401,2 9746,FRAMEQA21206,booth,where are quadruplets sitting across?,tumblr_nc59rv0l3t1r7oaaro1_400,65406,3 9747,FRAMEQA42866,jockey,what is too sure of himself?,tumblr_nb6erqN00E1slvh86o1_400,62327,0 9748,FRAMEQA1707,black,what is the color of the shirt?,tumblr_na0qsvFUM11tffk66o1_500,96586,2 9749,FRAMEQA12956,black,what is the color of the top?,tumblr_nj2q4b2pjY1s2jf57o1_400,70530,2 9750,FRAMEQA44256,yellow,what is the color of the couch?,tumblr_ncqcsfFKnr1rshkvyo1_400,52329,2 9751,FRAMEQA3897,jeep,what is the person riding down stair and it tips over and he falls?,tumblr_nam1acBsls1sgrimro1_400,1243,0 9752,FRAMEQA50739,black,what is the color of the shirt?,tumblr_n8xbtrl05i1rwwiw3o1_250,21206,2 9753,FRAMEQA11015,red,what is the color of the boy?,tumblr_ngnqtwWw3s1u60vhlo1_400,30664,2 9754,FRAMEQA37998,two,how many children ride are flying around the large room on brooms?,tumblr_nc9ponigE51tmq0ioo1_250,90924,1 9755,FRAMEQA52319,two,how many men are both moving from side to side?,tumblr_na8zogREs01tju8cjo1_400,33677,1 9756,FRAMEQA16591,banana,what is the man with dark hair eating?,tumblr_n8qbwbd8sH1swdkm1o1_250,4004,0 9757,FRAMEQA46128,two,how many men are sitting and talking on top of a roof?,tumblr_nl24faq4tH1uo8kgzo1_500,81844,1 9758,FRAMEQA9491,crow,what is rolling in the snow?,tumblr_ncbrd1GZox1s71nvbo1_500,59464,0 9759,FRAMEQA48768,two,how many race cars round the corner at a racetrack?,tumblr_ne0jf2Dmtj1tr5tuwo1_500,71919,1 9760,FRAMEQA34560,three,how many women are singing and shaking their heads from side to side?,tumblr_nqyd19SMIQ1u7qbgxo1_400,34073,1 9761,FRAMEQA48726,cars,what spin out while going around the curve?,tumblr_nr0uk6lrdI1raliteo1_400,79250,0 9762,FRAMEQA46059,white,what is the color of the suit?,tumblr_nc8gz0W3pf1qfnf9jo1_400,96220,2 9763,FRAMEQA8223,blue,what is the color of the shirt?,tumblr_n9uj5jyB9m1soovq7o1_500,91317,2 9764,FRAMEQA30950,two,how many balloons is the person banging on a person 's head?,tumblr_nqty9vJFCN1uztkiuo1_250,11148,1 9765,FRAMEQA48756,car,where did two people hit a person moving toward them?,tumblr_ne44f8BnGg1qhmhclo1_500,97777,3 9766,FRAMEQA35579,room,where are two ballet dancers dancing?,tumblr_nknr9xW0hU1u922jno2_400,78072,3 9767,FRAMEQA10448,dog,what is blinking its eyes?,tumblr_nhiydsOcmj1rtdnfto1_400,74853,0 9768,FRAMEQA37108,red,what is the color of the jacket?,tumblr_nhpr1eeF3n1t8bzkuo1_500,46589,2 9769,FRAMEQA46831,black,what is the color of the man?,tumblr_nbgeilomtY1tifif8o1_250,17513,2 9770,FRAMEQA24769,chair,where is the man sitting?,tumblr_ncham5ElY21qf1m5po1_500,96057,3 9771,FRAMEQA37247,black,what is the color of the coats?,tumblr_nk32pnnazT1skvgwao1_400,83387,2 9772,FRAMEQA17800,blue,what is the color of the jumpsuits?,tumblr_njvezjw04N1unmn69o1_400,24800,2 9773,FRAMEQA5122,white,what is the color of the shirt?,tumblr_n9140axZ7y1sfkj4so1_400,26056,2 9774,FRAMEQA8626,two,how many black woman are looking at each other?,tumblr_nk15pvmV3m1qzb52xo1_400,29669,1 9775,FRAMEQA31609,two,how many tubes is the hand holding of liquid?,tumblr_nrebnpJfWQ1qcr3i7o1_400,15722,1 9776,FRAMEQA39113,brown,what is the color of the hair?,tumblr_n9lq4ikwls1r77rooo1_400,60423,2 9777,FRAMEQA25212,brown,what is the color of the costume?,tumblr_nojzfeq9tU1rygrpxo1_400,60840,2 9778,FRAMEQA27760,white,what is the color of the man?,tumblr_na89vurzQV1sdeofyo1_250,18583,2 9779,FRAMEQA44635,cigarette,what is the man lighting beside a lake?,tumblr_nflyp6lmp51qj9te3o1_500,9190,0 9780,FRAMEQA16679,two,how many blonde women were hugging and smiling at each other?,tumblr_nc9nuf8BS91r51xvko1_500,79546,1 9781,FRAMEQA2597,backwards,what is the man wearing?,tumblr_naepk5DoIi1snxvgpo1_400,75860,0 9782,FRAMEQA25321,two,how many guys in blue uniforms are playing soccer against three men in red uniforms?,tumblr_n9p40kKIrP1s2ir5ko1_500,88309,1 9783,FRAMEQA12809,heels,"what are feet wearing tall , spiky , walk across the pavement?",tumblr_ncrtqmpi3I1t0urg8o1_500,85244,0 9784,FRAMEQA11587,glasses,what are the group of individuals wearing and cuddling while they watch some kind of entertainment?,tumblr_ne0pilw3Xs1qam9qho1_r2_500,85298,0 9785,FRAMEQA33113,black,what is the color of the hair?,tumblr_n9h6s64oTE1qh439wo1_500,79368,2 9786,FRAMEQA7894,brown,what is the color of the hair?,tumblr_nkvfrfYpKG1sco6ako1_400,70613,2 9787,FRAMEQA43201,red,what is the color of the woman?,tumblr_nll2l3AQAL1t8hlxao1_250,6690,2 9788,FRAMEQA24927,dog,what pounces on the kitten as they play?,tumblr_nq62pjNWtz1tk2ngvo1_400,74359,0 9789,FRAMEQA9333,dog,what is laying on a mat tilts its head to the side?,tumblr_nhidzpk1Bu1tjhld9o1_250,23339,0 9790,FRAMEQA46374,glasses,what is the man lifting up and down?,tumblr_ndgna3orE71toiobbo1_500,54995,0 9791,FRAMEQA38019,cat,what is yawning and then knocks the cup off of a dresser?,tumblr_na403e8Ozd1qeda9uo1_400,55798,0 9792,FRAMEQA11191,cat,what is petting the owl good night?,tumblr_nnx2foZwmV1tpg4boo1_250,50694,0 9793,FRAMEQA46271,white,what is the color of the puppy?,tumblr_ndpkdsmBEF1u1graho1_250,9957,2 9794,FRAMEQA3363,room,where is the person spinning around?,tumblr_nf0z9bZEoS1snb7q5o1_400,4864,3 9795,FRAMEQA25271,white,what is the color of the cup?,tumblr_nbhwtioIJ41qdcttio1_1280,49360,2 9796,FRAMEQA13063,chainsaw,what does the man in a suit swing around?,tumblr_njs4ktBjBu1rze3q1o1_500,67993,0 9797,FRAMEQA23958,two,how many men are sitting on the couch eating popcorn?,tumblr_nkvhjp6WO71sj3qcdo1_250,19312,1 9798,FRAMEQA11617,car,where does the man rub his face?,tumblr_n7qjawvGqz1tbse9vo1_250,81595,3 9799,FRAMEQA17025,two,how many singers are on stage while one waves his hand?,tumblr_nc7ghkx0rA1r91wsno1_500,88364,1 9800,FRAMEQA517,cigarette,what is the man with a goatee smoking?,tumblr_n9mlh1mp5t1s5c9bdo1_400,12323,0 9801,FRAMEQA11133,door,what does the young man with red hair open?,tumblr_ngqsshv5dg1tluxceo1_400,17326,0 9802,FRAMEQA38732,crib,where do two people place a man?,tumblr_ni0wm1MHqZ1s6zpepo1_250,51836,3 9803,FRAMEQA12412,three,how many men were dancing in different places?,tumblr_nee10oHKIS1taytvao1_400,58994,1 9804,FRAMEQA231,two,how many females in dresses performed holding microphones on stage?,tumblr_nkwxb54H081sxaoaro1_400,31700,1 9805,FRAMEQA2263,red,what is the color of the lips?,tumblr_nhnz7zKMYj1t0pznvo1_250,11016,2 9806,FRAMEQA30888,yellow,what is the color of the cat?,tumblr_npfcfptpJX1u0chl3o1_400,26346,2 9807,FRAMEQA48273,crow,what walks up behind wolf eating in the snow?,tumblr_nl2rl5ShaE1rftdx0o1_250,23330,0 9808,FRAMEQA44734,black,what is the color of the hair?,tumblr_mwhehdR3JE1s69ao0o1_400,67278,2 9809,FRAMEQA50156,black,what is the color of the jacket?,tumblr_nbpchsaQdB1tg4ng0o1_250,36389,2 9810,FRAMEQA13700,car,what drives down the street at dusk?,tumblr_nf2n4ztlqF1u25ovvo1_400,63509,0 9811,FRAMEQA40808,two,how many men is wearing masks are dancing and playing the drums?,tumblr_nf22adJ0VT1qd0q05o1_400,67256,1 9812,FRAMEQA22981,one,how many woman put makeup are the group of women helping on?,tumblr_n8uw0bs3ZI1qinzfzo1_400,29461,1 9813,FRAMEQA14671,two,how many women stood dancing next to each other?,tumblr_nl0lw5qYfq1uoz9klo1_400,22334,1 9814,FRAMEQA685,black,what is the color of the man?,tumblr_nppfdyjVsX1rftdx0o1_500,45223,2 9815,FRAMEQA37273,white,what is the color of the man?,tumblr_nfdmjslBH91t2huujo1_500,79448,2 9816,FRAMEQA35555,white,what is the color of the mice?,tumblr_naq4afnM0Z1s5o1jwo1_400,41704,2 9817,FRAMEQA28446,cat,what is the person holding?,tumblr_nhf1orqAZx1qfi90vo1_400,30323,0 9818,FRAMEQA45707,chair,what is the man spitting drink in another mans face and the other man falls off?,tumblr_ncvyw0ok611slmwoeo1_400,56984,0 9819,FRAMEQA14084,boat,where is the woman tripping over and landing in a man 's arms?,tumblr_nc3e3globU1snid6qo1_400,66138,3 9820,FRAMEQA7139,gray,what is the color of the kitten?,tumblr_nk7876agwW1slwrsuo1_400,16802,2 9821,FRAMEQA48504,beer,what is the man drinking?,tumblr_ngj9zpMYzD1u49rjuo1_400,79120,0 9822,FRAMEQA9766,dog,what is sticking his paws in water and falling asleep?,tumblr_nn8b3ckHXT1rgj6reo1_400,55944,0 9823,FRAMEQA17929,flag,what is the man pulling down from a wall?,tumblr_nd3qvcdW511tq4l8jo1_250,43971,0 9824,FRAMEQA672,cat,what is walking on the treadmill trying to get to a plate of food?,tumblr_n9mzyvftsL1the8uso1_400,46051,0 9825,FRAMEQA28875,seven,how many young people are smiling during the photo session?,tumblr_nkhy9uaa2H1qescp3o1_400,34558,1 9826,FRAMEQA42299,white,what is the color of the cat?,tumblr_nh40cqYid51s6zpepo1_250,2329,2 9827,FRAMEQA20271,guitar,"what is the young man playing on stage ,?",tumblr_n99r653gQr1tgsqsyo1_500,94400,0 9828,FRAMEQA8480,blue,what is the color of the coat?,tumblr_nh4uxuDDsO1u5zq37o1_500,95948,2 9829,FRAMEQA2414,sword,what is the woman holding?,tumblr_ni19mwflR81u4e94wo1_250,27098,0 9830,FRAMEQA8695,cat,what is lying in the box and playing with a round object?,tumblr_nntolgMF0D1tyncywo1_250,53460,0 9831,FRAMEQA21503,blue,what is the color of the top?,tumblr_nnz2d7SvNE1un10nuo1_250,19568,2 9832,FRAMEQA22251,car,what do as person waves two fingers as they enter?,tumblr_n93oox0VfY1s824qjo1_r1_400,83167,0 9833,FRAMEQA26277,black,what is the color of the group?,tumblr_nfq2lpexwE1u3f64so1_500,79591,2 9834,FRAMEQA27119,cat,"what part-buried in snow , with just head and tail exposed?",tumblr_npr7lkdUyx1s71nvbo1_500,83711,0 9835,FRAMEQA15007,white,what is the color of the sheets?,tumblr_ne5w7sROwX1tjdvfuo1_400,80200,2 9836,FRAMEQA9887,stairs,what is the man walking up with holding a bottle of water?,tumblr_n914bjCRnC1tq63bwo1_250,17532,0 9837,FRAMEQA50134,red,what is the color of the shirt?,tumblr_naqh7em4jX1rrua0wo1_400,59131,2 9838,FRAMEQA28425,black,what is the color of the man?,tumblr_nhv8yzFmkd1u3l54uo1_400,63798,2 9839,FRAMEQA30276,computer,what is the young man using?,tumblr_ng329lAqkq1sh2a17o1_400,64842,0 9840,FRAMEQA31309,two,"how many wrestlers are in the ring , when one pins the other one down for a three count?",tumblr_nq0kf8UYHt1sqh42jo1_400,60824,1 9841,FRAMEQA18938,window,what did the woman touch?,tumblr_npzxfuURik1r0vgovo1_500,97453,0 9842,FRAMEQA21520,one,how many guy is smiling while another guy is talking?,tumblr_nfao9fM1Ph1tqwtb6o1_250,27818,1 9843,FRAMEQA16199,shore,what are waves covering surrounded by mountains?,tumblr_ndtla1XlEz1s0tynuo1_400,29755,0 9844,FRAMEQA13881,ball,what does the soccer player hit?,tumblr_nesjjsxV3q1r1rrd0o1_400,66349,0 9845,FRAMEQA7991,four,how many men with beards are shouting at each other?,tumblr_nr1qx68R9Q1uulsvio1_400,74990,1 9846,FRAMEQA13892,belt,what is somebody with fair hair putting on?,tumblr_n9x2h32Ux61t2ozhco1_250,12316,0 9847,FRAMEQA9707,two,how many men are on top of a pool table?,tumblr_ncbycrsfId1sggdd3o1_400,76625,1 9848,FRAMEQA22502,cat,what sits in its bed and yawns?,tumblr_nhxrmjqiJv1slj978o1_250,36590,0 9849,FRAMEQA40772,brown,what is the color of the dances?,tumblr_ndtm8zH5Qo1tbmi9ho1_400,69596,2 9850,FRAMEQA52202,chicks,what are jumping off the high cliff?,tumblr_ne55yo7DLv1tsmvhdo1_500,94775,0 9851,FRAMEQA51324,orange,what is the color of the tail?,tumblr_n9abseuY0C1slj978o1_400,70847,2 9852,FRAMEQA20066,black,what is the color of the suit?,tumblr_ne0sqdQHvF1tl1ehbo1_400,65857,2 9853,FRAMEQA43310,purple,what is the color of the trees?,tumblr_nimutq2SO61tjd11mo1_500,75088,2 9854,FRAMEQA17719,two,"how many teenagers are singing , dancing and laughing?",tumblr_nbcgxcAnLa1qc6y5wo1_400,33510,1 9855,FRAMEQA51049,masks,what are the people making or fixing?,tumblr_nc8wc3bPk61tmp9jpo1_400,9479,0 9856,FRAMEQA49800,cat,what is chasing the man around a computer screen?,tumblr_nobxqkQ9G11tpg4boo1_250,22695,0 9857,FRAMEQA14040,cats,what are laid down together on the floor?,tumblr_njxp04rEFk1tjjnlno1_400,71522,0 9858,FRAMEQA48950,cat,what does the man in white armor walk through the water and does the same?,tumblr_n9kuvyUJT91sual3ro1_250,3721,0 9859,FRAMEQA22972,white,what is the color of the man?,tumblr_nbgbm5yvBo1totmz5o1_250,48940,2 9860,FRAMEQA17748,white,what is the color of the shirt?,tumblr_ndpysnBDbX1u1gl2xo1_250,6267,2 9861,FRAMEQA39617,two,how many men are smoking?,tumblr_n9by90fW3W1ruvp0co1_500,89807,1 9862,FRAMEQA49199,two,how many men are talking?,tumblr_nimwrrQM0q1tz1pago1_400,81072,1 9863,FRAMEQA5333,guitar,what does the young man with blonde hair play?,tumblr_nait93JoFa1t1hwbqo1_250,7808,0 9864,FRAMEQA49686,cat,what does the tabby cat push away with its back feet?,tumblr_n9j6u0SS061ri0wzfo1_400,39368,0 9865,FRAMEQA19386,white,what is the color of the shirt?,tumblr_njxtuwvgS91ttuja3o1_400,86076,2 9866,FRAMEQA46421,circles,what is the woman turning while going down the street?,tumblr_naxltyc41D1tkwr3ko1_500,86316,0 9867,FRAMEQA47621,guitar,"what is the young man playing , looking sideways and singing?",tumblr_np1mqhrIMa1uwhbn9o1_250,12160,0 9868,FRAMEQA36079,two,how many women are fighting and flipping each other?,tumblr_n8qenkJHA91srbyoyo1_400,88471,1 9869,FRAMEQA40623,turns,"what is the car making around each bend ,?",tumblr_nkrf6t4Kcu1u9xj6to1_500,92709,0 9870,FRAMEQA7359,trunk,what does the race car lose while driving on a track with several other cars?,tumblr_nen2gpqUlI1tx8mn0o1_400,55482,0 9871,FRAMEQA50308,guitar,what are two musicians singing and playing together?,tumblr_nk70ezm3eq1tkand4o1_400,33037,0 9872,FRAMEQA48957,lamp,what is the woman with a nose ring holding?,tumblr_nf5g6kILKI1ra72xto1_500,89135,0 9873,FRAMEQA46724,two,how many guys are playing guitar and singing?,tumblr_njziaa2Zn31u8fu4co1_500,52099,1 9874,FRAMEQA22953,bedroom,where are the man and a young woman talking?,tumblr_ndc27y5VMO1u18vm5o1_400,82772,3 9875,FRAMEQA2787,bird,what is catching the fish out of the water?,tumblr_ng4pc6U2ib1rmvdlro1_400,31969,0 9876,FRAMEQA48254,green,what is the color of the bird?,tumblr_ngco2hZoYX1sflxw5o1_250,8062,2 9877,FRAMEQA14487,two,how many fingers is the guy kissing at the crowd?,tumblr_nqclsshFCq1u802c3o1_500,60538,1 9878,FRAMEQA40461,car,where are the young man and a young woman driving?,tumblr_nh79ioD59r1u6eyp0o1_400,30642,3 9879,FRAMEQA2658,door,what is the cat kicking with a back paw?,tumblr_n9xu4w1Lfq1tatohao1_400,40652,0 9880,FRAMEQA40716,cat,what is kicking the door with its back leg?,tumblr_n9xu4w1Lfq1tatohao1_400,40652,0 9881,FRAMEQA47629,window,what does the man point his finger and shatters?,tumblr_ndwki1UrXg1s30542o1_500,86246,0 9882,FRAMEQA25150,room,where is the dark haired girl dancing?,tumblr_na9dyj81wq1tinuvfo1_400,7364,3 9883,FRAMEQA43106,red,what is the color of the shirt?,tumblr_ngll7ipfEJ1t5mda1o1_400,89218,2 9884,FRAMEQA8150,two,how many men is jumping and catapult another man?,tumblr_nmctp8E72g1rhpmtko1_400,85003,1 9885,FRAMEQA3694,three,how many young men are laughing it up on a couch?,tumblr_n95dgjajvW1syjz5uo1_250,13891,1 9886,FRAMEQA30350,masks,what are the girl with gloves and a boy wearing?,tumblr_nc8yn0AUFo1qk5xgqo1_400,60822,0 9887,FRAMEQA23827,blue,what is the color of the robe?,tumblr_njt036Y1271szl0gfo1_250,15733,2 9888,FRAMEQA24760,puppy,what is the man holding?,tumblr_nqeuudSoy11trx1hko1_250,3071,0 9889,FRAMEQA23506,two,how many women are dancing?,tumblr_ng8j7afCAt1rn9s7oo1_250,59777,1 9890,FRAMEQA42185,dog,what tries to jump at the balloon?,tumblr_ngf79bgJEJ1sht3fmo1_400,1473,0 9891,FRAMEQA32856,white,what is the color of the shirt?,tumblr_no0wtz5OTs1sj8qgio1_250,39640,2 9892,FRAMEQA13226,bear,what is dancing to some music?,tumblr_n93e3yR9xH1sur4uqo1_250,4752,0 9893,FRAMEQA24984,purple,what is the color of the dances?,tumblr_n8pwnqmWsZ1qbzxofo1_400,74550,2 9894,FRAMEQA11699,yellow,what is the color of the jacket?,tumblr_nfcmojvqo51tbse9vo1_250,37778,2 9895,FRAMEQA33346,turtle,what is on top of a teddy bear biting it?,tumblr_na5lfp2AsH1tn37i7o1_500,37338,0 9896,FRAMEQA27325,cat,what is climbing up bars in a closet?,tumblr_nh2j9ov5zN1u4v3ypo1_250,155,0 9897,FRAMEQA2276,two,how many guys are talking?,tumblr_na8isnxg2D1s6r1roo1_400,21968,1 9898,FRAMEQA37933,white,what is the color of the shirt?,tumblr_nfpgnfekrZ1thlpapo1_250,1848,2 9899,FRAMEQA40168,coat,what is the man wearing inside and talking to another man?,tumblr_ng6elw4KPi1tb8qpro1_250,19283,0 9900,FRAMEQA50288,black,what is the color of the man?,tumblr_nk5tob8U6W1rsdx8zo1_250,36538,2 9901,FRAMEQA6041,two,how many men raise light sabers as doors open to reveal a dancing man with a light saber?,tumblr_nnv3paZgju1tqq823o1_500,96962,1 9902,FRAMEQA24533,green,what is the color of the bird?,tumblr_nczlfupRqq1tvuidio1_500,84031,2 9903,FRAMEQA5547,two,how many young men cross in front of each other?,tumblr_npf71mXOMJ1t0ojyvo1_500,100347,1 9904,FRAMEQA12542,white,what is the color of the shirt?,tumblr_na4g8qSaqy1rgywxto1_400,58570,2 9905,FRAMEQA321,white,what is the color of the man?,tumblr_nrck59A3RN1tu5z4ho1_400,68621,2 9906,FRAMEQA44336,two,how many people are sitting on the couch?,tumblr_nnx611gAZA1teszvzo1_400,40182,1 9907,FRAMEQA46706,car,what is driving down an otherwise empty street?,tumblr_neend692r31u25ovvo1_400,63543,0 9908,FRAMEQA17574,library,where is the man with sunglasses on standing?,tumblr_nk9idiRpcZ1uoy13yo1_500,33936,3 9909,FRAMEQA36138,two,"how many brothers are playing rock , paper , scissors?",tumblr_nbv7fnwnlh1tm2vn6o1_400,28619,1 9910,FRAMEQA35548,two,how many people are singing and performing on the stage?,tumblr_nk1ul5xW0Q1ry0cvlo1_400,66022,1 9911,FRAMEQA24363,three,how many men in white shirts are talking into microphones?,tumblr_ndxcge7SrF1t0ojyvo1_500,50672,1 9912,FRAMEQA48659,black,what is the color of the hat?,tumblr_nbo7vzie171rrmr2bo1_400,31091,2 9913,FRAMEQA35871,string,what did the woman carefully wind around the green flower?,tumblr_njvmt3qmAh1u370zso1_540,42521,0 9914,FRAMEQA30433,walls,what is the lemur bouncing off?,tumblr_nhxu3kMb2e1s71nvbo1_400,40521,0 9915,FRAMEQA40036,blue,what is the color of the dancing?,tumblr_naoh13qgd91sk0762o1_400,29843,2 9916,FRAMEQA2605,street,where is the guy being pushed?,tumblr_nfj56pBdEU1r9qhhio1_400,86530,3 9917,FRAMEQA47164,white,what is the color of the shirt?,tumblr_n90v4wouUG1txdpb1o1_250,12086,2 9918,FRAMEQA43520,dog,what is sleeping waving his ears?,tumblr_nrczpkDZLN1r7t178o1_500,52892,0 9919,FRAMEQA7501,two,how many wrestling women are walking forwards in the corridor?,tumblr_n9sj5cqJdi1sycli7o1_500,75249,1 9920,FRAMEQA23554,black,what is the color of the hair?,tumblr_nihx73QAqi1rf4bn2o2_r1_540,101197,2 9921,FRAMEQA17788,paw,what is the cat dipping in a glass of milk?,tumblr_ncxt71hFPt1t7io47o1_250,23002,0 9922,FRAMEQA35618,two,how many young men are standing around chewing something?,tumblr_nho36xy72u1sfxtxno1_1280,56346,1 9923,FRAMEQA13073,room,what does the man grimace and leaves?,tumblr_nqym5bN7i91usioooo1_500,51926,0 9924,FRAMEQA37181,chocolate,what are the group of people sitting around and eating?,tumblr_nhwbfxhALY1tv8vr1o1_500,76329,0 9925,FRAMEQA21101,bra,what is the man taking off then laughing?,tumblr_njy64tqeu01unlpflo1_400,86921,0 9926,FRAMEQA13116,piece,"what is the beautiful , blonde woman wearing a back top and matching?",tumblr_natc50Bn5N1taq9qwo1_250,25727,0 9927,FRAMEQA36026,sheet,what is the man in a black shirt holding?,tumblr_ne9v07TxUL1sjcvc1o1_250,84536,0 9928,FRAMEQA31701,blue,what is the color of the umbrellas?,tumblr_nbanbjaQeV1rkcp22o1_400,28963,2 9929,FRAMEQA35962,red,what is the color of the jumper?,tumblr_nr2yi2tEwm1ux03doo1_400,66974,2 9930,FRAMEQA39921,red,what is the color of the background?,tumblr_ndbkcs1u3g1r6o49fo1_250,223,2 9931,FRAMEQA25838,two,"how many people sit next to each on a couch , holding hands?",tumblr_nnuitmA6Lv1upjacho1_500,88725,1 9932,FRAMEQA37765,red,what is the color of the shoes?,tumblr_nbbxniaLRG1sx37a9o1_400,4873,2 9933,FRAMEQA25517,one,how many man squeezes the other 's face and the other man spits out his food?,tumblr_neko3rdy1l1s1pgzio1_500,51261,1 9934,FRAMEQA28970,black,what is the color of the top?,tumblr_ngl4sfejED1u4rb65o1_400,84249,2 9935,FRAMEQA17021,two,how many people is this image of on stage with microphones singing?,tumblr_ni0z9cQOGd1tdytspo1_500,94401,1 9936,FRAMEQA34619,black,what is the color of the hair?,tumblr_njss7pkaUq1unlazfo1_400,19591,2 9937,FRAMEQA32785,two,how many men are keeping rhythm with the beat of music?,tumblr_neyn5fQWKo1r3ydxho1_1280,57540,1 9938,FRAMEQA7445,red,what is the color of the popsicle?,tumblr_nc4e6y37661qzm8mpo1_250,35503,2 9939,FRAMEQA898,two,how many men are moving and singing in the white room?,tumblr_npkxhturUR1uxcyego1_400,73594,1 9940,FRAMEQA33761,three,how many boys are performing the song on stage?,tumblr_neafumKFkZ1u1nx3wo1_250,8436,1 9941,FRAMEQA44717,two,how many men are drinking alcohol in a bowling alley?,tumblr_ndkfsb1dgm1tbnwqmo1_400,61016,1 9942,FRAMEQA19614,one,"how many man sits with his knees up , while the man next to him talks and moves his hands around?",tumblr_nd4uhd6qJJ1tv0ziio1_400,33623,1 9943,FRAMEQA26063,brown,what is the color of the hair?,tumblr_ncr4aaumad1tnw2l6o1_250,341,2 9944,FRAMEQA26706,cubs,what are playing with baby toys?,tumblr_nnzlhp8DpG1tgouwlo1_500,38497,0 9945,FRAMEQA9503,two,how many guys is the man holding the microphone is trying to interview?,tumblr_naywiz1q9Q1sqzd72o1_250,19324,1 9946,FRAMEQA46264,white,what is the color of the man?,tumblr_n8ptqhbSXp1rjwte6o1_400,67868,2 9947,FRAMEQA38799,car,what is drifting in the field of dry grass?,tumblr_ngf9rveb2q1sh98coo1_400,94749,0 9948,FRAMEQA4450,red,what is the color of the hair?,tumblr_nqcc8oJQI61trt6euo1_400,30620,2 9949,FRAMEQA2248,cat,what hurt itself while playing with paper?,tumblr_nnilizLpNo1rv38tao1_400,36771,0 9950,FRAMEQA938,two,how many men are talking and throwing their hands up?,tumblr_notwusKOgr1sqpx7ko1_400,100986,1 9951,FRAMEQA47418,cigarette,what is this man smoking while looking around?,tumblr_ndraq7VgPA1rq1604o1_500,90690,0 9952,FRAMEQA44796,guitar,what is the guy wearing a hat is playing?,tumblr_nd9djqIJG21r5rpejo1_250,27298,0 9953,FRAMEQA45370,airplanes,what drive very low and close to the water?,tumblr_nrg7ha63Zf1sdbhp4o1_400,51214,0 9954,FRAMEQA9135,grass,what is the bunny chewing and trying to get out his cage?,tumblr_nc45r8KiyO1tlzpnko1_250,16225,0 9955,FRAMEQA6701,brown,what is the color of the girl?,tumblr_ncuqfo9oE01rkw997o1_400,30193,2 9956,FRAMEQA43775,blue,what is the color of the eyes?,tumblr_nam95exVK61trs99ko1_250,12287,2 9957,FRAMEQA21029,gun,what is the boy holding up?,tumblr_nhsrz51SVx1qf6ezuo1_500,82537,0 9958,FRAMEQA4597,black,what is the color of the shirt?,tumblr_nbfwvb2hwX1thi9glo1_250,19948,2 9959,FRAMEQA38454,brown,what is the color of the hair?,tumblr_nag19o9ymZ1rueo5mo1_400,69212,2 9960,FRAMEQA33133,robot,what is driving from plate to plate applying ketchup to some hamburgers?,tumblr_nhum3oocm21u662zbo1_400,41026,0 9961,FRAMEQA38975,two,how many girls on the floor dance and play around?,tumblr_nl3yuk3UEX1t7i7oqo1_400,32357,1 9962,FRAMEQA5242,chair,where does the man in a black lean back?,tumblr_n9ensmVNvD1ttu918o1_500,100105,3 9963,FRAMEQA31247,cigarette,"what is the man smoking ,?",tumblr_nhv7jy5DBj1sjv6nlo1_250,37961,0 9964,FRAMEQA902,purse,what is the woman picking up and walking away with it?,tumblr_nd2yltfEa81tdjuqvo1_400,87899,0 9965,FRAMEQA4189,one,how many guy is playing the guitar while another is smiling and waving?,tumblr_nho4lw7YQP1tooeulo1_500,86177,1 9966,FRAMEQA23871,black,what is the color of the dog?,tumblr_nfyndnYw1C1rmkebwo1_400,32270,2 9967,FRAMEQA41355,black,what is the color of the jacket?,tumblr_n92ateSCgb1thc85fo1_250,83213,2 9968,FRAMEQA23941,two,how many men sit in chairs as they give interviews?,tumblr_nao9y58N7P1qfy935o1_400,64283,1 9969,FRAMEQA22939,two,how many men are on stage?,tumblr_nba4zsrstP1thacl7o1_500,19023,1 9970,FRAMEQA137,knife,what is the man with short hair brandishing and smiling?,tumblr_ne9y6ssSON1tk8n6jo1_250,39630,0 9971,FRAMEQA46302,two,how many guys are moving to something on a stadium?,tumblr_njavyfLo1J1u9268ao1_400,9220,1 9972,FRAMEQA21057,red,what is the color of the hair?,tumblr_njrmo9arP31s2mg9to1_500,88169,2 9973,FRAMEQA48104,blue,what is the color of the shirt?,tumblr_ncu9jrqhjF1twu0uoo1_400,57933,2 9974,FRAMEQA31651,black,what is the color of the hair?,tumblr_nct9k6xWJP1tmud5do1_400,59715,2 9975,FRAMEQA7456,headphones,what is the man wearing and moving his arms around?,tumblr_ngw6o7Ekz41sgsmbqo1_100,22111,0 9976,FRAMEQA41127,black,what is the color of the hair?,tumblr_nfb43gc3nc1tk7vg4o1_500,50530,2 9977,FRAMEQA997,brown,what is the color of the hair?,tumblr_ngye1wU1N01rymx0io1_500,79529,2 9978,FRAMEQA3534,microphone,what is the man in black holding and a woman is dancing up to him?,tumblr_najgdrKOWV1teiq60o1_500,74304,0 9979,FRAMEQA35224,room,where is the guy discussing a theory?,tumblr_naxkebyfCU1ta0pdyo1_500,37061,3 9980,FRAMEQA10949,bathroom,where is the teenager wearing a striped shirt smiles?,tumblr_nhmof9AmBa1qmsoz0o1_400,34179,3 9981,FRAMEQA50370,two,how many boys look as if they are about to kiss?,tumblr_nbz9evJpXZ1tgqwj8o1_250,85691,1 9982,FRAMEQA20094,guitar,what is the man with wild hair pumping in the air?,tumblr_ng9owiPitI1u4pbd2o1_500,89655,0 9983,FRAMEQA6274,two,how many people are doing the woman 's makeup while she stands in front of a mic?,tumblr_n8uw0bs3ZI1qinzfzo1_400,29461,1 9984,FRAMEQA47251,cat,what is siting on the dresser and knocks something off of it?,tumblr_na403e8Ozd1qeda9uo1_400,55798,0 9985,FRAMEQA47012,guitar,what is the man playing in a dark room?,tumblr_np0stcDMuz1u3z45ao1_500,46013,0 9986,FRAMEQA1303,white,what is the color of the shirts?,tumblr_naq9tgb73C1retsn4o1_500,96116,2 9987,FRAMEQA4929,street,where is the beautiful turtle walking?,tumblr_nba4pcH1vc1slj978o1_400,14475,3 9988,FRAMEQA20476,frog,what does the woman reach over and touches?,tumblr_nhwanmiWzD1qlkuvao1_250,76552,0 9989,FRAMEQA21741,purple,what is the color of the coat?,tumblr_ndoue7RnCY1tkkgpso1_400,36241,2 9990,FRAMEQA48571,two,how many guys is this image of sitting down talking to each other?,tumblr_nelrob2YG41u32mywo1_250,84517,1 9991,FRAMEQA47786,two,how many people is wearing historic clothing look at each other and embrace?,tumblr_npdc7wPDYW1uvkm4po1_500,101115,1 9992,FRAMEQA33490,cat,what does the dog knock a cat in to a bath tub and jumps back out?,tumblr_nbh3y0lqgx1tuj3bpo1_400,34855,0 9993,FRAMEQA34778,two,how many men are talking to each other?,tumblr_nox34tXaCU1u95gjqo1_400,64245,1 9994,FRAMEQA39024,shower,where did the boy blink then laughed?,tumblr_nfr6feQ1ii1smz8r1o1_400,54085,3 9995,FRAMEQA50680,two,how many men is wearing dark clothes are pushing each other and play fighting?,tumblr_nbpvltiHql1tjag8mo1_250,21881,1 9996,FRAMEQA44185,black,what is the color of the shirt?,tumblr_nh9k2q1UhR1smenr8o1_250,43560,2 9997,FRAMEQA6990,restaurant,"where is the man eating , having cake?",tumblr_njn51xCYFt1tldu19o1_500,70213,3 9998,FRAMEQA49235,black,what is the color of the jacket?,tumblr_nhvh0oFqSJ1tf7jhlo1_250,25578,2 9999,FRAMEQA37437,hallway,where are two guys standing?,tumblr_nhvvdlFwGZ1qdbe91o1_400,77610,3 10000,FRAMEQA52878,two,how many men eat either end of a green tube while laughing?,tumblr_newrcpj47E1u1ym3zo1_250,46934,1 10001,FRAMEQA51599,black,what is the color of the bird?,tumblr_n95xq1FqHa1s0ea0ao1_400,50632,2 10002,FRAMEQA36019,kitten,what is playing with the mouse?,tumblr_nj9xu7hQBq1r7o668o1_400,50810,0 10003,FRAMEQA32310,kitchen,where are two men eating cereal?,tumblr_n1wdvaQgaI1scy8zoo1_400,36893,3 10004,FRAMEQA20887,purple,what is the color of the hair?,tumblr_ndurbh6w6U1rm0u6lo1_400,58760,2 10005,FRAMEQA22653,jacket,what is the man wearing and dancing with other men?,tumblr_ng8cq0OE6r1u2z3v8o3_250,2254,0 10006,FRAMEQA17055,two,how many men start freaking out at the same time?,tumblr_nc8usq5bxK1t6ckbko1_400,57386,1 10007,FRAMEQA39563,hat,what falls off of the man while he is singing?,tumblr_ng6hsntJrr1s3f23uo1_250,1683,0 10008,FRAMEQA15796,dog,what is the baby in one pool with a swim ring and is in the other pool?,tumblr_nn4nr9hX3C1sm7eoto1_500,41251,0 10009,FRAMEQA16236,guitar,what is two people playing?,tumblr_nbjiylGWRL1tlsqhto1_250,91085,0 10010,FRAMEQA48323,bow,what did the woman kiss?,tumblr_npplhk1yOz1tbeohdo1_540,56295,0 10011,FRAMEQA36370,pig,what is this eating a carrot?,tumblr_n985jc2Wyr1sj2zt0o1_400,33712,0 10012,FRAMEQA38231,two,how many girls are crying and fixing their hair?,tumblr_narnmt2HIO1tqhp30o1_400,79186,1 10013,FRAMEQA48282,kitten,what looks around and settles down on the couch?,tumblr_nk3tgnyofk1txpva2o1_500,78132,0 10014,FRAMEQA47829,three,how many guitar players are jumping on stage?,tumblr_n9535qdmnf1tyyv4yo1_400,57859,1 10015,FRAMEQA39737,vehicle,what is the man driving before turning his head to look at a passenger?,tumblr_ncvwisimqr1tmhwpbo1_250,56167,0 10016,FRAMEQA29541,black,what is the color of the lady?,tumblr_naekrosZth1s2zgxfo1_500,72270,2 10017,FRAMEQA43143,white,what is the color of the jacket?,tumblr_np8cnaTLBq1tvv8b0o1_500,92046,2 10018,FRAMEQA51276,two,how many guys is this image of in costumes dancing?,tumblr_nflu1hiOCs1tj2kheo1_400,66030,1 10019,FRAMEQA15276,two,how many men are boxing in an arena?,tumblr_no0933CNzs1uv4mmfo1_400,58519,1 10020,FRAMEQA52733,two,how many men are running outside?,tumblr_no66cpooeo1us355ko1_400,64490,1 10021,FRAMEQA23475,bracelet,what is adjusting her hair?,tumblr_ncs44yyDyy1s4s9tuo1_400,30160,0 10022,FRAMEQA142,dog,what sticks out it 's tongue and moves it head from side to side?,tumblr_nbx1tmy96X1tpo01go1_400,4945,0 10023,FRAMEQA50246,pole,what are the group of monkeys all touching?,tumblr_nbzz3bhaZq1s71nvbo1_500,91879,0 10024,FRAMEQA28247,drums,what is the boy playing?,tumblr_nf8rs94sSj1tcot63o1_250,13953,0 10025,FRAMEQA20165,car,where does the woman suddenly stop her car on a highway?,tumblr_nh5u2chPoA1rp5w0lo1_400,82442,3 10026,FRAMEQA28243,two,how many teams are playing soccer on a pitch?,tumblr_nc7s8t8qVf1tumc0bo1_400,66023,1 10027,FRAMEQA48023,car,what passes another race car during a race on a track?,tumblr_ncqiquZx9u1tx8mn0o1_400,65286,0 10028,FRAMEQA32394,figurine,what is the young man rubbing on the bottom of his?,tumblr_nh6t8ixB6O1roo9cdo1_500,55790,0 10029,FRAMEQA10928,hat,what is the man wearing and holding a cane while walking?,tumblr_n91fdzM1VS1s1l4fio1_400,82743,0 10030,FRAMEQA20348,two,how many men are bowing while dancing on stage?,tumblr_n9flwiVMFP1tpe9lro1_250,9456,1 10031,FRAMEQA30908,two,how many women are in the pool and hug each other?,tumblr_n9qycyrMPe1tid4e3o1_250,15970,1 10032,FRAMEQA47845,ball,what does the man kick through a tire?,tumblr_nctwxv3Cf61sdoqnro1_500,63764,0 10033,FRAMEQA40368,blue,what is the color of the hair?,tumblr_ngo4mlJOJN1qhpvavo1_400,60720,2 10034,FRAMEQA14235,red,what is the color of the x?,tumblr_nh0ddtHrBj1tg85j7o1_400,36841,2 10035,FRAMEQA92,backpack,what does the man throw at a bird but it falls into the water so he jumps in after it?,tumblr_nb0ucyKamo1qmvxdro1_400,40574,0 10036,FRAMEQA16773,ball,what is the soccer player kicking into the net from halfway down the soccer field?,tumblr_nqttc4g8jR1u7q0qeo1_400,92146,0 10037,FRAMEQA8096,white,what is the color of the shirt?,tumblr_nbiszkunNq1sd4gn9o1_400,32933,2 10038,FRAMEQA22281,grass,what is the girl touching with her leg?,tumblr_nriqs0WZHF1rcfujso1_500,32330,0 10039,FRAMEQA22769,purple,what is the color of the shirt?,tumblr_n92op4yc5Y1rxahw2o1_400,52857,2 10040,FRAMEQA4244,two,how many men are talking while shirtless?,tumblr_nhqa0w4T6e1u7c3syo1_250,90930,1 10041,FRAMEQA39322,white,what is the color of the t-shirt?,tumblr_nkkhilUtwi1rkmghzo1_250,43958,2 10042,FRAMEQA33145,horse,what is blinking and looks down?,tumblr_ni2yugot1B1tiz27ro1_500,37357,0 10043,FRAMEQA45008,hood,what is the man wearing and another man smiles?,tumblr_nhwb12FhSt1rayvhto1_250,10272,0 10044,FRAMEQA7012,round,what is the woman turning?,tumblr_ngmm6bIs0m1qzdriyo1_250,17801,0 10045,FRAMEQA46516,two,how many guy are laughing and doing stuff together?,tumblr_nr61n6fLpi1sgol7yo1_500,55829,1 10046,FRAMEQA25594,cat,what is moving something with its feet?,tumblr_ndopa89squ1tk9tvao1_500,94715,0 10047,FRAMEQA459,black,what is the color of the hair?,tumblr_ngxozslr4z1u3ezrno1_400,64185,2 10048,FRAMEQA47198,stick,what is the man rubbing?,tumblr_ncepuifpK81rsfjdwo1_250,14846,0 10049,FRAMEQA32458,black,what is the color of the woman?,tumblr_ne7p2lftRW1tjvogto1_250,8468,2 10050,FRAMEQA29601,two,how many men in black are talking whilst one of them massages his fingers?,tumblr_nnjwd9zoNn1upsi9qo1_400,66967,1 10051,FRAMEQA8557,gray,what is the color of the shirt?,tumblr_nepa4xWCUO1rzia65o1_250,2379,2 10052,FRAMEQA12268,two,how many men are shown then they slowly fade away?,tumblr_n9jsshBHVv1roay1bo1_250,17178,1 10053,FRAMEQA48955,gray,what is the color of the dragon?,tumblr_nc40genyZD1s74rfdo1_250,85699,2 10054,FRAMEQA18471,lens,what does the man put on his sunglasses and falls out?,tumblr_na96syBV661rt21foo1_400,25076,0 10055,FRAMEQA8808,chair,where is the young man sitting and dancing?,tumblr_nhtgja7dPW1qzni2wo1_r1_500,39332,3 10056,FRAMEQA32306,blue,what is the color of the bowl?,tumblr_nd73ono6M61tssk6do1_400,33092,2 10057,FRAMEQA40875,green,what is the color of the shirt?,tumblr_nh938wehDn1s20pcpo1_500,71344,2 10058,FRAMEQA49176,room,where does the man do a twisting dance?,tumblr_n949rlL9HZ1rdh6w7o1_250,1669,3 10059,FRAMEQA30347,black,what is the color of the dress?,tumblr_nk5689LI5o1r5u8dlo1_400,30535,2 10060,FRAMEQA43133,one,how many girl is kissing another girl on the cheek and grabbing her face?,tumblr_nappfviAuS1tfuo7co1_400,31319,1 10061,FRAMEQA13401,orange,what is the color of the kitten?,tumblr_ne26g19AFF1tmflpjo1_500,58135,2 10062,FRAMEQA14835,bouquet,what is the woman wearing a striped top with blonde hair is holding?,tumblr_ndwn97Wwvn1taed07o1_250,81428,0 10063,FRAMEQA20477,orange,what is the color of the t-shirt?,tumblr_nivsff9LA71raooppo1_500,15601,2 10064,FRAMEQA897,five,how many people are standing beside the tree with smoke drifting past them?,tumblr_neupg2MUNK1qc41a1o1_1280,94292,1 10065,FRAMEQA47717,white,what is the color of the dress?,tumblr_ncfobyZlm41tdehqjo1_500,69192,2 10066,FRAMEQA37981,white,what is the color of the man?,tumblr_ned849Aklk1t6zdrfo1_500,58821,2 10067,FRAMEQA7783,black,what is the color of the man?,tumblr_nc83vxbtD81rmcnl8o1_500,40301,2 10068,FRAMEQA18706,brown,what is the color of the hair?,tumblr_ne6d87DZXb1qkrp1ko1_500,84168,2 10069,FRAMEQA49837,red,what is the color of the cart?,tumblr_ncq9kaqQ2R1tegl32o1_250,14927,2 10070,FRAMEQA23037,cat,what uses the small boy as a scratching post?,tumblr_nqzef77ISo1qzqg2go1_500,81788,0 10071,FRAMEQA14964,drums,what is the man rocking his head and playing?,tumblr_nr50zxPZpk1u9hme8o1_400,25043,0 10072,FRAMEQA43838,black,what is the color of the top?,tumblr_nll2l3AQAL1t8hlxao1_250,6690,2 10073,FRAMEQA31640,ball,what does the boy kick at another boy twice in a row?,tumblr_ndufpztm9z1s71nvbo1_400,38028,0 10074,FRAMEQA37075,apple,what is the man slowly eating?,tumblr_nf2d03y10U1si6w6mo1_250,26952,0 10075,FRAMEQA39738,red,what is the color of the dress?,tumblr_n8q38bvjRB1tg6xino1_250,77367,2 10076,FRAMEQA17575,shirt,what is the man wearing and moving his arms around?,tumblr_nk6woc74I81uot1e7o1_400,63863,0 10077,FRAMEQA26441,drums,what is the woman in a black dress and long gloves playing?,tumblr_ne8jbgE1dr1u29dzvo1_400,22809,0 10078,FRAMEQA40846,tree,what is the yellow sports car driving down lined street?,tumblr_ne9ty1C8Dw1tr5tuwo1_500,89701,0 10079,FRAMEQA8249,black,what is the color of the woman?,tumblr_nh07lr7LIE1tqm4yoo1_500,77165,2 10080,FRAMEQA29369,black,what is the color of the hat?,tumblr_nbczizMWEt1qls9cco1_500,72222,2 10081,FRAMEQA25153,two,"how many cats is lying side by side , groomed each other?",tumblr_noaswjesmm1th7g9io1_400,95722,1 10082,FRAMEQA42845,cat,what pushes the cart around a room?,tumblr_ndopa89squ1tk9tvao1_500,94715,0 10083,FRAMEQA45036,black,what is the color of the car?,tumblr_n8vnsgagJw1to3k6do1_400,70408,2 10084,FRAMEQA25495,tree,what is blowing in the wind on a beach?,tumblr_n6xecn3WXZ1tw9x4ao1_500,69964,0 10085,FRAMEQA44356,red,what is the color of the hair?,tumblr_nbwjgeL6Ak1tlms2ko1_400,15528,2 10086,FRAMEQA12771,three,how many boys are climbing the stairs of a subway entrance?,tumblr_nay0kzAbkR1twcgnlo1_400,27538,1 10087,FRAMEQA207,two,how many young boys are laughing and smiling as they stand back to back?,tumblr_nixculfZ3b1qlbj8uo1_500,101727,1 10088,FRAMEQA22724,cat,what sits on the chair with his legs spread apart?,tumblr_nai6yrCMc21tikvlso1_250,30763,0 10089,FRAMEQA45581,two,how many guys are talking in an interview in a room?,tumblr_nk55jsBaYj1u0dfk0o1_400,61440,1 10090,FRAMEQA31814,two,how many men are playing catching game with their mouths?,tumblr_naqyh4k9gq1s99ctgo1_500,98962,1 10091,FRAMEQA40801,two,how many people bump into furniture while kissing passionately?,tumblr_nkguu7jdxL1u7a4duo1_250,47966,1 10092,FRAMEQA51570,black,what is the color of the guy?,tumblr_ndpk1qQv9c1t7jda2o1_250,31678,2 10093,FRAMEQA7061,black,what is the color of the tie?,tumblr_nq3qf4WRTo1ttvngao1_400,50798,2 10094,FRAMEQA28807,dog,what is sitting on the ground is being hit by a flying disc?,tumblr_ngm9yhvYpt1qg8w48o1_400,25215,0 10095,FRAMEQA32706,red,what is the color of the door?,tumblr_npzxj9c0Ne1r0vgovo1_500,97445,2 10096,FRAMEQA1295,cigarette,what is the man with a hat smoking?,tumblr_nbyl2qESrz1slj978o1_400,16167,0 10097,FRAMEQA24217,heels,what are some men clicking and turning around?,tumblr_nomhc2cRR51uoon82o1_400,56700,0 10098,FRAMEQA2343,two,how many guys are sitting and talking?,tumblr_nhewmmMC4c1t0w9oqo1_500,55471,1 10099,FRAMEQA27995,bird,what stacks up colored rings on a pin?,tumblr_nhvz1zHlqY1slj978o1_250,27919,0 10100,FRAMEQA4477,blue,what is the color of the t-shirt?,tumblr_nbc0wacKC51rc5ot0o1_400,19859,2 10101,FRAMEQA16331,three,how many women are on stage singing and dancing?,tumblr_n9d64e3Zyo1rsxlf3o1_500,92256,1 10102,FRAMEQA23542,sabers,what are three men swinging at each other?,tumblr_nlxzyxkQLW1u52c2xo1_250,23633,0 10103,FRAMEQA6462,black,what is the color of the hat?,tumblr_n9yikntlwA1ql1v50o1_500,86341,2 10104,FRAMEQA51019,race,what down the race track together and one is fastest?,tumblr_nfhs2lXSXl1rp12fxo1_1280,96025,0 10105,FRAMEQA38470,two,how many women are hugging each other here?,tumblr_nc9nuf8BS91r51xvko1_500,79546,1 10106,FRAMEQA8201,white,what is the color of the shirt?,tumblr_nfmbdqyPlr1qhi0ato1_250,14144,2 10107,FRAMEQA14268,puppy,what is too fat to jump over the step?,tumblr_ng6a7uQ9h71slj978o1_400,48977,0 10108,FRAMEQA27129,blue,what is the color of the shirt?,tumblr_n98rvaEN3S1tdj4bvo1_500,76496,2 10109,FRAMEQA4996,dog,"what is trying to bite water coming out of the spout , before jumping in the pool?",tumblr_nkgadlovZC1tk2ngvo1_250,11473,0 10110,FRAMEQA14584,black,what is the color of the jacket?,tumblr_nja26uK9Kg1rz6n51o1_250,51459,2 10111,FRAMEQA201,puppy,what is trying to get out of the box?,tumblr_ngfdl91Enp1ta0siuo1_250,23803,0 10112,FRAMEQA5103,singing,what does the man with a black shirt lift?,tumblr_nbaanc8Pba1qixms2o1_400,3237,0 10113,FRAMEQA1116,dog,what is eating food with chopsticks?,tumblr_ngsi2nuczg1sg7ww1o1_1280,82417,0 10114,FRAMEQA39107,two,how many asian women are pointing with two fingers?,tumblr_np87c5Ot0P1u677wzo1_250,37932,1 10115,FRAMEQA17026,three,how many men are staring and smiling at someone or something?,tumblr_naxoajybvK1qgfbkmo1_500,94313,1 10116,FRAMEQA47659,green,what is the color of the dress?,tumblr_ndoj966vMP1s99r01o1_250,13543,2 10117,FRAMEQA24703,frog,what is trying to eat from the hand?,tumblr_nh8lleEpNz1rhl4f0o1_400,81049,0 10118,FRAMEQA36710,cat,what wants the doll to itself?,tumblr_n29eb50PTx1rxpytqo1_250,25431,0 10119,FRAMEQA29613,white,what is the color of the makeup?,tumblr_n8pyb0KLzE1r1dl9to1_400,29274,2 10120,FRAMEQA26468,black,what is the color of the shifts?,tumblr_non3jyr9ie1sbhsk6o1_500,97615,2 10121,FRAMEQA2035,mattress,what is the police officer moving?,tumblr_nfjyq0Lzs31u4txxyo1_400,19389,0 10122,FRAMEQA45504,glasses,what is the man putting on his face?,tumblr_ndyft4jnrc1r32adho1_400,81138,0 10123,FRAMEQA30450,green,what is the color of the background?,tumblr_n8tavjHiIF1rulogqo1_500,85229,2 10124,FRAMEQA25794,two,how many woman is wearing shirts and jackets are dancing and winking?,tumblr_nhmd9e55pu1u3czlno1_500,75768,1 10125,FRAMEQA51370,microphone,what are two FRAMEQAorters sitting and one drops from above?,tumblr_nkitkhGcr51qdlihoo1_500,63296,0 10126,FRAMEQA22594,sidewalk,what is the young man holding a helmet cross and enters a store?,tumblr_nknkvtNKt41u7nielo6_250,44978,0 10127,FRAMEQA37302,jacket,what is the man wearing a white tank top removes?,tumblr_napzl4gzgc1tukjnpo1_500,94102,0 10128,FRAMEQA10756,cats,what are wearing hats are playing with catnip?,tumblr_njo3xwphio1tk2ngvo1_400,30518,0 10129,FRAMEQA36603,dog,what is watching at somebody waves something?,tumblr_nffsy8wfSM1t2t9szo1_400,35128,0 10130,FRAMEQA1622,race,what is taking place somewhere?,tumblr_noh6zccJke1unyhx2o1_400,78360,0 10131,FRAMEQA36982,bedroom,where is the guy dancing?,tumblr_nb7qy5DyEh1si0qiyo1_400,64997,3 10132,FRAMEQA14554,kitchen,where are the two women fighting?,tumblr_npj3v5k7YO1twa8dfo1_400,13996,3 10133,FRAMEQA37234,dog,what is jumping into the hedge?,tumblr_nb982i8Liq1slwrsuo1_400,37843,0 10134,FRAMEQA33306,black,what is the color of the hair?,tumblr_neuot0y1DW1tifif8o1_500,55393,2 10135,FRAMEQA25796,guitar,what is the man playing and banging his head?,tumblr_nc2rue39Be1qlxas3o1_400,65531,0 10136,FRAMEQA4437,black,what is the color of the wrestler?,tumblr_ni1pxegM8m1si6tlqo1_250,41380,2 10137,FRAMEQA2357,brown,what is the color of the hair?,tumblr_nqx3cbf4Xz1t0ojyvo1_500,99894,2 10138,FRAMEQA49500,three,how many people walk toward an attraction that has been closed?,tumblr_njxi13VncY1u60ye3o1_400,33964,1 10139,FRAMEQA52997,three,how many people is carrying objects are running next to trees?,tumblr_nelqmzBsfA1qhqng8o1_500,67679,1 10140,FRAMEQA33428,landing,what does the cute gymnast flips across the mat then stick?,tumblr_nhjeorxJAi1u3co76o1_400,20695,0 10141,FRAMEQA22247,white,what is the color of the shirt?,tumblr_nqeuuoOiKI1r30r4xo1_500,89129,2 10142,FRAMEQA6700,white,what is the color of the t-shirt?,tumblr_nc2w70pKoD1s44ybio1_400,70872,2 10143,FRAMEQA32080,rocks,what does water cascade down surrounded by trees?,tumblr_n8tb5dxE6q1qd9elfo1_400,64714,0 10144,FRAMEQA40091,cat,what is laying down while its head falls to the bed?,tumblr_ngv8o5fqeJ1u68w9so1_400,60657,0 10145,FRAMEQA30297,two,how many women take the photo together but fail and laugh?,tumblr_ngws0aBHUj1slj978o1_400,40615,1 10146,FRAMEQA26714,red,what is the color of the girl?,tumblr_nkn3mz20G61t7gzr5o1_250,42184,2 10147,FRAMEQA16589,blue,what is the color of the eyes?,tumblr_nfzfabyUbK1rro3hqo1_400,58308,2 10148,FRAMEQA47429,guitar,what does the man smash on stage and in front of a crowd?,tumblr_nf6ns9a6tg1tjubn4o1_400,24972,0 10149,FRAMEQA9298,two,how many men are dancing across the room?,tumblr_njszveBsHr1shch57o1_250,8400,1 10150,FRAMEQA44513,gray,what is the color of the uniform?,tumblr_n972vahAeL1rb5pepo1_400,39117,2 10151,FRAMEQA9027,wheelchair,where is the woman under water?,tumblr_njo4h5V7hD1uncsido1_400,69701,3 10152,FRAMEQA29571,cat,what does the man place a cookie on the table and grab it?,tumblr_np75icjROS1qfozfoo1_400,61794,0 10153,FRAMEQA1319,toast,what is the young man making and then he drinks?,tumblr_nevb60y8aM1sre2f5o1_500,76836,0 10154,FRAMEQA29078,bath,where is the girl waving her hand as candles light?,tumblr_ndnnkfdRGI1rq9ek2o1_500,85134,3 10155,FRAMEQA16780,pig,what is nuzzling the cat and cleaning him off?,tumblr_npabf7wMc81tatohao1_250,36414,0 10156,FRAMEQA22377,two,how many men is wearing blue sweatshirts are using plastic spoons?,tumblr_nkoga4fMRx1r9ka6jo1_500,90422,1 10157,FRAMEQA43287,one,how many man pushes the other onto a bed?,tumblr_naj9smLJW61tb2khbo1_250,46323,1 10158,FRAMEQA9819,two,how many men are kissing each other?,tumblr_namh3klriu1tk3dj9o1_500,83996,1 10159,FRAMEQA49896,three,how many people are singing in front of a large sparkly k?,tumblr_ngzuosHwut1s71nvbo1_400,24459,1 10160,FRAMEQA9440,car,where is the man driving?,tumblr_nc78r0NrnH1rxobalo2_r1_400,34090,3 10161,FRAMEQA10461,black,what is the color of the shirt?,tumblr_n8vlr7Y0CU1sed105o1_500,69826,2 10162,FRAMEQA43535,cat,what is taking the dog for a walk on a lead?,tumblr_njoau5H0HV1s1ukk9o1_400,81129,0 10163,FRAMEQA6731,two,how many young men are enjoying the ride in the car and laughing?,tumblr_ncc1baT5HP1svs31wo1_400,2743,1 10164,FRAMEQA37521,confetti,what is the man tearing apart a piece of paper and pouring on his head?,tumblr_nklr3cz3JO1upnn1go1_400,40357,0 10165,FRAMEQA7576,avocado,what is the person cutting up?,tumblr_no506dJsln1uuf348o1_250,47049,0 10166,FRAMEQA25396,bear,what is waving back at someone !?,tumblr_npdhumxlMs1sxvd87o1_250,27329,0 10167,FRAMEQA27435,red,what is the color of the underwear?,tumblr_nfgdyxzRvB1szpk2oo1_400,42451,2 10168,FRAMEQA42191,two,how many guys is this image of hugging each other?,tumblr_ng56lpAoNr1tgi4oho1_400,68578,1 10169,FRAMEQA33079,guitar,what is the man playing on a stage?,tumblr_n94f8ilpLQ1t0knigo1_500,45903,0 10170,FRAMEQA31867,coffee,"what does an explosion occur on a busy city street , and a man spills , crouches , and cowers?",tumblr_ncmvgoRk7p1t5lviko1_250,50428,0 10171,FRAMEQA47076,white,what is the color of the woman?,tumblr_nhkmqqAkGY1u3r81lo1_400,35168,2 10172,FRAMEQA24040,two,how many men drink water out of bottles?,tumblr_nh9wynnpCd1u6z7x7o1_500,48884,1 10173,FRAMEQA44891,two,how many guys are laughing and joking?,tumblr_nkn45o8Lso1sl4ny1o1_400,37681,1 10174,FRAMEQA32301,gum,what is being picked up by the giant cat?,tumblr_n8vexzkDc11twx2vjo1_400,59189,0 10175,FRAMEQA29294,white,what is the color of the kid?,tumblr_nktdtfEy261t0s6h6o1_400,87072,2 10176,FRAMEQA44760,yellow,what is the color of the room?,tumblr_nh2les6Lt11t5ojzdo1_250,81335,2 10177,FRAMEQA33147,guitar,what does the man play the drums and the man behind him plays?,tumblr_nhh11uNa5j1tngqkyo1_250,8192,0 10178,FRAMEQA16807,black,what is the color of the guy?,tumblr_nhc93dy1rj1u4t4tso1_500,90731,2 10179,FRAMEQA24479,black,what is the color of the shirt?,tumblr_nokgkjPvdh1uot1e7o1_400,60623,2 10180,FRAMEQA39718,white,what is the color of the shirts?,tumblr_njziaa2Zn31u8fu4co1_500,52099,2 10181,FRAMEQA3087,two,how many men are playing guitars on a stage to a crowd?,tumblr_nr9ol4V9GF1u8skfvo1_500,66907,1 10182,FRAMEQA37612,pencil,what do the young man drop?,tumblr_n9y521vKee1tea7zqo1_250,19933,0 10183,FRAMEQA22728,statue,what are the men riding?,tumblr_nqtbxhIBN81u8bjw8o1_250,24027,0 10184,FRAMEQA47404,cat,what walks close on the wood floor and stares stared?,tumblr_nc1hdxAtl81slj978o1_400,18218,0 10185,FRAMEQA22245,bedroom,where is the man adjusting his tie?,tumblr_nk5andAo8C1tleghwo1_500,16997,3 10186,FRAMEQA20038,red,what is the color of the scarf?,tumblr_ncbwtq1sqV1sggdd3o1_400,91636,2 10187,FRAMEQA52987,guitar,what is the young man singing and holding?,tumblr_neetr7xRcF1u0au1qo1_400,42484,0 10188,FRAMEQA10864,white,what is the color of the guys?,tumblr_nrkvp0sAJs1ub68qdo1_250,10647,2 10189,FRAMEQA41172,black,what is the color of the glove?,tumblr_nf9738qiDj1qlnmvgo1_400,69562,2 10190,FRAMEQA47640,three,how many women run around in the field together?,tumblr_nfwyt1ud1v1tkrqtzo1_500,83401,1 10191,FRAMEQA12695,disks,what do two men throw at each other?,tumblr_nbnpmeDREl1t7qum9o1_400,98622,0 10192,FRAMEQA17132,mountainside,what lays at the other side of a field?,tumblr_nafjyxGRto1tjgfjko1_400,59176,0 10193,FRAMEQA8823,toast,what is the man making at the bar?,tumblr_nndantIoHF1qg2p2fo1_1280,91061,0 10194,FRAMEQA9709,two,how many men are seated next to each other and laughing?,tumblr_n90w55xQEA1txn5dao1_250,43653,1 10195,FRAMEQA45357,dog,what are the woman and man lying down and comes over and sniffs them?,tumblr_nklz4vcGE01tgv1ivo1_250,80529,0 10196,FRAMEQA4459,shirt,what is the young man?,tumblr_n9ybticsYs1sr0qclo1_500,37872,0 10197,FRAMEQA19225,two,how many leg is the smiling young women holding up with two hand on the beach?,tumblr_nl2gxxkIj71sw3vf3o1_400,49130,1 10198,FRAMEQA2410,underwear,what is the male model showing?,tumblr_nhz2fdtSaf1sr7coko1_400,63562,0 10199,FRAMEQA34772,brown,what is the color of the man?,tumblr_nbnkvjBImQ1r9ga5zo1_500,95510,2 10200,FRAMEQA1004,stairs,what is the dog jumping up and then he turns round when he gets to the top?,tumblr_nbuhc5cUJn1rotc20o1_400,19595,0 10201,FRAMEQA47332,black,what is the color of the guy?,tumblr_na6alb5Ca61qjpqono1_400,8474,2 10202,FRAMEQA23068,cat,what is the dog pushing into a bath of water?,tumblr_nbh3y0lqgx1tuj3bpo1_400,34855,0 10203,FRAMEQA29910,white,what is the color of the shirt?,tumblr_ng9rdfabh31slj978o1_250,24340,2 10204,FRAMEQA36044,white,what is the color of the bird?,tumblr_ne0v8hQfU71sjuzlno1_400,37917,2 10205,FRAMEQA44971,room,where do the guy with black suit turn off?,tumblr_nk6u7h2I8Z1saeojro1_400,15571,3 10206,FRAMEQA43048,two,how many men are standing with their arms on each others shoulders?,tumblr_nayv2kyFQI1ts7wbfo1_400,80131,1 10207,FRAMEQA1846,lips,what then looks into distance?,tumblr_nkoqajrYQm1t0cf9qo1_500,89144,0 10208,FRAMEQA50424,brown,what is the color of the hair?,tumblr_nrbakj5y2I1se8fevo1_400,56809,2 10209,FRAMEQA27695,blue,what is the color of the cap?,tumblr_njoamk0kmi1unf50eo1_250,16053,2 10210,FRAMEQA52634,chest,what is the person sitting and opening?,tumblr_ndau5kAPfn1rvbl65o1_400,46065,0 10211,FRAMEQA595,beer,what is the guy laughing and drinking?,tumblr_neos3nVhDf1s6kvcro1_250,6159,0 10212,FRAMEQA10212,room,where are two men wearing tattoos?,tumblr_nr5t5gfWQk1tjkho6o1_400,62110,3 10213,FRAMEQA24304,red,what is the color of the light?,tumblr_nh01ubOfAY1slj978o1_400,38170,2 10214,FRAMEQA32858,sunglasses,what is the man wearing in the back of a car?,tumblr_ne02xwVqS51tjplvvo1_250,2405,0 10215,FRAMEQA23915,hat,what is the man pulling off his head?,tumblr_na8mwwLFDM1skvnslo1_400,58275,0 10216,FRAMEQA1601,guitar,what is the man playing?,tumblr_nkn9fyd7VX1rr455so1_400,28361,0 10217,FRAMEQA26147,drink,what is the girl with dark hair drinking?,tumblr_n9r5buI9cb1rf0r2eo1_500,74406,0 10218,FRAMEQA4961,white,what is the color of the wall?,tumblr_nc5svmC3HW1tbppspo1_400,32239,2 10219,FRAMEQA36616,two,how many men sing into microphones while looking at one another?,tumblr_ndekj98WUz1u19fjro1_500,49220,1 10220,FRAMEQA28617,guitar,what is the person sitting and playing?,tumblr_np0stcDMuz1u3z45ao1_500,46013,0 10221,FRAMEQA23501,instruments,what does the rock band play together?,tumblr_nnymrk5szy1rjb18uo1_400,60695,0 10222,FRAMEQA35393,door,what does the man dances and another man open?,tumblr_ncgxtj8Gba1tllkofo1_400,64635,0 10223,FRAMEQA43444,bottle,what does the guy shake at another person?,tumblr_nisle7TZTU1tmaii4o1_250,25148,0 10224,FRAMEQA36092,white,what is the color of the clothes?,tumblr_nbc09eXkFv1s74qico1_400,28454,2 10225,FRAMEQA10622,road,where is the man dancing?,tumblr_nkljr8snw81rb5yt1o1_500,9154,3 10226,FRAMEQA52965,two,how many men are standing at night as fires rage?,tumblr_nmidu9wwmu1urnbuuo1_250,84514,1 10227,FRAMEQA31136,three,how many guys is singing with close eyes in a stage?,tumblr_n948aoVVp91qfwpqqo1_500,44318,1 10228,FRAMEQA2538,two,how many people dance near a tree with lights on it?,tumblr_nim9jwnRrE1qg48rto1_250,53605,1 10229,FRAMEQA21916,coat,what is the man moving with a serious look on his face?,tumblr_nfjel1i9RM1u43d61o1_500,70474,0 10230,FRAMEQA25666,hallway,where are two people embracing?,tumblr_njyqloY3A31u3epwjo2_1280,78443,3 10231,FRAMEQA4701,room,where is the people recording several white bags?,tumblr_nqveo9P2as1tae455o1_400,66327,3 10232,FRAMEQA27975,two,how many men take off their shirts and kiss?,tumblr_neosawCPpL1u04u4bo1_250,32607,1 10233,FRAMEQA37176,red,what is the color of the bandanna?,tumblr_nfzln4hPwu1u4lqc0o1_400,52384,2 10234,FRAMEQA12778,cake,what is the guy holding with candles on it?,tumblr_nctnnzxMkJ1sdpy9wo1_400,21723,0 10235,FRAMEQA52056,bedroom,where are two girls posing?,tumblr_n9mskz1L1d1tizn8ho1_400,30132,3 10236,FRAMEQA5213,dog,what is trying to bite the jet of water aimed into a swimming pool?,tumblr_nkgadlovZC1tk2ngvo1_250,11473,0 10237,FRAMEQA38953,wan,what walks backwards in the circle and falls to the ground?,tumblr_n9h415jCrZ1tq2eeqo1_400,63553,0 10238,FRAMEQA40027,two,how many young men are sitting and singing together?,tumblr_nag9s4yd0c1txncr3o1_500,95076,1 10239,FRAMEQA44817,dog,what is enjoying having its belly rubbed?,tumblr_nfxhsp8ug21s6zpepo1_400,68620,0 10240,FRAMEQA48466,white,what is the color of the man?,tumblr_n9ssmh7KSo1t29pn7o1_500,48430,2 10241,FRAMEQA9982,black,what is the color of the top?,tumblr_nbsj1j0D7F1teapyzo1_250,17651,2 10242,FRAMEQA29228,two,how many alcohol bottles is the man holding and smiling?,tumblr_n9w8iiyU0l1tqlsu7o1_1280,70381,1 10243,FRAMEQA12017,white,what is the color of the man?,tumblr_nbd6dlVfS21tkhe6eo1_400,98274,2 10244,FRAMEQA2385,jeep,what is there surfing in the water?,tumblr_npf5kbV03n1u1ogm0o1_400,32114,0 10245,FRAMEQA34209,gray,what is the color of the shirt?,tumblr_nay5f28tc81rscvico1_400,9304,2 10246,FRAMEQA50590,cat,what is sneaking up on someone?,tumblr_n8rkeb4Wyf1tbjfazo1_250,92043,0 10247,FRAMEQA38980,cigarette,what is the man with fair hair smoking?,tumblr_nrb0jsciFl1rutckfo1_400,42380,0 10248,FRAMEQA21211,street,where is the guy taking music no instrument?,tumblr_ncmh5cTtJl1t6qjd2o1_400,78927,3 10249,FRAMEQA30798,microphone,what is the young man in glasses and a hat shaking and dancing while another man is singing?,tumblr_n8w7lerGTz1tg0gc4o1_500,61792,0 10250,FRAMEQA5369,black,what is the color of the hair?,tumblr_nb8yo931oC1tswq46o1_400,25989,2 10251,FRAMEQA24267,goat,what runs and jumps on the ice?,tumblr_nb4nq0GPvq1thdx2vo1_400,63940,0 10252,FRAMEQA22946,drink,what does the woman in red hair sip?,tumblr_ngost8GMhb1t5gkiuo1_250,3059,0 10253,FRAMEQA45157,guitar,what is the man holding and playing it with only one hand?,tumblr_nqw4at9cu21sxecxyo1_500,23889,0 10254,FRAMEQA46629,cat,what is playing with the toy mouse?,tumblr_ndoxkiR46w1trz2w3o1_400,4494,0 10255,FRAMEQA10019,hall,where are some guys dancing?,tumblr_n939ymGjYz1teogu2o1_400,67163,3 10256,FRAMEQA5871,stairs,what is the man and woman standing?,tumblr_npa30jXsLg1qdvza8o1_400,96685,0 10257,FRAMEQA17995,cat,what plays with the hot air from a hairdryer?,tumblr_n9siyhJeK01sz068fo1_400,80179,0 10258,FRAMEQA881,cat,what is grabbing something and then shaking its head multiple times?,tumblr_mqr7rhdu191stpzqxo1_250,48885,0 10259,FRAMEQA24410,rope,what did the guy with the black shirt dive off onto the guy with the white trunks?,tumblr_nr3k1cZSra1sqh42jo1_400,60866,0 10260,FRAMEQA25506,white,what is the color of the skirt?,tumblr_ndba1z1rcl1u0re54o1_250,69413,2 10261,FRAMEQA35844,horse,what is the person riding through a rural area?,tumblr_naklo5nlUu1trttyqo1_400,96853,0 10262,FRAMEQA40466,white,what is the color of the man?,tumblr_nr4083ljaR1u7dvowo1_540,79713,2 10263,FRAMEQA19727,kitten,what is running around on the bed?,tumblr_ne5w7sROwX1tjdvfuo1_400,80200,0 10264,FRAMEQA41774,butterfly,what is flapping its wings slowly?,tumblr_nfyf3dGT7t1sqkp0fo1_250,60028,0 10265,FRAMEQA27617,three,how many men are sitting on the sofa and give each other high fives?,tumblr_ne2ecomrOS1u2oapqo1_500,26335,1 10266,FRAMEQA19360,dog,what is staring at the plate of cakes?,tumblr_njqkzeml8y1unykvpo1_250,19006,0 10267,FRAMEQA7077,two,how many swords is the floating person in black clothing holding?,tumblr_nqspfnDHiF1rsp6cpo1_400,19148,1 10268,FRAMEQA16627,two,how many boys are moving their arms and legs in a kitchen on the floor?,tumblr_n8rb0lxnFI1tqmsauo1_400,11491,1 10269,FRAMEQA52644,black,what is the color of the piece?,tumblr_natc50Bn5N1taq9qwo1_250,25727,2 10270,FRAMEQA4304,umbrella,what does the man share with a woman during raining?,tumblr_nnwe4dqtcz1tksttyo1_400,65099,0 10271,FRAMEQA2721,dog,what is walking close of some in a room?,tumblr_nfx0k7vKCu1u4cx5ko1_400,64979,0 10272,FRAMEQA9582,rings,what is the person blowing and sucking them back up?,tumblr_nokjiwjEvX1uvad6ao1_250,457,0 10273,FRAMEQA15617,pillow,what is the man petting?,tumblr_nfdddhdOuN1te5p35o1_250,289,0 10274,FRAMEQA50821,two,how many men turn to run then stop to look back?,tumblr_ncl0nxfMG31t5lviko1_250,43918,1 10275,FRAMEQA25387,glove,what is the young man wearing?,tumblr_nh0xoaIiwF1twc1jlo1_250,15110,0 10276,FRAMEQA52933,two,how many women back away from a doorway and close the door as they step out?,tumblr_nqwpl0JSUh1ut8c0ro1_500,90567,1 10277,FRAMEQA24370,animal,what is wearing a cap is talking?,tumblr_nbyk6aaScH1r5pvcmo1_400,60782,0 10278,FRAMEQA47426,black,what is the color of the cat?,tumblr_n9abseuY0C1slj978o1_400,70847,2 10279,FRAMEQA14371,two,how many people is this image of onstage performing together?,tumblr_nfv1sacpC01trp7kao1_400,45776,1 10280,FRAMEQA9581,dog,what is kicking his leg while it is laying down?,tumblr_ng850mh9Uy1slj978o1_400,34151,0 10281,FRAMEQA20793,beer,"what is the man in a red top drinking ,?",tumblr_n9ucnlmCk51qzxorvo1_250,9249,0 10282,FRAMEQA19584,black,what is the color of the hair?,tumblr_nbgeilomtY1tifif8o1_250,17513,2 10283,FRAMEQA948,dog,what is sitting in the aisle of a store with his tongue hanging out of the corner of his mouth?,tumblr_nhdr3clKDa1sntw1mo1_400,39810,0 10284,FRAMEQA43448,white,what is the color of the dress?,tumblr_n9codlYOUt1tei1yuo1_500,6135,2 10285,FRAMEQA43360,cat,what is rolling around playing inside of the box?,tumblr_ngite8IUNJ1r5uqe5o1_500,83208,0 10286,FRAMEQA46478,drink,what does the woman in a blue dress sip crossing her legs?,tumblr_n9craz6Alc1rm5sqbo1_250,18764,0 10287,FRAMEQA10948,dog,what is lying on the floor in a room?,tumblr_nck4we3kAN1r4phxao1_400,91647,0 10288,FRAMEQA34857,gray,what is the color of the shirt?,tumblr_nairm3bvNc1rg2esto1_400,41241,2 10289,FRAMEQA20285,door,what does the woman look at a man and the man closes?,tumblr_n9sj99mVgs1tvy42yo1_500,10967,0 10290,FRAMEQA19443,banana,what is the girl talking and holding?,tumblr_nfhusw69iP1tdjuqvo1_250,247,0 10291,FRAMEQA32389,red,what is the color of the doors?,tumblr_nfyy4pkeKZ1qdch8fo1_1280,93636,2 10292,FRAMEQA46973,candy,what is the boy pouring on his head?,tumblr_nklr3cz3JO1upnn1go1_400,40357,0 10293,FRAMEQA44173,guitar,what is the guy with short hair playing?,tumblr_na7miq1rPj1qdauj7o1_400,36901,0 10294,FRAMEQA18317,guitars,what are two woman sitting and playing?,tumblr_ngv80p45u21sewywlo1_250,39505,0 10295,FRAMEQA7465,pen,what is the girl smoking while laying down?,tumblr_ncuqfo9oE01rkw997o1_400,30193,0 10296,FRAMEQA45105,one,how many man shakes his hips with his hands on his head in front of another man?,tumblr_ni0qmhkQ661u1fsdgo1_400,58647,1 10297,FRAMEQA51625,dog,what does the woman hold up?,tumblr_nqp0xxEoF91td493xo1_500,70898,0 10298,FRAMEQA5411,two,how many guys are dressed in costumes and hugging each other?,tumblr_ne6n5ulYf11sccnr4o1_250,5567,1 10299,FRAMEQA52942,red,what is the color of the cap?,tumblr_nrglqlxxfe1tpmv5yo1_400,57671,2 10300,FRAMEQA42399,red,what is the color of the pants?,tumblr_no00ddSlG31t34v14o1_250,81154,2 10301,FRAMEQA43151,black,what is the color of the glasses?,tumblr_nkrt3nNtgf1sffeslo1_400,11644,2 10302,FRAMEQA31031,two,how many women are running towards each other with balls?,tumblr_nemookTxfy1u359i4o1_400,38122,1 10303,FRAMEQA48707,wine,what does the chef add to food and it lights up?,tumblr_nhfwv7PrzZ1t9xf20o1_500,13671,0 10304,FRAMEQA25266,black,what is the color of the coat?,tumblr_ndeeyejogj1s2jf57o1_400,5669,2 10305,FRAMEQA43022,room,where is the girl moving her butt?,tumblr_nd93viKo511shv03qo1_r6_400,11371,3 10306,FRAMEQA48044,dog,what slapped the two away from them?,tumblr_nhjoevhfoc1te94myo1_400,10630,0 10307,FRAMEQA24348,three,how many men are standing on the stage?,tumblr_ne4xi5BUHK1t96xjjo1_500,22558,1 10308,FRAMEQA23793,blue,what is the color of the hat?,tumblr_napcsdwCKD1th3dsvo1_250,27813,2 10309,FRAMEQA32277,black,what is the color of the shirt?,tumblr_nejfde04Qs1td0uqno1_1280,79009,2 10310,FRAMEQA32560,room,where is the young man singing?,tumblr_nmlvz4PWsb1ttrhu8o1_500,99859,3 10311,FRAMEQA40214,toy,what was the guy holding?,tumblr_nh6t8ixB6O1roo9cdo1_500,55790,0 10312,FRAMEQA8259,sword,what is the man using?,tumblr_nfodj8xom01s3att3o1_500,82067,0 10313,FRAMEQA37791,bedroom,where are the man and woman talking?,tumblr_nhxgai4Dbh1u80ez8o1_400,64081,3 10314,FRAMEQA3523,black,what is the color of the hair?,tumblr_nklkbe4KgW1tfs8guo1_500,56600,2 10315,FRAMEQA14209,ball,what is being kicked around a filed by a pair of players?,tumblr_n9vz1u2IKj1tz9jaqo1_400,96194,0 10316,FRAMEQA38132,two,how many people with short hair are kissing in a house?,tumblr_njyqloY3A31u3epwjo2_1280,78443,1 10317,FRAMEQA51637,helmet,what is the woman wearing on the moon?,tumblr_nc8kyvQDPt1qge29wo1_400,84958,0 10318,FRAMEQA37056,airplane,what is flying in the blue sky?,tumblr_narmwnsQzg1rtbkxgo1_400,20178,0 10319,FRAMEQA51403,white,what is the color of the woman?,tumblr_nhsnezuoqY1tsilw4o1_500,97675,2 10320,FRAMEQA33591,tortilla,what fills with air and makes a balloon?,tumblr_nrhik441u31r38b11o1_400,74368,0 10321,FRAMEQA43185,brown,what is the color of the dog?,tumblr_noaomhd7ZQ1un7qbto1_250,2261,2 10322,FRAMEQA49186,black,what is the color of the men?,tumblr_ni2qoj6hgQ1u5xdomo1_500,24181,2 10323,FRAMEQA49131,room,where did the woman stand with smoke appearing?,tumblr_nc4s35eZOs1r0xzhao1_500,24500,3 10324,FRAMEQA24200,two,how many men is this image of struggling with each other?,tumblr_nfsqc8tKtS1rifrfzo1_500,96966,1 10325,FRAMEQA10082,bath,where is the woman with tattoos relaxing?,tumblr_n9tqwqmtd41r02esko1_500,85793,3 10326,FRAMEQA52711,green,what is the color of the shirt?,tumblr_na9ijtkcws1ti2sgvo3_250,46241,2 10327,FRAMEQA30672,pencil,what is the man frustrated and tapping before falling out of his chair?,tumblr_nqxrq2ObHU1upic9lo1_1280,60797,0 10328,FRAMEQA34385,red,what is the color of the shirt?,tumblr_nc99fe2HTt1tmzegco1_500,90185,2 10329,FRAMEQA43436,room,where are the man and a husky touching hand to paw?,tumblr_nai94pzZbf1slj978o1_400,12952,3 10330,FRAMEQA3442,door,what does the woman open to her trailer before stepping out?,tumblr_ndpn14OwgR1tz0mt5o1_500,66721,0 10331,FRAMEQA50642,truck,what begins moving and shopping carts are falling out of the back?,tumblr_nmz2tmDeda1sddro0o1_250,24985,0 10332,FRAMEQA1906,masks,what are the group of people sitting next to each other and wearing?,tumblr_ndyl4209U21sabd3xo1_250,23694,0 10333,FRAMEQA24312,white,what is the color of the top?,tumblr_njo0rmCdNd1u45agco1_250,14022,2 10334,FRAMEQA11192,brown,what is the color of the hair?,tumblr_nhklg6QF091sfoifoo1_250,21229,2 10335,FRAMEQA4692,picture,what is the man holding in front of his face?,tumblr_nrdxqfIf1o1u54nkxo1_500,86309,0 10336,FRAMEQA1280,stable,where is the white horse blinking and lowering his head?,tumblr_ni2yugot1B1tiz27ro1_500,37357,3 10337,FRAMEQA42375,two,how many animals is jumping in the bed in a room?,tumblr_n9qwatWy9m1slj978o1_400,73992,1 10338,FRAMEQA7588,motorcycle,what is the person riding down the road?,tumblr_n9eblfUw4E1sna4i4o1_250,4523,0 10339,FRAMEQA29856,drums,what is the girl playing really fast?,tumblr_nca11jFXRI1qhb3vzo1_500,57597,0 10340,FRAMEQA26569,drums,what is the young man playing and twirling the drumsticks?,tumblr_netj73fZBe1rpee4eo1_400,11349,0 10341,FRAMEQA24199,white,what is the color of the man?,tumblr_nga7fiM0PT1qg2370o1_400,15586,2 10342,FRAMEQA6209,cat,what is getting stuck in the plastic ball?,tumblr_nk6t8rIVdA1tjjnlno1_400,54116,0 10343,FRAMEQA51492,four,how many boys are standing and sitting together and laughing?,tumblr_ncsq0iDaXw1tk7w8vo1_500,89376,1 10344,FRAMEQA1975,white,what is the color of the coat?,tumblr_nen1uytZR71r24zdbo1_400,35073,2 10345,FRAMEQA9231,blue,what is the color of the shirt?,tumblr_n94u8oEB7N1rmvtzzo1_400,29318,2 10346,FRAMEQA36035,one,how many girl has her hair in a ponytail and is kissing another girl?,tumblr_nq23l4xPj61tdi2n7o1_500,65341,1 10347,FRAMEQA36556,red,what is the color of the jerseys?,tumblr_nhs6znj2Pt1slj978o1_250,27761,2 10348,FRAMEQA31528,two,how many men are clapping their hands and dancing together?,tumblr_nj9qf9m6OT1trbt9ao1_400,28960,1 10349,FRAMEQA35697,two,how many men are standing next to each other?,tumblr_noxumlPA691rsagqio1_500,95345,1 10350,FRAMEQA4927,cigarette,what is the man smoking and blowing smoke?,tumblr_nap1wyU5vb1r8wsomo1_400,29689,0 10351,FRAMEQA7236,two,how many men is this dancing while sitting in a car?,tumblr_nopqno1m9H1r2ga1uo1_400,77278,1 10352,FRAMEQA45365,drink,what is the girl sipping through a straw?,tumblr_novgjtJTro1snmpxno1_400,75698,0 10353,FRAMEQA39734,green,what is the color of the eyes?,tumblr_ni3gsht7rn1r0ebw4o2_1280,55836,2 10354,FRAMEQA4871,cigarette,what is the man lighting and smiling?,tumblr_ncqc6mF0dW1tmcq9lo1_400,29304,0 10355,FRAMEQA41014,black,what is the color of the shirt?,tumblr_ncfhy9iq4a1tj3r8so1_500,87985,2 10356,FRAMEQA42619,gray,what is the color of the shirt?,tumblr_nhewmmMC4c1t0w9oqo1_500,55471,2 10357,FRAMEQA35265,floor,what is the girl bending over backwards and touching?,tumblr_ne7om7gzgi1tw8vf9o1_400,17998,0 10358,FRAMEQA26634,one,how many eye does the young boy cover while he is laughing?,tumblr_npi534NHLs1s33us3o1_250,9779,1 10359,FRAMEQA5206,two,how many girls are singing music pop in a concert?,tumblr_nkg5leY4e21sof15vo1_500,21834,1 10360,FRAMEQA12437,black,what is the color of the cap?,tumblr_nhexdhCBD61u5v821o1_400,79190,2 10361,FRAMEQA50653,gray,what is the color of the wiggles?,tumblr_ngqi9pDqn61r3fht5o1_250,26058,2 10362,FRAMEQA16347,blue,what is the color of the shirt?,tumblr_n9xevvBCZJ1tj2evpo1_500,80161,2 10363,FRAMEQA18030,car,what is being driven on the road?,tumblr_ni06cdG8Wk1u639x2o1_500,71675,0 10364,FRAMEQA16422,white,what is the color of the room?,tumblr_n9zgq3VLuH1rcrigpo1_250,26508,2 10365,FRAMEQA18589,shirt,what is the man slowly taking off?,tumblr_n93sqa0Tt21sjfh08o1_400,30171,0 10366,FRAMEQA47300,two,how many men is wearing coats are looking at the same place?,tumblr_npb6eieHYv1uxot71o1_500,11924,1 10367,FRAMEQA3039,car,what is getting through the curve?,tumblr_nee7hlohYU1tx8mn0o1_400,52719,0 10368,FRAMEQA45158,blue,what is the color of the shirt?,tumblr_nq12lyHYIo1u29slho1_400,64828,2 10369,FRAMEQA35802,cat,what is going down the slide?,tumblr_nkyaonXHxl1tmnntwo1_400,18209,0 10370,FRAMEQA46760,puppy,what is pawing at the cat?,tumblr_nejxcpZ7Tn1tbo2gbo1_400,48764,0 10371,FRAMEQA13707,goat,what is knocking over the small boy by running into him?,tumblr_nnukunx7r61uuj39do1_400,37449,0 10372,FRAMEQA14840,singing,what does the blonde girl hold?,tumblr_nbo1177YhF1s53chuo1_500,101662,0 10373,FRAMEQA17471,stick,what is the woman using?,tumblr_nf37qtnnJA1u39gnxo1_250,10671,0 10374,FRAMEQA35606,cat,what jumps up and bites the man on the bottom?,tumblr_neubjlHnuq1tdjuqvo1_250,40937,0 10375,FRAMEQA34454,blue,what is the color of the hair?,tumblr_no7okkHHCe1tkyw6ao1_400,80984,2 10376,FRAMEQA8047,kitten,what does the cat watch sitting on a mans head?,tumblr_nk5lq2YzjS1unlruzo1_400,49153,0 10377,FRAMEQA23902,meteor,what is the man driving his car and is in the sky?,tumblr_nazajtnJAC1tn4t8jo1_400,62167,0 10378,FRAMEQA1552,white,what is the color of the clothes?,tumblr_nbmugnrlnQ1t1o9tno1_250,22614,2 10379,FRAMEQA6734,street,where is the woman wearing a tutu is falling?,tumblr_n9mcomp3VE1sa9k0fo1_250,6285,3 10380,FRAMEQA31827,red,what is the color of the headband?,tumblr_nkkcbhZH5z1r0ia88o1_400,93026,2 10381,FRAMEQA13663,cigarette,what is the young man smoking while taking a bath?,tumblr_no3jpmtGki1uscox5o1_500,96789,0 10382,FRAMEQA16195,two,how many men collided and fell down?,tumblr_nfpfh1RQGx1toym0ao1_400,29656,1 10383,FRAMEQA50122,red,what is the color of the coat?,tumblr_n9fy77F0uI1ra4ssmo1_500,96781,2 10384,FRAMEQA35742,green,what is the color of the eyes?,tumblr_nb41brPtbh1r80pq0o1_400,67585,2 10385,FRAMEQA674,black,what is the color of the hat?,tumblr_nk3e3io3Vj1s1r2yfo1_400,61674,2 10386,FRAMEQA43254,red,what is the color of the tracksuit?,tumblr_nhxbfztqER1tzhdamo1_500,85634,2 10387,FRAMEQA31283,dog,what is tripping over the fence?,tumblr_nrlcpoA7j61ungyc9o1_500,93000,0 10388,FRAMEQA43865,window,what is the woman in a bustier looking out?,tumblr_nre0xwdee61uyo37eo1_250,6713,0 10389,FRAMEQA4101,car,what is racing down the curvy road?,tumblr_nkrf6t4Kcu1u9xj6to1_500,92709,0 10390,FRAMEQA15519,monkey,what is the big monkey grooming?,tumblr_nhnhys0agY1tcltsqo1_400,66216,0 10391,FRAMEQA16823,black,what is the color of the candle?,tumblr_npltp08V9L1u8z9jdo1_500,62712,2 10392,FRAMEQA6235,two,how many guys are dancing together in the room?,tumblr_nbus1etSWV1tkyu2bo1_250,8125,1 10393,FRAMEQA51146,dog,what does the man push over to the baseball where the dog catches it?,tumblr_nrexu1YS0E1uz06r7o1_400,16261,0 10394,FRAMEQA33311,two,how many young boys are running towards each other and hugging?,tumblr_nalgunb5tA1rm4q61o1_250,6552,1 10395,FRAMEQA37023,juice,what is the person drinking through a straw?,tumblr_nmcvu4Nn5R1us6f70o1_250,17497,0 10396,FRAMEQA6841,leash,what is the man holding?,tumblr_n9ak83GJ1A1si00qoo1_250,24051,0 10397,FRAMEQA48694,cat,what is chasing the laser light beam around the floor?,tumblr_ner3v7FbbI1rgchc8o1_500,72762,0 10398,FRAMEQA6007,brown,what is the color of the hair?,tumblr_nbktcer8TP1synqozo1_500,93815,2 10399,FRAMEQA32509,butt,what is the young woman in underwear shaking and drumming?,tumblr_n90y8oyEl71r0q99lo1_250,81140,0 10400,FRAMEQA39755,three,how many boys in white are singing and dancing on a lighted stage?,tumblr_ngzrykxVoi1u5bwv8o1_500,65459,1 10401,FRAMEQA3281,expression,what does the dark-haired man with a beard pull?,tumblr_n8vufj56L81rzq34lo1_250,36339,0 10402,FRAMEQA31382,black,what is the color of the shirt?,tumblr_namck8I3Yj1s2a9g2o1_500,98182,2 10403,FRAMEQA45625,cigarette,what is sitting idol in the ashtray?,tumblr_nklxqvsSIg1t3jcsio1_400,75852,0 10404,FRAMEQA33244,two,how many girls are talking and smiling together?,tumblr_ncvw02a1fQ1t9h1yfo1_400,50141,1 10405,FRAMEQA4136,cap,what is the man wearing and winking one eye?,tumblr_nf0wufzoeS1tjiwz9o1_400,33273,0 10406,FRAMEQA925,two,how many men are wearing headphones one of them is opening his mouth?,tumblr_nf1py0cFid1sorauco1_500,79780,1 10407,FRAMEQA38492,black,what is the color of the dress?,tumblr_nav23oyZvC1s32ahho1_400,60165,2 10408,FRAMEQA4205,gloves,what is the man using?,tumblr_n8y8cypQql1qje185o1_400,68929,0 10409,FRAMEQA44640,microphone,what does the musician hold before singing?,tumblr_nk5putNwnc1s9hy1to1_500,82527,0 10410,FRAMEQA31360,red,what is the color of the hair?,tumblr_na1fmg5NaG1r6oiiao1_250,51390,2 10411,FRAMEQA41882,white,what is the color of the girl?,tumblr_nhm7o2QWcs1slj978o1_400,21478,2 10412,FRAMEQA32623,two,how many teams of hockey players are playing hockey together?,tumblr_nhqet4G5HN1qhrx75o1_400,65395,1 10413,FRAMEQA43466,orange,what is the color of the cat?,tumblr_njouy2MkRI1unyeoio1_400,20303,2 10414,FRAMEQA22013,cat,what is pulling the fish out of a bowl of water?,tumblr_nf189lUyiY1tdjuqvo1_400,38805,0 10415,FRAMEQA50431,kayak,where is the man navigating a river?,tumblr_ncbz4f0VNT1shuruwo1_400,35186,3 10416,FRAMEQA26893,dog,what is shaking hands with a person?,tumblr_nqt05iwece1te94myo1_400,21136,0 10417,FRAMEQA8969,drums,what is the man playing in front of a crowd of people?,tumblr_negifyw3pW1qksaldo1_250,33442,0 10418,FRAMEQA3645,two,how many people are sliding down the side of a building and landing on stone steps below?,tumblr_nouog6B5731ssgyoro1_400,52810,1 10419,FRAMEQA35783,snack,what is the man eating and taking?,tumblr_nkx0zarpkq1r0ia88o1_400,22846,0 10420,FRAMEQA4995,two,how many blond guys made faces at each other?,tumblr_n9pn9xDm651ty4rvzo1_400,81281,1 10421,FRAMEQA40664,one,how many person is hugging another while they are singing?,tumblr_na9fbrhIt81tjxzpio1_250,9233,1 10422,FRAMEQA52635,white,what is the color of the man?,tumblr_no16zgrlE81sr8pwbo1_400,53970,2 10423,FRAMEQA6526,biscuit,what is the young man flicking and it hits him in the face?,tumblr_nc149nM30B1sk96t7o1_400,31199,0 10424,FRAMEQA41858,black,what is the color of the outfit?,tumblr_nhvl0kHq241u51hglo1_400,8556,2 10425,FRAMEQA2514,black,what is the color of the sunglasses?,tumblr_nqxzm6DUfa1ut2i25o1_250,14793,2 10426,FRAMEQA9830,black,what is the color of the shirt?,tumblr_nbus1etSWV1tkyu2bo1_250,8125,2 10427,FRAMEQA41256,guitars,what are two young men playing on a stage?,tumblr_njte62Bwpv1t4la1fo1_400,25986,0 10428,FRAMEQA25626,blue,what is the color of the lipstick?,tumblr_nqsa9zsdy41upov4lo1_400,64266,2 10429,FRAMEQA51743,white,what is the color of the woman?,tumblr_nfzfabyUbK1rro3hqo1_400,58308,2 10430,FRAMEQA48747,two,how many young men on a soccer field are dressing?,tumblr_nb8f1rqRt71svcbf4o1_400,65451,1 10431,FRAMEQA6442,cat,what does the man in black hold?,tumblr_ndrak3nYu61r95fszo1_250,11840,0 10432,FRAMEQA39127,ukulele,what is the lady playing to the beat the little princess sets?,tumblr_nbdybmLWnP1rlpjp7o1_250,45669,0 10433,FRAMEQA2018,cat,what swats at the dangling ornament on a christmas tree?,tumblr_ngwe7aRwEW1u4lqc0o1_250,38433,0 10434,FRAMEQA23338,black,what is the color of the roof?,tumblr_ncyo5jIXCe1tk9tvao1_500,80171,2 10435,FRAMEQA34089,white,what is the color of the hair?,tumblr_nb8vced81w1tk6vdto1_400,34974,2 10436,FRAMEQA18261,two,how many young men are making funny arm movements and laughing?,tumblr_nrf2yjRx8H1u5hn3po2_540,86611,1 10437,FRAMEQA37466,white,what is the color of the car?,tumblr_np8fpolVPv1uvid27o1_1280,65265,2 10438,FRAMEQA1845,cigarette,what is the man smoking and touching his face?,tumblr_nggodxoEKB1t62uudo1_500,39362,0 10439,FRAMEQA23744,black,what is the color of the cane?,tumblr_nca7t61SCR1tmu5ofo1_500,35588,2 10440,FRAMEQA33049,two,how many men are snapping their fingers and dancing?,tumblr_nir4h8gDt81tb5plwo1_250,6561,1 10441,FRAMEQA8102,door,what did the boy open?,tumblr_nqqp4woKq61t0t2pco1_250,50323,0 10442,FRAMEQA17557,runway,what does the man walk down wearing a heavy coat?,tumblr_nedvy9AhxX1qeire1o1_400,66547,0 10443,FRAMEQA51319,motorcycle,what does the rider jump over a police car?,tumblr_nkvpzrOoIg1qeh6x6o1_1280,35874,0 10444,FRAMEQA41301,bra,what is the woman wearing a black leather coat reaches around and unhooks on a mannequin?,tumblr_nklvhuCJ821qd8xguo1_400,7816,0 10445,FRAMEQA11489,brown,what is the color of the chair?,tumblr_n8zhb6N1pA1rtk9cxo1_250,91003,2 10446,FRAMEQA3620,kitten,what is strolling on the floor?,tumblr_nk7876agwW1slwrsuo1_400,16802,0 10447,FRAMEQA9432,three,how many people in a car are bobbing their heads?,tumblr_ndyl4209U21sabd3xo1_250,23694,1 10448,FRAMEQA45573,two,"how many men start to laugh , at something?",tumblr_ncdgwaJUcv1tc19umo1_400,38005,1 10449,FRAMEQA25903,brown,what is the color of the fox?,tumblr_nr0urrvsyq1uaoej6o1_400,45806,2 10450,FRAMEQA21295,three,how many men looked at something with excitement together?,tumblr_njxosqUqVm1r2uad8o1_250,5917,1 10451,FRAMEQA42878,two,how many women are dancing and raising their arms in the air?,tumblr_nc0jxoYxes1tkdc7qo1_250,76255,1 10452,FRAMEQA1049,bull,what attacks the person while in the middle of the road?,tumblr_nba6q7knEq1t7jda2o1_400,80850,0 10453,FRAMEQA13617,elephant,what is crouched on something while two others watch?,tumblr_ndty8uvoqn1sukgyxo1_400,57588,0 10454,FRAMEQA17553,blue,what is the color of the uniform?,tumblr_nr2vau6kkr1utqicho1_500,82529,2 10455,FRAMEQA37028,apple,what is the man with a beard eating?,tumblr_na5ojlCiVS1tuv1l1o1_500,101430,0 10456,FRAMEQA21003,black,what is the color of the shirt?,tumblr_nes5f2Cdt31tmaii4o1_500,99957,2 10457,FRAMEQA16770,car,what is turning around on the road?,tumblr_ngilgcU4iR1u0fgfyo2_400,59008,0 10458,FRAMEQA42123,train,what is running into an obstacle on the track and explodes?,tumblr_nkwri28wKr1tm3clao1_400,27987,0 10459,FRAMEQA51887,white,what is the color of the jacket?,tumblr_nlxzt2gGMO1uokoxbo1_500,57812,2 10460,FRAMEQA1236,tire,what is the person smoking in the street?,tumblr_nbngkoByJ11scotfso1_400,76454,0 10461,FRAMEQA10215,black,what is the color of the man?,tumblr_ndxuq2TXYB1rgza3xo1_400,63080,2 10462,FRAMEQA32041,red,what is the color of the tape?,tumblr_nh0ddtHrBj1tg85j7o1_400,36841,2 10463,FRAMEQA18990,white,what is the color of the shirt?,tumblr_nrk1dlRO9H1uanc3bo1_250,6551,2 10464,FRAMEQA9968,three,how many cheerleaders are throwing another girl in the air?,tumblr_nf1vezuesv1rbyct6o1_400,31332,1 10465,FRAMEQA15515,caps,what are out of the five men three wearing glasses and two are wearing?,tumblr_nnjpac3v6Q1qboh47o1_500,59306,0 10466,FRAMEQA45359,car,what is driving on the road?,tumblr_nf0n8ksRhS1u25ovvo1_400,63631,0 10467,FRAMEQA8260,chair,where does the woman watch a boy spin?,tumblr_nd5v84Ru6A1qh3m2qo1_400,24152,3 10468,FRAMEQA39717,two,how many guys is this joking and laughing in a microphone?,tumblr_neqo62WkUz1u38y0ao1_500,78143,1 10469,FRAMEQA19776,kangaroo,what rolls around on the ground while sleeping?,tumblr_nirdu9dR9r1u4aqzmo1_400,26252,0 10470,FRAMEQA27211,two,how many guys are squatting while flip in the room?,tumblr_nd4rlyiwiZ1spa0kio1_250,86705,1 10471,FRAMEQA23303,convertible,what is the lady with blond hair driving down the road?,tumblr_ncx3sdZxov1rtwr5go1_400,79097,0 10472,FRAMEQA47178,red,what is the color of the hair?,tumblr_ngqsshv5dg1tluxceo1_400,17326,2 10473,FRAMEQA3789,black,what is the color of the singing?,tumblr_nh7j4ud4Mb1u5xywco1_500,87751,2 10474,FRAMEQA49737,trees,what are standing in the foggy countryside?,tumblr_n9hakp4Wd51smtg6no1_400,80843,0 10475,FRAMEQA12973,black,what is the color of the shirts?,tumblr_nad8wtQS6K1qbz70so1_500,48702,2 10476,FRAMEQA19159,brown,what is the color of the man?,tumblr_nl3t11bQ0e1u598sco1_250,36523,2 10477,FRAMEQA28894,box,where is the white man with a blue shirt jumping?,tumblr_nga7fiM0PT1qg2370o1_400,15586,3 10478,FRAMEQA29386,red,what is the color of the folding?,tumblr_n9brhfHmnB1tb9q3fo1_250,14617,2 10479,FRAMEQA588,black,what is the color of the cat?,tumblr_ne35uinLzV1tdjuqvo1_500,49418,2 10480,FRAMEQA44172,snowboard,what 's on the mountain?,tumblr_njug6jqM8D1u636iqo1_400,66955,0 10481,FRAMEQA8760,dog,what is being held and looks around?,tumblr_na6oo2PKSC1silsr6o1_400,35103,0 10482,FRAMEQA24696,guitar,what is the man wearing a shirt is playing?,tumblr_nbcx6rpdDS1tdjk1vo1_500,83773,0 10483,FRAMEQA16369,mustard,what is the girl squeezing with her right hand?,tumblr_nqa72svB2q1uxws2zo1_400,24859,0 10484,FRAMEQA34922,necklace,what is someone showing off and smiling?,tumblr_np85pfASqn1qaxcloo1_250,2398,0 10485,FRAMEQA18680,three,how many young men look angry while one gestures with his hand?,tumblr_ngi0qiLFyd1qfel0so1_400,87032,1 10486,FRAMEQA2366,red,what is the color of the shirt?,tumblr_n8ptqhbSXp1rjwte6o1_400,67868,2 10487,FRAMEQA46793,yellow,what is the color of the hair?,tumblr_ngaoviHnCn1u5nwzto1_500,71628,2 10488,FRAMEQA37373,blue,what is the color of the teapot?,tumblr_ngydaduWj01skjjtto1_250,45622,2 10489,FRAMEQA18512,black,what is the color of the tube?,tumblr_npuazcydPD1te94myo1_400,4445,2 10490,FRAMEQA10232,two,how many men are looking ahead and talking?,tumblr_ne68rePU2I1tm0es2o1_400,17195,1 10491,FRAMEQA44012,pieces,what does the man throw across the room?,tumblr_nkyncrvBNm1r9vyoko1_500,50377,0 10492,FRAMEQA49441,two,how many men are smiling and are wearing headphones with microphones?,tumblr_nd3h0eIvem1sorauco1_400,72973,1 10493,FRAMEQA50034,black,what is the color of the dogs?,tumblr_nbet5v1L6J1tkpzw0o1_250,18230,2 10494,FRAMEQA18299,black,what is the color of the shirt?,tumblr_nbaanc8Pba1qixms2o1_400,3237,2 10495,FRAMEQA39686,green,what is the color of the hair?,tumblr_na3mvn9oII1rj1md8o1_400,11621,2 10496,FRAMEQA41726,white,what is the color of the cap?,tumblr_nprmzqr4Z81tkeou1o1_400,18456,2 10497,FRAMEQA35635,red,what is the color of the car?,tumblr_ncqiquZx9u1tx8mn0o1_400,65286,2 10498,FRAMEQA38203,string,what is the girl tying with her fingers?,tumblr_nnxyuwhVFb1qa4mzvo1_500,88579,0 10499,FRAMEQA42225,one,how many woman pulls off another woman 's wig on a stage?,tumblr_nk4zmkCAr61u3b1hio1_250,35786,1 10500,FRAMEQA44158,bench,what is the man opening up into a table?,tumblr_n9imlri1WQ1s3att3o1_400,46098,0 10501,FRAMEQA13451,drink,what is the person mixing with a spoon?,tumblr_np3arfHXlH1t5dv9do1_400,28652,0 10502,FRAMEQA36776,ball,what get bopped by banged heads?,tumblr_n9ewm0ilhs1riwrryo1_250,26016,0 10503,FRAMEQA31892,cigarette,what is the girl lighting with a lighter?,tumblr_nate0yTgIe1tkqgqvo1_250,47078,0 10504,FRAMEQA50140,two,how many men are swinging their arms and being weird?,tumblr_ndj7s5BKDq1tum2v5o1_250,10152,1 10505,FRAMEQA35873,chair,where is the guy wearing a black shirt is leaning?,tumblr_nbpto8N9UJ1tkisfzo1_500,92193,3 10506,FRAMEQA5207,snowboard,what is the man grinding down railings?,tumblr_ni3d2iPBG21r8q949o1_400,42830,0 10507,FRAMEQA35495,goat,what is running and sliding on some ice?,tumblr_nb4nq0GPvq1thdx2vo1_400,63940,0 10508,FRAMEQA22153,climber,what falls down the sheet of ice?,tumblr_nbt6fr4pMk1slj978o1_400,7955,0 10509,FRAMEQA19439,two,how many girls are eating together and one waves?,tumblr_nkri3vybCq1tnv2gbo1_400,57775,1 10510,FRAMEQA3888,phone,what are two girls shown and one holds showing a mouth in front of her mouth?,tumblr_nkc48iNxXB1uodfiso1_500,72935,0 10511,FRAMEQA39157,horse,what is pushing the man down into another horse?,tumblr_ngzs60amKr1u6tclbo1_400,22574,0 10512,FRAMEQA29209,two,how many girls is this that are wearing black clothing standing side by side talking?,tumblr_nnjw5ee9J71upsi9qo1_400,66985,1 10513,FRAMEQA36000,microphone,where are the boys walking around the stage and talking?,tumblr_nogsnl7vHM1r4cmiho1_500,93140,3 10514,FRAMEQA8620,red,what is the color of the woman?,tumblr_nahc22gszh1qk0ghio1_400,35205,2 10515,FRAMEQA14727,guitar,what are the man and woman playing?,tumblr_nh22oslt5u1tnlmk9o1_250,51698,0 10516,FRAMEQA20163,motorcycle,what is the guy riding and then he crashes?,tumblr_nb1fxfOi7V1sh99bjo1_400,29088,0 10517,FRAMEQA14857,two,how many athletes are jumping around the soccer field?,tumblr_na7phaw8id1rqb3bqo1_250,47937,1 10518,FRAMEQA40011,three,how many men are standing in the circle?,tumblr_njvkcm3JBJ1u3ruqqo1_500,72438,1 10519,FRAMEQA26494,car,what is skidding around the corner on the road?,tumblr_n9k66hDtUT1s9lpi5o1_400,54195,0 10520,FRAMEQA32418,green,what is the color of the shirt?,tumblr_nch77vbJHs1rshgw6o1_250,8302,2 10521,FRAMEQA8550,blue,what is the color of the jacket?,tumblr_ncnbp0NMfe1s0y67po1_250,8198,2 10522,FRAMEQA41901,black,what is the color of the stilettos?,tumblr_ngh9scfZFb1rne0ito1_400,42809,2 10523,FRAMEQA40381,cigarette,"what is the man wearing a black suit and hat , is using the pay phone and smoking?",tumblr_nfmfziQ3X61qj319bo1_250,27811,0 10524,FRAMEQA41995,mirror,what does the man lift to another mans face with his toes?,tumblr_no3s4rbT7k1uv5902o1_400,65845,0 10525,FRAMEQA40203,black,what is the color of the dog?,tumblr_nklz4vcGE01tgv1ivo1_250,80529,2 10526,FRAMEQA34516,two,how many guy are doing the salute with their hands?,tumblr_noagkbLLFO1rz4xj6o1_1280,66638,1 10527,FRAMEQA4948,corridor,where are people hugging each other?,tumblr_niqvn9yIzC1sy6rtlo1_250,15274,3 10528,FRAMEQA15628,black,what is the color of the top?,tumblr_mjyrakXrER1r1y0g8o1_500,93522,2 10529,FRAMEQA7649,two,how many men are doing the funny dance near a bridge?,tumblr_n921fiyLDf1tnwjvco1_400,19431,1 10530,FRAMEQA41378,two,how many young women are sitting on the beach?,tumblr_nl2gxxkIj71sw3vf3o1_400,49130,1 10531,FRAMEQA34515,white,what is the color of the strip?,tumblr_nip7n6jcNk1tul4jlo1_400,65157,2 10532,FRAMEQA895,cat,what is dancing around on its hind legs?,tumblr_n99i8z85VV1tbjfazo1_400,38782,0 10533,FRAMEQA42342,two,how many lovers is taking off their cloth with kissing?,tumblr_nobecu8wyv1s5cww5o1_400,63193,1 10534,FRAMEQA48089,two,how many men walk outside and then end up in the shower?,tumblr_nac2esV6nf1tjc6a2o1_250,49698,1 10535,FRAMEQA11342,white,what is the color of the hair?,tumblr_ne2wr08MyD1smfzl0o1_500,79504,2 10536,FRAMEQA33450,jacket,"what is the man with the green eyes , wearing , looks mad?",tumblr_ni3gsht7rn1r0ebw4o2_1280,55836,0 10537,FRAMEQA51893,black,what is the color of the woman?,tumblr_ngegxwdGBV1qhy149o1_400,11203,2 10538,FRAMEQA6460,pool,where is the young girl smiling?,tumblr_n90y95G51t1twipgeo1_400,8927,3 10539,FRAMEQA12310,black,what is the color of the pants?,tumblr_nogsnl7vHM1r4cmiho1_500,93140,2 10540,FRAMEQA32925,black,what is the color of the cat?,tumblr_na3mvn9oII1rj1md8o1_400,11621,2 10541,FRAMEQA15927,blue,what is the color of the bucket?,tumblr_nambqoJbYC1tz9jaqo1_250,13301,2 10542,FRAMEQA47348,two,how many women is wearing matching shirts are dancing with each other?,tumblr_npaw92iT8u1tlobjyo1_400,15999,1 10543,FRAMEQA12883,bear,what is falling down in the woods?,tumblr_njb55e5csY1slwpo8o1_250,40890,0 10544,FRAMEQA3726,room,where is the guy with white shirt screaming?,tumblr_ncmf9iu3nr1tf406do1_400,33259,3 10545,FRAMEQA17660,three,how many people are sitting on the sofa while laughing?,tumblr_ne9ybnlp5T1qd8xguo1_500,82920,1 10546,FRAMEQA18826,ball,what is the young woman in a blue uniform kicking into the goal?,tumblr_nq28douqgC1spshbgo1_400,57460,0 10547,FRAMEQA49844,red,what is the color of the coat?,tumblr_nfoghgPKsv1rc5r2po1_400,30824,2 10548,FRAMEQA47919,black,what is the color of the man?,tumblr_nb963zWmFy1rpgekio1_400,59316,2 10549,FRAMEQA33018,band,what is playing on stage?,tumblr_nbcj1gnaNb1tt9t0wo1_400,66981,0 10550,FRAMEQA15214,mike,what is the man leaving?,tumblr_na3eo7OIFT1qfq821o1_400,5853,0 10551,FRAMEQA28288,guitar,what is the long haired person playing on stage?,tumblr_nbll33N3cj1trox53o1_400,66384,0 10552,FRAMEQA22484,cat,"what is yawning , sleeping and stretching on the person 's stomach?",tumblr_n974aiV3pP1tyycvto1_400,82732,0 10553,FRAMEQA19581,theater,where are two guys talking and laughing?,tumblr_nb1cdezKJt1t3jhfvo1_500,100401,3 10554,FRAMEQA5650,two,how many blonde girls are sitting on the bed?,tumblr_nfplbjsvOQ1u4bx69o1_400,85920,1 10555,FRAMEQA29330,car,what plows through the pile of snow?,tumblr_nkaj46inhY1tya7mxo1_400,63930,0 10556,FRAMEQA36253,two,how many men sit on the floor with their legs crossed and makes synchronized motions with their hands and arms?,tumblr_ng39jqAGro1tj86sdo1_400,64069,1 10557,FRAMEQA52094,green,what is the color of the shirt?,tumblr_nep3e191D91qdlxtao1_400,30718,2 10558,FRAMEQA4056,red,what is the color of the cap?,tumblr_nfnmsjSHVf1qls6cvo1_r1_500,91421,2 10559,FRAMEQA28143,denim,what slowly turns the umbrella?,tumblr_nezd8smQVJ1tmefd5o1_250,252,0 10560,FRAMEQA11592,cat,what runs and jumps into the cardboard box?,tumblr_nbadug35Zi1tl0ko9o1_400,57534,0 10561,FRAMEQA5665,white,what is the color of the girl?,tumblr_n9l730D6FC1rjn6tpo1_250,22567,2 10562,FRAMEQA51609,black,what is the color of the shirt?,tumblr_nhnznbimJv1sr8pwbo1_400,57915,2 10563,FRAMEQA28293,purple,what is the color of the liquid?,tumblr_nhne3zpLKF1u7r2dko1_500,66650,2 10564,FRAMEQA41520,brown,what is the color of the hair?,tumblr_ndi35jWc6Z1tm6rguo1_250,47727,2 10565,FRAMEQA15681,cigarette,what is the man smoking and blowing smoke?,tumblr_ne5y7kffb81tg2dlwo1_400,12761,0 10566,FRAMEQA11655,red,what is the color of the scarf?,tumblr_ng5sskpeoG1qmfh6ho1_500,67805,2 10567,FRAMEQA44504,cars,what drive around the corner and onto the grass?,tumblr_nhdvlzako31tx8mn0o1_400,78335,0 10568,FRAMEQA33588,dog,what is being bitten by the turtle?,tumblr_na6t4gSzKE1tgetb4o1_400,47560,0 10569,FRAMEQA32209,dog,what is tapping the person 's foot with its paw?,tumblr_ncw1h7V8au1rmdsrwo1_400,63248,0 10570,FRAMEQA10059,red,what is the color of the wall?,tumblr_neq8l3tT9D1qe849no1_400,50076,2 10571,FRAMEQA20316,lantern,what is the girl holding and looking at something?,tumblr_nf5g6kILKI1ra72xto1_500,89135,0 10572,FRAMEQA4242,panda,"what bear , breaks the branch its sitting on in the tree , and falls to the ground?",tumblr_ncap7ix7eJ1thbgs3o1_250,10789,0 10573,FRAMEQA8251,machine,what is engraving something into a piece of metal?,tumblr_nkr7dew1PD1qfozfoo1_500,60586,0 10574,FRAMEQA30010,white,what is the color of the girl?,tumblr_n95f1j7set1tgruvyo1_400,62958,2 10575,FRAMEQA25132,white,what is the color of the shirt?,tumblr_ncazxuSQtP1tps3kao1_400,62450,2 10576,FRAMEQA49480,white,what is the color of the car?,tumblr_n971luAydg1skeuupo1_400,74145,2 10577,FRAMEQA34936,white,what is the color of the suits?,tumblr_n9jjd1vxrB1rhbco5o1_250,47233,2 10578,FRAMEQA43092,one,how many wrestler slams another to the floor?,tumblr_nk22m121jw1twrr5wo1_500,47857,1 10579,FRAMEQA13291,face,what is the woman making?,tumblr_n9boo7VWMb1tbhfh6o1_500,56811,0 10580,FRAMEQA50199,black,what is the color of the hair?,tumblr_nfbrkjB7sK1smq40po1_250,16252,2 10581,FRAMEQA17546,truck,what cuts through an intersection and hits a tram?,tumblr_n9fp6mawvc1tg4n19o1_500,89277,0 10582,FRAMEQA13619,suit,what is the young man wearing and turning his head to the side?,tumblr_ngkpx0dYrI1tg9gzmo1_250,37780,0 10583,FRAMEQA47605,two,how many men are running away from the rhino?,tumblr_njsd1xvdMx1twhh4bo1_400,37070,1 10584,FRAMEQA14186,black,what is the color of the jacket?,tumblr_ng8cxoLAlN1ret264o1_250,36511,2 10585,FRAMEQA4036,two,how many girls are standing in the side of a road?,tumblr_n9yr1wYMdx1r6oiiao1_500,84810,1 10586,FRAMEQA22067,car,what is driving through the field of grass?,tumblr_ngf9rveb2q1sh98coo1_400,94749,0 10587,FRAMEQA37443,car,"where does the woman recline the driver 's seat , so that she 's almost laying down?",tumblr_nhezpoGPlg1s71nvbo1_500,68103,3 10588,FRAMEQA2194,car,what is crashing amid the lot of smoke?,tumblr_nl126a6rbk1unyhx2o1_400,79257,0 10589,FRAMEQA12849,cat,what is stuck in the plastic container?,tumblr_no73v10L191uuefq3o1_250,11614,0 10590,FRAMEQA33662,popcorn,what is the woman wearing red eating slowly?,tumblr_nnyl3sHshs1tjbfjto1_400,70065,0 10591,FRAMEQA43144,white,what is the color of the sheets?,tumblr_ne9pqpnV1K1qz874do1_500,99519,2 10592,FRAMEQA5449,smears,what are two girls crying so hard?,tumblr_ncmkrlulEL1tt4nxqo1_250,26024,0 10593,FRAMEQA17507,guitar,what is the woman playing with a man playing a horn behind her?,tumblr_nab7byQv4u1sg2mbto1_400,61087,0 10594,FRAMEQA1364,red,what is the color of the light?,tumblr_nhub4qN8TV1r37y87o1_500,61932,2 10595,FRAMEQA30661,two,how many people are on stage with lots of flashing strobe lights?,tumblr_nem4qtJZ6l1tsn1ypo1_250,18215,1 10596,FRAMEQA10735,two,how many guys are giving each other a high five?,tumblr_noagkbLLFO1rz4xj6o1_1280,66638,1 10597,FRAMEQA7167,box,what does the man smile and presents?,tumblr_nfe07vBmKZ1tg9gzmo1_400,48521,0 10598,FRAMEQA30684,blue,what is the color of the dance?,tumblr_n9c6suWFVG1swz4jho1_400,72800,2 10599,FRAMEQA51607,two,how many guys are running down the hallway?,tumblr_ne61f5xOgp1u2opwno1_250,84349,1 10600,FRAMEQA34525,car,what is driven quickly through the tunnel with lots of lights?,tumblr_nkzdxdVvFc1s5n087o1_500,57448,0 10601,FRAMEQA26318,hair,what looks at us?,tumblr_nbqsd8vBZS1rk4bszo1_500,34316,0 10602,FRAMEQA37729,car,where is the boy with black suit riding?,tumblr_nnkqmlsRPP1uoyfr8o1_400,64657,3 10603,FRAMEQA47676,dog,what tears apart the stuffed animal?,tumblr_ngu3mzFpwr1tdjuqvo1_400,67982,0 10604,FRAMEQA46948,room,where are two mice fighting?,tumblr_nd0odbifZp1tihaueo1_250,18445,3 10605,FRAMEQA11881,sunglasses,what is the woman wearing?,tumblr_ndmqnudPrQ1rdp3hpo1_500,49460,0 10606,FRAMEQA2714,white,what is the color of the t-shirt?,tumblr_ne3qgzrxld1s0r79po1_r1_500,92812,2 10607,FRAMEQA43216,room,where is the man dancing and jumping?,tumblr_ndaud7pQw81r4z25lo1_400,28204,3 10608,FRAMEQA23399,turtle,what is the guy tickling shell and the turtle is squirming away?,tumblr_neqagz6lei1tdjuqvo1_400,15374,0 10609,FRAMEQA10566,bones,what are two men tapping?,tumblr_nfalpqnjBU1u43iqlo1_250,10355,0 10610,FRAMEQA22381,red,what is the color of the bed?,tumblr_n89ev1boWG1tzl5c2o1_250,16324,2 10611,FRAMEQA9461,car,what is moving along the road?,tumblr_n94efhu6am1tfer95o1_500,72820,0 10612,FRAMEQA24043,brown,what is the color of the hair?,tumblr_n9dtvaAB1g1t8991mo1_250,19358,2 10613,FRAMEQA41492,red,what is the color of the shirt?,tumblr_nd90icPKP01tgwlf5o1_500,47777,2 10614,FRAMEQA41937,red,what is the color of the chair?,tumblr_nbjl83540H1sfr1gso1_500,90394,2 10615,FRAMEQA23878,red,what is the color of the ball?,tumblr_n9p7rcCFai1qlzevso1_400,84114,2 10616,FRAMEQA43539,shirt,what is the man changing with people nearby?,tumblr_n9mtd8IOiG1t0ojyvo1_250,12897,0 10617,FRAMEQA5455,tree,what is with the bunch of other trees?,tumblr_n9hakp4Wd51smtg6no1_400,80843,0 10618,FRAMEQA30209,cat,what is attempting to sit down and falls over?,tumblr_nqxes8zoYk1rulxe0o1_400,71466,0 10619,FRAMEQA52675,guitars,what are the musicians holding and playing music?,tumblr_nd8s1tUL2H1trp7kao1_500,26600,0 10620,FRAMEQA25564,blue,what is the color of the eyes?,tumblr_nde66zZYKb1sxg13zo1_500,95112,2 10621,FRAMEQA28275,costume,what is the person wearing with glowing green eyes?,tumblr_nb41brPtbh1r80pq0o1_400,67585,0 10622,FRAMEQA9327,three,how many men in black suits are dancing in a parking lot?,tumblr_nf1d6ntdfo1rkc8b3o2_500,92451,1 10623,FRAMEQA49320,boxes,what is the man holding above his head?,tumblr_nbgshkwBtf1tdjuqvo1_400,34923,0 10624,FRAMEQA33618,mirror,what is the man holding?,tumblr_nbnlp3d0FA1tldvawo1_400,54491,0 10625,FRAMEQA18027,ski,what is the person using?,tumblr_na5aodi5wy1tph724o1_400,64126,0 10626,FRAMEQA49321,brown,what is the color of the hair?,tumblr_nay7tj9gzN1rp5efco1_500,16984,2 10627,FRAMEQA34753,red,what is the color of the hair?,tumblr_nk90851bF31rreccuo1_500,99821,2 10628,FRAMEQA47229,black,what is the color of the boy?,tumblr_n9qncqac351tgg8imo1_500,69036,2 10629,FRAMEQA23227,white,what is the color of the beard?,tumblr_nklmda7nIP1u37l08o1_400,16821,2 10630,FRAMEQA52540,cars,what are racing and one starts sparking?,tumblr_nr12heBDzF1siem3jo1_400,93803,0 10631,FRAMEQA24211,white,what is the color of the costume?,tumblr_ngakp3K9X61tkrdioo1_250,4956,2 10632,FRAMEQA18907,brown,what is the color of the hair?,tumblr_ngy2exvrAn1qzghsuo1_400,29240,2 10633,FRAMEQA20469,circle,what is the girl spinning gin and sticking her tongue out?,tumblr_ncfjmx8GxD1rvdsbqo1_250,804,0 10634,FRAMEQA47105,car,what is walking on the track with speed?,tumblr_nacr8iiHHd1tjztg6o1_400,46433,0 10635,FRAMEQA17354,white,what is the color of the dress?,tumblr_nnjn15MCNP1tsnqf4o1_400,61799,2 10636,FRAMEQA23419,two,how many young men are speaking while one of them is wearing a neck pillow?,tumblr_n9db76KvdN1td6onfo1_500,52858,1 10637,FRAMEQA13155,weapon,what is the man wearing a shirt with a stripe is using?,tumblr_n9awd0Hzvt1tpfr3do1_500,50016,0 10638,FRAMEQA1995,paw,what is an animal using?,tumblr_n9cky9gUyi1rlte6do1_500,89306,0 10639,FRAMEQA41568,blue,what is the color of the eyes?,tumblr_navw87THcF1tkua7uo1_250,39747,2 10640,FRAMEQA2066,crow,what is the young woman shooing away?,tumblr_ndxspvkFfy1tgose8o1_250,38929,0 10641,FRAMEQA39175,car,what are racing cars racing around a track and spins off the track?,tumblr_nbatooeAde1tx8mn0o1_400,52734,0 10642,FRAMEQA44590,shirt,what is the man unbuttoning?,tumblr_nnsotwRNgh1tmavx8o1_250,1691,0 10643,FRAMEQA42276,two,how many fingers is the boy with short hair putting together?,tumblr_nbujvmeP191te0xigo1_250,2902,1 10644,FRAMEQA43137,blade,what is the man swinging?,tumblr_nau3o7ym5K1shofflo1_1280,25380,0 10645,FRAMEQA3262,bicycle,what is being ridden down the dirt path?,tumblr_nlxzt2gGMO1uokoxbo1_500,57812,0 10646,FRAMEQA48865,orange,what is the color of the arms?,tumblr_nesls65ifv1qj1s5io1_400,80347,2 10647,FRAMEQA40012,unicycle,what is the man riding?,tumblr_n8xdawheqQ1qzydejo1_250,426,0 10648,FRAMEQA21151,two,how many men are talking with the sun glaring behind them?,tumblr_n97zupqiAM1tdwa41o1_400,87809,1 10649,FRAMEQA36812,cat,what goes down the yellow slide?,tumblr_nkyaonXHxl1tmnntwo1_400,18209,0 10650,FRAMEQA49164,money,what is the man holding up?,tumblr_n8v8rd9miR1tho3a5o1_250,40981,0 10651,FRAMEQA27908,black,what is the color of the ears?,tumblr_nc0sriD2CI1rcku3no1_250,24526,2 10652,FRAMEQA15142,guitar,what is an old man playing while wearing sunglasses?,tumblr_nf7t5vzyxn1s8a8w8o1_400,63065,0 10653,FRAMEQA41538,street,where is the person holding a bag is standing and waving?,tumblr_n9h0noxlcN1sbsacvo1_400,85475,3 10654,FRAMEQA9243,black,what is the color of the hair?,tumblr_njoe7aI5R21unzsdpo1_250,8341,2 10655,FRAMEQA24846,cone,where is the chocolate cookie being placed?,tumblr_no73q2fm0I1uuf348o1_250,27138,3 10656,FRAMEQA28824,cat,what is running under the table on a pink rug?,tumblr_nqxvud6IgD1thktw9o1_250,533,0 10657,FRAMEQA47861,shirt,what does the wrestler rip his shirt off and then a basketball player rips off?,tumblr_nelh3nATly1tte9eno1_400,40152,0 10658,FRAMEQA14934,room,where are the couple dancing?,tumblr_nkqyrrDHMf1upvohzo1_400,69802,3 10659,FRAMEQA31601,jet,what is landing and then decides to take back off after the plane is in the way?,tumblr_na1eah7Rjw1slwrsuo1_500,86728,0 10660,FRAMEQA17110,road,what did three cars race and one drove off?,tumblr_nhbrltf1I31tx8mn0o1_400,86057,0 10661,FRAMEQA23988,wallet,what is the man pulling out?,tumblr_nklj8pQZTT1rxcyx0o1_250,2632,0 10662,FRAMEQA49747,red,what is the color of the blows?,tumblr_nee158JiiR1r7qucoo1_400,63913,2 10663,FRAMEQA28859,blouse,what is the woman wearing?,tumblr_nqgtrswsrb1qax4nyo3_500,76452,0 10664,FRAMEQA12970,black,what is the color of the suit?,tumblr_nbwssbgrhN1ti5nreo1_250,21307,2 10665,FRAMEQA50650,shirt,what is the man wearing a bucket of water over his head?,tumblr_nbtf0jqUNA1tkj2cmo1_250,8265,0 10666,FRAMEQA37582,black,what is the color of the top?,tumblr_ncb3i7WXVb1tlwdnpo1_250,23592,2 10667,FRAMEQA2759,two,how many laughing guys fist-bump and then continue laughing hysterically?,tumblr_np3fv0Iucb1sxj25eo1_500,80507,1 10668,FRAMEQA36669,black,what is the color of the eyes?,tumblr_no6xcisQQU1ttstb6o1_500,48414,2 10669,FRAMEQA19209,blue,what is the color of the shirt?,tumblr_nhruk6vPe11u7bky6o1_500,96175,2 10670,FRAMEQA45931,trousers,what is the man in a pink shirt holding a microphone adjusts?,tumblr_nqx3goKTK71t0ojyvo1_400,8463,0 10671,FRAMEQA47412,bird,what is flapping its wings on a tree branch?,tumblr_nczlfupRqq1tvuidio1_500,84031,0 10672,FRAMEQA5822,car,where are the man and woman sitting?,tumblr_nffz79veOV1tqrf5uo1_400,51126,3 10673,FRAMEQA12560,cat,what is standing up near the door?,tumblr_nc216vPG4X1tdjuqvo1_400,30878,0 10674,FRAMEQA24985,two,how many men are laughing and playing their guitars?,tumblr_navtszVYAv1tys35ko1_250,15994,1 10675,FRAMEQA13762,buds,what is the woman wearing in a car and putting on sunglasses?,tumblr_njh449BVt81u29slho1_500,87651,0 10676,FRAMEQA47379,white,what is the color of the shirt?,tumblr_nfi98s3ntx1shsnyco1_500,101984,2 10677,FRAMEQA1251,red,what is the color of the guitar?,tumblr_ng6marczEE1rvy5gto1_500,77810,2 10678,FRAMEQA25154,gun,what did the woman with long red hair shoot?,tumblr_nrcq7tt1cy1rysgdzo1_500,60851,0 10679,FRAMEQA24265,two,how many women are dancing and shaking together?,tumblr_nihwdfvxb61sx3lhyo1_400,98740,1 10680,FRAMEQA49672,two,how many lovers are looking at each other upside down?,tumblr_n8tucxOZc61qcsn62o1_500,24687,1 10681,FRAMEQA42088,fox,what is eating something and running around?,tumblr_ni2r0l3BTc1slj978o1_400,49338,0 10682,FRAMEQA35527,cars,what are the bunch?,tumblr_n9j9smqUw01tx8mn0o1_400,88247,0 10683,FRAMEQA8356,dog,what is playing with the couple and making them laugh?,tumblr_nklz4vcGE01tgv1ivo1_250,80529,0 10684,FRAMEQA40441,eyeliner,what is the girl looking into a mirror and applying?,tumblr_nb2ot3gu3Y1tvq4nwo1_400,32160,0 10685,FRAMEQA34599,guitar,what is the girl wearing a cowboy hat was playing?,tumblr_n8v8orVsL81rqn31vo1_250,73123,0 10686,FRAMEQA35773,red,what is the color of the girl?,tumblr_nejtlgrkmT1u1pi4oo1_400,35293,2 10687,FRAMEQA1154,black,what is the color of the hat?,tumblr_nhhykaSB4y1tmnf3co1_500,92610,2 10688,FRAMEQA7301,room,where is the young couple talking to each other?,tumblr_nappn5EVPG1t8jvi1o1_500,52923,3 10689,FRAMEQA14754,two,how many men are playing guitars while other people watch them perform?,tumblr_nbvhcbSyBx1rgwaj9o1_400,12085,1 10690,FRAMEQA5158,two,how many guys are hugging each other on the field?,tumblr_nc0ih2uUAV1tquxyyo1_500,93964,1 10691,FRAMEQA32055,white,what is the color of the shirt?,tumblr_nbaz4cGyXC1r324mgo1_500,89434,2 10692,FRAMEQA5421,cat,what is massaging another cats back with its paws?,tumblr_na60jik2x61swxhaso1_400,28844,0 10693,FRAMEQA11658,car,what rode down the street?,tumblr_n94efhu6am1tfer95o1_500,72820,0 10694,FRAMEQA11725,blue,what is the color of the suit?,tumblr_nklvmbxVSC1qeurwuo1_250,53608,2 10695,FRAMEQA23356,spill,what do two men watch out a bunch of red carts?,tumblr_nmz2tmDeda1sddro0o1_250,24985,0 10696,FRAMEQA38849,red,what is the color of the jacket?,tumblr_nagai2KcJW1slrp89o1_400,67973,2 10697,FRAMEQA25695,four,how many dancers discard their outer garments before starting to dance?,tumblr_nnkpi9gRWK1s778oho1_400,66032,1 10698,FRAMEQA16931,fish,what is swimming in the water?,tumblr_nahb37wZcQ1tbjfazo1_400,64226,0 10699,FRAMEQA45585,band,what is performing inside the room?,tumblr_n9lft7vTIh1r7tsclo1_400,61378,0 10700,FRAMEQA31477,blue,what is the color of the animal?,tumblr_nde98bVDhd1r21xqpo1_250,86043,2 10701,FRAMEQA12788,red,what is the color of the hair?,tumblr_nrcq7tt1cy1rysgdzo1_500,60851,2 10702,FRAMEQA2656,fox,what is calmly sitting there in the snow?,tumblr_nk4o2pe1Ah1u2c2quo1_500,84041,0 10703,FRAMEQA3266,cat,what plays with the garbage can by hitting the lid to make it spin?,tumblr_nhr64ytyfc1u7wiuzo1_400,73336,0 10704,FRAMEQA32556,cake,what is the man playing with his dog?,tumblr_nbl9ehQkxc1slwrsuo1_400,42814,0 10705,FRAMEQA6071,butterfly,what flies out of the girl 's mouth?,tumblr_n9uux7pi6m1trk3cho1_500,90040,0 10706,FRAMEQA20892,four,how many people are driving the car in the dark?,tumblr_nrcbdvtDHl1u3n11qo1_500,57651,1 10707,FRAMEQA49991,cat,what gets into the bag and run while pines fall?,tumblr_n8sopfHH201tbn1tto1_400,68160,0 10708,FRAMEQA17525,rib,what is the black man happily eating?,tumblr_njvociiGrl1u2vubao1_400,82737,0 10709,FRAMEQA32638,black,what is the color of the jacket?,tumblr_n9y7f9qCiI1sffixqo1_400,61748,2 10710,FRAMEQA5985,coat,what is the man wearing?,tumblr_nheujcDvAL1u6ps3vo1_400,35800,0 10711,FRAMEQA29403,cup,what did the woman wit in her hand sways while talking?,tumblr_nf19z5qOg31s8zojyo1_250,12232,0 10712,FRAMEQA20458,black,what is the color of the shirt?,tumblr_nhklesKZzn1stnum9o1_400,32469,2 10713,FRAMEQA32178,dogs,what are chasing the ball while dragging a young boy?,tumblr_ng8hdgB5OO1slj978o1_400,92423,0 10714,FRAMEQA38924,bear,what is the boy petting on the head?,tumblr_nedbvrPn4z1soryl3o1_250,9575,0 10715,FRAMEQA38622,black,what is the color of the hat?,tumblr_nkto6fCkCn1r0ia88o1_400,80125,2 10716,FRAMEQA5257,porcupine,what scurries to bowling pins and knocks them down?,tumblr_nol6jnzK9a1t95h1uo1_400,16645,0 10717,FRAMEQA23078,clothes,what are two blonde haired woman wearing and talking?,tumblr_njvix3hzTK1u3wykjo1_250,13812,0 10718,FRAMEQA12961,doorway,where is the man with tall hair standing?,tumblr_nddq9zmcQL1tmp9jpo1_500,85009,3 10719,FRAMEQA5417,rings,what does the bird place onto a toy placed?,tumblr_nhvz1zHlqY1slj978o1_250,27919,0 10720,FRAMEQA21313,black,what is the color of the jacket?,tumblr_njj1ug6dqi1r9zhm4o1_250,21282,2 10721,FRAMEQA43554,white,what is the color of the wall?,tumblr_ng3bhm9zzP1u15fgvo1_400,73598,2 10722,FRAMEQA23414,mirror,where is the girl in a red dress looking?,tumblr_nfglj8pbh61s90br6o1_250,51510,3 10723,FRAMEQA15919,two,how many other men is the man having come up behind him and smile?,tumblr_ngek8rCbFV1s82z36o1_500,73050,1 10724,FRAMEQA20656,car,where do two men ride while one steers wildly?,tumblr_njy7qk5Iqv1rr6d5go1_400,62367,3 10725,FRAMEQA33897,two,how many men are sitting and talking to each other in a room?,tumblr_nq0a8cwZvc1u5ep4ro1_500,61245,1 10726,FRAMEQA7622,two,how many guys are sitting there?,tumblr_ng4wp3CmCr1u54jjao1_500,86239,1 10727,FRAMEQA21437,brown,what is the color of the hair?,tumblr_nb7hys4yyC1tkmdtzo1_400,28034,2 10728,FRAMEQA18453,candle,what is the person lighting on a cake?,tumblr_npltp08V9L1u8z9jdo1_500,62712,0 10729,FRAMEQA12353,orange,what is the color of the dress?,tumblr_nd3uyoJnby1tgetb4o1_400,68835,2 10730,FRAMEQA42818,black,what is the color of the man?,tumblr_n8ku06s5kP1t6ksnpo1_500,90011,2 10731,FRAMEQA34487,two,how many young men are poking their tongues out?,tumblr_nqq5oq8jTh1sfwa6ho1_400,4817,1 10732,FRAMEQA30597,dog,what is falling into the swimming pool from the side?,tumblr_nge2siSPYW1sppy9co1_250,52861,0 10733,FRAMEQA42145,two,how many people are playing and eating on the mat?,tumblr_nb5uk5oady1tkipkco1_250,24620,1 10734,FRAMEQA45601,floor,where is the puppy trying to dig a hole?,tumblr_nc9l9ewvnn1rm95kgo1_400,42806,3 10735,FRAMEQA7310,motorcycles,what are riding on the road and one is falling over?,tumblr_ne2vicp4Xt1ti2fvro1_400,53169,0 10736,FRAMEQA24734,rabbit,what is the man holding while sitting in the chair?,tumblr_n9q0wbAvnk1slorlzo1_400,97560,0 10737,FRAMEQA24344,blue,what is the color of the mug?,tumblr_n99x6g6den1tcuqh9o1_400,29633,2 10738,FRAMEQA36579,room,where does the man with short hair stand?,tumblr_nfyy4pkeKZ1qdch8fo1_1280,93636,3 10739,FRAMEQA18455,white,what is the color of the shirt?,tumblr_nraq98IFWr1ua0n4io1_500,40317,2 10740,FRAMEQA13732,blue,what is the color of the car?,tumblr_n9k66hDtUT1s9lpi5o1_400,54195,2 10741,FRAMEQA45551,two,how many men are tapping their cheek bones?,tumblr_nfalpqnjBU1u43iqlo1_250,10355,1 10742,FRAMEQA42100,green,what is the color of the capes?,tumblr_ncl0nxfMG31t5lviko1_250,43918,2 10743,FRAMEQA16698,two,how many men are singing inside the car and rubbing their chests?,tumblr_nk8n38zP5b1unhekuo1_400,66354,1 10744,FRAMEQA20732,goat,what is eating peanut butter off of a spoon?,tumblr_nhf2pkEfCK1ssgyoro1_400,70176,0 10745,FRAMEQA8564,band,what is performing the song while playing their instruments?,tumblr_nb0pkreKb81tjr3nro1_400,59431,0 10746,FRAMEQA6885,blue,what is the color of the dress?,tumblr_ngzs89AHSP1u1gaf4o1_500,98423,2 10747,FRAMEQA30574,brown,what is the color of the hair?,tumblr_neycf1b1Y81s81a83o1_500,43536,2 10748,FRAMEQA12489,scarf,what does the man in a black jacket remove?,tumblr_ni11qwnFts1t0w22yo1_250,13191,0 10749,FRAMEQA29036,tray,what is the woman in a white top carrying?,tumblr_nfdgokPB5G1rgo5qmo1_500,25088,0 10750,FRAMEQA23926,two,how many dancers are performing in the synchronized routine?,tumblr_nhiiaqCFqE1r9hkyuo1_400,57808,1 10751,FRAMEQA24241,one,how many man looks at another man while he drops a torch onto a desk?,tumblr_nkitkhGcr51qdlihoo1_500,63296,1 10752,FRAMEQA1718,map,what back flips and jumps across the stage?,tumblr_n9ag3iabTq1ti0984o1_250,9601,0 10753,FRAMEQA28515,seven,how many kittens are meowing in the box?,tumblr_nfarhcHDam1seb8aro1_400,65054,1 10754,FRAMEQA12009,car,what is pulling the gas pump away from the tank and starts a fire?,tumblr_nkn8wvwPjD1s6zpepo1_400,45738,0 10755,FRAMEQA15495,white,what is the color of the shirt?,tumblr_nghnsy9tub1skqoaho1_400,62925,2 10756,FRAMEQA3940,drawer,where is the cat hiding and pawing at a pen poked at it?,tumblr_n9vr1xjmof1tdmffyo1_250,27920,3 10757,FRAMEQA27588,red,what is the color of the hair?,tumblr_nfyyvdx6N91rxspeco1_500,41811,2 10758,FRAMEQA18251,white,what is the color of the bar?,tumblr_nfkss1JMQ11tkdcbjo1_250,29782,2 10759,FRAMEQA22188,dog,what is holding its head out of a cars sunroof?,tumblr_nb6itwHzFO1slj978o1_250,23975,0 10760,FRAMEQA52385,racer,what leans to the side as he comes to a turn then he straightens up and continues racing?,tumblr_nepeym75h91tx8mn0o1_400,55579,0 10761,FRAMEQA14586,dog,"what is in the bucket of water , sad?",tumblr_nn4nr9hX3C1sm7eoto1_500,41251,0 10762,FRAMEQA39180,shell,what is the hand touching?,tumblr_neqagz6lei1tdjuqvo1_400,15374,0 10763,FRAMEQA15361,white,what is the color of the cat?,tumblr_nkv2wwA6vd1tatohao1_400,41874,2 10764,FRAMEQA38646,sunglasses,what is the man wearing and smiling out of a window?,tumblr_nrg3hgtNO11uayoojo1_250,19985,0 10765,FRAMEQA5661,sunglasses,what is the girl wearing?,tumblr_ndmqnudPrQ1rdp3hpo1_500,49460,0 10766,FRAMEQA28756,black,what is the color of the shirt?,tumblr_ni1ean3ue01sg4418o1_250,5756,2 10767,FRAMEQA48222,bathroom,where is the young boy?,tumblr_nfr6feQ1ii1smz8r1o1_400,54085,3 10768,FRAMEQA32793,two,how many guys are downloading of the car in a street?,tumblr_nc2h0evKgf1qbbmg6o1_500,96517,1 10769,FRAMEQA18773,socks,what is the skater doing a small board flip and wearing?,tumblr_ng0v11LduH1tpazm0o1_500,54277,0 10770,FRAMEQA32234,two,how many men are speaking to each other near a body of water?,tumblr_new6rapUbt1tqrf5uo2_400,66256,1 10771,FRAMEQA30197,shirt,what is the girl looking over her shoulder and dropping down?,tumblr_nkaonzuJHF1t90xflo1_500,89868,0 10772,FRAMEQA18530,black,what is the color of the shirt?,tumblr_nm5g67lpIs1r2mlm8o1_500,95960,2 10773,FRAMEQA16063,car,where is the blonde girl riding?,tumblr_nrcq3zetc31r2v01io1_400,15835,3 10774,FRAMEQA44466,white,what is the color of the suit?,tumblr_nd4c6yjbyt1sht3fmo1_250,8433,2 10775,FRAMEQA38748,two,how many girls dance next to each other in circles?,tumblr_nk1ldtCFnm1rcnyh1o1_540,46123,1 10776,FRAMEQA15115,headphones,what is the man wearing and talking with animation?,tumblr_nhqpn28ZzN1t55o0io1_400,19792,0 10777,FRAMEQA48031,black,what is the color of the shirt?,tumblr_nawid68HZW1tksh3ko1_250,2472,2 10778,FRAMEQA9131,gym,where did girl perform various difficult balancing exercises?,tumblr_nb6u9d3Ja51tkddqvo1_400,51050,3 10779,FRAMEQA24254,alley,where is the dancer dancing?,tumblr_nkk6ke2WBC1tp44uio1_500,72711,3 10780,FRAMEQA36667,two,how many young males are scrunching their faces?,tumblr_nh2x1kO12G1std30eo1_500,48576,1 10781,FRAMEQA16785,jacket,what is the man in a scarf taking off?,tumblr_nk1dswgMLu1tp7zxjo1_250,13652,0 10782,FRAMEQA48315,black,what is the color of the men?,tumblr_nau25zCJpy1tee2zqo1_500,94641,2 10783,FRAMEQA9089,black,what is the color of the man?,tumblr_ngqiv4WRnr1s1pq0jo1_500,101300,2 10784,FRAMEQA873,three,how many men are all laughing together?,tumblr_ndou4ocoom1qkh9mno1_500,89736,1 10785,FRAMEQA26585,room,where are tow man performing a dancing?,tumblr_ng39jqAGro1tj86sdo1_400,64069,3 10786,FRAMEQA20550,automobile,what is sliding sideways while handling the curve?,tumblr_n8vecizBZQ1sla45lo1_400,76383,0 10787,FRAMEQA33314,cat,what used its paw to hit a bowl of beans?,tumblr_nh97cpE0ME1u4v3ypo1_400,7646,0 10788,FRAMEQA25667,balloons,what are three women and a man twirl around behind them?,tumblr_npij4myP5M1u88jnvo1_250,26629,0 10789,FRAMEQA27396,parallel,what is the woman riding to a car?,tumblr_n9ycdkW91y1tzf7qto1_400,70554,0 10790,FRAMEQA32583,drink,what can the guy waves around and then takes a drink from it?,tumblr_nem0ssXplb1sglxc3o1_400,35920,0 10791,FRAMEQA7849,cats,what are playing in front of their owner?,tumblr_n9c03vG9GB1tyeuq0o1_250,27241,0 10792,FRAMEQA22969,bed,where are the dog and cat nuzzling?,tumblr_nelekc7qgX1rtcpyfo1_250,23195,3 10793,FRAMEQA26330,two,how many shirtless men are speaking flirtatiously with one another?,tumblr_nhqa0w4T6e1u7c3syo1_250,90930,1 10794,FRAMEQA2059,two,how many men with cute jewelry are standing still?,tumblr_ngi0qiLFyd1qfel0so1_400,87032,1 10795,FRAMEQA48699,goat,what hit the lady that was dancing toward him?,tumblr_najg0y3ZQX1tatohao1_250,10583,0 10796,FRAMEQA19480,black,what is the color of the man?,tumblr_na97yjNHnG1qc6vygo1_500,70910,2 10797,FRAMEQA23388,two,how many men are holding flashlights and talking to each other?,tumblr_nr583sbl9h1uasmbpo1_250,49822,1 10798,FRAMEQA21259,ball,what does the bunny throw into a mini basketball hoop?,tumblr_nrho0kbKHM1uzqrlco1_400,41679,0 10799,FRAMEQA44498,black,what is the color of the dress?,tumblr_ne8jbgE1dr1u29dzvo1_400,22809,2 10800,FRAMEQA3346,two,how many boys are singing and looking at each other?,tumblr_nrbv8bUdf81uaia6wo1_500,71376,1 10801,FRAMEQA18665,guitar,what is the man playing on top of a dining table?,tumblr_ney1kxoqjw1ssuua8o1_250,23685,0 10802,FRAMEQA51973,black,what is the color of the jacket?,tumblr_nezh23Liet1tz6sv9o1_1280,91907,2 10803,FRAMEQA43198,drink,what is the young man with a microphone taking?,tumblr_nc83vxbtD81rmcnl8o1_500,40301,0 10804,FRAMEQA4047,buttons,what is the man pushing on his arm device?,tumblr_nb9wspZqGo1tkc9f9o1_250,16882,0 10805,FRAMEQA34917,two,how many women are talking to each other?,tumblr_na02ttEsZr1rzuj65o1_250,18886,1 10806,FRAMEQA20387,skyscraper,what moved under the cloudy sky?,tumblr_nds0nftICq1tqs077o1_500,86723,0 10807,FRAMEQA29749,black,what is the color of the man?,tumblr_n9ensmVNvD1ttu918o1_500,100105,2 10808,FRAMEQA37679,one,how many guy kicks another guy playfully in his rear end?,tumblr_n9wnb04QPP1t1tf12o1_400,21562,1 10809,FRAMEQA50040,two,how many hockey player collided into one another?,tumblr_ney0nttuCQ1qzeat1o1_400,79935,1 10810,FRAMEQA33715,black,what is the color of the pole?,tumblr_nbzz3bhaZq1s71nvbo1_500,91879,2 10811,FRAMEQA7971,white,what is the color of the shirt?,tumblr_nccwnhLJjY1qlihd0o1_500,20591,2 10812,FRAMEQA9663,two,how many young boys are moving past each other in front of a wall?,tumblr_n9871uRZ6U1sg67zio1_250,25799,1 10813,FRAMEQA1057,black,what is the color of the hair?,tumblr_ndyc6dwsa21qalhmdo1_500,83472,2 10814,FRAMEQA52352,cigarette,what is the man walking and smoking?,tumblr_nl2dq7GgNi1r967i1o1_400,63199,0 10815,FRAMEQA21579,car,what spins off the track during a race?,tumblr_nfdbfb4nT11tx8mn0o1_400,100983,0 10816,FRAMEQA53071,three,how many men are standing close to each other and smiling?,tumblr_nhlszz2oCN1u6z1d8o1_400,77085,1 10817,FRAMEQA50557,orange,what is an animal sitting on a towel and eating?,tumblr_new1xjf0SM1se75noo1_500,22617,0 10818,FRAMEQA25319,kitten,what is the dog grooming lying on the carpet?,tumblr_nhtqa26yvr1tjhld9o1_400,19224,0 10819,FRAMEQA31877,cat,what hangs by his claws from a blanket?,tumblr_me6kztASh41rlgitoo1_500,62758,0 10820,FRAMEQA37092,butter,what is the goat eating from a spoon?,tumblr_nhf2pkEfCK1ssgyoro1_400,70176,0 10821,FRAMEQA48292,dog,what is the cat playing with a dog and is surprised?,tumblr_nki72xibIX1tatohao1_250,3605,0 10822,FRAMEQA27447,kitten,what is the woman holding?,tumblr_ncz194PjME1rjh61io1_250,801,0 10823,FRAMEQA44432,pizza,what is the woman sitting down and eating?,tumblr_nq4itivTFk1uyq33oo1_250,15108,0 10824,FRAMEQA47814,white,what is the color of the wall?,tumblr_nhsbn1IuVN1slqc17o1_250,20702,2 10825,FRAMEQA16222,two,how many men sing at the concert on stage?,tumblr_n9mxo7lBDU1ttpy61o1_250,10604,1 10826,FRAMEQA30456,two,how many people are fighting over something under water?,tumblr_nkmf37ggVI1sjh0axo1_250,15412,1 10827,FRAMEQA120,red,what is the color of the hat?,tumblr_nbbyfhxz6N1t3vunfo1_1280,91150,2 10828,FRAMEQA41311,two,how many cats is this image of playing with each other?,tumblr_nr78fdPO5w1slwrsuo1_400,43420,1 10829,FRAMEQA50879,stars,what are signing off after the show?,tumblr_ng0ykvjZDz1s74pxto1_400,74274,0 10830,FRAMEQA14984,cat,what is attempting to cross the small brook?,tumblr_nat7piX07F1slj978o1_250,16348,0 10831,FRAMEQA4180,hat,what is the man holding and speaking to the crowd?,tumblr_nhic56wdN51swdjefo1_400,61203,0 10832,FRAMEQA6914,classroom,what is being burnt by fire?,tumblr_nlzvydtNio1rh66jmo2_500,54822,0 10833,FRAMEQA18398,blue,what is the color of the eyes?,tumblr_nrcmn9qI3r1uajpcto1_400,81670,2 10834,FRAMEQA25157,gym,where is the man without a shirt walking?,tumblr_ndrpl3F8ed1ric2s6o1_500,34329,3 10835,FRAMEQA9342,purple,what is the color of the suit?,tumblr_nimutq2SO61tjd11mo1_500,75088,2 10836,FRAMEQA46484,two,how many men are wrestling in the ring?,tumblr_nn2r6dEP9b1us2olno1_500,79403,1 10837,FRAMEQA11503,catwalk,what is the male model wearing glasses is walking?,tumblr_n8vib5CRbG1s9iqrfo1_1280,66832,0 10838,FRAMEQA14918,red,what is the color of the scissors?,tumblr_n8qfwdVfrP1s47mwso1_250,19276,2 10839,FRAMEQA21555,red,what is the color of the balloon?,tumblr_ndyr8rSi4d1to0jsbo1_250,19082,2 10840,FRAMEQA375,white,what is the color of the marker?,tumblr_ngqv0fIvLp1qd80wyo1_400,45758,2 10841,FRAMEQA23933,white,what is the color of the car?,tumblr_nbk9h1Vx7T1tx8mn0o1_400,77249,2 10842,FRAMEQA2593,horse,what is trotting out of the gate?,tumblr_ndlmycDsSK1tidcnvo1_400,63831,0 10843,FRAMEQA13972,cat,what is jumping and hits the pole?,tumblr_n9uwiaBHQw1qhd5lfo1_400,25666,0 10844,FRAMEQA25808,scarf,what is the woman dancing around and waving?,tumblr_ndcczs10pL1r4bi5do1_250,51381,0 10845,FRAMEQA17808,cat,what is massaging the back of an orange and white cat?,tumblr_na60jik2x61swxhaso1_400,28844,0 10846,FRAMEQA9459,dog,what lets the smaller dog out of it 's cage?,tumblr_ncx9u3ivlb1tdmffyo1_400,101281,0 10847,FRAMEQA52552,shark,what broke free from a mans hands?,tumblr_nrjp8rMCHM1un86uao1_250,26568,0 10848,FRAMEQA1715,scarf,what is the man walking along and taking off?,tumblr_ni11qwnFts1t0w22yo1_250,13191,0 10849,FRAMEQA20142,black,what is the color of the coat?,tumblr_nf2uu3uHFS1ss66xxo1_250,12981,2 10850,FRAMEQA40521,mask,what is the man in a mask removing from his face?,tumblr_myoina0N7c1rknndzo1_500,2597,0 10851,FRAMEQA6110,red,what is the color of the hair?,tumblr_ncy4plCMec1tm5nq5o1_250,6674,2 10852,FRAMEQA16029,panda,what is sitting in the snow next to a wall?,tumblr_namd90alfg1qg9j7eo1_250,10806,0 10853,FRAMEQA3559,bicycle,"what does the person fall off , the bike crashes?",tumblr_nrb4qwDaQ11tx8mn0o1_400,55919,0 10854,FRAMEQA51242,two,how many guys are looking at each other?,tumblr_ncrhl6yWq81qi39coo1_500,96488,1 10855,FRAMEQA1898,airplanes,what do combat fly in formation next to each other?,tumblr_nr3xi1KZmV1uzvpcio1_400,63904,0 10856,FRAMEQA6916,white,what is the color of the shirt?,tumblr_n9sjupl61n1ss0n50o1_500,84015,2 10857,FRAMEQA31125,car,what drives along the road lined with trees?,tumblr_nfowj6p4zs1u25ovvo1_400,63438,0 10858,FRAMEQA14849,car,what travels on the desolate road in the daylight?,tumblr_nfflefXvpx1u25ovvo1_400,63605,0 10859,FRAMEQA45394,white,what is the color of the top?,tumblr_naqls278UC1t6ksnpo1_500,93552,2 10860,FRAMEQA28034,two,how many males are dancing around in costumes?,tumblr_nflu1hiOCs1tj2kheo1_400,66030,1 10861,FRAMEQA47093,dog,what is sleeping and twitching its ears?,tumblr_nrczpkDZLN1r7t178o1_500,52892,0 10862,FRAMEQA17237,black,what is the color of the hair?,tumblr_n9okijMTqj1s8thapo1_r1_500,5420,2 10863,FRAMEQA17682,room,where was the bird running around?,tumblr_nrac5ifOWX1utou2jo1_400,62192,3 10864,FRAMEQA48863,cars,what are driving and one car starts to burn?,tumblr_nri0fojp0G1tx8mn0o1_400,55938,0 10865,FRAMEQA45934,blue,what is the color of the shirt?,tumblr_nb1c34xCZI1tfp9nto1_500,66747,2 10866,FRAMEQA25830,four,how many men are illuminated by flashing lights and dance while hold microphones?,tumblr_nebqt1mhTY1rdu9xmo1_400,1256,1 10867,FRAMEQA45612,door,what are two men slowly opening and peering in?,tumblr_nklld32jOh1qg5lg0o1_250,53712,0 10868,FRAMEQA14903,blue,what is the color of the jacket?,tumblr_ne51d25SaP1qaodtzo1_500,96301,2 10869,FRAMEQA49789,two,how many women are holding something in their hands?,tumblr_nr3cvnawGP1tkgy96o1_400,38899,1 10870,FRAMEQA1785,white,what is the color of the cap?,tumblr_ncviyaoANv1tfnl8io1_500,94929,2 10871,FRAMEQA13416,brown,what is the color of the dog?,tumblr_nqqe7tTVgT1ssgyoro1_250,10404,2 10872,FRAMEQA3917,black,what is the color of the suit?,tumblr_neew4qV5fB1u2fp18o1_500,48437,2 10873,FRAMEQA2688,four,"how many men stand , stare , and look shocked?",tumblr_ngbwfkoLMR1tdmffyo1_250,39619,1 10874,FRAMEQA31857,two,how many teams are playing football when one player scores a goal?,tumblr_nafghuNYvk1tp3ejwo1_400,58652,1 10875,FRAMEQA8445,two,how many men are swaying together in the red room?,tumblr_nheuo83aCM1t0w9oqo1_400,74555,1 10876,FRAMEQA15389,guitar,what is the man tuning and adjusting his glasses?,tumblr_n94c9kD6eu1s0wfo1o1_250,40368,0 10877,FRAMEQA41973,brown,what is the color of the hair?,tumblr_ngkzq41Vhv1u49rjuo1_400,58354,2 10878,FRAMEQA5951,glasses,what are out of the five men three wearing and two are wearing baseball caps?,tumblr_nnjpac3v6Q1qboh47o1_500,59306,0 10879,FRAMEQA48523,cat,what is the person surprising by putting a flower in its head?,tumblr_nqpkgekB2L1t673d8o1_250,18793,0 10880,FRAMEQA44790,two,how many people are holding their faces and making faces?,tumblr_ncxp8joSc71u0xa5ao1_400,75525,1 10881,FRAMEQA31890,car,what is driving down the road outside?,tumblr_nelzioHl7F1u25ovvo1_400,63575,0 10882,FRAMEQA4310,red,what is the color of the hair?,tumblr_nax3ynhBwE1s25f60o1_500,86152,2 10883,FRAMEQA10084,two,how many men is wearing suits are singing against a white wall?,tumblr_npkxhturUR1uxcyego1_400,73594,1 10884,FRAMEQA47214,bag,what is the man hanging off?,tumblr_nhh2bh2wBY1ra3tfmo1_500,89335,0 10885,FRAMEQA24777,two,how many young men are looking down at something?,tumblr_nfmnppGF0g1rer2fjo1_250,49663,1 10886,FRAMEQA19444,three,how many people are about to enter the telephone box?,tumblr_nav6oaPHdu1tkrm74o1_500,68826,1 10887,FRAMEQA25873,car,what drives around the corner and creates dust?,tumblr_ngqsseRkvH1tr5tuwo1_400,50815,0 10888,FRAMEQA36374,horse,what is the girl with the blue shirt riding around the pen?,tumblr_nelugrsfHA1qcaryto1_400,35224,0 10889,FRAMEQA48426,candle,what is the young woman blowing?,tumblr_nd6fty53jA1rol592o1_500,89046,0 10890,FRAMEQA24706,two,how many blonde women dressed up are talking to each other?,tumblr_njvix3hzTK1u3wykjo1_250,13812,1 10891,FRAMEQA34405,cat,what smile and make some magic?,tumblr_n9kkadLYfn1sva5i8o1_400,42914,0 10892,FRAMEQA8554,red,what is the color of the uniform?,tumblr_nctwxv3Cf61sdoqnro1_500,63764,2 10893,FRAMEQA7126,towel,what is the man holding and speaking to someone?,tumblr_ne9rffF91i1tul4jlo1_250,9054,0 10894,FRAMEQA19105,bus,what is crashing over concrete many barriers?,tumblr_nl1o37byzo1tkso41o1_400,43357,0 10895,FRAMEQA7050,white,what is the color of the girl?,tumblr_nd9q316CkR1qckrt4o1_500,58028,2 10896,FRAMEQA12821,shirt,what is the man removing to somebody?,tumblr_nbp36t1GRR1tod7hho1_400,32577,0 10897,FRAMEQA22501,two,how many men are playing basketball?,tumblr_nrandzeiC71qlcjs4o1_400,47917,1 10898,FRAMEQA7988,cars,what are racing around the curb?,tumblr_n90m5f6owd1rp12fxo1_500,102058,0 10899,FRAMEQA49918,black,what is the color of the coat?,tumblr_ndjmseALcv1sbow0fo1_500,90410,2 10900,FRAMEQA35572,black,what is the color of the cat?,tumblr_nbdib2bbIb1s4zvpgo1_250,76388,2 10901,FRAMEQA49188,guitar,what is the man in the black shirt holding?,tumblr_nfxdgzZ1W81t9h1yfo1_400,63730,0 10902,FRAMEQA20895,guitar,"what is the man playing , whilst another one is sitting down?",tumblr_ng6marczEE1rvy5gto1_500,77810,0 10903,FRAMEQA17428,black,what is the color of the vest?,tumblr_nl3mezvrcH1qit42xo1_250,5975,2 10904,FRAMEQA46933,puppy,what tries to stay awake while in a sweater?,tumblr_nd35q1BzTi1rqfhi2o1_250,3277,0 10905,FRAMEQA33484,fish,what is being caught in the plant trap?,tumblr_nay1v5Pvpi1qg0cppo1_250,19061,0 10906,FRAMEQA20896,two,how many other man is the handsome young man embracing?,tumblr_nb8u1hK4Ac1sh75jso1_250,1929,1 10907,FRAMEQA52512,boxers,what are arguing on the ring?,tumblr_nqemmiLRm21u3u66ko1_400,64429,0 10908,FRAMEQA44355,baboon,what does the baboon clean?,tumblr_nhnhys0agY1tcltsqo1_400,66216,0 10909,FRAMEQA37575,black,what is the color of the hair?,tumblr_nfaofejxYg1spote4o1_500,88737,2 10910,FRAMEQA22410,guitar,what is the guy hopping and bobbing playing?,tumblr_nc7cu8o5Fs1tmqy1bo1_500,60452,0 10911,FRAMEQA1298,brown,what is the color of the hair?,tumblr_nay097eg3Y1s5y049o1_500,47813,2 10912,FRAMEQA43669,one,how many cat jumps out from the bunch and opens a door?,tumblr_ngzhkq39Nz1twdzc1o1_250,8947,1 10913,FRAMEQA3722,white,what is the color of the clothing?,tumblr_nc7rgpqFif1tjd11mo1_500,72389,2 10914,FRAMEQA31494,egg,what is the man flipping and chopping it in half as it lands in a bowl?,tumblr_n9guiyTTbi1tfen5bo1_250,22972,0 10915,FRAMEQA51113,white,what is the color of the shirt?,tumblr_npe2bz8i0w1rhprf5o1_400,68209,2 10916,FRAMEQA12800,cat,what is trying to get the plate through a see through table?,tumblr_ng0wn2TFG01tk2ngvo1_400,1209,0 10917,FRAMEQA27915,two,how many men are talking together in front of a waterfall?,tumblr_nnvy1kVUHL1utyjq6o1_400,32097,1 10918,FRAMEQA25050,window,what does the girl lower?,tumblr_nq3tfgU9Ir1srvjxao1_400,27347,0 10919,FRAMEQA40404,shirt,what is the man fixing in front a huge crowd?,tumblr_n93u6oK6hi1rtr5f6o1_500,81981,0 10920,FRAMEQA20969,black,what is the color of the glass?,tumblr_njx5xaqW1f1rp69xto1_400,28327,2 10921,FRAMEQA4288,fence,what is the woman wearing a coat is running passed?,tumblr_nh9b5ripty1tgux4fo1_250,90983,0 10922,FRAMEQA32198,fish,what does the man grab and holds?,tumblr_n8rex42OdN1rtdvdvo1_250,69293,0 10923,FRAMEQA37788,white,what is the color of the glove?,tumblr_nqsxagg3Xz1u78tt8o1_500,84183,2 10924,FRAMEQA3389,guitar,what does the guy play?,tumblr_ncl72mqPLe1rvltxro1_500,23929,0 10925,FRAMEQA51629,brown,what is the color of the hair?,tumblr_nq3fkqcRYs1tcxh18o1_250,46350,2 10926,FRAMEQA48319,jacket,what is the boy with dark hair adjusting?,tumblr_nhc93dy1rj1u4t4tso1_500,90731,0 10927,FRAMEQA21363,brown,what is the color of the hair?,tumblr_nr64kgXD0E1sntpr0o1_400,33110,2 10928,FRAMEQA47291,two,how many young men are laughing and talking?,tumblr_nbdro9plFr1tfri6co1_400,19670,1 10929,FRAMEQA8459,lion,what is the woman kissing?,tumblr_nin30zLbM91sz068fo1_400,53152,0 10930,FRAMEQA10787,hat,what is the woman wearing and looking down with her eyes?,tumblr_nrk4c2BSRg1sq7kg0o1_400,71707,0 10931,FRAMEQA2,hoop,where is the topless man performing tricks?,tumblr_nc3dcktrA31ticciso1_400,58502,3 10932,FRAMEQA30816,black,what is the color of the hair?,tumblr_nk132aAxXT1tg9gzmo1_500,90841,2 10933,FRAMEQA13731,cargo,what is the man pushing with a machine and he falls on the edge with the cargo?,tumblr_ngpcf5Nu4B1slj978o1_500,56530,0 10934,FRAMEQA19932,white,what is the color of the shirt?,tumblr_nfdmjslBH91t2huujo1_500,79448,2 10935,FRAMEQA30999,star,what plays the guitar on a stage?,tumblr_nait93JoFa1t1hwbqo1_250,7808,0 10936,FRAMEQA24848,swords,what do samurais raise up in unison together?,tumblr_nfnzb5N7By1t8vkd1o1_500,98954,0 10937,FRAMEQA14468,car,what burns rubber before going slightly off the track and onto the grass?,tumblr_nhdvlzako31tx8mn0o1_400,78335,0 10938,FRAMEQA20258,orange,what is the color of the shirt?,tumblr_nivsff9LA71raooppo1_500,15601,2 10939,FRAMEQA47962,red,what is the color of the man?,tumblr_nazcze5vKT1thn2bho1_250,25705,2 10940,FRAMEQA31028,black,what is the color of the shirt?,tumblr_nkg0rwoSOi1tkkgpso1_400,30371,2 10941,FRAMEQA38091,gun,what does the man start shaking it and his head?,tumblr_nodhmeDGTt1tadzeeo1_400,65197,0 10942,FRAMEQA16881,bird,what is rolling around in the snow it 's dead?,tumblr_ncbrd1GZox1s71nvbo1_500,59464,0 10943,FRAMEQA49771,sunglasses,what is the man putting on whilst being taken from a sports pitch on a stretcher?,tumblr_ncahrts1au1s71nvbo1_400,57065,0 10944,FRAMEQA10707,grabs,what grabbed touches his butt in a park?,tumblr_n8rqi06djV1rnn3cno1_250,23051,0 10945,FRAMEQA33291,guitar,what is man with long hair dramatically playing?,tumblr_nakdvwOdMw1qlxas3o1_400,56285,0 10946,FRAMEQA52722,cat,"what is licking the vacuum wand , and then starts wracking it FRAMEQAeatedly?",tumblr_npuazcydPD1te94myo1_400,4445,0 10947,FRAMEQA26934,red,what is the color of the sweater?,tumblr_nbgn5rXBcf1tymzl2o1_400,65752,2 10948,FRAMEQA45747,three,how many men in sporting uniforms talk?,tumblr_n9jy2zofO01tiv2uao1_250,21610,1 10949,FRAMEQA32324,red,what is the color of the fingernails?,tumblr_n92p88zgpM1tt7994o1_250,5757,2 10950,FRAMEQA46855,two,how many women are smiling next to the man who is pulling a face?,tumblr_nakn7iisRR1simlt8o1_250,32504,1 10951,FRAMEQA47591,two,how many young men are sitting together and looking surprised?,tumblr_nfbab1nX5s1u2eoido1_500,95714,1 10952,FRAMEQA51194,horse,what is running away from another horse?,tumblr_nowuhcCWo71s3fuxko1_400,71803,0 10953,FRAMEQA11948,black,what is the color of the top?,tumblr_nogenkTJ0O1uqjypdo1_250,9973,2 10954,FRAMEQA13298,kitten,what raises its paw towards something?,tumblr_nds8crBvqP1tml03go1_400,53863,0 10955,FRAMEQA41481,balloon,what is the pregnant woman lifting up?,tumblr_nkjhnhmF4l1tmxcjqo1_500,94127,0 10956,FRAMEQA36261,bicycle,what is the man riding across a lake?,tumblr_nk31md13E91un86uao1_400,86595,0 10957,FRAMEQA10826,one,how many woman wrestler is yelling while one is smiling at her?,tumblr_nafqz1kpCp1snm1avo1_250,38389,1 10958,FRAMEQA31207,owl,what is the hand petting?,tumblr_naiv7pBcv81s2l982o1_250,27670,0 10959,FRAMEQA39232,flowers,what is the person putting onto a stick?,tumblr_ndvmat0M581rlil49o1_500,52041,0 10960,FRAMEQA17405,two,how many men wear white play guitar on stage?,tumblr_ng1uqvcH4y1t1nzngo1_500,70801,1 10961,FRAMEQA14384,vest,what is the woman blowing a bubble and wearing?,tumblr_njmov237Wm1sy82cio1_500,87719,0 10962,FRAMEQA46459,red,what is the color of the top?,tumblr_n9jn42ObPo1sn2bh3o1_500,72099,2 10963,FRAMEQA18272,shirt,what is the man wearing and singing and dancing?,tumblr_nrb40p1XhC1tkdcvro1_250,4299,0 10964,FRAMEQA45083,white,what is the color of the jacket?,tumblr_nap9fbp0pV1rg642go1_500,50610,2 10965,FRAMEQA11914,dog,what sticks his tongue between two cushions?,tumblr_nnn5nj7vw21s8rggqo1_250,2604,0 10966,FRAMEQA40674,black,what is the color of the jacket?,tumblr_nl0daap0PB1u8ogblo1_500,97457,2 10967,FRAMEQA2192,mirror,where is the girl kissing her reflection?,tumblr_n9oo3e1Cfi1rro1neo1_400,1120,3 10968,FRAMEQA43558,sandwich,what is the man eating?,tumblr_nrffifGPGh1rfolw9o1_400,37528,0 10969,FRAMEQA40732,bed,where is the woman smiling and laying?,tumblr_ngnn2yLqSy1tcoweho1_500,54285,3 10970,FRAMEQA52964,two,how many men maneuver themselves in front of a bulletin board around other people?,tumblr_nb9ztnMJ2s1ti8b6yo1_500,26328,1 10971,FRAMEQA39396,three,how many men in white suits are singing?,tumblr_n9jjd1vxrB1rhbco5o1_250,47233,1 10972,FRAMEQA40757,car,what is driving away very fast?,tumblr_nd8dsnm0vU1ruoae6o1_1280,94851,0 10973,FRAMEQA4969,star,what is talking dirty words on the show?,tumblr_nkiotyWxSw1qbegvdo1_400,71541,0 10974,FRAMEQA20447,white,what is the color of the t-shirt?,tumblr_nbaz4cGyXC1r324mgo1_500,89434,2 10975,FRAMEQA16313,black,what is the color of the man?,tumblr_n97tp3oS9b1ts3h88o1_500,52423,2 10976,FRAMEQA37752,puppet,what is beating his head against the wall?,tumblr_ncigafqVwf1tgsaito1_400,42920,0 10977,FRAMEQA51900,room,where do the group of young men preform a dance routine?,tumblr_nbp31zmK7o1tlzda7o1_250,52570,3 10978,FRAMEQA5578,two,how many girls are holding hands ang laughing at each other?,tumblr_nkag9eNN351unbz69o1_500,91050,1 10979,FRAMEQA16502,black,what is the color of the hat?,tumblr_nbtm7qpM2J1ttyq3ao1_250,14564,2 10980,FRAMEQA47031,red,what is the color of the hair?,tumblr_nculypGc871u0x3uvo1_500,69278,2 10981,FRAMEQA45263,two,how many girls is this throwing buckets of water on each other?,tumblr_ndzclgUtfv1tbop90o1_250,5192,1 10982,FRAMEQA13624,sheets,what are two young men?,tumblr_nqrag9xM6l1qi27q9o1_250,40814,0 10983,FRAMEQA29496,gray,what is the color of the sedan?,tumblr_n91l33EgZY1rpqn0wo1_500,73230,2 10984,FRAMEQA30926,car,what is the dog entering?,tumblr_njxkdtyDbl1sht3fmo1_250,36792,0 10985,FRAMEQA44873,spits,what does the man stand up out water?,tumblr_njob4hlJui1swixd9o1_500,89188,0 10986,FRAMEQA218,kitten,what is playing in the pink ball?,tumblr_nk6t8rIVdA1tjjnlno1_400,54116,0 10987,FRAMEQA12822,microphone,what is man singing on stage holding?,tumblr_nddzrcdJsV1s4kr0bo1_400,31674,0 10988,FRAMEQA3889,two,how many twins try to high five but miss?,tumblr_nbt3166F731tjpng4o1_500,92690,1 10989,FRAMEQA36880,purple,what is the color of the t-shirt?,tumblr_nitdtkGfuf1slj978o1_250,10079,2 10990,FRAMEQA23115,white,what is the color of the shirt?,tumblr_ndejq7e6p91tse7gxo1_500,71128,2 10991,FRAMEQA32593,horse,what is jumping over the fence?,tumblr_nfsrf7PNZs1qe2thio1_500,98734,0 10992,FRAMEQA46732,two,how many people in a car are holding each other?,tumblr_natxvuXPzH1shtm22o1_500,76035,1 10993,FRAMEQA7743,dog,what is the man holding and waving?,tumblr_negf45USHl1u2j78co1_250,2107,0 10994,FRAMEQA8804,cat,what is the man on a bed with many cats speaking and holding?,tumblr_nc7nhn5zJf1sxvay0o1_500,75132,0 10995,FRAMEQA36966,gray,what is the color of the dresses?,tumblr_njvqkbvG2J1u3xy1to1_250,16912,2 10996,FRAMEQA5113,bird,what is skateboarding on piece of wood?,tumblr_noag3k38241tzmcano1_250,27870,0 10997,FRAMEQA8139,dress,"what is the woman with long dark hair , wearing is walking and waving?",tumblr_nf0kioRiHA1t8k5fuo1_250,2125,0 10998,FRAMEQA29581,poker,what is the man playing and his chips are being moved away?,tumblr_nhd5mxgLuD1u71lxzo1_500,98865,0 10999,FRAMEQA23961,white,what is the color of the shirt?,tumblr_nhp6y2cTpl1sni6coo1_400,5097,2 11000,FRAMEQA11008,guitar,what is the man playing?,tumblr_ngqw2fXCTZ1rlpvdxo1_250,16218,0 11001,FRAMEQA49540,two,how many men are fighting?,tumblr_nnzxkpnkEc1t9qxjmo1_250,48965,1 11002,FRAMEQA28120,black,what is the color of the shirt?,tumblr_nk8ca0XXF71u3zgs0o1_1280,56388,2 11003,FRAMEQA34085,black,what is the color of the hat?,tumblr_nfcfvwvGGQ1rum1ilo1_250,51015,2 11004,FRAMEQA41140,blue,what is the color of the blouse?,tumblr_ng8v5lde1d1rqnpmeo1_250,10463,2 11005,FRAMEQA31736,blue,what is the color of the counter?,tumblr_n980oaEVwU1t9r6nmo1_1280,36035,2 11006,FRAMEQA41264,cup,what is the woman holding?,tumblr_nghap1l68R1tzk0bko1_500,100691,0 11007,FRAMEQA44488,drink,what do the crowd of people celebrate and one man spills?,tumblr_nkj564CLrz1u7s4oro1_400,41105,0 11008,FRAMEQA9291,two,how many cats are turning their heads while other cat is sleeping?,tumblr_nfcolpASZD1sht3fmo1_250,68601,1 11009,FRAMEQA23015,red,what is the color of the popsicle?,tumblr_nfwkmh8JaB1rss4j4o1_250,19060,2 11010,FRAMEQA22191,room,where is the man showing a pair of underwear to an anchor?,tumblr_nc8gz0W3pf1qfnf9jo1_400,96220,3 11011,FRAMEQA39906,black,what is the color of the car?,tumblr_nagwqpek6t1sl4e5go1_400,96671,2 11012,FRAMEQA34239,elephant,what jumps into the puddle than plays in it?,tumblr_nr0xuomYVF1uqy5dho1_250,82672,0 11013,FRAMEQA29346,car,what is the guy driving and he flips it while the windshield wipers are going?,tumblr_ngx5sbnr6K1tx8mn0o1_400,67283,0 11014,FRAMEQA49826,cat,what kicks the other one as it tries to clean it?,tumblr_noaswjesmm1th7g9io1_400,95722,0 11015,FRAMEQA36416,robe,what is the woman wearing and yelling at someone?,tumblr_naje2j4n8S1qazjvjo1_250,47238,0 11016,FRAMEQA33971,black,what is the color of the jacket?,tumblr_nf3xv4kRGY1qcjc32o1_400,64070,2 11017,FRAMEQA37513,car,what is driving down the road as a car in front is trying to run someone over?,tumblr_nazi03WXVg1slj978o1_500,62179,0 11018,FRAMEQA31399,orange,what is the color of the cat?,tumblr_ncko1cgtVl1rwkjivo1_400,45420,2 11019,FRAMEQA20280,juice,what is being poured from the container into a glass?,tumblr_nowzu5MZZg1s3att3o1_250,14921,0 11020,FRAMEQA4954,two,how many men are getting out of the car that has blinking lights?,tumblr_nc2h0evKgf1qbbmg6o1_500,96517,1 11021,FRAMEQA7795,white,what is the color of the shirt?,tumblr_nfzln4hPwu1u4lqc0o1_400,52384,2 11022,FRAMEQA40894,dog,what is licking the girl 's face?,tumblr_njdegqHsrc1unoxe4o1_250,15245,0 11023,FRAMEQA27591,blue,what is the color of the blanket?,tumblr_n29eb50PTx1rxpytqo1_250,25431,2 11024,FRAMEQA22923,white,what is the color of the shirt?,tumblr_nfrob3zSe11u1cig2o1_500,71106,2 11025,FRAMEQA5119,purple,what is the color of the tutu?,tumblr_naadu72Yf41rih4r2o1_400,20856,2 11026,FRAMEQA23634,car,what is driving down the road splashing puddles?,tumblr_nf87a1ENfb1u25ovvo1_400,63565,0 11027,FRAMEQA4184,two,how many men is this image of on stage talking?,tumblr_nc3ak2Hla71rdjyr4o1_250,82631,1 11028,FRAMEQA19400,two,how many boys are singing into the microphone?,tumblr_nqljzrYT1E1utakepo1_500,62447,1 11029,FRAMEQA30852,three,how many men are sitting next to each other and laughing?,tumblr_nhrlcrqLFl1u7c3syo1_500,80637,1 11030,FRAMEQA33,white,what is the color of the dress?,tumblr_ndyscvfO4c1sjzf6wo1_400,28569,2 11031,FRAMEQA32521,two,how many men in t-shirts are laughing and making jokes?,tumblr_n94cb1ac3r1tgqu05o1_250,54191,1 11032,FRAMEQA4749,six,how many guys are posing up against the wall?,tumblr_ncczjfdwFt1tav0gmo1_500,93175,1 11033,FRAMEQA31188,cat,what is walking in a treadmill is tired?,tumblr_nojpv0LDGS1tpg4boo1_250,25879,0 11034,FRAMEQA30526,cat,what is in the box and falls out of the box?,tumblr_nela5igS4O1t7hjz2o1_250,53697,0 11035,FRAMEQA9854,cat,what is snuggling up to someones foot on a bed?,tumblr_n9e0koRNI51r390ico1_250,17008,0 11036,FRAMEQA35315,room,where are two rabbits playing very funny?,tumblr_nc2gpfzSk21tk2ngvo1_250,13592,3 11037,FRAMEQA13664,bandanna,what is the young man wearing around his face and making gun motions with his hand toward his head?,tumblr_nawbyzVwlV1thhvy0o1_400,32609,0 11038,FRAMEQA21936,white,what is the color of the cats?,tumblr_nkqx3b5Le21sz068fo1_250,24078,2 11039,FRAMEQA40243,two,how many men are hugging each other in a room?,tumblr_nfrlins4gC1qaucgno1_250,21892,1 11040,FRAMEQA44369,black,what is the color of the jacket?,tumblr_nefradf58s1tu3ue8o1_500,4218,2 11041,FRAMEQA48219,blue,what is the color of the shirt?,tumblr_nhq28jhRJx1u7vscio1_250,43599,2 11042,FRAMEQA45979,cats,what is the cat massaging back with its paws?,tumblr_na60jik2x61swxhaso1_400,28844,0 11043,FRAMEQA26388,two,how many boys are sitting next to each other and smiling?,tumblr_nm5g67lpIs1r2mlm8o1_500,95960,1 11044,FRAMEQA6694,white,what is the color of the shirt?,tumblr_na7qbi6YqP1taym8lo1_400,73168,2 11045,FRAMEQA42531,black,what is the color of the hair?,tumblr_ndufzyTI4k1tlhv9no1_500,101733,2 11046,FRAMEQA38683,black,what is the color of the hair?,tumblr_nb89xaSQAl1sk0e8vo1_250,23160,2 11047,FRAMEQA13756,dog,what is wearing a red cape pushes a scooter and jumps on?,tumblr_ndwfzx0hL91tgkdkbo1_250,5671,0 11048,FRAMEQA12626,bed,where is the woman with light brown hair sitting up?,tumblr_n9dtvaAB1g1t8991mo1_250,19358,3 11049,FRAMEQA25558,tambourine,what is the man playing and another man is playing a guitar?,tumblr_nax6k52cmx1tzzyazo1_400,30489,0 11050,FRAMEQA12414,floor,where did the man with curly hair drop something?,tumblr_no7f3olx4g1s373hwo1_400,48174,3 11051,FRAMEQA36773,nose,what is bitten by the tortoise?,tumblr_na6t4gSzKE1tgetb4o1_400,47560,0 11052,FRAMEQA8648,two,how many men are looking at chairs fall out of a moving truck?,tumblr_nmz2tmDeda1sddro0o1_250,24985,1 11053,FRAMEQA51710,car,what is driving on the road?,tumblr_neend692r31u25ovvo1_400,63543,0 11054,FRAMEQA13548,five,how many guys are playing one above the other in a stage?,tumblr_ncgsciLfMr1sc9795o1_500,97088,1 11055,FRAMEQA7829,white,what is the color of the breast?,tumblr_ndr9dyUwwa1u1ijg8o1_400,26386,2 11056,FRAMEQA2176,red,what is the color of the curtain?,tumblr_nc7whmAmg71tag56zo1_250,43643,2 11057,FRAMEQA19266,rabbit,what is crawling out from the box on a tiled floor?,tumblr_nf9fj4glx61swtmgzo1_500,46702,0 11058,FRAMEQA25479,red,what is the color of the trailer?,tumblr_nnukunx7r61uuj39do1_400,37449,2 11059,FRAMEQA49510,microphone,what is the man holding in front of his mouth?,tumblr_ngw0nxqd4L1tpishuo1_500,90070,0 11060,FRAMEQA38612,brown,what is the color of the hair?,tumblr_nfz7kmxjde1tssk6do1_400,32004,2 11061,FRAMEQA20927,cat,what pushes the black cat off a fence?,tumblr_nkv2wwA6vd1tatohao1_400,41874,0 11062,FRAMEQA4977,dog,what is collecting the mail from the carrier?,tumblr_nc0bml1h561t7io47o1_250,14250,0 11063,FRAMEQA49104,mask,what is the man with black hair taking off?,tumblr_ncyr2emPxA1ti6gxco1_500,8116,0 11064,FRAMEQA36704,cat,what is looking at itself in a mirror then tries to attack the reflection?,tumblr_nk6z38GkkR1tmbbaro1_400,80311,0 11065,FRAMEQA19303,yellow,what is the color of the thing?,tumblr_nhdy8uJlce1rpfnrjo1_400,41932,2 11066,FRAMEQA44162,black,what is the color of the man?,tumblr_n9siszhG1N1r6pekco1_250,9861,2 11067,FRAMEQA47574,yellow,what is the color of the ball?,tumblr_nq79d1R2uE1rered3o1_400,77208,2 11068,FRAMEQA11868,cars,what are racing and one clips the other and it turns upside down in the air?,tumblr_njoz3heJia1tx8mn0o1_400,21855,0 11069,FRAMEQA22530,car,what leaves skid marks as it spins out?,tumblr_npaw4iQKzd1u6iefyo1_500,76767,0 11070,FRAMEQA43152,two,how many very cute ladies are sitting and watching each other?,tumblr_n8a0e46Baz1qcwyxho1_500,41796,1 11071,FRAMEQA26126,black,what is the color of the woman?,tumblr_ne0llj1byG1u1ukj4o1_500,34940,2 11072,FRAMEQA23522,room,where does the man jump while the other man does a crazy expression?,tumblr_nlzwwj6elv1ta4f2po1_500,73747,3 11073,FRAMEQA32574,two,how many people are holding each others ' little fingers?,tumblr_nklmclT3p41tculako1_400,93033,1 11074,FRAMEQA38785,guitar,what is the man performing and playing?,tumblr_ncf1dpahl31sirc9vo1_500,87991,0 11075,FRAMEQA38684,black,what is the color of the shirt?,tumblr_n8kt58I4Bp1t6ksnpo1_500,93118,2 11076,FRAMEQA42441,ball,what is the dog carrying and dunking it in a net?,tumblr_nq60eugCBm1tk2ngvo1_500,85137,0 11077,FRAMEQA32105,black,what is the color of the suit?,tumblr_napfl20WZw1r9n9k9o1_400,80140,2 11078,FRAMEQA23774,black,what is the color of the couple?,tumblr_nekk97G6bF1rodbc8o1_250,15961,2 11079,FRAMEQA31388,cat,what is trying to wake up her buddy?,tumblr_mqr7rhdu191stpzqxo1_250,48885,0 11080,FRAMEQA43759,car,what is the man driving down the stairs?,tumblr_nam1acBsls1sgrimro1_400,1243,0 11081,FRAMEQA36593,black,what is the color of the dress?,tumblr_n9hek5wjXA1tselino1_250,263,2 11082,FRAMEQA17379,cat,what tries to jump into the white box and flips over backwards?,tumblr_nbjfm8LunL1tlv2g2o1_400,78926,0 11083,FRAMEQA14380,bat,what spreads his wings and screeches?,tumblr_nhkmxjaSAq1u777vko1_500,57894,0 11084,FRAMEQA29844,person,what did the dark haired?,tumblr_nhw74v6B9h1sk9xwto1_500,80167,0 11085,FRAMEQA29210,doves,what are flying around the lady with a black umbrella?,tumblr_nkkaabSLxV1rzui38o1_400,15437,0 11086,FRAMEQA13581,butts,what are the pair of men bumping together while dancing?,tumblr_n8xhwswWAH1qi4n2uo1_500,83905,0 11087,FRAMEQA966,bottle,what is dancing around?,tumblr_nhtfm7N0sV1u6xoazo1_250,43972,0 11088,FRAMEQA34076,cars,what are racing on a circuit?,tumblr_np726k1fIU1unyhx2o1_400,76923,0 11089,FRAMEQA13760,cat,what is playing with its own tail with its eyes closed?,tumblr_na8ztgwPRU1tj8blpo1_250,11564,0 11090,FRAMEQA4160,two,how many girls looked forward making faces and sticking their tongue out?,tumblr_n9agpx9QDL1s4niibo1_400,32543,1 11091,FRAMEQA18517,blue,what is the color of the singing?,tumblr_noyo842ZhQ1sonpgjo1_400,30297,2 11092,FRAMEQA2769,black,what is the color of the man?,tumblr_nktim2ynq81upzmu0o1_500,19208,2 11093,FRAMEQA6889,black,what is the color of the shirt?,tumblr_n8vcdumjlM1th8gzmo1_500,88561,2 11094,FRAMEQA9141,gym,where is the man turning tricks?,tumblr_ndszgz7EAa1tlt0c9o1_400,13975,3 11095,FRAMEQA38972,red,what is the color of the hair?,tumblr_n90g92xH0U1txcuu2o1_250,8661,2 11096,FRAMEQA48885,car,where is the guy looking out the window?,tumblr_ncsp3eMrFe1t5v98mo1_400,34536,3 11097,FRAMEQA39819,two,how many men are walking around?,tumblr_nccngahQlq1sdbrm9o1_400,66360,1 11098,FRAMEQA50482,two,how many women hugged up to each other?,tumblr_nh9fzj5h9Y1u57bkto1_250,42689,1 11099,FRAMEQA17836,bicycle,what is the young man talking on his phone and walking?,tumblr_naz1gjhCtv1rl8ttqo1_500,81910,0 11100,FRAMEQA3607,two,how many boys are hugging each other closely?,tumblr_npdc7wPDYW1uvkm4po1_500,101115,1 11101,FRAMEQA9566,microphone,what does the man hold and adjusts?,tumblr_nk5putNwnc1s9hy1to1_500,82527,0 11102,FRAMEQA4287,goat,what is being fed peanut butter from a spoon?,tumblr_nhf2pkEfCK1ssgyoro1_400,70176,0 11103,FRAMEQA23649,race,what is going on and the man roots for it?,tumblr_nl2bhazRt01u1nko6o1_400,28705,0 11104,FRAMEQA51656,white,what is the color of the shirt?,tumblr_nnr8ru73mJ1u79obxo1_400,23840,2 11105,FRAMEQA32620,white,what is the color of the shirt?,tumblr_n8reauf0cL1sevihno1_400,64572,2 11106,FRAMEQA42748,octopus,what is the submarine following?,tumblr_n9idf18Lt31sjcycuo1_250,73363,0 11107,FRAMEQA19656,hood,what is raising up and down?,tumblr_n9zu57mMW51t36lbdo1_400,53950,0 11108,FRAMEQA38384,two,how many women are standing close and when one looks over at the other?,tumblr_nes3koGSue1s2cbf9o1_250,47312,1 11109,FRAMEQA49339,pants,what is the man holding and dancing around?,tumblr_nkxvqaazzU1up8baqo1_250,3440,0 11110,FRAMEQA44461,piano,what did half naked man mock play in front of a crowd?,tumblr_n9rgx4UGGL1so8zmko1_400,85942,0 11111,FRAMEQA18281,two,how many guys is wearing jackets are wiping their foreheads?,tumblr_ngy2thk5VL1rn16efo1_r1_500,71393,1 11112,FRAMEQA8478,two,how many people wrap their arms around each other while staring into the distance?,tumblr_nayv2kyFQI1ts7wbfo1_400,80131,1 11113,FRAMEQA285,container,what is filling with the gas?,tumblr_np1oltv5F41te6s3so1_250,8455,0 11114,FRAMEQA12336,yellow,what is the color of the spike?,tumblr_nhvz1zHlqY1slj978o1_250,27919,2 11115,FRAMEQA27710,car,what speeds down the track and narrowly avoids crashing?,tumblr_nb9airoPJM1rs58dao1_500,57001,0 11116,FRAMEQA11206,three,how many young men are walking in front of an army?,tumblr_nhp246FgbJ1tk1kc2o1_400,37801,1 11117,FRAMEQA12933,store,where did the funny-looking dog star?,tumblr_nhdr3clKDa1sntw1mo1_400,39810,3 11118,FRAMEQA24343,brown,what is the color of the chair?,tumblr_naoun5Qf411t90iy0o1_500,52064,2 11119,FRAMEQA24049,room,what are two men with black coats exiting?,tumblr_nk32pnnazT1skvgwao1_400,83387,0 11120,FRAMEQA25322,white,what is the color of the shirt?,tumblr_niusi5DiBN1r027rto1_250,820,2 11121,FRAMEQA49541,red,what is the color of the headdresses?,tumblr_ngkbm8DACb1t0w9oqo1_400,15773,2 11122,FRAMEQA50962,white,what is the color of the hood?,tumblr_ngakp3K9X61tkrdioo1_250,4956,2 11123,FRAMEQA361,street,where are the group of men in red jerseys dancing?,tumblr_nhs6znj2Pt1slj978o1_250,27761,3 11124,FRAMEQA7028,two,how many basketball players are slapping their hands together?,tumblr_nq0ietOo6o1qa3o0zo2_500,82603,1 11125,FRAMEQA472,puppet,what is the man making?,tumblr_negdrj3DSk1sggdd3o1_500,95494,0 11126,FRAMEQA20098,blue,what is the color of the top?,tumblr_nb7d1hWDP01tzjhlno1_500,88503,2 11127,FRAMEQA23262,red,what is the color of the background?,tumblr_no63u43lax1s4dp9lo1_500,59295,2 11128,FRAMEQA39130,three,how many people are jumping on the trampoline and one jumps high and puts a basketball through a basketball hoop?,tumblr_nipn2lx2R71slj978o1_250,41152,1 11129,FRAMEQA26340,yellow,what is the color of the shirt?,tumblr_n8xdjz1MKC1r6b9h8o1_500,30622,2 11130,FRAMEQA16168,two,how many guys are together?,tumblr_nf1py0cFid1sorauco1_500,79780,1 11131,FRAMEQA25745,three,how many men gently grin from different vantage points?,tumblr_naxoajybvK1qgfbkmo1_500,94313,1 11132,FRAMEQA16774,black,what is the color of the shirt?,tumblr_nexv4oxDWU1tdxdrdo1_400,58313,2 11133,FRAMEQA42207,bear,what is playing and hugging her baby?,tumblr_nc5pmkrxPP1tm39w8o1_500,99498,0 11134,FRAMEQA14939,white,what is the color of the top?,tumblr_ndo5t4jt651txq11zo1_400,66215,2 11135,FRAMEQA40707,clothes,"what is the woman , wearing , uses gymnastic rings to lift herself to a seated position then into a handstand?",tumblr_ncf4ohdwxD1tkdyoao1_400,80224,0 11136,FRAMEQA26620,two,how many girls is wearing long sleeves are catching other girl?,tumblr_nabnd0SUAv1tjbxaso1_400,28885,1 11137,FRAMEQA23519,rink,where are some people playing hockey?,tumblr_nh0htmQzPY1qhrx75o1_400,87458,3 11138,FRAMEQA38802,two,how many men are wrestling in the arena one of them take the head of the other between his legs and throw him outside the arena?,tumblr_ner22jeQIK1rinntgo1_500,89729,1 11139,FRAMEQA50457,forklift,what falls off the platform and throws the man?,tumblr_ngpcf5Nu4B1slj978o1_500,56530,0 11140,FRAMEQA26303,lipstick,what is the girl wearing and a man is going in a car?,tumblr_nooov5ZSds1un86uao1_400,15396,0 11141,FRAMEQA27069,white,what is the color of the girl?,tumblr_n8vrrw9ndC1t8amt8o1_500,75390,2 11142,FRAMEQA16135,white,what is the color of the horse?,tumblr_ni2yugot1B1tiz27ro1_500,37357,2 11143,FRAMEQA39716,two,how many men link arms while walking and waving?,tumblr_ncoxe7Pzl11t0ojyvo1_250,6571,1 11144,FRAMEQA27541,blue,what is the color of the shirt?,tumblr_ne7om7gzgi1tw8vf9o1_400,17998,2 11145,FRAMEQA32346,red,what is the color of the hat?,tumblr_nhys5kaxEu1u7u0ceo1_500,95988,2 11146,FRAMEQA50221,street,where is the guy running and jumping?,tumblr_nfirz117ee1s9f4vbo1_250,53330,3 11147,FRAMEQA3886,two,how many cats are playing with each other between a bike wheel?,tumblr_nra8jaNWXd1ti2yzto1_1280,17735,1 11148,FRAMEQA12551,white,what is the color of the kitten?,tumblr_ni3zyv9YI61s3a96to1_400,96188,2 11149,FRAMEQA28850,white,what is the color of the outfit?,tumblr_nr4jfl16Cl1syfpbbo1_500,101310,2 11150,FRAMEQA3410,jacket,what is the woman arranging?,tumblr_nappn5EVPG1t8jvi1o1_500,52923,0 11151,FRAMEQA5644,two,how many men raise their hands in the air?,tumblr_no1p33MsIj1utp1xwo1_500,48853,1 11152,FRAMEQA31830,two,how many girls is this talking while sitting in a booth?,tumblr_nb4yysgw0F1ti4mkxo1_500,59799,1 11153,FRAMEQA2279,green,what is the color of the stage?,tumblr_nb44xo2hh31tjzm01o1_250,37627,2 11154,FRAMEQA12810,two,how many cars slowly drove through the parking deck?,tumblr_nd11cdPFVQ1s1cmjio1_400,96948,1 11155,FRAMEQA3874,kitten,what is falling asleep drops his head down?,tumblr_ngv8o5fqeJ1u68w9so1_400,60657,0 11156,FRAMEQA48876,two,how many boys are laughing and playing around with their hands?,tumblr_n9rm0wQ5KP1thg4lco1_400,33455,1 11157,FRAMEQA12427,dog,what is the man wearing a white shirt was holding?,tumblr_no7frjTMmN1u4wcs2o1_400,39464,0 11158,FRAMEQA34370,brown,what is the color of the hair?,tumblr_nhxrhb6KxZ1rjpa5po1_250,13470,2 11159,FRAMEQA34378,guitar,what is the young man with tattoos playing?,tumblr_n9v14rHt3R1riy1p3o1_400,39342,0 11160,FRAMEQA50162,two,how many players from them is winning team are embracing and congratulating each other?,tumblr_nf3l77geE51tckhoro1_250,43984,1 11161,FRAMEQA28248,blue,what is the color of the shirt?,tumblr_nr7jp1slnJ1u978z2o2_400,7617,2 11162,FRAMEQA51894,brown,what is the color of the jacket?,tumblr_np84galvUX1rkaxwxo1_400,44864,2 11163,FRAMEQA48029,red,what is the color of the hair?,tumblr_nitazkhnAd1u1egsso1_500,93401,2 11164,FRAMEQA52159,guitar,what is the man playing and singing on the stage?,tumblr_nekewm14Rx1seb31ro1_500,63354,0 11165,FRAMEQA8884,red,what is the color of the shirt?,tumblr_njw6xdvgLy1u7i24mo1_400,78974,2 11166,FRAMEQA43025,jacket,what does the man partially remove?,tumblr_ngh835PaKl1u5c02bo1_500,76262,0 11167,FRAMEQA34695,red,what is the color of the shirt?,tumblr_npjj2qYG1B1rk7l72o1_500,54923,2 11168,FRAMEQA21218,purple,what is the color of the ears?,tumblr_nov6tduqos1uvi3rjo1_400,54480,2 11169,FRAMEQA9774,two,how many girls are making faces and laughing?,tumblr_ncklqndWmQ1tgq0eso1_250,4718,1 11170,FRAMEQA39017,white,what is the color of the coats?,tumblr_nr24ia3Q8z1uzm9a7o1_500,71205,2 11171,FRAMEQA31956,yellow,what is the color of the costume?,tumblr_nokwt1ZuPX1u5ha5do1_500,8577,2 11172,FRAMEQA9625,blue,what is the color of the eyes?,tumblr_n8f0v94np21tgzchoo1_500,86111,2 11173,FRAMEQA10123,buildings,what are shown close up with more buildings behind and a gray sky?,tumblr_nds0nftICq1tqs077o1_500,86723,0 11174,FRAMEQA16151,two,how many guys with long blonde streaked hair throw and bounce balls?,tumblr_nezwgxkYSL1trp7kao1_500,38597,1 11175,FRAMEQA48361,one,how many leg does the man have?,tumblr_nbdij9TJS41swv315o1_400,38898,1 11176,FRAMEQA25616,two,how many men with marks on their faces are talking?,tumblr_nfwyadLrQK1qb0dkjo1_400,40672,1 11177,FRAMEQA25754,room,where is the man slicing off arms?,tumblr_ni4f35mzSx1u849zpo1_250,37920,3 11178,FRAMEQA4748,dog,what is rubbing his rear on the couch?,tumblr_na3xfcUdnK1tiamx1o1_400,19533,0 11179,FRAMEQA39288,black,what is the color of the shirt?,tumblr_ncrsw2qHWe1slhvg9o1_500,59390,2 11180,FRAMEQA52833,blouse,"what is the young woman with long black hair , wearing?",tumblr_nrkai5chFn1uqslqko1_250,16524,0 11181,FRAMEQA21166,black,what is the color of the jacket?,tumblr_nemxtbM9Ij1rkcgxho1_500,97972,2 11182,FRAMEQA42520,two,how many boys are on stage dancing and singing?,tumblr_ngwvy1uJBD1u6667lo1_500,60154,1 11183,FRAMEQA29359,two,how many men in a car are playing air drums?,tumblr_nqtbhyWjrF1twsxdzo1_400,78772,1 11184,FRAMEQA947,monkey,what jumps over the other surprised monkey?,tumblr_na7zldRIh21slj978o1_400,40880,0 11185,FRAMEQA3203,two,how many guys are talking?,tumblr_nc47bdxzrD1taknwvo1_500,59589,1 11186,FRAMEQA23363,two,how many woman are looking at each other with a strange expression?,tumblr_na1xg4jOZe1sgddbno1_400,72667,1 11187,FRAMEQA44609,costumes,what are two masked men wearing and speaking?,tumblr_ne6n5ulYf11sccnr4o1_250,5567,0 11188,FRAMEQA21482,wolf,what is the girl fighting off?,tumblr_nr4hkbp8Nd1u6qd8so1_250,45718,0 11189,FRAMEQA27604,cat,"what jumps and opens the sliding door , making a crack big enough for the rest to get in?",tumblr_ngzhkq39Nz1twdzc1o1_250,8947,0 11190,FRAMEQA52913,sheep,what backs up and goes after the cow?,tumblr_ngcyybdpPO1qct8qno1_400,96856,0 11191,FRAMEQA35725,instruments,what are the band in uniforms playing?,tumblr_nq01pqZoQU1t4f3yro1_400,33290,0 11192,FRAMEQA49382,cat,what is sleeping in the dish of fruits?,tumblr_nnw0q7MHTa1rwofevo1_500,80243,0 11193,FRAMEQA18488,black,what is the color of the shirt?,tumblr_nr5l8obm4R1uyo3nxo1_250,6351,2 11194,FRAMEQA548,cat,what is dipping their paw into a glass of milk?,tumblr_ncxt71hFPt1t7io47o1_250,23002,0 11195,FRAMEQA45560,white,what is the color of the dog?,tumblr_nhiydsOcmj1rtdnfto1_400,74853,2 11196,FRAMEQA24194,two,how many teams are playing the game of baseball together?,tumblr_nrl16zOfFD1uynlu6o1_400,62902,1 11197,FRAMEQA30109,white,what is the color of the shirt?,tumblr_nddwgxHABg1u1oezmo1_400,88923,2 11198,FRAMEQA14876,cigarette,what is the man holding while biting his nail?,tumblr_nhoc5qUwE61tebudgo1_400,24292,0 11199,FRAMEQA50396,carrots,what does an animal monkey eat eating with his hands?,tumblr_nosv3ta6Y91rndm3wo1_250,27133,0 11200,FRAMEQA27857,two,how many men are talking while being interviewed?,tumblr_nfv8zfjW0v1rwe02ao1_250,45681,1 11201,FRAMEQA22798,white,what is the color of the shirt?,tumblr_nkjhd849y71u3aq49o1_540,50778,2 11202,FRAMEQA8118,kitten,what is dancing and jumping?,tumblr_nnw9ylw8zC1tpg4boo1_250,68610,0 11203,FRAMEQA20631,lizard,what is swinging on the thread?,tumblr_nk75gnN9yC1sht3fmo1_250,11849,0 11204,FRAMEQA30182,cup,what did the man take from a woman while sitting in an office building?,tumblr_nbzm00HNNY1svp9edo1_1280,95163,0 11205,FRAMEQA21299,red,what is the color of the dress?,tumblr_nefaiatKqJ1siijy4o1_250,19993,2 11206,FRAMEQA10223,room,where is the woman doing yoga?,tumblr_nf9d4tfO9u1u14j2jo1_400,56906,3 11207,FRAMEQA10999,lipstick,what does the woman with long hair apply?,tumblr_nbfxm0sP931rntqodo1_400,30547,0 11208,FRAMEQA40915,drink,what is the man pouring?,tumblr_njoi3huNbE1tzhdnfo1_500,86821,0 11209,FRAMEQA30865,black,what is the color of the jacket?,tumblr_nfpglozL0n1s3dd2do1_400,5689,2 11210,FRAMEQA3791,red,what is the color of the cooler?,tumblr_naksxseedC1t2twpuo1_250,51394,2 11211,FRAMEQA50411,frog,what is jumping up trying to catch an animal?,tumblr_ng1jgl7aMz1slj978o1_400,95139,0 11212,FRAMEQA12967,beer,what is the man talking and drinking?,tumblr_n9p8n1ZBv51txwzheo1_250,23084,0 11213,FRAMEQA17856,two,how many blonde people are dancing in the back of a car?,tumblr_nbgkzeADl51rpsnyjo1_250,3928,1 11214,FRAMEQA31650,two,how many men are smiling?,tumblr_nq7kptWdUh1txx0lfo1_500,62133,1 11215,FRAMEQA38546,black,what is the color of the jacket?,tumblr_nk0daewIku1qhhc4qo1_500,72486,2 11216,FRAMEQA11520,white,what is the color of the shirt?,tumblr_ncu4rpEvUP1qkqucao1_400,66552,2 11217,FRAMEQA39577,car,what is racing down the track?,tumblr_ngiqj7Yelt1qfqktro1_400,60770,0 11218,FRAMEQA26203,red,what is the color of the flower?,tumblr_nbx8q1KV9e1rwdmvno1_500,26083,2 11219,FRAMEQA29108,two,how many girls are talking and laughing while wearing head bands?,tumblr_njs6zrrNmC1qimid5o1_250,4029,1 11220,FRAMEQA35923,room,where are two people and one of them is moving around?,tumblr_ncizcaTsv91ry3jfko1_500,75527,3 11221,FRAMEQA11613,robot,what chases the man backwards behind a man talking?,tumblr_nco9msTfTi1qhtk98o1_400,71235,0 11222,FRAMEQA20255,brown,what is the color of the hair?,tumblr_nrdt2dtPYV1r859g3o1_250,10783,2 11223,FRAMEQA18400,beakers,what does the hand move from their case?,tumblr_nrebnpJfWQ1qcr3i7o1_400,15722,0 11224,FRAMEQA14447,two,how many men are standing on the stage?,tumblr_noecied66C1rujq2co1_500,15003,1 11225,FRAMEQA335,red,what is the color of the woman?,tumblr_nhjz5qZoly1sq0o5eo1_250,78583,2 11226,FRAMEQA35083,guitar,what is the girl in a hat singing and playing?,tumblr_n8v8orVsL81rqn31vo1_250,73123,0 11227,FRAMEQA4873,dance,what is the man doing and his cat tries to jump on him?,tumblr_n8qidhSx5p1slwpo8o1_400,21388,0 11228,FRAMEQA41634,two,how many men have cream on their faces?,tumblr_njy2ahhYsH1u3y1g4o1_250,69520,1 11229,FRAMEQA24556,two,how many men are outside fighting on concrete?,tumblr_nim1nvt1em1sqlieso1_400,93077,1 11230,FRAMEQA15930,tortoise,what is running along the floor?,tumblr_nba4pcH1vc1slj978o1_400,14475,0 11231,FRAMEQA35587,blower,what is the cat using?,tumblr_ncizfxCBrD1tk8jwao1_400,60971,0 11232,FRAMEQA37179,pants,"what is the woman running , and another woman is running in black shorts?",tumblr_nb3lneXQNe1qi5ldlo1_500,58974,0 11233,FRAMEQA47870,two,how many people are kissing each other here?,tumblr_njm9ophE741t7an45o1_500,76762,1 11234,FRAMEQA8924,gray,what is the color of the shirt?,tumblr_nq3c2iYlDB1uycnk7o1_400,10289,2 11235,FRAMEQA46153,two,how many women together one is stroking her long hair?,tumblr_nc2rxyDWRp1sbow0fo1_500,95622,1 11236,FRAMEQA36193,mike,what is the man with tattoos on his hands holding?,tumblr_nfuw7qwfzm1sjedcoo1_250,234,0 11237,FRAMEQA14414,black,what is the color of the woman?,tumblr_nqx9eiAV6R1tfs6x6o1_250,67714,2 11238,FRAMEQA32303,marks,what does the black car leave?,tumblr_npaw4iQKzd1u6iefyo1_500,76767,0 11239,FRAMEQA34781,blue,what is the color of the hat?,tumblr_nhcw0xEiow1rmtwl3o1_250,9050,2 11240,FRAMEQA45464,two,how many men hugged each other as a greeting?,tumblr_nogkhlzgRK1uvi76ao1_500,62375,1 11241,FRAMEQA20086,cat,what pushes the black cat away with its back feet?,tumblr_n9j6u0SS061ri0wzfo1_400,39368,0 11242,FRAMEQA32969,black,what is the color of the color?,tumblr_nc1h818Si01tlk1ano1_250,7880,2 11243,FRAMEQA29653,keys,what are laying on top of the counter top?,tumblr_n980oaEVwU1t9r6nmo1_1280,36035,0 11244,FRAMEQA3145,spaceship,what is flying over an ocean or another large body of water?,tumblr_nf0rsx4U7o1tqwtb6o1_400,36945,0 11245,FRAMEQA22320,cigarette,what is the smiling woman holding?,tumblr_ndbpfsFRRF1rcl5ljo1_500,48746,0 11246,FRAMEQA11811,three,how many young man in red hats and outfits are singing?,tumblr_nl1flazV921remizro1_400,21549,1 11247,FRAMEQA10596,one,how many person rides does there 's a slope on a snowboard?,tumblr_nimutq2SO61tjd11mo1_500,75088,1 11248,FRAMEQA9973,balloon,what is wind blowing away?,tumblr_nf5479yc0v1suhp97o1_500,59776,0 11249,FRAMEQA42973,mirror,where did the woman stand looking?,tumblr_nakixrREyk1sq4i6bo1_400,58594,3 11250,FRAMEQA28057,cat,what is enduring an attack from a puppy?,tumblr_nejxcpZ7Tn1tbo2gbo1_400,48764,0 11251,FRAMEQA12523,two,how many singers with microphones in their hands are waving their arms?,tumblr_ng476zEkYt1s7qa4ao1_500,99952,1 11252,FRAMEQA27640,two,how many boys use their hands to drum against their thighs?,tumblr_nr9zjlheTF1tua54co1_400,62561,1 11253,FRAMEQA46839,bird,what is catching the fish right from the water?,tumblr_ng4pc6U2ib1rmvdlro1_400,31969,0 11254,FRAMEQA17741,three,how many men are celebrating and joking around together?,tumblr_nk5tob8U6W1rsdx8zo1_250,36538,1 11255,FRAMEQA29806,white,what is the color of the dog?,tumblr_nfxhsp8ug21s6zpepo1_400,68620,2 11256,FRAMEQA23914,jacket,what does the woman open?,tumblr_nr4vryXuiR1u9o6qbo1_400,19008,0 11257,FRAMEQA20930,white,what is the color of the girl?,tumblr_ndz0m09qvM1qmy2v2o1_400,49927,2 11258,FRAMEQA20204,two,how many animal is playing so cute in the room?,tumblr_naeyc6yQWy1tahfdeo1_250,56593,1 11259,FRAMEQA42018,door,what is the woman opening?,tumblr_nhxrp43ATC1u7mpzto1_500,83466,0 11260,FRAMEQA43159,green,what is the color of the object?,tumblr_nrf04cgRUC1ub19xmo1_400,52346,2 11261,FRAMEQA15309,hallway,where is the young man walking?,tumblr_nb1j3muZiy1sn085so1_400,81036,3 11262,FRAMEQA7710,headphones,what is the boy with bright blue eyes wearing?,tumblr_nkyrftUORo1u86zz3o1_250,21675,0 11263,FRAMEQA21334,red,what is the color of the jumper?,tumblr_njnpzo4UG21t41q8xo1_400,29838,2 11264,FRAMEQA30771,white,what is the color of the man?,tumblr_nfaseo5Cku1txtsyso1_500,80753,2 11265,FRAMEQA44951,two,"how many shirtless men are walking outside together , when one man lays the other man down?",tumblr_naj9smLJW61tb2khbo1_250,46323,1 11266,FRAMEQA37824,black,what is the color of the people?,tumblr_n9vh2js6zv1t1j5ogo1_250,44032,2 11267,FRAMEQA48174,elephant,what is struggling to walk with larger elephants?,tumblr_n922rsMb261te2f6lo1_400,82171,0 11268,FRAMEQA11930,two,how many men greet each other with a hand shake?,tumblr_nflzmwpuPQ1tigbm3o1_400,59344,1 11269,FRAMEQA31432,green,what is the color of the motorbike?,tumblr_nk6tq0KVmP1tx8mn0o1_400,78271,2 11270,FRAMEQA22208,car,what is slowly turning the corner on a wet race track?,tumblr_nee7hlohYU1tx8mn0o1_400,52719,0 11271,FRAMEQA43452,two,"how many people in a horse costume , are dancing on a stage while the crowd cheers?",tumblr_nfbs4h5k8N1u38l69o1_400,31651,1 11272,FRAMEQA48628,car,what is trying to pass each other?,tumblr_ndkajbX6dP1tx8mn0o1_400,78352,0 11273,FRAMEQA51546,white,what is the color of the headphones?,tumblr_mzrateYSFB1qii5pwo3_r1_400,35362,2 11274,FRAMEQA1482,car,what is speed along a city street?,tumblr_nf0n8ksRhS1u25ovvo1_400,63631,0 11275,FRAMEQA26610,guitar,what is the boy with red hair sitting in a chair and playing?,tumblr_nculypGc871u0x3uvo1_500,69278,0 11276,FRAMEQA49431,brown,what is the color of the couch?,tumblr_nbreirpFfv1qdxmh0o1_400,80306,2 11277,FRAMEQA43096,blue,what is the color of the shirt?,tumblr_nnjptfMtGh1u83xiro1_500,40820,2 11278,FRAMEQA45482,black,what is the color of the outfit?,tumblr_n9i5995JjC1tefuq0o1_250,10779,2 11279,FRAMEQA24722,bomb,what is the boy performing?,tumblr_n9hseziTAg1rk979lo1_250,4192,0 11280,FRAMEQA10276,white,what is the color of the van?,tumblr_n9cbjlJbp01tf6zmyo1_250,1305,2 11281,FRAMEQA36724,computer,what is the boy using and wearing headphones?,tumblr_ne4kuuZpVa1rlngqxo1_400,62540,0 11282,FRAMEQA9578,one,how many man is playing with another mans shirt?,tumblr_ndt9ct6TaS1th7zg4o1_250,1843,1 11283,FRAMEQA9490,two,how many men walk on stage?,tumblr_nc7ghkx0rA1r91wsno1_500,88364,1 11284,FRAMEQA37070,cigarette,what is the man in black sweater smoking?,tumblr_nemtylU1ek1sspq5qo1_250,32816,0 11285,FRAMEQA2331,shirt,what is the young man in black dancing and lifting up?,tumblr_necxqcJTa91tfeeomo1_250,2075,0 11286,FRAMEQA17823,cigarette,what is the guy with the blond hair and dark eyebrows smoking?,tumblr_nrb0jsciFl1rutckfo1_400,42380,0 11287,FRAMEQA27644,two,how many men are fake boxing at each other?,tumblr_nhkxskmh3h1rlakuxo1_500,95997,1 11288,FRAMEQA44707,car,"where are the guys , they start to head bang?",tumblr_nkh1k0vBMX1thjunio1_400,60945,3 11289,FRAMEQA6629,two,"how many men are dancing inside of the car , then one blows confetti into the air?",tumblr_nnzz2eyFYT1tvo8x5o1_500,60863,1 11290,FRAMEQA19446,ball,what is the man spinning?,tumblr_n8pwmrX2ZE1tfhnexo1_400,93372,0 11291,FRAMEQA6004,two,how many girls is this image of dancing together?,tumblr_njwb3012Rt1tdkk34o1_250,41613,1 11292,FRAMEQA17790,white,what is the color of the shoes?,tumblr_n9yargKVPA1ra5tilo1_500,88389,2 11293,FRAMEQA14474,two,how many soldiers are speaking watched by other ones?,tumblr_nfyqaiUM971u4n9a8o1_400,48748,1 11294,FRAMEQA29467,two,how many people are fighting each other in a parking lot?,tumblr_ndfxdnLORb1rmy96xo1_500,97235,1 11295,FRAMEQA31569,stairs,what is the young man rapping and climbing?,tumblr_nfmdmzflNl1qdpugqo1_400,82072,0 11296,FRAMEQA45178,chair,"where is the guy on stage , sitting down , when someone else steps up and spins the chair around?",tumblr_nepesrn0pb1r44co8o1_250,19831,3 11297,FRAMEQA11800,microphone,where is the young man singing?,tumblr_nb8hdf8Ks61s8gc8po1_500,49426,3 11298,FRAMEQA9782,red,what is the color of the lips?,tumblr_ngkwncNAQg1u323uto1_500,80350,2 11299,FRAMEQA40366,black,what is the color of the everyone?,tumblr_nf5yquethl1rcl2ewo1_1280,82834,2 11300,FRAMEQA5540,black,what is the color of the man?,tumblr_njavyfLo1J1u9268ao1_400,9220,2 11301,FRAMEQA23295,black,what is the color of the skateboarder?,tumblr_ne9afdIiWg1qk3bmno1_400,63845,2 11302,FRAMEQA31514,house,what is sitting in the snow outside?,tumblr_nfux46GbgX1snu2seo1_400,919,0 11303,FRAMEQA34092,sunglasses,what is the young man wearing and keeping a finger to his mouth?,tumblr_ng4wp3CmCr1u54jjao1_500,86239,0 11304,FRAMEQA20220,blue,what is the color of the jacket?,tumblr_njzf9iYaNE1tul4jlo1_400,20807,2 11305,FRAMEQA27746,white,what is the color of the hose?,tumblr_nfsrf7PNZs1qe2thio1_500,98734,2 11306,FRAMEQA13587,dog,what is the woman eating and waving at someone?,tumblr_n8q38bvjRB1tg6xino1_250,77367,0 11307,FRAMEQA3662,black,what is the color of the sweater?,tumblr_nc8w0sTSKh1t85yovo1_400,33613,2 11308,FRAMEQA5730,cigarette,what did the guy speak and two woman lit with a giant lighter behind him?,tumblr_njy95umIRd1qddljdo1_400,32086,0 11309,FRAMEQA23198,hat,what is the man wearing and yelling at something?,tumblr_nin616fTBW1qzxjijo1_400,61330,0 11310,FRAMEQA11823,dog,what is the guy in a black dew rag holding while running and screaming?,tumblr_nbrmv0Ds3t1tc97obo1_500,71433,0 11311,FRAMEQA23518,cat,what is the cat chasing?,tumblr_nk3tu3h9Yz1u1v0pco1_400,88816,0 11312,FRAMEQA29671,black,what is the color of the suite?,tumblr_nfipaisUIE1sqsp7io1_500,71739,2 11313,FRAMEQA36614,car,what are two cars driving and starts to burn?,tumblr_nri0fojp0G1tx8mn0o1_400,55938,0 11314,FRAMEQA15108,puppets,what are dancing and the guy grabs one of their horns?,tumblr_nhvxbzwyrx1sgtg01o1_250,3132,0 11315,FRAMEQA47695,one,how many man is falling down?,tumblr_ndywttSMPx1tsspsco6_500,44970,1 11316,FRAMEQA15871,two,how many boxers is this image of fighting each other?,tumblr_nkjd7fSoIl1tgkdkbo1_400,38290,1 11317,FRAMEQA9269,horse,what does there 's running down a path in mountains?,tumblr_nhlvobrJMp1tln8qzo1_400,65403,0 11318,FRAMEQA40503,stars,what are entertainment being interviews by a FRAMEQAorter?,tumblr_nbuxofDUaP1trlo5to1_400,48690,0 11319,FRAMEQA47586,two,how many girls are hugging right on the stage?,tumblr_naaxsqAV0Y1sy6d0no1_500,96124,1 11320,FRAMEQA9583,cars,what are going around the racetrack when one car goes off into the dirt?,tumblr_nivsjccx9w1r05qsbo1_400,68322,0 11321,FRAMEQA11629,orange,what is the color of the jacket?,tumblr_nf2hv8gSF11tkxs3fo1_400,28460,2 11322,FRAMEQA15935,black,what is the color of the men?,tumblr_nabrq7LYQP1qhkvg5o1_500,72763,2 11323,FRAMEQA52564,two,how many young men are fooling around in the room?,tumblr_nh1j8nYj1F1smwbflo1_400,29663,1 11324,FRAMEQA43069,black,what is the color of the shirt?,tumblr_njq76iN8qX1u594gko1_500,48685,2 11325,FRAMEQA34397,garage,what is the white car entering?,tumblr_n88tfbzgHU1rhy09eo1_500,92569,0 11326,FRAMEQA13289,one,how many man is singing?,tumblr_ncr076Dwdg1u09s33o1_500,60275,1 11327,FRAMEQA5979,cat,what is sitting on the chair at a table playing with a candle?,tumblr_nc28ihKPGx1slwrsuo1_400,34010,0 11328,FRAMEQA29463,guitar,what is the person with pink hair playing to an audience?,tumblr_njb09bg4Jd1r82feqo1_400,38632,0 11329,FRAMEQA6896,black,what is the color of the shirt?,tumblr_nbfz1vhvmt1t6ksnpo2_500,70786,2 11330,FRAMEQA34137,drink,what is the man sitting at a piano is having?,tumblr_ndtmkqevLp1r8ymulo1_500,70778,0 11331,FRAMEQA7375,black,what is the color of the guy?,tumblr_n9uzodf3Kx1srbyoyo1_400,77918,2 11332,FRAMEQA9890,shark,what is swimming through the water with ease?,tumblr_nhbze7q65N1s6zpepo1_500,65465,0 11333,FRAMEQA38172,pig,what is surfboarding with cameras all around it?,tumblr_npwsjxjEwY1tpg4boo1_500,80906,0 11334,FRAMEQA39380,guitar,what is two people playing?,tumblr_ncl72mqPLe1rvltxro1_500,23929,0 11335,FRAMEQA47598,closet,where is the kitty cat climbing up bars?,tumblr_nh2j9ov5zN1u4v3ypo1_250,155,3 11336,FRAMEQA21391,two,how many men are staring intently at nothing?,tumblr_ne4cexoiPR1ste7mro1_r1_500,67029,1 11337,FRAMEQA49755,cat,what is chasing another cat through the door?,tumblr_nk6z38GkkR1tmbbaro1_400,80311,0 11338,FRAMEQA7254,two,how many orange color machines are fighting with swords?,tumblr_nesls65ifv1qj1s5io1_400,80347,1 11339,FRAMEQA39457,blue,what is the color of the outfit?,tumblr_nd12nuiWSa1tuatvvo1_500,45592,2 11340,FRAMEQA34641,cigarette,what is the dirty man smoking?,tumblr_nhdd5izFsK1s9tznyo1_400,84073,0 11341,FRAMEQA19158,room,where is the girl turn off her head?,tumblr_ncxr8vpXlj1tlstgdo1_400,94305,3 11342,FRAMEQA42257,blue,what is the color of the jacket?,tumblr_nkoqajrYQm1t0cf9qo1_500,89144,2 11343,FRAMEQA37442,two,how many people are eating ice cream together and kissing?,tumblr_ni103vj3Vu1u86d86o1_500,96163,1 11344,FRAMEQA2828,two,how many rodents are sitting on top of a circular object?,tumblr_n8lnh1FJTf1tgkdkbo1_500,38863,1 11345,FRAMEQA36821,blue,what is the color of the t-shirt?,tumblr_nebsgpCK4u1u1j0hao1_400,42507,2 11346,FRAMEQA3174,black,what is the color of the man?,tumblr_necxqcJTa91tfeeomo1_250,2075,2 11347,FRAMEQA14607,car,where is the person driving and shifting from the second to third gear?,tumblr_nrlmnuI9q01ti9lxjo1_500,71165,3 11348,FRAMEQA38413,red,what is the color of the shirt?,tumblr_nhlfwt2Wjg1rs94oxo1_400,35289,2 11349,FRAMEQA30918,horse,what is racing across some open countryside?,tumblr_ndlmvfdO8l1tidcnvo1_400,64293,0 11350,FRAMEQA2619,white,what is the color of the tiger?,tumblr_nk4h904IAw1r8zm0oo1_500,39874,2 11351,FRAMEQA41291,car,what is running sees the person with long hair and runs away?,tumblr_ne35uinLzV1tdjuqvo1_500,49418,0 11352,FRAMEQA41560,cat,what stretches its legs on a couch?,tumblr_nby8fzSw431tkpzw0o1_400,80393,0 11353,FRAMEQA32536,microphone,what is the woman holding and walking down a stage?,tumblr_n9rl19t03X1tiyrq0o1_400,65717,0 11354,FRAMEQA30028,four,how many boys are posing with funny expressions?,tumblr_n9629yoi9z1tb9kmwo1_250,49574,1 11355,FRAMEQA21835,cat,what is playing with the helicopter toy in a room?,tumblr_naeiiukOaI1qzm0hso1_400,76103,0 11356,FRAMEQA8819,dress,what is the woman modeling on a stage?,tumblr_njvhzh2Nrp1u2bd00o1_400,32001,0 11357,FRAMEQA40342,black,what is the color of the hat?,tumblr_ncep6g3gEo1tik3sgo1_500,99919,2 11358,FRAMEQA32014,black,what is the color of the hat?,tumblr_net9q3fbJj1rxd60qo1_250,38852,2 11359,FRAMEQA9712,drums,what is the rock performer using?,tumblr_nf8rs94sSj1tcot63o1_250,13953,0 11360,FRAMEQA5403,brown,what is the color of the hair?,tumblr_ng7veio2xj1siy4hto1_400,26556,2 11361,FRAMEQA52085,coat,what is the young man eating food and wearing?,tumblr_nffzhaqPyk1tkoeqqo1_500,95407,0 11362,FRAMEQA18174,green,what is the color of the peppers?,tumblr_na7eo8eENh1r3vh84o1_400,58711,2 11363,FRAMEQA22009,noodles,what is the man eating with chop sticks?,tumblr_n9ok1dVbHM1tbg9d2o1_400,96916,0 11364,FRAMEQA31221,two,how many women are fighting each other in a room?,tumblr_nb3arfcvho1tunar3o1_250,4217,1 11365,FRAMEQA45206,purple,what is the color of the shirt?,tumblr_np6excSfZc1uuxd1yo1_500,54545,2 11366,FRAMEQA39663,lemon,what is the boy in a sweater holding?,tumblr_nh02lkJR1E1rit4woo1_400,58244,0 11367,FRAMEQA23460,two,how many men fall out of an air plane toward the ground?,tumblr_n977ivF2qU1two872o1_500,55789,1 11368,FRAMEQA4945,two,how many people are holding each others hands?,tumblr_nc7o2jI7dC1tztcuxo1_500,91868,1 11369,FRAMEQA896,car,what is driving down the track with a blown out tire?,tumblr_n9066tnq0A1tx8mn0o1_400,78618,0 11370,FRAMEQA27902,orange,what is the color of the juice?,tumblr_nowzu5MZZg1s3att3o1_250,14921,2 11371,FRAMEQA31325,tire,what flies out from under the big rig truck on the road?,tumblr_nk3iivXYey1u7lrdno1_500,91155,0 11372,FRAMEQA23720,star,what is putting the piece of cake into his mouth?,tumblr_no67m1t7ja1qa1uxao1_500,52522,0 11373,FRAMEQA41575,two,how many men frolic and then give the hug?,tumblr_n9vuv0Bgll1ticpqdo1_400,57264,1 11374,FRAMEQA4456,six,how many guys are in the group and sitting down?,tumblr_niw1j3KkFZ1u4enpoo1_400,62893,1 11375,FRAMEQA23219,white,what is the color of the shirt?,tumblr_nqvrqo2xmn1u9okrxo1_400,28927,2 11376,FRAMEQA51904,one,how many young man rubs his head on another man 's head?,tumblr_ndgusgkUT91s2ufpuo1_400,32559,1 11377,FRAMEQA40475,cat,what is sitting in the window and them jumps out onto a table?,tumblr_nbadfkbZvN1tl0ko9o1_400,38032,0 11378,FRAMEQA33530,black,what is the color of the top?,tumblr_nafziwG2uz1tvfoj7o1_400,17593,2 11379,FRAMEQA18282,driver,what loses control of his vehicle and crashes?,tumblr_ndob2pt0931tx8mn0o1_400,52735,0 11380,FRAMEQA36460,bus,what is speeding out of control and onlookers flee?,tumblr_nl1o37byzo1tkso41o1_400,43357,0 11381,FRAMEQA526,hall,where is the girl with black suit walking?,tumblr_nfnu4rW2T61u4xw0zo1_500,100584,3 11382,FRAMEQA6811,car,where is the girl moving backwards in the seat?,tumblr_nhezpoGPlg1s71nvbo1_500,68103,3 11383,FRAMEQA52590,white,what is the color of the pair?,tumblr_nc8gz0W3pf1qfnf9jo1_400,96220,2 11384,FRAMEQA41799,gray,what is the color of the t-shirt?,tumblr_n8x3efkZCT1sjz75oo1_250,437,2 11385,FRAMEQA50894,black,what is the color of the glasses?,tumblr_nci4k1DWAs1tqbb2vo1_500,87912,2 11386,FRAMEQA29561,cars,what are the boy and his dad racing and the man does a wheelie and goes fast?,tumblr_ng27qnu3bo1slj978o1_400,49266,0 11387,FRAMEQA24935,black,what is the color of the hat?,tumblr_nk79qfELqE1un13f6o1_250,45651,2 11388,FRAMEQA43361,two,how many women are sitting in front of a fiFRAMEQAlace?,tumblr_nkoxdqiJJs1tq4wu3o8_400,77075,1 11389,FRAMEQA31106,two,how many women in tutus are doing ballet?,tumblr_nknr9xW0hU1u922jno2_400,78072,1 11390,FRAMEQA6380,two,how many young males are talking to each other on the subway?,tumblr_nbgriqXFec1slj978o1_500,25195,1 11391,FRAMEQA41439,horse,what does the crowd watch running in a race?,tumblr_nl2bhazRt01u1nko6o1_400,28705,0 11392,FRAMEQA46749,clothes,"what is the woman , wearing , is sitting and doing something with her foot?",tumblr_nauhia4ADE1tfni3oo1_400,21503,0 11393,FRAMEQA7899,pants,what did the man touch?,tumblr_napv6maUYc1tj33i6o1_250,6173,0 11394,FRAMEQA46109,guitars,what are two guitarists playing together?,tumblr_niml4vDdxa1s43pimo1_500,87715,0 11395,FRAMEQA14610,dandelion,what is blown and the seeds fly into the air?,tumblr_nrjkkdYkM51qdbvc2o1_400,77320,0 11396,FRAMEQA13081,door,"what was opening while the man holding a lighting sword , and two men with lighting swords want to fight with him?",tumblr_nnv3paZgju1tqq823o1_500,96962,0 11397,FRAMEQA41547,cat,what runs around on his hind legs punching his paws?,tumblr_niq18pqr9L1s6zpepo1_400,28033,0 11398,FRAMEQA7377,two,how many men are talking to each other outside?,tumblr_nb46i1oubh1ttls4yo1_500,100705,1 11399,FRAMEQA14690,blue,what is the color of the wall?,tumblr_newajqyvYD1u3qnsjo1_250,10392,2 11400,FRAMEQA35756,car,what is driving steadily on the racetrack?,tumblr_nbhh5j3uCN1tx8mn0o1_400,52689,0 11401,FRAMEQA45267,guitar,what is this man with a blue shirt playing with other musician?,tumblr_nr7jp1slnJ1u978z2o2_400,7617,0 11402,FRAMEQA24212,car,what wheel is turning?,tumblr_ni2mhm38YD1qlsp57o1_400,2508,0 11403,FRAMEQA20702,black,what is the color of the dress?,tumblr_npn2byJFVG1tupttuo1_400,40704,2 11404,FRAMEQA49886,paw,what did the cat put on a hand and the hand petted the cat?,tumblr_ngio6fsQ8p1ssgyoro1_400,2019,0 11405,FRAMEQA16353,hoop,where are three boys bouncing on a trampoline and one jumps high and gets caught?,tumblr_nipn2lx2R71slj978o1_250,41152,3 11406,FRAMEQA9227,treat,what is the tiny turtle slowly eating?,tumblr_now3qv2rty1tgouwlo1_400,15794,0 11407,FRAMEQA38614,violin,what is charlie chan playing in front of a wall?,tumblr_nhknb9MuDd1qldwwwo1_500,22557,0 11408,FRAMEQA16756,red,what is the color of the dress?,tumblr_nk2cngaaiL1u3a0b7o1_250,48058,2 11409,FRAMEQA30659,two,how many men are kissing each other with passion?,tumblr_nkguu7jdxL1u7a4duo1_250,47966,1 11410,FRAMEQA9874,cat,what is rubbing up against some furniture?,tumblr_niv7ivzNmF1u5d5ryo1_400,1080,0 11411,FRAMEQA6154,two,how many boys are walking and jumping down the hallway?,tumblr_ndjfgohCV31tl8x1eo2_r1_1280,90198,1 11412,FRAMEQA30291,show,what is the finger tapping on a smart phone?,tumblr_nh8tesencv1td9z91o1_500,33614,0 11413,FRAMEQA21743,lamb,what is the baby in a white coat petting?,tumblr_nplgqa6TnF1su25v0o1_400,30934,0 11414,FRAMEQA15749,red,what is the color of the shirt?,tumblr_nakkmkV6lL1tfkgsfo1_400,66429,2 11415,FRAMEQA46013,brown,what is the color of the monkey?,tumblr_nd9es8cEtL1tc95klo1_400,77527,2 11416,FRAMEQA50453,case,what is the young lady running and exercising up?,tumblr_nb9jajxPqO1tsl8rno1_500,93397,0 11417,FRAMEQA9773,black,what is the color of the dressing?,tumblr_nr6wu26Pe01qfqngko1_500,48462,2 11418,FRAMEQA7163,star,what is posing for the commercial?,tumblr_nfildjZ3hy1u4rk62o1_400,1174,0 11419,FRAMEQA25254,red,what is the color of the shirt?,tumblr_nbj9u6QUIW1scotfso1_400,73287,2 11420,FRAMEQA15473,room,where do the man and woman dance come close together and the woman puts her arm around the man?,tumblr_nqihojL37Q1uzpx6mo1_400,98795,3 11421,FRAMEQA52353,ways,what does the man in a suit and glasses grin and looks?,tumblr_nq3soiLVEk1u07ae6o1_500,39247,0 11422,FRAMEQA26535,blue,what is the color of the headband?,tumblr_na2chhNUDG1teh2mbo1_250,14788,2 11423,FRAMEQA19554,room,where are two people dancing?,tumblr_nimsybmFR21tznw84o1_500,63365,3 11424,FRAMEQA43294,purple,what is the color of the top?,tumblr_njvi0ekA7l1u2vc96o1_500,89821,2 11425,FRAMEQA11318,hat,"what do five men sit in a semi-circle , and one man throws?",tumblr_nq7ys7Apj91t8s5t0o1_540,81259,0 11426,FRAMEQA45553,jacket,what is the man adjusting and staring?,tumblr_nefradf58s1tu3ue8o1_500,4218,0 11427,FRAMEQA42427,one,how many boy leans on the other and he pushes him off him?,tumblr_nfsqc8tKtS1rifrfzo1_500,96966,1 11428,FRAMEQA5082,white,what is the color of the shirt?,tumblr_nrjubnErtE1sh0wvgo1_500,14412,2 11429,FRAMEQA23565,two,how many men is wearing black one is dancing while the other is watching?,tumblr_n9wgflENh81sv54yao1_400,57145,1 11430,FRAMEQA35849,picture,what does the person show to a man who then looks away?,tumblr_na6ei1nNR71roqbapo1_250,15332,0 11431,FRAMEQA5596,white,what is the color of the shirt?,tumblr_n810pw2rtt1qgii4so1_1280,84268,2 11432,FRAMEQA44101,ship,what is anchored in the dark port?,tumblr_n9h6h9k9W21tiq723o1_500,67239,0 11433,FRAMEQA43735,gum,what are two girls chewing and blowing bubbles?,tumblr_nlzvsya1WR1tfjrdno1_400,31404,0 11434,FRAMEQA24756,pick,what does the person flick on stage?,tumblr_natpusTxxx1svos5ho1_400,21396,0 11435,FRAMEQA34202,black,what is the color of the shirt?,tumblr_ncfopjN3QK1ts7wbfo1_400,26965,2 11436,FRAMEQA46220,skateboard,what is the person riding and jumping?,tumblr_njtixhepsm1unru25o1_250,42754,0 11437,FRAMEQA4228,cat,what is not moving and sees the rat?,tumblr_nkoj4fayWP1slj978o1_400,38644,0 11438,FRAMEQA29967,cat,what is jumping up to catch something and falling short?,tumblr_nfcd09xbXE1tdjuqvo1_400,16291,0 11439,FRAMEQA28051,gray,what is the color of the carpet?,tumblr_nhsh3e8Cgq1r57bhho1_250,16521,2 11440,FRAMEQA34483,brown,what is the color of the dog?,tumblr_nov6tduqos1uvi3rjo1_400,54480,2 11441,FRAMEQA21580,black,what is the color of the shirt?,tumblr_ncs3cjeort1t08ok1o1_250,15340,2 11442,FRAMEQA3714,dog,what is trying to walk across the floor in shoes?,tumblr_ncxqb2uFP81thmv2qo1_400,20689,0 11443,FRAMEQA12189,white,what is the color of the girl?,tumblr_n99x6g6den1tcuqh9o1_400,29633,2 11444,FRAMEQA37979,hospital,where does the sleepy man move his head around?,tumblr_nkgro0kics1qd0g7ro1_500,83225,3 11445,FRAMEQA20697,four,how many people are sitting down acting awkwardly together?,tumblr_nad41z4HEZ1to42nqo1_400,75495,1 11446,FRAMEQA25201,red,what is the color of the shirts?,tumblr_nhccwxLB7g1tigieto1_400,76338,2 11447,FRAMEQA2858,dress,what is slowly dropping on the floor from her body?,tumblr_nk0917Mw5V1rdvsr8o1_400,2455,0 11448,FRAMEQA28509,two,how many men are having the conversation in front of other men?,tumblr_nmidu9wwmu1urnbuuo1_250,84514,1 11449,FRAMEQA30036,dog,what is sleeping and is suddenly awoken?,tumblr_nck4we3kAN1r4phxao1_400,91647,0 11450,FRAMEQA1695,room,where does the man bite his fingernail?,tumblr_nhs46ihJuj1tdi3uyo1_250,47083,3 11451,FRAMEQA23335,cars,what raced and one drove off the road?,tumblr_nhbrltf1I31tx8mn0o1_400,86057,0 11452,FRAMEQA47064,fox,what is jumping and lands head first in snow?,tumblr_nr0urrvsyq1uaoej6o1_400,45806,0 11453,FRAMEQA25221,birds,what are fluttering around on the ground?,tumblr_ncdd1skPib1tkdu95o1_400,41753,0 11454,FRAMEQA33075,hedgehog,what relaxes quietly in the cool bath?,tumblr_nela0aVJkV1si2peso1_250,53402,0 11455,FRAMEQA13264,white,what is the color of the man?,tumblr_ndyvgluqf71tm0es2o1_250,12524,2 11456,FRAMEQA32941,car,what is slowly driving down an incline?,tumblr_nfflcuX90m1u25ovvo1_400,63666,0 11457,FRAMEQA49976,two,how many young girls are in the room and hug each other?,tumblr_n9larxUxd71sofft2o1_400,79022,1 11458,FRAMEQA22098,two,how many young boys are standing pretending to perform?,tumblr_ndxno3rMQC1svbli1o1_250,49641,1 11459,FRAMEQA35300,four,how many kids are playing near with the fountain?,tumblr_npswm4R1kB1tk15f6o1_400,57097,1 11460,FRAMEQA10829,two,how many men are shaking there shoulders and dancing?,tumblr_naq9tgb73C1retsn4o1_500,96116,1 11461,FRAMEQA27841,gray,what is the color of the top?,tumblr_n3j8kw9PbL1qdafpto1_400,22923,2 11462,FRAMEQA33303,bar,where is the young lady with her midriff showing singing?,tumblr_ne7p2lftRW1tjvogto1_250,8468,3 11463,FRAMEQA188,cape,what is the dog wearing and riding a scooter?,tumblr_ndwfzx0hL91tgkdkbo1_250,5671,0 11464,FRAMEQA35410,red,what is the color of the shirt?,tumblr_nq27vij7191thx0k0o1_400,63903,2 11465,FRAMEQA44385,cat,what is twisting its head around?,tumblr_nq3jron62A1tyncywo1_400,16529,0 11466,FRAMEQA19476,two,how many boys make peace signs and kiss faces together?,tumblr_na2k21xDU51shtuz8o1_250,73231,1 11467,FRAMEQA32194,studio,where is the pop star practicing?,tumblr_n8xcp5NcIC1twhn6do1_250,2334,3 11468,FRAMEQA4093,two,how many woman are walking out into the crowd of people?,tumblr_nfeov630X81u426jpo1_500,47850,1 11469,FRAMEQA31355,black,what is the color of the vest?,tumblr_n9lq4ikwls1r77rooo1_400,60423,2 11470,FRAMEQA41555,doors,what is the woman locking before leaving?,tumblr_npwa03FGmo1u677wzo1_250,53373,0 11471,FRAMEQA37519,three,how many people are dancing together in the restroom?,tumblr_nh9h3dC7Wb1u6bdo9o1_400,54185,1 11472,FRAMEQA36899,white,what is the color of the shirt?,tumblr_nfpaboUJNR1slw55qo1_400,84104,2 11473,FRAMEQA9877,dog,what is wearing a costume spins in circles?,tumblr_nkus9cARZm1r2m293o1_400,26709,0 11474,FRAMEQA22655,street,where is the child petting a sheep?,tumblr_nplgqa6TnF1su25v0o1_400,30934,3 11475,FRAMEQA43210,room,where are two guys looking and smiling?,tumblr_nhyzo769BX1shllpeo1_400,29481,3 11476,FRAMEQA52876,black,what is the color of the clothing?,tumblr_n9okijMTqj1s8thapo1_r1_500,5420,2 11477,FRAMEQA35285,cat,what is playing with the lid on a wastebasket that spins when it hits it?,tumblr_nb6bp2wUl71t7jda2o1_400,71135,0 11478,FRAMEQA43024,two,how many little puppies is the young guy holding?,tumblr_nqeuudSoy11trx1hko1_250,3071,1 11479,FRAMEQA52143,black,what is the color of the hair?,tumblr_nezyi4aEPA1srpb9po1_400,32511,2 11480,FRAMEQA25441,two,how many men are hugging each other in front of everyone?,tumblr_npt6nbZPNj1uy69cso1_400,5816,1 11481,FRAMEQA51133,product,what is the man showing?,tumblr_nmazfr4MNp1uot1e7o1_400,60043,0 11482,FRAMEQA51506,two,how many friends got scared by looking at something?,tumblr_ndp39weJj11u1b7jeo1_500,58650,1 11483,FRAMEQA30956,two,how many men are sitting in theater seats and talking?,tumblr_nb1cdezKJt1t3jhfvo1_500,100401,1 11484,FRAMEQA47046,black,what is the color of the suit?,tumblr_nfnu4rW2T61u4xw0zo1_500,100584,2 11485,FRAMEQA17171,white,what is the color of the man?,tumblr_n9k8xzjz181tiur4yo1_250,12182,2 11486,FRAMEQA39503,two,how many men talk speak spoke to each other?,tumblr_n9y6tmnuQd1r5japgo1_400,66394,1 11487,FRAMEQA28122,circles,what is the soccer player running around a yellow pole?,tumblr_na6zm9GLDK1t7h8o0o1_400,43353,0 11488,FRAMEQA50009,clothes,"what is the woman wearing black lingerie , is throwing around the room?",tumblr_nezlsfnXwi1tsbbfxo1_500,54331,0 11489,FRAMEQA11519,horses,"what pull the carriage , the clothes of the people catch on fire?",tumblr_nie80c2ukN1tfcayso1_250,21047,0 11490,FRAMEQA4291,two,how many men try to high five each other but miss?,tumblr_nct52sYe2r1u0sv5po1_500,95749,1 11491,FRAMEQA6186,black,what is the color of the hair?,tumblr_nhfvae7keh1sqaamoo1_400,100739,2 11492,FRAMEQA11553,car,what is driving really fast past the gray car?,tumblr_ncqiquZx9u1tx8mn0o1_400,65286,0 11493,FRAMEQA30695,two,how many women is the man riding on a shopping cart?,tumblr_nbzkb341bX1s71nvbo1_500,60746,1 11494,FRAMEQA36811,black,what is the color of the man?,tumblr_nraf01MZL21scwzvxo1_400,101671,2 11495,FRAMEQA2524,guitar,what is the man playing and dancing around?,tumblr_ndpbhmZK6q1s4kr0bo1_250,5831,0 11496,FRAMEQA22837,three,"how many guys is standing next to each other , all , have the same type of hair style?",tumblr_naopjceBs01rar35do1_250,5248,1 11497,FRAMEQA8624,whip,what does the man in a blue suit use?,tumblr_n9w54dvKdg1tfn460o1_400,98240,0 11498,FRAMEQA4078,pictures,what are flashing of the woman with different hair cuts?,tumblr_n9ydahG9zK1s0sqneo1_250,5358,0 11499,FRAMEQA15321,hose,what is the man spraying at a woman?,tumblr_naxqoiyeD01tjjhllo1_250,23433,0 11500,FRAMEQA50460,mop,what is actually the dog that gets up and runs away?,tumblr_nk3riuu61q1rojld8o1_400,79952,0 11501,FRAMEQA24971,pool,where is blue and bubbly water flowing?,tumblr_no5pqqrOds1ttyovyo1_400,64567,3 11502,FRAMEQA4727,two,how many men are running away from something outside?,tumblr_mp8iegKjoB1qdu68lo1_400,55380,1 11503,FRAMEQA38741,car,what is making the lot of dust on a track?,tumblr_ngqsseRkvH1tr5tuwo1_400,50815,0 11504,FRAMEQA6116,two,how many guys are fighting in the boxing ring?,tumblr_na3w2fhfSx1srbyoyo1_250,18118,1 11505,FRAMEQA48530,yellow,what is the color of the suit?,tumblr_nokwt1ZuPX1u5ha5do1_500,8577,2 11506,FRAMEQA43938,wall,what is the half naked man bouncing off?,tumblr_n90myeHKcB1tu5l8qo1_400,20056,0 11507,FRAMEQA32269,cup,what is the blond haired woman wearing sunglasses is holding?,tumblr_nepj4rr5Sb1sht3fmo1_250,86270,0 11508,FRAMEQA51700,chair,where is an ugly person laughing sitting?,tumblr_new6k2kNOi1tltnjco1_250,24004,3 11509,FRAMEQA29562,two,how many fingers does the man hold up as he walks by?,tumblr_nb70faMADo1tgwlf5o1_250,20159,1 11510,FRAMEQA15429,puppy,what is falling asleep on the floor?,tumblr_n9jzweddcj1qdifbfo1_500,75198,0 11511,FRAMEQA49640,two,how many men are walking together in the park?,tumblr_na05z08opP1ry1g5io1_400,17330,1 11512,FRAMEQA23494,black,what is the color of the fabric?,tumblr_nkux12i23M1tirdpvo1_400,96809,2 11513,FRAMEQA32522,white,what is the color of the guy?,tumblr_ndigz7kBSR1tmmz91o1_400,33034,2 11514,FRAMEQA41324,yellow,what is the color of the dress?,tumblr_nk90y1wTdg1sbompmo1_500,58621,2 11515,FRAMEQA28681,hat,what is the girl fixing and blows a kiss?,tumblr_npjbm8zizK1txgyxzo1_500,83843,0 11516,FRAMEQA9954,two,how many women with weapons are battling in a snowstorm?,tumblr_noise3JpIW1toq0iso1_540,63270,1 11517,FRAMEQA9702,black,what is the color of the shirt?,tumblr_n9siszhG1N1r6pekco1_250,9861,2 11518,FRAMEQA10625,bicycles,what are multiple people riding attached by rope?,tumblr_n949p2g4GF1tabm5fo1_500,67205,0 11519,FRAMEQA25475,two,how many girls dressed in black are singing?,tumblr_nkg5leY4e21sof15vo1_500,21834,1 11520,FRAMEQA44969,three,how many men are trying to listen to the fourth man?,tumblr_nk91vx1EMO1su33lco1_400,63155,1 11521,FRAMEQA24970,white,what is the color of the dresses?,tumblr_nd6ycl8B3R1snixmzo1_400,68918,2 11522,FRAMEQA10656,purple,what is the color of the dress?,tumblr_nkrqa6Swem1qzialoo1_400,29128,2 11523,FRAMEQA38818,one,how many guy is singing?,tumblr_na7olvZztW1rm1lhro1_400,63697,1 11524,FRAMEQA30860,cat,what gets startled at the person moving their finger sending the cat flying backwards?,tumblr_nb2oh2bSvK1tkpzw0o1_400,25145,0 11525,FRAMEQA35809,bow,"what is the man with curly hair and a beard holding , pointing his fingers and nodding?",tumblr_nh3sxvWBpy1rl2njso1_400,77703,0 11526,FRAMEQA38355,brown,what is the color of the hair?,tumblr_nac7r67PCz1ttrqwxo1_250,6638,2 11527,FRAMEQA2486,kitten,what was joyfully playing with its toy?,tumblr_ndoxkiR46w1trz2w3o1_400,4494,0 11528,FRAMEQA14243,three,how many men are standing together and laughing at something?,tumblr_nqokih6riY1uxohh1o1_540,91616,1 11529,FRAMEQA10823,brown,what is the color of the jacket?,tumblr_nb31tqaZAR1s5i7h6o1_400,53948,2 11530,FRAMEQA45579,two,how many men are laughing wildly at something?,tumblr_n9wjgv1CW51tj0g8do1_500,88546,1 11531,FRAMEQA18611,cat,what is playing with the black tube?,tumblr_npuazcydPD1te94myo1_400,4445,0 11532,FRAMEQA25811,car,what does the large turn?,tumblr_n6g89evyVF1qhzavho1_r1_400,47650,0 11533,FRAMEQA34828,cigarette,what is the brunette woman holding burning?,tumblr_ndbpfsFRRF1rcl5ljo1_500,48746,0 11534,FRAMEQA23551,berries,what are rolling in the white bowl?,tumblr_ncb4rh5u6V1tw6u06o1_500,74315,0 11535,FRAMEQA8956,shirt,what is the boy taking off?,tumblr_ncn6j1KjeH1rsm126o1_400,36191,0 11536,FRAMEQA17462,kitten,what falls asleep and falls over?,tumblr_nbn45jzc2V1tlc96ro1_400,25609,0 11537,FRAMEQA9530,glasses,what is the man tuning his guitar and adjusting?,tumblr_n94c9kD6eu1s0wfo1o1_250,40368,0 11538,FRAMEQA39152,red,what is the color of the gauge?,tumblr_nb5pvb0KQb1sov9opo1_500,62369,2 11539,FRAMEQA29360,red,what is the color of the hair?,tumblr_nantbhxigw1tk3g8co1_250,12385,2 11540,FRAMEQA43659,knives,what is the man throwing at a woman who is catching them with objects on her body?,tumblr_n9ousdC7yv1tdjuqvo1_400,21043,0 11541,FRAMEQA381,ball,what is the young man slapping around a field?,tumblr_nek08cNEiL1tf7kp3o1_500,76449,0 11542,FRAMEQA33844,two,how many guys is this image of in white onstage hugging each other?,tumblr_nbg3cseAxD1s47dt7o1_500,62539,1 11543,FRAMEQA8145,bedroom,where are two boys talking?,tumblr_nqzsp7tuTy1uuiij8o1_400,51083,3 11544,FRAMEQA5755,car,what is going down the street?,tumblr_nese2hcXc11qjf4txo1_400,35306,0 11545,FRAMEQA52749,cap,what is skateboarding outside?,tumblr_nhes8bjYq11qa469zo1_500,34401,0 11546,FRAMEQA38640,bed,where is the woman touching man fingers?,tumblr_nd8ynvxlL51s36lx4o1_400,70194,3 11547,FRAMEQA15599,cat,what is jumping and landing on the table?,tumblr_nbadfkbZvN1tl0ko9o1_400,38032,0 11548,FRAMEQA32779,guitar,what is the man in a red jacket playing?,tumblr_ney2qpWl7D1tv2q4bo1_400,2296,0 11549,FRAMEQA38276,two,how many young men are looking happy and hugging each other?,tumblr_ndmv9f3Q8s1sren05o1_400,63952,1 11550,FRAMEQA41118,room,what is being dark and messy?,tumblr_nh38wnGye51u0b9foo1_400,17026,0 11551,FRAMEQA51341,purple,what is the color of the pants?,tumblr_nfic3pugLo1td28fxo1_400,71858,2 11552,FRAMEQA31584,cat,what is chasing another cat that is stuck in a tube?,tumblr_nk3tu3h9Yz1u1v0pco1_400,88816,0 11553,FRAMEQA21059,knife,what is the young man covered in blood and stabbing into something?,tumblr_nocyhdRycP1uof4kpo1_500,80671,0 11554,FRAMEQA43125,gum,what is the man chewing and staring at something?,tumblr_nqwpdlp7BJ1s7096po1_250,25849,0 11555,FRAMEQA21414,chair,what is the man folding up?,tumblr_n9sg25gN3a1tihd4fo1_400,51977,0 11556,FRAMEQA47334,monkey,what is running and suddenly jumps towards the window?,tumblr_nr45wgSapM1uaujqao1_400,64873,0 11557,FRAMEQA22464,trick,what is the snowboarder doing?,tumblr_nkwevdfwXv1toyl9ro1_400,58540,0 11558,FRAMEQA52242,cat,what plays with the christmas tree and runs away?,tumblr_ngmmjdC8aq1qznkspo1_500,62809,0 11559,FRAMEQA24936,blue,what is the color of the shirt?,tumblr_ncqher86Kc1tm761xo1_500,10949,2 11560,FRAMEQA32737,two,how many guys are making signs with their hands?,tumblr_nqb0w0uVAG1urxja6o1_500,92260,1 11561,FRAMEQA31759,cat,what is touching and smelling fish in water?,tumblr_n8hk45xsAu1tgetb4o1_400,66886,0 11562,FRAMEQA24997,two,how many people catch on fire as they are being pulled in a carriage?,tumblr_nie80c2ukN1tfcayso1_250,21047,1 11563,FRAMEQA33366,bags,what does the woman juggle?,tumblr_nh5z1ajZzd1rwipr5o1_r1_250,27736,0 11564,FRAMEQA34763,diver,what watches the giant school of fish?,tumblr_n9gg32YmTl1sjcycuo1_250,76819,0 11565,FRAMEQA4992,red,what is the color of the stains?,tumblr_ng6x4iCSrt1slj978o1_500,100805,2 11566,FRAMEQA47449,two,how many guys are kissing?,tumblr_nayz3cf94f1sei79bo1_250,81513,1 11567,FRAMEQA8886,two,how many men strike poses as they stand on stage?,tumblr_ngy2thk5VL1rn16efo1_r1_500,71393,1 11568,FRAMEQA21817,dress,what is the female modeling?,tumblr_npsvyvbQxZ1un9274o1_400,3926,0 11569,FRAMEQA47531,machines,what are fighting with swords?,tumblr_nesls65ifv1qj1s5io1_400,80347,0 11570,FRAMEQA46080,door,what closes on the couple who are hugging?,tumblr_nda4kvB8V61tyxziho1_400,28707,0 11571,FRAMEQA42054,one,how many basketball player is throwing the ball?,tumblr_nabzy4yOL81tsxh57o1_400,50858,1 11572,FRAMEQA22765,red,what is the color of the hats?,tumblr_nl1flazV921remizro1_400,21549,2 11573,FRAMEQA25496,black,what is the color of the man?,tumblr_ngsve40Qa31u659t0o1_500,91454,2 11574,FRAMEQA33552,seeds,what is the dandelion blown and fly into the air?,tumblr_nrjkkdYkM51qdbvc2o1_400,77320,0 11575,FRAMEQA37860,two,how many men raise their arms in a crowd of people?,tumblr_ng80p46gmE1s7t4vjo1_500,80718,1 11576,FRAMEQA22604,car,what drifts around the corner while smoke comes from the rear of it?,tumblr_nb920sP7nG1s1g1ilo1_250,56169,0 11577,FRAMEQA31174,symbol,what is the man with tattoos giving and smiling?,tumblr_nao9dwfbWL1tbsc6ko1_500,70936,0 11578,FRAMEQA48311,black,what is the color of the hand?,tumblr_ncsnnp2mZV1qad928o1_500,46559,2 11579,FRAMEQA18969,two,how many women are kicking up their feet?,tumblr_nacqaixw0M1r2atcqo1_500,55027,1 11580,FRAMEQA37031,three,how many guys are dancing in funny outfits in a room?,tumblr_najlujyscz1slwrsuo1_400,16170,1 11581,FRAMEQA20380,black,what is the color of the robes?,tumblr_nmz3n9aYMe1rxmp17o1_500,97109,2 11582,FRAMEQA49302,window,what is the guy smashing and another guy tackles him?,tumblr_nk90zeyIdh1uoc58ao1_400,39438,0 11583,FRAMEQA39428,masks,what are guys wearing and pulling guns out?,tumblr_nduzc4QNa11tmn3zuo1_400,64006,0 11584,FRAMEQA38958,black,what is the color of the man?,tumblr_nf2a32jNU21qmmwe0o1_400,21143,2 11585,FRAMEQA12299,pool,what is the boy jumping over and he succeeded?,tumblr_nfvppbIQiw1rpqr23o4_400,57235,0 11586,FRAMEQA29185,shirt,what is the man wearing and talking and touches his shirt?,tumblr_nb0u7kYz9i1tclavqo1_500,61843,0 11587,FRAMEQA30636,red,what is the color of the head?,tumblr_n96x96RDMq1tp3pcko1_250,14441,2 11588,FRAMEQA25054,two,how many women are sitting on the couch?,tumblr_nk4x9lSIXA1u2d9ago1_400,20625,1 11589,FRAMEQA12084,room,where is the young lady twirling a hula hoop?,tumblr_nco7huA9Kl1tqcnjko1_250,767,3 11590,FRAMEQA15266,microphone,what is the man wearing a white shirt is holding and pointing his hand?,tumblr_naji9ftfcU1t6ksnpo1_500,71380,0 11591,FRAMEQA46620,bubbles,what is the young lady twirling and blowing?,tumblr_npfzvj5CkX1uxxr4no4_250,14198,0 11592,FRAMEQA8672,one,how many hand squeezes cheeks of girl looking downward?,tumblr_n9i8833G521rev877o1_400,16839,1 11593,FRAMEQA5907,gray,what is the color of the shirt?,tumblr_n8ybrqylkm1qeysfio1_250,38438,2 11594,FRAMEQA24762,blue,what is the color of the shirt?,tumblr_narpfhWzYa1rg2esto1_400,76717,2 11595,FRAMEQA37212,shirt,what did teacher rip off in from of the class?,tumblr_nfpnf4qkMy1qb2rmxo1_500,48957,0 11596,FRAMEQA21042,layer,what is the guy wearing and running through a concert scenery?,tumblr_ne1396EcA01tmcao5o1_250,39497,0 11597,FRAMEQA9385,door,"what is the girl carrying a backpack , opens?",tumblr_npw9cplisH1tlq8yzo1_400,62362,0 11598,FRAMEQA48964,red,what is the color of the cape?,tumblr_nfgdyxzRvB1szpk2oo1_400,42451,2 11599,FRAMEQA51991,black,what is the color of the shirt?,tumblr_nexi5fkr5g1u3y1flo1_250,71481,2 11600,FRAMEQA26611,bird,what is looking around from the top of a tall fence?,tumblr_nclxudn5MX1qa4y0oo1_500,67749,0 11601,FRAMEQA49512,three,how many young men stand in the row with lights behind them?,tumblr_nhx2a5Ldzl1sdbrm9o1_400,85456,1 11602,FRAMEQA11218,star,what is playing the guitar at a concert?,tumblr_n2juodBtsG1ttwpt3o1_500,49533,0 11603,FRAMEQA27731,makeup,what is the man getting done by another man?,tumblr_ndlwghHVNJ1s230fzo1_400,59672,0 11604,FRAMEQA21265,suit,what is the man with dark hair wearing?,tumblr_np0hkt5rBF1utqnppo1_250,8586,0 11605,FRAMEQA34005,butt,what is the person dancing and shaking?,tumblr_n9h420xOX31tq2eeqo1_250,17860,0 11606,FRAMEQA7285,cat,what is hitting the glass to fall down?,tumblr_njxyq4bNFX1tzhkoao1_400,11308,0 11607,FRAMEQA13460,white,what is the color of the shirt?,tumblr_no6e8o2eIn1us4ateo1_250,3088,2 11608,FRAMEQA1093,hallway,what does the woman in a black and yellow dress run down filled with people?,tumblr_nbt16ngn2U1qazha9o1_250,2744,0 11609,FRAMEQA40277,two,"how many men with bloody faces look up at a man with a lot of facial hair , dark sunglasses , and cigar?",tumblr_naw2njzOfu1qj7i8oo1_500,100013,1 11610,FRAMEQA50852,black,what is the color of the hair?,tumblr_nporswU0401tjg911o1_400,5796,2 11611,FRAMEQA45488,red,what is the color of the shirt?,tumblr_nkjji1VI2G1up3tmfo1_250,6810,2 11612,FRAMEQA41772,beer,what is being poured into the large glass?,tumblr_n9q548ju7C1ry661do1_500,97092,0 11613,FRAMEQA17938,cat,what signs that it wants food?,tumblr_naidmtIv1H1twoe5do1_400,21499,0 11614,FRAMEQA33442,cat,what is the person picking up?,tumblr_na9wv5Byt01qdd57go1_250,1884,0 11615,FRAMEQA4021,two,how many boys are shaking hands?,tumblr_nb50ccDCSC1swjcnao1_500,61180,1 11616,FRAMEQA48489,car,what is making drifts on the road?,tumblr_n8vnsgagJw1to3k6do1_400,70408,0 11617,FRAMEQA49379,ball,what is the man with a red uniform kicking into a narrow pipe?,tumblr_nctwxv3Cf61sdoqnro1_500,63764,0 11618,FRAMEQA42055,dog,what is the girl holding?,tumblr_nhm8rleyTk1u333yco2_400,5846,0 11619,FRAMEQA33172,one,how many man plays the guitar while another swings his arms up and down?,tumblr_nrc8g830sV1uaj6rjo1_500,44334,1 11620,FRAMEQA50782,four,how many women wave at the police officer that is driving by them?,tumblr_nqvlitw9nW1t5ygabo1_400,64594,1 11621,FRAMEQA22732,box,what is the man holding and making a face?,tumblr_nbcj908B4V1tkjhdko1_500,93957,0 11622,FRAMEQA17238,white,what is the color of the shirt?,tumblr_nkhl5dwMf31u594gko1_500,79599,2 11623,FRAMEQA3810,one,how many girl sings?,tumblr_ndr4dwtJGP1rug7q0o1_400,79204,1 11624,FRAMEQA1881,sunglasses,what do three young males wear?,tumblr_nfx7tgZGUP1rm1lhro1_500,101620,0 11625,FRAMEQA51366,gun,what is the man grimacing and pointing?,tumblr_nqx3qys4VS1u6psyao1_500,97313,0 11626,FRAMEQA43716,blue,what is the color of the eyes?,tumblr_n9k459LShp1s3zealo4_500,15951,2 11627,FRAMEQA10484,one,how many guy shifted his weight and the other nods?,tumblr_noxumlPA691rsagqio1_500,95345,1 11628,FRAMEQA42345,two,how many women are looking at one another and winking?,tumblr_na17ppTVng1tn4oroo1_500,89162,1 11629,FRAMEQA9407,four,how many women are performing the song in strange dresses?,tumblr_nkxhmpEcZq1scd4jmo1_250,29223,1 11630,FRAMEQA26083,bat,"what is using , the man smashes the head of a zombie?",tumblr_nj722iKfJY1u7hpo7o1_500,90202,0 11631,FRAMEQA45471,green,what is the color of the frog?,tumblr_npfa926ftF1rhl4f0o1_400,55339,2 11632,FRAMEQA28316,two,how many asian people are kissing on the couch?,tumblr_nnwm6670bP1u9hh04o1_250,47106,1 11633,FRAMEQA20298,room,where is the lady looking around?,tumblr_ne30n9fzMt1tpkltho1_250,46325,3 11634,FRAMEQA36536,car,what creates the dust trail on a racing track?,tumblr_nahga9eNFz1tx8mn0o1_400,78232,0 11635,FRAMEQA13107,kitten,what looks around on the couch?,tumblr_nhomuemFfD1u684yco1_250,13612,0 11636,FRAMEQA46614,bed,where are the young man being seductive?,tumblr_npi7llyav41up6kr2o1_500,81766,3 11637,FRAMEQA24872,two,how many teams are playing during the soccer game?,tumblr_nc20yxAKBE1tx5rbeo1_400,87101,1 11638,FRAMEQA49150,car,what is spinning in the middle of the street?,tumblr_n8vnsgagJw1to3k6do1_400,70408,0 11639,FRAMEQA12312,airplanes,what are flying through the air above the clouds?,tumblr_nnq4tzM7M51urqm0mo1_500,85138,0 11640,FRAMEQA35449,black,what is the color of the hair?,tumblr_na47kyP5yR1td4yjbo1_400,33749,2 11641,FRAMEQA18580,three,how many men have an argument walking in circles?,tumblr_nc5jq9YHHz1twj3jvo1_500,61007,1 11642,FRAMEQA40173,microphone,where is the man wearing a checked shirt is singing?,tumblr_n9qweb8xcu1rgyxevo1_500,73505,3 11643,FRAMEQA35176,dog,what is the person shaking and the dog looks happy?,tumblr_njwg4tiDgC1u8eq3no1_400,66173,0 11644,FRAMEQA21148,two,how many dark haired men are on stage and one turns around?,tumblr_nh9ue79ebR1u63zbwo1_500,50957,1 11645,FRAMEQA31068,extinguisher,what does the fight take place in a bar and a woman sets off?,tumblr_ne02dp4Y5i1tuz9pno1_400,65686,0 11646,FRAMEQA5925,brown,what is the color of the hair?,tumblr_ngjjy8pmWW1u5slc8o1_250,3675,2 11647,FRAMEQA4633,office,where did the person sit banging his head on the desk?,tumblr_ncham5ElY21qf1m5po1_500,96057,3 11648,FRAMEQA484,gray,what is the color of the hair?,tumblr_ng6frm8Fbw1r784vko1_500,58029,2 11649,FRAMEQA16221,rabbit,what is hopping out of the box?,tumblr_nf9fj4glx61swtmgzo1_500,46702,0 11650,FRAMEQA26880,two,how many girls are moving their hands and making faces?,tumblr_nbp324pRIa1tlea9go1_400,33695,1 11651,FRAMEQA12339,figurine,what is the white man with green shirt showing?,tumblr_naha579HaB1tggah7o1_500,91224,0 11652,FRAMEQA13728,two,how many people right beside each other are hugging?,tumblr_n97akoLBDo1th2vkqo1_250,53718,1 11653,FRAMEQA30313,five,how many people are standing in the woods with smoke blowing around them?,tumblr_neupg2MUNK1qc41a1o1_1280,94292,1 11654,FRAMEQA46001,cigarette,what do the man with curly hair hold up to his mouth?,tumblr_ndsj3v5btb1rpjuouo1_500,79446,0 11655,FRAMEQA968,black,what is the color of the jacket?,tumblr_n9wsn7ML9d1s6f9ago1_500,48397,2 11656,FRAMEQA18209,crotch,what is the woman touching?,tumblr_n94qcs8lKc1t0ud6co1_250,21812,0 11657,FRAMEQA2078,room,where is the person with dark hair talking?,tumblr_nde5uo58TS1sspm20o1_250,61432,3 11658,FRAMEQA44242,green,what is the color of the coat?,tumblr_nd3wo9RJe91tkhxdko1_250,68397,2 11659,FRAMEQA489,booth,where are two women kissing each other?,tumblr_na0a8uaKRe1tt3g2no1_500,86790,3 11660,FRAMEQA31473,black,what is the color of the guy?,tumblr_nnkrgy251a1uupqewo1_400,25013,2 11661,FRAMEQA41638,black,what is the color of the t-shirt?,tumblr_ngftrkcgR31tmfj24o1_500,94690,2 11662,FRAMEQA16953,dog,what is laying down and looking very sad?,tumblr_nhifdvtMsa1tjhld9o1_250,21175,0 11663,FRAMEQA32384,two,how many men in jackets are standing outside talking?,tumblr_n97ow9Scv41thj3xko1_250,2346,1 11664,FRAMEQA24123,two,how many men are kissing while sitting on the beach?,tumblr_nkk5d5OAP41u6hnr3o1_500,72515,1 11665,FRAMEQA24092,blue,what is the color of the sweater?,tumblr_nqx9n4IgAS1u5hcmdo1_250,53507,2 11666,FRAMEQA10070,black,what is the color of the jacket?,tumblr_napv6maUYc1tj33i6o1_250,6173,2 11667,FRAMEQA44097,shirt,what is the beautiful man taking off?,tumblr_nfpnf4qkMy1qb2rmxo1_500,48957,0 11668,FRAMEQA40500,bottle,what is the man holding and laughing?,tumblr_nk8jxhpgcP1tuo9b6o1_250,9982,0 11669,FRAMEQA30935,yellow,what is the color of the shirt?,tumblr_nr4ajn7m2V1u6qd8so1_250,17909,2 11670,FRAMEQA37098,cigarette,what is the woman lighting and relaxing?,tumblr_nog086mhQn1rngtxpo1_250,49718,0 11671,FRAMEQA48916,two,how many young women are singing and dancing on stage?,tumblr_ne9ywnJtxX1t09iyco1_500,75498,1 11672,FRAMEQA7944,two,how many people is this giving each other a hug?,tumblr_n8s6um7qEO1sgwxtwo1_250,47783,1 11673,FRAMEQA51601,two,how many topless men are walking and one of them holding a t-shirt?,tumblr_n98uooxl0K1thiyb6o1_250,8297,1 11674,FRAMEQA44893,cat,what is golden color moving its two hind legs?,tumblr_n8x7oaXb1D1sj1td7o1_250,19037,0 11675,FRAMEQA38796,black,what is the color of the hair?,tumblr_ni0g2ztIwU1u2kzbjo2_400,31009,2 11676,FRAMEQA27232,black,what is the color of the man?,tumblr_ner3odH5Bw1ttanvco1_500,57189,2 11677,FRAMEQA31203,bear,what sits on the floor and waves at someone in a car?,tumblr_npdhumxlMs1sxvd87o1_250,27329,0 11678,FRAMEQA46904,two,how many men are joking and smiling?,tumblr_nfalpqnjBU1u43iqlo1_250,10355,1 11679,FRAMEQA44827,bat,what is the woman with long hair holding?,tumblr_npu3dmmwdW1srz1ujo1_250,12627,0 11680,FRAMEQA20363,car,what is driving down the road passing all the grass?,tumblr_nfflefXvpx1u25ovvo1_400,63605,0 11681,FRAMEQA7479,room,where is the guy with black suit smiling?,tumblr_nglj2fIAPt1tupygmo2_250,8258,3 11682,FRAMEQA22024,room,what is the girl talking to a man and then she and others enter?,tumblr_ndutr8mMuS1t6zdrfo1_500,54144,0 11683,FRAMEQA36438,two,how many people are skating down the runway?,tumblr_n8wvf0PAoC1tbg5yoo1_400,26483,1 11684,FRAMEQA51117,bed,where are two hot naked young ladies kissing each other?,tumblr_mkhcuwQp2k1rk3evro1_500,36906,3 11685,FRAMEQA19283,cat,what is licking the stuffed animal by his side?,tumblr_ncmnxtXMH81rd87k4o1_250,13409,0 11686,FRAMEQA2694,pigeon,what runs through a subway car and then exits when the doors open?,tumblr_ne9r1sfDAc1qzcbnmo1_250,6221,0 11687,FRAMEQA18678,one,how many young man has his arm around another young man?,tumblr_nfmnppGF0g1rer2fjo1_250,49663,1 11688,FRAMEQA45223,black,what is the color of the shirt?,tumblr_nh9zdtgglQ1stmsx9o1_500,101014,2 11689,FRAMEQA14489,two,how many people are standing in the pool then?,tumblr_nbuvcycrMb1tana87o1_250,78506,1 11690,FRAMEQA47003,two,how many policemen are chasing and hitting the blue toy?,tumblr_nad9ej0PCm1sk96t7o1_400,63718,1 11691,FRAMEQA31534,flower,what is the cake decorator making with icing?,tumblr_nk2y1oOWfv1sqefk3o1_400,29081,0 11692,FRAMEQA48276,two,how many guys are standing beside each other?,tumblr_n9xevvBCZJ1tj2evpo1_500,80161,1 11693,FRAMEQA7304,black,what is the color of the sweater?,tumblr_nhrwzi3knp1u7yxjso1_400,54436,2 11694,FRAMEQA7107,six,how many boys are sitting outside taking next to an inflated thing?,tumblr_niw1j3KkFZ1u4enpoo1_400,62893,1 11695,FRAMEQA15828,car,what is racing and coming close to another car?,tumblr_nhbn0vv8Gp1tx8mn0o1_400,86055,0 11696,FRAMEQA5922,black,what is the color of the hair?,tumblr_nknppk1M7C1reubyfo1_400,14791,2 11697,FRAMEQA40809,room,where is the young man in black dancing?,tumblr_nelgzg0Sl91r0oqh7o1_500,89347,3 11698,FRAMEQA15854,red,what is the color of the paint?,tumblr_no7shthCvP1smaq3so1_250,39670,2 11699,FRAMEQA11451,two,how many naked men are dancing around the girl?,tumblr_nl3wn81LHi1tqwtb6o1_500,41830,1 11700,FRAMEQA46598,black,what is the color of the man?,tumblr_nlfwbq8BFe1u9v1wso1_400,99384,2 11701,FRAMEQA5744,black,what is the color of the man?,tumblr_nktwdgssa71tx2uovo1_500,68659,2 11702,FRAMEQA3832,kittens,what are meowing in the box?,tumblr_nfarhcHDam1seb8aro1_400,65054,0 11703,FRAMEQA47359,black,what is the color of the man?,tumblr_ngarvs2Lgj1r7jjj1o1_400,76602,2 11704,FRAMEQA27802,cars,what do racing almost collide as one cuts in front of the other on the race track?,tumblr_ndkajbX6dP1tx8mn0o1_400,78352,0 11705,FRAMEQA19166,bed,where are the cat and dog cuddling?,tumblr_nelekc7qgX1rtcpyfo1_250,23195,3 11706,FRAMEQA33410,white,what is the color of the car?,tumblr_nkrf6t4Kcu1u9xj6to1_500,92709,2 11707,FRAMEQA2207,red,what is the color of the top?,tumblr_n9ucnlmCk51qzxorvo1_250,9249,2 11708,FRAMEQA19738,two,how many young men are singing and dancing on the stage?,tumblr_n9rb0b8mi11qfrgvko1_r2_500,62588,1 11709,FRAMEQA27815,one,how many woman shows her teeth turning her head?,tumblr_nfdd7kgA7W1te5p35o1_500,92347,1 11710,FRAMEQA11642,white,what is the color of the boy?,tumblr_noywdtPsqw1r1ivpuo4_r1_540,77384,2 11711,FRAMEQA5003,car,what is driving down the road?,tumblr_nephlhawUk1u25ovvo1_400,63440,0 11712,FRAMEQA40756,two,how many men parade around on stage as the lights flash?,tumblr_nem4qtJZ6l1tsn1ypo1_250,18215,1 11713,FRAMEQA2761,three,how many women are watching another woman make a face at them?,tumblr_nq7w1dJSJK1u83tleo1_400,44936,1 11714,FRAMEQA24020,two,how many teenagers sit together on the couch and play guitar together?,tumblr_nb51nnevsP1s4ytsyo1_250,14182,1 11715,FRAMEQA48926,black,what is the color of the cloth?,tumblr_namp6mWvlq1qminp2o1_250,47287,2 11716,FRAMEQA46881,blue,what is the color of the door?,tumblr_n9p1stcULz1t5ojzdo1_250,44121,2 11717,FRAMEQA23996,motorcycles,what are the people riding down the street?,tumblr_nq6iwlxWqF1uytabuo1_500,92224,0 11718,FRAMEQA40819,diver,what sees the mermaid in the water?,tumblr_nfpm0cJG551tvaskbo1_400,38252,0 11719,FRAMEQA52523,car,what weaves in and out of traffic?,tumblr_nfih1nAC1B1s71nvbo1_400,35092,0 11720,FRAMEQA23393,two,how many men play guitars and dance on a stage?,tumblr_n94fi690GZ1twfcheo1_400,60282,1 11721,FRAMEQA21903,guitar,what is the man holding and talking into a microphone?,tumblr_n9pnalnHNQ1rag67wo1_250,19296,0 11722,FRAMEQA48369,house,where are two people with short hair kissing?,tumblr_njyqloY3A31u3epwjo2_1280,78443,3 11723,FRAMEQA43812,black,what is the color of the hair?,tumblr_nbhxuhAG1X1tlrh1co1_250,51465,2 11724,FRAMEQA14413,panda,what is rolling around on the table?,tumblr_nrjj1i27sk1uv0y2ro1_250,74778,0 11725,FRAMEQA52686,two,how many men with ties around their heads share an embrace?,tumblr_nklltj6mj01u8ivvko1_500,58940,1 11726,FRAMEQA21125,white,what is the color of the dress?,tumblr_nj0h9gltwe1u9d8glo1_250,10748,2 11727,FRAMEQA12345,bath,where does the dog get a rubber ducky placed on his head?,tumblr_nqj7ahVNOh1uvie7bo1_400,32783,3 11728,FRAMEQA23823,black,what is the color of the clothing?,tumblr_nnymrk5szy1rjb18uo1_400,60695,2 11729,FRAMEQA14770,four,how many young girls with brown hair laugh and pose?,tumblr_nbfv8pOFQ91r3s7e9o1_400,4875,1 11730,FRAMEQA34320,phone,what is the boy holding up against a mirror as someone powders his face?,tumblr_ne0pdeFY8e1tm64iuo1_250,12836,0 11731,FRAMEQA34347,brown,what is the color of the hair?,tumblr_nknvtdW16O1tw43who3_400,45941,2 11732,FRAMEQA23677,cat,what jumps up on the ledge and crawls along it?,tumblr_ne5xnkmNbh1tk2ngvo1_400,53122,0 11733,FRAMEQA25072,blue,what is the color of the chair?,tumblr_n9bq3uQdab1tpa2reo1_250,3383,2 11734,FRAMEQA4392,white,what is the color of the shirt?,tumblr_nka9sbLti71scpgg5o1_250,14195,2 11735,FRAMEQA23686,shirt,what is man taking off?,tumblr_nfzjobYaWn1roqntto1_500,74967,0 11736,FRAMEQA29254,black,what is the color of the jacket?,tumblr_nr4vryXuiR1u9o6qbo1_400,19008,2 11737,FRAMEQA33134,ball,what is the guy kicking around on a field?,tumblr_nkxip620qs1sisr9ho1_400,51132,0 11738,FRAMEQA51602,blue,what is the color of the suit?,tumblr_nj0gp8UaPp1u9c93ao1_400,20380,2 11739,FRAMEQA10266,three,how many men are dancing around the fire in a barrel?,tumblr_nbouq51nPr1tkti7do1_500,44349,1 11740,FRAMEQA1597,white,what is the color of the powder?,tumblr_nadg9rtWQH1sp1enmo1_1280,82430,2 11741,FRAMEQA19797,three,how many flaming torches is the man juggling?,tumblr_ne8i29lmlc1rmnmfgo1_400,17150,1 11742,FRAMEQA33220,white,what is the color of the robot?,tumblr_nbtlpb4htq1sh1sffo1_500,49489,2 11743,FRAMEQA25138,one,how many man smiles at another whilst he adjusts the jacket he is wearing?,tumblr_nfiklnpmXO1u1axtzo1_250,9046,1 11744,FRAMEQA4232,road,what is the truck sliding down covered in snow?,tumblr_nhklv0Td991reseiyo1_1280,89497,0 11745,FRAMEQA24034,two,how many people are standing up from behind the sofa whilst adjusting their clothes to the surprise of those in front of the sofa?,tumblr_nfcozcs5xE1rfzipho1_400,32999,1 11746,FRAMEQA39112,two,how many men are outside talking at night?,tumblr_nk4spuzkLx1u3aa5ho1_500,99689,1 11747,FRAMEQA12950,shirt,what is the guy wearing white is taking off in front of the pope?,tumblr_ng2cffje8r1qjhqsyo1_400,37556,0 11748,FRAMEQA40128,cars,what are racing on the circuit?,tumblr_nql12tqr1p1unyhx2o1_400,66665,0 11749,FRAMEQA24879,black,what is the color of the top?,tumblr_nhqf4a6qnA1tgqqmdo1_400,67062,2 11750,FRAMEQA36763,gray,what is the color of the top?,tumblr_ncjevlOgWi1timtpio1_250,6507,2 11751,FRAMEQA39960,one,how many woman slaps another woman down with force?,tumblr_nnzxcjYq391rbpro7o1_500,96559,1 11752,FRAMEQA36075,black,what is the color of the suit?,tumblr_nejvvaXInx1rhrn01o1_250,21389,2 11753,FRAMEQA42156,rabbit,what comes out of her house to eat hay?,tumblr_nc45r8KiyO1tlzpnko1_250,16225,0 11754,FRAMEQA33571,lamb,what is jumping from wooden table?,tumblr_nevmlnaUJr1tdmffyo1_400,8464,0 11755,FRAMEQA28885,two,how many police officers hit an inflatable man with batons?,tumblr_nad9ej0PCm1sk96t7o1_400,63718,1 11756,FRAMEQA2531,blue,what is the color of the suit?,tumblr_njt7imnhX01u1pokno1_250,7022,2 11757,FRAMEQA38178,car,what is driving along the road?,tumblr_nev5jcwSOk1u25ovvo1_400,63427,0 11758,FRAMEQA46198,dog,what ran in and out of the cage and then stopped?,tumblr_nbspjswqQu1sz068fo1_250,39915,0 11759,FRAMEQA43073,guitar,what is the man playing and raising hand?,tumblr_nfi5dh4oIk1s4tqzto1_400,84280,0 11760,FRAMEQA44769,candles,what did the girl blow out?,tumblr_nkizal5yDC1thp5iao1_500,77884,0 11761,FRAMEQA26018,goat,what is sliding on the ice?,tumblr_nb4nq0GPvq1thdx2vo1_400,63940,0 11762,FRAMEQA31415,black,what is the color of the outfit?,tumblr_nc2723hhf91tj9d1zo1_250,38384,2 11763,FRAMEQA16174,window,"what is the woman , , looking out?",tumblr_nht4tfuwYb1u7gf1ao1_400,34973,0 11764,FRAMEQA20403,panda,what is holding onto the woman 's leg?,tumblr_nbz29i6Bom1thf1cyo1_250,85507,0 11765,FRAMEQA32689,black,what is the color of the hair?,tumblr_nf8xogFyv21rcxrido1_400,45115,2 11766,FRAMEQA20565,elephant,what is surrounded by two other elephants and is down on the ground and tries to get up but cant?,tumblr_ndty8uvoqn1sukgyxo1_400,57588,0 11767,FRAMEQA48828,car,what is running through the highway?,tumblr_nephlhawUk1u25ovvo1_400,63440,0 11768,FRAMEQA53013,white,what is the color of the shirt?,tumblr_n9w0jkCd3u1tx7bymo1_250,2037,2 11769,FRAMEQA19187,sword,what is the man taking?,tumblr_no1bw1YVhe1uv1oabo1_250,53184,0 11770,FRAMEQA49821,dog,what put its paw in mans hand then looked forward?,tumblr_nhymlqyEFX1s61ex7o1_250,77866,0 11771,FRAMEQA13880,purple,what is the color of the table?,tumblr_ndkfsb1dgm1tbnwqmo1_400,61016,2 11772,FRAMEQA30110,white,what is the color of the cream?,tumblr_nadg9rtWQH1sp1enmo1_1280,82430,2 11773,FRAMEQA47484,two,how many people are sticking their tongues out and nodding their heads?,tumblr_n9mdaySgUM1tzixe8o1_500,92239,1 11774,FRAMEQA3695,one,how many disabled man does this show in a wheelchair and another crossing and uncrossing his legs on a chair?,tumblr_nd1izlG0yA1s5p0j3o1_250,40740,1 11775,FRAMEQA50636,black,what is the color of the car?,tumblr_n94efhu6am1tfer95o1_500,72820,2 11776,FRAMEQA32801,one,how many guy is pushing another one on the field?,tumblr_nczb7etZbU1qehq1fo1_400,52238,1 11777,FRAMEQA21453,band,what is playing music on a stadium?,tumblr_nclkqg2v8l1td05izo1_500,57625,0 11778,FRAMEQA47991,cigarette,what is the young woman smoking while spinning?,tumblr_ncqa0vZplB1u02d5so1_400,51131,0 11779,FRAMEQA37160,two,how many men are cage fighting?,tumblr_nakmlyurfi1t0cxw9o1_400,87864,1 11780,FRAMEQA15119,hat,what do two men jump backward and one throws off?,tumblr_ndp39weJj11u1b7jeo1_500,58650,0 11781,FRAMEQA38933,group,what is performing at the concert?,tumblr_nqa2vmNmDX1up3l18o1_400,30927,0 11782,FRAMEQA35384,two,how many men are moving around near the waterfall?,tumblr_nnvy1kVUHL1utyjq6o1_400,32097,1 11783,FRAMEQA4516,street,where is the guy walking and holding a bag?,tumblr_nerwf18fKw1tav4r9o1_400,84123,3 11784,FRAMEQA786,brown,what is the color of the hair?,tumblr_nebu2j0h941rssvv3o1_400,30886,2 11785,FRAMEQA11045,shirt,what is the man feeling?,tumblr_nbmugnrlnQ1t1o9tno1_250,22614,0 11786,FRAMEQA26208,white,what is the color of the suit?,tumblr_nl16t6Re5g1qd4dijo1_500,54850,2 11787,FRAMEQA34356,gum,what is the man chewing and smiling to himself?,tumblr_ndy83rZ0La1ti4dkfo1_250,27240,0 11788,FRAMEQA5759,cape,what is the lady wearing with a hood?,tumblr_nc2j3elkE11ti5nreo1_250,26154,0 11789,FRAMEQA21624,black,what is the color of the car?,tumblr_n8i6t05H331rhy09eo1_500,70580,2 11790,FRAMEQA41746,turtle,what wiggles while water pour onto its back from a tap?,tumblr_ndq39cqvhJ1qhvk2yo1_400,7895,0 11791,FRAMEQA32728,green,what is the color of the bell?,tumblr_nbjbzfcduk1tv40swo1_400,65390,2 11792,FRAMEQA27748,red,what is the color of the top?,tumblr_nk6q01txXx1tgli1no1_400,64276,2 11793,FRAMEQA32991,two,how many men with minimal clothes on are snogging and getting intimate?,tumblr_neosawCPpL1u04u4bo1_250,32607,1 11794,FRAMEQA31337,elephant,what is sitting on another elephant as it tries to get up?,tumblr_nblkdlG0wb1qj5hh7o1_250,81080,0 11795,FRAMEQA25639,two,how many fingers is the man holding up at someone or something?,tumblr_ndc80srnP11r202reo1_500,86846,1 11796,FRAMEQA17466,rope,what is the dog removing from the bar?,tumblr_nbuzvzDFcu1tdjuqvo1_400,42452,0 11797,FRAMEQA34574,boat,what is releasing in the river by a van?,tumblr_nhbc8vzATx1s6zpepo1_400,87125,0 11798,FRAMEQA45057,ball,what is the soccer player dominating without letting it touch the ground?,tumblr_nopyj6DOCW1ryce90o1_250,6709,0 11799,FRAMEQA5405,car,what is racing down an empty street?,tumblr_nbo3fs3Gfn1qdfgy3o1_500,60504,0 11800,FRAMEQA52545,one,how many guy is taking another one to take a picture?,tumblr_nhladrdzci1qdmr5no1_250,51900,1 11801,FRAMEQA22510,kitten,what is the hand feeding with chopsticks with an arrow superimposed on the food?,tumblr_nhyvthzIw21txchtio1_500,92169,0 11802,FRAMEQA24486,machine,what is working on the man that is laying on the table?,tumblr_nd6mb94lBT1si3og9o1_500,89908,0 11803,FRAMEQA33779,two,how many boys are turning their heads to look at each other?,tumblr_nbolyqW2ZU1tj37deo1_400,74663,1 11804,FRAMEQA11621,dog,what is driving the car?,tumblr_ngtfbt9KZI1s71nvbo1_400,15351,0 11805,FRAMEQA18092,microphones,what are two men carrying and dancing on a stage?,tumblr_nd5rycDrcR1tf7kp3o1_500,84784,0 11806,FRAMEQA42118,red,what is the color of the hair?,tumblr_nll2l3AQAL1t8hlxao1_250,6690,2 11807,FRAMEQA6243,fish,what is he holding before letting it go?,tumblr_n8rex42OdN1rtdvdvo1_250,69293,0 11808,FRAMEQA27728,two,how many men is talking while one is staring down at the floor?,tumblr_nc2u4lDKeU1sbetrro1_400,81245,1 11809,FRAMEQA7665,two,how many women is facing each other clap and put hands on hips in unison while people watch?,tumblr_n93jmiVDRT1ruob34o1_250,67105,1 11810,FRAMEQA48392,two,how many girls is this image of hugging each other?,tumblr_npq0ldiScW1u3vl7fo1_400,14896,1 11811,FRAMEQA35292,paw,what is the small kitten licking while laying in the covers?,tumblr_nqaqp0wsgy1tpg4boo1_400,74024,0 11812,FRAMEQA27155,two,how many people are talking and laughing with each other?,tumblr_nlwpniNDnC1ti3vf1o1_250,23567,1 11813,FRAMEQA20936,white,what is the color of the shirt?,tumblr_nadr87nz2O1tjeyq6o1_250,11218,2 11814,FRAMEQA32868,blue,what is the color of the beanie?,tumblr_ni11njEHBX1u86jejo1_250,14186,2 11815,FRAMEQA26668,makeup,what is the man with blonde hair wearing and moving his lips?,tumblr_n9ojivgX6N1qedx60o2_500,96484,0 11816,FRAMEQA16820,pizza,what are two young boys with glasses eating?,tumblr_nfl2gcItVI1tl3ivmo1_500,95859,0 11817,FRAMEQA1187,t-shirt,what does the thin boy pull over his head?,tumblr_ncn6j1KjeH1rsm126o1_400,36191,0 11818,FRAMEQA44780,gray,what is the color of the car?,tumblr_nhdvlzako31tx8mn0o1_400,78335,2 11819,FRAMEQA52520,blue,what is the color of the cat?,tumblr_n9kkadLYfn1sva5i8o1_400,42914,2 11820,FRAMEQA45473,red,what is the color of the light?,tumblr_njy4j3aQmX1u3a0fpo1_500,74375,2 11821,FRAMEQA21046,three,how many girls put their fingers to their mouths and stick out their tongues?,tumblr_namuwpKydj1s5fsr0o1_250,11761,1 11822,FRAMEQA5370,black,what is the color of the shirt?,tumblr_nccngahQlq1sdbrm9o1_400,66360,2 11823,FRAMEQA5636,star,what is getting the crowd riled up?,tumblr_ncl5x8DW461rj8475o1_400,93891,0 11824,FRAMEQA22862,two,how many men sit in the restaurant looking at a third man?,tumblr_ndi35jWc6Z1tm6rguo1_250,47727,1 11825,FRAMEQA47913,cat,what is holding and biting its own tail?,tumblr_na8ztgwPRU1tj8blpo1_250,11564,0 11826,FRAMEQA21024,white,what is the color of the guy?,tumblr_nhc7yftJVr1u6ilnvo1_250,24220,2 11827,FRAMEQA47954,headphones,what is the woman wearing and singing into a microphone?,tumblr_nqzloujUkK1slqfugo1_400,81726,0 11828,FRAMEQA30332,makeup,what is smiling and resting her head on her fingers?,tumblr_n9mn3lwcbD1thlegdo1_500,95831,0 11829,FRAMEQA42847,blue,what is the color of the eyes?,tumblr_napklqSAmm1ti85ceo1_250,47076,2 11830,FRAMEQA36804,runway,what does the model strut down wearing a yellow maxi?,tumblr_nk90y1wTdg1sbompmo1_500,58621,0 11831,FRAMEQA16003,cup,what does the young woman then sip?,tumblr_nqxizm8Hzf1tjfka2o1_250,10219,0 11832,FRAMEQA5779,apple,what is the guy with very dark messy hair eating?,tumblr_nf2d03y10U1si6w6mo1_250,26952,0 11833,FRAMEQA5481,rabbit,what is jumping very swiftly on someone 's bed?,tumblr_nfndwo7hfa1t7an45o1_500,91769,0 11834,FRAMEQA40530,net,where is the soccer player scoring a goal?,tumblr_nakn71UZOA1tumc0bo1_400,66045,3 11835,FRAMEQA40750,blue,what is the color of the shirt?,tumblr_nazf9cN70h1qm87muo1_400,28852,2 11836,FRAMEQA35876,cat,what plays with the mouse on a quilt?,tumblr_nj9xu7hQBq1r7o668o1_400,50810,0 11837,FRAMEQA74,three,how many people are sitting on the sofa?,tumblr_nhddi06tLJ1r92ykmo1_400,33850,1 11838,FRAMEQA26649,two,how many men in suits rub against one another?,tumblr_na1p6dKyJo1rxixhso1_400,57923,1 11839,FRAMEQA40391,one,how many care spins out of control?,tumblr_nlzuoyTPM61tx8mn0o1_400,78642,1 11840,FRAMEQA21484,cat,what is tied up with the white dog and the cat is scared?,tumblr_n9dxxv9ONq1sk96t7o1_400,59286,0 11841,FRAMEQA49981,black,what is the color of the clothes?,tumblr_ndhdgtSZkm1s5kfneo1_400,63401,2 11842,FRAMEQA24768,white,what is the color of the dog?,tumblr_nbspjswqQu1sz068fo1_250,39915,2 11843,FRAMEQA4309,horse,what is running through the field with mountains in the back ground?,tumblr_nhlvobrJMp1tln8qzo1_400,65403,0 11844,FRAMEQA741,red,what is the color of the hat?,tumblr_niutzjybwA1u93r5no1_540,56321,2 11845,FRAMEQA25886,runway,what is the model walking down posing?,tumblr_nkgce65zHo1uomek3o1_400,52744,0 11846,FRAMEQA50071,two,how many lovers is having a nice conversation and love is in the air?,tumblr_niuspkh0pL1u8dv8eo1_250,35476,1 11847,FRAMEQA14079,two,how many rats does the person balance on their shoulder and arm?,tumblr_nguvutkldj1rs0i14o1_400,46819,1 11848,FRAMEQA36352,two,how many men turn to look at something?,tumblr_npb6eieHYv1uxot71o1_500,11924,1 11849,FRAMEQA52387,black,what is the color of the man?,tumblr_ngs1z8z7vt1svorzto1_500,93870,2 11850,FRAMEQA41370,dog,what is biting the man who bites the dog back?,tumblr_nfyndnYw1C1rmkebwo1_400,32270,0 11851,FRAMEQA37997,four,how many men are talking into the same microphone that one of them is holding?,tumblr_nkj5yl01mk1thirzao1_400,62405,1 11852,FRAMEQA14385,two,how many women with coiffed hair are talking to each other?,tumblr_n98w8z1TGU1ttpy61o1_250,98159,1 11853,FRAMEQA40782,drums,what is the man with no shirt playing?,tumblr_njwrume8cm1un7etzo1_400,67999,0 11854,FRAMEQA45839,red,what is the color of the hair?,tumblr_nb1drkOtbS1ruj6z8o1_500,60497,2 11855,FRAMEQA36531,cat,what scans his surroundings and twitches his ear?,tumblr_nq0vgpO4MV1u88jnvo1_250,46248,0 11856,FRAMEQA16841,black,what is the color of the mask?,tumblr_neyfy4CT4y1qbvx5uo1_400,1253,2 11857,FRAMEQA8053,car,what is the plane dropping from the sky?,tumblr_npq9jlIFaN1u1ogm0o1_1280,98065,0 11858,FRAMEQA44066,white,what is the color of the hat?,tumblr_nmvmkqaym01u12ezho1_400,97587,2 11859,FRAMEQA20557,brown,what is the color of the hair?,tumblr_na4ix0wmJO1tb9h1yo1_250,17658,2 11860,FRAMEQA40742,two,how many people are dancing in the room together?,tumblr_nek73cMum61tlbm9qo1_400,54344,1 11861,FRAMEQA43433,tie,what is the young bearded man wearing a dinner jacket is straightening?,tumblr_natldfOVNU1re785no1_400,20741,0 11862,FRAMEQA34484,white,what is the color of the girl?,tumblr_nazf9cN70h1qm87muo1_400,28852,2 11863,FRAMEQA10655,white,what is the color of the guy?,tumblr_njgn0ykrlJ1rjgw6yo1_250,1670,2 11864,FRAMEQA28094,drop,what does the guy let to the left while playing guitar?,tumblr_nb7c7ieppd1trcqgmo1_400,29479,0 11865,FRAMEQA42836,bicycle,what is the young man in a blue shirt riding?,tumblr_n9uj5jyB9m1soovq7o1_500,91317,0 11866,FRAMEQA30835,white,what is the color of the spoon?,tumblr_ni1dyrKWvc1sfwm8jo1_400,16778,2 11867,FRAMEQA9272,brown,what is the color of the hair?,tumblr_nfjsmn1Xji1te9mf9o1_250,13292,2 11868,FRAMEQA33972,bicycle,"what is the guy wearing green shorts with no shirt , is riding , into the swimming pool?",tumblr_ncdtu2RWrh1tfn4y9o1_250,16129,0 11869,FRAMEQA27967,cigarette,what is the man smoking while sitting?,tumblr_nh4kp4iSKN1rsfix9o1_500,50621,0 11870,FRAMEQA1932,car,what spins sideways on the track and narrowly escapes crashing?,tumblr_nd86nwgWeM1t2x9o3o1_500,54725,0 11871,FRAMEQA20217,beanie,what is the guy flexing his bare muscles and wearing?,tumblr_nd00a2dHuw1ryusrfo1_400,29961,0 11872,FRAMEQA26638,white,what is the color of the top?,tumblr_nknqcxnNVf1upqb0po1_400,31885,2 11873,FRAMEQA46978,two,how many people are standing close together and dancing?,tumblr_ng5q9xB6gZ1u1xxbfo1_500,96848,1 11874,FRAMEQA6379,two,how many people are dancing and moving on the stage?,tumblr_n8w2rvoTUU1tg9l46o1_400,18693,1 11875,FRAMEQA28576,stake,what does the woman shove into a man 's chest?,tumblr_neqji8O23b1sa0lndo1_500,71839,0 11876,FRAMEQA6378,two,how many performers are on stage and pushing each other playfully?,tumblr_npl1ihcovf1u06zrlo1_250,2745,1 11877,FRAMEQA52904,two,how many people are dancing together and are happy?,tumblr_na9onfXyT51tjy2y0o1_500,97111,1 11878,FRAMEQA21268,microphone,what is the tattooed man wearing a hat is holding and singing or rapping?,tumblr_nfuw7qwfzm1sjedcoo1_250,234,0 11879,FRAMEQA39490,hat,what is the man with gold teeth lifting?,tumblr_nipbny6enf1s3ibzxo1_500,98062,0 11880,FRAMEQA38820,blue,what is the color of the clothing?,tumblr_n9jwovUTdf1tt0699o1_400,74288,2 11881,FRAMEQA15826,classroom,where is the girl fighting?,tumblr_nc4j30gzK91saylpgo1_400,58946,3 11882,FRAMEQA23719,green,what is the color of the couch?,tumblr_ngn0ttCSb51svos5ho1_400,36865,2 11883,FRAMEQA9746,keyboard,what is the guy using in a room?,tumblr_nqtrxiojIN1ua0og2o1_400,64484,0 11884,FRAMEQA45653,sabers,what do two men raise?,tumblr_nnv3paZgju1tqq823o1_500,96962,0 11885,FRAMEQA38486,two,how many men are sitting down and talking to each other?,tumblr_nqzsp7tuTy1uuiij8o1_400,51083,1 11886,FRAMEQA42256,black,what is the color of the men?,tumblr_nd9b86RibY1t30yt2o1_400,82248,2 11887,FRAMEQA16086,black,what is the color of the glasses?,tumblr_nafeokdd2G1rkg0aio1_400,64967,2 11888,FRAMEQA41528,two,how many boxers are fighting in the ring?,tumblr_neyjq3tjnp1rpq8aco1_400,82800,1 11889,FRAMEQA39441,jacket,what is the man taking off?,tumblr_njvri85Mv81u33e4bo1_500,19169,0 11890,FRAMEQA15937,drums,what is the man playing and smiling?,tumblr_nbx8aewg0R1rbd7evo1_500,100425,0 11891,FRAMEQA44424,mouse,what does the person with blue hair carry on the back of their neck?,tumblr_naq4afnM0Z1s5o1jwo1_400,41704,0 11892,FRAMEQA10277,brown,what is the color of the pug?,tumblr_n95d2oPwhy1suyqwko1_400,56086,2 11893,FRAMEQA45848,scarf,what is the man walking down the street slowly removes?,tumblr_ng0vxeyviE1rco9sno1_250,17322,0 11894,FRAMEQA26742,cat,what is playing with the dog and dog is surprised?,tumblr_nki72xibIX1tatohao1_250,3605,0 11895,FRAMEQA23427,blue,what is the color of the shirt?,tumblr_ng9rxraygM1u1bqbwo1_250,3076,2 11896,FRAMEQA39660,white,what is the color of the hat?,tumblr_nj0gp8UaPp1u9c93ao1_400,20380,2 11897,FRAMEQA44564,two,how many young women smile broadly and hold hands?,tumblr_nkag9eNN351unbz69o1_500,91050,1 11898,FRAMEQA21974,two,how many guys does there 's holding microphones running across a stage?,tumblr_nb53jhDegX1tkdwmzo1_500,73706,1 11899,FRAMEQA30476,one,how many boy is playing guitar while his friend is singing?,tumblr_nbjiylGWRL1tlsqhto1_250,91085,1 11900,FRAMEQA755,drums,what did the man play?,tumblr_nbz2razksU1tw8il7o1_400,29301,0 11901,FRAMEQA32193,block,what did the goalie for a soccer team make?,tumblr_nesjjsxV3q1r1rrd0o1_400,66349,0 11902,FRAMEQA11299,two,how many men are sitting down and kissing each other?,tumblr_newrcpj47E1u1ym3zo1_250,46934,1 11903,FRAMEQA18946,cat,what is rubbing on the pair of feet and gets scared?,tumblr_n9crpj4At81tbusc0o1_400,46834,0 11904,FRAMEQA43240,guitar,"what is the man playing , and he is singing into a microphone?",tumblr_na7mrc0HwL1qdauj7o1_400,36894,0 11905,FRAMEQA18601,car,what crashes into the side wall and spins out?,tumblr_nbrgn3y2N31tx8mn0o1_400,80363,0 11906,FRAMEQA28383,two,how many men are kissing as one has his hands around the neck of the other?,tumblr_njmvvzXa4P1sxqls6o1_400,23669,1 11907,FRAMEQA32413,gray,what is the color of the shirt?,tumblr_ng12ciNZC11qjpkhao1_250,6433,2 11908,FRAMEQA34305,ornament,what is the cat pushing off a table?,tumblr_ng642mdNwX1qezt9uo1_250,19353,0 11909,FRAMEQA6024,two,how many men dressed in suits are dancing?,tumblr_ndz6v9plHU1s4gcyso1_500,86796,1 11910,FRAMEQA41110,paws,what is the person in a suit putting up?,tumblr_ndw0bzvkNg1tdhj6ro1_400,42931,0 11911,FRAMEQA12389,sunglasses,what is the girl wearing and holding a microphone?,tumblr_nep8u5gYPM1sixr68o1_400,25027,0 11912,FRAMEQA52003,black,what is the color of the hair?,tumblr_ndou4ocoom1qkh9mno1_500,89736,2 11913,FRAMEQA34549,two,how many women are jogging together across the bridge?,tumblr_ncecowzOHz1tky8vdo1_400,76171,1 11914,FRAMEQA24436,black,what is the color of the dog?,tumblr_nbuxw8BkXX1tlwdp4o1_400,65656,2 11915,FRAMEQA22328,three,how many men are performing the comedy routine?,tumblr_nhmmpyhAPw1u6zld7o1_400,65136,1 11916,FRAMEQA52960,window,what is the guy in a car looking out?,tumblr_ncsp3eMrFe1t5v98mo1_400,34536,0 11917,FRAMEQA7153,two,how many men fall off of the snow sled?,tumblr_nl33fuCCKK1slj978o1_400,84963,1 11918,FRAMEQA24495,chair,"where is the guy wearing a white shirt and head phones , spins as he bends over?",tumblr_nagou6rOfU1t2piwdo1_400,59198,3 11919,FRAMEQA37630,yellow,what is the color of the jacket?,tumblr_nciapoyvN51u00hdxo2_500,95757,2 11920,FRAMEQA30576,wolf,what is sitting in the woods and howling?,tumblr_nqvuy6gtIQ1u9fb2po1_250,36656,0 11921,FRAMEQA27293,blue,what is the color of the sweater?,tumblr_nbovfwOlAi1sg50dyo1_250,78488,2 11922,FRAMEQA34165,two,how many people in a room and one person is looking at the other one from behind?,tumblr_nfs1edxkV01u4xnwyo1_1280,65254,1 11923,FRAMEQA37637,dog,what does there 's jumping on a guy asleep in bed?,tumblr_nk4ygqewgH1tibyhjo1_400,57401,0 11924,FRAMEQA33644,white,what is the color of the shirts?,tumblr_nkhoetcy311tupp3ao1_250,7925,2 11925,FRAMEQA5867,truck,what is stopping just in time to avoid hitting another car?,tumblr_nem95mQccd1slw55qo1_400,88258,0 11926,FRAMEQA52314,two,how many people are on the floor doing stretches?,tumblr_ne3j8sSsx51u0a3u8o1_400,50647,1 11927,FRAMEQA27797,knife,what does the man hold?,tumblr_ne4cexoiPR1ste7mro1_r1_500,67029,0 11928,FRAMEQA51333,gorilla,what is moving around and opening and shutting its mouth?,tumblr_me0m87oukL1rcuthno1_250,27184,0 11929,FRAMEQA35331,horse,what jumps over an obstacle in a pen?,tumblr_np3jvwNxHX1u1gesoo1_400,66325,0 11930,FRAMEQA44992,pizza,what is the person cutting with a pizza cutter?,tumblr_nrkqn8quHM1rlpke5o1_250,43955,0 11931,FRAMEQA13489,two,how many guys are not wearing shorts and are dancing around each other?,tumblr_nac1kn8aGM1tei7rdo1_500,72313,1 11932,FRAMEQA5553,two,how many mean react to something by pulling expressions?,tumblr_nb1108xDwG1slsl6ro1_500,88064,1 11933,FRAMEQA15016,stick,what is the man wearing white swings and sings?,tumblr_n96w0nQAlu1s0wwl1o1_400,33376,0 11934,FRAMEQA11599,eyeliner,what is the woman having put on her?,tumblr_njvupluphK1u3t3mso1_540,41853,0 11935,FRAMEQA18172,bear,what did he win for his girlfriend at the fair?,tumblr_noyzyxj6MC1u6z5ppo1_400,40415,0 11936,FRAMEQA19488,yellow,what is the color of the suit?,tumblr_nitd6tsYER1u832izo1_400,60081,2 11937,FRAMEQA31424,two,how many boys are listening to music through ear buds?,tumblr_n9tn1eXLPK1rodd5bo1_400,33070,1 11938,FRAMEQA30947,flower,what did the man shoot out of a gun?,tumblr_nfmuusmxvU1tvjj7co1_500,60637,0 11939,FRAMEQA992,bear,what try to scratch his back with a tree?,tumblr_nl3xu3rPoK1s6zpepo1_250,8054,0 11940,FRAMEQA11251,white,what is the color of the girl?,tumblr_nqh1cwf6xD1rimengo1_400,78809,2 11941,FRAMEQA28897,black,what is the color of the dresses?,tumblr_nbqkbsQwOJ1qfcoxlo1_500,85720,2 11942,FRAMEQA26806,hedgehog,what is running across wooden floor and knocking skittles over?,tumblr_nol6jnzK9a1t95h1uo1_400,16645,0 11943,FRAMEQA7886,red,what is the color of the suit?,tumblr_nhowvhy2ev1qms0pxo1_400,37814,2 11944,FRAMEQA13247,drums,what are two guys with dark shirts and sunglasses playing while singing?,tumblr_nk2xke0BQS1uopxvxo1_500,84797,0 11945,FRAMEQA32448,black,what is the color of the pants?,tumblr_n97zsdRSs81taoa7go1_250,13137,2 11946,FRAMEQA35740,bat,what is the baseball player venting?,tumblr_n95hzf3Ujy1s3att3o1_400,69808,0 11947,FRAMEQA50625,green,what is the color of the eyes?,tumblr_ngpt98m8yA1rsg4lno1_500,57299,2 11948,FRAMEQA32615,two,how many boys are hugging each other awkwardly?,tumblr_ngtr52OeqL1u0xtr8o1_500,18794,1 11949,FRAMEQA49329,red,what is the color of the lipstick?,tumblr_n9v270xh2N1rocygho1_400,13835,2 11950,FRAMEQA46291,two,how many young men are dancing back and forth?,tumblr_nkraguGpTL1u7pcrso1_500,72814,1 11951,FRAMEQA30496,two,how many men are in the wrestling ring and one leaves?,tumblr_ndywttSMPx1tsspsco6_500,44970,1 11952,FRAMEQA26192,shirt,what is the young man taking off?,tumblr_ncn6j1KjeH1rsm126o1_400,36191,0 11953,FRAMEQA27017,red,what is the color of the carpet?,tumblr_nb4onzIujh1rcgxluo1_400,19721,2 11954,FRAMEQA3045,two,how many fingers is the woman with long brown hair talking and holding up?,tumblr_naee5xFlr41tjf814o1_400,26399,1 11955,FRAMEQA34360,guitar,what is the boy holding and singing with a headset?,tumblr_nbvej9NLlj1rq00p0o1_500,93311,0 11956,FRAMEQA35839,puppy,what is turning his head and panting?,tumblr_nbx1tmy96X1tpo01go1_400,4945,0 11957,FRAMEQA40311,bear,what is dancing and playing the horn?,tumblr_nd1lzaN9G21tp02izo1_400,25343,0 11958,FRAMEQA33826,two,how many people are standing on the stage and performing?,tumblr_n8w2rvoTUU1tg9l46o1_400,18693,1 11959,FRAMEQA29135,puppet,what is bagging his head on a stage?,tumblr_ncigafqVwf1tgsaito1_400,42920,0 11960,FRAMEQA29594,two,how many teeth does one have missing?,tumblr_nfwyadLrQK1qb0dkjo1_400,40672,1 11961,FRAMEQA33276,black,what is the color of the mask?,tumblr_nkag4qNkAE1tskhhio1_400,35070,2 11962,FRAMEQA34234,skateboard,what does the person throw down and his friend catches it?,tumblr_n9r1v3mlIp1qdds9go1_400,42116,0 11963,FRAMEQA36269,gum,what is the man with black hair chewing and nodding his head?,tumblr_nko38yTj0p1u5tusoo1_400,54430,0 11964,FRAMEQA3430,white,what is the color of the car?,tumblr_nf2n9dCyxP1u25ovvo1_400,63626,2 11965,FRAMEQA26725,room,where is the person stood?,tumblr_nddq9zmcQL1tmp9jpo1_500,85009,3 11966,FRAMEQA52777,musician,what is playing the guitar on stage seductively?,tumblr_nmx7rfsPJE1uqpyr9o1_540,56365,0 11967,FRAMEQA5996,bear,what is crawling onto the blue rocking horse?,tumblr_njtxedpe7W1t7an45o1_250,27296,0 11968,FRAMEQA16025,white,what is the color of the coat?,tumblr_nbejqsLg3q1r5hca9o1_400,53913,2 11969,FRAMEQA16978,two,how many women are walking down the street from the neck down?,tumblr_nnuwzzYVM21up8dpto1_400,77188,1 11970,FRAMEQA34416,black,what is the color of the hat?,tumblr_n9fh74CL8P1trm2z1o1_500,100154,2 11971,FRAMEQA10906,five,how many women dressed in black walk down the street?,tumblr_n9msz5bJ7Y1spkaepo1_400,62640,1 11972,FRAMEQA3893,one,how many gloved finger does the girl with an intense expression slide over her lips?,tumblr_nhsahpbTcA1st0a3lo1_500,69242,1 11973,FRAMEQA50673,sunglasses,what is the young lady with pink hair touching?,tumblr_narza02pKW1sk1ccdo1_400,24344,0 11974,FRAMEQA48937,car,what is racing around the track and then gets passed by a red car?,tumblr_ncqiquZx9u1tx8mn0o1_400,65286,0 11975,FRAMEQA14765,white,what is the color of the man?,tumblr_n6onq3cysV1qksr6no1_500,80673,2 11976,FRAMEQA44674,paint,what is the woman wearing a red jumper is wearing on her face?,tumblr_njnpzo4UG21t41q8xo1_400,29838,0 11977,FRAMEQA45672,two,how many beakers does the hand move from their case?,tumblr_nrebnpJfWQ1qcr3i7o1_400,15722,1 11978,FRAMEQA229,shirts,"what are the guy and girl wearing ,?",tumblr_naqvbi7E0B1s5739to1_250,22082,0 11979,FRAMEQA50127,building,what is digitally erected on the skyline?,tumblr_nblvftkxsM1t4phwpo1_400,35534,0 11980,FRAMEQA43057,white,what is the color of the room?,tumblr_ne9v07TxUL1sjcvc1o1_250,84536,2 11981,FRAMEQA7821,black,what is the color of the hair?,tumblr_nknb86YzIa1u3knpvo5_400,12,2 11982,FRAMEQA14293,green,what is the color of the wall?,tumblr_npbht8Ndd41rge03fo1_400,70896,2 11983,FRAMEQA19160,white,what is the color of the pants?,tumblr_nn2qfrcFhQ1tlg6slo1_250,15494,2 11984,FRAMEQA41501,two,how many guys are wearing suits and looking at each other?,tumblr_ncrhl6yWq81qi39coo1_500,96488,1 11985,FRAMEQA14333,cat,what is carrying the man around in his mouth?,tumblr_n8vexzkDc11twx2vjo1_400,59189,0 11986,FRAMEQA33105,car,what is racing along the track and is sliding?,tumblr_ngpaoaNNIH1rpqn0wo1_500,61804,0 11987,FRAMEQA20906,two,how many players are hugging together on the ground?,tumblr_n94g0xApdN1rqb3bqo1_500,96156,1 11988,FRAMEQA29350,guitar,what was the man with dark hair playing?,tumblr_nbbwerXfuY1sjt7a5o1_500,55266,0 11989,FRAMEQA26495,room,where is the guy looking up and after turn off?,tumblr_nhq37h8tWv1t8zseno1_500,100384,3 11990,FRAMEQA28941,room,where is the man touching his face?,tumblr_n9zgq3VLuH1rcrigpo1_250,26508,3 11991,FRAMEQA5624,two,how many men are singing together while looking at each other?,tumblr_ndekj98WUz1u19fjro1_500,49220,1 11992,FRAMEQA32810,two,how many girls are sitting on the floor and making funny gestures?,tumblr_nl3yuk3UEX1t7i7oqo1_400,32357,1 11993,FRAMEQA5418,two,how many motorcycles are racing next to each other on a track?,tumblr_n9bdapPO481sc9qyco1_400,36760,1 11994,FRAMEQA31709,horse,what is trotting across the wooded area?,tumblr_n8xa4psLDY1sb7v5lo1_500,70371,0 11995,FRAMEQA50025,dog,what is jumping around excitedly in the foyer?,tumblr_n9ak83GJ1A1si00qoo1_250,24051,0 11996,FRAMEQA26047,dog,what is being dragged along the floor by its leash?,tumblr_ngq2i7dlYh1s6zpepo1_400,37532,0 11997,FRAMEQA2198,room,where are several football players having a conversation?,tumblr_ncsp5rS8rC1r78dgto1_400,5809,3 11998,FRAMEQA44019,jacket,what does the guy pull over his face?,tumblr_nezdwodIKQ1r8cauwo1_250,7172,0 11999,FRAMEQA6284,three,how many soccer players collide while going towards the soccer ball?,tumblr_nr2vau6kkr1utqicho1_500,82529,1 12000,FRAMEQA44507,blue,what is the color of the belt?,tumblr_n9vqbipKqn1tas5ixo1_400,22435,2 12001,FRAMEQA22912,black,what is the color of the cat?,tumblr_nh97cpE0ME1u4v3ypo1_400,7646,2 12002,FRAMEQA26701,gray,what is the color of the hair?,tumblr_nhkr3ixRPZ1t7rsm9o1_500,44332,2 12003,FRAMEQA41066,motorcycle,what does driver fall off at a race?,tumblr_nrax82FAEW1tx8mn0o1_400,66656,0 12004,FRAMEQA19371,black,what is the color of the woman?,tumblr_nqu3w0hZk81u176r8o1_250,90899,2 12005,FRAMEQA33569,two,how many men are walking together and laughing?,tumblr_nemlr0qXJL1rwfvfro1_400,21542,1 12006,FRAMEQA18604,guitars,what are two men playing?,tumblr_nbvhcbSyBx1rgwaj9o1_400,12085,0 12007,FRAMEQA18721,five,how many girls in pink dresses are dancing on a stage?,tumblr_ncqevkyJx61rlzi76o1_400,62267,1 12008,FRAMEQA4037,colors,"what are the lights all ,?",tumblr_nd2bhyyPnc1rpph77o1_500,60371,0 12009,FRAMEQA27339,cigarette,what does the man slowly put into his mouth?,tumblr_njwxkwMrDk1si8uq7o1_400,28593,0 12010,FRAMEQA41715,cat,what is sitting next to the sink and trying to catch something?,tumblr_ndb6k2PKFz1rtlmp4o1_250,18919,0 12011,FRAMEQA8219,brown,what is the color of the while?,tumblr_nftqdlROes1so2g7mo1_500,95663,2 12012,FRAMEQA30365,two,how many men are watching on the sidelines as if they are nervous?,tumblr_n8q8ymfs5t1ql34a1o1_500,87320,1 12013,FRAMEQA22770,white,what is the color of the shirt?,tumblr_nogsnl7vHM1r4cmiho1_500,93140,2 12014,FRAMEQA6147,purple,what is the color of the stares?,tumblr_nq7qb9gPYT1rqy843o1_500,87665,2 12015,FRAMEQA8360,two,how many guys does there 's sitting together?,tumblr_nhvn12P7qN1tjjqb9o1_400,64348,1 12016,FRAMEQA13486,black,what is the color of the hat?,tumblr_nk69csLQ3m1qdhmh9o1_500,87180,2 12017,FRAMEQA29508,yellow,what is the color of the maxi?,tumblr_nk90y1wTdg1sbompmo1_500,58621,2 12018,FRAMEQA7003,two,how many bottles is the man carrying of liquor?,tumblr_n9w8iiyU0l1tqlsu7o1_1280,70381,1 12019,FRAMEQA5652,door,what is the blond man closing?,tumblr_n96l1sX4yo1s3nbpco1_500,88506,0 12020,FRAMEQA3201,white,what is the color of the metal?,tumblr_neqke3emW01u0c4xeo1_400,37691,2 12021,FRAMEQA37669,towel,what does the man without a shirt walk and swings swung?,tumblr_ndrpl3F8ed1ric2s6o1_500,34329,0 12022,FRAMEQA16200,car,what is driving on the right side of a street?,tumblr_n971luAydg1skeuupo1_400,74145,0 12023,FRAMEQA15597,blue,what is the color of the shirt?,tumblr_ncn6j1KjeH1rsm126o1_400,36191,2 12024,FRAMEQA26653,black,what is the color of the boy?,tumblr_n9gl73jiW11si92i8o1_500,12739,2 12025,FRAMEQA22388,car,where is the woman passenger removing her sunglasses?,tumblr_n8st3d7GLU1ru1g19o1_500,98940,3 12026,FRAMEQA50357,hookah,what is the brown haired girl smoking?,tumblr_ncuqfo9oE01rkw997o1_400,30193,0 12027,FRAMEQA46641,one,how many man pretends to hit another man in his face?,tumblr_ngy3o8Q3eB1rz6s1bo1_500,88360,1 12028,FRAMEQA43321,kitchen,where are two men talking?,tumblr_n9u8sctqwf1takocao1_500,99638,3 12029,FRAMEQA33252,black,what is the color of the hair?,tumblr_ngcmygDXIz1sn2hzqo1_500,86241,2 12030,FRAMEQA37347,two,how many men is this walking on stage?,tumblr_nax247zhwY1sdbrm9o1_400,65700,1 12031,FRAMEQA37458,two,how many young boys are standing and watching?,tumblr_nbsc8hVxIl1ric9o7o1_500,92672,1 12032,FRAMEQA16922,white,what is the color of the shirts?,tumblr_njtkw6qmuL1u6pwr8o2_r2_500,86491,2 12033,FRAMEQA1314,bra,what is the woman unstrapping from a mannequin?,tumblr_nklvhuCJ821qd8xguo1_400,7816,0 12034,FRAMEQA2400,beer,what does the couple kisses and the woman accidentally spill?,tumblr_nok2inBTi31s71nvbo1_400,32601,0 12035,FRAMEQA21701,cat,what is swatting the dog as it sits in someone 's lap?,tumblr_npdmedUpvr1tyncywo1_400,25608,0 12036,FRAMEQA33356,two,how many cops find the man hidden under a mattress?,tumblr_nfjyq0Lzs31u4txxyo1_400,19389,1 12037,FRAMEQA49179,black,what is the color of the man?,tumblr_nf9bp1VMbw1s4tob0o1_400,48809,2 12038,FRAMEQA48635,cat,what chases the fake fish thrown by a toy that walked toward it?,tumblr_nofh1qIEXw1tfnm8co1_400,37950,0 12039,FRAMEQA27578,two,how many men is this playing around on stage?,tumblr_nau47qXwVE1swr9vao1_500,69650,1 12040,FRAMEQA34912,white,what is the color of the bats?,tumblr_n9qwatWy9m1slj978o1_400,73992,2 12041,FRAMEQA30706,car,what drives down the street on a cloudy day?,tumblr_nese2hcXc11qjf4txo1_400,35306,0 12042,FRAMEQA17033,cap,what is the young person putting onto their head?,tumblr_ndaot5SytE1tuzzkvo1_400,32733,0 12043,FRAMEQA9341,courtyard,where is the white horse prancing?,tumblr_mgo1kl7MLM1qe2thio1_500,94323,3 12044,FRAMEQA38803,office,where is the man kicking his leg up?,tumblr_naoyan6LOu1r67t5oo1_250,55613,3 12045,FRAMEQA52305,white,what is the color of the rabbit?,tumblr_ncbbj6piQ91qkplr2o1_250,2118,2 12046,FRAMEQA11548,three,how many young men are listening to another man?,tumblr_nhm9v62A8Y1ryzomqo1_250,20535,1 12047,FRAMEQA41138,dogs,what are lying peacefully on the couch?,tumblr_neqoabbUAH1s9wp82o1_400,30264,0 12048,FRAMEQA35991,cactus,what is the woman wearing a white shirt is watering with an elephant shaped can?,tumblr_nfbdq1Bpfa1so39joo1_400,43468,0 12049,FRAMEQA7860,two,how many boys are hugging while sitting on the edge of a bed?,tumblr_neovndj9ZZ1u2gmf3o1_400,33423,1 12050,FRAMEQA49222,guitar,what is the person playing with a puppet stood next to him?,tumblr_nf0jfqbC7D1tkpta6o1_400,90705,0 12051,FRAMEQA45780,red,what is the color of the hair?,tumblr_nk4n9z7JsR1u36k2yo1_400,52012,2 12052,FRAMEQA16393,black,what is the color of the men?,tumblr_ndwqt70ENH1sqp9mao1_400,52294,2 12053,FRAMEQA26349,butter,what is the goat licking off a spoon held by a human hand?,tumblr_nhb7pgWlIn1slj978o1_500,76483,0 12054,FRAMEQA52535,white,what is the color of the shirt?,tumblr_nfgkpzxpv01qclz9ho1_1280,99900,2 12055,FRAMEQA6313,store,where is the girl rearranging a cd?,tumblr_nks1ucMHvh1r0slduo1_400,64982,3 12056,FRAMEQA52280,gum,what is blowing the bubble with the gum?,tumblr_nrkc0sh9Q61us2u6eo1_500,62422,0 12057,FRAMEQA45740,black,what is the color of the shirt?,tumblr_nkn0fjyZdU1u2oi1bo1_400,63052,2 12058,FRAMEQA27730,black,what is the color of the shirt?,tumblr_nr3k1cZSra1sqh42jo1_400,60866,2 12059,FRAMEQA24137,two,how many women are drinking together at the desk?,tumblr_nra6g5KAfA1usnj8do1_400,82926,1 12060,FRAMEQA49725,blue,what is the color of the coat?,tumblr_ncg765LMOZ1tmaii4o1_250,7519,2 12061,FRAMEQA52771,pictures,what is the man taking and looking around?,tumblr_nda75vyqz61qe849no1_250,40781,0 12062,FRAMEQA14919,hat,what is the dark haired bearded man wearing?,tumblr_ni11njEHBX1u86jejo1_250,14186,0 12063,FRAMEQA30022,black,what is the color of the sweater?,tumblr_njxnk5YbbF1sa0lndo1_500,74243,2 12064,FRAMEQA4065,two,how many people are pushing each other in a room?,tumblr_nc9rpqaGy31qhb3vzo1_500,57512,1 12065,FRAMEQA27783,two,how many women are running into the ocean with their surf boards?,tumblr_nf1dprmAw71tw8vf9o1_1280,86626,1 12066,FRAMEQA34756,three,how many men are doing goofy dance moves?,tumblr_na9b47JmFf1r9hl28o1_400,87141,1 12067,FRAMEQA31785,guitar,what is the man playing while wearing a button down jacket?,tumblr_n9y9akfIvh1qlxas3o1_400,76469,0 12068,FRAMEQA7459,two,how many men is this playing competitive table tennis?,tumblr_ndt7p5Ww511s71nvbo1_400,24653,1 12069,FRAMEQA34157,white,what is the color of the clothes?,tumblr_n9lg2kfH5D1stp9t8o1_400,35131,2 12070,FRAMEQA13962,picture,"what is the woman wearing a halter top and two guys , are having taken while on stage?",tumblr_n9p8z4CYRh1rirt7wo1_250,6881,0 12071,FRAMEQA51288,two,how many men on a stage are going to kiss?,tumblr_nhebn0UepF1sdrnczo1_250,51591,1 12072,FRAMEQA14177,blue,what is the color of the lights?,tumblr_n9wa8lugFs1r8a1kho1_500,96102,2 12073,FRAMEQA49173,cat,what suddenly falls down while laying down?,tumblr_nfd3x2AVM91u2rlp7o1_250,9346,0 12074,FRAMEQA10897,room,where is the girl in a white shirt dancing?,tumblr_naf17coVdO1ts0kzio1_400,70558,3 12075,FRAMEQA5585,two,how many people is it holding each other 's shoulders?,tumblr_nayv2kyFQI1ts7wbfo1_400,80131,1 12076,FRAMEQA41453,dog,what is jumping on the car that explodes?,tumblr_nc50ehFDSZ1tkpzw0o1_400,97524,0 12077,FRAMEQA28692,white,what is the color of the t-shirt?,tumblr_nb8n74Sg7d1te0ddeo1_400,58596,2 12078,FRAMEQA9042,white,what is the color of the man?,tumblr_nhccm1k3hA1u5imt4o1_500,44161,2 12079,FRAMEQA45703,black,what is the color of the cat?,tumblr_nra8jaNWXd1ti2yzto1_1280,17735,2 12080,FRAMEQA39800,red,what is the color of the hair?,tumblr_ngydaduWj01skjjtto1_250,45622,2 12081,FRAMEQA44587,shell,"what is carrying its own fruit , an orange?",tumblr_nl0lw9PkLw1sht3fmo1_250,72976,0 12082,FRAMEQA37134,dog,what is riding on the skateboard?,tumblr_nfas85i8vi1qz4c39o1_400,5589,0 12083,FRAMEQA29005,two,how many men are shaking hands and exchanging a brief hug?,tumblr_nafbw1iPGe1swogxvo2_500,89386,1 12084,FRAMEQA10118,room,where is the dog walking inside?,tumblr_nbt9t3GNcv1tdjuqvo1_400,32039,3 12085,FRAMEQA47258,dog,what is running through the house carrying something in his mouth?,tumblr_ngo9zfHkp61qixslso1_400,13941,0 12086,FRAMEQA5055,monkey,what does drinking fall off a wire?,tumblr_nbh6btDTyY1r38hk2o1_400,8486,0 12087,FRAMEQA25535,two,how many women speak to each other through cordless microphones?,tumblr_nhmi7dGdup1qgeu41o1_500,94202,1 12088,FRAMEQA18576,black,what is the color of the jacket?,tumblr_neyg4g5FNn1sh32sgo1_400,50457,2 12089,FRAMEQA28128,dog,what is the man making?,tumblr_ndyr8rSi4d1to0jsbo1_250,19082,0 12090,FRAMEQA18743,green,what is the color of the shirt?,tumblr_naha579HaB1tggah7o1_500,91224,2 12091,FRAMEQA27309,airplane,what is dropping the car from the sky?,tumblr_npq9jlIFaN1u1ogm0o1_1280,98065,0 12092,FRAMEQA11196,horse,what is standing in the snow leaning over a fence?,tumblr_n8x4u9gEFy1s2wg51o1_500,68398,0 12093,FRAMEQA21749,black,what is the color of the walking?,tumblr_njvlp2joQt1u3xs5fo1_250,14507,2 12094,FRAMEQA3621,three,how many kittens are cleaning their paws as they sit in a small container?,tumblr_n9g5efSoWD1rsxypwo1_400,22459,1 12095,FRAMEQA30639,white,what is the color of the man?,tumblr_niv358uYAh1u9vehoo1_400,56398,2 12096,FRAMEQA36448,circle,what does the guy play skateboard and makes?,tumblr_nf801pcEsC1si71e8o1_500,94279,0 12097,FRAMEQA35374,black,what is the color of the clothes?,tumblr_ncmh5cTtJl1t6qjd2o1_400,78927,2 12098,FRAMEQA24826,two,how many women are having eye to eye contact and pointing at someone?,tumblr_np87c5Ot0P1u677wzo1_250,37932,1 12099,FRAMEQA46796,two,how many men are singing into two microphones in a studio?,tumblr_njabelknbz1qcedqco2_500,93822,1 12100,FRAMEQA47529,brown,what is the color of the horse?,tumblr_na1zg9Bkf41s2wg51o1_400,36195,2 12101,FRAMEQA41567,white,what is the color of the shirt?,tumblr_nfcoq5nBn21u3e2yro1_250,1909,2 12102,FRAMEQA28702,two,how many guys is this image of messing around with each other at night?,tumblr_nqtzzkjgf81rpb34go1_400,60156,1 12103,FRAMEQA13307,black,what is the color of the mirror?,tumblr_n9e201ez7u1tfwqnfo1_500,73965,2 12104,FRAMEQA48568,blue,what is the color of the shirt?,tumblr_ndxo6xkZ081u1lj9jo1_500,34411,2 12105,FRAMEQA12039,two,how many women are smiling and then embracing each other?,tumblr_npvfwwSEYu1sfmhxao1_400,52459,1 12106,FRAMEQA11838,black,what is the color of the hair?,tumblr_nbh2zp3q8L1rx8mrmo1_r1_500,80710,2 12107,FRAMEQA45776,two,how many birds engage in strange mating behavior with the male dancing?,tumblr_nec7jpgXtw1s71nvbo1_400,27462,1 12108,FRAMEQA35613,red,what is the color of the suspenders?,tumblr_nbyamsxkvF1sren05o1_400,64252,2 12109,FRAMEQA13059,black,what is the color of the hair?,tumblr_n9oowhSN4H1srwyebo1_400,64872,2 12110,FRAMEQA50811,bed,where is the man lying and slowly opening his eye?,tumblr_nafcozD7p01tzwfnzo1_500,76070,3 12111,FRAMEQA42356,white,what is the color of the guy?,tumblr_nbx00vqCh11tc9eofo1_250,19541,2 12112,FRAMEQA15616,white,what is the color of the room?,tumblr_nl9xeaWjbi1r9fb8eo1_500,89885,2 12113,FRAMEQA10008,two,how many crying women is wearing handcuffs are pulled apart?,tumblr_npp13hVgZN1uv3dw9o1_250,45040,1 12114,FRAMEQA456,three,how many men is this standing next two each other?,tumblr_naopjceBs01rar35do1_250,5248,1 12115,FRAMEQA40839,cigarette,what is the woman wearing a dress is smoking?,tumblr_nhbwfjkIRX1u6q9r2o1_250,11953,0 12116,FRAMEQA46633,blue,what is the color of the jacket?,tumblr_neydqqcDtv1sayfpso1_250,71662,2 12117,FRAMEQA14684,sunglasses,"what is the man wearing , and he is talking?",tumblr_ndr5xbefiA1s239z7o1_250,35516,0 12118,FRAMEQA40276,car,where is the duck coming towards someone and then he runs away?,tumblr_nr1zh6yArU1usf060o1_400,80337,3 12119,FRAMEQA50441,spider,what jumps on the man 's shoe and it gets thrown away?,tumblr_n9075l4nPN1thp5u0o1_400,46830,0 12120,FRAMEQA48812,three,how many men talk to each other and another dances on a stage?,tumblr_n97hd4BIH11txqr09o1_400,86959,1 12121,FRAMEQA30540,rhino,what is charging towards two men who are running away?,tumblr_njsd1xvdMx1twhh4bo1_400,37070,0 12122,FRAMEQA1920,cat,what grabs the yellow and white cat and begins licking its cheek?,tumblr_n90wdbaCbJ1sakfnpo1_250,40595,0 12123,FRAMEQA17620,black,what is the color of the clothes?,tumblr_nk6u7h2I8Z1saeojro1_400,15571,2 12124,FRAMEQA50928,shirt,what is the man wearing and talking into a microphone while a motorcycle goes by?,tumblr_nihobb7cQ81u8uroco1_250,44716,0 12125,FRAMEQA43192,cigarette,what is the man smoking?,tumblr_nfpubqKlJ11szh8ieo1_250,20476,0 12126,FRAMEQA5825,cake,what does the young girl with a knife cut excitedly?,tumblr_nep9xj16Yh1smur93o1_400,31079,0 12127,FRAMEQA45450,two,how many beautiful girls with cute eyes are looking still at each other?,tumblr_njrwofTG731u04lbzo1_500,55099,1 12128,FRAMEQA49340,white,what is the color of the shirt?,tumblr_nc9akxXxnZ1ql8b6oo1_r1_400,49012,2 12129,FRAMEQA45385,yellow,what is the color of the hair?,tumblr_nf5m5fBbyF1u11j39o1_500,46582,2 12130,FRAMEQA2412,cat,what does man push with brush?,tumblr_nqlgrb0lcL1uz06r7o1_250,2822,0 12131,FRAMEQA35906,red,what is the color of the tricks?,tumblr_nb669dto3V1sqr1umo1_500,80078,2 12132,FRAMEQA36466,guitar,what is the man in a band playing on stage?,tumblr_n9auyzrZNt1simukfo1_400,66175,0 12133,FRAMEQA14368,white,what is the color of the guy?,tumblr_namck8I3Yj1s2a9g2o1_500,98182,2 12134,FRAMEQA52813,brown,what is the color of the dog?,tumblr_n9ji43A1Rt1titlh5o1_250,19769,2 12135,FRAMEQA21375,two,how many men are holding hands and rocking them back and forth?,tumblr_ncwgbmoRKU1spxe4io1_250,2319,1 12136,FRAMEQA51032,white,what is the color of the woman?,tumblr_nk2y5lgrQG1ssust7o1_540,100824,2 12137,FRAMEQA51737,black,what is the color of the man?,tumblr_nhrvryNhCU1u1tx9fo1_500,80629,2 12138,FRAMEQA38542,red,what is the color of the carpet?,tumblr_nko1akxvzU1smu73fo1_250,42115,2 12139,FRAMEQA34338,green,what is the color of the hat?,tumblr_ni11njEHBX1u86jejo1_250,14186,2 12140,FRAMEQA51487,car,what is moving down the road passing streetlights and trees?,tumblr_nelzmf2VB71u25ovvo1_400,63494,0 12141,FRAMEQA25359,two,how many young men are laughing and smiling and having fun?,tumblr_n9l6t6WLLm1shsozuo1_500,88496,1 12142,FRAMEQA34535,two,how many tattooed men are talking while one acts silly in the background?,tumblr_ngu8cfNenW1ripg1ro1_500,57236,1 12143,FRAMEQA22357,mirror,where is the girl wearing white heels is looking?,tumblr_ncz222VcuZ1ttuz3po1_400,1324,3 12144,FRAMEQA9692,cat,what is walking in the circle on see through glass?,tumblr_nh2ve9qFfE1u4v3ypo1_500,49202,0 12145,FRAMEQA36997,glass,what is the man holding?,tumblr_nhg121X5MD1twq523o1_250,21384,0 12146,FRAMEQA25885,flowers,what is the girl holding to her head?,tumblr_nedj6p1oYc1u0re54o1_250,15728,0 12147,FRAMEQA13049,dog,what is putting his tongue out while laying on a couch?,tumblr_nnn5nj7vw21s8rggqo1_250,2604,0 12148,FRAMEQA18401,two,how many men are staring at each other and one looks away?,tumblr_nny1vwD6Xw1uobj5fo1_500,91998,1 12149,FRAMEQA9861,bowl,where are berries rolling?,tumblr_ncb4rh5u6V1tw6u06o1_500,74315,3 12150,FRAMEQA8612,blue,what is the color of the shirt?,tumblr_nbcci3UZiu1r0fbhro1_250,42633,2 12151,FRAMEQA11362,two,how many young men are laughing at each other?,tumblr_nihx73QAqi1rf4bn2o2_r1_540,101197,1 12152,FRAMEQA31805,hat,what is the woman wearing a hat is touching with one hand?,tumblr_n9wtxekbRV1s6f9ago1_500,71312,0 12153,FRAMEQA37125,pizza,what is this image of two guys eating?,tumblr_nh7dbzg3AX1sg80mko1_400,73798,0 12154,FRAMEQA18682,gray,what is the color of the suit?,tumblr_ni32scddOZ1u0ed70o1_500,56559,2 12155,FRAMEQA29963,blue,what is the color of the cap?,tumblr_ngp8af5yyC1t2bqsgo1_400,81010,2 12156,FRAMEQA14480,towel,what is the girl wearing and winking?,tumblr_nf5olbZaM81rs0blno1_500,95390,0 12157,FRAMEQA30729,two,how many beautiful women are clinking wine glasses with great joy?,tumblr_na5uo6rEEc1rv06c2o1_250,32590,1 12158,FRAMEQA48299,skateboard,what is the girl in a red shirt riding?,tumblr_nhuiyeJfZ11u7yxjso1_250,77779,0 12159,FRAMEQA17218,black,what is the color of the sweater?,tumblr_nda8txGklg1qfpq5po1_250,12642,2 12160,FRAMEQA6614,white,what is the color of the car?,tumblr_nelzmf2VB71u25ovvo1_400,63494,2 12161,FRAMEQA14830,track,what are racing cars racing around a track and one car spins off?,tumblr_nbatooeAde1tx8mn0o1_400,52734,0 12162,FRAMEQA39050,motorcycle,what crashes on the turn and rolls into the dirt crashed?,tumblr_n93blvtL4p1sncaa3o1_400,65287,0 12163,FRAMEQA30823,two,how many men are staring at each other and smiling?,tumblr_n9adwvqs131rw8dw3o1_400,65019,1 12164,FRAMEQA16407,two,how many girls is this wearing tank tops taking a photograph of themselves?,tumblr_ngws0aBHUj1slj978o1_400,40615,1 12165,FRAMEQA10795,two,how many people does there 's in a race car?,tumblr_nhxsiqiqON1u7lcb4o1_500,77450,1 12166,FRAMEQA14182,two,how many teenagers cover their mouths and laugh at something?,tumblr_njvf297g0o1ts4ov3o1_400,33373,1 12167,FRAMEQA33740,card,what is drifting on the dirt road?,tumblr_nhyz55Zgxg1tx8mn0o1_400,78412,0 12168,FRAMEQA5453,white,what is the color of the shirt?,tumblr_n9wjcxEfe01sqo9eko1_250,51380,2 12169,FRAMEQA30320,veil,what is the woman with a sad expression getting?,tumblr_n9ey0hkGsC1rv32mpo1_250,87595,0 12170,FRAMEQA31245,two,how many FRAMEQAorters are sitting?,tumblr_nkitkhGcr51qdlihoo1_500,63296,1 12171,FRAMEQA51410,room,where is the man being interviewed?,tumblr_ndgc8nubQG1qapfv1o1_400,74136,3 12172,FRAMEQA42292,horse,"what is jumping over the pole , then rolling around in the mud?",tumblr_na213y4pel1tdek48o1_400,43172,0 12173,FRAMEQA9117,two,how many young boys are winking and smiling while sitting close together?,tumblr_nckjrzjHmR1sc2n9ao1_500,83916,1 12174,FRAMEQA29452,pillow,where is the guy smiling and putting his face?,tumblr_n9v9pe5yzl1tdm8wxo1_400,44761,3 12175,FRAMEQA52694,drugs,what did the man in a club rub on his teeth?,tumblr_nadg9rtWQH1sp1enmo1_1280,82430,0 12176,FRAMEQA4389,two,how many young men are filming themselves atop a high building?,tumblr_nr3ug1STRd1qfyovfo1_540,96745,1 12177,FRAMEQA1709,orange,what is the color of the top?,tumblr_nb965eQbdB1stgmtmo1_250,16656,2 12178,FRAMEQA38527,two,how many girls are holding hands and dancing?,tumblr_njwb3012Rt1tdkk34o1_250,41613,1 12179,FRAMEQA41173,piano,what is the man playing with much fervor?,tumblr_ndfl1xyQ891tzhdamo1_400,70563,0 12180,FRAMEQA17633,duck,what is chasing the men in the jeep?,tumblr_nr1zh6yArU1usf060o1_400,80337,0 12181,FRAMEQA35093,white,what is the color of the shirt?,tumblr_njwweyBX6U1s7w0h2o1_400,28077,2 12182,FRAMEQA24595,skateboard,what does the person balance?,tumblr_ng0sfoJ1LW1rgc9a3o1_250,30174,0 12183,FRAMEQA6529,car,what is this going around a turn in a city?,tumblr_no37v6clUi1qzho3ao1_400,94742,0 12184,FRAMEQA13743,one,how many boxer is punching another in the face?,tumblr_nf6y3eCpjg1slj978o1_400,45343,1 12185,FRAMEQA24071,blue,what is the color of the shirt?,tumblr_n951b2b8S81t3pqzeo1_250,2787,2 12186,FRAMEQA32424,car,what is the person wearing a red jumpsuit is driving?,tumblr_nhszflfDwb1u1rggjo1_400,26159,0 12187,FRAMEQA37680,white,what is the color of the helmet?,tumblr_nitvxeekfD1rqcmheo1_250,18914,2 12188,FRAMEQA50476,cash,what does the man put into a vending machine when a man on the other side gives it back?,tumblr_n9by5h0MsZ1tb760zo1_400,13027,0 12189,FRAMEQA38555,snake,what is curling around the tree?,tumblr_neu5ybxkBL1tia84ho1_r2_1280,61746,0 12190,FRAMEQA51619,cat,what is kicking the door with a back paw?,tumblr_n9xu4w1Lfq1tatohao1_400,40652,0 12191,FRAMEQA14972,gray,what is the color of the top?,tumblr_n97fbtXhCS1tbgrm9o1_250,26417,2 12192,FRAMEQA28812,blue,what is the color of the toy?,tumblr_njtxedpe7W1t7an45o1_250,27296,2 12193,FRAMEQA1766,cat,what is jumping and hanging onto the door?,tumblr_nkyan4eWHz1tmnntwo1_400,26777,0 12194,FRAMEQA43479,two,how many people does there 's who are wearing hats and laughing?,tumblr_ngkbm8DACb1t0w9oqo1_400,15773,1 12195,FRAMEQA22424,two,how many guys is wearing hats are dancing with their arms raised?,tumblr_nkyfxvKq0p1rwwygfo1_500,92839,1 12196,FRAMEQA49986,couch,where is the girl sitting while a guy is greeting her?,tumblr_nh37gypRMa1sfx6ffo1_250,6055,3 12197,FRAMEQA18821,car,what is turning donuts on the track?,tumblr_nrc4axMW2T1r92mkgo1_400,62304,0 12198,FRAMEQA52048,yellow,what is the color of the jacket?,tumblr_ney66jVqi61ssvehso1_500,77648,2 12199,FRAMEQA50218,black,what is the color of the hair?,tumblr_nbdb9pItbr1tgdd9ao1_400,25300,2 12200,FRAMEQA23594,office,where is the man singing and dancing?,tumblr_naoyan6LOu1r67t5oo1_250,55613,3 12201,FRAMEQA37058,horse,what is running through the field?,tumblr_nacngfa5N21r959nro1_400,35211,0 12202,FRAMEQA42071,red,what is the color of the hair?,tumblr_nejtlgrkmT1u1pi4oo1_400,35293,2 12203,FRAMEQA12325,two,how many men are sword fighting in the boxed area?,tumblr_nr5h8ba4iB1s3wsijo1_500,69389,1 12204,FRAMEQA23935,stairs,what are three young and beautiful women climbing?,tumblr_nay0kzAbkR1twcgnlo1_400,27538,0 12205,FRAMEQA20082,three,how many woman with long hair are talking and waving?,tumblr_nki97gCmDh1s3uqzwo1_250,4472,1 12206,FRAMEQA42329,bun,what is puffing up on the hob?,tumblr_nd8jkjOdOl1tozyi0o1_400,75245,0 12207,FRAMEQA5377,cat,what is watching toy train cars go by?,tumblr_n6ve3aFzGA1rqvpaao1_400,63978,0 12208,FRAMEQA1007,lion,what is playing with other lion in outdoor?,tumblr_ncy89sSxEH1t4eui2o1_500,84234,0 12209,FRAMEQA42877,cat,what are two cats next to a door and scratches the wall?,tumblr_n9xu4w1Lfq1tatohao1_400,40652,0 12210,FRAMEQA16396,two,how many girls in white dresses are dancing on stage?,tumblr_ne9ywnJtxX1t09iyco1_500,75498,1 12211,FRAMEQA52750,balls,what is the girl bouncing?,tumblr_nhuvtlz6f81tq4njio1_400,46370,0 12212,FRAMEQA26356,colors,what is the bunch of people dancing as the floor changes?,tumblr_nkn6cr8jai1u7y8p9o1_400,54037,0 12213,FRAMEQA16552,koala,what is the boy talking and petting?,tumblr_nedbvrPn4z1soryl3o1_250,9575,0 12214,FRAMEQA38758,black,what is the color of the men?,tumblr_n8rwhlo9uB1tptf7do1_250,38342,2 12215,FRAMEQA14910,lion,what is the man holding a lion cub and is licking his face?,tumblr_nchyfz0sQj1slj978o1_250,27666,0 12216,FRAMEQA44138,two,how many men are walking through an office space?,tumblr_nolm8utjT81uw3c7ro1_250,50961,1 12217,FRAMEQA8528,airplane,what is seeing flying behind the pilot driving a flight?,tumblr_na9bbyX3y51tf36dpo3_400,54009,0 12218,FRAMEQA316,white,what is the color of the wall?,tumblr_nkvmjqHles1tl5f3zo1_250,27620,2 12219,FRAMEQA39040,two,how many women dance while smiling at one another and wearing purple shirts?,tumblr_nhb2we9rFe1u6l71oo1_250,36637,1 12220,FRAMEQA51239,brown,what is the color of the hair?,tumblr_nh2rewR6IG1rhzqaho1_400,101155,2 12221,FRAMEQA24560,cigarette,what is the man smoking and looking around?,tumblr_nioeglzBE41rqttkvo1_500,81739,0 12222,FRAMEQA3358,two,how many women does there 's running and flipping in unison?,tumblr_nfygp4DKxV1tw8vf9o1_400,19168,1 12223,FRAMEQA2510,two,"how many people is sitting in a chair , one wearing brown shoes and the other has no footwear?",tumblr_nnx611gAZA1teszvzo1_400,40182,1 12224,FRAMEQA1462,two,how many females are exercising on the beach?,tumblr_nc1sqlE5lg1tky74jo1_500,91703,1 12225,FRAMEQA46232,baboon,what cleans another baboon while others walk around?,tumblr_nhnhys0agY1tcltsqo1_400,66216,0 12226,FRAMEQA8218,headphones,what does this show the upper portion of a boys face and he 's wearing?,tumblr_ndwqffkK5o1sdfw73o1_400,52166,0 12227,FRAMEQA49956,rabbit,what was eating lettuce leaves?,tumblr_ndcvis8jts1tbcrm5o1_250,3820,0 12228,FRAMEQA15390,red,what is the color of the bull?,tumblr_npdeeniOGl1s06j30o1_400,57148,2 12229,FRAMEQA51174,two,how many people in white shirts are walking arm in arm?,tumblr_ncoxe7Pzl11t0ojyvo1_250,6571,1 12230,FRAMEQA1759,two,how many people are in the room looking at each other?,tumblr_n98yhgmRsF1tfowdxo1_500,82023,1 12231,FRAMEQA9526,dandelion,what is blown in front of a car?,tumblr_nrjkkdYkM51qdbvc2o1_400,77320,0 12232,FRAMEQA34129,black,what is the color of the outfit?,tumblr_nac7r67PCz1ttrqwxo1_250,6638,2 12233,FRAMEQA17681,pool,where is the couple touching noses?,tumblr_nbuvcycrMb1tana87o1_250,78506,3 12234,FRAMEQA23321,white,what is the color of the shirt?,tumblr_ndggxt1SdX1stkbz3o1_400,62505,2 12235,FRAMEQA18827,bow,what is the woman kissing made of fabric?,tumblr_npplhk1yOz1tbeohdo1_540,56295,0 12236,FRAMEQA36442,white,what is the color of the suit?,tumblr_nd3vynn0a81rregeqo1_500,34224,2 12237,FRAMEQA47736,drums,what is the man playing at a concert?,tumblr_nbfrv4gBTS1soxo1wo1_400,24863,0 12238,FRAMEQA33414,two,how many sticks is the baby beating together?,tumblr_nbwk65nfT91r57bhho1_250,24228,1 12239,FRAMEQA29510,red,what is the color of the shirt?,tumblr_nkh0ermIow1tmd6tdo1_400,4372,2 12240,FRAMEQA26756,black,what is the color of the suit?,tumblr_no7ms6bQkF1qf738lo1_500,47662,2 12241,FRAMEQA6647,black,what is the color of the girl?,tumblr_n8sr0oUI821rkywpto1_1280,98104,2 12242,FRAMEQA39970,ball,what is the young boy kicking from under a man sitting on it?,tumblr_na9ijtkcws1ti2sgvo3_250,46241,0 12243,FRAMEQA24705,dog,what refuses to eat some food and jumps on a couch?,tumblr_njp4xkNl8t1tk2ngvo1_500,67971,0 12244,FRAMEQA29820,cigar,what is the man with curly hair smoking and pointing a gun?,tumblr_nf3uzbrHlA1rmgp3fo1_500,13816,0 12245,FRAMEQA26241,two,how many people are looking each other in a room?,tumblr_ne49poeZeL1tmjapgo1_500,36788,1 12246,FRAMEQA2638,three,how many man are hugging and holding up the belt in a wrestling ring?,tumblr_ngxg4uGPL61sfdfgyo1_250,15293,1 12247,FRAMEQA30169,car,what slid across the road?,tumblr_ni06hc76UJ1u639x2o1_500,72526,0 12248,FRAMEQA20410,red,what is the color of the bow?,tumblr_n8tx52dF7T1th5r3po1_500,86023,2 12249,FRAMEQA41117,two,how many men are both styling their hair?,tumblr_ne9wlbbLg11tfou8do1_400,60514,1 12250,FRAMEQA35863,two,how many rabbits are playing very funny in the room?,tumblr_nc2gpfzSk21tk2ngvo1_250,13592,1 12251,FRAMEQA20334,two,how many people held their hands close together?,tumblr_nd8ynvxlL51s36lx4o1_400,70194,1 12252,FRAMEQA41347,red,what is the color of the shirt?,tumblr_n98t7cdeNZ1skdlfto1_400,60668,2 12253,FRAMEQA32572,white,what is the color of the man?,tumblr_nk039jetLe1r0fn19o1_500,91871,2 12254,FRAMEQA16310,three,how many people is this sitting on a couch with one of them holding a microphone?,tumblr_nbvef9bc6T1rzia65o1_250,6549,1 12255,FRAMEQA29868,gray,what is the color of the cat?,tumblr_ncfjoeOSwk1r8pns9o1_400,16662,2 12256,FRAMEQA50880,horse,what is wearing the checkered logo on his forehead?,tumblr_ndm302Gvzr1srpy25o1_500,56698,0 12257,FRAMEQA37742,red,what is the color of the wig?,tumblr_n91ihyaqLx1sc6yp2o1_400,32199,2 12258,FRAMEQA30375,two,how many japanese young men are laughing?,tumblr_n40aygjog81rbgz0xo1_500,94906,1 12259,FRAMEQA11552,white,what is the color of the coats?,tumblr_ng8cq0OE6r1u2z3v8o3_250,2254,2 12260,FRAMEQA22253,dog,what is petting his human 's head?,tumblr_naf1uaXSXE1ts0kzio1_400,41589,0 12261,FRAMEQA23884,glasses,what does the bearded man slowly push up to the bridge of his nose?,tumblr_ngui6owoeN1qfv7h2o1_500,89798,0 12262,FRAMEQA28441,jacket,what is the woman with long black hair putting on?,tumblr_nh0tcd4mDD1u2x6xfo1_400,32603,0 12263,FRAMEQA36256,bull,what sponsored car drives through a mud puddle?,tumblr_npdeeniOGl1s06j30o1_400,57148,0 12264,FRAMEQA38408,dog,"what is running along the side of a pool , and he is falling in the water?",tumblr_nge2siSPYW1sppy9co1_250,52861,0 12265,FRAMEQA19180,guitar,what is the man playing and singing next to some candles?,tumblr_n98neseC6j1sulpwxo1_400,33533,0 12266,FRAMEQA27290,sandwich,what is the man eating and wiping his fingers off?,tumblr_nkx0zarpkq1r0ia88o1_400,22846,0 12267,FRAMEQA41813,cigarette,"what is the girl wearing a white shirt and black skirt , is smoking?",tumblr_niusi5DiBN1r027rto1_250,820,0 12268,FRAMEQA34836,black,what is the color of the shirt?,tumblr_nbf8mqqZRN1shpcero1_250,4310,2 12269,FRAMEQA3757,black,what is the color of the pot?,tumblr_np9wd6T7fT1tkxy83o1_250,3901,2 12270,FRAMEQA39864,two,how many men are staring at each other but not talking?,tumblr_neqozqb57J1s9vhbqo1_250,81304,1 12271,FRAMEQA52851,black,what is the color of the woman?,tumblr_necbt7TYbT1ttsz9wo1_400,60187,2 12272,FRAMEQA6593,white,what is the color of the bowl?,tumblr_ncb4rh5u6V1tw6u06o1_500,74315,2 12273,FRAMEQA18892,black,what is the color of the hair?,tumblr_nhx5igYXE61u38aego1_500,73993,2 12274,FRAMEQA36825,two,how many guys are near mountains?,tumblr_npfagkDT3Z1qz61bho1_400,80688,1 12275,FRAMEQA45384,black,what is the color of the boys?,tumblr_n97os4nTVF1sblhg1o1_500,52554,2 12276,FRAMEQA50109,black,what is the color of the hair?,tumblr_ngdq4bTF1K1u4q8jjo1_500,91814,2 12277,FRAMEQA51760,blue,what is the color of the dress?,tumblr_n9craz6Alc1rm5sqbo1_250,18764,2 12278,FRAMEQA9786,two,how many girls are expressing affection by hugging each other?,tumblr_nrjimhejuj1uawws4o1_250,53230,1 12279,FRAMEQA14158,room,where are the group of people dancing?,tumblr_nd3vsvmfDI1tqjarko1_500,69653,3 12280,FRAMEQA42685,blue,what is the color of the car?,tumblr_nfglqfDg3L1u1lt1go1_400,61054,2 12281,FRAMEQA21736,cat,what gets up and walks away leaving its tail behind?,tumblr_nknodg8h931slwpo8o1_250,85109,0 12282,FRAMEQA18615,two,how many elderly men in suits shake hands and then leave the room holding hands?,tumblr_nitfj1AJCm1tdmffyo1_400,44911,1 12283,FRAMEQA30634,cigarette,what is the man in the black shirt smoking?,tumblr_nebq9afgmY1snrb8oo1_400,33688,0 12284,FRAMEQA3026,rooster,what is riding on the vacuum cleaner?,tumblr_nak34sUK131slj978o1_400,50795,0 12285,FRAMEQA12205,two,how many people fall out then climb back in?,tumblr_nl33fuCCKK1slj978o1_400,84963,1 12286,FRAMEQA42686,truck,what is driving down the road and a tire blows off?,tumblr_nk3iivXYey1u7lrdno1_500,91155,0 12287,FRAMEQA2663,two,how many men are laughing with each other at a table?,tumblr_nc7ew9nZQK1tgyh35o1_400,64912,1 12288,FRAMEQA13710,stick,what burns smoke in front of something dark?,tumblr_nesf0m509L1rs3efuo1_500,30498,0 12289,FRAMEQA21106,hat,what does the woman turn around her head?,tumblr_ne739nzddN1t2prlto1_400,88985,0 12290,FRAMEQA10571,two,how many performers are dancing and singing on stage?,tumblr_nl0fz8rTT21rc6zqzo1_250,7769,1 12291,FRAMEQA52542,stairs,what is the girl running on a stadium?,tumblr_nb9jajxPqO1tsl8rno1_500,93397,0 12292,FRAMEQA16586,black,what is the color of the shirt?,tumblr_nk9bmlrirm1uosfkco1_400,72287,2 12293,FRAMEQA8238,black,what is the color of the hair?,tumblr_ncyr2emPxA1ti6gxco1_500,8116,2 12294,FRAMEQA28621,car,what is racing down the street?,tumblr_netcx4DbEN1u25ovvo1_400,63409,0 12295,FRAMEQA41343,two,how many girls are working in the science lab?,tumblr_nnkmkwlAgg1u14m77o1_500,44518,1 12296,FRAMEQA45987,three,how many guys are laughing and having the good time?,tumblr_nqm89nylYC1ut179vo1_250,5426,1 12297,FRAMEQA38690,two,how many men are demonstrating the martial arts move?,tumblr_n9e3fpyjjr1sq1mmgo1_400,60560,1 12298,FRAMEQA39757,submarine,what is following the small octopus?,tumblr_n9idf18Lt31sjcycuo1_250,73363,0 12299,FRAMEQA569,yellow,what is the color of the suit?,tumblr_na2s3oGmK91sekz9eo1_400,48596,2 12300,FRAMEQA19124,car,where is the young man driving?,tumblr_nh90mv4OUV1u5g7cbo1_500,97835,3 12301,FRAMEQA34722,koala,what did the guy pet?,tumblr_nedbvrPn4z1soryl3o1_250,9575,0 12302,FRAMEQA6856,black,what is the color of the dress?,tumblr_nbibmsndP11qgo24yo1_500,14665,2 12303,FRAMEQA30093,two,how many guys is this image of playing around with each other?,tumblr_nj9u3afOHJ1u182quo1_400,59550,1 12304,FRAMEQA28087,cigarette,what is the young man inhaling and then exhaling it?,tumblr_ndinyiORQx1rea9v7o1_400,5041,0 12305,FRAMEQA4250,wand,what is the man in a suit waving?,tumblr_ngc5q2xB581thb2ogo1_500,60097,0 12306,FRAMEQA38861,white,what is the color of the shirt?,tumblr_njoamk0kmi1unf50eo1_250,16053,2 12307,FRAMEQA49692,black,what is the color of the sweatshirt?,tumblr_nhrwzi3knp1u7yxjso1_400,54436,2 12308,FRAMEQA13969,white,what is the color of the dress?,tumblr_ndz0m09qvM1qmy2v2o1_400,49927,2 12309,FRAMEQA37137,helicopter,what rotors are spinning around?,tumblr_nbbqb0Csnu1s0ov26o1_250,4326,0 12310,FRAMEQA14859,dishes,what are the man and woman putting into a dishwasher?,tumblr_n7cuepMM7D1rs656zo1_500,7366,0 12311,FRAMEQA17690,two,how many rats are running around on the person 's shoulder?,tumblr_nguvutkldj1rs0i14o1_400,46819,1 12312,FRAMEQA42940,hat,what is the girl with the red hair wearing and winking?,tumblr_nqwyzvjvLa1qe4iy8o1_540,91901,0 12313,FRAMEQA52554,hat,"what is the woman , wearing , smiles as her hair blows in the wind?",tumblr_nqgv891zpE1uwsg6vo1_250,25463,0 12314,FRAMEQA36259,cat,"what tries , and fails , to jump into the window?",tumblr_nq6fgo0RyG1tk2ngvo1_400,71717,0 12315,FRAMEQA13699,hat,what is the man wearing with a female to his side?,tumblr_ncsf9rU2Ne1rqdtjdo1_250,350,0 12316,FRAMEQA27874,car,what is rolling down the road?,tumblr_ne9ty1C8Dw1tr5tuwo1_500,89701,0 12317,FRAMEQA16857,black,what is the color of the shirt?,tumblr_n9hzp32P4s1txqrq4o1_250,36070,2 12318,FRAMEQA6255,two,how many boys start kissing in front of a door?,tumblr_nc66lyqL3m1qek177o1_250,51417,1 12319,FRAMEQA44018,guitars,what are men playing on a stage?,tumblr_naerdqWgh41tzuas5o1_250,24977,0 12320,FRAMEQA18698,dog,what is trying to bite to the man?,tumblr_n91362IjQP1syoifvo1_500,50369,0 12321,FRAMEQA8771,button,what does the cat press trying to wake the other cats?,tumblr_nc1cszD2L21tjdvfuo1_1280,54206,0 12322,FRAMEQA30155,brown,what is the color of the hair?,tumblr_nqpr8q1RhL1u7u1h7o1_400,78910,2 12323,FRAMEQA12292,black,what is the color of the jacket?,tumblr_njsf8qqbKL1rnj7d3o1_400,67332,2 12324,FRAMEQA24731,three,how many women is this image of onstage singing?,tumblr_n9wy2xDpUe1spkb1mo1_500,86393,1 12325,FRAMEQA13631,tram,what is being hit by the truck?,tumblr_n9fp6mawvc1tg4n19o1_500,89277,0 12326,FRAMEQA46918,two,how many woman are posing and having their photo taken on a mobile phone?,tumblr_ncau65g1Vf1tcmvxuo1_500,89216,1 12327,FRAMEQA17807,rope,what did two woman wrestling and one jump off?,tumblr_ne10yvmzlX1sk0i2mo1_250,27696,0 12328,FRAMEQA50666,green,what is the color of the laughing?,tumblr_newrcpj47E1u1ym3zo1_250,46934,2 12329,FRAMEQA19540,two,how many race cars drive around the corner and onto the grass?,tumblr_nhdvlzako31tx8mn0o1_400,78335,1 12330,FRAMEQA38009,black,what is the color of the men?,tumblr_n96u6soS9v1tw0ucfo1_400,26456,2 12331,FRAMEQA6455,bouquet,what is the man with blond hair checking while riding a bicycle?,tumblr_ng47s11WJM1tg9gzmo1_250,6727,0 12332,FRAMEQA36241,red,what is the color of the outfits?,tumblr_nhzhvabsfq1s4nyalo1_400,26694,2 12333,FRAMEQA31361,three,how many men are fighting outside in front of a brick building?,tumblr_nhmmpyhAPw1u6zld7o1_400,65136,1 12334,FRAMEQA17446,black,what is the color of the hair?,tumblr_nb9zafvwGL1rl5d36o1_500,55268,2 12335,FRAMEQA7660,bag,"what is the man threatening , and then is knocked down when it hits him in the head?",tumblr_nb2rrohsTR1tdjuqvo1_400,35009,0 12336,FRAMEQA38576,two,how many young men in pink shirts are listening to music?,tumblr_n9tn1eXLPK1rodd5bo1_400,33070,1 12337,FRAMEQA8563,white,what is the color of the clothing?,tumblr_nbc09eXkFv1s74qico1_400,28454,2 12338,FRAMEQA28665,three,how many young man are sitting on the track?,tumblr_njpli3zQQe1rp9eo2o1_400,62860,1 12339,FRAMEQA20946,road,what are multiple cars going at night in front of a building?,tumblr_nqtams4V1k1u2ep9yo1_500,61078,0 12340,FRAMEQA41523,white,what is the color of the mask?,tumblr_nk5pn1wSC41r36r8mo1_500,34236,2 12341,FRAMEQA2388,tank,what is doing doughnuts in the street?,tumblr_nfbymug4lI1tjxr89o1_400,69634,0 12342,FRAMEQA50519,red,what is the color of the hair?,tumblr_n932r0pFvS1tuatvvo1_400,53129,2 12343,FRAMEQA30377,dog,what is doing the person fall by moving the chair?,tumblr_nh42ws7eWR1tatohao1_400,36756,0 12344,FRAMEQA4468,two,how many men are eating cereal in the kitchen?,tumblr_n1wdvaQgaI1scy8zoo1_400,36893,1 12345,FRAMEQA52020,black,what is the color of the person?,tumblr_n9wbyaTXBZ1t4mpk7o1_400,35386,2 12346,FRAMEQA19135,store,where are the bunch of people in costumes dancing?,tumblr_nglg3nxlfk1u5yqiao1_250,18183,3 12347,FRAMEQA48564,two,how many men are talking while one of them is holding a cell phone?,tumblr_nhewmmMC4c1t0w9oqo1_500,55471,1 12348,FRAMEQA44934,purple,what is the color of the hair?,tumblr_nq7qb9gPYT1rqy843o1_500,87665,2 12349,FRAMEQA11925,brown,what is the color of the hair?,tumblr_nqee177Pf91u8ivvko1_500,57337,2 12350,FRAMEQA2451,two,how many girls is doing funny things while a group of guy laughing for this?,tumblr_no5t4dcaVG1r4hud9o1_500,81839,1 12351,FRAMEQA89,tie,what is the woman fixing?,tumblr_n9ycr8zaLA1to7bdco1_250,1859,0 12352,FRAMEQA52081,pool,where are two people standing they kiss?,tumblr_nbuvcycrMb1tana87o1_250,78506,3 12353,FRAMEQA8441,ball,what did the boy kick and it hit the other boy in the face?,tumblr_nkquyuZT3T1t382eqo1_500,72560,0 12354,FRAMEQA30747,two,how many guys in motorcycle are running in a track?,tumblr_n9bdapPO481sc9qyco1_400,36760,1 12355,FRAMEQA29666,white,what is the color of the bags?,tumblr_nqveo9P2as1tae455o1_400,66327,2 12356,FRAMEQA6099,two,how many men does this show having a serious conversation?,tumblr_nr7xhpFqh11rcr8lfo1_400,79005,1 12357,FRAMEQA14052,brown,what is the color of the hair?,tumblr_ne32rt51C21tlipiko1_500,68467,2 12358,FRAMEQA24447,blue,what is the color of the jeans?,tumblr_nqfp68NX3i1uqzd68o1_250,18016,2 12359,FRAMEQA29605,car,what is speeding along the dirt race track?,tumblr_nqjman0b8a1qcehyco1_400,50340,0 12360,FRAMEQA11560,red,what is the color of the dress?,tumblr_n8x5byGReo1tn5k2xo1_250,38397,2 12361,FRAMEQA52330,cat,what is looking up and meowing?,tumblr_ncql8t7uii1u073goo1_400,33354,0 12362,FRAMEQA14111,rabbit,what is chewing vegetation beside the wire cage?,tumblr_ncbbj6piQ91qkplr2o1_250,2118,0 12363,FRAMEQA26931,cat,what is playing with the hand?,tumblr_npfcfptpJX1u0chl3o1_400,26346,0 12364,FRAMEQA36219,machine,what is the person holding and pressing it on the object?,tumblr_nkr7dew1PD1qfozfoo1_500,60586,0 12365,FRAMEQA1664,black,what is the color of the eyeglasses?,tumblr_n9sjupl61n1ss0n50o1_500,84015,2 12366,FRAMEQA17677,machine,what is the person operating?,tumblr_nfci1eCnqd1u33ci0o1_400,52870,0 12367,FRAMEQA19878,glasses,what is the handsome singer with sunglasses pointing something and taking off?,tumblr_nd69q1hjQR1s3j2wso1_250,6509,0 12368,FRAMEQA45791,cat,what is cuddling with several baby chickens?,tumblr_niwp74ihnO1slwrsuo1_400,75890,0 12369,FRAMEQA41099,gray,what is the color of the wings?,tumblr_ndr9dyUwwa1u1ijg8o1_400,26386,2 12370,FRAMEQA1091,black,what is the color of the guys?,tumblr_ndlwghHVNJ1s230fzo1_400,59672,2 12371,FRAMEQA28861,two,how many men in black clothing stand next to each other without talking?,tumblr_nqs999ZRhM1uxceulo1_400,26066,1 12372,FRAMEQA25776,picture,what is the man having taken and he is excited?,tumblr_ncgak2vIUB1tmaii4o1_250,43999,0 12373,FRAMEQA10096,curve,what is the blue car going around with smoke coming from the back tires?,tumblr_n9k66hDtUT1s9lpi5o1_400,54195,0 12374,FRAMEQA42133,four,how many men are hugging and talking to each other?,tumblr_nr9vqonvXy1s3i7d8o1_400,88554,1 12375,FRAMEQA51598,two,how many men are kissing each other?,tumblr_nk9dltHpeu1unm6mmo1_250,48059,1 12376,FRAMEQA2289,hat,what does the boy lift off over his head?,tumblr_na8mwwLFDM1skvnslo1_400,58275,0 12377,FRAMEQA12203,bear,what is waving back at the person in a car?,tumblr_npdhumxlMs1sxvd87o1_250,27329,0 12378,FRAMEQA47783,mask,what was the person in a green sweater wearing?,tumblr_n9n4s1RWyG1tyxuumo1_400,30158,0 12379,FRAMEQA53077,cigar,what does the man put into his mouth?,tumblr_np0q4uRErR1sgyo02o1_540,89856,0 12380,FRAMEQA41357,mirror,where is the person wearing white platform heels and a white dress is?,tumblr_ncz222VcuZ1ttuz3po1_400,1324,3 12381,FRAMEQA7027,white,what is the color of the bulldozer?,tumblr_nbbzyuGwCp1tfmrz4o1_400,69289,2 12382,FRAMEQA30094,instruments,"what are the group of people singing , dancing , and playing?",tumblr_nes951ulUD1t9h1yfo1_400,82397,0 12383,FRAMEQA2566,bubbles,what are two girls chewing gum and blowing?,tumblr_nlzvsya1WR1tfjrdno1_400,31404,0 12384,FRAMEQA46383,rifles,what are some men passing to another man and he throws them out the window?,tumblr_n96u6soS9v1tw0ucfo1_400,26456,0 12385,FRAMEQA39008,red,what is the color of the dress?,tumblr_niv9le0oMs1rdh8nto1_250,2453,2 12386,FRAMEQA36984,black,what is the color of the car?,tumblr_nnzxkpnkEc1t9qxjmo1_250,48965,2 12387,FRAMEQA33791,black,what is the color of the coat?,tumblr_n9f88htQ4d1trf38oo1_500,94219,2 12388,FRAMEQA48321,car,what is being driven down the street?,tumblr_ng03s2BcRY1u25ovvo1_400,63607,0 12389,FRAMEQA49586,black,what is the color of the scarf?,tumblr_n91v0cmZja1qfees0o1_400,78689,2 12390,FRAMEQA50587,blue,what is the color of the uniform?,tumblr_nq28douqgC1spshbgo1_400,57460,2 12391,FRAMEQA20048,yellow,what is the color of the flower?,tumblr_nkwxxlRnvb1sfdqnro1_400,38744,2 12392,FRAMEQA4278,two,how many women are dancing in the house?,tumblr_nq7l0nMeLY1sp0r62o1_250,80776,1 12393,FRAMEQA5971,cigar,what is the dark haired man smoking and smiling?,tumblr_nbhkpbYVJn1sbqayyo1_250,6728,0 12394,FRAMEQA36249,four,how many girls are clapping and singing in the van?,tumblr_n8x7dbUQBA1t5z27go1_400,58848,1 12395,FRAMEQA45566,shirt,what is the man singing and raising up?,tumblr_necxqcJTa91tfeeomo1_250,2075,0 12396,FRAMEQA33478,brown,what is the color of the hair?,tumblr_nhqcsyyIQW1u7vqebo1_500,37666,2 12397,FRAMEQA48472,handrail,what does the person on a skateboard jump on and off?,tumblr_nkxxsnLvRY1rdteg8o1_250,15862,0 12398,FRAMEQA18538,guitar,what is the handsome man in white playing with sweeping?,tumblr_ncj0b4qFmm1tk9c2ao1_400,4727,0 12399,FRAMEQA30158,panda,what is the man in a panda hat holding?,tumblr_nhrq4zTBiW1td8ijso1_400,54537,0 12400,FRAMEQA34614,dog,what is staring out the window of a car as the window is rising?,tumblr_noejltSfgA1tpg4boo1_400,17989,0 12401,FRAMEQA45345,window,what is the woman sitting in a car and he rolls up?,tumblr_nq3tfgU9Ir1srvjxao1_400,27347,0 12402,FRAMEQA15291,white,what is the color of the chair?,tumblr_ng8k3m3Omi1tmemc1o1_250,15943,2 12403,FRAMEQA10559,red,what is the color of the cup?,tumblr_nf19z5qOg31s8zojyo1_250,12232,2 12404,FRAMEQA18829,orange,what is the color of the shirt?,tumblr_n9mxo7lBDU1ttpy61o1_250,10604,2 12405,FRAMEQA5443,black,what is the color of the shirt?,tumblr_n9c8fvLd8Z1qzl812o1_400,63989,2 12406,FRAMEQA34954,cat,what lies on the couch and holds its paw?,tumblr_nimjqmgul31u94evjo1_500,70177,0 12407,FRAMEQA11836,dog,what is being pulled by somebody?,tumblr_ngq2i7dlYh1s6zpepo1_400,37532,0 12408,FRAMEQA51316,pig,what is licking the black and white cat?,tumblr_npabf7wMc81tatohao1_250,36414,0 12409,FRAMEQA4082,purple,what is the color of the chair?,tumblr_ne4u6hTLLc1ssgyoro1_250,8096,2 12410,FRAMEQA8261,two,how many men on a plane are talking?,tumblr_n9db76KvdN1td6onfo1_500,52858,1 12411,FRAMEQA46835,chair,where is the woman with glasses spinning?,tumblr_nhdpcfJ9wz1r440y4o1_400,32240,3 12412,FRAMEQA51038,two,how many men are kissing each other passionately?,tumblr_ng66xtlMK21t7a8jmo1_400,98788,1 12413,FRAMEQA47098,pug,what stammers across the carpet?,tumblr_na4zqx8sRJ1tdjuqvo1_250,74416,0 12414,FRAMEQA46896,three,how many young boys are standing together making faces?,tumblr_njxosqUqVm1r2uad8o1_250,5917,1 12415,FRAMEQA13964,two,how many people are skateboarding through the building?,tumblr_ncmis5JfW31u05byho2_400,63140,1 12416,FRAMEQA36683,room,where are two dancers dancing?,tumblr_nnjn15MCNP1tsnqf4o1_400,61799,3 12417,FRAMEQA39975,black,what is the color of the hat?,tumblr_nhtvoxRl041u79y8lo1_250,1943,2 12418,FRAMEQA48114,chair,where does the man sit while a dog plays with a stuffed animal?,tumblr_nl2xspzYUT1qijtyio1_400,79663,3 12419,FRAMEQA7051,cat,what is playing with an ornament that is hanging from a tree?,tumblr_ngwe7aRwEW1u4lqc0o1_250,38433,0 12420,FRAMEQA9352,box,what does the man open with a woman inside?,tumblr_nfy1t75y9M1u3e81vo1_400,85949,0 12421,FRAMEQA6549,blue,what is the color of the car?,tumblr_nfqzsmdHTC1s70xu2o1_500,75116,2 12422,FRAMEQA3211,two,how many women are fighting in the cage?,tumblr_ngzs5oG4kT1tkvhb9o1_500,95880,1 12423,FRAMEQA20900,black,what is the color of the hat?,tumblr_nk0j3eBcXX1u2opi9o1_250,18216,2 12424,FRAMEQA51143,white,what is the color of the dancer?,tumblr_nkzcdc7sV61u9tojjo1_400,65212,2 12425,FRAMEQA7714,white,what is the color of the t-shirt?,tumblr_ndejq7e6p91tse7gxo1_500,71128,2 12426,FRAMEQA25459,cats,what are turning their heads while other cat is sleeping?,tumblr_nfcolpASZD1sht3fmo1_250,68601,0 12427,FRAMEQA44124,dog,what is going crazy to get his dog toy?,tumblr_nldp47uOSl1sht3fmo1_250,69272,0 12428,FRAMEQA38315,car,what is chasing the motorcycle and crashes?,tumblr_nakx4m3btR1r27dg6o1_400,18991,0 12429,FRAMEQA41288,shop,where are the couple facing each other?,tumblr_nmrqhx5WTR1u3bvteo1_r4_540,101942,3 12430,FRAMEQA35755,dog,what is drinking in the toilet?,tumblr_nbfbih9DeO1slwrsuo1_400,15753,0 12431,FRAMEQA52543,horse,what gallops across the field as the rider hangs on?,tumblr_ndlmqd8eIh1tidcnvo1_400,64316,0 12432,FRAMEQA18648,white,what is the color of the man?,tumblr_nbc1qnKRyZ1tvtr5do1_250,53196,2 12433,FRAMEQA32015,cat,what is trying to eat the crisp on its nose?,tumblr_nf8v68juoo1tk2ngvo1_400,11503,0 12434,FRAMEQA12219,two,how many people are dancing while others are clapping?,tumblr_nfnhyhQANN1slj978o1_250,81402,1 12435,FRAMEQA32172,two,how many women are standing up smiling and looking at each other?,tumblr_nkb2mlv8QK1ts8v1qo1_500,29048,1 12436,FRAMEQA3321,two,how many people push against the brick wall together?,tumblr_ngfca2PQ9u1qfgmtoo1_500,94150,1 12437,FRAMEQA49824,black,what is the color of the yawning?,tumblr_nk52edbKl91ra78amo1_100,12594,2 12438,FRAMEQA4261,bar,what is the man doing a pull up and collapses so he falls over?,tumblr_ndbpqalJWW1sdss0qo1_250,7264,0 12439,FRAMEQA40565,two,how many women with long black hair are kissing?,tumblr_nhx5igYXE61u38aego1_500,73993,1 12440,FRAMEQA51888,two,how many men are hugging in front of a store?,tumblr_nagpey8Mbb1sq49qlo1_400,57790,1 12441,FRAMEQA11416,kitten,what is the young woman with long blonde hair holding?,tumblr_ni3zyv9YI61s3a96to1_400,96188,0 12442,FRAMEQA45532,two,how many people sat looking at each other and smiling?,tumblr_nk61a04KIs1tto5o6o1_250,39549,1 12443,FRAMEQA30724,pictures,what are two cute girls taking together and smiling?,tumblr_ncau65g1Vf1tcmvxuo1_500,89216,0 12444,FRAMEQA22802,black,what is the color of the man?,tumblr_naicguqfrP1t29pn7o1_250,17826,2 12445,FRAMEQA18637,two,how many people does there 's blowing smoke out of their mouth?,tumblr_nd8vbdRFut1shopj2o1_250,61352,1 12446,FRAMEQA43195,car,what is driving near an underpass?,tumblr_nfqoyfh3sz1u25ovvo1_400,63597,0 12447,FRAMEQA1918,two,how many women in short dresses are dancing on stage together?,tumblr_ne9ywnJtxX1t09iyco1_500,75498,1 12448,FRAMEQA30460,white,what is the color of the dog?,tumblr_ng850mh9Uy1slj978o1_400,34151,2 12449,FRAMEQA43552,man,what is eating noodles with chopsticks?,tumblr_nkihuwMaiG1qff887o1_500,53061,0 12450,FRAMEQA52102,cat,what is the green iguana fighting?,tumblr_nhn4qolyxQ1tgouwlo1_400,52435,0 12451,FRAMEQA32436,cigar,what is the man in the suit smoking?,tumblr_nh4kp4iSKN1rsfix9o1_500,50621,0 12452,FRAMEQA52521,cat,what is the baby petting then the cat attacks his head?,tumblr_n8kxz4xN4Y1ten01no1_250,34919,0 12453,FRAMEQA37528,dog,what is pushing skis to the ground and skiing on them?,tumblr_nh39e5Eyfh1u5quhyo1_400,14890,0 12454,FRAMEQA10098,bulldozer,what is someone handling very good?,tumblr_nbbzyuGwCp1tfmrz4o1_400,69289,0 12455,FRAMEQA43713,dog,what bites the kid that is playing with him?,tumblr_n91362IjQP1syoifvo1_500,50369,0 12456,FRAMEQA32181,cat,what is the boy holding and laughing?,tumblr_n9cts1gh8c1s7lbyno1_400,28871,0 12457,FRAMEQA37218,two,how many performers lit in pink and green are bowing?,tumblr_nrfehsYDWe1u7r745o1_400,46511,1 12458,FRAMEQA5737,bear,what is walking while its baby is hanging on to it?,tumblr_n9al1mawYK1thcwtbo1_500,70761,0 12459,FRAMEQA22949,star,what is trying to look cool?,tumblr_n9su71dIbK1sebl0go1_500,91707,0 12460,FRAMEQA10388,car,what is going down the country road?,tumblr_nelzs6i5ro1u25ovvo1_400,63645,0 12461,FRAMEQA31132,dog,what is the mop actually?,tumblr_nk3riuu61q1rojld8o1_400,79952,0 12462,FRAMEQA43489,black,what is the color of the hat?,tumblr_nezprh305B1u3a9tto1_500,73812,2 12463,FRAMEQA25913,black,what is the color of the pants?,tumblr_njoe9tQzNp1uneb7wo1_400,30081,2 12464,FRAMEQA48722,street,"where is the guy wearing a black shirt and long pants , stops a taxi?",tumblr_ncfhy9iq4a1tj3r8so1_500,87985,3 12465,FRAMEQA5970,cat,what is leaning around the back of a chair and falls off?,tumblr_nc0eqq49V51rw1wnno1_400,70838,0 12466,FRAMEQA3899,four,how many men with guitars are performing on stage?,tumblr_noeb5a1D4z1qzh9rto1_400,65285,1 12467,FRAMEQA50315,two,how many guns is the man walking and throwing?,tumblr_ng5sskpeoG1qmfh6ho1_500,67805,1 12468,FRAMEQA41804,speedometer,what is showing as the car is being driven?,tumblr_nrlmnuI9q01ti9lxjo1_500,71165,0 12469,FRAMEQA30629,dog,what moves in front of a baby and shakes his head?,tumblr_nanp56KwNG1ra8x2co1_250,12150,0 12470,FRAMEQA990,crow,what sits alone on the perch in the darkness?,tumblr_np0eq9SpgL1sxixu7o1_250,51670,0 12471,FRAMEQA19318,one,how many musician puts his arm around another as they are performing?,tumblr_nc29jdM0IG1t6t8bgo1_500,95727,1 12472,FRAMEQA31643,two,how many men are practicing kickboxing?,tumblr_nekdh5z6iB1tw8vf9o1_250,12479,1 12473,FRAMEQA36661,cat,what bats at the air with its paws while another cat passes by?,tumblr_npfcfptpJX1u0chl3o1_400,26346,0 12474,FRAMEQA27517,hat,what is the man singing into a microphone and wearing?,tumblr_nk72a3uSzE1t5jzovo1_400,37208,0 12475,FRAMEQA21419,rope,what is the boy holding attached to a horse that is rolling on the ground?,tumblr_nin6hhwnC81tehwjso1_r1_400,46462,0 12476,FRAMEQA30883,necklace,where is the young man putting on a black jacket?,tumblr_nfiklnpmXO1u1axtzo1_250,9046,3 12477,FRAMEQA27566,toy,what is the man in a hat petting?,tumblr_npahm5k3YQ1ro0x7uo1_250,24987,0 12478,FRAMEQA27764,two,how many young men are sat down and laughing together?,tumblr_naq3p4yhj41tgmmsko1_500,41849,1 12479,FRAMEQA39091,six,how many guys are laughing and moving around?,tumblr_no1f0h2OcY1uv46mio1_500,93531,1 12480,FRAMEQA7873,studio,where is the person laughing and clapping?,tumblr_npnyxidXvB1uxh7dyo1_540,101184,3 12481,FRAMEQA38354,noodles,what are three people eating out of bowls with chopsticks and their fingers?,tumblr_nbg6ia8wuI1typ81lo1_400,61990,0 12482,FRAMEQA31510,theater,where is the young man acting?,tumblr_nb7hggRDDi1qdlihgo1_400,26019,3 12483,FRAMEQA12302,black,what is the color of the hair?,tumblr_nkso8itnb61upyx5zo1_400,24750,2 12484,FRAMEQA15176,guitar,what is the guy wearing a dark colored shirt is playing and another guy wearing a light colored jacket is dancing behind him?,tumblr_nalxhkgg2y1rstjlro1_400,39089,0 12485,FRAMEQA30139,blue,what is the color of the shirt?,tumblr_njpf3em3hE1u9nqipo1_400,29525,2 12486,FRAMEQA4139,black,what is the color of the hair?,tumblr_n9k387Q7J11sfpmmio1_250,70263,2 12487,FRAMEQA11813,toy,what are two little puppies mimicking falling?,tumblr_nnzlhp8DpG1tgouwlo1_500,38497,0 12488,FRAMEQA30055,white,what is the color of the snow?,tumblr_nk550nmZNP1u8uroco1_400,52678,2 12489,FRAMEQA23516,dog,what is jumping over the man and the wooden stump?,tumblr_nk25ppxz3K1u300dqo1_500,36905,0 12490,FRAMEQA51783,black,what is the color of the suit?,tumblr_njvecaP9Jd1u3sr1fo1_250,86290,2 12491,FRAMEQA11985,curbs,what is the young boy jumping on his skateboard?,tumblr_noofyf3RYJ1r1mywzo1_400,34542,0 12492,FRAMEQA48998,white,what is the color of the man?,tumblr_ngjiqqaBNu1spwzqmo1_250,2649,2 12493,FRAMEQA4570,bird,what is on the ground chewing on something?,tumblr_ndr9dyUwwa1u1ijg8o1_400,26386,0 12494,FRAMEQA44391,two,how many women are naked in front of a crowd?,tumblr_naf8zdZnK81rjqtkto1_400,83201,1 12495,FRAMEQA30119,ball,what does the member of the soccer team head butt into the net?,tumblr_nl0ukbRIlb1tz9jaqo1_250,10757,0 12496,FRAMEQA16432,red,what is the color of the hat?,tumblr_nklvmbxVSC1qeurwuo1_250,53608,2 12497,FRAMEQA43409,black,what is the color of the suit?,tumblr_noq8ccdLyz1upk2b9o1_500,92604,2 12498,FRAMEQA7308,microphone,what is the woman holding?,tumblr_n8v1d0F3UI1tfrbpqo1_400,64099,0 12499,FRAMEQA42460,dog,what is pushing the cat into a bath of water?,tumblr_nbh3y0lqgx1tuj3bpo1_400,34855,0 12500,FRAMEQA1723,red,what is the color of the shirt?,tumblr_na0kusbUiR1thdynpo1_400,12305,2 12501,FRAMEQA47020,two,how many young boys are fighting in the boxing room?,tumblr_nf01q0SeKq1t657loo1_400,59903,1 12502,FRAMEQA43910,two,how many mice are fighting in the room?,tumblr_nd0odbifZp1tihaueo1_250,18445,1 12503,FRAMEQA35387,chair,where is the man in a red and white shirt sitting?,tumblr_nfca4ez3Sg1sva2fko1_500,89882,3 12504,FRAMEQA1343,glasses,what is the man wearing a black shirt is clinking with another person?,tumblr_nflzlx0vM81r8n07ho1_500,69323,0 12505,FRAMEQA51538,kitchen,where is the white man making a dance step?,tumblr_na89vurzQV1sdeofyo1_250,18583,3 12506,FRAMEQA40153,brown,what is the color of the girl?,tumblr_n8ug3oAT981rit0dno1_500,93869,2 12507,FRAMEQA232,black,what is the color of the kisses?,tumblr_nkxi6gXNzW1uphofro1_250,23054,2 12508,FRAMEQA23683,car,what is making the huge turn that makes the tire smoke?,tumblr_nb920sP7nG1s1g1ilo1_250,56169,0 12509,FRAMEQA18991,fox,what is diving into the hole in frozen ice?,tumblr_njq3ur8qv41unykvpo1_400,46132,0 12510,FRAMEQA10838,two,how many musicians are singing and playing guitar together?,tumblr_nk70ezm3eq1tkand4o1_400,33037,1 12511,FRAMEQA41371,two,how many women are kissing each other in a photo booth?,tumblr_na0a8uaKRe1tt3g2no1_500,86790,1 12512,FRAMEQA41052,dog,what is running in the sand and then looks away and falls down?,tumblr_ngsuhqvHMY1rzwvkdo1_400,59438,0 12513,FRAMEQA11313,window,what is the man with a tattoo on his neck looking out and talking?,tumblr_n9d938n4f41ryiglao1_400,75608,0 12514,FRAMEQA5539,bottle,what is the woman wearing a black swimsuit is squeezing?,tumblr_nqa72svB2q1uxws2zo1_400,24859,0 12515,FRAMEQA3361,black,what is the color of the woman?,tumblr_nb27r8UJbx1s3e4afo1_400,40934,2 12516,FRAMEQA41872,building,where is the woman riding an automatic wheelchair?,tumblr_ncq9kaqQ2R1tegl32o1_250,14927,3 12517,FRAMEQA10269,brown,what is the color of the hair?,tumblr_nhobtsS0jM1s86yfto1_250,9556,2 12518,FRAMEQA23751,cat,what is chasing the fish in the bathtub?,tumblr_nq62qusQ2Z1tk2ngvo1_500,69624,0 12519,FRAMEQA32676,two,how many people have the conversation with one another?,tumblr_npw5hmxHZ21tbfrz9o1_540,47665,1 12520,FRAMEQA7781,two,how many boys is wearing microphones are looking at something on the floor?,tumblr_nc2u4lDKeU1sbetrro1_400,81245,1 12521,FRAMEQA20504,black,what is the color of the jacket?,tumblr_nquj86RWoW1uyk370o1_250,10534,2 12522,FRAMEQA29457,three,how many women dance together using the same moves?,tumblr_nptbdl1fVs1tw4vtzo1_400,50182,1 12523,FRAMEQA25802,cat,what pushes another cat away and says stop?,tumblr_nefmbhSoi71sg891po1_400,18465,0 12524,FRAMEQA4509,red,what is the color of the coat?,tumblr_nkc5p4HgO11u4ycd0o1_400,33076,2 12525,FRAMEQA41338,orange,what is the shell of an orange lifting?,tumblr_nl0lw9PkLw1sht3fmo1_250,72976,0 12526,FRAMEQA26057,cat,what is playing on the bed with the burgundy pillows and white sheet?,tumblr_ne5w7sROwX1tjdvfuo1_400,80200,0 12527,FRAMEQA10723,white,what is the color of the man?,tumblr_nqbbzhKA201scl2ypo2_500,63751,2 12528,FRAMEQA30081,car,what is spinning on the track during a car race?,tumblr_nbcrueGce81tx8mn0o1_400,82134,0 12529,FRAMEQA29348,white,what is the color of the shirts?,tumblr_ndxcge7SrF1t0ojyvo1_500,50672,2 12530,FRAMEQA52237,robot,what is blinking eyes?,tumblr_nbtlpb4htq1sh1sffo1_500,49489,0 12531,FRAMEQA22650,bird,what is walking around on water on a counter?,tumblr_nblj3dVAIl1sm013wo1_400,65862,0 12532,FRAMEQA4364,cats,what are shoving each other and fighting?,tumblr_nefmbhSoi71sg891po1_400,18465,0 12533,FRAMEQA42800,two,how many girls are talking sitting in the room?,tumblr_nhxq4ucmdv1tg5klqo1_250,16910,1 12534,FRAMEQA8061,lanes,what is the red luxurious car switching on the highway?,tumblr_noipe7K8wn1uvy8rfo1_500,87621,0 12535,FRAMEQA40353,two,how many people are walking in opposite directions and slightly bump into each other?,tumblr_npf71mXOMJ1t0ojyvo1_500,100347,1 12536,FRAMEQA46975,catwalk,what is the young woman walking at a fashion show?,tumblr_nhs5zds8og1rozqomo1_400,6322,0 12537,FRAMEQA11152,two,how many children are dancing in front of a sofa?,tumblr_ncx8m7JUJA1u0zc9co1_100,4885,1 12538,FRAMEQA32787,two,how many friends are fooling around?,tumblr_na1bn69Oiv1tbazi6o1_400,28518,1 12539,FRAMEQA31769,guitar,what is the woman with long dark hair playing?,tumblr_nnx0fkTpf01sbd59so1_500,41850,0 12540,FRAMEQA19230,three,how many girls is this singing?,tumblr_ncehmvUQzC1tmicsyo1_400,59826,1 12541,FRAMEQA18767,door,what did the guy hit before getting out?,tumblr_nckdyss7jl1ttgixso1_400,81225,0 12542,FRAMEQA30296,bicycle,"what is the man riding off a ramp , over multiple vehicles and lands on another ramp?",tumblr_nbp8yjtLBO1qk2t5po1_400,58655,0 12543,FRAMEQA49318,wolves,what are clinging on to the man?,tumblr_nj458883cd1qdn0lqo1_500,48918,0 12544,FRAMEQA7532,white,what is the color of the water?,tumblr_nat8lfrtLm1ttdel3o1_250,14552,2 12545,FRAMEQA5709,three,how many beautiful girl are filming themselves while talking?,tumblr_nki97gCmDh1s3uqzwo1_250,4472,1 12546,FRAMEQA18130,pool,where is the man rubbing his body?,tumblr_nacxsoAe7U1tcn68vo1_400,37565,3 12547,FRAMEQA31582,laundry,what are the pair of men together?,tumblr_nqrag9xM6l1qi27q9o1_250,40814,0 12548,FRAMEQA47685,two,how many turtles are swimming with some fish?,tumblr_n9r1ab8DhJ1twtgiao1_400,59201,1 12549,FRAMEQA27729,two,how many people is holding hands are backing away?,tumblr_ne28pi81sm1twibc7o1_500,85312,1 12550,FRAMEQA38301,horse,what is the man dismounting?,tumblr_nijsejJz481snpgaao1_r2_400,19571,0 12551,FRAMEQA50204,pipe,what is the man wearing a hat is smoking?,tumblr_nejj0xVfBd1s9dtupo1_400,29070,0 12552,FRAMEQA50598,two,how many people danced on a stage and sing in front of others?,tumblr_no5a69ZeuT1usb61xo1_400,48931,1 12553,FRAMEQA25950,room,what does the couple enter looking around nervously?,tumblr_ngsm91Asda1sxvooxo1_250,3046,0 12554,FRAMEQA51595,red,what is the color of the hair?,tumblr_nqwyzvjvLa1qe4iy8o1_540,91901,2 12555,FRAMEQA40351,wand,what does the man stares in awe as a woman in a parka hold up?,tumblr_na6mivxvws1t9b0t3o1_250,16068,0 12556,FRAMEQA33420,two,how many ugly girls are sitting and talking to someone?,tumblr_nbbtdqZdwQ1tkyxjzo1_500,80616,1 12557,FRAMEQA45347,two,how many high fives does woman get denied during tv show?,tumblr_nq5ljp5DaL1uygmxjo1_400,21139,1 12558,FRAMEQA15710,two,how many men is this standing and laughing?,tumblr_n8xoi33thn1tuoukno1_250,13455,1 12559,FRAMEQA1070,guitar,"what is the musician , holding , laughs into a microphone and then puts her fingers up to her lips?",tumblr_nilncsL7s01svos5ho1_400,40974,0 12560,FRAMEQA32660,room,"where is the girl with dark brown hair , peeking?",tumblr_nh2les6Lt11t5ojzdo1_250,81335,3 12561,FRAMEQA44533,black,what is the color of the men?,tumblr_nnjwd9zoNn1upsi9qo1_400,66967,2 12562,FRAMEQA51020,cigarettes,what are the group of young women drinking and smoking?,tumblr_navra9c1nQ1tkqswzo1_500,37649,0 12563,FRAMEQA11578,cup,what is the girl wearing glasses is holding?,tumblr_nn2rzl5NVF1utwz4no1_400,11474,0 12564,FRAMEQA1275,bells,what is muscled man lifting with weights on them?,tumblr_nk3yqfO8ln1s83lk7o1_400,97568,0 12565,FRAMEQA13411,white,what is the color of the gloves?,tumblr_na371ywy2Y1r8f3ano1_500,46216,2 12566,FRAMEQA10888,fish,what is swimming close to the surface of the water?,tumblr_nahb37wZcQ1tbjfazo1_400,64226,0 12567,FRAMEQA27869,horse,what is running happily around the brown horse?,tumblr_nj9uwvyjpy1r23fzwo1_500,59214,0 12568,FRAMEQA7736,sill,what does the cat then fall off?,tumblr_nrbcaupBvH1tfnm8co1_400,10153,0 12569,FRAMEQA17727,two,how many people are sitting down and then kiss?,tumblr_no4mczo7UB1qirwpco1_500,98207,1 12570,FRAMEQA866,two,how many man are dancing around the car in the city?,tumblr_ndyf9zKF011qi9fe9o1_250,21199,1 12571,FRAMEQA563,blue,what is the color of the hair?,tumblr_ncj7chue1D1tt55ezo1_500,67237,2 12572,FRAMEQA10606,brown,what is the color of the hair?,tumblr_nk8w9d5ZgH1r0vo80o1_250,16016,2 12573,FRAMEQA21270,gray,what is the color of the eyes?,tumblr_ni39tcOdRU1u8nz0jo1_400,59710,2 12574,FRAMEQA27001,black,what is the color of the hair?,tumblr_ngwfgtA7Yl1rvg7fao1_400,31742,2 12575,FRAMEQA7666,two,how many people are staring into each others eyes?,tumblr_n9542cu8vT1qgluiuo1_250,82941,1 12576,FRAMEQA46048,red,what is the color of the shirt?,tumblr_ng0sfoJ1LW1rgc9a3o1_250,30174,2 12577,FRAMEQA42010,car,what is driving through an open grassy area?,tumblr_ngf9rveb2q1sh98coo1_400,94749,0 12578,FRAMEQA30413,red,what is the color of the lines?,tumblr_no109jnJVv1u8k4roo1_500,62452,2 12579,FRAMEQA50228,hat,what is the girl wearing and laughing in a kitchen?,tumblr_nf9m8zTe8u1rlog3io1_400,79038,0 12580,FRAMEQA44562,blue,what is the color of the shirt?,tumblr_n9sxngq7FO1tq1ky8o1_250,48622,2 12581,FRAMEQA38810,green,what is the color of the shirt?,tumblr_nhrwlnA5yo1rvuwsco1_250,18509,2 12582,FRAMEQA47968,cigarette,what is the man wearing a black shirt is smoking?,tumblr_nbhkpbYVJn1sbqayyo1_250,6728,0 12583,FRAMEQA33695,pool,where is the young woman fooling around?,tumblr_nb2bek2f181shn0qyo1_400,1108,3 12584,FRAMEQA5750,raspberry,what is rolling over the pile of blueberries and raspberries?,tumblr_ncb4rh5u6V1tw6u06o1_500,74315,0 12585,FRAMEQA52649,brown,what is the color of the eyes?,tumblr_na6oo2PKSC1silsr6o1_400,35103,2 12586,FRAMEQA46238,dog,what kicks its legs while laying on the floor?,tumblr_nfxhsp8ug21s6zpepo1_400,68620,0 12587,FRAMEQA15092,black,what is the color of the clothes?,tumblr_np4dzwBgIT1rvfirpo1_500,7986,2 12588,FRAMEQA33763,two,how many motorcycles are speeding on the freeway?,tumblr_nc0160uqpI1sbrhq7o1_400,70301,1 12589,FRAMEQA10348,sauce,what is being poured over the ball of ice cream in a dish?,tumblr_ngj5js922h1qezxdbo1_250,23062,0 12590,FRAMEQA15377,ropes,what does the wrestler flip off crashing onto the opponent?,tumblr_ndk6ka1aJ91tk1he1o1_400,61761,0 12591,FRAMEQA14369,cat,what attempts to grab the paper from a shredder?,tumblr_na260dZVY11txmq72o1_250,26579,0 12592,FRAMEQA30023,tire,where is the woman rolling?,tumblr_nfrmsb7tal1t06o0xo1_400,67695,3 12593,FRAMEQA2981,three,how many cars raced?,tumblr_nit1e4bC5N1tx8mn0o1_400,96402,1 12594,FRAMEQA1356,puppy,what is playing with the little boy?,tumblr_nhve02JnVG1tjhld9o1_250,27694,0 12595,FRAMEQA28881,shark,what swims through the water and hits a cage?,tumblr_nbsow8trHJ1tlsvejo1_400,70700,0 12596,FRAMEQA46705,blue,what is the color of the shirt?,tumblr_nf3wn08K8f1tkgkzxo1_250,90971,2 12597,FRAMEQA8112,white,what is the color of the surfboard?,tumblr_ngbf58vaLD1u362qwo1_400,33500,2 12598,FRAMEQA41698,two,how many men are sitting on the couch and one jumps down?,tumblr_n9cgzncdk51ti63mdo1_1280,60376,1 12599,FRAMEQA45080,guitar,what is the girl catching something in his mouth and a guy is strumming?,tumblr_nep9y0gfLb1u393nmo1_500,82478,0 12600,FRAMEQA26034,drums,what is the guy with his hat on backwards playing?,tumblr_np337z8sUF1upx9wro1_400,26276,0 12601,FRAMEQA339,white,what is the color of the dress?,tumblr_n9g3lqfsMq1rdk1zoo1_400,60984,2 12602,FRAMEQA25144,clothes,what are two women clapping and wearing?,tumblr_ng18v4iOw91u4hyr2o1_500,94617,0 12603,FRAMEQA38508,one,how many player gets the ball in the goal?,tumblr_noyvipLa6l1tz9jaqo1_500,101592,1 12604,FRAMEQA10347,tail,what is the white and black cat holding and biting?,tumblr_na8ztgwPRU1tj8blpo1_250,11564,0 12605,FRAMEQA6681,black,what is the color of the hat?,tumblr_nctun9U7MZ1u0tx7oo1_250,21237,2 12606,FRAMEQA6739,car,what is on the road in traffic on a bridge?,tumblr_nd99tr1UmA1ruqk6ro1_250,4433,0 12607,FRAMEQA36608,red,what is the color of the shirt?,tumblr_nk38eaBV6Q1tci3xlo1_400,59416,2 12608,FRAMEQA40818,black,what is the color of the hood?,tumblr_njohpqycOr1sqbefno1_400,54082,2 12609,FRAMEQA8284,two,how many men in jackets walk back and forth?,tumblr_njmjxb7k221u7jlepo1_250,15391,1 12610,FRAMEQA44826,white,what is the color of the shirt?,tumblr_nrk9scBuwZ1uanc3bo1_400,45400,2 12611,FRAMEQA4622,two,how many soccer players give each other high fives?,tumblr_nbs730oWVP1samlj0o1_400,75109,1 12612,FRAMEQA4052,black,what is the color of the clothing?,tumblr_n98dcyLaEN1qbgpp5o1_500,11286,2 12613,FRAMEQA11791,two,how many men are talking?,tumblr_nat3hdvBzb1t0vmnto1_250,21840,1 12614,FRAMEQA15949,boxes,what do white-gloved hands move forward in a display?,tumblr_nit83eq5sB1u9se2do1_400,16211,0 12615,FRAMEQA17655,two,how many girls are laughing and crying at something?,tumblr_nrd6a5lSj81r5wqxpo1_400,91865,1 12616,FRAMEQA36897,sheep,what takes the tumble down the side of a hill?,tumblr_nfa0f8zRRV1rs02yxo1_250,40651,0 12617,FRAMEQA41569,black,what is the color of the hair?,tumblr_n9a6czZrIJ1qjcrtpo2_250,5564,2 12618,FRAMEQA27202,white,what is the color of the shirt?,tumblr_ngg87d3TAS1r21zwoo1_500,98313,2 12619,FRAMEQA52656,suited,how many men with microphones are dancing?,tumblr_ng476zEkYt1s7qa4ao1_500,99952,1 12620,FRAMEQA44747,black,what is the color of the background?,tumblr_n8vk28nV921tv6x4go1_500,68505,2 12621,FRAMEQA20593,black,what is the color of the custom?,tumblr_nrcelcGlRd1sht3fmo1_250,99243,2 12622,FRAMEQA43413,candle,what is the hand lighting with skulls around it?,tumblr_npltp08V9L1u8z9jdo1_500,62712,0 12623,FRAMEQA9472,room,where is the man doing something with his hands?,tumblr_ndg085f4PR1tlr8uoo1_r1_400,12298,3 12624,FRAMEQA45813,black,what is the color of the shirt?,tumblr_n8tct2H3oL1qdq9o9o1_500,72931,2 12625,FRAMEQA7297,shawl,what throws toward the display?,tumblr_nb0r065Oo51tyw2aro1_500,87640,0 12626,FRAMEQA10240,two,how many men walk up to each other and hug on stage?,tumblr_nhfkba24Lg1qgd51ro1_250,12591,1 12627,FRAMEQA23117,yellow,what is the color of the purse?,tumblr_nnzkzxzWdA1qhojs7o1_250,19244,2 12628,FRAMEQA45033,red,what is the color of the waves?,tumblr_nbn7v1oCAl1qzkw9zo1_500,79889,2 12629,FRAMEQA31190,guns,what are pointed at the man and he laughs?,tumblr_no84zvfF701qbz10so1_500,55032,0 12630,FRAMEQA26985,three,how many women walk up and down the catwalk?,tumblr_nc6v2rh5ZK1tlq7xdo1_400,67251,1 12631,FRAMEQA29655,coat,what does one man remove?,tumblr_ndcfe5F1iy1s2t7gvo1_500,88875,0 12632,FRAMEQA11761,blue,what is the color of the girl?,tumblr_n9v6lrTXZ01ruvb05o1_500,69254,2 12633,FRAMEQA50410,brown,what is the color of the hamster?,tumblr_n985jc2Wyr1sj2zt0o1_400,33712,2 12634,FRAMEQA50581,wakes,what up then hits itself with its paws?,tumblr_ndso8nSpZU1slj978o1_250,36754,0 12635,FRAMEQA10207,black,what is the color of the baseball?,tumblr_ni2u25RDlx1tkoeqqo1_250,19051,2 12636,FRAMEQA28268,one,how many man is giving another man a high five and hug?,tumblr_ndmv9f3Q8s1sren05o1_400,63952,1 12637,FRAMEQA19551,black,what is the color of the jacket?,tumblr_ng9radFwQ31ryp4dmo1_500,94389,2 12638,FRAMEQA1853,nightclub,where are the man and a woman kissing each other?,tumblr_nbydqkuA1n1s2odu5o1_400,16287,3 12639,FRAMEQA40531,car,what is the beautiful young woman driving?,tumblr_nqtjn9aMbk1qbvprao1_500,60192,0 12640,FRAMEQA2075,candle,what is being lit by a match?,tumblr_npltp08V9L1u8z9jdo1_500,62712,0 12641,FRAMEQA21121,suit,what are four men wearing with dark hair gesticulate?,tumblr_npxdqeQDlj1rndm3wo1_400,82713,0 12642,FRAMEQA31329,dog,what is kissing and showing affection to a girl?,tumblr_nqamqac9al1r2ro17o1_400,31560,0 12643,FRAMEQA21078,guitar,what is the young man smoking a cigarette and holding?,tumblr_nexprrqDDT1rmf606o1_250,16137,0 12644,FRAMEQA11213,two,how many women lay on a found with a young boy on their laps?,tumblr_nh6ogaoDLQ1tv8k7po1_400,70363,1 12645,FRAMEQA10235,black,what is the color of the coat?,tumblr_nklvhuCJ821qd8xguo1_400,7816,2 12646,FRAMEQA27337,red,what is the color of the shirt?,tumblr_nekdh5z6iB1tw8vf9o1_250,12479,2 12647,FRAMEQA15794,white,what is the color of the rat?,tumblr_n9emuzqIhv1sk96t7o1_400,42486,2 12648,FRAMEQA8307,car,"where does the person drive by shifting , applying the brake , and applying the gas as needed?",tumblr_nhszflfDwb1u1rggjo1_400,26159,3 12649,FRAMEQA26231,two,how many men are looking each other while talking and laughing?,tumblr_nfx7hdCQhQ1s57zi7o1_400,54111,1 12650,FRAMEQA17949,brown,what is the color of the hair?,tumblr_nbukvu8jjX1r97r00o1_500,85392,2 12651,FRAMEQA7724,two,how many young men are eating and playing with their food?,tumblr_nkoga4fMRx1r9ka6jo1_500,90422,1 12652,FRAMEQA21924,blue,what is the color of the shirt?,tumblr_nhkjauenZC1ssoar9o1_500,80923,2 12653,FRAMEQA20754,black,what is the color of the woman?,tumblr_nqtjn9aMbk1qbvprao1_500,60192,2 12654,FRAMEQA14095,black,what is the color of the cat?,tumblr_na403e8Ozd1qeda9uo1_400,55798,2 12655,FRAMEQA13503,can,what is the woman holding and flipping out?,tumblr_nr5189zMVE1tewmvuo1_400,32777,0 12656,FRAMEQA7779,brown,what is the color of the eyes?,tumblr_nrlffmM9Wd1uzmksuo1_250,37993,2 12657,FRAMEQA20619,drink,what had the loose cap?,tumblr_np9l67iE301te94myo1_400,19930,0 12658,FRAMEQA12879,octopus,what is emerging from the plant on the sea floor?,tumblr_nn8bxrdwTP1sht3fmo1_250,26655,0 12659,FRAMEQA37222,two,how many guys are sitting on the couch talking?,tumblr_nh40fkieup1sdbrm9o1_400,36772,1 12660,FRAMEQA12392,two,how many boys are watching something on a computer?,tumblr_nekejw2Vnh1tpgapwo1_500,77959,1 12661,FRAMEQA10078,poodle,what is chewing on the toy?,tumblr_nb40f1NWsK1tjrca2o1_400,65695,0 12662,FRAMEQA39291,two,how many men are sitting in chairs and talking?,tumblr_nao9y58N7P1qfy935o1_400,64283,1 12663,FRAMEQA21656,tuxedo,what is the man with long black hair wearing and looking down?,tumblr_nej1d4mOLQ1rnwhulo1_500,71777,0 12664,FRAMEQA41952,door,where is the woman kicking?,tumblr_nkjj7ntrNZ1ssgyoro1_250,2196,3 12665,FRAMEQA18592,two,how many boys are talking?,tumblr_negrp50MCD1rmfypqo1_500,97810,1 12666,FRAMEQA49945,black,what is the color of the man?,tumblr_nalhnwyik11shsap3o1_250,1250,2 12667,FRAMEQA22721,gum,what does the man put on the face of a doll?,tumblr_nhjoyzQcjX1shw3clo1_400,42357,0 12668,FRAMEQA7797,jacket,what is the man in a suit taking off?,tumblr_njvri85Mv81u33e4bo1_500,19169,0 12669,FRAMEQA14423,room,where are these two people moving around?,tumblr_ndd0liU8F51u0bmj8o1_250,59662,3 12670,FRAMEQA42182,black,what is the color of the jacket?,tumblr_nd6tq5naM61sq9h0ho1_400,13117,2 12671,FRAMEQA52374,dog,what pushes chair out from underneath man?,tumblr_npmetmIe3v1use8l1o1_400,36200,0 12672,FRAMEQA36986,two,how many guys sit on the sofa and high five while wearing horse face masks?,tumblr_n9hp20yyXi1ttuja3o1_400,65594,1 12673,FRAMEQA18077,four,how many women try to flip bottle caps?,tumblr_nafngzqDRD1teqt83o1_250,22609,1 12674,FRAMEQA36432,white,what is the color of the woman?,tumblr_nckd72nhSk1rbxxq5o1_250,2011,2 12675,FRAMEQA21303,two,how many men are staring straight ahead at an object?,tumblr_niw20xqfYh1qjzq4lo1_400,81088,1 12676,FRAMEQA45614,white,what is the color of the suit?,tumblr_nkn9fyd7VX1rr455so1_400,28361,2 12677,FRAMEQA29031,two,how many guys are making the commercial with a wave?,tumblr_nl0ll9YbS81un7qbto1_250,1782,1 12678,FRAMEQA5179,white,what is the color of the shirt?,tumblr_n91fdzM1VS1s1l4fio1_400,82743,2 12679,FRAMEQA29004,blue,what is the color of the sweater?,tumblr_nogmgpQqlA1r39im9o1_400,28559,2 12680,FRAMEQA33083,two,how many big rodents is the person wearing a dark gray jacket has climbing on him?,tumblr_naq4afnM0Z1s5o1jwo1_400,41704,1 12681,FRAMEQA39289,cat,what does the white cat push off a fence?,tumblr_nkv2wwA6vd1tatohao1_400,41874,0 12682,FRAMEQA16398,two,how many people are singing while wearing headphones?,tumblr_nixculfZ3b1qlbj8uo1_500,101727,1 12683,FRAMEQA34307,two,how many girls are laying on the couch?,tumblr_nh6ogaoDLQ1tv8k7po1_400,70363,1 12684,FRAMEQA38127,car,what falls out of an airplane?,tumblr_nexxznjybj1sto45zo1_400,42866,0 12685,FRAMEQA26310,black,what is the color of the outfit?,tumblr_nelgzg0Sl91r0oqh7o1_500,89347,2 12686,FRAMEQA38485,black,what is the color of the jacket?,tumblr_ndth24wYTb1tj3n6no1_250,40782,2 12687,FRAMEQA50258,two,how many twins women are smiling at each other?,tumblr_nbuq7antOu1t9h1yfo1_400,52004,1 12688,FRAMEQA33651,two,how many cups of beer is making attention of a man?,tumblr_nb814wDUHq1tjlz9vo1_500,74926,1 12689,FRAMEQA14985,guitar,what does the man play with other guys?,tumblr_niml4vDdxa1s43pimo1_500,87715,0 12690,FRAMEQA13802,two,how many people are walking beneath clothes that are falling from the sky?,tumblr_nirh7qn89K1u9pk5io1_250,35792,1 12691,FRAMEQA40105,white,what is the color of the dress?,tumblr_nfdhm4hgxd1qmjp5wo1_500,90886,2 12692,FRAMEQA41318,black,what is the color of the top?,tumblr_ncm5ybb69c1til9f1o1_250,22414,2 12693,FRAMEQA13356,toys,what are two small babies pulling from a shelf?,tumblr_nqyszt5Ni41td493xo1_500,70615,0 12694,FRAMEQA16412,microphone,what is the cute man with long hair smiling and holding?,tumblr_nfxgchqDN41tafdr6o1_400,26114,0 12695,FRAMEQA17022,ball,what does an american football player catches then drop?,tumblr_ni3g8t6mfz1u5ha1qo1_400,40995,0 12696,FRAMEQA52293,black,what is the color of the man?,tumblr_noks4v4Q2a1ut6u2zo1_400,41035,2 12697,FRAMEQA33142,dog,what opens his eyes as he looks to his right?,tumblr_nhiydsOcmj1rtdnfto1_400,74853,0 12698,FRAMEQA31874,white,what is the color of the shirt?,tumblr_n9e0qe1Ghp1sztu6fo1_400,54657,2 12699,FRAMEQA7653,white,what is the color of the shirt?,tumblr_nd931nZhS61s1ctsqo1_400,64632,2 12700,FRAMEQA30398,blue,what is the color of the shirt?,tumblr_ni4gbmLunr1rpqu91o1_500,77952,2 12701,FRAMEQA40543,candles,"what is the man staring around , and he 's?",tumblr_nrhrro71WM1stugz1o1_500,91536,0 12702,FRAMEQA22843,tree,what does the man with a blue face and horns sit buy?,tumblr_ngnw7hrGPi1u60vhlo1_400,33756,0 12703,FRAMEQA33824,dress,what is the woman wearing a black jacket reveals smiling?,tumblr_nr4vryXuiR1u9o6qbo1_400,19008,0 12704,FRAMEQA44756,cat,what ca n't stand on her legs and somebody is trying to pick her up?,tumblr_na9wv5Byt01qdd57go1_250,1884,0 12705,FRAMEQA34784,red,what is the color of the hair?,tumblr_ncmvsll5lm1t2wqhqo1_250,20790,2 12706,FRAMEQA48942,black,what is the color of the hair?,tumblr_n9o2c5bcu71ti2qwco1_400,91886,2 12707,FRAMEQA47182,two,how many police men are battening the blow up figure?,tumblr_nad9ej0PCm1sk96t7o1_400,63718,1 12708,FRAMEQA27744,bottle,what is the boy in a red shirt holding?,tumblr_nfv6g2nUvC1s3lpszo1_400,45443,0 12709,FRAMEQA41421,bra,what is the woman wearing and yelling at another woman?,tumblr_ngduwu0Imi1u4bf8bo1_250,43884,0 12710,FRAMEQA11657,skateboard,what is the man jumping down a short staircase?,tumblr_nbedaeuiR61r7t26uo1_400,52264,0 12711,FRAMEQA33469,cat,what is bouncing up and down on the chair?,tumblr_ne3xjjWRr51tdmffyo1_250,47903,0 12712,FRAMEQA4613,car,what did the man in a red car pass?,tumblr_netczdYQLZ1u25ovvo1_400,63490,0 12713,FRAMEQA8952,green,what is the color of the suit?,tumblr_ndphzaqD8L1u1zstqo1_250,27172,2 12714,FRAMEQA8434,brown,what is the color of the shirt?,tumblr_nkzmtegTVQ1tbjksno1_500,48354,2 12715,FRAMEQA2611,motorcycle,"what does the man wreck during a race , then skids on the ground?",tumblr_nbw7obBlMP1tx8mn0o1_400,52738,0 12716,FRAMEQA20819,two,how many people dance and look at each other while putting their hands on their chest?,tumblr_nqhv0vJeU91uswv18o1_400,63451,1 12717,FRAMEQA52427,two,how many young men are sitting down when one lifts his head and flips his hair back?,tumblr_n94hlvb0f81t1j5ogo1_250,2925,1 12718,FRAMEQA4019,red,what is the color of the jumper?,tumblr_n9mskz1L1d1tizn8ho1_400,30132,2 12719,FRAMEQA7052,bicycle,what does the man drive into a big puddle of water?,tumblr_nb0bvasOi81slj978o1_500,62301,0 12720,FRAMEQA35567,office,what does the man in a suit enter?,tumblr_nama5d6s5b1r67t5oo1_250,74400,0 12721,FRAMEQA20920,outdoors,what is the man smoking?,tumblr_nkostdKMvH1r2p4dho1_500,55012,0 12722,FRAMEQA47782,tire,what is the yellow car speeding down the road and is spinning fast?,tumblr_nbo3syb9wg1rhy09eo1_500,98035,0 12723,FRAMEQA16099,blue,what is the color of the light?,tumblr_navw512o8K1rm76eto1_250,15520,2 12724,FRAMEQA8417,laptop,what is the blond man holding and talking?,tumblr_nd6keloVPQ1tkz87ao1_250,53668,0 12725,FRAMEQA34609,red,what is the color of the carpet?,tumblr_nowj7atVBQ1s9g3wto1_500,48520,2 12726,FRAMEQA8099,doorway,where is the guy standing shooting another man?,tumblr_n9kwbo2P5H1rc6jvuo1_400,97799,3 12727,FRAMEQA25130,two,how many guys are shaking one finger to point a substitution?,tumblr_nr5gsre85l1rs13bbo1_400,72620,1 12728,FRAMEQA19268,road,what did the car videotape in front of them?,tumblr_ne00j9tc0m1tx8mn0o1_400,55497,0 12729,FRAMEQA48477,cap,what is the man wearing with white stars on it?,tumblr_njoamk0kmi1unf50eo1_250,16053,0 12730,FRAMEQA30252,skateboard,what is the boy grinding on a curb that is painted yellow?,tumblr_nrhak1ptv21uww5a5o1_500,55768,0 12731,FRAMEQA17345,guitar,what is the man with silver hair playing?,tumblr_n9665a9Aki1tggkgso1_500,47871,0 12732,FRAMEQA27109,blue,what is the color of the suit?,tumblr_n9w54dvKdg1tfn460o1_400,98240,2 12733,FRAMEQA27545,monkey,what does in the jungle do a strange dance?,tumblr_nd9es8cEtL1tc95klo1_400,77527,0 12734,FRAMEQA9108,instrument,what does two woman 's are singing with a microphone and playing?,tumblr_nbearz2UtH1tykzato1_500,91827,0 12735,FRAMEQA27136,lemon,what is the man talking and holding?,tumblr_nh02lkJR1E1rit4woo1_400,58244,0 12736,FRAMEQA26498,mask,what is the man wearing sitting next to another man on a couch?,tumblr_nc8usq5bxK1t6ckbko1_400,57386,0 12737,FRAMEQA47715,retriever,what is playing with eight to ten puppies in the snow?,tumblr_ne29e5pZmc1sz068fo1_250,40146,0 12738,FRAMEQA42589,white,what is the color of the dress?,tumblr_nhq7q5H9SZ1sdx3fko1_250,12928,2 12739,FRAMEQA43019,cat,what is the girl holding with her hand?,tumblr_ndab1nCacB1rjh61io1_400,37279,0 12740,FRAMEQA5205,cookie,what is the pop star feeding to somebody?,tumblr_ne1q71Yuov1u1xquho1_500,88088,0 12741,FRAMEQA22010,chair,where is the woman with blond curly hair thrashing?,tumblr_nkipeiHUUT1t5pc1to1_250,5147,3 12742,FRAMEQA51608,guitars,what are two young men singing and playing?,tumblr_navtszVYAv1tys35ko1_250,15994,0 12743,FRAMEQA36251,gray,what is the color of the shirt?,tumblr_nk56z23mbG1tn49sno1_500,14534,2 12744,FRAMEQA50413,car,"what pulls into the port , it stops at the edge?",tumblr_ne4xuxJjdk1sfxnzso1_250,82976,0 12745,FRAMEQA13905,black,what is the color of the men?,tumblr_nbafnh36931svh8clo1_250,1567,2 12746,FRAMEQA16760,two,how many figure skaters are skating on ice?,tumblr_nk6g6jC3h71u0skjdo1_500,52672,1 12747,FRAMEQA35190,gray,what is the color of the dress?,tumblr_njvqkbvG2J1u3xy1to1_250,16912,2 12748,FRAMEQA36952,black,what is the color of the man?,tumblr_nckb7kU2K51tvnqzoo1_500,35907,2 12749,FRAMEQA29676,mouse,what is the snake following around its container?,tumblr_n9emuzqIhv1sk96t7o1_400,42486,0 12750,FRAMEQA18133,two,how many people are shimming down the board?,tumblr_npeg2iKBbw1u9kj5io1_400,80041,1 12751,FRAMEQA51811,black,what is the color of the shirt?,tumblr_nelgzg0Sl91r0oqh7o1_500,89347,2 12752,FRAMEQA11156,yellow,what is the color of the object?,tumblr_ncdv4ebLbw1tenxbgo1_250,43929,2 12753,FRAMEQA8927,two,how many guys are poking each other in the chest with their fingers?,tumblr_nd8dp4ELQI1tkatv1o1_500,93303,1 12754,FRAMEQA10079,cat,what is the cat chasing down the hallway?,tumblr_ngv9m5pOMl1slj978o1_400,37576,0 12755,FRAMEQA28476,bowl,where is the boy wearing glasses is scooping?,tumblr_nkl0odLJ991txousio1_400,61880,3 12756,FRAMEQA13034,cat,what is doing the thumbs up with its paw?,tumblr_nimjqmgul31u94evjo1_500,70177,0 12757,FRAMEQA18498,two,how many wrestlers are fighting in an arena?,tumblr_nq17llk2YT1uxdlnuo1_400,53957,1 12758,FRAMEQA15538,two,how many guys are sitting down and laughing?,tumblr_nda2qhxKfP1tn1i0no1_500,88868,1 12759,FRAMEQA34897,bun,what is the young man laughing and eating?,tumblr_nfcu65SQil1u2kzjzo1_400,59354,0 12760,FRAMEQA24752,brown,what is the color of the hair?,tumblr_ngjiqqaBNu1spwzqmo1_250,2649,2 12761,FRAMEQA29789,bedroom,where are two young men making weird faces and then they hug?,tumblr_n9vuv0Bgll1ticpqdo1_400,57264,3 12762,FRAMEQA8778,cat,what is the duck following around the house?,tumblr_n92oq4Hega1ts0kzio1_400,34144,0 12763,FRAMEQA22914,two,how many teams are playing soccer on a soccer field?,tumblr_npvscxNKxo1u7q0qeo1_400,101284,1 12764,FRAMEQA8135,two,how many men are talking into?,tumblr_na2a5eoxn71qcsx7fo1_400,82233,1 12765,FRAMEQA22660,two,"how many interviewers talk to the lady with long black hair , as she puts it all on top of her head?",tumblr_nbuxofDUaP1trlo5to1_400,48690,1 12766,FRAMEQA7175,cat,what is sitting on something that is dark blue?,tumblr_nrf04cgRUC1ub19xmo1_400,52346,0 12767,FRAMEQA4919,black,what is the color of the bandanna?,tumblr_nkr302wD1d1s3xft0o1_400,66391,2 12768,FRAMEQA7500,mirror,"where does the young man look , but his reflection is doing something different?",tumblr_njy94yEQmy1u2wr7oo1_500,52664,3 12769,FRAMEQA37908,white,what is the color of the beard?,tumblr_nbcfhzsUZH1r7blyco1_400,89505,2 12770,FRAMEQA38490,tub,where is the woman sitting?,tumblr_mx0qn68mIL1r20fzqo1_500,99899,3 12771,FRAMEQA13648,cat,what is licking the stuffed toy?,tumblr_ncmnxtXMH81rd87k4o1_250,13409,0 12772,FRAMEQA45971,car,what is smoking and spinning out on the race track?,tumblr_nauhoyxzcP1tx8mn0o1_400,55526,0 12773,FRAMEQA20671,room,where are two men sword fighting?,tumblr_nr5h8ba4iB1s3wsijo1_500,69389,3 12774,FRAMEQA37240,bear,"what is the man and a woman , holding , are walking together?",tumblr_noyzyxj6MC1u6z5ppo1_400,40415,0 12775,FRAMEQA15466,three,how many people sat down on the boat and are getting wet?,tumblr_n9orznkSQa1sorauco1_400,79628,1 12776,FRAMEQA49948,white,what is the color of the girl?,tumblr_ngcmygDXIz1sn2hzqo1_500,86241,2 12777,FRAMEQA32422,red,what is the color of the hair?,tumblr_nat8wfWBFb1taq9qwo1_250,81591,2 12778,FRAMEQA33563,nightclub,where are two boys with dark hair standing?,tumblr_nbc7u35pYt1sdbrm9o1_400,65496,3 12779,FRAMEQA45049,hats,what is the man holding a microphone switches off another person?,tumblr_ncixxdsOHf1sxy0d0o1_250,35676,0 12780,FRAMEQA23534,bicycle,what is the lady riding through a neighborhood with a smile on her face?,tumblr_ndcf6u3qah1rd87k4o1_250,13573,0 12781,FRAMEQA22807,two,how many young people are standing next to each other in school?,tumblr_nk7pnd2mf41uo5sxwo1_250,20811,1 12782,FRAMEQA11386,black,what is the color of the hair?,tumblr_na2hqmICLQ1tsz0rqo1_1280,42172,2 12783,FRAMEQA30514,red,what is the color of the lipstick?,tumblr_na8990L7Lt1tjvqwmo1_250,40761,2 12784,FRAMEQA9995,elephant,what tries desperately to walk but keeps slipping into the mud?,tumblr_n922rsMb261te2f6lo1_400,82171,0 12785,FRAMEQA3459,two,how many men does there 's on a stage embracing and smiling?,tumblr_na6fj3GHOF1ti42h0o1_250,50962,1 12786,FRAMEQA40896,two,how many woman are making some moves in front of a man?,tumblr_ncbvir8XTq1sggdd3o1_250,41306,1 12787,FRAMEQA38291,red,what is the color of the room?,tumblr_nd5afoHKml1tfsdl2o1_250,17096,2 12788,FRAMEQA23297,syrup,what is someone pouring on a stack on pancakes?,tumblr_njwzuum2ZL1uo2vcso1_500,66772,0 12789,FRAMEQA15231,two,how many others smile?,tumblr_naand6DjAO1te592qo1_400,11636,1 12790,FRAMEQA26491,green,what is the color of the shirt?,tumblr_nbrh6eMkuA1tkdyoao1_400,82205,2 12791,FRAMEQA50924,two,how many young men are laughing and smiling together?,tumblr_nl11vrOCz81tmz5hco1_1280,55504,1 12792,FRAMEQA19496,two,how many men are having the conversation about clothing?,tumblr_njqh6ctwOo1s2fr9go1_250,10453,1 12793,FRAMEQA21683,ball,what is the guy receiving and he scores?,tumblr_ncknu7Of5u1rt0zdlo1_500,98907,0 12794,FRAMEQA25996,ball,what does the soccer player kick down the length of the field?,tumblr_n8w0s850qY1ttzauho1_500,100693,0 12795,FRAMEQA29112,blue,what is the color of the pants?,tumblr_nb3lneXQNe1qi5ldlo1_500,58974,2 12796,FRAMEQA34100,door,what is the blue puppet closing?,tumblr_nde98bVDhd1r21xqpo1_250,86043,0 12797,FRAMEQA5817,black,what is the color of the man?,tumblr_nfncd202K81spvhnko1_400,16269,2 12798,FRAMEQA9434,white,what is the color of the shoes?,tumblr_n8pwmrX2ZE1tfhnexo1_400,93372,2 12799,FRAMEQA51531,two,how many men are tying their shoes?,tumblr_nas7g5TPSK1rcv1w6o1_250,23194,1 12800,FRAMEQA25675,cars,what are racing around the track and one car spins off the track?,tumblr_nbatooeAde1tx8mn0o1_400,52734,0 12801,FRAMEQA48555,two,how many people disguised collide five in an office?,tumblr_noal004K181rk6mu2o1_250,80772,1 12802,FRAMEQA30254,two,how many people are looking at each other while one is shaking their shoulders?,tumblr_ndhu4bx6QO1t96l11o1_250,59151,1 12803,FRAMEQA18586,white,what is the color of the woman?,tumblr_na0rptDA7v1thtfeto1_400,69330,2 12804,FRAMEQA31222,black,what is the color of the coat?,tumblr_nrk1jrdGhR1uakcnho1_500,71562,2 12805,FRAMEQA51129,blue,what is the color of the mat?,tumblr_nf1cf3Neme1qdj4eqo1_400,41718,2 12806,FRAMEQA10421,dog,what walks up to the guy and sniffs his shoes?,tumblr_nam4laekMg1raer1zo1_500,90546,0 12807,FRAMEQA45176,one,how many woman is playing the guitar and another woman is singing?,tumblr_ngv80p45u21sewywlo1_250,39505,1 12808,FRAMEQA47101,white,what is the color of the top?,tumblr_n9ft5xtWBY1skz3lko1_500,72890,2 12809,FRAMEQA22099,hat,what is the woman?,tumblr_nh5j8beXJa1tmv4hpo1_500,72454,0 12810,FRAMEQA45880,white,what is the color of the man?,tumblr_nbcfhzsUZH1r7blyco1_400,89505,2 12811,FRAMEQA16030,shirt,what is the man eating something and wearing?,tumblr_nadr87nz2O1tjeyq6o1_250,11218,0 12812,FRAMEQA26527,two,how many men is this image of sitting down talking to each other?,tumblr_no14zzwIRx1u76qh3o1_250,7031,1 12813,FRAMEQA6589,boots,what is the white girl wearing black is tying up?,tumblr_nqgkjfHKBs1to8r9ro1_250,69441,0 12814,FRAMEQA46132,two,how many girls are playing around together?,tumblr_nacr4yNfLD1tej38vo1_400,28544,1 12815,FRAMEQA32800,two,how many men are moving around the room and one almost knocks the other over?,tumblr_n9r0jnVOmO1qfhxh5o1_400,65939,1 12816,FRAMEQA41255,mat,what did two professional wrestlers hit at the same time?,tumblr_ndrv41jHnK1rlowhpo1_400,63063,0 12817,FRAMEQA7700,device,what does the man twist?,tumblr_nbfms5bNhL1s3lrg5o1_400,33329,0 12818,FRAMEQA15720,dog,what does the man throw into a tree?,tumblr_ni3ew49dux1tjhld9o1_400,66199,0 12819,FRAMEQA12175,jacket,what does the man move while walking?,tumblr_n9mbbcATlU1rmxd4mo1_1280,62647,0 12820,FRAMEQA43974,ball,"what does the soccer player pass to a team mate , then the team mate scores a goal?",tumblr_n9q078mW9F1tipia9o1_400,66424,0 12821,FRAMEQA36754,car,what gets t boned during a snow fall?,tumblr_ndyc47w6ph1u25dj6o1_400,57531,0 12822,FRAMEQA7518,spaceship,what does the man swivel around in his chair on board?,tumblr_ncq2bdiskz1qayc5ro1_400,34906,0 12823,FRAMEQA1505,one,"how many guy sings as three other guys , one with a guitar are behind him?",tumblr_nhs9w0ves71rc6vmmo1_400,57075,1 12824,FRAMEQA11535,black,what is the color of the hair?,tumblr_nes4ajxdH01u2rqewo1_400,27373,2 12825,FRAMEQA34170,car,what is driving along the road with lights at night?,tumblr_nkzdxdVvFc1s5n087o1_500,57448,0 12826,FRAMEQA48168,two,how many men watch the truck spill out a bunch of red carts?,tumblr_nmz2tmDeda1sddro0o1_250,24985,1 12827,FRAMEQA48639,car,what spins out during the fast turn on an indoor track?,tumblr_nbxshaRNzf1rlqrz3o1_500,68911,0 12828,FRAMEQA30766,two,how many men execute the complicated wrestling maneuver?,tumblr_ndckk40bTy1r7f6ubo1_250,77856,1 12829,FRAMEQA22998,two,how many girls run towards each other and hug?,tumblr_na35maMaeX1r17l27o2_500,93211,1 12830,FRAMEQA50022,white,what is the color of the girl?,tumblr_nr5l8obm4R1uyo3nxo1_250,6351,2 12831,FRAMEQA10034,red,what is the color of the hair?,tumblr_ne5uusuvNn1u2p22ho1_250,13113,2 12832,FRAMEQA28721,black,what is the color of the jacket?,tumblr_nnymisLnYK1rjb18uo1_400,29925,2 12833,FRAMEQA16034,looks,"what forward a rainbow ,?",tumblr_nnwo4pR4eE1tk2ngvo1_400,56306,0 12834,FRAMEQA15386,two,how many women are singing while they stand close to each other?,tumblr_ncggr1cNhU1s9ltd9o1_500,85223,1 12835,FRAMEQA32846,two,how many orange robotic arms are fighting with swords?,tumblr_nesls65ifv1qj1s5io1_400,80347,1 12836,FRAMEQA48163,cat,what was the little boy holding?,tumblr_n8v9ubRZEM1qkep7so1_400,28951,0 12837,FRAMEQA42465,car,where does the group move to the music?,tumblr_neb1kotniS1tbscvbo1_250,81480,3 12838,FRAMEQA38382,black,what is the color of the shirt?,tumblr_nav1lbS9PX1tifzdso1_250,85716,2 12839,FRAMEQA6038,three,how many musicians are moving to the beat in unison?,tumblr_ncs3d4Hye11tb92v8o1_400,59364,1 12840,FRAMEQA45414,two,how many men are talking and raising their hands?,tumblr_ng0ykvjZDz1s74pxto1_400,74274,1 12841,FRAMEQA42119,black,what is the color of the jacket?,tumblr_nfiklnpmXO1u1axtzo1_250,9046,2 12842,FRAMEQA42230,black,what is the color of the dance?,tumblr_ndnpjvXW4x1sp70bgo1_250,7403,2 12843,FRAMEQA12770,vehicle,what is man driving with a passenger?,tumblr_ne6d928mgq1sayp7jo1_250,80077,0 12844,FRAMEQA6944,white,what is the color of the outfit?,tumblr_njmvfrXqDL1tzhdnfo1_400,66381,2 12845,FRAMEQA26096,grenade,what is rolling towards the teddy bear and then the teddy bear explodes?,tumblr_ndy7ccfmXN1rfibsxo1_400,62905,0 12846,FRAMEQA2857,blue,what is the color of the top?,tumblr_nfmprtryRm1s013u0o2_r1_500,55145,2 12847,FRAMEQA13804,brown,what is the color of the bear?,tumblr_npdhumxlMs1sxvd87o1_250,27329,2 12848,FRAMEQA29637,yellow,what is the color of the car?,tumblr_ng03s2BcRY1u25ovvo1_400,63607,2 12849,FRAMEQA44816,two,how many other men dance with him?,tumblr_ncr076Dwdg1u09s33o1_500,60275,1 12850,FRAMEQA19516,makeup,what is walking forward?,tumblr_nr6qo41QuT1r2ersdo1_500,39355,0 12851,FRAMEQA18804,green,what is the color of the face?,tumblr_n9powlIXXD1tiu45ao1_400,29851,2 12852,FRAMEQA10139,two,how many people are holding hands?,tumblr_ne28pi81sm1twibc7o1_500,85312,1 12853,FRAMEQA14361,black,what is the color of the girl?,tumblr_na49k0ki2b1rm1cb3o1_500,84836,2 12854,FRAMEQA26045,white,what is the color of the dress?,tumblr_n9zr3gkrqU1skvr8io1_500,96980,2 12855,FRAMEQA46944,coat,what is the person wearing and looking ahead?,tumblr_nh9u7zLotE1u014wxo1_500,90809,0 12856,FRAMEQA6938,black,what is the color of the picks?,tumblr_nb7mt8Xm4z1tkeyq7o1_250,76150,2 12857,FRAMEQA39814,drives,what did the red bull sponsor through a mud puddle?,tumblr_npdeeniOGl1s06j30o1_400,57148,0 12858,FRAMEQA51320,black,what is the color of the shirt?,tumblr_n97ntjwFce1qaeqj9o1_250,43796,2 12859,FRAMEQA37334,black,what is the color of the hat?,tumblr_ndgbaqmjlx1sn2bh3o1_500,76201,2 12860,FRAMEQA7813,door,what does the woman open to a man holding pizzas?,tumblr_noese0qKy21qipc57o1_500,60419,0 12861,FRAMEQA15042,two,how many men are talking face to face?,tumblr_nr7xhpFqh11rcr8lfo1_400,79005,1 12862,FRAMEQA47323,hat,what is making the sign with his hand?,tumblr_nqhxb8p5dg1qifjvuo1_250,42684,0 12863,FRAMEQA26345,guitar,what was the girl with blonde hair playing?,tumblr_nh89o8FeCP1u6fg3no1_500,61501,0 12864,FRAMEQA29953,black,what is the color of the woman?,tumblr_ndtha3ANlJ1tqurn0o1_250,9893,2 12865,FRAMEQA34106,device,what exploded in front of a man 's face?,tumblr_ncvhq250Md1rt1dljo1_400,28503,0 12866,FRAMEQA16717,two,how many women are next to each other?,tumblr_nonrseS1vL1sjsqcyo1_500,85830,1 12867,FRAMEQA22489,brown,what is the color of the hair?,tumblr_np97noimRj1swewioo1_250,43615,2 12868,FRAMEQA20483,room,where is the girl with the green shorts hula hooping?,tumblr_nco7huA9Kl1tqcnjko1_250,767,3 12869,FRAMEQA27105,bird,what pushes the tortoise into a bin?,tumblr_nb80spNot51tdmffyo1_400,22894,0 12870,FRAMEQA35317,dog,what is the cat swatting?,tumblr_npdmedUpvr1tyncywo1_400,25608,0 12871,FRAMEQA7599,two,how many men are slowly opening the door and peering in?,tumblr_nklld32jOh1qg5lg0o1_250,53712,1 12872,FRAMEQA23901,guitar,what does the man hand to another man while on stage?,tumblr_nefe46IPQf1tjiaa2o1_400,33997,0 12873,FRAMEQA32506,white,what is the color of the man?,tumblr_n9gfntPgEK1rj8yzto2_250,6028,2 12874,FRAMEQA28082,two,how many boys pose for the photo and one of them embracing a motley?,tumblr_nk6g39be3f1trv4w5o1_400,48560,1 12875,FRAMEQA41666,jacket,what is the white boy with short hair wearing?,tumblr_nf2uu3uHFS1ss66xxo1_250,12981,0 12876,FRAMEQA4848,horse,what is licking on the man 's ear?,tumblr_nak0l8OX8X1tatohao1_400,58438,0 12877,FRAMEQA32146,coin,what is the man throwing down a well and making a wish?,tumblr_nb7yy71XkD1tkpzw0o1_250,24105,0 12878,FRAMEQA50887,white,what is the color of the hat?,tumblr_nh777pWSdg1r9qdkno1_400,41257,2 12879,FRAMEQA36649,penguins,what are walking along the ice and one slips and falls?,tumblr_ng46uo55Mx1slj978o1_400,50029,0 12880,FRAMEQA13473,white,what is the color of the uniform?,tumblr_nbvwsxpdLi1r8kl44o1_400,65957,2 12881,FRAMEQA5180,one,how many wrestler hits the other wrestler?,tumblr_no00ddSlG31t34v14o1_250,81154,1 12882,FRAMEQA9350,two,how many people are covering their mouths and laughing?,tumblr_njvf297g0o1ts4ov3o1_400,33373,1 12883,FRAMEQA16449,door,what is the girl opening to a boy who is smiling at her?,tumblr_npzxj9c0Ne1r0vgovo1_500,97445,0 12884,FRAMEQA32115,wall,what is the man jumping up and smoke is forming?,tumblr_niud9uxv741tm4s86o1_500,87224,0 12885,FRAMEQA10476,black,what is the color of the shirt?,tumblr_nbhkpbYVJn1sbqayyo1_250,6728,2 12886,FRAMEQA21650,black,what is the color of the shirt?,tumblr_na85llG7VQ1rht9qto1_400,33742,2 12887,FRAMEQA35405,kitten,what is sniffing the mouse standing in front of a cup?,tumblr_ngzl9clEBn1slj978o1_400,28180,0 12888,FRAMEQA27081,room,where is the woman dancing?,tumblr_naymij4o491rnas60o1_250,1334,3 12889,FRAMEQA36772,two,how many men sang inside of the car?,tumblr_nk8n38zP5b1unhekuo1_400,66354,1 12890,FRAMEQA22050,cigar,what is the black man lighting and smoking it?,tumblr_nhamj8SXDA1u6f7t5o1_400,65602,0 12891,FRAMEQA41082,white,what is the color of the sweater?,tumblr_nmeocfPzsS1u2z3v8o1_250,5476,2 12892,FRAMEQA19566,clothes,what does the girl run at another from the corner of the ring and her?,tumblr_ng6783M04i1sqox3co1_250,49468,0 12893,FRAMEQA52856,two,how many girls on a stage sing into microphones?,tumblr_nkg5leY4e21sof15vo1_500,21834,1 12894,FRAMEQA49469,red,what is the color of the cup?,tumblr_neu43fKXYn1sj961qo1_r1_250,17723,2 12895,FRAMEQA30029,skateboard,what is the man jumping onto a concrete wall?,tumblr_nq63u1ULnD1tfeni1o1_400,35631,0 12896,FRAMEQA49206,white,what is the color of the shirt?,tumblr_ngrowlLTYj1tmddexo1_500,22045,2 12897,FRAMEQA27304,black,what is the color of the t-shirt?,tumblr_nbllxdSjxi1tfeeomo1_500,50525,2 12898,FRAMEQA17906,cat,what is kneading the child 's face?,tumblr_nqgyd6uGf41rw1wnno1_500,33187,0 12899,FRAMEQA41696,suits,what are seven young men wearing and posing for a photo?,tumblr_nojudwiLpl1qedx60o1_540,91615,0 12900,FRAMEQA1508,red,what is the color of the dress?,tumblr_nbqjl1RA4r1t0jqwno1_250,11526,2 12901,FRAMEQA38949,five,how many people are running on the beach behind the lifeguard stand?,tumblr_naaje9jDs91tc3enzo1_500,94879,1 12902,FRAMEQA34308,horse,what is freely running around by itself?,tumblr_n8pqysKgXz1sy7yfqo1_400,64680,0 12903,FRAMEQA34830,two,how many racing cars almost collide as one cuts in front of the other on the race track?,tumblr_ndkajbX6dP1tx8mn0o1_400,78352,1 12904,FRAMEQA53007,one,how many man is kissing another man and laughing?,tumblr_nhhykaSB4y1tmnf3co1_500,92610,1 12905,FRAMEQA19163,cat,what runs down the hallway and then lays down?,tumblr_nrk1rp38Pq1uyssdqo1_540,10262,0 12906,FRAMEQA21915,car,what runs the windshield wipers while driving through a giant puddle?,tumblr_npdeeniOGl1s06j30o1_400,57148,0 12907,FRAMEQA35069,bed,where is the woman wearing glasses is lying?,tumblr_nabjgnLs1w1si703wo1_400,33375,3 12908,FRAMEQA20955,two,"how many young men are sitting by the lake , toasting each other with their liquor bottles?",tumblr_n9fxbgYr0K1rvpycko1_250,53726,1 12909,FRAMEQA7985,lollipop,what is the young woman holding and looking confused?,tumblr_ngpb6q9to71u0vqe1o1_400,34769,0 12910,FRAMEQA44312,two,how many people have their heads close together?,tumblr_ng64tsv1cY1tg5lq8o1_250,23017,1 12911,FRAMEQA11103,black,what is the color of the hair?,tumblr_n937oboEIc1swmz50o1_500,86499,2 12912,FRAMEQA23671,hat,what is the woman with red hair wearing?,tumblr_ncz5bgkqTO1tkalc5o1_250,2024,0 12913,FRAMEQA2362,saxophone,what is the person in black playing?,tumblr_n9wbyaTXBZ1t4mpk7o1_400,35386,0 12914,FRAMEQA8776,white,what is the color of the dress?,tumblr_njw9h4RH6m1uo484qo1_250,90916,2 12915,FRAMEQA6523,dogs,what are attacking the boy?,tumblr_nbet5v1L6J1tkpzw0o1_250,18230,0 12916,FRAMEQA37555,blue,what is the color of the hat?,tumblr_ngp8af5yyC1t2bqsgo1_400,81010,2 12917,FRAMEQA51906,rat,what is running away from the snake?,tumblr_n9emuzqIhv1sk96t7o1_400,42486,0 12918,FRAMEQA4467,microphone,what is the man holding and singing into it?,tumblr_nkoojl8aeM1s2tn5no1_400,66258,0 12919,FRAMEQA22606,ball,what is the man wearing a soccer uniform head butts into the goal?,tumblr_nl0ukbRIlb1tz9jaqo1_250,10757,0 12920,FRAMEQA12087,one,how many boy slaps another boy in the chest?,tumblr_ncn2z78qvl1t0ojyvo1_500,89276,1 12921,FRAMEQA15560,two,how many people does the man forcefully separate about to kiss?,tumblr_n9qllagP7E1rv22ito1_500,97627,1 12922,FRAMEQA41680,two,how many men are wearing swimming glasses and headphones?,tumblr_npvtmj2g4g1tptu5lo1_500,58618,1 12923,FRAMEQA31467,blue,what is the color of the shirt?,tumblr_nhoo6n51Ff1qml5iuo1_500,29569,2 12924,FRAMEQA16787,black,what is the color of the man?,tumblr_ndbacxLA971soueoko1_250,36058,2 12925,FRAMEQA35935,two,how many girls are kissing?,tumblr_n9b7fuvZcB1thc5tio1_250,45636,1 12926,FRAMEQA48252,white,what is the color of the shirt?,tumblr_na00hxaoq01so8ipho1_500,79541,2 12927,FRAMEQA6891,one,how many player kicks the soccer ball into the goal?,tumblr_ndnmc06P9U1tjig0uo1_400,60509,1 12928,FRAMEQA11155,gray,what is the color of the shirt?,tumblr_neu7ebvIhc1s6fotdo1_250,27116,2 12929,FRAMEQA31316,cage,where is the hamster moving around?,tumblr_na07x1hrbL1ti3y6yo1_400,25005,3 12930,FRAMEQA26699,wrap,what is the woman dropping?,tumblr_nkaonzuJHF1t90xflo1_500,89868,0 12931,FRAMEQA41034,capes,what are two man taking off?,tumblr_nmz3n9aYMe1rxmp17o1_500,97109,0 12932,FRAMEQA32201,ukulele,what does the man play while swaying from side to side?,tumblr_na0lvzNzJJ1s7vtgpo1_400,1745,0 12933,FRAMEQA40477,black,what is the color of the hair?,tumblr_nacm0uIlWl1tqmuxfo1_500,71258,2 12934,FRAMEQA11757,two,how many woman are warming up to play soccer?,tumblr_nacqaixw0M1r2atcqo1_500,55027,1 12935,FRAMEQA43446,black,what is the color of the shirt?,tumblr_nfbc69z0qM1sju7t3o1_400,64576,2 12936,FRAMEQA44569,two,how many people in a car hit a person moving toward them?,tumblr_ne44f8BnGg1qhmhclo1_500,97777,1 12937,FRAMEQA7512,ball,what is it a soccer match and a player kicks to the air?,tumblr_n8w0s850qY1ttzauho1_500,100693,0 12938,FRAMEQA22051,stairs,what is the man in the black hat walking up?,tumblr_n8x3efkZCT1sjz75oo1_250,437,0 12939,FRAMEQA45056,black,what is the color of the sweater?,tumblr_n8pixfadpG1sv37tvo1_400,3866,2 12940,FRAMEQA24248,two,how many people are standing by each other and moving around?,tumblr_nge4z8vSOF1rtdyjko1_250,25567,1 12941,FRAMEQA38919,three,how many men are dancing?,tumblr_n8sh1pn4ju1sgl6u3o1_250,17230,1 12942,FRAMEQA12258,guitar,what does the man play?,tumblr_nhh11uNa5j1tngqkyo1_250,8192,0 12943,FRAMEQA50866,lipstick,what is the girl wearing and barely smiling?,tumblr_nbd7vubGi41r27fbxo1_250,4851,0 12944,FRAMEQA2208,brown,what is the color of the hair?,tumblr_ndukt6eGH91qkglbyo1_400,32463,2 12945,FRAMEQA4035,black,what is the color of the jacket?,tumblr_n98dcyLaEN1qbgpp5o1_500,11286,2 12946,FRAMEQA13716,three,how many boys are looking surprised at something?,tumblr_nb9vr4CKps1qli0myo1_500,99930,1 12947,FRAMEQA47456,two,how many guys with a haircut fashion is talking?,tumblr_n9yquiyMK91r6oiiao1_400,101018,1 12948,FRAMEQA6757,five,how many guys are in the room filled with flasks?,tumblr_naap6eJLbo1t2bkpqo1_500,93485,1 12949,FRAMEQA1326,two,how many men are sparring?,tumblr_nr2di8qIFd1uwadjto1_400,24199,1 12950,FRAMEQA41891,room,where is the young man shaking his hips?,tumblr_na25kynLSX1qmkpfbo1_250,44064,3 12951,FRAMEQA39484,lizard,what does the cat nudge?,tumblr_neygedcDOt1tkhxdko1_400,46613,0 12952,FRAMEQA32281,lounges,what did the scantily dress on the couch while drinking a beer?,tumblr_nct6fkK6O11tk0p0po1_400,31741,0 12953,FRAMEQA23425,two,how many girl with black hair are singing?,tumblr_ndvqyftJPT1th9cdzo1_500,96290,1 12954,FRAMEQA6016,phone,what is the woman checking?,tumblr_nk43srE90O1t7ej2to1_250,13739,0 12955,FRAMEQA21965,black,what is the color of the hair?,tumblr_ngp0grlaqL1rgs9f3o1_500,88060,2 12956,FRAMEQA22045,candle,what is flickering in the mosaic glass holder?,tumblr_nbl18fV1iz1tjqkt0o1_400,64938,0 12957,FRAMEQA38362,one,how many man removes his coat as they walk down a hall?,tumblr_ndcfe5F1iy1s2t7gvo1_500,88875,1 12958,FRAMEQA32907,bicycle,what is the person riding through the dirt?,tumblr_nhw0okMoCW1tx8mn0o1_400,77744,0 12959,FRAMEQA20103,bar,where does the fight take place and a woman sets off a fire extinguisher?,tumblr_ne02dp4Y5i1tuz9pno1_400,65686,3 12960,FRAMEQA45528,white,what is the color of the top?,tumblr_nkuw52JAhg1upc7leo1_500,55571,2 12961,FRAMEQA26089,cat,what goes to sit down and falls over?,tumblr_nqxes8zoYk1rulxe0o1_400,71466,0 12962,FRAMEQA8951,frog,what is trying to mate with the female frog and she 's fighting him off?,tumblr_na18cqVtG31sd26g0o1_500,53182,0 12963,FRAMEQA16501,three,how many men are hugging at the meeting?,tumblr_njvm6qf9dA1u18i2zo1_250,47964,1 12964,FRAMEQA7938,coat,what does the man place over a puddle for the woman next to him?,tumblr_nr7zasAnGK1qa0ndwo1_500,49196,0 12965,FRAMEQA43410,black,what is the color of the hair?,tumblr_ne2t08LZcs1s9578so1_250,5047,2 12966,FRAMEQA29962,scissors,"what is the man holding ,?",tumblr_n8qfwdVfrP1s47mwso1_250,19276,0 12967,FRAMEQA50528,chair,where does the girl make a dance-move with her hands on her face?,tumblr_nd49l9MJyE1sgbn05o1_500,87711,3 12968,FRAMEQA39335,hoop,what is the woman in green shorts twirling?,tumblr_nco7huA9Kl1tqcnjko1_250,767,0 12969,FRAMEQA34957,black,what is the color of the kitten?,tumblr_nfwko4ck431u4v3ypo1_400,72642,2 12970,FRAMEQA23403,glass,what does the man lift to his lips?,tumblr_nf5gnsUemd1td8h7mo1_250,7705,0 12971,FRAMEQA26467,snake,what is hatching out of an egg?,tumblr_n8u37yY8T21s3att3o1_400,40003,0 12972,FRAMEQA18483,three,how many groups of people are all dancing together?,tumblr_nd7c8krpsM1siujfwo1_400,41214,1 12973,FRAMEQA36678,three,how many young men are sitting around when one starts making a funny face?,tumblr_n90hbjy8yN1soofmlo1_250,43871,1 12974,FRAMEQA45,two,how many men are singing on stage?,tumblr_nrlgwkAmGV1qb1u6io1_250,27294,1 12975,FRAMEQA18876,cigarette,what is the bearded man wearing a shirt and tie puts into his mouth?,tumblr_njwxkwMrDk1si8uq7o1_400,28593,0 12976,FRAMEQA49463,pool,where is the boy holding a white object and looking at it?,tumblr_nbthmbg6ta1tih2xyo1_250,12156,3 12977,FRAMEQA16142,white,what is the color of the jacket?,tumblr_ncn6fbUX131t5lviko1_250,49614,2 12978,FRAMEQA6748,black,what is the color of the jacket?,tumblr_nbdocwg2Mg1rx8ys3o1_250,53301,2 12979,FRAMEQA17857,cap,what is this a man with long hair and wearing while holding a drink?,tumblr_nist56EAVk1r412ako1_250,2686,0 12980,FRAMEQA47428,room,where is the woman adjusting her clothing?,tumblr_nq36cclrEn1uvp3zyo1_500,34462,3 12981,FRAMEQA3781,red,what is the color of the shirt?,tumblr_n9ov6dJ2rK1sj2opgo1_250,15836,2 12982,FRAMEQA20032,yellow,what is the color of the headset?,tumblr_ncc75dOsqo1tk5ovoo1_400,30828,2 12983,FRAMEQA9247,drums,what is the man playing while smiling?,tumblr_nd8y7flGO81sgg5k5o1_500,50950,0 12984,FRAMEQA43579,three,how many people all look at each other seriously?,tumblr_nkm1e1fJVT1r8ici8o1_500,100860,1 12985,FRAMEQA22989,black,what is the color of the bird?,tumblr_nhvz1zHlqY1slj978o1_250,27919,2 12986,FRAMEQA27782,black,what is the color of the play?,tumblr_nqzqaupSSA1u96zdso1_500,70130,2 12987,FRAMEQA10002,two,how many people is this image of rapping?,tumblr_no0ai4eJlH1t0q9vwo1_500,62821,1 12988,FRAMEQA42437,dog,what is making faces and having fun?,tumblr_nhdr3clKDa1sntw1mo1_400,39810,0 12989,FRAMEQA15543,fish,what flapped its fins in water?,tumblr_neot4s0EBL1s2ls31o1_400,32047,0 12990,FRAMEQA51325,wall,what is the guy facing and then glancing over his shoulder?,tumblr_n4weqhDYCU1tqrkr5o1_250,51771,0 12991,FRAMEQA6977,door,what does the dog in a dress bark and scratches and a dog in a suit growls?,tumblr_na1tbz3mD61slj978o1_400,28588,0 12992,FRAMEQA46090,yellow,what is the color of the ball?,tumblr_n8s0xxT2ig1ssgyoro1_400,56060,2 12993,FRAMEQA20952,rack,what displays multiple cards in different colors?,tumblr_nbgpm5lJMK1r4iwc5o1_250,4958,0 12994,FRAMEQA13873,shark,what is swimming around the black box?,tumblr_nbplrtZnS81tbjfazo1_400,41760,0 12995,FRAMEQA34223,two,how many young men dance towards each other and laugh?,tumblr_nafbe4YHCY1tyuwrso1_500,101490,1 12996,FRAMEQA13132,frisbee,what does the man throw at a cup?,tumblr_na4o38uibi1sw33zno1_400,64774,0 12997,FRAMEQA28341,drink,what does the sitting woman almost spit out?,tumblr_ne4u6hTLLc1ssgyoro1_250,8096,0 12998,FRAMEQA47724,cat,what is changing her look up?,tumblr_nd3wo9RJe91tkhxdko1_250,68397,0 12999,FRAMEQA31518,two,how many men are practicing boxing in a room?,tumblr_nhkxskmh3h1rlakuxo1_500,95997,1 13000,FRAMEQA8785,chair,where is the man sitting and flipping his hair?,tumblr_nk4yggPaMS1u3sw0yo1_500,84891,3 13001,FRAMEQA16858,flowers,what does the man throw up into the air?,tumblr_n9lv4b2SW11s4eig5o1_250,5238,0 13002,FRAMEQA21961,white,what is the color of the stares?,tumblr_n98dru4Wpw1rog90no1_500,86311,2 13003,FRAMEQA19637,violin,what is the guy playing with a fierceness?,tumblr_nr4tczdT6l1r82feqo1_500,40213,0 13004,FRAMEQA28737,dogs,what are playing on kids toys on cement?,tumblr_ngtfbt9KZI1s71nvbo1_400,15351,0 13005,FRAMEQA13198,lab,where are two girls working?,tumblr_nnkmkwlAgg1u14m77o1_500,44518,3 13006,FRAMEQA44682,white,what is the color of the shirt?,tumblr_n9e5a6pCuR1ti0qhqo1_400,32475,2 13007,FRAMEQA23184,toast,what did the pretty blond make with her wine glass?,tumblr_nf7ugiCrSM1spy81co1_250,9876,0 13008,FRAMEQA33440,two,how many people are standing head-to-head?,tumblr_nkluev7MYG1u5t34ho1_400,13477,1 13009,FRAMEQA18954,two,how many girls are holding hands?,tumblr_nab2tmk7fx1sk26zho1_500,30255,1 13010,FRAMEQA28768,bird,what is moving its legs but not walking?,tumblr_n9nfflcHiD1sib7jco1_250,7707,0 13011,FRAMEQA23164,two,how many flowers is the man turning around and smelling?,tumblr_nbx8q1KV9e1rwdmvno1_500,26083,1 13012,FRAMEQA10812,black,what is the color of the woman?,tumblr_npcdwhVFY01t3gqalo1_250,21964,2 13013,FRAMEQA2281,cat,"what stalks some bananas , then jumps in the air and runs away?",tumblr_nba8fj99IL1swsvnfo1_400,41749,0 13014,FRAMEQA48952,blue,what is the color of the t-shirt?,tumblr_nb9dmhTaWM1slwrsuo1_400,76757,2 13015,FRAMEQA35684,motorcycle,what hits the car and the rider lands on the roof?,tumblr_nam1c5I1j61tdjuqvo1_400,46061,0 13016,FRAMEQA7789,two,how many men are wrestling?,tumblr_ni2c3vlefi1u888u5o1_500,83194,1 13017,FRAMEQA30658,black,what is the color of the dress?,tumblr_nh6u5hYl8H1u6njy9o1_250,71491,2 13018,FRAMEQA17618,two,how many guys just stare at each other fiercely?,tumblr_nf3ataD6lI1sa0lndo1_500,76533,1 13019,FRAMEQA36516,bedroom,where is the guy with the dark hair sitting?,tumblr_nkyy7b3e731tt9zxqo1_500,73229,3 13020,FRAMEQA3295,frog,what tried to hunt the mosquito and failed?,tumblr_ng1jgl7aMz1slj978o1_400,95139,0 13021,FRAMEQA45039,car,what is doing the burnout?,tumblr_nbu0bmRkFb1tya5iuo1_500,71634,0 13022,FRAMEQA22651,brown,what is the color of the hair?,tumblr_npm2glII031uxko4yo1_1280,89976,2 13023,FRAMEQA34262,one,how many eye does the guy have his eyes closed then opens?,tumblr_nbjmk2ImAm1sa6fwjo1_400,65833,1 13024,FRAMEQA16614,butt,what is the girl moving in her room?,tumblr_nd93viKo511shv03qo1_r6_400,11371,0 13025,FRAMEQA19900,dog,what is chasing its tail in a circle?,tumblr_na29ckRUG81tso4bpo1_250,11168,0 13026,FRAMEQA48330,two,how many guys are throwing up peace signs?,tumblr_ng0ykvjZDz1s74pxto1_400,74274,1 13027,FRAMEQA3275,white,what is the color of the shirt?,tumblr_nknqcxnNVf1upqb0po1_400,31885,2 13028,FRAMEQA3246,car,where are two people driving fast down a winding road with helmets?,tumblr_n9qyart36C1rkbsnzo1_250,45347,3 13029,FRAMEQA14258,white,what is the color of the shirt?,tumblr_nokpkycdga1r2buvvo1_250,3855,2 13030,FRAMEQA29008,three,how many cats are running to eat something after somebody opens the door?,tumblr_nhchptHDxG1slj978o1_250,3857,1 13031,FRAMEQA14819,two,how many guys is doing funny expressions around a crowd?,tumblr_nhvxqpS1CV1ta0gdro1_400,69312,1 13032,FRAMEQA31478,man,what is wearing red is taking of the horrified mask?,tumblr_ncyr2emPxA1ti6gxco1_500,8116,0 13033,FRAMEQA1533,two,how many girls are joking and laughing?,tumblr_ncz4nsWbsd1tddirao1_250,46249,1 13034,FRAMEQA13547,chair,where does the man sit comfortably as he ponders?,tumblr_nbapxep1ZI1sk3b6wo1_r1_500,87916,3 13035,FRAMEQA21662,wolf,what does the woman throw into a tree?,tumblr_nr4hkbp8Nd1u6qd8so1_250,45718,0 13036,FRAMEQA3493,elephant,what is taking the group of bananas?,tumblr_nag50gxnPI1tdjuqvo1_250,24769,0 13037,FRAMEQA26302,cat,what is jumping into the yellow bag?,tumblr_n8sopfHH201tbn1tto1_400,68160,0 13038,FRAMEQA24853,five,how many men in a car are trying to evade the police car?,tumblr_nhxiwtAC4Q1u7itf7o1_500,96891,1 13039,FRAMEQA40795,two,how many people give each other a hug?,tumblr_ne3tqh85vZ1tz3e8yo1_400,1928,1 13040,FRAMEQA10121,car,what is racing on the track and turns the corner?,tumblr_nd9ii12sYt1tx8mn0o1_400,66589,0 13041,FRAMEQA2516,cat,what is chasing another cat down the hallway?,tumblr_ngv9m5pOMl1slj978o1_400,37576,0 13042,FRAMEQA19889,cat,what is the person petting?,tumblr_n8v9ubRZEM1qkep7so1_400,28951,0 13043,FRAMEQA18971,two,how many people with long messy hair are playing guitar?,tumblr_nd8s1tUL2H1trp7kao1_500,26600,1 13044,FRAMEQA37457,two,how many young girls make hand gestures and pull faces?,tumblr_n8q8iiFAka1toq16fo1_400,28578,1 13045,FRAMEQA41470,glasses,what is the man with beard adjusting?,tumblr_ngui6owoeN1qfv7h2o1_500,89798,0 13046,FRAMEQA34349,red,what is the color of the sweater?,tumblr_nkpy8bEjVA1upunxgo1_400,32819,2 13047,FRAMEQA25187,blue,what is the color of the pill?,tumblr_n9k8rtwwg11srx5iro1_400,32740,2 13048,FRAMEQA31699,coffee,what is being poured into the cup of liquid?,tumblr_nacgnkjiPg1thrruso1_500,46224,0 13049,FRAMEQA22551,two,how many people are kissing in the ninety degree angle?,tumblr_ngkchxtDx51tb1f6ao1_400,34124,1 13050,FRAMEQA32541,yellow,what is the color of the microphone?,tumblr_nkho2cfywd1qkfui5o1_400,52918,2 13051,FRAMEQA36709,guitar,what does the guy with a tattooed arm play?,tumblr_nd5d4u8cos1r7gr8so1_400,51974,0 13052,FRAMEQA38496,two,how many people are playing instruments together in a room?,tumblr_nqzqaupSSA1u96zdso1_500,70130,1 13053,FRAMEQA37772,white,what is the color of the shirt?,tumblr_naxjabeSW11t2s1j1o1_500,100016,2 13054,FRAMEQA18616,bicycles,what flip over on the side of the road?,tumblr_na32wo3UE01r6x1a5o1_500,46207,0 13055,FRAMEQA37719,camel,what is the man putting into the trunk of a car?,tumblr_na780qy6mR1thnh5po1_400,45795,0 13056,FRAMEQA16108,two,how many men are speaking into microphones near some beer?,tumblr_ncr8j0oYR81r44co8o1_250,47782,1 13057,FRAMEQA35302,bicycle,what is driving around and around in the circle?,tumblr_neozsacZoD1r31wzpo1_500,56833,0 13058,FRAMEQA6608,dog,what does the guy kick a dog and then hits him in the crotch with a rake?,tumblr_njrzdxnmrz1tgetb4o1_250,39882,0 13059,FRAMEQA51606,two,how many women are standing together and holding hands?,tumblr_nkag9eNN351unbz69o1_500,91050,1 13060,FRAMEQA1352,corridor,where is the man walking?,tumblr_n96c6j5Wb11sqwk8ko1_250,8319,3 13061,FRAMEQA39467,two,how many women are eating?,tumblr_nkri3vybCq1tnv2gbo1_400,57775,1 13062,FRAMEQA38387,chair,where is the woman with glasses on spinning?,tumblr_ncwtrlgXnQ1rjz4byo1_400,29191,3 13063,FRAMEQA39214,garden,where is the man wearing a black shirt is dancing?,tumblr_nc9seliTsj1rigtemo1_500,57607,3 13064,FRAMEQA31950,gun,what falls to the ground wit ha reflection of a girl in the background?,tumblr_n9sg42dUuU1s1s2gyo1_500,100227,0 13065,FRAMEQA34445,beanie,what is the seated man wearing a black top is pulling over his eyes?,tumblr_ncb3i7WXVb1tlwdnpo1_250,23592,0 13066,FRAMEQA46471,stars,what are dancing in silly costumes?,tumblr_nhzszrgVPB1shch57o1_250,41369,0 13067,FRAMEQA20662,blue,what is the color of the shirt?,tumblr_nhxjfc4PEW1qe0t1to1_1280,56583,2 13068,FRAMEQA27095,blue,what is the color of the shirt?,tumblr_n96x96RDMq1tp3pcko1_250,14441,2 13069,FRAMEQA4854,red,what is the color of the jumper?,tumblr_njy6ugZvKl1rzkug6o2_400,29266,2 13070,FRAMEQA43112,three,how many males are standing in leather jackets?,tumblr_nbe5908NiN1re0mxqo1_400,13562,1 13071,FRAMEQA17108,car,what are several race cars racing down a track and loses its back end?,tumblr_nen2gpqUlI1tx8mn0o1_400,55482,0 13072,FRAMEQA29725,box,where is the cat playing around?,tumblr_ngite8IUNJ1r5uqe5o1_500,83208,3 13073,FRAMEQA4888,round,what is the man spinning?,tumblr_ngkrtbhCLK1rutleno1_400,9471,0 13074,FRAMEQA9113,horses,what are running and their manes are blowing?,tumblr_nesu4nuPbX1tzd5txo1_500,97005,0 13075,FRAMEQA17997,chair,where is the guy sitting and talking?,tumblr_niv97maKxN1tapxt5o1_400,58280,3 13076,FRAMEQA44439,two,how many people start kissing while another woman holding a glowing bottle?,tumblr_nhub4qN8TV1r37y87o1_500,61932,1 13077,FRAMEQA46600,coats,"what is the couple , wearing , is hugging in the hallway?",tumblr_ngivb5dOC61rwf2xmo1_500,89034,0 13078,FRAMEQA21530,hat,what does the girl with a hat pull around her head?,tumblr_ne739nzddN1t2prlto1_400,88985,0 13079,FRAMEQA44035,three,how many boys are lined up singing together?,tumblr_nc5q7jKFWT1rf50qno1_500,98018,1 13080,FRAMEQA25951,two,how many people are dancing?,tumblr_nkqyrrDHMf1upvohzo1_400,69802,1 13081,FRAMEQA11279,one,how many makes faces?,tumblr_nf1py0cFid1sorauco1_500,79780,1 13082,FRAMEQA25578,white,what is the color of the scene?,tumblr_nekk97G6bF1rodbc8o1_250,15961,2 13083,FRAMEQA14619,guitar,what is the boy playing to an audience?,tumblr_n9ziy4WYm21t29pn7o1_250,2306,0 13084,FRAMEQA8757,balloon,what is broken by the yellow car?,tumblr_nqpemb0oal1tj3r8so1_400,40151,0 13085,FRAMEQA1498,guitar,what is the young man wearing a backwards ball cap is playing?,tumblr_nfgg52CJon1t3ypcjo1_400,30750,0 13086,FRAMEQA36328,container,what does the woman on the couch grab?,tumblr_nkoy0prMQF1uos4s7o2_250,17742,0 13087,FRAMEQA24286,one,how many woman does there 's doing one legged push ups?,tumblr_nbl7tkJrBN1tw8vf9o1_250,27502,1 13088,FRAMEQA8914,spaceship,what does the person in a space suit drift off?,tumblr_nd564udcM31thydgho1_400,35050,0 13089,FRAMEQA30667,lobby,where is the couple very happy to be?,tumblr_ndbt26IRlT1rwp7r4o1_500,92020,3 13090,FRAMEQA10724,two,how many people place the man in a baby crib?,tumblr_ni0wm1MHqZ1s6zpepo1_250,51836,1 13091,FRAMEQA12192,cat,what sits on his perch and plays with a ball attached to a string below him?,tumblr_nbdib2bbIb1s4zvpgo1_250,76388,0 13092,FRAMEQA19279,puppy,what tries to get the treat off of the table but the brown dog gets it instead?,tumblr_nijrydrPVc1rtzdq7o1_400,94791,0 13093,FRAMEQA17387,two,how many guys are waving their hands after opening the door?,tumblr_n9ynh2Hx361qfyx3mo1_400,35241,1 13094,FRAMEQA37154,brown,what is the color of the hair?,tumblr_n92olkleN71tf2rjmo1_500,46198,2 13095,FRAMEQA40711,two,how many wrestlers are fighting each other here?,tumblr_nek6cxGGAm1u1y32mo1_400,9715,1 13096,FRAMEQA6108,bottle,what is the man drinking?,tumblr_nb2vwvezaq1tia8tjo1_400,87098,0 13097,FRAMEQA28344,one,how many guy is talking while the other guy moves his head?,tumblr_nfg9btxKYw1u41f5eo1_400,56637,1 13098,FRAMEQA5789,three,how many boys dressed in white shirts and holding mics?,tumblr_ndxcge7SrF1t0ojyvo1_500,50672,1 13099,FRAMEQA35003,underwear,what is the very fit male?,tumblr_nezfs4uELd1u1a7cmo1_250,52,0 13100,FRAMEQA41582,vehicle,what is spinning in circles?,tumblr_nfbymug4lI1tjxr89o1_400,69634,0 13101,FRAMEQA2924,two,how many women are dancing together at the wedding?,tumblr_ne4ukt1AIR1r7zltao1_400,58770,1 13102,FRAMEQA13729,cat,what is kicking its hind legs while seated on its owner 's legs?,tumblr_nrj8tiIIWd1tkhxdko1_400,22505,0 13103,FRAMEQA32462,black,what is the color of the shirt?,tumblr_nckn34k0481tp4h5xo1_400,59461,2 13104,FRAMEQA23568,black,what is the color of the shirt?,tumblr_ngl13o76hU1tgzsvro1_250,36610,2 13105,FRAMEQA46276,dog,what walks up to skis and skis his way down a slope?,tumblr_nh39e5Eyfh1u5quhyo1_400,14890,0 13106,FRAMEQA27601,scarf,what is the woman floating into the air?,tumblr_niwmiuolPN1tud7j4o1_500,98837,0 13107,FRAMEQA30733,black,what is the color of the hair?,tumblr_nhjdvaRfWy1u3rflco1_500,88889,2 13108,FRAMEQA16270,dolphin,what is painting the picture with their mouth?,tumblr_nb2mzb98AK1tkpzw0o1_400,21285,0 13109,FRAMEQA18768,kitten,what is dragging itself on the floor?,tumblr_neddm7VXxe1u2b0jwo1_400,80932,0 13110,FRAMEQA10149,horse,what is walking through an open space?,tumblr_n8xa4psLDY1sb7v5lo1_500,70371,0 13111,FRAMEQA22842,orange,what is the color of the clothing?,tumblr_ner8sk0RNA1tlxkplo1_250,9580,2 13112,FRAMEQA52201,green,what is the color of the plant?,tumblr_n9289pJnza1rklnc5o1_500,97780,2 13113,FRAMEQA41795,white,what is the color of the dancing?,tumblr_n9fl1v6DiP1rn8lhxo1_500,95276,2 13114,FRAMEQA15173,black,what is the color of the boy?,tumblr_ndrgtqo6ED1thbq0zo1_400,7377,2 13115,FRAMEQA2869,cat,what is attacking the dog FRAMEQAeatedly until the dog reacts?,tumblr_npdmedUpvr1tyncywo1_400,25608,0 13116,FRAMEQA38299,car,what is driven along the road and through a puddle?,tumblr_nacr8iiHHd1tjztg6o1_400,46433,0 13117,FRAMEQA45329,red,what is the color of the hat?,tumblr_njwusmBucB1sk96t7o1_250,36073,2 13118,FRAMEQA39269,balcony,what are two men dancing and then falling off?,tumblr_nfi5pz1OK01twoivuo1_250,417,0 13119,FRAMEQA37297,brown,what is the color of the hair?,tumblr_nghoreH0Je1slplvno1_400,76291,2 13120,FRAMEQA49902,black,what is the color of the car?,tumblr_ngtpdn8oHz1s0w3iqo1_400,57885,2 13121,FRAMEQA14130,white,what is the color of the shirts?,tumblr_nbgjlsgNfd1skvcujo1_500,95762,2 13122,FRAMEQA13464,two,how many young men are laughing together?,tumblr_np3fv0Iucb1sxj25eo1_500,80507,1 13123,FRAMEQA26251,microphone,what is the man holding and singing in front of a crowd?,tumblr_nppnpzGIMu1sgpl4mo1_400,57260,0 13124,FRAMEQA40965,three,how many men are sitting in chairs while one talks into a microphone and raises his arm in the air?,tumblr_nbovp2qUqr1tiw4ggo1_500,99618,1 13125,FRAMEQA10193,blue,what is the color of the eyes?,tumblr_nhc2tcH5zZ1s1a4hoo1_400,83617,2 13126,FRAMEQA22350,black,what is the color of the cap?,tumblr_no3b329iYX1us0z0zo1_400,88994,2 13127,FRAMEQA29296,jacket,what is the young man wearing a tie is removing?,tumblr_nbc6b6VY0h1tl72q2o1_500,76805,0 13128,FRAMEQA45606,cat,what is surprised by the laser light and tries to stamp on it?,tumblr_nh01ubOfAY1slj978o1_400,38170,0 13129,FRAMEQA43676,red,what is the color of the car?,tumblr_na9bk7YdxS1swtjjuo1_500,54836,2 13130,FRAMEQA34143,two,how many men are laughing outside and creating many shadows?,tumblr_n97ow9Scv41thj3xko1_250,2346,1 13131,FRAMEQA29851,two,how many people are wrestling in the ring?,tumblr_ngzs5oG4kT1tkvhb9o1_500,95880,1 13132,FRAMEQA11679,boat,where is the man with dark hair laying?,tumblr_ngwbl1n70M1u5ha1qo1_400,63012,3 13133,FRAMEQA40280,duck,what is placed on the dog 's head while it is in the bath?,tumblr_nqj7ahVNOh1uvie7bo1_400,32783,0 13134,FRAMEQA50524,black,what is the color of the woman?,tumblr_n9wkpeXC991re6qqko1_500,88635,2 13135,FRAMEQA48867,blue,what is the color of the top?,tumblr_npzronrVMY1u66yx8o1_500,22800,2 13136,FRAMEQA49503,corridor,what is the man walking along with his feet touching the walls?,tumblr_naoyfvnSx51r8lgn6o1_500,96569,0 13137,FRAMEQA42203,two,how many pandas are near the toy horse and one plays with it?,tumblr_njtxedpe7W1t7an45o1_250,27296,1 13138,FRAMEQA28332,red,what is the color of the suit?,tumblr_neb1s6WZce1r3qv9to1_400,26257,2 13139,FRAMEQA43837,brown,what is the color of the suit?,tumblr_nfxfvg7gBH1th1z7ro1_400,33558,2 13140,FRAMEQA52617,eight,how many formation-dancers dressed as ghosts swaying in sync?,tumblr_n5dtds5SMm1twu18ko1_500,44901,1 13141,FRAMEQA44727,red,what is the color of the berries?,tumblr_nce30kjLYV1qfsrsoo1_500,49170,2 13142,FRAMEQA1172,jacket,what is the person wearing and walking?,tumblr_nqgdlsdvel1u3ngjwo1_250,51710,0 13143,FRAMEQA9311,cat,what lying down on the bed under the duvet and gets up?,tumblr_nepw693vsr1tk2ngvo1_400,55996,0 13144,FRAMEQA31868,door,what opens and the hand grabs out money?,tumblr_naq2ljxqpt1sqatvxo1_250,54229,0 13145,FRAMEQA12338,car,what is driving down the track?,tumblr_nfxlgzOQSN1t0x7yto1_500,61137,0 13146,FRAMEQA17840,two,how many young women are talking and laughing?,tumblr_npqo3gqPc91rtl9udo1_400,84980,1 13147,FRAMEQA13347,one,how many man in a trench coat looks at a man with a black coat?,tumblr_nrk1jrdGhR1uakcnho1_500,71562,1 13148,FRAMEQA40158,black,what is the color of the hair?,tumblr_nip8xkBjCk1u98gv1o1_250,8166,2 13149,FRAMEQA4665,two,how many women are sitting down talking to each other?,tumblr_neuljufw9c1tj55h3o1_1280,55884,1 13150,FRAMEQA33495,two,how many women is this sitting in chairs and smiling?,tumblr_nqsvfl5Pzp1uw1tf9o1_250,24221,1 13151,FRAMEQA20818,black,what is the color of the woman?,tumblr_nfgq3rETof1r5n15ko1_400,35368,2 13152,FRAMEQA10474,car,what was trying to drive in water that was too high?,tumblr_nh05khMCWi1s71nvbo1_400,54609,0 13153,FRAMEQA51355,white,what is the color of the doll?,tumblr_nk6g39be3f1trv4w5o1_400,48560,2 13154,FRAMEQA33592,ways,what does the big lipped girl pose?,tumblr_nhfwtoM2RQ1tos9avo1_400,44256,0 13155,FRAMEQA45891,guitar,what is the guy playing and another one is clapping his hands?,tumblr_nalxhkgg2y1rstjlro1_400,39089,0 13156,FRAMEQA49863,cigarette,what is the young man lighting and then blowing?,tumblr_na7fsb2EGT1tirmpjo1_500,36074,0 13157,FRAMEQA46789,brown,what is the color of the pants?,tumblr_ncx2iyEeec1u0anq1o1_250,3560,2 13158,FRAMEQA42051,dog,what is the cat setting on the bathtub fence and pushed it to fall inside it?,tumblr_nbh3y0lqgx1tuj3bpo1_400,34855,0 13159,FRAMEQA51414,two,"how many women are play fighting with another woman , who they push to the ground?",tumblr_nabnd0SUAv1tjbxaso1_400,28885,1 13160,FRAMEQA30308,airplane,what is an adult man riding?,tumblr_noyfekqixM1sj7lv3o1_400,33877,0 13161,FRAMEQA23109,white,what is the color of the animal?,tumblr_ncbbj6piQ91qkplr2o1_250,2118,2 13162,FRAMEQA18194,hat,what is the man in a black shirt giving a thumbs up and wearing?,tumblr_nkodyvmkCZ1u9f952o9_250,12301,0 13163,FRAMEQA31671,two,how many people are sitting near each other and on of them is playing with the other 's ear?,tumblr_nrfr0pu7Vh1uamcaro1_500,98535,1 13164,FRAMEQA33299,black,what is the color of the jacket?,tumblr_ncw0puR1xZ1tcqo19o1_250,49616,2 13165,FRAMEQA16106,puppy,what does the man hold?,tumblr_nfzezkvlY81tvch9xo1_500,46229,0 13166,FRAMEQA18676,stick,where is the girl opening her mouth wide?,tumblr_n9wwljwZk61sbh7xuo1_500,61117,3 13167,FRAMEQA1732,dog,what is throwing the fit over a strip of bacon being brought to it?,tumblr_ncvl3c8kSe1t7j74xo1_250,1449,0 13168,FRAMEQA2056,shirt,what does the fat man open with his belly?,tumblr_nhimvmW0Rk1u68hnpo1_400,3331,0 13169,FRAMEQA4796,hat,what is the young man wearing and nodding?,tumblr_n9hvtzkimT1tirskjo1_400,39158,0 13170,FRAMEQA31389,two,how many men is this talking?,tumblr_nnjwd9zoNn1upsi9qo1_400,66967,1 13171,FRAMEQA46081,cat,what is batting some vegetables in a dish and one falls out?,tumblr_nh97cpE0ME1u4v3ypo1_400,7646,0 13172,FRAMEQA10208,car,what is driving on water starts to slide around?,tumblr_nnw2qphCJA1uuh2j1o1_500,67719,0 13173,FRAMEQA6547,cat,what is rubbing its face against a hairbrush?,tumblr_nr394z8H8A1uzsb7xo1_500,69717,0 13174,FRAMEQA48493,brown,what is the color of the woman?,tumblr_nb7d1hWDP01tzjhlno1_500,88503,2 13175,FRAMEQA51328,black,what is the color of the girl?,tumblr_nr7b4nQYG31uzjb3wo1_500,73475,2 13176,FRAMEQA21436,two,how many men are talking to each other?,tumblr_njvt4xtqsW1u30he7o1_400,89355,1 13177,FRAMEQA13696,car,what drives on the track and runs into the side of the road?,tumblr_njy3wfD2FB1tx8mn0o1_400,76947,0 13178,FRAMEQA34821,two,how many men wave and gesture with their hands and pretend to kiss?,tumblr_nbyol8TrRL1tdh0pko1_250,40211,1 13179,FRAMEQA24974,guitars,what do the group of four men play together all at once?,tumblr_nf4ylsG3bX1u0iufgo1_500,76526,0 13180,FRAMEQA7839,two,how many men are handing off the mic to each other on a stage?,tumblr_na4vq6k8dM1to5786o1_400,44926,1 13181,FRAMEQA28615,white,what is the color of the background?,tumblr_na7g2pDrlo1tg1lcjo1_500,100681,2 13182,FRAMEQA33797,store,where are the people shopping?,tumblr_nhi0akgRrS1tvv82eo1_400,42197,3 13183,FRAMEQA38703,pencil,what is the child with red shirt drawing?,tumblr_nq27vij7191thx0k0o1_400,63903,0 13184,FRAMEQA51395,gun,what is the man holding smoking?,tumblr_nd3brscPGy1tbiuqvo1_400,73961,0 13185,FRAMEQA43833,brown,what is the color of the hair?,tumblr_nk2y5lgrQG1ssust7o1_540,100824,2 13186,FRAMEQA40041,shirt,what is the man?,tumblr_nfhfz9U1go1tghqjmo1_500,87917,0 13187,FRAMEQA41113,red,what is the color of the hair?,tumblr_ncs76jEct01qcx5mpo1_250,74649,2 13188,FRAMEQA53074,glasses,what is the young man in a white shirt taking off?,tumblr_nc798b5n4Y1tju84uo1_500,91289,0 13189,FRAMEQA24038,worms,what is the pair of fingers squeezing something and are coming out?,tumblr_nqtw52djUW1ua09ibo1_250,22702,0 13190,FRAMEQA36650,cat,what is the person pulling out the ear?,tumblr_njw2gle3ek1u8uroco1_400,68448,0 13191,FRAMEQA13283,orange,what is the color of the ball?,tumblr_nrho0kbKHM1uzqrlco1_400,41679,2 13192,FRAMEQA8508,gray,what is the color of the shirt?,tumblr_nfbrosDwJL1s0lkcto1_250,14716,2 13193,FRAMEQA22379,tree,what is the white car driving down lined street?,tumblr_nelzmf2VB71u25ovvo1_400,63494,0 13194,FRAMEQA24866,red,what is the color of the toy?,tumblr_nh6t8ixB6O1roo9cdo1_500,55790,2 13195,FRAMEQA43909,black,what is the color of the turns?,tumblr_ne7rmaO5xm1tsxjano1_500,73359,2 13196,FRAMEQA35913,two,how many people are talking and touching each other?,tumblr_n8w47i9QxS1rlw0gfo1_400,99904,1 13197,FRAMEQA28164,two,how many men are fighting each other on a couch?,tumblr_noqj7pGE6R1uwqr4do1_250,14442,1 13198,FRAMEQA44839,room,where does the man in a purple shirt walk?,tumblr_np6excSfZc1uuxd1yo1_500,54545,3 13199,FRAMEQA44784,white,what is the color of the top?,tumblr_njurnlAkQB1qat224o1_500,59784,2 13200,FRAMEQA12278,dog,what then gets up?,tumblr_nepw693vsr1tk2ngvo1_400,55996,0 13201,FRAMEQA31300,red,what is the color of the shirt?,tumblr_nou7p2Dlys1s6xaz3o1_500,98844,2 13202,FRAMEQA6534,brown,what is the color of the hair?,tumblr_n9lhzfwMAi1tdiftmo1_r1_500,101381,2 13203,FRAMEQA4109,green,what is the color of the scarf?,tumblr_nh090gwkT11rtvu13o1_250,4231,2 13204,FRAMEQA43257,flowers,what is the woman picking up and smelling?,tumblr_ncp4d5tmIX1rd7kgvo1_500,37853,0 13205,FRAMEQA25864,cat,what is using the leash to walk a dog?,tumblr_njoau5H0HV1s1ukk9o1_400,81129,0 13206,FRAMEQA33557,three,how many young males wear sunglasses while one does a peace sign with one hand?,tumblr_nfx7tgZGUP1rm1lhro1_500,101620,1 13207,FRAMEQA48081,phone,what is the guy with spiked up hair is pulling away from him?,tumblr_n9qncqac351tgg8imo1_500,69036,0 13208,FRAMEQA25307,pool,what are two men playing on a huge pool table?,tumblr_ncbycrsfId1sggdd3o1_400,76625,0 13209,FRAMEQA45405,two,how many men are kicking in the middle of a group of people dancing?,tumblr_nc422pq4Ug1t875gzo1_400,64972,1 13210,FRAMEQA24455,room,where is the man singing?,tumblr_ne1nzeAfmz1twl08yo1_400,60290,3 13211,FRAMEQA16904,cars,what are going around the race track?,tumblr_nri0fojp0G1tx8mn0o1_400,55938,0 13212,FRAMEQA41548,black,what is the color of the hat?,tumblr_n8x3efkZCT1sjz75oo1_250,437,2 13213,FRAMEQA7747,squirrel,what is biting the cat and it turns and attacks another cat?,tumblr_ncko1cgtVl1rwkjivo1_400,45420,0 13214,FRAMEQA4488,guitar,what is the woman playing and singing on stage?,tumblr_nin3ulmI0K1ropygmo1_400,70404,0 13215,FRAMEQA29937,three,how many young adults are clapping and jumping around in excitement?,tumblr_n9jrh32UiA1scv8s8o1_250,33326,1 13216,FRAMEQA23916,gray,what is the color of the scarf?,tumblr_nkjfb5vGh61ts7wbfo1_500,83664,2 13217,FRAMEQA22639,gym,where does the man punch a man through a wall?,tumblr_nr2di8qIFd1uwadjto1_400,24199,3 13218,FRAMEQA51540,two,how many team players congratulate each other with a hug?,tumblr_nhqm4eBnny1qhxpzlo1_500,67200,1 13219,FRAMEQA3769,drink,what does the young man with red hair slowly sip through a straw?,tumblr_ngost8GMhb1t5gkiuo1_250,3059,0 13220,FRAMEQA41265,tablet,what is the woman holding and talking to a man?,tumblr_njmuuaAUWZ1tqmfzto1_400,37547,0 13221,FRAMEQA51971,black,what is the color of the shirt?,tumblr_n8pixfadpG1sv37tvo1_400,3866,2 13222,FRAMEQA42104,coat,what does the blonde woman pick up a purse and then opens a door?,tumblr_nkgnrucLOa1r0ia88o1_400,94553,0 13223,FRAMEQA43684,pool,where are the white girl with glasses talking?,tumblr_nazdbcRYkw1tfffkuo1_400,53846,3 13224,FRAMEQA8764,hallway,where is the girl with brown hair crying?,tumblr_nk8w9d5ZgH1r0vo80o1_250,16016,3 13225,FRAMEQA20071,coat,what is the man wearing with a cigarette in his mouth leans forward?,tumblr_nb1vsdEVUb1sdbuhgo1_400,45332,0 13226,FRAMEQA19556,four,how many women exercise in from of the water?,tumblr_nkmghgnOpL1r7btqdo1_400,44502,1 13227,FRAMEQA31396,car,what is coming out of the track with smoke?,tumblr_nreudiOfno1tx8mn0o1_400,78282,0 13228,FRAMEQA36209,turtle,what is pushing the tomato with its head?,tumblr_n92y7xvWoz1t62xtyo1_500,34488,0 13229,FRAMEQA2100,cat,what is stretching and playing in the box?,tumblr_ngite8IUNJ1r5uqe5o1_500,83208,0 13230,FRAMEQA9332,dog,what is trying to jump on the couch?,tumblr_nhu5ez5Nx21tdjuqvo1_400,18965,0 13231,FRAMEQA36202,white,what is the color of the clothes?,tumblr_nebqt1mhTY1rdu9xmo1_400,1256,2 13232,FRAMEQA17751,room,where is the man hitting a pushing people?,tumblr_nkgh9qN2aw1s71nvbo1_400,57168,3 13233,FRAMEQA27023,dog,what is staring quietly at something unseen?,tumblr_n9ji43A1Rt1titlh5o1_250,19769,0 13234,FRAMEQA27553,white,what is the color of the blouse?,tumblr_nrkai5chFn1uqslqko1_250,16524,2 13235,FRAMEQA39397,horse,what walked forward with its head down?,tumblr_ndlmycDsSK1tidcnvo1_400,63831,0 13236,FRAMEQA44310,two,how many guys have started kissing and doing other stuff?,tumblr_n9lnqa0TkE1rac9v2o1_400,47875,1 13237,FRAMEQA39429,car,what is doing spins and the wheels are smoking?,tumblr_nbu0bmRkFb1tya5iuo1_500,71634,0 13238,FRAMEQA42485,three,how many boys are wearing jacket and ties and keep looking around to look at each other?,tumblr_new21rT4rK1t0w9oqo1_400,31464,1 13239,FRAMEQA30403,guitar,what does the woman strum?,tumblr_nbdybmLWnP1rlpjp7o1_250,45669,0 13240,FRAMEQA49841,white,what is the color of the birds?,tumblr_nkkaabSLxV1rzui38o1_400,15437,2 13241,FRAMEQA26106,dog,what hops and waves its paws in the air?,tumblr_naq0fyOyiC1rj38k8o1_400,1318,0 13242,FRAMEQA4960,brown,what is the color of the animal?,tumblr_np67fnXaAj1tatohao1_400,67730,2 13243,FRAMEQA13914,green,what is the color of the shirt?,tumblr_nb7jf8uKAM1qexz84o1_250,32519,2 13244,FRAMEQA14367,cat,what is walking on the bar above water?,tumblr_nat7piX07F1slj978o1_250,16348,0 13245,FRAMEQA31688,cake,what is the man saving from falling on the floor?,tumblr_noq334cIjl1uw7253o1_400,85509,0 13246,FRAMEQA1803,white,what is the color of the girl?,tumblr_neu62dEFNe1trp7kao1_400,80015,2 13247,FRAMEQA39887,cigarette,what is the man slowly lifting to his mouth?,tumblr_neqyaxfZfv1ry1ioco2_500,97316,0 13248,FRAMEQA15491,three,how many young people with black hair are laughing?,tumblr_ndou4ocoom1qkh9mno1_500,89736,1 13249,FRAMEQA34038,two,how many guys are talking and laughing in the theater?,tumblr_nb1cdezKJt1t3jhfvo1_500,100401,1 13250,FRAMEQA23811,cookie,what does the guy open up and it shoots him in the eye?,tumblr_nc149nM30B1sk96t7o1_400,31199,0 13251,FRAMEQA1429,hat,what is the man wearing and moving and talking?,tumblr_ne4yp2N2Ce1tnmftbo1_250,6546,0 13252,FRAMEQA12102,ball,what rolls to the goal and the man fails to catch it?,tumblr_nohtgpEG0y1uvl97qo1_500,91610,0 13253,FRAMEQA44275,white,what is the color of the hood?,tumblr_n9h9yihZSR1twvbkxo1_400,47725,2 13254,FRAMEQA28513,black,what is the color of the kitten?,tumblr_nb2oh2bSvK1tkpzw0o1_400,25145,2 13255,FRAMEQA44860,kitten,"what plays with the tail of a larger cat , who turns and causes the kitten to raise its paw?",tumblr_npdhgdA8ez1sxvd87o1_400,43334,0 13256,FRAMEQA28502,puppies,what is the young guy holding?,tumblr_nqeuudSoy11trx1hko1_250,3071,0 13257,FRAMEQA47948,two,how many girls are ballet dancing in red outfits?,tumblr_nbci2vFibY1st6smgo1_500,73073,1 13258,FRAMEQA5190,white,what is the color of the hat?,tumblr_nbc1qnKRyZ1tvtr5do1_250,53196,2 13259,FRAMEQA39781,suit,what is the man wearing and smoking a cigarette?,tumblr_ndc106iim91rgb5tho1_250,3308,0 13260,FRAMEQA17400,black,what is the color of the shirt?,tumblr_nk4df7nAnU1txithmo1_500,60229,2 13261,FRAMEQA33217,one,how many girl pushes her hair back as she talks with another girl?,tumblr_nk77q2amba1unawq7o1_250,15856,1 13262,FRAMEQA33601,yellow,what is the color of the shirt?,tumblr_ndbh9dqQku1sgrzwto1_400,63510,2 13263,FRAMEQA19505,kangaroo,what does the man stand in front of a lake and jumps behind him and pushes him in?,tumblr_n97xz6RSz21tgyx9vo1_400,44697,0 13264,FRAMEQA1374,white,what is the color of the cover?,tumblr_ne9v07TxUL1sjcvc1o1_250,84536,2 13265,FRAMEQA24626,red,what is the color of the shirt?,tumblr_nnsotwRNgh1tmavx8o1_250,1691,2 13266,FRAMEQA12426,three,how many people sit together at the table and do nothing?,tumblr_nkmfankMEK1rf76tuo3_250,27616,1 13267,FRAMEQA30419,shower,where do two men walk outside and then end up?,tumblr_nac2esV6nf1tjc6a2o1_250,49698,3 13268,FRAMEQA43622,black,what is the color of the man?,tumblr_nf3ataD6lI1sa0lndo1_500,76533,2 13269,FRAMEQA3788,chariot,what is the man driving down the highway?,tumblr_n9rmj7Ecu51tigxjpo1_400,73785,0 13270,FRAMEQA39595,candles,what is the man lighting and breathing in smoke?,tumblr_nenfrmeB4p1u0p4a1o1_250,1343,0 13271,FRAMEQA8167,car,where is the young couple sitting and smiling?,tumblr_nh79ioD59r1u6eyp0o1_400,30642,3 13272,FRAMEQA20113,car,what is this spinning out of control on a race track?,tumblr_nreudiOfno1tx8mn0o1_400,78282,0 13273,FRAMEQA37254,lock,what is the guy opening?,tumblr_ng8o1nWNXz1u5segmo1_400,76676,0 13274,FRAMEQA40361,two,how many people are running and lowing something out of their mouths?,tumblr_nd8vbdRFut1shopj2o1_250,61352,1 13275,FRAMEQA11832,white,what is the color of the man?,tumblr_nk8dq27ECT1s6zpepo1_250,19956,2 13276,FRAMEQA3808,cat,what leaps from the floor in a surprise attack?,tumblr_njz1jkKNf61u4nbmvo1_400,1762,0 13277,FRAMEQA41164,two,how many hockey teams are skating on ice when one man scores?,tumblr_nhsaiyM6c61qhrx75o1_400,74728,1 13278,FRAMEQA23920,two,how many communist leaders are standing side by side against a wall?,tumblr_nqs999ZRhM1uxceulo1_400,26066,1 13279,FRAMEQA51701,purple,what is the color of the dress?,tumblr_nd1ipwb0hI1suy3djo1_250,84447,2 13280,FRAMEQA32829,cup,what was the man in a purple shirt holding?,tumblr_nhkes0gSSf1u0h3teo1_250,1426,0 13281,FRAMEQA7394,white,what is the color of the substance?,tumblr_nnkgiuZZhn1un86uao1_500,94584,2 13282,FRAMEQA26504,cigarette,what is the woman smoking and walking?,tumblr_nazoij8XVM1sepjeio1_400,35376,0 13283,FRAMEQA34021,sword,what is the man unleashing very slowly?,tumblr_n92gvgCiks1r4w6cwo1_500,81763,0 13284,FRAMEQA14670,frog,what is jumping as it tries to eat a bug?,tumblr_ng1jgl7aMz1slj978o1_400,95139,0 13285,FRAMEQA19910,white,what is the color of the cone?,tumblr_no73q2fm0I1uuf348o1_250,27138,2 13286,FRAMEQA22257,tongs,what bring down the white mustache in front of a cats mouth?,tumblr_nfyngbHW2w1sfwliho1_400,37693,0 13287,FRAMEQA36011,purple,what is the color of the trousers?,tumblr_nfxl7m1kah1s9f4vbo1_400,56813,2 13288,FRAMEQA31268,car,what is scared away by the machine gun?,tumblr_no95meGFVR1uuv7imo1_400,39488,0 13289,FRAMEQA34177,yellow,what is the color of the car?,tumblr_nd8dsnm0vU1ruoae6o1_1280,94851,2 13290,FRAMEQA41797,red,what is the color of the hat?,tumblr_nh5j8beXJa1tmv4hpo1_500,72454,2 13291,FRAMEQA48284,cat,what is drinking something and a dog is biting her?,tumblr_n8hkl5Vn171tgetb4o1_250,27225,0 13292,FRAMEQA27138,shirt,what does the guy in white lift up?,tumblr_n9g7puMMHO1rbplvwo1_250,20018,0 13293,FRAMEQA44789,two,how many men is this image of looking at each other?,tumblr_nqbks5f4pb1tm2by2o1_400,64275,1 13294,FRAMEQA23135,rag,what is the person wearing a hat wrapped under their chin?,tumblr_nqn263IcBj1uzrtz5o1_500,6137,0 13295,FRAMEQA31242,yellow,what is the color of the pole?,tumblr_na6zm9GLDK1t7h8o0o1_400,43353,2 13296,FRAMEQA174,black,what is the color of the jacket?,tumblr_nc1slkO3ZM1s8jkazo1_250,25524,2 13297,FRAMEQA50984,black,what is the color of the jacket?,tumblr_nkoiw6PN6o1uprddoo1_500,73447,2 13298,FRAMEQA41852,white,what is the color of the shirts?,tumblr_nocod6ZuBJ1tubsydo1_400,87884,2 13299,FRAMEQA2802,two,how many men are dancing and singing as they look at each other?,tumblr_nes951ulUD1t9h1yfo1_400,82397,1 13300,FRAMEQA9023,pug,what is the young man talking and holding?,tumblr_nokgkjPvdh1uot1e7o1_400,60623,0 13301,FRAMEQA23981,cat,what is trying to jump from the fence into a window but he misses and hits the wall of the building?,tumblr_nq6fgo0RyG1tk2ngvo1_400,71717,0 13302,FRAMEQA43339,game,what is demonstrated on the laptop?,tumblr_nlj7u9svNG1s6zpepo1_400,82818,0 13303,FRAMEQA45519,white,what is the color of the shirt?,tumblr_nkkhilUtwi1rkmghzo1_250,43958,2 13304,FRAMEQA44999,cat,"what is sitting on the man "","" s head while he is trying to eat?",tumblr_no7fakJX6s1r5uv3zo1_400,66464,0 13305,FRAMEQA2389,cars,what are racing around the track when the bumper comes off of one?,tumblr_nen2gpqUlI1tx8mn0o1_400,55482,0 13306,FRAMEQA41905,black,what is the color of the dress?,tumblr_nd19bgsTCX1sxkh0mo1_500,48313,2 13307,FRAMEQA37770,two,how many men in hats are making hand gestures?,tumblr_naly48pXks1t3eui8o1_500,2542,1 13308,FRAMEQA23442,hat,what is the man tossing up onto his head?,tumblr_nkxj24nYDk1rhiuffo1_400,29599,0 13309,FRAMEQA22368,rings,what is the man wearing a black shirt is spinning off?,tumblr_nafvx0HnxX1rctjeio1_250,51384,0 13310,FRAMEQA29484,window,what do two people walk out and one falls?,tumblr_nb2myzj0DY1tkpzw0o1_400,18190,0 13311,FRAMEQA51944,wheelchair,where did the man ride around people?,tumblr_n9n0wjrVkC1tdjuqvo1_400,50725,3 13312,FRAMEQA43688,two,how many men are sitting?,tumblr_nd4uhd6qJJ1tv0ziio1_400,33623,1 13313,FRAMEQA9925,pie,what comes flying into the frame and hits a man in the face?,tumblr_nghnsy9tub1skqoaho1_400,62925,0 13314,FRAMEQA30448,two,how many girls giggle and cover their mouths with their hands?,tumblr_njvf297g0o1ts4ov3o1_400,33373,1 13315,FRAMEQA42027,feline,what is lying on its back and having its face stroked?,tumblr_nbulx7nrhG1tm1rn8o1_250,23202,0 13316,FRAMEQA13217,mirror,where is the person with glasses on looking?,tumblr_nghk4snsDL1u5b701o1_400,31559,3 13317,FRAMEQA23546,gray,what is the color of the sweater?,tumblr_ndth24wYTb1tj3n6no1_250,40782,2 13318,FRAMEQA19563,white,what is the color of the shirt?,tumblr_ndayi6M8cK1th4ipno1_400,41211,2 13319,FRAMEQA35958,two,how many men are in the room dancing with their arms above their heads?,tumblr_nj9qf9m6OT1trbt9ao1_400,28960,1 13320,FRAMEQA18693,three,how many animals are standing right next to the other?,tumblr_na02l5mrrH1tgetb4o1_400,82095,1 13321,FRAMEQA47972,two,how many girls put there arms around other moving there arms and hands?,tumblr_ngw2a7V3uS1qeu214o1_500,94369,1 13322,FRAMEQA21626,white,what is the color of the table?,tumblr_nqxvud6IgD1thktw9o1_250,533,2 13323,FRAMEQA20005,brown,what is the color of the dog?,tumblr_ng4rt94t1g1tdjuqvo1_400,86983,2 13324,FRAMEQA26379,cat,what presses the button trying to wake the other cats?,tumblr_nc1cszD2L21tjdvfuo1_1280,54206,0 13325,FRAMEQA50580,two,how many men in costumes and mustaches are looking at each other?,tumblr_nb74ml20iT1r75i3co1_250,45786,1 13326,FRAMEQA35828,two,how many women kiss passionately and hold each other?,tumblr_non9dnF1Om1u4uss5o1_400,78286,1 13327,FRAMEQA37256,black,what is the color of the clothes?,tumblr_n9msz5bJ7Y1spkaepo1_400,62640,2 13328,FRAMEQA26932,two,how many young girls make faces and smile?,tumblr_n9agpx9QDL1s4niibo1_400,32543,1 13329,FRAMEQA25303,red,what is the color of the shirt?,tumblr_ncyr2emPxA1ti6gxco1_500,8116,2 13330,FRAMEQA24119,pictures,"what is the woman running by a fence , and then are shown?",tumblr_nh9b5ripty1tgux4fo1_250,90983,0 13331,FRAMEQA9136,suit,what are the man wearing?,tumblr_mnutecijZ71rkw2b4o1_250,45077,0 13332,FRAMEQA22140,one,how many man is talking to another man that is laughing?,tumblr_n8xmz9ajod1tgh87to1_400,95184,1 13333,FRAMEQA50914,star,what is singing and winking?,tumblr_np7tiyMgEP1uw90pdo1_540,44538,0 13334,FRAMEQA41377,red,what is the color of the shirt?,tumblr_nqy6gpwoGz1uy0526o1_400,32991,2 13335,FRAMEQA41278,bed,where is the woman sitting and showing massive cleavage while smoking a cigarette?,tumblr_nhi301UlXH1u0jmtso1_1280,75670,3 13336,FRAMEQA30619,two,how many women does the man push over backward in a room full of people?,tumblr_nkgh9qN2aw1s71nvbo1_400,57168,1 13337,FRAMEQA5929,brown,what is the color of the man?,tumblr_nihz1vlhvQ1qgnh1wo1_500,58943,2 13338,FRAMEQA20904,two,how many people with dark hair were talking to each other?,tumblr_nk9t1iHZZn1uod8uho1_400,53103,1 13339,FRAMEQA34235,three,how many guys are standing next to each other and they strike poses?,tumblr_na580m6GwR1t0ojyvo1_500,94958,1 13340,FRAMEQA36883,costume,what is the wrestler taking down another wrestler and wearing?,tumblr_natftdaDTB1rwc3zyo1_400,25651,0 13341,FRAMEQA33568,room,where is the person tossing a shoe about?,tumblr_nfggtzJj401rw4ndto1_400,447,3 13342,FRAMEQA32576,piano,what is the man singing and playing?,tumblr_ndm7dz8BTZ1seb31ro1_400,22584,0 13343,FRAMEQA48270,two,how many soccer players are giving the high five for a good game?,tumblr_nq1xbdzSNA1spbq2fo1_250,21669,1 13344,FRAMEQA47713,two,how many teenagers bump into each other and fall over?,tumblr_mhzoo3n2ZK1r8egmso1_400,15859,1 13345,FRAMEQA36340,blue,what is the color of the eyes?,tumblr_nbr61uPtX21r14h39o1_500,61764,2 13346,FRAMEQA25028,two,how many men are holding birds close to each other?,tumblr_ngco2hZoYX1sflxw5o1_250,8062,1 13347,FRAMEQA48120,brown,what is the color of the hair?,tumblr_n8pw2oIrM51t29pn7o1_250,18902,2 13348,FRAMEQA24790,red,what is the color of the jacket?,tumblr_ney2qpWl7D1tv2q4bo1_400,2296,2 13349,FRAMEQA28240,pen,what is the man staring at a boy and touching?,tumblr_nf3gbw09CO1u3g93no1_400,49272,0 13350,FRAMEQA38630,room,where are two people pushing each other?,tumblr_nc9rpqaGy31qhb3vzo1_500,57512,3 13351,FRAMEQA28915,white,what is the color of the girl?,tumblr_ndz2blSzVT1tlgy1jo1_400,67085,2 13352,FRAMEQA51035,kitten,what licks his lips and turns his head?,tumblr_nkngomyhg61u9o884o1_400,21925,0 13353,FRAMEQA49660,white,what is the color of the man?,tumblr_n810pw2rtt1qgii4so1_1280,84268,2 13354,FRAMEQA26433,two,how many cars are going around the racetrack when one car goes off into the dirt?,tumblr_nivsjccx9w1r05qsbo1_400,68322,1 13355,FRAMEQA5332,parasol,what is the lady with dark hair holding?,tumblr_ndwu4pDsNu1ra5f55o1_500,34244,0 13356,FRAMEQA32554,car,what drove through an intersection?,tumblr_nb330aM2rd1taqruuo1_400,64237,0 13357,FRAMEQA44722,cars,what are racing around the racetrack and one care spins out of control?,tumblr_nlzuoyTPM61tx8mn0o1_400,78642,0 13358,FRAMEQA31563,dog,what is the hand scratching head?,tumblr_nfdl028aPE1rufswgo1_400,25068,0 13359,FRAMEQA30241,brown,what is the color of the hair?,tumblr_njb0ljx8qq1u92e13o1_250,47045,2 13360,FRAMEQA6587,blue,what is the color of the shirt?,tumblr_nqx9n4IgAS1u5hcmdo1_250,53507,2 13361,FRAMEQA9412,two,how many young men are performing the dance routine?,tumblr_nen3ysIv0O1qae7oyo1_500,90210,1 13362,FRAMEQA9927,dog,what is opening door of a cage to push out a puppy?,tumblr_ncx9u3ivlb1tdmffyo1_400,101281,0 13363,FRAMEQA41621,car,where is the man stressed out and yelling?,tumblr_n96fygwD8Z1tfwf53o1_400,52011,3 13364,FRAMEQA3386,hat,what is the guy taking?,tumblr_net9q3fbJj1rxd60qo1_250,38852,0 13365,FRAMEQA52967,microphone,where is the young boy with blonde hair singing?,tumblr_nc6dweKA4W1tmwagjo1_250,8122,3 13366,FRAMEQA4863,blue,what is the color of the clothes?,tumblr_ngwbl1n70M1u5ha1qo1_400,63012,2 13367,FRAMEQA35419,white,what is the color of the top?,tumblr_nhbm12GQC11u6j8jco1_250,27292,2 13368,FRAMEQA22736,white,what is the color of the man?,tumblr_n91t1n59Ri1qfees0o1_400,70927,2 13369,FRAMEQA8720,room,where do the group of boys perform dance moves?,tumblr_nate0j7OwU1scv4uso1_500,50947,3 13370,FRAMEQA30427,two,how many men are doing the dance routine?,tumblr_nen3ysIv0O1qae7oyo1_500,90210,1 13371,FRAMEQA5865,pumpkins,what are the boy and a girl carving?,tumblr_ne8yo1RByn1r7xloyo1_400,101514,0 13372,FRAMEQA11017,studio,where is the man laughing?,tumblr_nbc1f32FsJ1soh90so1_500,69672,3 13373,FRAMEQA37863,cat,what is sitting on top of a pillow and shaking their head?,tumblr_nbud39wvWd1r3uz8ro1_400,50653,0 13374,FRAMEQA24403,cat,what gets tortured by the gecko and is scared?,tumblr_nhn4qolyxQ1tgouwlo1_400,52435,0 13375,FRAMEQA50619,kitten,what played with an ornament on a tree?,tumblr_nh40cqYid51s6zpepo1_250,2329,0 13376,FRAMEQA46304,two,how many men are sitting next to each other?,tumblr_n9zybpUiWe1tra8tyo1_500,83057,1 13377,FRAMEQA16065,two,how many men with dark brown hair are talking?,tumblr_neycf1b1Y81s81a83o1_500,43536,1 13378,FRAMEQA42272,black,what is the color of the woman?,tumblr_nju1iwQyUo1un53eto1_400,62948,2 13379,FRAMEQA5664,black,what is the color of the men?,tumblr_neu0myvkQY1u28lfio2_1280,92767,2 13380,FRAMEQA51079,two,how many men are talking and laughing with each other?,tumblr_nh7dbrGYV51syww0ro1_400,17288,1 13381,FRAMEQA29049,cat,what attempts to climb in the paper package?,tumblr_nhg6vkuI8y1tgetb4o1_250,53401,0 13382,FRAMEQA49623,weapon,what are the man picking up while talking on the phone?,tumblr_noka4jzEvu1uvvbrro1_250,23792,0 13383,FRAMEQA37474,robot,what moves as the cat walks through the water?,tumblr_n9kuvyUJT91sual3ro1_250,3721,0 13384,FRAMEQA13494,notebook,what is the hand holding up with a note written in it?,tumblr_nmroky0Ibg1sa6u20o1_400,44357,0 13385,FRAMEQA16821,two,how many men stare at each other while a third man stands between them?,tumblr_ndioe7rlJD1u15wpko1_250,37298,1 13386,FRAMEQA15179,horse,"what does the woman hug , the horse leans its head around her?",tumblr_n8w6qmRAgr1tfcqrho1_250,209,0 13387,FRAMEQA48894,cat,what pounces and charges into the clear tube on the floor?,tumblr_nk3tu3h9Yz1u1v0pco1_400,88816,0 13388,FRAMEQA42521,red,what is the color of the jersey?,tumblr_n8rbz7vPdn1tz9jaqo1_400,69179,2 13389,FRAMEQA16602,cat,what is dipping its paw in a glass of milk?,tumblr_ncxt71hFPt1t7io47o1_250,23002,0 13390,FRAMEQA3482,studio,where are two people and one of them has a guitar?,tumblr_nl3zdwLhgA1ttuja3o1_500,85274,3 13391,FRAMEQA18917,two,how many guys try to high five?,tumblr_nbt3166F731tjpng4o1_500,92690,1 13392,FRAMEQA26715,colors,what are the very colorful close up of a man 's face changing?,tumblr_nnocc9OgKW1unxo73o1_400,34083,0 13393,FRAMEQA6107,black,what is the color of the top?,tumblr_ndezaecWOZ1sdp01ro1_250,6960,2 13394,FRAMEQA31202,black,what is the color of the hair?,tumblr_ner52sAXiZ1u2omz2o1_500,100510,2 13395,FRAMEQA42820,white,what is the color of the trunks?,tumblr_nr3k1cZSra1sqh42jo1_400,60866,2 13396,FRAMEQA46533,two,how many men are dancing and singing on the stage?,tumblr_no5a69ZeuT1usb61xo1_400,48931,1 13397,FRAMEQA16834,dog,what is being attacked by the cat?,tumblr_nabb9j5rq71rw1wnno1_400,69434,0 13398,FRAMEQA14644,purse,what does the girl throw on over her head?,tumblr_ndm0v3pkZn1tyvyt1o1_400,100815,0 13399,FRAMEQA30527,shirt,what is the man taking off and moving backwards?,tumblr_n93sqa0Tt21sjfh08o1_400,30171,0 13400,FRAMEQA27372,room,where are two people fighting?,tumblr_nkhbeuZhcR1u8dfc7o1_400,96835,3 13401,FRAMEQA22207,chair,where is the person in a white shirt sitting?,tumblr_n9ojivgX6N1qedx60o2_500,96484,3 13402,FRAMEQA45290,two,how many people are dancing together in front of another person who is holding a guitar?,tumblr_n9c9tsjxU11t6ksnpo1_500,97624,1 13403,FRAMEQA42327,jacket,what is the woman wearing and smiling?,tumblr_ncy4plCMec1tm5nq5o1_250,6674,0 13404,FRAMEQA23620,two,how many fingers are two boys and two girls holding up?,tumblr_nh7f06Iimr1r1xcixo1_400,28875,1 13405,FRAMEQA16062,airplane,what is flying high above the clouds?,tumblr_npwwzp6mxJ1qltbjko1_400,77259,0 13406,FRAMEQA36755,guitar,what does the person with long hair play?,tumblr_nbbwerXfuY1sjt7a5o1_500,55266,0 13407,FRAMEQA49180,two,how many ladies are leaning their heads on bats and spinning in circles?,tumblr_nkfj17IEnK1u1pokno1_250,53570,1 13408,FRAMEQA42402,car,what is swerving on the road?,tumblr_niu9lzNQeU1u8p1pwo1_500,73805,0 13409,FRAMEQA35659,building,what goes up and then it comes down?,tumblr_nblvftkxsM1t4phwpo1_400,35534,0 13410,FRAMEQA16264,black,what is the color of the dog?,tumblr_nollsdsfZs1sm6bgxo1_400,31771,2 13411,FRAMEQA15192,spaghetti,what is the young woman eating with her fork?,tumblr_nbrebh9MCk1rruwnyo1_400,97865,0 13412,FRAMEQA21111,kitten,what is the man manipulating body back and forth?,tumblr_nev8ygd3491tmnswbo1_400,43441,0 13413,FRAMEQA15779,cat,what is falling down?,tumblr_nbn45jzc2V1tlc96ro1_400,25609,0 13414,FRAMEQA9051,two,how many women look at each other and nod in agreement?,tumblr_nhmi7dGdup1qgeu41o1_500,94202,1 13415,FRAMEQA20632,pup,what is getting air blown into a puffy fluff?,tumblr_nggwvt9aWm1t7an45o1_500,92691,0 13416,FRAMEQA10210,two,how many men are walking into the vault together?,tumblr_nojc0uHi1c1tmavx8o1_400,42824,1 13417,FRAMEQA46510,chair,what is the crying woman throwing and sitting down?,tumblr_nrfz5fPJmO1uzpx6mo1_400,78802,0 13418,FRAMEQA51813,red,what is the color of the raspberry?,tumblr_ncb4rh5u6V1tw6u06o1_500,74315,2 13419,FRAMEQA34639,black,what is the color of the man?,tumblr_ne9z4wBCgr1u2aovoo1_500,65473,2 13420,FRAMEQA38349,outside,what is the man taking off?,tumblr_nfzjobYaWn1roqntto1_500,74967,0 13421,FRAMEQA5634,dog,what is the little girl hugging by sitting on its back?,tumblr_noaomhd7ZQ1un7qbto1_250,2261,0 13422,FRAMEQA8271,bib,where is the baby smiling and laughing?,tumblr_noyux3yYKW1qa0byyo1_400,7032,3 13423,FRAMEQA29517,bear,what falls after the branch it is sitting on breaks?,tumblr_ncap7ix7eJ1thbgs3o1_250,10789,0 13424,FRAMEQA40547,one,how many person is tackling another person while indoors?,tumblr_n979a0Asuy1thg3s4o1_250,6092,1 13425,FRAMEQA4705,two,how many men are standing under an umbrella and talking?,tumblr_ngrlu3nb1T1u0sggco1_500,93562,1 13426,FRAMEQA27849,one,how many man shows another man his neck?,tumblr_ncz9wdNmgj1tgftffo1_400,40373,1 13427,FRAMEQA14517,container,where do three kittens cuddle?,tumblr_n9g5efSoWD1rsxypwo1_400,22459,3 13428,FRAMEQA48525,black,what is the color of the dog?,tumblr_nnn5nj7vw21s8rggqo1_250,2604,2 13429,FRAMEQA50,two,how many men are dancing and holding golf clubs?,tumblr_ncbcbhoKhs1r80o0mo1_500,101339,1 13430,FRAMEQA26053,orange,what is the color of the cardigan?,tumblr_nktgnoK1z31t15h2ho1_250,11454,2 13431,FRAMEQA49806,skateboard,what is the man riding over a flight of stairs?,tumblr_nfxv4gjrAC1ryxa3bo1_400,11423,0 13432,FRAMEQA19117,airplane,where is the man with long hair and a beard sitting?,tumblr_na5nxkhvGS1ti5broo1_500,39814,3 13433,FRAMEQA21543,white,what is the color of the sprays?,tumblr_nkybgr8MIr1tmnntwo1_250,35718,2 13434,FRAMEQA29871,room,where is the fire burning very bright?,tumblr_nir1kqGVoT1slzs8fo1_400,4796,3 13435,FRAMEQA42949,white,what is the color of the boy?,tumblr_njz270ADrC1uo39nto1_400,62252,2 13436,FRAMEQA30166,bird,what is blown down the hill by the wind?,tumblr_ncbrd1GZox1s71nvbo1_500,59464,0 13437,FRAMEQA9318,chair,where is the person listening to something on his or her headphones is dancing?,tumblr_npozq32jf31up3ufho1_400,30907,3 13438,FRAMEQA15944,two,how many different boy bands are dancing against each other?,tumblr_nkkqdmYAMm1sipe8no1_500,95007,1 13439,FRAMEQA16181,white,what is the color of the shirt?,tumblr_ndii8agRre1qegwm1o1_500,89932,2 13440,FRAMEQA16719,red,what is the color of the bike?,tumblr_nb0bvasOi81slj978o1_500,62301,2 13441,FRAMEQA9838,white,what is the color of the gown?,tumblr_nhy4mwvSbf1u05z12o1_500,98510,2 13442,FRAMEQA40297,gold,what is the girl with the dark hair holding?,tumblr_nontc2hbaR1rlnhwvo1_540,101258,0 13443,FRAMEQA15287,cart,what is the teenager riding?,tumblr_ncq9kaqQ2R1tegl32o1_250,14927,0 13444,FRAMEQA7879,one,how many man is resting his head on the other 's shoulder?,tumblr_np34z9JutX1uwk4eao1_500,94394,1 13445,FRAMEQA37785,two,how many people are on the boat?,tumblr_njb0rpCsKz1tzc1tgo1_500,70885,1 13446,FRAMEQA45999,three,how many young friends are discussing the package of produce?,tumblr_mh1su2V1xR1qbehwco1_500,100674,1 13447,FRAMEQA5416,two,how many girls are crying so hard their makeup smears?,tumblr_ncmkrlulEL1tt4nxqo1_250,26024,1 13448,FRAMEQA1249,two,how many peace signs is the lady holding up?,tumblr_nh9uqzHJuS1rcgywao1_400,38015,1 13449,FRAMEQA19483,ball,what is the man missing golf?,tumblr_nqzeu4Saoa1uvfg79o1_400,71023,0 13450,FRAMEQA7885,black,what is the color of the car?,tumblr_ni06hc76UJ1u639x2o1_500,72526,2 13451,FRAMEQA1497,monkey,what eats the piece of banana while someone holds his hand?,tumblr_nct9irBVTo1tdjuqvo1_400,69435,0 13452,FRAMEQA47701,car,what crashes into the fence and smashes up?,tumblr_n9di4xF53b1r0dpzwo1_400,81235,0 13453,FRAMEQA51144,sun,"what is shining , the trees are being passed by , and the clouds are above?",tumblr_nir1imp3Hd1tkwbico1_400,4655,0 13454,FRAMEQA33613,cap,what is speaking in the mike?,tumblr_naf3n9tRJN1td8ijso1_500,47511,0 13455,FRAMEQA32038,room,where are two women fighting each other?,tumblr_nb3arfcvho1tunar3o1_250,4217,3 13456,FRAMEQA13866,green,what is the color of the jacket?,tumblr_nca4fq9EnX1td804io1_250,15472,2 13457,FRAMEQA25743,skateboard,what is the person kicking away?,tumblr_nabhgxpYfE1tjaic7o1_r1_400,26368,0 13458,FRAMEQA42079,ball,what did the footballer kick across the pitch?,tumblr_npu2xyXujL1u7q0qeo1_400,96690,0 13459,FRAMEQA31225,black,what is the color of the tie?,tumblr_nd5sszzMyl1r20o7po1_500,43493,2 13460,FRAMEQA31216,blue,what is the color of the robes?,tumblr_nny2x0HXEO1u7d8xzo1_400,31263,2 13461,FRAMEQA48417,scooter,what is the dog wearing a cape and riding?,tumblr_ndwfzx0hL91tgkdkbo1_250,5671,0 13462,FRAMEQA26003,black,what is the color of the hair?,tumblr_nqd1emIDJp1so7p3zo1_400,41210,2 13463,FRAMEQA10218,purple,what is the color of the person?,tumblr_ndurbh6w6U1rm0u6lo1_400,58760,2 13464,FRAMEQA17319,bird,what does the person with the bird head release?,tumblr_n9djmj80Jg1tqwtb6o1_500,35961,0 13465,FRAMEQA23121,black,what is the color of the hair?,tumblr_nbv2yekEpj1tj55h3o1_250,5746,2 13466,FRAMEQA15614,two,how many boys are sitting together and one laughs hard at the other?,tumblr_nec94vgO6I1s95scvo1_400,57619,1 13467,FRAMEQA28021,brown,what is the color of the hat?,tumblr_nq1j2bTh2e1uuaiwuo1_400,38248,2 13468,FRAMEQA19112,two,how many men are giving each other middle fingers?,tumblr_n8xdjz1MKC1r6b9h8o1_500,30622,1 13469,FRAMEQA15783,two,how many people sat down talking and laughing?,tumblr_nee92e9wJt1srt4nmo1_250,81215,1 13470,FRAMEQA33130,elephant,"what jumps in the puddle , the other elephant pulls it closer?",tumblr_nr0xuomYVF1uqy5dho1_250,82672,0 13471,FRAMEQA39501,two,how many guys were talking in the room when another guy bursts in?,tumblr_nkluxwUCXZ1up5k6ro1_250,77807,1 13472,FRAMEQA35094,sunglasses,"what are the group of people staring blankly , most of them wearing?",tumblr_nnjpac3v6Q1qboh47o1_500,59306,0 13473,FRAMEQA31728,white,what is the color of the woman?,tumblr_nkz1d7Ed6a1up1p8qo1_250,10910,2 13474,FRAMEQA7109,two,how many doctors are walking along the hospital corridor?,tumblr_nf1nlpijnR1u2lw0po1_400,77200,1 13475,FRAMEQA33107,car,what is spinning out of control on a street?,tumblr_ngilgcU4iR1u0fgfyo2_400,59008,0 13476,FRAMEQA50867,panda,what is being surprised by the squirrel?,tumblr_nde6csPi0h1rg2esto1_400,90634,0 13477,FRAMEQA23947,black,what is the color of the hair?,tumblr_naj0iuFdz91qhoso4o1_250,16855,2 13478,FRAMEQA41365,dress,what is the model showing?,tumblr_ndamtkX07d1rc55rmo1_400,38874,0 13479,FRAMEQA20211,car,what is in the race?,tumblr_nbk9h1Vx7T1tx8mn0o1_400,77249,0 13480,FRAMEQA35087,black,what is the color of the hair?,tumblr_n8x40tVuG51ri8xzao1_400,34042,2 13481,FRAMEQA46306,red,what is the color of the vest?,tumblr_n9cqrdn02m1slj978o1_400,24624,2 13482,FRAMEQA7054,two,how many young men are being pulled on the cart?,tumblr_nkq6tnFoXV1rif4nho1_400,24121,1 13483,FRAMEQA16830,two,how many young girls dance and perform together on stage?,tumblr_nbci2vFibY1st6smgo1_500,73073,1 13484,FRAMEQA18396,one,how many girl wipes away at her eyes while the other runs her hands through her hair?,tumblr_nrd6a5lSj81r5wqxpo1_400,91865,1 13485,FRAMEQA50911,two,how many planes fly close to each other over a desert?,tumblr_nnq4tzM7M51urqm0mo1_500,85138,1 13486,FRAMEQA30369,white,what is the color of the dress?,tumblr_nb214iSPxA1tdmffyo1_250,14238,2 13487,FRAMEQA5431,blue,what is the color of the top?,tumblr_n90vul8OL31sm7km1o1_400,3794,2 13488,FRAMEQA47419,towel,what does woman in a gym throw threw over her shoulder and waves?,tumblr_nozeurbvJO1ssgyoro1_250,14329,0 13489,FRAMEQA49007,cigarette,what is the woman smoking and a man is playing music?,tumblr_nb0tu1lItQ1tte6jbo1_500,49206,0 13490,FRAMEQA8007,blue,what is the color of the jacket?,tumblr_nauka09f5w1qf6wjoo1_400,36153,2 13491,FRAMEQA31527,room,where is the guy sitting and drinking a beer?,tumblr_nbm1xca04k1tgmun7o1_500,73075,3 13492,FRAMEQA28419,cat,what is cuddling on top of a pug dog?,tumblr_nhxl2nzKDV1u4v3ypo1_400,36764,0 13493,FRAMEQA3123,horse,what is jumping across many obstacles?,tumblr_nd8luntFAK1s8qlxdo1_400,97784,0 13494,FRAMEQA46889,four,how many guys is this image of laughing and talking together?,tumblr_no51i7FwV61uuvan0o1_500,86187,1 13495,FRAMEQA36395,drums,what is the man playing the guitar and the other one is playing?,tumblr_nbcj1gnaNb1tt9t0wo1_400,66981,0 13496,FRAMEQA8949,green,what is the color of the sweater?,tumblr_nbeftbem4C1qbhvh2o1_250,30533,2 13497,FRAMEQA15486,red,what is the color of the hat?,tumblr_n9lxprLdzy1tamb9vo1_250,27712,2 13498,FRAMEQA42830,balloons,"what is the man sitting at a desk , and are falling down on top of him?",tumblr_nna22wyqkJ1ur3duoo1_400,41507,0 13499,FRAMEQA15476,red,what is the color of the shirt?,tumblr_nco0vdTzvA1t7lab9o1_400,32678,2 13500,FRAMEQA42616,gray,what is the color of the top?,tumblr_nkb77mjx6t1qalh3co1_250,47200,2 13501,FRAMEQA12311,three,how many cars is racing in the car race?,tumblr_nhbn0vv8Gp1tx8mn0o1_400,86055,1 13502,FRAMEQA26947,three,how many gentlemen is sitting on a couch and the one in the middle makes a face?,tumblr_nadznytQ3X1tj5zkfo1_500,71352,1 13503,FRAMEQA41631,car,where is the woman driving?,tumblr_nd1jamcgAZ1u0agnbo1_500,73509,3 13504,FRAMEQA309,two,how many men is wearing jackets are looking at each other?,tumblr_nqqqwvtQlq1uuas63o1_r1_400,57714,1 13505,FRAMEQA20625,gray,what is the color of the shirt?,tumblr_ni2r2aqE0a1u87h83o1_500,90086,2 13506,FRAMEQA17527,car,what is going on the road?,tumblr_nfqoyfh3sz1u25ovvo1_400,63597,0 13507,FRAMEQA53021,two,how many shirtless men are hugging on the field?,tumblr_nd0ttcs6US1s9rulno1_400,78934,1 13508,FRAMEQA40612,two,how many girls in bathing suits play together in the water?,tumblr_n9qycyrMPe1tid4e3o1_250,15970,1 13509,FRAMEQA51684,brown,what is the color of the couch?,tumblr_nc49njrbDl1r8db76o1_500,93956,2 13510,FRAMEQA22077,black,what is the color of the polish?,tumblr_ncbukbwrbP1tc6jy7o1_250,11226,2 13511,FRAMEQA23289,black,what is the color of the clothes?,tumblr_ncix6jq2pe1sj2n0po1_400,64895,2 13512,FRAMEQA6905,yellow,what is the color of the sweater?,tumblr_ne899a7xR51tkmovro1_250,7004,2 13513,FRAMEQA43848,black,what is the color of the hair?,tumblr_ngvlk8uuV21rqfergo1_400,33540,2 13514,FRAMEQA2125,black,what is the color of the outfit?,tumblr_nh6u5hYl8H1u6njy9o1_250,71491,2 13515,FRAMEQA41402,black,what is the color of the jacket?,tumblr_nhz8czNPjn1qeereko1_1280,93001,2 13516,FRAMEQA23028,one,"how many man is standing in front of a second man , nods his head and blinks?",tumblr_nbd6dlVfS21tkhe6eo1_400,98274,1 13517,FRAMEQA11604,street,where is the boy dancing?,tumblr_n8pwnqmWsZ1qbzxofo1_400,74550,3 13518,FRAMEQA49834,dog,what is offered the toy but keeps smacking it away?,tumblr_nhjoevhfoc1te94myo1_400,10630,0 13519,FRAMEQA10953,kitten,what is the man holding and making it wave?,tumblr_ne26g19AFF1tmflpjo1_500,58135,0 13520,FRAMEQA47157,puppy,what is running and playing with someone?,tumblr_n95d2oPwhy1suyqwko1_400,56086,0 13521,FRAMEQA14193,fish,what is the kitten touching with their face and paw?,tumblr_n8hk45xsAu1tgetb4o1_400,66886,0 13522,FRAMEQA22399,trucks,what are racing around the track and one creates a dust cloud when it overtakes another?,tumblr_nfvp6qwyZi1tx8mn0o1_400,55600,0 13523,FRAMEQA19957,black,what is the color of the man?,tumblr_nfieggHos51tz7e01o1_250,23240,2 13524,FRAMEQA32881,black,what is the color of the suit?,tumblr_nnkqmlsRPP1uoyfr8o1_400,64657,2 13525,FRAMEQA1940,cap,what does the woman slowly pull down?,tumblr_nd1f5mbQIk1t1u5gdo1_250,10688,0 13526,FRAMEQA5201,coat,what is the boy wearing and smiling?,tumblr_no4wydu9wG1thnpkoo1_400,74664,0 13527,FRAMEQA10687,two,how many people are jumping and dancing while playing the guitar?,tumblr_niqzj9bg5M1r1i417o1_500,36921,1 13528,FRAMEQA39,white,what is the color of the hat?,tumblr_no7jjumZkp1rpuigeo1_250,6010,2 13529,FRAMEQA52405,room,what are boys in uniform entering?,tumblr_ndadrh4sIT1sjbkgto1_500,48121,0 13530,FRAMEQA52229,two,how many men in armor are following a woman?,tumblr_ngybd6WcFt1r7cmcvo1_400,88803,1 13531,FRAMEQA28942,two,how many woman are ballet dancing at a barre?,tumblr_nh3o9muUyk1tm1rujo1_400,41181,1 13532,FRAMEQA21193,black,what is the color of the hair?,tumblr_nh0tcd4mDD1u2x6xfo1_400,32603,2 13533,FRAMEQA31301,two,how many women are turning in circles around their plastic bats on the ground?,tumblr_nkfj17IEnK1u1pokno1_250,53570,1 13534,FRAMEQA8163,puppy,what is falling off the tiny couch?,tumblr_nhf9v5oufm1tjhld9o1_500,76043,0 13535,FRAMEQA26957,brown,what is the color of the dog?,tumblr_nc2xc108CT1sh1v2uo1_500,57385,2 13536,FRAMEQA38484,black,what is the color of the cat?,tumblr_nkyaonXHxl1tmnntwo1_400,18209,2 13537,FRAMEQA47597,two,how many people is this walking down a sidewalk?,tumblr_nknrigFden1ty49xko6_250,39731,1 13538,FRAMEQA11179,car,what tires are smoking as someone revs the accelerator with the handbrake on?,tumblr_nb2amuCSF01suocdbo1_500,70395,0 13539,FRAMEQA49778,cat,what is playing with the lid of a dustbin?,tumblr_nb6bp2wUl71t7jda2o1_400,71135,0 13540,FRAMEQA16998,two,how many cubs are playing with soft toys?,tumblr_nnzlhp8DpG1tgouwlo1_500,38497,1 13541,FRAMEQA7282,two,"how many fingers does the woman , with long brown hair , wink and raises to her face?",tumblr_naxwhdLvNY1qgf0vjo1_500,85323,1 13542,FRAMEQA16610,hat,what is the handsome young man throwing?,tumblr_ncgx0gSMVZ1rne0ito1_400,24150,0 13543,FRAMEQA15798,uncontrollably,what does the man steer down a street?,tumblr_nhxsiqiqON1u7lcb4o1_500,77450,0 13544,FRAMEQA49192,black,what is the color of the hair?,tumblr_naje2j4n8S1qazjvjo1_250,47238,2 13545,FRAMEQA29040,two,how many men are staring at each other suspiciously?,tumblr_nf3ataD6lI1sa0lndo1_500,76533,1 13546,FRAMEQA41380,three,how many men are talking into the mic and smiling?,tumblr_nfb23gwoUs1t8bzkuo1_500,96628,1 13547,FRAMEQA34779,black,what is the color of the girl?,tumblr_n9hbdm15kn1su97m6o1_400,33429,2 13548,FRAMEQA9383,rocket,what is taking off and leaving the lot of smoke?,tumblr_n8q2u62j8H1sqofgbo1_400,44819,0 13549,FRAMEQA39252,yellow,what is the color of the jacket?,tumblr_ncy21yF0Kz1sn0ag3o1_400,12421,2 13550,FRAMEQA14091,blue,what is the color of the shirt?,tumblr_nfmprtryRm1s013u0o2_r1_500,55145,2 13551,FRAMEQA38267,room,where are the couple dancing?,tumblr_nju11yo3w51un17g7o1_250,93722,3 13552,FRAMEQA25044,cigarette,what is the woman lighting a cigarette and covering with her hand?,tumblr_nate0yTgIe1tkqgqvo1_250,47078,0 13553,FRAMEQA51618,sheep,what is running towards the cow?,tumblr_ngcyybdpPO1qct8qno1_400,96856,0 13554,FRAMEQA48416,car,what is driven along the roadway and sprays water?,tumblr_nacr8iiHHd1tjztg6o1_400,46433,0 13555,FRAMEQA2683,black,what is the color of the hair?,tumblr_nagxk9TdwJ1t653keo1_250,53209,2 13556,FRAMEQA14264,black,what is the color of the t-shirt?,tumblr_nqic81YShE1uydvxfo1_400,58873,2 13557,FRAMEQA8347,cap,"what is the woman , wearing , raises two fingers to her face?",tumblr_njc40fOfLU1rs757qo1_250,21692,0 13558,FRAMEQA23443,two,how many guys laugh at something they see on the laptop?,tumblr_nekejw2Vnh1tpgapwo1_500,77959,1 13559,FRAMEQA52208,car,what is driven over bumps in the road?,tumblr_nqjman0b8a1qcehyco1_400,50340,0 13560,FRAMEQA9032,cat,what is slapping the dog in the face?,tumblr_nki72xibIX1tatohao1_250,3605,0 13561,FRAMEQA3629,call,what does the man in distress make?,tumblr_n8q3yiBAaD1sfpgb1o1_250,53297,0 13562,FRAMEQA24869,three,how many men are talking into microphones and laughing?,tumblr_ne2s6tD89Q1tdqz0co1_500,67602,1 13563,FRAMEQA255,white,what is the color of the clothes?,tumblr_nprmzqr4Z81tkeou1o1_400,18456,2 13564,FRAMEQA19627,three,how many people are sitting on the couch?,tumblr_nb2wtt5EEO1tnlurpo1_250,12826,1 13565,FRAMEQA48923,door,what is the woman opening?,tumblr_nmgov3vk2o1trtwh4o1_500,26446,0 13566,FRAMEQA11741,shark,what looks dangerously close to the cage?,tumblr_nbsow8trHJ1tlsvejo1_400,70700,0 13567,FRAMEQA33124,black,what is the color of the man?,tumblr_n9n7fxGuGC1rw9vqmo1_250,17157,2 13568,FRAMEQA16618,black,what is the color of the hair?,tumblr_n99p6kFi1i1t0kzbeo1_400,62297,2 13569,FRAMEQA52086,black,what is the color of the girl?,tumblr_nc6j45sSgI1s0altuo1_400,30520,2 13570,FRAMEQA40227,cigarette,what did the man light with a match?,tumblr_ngcvxuaICP1u5u010o1_400,96793,0 13571,FRAMEQA53057,microphone,what does the singer swing around?,tumblr_nb692thYgT1toja74o1_400,35829,0 13572,FRAMEQA1391,two,how many men are laughing together as one waves his tie?,tumblr_nhvvdlFwGZ1qdbe91o1_400,77610,1 13573,FRAMEQA21502,black,what is the color of the hair?,tumblr_nehcl8imz61tmewk1o1_250,5291,2 13574,FRAMEQA20288,three,how many guys are laughing out loud on the talk show?,tumblr_n95dgjajvW1syjz5uo1_250,13891,1 13575,FRAMEQA49872,cat,what is the hand scratching and the cat is pushing the hand back?,tumblr_nku8674mFY1qcrdgyo1_250,3555,0 13576,FRAMEQA22768,paw,what is the cute white cat holding up and looking around?,tumblr_nhomuemFfD1u684yco1_250,13612,0 13577,FRAMEQA28358,noodles,what is the ginger man eating with chopsticks?,tumblr_nkihuwMaiG1qff887o1_500,53061,0 13578,FRAMEQA10328,blue,what is the color of the uniform?,tumblr_nbis63V24E1tpt5dko1_400,33072,2 13579,FRAMEQA50276,black,what is the color of the hair?,tumblr_n9k8xzjz181tiur4yo1_250,12182,2 13580,FRAMEQA40654,black,what is the color of the glasses?,tumblr_ng7t0cL34T1siy4hto1_500,45116,2 13581,FRAMEQA42919,black,what is the color of the hair?,tumblr_nhpkjf8wtX1u0ag05o1_250,41440,2 13582,FRAMEQA50425,dog,what does the baby struggle and suddenly jumps in front of the baby?,tumblr_nanp56KwNG1ra8x2co1_250,12150,0 13583,FRAMEQA32626,cigarette,what is the woman with red lips smoking?,tumblr_ngkwncNAQg1u323uto1_500,80350,0 13584,FRAMEQA6996,car,what hits the law enforcement officer?,tumblr_nedx56ViKO1tl8yi6o1_500,78007,0 13585,FRAMEQA20467,two,how many people are running towards each other and one catches the other when they jump towards them?,tumblr_nduz284UAa1t4de4ao1_250,47011,1 13586,FRAMEQA37904,two,how many men dressed in striped shirts and white hats are looking down from a balcony?,tumblr_nqwmhysJ721ua5q7mo1_500,32856,1 13587,FRAMEQA49860,turtle,"what is dancing under the water , swinging its hips from side to side?",tumblr_ndq39cqvhJ1qhvk2yo1_400,7895,0 13588,FRAMEQA18187,wig,what is the girl wearing and waving?,tumblr_nhzgghFVtQ1u5gb4jo1_400,35122,0 13589,FRAMEQA52810,two,how many guys are facing each other with spoons in their mouths?,tumblr_nkoga4fMRx1r9ka6jo1_500,90422,1 13590,FRAMEQA46555,white,what is the color of the jacket?,tumblr_nc0v3rGCgq1srd245o1_500,49171,2 13591,FRAMEQA28959,skates,what is the man wearing a black shirt was taking off?,tumblr_nkojhorUl81sjmrcro1_400,48297,0 13592,FRAMEQA43090,hat,what is the man with dyed hair taking off and shaking his head?,tumblr_nb7m6oseVy1tjgll6o1_400,35257,0 13593,FRAMEQA28432,car,where is the guy talking?,tumblr_nff9qwV7Kn1t1ack3o1_500,88562,3 13594,FRAMEQA38064,green,what is the color of the room?,tumblr_nrjtdvdsMt1sdiz3bo1_400,33402,2 13595,FRAMEQA38077,dog,what is playing with a gardening tool hits a man in the groin?,tumblr_njrzdxnmrz1tgetb4o1_250,39882,0 13596,FRAMEQA36807,car,where does the man id dancing whilst being driven?,tumblr_nnzz2eyFYT1tvo8x5o1_500,60863,3 13597,FRAMEQA40569,two,how many men are hugging?,tumblr_ncbwoiwcXo1reut2bo1_500,91828,1 13598,FRAMEQA42311,cat,what is hugging the can of beer?,tumblr_ng2ar7n3F71u4v3ypo1_400,22058,0 13599,FRAMEQA2542,stick,what is the person singing and waiving?,tumblr_ne2my0wqMO1tmg8yyo1_500,48460,0 13600,FRAMEQA302,room,where is the man playing a guitar shirtless?,tumblr_np0stcDMuz1u3z45ao1_500,46013,3 13601,FRAMEQA37291,car,"what do the man and woman sit in a car , they look at one another , and the woman exits?",tumblr_nglczjnOxY1s3ffcpo1_250,47334,0 13602,FRAMEQA24968,black,what is the color of the rag?,tumblr_nbrmv0Ds3t1tc97obo1_500,71433,2 13603,FRAMEQA51120,car,what is driving down the dirt road?,tumblr_nhyz55Zgxg1tx8mn0o1_400,78412,0 13604,FRAMEQA19562,airplane,what sways unsteadily as it takes off from the runway?,tumblr_ni1vxsCvAy1s71nvbo1_500,94662,0 13605,FRAMEQA46630,dog,what stole all the food off the table?,tumblr_nolxxzhyg81tk2ngvo1_400,49339,0 13606,FRAMEQA50594,two,how many men are happy and clapping?,tumblr_ne5uusuvNn1u2p22ho1_250,13113,1 13607,FRAMEQA3441,chair,"where does the man dance , his friends join in the background?",tumblr_nggyrnra3Z1u5urkpo1_500,83489,3 13608,FRAMEQA1000,insect,what is someone riding on through a city?,tumblr_nrgl64288d1uayg4ko1_500,82882,0 13609,FRAMEQA39213,cigarette,what is the girl smoking while sitting?,tumblr_ncqa0vZplB1u02d5so1_400,51131,0 13610,FRAMEQA28306,cat,what is laying down with the pair of tongs and a mustache?,tumblr_nfyngbHW2w1sfwliho1_400,37693,0 13611,FRAMEQA29195,two,how many girls are walking fast on the stage?,tumblr_nc94ra2nr01r73xvvo1_500,62033,1 13612,FRAMEQA48422,white,what is the color of the grabs?,tumblr_ngtknzed0C1sgeuwzo1_400,25648,2 13613,FRAMEQA22170,two,how many men are running?,tumblr_no66cpooeo1us355ko1_400,64490,1 13614,FRAMEQA51086,purple,what is the color of the sweater?,tumblr_nftwuicUUR1rmlxeco1_400,32765,2 13615,FRAMEQA41755,pug,what smiles and walks toward the view?,tumblr_n95d2oPwhy1suyqwko1_400,56086,0 13616,FRAMEQA17760,black,what is the color of the man?,tumblr_ncbkukZabe1qmbwdqo1_500,69170,2 13617,FRAMEQA18071,three,how many women are dancing together on the stage?,tumblr_ngb2ovfyKz1qeagqto1_500,87675,1 13618,FRAMEQA6709,two,how many guys are kissing each other?,tumblr_n9lnqa0TkE1rac9v2o1_400,47875,1 13619,FRAMEQA8917,dog,what is in the bath tub taking a shower?,tumblr_nis0671Qu01tjqbh0o1_250,1463,0 13620,FRAMEQA39030,brown,what is the color of the hair?,tumblr_nr6iikzrr01subslpo1_500,35867,2 13621,FRAMEQA52034,store,what is the young man holding a helmet cross the sidewalk and enters?,tumblr_nknkvtNKt41u7nielo6_250,44978,0 13622,FRAMEQA44662,red,what is the color of the hair?,tumblr_nov7ahPDEa1s8fgq7o1_500,89222,2 13623,FRAMEQA47558,road,what is the man skateboarding down?,tumblr_nju6ndyMjh1u9rjjqo1_400,61971,0 13624,FRAMEQA50102,balloons,what is the guy sitting down and are falling?,tumblr_nna22wyqkJ1ur3duoo1_400,41507,0 13625,FRAMEQA11058,donuts,what is the car turning on the track?,tumblr_nrc4axMW2T1r92mkgo1_400,62304,0 13626,FRAMEQA6200,two,how many persons are talking while the black woman is turn her head?,tumblr_n9wkpeXC991re6qqko1_500,88635,1 13627,FRAMEQA42789,cat,what is playing around with the tablet?,tumblr_nbonmh32QP1slwrsuo1_400,13378,0 13628,FRAMEQA24755,black,what is the color of the hair?,tumblr_na84gkxrUE1tdxr8ko1_500,90129,2 13629,FRAMEQA46580,car,what is this skidding off of the track and coming to a stop next to a wall?,tumblr_nbrgn3y2N31tx8mn0o1_400,80363,0 13630,FRAMEQA38275,white,what is the color of the cat?,tumblr_n9kuvyUJT91sual3ro1_250,3721,2 13631,FRAMEQA13482,white,what is the color of the guy?,tumblr_nb2tcoMsrZ1qi5axlo1_500,76630,2 13632,FRAMEQA25007,cars,what are racing along the race track?,tumblr_nit1e4bC5N1tx8mn0o1_400,96402,0 13633,FRAMEQA2670,cookie,what is the young man with blonde hair eating?,tumblr_ndis19khrB1tj3q2po1_250,5718,0 13634,FRAMEQA42744,two,how many beautiful boys with black and white clothes are dancing?,tumblr_nf2c6jqkXE1tzlevco1_250,1608,1 13635,FRAMEQA123,two,how many people are standing by each other?,tumblr_ng2vlqcXhu1sneimso1_500,101840,1 13636,FRAMEQA13117,white,what is the color of the kittens?,tumblr_nko149Q7AN1u8uroco1_250,43578,2 13637,FRAMEQA9422,dog,"what appears to smile , then sticks its tongue out?",tumblr_nkvji4ecmU1qjxfevo1_250,8778,0 13638,FRAMEQA15977,three,how many men dressed in black are smiling and laughing?,tumblr_neu0myvkQY1u28lfio2_1280,92767,1 13639,FRAMEQA920,cigar,what is the woman with long red nails smoking?,tumblr_ndbdow0oY81tb2kgho1_400,96428,0 13640,FRAMEQA31383,two,how many people are playing around together?,tumblr_noqj7pGE6R1uwqr4do1_250,14442,1 13641,FRAMEQA5515,one,how many boxer is pummeling another boxer in a ring?,tumblr_neyjq3tjnp1rpq8aco1_400,82800,1 13642,FRAMEQA9456,bed,where is the young couple visiting a little boy?,tumblr_nldohwN6Uw1rum00mo1_500,77437,3 13643,FRAMEQA40350,man,what is turning his head?,tumblr_nk5pn1wSC41r36r8mo1_500,34236,0 13644,FRAMEQA27620,one,how many wrestler body slams another in a boxing ring?,tumblr_ncebs8f4oQ1t34v14o1_250,29120,1 13645,FRAMEQA1016,cat,what is hitting the waste paper bin with its paw?,tumblr_nb6bp2wUl71t7jda2o1_400,71135,0 13646,FRAMEQA8889,two,how many astronauts in space and one floated away?,tumblr_nd564udcM31thydgho1_400,35050,1 13647,FRAMEQA16114,black,what is the color of the man?,tumblr_nbhkpbYVJn1sbqayyo1_250,6728,2 13648,FRAMEQA25124,cigarette,what is the man lighting with a cigarette?,tumblr_nbnsu0m0or1rig0zgo1_400,34066,0 13649,FRAMEQA12830,door,where is the man looking through binoculars and a woman closes her shirt?,tumblr_ngtd3euAIt1rwc3zyo1_400,28060,3 13650,FRAMEQA33840,cat,what is this going down a slide?,tumblr_nkyaonXHxl1tmnntwo1_400,18209,0 13651,FRAMEQA21984,white,what is the color of the stares?,tumblr_n810pw2rtt1qgii4so1_1280,84268,2 13652,FRAMEQA32806,computer,what is the man wearing a red hat and earphones is using?,tumblr_ne4kuuZpVa1rlngqxo1_400,62540,0 13653,FRAMEQA13337,white,what is the color of the girl?,tumblr_nqgkjfHKBs1to8r9ro1_250,69441,2 13654,FRAMEQA17512,three,how many images of the same man is holding his hands appear?,tumblr_njva29Mg0d1sbjmhmo1_500,84190,1 13655,FRAMEQA42719,white,what is the color of the shirt?,tumblr_nppnpzGIMu1sgpl4mo1_400,57260,2 13656,FRAMEQA4812,blue,what is the color of the toy?,tumblr_nad9ej0PCm1sk96t7o1_400,63718,2 13657,FRAMEQA24758,black,what is the color of the shirt?,tumblr_nkodyvmkCZ1u9f952o9_250,12301,2 13658,FRAMEQA6684,red,what is the color of the lipstick?,tumblr_n8rboumR0F1skcntdo1_250,38367,2 13659,FRAMEQA51478,container,"what are hands opening , and then a massive explosion occurs?",tumblr_nexhjhoBOY1s9emmto1_400,37018,0 13660,FRAMEQA9296,robot,what is down stairs with short steps?,tumblr_no3edfgW4X1u71py1o1_250,12211,0 13661,FRAMEQA12436,two,how many people are kissing in front of fireworks?,tumblr_n9fdnvH5Kp1t3or8jo1_500,40793,1 13662,FRAMEQA47887,one,how many man holds another while he licks his face?,tumblr_nbigfaMpHw1rhe0jeo1_250,41462,1 13663,FRAMEQA8888,black,what is the color of the hair?,tumblr_nko38yTj0p1u5tusoo1_400,54430,2 13664,FRAMEQA26566,robot,what is driving and attacking another robot?,tumblr_nc31o8OdwG1qhq89to1_500,58113,0 13665,FRAMEQA24841,bicycles,what are people riding down a dirt road?,tumblr_n949p2g4GF1tabm5fo1_500,67205,0 13666,FRAMEQA30463,snake,"what is the girl holding a snake and kisses the snake , then kisses her?",tumblr_nbag18Nh9E1s78p7ko1_500,59188,0 13667,FRAMEQA40639,black,what is the color of the man?,tumblr_neyimghSIJ1sqwf9so1_500,75844,2 13668,FRAMEQA51031,hat,what is the man licking his lips and wearing?,tumblr_ndmmafYKjg1smipaso1_500,20608,0 13669,FRAMEQA51504,skateboard,what is the man riding past a parked car?,tumblr_nauniqfrew1tuke21o1_400,24409,0 13670,FRAMEQA43875,green,what is the color of the uniform?,tumblr_novf5fUQYT1rtmb48o1_400,96174,2 13671,FRAMEQA4836,white,what is the color of the man?,tumblr_nene7m6nXo1shp2peo1_400,65485,2 13672,FRAMEQA14707,spider,what is the brush sucking up and then it reverses?,tumblr_nfdhg6tHlo1s4pilyo1_400,65579,0 13673,FRAMEQA5337,fox,what is sniffing something on the ground?,tumblr_ni2r0l3BTc1slj978o1_400,49338,0 13674,FRAMEQA16049,two,how many man are saying something at somebody?,tumblr_nb1vzhS7Dk1s3t57eo1_500,73215,1 13675,FRAMEQA16494,red,what is the color of the hat?,tumblr_nibscxbjOp1qlbj8uo1_500,84835,2 13676,FRAMEQA5108,brakes,what is the tank going?,tumblr_nhxyiivlNC1t06byno1_400,28984,0 13677,FRAMEQA12816,cat,what is licking and looking around?,tumblr_nkngomyhg61u9o884o1_400,21925,0 13678,FRAMEQA19467,cage,where are two women fighting and one manages to throw the other?,tumblr_ngzs5oG4kT1tkvhb9o1_500,95880,3 13679,FRAMEQA48638,cat,what is the man lifting?,tumblr_nki24gDtbq1u554gyo1_500,74869,0 13680,FRAMEQA34142,white,what is the color of the t-shirt?,tumblr_muxykdVVUk1syvawyo1_400,10492,2 13681,FRAMEQA37987,cat,what walks in the large hamster wheel device?,tumblr_nrjzfx6FL41uz06r7o1_400,13614,0 13682,FRAMEQA26901,gray,what is the color of the shirt?,tumblr_nam5vurNJs1qzq1wdo1_250,1445,2 13683,FRAMEQA8906,black,what is the color of the jacket?,tumblr_new8owyMCV1s81cpko1_500,100331,2 13684,FRAMEQA32004,black,what is the color of the man?,tumblr_nhuah4DLZD1u2ui2ko1_500,86869,2 13685,FRAMEQA9592,puppy,what is held up and looks at its owner?,tumblr_n9e2tqLvWh1tdmffyo1_250,25535,0 13686,FRAMEQA23857,lions,what cuddle and lick one another?,tumblr_ncy89sSxEH1t4eui2o1_500,84234,0 13687,FRAMEQA48203,kittens,what cuddle together in the small container?,tumblr_n9g5efSoWD1rsxypwo1_400,22459,0 13688,FRAMEQA7188,black,what is the color of the woman?,tumblr_njy4iao3Hy1u2drlto1_500,44905,2 13689,FRAMEQA16636,horse,what is running along the beach during the night?,tumblr_n8u2swNpQV1qe2thio1_500,73413,0 13690,FRAMEQA45110,purple,what is the color of the microphone?,tumblr_nlsgn1kl551uof04fo1_500,88964,2 13691,FRAMEQA42177,four,how many men does there 's on stage singing and dancing?,tumblr_nh44ofwBxF1u6sidco1_250,5727,1 ================================================ FILE: data/text_generation_benchmark/Consistency_QA1.csv ================================================ ,video_name,question,question_id,answer,question_type 0,v_p1QGn0IzfW0,What equipment is visible in the gym where the boy is doing his routine?,v_p1QGn0IzfW0_0,There is other equipment visible in the gym like a high bar and still rings.,0 1,v_UZm05CvtxkA,What is happening in the video?,v_UZm05CvtxkA_0,"The video shows a volleyball game being played on a well-lit indoor court, with spectators celebrating in the background.",0 2,v_oR8o_PuKS28,What are the men playing on the beach?,v_oR8o_PuKS28_0,The men are playing beach volleyball near the shore during daytime.,0 3,v_YIq3Tar9x6s,What is the color of the sweatshirt worn by the girl who combs her friend’s hair in the video?,v_YIq3Tar9x6s_0,"The girl combing hair is wearing a black sweatshirt, white top, and blue jeans. The other girl is wearing a black sweatshirt.",0 4,v_U3-MtKZeUXM,What color jersey is the male athlete wearing when he starts the hammer throw?,v_U3-MtKZeUXM_0,The athlete is wearing a blue and red jersey and white and red sports shoes.,0 5,v_q_QR5HoROhI,What color ink does the man apply to the woman’s nail before curing it?,v_q_QR5HoROhI_0,The man applies black ink to the woman’s nail using a small brush before curing it and then applies glitter of different colors on the black-painted nail which is then cured under a curing lamp.,0 6,v_qsEnLQ2UnEA,What is the man carrying in the throwing circle?,v_qsEnLQ2UnEA_0,The man is carrying a hammer attached to a handle through a metal string and he is using it as a throwing equipment.,0 7,v_ZwK52lXCbhA,What is the man wearing while getting tattooed?,v_ZwK52lXCbhA_0,The man getting tattooed is wearing a red sleeveless shirt.,0 8,v_Y9d4iPDeigI,What color are the shorts and gloves of the boxer in the right corner?,v_Y9d4iPDeigI_0,The boxer in the right corner is wearing red shorts and red boxing gloves.,0 9,v_qtKa7Lr3URA,What activity is the woman in the white top and jeans engaged in?,v_qtKa7Lr3URA_0,The woman in white is watching the washerwoman wash clothes with a stone on the ground.,0 10,v_P7Z4i1gmzjs,What is the boy doing at the gym?,v_P7Z4i1gmzjs_0,The boy is swinging between parallel bars in a well-lit gym with foam mats on the floor under various other equipment.,0 11,v_ojIhxWrBM0s,What is happening in the first shot of the video?,v_ojIhxWrBM0s_0,"In the first shot of the video, a man is sitting in a barber chair, looking through a magazine while draped in a cape, and surrounded by other customers in a salon.",0 12,v_w4pO-1-FG5w,What kind of cape is draped around the little boy at the saloon?,v_w4pO-1-FG5w_0,The little boy is wearing a blue cape with pictures of animated characters on it at the saloon.,0 13,v_vo2M4sY0E38,What is the woman wearing while brushing the horse?,v_vo2M4sY0E38_0,The woman is wearing a black top and jeans.,0 14,v_WOUkPgHtt4E,What is the boy wearing and what is he doing on the armbar?,v_WOUkPgHtt4E_0,"The boy is wearing a white vest and dark blue shorts and is performing different maneuvers on the armbar in a gymnasium with cream color walls, blue mattresses on the floor, windows on the left side, armbars, balance beams, a small wall clock on the left side, trophies kept on the edge of the window and other children practicing around him.",0 15,v_RjztFj0Zl40,What game are the teams playing on the basketball court?,v_RjztFj0Zl40_0,The teams are playing dodgeball on the basketball court.,0 16,v_tSNg5rvDvVc,Where is the man playing the saxophone?,v_tSNg5rvDvVc_0,The man is playing the saxophone in a public place with many people watching his performance from behind and there are many stalls and huge black speakers behind him.,0 17,v_Y16uL6dYDzQ,What is happening in the video?,v_Y16uL6dYDzQ_0,"The video shows a weightlifting competition in a grassy field, with weightlifters lifting big dumbbells on black-colored mats, while applying powder from black buckets. There is an audience watching, officials and a cameraman standing on the left side of the weightlifters, and a jimmy jib camera recording from above. The weightlifters are wearing grey T-shirts, black/red/white shorts and shoes. One weightlifter lifts the dumbbell successfully, while others struggle and drop it, and the video ends with him raising his hand for the audience and walking off the mat.",0 18,v_wiaZCl-poRw,What is the man wearing while mowing the lawn?,v_wiaZCl-poRw_0,The man is wearing a black polo shirt and cargo pants.,0 19,v_qqZLs6j3YII,What are the children wearing while they play the guitars on the stage?,v_qqZLs6j3YII_0,The children on the stage are wearing red and white uniforms.,0 20,v_IRBrTKrVCxo,What is the man doing in the beginning of the video?,v_IRBrTKrVCxo_0,"In the beginning of the video, the man is getting his shoes shined by a man wearing a blue shirt who is polishing his black shoes with a brush outdoors during the daytime.",0 21,v_xS5JDBeMxOs,What are the men doing with their shoes in the video?,v_xS5JDBeMxOs_0,The men are adding beer to their shoes and drinking from them while the surrounding people cheer for them.,0 22,v_-uJnucdW6DY,What is happening in the video?,v_-uJnucdW6DY_0,"A group of kids are playing a game of soccer in the grassy field surrounded by a metal fence with light poles. They are passing the ball to each other, kicking it, and running across the field.",0 23,v_PzJsoZT2hXk,What is the women are doing in the video?,v_PzJsoZT2hXk_0,"The women are gift-wrapping and exchanging wrapped gifts in a well-lit room, and adding gift cards to the wrapped boxes.",0 24,v_YAMhMB1jdio,What is the color of the cloth capes worn by the customers in the barbershop?,v_YAMhMB1jdio_0,The customers in the barbershop are wearing white cloth capes.,0 25,v_EWNqkVaOfbE,What does the news reporter in the field wear while interviewing people for TACK?,v_EWNqkVaOfbE_0,"The news reporter wears a grey full-sleeve top and there are various interviewees wearing a blue jersey, white shirt with black coat and black coat with light blue shirt.",0 26,v_Pjnuoa4o55c,Who is playing squash in the video?,v_Pjnuoa4o55c_0,Four men are playing squash on a blue walled court with polished wooden floors.,0 27,v_QOsG3BeQeX0,What is the clothing of the person upside down on the parallel bars?,v_QOsG3BeQeX0_0,The person is wearing a blue shirt and khaki shorts.,0 28,v_zxpQHLwZCug,What is the man wearing and what is he holding in his left hand?,v_zxpQHLwZCug_0,The man is wearing a blue shirt and jeans and is holding an axe in his left hand while standing over a partially cut log in a yard with plants at the back. There is a fence visible at the back with a tree next to it behind and to the right of the man. A house is visible past the fence.,0 29,v_uvglcAUnQv0,What is the woman in the middle of the dance floor wearing and what type of shoes is she wearing?,v_uvglcAUnQv0_0,The woman is wearing a pink top and a black skirt with high heels.,0 30,v_T7YcO-sOLuU,What is the man cleaning the shoes with?,v_T7YcO-sOLuU_0,"The man is cleaning the shoes using a hand brush, water, and JASON MARKK cleaning solution.",0 31,v_OkvWTZ4XLyM,What is the man doing with the discus?,v_OkvWTZ4XLyM_0,The man is spinning the discus to build momentum before releasing it towards the landing area.,0 32,v_sPK-sbHIb3w,What is happening in the slow-motion clip at the start of the video?,v_sPK-sbHIb3w_0,The players are doing a drill where they dunk the ball into the hoop with a spin.,0 33,v_TEgPIueNqTI,What is the woman wearing while getting tattooed in the tattoo parlor?,v_TEgPIueNqTI_0,The woman is wearing a white top while she gets tattooed in the tattoo parlor.,0 34,v_zTHkqpNFGno,What is the woman wearing while she combs her hair?,v_zTHkqpNFGno_0,The woman is wearing a black top and is in a well-lit room with a white wall behind her. There is a desk on her right. She is leaning forward while combing her hair and laughs at something she reads. The video ends as she places the comb at her side and continues to lean forward.,0 35,v_vska7f8Zm9s,What time of day is it during the video?,v_vska7f8Zm9s_0,The video takes place during the day and the man in the video is adding fresh firewood to the flame.,0 36,v_SV3v-nA6hXM,What is the man wearing while standing on the bungee platform?,v_SV3v-nA6hXM_0,The man is wearing a white shirt with a harness on it and a cap while standing on the bungee platform.,0 37,v_w46wkDledek,What are the two girls wearing as they dance?,v_w46wkDledek_0,"One girl is wearing a grey hoodie and pants, while the other is wearing a white and blue shirt and jeans.",0 38,v_TB5AeIdAndA,What is the man wearing while playing the guitar?,v_TB5AeIdAndA_0,The man is wearing a blue jacket and jeans while playing the guitar on the sidewalk.,0 39,v_sbnF7VVeopM,What activity is the person in the chef uniform performing?,v_sbnF7VVeopM_0,The person in the chef uniform is washing dishes over a well-lit counter using steel wool and handheld kitchen faucet sprayer to rinse them.,0 40,v_OESjoURo19U,What game are the kids playing on the basketball court?,v_OESjoURo19U_0,The kids are playing dodgeball on an indoor basketball court.,0 41,v_SLHPvKh-_x8,What is the woman wearing in the video?,v_SLHPvKh-_x8_0,The woman in the video is wearing a black top.,0 42,v_ypfWA4aDL6k,Where is the man playing the bagpipe located?,v_ypfWA4aDL6k_0,"The man wearing a kilt is playing the bagpipe on the sidewalk in front of a lamp post. Vehicles are passing behind him on the street, buildings are visible in the background, and people drop change in front of him as they walk past.",0 43,v_rpjxjU-mLiw,What is the man wearing and what is he doing?,v_rpjxjU-mLiw_0,The man is wearing a teal T-shirt and black shorts and is starting his discus throw in a throwing circle surrounded by a practice net. He then walks towards the camera and claps his hands. A person in a yellow shirt can be seen jogging on the track behind the practice net.,0 44,v_sk_pnoqXxhs,What is happening in the video?,v_sk_pnoqXxhs_0,"The video shows a toddler in a diaper brushing his teeth with the help of a woman in a white shirt, while a man in a black T-shirt films. There is also a brown dog in the bathroom.",0 45,v_YK9BIL9fKA0,What are the clothes that the girl recording the video is wearing?,v_YK9BIL9fKA0_0,"The girl recording the video is wearing a maroon T-shirt, blue jeans, and red and white sneakers.",0 46,v_GvMep9y7d7c,What is the man doing to the cycle?,v_GvMep9y7d7c_0,The man is repairing the chain bearing of the cycle by tightening its screws and hitting it with a branch and a stone.,0 47,v_ZSdnDVGXU3k,What are the gymnasts performing on the balance beam in the video montage?,v_ZSdnDVGXU3k_0,The gymnasts are performing various gymnastics movements on the balance beam in the video montage.,0 48,v_u3XOLSC7lg0,What is the man wearing while breakdancing in the hallway?,v_u3XOLSC7lg0_0,"The man is wearing a black T-shirt, black pants, and black and white sneakers.",0 49,v_skk-nX55gvA,"Who is the person identified as ""Justin Harrison"" throwing the ball towards the goalpost?",v_skk-nX55gvA_0,"Justin Harrison, identified as the person in the white cap, successfully throws the ball towards the goalpost and scores a goal.",0 50,v_fh21bbDSVmA,What is the color of the gymnast's track pants?,v_fh21bbDSVmA_0,The gymnast is wearing blue track pants and a white vest with blue and red stripes.,0 51,v_wCexKIuAj3A,What is placed behind the sofa in the news studio?,v_wCexKIuAj3A_0,"There is a TV screen with the word 'Daybreak' behind the sofa, a white coffee table in the middle with coffee cups and a laptop, and five people seated on a sofa in a well-lit studio with a glass window at the back.",0 52,v_tF8Nv-QxbIU,What color were the suede shoes that the man cleaned?,v_tF8Nv-QxbIU_0,The man cleaned a pair of red suede shoes and a dark blue suede high-heeled shoe.,0 53,v_vAHR3iJhBXU,What nail polish color did the woman apply on her ring finger?,v_vAHR3iJhBXU_0,The woman applied pink nail polish to her ring finger.,0 54,v_tC5eMgePakk,What is the little girl wearing and where is she playing the violin?,v_tC5eMgePakk_0,The girl is wearing a pink outfit and pink headdress while playing the violin in front of a tree by the shore of a lake during the daytime. The trees surrounding the lake are reflected in the water behind her. ,0 55,v_UtV69uNmzlE,What is the woman doing in the well-lit bathroom?,v_UtV69uNmzlE_0,The woman is shaving her right leg with a razor and dips it into the toilet bowl during the process.,0 56,v_vMcXLYBcHsM,Who gives the man in the video a haircut?,v_vMcXLYBcHsM_0,A woman wearing a hoodie gives the man in the orange t-shirt a haircut.,0 57,v_u7THn6D6y5w,What is the little boy doing in the gymnasium?,v_u7THn6D6y5w_0,"The little boy is practicing on the armbar with his coach in a well-lit gymnasium full of sports equipment and blue mattresses laid on the floor. His coach is wearing a black T-shirt, black track pants, and black sports shoes and there are posters on the wall. Other children are also practicing in the gymnasium, and some are sitting on the boy’s right side. The video ends with his coach coming to the boy and waving both his hands.",0 58,v_yggwFa68Cp4,What is the boy wearing while playing the bagpipes?,v_yggwFa68Cp4_0,"The boy is wearing a white shirt, a sleeveless black sweater, and brown pants while playing the bagpipes.",0 59,v_PwTwGnAVFhQ,What is the woman wearing in the video?,v_PwTwGnAVFhQ_0,The woman is wearing a pink top and black shorts while practicing stepping on and off an aerobics step in a well-lit studio with white walls and a wood floor.,0 60,v_QT4d1nTQYSE,What is the name of the artist performing a live painting event?,v_QT4d1nTQYSE_0,The artist's name is Jonas Gerard.,0 61,v_Xmp_twSbkAg,What is the girl wearing while talking in the video?,v_Xmp_twSbkAg_0,"The girl is wearing a black T-shirt and a pink full-sleeve top, and the room is well-lit with white walls, a brown door, a red curtain, some boards on the wall, a small blue table, a desktop, a photo, some books, stickers on the left wall, and a stuffed toy on the study table.",0 62,v_zDdD_qA86rg,What is the climber wearing?,v_zDdD_qA86rg_0,The climber is wearing a white t-shirt and has a rope attached to their utility belt.,0 63,v_tt-uDaZQWWc,Who is getting their leg shaved in the video?,v_tt-uDaZQWWc_0,Another woman is having her leg shaved in the video while sitting beside the woman with yellow T-Shirt and multi-colored pajamas. ,0 64,v_r6l4mxphtX0,What activity is the woman engaged in?,v_r6l4mxphtX0_0,The woman is applying makeup in front of the mirror.,0 65,v_Oskk7eLgerM,What is the man doing in the video?,v_Oskk7eLgerM_0,The man is giving the dog a bath using a handheld showerhead and soap. He then towels the dog dry and the video ends with a picture of the dog on a blue towel.,0 66,v_T35cHr4pjkc,What is the man doing in the cafe?,v_T35cHr4pjkc_0,The man is drinking from a cup and later seen dancing in the cafe with another cup in his left hand.,0 67,v_Pr5K2Jh2X94,What is the color of the athlete’s outfit?,v_Pr5K2Jh2X94_0,The athlete is wearing a red outfit.,0 68,v_YU-dUWGOoD4,What kind of apparatus is the gymnast getting ready to perform on?,v_YU-dUWGOoD4_0,The gymnast is getting ready to perform on a pommel horse.,0 69,v_zRqJZ0u6f88,What is the man wearing?,v_zRqJZ0u6f88_0,The man is wearing a red shirt and trousers along with a tool belt.,0 70,v_QY3q4DuiGq8,What event is the girl participating in?,v_QY3q4DuiGq8_0,The girl is participating in a discus throwing competition and is standing inside the practice net preparing to throw.,0 71,v_X9Y-b-SbkIU,What is the color of the T-shirt worn by the woman playing squash?,v_X9Y-b-SbkIU_0,The woman is wearing a light green T-shirt and the man is wearing grey shorts.,0 72,v_uub0z8wJfhU,What interrupts the man while he is playing the violin?,v_uub0z8wJfhU_0,"The man is interrupted while playing the violin, then continues playing until he stops and takes a bow.",0 73,v_X5kj4fZ38rc,What is the woman wearing while playing the violin?,v_X5kj4fZ38rc_0,"The woman is wearing a dark blue printed top while playing the violin in a well-lit room with white walls, books, photo frames, and a black table on her right side. There is a dining table set and a chandelier in the other room along with a kitchen having a fridge and a microwave with brown wooden shelves.",0 74,v_rGOOlcdpfLg,What is the woman wearing in the video?,v_rGOOlcdpfLg_0,The woman is wearing a red and blue checkered shirt over a black top.,0 75,v_fMVuGUBs2cs,What is the name of the cocktail that the bartender is making in the video?,v_fMVuGUBs2cs_0,"The bartender in the video is making a Bloody Mary drink with ice, various ingredients, and garnish.",0 76,v_PSB1nM3QXxg,What are the boys in the video wearing?,v_PSB1nM3QXxg_0,The boys are wearing white martial arts uniforms.,0 77,v_TKgU9QJXw2w,What happens to one of the boys during the game in the video?,v_TKgU9QJXw2w_0,"One of the boys accidentally hits another boy in the head while playing racquetball, causing him to fall to the ground and hold his head.",0 78,v_WAvz9zHwWo4,What kind of competition is the girl participating in?,v_WAvz9zHwWo4_0,The girl is participating in a gymnastics competition and she swings from a high bar.,0 79,v_uIcMgjypbqk,What happens on the stage at the end of the video?,v_uIcMgjypbqk_0,The video ends with the audience applauding and the man walking off the stage.,0 80,v_vaV6_bxiTLI,What is the girl wearing?,v_vaV6_bxiTLI_0,The girl is wearing a white top and black shorts.,0 81,v_z-EPAHsmTMA,What is the advertisement on the running TV about?,v_z-EPAHsmTMA_0,"The advertisement on the TV shows a girl wearing white outfit applying white foam on her face with both hands, washing it off carefully with water later.",0 82,v_pJ3sECWr5Xg,What are the color of the dresses worn by ballet dancers at the start of the video?,v_pJ3sECWr5Xg_0,The girl is wearing a white ballet dress and the other ballet dancers are wearing black dresses.,0 83,v_vI-O6QWIIGU,What does the man do after he misses a hold in his gymnastics routine?,v_vI-O6QWIIGU_0,The man applies chalk to his hands after missing a hold in his routine.,0 84,v_XPiMnbCr-sc,What does the woman do with the peach-colored cloth?,v_XPiMnbCr-sc_0,The woman uses the peach-colored cloth to gift-wrap a box by folding it and tying a knot. ,0 85,v_w_CXbraJr58,What musical instrument is the man playing in the walkway?,v_w_CXbraJr58_0,The man wearing a Scottish kilt and beret is playing the bagpipe in a walkway.,0 86,v_ZLJ2BmBkLJg,What type of trimmer did the man use to shave his neck?,v_ZLJ2BmBkLJg_0,The man used two different trimmers and switched between them during his grooming process.,0 87,v_Sf27WmcLb2w,Who starts the exchange on the volleyball court by serving the ball?,v_Sf27WmcLb2w_0,A man wearing a black sleeveless t-shirt and red shorts starts the exchange on the volleyball court by serving the ball.,0 88,v_vSv1qMMt4Bk,Where is the reporter Jocelyn Maminta reporting from?,v_vSv1qMMt4Bk_0,Jocelyn Maminta is reporting from an outdoor location during the nighttime. There are cars parked behind her.,0 89,v_p9lhwYsBWdc,What are the window cleaners wearing as they work?,v_p9lhwYsBWdc_0,The window cleaners are wearing costumes of the Hulk and Batman.,0 90,v_ZrSK-fisXGg,What is the woman sitting on the chair doing?,v_ZrSK-fisXGg_0,A woman in a store is getting her ears pierced by another woman wearing transparent gloves. The piercer uses an ear-piercing gun to attach a stud to the woman's earlobe and secures it from behind her ears. The video ends with close-up shots of the pierced ears.,0 91,v_p07Y--q4JQw,Who is applying the clear solution to the woman's nails?,v_p07Y--q4JQw_0,The man wearing a camouflage pattern shirt is applying the clear solution to the woman's nails.,0 92,v_TsHek6oZYXU,What is the color of the Tai Chi uniform worn by the master?,v_TsHek6oZYXU_0,The master is wearing a black Tai Chi uniform and the other man is wearing a white Tai Chi uniform.,0 93,v_QN-4aLiDhiQ,What is the color of the shirt that the girl is wearing while getting a tattoo?,v_QN-4aLiDhiQ_0,The girl is wearing a blue shirt over a light blue top while getting the tattoo.,0 94,v_UGWOtDmIcns,What is the man wearing while rock climbing?,v_UGWOtDmIcns_0,The man is wearing dark blue jeans and black & red shoes while rock climbing.,0 95,v_PNuJUYo3Hf8,What color wetsuit is the man wearing on the boat?,v_PNuJUYo3Hf8_0,The man on the boat is wearing a blue wetsuit and beanie.,0 96,v_TMAXjnsN0Mk,What color are the walls in the room where the woman is cleaning the Uggs?,v_TMAXjnsN0Mk_0,The room where the woman is cleaning the Uggs has pink walls.,0 97,v_skr8x0kUVwg,What are the people wearing in the video?,v_skr8x0kUVwg_0,The people in the video are wearing orange and red T-shirts.,0 98,v_YnjITZnk6OE,What is happening in the hockey rink during the daytime?,v_YnjITZnk6OE_0,"The players on the hockey rink are wearing full gear and doing drills, which include running side to side, diving, and jumping through obstacles placed on the ground while holding a hockey stick in one hand and wearing hockey gloves in the other. There are brown buildings in the back with trees around them.",0 99,v_UNJTM62HyqQ,What is the chef wearing in the video?,v_UNJTM62HyqQ_0,"The chef is wearing a white chef's coat, and the man standing behind him is wearing a red T-shirt.",0 100,v_SEVVSei-r6w,What equipment is the man holding at the start of the video?,v_SEVVSei-r6w_0,The man is holding a hammer with a handle attached to a string and he is practicing hammer throwing by swinging the hammer around him a few times before spinning and throwing it through the open end of the practice net.,0 101,v_UaO7bS5Ky6M,What is the attire of the woman performing ballet in the theatre?,v_UaO7bS5Ky6M_0,"The woman is wearing a maroon top, black trousers, pointe shoes, and is performing ballet in a well-lit theatre with huge speakers mounted on both sides of the stage, and chandeliers and lights in the galleries.",0 102,v_wEehiYq9ttE,What is the woman doing as her shoe is being cleaned?,v_wEehiYq9ttE_0,The woman is dancing as her shoe is being cleaned.,0 103,v_rklYNAAaI3Y,What are the woman and the boy doing in the well-lit room?,v_rklYNAAaI3Y_0,The woman is washing clothes while the little boy tries to help her by pulling clothes from the bucket in the well-lit room.,0 104,v_ZVjLscGMOs8,What are the women wearing in the video while working out?,v_ZVjLscGMOs8_0,The women are wearing white vests and track pants while working out on aerobics steps in a dimly lit studio with black floor.,0 105,v_z6pmp8TrAVo,What is the man wearing while washing a plate in the kitchen?,v_z6pmp8TrAVo_0,"The man is wearing a grey T-shirt and glasses, and he is washing a plate in a well-lit kitchen with white walls. There is a refrigerator visible at the back, and a potted plant next to the sink.",0 106,v_vzUeFzhVYLg,What is happening in the beginning of the video?,v_vzUeFzhVYLg_0,The video starts with a woman on the second level of a diving platform in an indoor swimming pool with overhead lights. The woman runs to the edge and dives with a tuck and several turns into the pool.,0 107,v_wFVukrQfQhI,What game are the two girls playing in the well-lit court wearing white T-shirts and shorts?,v_wFVukrQfQhI_0,"The two girls are playing racquetball wearing white T-shirts and shorts, and both are wearing safety glasses while playing.",0 108,v_rOtmhurweqo,What is the color of the old man's T-shirt?,v_rOtmhurweqo_0,The old man is wearing a white T-shirt and track pants.,0 109,v_RXT17X7lRoQ,What are the colors of the uniforms worn by the girls on the lacrosse team in the video?,v_RXT17X7lRoQ_0,The girls on the lacrosse team are wearing black and pink uniforms.,0 110,v_YOk1cMsyk88,What is the color of the cap the skateboarder is wearing?,v_YOk1cMsyk88_0,"The skateboarder is wearing a white t-shirt, a red cap, and a backpack.",0 111,v_qmHjHk0Hzz8,What is the man wearing during the discus throw?,v_qmHjHk0Hzz8_0,The man is wearing black shorts and is shirtless during the discus throw.,0 112,v_rc-DiL5er28,What are the colours of the t-shirts worn by the dodgeball teams?,v_rc-DiL5er28_0,The dodgeball team on the right is wearing blue t-shirts while the team on the left is wearing yellow t-shirts.,0 113,v_fM5egP_1DvQ,What color is the vest worn by the first participant in the high jump competition?,v_fM5egP_1DvQ_0,"The first participant in the high jump competition wears a red and green vest, black shorts, and white sports shoes.",0 114,v_R_JKmGmURvA,What ingredients did the man use to make the cocktail?,v_R_JKmGmURvA_0,"The man used gin, other liquors, and fresh-squeezed lemon juice to make the cocktail. He mixed the ingredients in a cocktail mixer with ice, shook it, and poured it into cocktail glasses.",0 115,v_vIQPDP8jW8A,What ingredients are used in the cocktail prepared by the bartender in the video?,v_vIQPDP8jW8A_0,"The cocktail shown in the video is made using Bombay Sapphire Gin, St. Germain liquor, lemon juice, ginger syrup, elderflower syrup, slices of cucumber, egg whites, and ice cubes. The bartender crushes the cucumber using a wooden pestle, shakes the mixture with a cocktail mixer, and completes it by adding ice cubes and a slice of cucumber on a straw.",0 116,v_-pkfcMUIEMo,What is the man wearing and what is he holding in his hand?,v_-pkfcMUIEMo_0,The man is wearing winter clothing and holding a snow shovel. He is demonstrating how to shovel snow by scooping and throwing it to the side.,0 117,v_VhdidrZKuTU,What does the man sprinkle on the firewood?,v_VhdidrZKuTU_0,The man sprinkles table salt and white pepper powder on the crumpled pieces of newspaper and firewood before lighting it.,0 118,v_W4mJsJGa0CY,What happens to the man during his pommel horse routine?,v_W4mJsJGa0CY_0,The man loses balance and slips to the floor during his routine.,0 119,v_TkhUtx0Eyfw,What is happening in the video at the beginning?,v_TkhUtx0Eyfw_0,A girl is getting her ears pierced by a technician in a well-lit store with jewelry and clothes in the back.,0 120,v_Q3ZNFGE8PZE,What is the boy wearing while dancing?,v_Q3ZNFGE8PZE_0,"The boy is wearing a sweater over a shirt, khaki trousers, white gloves, and a white cap.",0 121,v_QriYk3MKSnM,What are the two girls doing in the video?,v_QriYk3MKSnM_0,The two girls are seen combing their hair in a dimly lit living room with a shut window at the back.,0 122,v_x90zpDHTpjQ,What is the man wearing and where is he standing in the video?,v_x90zpDHTpjQ_0,"The man is wearing a white and black t-shirt, standing in a well-lit gym with wooden walls and windows at the top. He attempts to lift a barbell and eventually walks towards the camera to speak.",0 123,v_X4J9UBXb0FM,What event is taking place in the video?,v_X4J9UBXb0FM_0,The video shows athletes participating in pole vaulting competitions during both day and night.,0 124,v_zXHyFBrj5Ag,What color is the t-shirt of the man ironing in the video?,v_zXHyFBrj5Ag_0,"The man in the video is wearing a striped blue and black t-shirt and shorts, and is ironing a blue and white Hawaiian shirt on an ironing board in a room with visible clothing behind him.",0 125,v_PwRqqR1YmPM,What is happening in the video?,v_PwRqqR1YmPM_0,"The video shows athletes competing in a pole vaulting competition in a track field during the daytime, with replays and observers using binoculars.",0 126,v_peiF2E05u8g,What activities did the girl engage in at the mall?,v_peiF2E05u8g_0,"The girl browsed makeup at a shop, got her makeup done at the salon, got her nails painted, and spoke to the camera at various locations including outside the mall and near an escalator.",0 127,v_GChGC-VJZHs,What is happening in the video footage?,v_GChGC-VJZHs_0,The video shows dirtbikes performing stunts and jumps on a dirt bike track in a forest. The motorcyclists are equipped with off-road gear and helmets.,0 128,v_Ur_ToogEkCA,What is happening in the video?,v_Ur_ToogEkCA_0,"In the video, people are playing volleyball during the daytime with thick clouds visible in the sky. There is a woman wearing a blue vest over a red top on the sideline. The game continues with players passing the ball to each other until it ends and a few people enter the frame.",0 129,v_YAKXrBinGD4,What type of boats can be seen in the video?,v_YAKXrBinGD4_0,"The video shows a houseboat, a jet-ski, a motorboat, and several kayak boats under a shed.",0 130,v_qU4GmCN2e1Y,What is the man wearing who is performing on the parallel bars?,v_qU4GmCN2e1Y_0,The man performing on the parallel bars is wearing a dark blue vest and pants.,0 131,v_FqYhC6_CMfI,What is the color of the vest that the man is wearing while windsurfing?,v_FqYhC6_CMfI_0,The man is wearing a dark blue vest and white shorts while windsurfing.,0 132,v_s9PkkDEl6aY,What is the color of the floor in the basketball court where the Zumba class is conducted?,v_s9PkkDEl6aY_0,"The court floor is blue, and the walls are white and brown.",0 133,v_ROrLMf0zXko,What is happening on the street in the video?,v_ROrLMf0zXko_0,"On the street during the daytime, there are people standing around a black and white mat as a man in a white outfit is breakdancing. Stores are also lining the sidewalk.",0 134,v_W6fPv5eoXC4,What is the man wearing on the tennis field?,v_W6fPv5eoXC4_0,The man is wearing a grey sleeveless shirt and blue shorts on the tennis field.,0 135,v_zB8knKX0W8Q,What type of store is featured in the beginning of the video?,v_zB8knKX0W8Q_0,The video begins with a projecting antique store sign.,0 136,v_OlykXdYeQOI,What is the barber using to cut the boy’s hair?,v_OlykXdYeQOI_0,The barber is using scissors and a trimmer to cut the boy’s hair.,0 137,v_PdwWFueQErM,What time of the day was it when the man was shoveling snow?,v_PdwWFueQErM_0,The man was shoveling snow in the daytime and he was wearing a black sweater and jeans.,0 138,v_TZOhIMjwEE8,What is the woman wearing while lawn-mowing?,v_TZOhIMjwEE8_0,"The woman is wearing a white vest, grey trousers, and white sports shoes while lawn-mowing.",0 139,v_GH0Umpw6tME,What type of workout is the group of women doing in the video?,v_GH0Umpw6tME_0,The group of women is doing an aerobic workout using aerobic steps.,0 140,v_UvOEuhS0V3E,What is the woman in the first clip wearing and what is she doing?,v_UvOEuhS0V3E_0,"The woman in the first clip is wearing a white top and applying lipstick in a well-lit room in front of a mirror. The man in the next clip is sitting in front of the same mirror, wearing an olive T-shirt. He removes something from a box and wipes them on his eyebrows one at a time, before eating them.",0 141,v_ZY0cdXr_1MA,What is happening in the beginning of the video?,v_ZY0cdXr_1MA_0,The video starts with a woman doing ballet in a white room with sunlight streaming from the right.,0 142,v_QOaPQpXemCA,Where does the video start and what is featured at the beginning of the video?,v_QOaPQpXemCA_0,The video starts with a graphic of a web address for mDhil.com.,0 143,v_ZK4Y6nOton8,What activity can be seen in the video?,v_ZK4Y6nOton8_0,They are playing badminton in the well-lit venue.,0 144,v_uCvjzcVCtEs,What is the color of the vest worn by the male athlete in the video?,v_uCvjzcVCtEs_0,"The male athlete is wearing a blue vest, black shorts, and red sports shoes.",0 145,v_zoWqv-sIdBY,Who is the boy with long hair in the video and where is he sitting?,v_zoWqv-sIdBY_0,"The boy's name is Ivan and he is sitting in a well-lit bedroom in front of a table with a computer on it. He is having his hair combed by Oscar, who is standing behind him.",0 146,v_qmfZw9eEpIU,What is the color of the windsurfing board the man is using?,v_qmfZw9eEpIU_0,The man is windsurfing on a red board with an attached sail.,0 147,v_tLk0Y04OaCA,Who is standing next to the girl wearing the blue shirt?,v_tLk0Y04OaCA_0,"The girl wearing the blue shirt is standing next to a person wearing a grey sweatshirt, and another person wearing a red top is visible in the mirror, holding up a phone and recording.",0 148,v_VWGV8I5byKI,What equipment does the man lift in the gym?,v_VWGV8I5byKI_0,The man picks up a barbell with weights stacked on either end and lifts it once before dropping it to the ground.,0 149,v_sNJ6_N0j9Ts,What are the men wearing while playing squash in the well-lit court?,v_sNJ6_N0j9Ts_0,The men are wearing shorts and sports shoes.,0 150,v_t13MQSYjlas,What is the man holding in his hands while standing in the throwing circle?,v_t13MQSYjlas_0,The man is holding a hammer connected to a handle while practicing inside the throwing circle.,0 151,v_syfyM1Pble8,What color is the T-shirt of the woman who walks away from the exercise bikes?,v_syfyM1Pble8_0,The woman who walks away from the exercise bikes is wearing a grey T-shirt.,0 152,v_u0A5NIUKEQo,What are the two boys dressed as and what are they doing in the mall?,v_u0A5NIUKEQo_0,"The two boys are dressed as Santa and an Elf and are dancing in the mall. They do backflips, twists, and turns on the floor.",0 153,v_-vnSFKJNB94,What is happening in the video?,v_-vnSFKJNB94_0,"The video shows a man named Michal Navratil performing various diving maneuvers including tucks, twists, forwards dives, etc. in an indoor swimming pool with people visible walking around. He ends the video by doing a forward tuck dive.",0 154,v_Ws12Dt0Ny5Q,What is the attire of the female athlete in the stadium?,v_Ws12Dt0Ny5Q_0,"The female athlete in the stadium is wearing a red crop top, red bikini bottoms, and red sports shoes.",0 155,v_tY9dmG6IyPo,What sport is the woman athlete competing in?,v_tY9dmG6IyPo_0,The woman athlete is participating in a hammer throwing competition in a stadium with spectators.,0 156,v_wJk3KOUAwXA,What is the man doing in the woodworking shop?,v_wJk3KOUAwXA_0,"The man is waxing and polishing a wooden table using steel wool, a car buffing wheel, and a wet rag.",0 157,v_wh4JNeQh9FQ,What is the woman wearing while lying on the retractable bed in the parlor?,v_wh4JNeQh9FQ_0,The woman is wearing a black shirt and lying on a retractable bed with a white sheet in a well-lit parlor while getting a tattoo on her earlobe using a tattoo gun. The technician first cleans her ear and then marks the spot before the tattoo artist begins.,0 158,v_WdJUMmy2ox8,What are the two men wearing and how are they seated?,v_WdJUMmy2ox8_0,"The man on the left is wearing a black shirt and jeans, while the man on the right is wearing a cap and a red sweater. They are seated on a sofa.",0 159,v_ooFuSspUuVY,What color is the helmet worn by the girl in the video?,v_ooFuSspUuVY_0,The girl is wearing a white helmet while riding the horse in the video.,0 160,v_tXUssW4vT3o,What is the color of the belly dancer dress?,v_tXUssW4vT3o_0,The belly dancer is wearing a sparkling turquoise-colored dress.,0 161,v_TGIQtaINzCY,What type of workout class is shown in the video?,v_TGIQtaINzCY_0,"The video shows a cycling class with people on exercise bikes in a well-lit gym with white walls and a grey floor. The instructor is a woman wearing a black t-shirt and a mic in her ear who is calling out instructions, and a man is seen moving a display tower into the class to demonstrate changing the resistance on the exercise bike.",0 162,v_ZUl43hNzGjA,What are the students doing in the ballet studio?,v_ZUl43hNzGjA_0,The students are practicing ballet at the studio with a teacher wearing a white t-shirt and pants.,0 163,v_sBwUwgTjhAU,What is the woman wearing over her red outfit in the video?,v_sBwUwgTjhAU_0,The woman is wearing a sweater over her red outfit and looks into the camera before walking away.,0 164,v_WCS8dzRT7Xk,What is the woman wearing and where is she standing?,v_WCS8dzRT7Xk_0,The woman is wearing a grey shirt and standing behind an ironing board in a well-lit room with a wood wall behind her.,0 165,v_wjr5M-6qEWI,Where is the referee sitting in the video?,v_wjr5M-6qEWI_0,"The referee is sitting behind a table at the edge of the court, and there are seats for spectators near the walls.",0 166,v_GOF5guH_kuI,What is the female gymnast wearing while performing on the balance beam?,v_GOF5guH_kuI_0,The female gymnast is wearing a sparkling red costume while performing on the balance beam.,0 167,v_uqwf903l5-E,What color are the cheerleading uniforms worn by the group in the video?,v_uqwf903l5-E_0,The cheerleaders in the video are wearing blue uniforms with white shoes.,0 168,v_zxr6UZKPDh4,What are the different colored life vests the kayakers are wearing?,v_zxr6UZKPDh4_0,The kayakers are wearing red and blue life vests over their shirts while kayaking down the river.,0 169,v_SNJgJB2PGdI,What is the woman dancing with on her head in the video?,v_SNJgJB2PGdI_0,The woman is dancing with a candelabra on her head.,0 170,v_Zhx6BYVb64g,What does the boy do after taking selfies with the girl?,v_Zhx6BYVb64g_0,"The boy gets up and leaves, and he is later shown knocking on a door and handing a stuffed animal to a girl.",0 171,v_oncTwYfvCD8,What is happening in the video?,v_oncTwYfvCD8_0,"The video depicts a man demonstrating various martial arts movements in different locations, such as indoors, outdoors, in front of an audience, and in a well-lit studio.",0 172,v_yttmx8mcjGw,What is happening in the video?,v_yttmx8mcjGw_0,"The video shows various cricket games being played, including professional matches played in stadiums as well as games played by people at homes and beaches. The video also shows a man rolling up a carpet and a woman in a yellow t-shirt getting ready to bat with others around her fielding or watching. The video ends with a child standing near the cricket stumps and getting ready to bat.",0 173,v_wcxEkMoOmBk,"Who is introduced first in the video, and what is she wearing?",v_wcxEkMoOmBk_0,"Julie, wearing a green sweater, is introduced first in the video while speaking to the camera in a well-lit hair salon, with a round table-top swivel mirror next to her and another woman seated next to her.",0 174,v_zEttEkAdHts,What items are shown in the beginning of the video?,v_zEttEkAdHts_0,The video begins with rolls of gift wrappers stacked on top of each other and a stack of one US dollar notes placed on a white surface with text displayed above and below it.,0 175,v_z3MP0yJBtGg,What is the woman wearing and where is she standing?,v_z3MP0yJBtGg_0,"The woman is wearing a black hoodie and jeans skirt and standing in front of a stone dipper well with ladles. There is water in a tank at the top of the dipper. She is standing on a stone floor with a roof. Pillars are visible some distance to her left. A yard is visible outside the structure, with a fence at the end. A tree is visible to the left of the yard.",0 176,v_Omvg9UtGOes,What colors are on the cloth used to wrap the box?,v_Omvg9UtGOes_0,The cloth used to wrap the box is pink on the inside and green on the outside.,0 177,v_oni9K1_MCuw,What are the two people doing in the ballroom?,v_oni9K1_MCuw_0,A man and a woman waltz and perform various steps in a ballroom as an orchestra plays music.,0 178,v_Rn6_IwckXg4,What are the people in the video smoking?,v_Rn6_IwckXg4_0,The people in the video are smoking e-cigarettes.,0 179,v_TNqc2yWZztE,What is the woman in the video doing?,v_TNqc2yWZztE_0,"In the video, a woman is gift-wrapping boxes using gift-wrapping paper and tape.",0 180,v_UNXLfqkwKFc,What colour are the shorts worn by the man in the video?,v_UNXLfqkwKFc_0,The man in the video is wearing blue shorts.,0 181,v_W9H2qVnIWXs,What kind of dog is being bathed in the video?,v_W9H2qVnIWXs_0,A golden retriever is being bathed in the video.,0 182,v_ZxPF3s_OLDo,What is the man wearing while climbing the hill?,v_ZxPF3s_OLDo_0,The man is wearing a red t-shirt and a belt with a chalk pouch on it.,0 183,v_Mf3IyeMF8ug,What does the woman use to wrap the box?,v_Mf3IyeMF8ug_0,The woman uses an orange gift wrap to wrap the box and a folded green cloth to tie a knot around it.,0 184,v_mNiFmkm5OZA,What does the man holding the pipe from the hookah do with the smoke?,v_mNiFmkm5OZA_0,"The man blows smoke rings and then blows smoke into the glass filled with beer, before drinking from it.",0 185,v_MbjyQGdTtK8,What is the woman in the video demonstrating?,v_MbjyQGdTtK8_0,"The woman is demonstrating how to make furniture polish by mixing olive oil and lemon juice in a spray bottle, shaking it, and then applying it to the surface of a table.",0 186,v_Gvc1z9qypFQ,What are the colors of the jerseys worn by the two teams playing hockey?,v_Gvc1z9qypFQ_0,"One team is wearing maroon jerseys with black shorts and numbers on the back, while the other team is wearing red jerseys with black shorts and numbers on the back.",0 187,v_ObrXN_FjVD8,What is the man on the sailboat doing?,v_ObrXN_FjVD8_0,A man in blue t-shirt and glasses is cranking a lever on a sailboat in the sea. The sailboat with maroon sails can be seen sailing in the open sea with cloudy sky. The boat is tilted to one side.,0 188,v_N75m1Z4RqbA,What are the colors of the clothes the man and woman are wearing?,v_N75m1Z4RqbA_0,"The man is wearing a black shirt and pants, while the woman is dressed in a black outfit.",0 189,v_Ocid5pcnSVY,What type of dance are the women performing?,v_Ocid5pcnSVY_0,"The women are performing a contemporary ballet with hops, turns, and some synchronized moves.",0 190,v_MxvKscpouzY,What color shirts are the players wearing in the table tennis match at the beginning of the video?,v_MxvKscpouzY_0,"The player on the near side is wearing a red t-shirt, while the player on the far end is wearing a blue t-shirt and shorts.",0 191,v_LzPppxSWYNY,What event is the woman participating in the video?,v_LzPppxSWYNY_0,The woman is participating in a long jump competition in the track field during the daytime.,0 192,v_mMebSMn5D0E,Where do the man and woman go and what do they do once they are there?,v_mMebSMn5D0E_0,"The man and woman go to a piano store. The man plays the piano while the woman stands next to him. Later, they move to another piano. In the closed restaurant, a woman wearing a white robe comes to stand near the man. At an orchestra, a man in a brown jacket is watching the orchestra. He later walks towards the stage and gestures like a conductor.",0 193,v_FzqZsQx20jY,What is the color of the gymnast's costume?,v_FzqZsQx20jY_0,The female gymnast on the balance beam is wearing a sparkling dark green and white costume.,0 194,v_-nl4G-00PtA,What is the man doing in the video?,v_-nl4G-00PtA_0,The man is washing dishes in a kitchen sink.,0 195,v_NvRH4SoF09c,What is the man wearing and what is he doing in the meadow?,v_NvRH4SoF09c_0,"The man is wearing a black shirt, pants and glasses while playing a flute in a meadow with yellow flowered bushes to his right. The sky is cloudy and there is a dirt path stretching up the incline behind him.",0 196,v_MidLOhRnpnU,What do the men do after hearing the message from the lighter?,v_MidLOhRnpnU_0,The men step away from the electric lighter after hearing the message.,0 197,v_N5LZMH9mZVU,What kind of routine does the cheerleading squad perform after entering the arena?,v_N5LZMH9mZVU_0,"The all-female cheerleading squad performs a routine that includes flips, somersaults, basket tosses, and stunts involving fliers, with spotters present near each base. They also perform a dance routine and end by posing lifted up by the bases.",0 198,v_oD8sGLt2FR0,What time of day is it in the video where the boy is shoveling snow?,v_oD8sGLt2FR0_0,"The boy is seen shirtless, shoveling snow in a driveway during the daytime.",0 199,v_N1_pNhVqG20,What is the surfer doing in the video?,v_N1_pNhVqG20_0,"The surfer is windsurfing and performing flips, maneuvers, and jumps, including a one-handed burner where he pushes the sail down and jump-twists on his board.",0 200,v_LuH7I7Rxju8,What caused the laptop to fall?,v_LuH7I7Rxju8_0,The man kicked the laptop while breakdancing causing it to fall.,0 201,v_NojaHuKBagQ,What is the man doing with the adhesive eraser in the video?,v_NojaHuKBagQ_0,The man is using an adhesive eraser to clean the bottom edges and front of the blue and white Nike shoes he is holding in the video.,0 202,v_Mk7Yjq1U8OI,What type of court are the women playing on during the official warm-up?,v_Mk7Yjq1U8OI_0,The women are doing an official warm-up on a sandy beach volleyball court.,0 203,v_F9mk2Dn2tFw,What are the colors of the clothes worn by the children in the video?,v_F9mk2Dn2tFw_0,"The children in the video are wearing white, black, pink, and blue clothing.",0 204,v_o5F7X-UBETE,What is happening in the video?,v_o5F7X-UBETE_0,The video shows a weightlifting competition with athletes from different countries lifting barbells and dropping them on the ground. The competition is well-lit and there are judges sitting behind desks observing the athletes.,0 205,v_mShp2gzuPOM,What activity is taking place in the gym in the video?,v_mShp2gzuPOM_0,"The video shows a girl playing badminton in a gym with people standing at the edges, a woman taking pictures near the netting, a scoreboard at the top of the wall, an American flag hung vertically, and retracted bleachers to the left.",0 206,v_meNgZdu8tIk,What kind of sandwich is being made in the video?,v_meNgZdu8tIk_0,"The sandwich being prepared in the video has boiled potatoes, chopped onions, sliced tomatoes, cheese, bell pepper, butter, and green chutney as its ingredients.",0 207,v_ERYwCKVUTSQ,What is the woman wearing while holding the saxophone?,v_ERYwCKVUTSQ_0,"The woman is wearing a black shirt and black pants while holding a saxophone in a well-lit room with blue and white walls. There is a music stand with sheet music at the back and to her right, a wooden chair to her left and back, and a whiteboard fixed on the back wall.",0 208,v_myGBEXiYGOU,What is the subject of the painting?,v_myGBEXiYGOU_0,The woman is painting a peacock.,0 209,v_ltlJ2sOx4as,Where are the riders in the video located?,v_ltlJ2sOx4as_0,The riders in the video are located on the banks of the Terelj River in Mongolia.,0 210,v_nywOe9C3ajM,What is happening in the beauty salon?,v_nywOe9C3ajM_0,"The girl is getting her hair cut, eyebrows shaped, and sitting in a chair with hair clips, while another woman under a hooded hair dryer reads a magazine.",0 211,v_mLFjww64sX8,What is the barber doing while standing on the left of the customer?,v_mLFjww64sX8_0,The barber is using a blade on the customer's head while standing on the left of the customer.,0 212,v_nDHupsLdar0,What is the color of the wall behind the man playing the harmonica?,v_nDHupsLdar0_0,The wall behind the man is cream-colored and there is a lamp visible at his back.,0 213,v_lSVj34-DR0o,What is the name of the diver featured in the video?,v_lSVj34-DR0o_0,The name of the diver is Thomas Daley and he executes several dives with multiple backward somersaults.,0 214,v_lU6DMCif3eE,What is the man wearing while playing the bagpipe in the dimly lit room?,v_lU6DMCif3eE_0,The man is wearing a black T-shirt and playing the bagpipe in a dimly lit room with posters featuring text and art.,0 215,v_gmbC7D6HfuM,What color T-shirt is the man wearing while dancing?,v_gmbC7D6HfuM_0,"The man is wearing a turquoise T-shirt, blue jeans, and white shoes while dancing with the woman wearing a black top and blue jeans with black shoes.",0 216,v_MWQ9mb_mB8U,What is the color of the tops that the women on the volleyball court are wearing?,v_MWQ9mb_mB8U_0,The women on the volleyball court are wearing white tops with numbers on them.,0 217,v_mMm1LfVb8Pg,What color T-shirt is the woman wearing while mowing the lawn?,v_mMm1LfVb8Pg_0,The woman is wearing a green T-shirt.,0 218,v_Nvf-BZNEGdI,What are the people around the boy doing?,v_Nvf-BZNEGdI_0,"The people around the boy are standing and wearing roller skates, and the skating rink has a well-lit polished wood floor.",0 219,v_-MbZ-W0AbN0,What is the man wearing in the video?,v_-MbZ-W0AbN0_0,The man is wearing a white lab coat in the video.,0 220,v_mY7QdIn51S8,What teams are playing in the cricket match shown in the beginning of the video?,v_mY7QdIn51S8_0,Pakistan is batting in the cricket match shown at the beginning of the video.,0 221,v_nI6l7BP0odw,What musical instrument is the man playing?,v_nI6l7BP0odw_0,The man wearing a Scottish kilt is playing the bagpipe.,0 222,v_NwlIZ1T93xE,What is the man wearing who is buffing the shoes?,v_NwlIZ1T93xE_0,The shoe shiner is wearing a t-shirt and a hat while buffing the customer's shoe.,0 223,v_Ntyl5alZXeM,What is happening to the girl in the pink top in the well-lit shop?,v_Ntyl5alZXeM_0,The girl in the pink top is getting her ear pierced by a woman wearing gloves and a dark blue top in a well-lit shop.,0 224,v_N4qhryre_TE,What kind of competition is taking place in the video?,v_N4qhryre_TE_0,The athletes are participating in an indoor tumbling competition.,0 225,v_MgjxjBxGrQU,What are the three men in the video doing?,v_MgjxjBxGrQU_0,"The three men in the video are dressed as characters from the Mario Bros game, smoking hookah, dancing, and interacting with each other in a well-lit room with a yellow sheet backdrop and a man with a guitar poster on the wall.",0 226,v_LvaU_4xbxb0,What type of clothing is the girl wearing who is not wearing a black vest and boxing in the gym?,v_LvaU_4xbxb0_0,One of the girls is wearing a black vest and the other is wearing a grey t-shirt while boxing in the well-lit gym.,0 227,v_nTY4IaGRFIc,What game are the people playing in the swimming pool?,v_nTY4IaGRFIc_0,The people in the swimming pool are playing water polo.,0 228,v_QG2xYcN_bl0,What is the boy doing on the basketball court?,v_QG2xYcN_bl0_0,The boy is doing a crisscrossing drill with orange agility cones on a basketball court.,0 229,v_Lshue6AmrIw,What are the children wearing in the mall?,v_Lshue6AmrIw_0,The little girl is wearing a black outfit and the little boy is wearing a green shirt while they are sitting on a shoe-shine chair at a shoe-shine station in a well-lit mall with a store visible behind them.,0 230,v_eS-VU_XV1K8,What is the color of the instructor's top?,v_eS-VU_XV1K8_0,"The instructor is wearing a pink top, black track pants, and sports shoes.",0 231,v_NM7Vye5nxj8,What happens when the boy jumps over the bar?,v_NM7Vye5nxj8_0,Both the boy and the man successfully clear the bar during their jumps.,0 232,v_ghxiG0Dnrt0,What is the woman wearing while cleaning the sink?,v_ghxiG0Dnrt0_0,The woman is wearing a black apron over a T-shirt and jeans.,0 233,v_hFi6S_guB7I,What are the women doing at the beginning of the video?,v_hFi6S_guB7I_0,The women start by entering the stage from the right and facing away from the audience with their right hands up.,0 234,v_18yZR3NDaXM,What sport is being played in the video?,v_18yZR3NDaXM_0,The video shows people playing kickball on a field.,0 235,v_BjjN_aq_wq4,What is happening in the kitchen sink in the video?,v_BjjN_aq_wq4_0,The woman and the young girl are washing dishes with soap in the kitchen sink.,0 236,v_DJTvj9lfSWU,What is the man doing with his foot on the rooftop?,v_DJTvj9lfSWU_0,The man is cleaning and shaving his right leg with a razor blade on the rooftop while a woman stands beside him holding a microphone.,0 237,v_0BtHd6dvm78,What is the man wearing as clothing while washing dishes?,v_0BtHd6dvm78_0,The man is wearing glasses and a white hoodie while washing dishes in the kitchen.,0 238,v_dKJMP8EmZjw,What color are the sails on the dinghy that is shown after the man in the red wetsuit?,v_dKJMP8EmZjw_0,"The dinghy shown after the man in the red wetsuit has red and white sails, and the other dinghies have white sails.",0 239,v_kGdxtU3NwWo,What is the man wearing while polishing his shoes?,v_kGdxtU3NwWo_0,The man is wearing a dress shirt and has a shoe placed on a black desk mat. He polishes the shoe with a piece of cloth after applying a clear liquid and shoe polish from a tin and glass vile visible on the mat.,0 240,v_b4xvXZq5uD8,Who brings out the chocolate cake at the end of the video?,v_b4xvXZq5uD8_0,A man wearing a black coat brings out a chocolate cake at the end of the video and the others sing while the man getting the haircut gets his face smeared with chocolate cake.,0 241,v_aLb79wtvxoQ,What color is the sink in the video?,v_aLb79wtvxoQ_0,The sink in the video is mint green and has two basins.,0 242,v_KlgrI3Ngwv0,What is the athlete doing at the start of the video?,v_KlgrI3Ngwv0_0,"At the beginning of the video, the athlete is standing by a pommel horse, wearing a blue outfit, and getting ready to start an artistic gymnastics routine.",0 243,v_jN-jnIgzd6k,What are the children in the video doing?,v_jN-jnIgzd6k_0,"The children in the video are doing karate drills, including different stances, punch and kick drills, and forward and backward movements.",0 244,v_araMJB23T1s,What do you see at the bottom when the boy jumps from the bungee platform?,v_araMJB23T1s_0,"When the boy jumps, a stream is visible at the bottom.",0 245,v_dW6OZV43ulU,What are the steps involved in cleaning the leather sofa in the video?,v_dW6OZV43ulU_0,"The process of cleaning the leather sofa involves spraying foam cleaner on the brush and cleaning the couch, then degreasing the damaged areas by spraying some cleaner on a towel and wiping the surface of the sofa, sanding rough surfaces using a scrub pad, using color refresh liquid and wiping the couch with a piece of sponge, drying the surface of the sofa with a hair drier, and applying UV protection liquid on the sofa.",0 246,v_JcAAwYpJhm8,What is the little girl washing in the kitchen sink?,v_JcAAwYpJhm8_0,"The little girl is washing dishes in the kitchen sink, including a glass, a spoon, a pot, a plate with Dora the Explorer on it, and a plastic jar.",0 247,v_aYxni8ohTfU,What teams are playing against each other in the volleyball match?,v_aYxni8ohTfU_0,"Italy and Latvia are playing against each other, with Italy wearing blue vests and Latvia wearing red vests.",0 248,v_6Xsfwn5M6qs,Who can be seen in the background of the video?,v_6Xsfwn5M6qs_0,"Yes, two people are visible in the background - one wearing a green shirt and the other in white sportswear.",0 249,v_CecqF_uHeOI,What is the man wearing while cleaning the glass door?,v_CecqF_uHeOI_0,The man is wearing a dark blue shirt and khaki pants and uses a larger and smaller wiper to clean the glass door.,0 250,v_7-taNK5mW8E,What happens just as the ball lands near the front player in the water polo game?,v_7-taNK5mW8E_0,The front player is pushed into the pool from behind just as the ball lands close to her.,0 251,v_IcR28Yqt4mY,What activity were the men engaged in at the beginning of the video?,v_IcR28Yqt4mY_0,"The men were preparing for a wood-chopping competition, holding axes and standing on blocks of wood.",0 252,v_B3xMfP_UOt4,What is the attire of the man preparing for the high jump?,v_B3xMfP_UOt4_0,The man is wearing a green fluorescent vest with the name tag 'UKHOV'.,0 253,v_4XnXyKYxnQQ,What is happening to the ship in the video?,v_4XnXyKYxnQQ_0,The ship is dangerously tilted left and appears to be about to capsize in the daytime sea. ,0 254,v_hq48S65dlyo,What type of workout is being performed in the video?,v_hq48S65dlyo_0,The video shows a boxing workout where a woman punches punch mitts and kicks pads while a man punches punch mitts and kicks pads.,0 255,v_gWbIoFrpwTY,What is the little boy doing at the beginning of the video?,v_gWbIoFrpwTY_0,"The little boy is standing in a parking lot holding a juice box, wearing a black t-shirt, with a white van and two skateboards visible in the background.",0 256,v_eoSwoeLmeyQ,What color are the lights shining on the dance floor?,v_eoSwoeLmeyQ_0,The lights shining on the dance floor are not described in the given details.,0 257,v_1d_U_2HIPmY,What object does the man have in his hand?,v_1d_U_2HIPmY_0,The man is swinging a hammer attached to a grip by a cable while standing on a circular platform inside a cage.,0 258,v_Hz7-mBFGsSs,What is happening to the girl in the salon?,v_Hz7-mBFGsSs_0,The girl is getting her hair cut in the salon while crying.,0 259,v_B_U7vUtoCKY,Who is the focus of the video as he tries to check the ball from the opposing team?,v_B_U7vUtoCKY_0,"Cole Flowler, wearing a white jersey, is the focus of the video as he attempts to check the ball from the opposing team.",0 260,v_7pfHxav4b0U,What is the woman doing at the start of the video?,v_7pfHxav4b0U_0,The woman is rowing an orange kayak down a rapid river while wearing a life vest and white helmet.,0 261,v_htzAYwoAZkg,What is the man wearing and doing in the gym?,v_htzAYwoAZkg_0,"The man is wearing a black polo shirt, speaking to the camera in the gym, while the woman is standing next to him; they are both behind a resistance trainer in the well-lit gym. The woman climbs onto the resistance trainer, starts pedaling, and adjusts the instrument cluster settings, while the man continues speaking into the camera.",0 262,v_ijrjRNwZjqQ,What activity are Kevin Spacey and Rafael Nadal engaged in on stage?,v_ijrjRNwZjqQ_0,Kevin Spacey and Rafael Nadal play ping pong on stage.,0 263,v_IhmtmKxEU40,What is the color of the wetsuit worn by the boy windsurfing?,v_IhmtmKxEU40_0,The boy seen windsurfing is wearing an orange and black wetsuit.,0 264,v_3zpODTqnYLs,What is the toddler doing in the video?,v_3zpODTqnYLs_0,The toddler is washing her face with pool water multiple times while sitting on the pool wall while the man holds onto her.,0 265,v_1KONAdZGdWU,What is the girl doing in the video?,v_1KONAdZGdWU_0,The girl is shaving her left leg while occasionally talking to the camera person and others in the room.,0 266,v_DIhyfNJAm-M,What is the color of the floors on the stage of the performance?,v_DIhyfNJAm-M_0,"The performer is wearing a black suit and white shirt, playing his saxophone on a stage with red floors, blue curtains and a staircase in front. The audience can be seen sitting a few feet from the staircase, while backing musicians play various instruments behind the saxophonist. A music stand with transparent top is placed next to the saxophonist, and the video ends with the audience applauding.",0 267,v_K6QunmuTZOQ,What is the woman wearing and where is she standing?,v_K6QunmuTZOQ_0,"The woman is wearing a grey t-shirt and black track pants, standing in a small gym with other exercise equipment around her. Sunlight is streaming from an open door in front of her. ",0 268,v_l7qSKJyq6mA,What is the man wearing while ironing the dress shirt?,v_l7qSKJyq6mA_0,The man is wearing a black sweater vest over a grey shirt while ironing the dress shirt.,0 269,v_2VZumBKJuPs,What is happening in the video?,v_2VZumBKJuPs_0,"In the video, a man is piercing the woman's belly button with a needle piercer, and inserting a jewelry before securing it with a ball. The studio is well-lit and the man has black gloves on. Both of his hands are tattooed and the woman can be seen speaking to the person holding the camera",0 270,v_7EeO9V2B574,What were the women doing in the video?,v_7EeO9V2B574_0,The women were dancing synchronously on the grass under the shadow of a tree to music.,0 271,v_IgDBDaIoNAM,What are the characters wearing in the video?,v_IgDBDaIoNAM_0,The man and woman are dressed like characters from the Street Fighter game.,0 272,v_325CAs4hhq8,What sport are the players in orange uniforms playing on the field?,v_325CAs4hhq8_0,The players in orange uniforms are playing field hockey.,0 273,v_CTJej0rZMiI,Describe the man in the video and his surroundings.,v_CTJej0rZMiI_0,The man is wearing a grey shirt and is sitting in a dimly lit room with an accordion strapped to him. He is sitting next to a wall with a bookshelf behind him and a door frame visible to his right. There are framed Spanish sayings hung on the wall to his side and behind him. He briefly speaks before starting to play the accordion.,0 274,v_CTyvQHkAKuY,What is the woman doing when the man is playing the piano?,v_CTyvQHkAKuY_0,The woman starts to sing while the man is playing the piano.,0 275,v_3M290KZV5lo,What do you see in the gymnasium?,v_3M290KZV5lo_0,"The video shows a gymnastics performance on a balance beam in a well-lit gymnasium with judges, spectators, and a balcony with chairs.",0 276,v_itXYuf_Cj_Q,What is the man wearing while peeling the banana?,v_itXYuf_Cj_Q_0,The man is wearing a green sweatshirt and sitting on a red chair while peeling the banana.,0 277,v_JspVuT6rsLA,What is the instrument the boy is playing in the video?,v_JspVuT6rsLA_0,The boy is playing the violin in a well-lit room with two pianos at his back and a woman playing one of the pianos.,0 278,v_cPIsE2ZCWzM,What is happening in the video?,v_cPIsE2ZCWzM_0,"The video shows a polo game being played in the daytime, with players riding horses and striking the ball with their mallets as spectators watch from the red seats.",0 279,v_IL8__uSFpqg,What is the man wearing in the video?,v_IL8__uSFpqg_0,The man in the video is wearing a blue polo shirt.,0 280,v_JguRZtFN-Ck,What is the woman wearing while playing squash?,v_JguRZtFN-Ck_0,The woman is wearing a white t-shirt and shorts while playing squash.,0 281,v_cFOaL4Ir4hg,What kind of dives are being performed in the video?,v_cFOaL4Ir4hg_0,"Several people are diving off the diving board and performing flips, including backflip dives, front flips, and a horizontal flip dive at the end of the video.",0 282,v_BdRH3lpopLQ,Which two teams are playing against each other in the volleyball game?,v_BdRH3lpopLQ_0,USC and BYU are the two teams playing against each other in the volleyball game.,0 283,v_JHKAcpYlxkQ,What activity is the woman doing on the tennis court?,v_JHKAcpYlxkQ_0,The woman is playing tennis on an outdoor court and practicing her serve.,0 284,v_1xBdquA6dx8,What are the colors of the jerseys worn by the two teams playing hockey?,v_1xBdquA6dx8_0,One team is wearing blue jerseys while the other is wearing green jerseys.,0 285,v_kdOsmDACtqw,What is the action of the man in the black outfit after the man wearing white t-shirt finishes speaking?,v_kdOsmDACtqw_0,The man in the black outfit steps into a white sheet on the ground and starts to breakdance followed by the man in the white t-shirt who dances and interacts with the crowd.,0 286,v_kIFHChO_-vg,What is the toddler doing in the beginning of the video?,v_kIFHChO_-vg_0,The toddler is sitting on a vanity table with hair rollers in her hair and surrounded by makeup products and bottles while her mother speaks to her.,0 287,v_5P9Tbut04xE,What is the color of the shirt worn by the man in the video?,v_5P9Tbut04xE_0,The man in the video is wearing a white shirt.,0 288,v_7gaC3b5nJqs,What are the women wearing in the video?,v_7gaC3b5nJqs_0,The women are wearing gym clothes.,0 289,v_15yU0R2MBQM,What color is the toothbrush in the video?,v_15yU0R2MBQM_0,The toothbrush featured in the video is blue.,0 290,v_kgz7c2kb4Rg,What color is the kayak that the woman is in?,v_kgz7c2kb4Rg_0,"The woman is in a yellow kayak, wearing a life vest and a white cap. The kayak is in a calm river surrounded by green hills and trees on the right. She shows how to use the paddle to turn by doing a reverse and forward sweep with both paddles.",0 291,v_0k0xNs8Zjb4,What is the girl doing in the video?,v_0k0xNs8Zjb4_0,"The girl is performing various gymnastics moves including backflips, front flips, back tucks, standing back-tucks, back handspring tucks, and a tumbling sequence.",0 292,v_9pavfCL1HvU,What time of day did the game take place?,v_9pavfCL1HvU_0,The game took place in the daytime.,0 293,v_i5qTK0mInTc,What is the color of the outfit the woman carrying a flower pot is wearing?,v_i5qTK0mInTc_0,One woman is wearing a blue outfit and the other is wearing a pink outfit.,0 294,v_EK7qW-oavQY,What sport is being played in the pool?,v_EK7qW-oavQY_0,Water polo is being played in the swimming pool.,0 295,v_jCxQQ9DMpT0,What is the man wearing who instructs the archer on how to grip the bow?,v_jCxQQ9DMpT0_0,The man who instructs the archer on how to grip the bow is wearing a blue polo shirt and a grey cap.,0 296,v_4NPVpI9zUpI,What is the name of the first jump Stefan Holm performs?,v_4NPVpI9zUpI_0,Stefan Holm performs the first degree jump in which he runs towards the horizontal bar and successfully jumps over it.,0 297,v_Ku76zinwWkg,What is the colour of the outfits worn by the girl and the boy on the track?,v_Ku76zinwWkg_0,The girl and the boy are both wearing black outfits while running on the track.,0 298,v_Hy54nZSDxTk,What color are the hoodies worn over the paintball helmets?,v_Hy54nZSDxTk_0,The people are wearing hoodies over their paintball helmets.,0 299,v_KApqxr02rcQ,What color uniform does Jessica Skillings wear in the video?,v_KApqxr02rcQ_0,Jessica Skillings wears a dark blue uniform in the video.,0 300,v_BBKSKU6dGGk,What is the man in the blue jacket doing?,v_BBKSKU6dGGk_0,"The man in the blue jacket is shoveling snow on a sidewalk surrounded by a snow-covered lawn and a cloudy sky. A tree covered in snow is visible next to him, and snow-covered trees are visible down the street. The man slowly clears snow as he walks forward, and the video ends with him still shoveling snow. An edge of a car is visible behind him.",0 301,v_-HpCLXdtcas,What color are the weights on the barbell?,v_-HpCLXdtcas_0,The barbell in front of the man has multi-colored weights on it.,0 302,v_9VtxNvLx6zA,What sport is being played in the video?,v_9VtxNvLx6zA_0,The video shows a volleyball game being played in a gym.,0 303,v_AwgGYaV1lT0,What activity is the man engaged in at the beginning of the video?,v_AwgGYaV1lT0_0,"At the beginning of the video, the man is standing in a wooded area chopping wood with an axe. There are trailers visible in the back along with a truck. A tent is set up some distance in the back from the man. A bike is parked in front of it. A foldable table with chairs is visible at the back and right of the man. ",0 304,v_0X0u_3xUBPE,What is the color of the Tai Chi uniform the man is wearing?,v_0X0u_3xUBPE_0,The man is wearing a black Tai Chi uniform while practicing on a concrete floor outdoors.,0 305,v_iABuDhagUm8,What does the man do with the axe and the log?,v_iABuDhagUm8_0,"The man uses the axe to chop a log, initially causing it to crack slightly before several swings eventually break the log apart, while a dog periodically comes near the man.",0 306,v_jt-Vnap5KP4,What is the old man wearing while playing the harmonica?,v_jt-Vnap5KP4_0,"The old man is wearing winter clothes, a hat, and sunglasses while playing the harmonica.",0 307,v_agu58IVL7IQ,What is happening in the background while the man is skateboarding?,v_agu58IVL7IQ_0,Other people are visible skating in the background besides the man with the skateboard.,0 308,v_9AfQ2Q-96oE,What is happening in the video?,v_9AfQ2Q-96oE_0,"The man is participating in a disk throw competition, where he spins to build momentum and throws the disk, with a referee marking the spot where the disk landed. The video shows different angles of the man throwing the disk and several clips of the man making different disk throws one after another. There are also hundreds of spectators visible sitting on seats.",0 309,v_A904-cbaYDw,What is the man doing in the video?,v_A904-cbaYDw_0,The man is performing a tai chi practice and instructing on different stances and their positions.,0 310,v__B7rGFDRIww,What song is the woman dancing to in the beginning of the video?,v__B7rGFDRIww_0,"The woman is dancing to the song ""Let it Go"" from the movie ""Frozen"" and this song continues to play throughout the video while the dancers dance to it.",0 311,v_5tFfEA1JWjA,What is happening in the video?,v_5tFfEA1JWjA_0,A boy is dunking the basketball while his coach watches and instructs him in an indoor basketball court with frames on the far wall.,0 312,v_AQnp2QAnwI0,What is happening in the video?,v_AQnp2QAnwI0_0,A group of dancers perform on stage in front of a projection while silhouettes of people wearing headphones are visible in front of the stage.,0 313,v_ANaMmXJFE54,What are the cheerleaders doing before they start their routine?,v_ANaMmXJFE54_0,The cheerleaders run into the basketball court and wave towards the spectators.,0 314,v_7orO93DICYw,What kind of equipment is in the gym where the man is practicing?,v_7orO93DICYw_0,"The gym where the man is practicing gymnastics has overhead lights, several balance beams fixed to the ground with foam pads lining the floor, and numerous flags lining the wall.",0 315,v_9hTcvGUnMBs,What activity is taking place in the field at the beginning of the video?,v_9hTcvGUnMBs_0,"At the beginning of the video, a high jump contest is taking place in a field with a horizontal bar, foam pad, people competing, a man with colored flags, and a seated audience.",0 316,v_60tIsGR0Zzg,What does the boy do before mowing the lawn and what happens when he tries to start it?,v_60tIsGR0Zzg_0,"Before mowing the lawn, the boy switched on the mower and moved it forward. He struggles to move it and gets stuck in some patches, eventually pulling the mower back. ",0 317,v_IRua6QGP-Ow,What is the bartender doing in the video?,v_IRua6QGP-Ow_0,"The bartender is making a drink by pouring and mixing different spirits, shaking them with ice, and finally pouring the mixture into a glass with ice. He also runs a lime on the rim of the glass.",0 318,v_DOI6tsATsE4,What is the boy wearing and doing in the video?,v_DOI6tsATsE4_0,The boy is wearing a dark blue sweatshirt and holding his hand to the side of his head while sitting at a table with a plate in front of him. The background shows a lamp near the wall. The man also appears in a cutaway wearing a white t-shirt and looking at the camera while standing in a room with a packed shelf. The video ends with cutaway shots of the boy looking at the camera and looking away.,0 319,v_ej9TkJVjK9M,What color tights is the man wearing?,v_ej9TkJVjK9M_0,The man is wearing black tights.,0 320,v_8L1UjGLOCeI,What is the woman doing in the room with the hopscotch court?,v_8L1UjGLOCeI_0,The woman is playing hopscotch in the room and completes a pass on the court.,0 321,v_c7S423zJqPo,What is the attire of the man in the aerobics class?,v_c7S423zJqPo_0,The man wearing a green t-shirt is working out using an aerobics step in the aerobics class.,0 322,v_Bkhr72sazvQ,What is the weight loss product being advertised in the video?,v_Bkhr72sazvQ_0,"The man in the video is promoting a weight loss product and talks about ""5 pounds lost in 7 days"".",0 323,v_d-RYiiPzVKg,What items does the man place on the table in the video?,v_d-RYiiPzVKg_0,The man places a bottle of white vinegar and a bottle of olive oil on the table.,0 324,v_BmLDHLKiIdQ,What type of competition is being held in the video?,v_BmLDHLKiIdQ_0,The video shows an indoor archery competition with spectators seated in the stands.,0 325,v_9VflCeoPr9I,What activity are the people engaged in the video?,v_9VflCeoPr9I_0,The people are playing and kicking a red ball in the field.,0 326,v_1kwIYXB4b8s,What is happening in the video?,v_1kwIYXB4b8s_0,The video shows a man getting his head shaved by a woman while a man records it on his phone in the presence of other people in the room.,0 327,v_kPn9NzU4W48,What is the color of the basketball court walls behind the two teens?,v_kPn9NzU4W48_0,The basketball court walls behind the two teens are painted white at the top half and blue at the bottom.,0 328,v_4iFlM_Zu7xs,What are the riders doing in the video?,v_4iFlM_Zu7xs_0,"The riders are performing a series of jumps and stunts on a dirt bike track, while being recorded by a person in the middle. They jump over inclines, ride in a circle and jump over a hill at the end.",0 329,v_Dbas61NkTV0,What props are being used on the cheer squad's stage?,v_Dbas61NkTV0_0,"The stage has overhead lighting and gobo lighting projections on the wall, and the cheer squad uses multiple bases to throw and lift members during their routine.",0 330,v_j6ElczD-Pw4,What is the girl doing with the luffa?,v_j6ElczD-Pw4_0,The girl is washing her face with the luffa by tapping it on her face and then rinsing off the suds with water from the running sink.,0 331,v_e3DB_y78IHc,What are the animals shown grazing in the video at the end?,v_e3DB_y78IHc_0,"The animals shown grazing towards the end of the video are ostriches, alpacas, and camels.",0 332,v_9ZVWD0ZKXZg,What is the boy wearing while climbing the rock?,v_9ZVWD0ZKXZg_0,"The boy is wearing an orange T-shirt, a harness, and a belay rope is fastened to him.",0 333,v_1dDAcUliXrQ,What color is the badminton court?,v_1dDAcUliXrQ_0,The badminton court has a dark blue floor and walls.,0 334,v_KvtqF0LaWU0,What is the woman wearing in the video while standing beside the black stone kitchen counter?,v_KvtqF0LaWU0_0,The woman standing beside the black stone kitchen counter is wearing a sweater.,0 335,v_3VjaC7wdMso,Where is the girl sitting and what is she doing in the video?,v_3VjaC7wdMso_0,"The girl is sitting by an open window playing the piano while referencing the sheet music in front of her, and she starts to sing as she plays. Trees and sunlight are visible outside the window and the edge of a bed is visible behind her chair.",0 336,v_cms1BP4eKOA,What are the players doing in the video?,v_cms1BP4eKOA_0,"The players are performing a point guard drill, running around cones, attacking the basket, getting the ball back from the rebounder machine, dribbling while running, and making a point guard entry pass to attack the basket.",0 337,v_Ivq9_wPFNs4,What event is taking place in the video?,v_Ivq9_wPFNs4_0,"The video depicts a woman named Britney Reese performing a high jump into a sand pit during an athletics event while her stats are displayed on a graphic, and is followed by her running in a lane and people sitting in the seating area.",0 338,v_dO01vfB9z4g,What is the boy doing in the video?,v_dO01vfB9z4g_0,"The boy is scrubbing dishes in the kitchen sink while standing on a box, and a woman records him with her phone.",0 339,v_4-KiAur4dI8,What is the name of the event featured in the video?,v_4-KiAur4dI8_0,"The event featured in the video is Red Bull CROSSWAYS, as indicated by the logo displayed at the beginning of the video.",0 340,v_1XNHcfxTqW0,What is the man wearing while playing the harmonica on the sidewalk?,v_1XNHcfxTqW0_0,The man playing the harmonica on the sidewalk is wearing a white T-shirt and has long hair.,0 341,v_AE2gHOwcV14,Where is the video shot?,v_AE2gHOwcV14_0,The video is shot in a gym with a visible glass door through a divider wall separating the gym from the rest of the hall.,0 342,v_bphckj0BV5U,What is the woman wearing while demonstrating how to start a fire?,v_bphckj0BV5U_0,The woman is wearing a grey top and is sitting on the ground in the woods while demonstrating how to start a fire.,0 343,v_E5YBb4rzV30,What ingredients does the woman add to the mixing bowl before adding tuna?,v_E5YBb4rzV30_0,"Before adding a can of tuna to the mixing bowl, the woman adds mayonnaise, relish, mustard, celery, and chopped onion. She then arranges lettuce leaves on a plate, places a spoonful of the tuna mixture on each leaf and folds them into wraps.",0 344,v_dRF1C_sBE5M,What was the girl shown doing with the axe in the video?,v_dRF1C_sBE5M_0,The man taught the girl how to chop wood using an axe.,0 345,v_H33jSILKmfI,What uniform is the boy wearing while practicing training drills in the gym?,v_H33jSILKmfI_0,The boy is wearing a white martial arts uniform while practicing training drills in the gym.,0 346,v_JiNcVb97CnA,What is the attire of the man and woman in the video?,v_JiNcVb97CnA_0,The man is wearing a white t-shirt and the woman is wearing a black coat over a pink top.,0 347,v_lIo8HfzzSNs,What ingredients were used to make the dressing for the Russian salad?,v_lIo8HfzzSNs_0,"The dressing for the Russian salad was made by mixing two T-spoons of cream, two T-spoons of mayonnaise, salt, and pepper in a glass bowl.",0 348,v_dN8LBey17O8,What does the man do before mowing his lawn?,v_dN8LBey17O8_0,The man measures the length of the grass using a ruler before and after mowing his lawn.,0 349,v_I7slpTgl0jc,What is the man practicing in the field?,v_I7slpTgl0jc_0,The man is practicing a hammer throw in a field surrounded by trees. He is standing on a round platform holding a handle with a hammer attached to it. He is wearing a red shirt and releases the hammer through the open end of the practice net.,0 350,v_ks018ZYzrx4,What is the color of the dirt bike with the number 2?,v_ks018ZYzrx4_0,The dirt bike with the number 2 is green.,0 351,v_KsFid_YVsn0,What are the colors of the costumes that the girls and boys wear when they start dancing?,v_KsFid_YVsn0_0,"The girls are wearing black dresses, and the boys are wearing red dress shirts and black trousers while dancing.",0 352,v_hFpSoRlpyMo,What happens to the ball hit by the batsman towards the boundary?,v_hFpSoRlpyMo_0,The fielder prevents the ball from touching the boundary rope and falls over it.,0 353,v_aOxRwTlkY80,Which ingredients did the man add to the pan first?,v_aOxRwTlkY80_0,The man added garlic to the pan with oil first and then added chillies. He cooked these two for a minute and later added the cooked pasta and chopped parsley. He added ground pepper and mixed everything before finishing the dish.,0 354,v_4VdS1eN3dv4,What is the common theme in the different cricket games in the video?,v_4VdS1eN3dv4_0,"Yes, multiple games of cricket are being played in the video, both during the day and at night.",0 355,v_EhzHU0gkrzA,What is the boy doing in the video?,v_EhzHU0gkrzA_0,"The boy is performing gymnastics on the parallel bar in a track field with blue flooring. He swings, performs a handstand, and repeats this while turning in the other direction. Another person is doing gymnastics on the far right of the field.",0 356,v_6G8m-vsGTA8,What is happening in the video?,v_6G8m-vsGTA8_0,"The video shows a man getting his hair cut in a hair salon while recording himself, with a woman using scissors and trimmers to cut his hair. Other customers can be seen in the salon and the video ends with the man driving in a car wearing a hat and sunglasses.",0 357,v_kfO5PGlsMJw,What color is the karate uniform of the first boy who performs on the stage?,v_kfO5PGlsMJw_0,The first boy is wearing a black karate uniform with a black belt.,0 358,v_86Unahb4sJM,What makeup products did the woman apply in the video?,v_86Unahb4sJM_0,"The woman demonstrated the application of concealer, foundation, bronzer, eyeliner, mascara, lipgloss, and eyebrow mascara in the video.",0 359,v_jN2CFk0xKp8,What is the man wearing and what is he carrying in the first clip?,v_jN2CFk0xKp8_0,The man is wearing a red polo shirt and blue trousers and carrying a vacuum on his back while vacuuming the carpet in an office.,0 360,v_JG7T6qtO4jg,What is the boy wearing in the video?,v_JG7T6qtO4jg_0,The boy who starts breakdancing in the beginning of the video is wearing a black T-shirt and olive shorts.,0 361,v__ja1fre9OTE,What is the apparatus the gymnast performs on?,v__ja1fre9OTE_0,The gymnast is performing on a balance beam located on an elevated platform at a gymnastics competition.,0 362,v_82EtiBkAsPg,What is the man wearing while playing the bagpipe at the bar?,v_82EtiBkAsPg_0,The man is wearing a black jacket while playing the bagpipe at the bar.,0 363,v_7OcxT66BxX0,What is the man wearing while he sings on stage?,v_7OcxT66BxX0_0,The man is wearing a black jacket and a black fedora while playing the harmonica on stage.,0 364,v_aDe5hUB3AdY,What are the sailors seen doing in the video?,v_aDe5hUB3AdY_0,The sailors are performing capsizing training and sailing dinghies.,0 365,v_5qY9yPt-5Go,What is happening in the beginning of the video?,v_5qY9yPt-5Go_0,"The video starts with a black French bulldog standing on a checkered red tablecloth with a cup of coffee placed in front of it. The dog goes to the cup and starts to drink the coffee, while the boy attempts to move the dog away from the cup gently.",0 366,v_hvrKRg166eQ,What are the people doing on the couch?,v_hvrKRg166eQ_0,"Three people are sitting on a curved couch behind a coffee table, with three coffee cups on the table. A woman is sitting in the middle with two men on either side of her.",0 367,v_a_JlhLnJM98,What is the woman wearing and what is behind her?,v_a_JlhLnJM98_0,"The woman is wearing a green sweater and there is a jeans jacket visible hanging behind her. She is standing in a well-lit room with a window behind her. Behind her, to the left, is a rack of different products. ",0 368,v_9Ufy_JGbnys,What type of dance are the couple engaged in?,v_9Ufy_JGbnys_0,The couple is doing a tango dance.,0 369,v_9eniCub7u60,What do you see in the back on the right side of the room?,v_9eniCub7u60_0,"Yes, there is a door visible on the back right side of the room and a few photo frames hanging on the wall.",0 370,v_k1GP0cJOXbQ,What are the different activities people engage in throughout the video?,v_k1GP0cJOXbQ_0,"The video shows people kayaking in rapids and calm waters, with some scenes of them paddling alone and others in pairs, culminating in a group of people standing around drinking beer with the sunset in the background.",0 371,v_7bwruwic1CI,What game are the players in orange uniforms playing at the beginning of the video?,v_7bwruwic1CI_0,"The players in orange uniforms are celebrating a baseball game, and when the third player falls on the field, handball is being played.",0 372,v_bYxVbXzQToI,What is the man in the white suit doing?,v_bYxVbXzQToI_0,The man in the white suit sits on a chair on a raised platform in a bar and picks up a guitar with a man in a black tux sitting next to him holding a guitar. They start playing while people in the bar watch and drink.,0 373,v_hI11n4_r178,What type of outfits are the two women wearing?,v_hI11n4_r178_0,The two women in the video are wearing red shirts.,0 374,v_hP-xRyx88aA,What is the woman in the white jacket doing in the video?,v_hP-xRyx88aA_0,"The woman in the white jacket is pole vaulting over the bar, using her pole to clear it and landing on the foam mat. This is the second jump she makes in the video.",0 375,v_HxrtuZSCwvY,What instrument is the boy holding in the video?,v_HxrtuZSCwvY_0,The boy is holding a violin and playing it in a dimly lit living room while people sit and watch. He stops playing at the end and people applaud.,0 376,v_af05Mqm03Y4,What color T-shirt is the man wearing who is not tired?,v_af05Mqm03Y4_0,One man is wearing a white T-shirt and the other is wearing a grey T-shirt.,0 377,v_ddzfgHw_qlU,What is the man wearing and what is he doing?,v_ddzfgHw_qlU_0,"The man, who is wearing a grey dress shirt and glasses, is seen playing a harmonica in front of a painting in a well-lit room with a yellow overhead light. He continues to play until the end of the video.",0 378,v_h_r8gioFi4k,What are the two people wearing and what are they doing in the gym?,v_h_r8gioFi4k_0,"The man is wearing a black outfit and punch mitts while the woman is wearing a black outfit and boxing gloves. They are practicing kickboxing by using various moves including punching, kicking, and using elbows. The gym is well-lit and has posters on the walls while a multicolor mat covers the floor. Through an open door, a hall with chairs and wooden flooring can be seen.",0 379,v_EnMS9O1U6E0,What event is taking place in the stadium?,v_EnMS9O1U6E0_0,A man wearing blue shorts and a vest with the number tag of 2736 is shown performing a high jump at a track and field event hosted at an open-roof stadium with numerous spectators.,0 380,v_CeXtKbFnPIQ,What is the man wearing and holding on the tennis court?,v_CeXtKbFnPIQ_0,The man is wearing a black shirt and black track pants and holding a racket and a tennis ball on an outdoor tennis court.,0 381,v_K_ia4VP3w2c,What is the name of the model in the video?,v_K_ia4VP3w2c_0,Irina Shayk is the model for the makeup tutorial and photoshoot in the video.,0 382,v_IDIALY6Ayk8,What activity are the people engaged in at the winery?,v_IDIALY6Ayk8_0,"The people are at a winery, where they are shown a bottle of wine and then served wine to drink while seated in a dining room.",0 383,v_ij9czNGMR5I,What is the woman wearing while getting her tongue pierced?,v_ij9czNGMR5I_0,The woman getting her tongue pierced is wearing a grey hoodie.,0 384,v_jEOtcfk220s,What sport is being played?,v_jEOtcfk220s_0,A women volleyball match is being played in a light wood-floored gymnasium with white walls and bleachers at the bottom. The players on the left wear blue uniforms and a player makes a successful serve while a referee watches over the net. The video ends as the team on the left wins the exchange.,0 385,v_j6OcN4OQZVM,What is the color of the outfits worn by the breakdancers in the video?,v_j6OcN4OQZVM_0,The breakdancers in the video are wearing black outfits.,0 386,v_bz4QwqHiVlo,What is the color of the shirt worn by the man in the living room?,v_bz4QwqHiVlo_0,The man is wearing a purple shirt while vacuuming in the living room.,0 387,v_hPYGgv_75SY,Where does the woman wearing a black outfit perform the hammer throws?,v_hPYGgv_75SY_0,The woman wearing a black outfit is performing hammer throws on a field in the daytime.,0 388,v_jWH-2aa1gJY,What is the girl in the video wearing and what is visible behind her?,v_jWH-2aa1gJY_0,The girl in the video is wearing a hoodie and jeans and sitting on a chair with a closed window behind her. There is various music gear visible around her on the ground and the room is lit by diffuse light from the window.,0 389,v_BAtlo_AGFWs,What is Chris Hadfield doing while holding a tortilla in his hand?,v_BAtlo_AGFWs_0,Chris Hadfield is holding a tortilla and squeezing honey on it while floating in the International Space Station.,0 390,v_9lAT3oA9Ixs,What is the man wearing while chopping wood in the woods?,v_9lAT3oA9Ixs_0,The man is wearing a blue jacket and blue jeans while chopping wood near a cabin in the woods.,0 391,v_0rr7iGHamw0,What is Valarie doing in the crowded hall?,v_0rr7iGHamw0_0,"Valarie is using iron-on transfer to imprint a design on a white t-shirt with a Twitter username and blue bird picture, while standing in front of an ironing board holding an iron in the crowded hall.",0 392,v_6utacRir3uM,What is happening in the aerobics studio?,v_6utacRir3uM_0,People are working out in a well-lit aerobics studio using aerobic steps with an instructor giving instructions. A man falls down while trying to follow the instructor and receives help from the instructor and some other participants.,0 393,v_5cijPqKVc84,What kinds of kayaks are shown in the video?,v_5cijPqKVc84_0,"The video shows various types of kayaks being rowed in different water bodies including rapids, rivers, and the sea. Some have open cockpits while others are closed.",0 394,v_l5ZUUChppHU,What type of outdoor competition is taking place in the video?,v_l5ZUUChppHU_0,"The video shows a wood-chopping contest with participants standing over their respective logs and two sets of competitions - wooden blocks laid horizontally on chopping stands and contestants assembling wooden blocks on horizontal chopping stands. They are wearing black vests and light-colored trousers, and the contest takes place outside in an arena during the daytime.",0 395,v_52Xw6TZcysc,What event is the woman participating in?,v_52Xw6TZcysc_0,The woman is doing a long jump in an indoor track and field stadium.,0 396,v_l_0HvMt2tGg,What sport is being played in the video?,v_l_0HvMt2tGg_0,"The video features the boy playing lacrosse, wearing a red and white jersey, and using a lacrosse stick.",0 397,v_1jgsRbGzCls,What is the video mainly about?,v_1jgsRbGzCls_0,"The video is about Tai chi and its practice by people of different ages and in different settings, including a newsroom, sandy ground outdoors, a hospital, and individuals practicing on their own.",0 398,v_kl-2y3jtPNE,What game is being played in the field?,v_kl-2y3jtPNE_0,The game being played in the field is cricket.,0 399,v_j_r7zJWxI8w,What is the color of the shirt worn by the man picking up the beer can?,v_j_r7zJWxI8w_0,The man wearing the Adidas blue t-shirt makes a hole in the beer can using a key and drinks from it.,0 400,v_l_pp-1qu9Ig,What is the woman doing with the gift wrap?,v_l_pp-1qu9Ig_0,"The woman is wrapping a brown cardboard box with gift wrap by cutting, folding and taping it, and then placing it on the counter.",0 401,v_8r4bF9RF0Kc,What sport are the people playing at the beginning of the video?,v_8r4bF9RF0Kc_0,The people in the video are playing a game of cricket at the beginning.,0 402,v_iUiXNXRs4rU,What is the man wearing and where is he located?,v_iUiXNXRs4rU_0,"The man is wearing a brown shirt and a cap, standing in a well-lit bike shop with shelves filled with tools and bike parts. He is fixing a broken chain by attaching a master link on one end and pushing on the pedal to check the fix.",0 403,v_Lf_7RurLgp0,What is the little boy wearing while he washes his hands?,v_Lf_7RurLgp0_0,The little boy is wearing a black polo shirt while washing his hands in the video.,0 404,v_34ZxyyFjbHQ,What are the colors of the T-shirts of the two kids playing squash?,v_34ZxyyFjbHQ_0,One boy is wearing a blue T-shirt and the other a red T-shirt. The game gets started over when one of them misses their shot. The video ends with the two boys playing and a boy wearing a white t-shirt standing outside the court watching. It doesn’t mention which boy wins the starting-over games.,0 405,v_Db9VWkgMpbE,What is the woman wearing who is learning to use an exercise bike?,v_Db9VWkgMpbE_0,The woman who is learning to use an exercise bike is wearing a black top.,0 406,v_Il9Ara3IqeY,What is the man doing on the Marble Bridge during the daytime?,v_Il9Ara3IqeY_0,"The man is standing on an elevated section of Marble Bridge, playing a flute. He is wearing a black polo shirt and a rice hat. The Palace Museum can be seen at his back. People are walking around Meridian Gate Square, some of whom are walking under an umbrella. He continues playing the flute until the end of the video.",0 407,v_HkbOI7gEtKk,Who are the two women in the video and what are they doing?,v_HkbOI7gEtKk_0,"The video features two women, one wearing a teal top and the other wearing a white one. The woman in the teal top is a beautician and she is demonstrating how to make a cleansing with baking soda while the woman in the white top, the model, follows the instructions by mixing yogurt and baking soda to apply to her face.",0 408,v_cEa87QoI3Do,What do the two men make in the kitchen?,v_cEa87QoI3Do_0,"The two men make sandwiches using various ingredients like peanut butter, jelly, lettuce, and ham.",0 409,v_ARpoJIBF2NM,What color are the t-shirts worn by the players on one side of the basketball court?,v_ARpoJIBF2NM_0,The players on one side of the basketball court are wearing teal t-shirts.,0 410,v_H8oehT8eeGc,What happens to the red ball tossed by a boy?,v_H8oehT8eeGc_0,"The red ball is thrown by a boy, retrieved by another boy wearing a green shirt who then kicks it. The ball flies through the air and lands near the opposite chain-link fence. A boy wearing a red shirt then runs toward the ball.",0 411,v_jQzBXawu29s,What is the man wearing while playing the black wooden Irish flute in the living room?,v_jQzBXawu29s_0,The man is wearing a brown sweater and glasses while playing the black wooden Irish flute in a living room with a television stand behind him and various framed items hung on the wall. Sunlight is coming in from the left side at the back.,0 412,v_51faGoLPJgM,What is the boy doing in the beginning of the video?,v_51faGoLPJgM_0,The boy is chopping wood next to a pile of chopped logs while wearing blue jeans and a sweater.,0 413,v_AB480dHyDeM,What does the man do after removing the insole and laces from the shoe?,v_AB480dHyDeM_0,The man first removes the insole and laces from the shoe before putting some cleaning solution on the brush and dipping it in the water bowl to start brushing the shoe.,0 414,v_lPw_BRbPw5s,What is the attire of the man and woman dancing in the alley?,v_lPw_BRbPw5s_0,"The man is dressed in a blue T-shirt and a blue cap, while the woman is wearing a brown top and blue jeans.",0 415,v_Kofjs0rkwxc,What are the ingredients used by the chef in making sandwiches?,v_Kofjs0rkwxc_0,"The chef uses bread, butter, sliced turkey, cranberry sauce, and green leaves to make sandwiches. For the turkey sandwich, he spreads butter on the bread, places sliced turkey, adds cranberry sauce and green leaves and covers it with the other slice.",0 416,v_jiM0HUFn0e8,What are the little kids doing during the ballet practice?,v_jiM0HUFn0e8_0,"The little kids are sitting a few feet away from the trio of dancers, mimicking the hand moves and following the movements of the instructor and the other two dancers.",0 417,v_4oi6dXfpJS4,What color outfit is the gymnast wearing when she starts performing on the balance beam?,v_4oi6dXfpJS4_0,The gymnast is wearing a pink outfit when she mounts the balance beam.,0 418,v_4KMG6lEDSIM,What happens in the final scene of the video?,v_4KMG6lEDSIM_0,"In the final scene of the video, a man wearing a black gi breaks tiles placed on two cinder blocks.",0 419,v_889_kqLFM0E,What is the common theme among all the activities shown in the video?,v_889_kqLFM0E_0,All people in the video are engaged in different forms of rock climbing activities.,0 420,v_1YU4MSK80cQ,What exercises did the woman do in the video?,v_1YU4MSK80cQ_0,"The woman did exercises like swaying, moving back using her hands, doing the split, and swinging using the bars.",0 421,v_IDuoF51IMJ8,What is happening in the beginning of the video?,v_IDuoF51IMJ8_0,The video begins on a basketball court where two teams are playing dodgeball.,0 422,v_jkrlHzTRTvo,What activity are the young boys in the beginning of the video preparing for?,v_jkrlHzTRTvo_0,"The young boys are getting ready for a paintball game, and they are seen in a room putting on their gear and taking defensive positions in an arena with various inflatable bunkers used as obstacles.",0 423,v_dhsSq0K1xEg,What is written on the saxophone case?,v_dhsSq0K1xEg_0,'GUNS-N-ROSES' with a rose drawn underneath is written on the decorated saxophone case.,0 424,v_0x6ZV9Y8g_c,What is the toddler wearing in the beginning of the video?,v_0x6ZV9Y8g_c_0,"In the beginning of the video, the toddler is seen wearing blue and red pajamas.",0 425,v_-IMXSEIabMM,What are the people in the beginning of the video doing?,v_-IMXSEIabMM_0,The people in the beginning of the video are wearing winter clothes and shoveling snow around a car parked in front of a garage in the daytime.,0 426,v_dVpHF8tE2qo,What is the man wearing while lifting the barbell in the gym?,v_dVpHF8tE2qo_0,The man is wearing a red vest while lifting the barbell in the gym.,0 427,v_Kic33dtLja8,What type of dance are the women in the video performing?,v_Kic33dtLja8_0,"The women in the video are belly dancing. They move their hands, from side to side, forward and back while turning sideways.",0 428,v_4mRkWNLE66E,What is the number of the player being pointed to by the red arrow?,v_4mRkWNLE66E_0,The player in the white number 15 jersey is being pointed to by the red arrow and he scored a goal and celebrated with his teammates at the end of the video.,0 429,v_FOZdNPQ7d5Q,What is happening in the video?,v_FOZdNPQ7d5Q_0,"A man is getting a tattoo on his left arm from a woman in a dimly lit room. The woman is wearing a purple check shirt with black gloves and using a tattoo gun. The man is wearing a black beanie cap, a chain, and blue jeans. There are plants outside the window. The video ends with a close-up shot of the tattoo.",0 430,v_BSwChZlOb0k,What happens when the man tries to drink the flaming shot?,v_BSwChZlOb0k_0,"The flames from the shot glass stick to his mouth and he throws the glass on the table, which causes the table and a man standing near it to catch fire.",0 431,v_cqxiLraI8uY,What does the man wearing a red t-shirt do in the gym?,v_cqxiLraI8uY_0,The man lifts a barbell and holds it over his head before dropping it to the floor in a gym with black floors and fixed equipment.,0 432,v_d6PdD2O3Yrs,What is the boy doing in the video?,v_d6PdD2O3Yrs_0,The boy in black tights is practicing gymnastics by balancing and swinging on horizontal bars in the well-lit gymnasium.,0 433,v_3V9tzjyr51I,What is the man on the right holding in the video?,v_3V9tzjyr51I_0,The man on the right is holding a racquet in the video.,0 434,v_di5f5hM05Vw,Where is the man practicing Tai Chi?,v_di5f5hM05Vw_0,"The man is practicing Tai Chi movements in an indoor studio with well-lit light wood flooring, a mirror covering the wall at his back, and a window covered in purple drapes visible on the right side wall.",0 435,v_JN1wuOpCZvk,What are the men wearing in the video?,v_JN1wuOpCZvk_0,"The men are wearing black briefs with the one on the left wearing a grey sweatshirt and the one on the right, a white vest.",0 436,v_JH9qiuPCkY4,What is the color of the logo on the wall in the dirt bike yard at the beginning of the video?,v_JH9qiuPCkY4_0,There is a wall with a red logo on it in the dirt bike yard at the beginning of the video.,0 437,v_aQ-F9wr0HQ4,What is being sprayed in the video?,v_aQ-F9wr0HQ4_0,The 'Favor' spray bottle is being used in the video.,0 438,v_0UTrTg3DF5g,What drink is Pinky making in the video?,v_0UTrTg3DF5g_0,"Pinky is making a cocktail called 'GIN E HENDRIX' and she uses a variety of ingredients including cucumber, lime, lemon, basil, and different bottles of alcohol visible behind her on glass shelves.",0 439,v_Ie09KEAPP2I,What is the color of the labrador retriever in the video?,v_Ie09KEAPP2I_0,The labrador retriever in the video is brown.,0 440,v_Jdu5AqaWfz8,What colour is the bungee jump platform and where is the yellow inflatable boat located?,v_Jdu5AqaWfz8_0,"The bungee jump platform is yellow and the inflatable boat is located to the left near the shore. Three men, with two attendants in green shirts and one jumper wearing a t-shirt and a strap, are standing on the platform during the day. One of the attendants is belaying the bungee cord. After jumping off the platform and being pulled back up, the man is slowly reeled down and drawn to the shore by two attendants.",0 441,v_Erje-PwY9hE,What color are the kayaks tied to the pier and what is the color of the shirt worn by the person kayaking down the river?,v_Erje-PwY9hE_0,The kayaks at the pier are yellow and the person kayaking down the river is wearing a yellow shirt. ,0 442,v_HgYuRKZ_V90,What color uniform is one of the teams wearing in the video?,v_HgYuRKZ_V90_0,One of the teams is wearing a blue uniform and the other is wearing white.,0 443,v__jV5sAOOHLk,What is Brandt repairing in the video?,v__jV5sAOOHLk_0,"Brandt is repairing a punctured tire on a bicycle by unscrewing the derailleur guard, removing the tire, inserting a new tube, inflating it using a pump, fixing it back to the bicycle with a wrench and reapplying the rear brake.",0 444,v_JDwd6Ec454A,What color is the rabbit and what is he doing?,v_JDwd6Ec454A_0,The rabbit has a reddish coat with dark brown highlights and is grooming himself in a wooden box with a mesh floor. A person reaches in and pets the rabbit.,0 445,v_34SBoGK8mT8,What is the little girl doing in the video?,v_34SBoGK8mT8_0,"The little girl is playing hopscotch on a court drawn on the ground, picking up and throwing a pebble a few times before successfully landing it in a square and hopping to that square.",0 446,v_fNhw7xE3NM8,What is the girl wearing who is making the video?,v_fNhw7xE3NM8_0,"The girl making the video is wearing a black top and the room has printed walls with a chandelier, dolls, a green sofa, and a big green plant. There is also a white door present.",0 447,v_83f0iwb8VW8,What is the color of the carpet on the floor of the dojo?,v_83f0iwb8VW8_0,The floor of the dojo is made of blue and red carpet.,0 448,v_Lb7Q8qv3MHU,What does the girl do after taking a sip of mouthwash?,v_Lb7Q8qv3MHU_0,"The girl picks up her toothbrush, squeezes toothpaste on it, and starts brushing her teeth.",0 449,v_7dXqXFoju2M,Where does the video begin?,v_7dXqXFoju2M_0,The video begins in a dimly lit bathroom with a bathtub visible in the background. A woman stands in front of a mirror with a drinking glass in one hand and a cigarette in the other.,0 450,v_A20uQSBtYMs,What is the name written on the banner behind the men playing saxophones?,v_A20uQSBtYMs_0,The banner behind the men playing saxophones reads 'TWIN JAZZ'.,0 451,v_9InwA-ajB2M,Who is present inside the enclosure?,v_9InwA-ajB2M_0,A man wearing a cowboy hat and an orange shirt is standing in the middle of the enclosure and looking at the rider.,0 452,v_2nDbYhgdw2A,What type of dance moves are performed by the person wearing a yellow shirt in the beginning of the video?,v_2nDbYhgdw2A_0,The person in the yellow shirt performs the backspin as the first dance move.,0 453,v_eRco7yXc-40,What type of dive did the person perform off the diving board?,v_eRco7yXc-40_0,The person performed a reverse somersault dive off the diving board.,0 454,v_IGZvj1J9tNc,What drill are the players performing in the video?,v_IGZvj1J9tNc_0,"The players are running across the court in groups of three, while the one in the middle dribbles the ball and shoots it in the basket, and then they repeat the drill with a different player among the three, while the coach watches from outside the court.",0 455,v_49PbyLbrxlE,What is the woman doing in the bathroom?,v_49PbyLbrxlE_0,"The woman is washing a piece of cloth in front of the mirror and sink in a bathroom while wearing a blue top. Toiletries and a bottle of dish soap are on a shelf in front of the mirror and walls are lined with white tiles. As she continues to wash the cloth, she rinses it in the sink, which is filled with dirty water.",0 456,v_4QRRxub6L5Q,What is happening in the video with the girls and the foam platform?,v_4QRRxub6L5Q_0,The video shows a girl performing multiple backflips on a foam platform indoors while another girl watches. There is a poster of a cartoon sloth on the far wall. The video ends with the girl doing backflips and landing.,0 457,v_0DFz3sgfda0,What are the girls doing with the food items in the kitchen?,v_0DFz3sgfda0_0,"The girls are making a salad in the kitchen with various ingredients like lettuce, tomatoes, and peanuts.",0 458,v_cCDffwsJvsY,What does the person do to start the fire?,v_cCDffwsJvsY_0,The person lights a piece of chips and then uses it as kindling to light the arranged firewood. They also use a Bic lighter and light a few more pieces of kindling to help the fire light faster.,0 459,v_11p9goB2rm8,What activities were the teenagers engaged in?,v_11p9goB2rm8_0,The teenagers were hopping through the hopscotch court and attempting a pull-up from the basketball hoop before walking away from it. They were in a playground with multiple basketball hoops visible in the distance.,0 460,v_4Gx_8vuxzAk,What is the woman in the video cleaning the coffee table with?,v_4Gx_8vuxzAk_0,The woman is using wood polish and a towel to clean the coffee table.,0 461,v_HMs703DhjQU,What are the men wearing in the kitchen?,v_HMs703DhjQU_0,"The man on the left is wearing a black suit, and the man on the right is Will Smith, the actor wearing a multi-colored shirt.",0 462,v_Jy93pLzV2uw,Which team wins the exchange and celebrates?,v_Jy93pLzV2uw_0,The team wearing the orange uniform wins the exchange and celebrates.,0 463,v_6wPVO7I8iIY,What is the bartender doing in the video?,v_6wPVO7I8iIY_0,"The bartender is making a cocktail by picking up various bottles of alcohol, adding flavoring agent, ice cubes, and stirring the mixture in a mixing glass. He then empties the cocktail glass of ice and pours the drink into it. The video shows a cutaway of the ingredients for the drink. At the end of the video, the bartender is seen wiping the bar.",0 464,v_Fb4X1PWfOvY,What color clothes is the woman wearing while exercising on the parallel bars in the park?,v_Fb4X1PWfOvY_0,"The woman is wearing a neon green T-shirt, black track pants with white stripes, and white sports shoes.",0 465,v_IfugNwywj-k,What is the old man wearing while repairing the bicycle?,v_IfugNwywj-k_0,The old man is wearing a black vest over a white shirt while repairing the bicycle in a well-lit shop.,0 466,v_dZsk5Dp_5FE,What is the boy wearing while chopping wood?,v_dZsk5Dp_5FE_0,The boy is wearing an off-white T-shirt and shorts while chopping wood.,0 467,v_AL1W3HkjJ2Y,What is the color of the woman's outfit in the video?,v_AL1W3HkjJ2Y_0,The woman is wearing black trousers and a black top while holding a bow with a quiver full of arrows.,0 468,v_j_1kNiGcepU,"What is the man wearing who is playing the harmonica, and what is the man next to him doing?",v_j_1kNiGcepU_0,"The harmonica player is wearing a checkered shirt and has a backpack on. The man next to him in a hoodie is standing with his hands in his pockets, bobbing his head up and down before taking out his phone to record the harmonica player.",0 469,v_le7JdKQB65I,What color is the woman's coat and what color is her top?,v_le7JdKQB65I_0,The woman is wearing a white coat over a teal top.,0 470,v_-6dz6tBH77I,What is the man in the video holding in his hand?,v_-6dz6tBH77I_0,The man is holding a disk in his right hand.,0 471,v_BnO8AfQS8yE,What color is the shirt worn by the player who missed the shot?,v_BnO8AfQS8yE_0,The player who missed the shot is wearing a yellow T-shirt.,0 472,v_CvbBSwz-9XI,What is happening in the video?,v_CvbBSwz-9XI_0,A man is pouring water from a bucket on a dog standing under an open tap while shaking the water dry in slow motion.,0 473,v_-cAcA8dO7kA,What is happening in the beginning of the video?,v_-cAcA8dO7kA_0,A man is riding a dirt bike in a dirt field with houses visible beyond the field.,0 474,v_9snScUyE8_4,What is the woman doing in the video?,v_9snScUyE8_4_0,"The woman is washing dishes in the well-lit kitchen with a window behind her, while shelves of dishes are visible on one side and a house is visible through the window.",0 475,v_96ADEnJy4GU,What is happening in the scene with the monster truck?,v_96ADEnJy4GU_0,The monster truck is driving through a mud track and splashing mud as it turns.,0 476,v_-D1gdv_gQyw,What item does the man use to start the fire?,v_-D1gdv_gQyw_0,The man lights the stack of firewood on fire by striking a fire starter with his knife.,0 477,v__a527xEzhkw,What musical instrument is the girl holding?,v__a527xEzhkw_0,The girl is holding a harmonica.,0 478,v_cH3H-arDsH4,What is happening in the video?,v_cH3H-arDsH4_0,The video shows a game of water polo being played in a swimming pool with two teams trying to score goals.,0 479,v_hvhny4-sI-w,What are cameramen doing in the video?,v_hvhny4-sI-w_0,Cameramen with cameras on tripods are standing in front of the spectators capturing polo match going on in a polo field.,0 480,v_d09u-0k3LdE,What is the woman wearing and what is she holding?,v_d09u-0k3LdE_0,The woman is wearing a red vest and holding a hammer attached to a string. She is standing in a net in a field with a red mat on the ground. She swings the hammer with the string and releases it through the open end of the netting.,0 481,v_B0GCHDqEsRU,What is happening in the background while the couple is dancing?,v_B0GCHDqEsRU_0,"Children are running around in the background near the woods, and a man is tending to a barbeque a few feet behind the dancing couple. There is a red truck visible all the way back towards the fence.",0 482,v_aH39BSM0-Ag,What is the color of the jersey that Samuel Shearin is wearing?,v_aH39BSM0-Ag_0,Samuel Shearin is wearing a blue-green jersey with the number 24.,0 483,v_iqhdqhVttEM,What type of class is the man conducting?,v_iqhdqhVttEM_0,The man is leading a Zumba class where people are following his lead and dancing during the daytime and a crowd is gathered to watch.,0 484,v_cECycCDw1Nc,What are the ingredients shown in the video for the sandwich?,v_cECycCDw1Nc_0,"The ingredients for the sandwich in the video are a French roll, mayonnaise, pizza sauce, tomato slices, shredded lettuce, cheese, and pepperoni.",0 485,v_egowZOcbEkI,What is the instructor wearing?,v_egowZOcbEkI_0,The instructor is wearing a white shirt and green shorts.,0 486,v_HURRgbZGz8Q,What is happening in the outdoor stadium in the video?,v_HURRgbZGz8Q_0,"The video shows a spear-throw competition where athletes holding spears run and throw them in an outdoor stadium filled with spectators. The landing area has numbered lanes, and a man in a suit is seen near the number 70 marker. The scoreboard with names and throw distances is shown towards the end.",0 487,v_afMQA352X_A,What is the trainer wearing during the kickboxing practice?,v_afMQA352X_A_0,The trainer is wearing focus mitts on both hands during the kickboxing practice.,0 488,v_l8gg9TYh_B0,What are the news anchors wearing?,v_l8gg9TYh_B0_0,The woman anchor is wearing a black top and the man anchor is wearing a black suit.,0 489,v_Ds2O0-8Labs,What is the weight of the heaviest barbell the man lifts?,v_Ds2O0-8Labs_0,The man lifts a barbell of 130 kilograms at the end.,0 490,v_k1QAWLupB-I,What branded item are the people holding in the beginning of the video?,v_k1QAWLupB-I_0,"The people at the beginning are holding an Old Spice-branded ping pong paddle, and the woman is holding a paddle in front of her face with a picture of the man she is standing next to on it.",0 491,v_9UvVeUYQLgA,What are some of the structures found in the paintball arena?,v_9UvVeUYQLgA_0,"Cable drums, old tires, weeds, and cinderblocks are used as cover in the paintball arena.",0 492,v_dEpUIpmBvow,What time of the day is the man climbing the rock?,v_dEpUIpmBvow_0,The man is climbing the rock during daytime.,0 493,v_EZyLBq2jJtE,What is Bethany doing when the video starts?,v_EZyLBq2jJtE_0,"Bethany is shaving her legs while wearing a red T-shirt, black & purple short track pants, white sports shoes, rings on both hands, and a bracelet on her left hand. She is also speaking to the cameraman.",0 494,v_2fzIi1lPd8U,Who is playing with the two kids in the video?,v_2fzIi1lPd8U_0,The video shows an elderly woman playing with a little boy wearing a red shirt and a little girl standing on the side of the porch.,0 495,v_C7yd6yEkxXE,What are some visible features on the dirt bike track?,v_C7yd6yEkxXE_0,The video shows a dirt bike track surrounded by trees and vegetation with a cloudy sky in the background.,0 496,v_IN23CO8Kotk,What is the parrot eating from the pink coffee cup on the kitchen counter?,v_IN23CO8Kotk_0,The parrot is eating cream from a pink coffee cup with a butterfly painted on it.,0 497,v_BFChXuwZ4wo,What did the woman get tattooed on her wrist?,v_BFChXuwZ4wo_0,The woman got a stencil tattooed on her wrist at the tattoo parlor.,0 498,v_9k19UUJtldg,What is happening in the first part of the video?,v_9k19UUJtldg_0,"In the first scene, the boy is playing ping-pong alone in a room.",0 ================================================ FILE: data/text_generation_benchmark/Consistency_QA2.csv ================================================ ,video_name,question,question_id,answer,question_type 0,v_p1QGn0IzfW0,"Can you describe the gym where the boy is performing, and what equipment is visible?",v_p1QGn0IzfW0_0,There is other equipment visible in the gym like a high bar and still rings.,0 1,v_UZm05CvtxkA,Can you describe what is being played on the indoor volleyball court in the video?,v_UZm05CvtxkA_0,"The video shows a volleyball game being played on a well-lit indoor court, with spectators celebrating in the background.",0 2,v_oR8o_PuKS28,Can you describe the activity of the men near the shore during day time?,v_oR8o_PuKS28_0,The men are playing beach volleyball near the shore during daytime.,0 3,v_YIq3Tar9x6s,Can you describe the clothes worn by the girls in the video?,v_YIq3Tar9x6s_0,"The girl combing hair is wearing a black sweatshirt, white top, and blue jeans. The other girl is wearing a black sweatshirt.",0 4,v_U3-MtKZeUXM,Can you describe the athlete’s outfit before he throws the hammer in the air?,v_U3-MtKZeUXM_0,The athlete is wearing a blue and red jersey and white and red sports shoes.,0 5,v_q_QR5HoROhI,Can you describe the process of the man painting the woman’s nail?,v_q_QR5HoROhI_0,The man applies black ink to the woman’s nail using a small brush before curing it and then applies glitter of different colors on the black-painted nail which is then cured under a curing lamp.,0 6,v_qsEnLQ2UnEA,Can you describe the hammer the man is using in the video?,v_qsEnLQ2UnEA_0,The man is carrying a hammer attached to a handle through a metal string and he is using it as a throwing equipment.,0 7,v_ZwK52lXCbhA,Can you describe the clothing of the man getting tattooed?,v_ZwK52lXCbhA_0,The man getting tattooed is wearing a red sleeveless shirt.,0 8,v_Y9d4iPDeigI,Can you describe the clothing of the boxer in the right corner?,v_Y9d4iPDeigI_0,The boxer in the right corner is wearing red shorts and red boxing gloves.,0 9,v_qtKa7Lr3URA,What is the woman in white watching the washerwoman do?,v_qtKa7Lr3URA_0,The woman in white is watching the washerwoman wash clothes with a stone on the ground.,0 10,v_P7Z4i1gmzjs,Can you describe the equipment present at the gym?,v_P7Z4i1gmzjs_0,The boy is swinging between parallel bars in a well-lit gym with foam mats on the floor under various other equipment.,0 11,v_ojIhxWrBM0s,Can you describe the scene in the first shot of the video?,v_ojIhxWrBM0s_0,"In the first shot of the video, a man is sitting in a barber chair, looking through a magazine while draped in a cape, and surrounded by other customers in a salon.",0 12,v_w4pO-1-FG5w,Can you describe the design of the cape that the little boy is wearing at the saloon?,v_w4pO-1-FG5w_0,The little boy is wearing a blue cape with pictures of animated characters on it at the saloon.,0 13,v_vo2M4sY0E38,Describe the woman who is brushing the horse?,v_vo2M4sY0E38_0,The woman is wearing a black top and jeans.,0 14,v_WOUkPgHtt4E,Can you describe the scene in the gymnasium with the boy practicing on the armbar?,v_WOUkPgHtt4E_0,"The boy is wearing a white vest and dark blue shorts and is performing different maneuvers on the armbar in a gymnasium with cream color walls, blue mattresses on the floor, windows on the left side, armbars, balance beams, a small wall clock on the left side, trophies kept on the edge of the window and other children practicing around him.",0 15,v_RjztFj0Zl40,Can you describe the sports activity happening on the basketball court?,v_RjztFj0Zl40_0,The teams are playing dodgeball on the basketball court.,0 16,v_tSNg5rvDvVc,In what type of setting is the man playing the saxophone?,v_tSNg5rvDvVc_0,The man is playing the saxophone in a public place with many people watching his performance from behind and there are many stalls and huge black speakers behind him.,0 17,v_Y16uL6dYDzQ,Can you describe the weightlifting competition in the grassy field?,v_Y16uL6dYDzQ_0,"The video shows a weightlifting competition in a grassy field, with weightlifters lifting big dumbbells on black-colored mats, while applying powder from black buckets. There is an audience watching, officials and a cameraman standing on the left side of the weightlifters, and a jimmy jib camera recording from above. The weightlifters are wearing grey T-shirts, black/red/white shorts and shoes. One weightlifter lifts the dumbbell successfully, while others struggle and drop it, and the video ends with him raising his hand for the audience and walking off the mat.",0 18,v_wiaZCl-poRw,Can you describe the clothing of the man mowing the lawn?,v_wiaZCl-poRw_0,The man is wearing a black polo shirt and cargo pants.,0 19,v_qqZLs6j3YII,Can you describe the uniforms of the children playing guitars on the stage?,v_qqZLs6j3YII_0,The children on the stage are wearing red and white uniforms.,0 20,v_IRBrTKrVCxo,Can you describe the man in blue shirt doing in the video?,v_IRBrTKrVCxo_0,"In the beginning of the video, the man is getting his shoes shined by a man wearing a blue shirt who is polishing his black shoes with a brush outdoors during the daytime.",0 21,v_xS5JDBeMxOs,Can you describe what the men are doing with beer and their shoes?,v_xS5JDBeMxOs_0,The men are adding beer to their shoes and drinking from them while the surrounding people cheer for them.,0 22,v_-uJnucdW6DY,Can you describe the game being played in the grassy field?,v_-uJnucdW6DY_0,"A group of kids are playing a game of soccer in the grassy field surrounded by a metal fence with light poles. They are passing the ball to each other, kicking it, and running across the field.",0 23,v_PzJsoZT2hXk,Can you describe the activity of the women in the video?,v_PzJsoZT2hXk_0,"The women are gift-wrapping and exchanging wrapped gifts in a well-lit room, and adding gift cards to the wrapped boxes.",0 24,v_YAMhMB1jdio,Can you describe what the customers are wearing while getting their haircuts in the barbershop?,v_YAMhMB1jdio_0,The customers in the barbershop are wearing white cloth capes.,0 25,v_EWNqkVaOfbE,Describe the clothing worn by the people being interviewed during the TACK event?,v_EWNqkVaOfbE_0,"The news reporter wears a grey full-sleeve top and there are various interviewees wearing a blue jersey, white shirt with black coat and black coat with light blue shirt.",0 26,v_Pjnuoa4o55c,What is happening on the blue walled squash court in the video?,v_Pjnuoa4o55c_0,Four men are playing squash on a blue walled court with polished wooden floors.,0 27,v_QOsG3BeQeX0,Can you describe the person who is swinging from the parallel bars?,v_QOsG3BeQeX0_0,The person is wearing a blue shirt and khaki shorts.,0 28,v_zxpQHLwZCug,Can you describe the man standing over the partially cut log in the yard?,v_zxpQHLwZCug_0,The man is wearing a blue shirt and jeans and is holding an axe in his left hand while standing over a partially cut log in a yard with plants at the back. There is a fence visible at the back with a tree next to it behind and to the right of the man. A house is visible past the fence.,0 29,v_uvglcAUnQv0,Can you describe the appearance of the woman in the middle of the dance floor and her footwear?,v_uvglcAUnQv0_0,The woman is wearing a pink top and a black skirt with high heels.,0 30,v_T7YcO-sOLuU,Can you describe the cleaning supplies used by the man to clean the shoes?,v_T7YcO-sOLuU_0,"The man is cleaning the shoes using a hand brush, water, and JASON MARKK cleaning solution.",0 31,v_OkvWTZ4XLyM,Can you describe what is happening in the video with the discus?,v_OkvWTZ4XLyM_0,The man is spinning the discus to build momentum before releasing it towards the landing area.,0 32,v_sPK-sbHIb3w,Can you describe the drill the players are doing on the court?,v_sPK-sbHIb3w_0,The players are doing a drill where they dunk the ball into the hoop with a spin.,0 33,v_TEgPIueNqTI,Can you describe the appearance of the woman as she gets a tattoo in the parlor?,v_TEgPIueNqTI_0,The woman is wearing a white top while she gets tattooed in the tattoo parlor.,0 34,v_zTHkqpNFGno,Can you describe the woman and her surroundings while she is combing her hair?,v_zTHkqpNFGno_0,The woman is wearing a black top and is in a well-lit room with a white wall behind her. There is a desk on her right. She is leaning forward while combing her hair and laughs at something she reads. The video ends as she places the comb at her side and continues to lean forward.,0 35,v_vska7f8Zm9s,Is the man in the video adding fresh firewood to the flame?,v_vska7f8Zm9s_0,The video takes place during the day and the man in the video is adding fresh firewood to the flame.,0 36,v_SV3v-nA6hXM,Can you describe the man on the bungee platform?,v_SV3v-nA6hXM_0,The man is wearing a white shirt with a harness on it and a cap while standing on the bungee platform.,0 37,v_w46wkDledek,Can you describe the clothing of the girls as they perform a Spanish-style dance?,v_w46wkDledek_0,"One girl is wearing a grey hoodie and pants, while the other is wearing a white and blue shirt and jeans.",0 38,v_TB5AeIdAndA,Can you describe the outfit of the man playing the guitar on the sidewalk?,v_TB5AeIdAndA_0,The man is wearing a blue jacket and jeans while playing the guitar on the sidewalk.,0 39,v_sbnF7VVeopM,Can you describe what the person in the chef uniform is doing?,v_sbnF7VVeopM_0,The person in the chef uniform is washing dishes over a well-lit counter using steel wool and handheld kitchen faucet sprayer to rinse them.,0 40,v_OESjoURo19U,Can you describe the activity the group of kids is engaged in on the basketball court?,v_OESjoURo19U_0,The kids are playing dodgeball on an indoor basketball court.,0 41,v_SLHPvKh-_x8,Can you describe the attire of the woman in the examination room?,v_SLHPvKh-_x8_0,The woman in the video is wearing a black top.,0 42,v_ypfWA4aDL6k,Can you describe the surroundings of the man playing the bagpipe?,v_ypfWA4aDL6k_0,"The man wearing a kilt is playing the bagpipe on the sidewalk in front of a lamp post. Vehicles are passing behind him on the street, buildings are visible in the background, and people drop change in front of him as they walk past.",0 43,v_rpjxjU-mLiw,Can you describe the scene and the man’s activity in the field?,v_rpjxjU-mLiw_0,The man is wearing a teal T-shirt and black shorts and is starting his discus throw in a throwing circle surrounded by a practice net. He then walks towards the camera and claps his hands. A person in a yellow shirt can be seen jogging on the track behind the practice net.,0 44,v_sk_pnoqXxhs,Can you describe the scene in the bathroom?,v_sk_pnoqXxhs_0,"The video shows a toddler in a diaper brushing his teeth with the help of a woman in a white shirt, while a man in a black T-shirt films. There is also a brown dog in the bathroom.",0 45,v_YK9BIL9fKA0,Describe the outfit worn by the girl recording the video.,v_YK9BIL9fKA0_0,"The girl recording the video is wearing a maroon T-shirt, blue jeans, and red and white sneakers.",0 46,v_GvMep9y7d7c,Can you describe the repairs being done to the bicycle in the video?,v_GvMep9y7d7c_0,The man is repairing the chain bearing of the cycle by tightening its screws and hitting it with a branch and a stone.,0 47,v_ZSdnDVGXU3k,Can you describe the movements performed by the gymnasts on the balance beam in the video?,v_ZSdnDVGXU3k_0,The gymnasts are performing various gymnastics movements on the balance beam in the video montage.,0 48,v_u3XOLSC7lg0,Can you describe the clothes of the man performing in the hallway with the blue and red floors?,v_u3XOLSC7lg0_0,"The man is wearing a black T-shirt, black pants, and black and white sneakers.",0 49,v_skk-nX55gvA,"Can you describe the slow-motion scene of a water polo game where one player wearing a white cap and identified as ""Justin Harrison"" scores a goal?",v_skk-nX55gvA_0,"Justin Harrison, identified as the person in the white cap, successfully throws the ball towards the goalpost and scores a goal.",0 50,v_fh21bbDSVmA,Can you describe the outfit the gymnast is wearing on the pommel horse?,v_fh21bbDSVmA_0,The gymnast is wearing blue track pants and a white vest with blue and red stripes.,0 51,v_wCexKIuAj3A,Can you describe the setup of the news studio?,v_wCexKIuAj3A_0,"There is a TV screen with the word 'Daybreak' behind the sofa, a white coffee table in the middle with coffee cups and a laptop, and five people seated on a sofa in a well-lit studio with a glass window at the back.",0 52,v_tF8Nv-QxbIU,Can you describe the color of the shoes that the man cleaned using the suede block and brush?,v_tF8Nv-QxbIU_0,The man cleaned a pair of red suede shoes and a dark blue suede high-heeled shoe.,0 53,v_vAHR3iJhBXU,Which nail did the woman apply pink polish to in the video?,v_vAHR3iJhBXU_0,The woman applied pink nail polish to her ring finger.,0 54,v_tC5eMgePakk,Can you describe the surroundings of the little girl playing the violin?,v_tC5eMgePakk_0,The girl is wearing a pink outfit and pink headdress while playing the violin in front of a tree by the shore of a lake during the daytime. The trees surrounding the lake are reflected in the water behind her. ,0 55,v_UtV69uNmzlE,Can you describe what the woman is doing with the razor?,v_UtV69uNmzlE_0,The woman is shaving her right leg with a razor and dips it into the toilet bowl during the process.,0 56,v_vMcXLYBcHsM,What is happening to the man in the orange t-shirt in the beginning of the video?,v_vMcXLYBcHsM_0,A woman wearing a hoodie gives the man in the orange t-shirt a haircut.,0 57,v_u7THn6D6y5w,Can you describe the setting in the gymnasium where the boy is practicing gymnastics?,v_u7THn6D6y5w_0,"The little boy is practicing on the armbar with his coach in a well-lit gymnasium full of sports equipment and blue mattresses laid on the floor. His coach is wearing a black T-shirt, black track pants, and black sports shoes and there are posters on the wall. Other children are also practicing in the gymnasium, and some are sitting on the boy’s right side. The video ends with his coach coming to the boy and waving both his hands.",0 58,v_yggwFa68Cp4,Can you describe the boy's attire while playing the bagpipes?,v_yggwFa68Cp4_0,"The boy is wearing a white shirt, a sleeveless black sweater, and brown pants while playing the bagpipes.",0 59,v_PwTwGnAVFhQ,Can you describe the woman's outfit in the video?,v_PwTwGnAVFhQ_0,The woman is wearing a pink top and black shorts while practicing stepping on and off an aerobics step in a well-lit studio with white walls and a wood floor.,0 60,v_QT4d1nTQYSE,Who is the man starting a live painting performance in the art studio?,v_QT4d1nTQYSE_0,The artist's name is Jonas Gerard.,0 61,v_Xmp_twSbkAg,Can you describe the room and the girl in detail in the video?,v_Xmp_twSbkAg_0,"The girl is wearing a black T-shirt and a pink full-sleeve top, and the room is well-lit with white walls, a brown door, a red curtain, some boards on the wall, a small blue table, a desktop, a photo, some books, stickers on the left wall, and a stuffed toy on the study table.",0 62,v_zDdD_qA86rg,Can you describe the outfit of the person climbing the hill?,v_zDdD_qA86rg_0,The climber is wearing a white t-shirt and has a rope attached to their utility belt.,0 63,v_tt-uDaZQWWc,Can you describe the woman getting her leg shaved in the video?,v_tt-uDaZQWWc_0,Another woman is having her leg shaved in the video while sitting beside the woman with yellow T-Shirt and multi-colored pajamas. ,0 64,v_r6l4mxphtX0,What is the woman doing in front of the mirror?,v_r6l4mxphtX0_0,The woman is applying makeup in front of the mirror.,0 65,v_Oskk7eLgerM,Can you describe how the man is interacting with the dog in the video?,v_Oskk7eLgerM_0,The man is giving the dog a bath using a handheld showerhead and soap. He then towels the dog dry and the video ends with a picture of the dog on a blue towel.,0 66,v_T35cHr4pjkc,Can you describe the man’s activity in the cafe?,v_T35cHr4pjkc_0,The man is drinking from a cup and later seen dancing in the cafe with another cup in his left hand.,0 67,v_Pr5K2Jh2X94,Can you describe the athlete’s outfit color?,v_Pr5K2Jh2X94_0,The athlete is wearing a red outfit.,0 68,v_YU-dUWGOoD4,Which gymnastics equipment does the man put his hands on?,v_YU-dUWGOoD4_0,The gymnast is getting ready to perform on a pommel horse.,0 69,v_zRqJZ0u6f88,Can you describe the man's outfit?,v_zRqJZ0u6f88_0,The man is wearing a red shirt and trousers along with a tool belt.,0 70,v_QY3q4DuiGq8,What is the girl doing inside the practice net?,v_QY3q4DuiGq8_0,The girl is participating in a discus throwing competition and is standing inside the practice net preparing to throw.,0 71,v_X9Y-b-SbkIU,What color are the shorts worn by the man playing squash?,v_X9Y-b-SbkIU_0,The woman is wearing a light green T-shirt and the man is wearing grey shorts.,0 72,v_uub0z8wJfhU,Did something happen while the man was playing the violin?,v_uub0z8wJfhU_0,"The man is interrupted while playing the violin, then continues playing until he stops and takes a bow.",0 73,v_X5kj4fZ38rc,Can you describe the appearance of the woman playing the violin?,v_X5kj4fZ38rc_0,"The woman is wearing a dark blue printed top while playing the violin in a well-lit room with white walls, books, photo frames, and a black table on her right side. There is a dining table set and a chandelier in the other room along with a kitchen having a fridge and a microwave with brown wooden shelves.",0 74,v_rGOOlcdpfLg,Can you describe the woman’s outfit in the video?,v_rGOOlcdpfLg_0,The woman is wearing a red and blue checkered shirt over a black top.,0 75,v_fMVuGUBs2cs,Can you describe the drink the bartender is making?,v_fMVuGUBs2cs_0,"The bartender in the video is making a Bloody Mary drink with ice, various ingredients, and garnish.",0 76,v_PSB1nM3QXxg,Can you describe the attire of the boys practicing martial arts?,v_PSB1nM3QXxg_0,The boys are wearing white martial arts uniforms.,0 77,v_TKgU9QJXw2w,Can you describe the accident that occurs during the racquetball game in the video?,v_TKgU9QJXw2w_0,"One of the boys accidentally hits another boy in the head while playing racquetball, causing him to fall to the ground and hold his head.",0 78,v_WAvz9zHwWo4,Where is the girl when she swings on the high bar?,v_WAvz9zHwWo4_0,The girl is participating in a gymnastics competition and she swings from a high bar.,0 79,v_uIcMgjypbqk,How does the video end with respect to the performance on the stage?,v_uIcMgjypbqk_0,The video ends with the audience applauding and the man walking off the stage.,0 80,v_vaV6_bxiTLI,Can you describe the clothing of the girl hopping on the ground?,v_vaV6_bxiTLI_0,The girl is wearing a white top and black shorts.,0 81,v_z-EPAHsmTMA,Can you describe the scene on the running TV?,v_z-EPAHsmTMA_0,"The advertisement on the TV shows a girl wearing white outfit applying white foam on her face with both hands, washing it off carefully with water later.",0 82,v_pJ3sECWr5Xg,Can you describe the attire the ballet dancers are wearing during the opening sequence of the video?,v_pJ3sECWr5Xg_0,The girl is wearing a white ballet dress and the other ballet dancers are wearing black dresses.,0 83,v_vI-O6QWIIGU,What does the man apply to his hands after he falls during his routine?,v_vI-O6QWIIGU_0,The man applies chalk to his hands after missing a hold in his routine.,0 84,v_XPiMnbCr-sc,Can you describe the gift-wrapping process shown in the video?,v_XPiMnbCr-sc_0,The woman uses the peach-colored cloth to gift-wrap a box by folding it and tying a knot. ,0 85,v_w_CXbraJr58,Can you describe what the man is doing in the walkway?,v_w_CXbraJr58_0,The man wearing a Scottish kilt and beret is playing the bagpipe in a walkway.,0 86,v_ZLJ2BmBkLJg,Did the man switch between trimmers during his grooming process?,v_ZLJ2BmBkLJg_0,The man used two different trimmers and switched between them during his grooming process.,0 87,v_Sf27WmcLb2w,Can you describe the person who serves the ball on the left side of the volleyball court?,v_Sf27WmcLb2w_0,A man wearing a black sleeveless t-shirt and red shorts starts the exchange on the volleyball court by serving the ball.,0 88,v_vSv1qMMt4Bk,Can you describe the location where Jocelyn Maminta is reporting from?,v_vSv1qMMt4Bk_0,Jocelyn Maminta is reporting from an outdoor location during the nighttime. There are cars parked behind her.,0 89,v_p9lhwYsBWdc,Can you describe the costumes the window cleaners are wearing?,v_p9lhwYsBWdc_0,The window cleaners are wearing costumes of the Hulk and Batman.,0 90,v_ZrSK-fisXGg,Can you describe what is happening in the video of the woman sitting on the chair in the store?,v_ZrSK-fisXGg_0,A woman in a store is getting her ears pierced by another woman wearing transparent gloves. The piercer uses an ear-piercing gun to attach a stud to the woman's earlobe and secures it from behind her ears. The video ends with close-up shots of the pierced ears.,0 91,v_p07Y--q4JQw,Can you describe the person who is wearing a camouflage pattern shirt and applying the clear solution to the woman's nails?,v_p07Y--q4JQw_0,The man wearing a camouflage pattern shirt is applying the clear solution to the woman's nails.,0 92,v_TsHek6oZYXU,What color Tai Chi uniform is worn by the man who is not the master?,v_TsHek6oZYXU_0,The master is wearing a black Tai Chi uniform and the other man is wearing a white Tai Chi uniform.,0 93,v_QN-4aLiDhiQ,What clothes is the girl wearing while getting a tattoo and what is the color of her shirt?,v_QN-4aLiDhiQ_0,The girl is wearing a blue shirt over a light blue top while getting the tattoo.,0 94,v_UGWOtDmIcns,Can you describe the attire of the person rock climbing?,v_UGWOtDmIcns_0,The man is wearing dark blue jeans and black & red shoes while rock climbing.,0 95,v_PNuJUYo3Hf8,Can you describe the attire of the man on the boat?,v_PNuJUYo3Hf8_0,The man on the boat is wearing a blue wetsuit and beanie.,0 96,v_TMAXjnsN0Mk,Can you describe the surroundings of the woman cleaning the Uggs?,v_TMAXjnsN0Mk_0,The room where the woman is cleaning the Uggs has pink walls.,0 97,v_skr8x0kUVwg,Can you describe the attire of the people seen in the video?,v_skr8x0kUVwg_0,The people in the video are wearing orange and red T-shirts.,0 98,v_YnjITZnk6OE,Can you describe the drills being performed by the players on the hockey rink?,v_YnjITZnk6OE_0,"The players on the hockey rink are wearing full gear and doing drills, which include running side to side, diving, and jumping through obstacles placed on the ground while holding a hockey stick in one hand and wearing hockey gloves in the other. There are brown buildings in the back with trees around them.",0 99,v_UNJTM62HyqQ,Can you describe the attire of the man standing behind the chef?,v_UNJTM62HyqQ_0,"The chef is wearing a white chef's coat, and the man standing behind him is wearing a red T-shirt.",0 100,v_SEVVSei-r6w,Can you describe what the man is doing with the hammer in the practice net?,v_SEVVSei-r6w_0,The man is holding a hammer with a handle attached to a string and he is practicing hammer throwing by swinging the hammer around him a few times before spinning and throwing it through the open end of the practice net.,0 101,v_UaO7bS5Ky6M,Can you describe what the woman is wearing while performing ballet in the theatre?,v_UaO7bS5Ky6M_0,"The woman is wearing a maroon top, black trousers, pointe shoes, and is performing ballet in a well-lit theatre with huge speakers mounted on both sides of the stage, and chandeliers and lights in the galleries.",0 102,v_wEehiYq9ttE,"While the man is cleaning her shoe, what is the woman doing?",v_wEehiYq9ttE_0,The woman is dancing as her shoe is being cleaned.,0 103,v_rklYNAAaI3Y,Can you describe the scene in the well-lit room with the woman and the boy?,v_rklYNAAaI3Y_0,The woman is washing clothes while the little boy tries to help her by pulling clothes from the bucket in the well-lit room.,0 104,v_ZVjLscGMOs8,Can you describe the clothing worn by the women while working out in the video?,v_ZVjLscGMOs8_0,The women are wearing white vests and track pants while working out on aerobics steps in a dimly lit studio with black floor.,0 105,v_z6pmp8TrAVo,Can you describe the kitchen and the man washing the plate?,v_z6pmp8TrAVo_0,"The man is wearing a grey T-shirt and glasses, and he is washing a plate in a well-lit kitchen with white walls. There is a refrigerator visible at the back, and a potted plant next to the sink.",0 106,v_vzUeFzhVYLg,Who is on the second level of the diving platform and what does she do?,v_vzUeFzhVYLg_0,The video starts with a woman on the second level of a diving platform in an indoor swimming pool with overhead lights. The woman runs to the edge and dives with a tuck and several turns into the pool.,0 107,v_wFVukrQfQhI,Can you describe the outfits and equipment used by the two girls while playing in the well-lit racquetball court?,v_wFVukrQfQhI_0,"The two girls are playing racquetball wearing white T-shirts and shorts, and both are wearing safety glasses while playing.",0 108,v_rOtmhurweqo,Can you describe what the old man is wearing?,v_rOtmhurweqo_0,The old man is wearing a white T-shirt and track pants.,0 109,v_RXT17X7lRoQ,Can you describe the uniforms of the girls on the lacrosse team during their games in the video?,v_RXT17X7lRoQ_0,The girls on the lacrosse team are wearing black and pink uniforms.,0 110,v_YOk1cMsyk88,Could you describe the skateboarder's outfit in the video?,v_YOk1cMsyk88_0,"The skateboarder is wearing a white t-shirt, a red cap, and a backpack.",0 111,v_qmHjHk0Hzz8,Can you describe the attire of the man when he begins the discus throw?,v_qmHjHk0Hzz8_0,The man is wearing black shorts and is shirtless during the discus throw.,0 112,v_rc-DiL5er28,Which team is wearing blue t-shirts and which team is wearing yellow t-shirts in the dodgeball game?,v_rc-DiL5er28_0,The dodgeball team on the right is wearing blue t-shirts while the team on the left is wearing yellow t-shirts.,0 113,v_fM5egP_1DvQ,Can you describe the clothing worn by the first participant who attempts the high jump in the competition?,v_fM5egP_1DvQ_0,"The first participant in the high jump competition wears a red and green vest, black shorts, and white sports shoes.",0 114,v_R_JKmGmURvA,Can you describe the process of making the cocktail?,v_R_JKmGmURvA_0,"The man used gin, other liquors, and fresh-squeezed lemon juice to make the cocktail. He mixed the ingredients in a cocktail mixer with ice, shook it, and poured it into cocktail glasses.",0 115,v_vIQPDP8jW8A,Can you describe the process of making the cocktail shown in the video by the bartender?,v_vIQPDP8jW8A_0,"The cocktail shown in the video is made using Bombay Sapphire Gin, St. Germain liquor, lemon juice, ginger syrup, elderflower syrup, slices of cucumber, egg whites, and ice cubes. The bartender crushes the cucumber using a wooden pestle, shakes the mixture with a cocktail mixer, and completes it by adding ice cubes and a slice of cucumber on a straw.",0 116,v_-pkfcMUIEMo,Can you describe what the man is doing with the shovel?,v_-pkfcMUIEMo_0,The man is wearing winter clothing and holding a snow shovel. He is demonstrating how to shovel snow by scooping and throwing it to the side.,0 117,v_VhdidrZKuTU,Can you describe the items the man adds onto the firewood before lighting it?,v_VhdidrZKuTU_0,The man sprinkles table salt and white pepper powder on the crumpled pieces of newspaper and firewood before lighting it.,0 118,v_W4mJsJGa0CY,Does the man experience any difficulty while performing on the pommel horse?,v_W4mJsJGa0CY_0,The man loses balance and slips to the floor during his routine.,0 119,v_TkhUtx0Eyfw,Can you describe the events in the opening scene of the video?,v_TkhUtx0Eyfw_0,A girl is getting her ears pierced by a technician in a well-lit store with jewelry and clothes in the back.,0 120,v_Q3ZNFGE8PZE,Can you describe the clothing of the boy who is dancing in the alley?,v_Q3ZNFGE8PZE_0,"The boy is wearing a sweater over a shirt, khaki trousers, white gloves, and a white cap.",0 121,v_QriYk3MKSnM,Can you describe the setting of the living room where the two girls are seen combing their hair?,v_QriYk3MKSnM_0,The two girls are seen combing their hair in a dimly lit living room with a shut window at the back.,0 122,v_x90zpDHTpjQ,Can you describe the location and attire of the man in the video?,v_x90zpDHTpjQ_0,"The man is wearing a white and black t-shirt, standing in a well-lit gym with wooden walls and windows at the top. He attempts to lift a barbell and eventually walks towards the camera to speak.",0 123,v_X4J9UBXb0FM,Can you describe what the athletes are competing in?,v_X4J9UBXb0FM_0,The video shows athletes participating in pole vaulting competitions during both day and night.,0 124,v_zXHyFBrj5Ag,Can you describe the clothes worn by the man ironing in the video?,v_zXHyFBrj5Ag_0,"The man in the video is wearing a striped blue and black t-shirt and shorts, and is ironing a blue and white Hawaiian shirt on an ironing board in a room with visible clothing behind him.",0 125,v_PwRqqR1YmPM,Can you describe the event in the video?,v_PwRqqR1YmPM_0,"The video shows athletes competing in a pole vaulting competition in a track field during the daytime, with replays and observers using binoculars.",0 126,v_peiF2E05u8g,Can you describe what the girl did during her visit to the mall?,v_peiF2E05u8g_0,"The girl browsed makeup at a shop, got her makeup done at the salon, got her nails painted, and spoke to the camera at various locations including outside the mall and near an escalator.",0 127,v_GChGC-VJZHs,Can you describe the scene of the video?,v_GChGC-VJZHs_0,The video shows dirtbikes performing stunts and jumps on a dirt bike track in a forest. The motorcyclists are equipped with off-road gear and helmets.,0 128,v_Ur_ToogEkCA,Can you describe the volleyball game occurring in the video?,v_Ur_ToogEkCA_0,"In the video, people are playing volleyball during the daytime with thick clouds visible in the sky. There is a woman wearing a blue vest over a red top on the sideline. The game continues with players passing the ball to each other until it ends and a few people enter the frame.",0 129,v_YAKXrBinGD4,Can you describe the various boats shown in the video?,v_YAKXrBinGD4_0,"The video shows a houseboat, a jet-ski, a motorboat, and several kayak boats under a shed.",0 130,v_qU4GmCN2e1Y,Can you describe the clothing worn by the man performing on the parallel bars?,v_qU4GmCN2e1Y_0,The man performing on the parallel bars is wearing a dark blue vest and pants.,0 131,v_FqYhC6_CMfI,Can you describe what the man is wearing while windsurfing?,v_FqYhC6_CMfI_0,The man is wearing a dark blue vest and white shorts while windsurfing.,0 132,v_s9PkkDEl6aY,What is the color of the walls in the basketball court where the Zumba class is being conducted?,v_s9PkkDEl6aY_0,"The court floor is blue, and the walls are white and brown.",0 133,v_ROrLMf0zXko,Can you describe the scene on the street during the daytime in the video?,v_ROrLMf0zXko_0,"On the street during the daytime, there are people standing around a black and white mat as a man in a white outfit is breakdancing. Stores are also lining the sidewalk.",0 134,v_W6fPv5eoXC4,Can you describe the appearance of the man on the tennis court?,v_W6fPv5eoXC4_0,The man is wearing a grey sleeveless shirt and blue shorts on the tennis field.,0 135,v_zB8knKX0W8Q,Can you describe the store at the beginning of the video?,v_zB8knKX0W8Q_0,The video begins with a projecting antique store sign.,0 136,v_OlykXdYeQOI,Can you describe the tools used by the barber to cut the boy’s hair?,v_OlykXdYeQOI_0,The barber is using scissors and a trimmer to cut the boy’s hair.,0 137,v_PdwWFueQErM,Was the man wearing a black sweater and jeans when he was shoveling snow?,v_PdwWFueQErM_0,The man was shoveling snow in the daytime and he was wearing a black sweater and jeans.,0 138,v_TZOhIMjwEE8,Can you describe the lawn-mowing outfit of the woman in the video?,v_TZOhIMjwEE8_0,"The woman is wearing a white vest, grey trousers, and white sports shoes while lawn-mowing.",0 139,v_GH0Umpw6tME,What kind of equipment are the women using in the workout?,v_GH0Umpw6tME_0,The group of women is doing an aerobic workout using aerobic steps.,0 140,v_UvOEuhS0V3E,Can you describe the location and activity of the man in the next clip?,v_UvOEuhS0V3E_0,"The woman in the first clip is wearing a white top and applying lipstick in a well-lit room in front of a mirror. The man in the next clip is sitting in front of the same mirror, wearing an olive T-shirt. He removes something from a box and wipes them on his eyebrows one at a time, before eating them.",0 141,v_ZY0cdXr_1MA,Can you describe what the dancer is doing in the opening scene before the stage performance?,v_ZY0cdXr_1MA_0,The video starts with a woman doing ballet in a white room with sunlight streaming from the right.,0 142,v_QOaPQpXemCA,Can you describe the opening scene of the video?,v_QOaPQpXemCA_0,The video starts with a graphic of a web address for mDhil.com.,0 143,v_ZK4Y6nOton8,What game are they playing in the well-lit venue?,v_ZK4Y6nOton8_0,They are playing badminton in the well-lit venue.,0 144,v_uCvjzcVCtEs,Can you describe what the male athlete is wearing in the video?,v_uCvjzcVCtEs_0,"The male athlete is wearing a blue vest, black shorts, and red sports shoes.",0 145,v_zoWqv-sIdBY,Can you describe the setting of the video and the people in it?,v_zoWqv-sIdBY_0,"The boy's name is Ivan and he is sitting in a well-lit bedroom in front of a table with a computer on it. He is having his hair combed by Oscar, who is standing behind him.",0 146,v_qmfZw9eEpIU,Can you describe the windsurfing board the man is surfing on?,v_qmfZw9eEpIU_0,The man is windsurfing on a red board with an attached sail.,0 147,v_tLk0Y04OaCA,Can you describe the two people present with the girl wearing the blue shirt?,v_tLk0Y04OaCA_0,"The girl wearing the blue shirt is standing next to a person wearing a grey sweatshirt, and another person wearing a red top is visible in the mirror, holding up a phone and recording.",0 148,v_VWGV8I5byKI,What does the man do with the barbell and weights in the gym?,v_VWGV8I5byKI_0,The man picks up a barbell with weights stacked on either end and lifts it once before dropping it to the ground.,0 149,v_sNJ6_N0j9Ts,Can you describe the attire of the players on the well-lit squash court?,v_sNJ6_N0j9Ts_0,The men are wearing shorts and sports shoes.,0 150,v_t13MQSYjlas,What equipment is the man using to practice inside the throwing circle?,v_t13MQSYjlas_0,The man is holding a hammer connected to a handle while practicing inside the throwing circle.,0 151,v_syfyM1Pble8,Can you describe the woman who walks away from the exercise bikes?,v_syfyM1Pble8_0,The woman who walks away from the exercise bikes is wearing a grey T-shirt.,0 152,v_u0A5NIUKEQo,Can you describe the scene in the mall with the two boys?,v_u0A5NIUKEQo_0,"The two boys are dressed as Santa and an Elf and are dancing in the mall. They do backflips, twists, and turns on the floor.",0 153,v_-vnSFKJNB94,Can you describe the diving maneuvers performed in the video?,v_-vnSFKJNB94_0,"The video shows a man named Michal Navratil performing various diving maneuvers including tucks, twists, forwards dives, etc. in an indoor swimming pool with people visible walking around. He ends the video by doing a forward tuck dive.",0 154,v_Ws12Dt0Ny5Q,Can you describe what the female athlete is wearing in the stadium?,v_Ws12Dt0Ny5Q_0,"The female athlete in the stadium is wearing a red crop top, red bikini bottoms, and red sports shoes.",0 155,v_tY9dmG6IyPo,Can you describe the event the woman athlete is participating in?,v_tY9dmG6IyPo_0,The woman athlete is participating in a hammer throwing competition in a stadium with spectators.,0 156,v_wJk3KOUAwXA,Can you describe the activities performed by the man in the woodworking shop?,v_wJk3KOUAwXA_0,"The man is waxing and polishing a wooden table using steel wool, a car buffing wheel, and a wet rag.",0 157,v_wh4JNeQh9FQ,Can you describe the scene of the woman getting a tattoo on her ear?,v_wh4JNeQh9FQ_0,The woman is wearing a black shirt and lying on a retractable bed with a white sheet in a well-lit parlor while getting a tattoo on her earlobe using a tattoo gun. The technician first cleans her ear and then marks the spot before the tattoo artist begins.,0 158,v_WdJUMmy2ox8,Can you describe the appearance and position of the men in the video?,v_WdJUMmy2ox8_0,"The man on the left is wearing a black shirt and jeans, while the man on the right is wearing a cap and a red sweater. They are seated on a sofa.",0 159,v_ooFuSspUuVY,Can you describe what the girl is wearing on her head while riding the horse in the video?,v_ooFuSspUuVY_0,The girl is wearing a white helmet while riding the horse in the video.,0 160,v_tXUssW4vT3o,Can you describe the attire of the belly dancer?,v_tXUssW4vT3o_0,The belly dancer is wearing a sparkling turquoise-colored dress.,0 161,v_TGIQtaINzCY,Can you describe the gym setup and exercise equipment being used in the video?,v_TGIQtaINzCY_0,"The video shows a cycling class with people on exercise bikes in a well-lit gym with white walls and a grey floor. The instructor is a woman wearing a black t-shirt and a mic in her ear who is calling out instructions, and a man is seen moving a display tower into the class to demonstrate changing the resistance on the exercise bike.",0 162,v_ZUl43hNzGjA,Can you describe the practice session at the ballet studio?,v_ZUl43hNzGjA_0,The students are practicing ballet at the studio with a teacher wearing a white t-shirt and pants.,0 163,v_sBwUwgTjhAU,What does the woman do before walking away in the video?,v_sBwUwgTjhAU_0,The woman is wearing a sweater over her red outfit and looks into the camera before walking away.,0 164,v_WCS8dzRT7Xk,Can you describe the setting of the video and the woman?,v_WCS8dzRT7Xk_0,The woman is wearing a grey shirt and standing behind an ironing board in a well-lit room with a wood wall behind her.,0 165,v_wjr5M-6qEWI,Can you describe the seating arrangement in the arena?,v_wjr5M-6qEWI_0,"The referee is sitting behind a table at the edge of the court, and there are seats for spectators near the walls.",0 166,v_GOF5guH_kuI,Can you describe the costume the female gymnast is wearing while performing on the balance beam?,v_GOF5guH_kuI_0,The female gymnast is wearing a sparkling red costume while performing on the balance beam.,0 167,v_uqwf903l5-E,Can you describe the uniforms of the cheerleading group in the video?,v_uqwf903l5-E_0,The cheerleaders in the video are wearing blue uniforms with white shoes.,0 168,v_zxr6UZKPDh4,Can you describe the clothing the kayakers are wearing?,v_zxr6UZKPDh4_0,The kayakers are wearing red and blue life vests over their shirts while kayaking down the river.,0 169,v_SNJgJB2PGdI,Can you describe the accessory the woman is wearing on her head as she dances?,v_SNJgJB2PGdI_0,The woman is dancing with a candelabra on her head.,0 170,v_Zhx6BYVb64g,Can you describe what the boy does after the girl leaves?,v_Zhx6BYVb64g_0,"The boy gets up and leaves, and he is later shown knocking on a door and handing a stuffed animal to a girl.",0 171,v_oncTwYfvCD8,Can you describe the scenes that are displayed in the video?,v_oncTwYfvCD8_0,"The video depicts a man demonstrating various martial arts movements in different locations, such as indoors, outdoors, in front of an audience, and in a well-lit studio.",0 172,v_yttmx8mcjGw,Can you describe the scenes shown in the video?,v_yttmx8mcjGw_0,"The video shows various cricket games being played, including professional matches played in stadiums as well as games played by people at homes and beaches. The video also shows a man rolling up a carpet and a woman in a yellow t-shirt getting ready to bat with others around her fielding or watching. The video ends with a child standing near the cricket stumps and getting ready to bat.",0 173,v_wcxEkMoOmBk,Can you describe the opening scene of the video?,v_wcxEkMoOmBk_0,"Julie, wearing a green sweater, is introduced first in the video while speaking to the camera in a well-lit hair salon, with a round table-top swivel mirror next to her and another woman seated next to her.",0 174,v_zEttEkAdHts,Can you describe the items shown at the start of the video?,v_zEttEkAdHts_0,The video begins with rolls of gift wrappers stacked on top of each other and a stack of one US dollar notes placed on a white surface with text displayed above and below it.,0 175,v_z3MP0yJBtGg,Can you describe the woman and her surroundings?,v_z3MP0yJBtGg_0,"The woman is wearing a black hoodie and jeans skirt and standing in front of a stone dipper well with ladles. There is water in a tank at the top of the dipper. She is standing on a stone floor with a roof. Pillars are visible some distance to her left. A yard is visible outside the structure, with a fence at the end. A tree is visible to the left of the yard.",0 176,v_Omvg9UtGOes,Can you describe the cloth used to cover the box in the video?,v_Omvg9UtGOes_0,The cloth used to wrap the box is pink on the inside and green on the outside.,0 177,v_oni9K1_MCuw,Can you describe the dance performance in the ballroom?,v_oni9K1_MCuw_0,A man and a woman waltz and perform various steps in a ballroom as an orchestra plays music.,0 178,v_Rn6_IwckXg4,Can you describe the activity of people in the video?,v_Rn6_IwckXg4_0,The people in the video are smoking e-cigarettes.,0 179,v_TNqc2yWZztE,Can you describe the process shown in the video?,v_TNqc2yWZztE_0,"In the video, a woman is gift-wrapping boxes using gift-wrapping paper and tape.",0 180,v_UNXLfqkwKFc,Can you describe what the man is wearing?,v_UNXLfqkwKFc_0,The man in the video is wearing blue shorts.,0 181,v_W9H2qVnIWXs,Can you describe the dog that is being bathed in the video?,v_W9H2qVnIWXs_0,A golden retriever is being bathed in the video.,0 182,v_ZxPF3s_OLDo,Could you describe the man's outfit when he is climbing?,v_ZxPF3s_OLDo_0,The man is wearing a red t-shirt and a belt with a chalk pouch on it.,0 183,v_Mf3IyeMF8ug,What color is the folded cloth on the table and how does the woman use it to wrap the gift?,v_Mf3IyeMF8ug_0,The woman uses an orange gift wrap to wrap the box and a folded green cloth to tie a knot around it.,0 184,v_mNiFmkm5OZA,How does the man use the glass filled with beer after smoking from the pipe?,v_mNiFmkm5OZA_0,"The man blows smoke rings and then blows smoke into the glass filled with beer, before drinking from it.",0 185,v_MbjyQGdTtK8,Can you describe the steps of making the furniture polish in the video?,v_MbjyQGdTtK8_0,"The woman is demonstrating how to make furniture polish by mixing olive oil and lemon juice in a spray bottle, shaking it, and then applying it to the surface of a table.",0 186,v_Gvc1z9qypFQ,Can you describe the jerseys worn by the two teams playing hockey?,v_Gvc1z9qypFQ_0,"One team is wearing maroon jerseys with black shorts and numbers on the back, while the other team is wearing red jerseys with black shorts and numbers on the back.",0 187,v_ObrXN_FjVD8,Could you describe the scene on the sailboat?,v_ObrXN_FjVD8_0,A man in blue t-shirt and glasses is cranking a lever on a sailboat in the sea. The sailboat with maroon sails can be seen sailing in the open sea with cloudy sky. The boat is tilted to one side.,0 188,v_N75m1Z4RqbA,What do the man and woman wear when they dance?,v_N75m1Z4RqbA_0,"The man is wearing a black shirt and pants, while the woman is dressed in a black outfit.",0 189,v_Ocid5pcnSVY,Can you describe the moves performed by the women in their dance?,v_Ocid5pcnSVY_0,"The women are performing a contemporary ballet with hops, turns, and some synchronized moves.",0 190,v_MxvKscpouzY,Can you describe what the players are wearing during the table tennis match at the beginning of the video?,v_MxvKscpouzY_0,"The player on the near side is wearing a red t-shirt, while the player on the far end is wearing a blue t-shirt and shorts.",0 191,v_LzPppxSWYNY,What activity can be seen in the track field during the daytime?,v_LzPppxSWYNY_0,The woman is participating in a long jump competition in the track field during the daytime.,0 192,v_mMebSMn5D0E,What do the man and woman do at the piano store?,v_mMebSMn5D0E_0,"The man and woman go to a piano store. The man plays the piano while the woman stands next to him. Later, they move to another piano. In the closed restaurant, a woman wearing a white robe comes to stand near the man. At an orchestra, a man in a brown jacket is watching the orchestra. He later walks towards the stage and gestures like a conductor.",0 193,v_FzqZsQx20jY,Can you describe the outfit worn by the female gymnast on the balance beam?,v_FzqZsQx20jY_0,The female gymnast on the balance beam is wearing a sparkling dark green and white costume.,0 194,v_-nl4G-00PtA,Can you describe the activity of the man in the video?,v_-nl4G-00PtA_0,The man is washing dishes in a kitchen sink.,0 195,v_NvRH4SoF09c,Could you describe what you see in the meadow with the man playing the flute?,v_NvRH4SoF09c_0,"The man is wearing a black shirt, pants and glasses while playing a flute in a meadow with yellow flowered bushes to his right. The sky is cloudy and there is a dirt path stretching up the incline behind him.",0 196,v_MidLOhRnpnU,How do the men react after hearing the message from the lighter?,v_MidLOhRnpnU_0,The men step away from the electric lighter after hearing the message.,0 197,v_N5LZMH9mZVU,Can you describe the cheerleading routine performed by the all-female squad in the arena?,v_N5LZMH9mZVU_0,"The all-female cheerleading squad performs a routine that includes flips, somersaults, basket tosses, and stunts involving fliers, with spotters present near each base. They also perform a dance routine and end by posing lifted up by the bases.",0 198,v_oD8sGLt2FR0,Is it during the day or at night when the boy is shoveling snow in the driveway?,v_oD8sGLt2FR0_0,"The boy is seen shirtless, shoveling snow in a driveway during the daytime.",0 199,v_N1_pNhVqG20,Can you describe the stunts the surfer performs on his board?,v_N1_pNhVqG20_0,"The surfer is windsurfing and performing flips, maneuvers, and jumps, including a one-handed burner where he pushes the sail down and jump-twists on his board.",0 200,v_LuH7I7Rxju8,Why did the laptop fall?,v_LuH7I7Rxju8_0,The man kicked the laptop while breakdancing causing it to fall.,0 201,v_NojaHuKBagQ,Can you describe how the man is cleaning the shoes in the video?,v_NojaHuKBagQ_0,The man is using an adhesive eraser to clean the bottom edges and front of the blue and white Nike shoes he is holding in the video.,0 202,v_Mk7Yjq1U8OI,Can you describe the setting of the official warm-up?,v_Mk7Yjq1U8OI_0,The women are doing an official warm-up on a sandy beach volleyball court.,0 203,v_F9mk2Dn2tFw,Can you describe the attire of the children playing in the video?,v_F9mk2Dn2tFw_0,"The children in the video are wearing white, black, pink, and blue clothing.",0 204,v_o5F7X-UBETE,Can you describe the weightlifting competition shown in the video?,v_o5F7X-UBETE_0,The video shows a weightlifting competition with athletes from different countries lifting barbells and dropping them on the ground. The competition is well-lit and there are judges sitting behind desks observing the athletes.,0 205,v_mShp2gzuPOM,Can you describe the surroundings of the girl playing badminton in the video?,v_mShp2gzuPOM_0,"The video shows a girl playing badminton in a gym with people standing at the edges, a woman taking pictures near the netting, a scoreboard at the top of the wall, an American flag hung vertically, and retracted bleachers to the left.",0 206,v_meNgZdu8tIk,Can you describe the ingredients used in the sandwich being prepared in the video?,v_meNgZdu8tIk_0,"The sandwich being prepared in the video has boiled potatoes, chopped onions, sliced tomatoes, cheese, bell pepper, butter, and green chutney as its ingredients.",0 207,v_ERYwCKVUTSQ,Can you describe the woman and her surroundings as she plays the saxophone?,v_ERYwCKVUTSQ_0,"The woman is wearing a black shirt and black pants while holding a saxophone in a well-lit room with blue and white walls. There is a music stand with sheet music at the back and to her right, a wooden chair to her left and back, and a whiteboard fixed on the back wall.",0 208,v_myGBEXiYGOU,Can you describe what the woman is painting?,v_myGBEXiYGOU_0,The woman is painting a peacock.,0 209,v_ltlJ2sOx4as,On the banks of which river in Mongolia are the riders in the video located?,v_ltlJ2sOx4as_0,The riders in the video are located on the banks of the Terelj River in Mongolia.,0 210,v_nywOe9C3ajM,Can you describe the activities taking place in the salon?,v_nywOe9C3ajM_0,"The girl is getting her hair cut, eyebrows shaped, and sitting in a chair with hair clips, while another woman under a hooded hair dryer reads a magazine.",0 211,v_mLFjww64sX8,Where is the barber standing in relation to the customer?,v_mLFjww64sX8_0,The barber is using a blade on the customer's head while standing on the left of the customer.,0 212,v_nDHupsLdar0,Can you describe the background of the man playing the harmonica?,v_nDHupsLdar0_0,The wall behind the man is cream-colored and there is a lamp visible at his back.,0 213,v_lSVj34-DR0o,Who is the person introduced in the video with a name graphic?,v_lSVj34-DR0o_0,The name of the diver is Thomas Daley and he executes several dives with multiple backward somersaults.,0 214,v_lU6DMCif3eE,Can you describe the environment in which the man is playing the bagpipe?,v_lU6DMCif3eE_0,The man is wearing a black T-shirt and playing the bagpipe in a dimly lit room with posters featuring text and art.,0 215,v_gmbC7D6HfuM,Can you describe what the man is wearing while dancing?,v_gmbC7D6HfuM_0,"The man is wearing a turquoise T-shirt, blue jeans, and white shoes while dancing with the woman wearing a black top and blue jeans with black shoes.",0 216,v_MWQ9mb_mB8U,Can you describe the clothing worn by the women standing on the volleyball court?,v_MWQ9mb_mB8U_0,The women on the volleyball court are wearing white tops with numbers on them.,0 217,v_mMm1LfVb8Pg,What is the woman wearing while operating the lawn mower?,v_mMm1LfVb8Pg_0,The woman is wearing a green T-shirt.,0 218,v_Nvf-BZNEGdI,Can you describe the scene around the boy?,v_Nvf-BZNEGdI_0,"The people around the boy are standing and wearing roller skates, and the skating rink has a well-lit polished wood floor.",0 219,v_-MbZ-W0AbN0,Can you describe the appearance of the man in the video?,v_-MbZ-W0AbN0_0,The man is wearing a white lab coat in the video.,0 220,v_mY7QdIn51S8,Which team is batting in the cricket match shown at the start of the video?,v_mY7QdIn51S8_0,Pakistan is batting in the cricket match shown at the beginning of the video.,0 221,v_nI6l7BP0odw,Can you describe what the man is doing?,v_nI6l7BP0odw_0,The man wearing a Scottish kilt is playing the bagpipe.,0 222,v_NwlIZ1T93xE,Can you describe the attire of the shoe shiner?,v_NwlIZ1T93xE_0,The shoe shiner is wearing a t-shirt and a hat while buffing the customer's shoe.,0 223,v_Ntyl5alZXeM,Can you describe what the woman with gloves and a dark blue top is doing to the girl in the chair?,v_Ntyl5alZXeM_0,The girl in the pink top is getting her ear pierced by a woman wearing gloves and a dark blue top in a well-lit shop.,0 224,v_N4qhryre_TE,Can you describe the event the athletes are participating in?,v_N4qhryre_TE_0,The athletes are participating in an indoor tumbling competition.,0 225,v_MgjxjBxGrQU,Can you describe the scene and activity of the three men in the video?,v_MgjxjBxGrQU_0,"The three men in the video are dressed as characters from the Mario Bros game, smoking hookah, dancing, and interacting with each other in a well-lit room with a yellow sheet backdrop and a man with a guitar poster on the wall.",0 226,v_LvaU_4xbxb0,Can you describe the attire of the two girls boxing in the gym?,v_LvaU_4xbxb0_0,One of the girls is wearing a black vest and the other is wearing a grey t-shirt while boxing in the well-lit gym.,0 227,v_nTY4IaGRFIc,Can you describe the activity of the people in the swimming pool?,v_nTY4IaGRFIc_0,The people in the swimming pool are playing water polo.,0 228,v_QG2xYcN_bl0,Can you describe the drill the boy is practicing on the basketball court?,v_QG2xYcN_bl0_0,The boy is doing a crisscrossing drill with orange agility cones on a basketball court.,0 229,v_Lshue6AmrIw,Can you describe the outfit of the little girl and the boy in the mall?,v_Lshue6AmrIw_0,The little girl is wearing a black outfit and the little boy is wearing a green shirt while they are sitting on a shoe-shine chair at a shoe-shine station in a well-lit mall with a store visible behind them.,0 230,v_eS-VU_XV1K8,Can you describe the outfit worn by the instructor?,v_eS-VU_XV1K8_0,"The instructor is wearing a pink top, black track pants, and sports shoes.",0 231,v_NM7Vye5nxj8,Does the boy successfully clear the bar during his jump?,v_NM7Vye5nxj8_0,Both the boy and the man successfully clear the bar during their jumps.,0 232,v_ghxiG0Dnrt0,Can you describe the appearance of the woman cleaning the sink?,v_ghxiG0Dnrt0_0,The woman is wearing a black apron over a T-shirt and jeans.,0 233,v_hFi6S_guB7I,How do the women start their dance performance?,v_hFi6S_guB7I_0,The women start by entering the stage from the right and facing away from the audience with their right hands up.,0 234,v_18yZR3NDaXM,Can you describe the game being played in the video?,v_18yZR3NDaXM_0,The video shows people playing kickball on a field.,0 235,v_BjjN_aq_wq4,Can you describe the scene in the kitchen sink that is being shown in the video?,v_BjjN_aq_wq4_0,The woman and the young girl are washing dishes with soap in the kitchen sink.,0 236,v_DJTvj9lfSWU,Can you describe the grooming process of the man's leg on the roof?,v_DJTvj9lfSWU_0,The man is cleaning and shaving his right leg with a razor blade on the rooftop while a woman stands beside him holding a microphone.,0 237,v_0BtHd6dvm78,Can you describe the outfit of the man who is standing in the kitchen and washing dishes?,v_0BtHd6dvm78_0,The man is wearing glasses and a white hoodie while washing dishes in the kitchen.,0 238,v_dKJMP8EmZjw,Can you describe the sails and color of the dinghy that sailors are shown maneuvering?,v_dKJMP8EmZjw_0,"The dinghy shown after the man in the red wetsuit has red and white sails, and the other dinghies have white sails.",0 239,v_kGdxtU3NwWo,Can you describe the man's attire while polishing his shoes?,v_kGdxtU3NwWo_0,The man is wearing a dress shirt and has a shoe placed on a black desk mat. He polishes the shoe with a piece of cloth after applying a clear liquid and shoe polish from a tin and glass vile visible on the mat.,0 240,v_b4xvXZq5uD8,Can you describe the ending of the video?,v_b4xvXZq5uD8_0,A man wearing a black coat brings out a chocolate cake at the end of the video and the others sing while the man getting the haircut gets his face smeared with chocolate cake.,0 241,v_aLb79wtvxoQ,Can you describe the sink seen in the video?,v_aLb79wtvxoQ_0,The sink in the video is mint green and has two basins.,0 242,v_KlgrI3Ngwv0,Can you describe the beginning of the athlete’s routine in the video?,v_KlgrI3Ngwv0_0,"At the beginning of the video, the athlete is standing by a pommel horse, wearing a blue outfit, and getting ready to start an artistic gymnastics routine.",0 243,v_jN-jnIgzd6k,Can you describe the drills being performed by the children?,v_jN-jnIgzd6k_0,"The children in the video are doing karate drills, including different stances, punch and kick drills, and forward and backward movements.",0 244,v_araMJB23T1s,"As the boy jumps from the bungee platform, what comes into view?",v_araMJB23T1s_0,"When the boy jumps, a stream is visible at the bottom.",0 245,v_dW6OZV43ulU,Can you describe the process of cleaning the leather sofa?,v_dW6OZV43ulU_0,"The process of cleaning the leather sofa involves spraying foam cleaner on the brush and cleaning the couch, then degreasing the damaged areas by spraying some cleaner on a towel and wiping the surface of the sofa, sanding rough surfaces using a scrub pad, using color refresh liquid and wiping the couch with a piece of sponge, drying the surface of the sofa with a hair drier, and applying UV protection liquid on the sofa.",0 246,v_JcAAwYpJhm8,Can you describe the dishwashing activity of the little girl in the kitchen?,v_JcAAwYpJhm8_0,"The little girl is washing dishes in the kitchen sink, including a glass, a spoon, a pot, a plate with Dora the Explorer on it, and a plastic jar.",0 247,v_aYxni8ohTfU,Can you describe the teams playing in the volleyball match?,v_aYxni8ohTfU_0,"Italy and Latvia are playing against each other, with Italy wearing blue vests and Latvia wearing red vests.",0 248,v_6Xsfwn5M6qs,Are there other people visible in the video besides the man on the parallel bar?,v_6Xsfwn5M6qs_0,"Yes, two people are visible in the background - one wearing a green shirt and the other in white sportswear.",0 249,v_CecqF_uHeOI,"In the video, what kind of wipers does the man use to clean the glass door?",v_CecqF_uHeOI_0,The man is wearing a dark blue shirt and khaki pants and uses a larger and smaller wiper to clean the glass door.,0 250,v_7-taNK5mW8E,Can you describe the incident that occurs as the ball comes near the front player?,v_7-taNK5mW8E_0,The front player is pushed into the pool from behind just as the ball lands close to her.,0 251,v_IcR28Yqt4mY,Can you describe what the men were doing when the video started?,v_IcR28Yqt4mY_0,"The men were preparing for a wood-chopping competition, holding axes and standing on blocks of wood.",0 252,v_B3xMfP_UOt4,Can you describe the clothes of the man who begins the high jump?,v_B3xMfP_UOt4_0,The man is wearing a green fluorescent vest with the name tag 'UKHOV'.,0 253,v_4XnXyKYxnQQ,Can you describe the position of the ship in the video?,v_4XnXyKYxnQQ_0,The ship is dangerously tilted left and appears to be about to capsize in the daytime sea. ,0 254,v_hq48S65dlyo,Can you describe the activities performed by the people in the video?,v_hq48S65dlyo_0,The video shows a boxing workout where a woman punches punch mitts and kicks pads while a man punches punch mitts and kicks pads.,0 255,v_gWbIoFrpwTY,Can you describe the opening scene in the video featuring the little boy?,v_gWbIoFrpwTY_0,"The little boy is standing in a parking lot holding a juice box, wearing a black t-shirt, with a white van and two skateboards visible in the background.",0 256,v_eoSwoeLmeyQ,What is the color of the illumination on the portion of the floor where people are dancing?,v_eoSwoeLmeyQ_0,The lights shining on the dance floor are not described in the given details.,0 257,v_1d_U_2HIPmY,What is the man doing with the hammer attached to a grip by a cable?,v_1d_U_2HIPmY_0,The man is swinging a hammer attached to a grip by a cable while standing on a circular platform inside a cage.,0 258,v_Hz7-mBFGsSs,Can you describe what is going on in the salon with the crying girl?,v_Hz7-mBFGsSs_0,The girl is getting her hair cut in the salon while crying.,0 259,v_B_U7vUtoCKY,Which player wearing a white jersey is focused on in the video as he attempts to check the ball?,v_B_U7vUtoCKY_0,"Cole Flowler, wearing a white jersey, is the focus of the video as he attempts to check the ball from the opposing team.",0 260,v_7pfHxav4b0U,Can you describe what the woman is wearing and what she is doing in the river?,v_7pfHxav4b0U_0,The woman is rowing an orange kayak down a rapid river while wearing a life vest and white helmet.,0 261,v_htzAYwoAZkg,"Can you describe the woman, the man, and the resistance trainer present in the gym during the video?",v_htzAYwoAZkg_0,"The man is wearing a black polo shirt, speaking to the camera in the gym, while the woman is standing next to him; they are both behind a resistance trainer in the well-lit gym. The woman climbs onto the resistance trainer, starts pedaling, and adjusts the instrument cluster settings, while the man continues speaking into the camera.",0 262,v_ijrjRNwZjqQ,Can you describe the game that Kevin Spacey and Rafael Nadal play on stage?,v_ijrjRNwZjqQ_0,Kevin Spacey and Rafael Nadal play ping pong on stage.,0 263,v_IhmtmKxEU40,Can you describe the wetsuit worn by the boy seen windsurfing?,v_IhmtmKxEU40_0,The boy seen windsurfing is wearing an orange and black wetsuit.,0 264,v_3zpODTqnYLs,Can you describe the actions of the toddler in the video?,v_3zpODTqnYLs_0,The toddler is washing her face with pool water multiple times while sitting on the pool wall while the man holds onto her.,0 265,v_1KONAdZGdWU,Can you describe the girl's activity in the video?,v_1KONAdZGdWU_0,The girl is shaving her left leg while occasionally talking to the camera person and others in the room.,0 266,v_DIhyfNJAm-M,Can you describe the stage set up for the saxophonist performance?,v_DIhyfNJAm-M_0,"The performer is wearing a black suit and white shirt, playing his saxophone on a stage with red floors, blue curtains and a staircase in front. The audience can be seen sitting a few feet from the staircase, while backing musicians play various instruments behind the saxophonist. A music stand with transparent top is placed next to the saxophonist, and the video ends with the audience applauding.",0 267,v_K6QunmuTZOQ,Can you describe the surroundings of the woman in the video and what she is wearing?,v_K6QunmuTZOQ_0,"The woman is wearing a grey t-shirt and black track pants, standing in a small gym with other exercise equipment around her. Sunlight is streaming from an open door in front of her. ",0 268,v_l7qSKJyq6mA,Can you describe the clothes worn by the man who is ironing the dress shirt?,v_l7qSKJyq6mA_0,The man is wearing a black sweater vest over a grey shirt while ironing the dress shirt.,0 269,v_2VZumBKJuPs,Can you describe the process shown in the video?,v_2VZumBKJuPs_0,"In the video, a man is piercing the woman's belly button with a needle piercer, and inserting a jewelry before securing it with a ball. The studio is well-lit and the man has black gloves on. Both of his hands are tattooed and the woman can be seen speaking to the person holding the camera",0 270,v_7EeO9V2B574,Can you describe the scene of the video with women dancing?,v_7EeO9V2B574_0,The women were dancing synchronously on the grass under the shadow of a tree to music.,0 271,v_IgDBDaIoNAM,Can you describe the attire of the man and the woman in the video?,v_IgDBDaIoNAM_0,The man and woman are dressed like characters from the Street Fighter game.,0 272,v_325CAs4hhq8,Can you describe the game played by the players in orange uniforms on the field?,v_325CAs4hhq8_0,The players in orange uniforms are playing field hockey.,0 273,v_CTJej0rZMiI,Can you mention the details of the accordion player and his environment?,v_CTJej0rZMiI_0,The man is wearing a grey shirt and is sitting in a dimly lit room with an accordion strapped to him. He is sitting next to a wall with a bookshelf behind him and a door frame visible to his right. There are framed Spanish sayings hung on the wall to his side and behind him. He briefly speaks before starting to play the accordion.,0 274,v_CTyvQHkAKuY,Can you describe the scene when the woman is singing in the video?,v_CTyvQHkAKuY_0,The woman starts to sing while the man is playing the piano.,0 275,v_3M290KZV5lo,Can you describe the gymnasium in the video?,v_3M290KZV5lo_0,"The video shows a gymnastics performance on a balance beam in a well-lit gymnasium with judges, spectators, and a balcony with chairs.",0 276,v_itXYuf_Cj_Q,Can you describe the man's attire when he is peeling the banana?,v_itXYuf_Cj_Q_0,The man is wearing a green sweatshirt and sitting on a red chair while peeling the banana.,0 277,v_JspVuT6rsLA,Can you describe the scene where the boy is playing?,v_JspVuT6rsLA_0,The boy is playing the violin in a well-lit room with two pianos at his back and a woman playing one of the pianos.,0 278,v_cPIsE2ZCWzM,Can you describe the scene in the video?,v_cPIsE2ZCWzM_0,"The video shows a polo game being played in the daytime, with players riding horses and striking the ball with their mallets as spectators watch from the red seats.",0 279,v_IL8__uSFpqg,Can you describe the clothing worn by the man in the video?,v_IL8__uSFpqg_0,The man in the video is wearing a blue polo shirt.,0 280,v_JguRZtFN-Ck,Can you describe the attire of the woman in the video while playing squash?,v_JguRZtFN-Ck_0,The woman is wearing a white t-shirt and shorts while playing squash.,0 281,v_cFOaL4Ir4hg,Can you describe the different types of dives being performed in the video?,v_cFOaL4Ir4hg_0,"Several people are diving off the diving board and performing flips, including backflip dives, front flips, and a horizontal flip dive at the end of the video.",0 282,v_BdRH3lpopLQ,Can you name the teams playing the volleyball game?,v_BdRH3lpopLQ_0,USC and BYU are the two teams playing against each other in the volleyball game.,0 283,v_JHKAcpYlxkQ,Is the woman playing tennis on an outdoor court?,v_JHKAcpYlxkQ_0,The woman is playing tennis on an outdoor court and practicing her serve.,0 284,v_1xBdquA6dx8,Can you describe the jerseys worn by the two teams playing hockey?,v_1xBdquA6dx8_0,One team is wearing blue jerseys while the other is wearing green jerseys.,0 285,v_kdOsmDACtqw,Can you describe the next performance after the man in the white t-shirt speaks?,v_kdOsmDACtqw_0,The man in the black outfit steps into a white sheet on the ground and starts to breakdance followed by the man in the white t-shirt who dances and interacts with the crowd.,0 286,v_kIFHChO_-vg,Can you describe the scene when the video starts?,v_kIFHChO_-vg_0,The toddler is sitting on a vanity table with hair rollers in her hair and surrounded by makeup products and bottles while her mother speaks to her.,0 287,v_5P9Tbut04xE,Can you describe the attire of the man shown in the video?,v_5P9Tbut04xE_0,The man in the video is wearing a white shirt.,0 288,v_7gaC3b5nJqs,Can you describe the clothes of the women in the video?,v_7gaC3b5nJqs_0,The women are wearing gym clothes.,0 289,v_15yU0R2MBQM,Can you describe the toothbrush used in the video?,v_15yU0R2MBQM_0,The toothbrush featured in the video is blue.,0 290,v_kgz7c2kb4Rg,Can you describe the woman and her kayak in the video?,v_kgz7c2kb4Rg_0,"The woman is in a yellow kayak, wearing a life vest and a white cap. The kayak is in a calm river surrounded by green hills and trees on the right. She shows how to use the paddle to turn by doing a reverse and forward sweep with both paddles.",0 291,v_0k0xNs8Zjb4,Can you describe the activities performed by the girl in the video?,v_0k0xNs8Zjb4_0,"The girl is performing various gymnastics moves including backflips, front flips, back tucks, standing back-tucks, back handspring tucks, and a tumbling sequence.",0 292,v_9pavfCL1HvU,Was the game played in the daytime or nighttime?,v_9pavfCL1HvU_0,The game took place in the daytime.,0 293,v_i5qTK0mInTc,Can you describe the colors of the outfits worn by the two women who enter the house?,v_i5qTK0mInTc_0,One woman is wearing a blue outfit and the other is wearing a pink outfit.,0 294,v_EK7qW-oavQY,Can you describe the game that is being played in the swimming pool?,v_EK7qW-oavQY_0,Water polo is being played in the swimming pool.,0 295,v_jCxQQ9DMpT0,Can you describe the clothing of the person who teaches the archer how to hold the bow?,v_jCxQQ9DMpT0_0,The man who instructs the archer on how to grip the bow is wearing a blue polo shirt and a grey cap.,0 296,v_4NPVpI9zUpI,Can you describe the first jump Stefan Holm performs in the video?,v_4NPVpI9zUpI_0,Stefan Holm performs the first degree jump in which he runs towards the horizontal bar and successfully jumps over it.,0 297,v_Ku76zinwWkg,Can you describe the outfits worn by the girl and the boy on the track?,v_Ku76zinwWkg_0,The girl and the boy are both wearing black outfits while running on the track.,0 298,v_Hy54nZSDxTk,Can you describe the attire of the people in the paintball park?,v_Hy54nZSDxTk_0,The people are wearing hoodies over their paintball helmets.,0 299,v_KApqxr02rcQ,Which player is the video following and what color jersey is she wearing?,v_KApqxr02rcQ_0,Jessica Skillings wears a dark blue uniform in the video.,0 300,v_BBKSKU6dGGk,Can you describe the scene in the video?,v_BBKSKU6dGGk_0,"The man in the blue jacket is shoveling snow on a sidewalk surrounded by a snow-covered lawn and a cloudy sky. A tree covered in snow is visible next to him, and snow-covered trees are visible down the street. The man slowly clears snow as he walks forward, and the video ends with him still shoveling snow. An edge of a car is visible behind him.",0 301,v_-HpCLXdtcas,Can you describe the appearance of the weights on the barbell?,v_-HpCLXdtcas_0,The barbell in front of the man has multi-colored weights on it.,0 302,v_9VtxNvLx6zA,Can you describe the activity in the video?,v_9VtxNvLx6zA_0,The video shows a volleyball game being played in a gym.,0 303,v_AwgGYaV1lT0,Can you describe the setting at the beginning of the video and what the man is doing?,v_AwgGYaV1lT0_0,"At the beginning of the video, the man is standing in a wooded area chopping wood with an axe. There are trailers visible in the back along with a truck. A tent is set up some distance in the back from the man. A bike is parked in front of it. A foldable table with chairs is visible at the back and right of the man. ",0 304,v_0X0u_3xUBPE,Can you describe the attire of the man practicing Tai Chi in the video?,v_0X0u_3xUBPE_0,The man is wearing a black Tai Chi uniform while practicing on a concrete floor outdoors.,0 305,v_iABuDhagUm8,Can you describe the actions of the man in the video?,v_iABuDhagUm8_0,"The man uses the axe to chop a log, initially causing it to crack slightly before several swings eventually break the log apart, while a dog periodically comes near the man.",0 306,v_jt-Vnap5KP4,Can you describe the old man’s attire while he plays the harmonica?,v_jt-Vnap5KP4_0,"The old man is wearing winter clothes, a hat, and sunglasses while playing the harmonica.",0 307,v_agu58IVL7IQ,Are there any other people skating in the video besides the man with the skateboard?,v_agu58IVL7IQ_0,Other people are visible skating in the background besides the man with the skateboard.,0 308,v_9AfQ2Q-96oE,Can you describe the competition the man is participating in?,v_9AfQ2Q-96oE_0,"The man is participating in a disk throw competition, where he spins to build momentum and throws the disk, with a referee marking the spot where the disk landed. The video shows different angles of the man throwing the disk and several clips of the man making different disk throws one after another. There are also hundreds of spectators visible sitting on seats.",0 309,v_A904-cbaYDw,Can you describe the activity of the man in the video?,v_A904-cbaYDw_0,The man is performing a tai chi practice and instructing on different stances and their positions.,0 310,v__B7rGFDRIww,Which song plays throughout the video as the dancers perform?,v__B7rGFDRIww_0,"The woman is dancing to the song ""Let it Go"" from the movie ""Frozen"" and this song continues to play throughout the video while the dancers dance to it.",0 311,v_5tFfEA1JWjA,Can you describe the scene in the basketball court?,v_5tFfEA1JWjA_0,A boy is dunking the basketball while his coach watches and instructs him in an indoor basketball court with frames on the far wall.,0 312,v_AQnp2QAnwI0,Can you describe the scene in the video?,v_AQnp2QAnwI0_0,A group of dancers perform on stage in front of a projection while silhouettes of people wearing headphones are visible in front of the stage.,0 313,v_ANaMmXJFE54,Can you describe the entrance of the cheerleaders into the basketball court?,v_ANaMmXJFE54_0,The cheerleaders run into the basketball court and wave towards the spectators.,0 314,v_7orO93DICYw,Can you describe the gym where the man is practicing gymnastics?,v_7orO93DICYw_0,"The gym where the man is practicing gymnastics has overhead lights, several balance beams fixed to the ground with foam pads lining the floor, and numerous flags lining the wall.",0 315,v_9hTcvGUnMBs,Can you describe the high jump contest at the beginning of the video?,v_9hTcvGUnMBs_0,"At the beginning of the video, a high jump contest is taking place in a field with a horizontal bar, foam pad, people competing, a man with colored flags, and a seated audience.",0 316,v_60tIsGR0Zzg,Can you describe how the boy started the lawn mower and his struggles with it?,v_60tIsGR0Zzg_0,"Before mowing the lawn, the boy switched on the mower and moved it forward. He struggles to move it and gets stuck in some patches, eventually pulling the mower back. ",0 317,v_IRua6QGP-Ow,Can you describe the process the bartender follows to make a drink?,v_IRua6QGP-Ow_0,"The bartender is making a drink by pouring and mixing different spirits, shaking them with ice, and finally pouring the mixture into a glass with ice. He also runs a lime on the rim of the glass.",0 318,v_DOI6tsATsE4,Can you describe the setting and actions of the boy in the video?,v_DOI6tsATsE4_0,The boy is wearing a dark blue sweatshirt and holding his hand to the side of his head while sitting at a table with a plate in front of him. The background shows a lamp near the wall. The man also appears in a cutaway wearing a white t-shirt and looking at the camera while standing in a room with a packed shelf. The video ends with cutaway shots of the boy looking at the camera and looking away.,0 319,v_ej9TkJVjK9M,Can you describe what the man is wearing?,v_ej9TkJVjK9M_0,The man is wearing black tights.,0 320,v_8L1UjGLOCeI,Can you describe the activity the woman is engaged in while standing near the hopscotch court?,v_8L1UjGLOCeI_0,The woman is playing hopscotch in the room and completes a pass on the court.,0 321,v_c7S423zJqPo,Can you describe what the man wearing the green t-shirt is doing in the aerobics class?,v_c7S423zJqPo_0,The man wearing a green t-shirt is working out using an aerobics step in the aerobics class.,0 322,v_Bkhr72sazvQ,Can you tell me what product the man is promoting for weight loss?,v_Bkhr72sazvQ_0,"The man in the video is promoting a weight loss product and talks about ""5 pounds lost in 7 days"".",0 323,v_d-RYiiPzVKg,Can you describe the contents on the table in the video?,v_d-RYiiPzVKg_0,The man places a bottle of white vinegar and a bottle of olive oil on the table.,0 324,v_BmLDHLKiIdQ,Where are the archers shooting arrows in the video?,v_BmLDHLKiIdQ_0,The video shows an indoor archery competition with spectators seated in the stands.,0 325,v_9VflCeoPr9I,What are the people doing in the lawn-covered field?,v_9VflCeoPr9I_0,The people are playing and kicking a red ball in the field.,0 326,v_1kwIYXB4b8s,Can you describe the people and activities in the video?,v_1kwIYXB4b8s_0,The video shows a man getting his head shaved by a woman while a man records it on his phone in the presence of other people in the room.,0 327,v_kPn9NzU4W48,Can you describe the background of the video where the two teens are sparring?,v_kPn9NzU4W48_0,The basketball court walls behind the two teens are painted white at the top half and blue at the bottom.,0 328,v_4iFlM_Zu7xs,Can you describe the stunts performed by the two riders in the video?,v_4iFlM_Zu7xs_0,"The riders are performing a series of jumps and stunts on a dirt bike track, while being recorded by a person in the middle. They jump over inclines, ride in a circle and jump over a hill at the end.",0 329,v_Dbas61NkTV0,Can you describe the stage setup when the cheer squad performs?,v_Dbas61NkTV0_0,"The stage has overhead lighting and gobo lighting projections on the wall, and the cheer squad uses multiple bases to throw and lift members during their routine.",0 330,v_j6ElczD-Pw4,Can you describe how the girl is cleaning her face?,v_j6ElczD-Pw4_0,The girl is washing her face with the luffa by tapping it on her face and then rinsing off the suds with water from the running sink.,0 331,v_e3DB_y78IHc,Can you name the animals grazing towards the end of the video?,v_e3DB_y78IHc_0,"The animals shown grazing towards the end of the video are ostriches, alpacas, and camels.",0 332,v_9ZVWD0ZKXZg,Can you describe the clothing of the boy who is climbing the rock?,v_9ZVWD0ZKXZg_0,"The boy is wearing an orange T-shirt, a harness, and a belay rope is fastened to him.",0 333,v_1dDAcUliXrQ,Can you describe the color of the playing surface on the badminton court?,v_1dDAcUliXrQ_0,The badminton court has a dark blue floor and walls.,0 334,v_KvtqF0LaWU0,Can you describe the appearance of the woman standing beside the black stone kitchen counter?,v_KvtqF0LaWU0_0,The woman standing beside the black stone kitchen counter is wearing a sweater.,0 335,v_3VjaC7wdMso,Can you describe what is happening in the opening scene of the video?,v_3VjaC7wdMso_0,"The girl is sitting by an open window playing the piano while referencing the sheet music in front of her, and she starts to sing as she plays. Trees and sunlight are visible outside the window and the edge of a bed is visible behind her chair.",0 336,v_cms1BP4eKOA,Can you describe the activity being performed by the players in the video?,v_cms1BP4eKOA_0,"The players are performing a point guard drill, running around cones, attacking the basket, getting the ball back from the rebounder machine, dribbling while running, and making a point guard entry pass to attack the basket.",0 337,v_Ivq9_wPFNs4,Can you describe the athletic activity happening in the video?,v_Ivq9_wPFNs4_0,"The video depicts a woman named Britney Reese performing a high jump into a sand pit during an athletics event while her stats are displayed on a graphic, and is followed by her running in a lane and people sitting in the seating area.",0 338,v_dO01vfB9z4g,Can you describe the scene in the video where the boy is present?,v_dO01vfB9z4g_0,"The boy is scrubbing dishes in the kitchen sink while standing on a box, and a woman records him with her phone.",0 339,v_4-KiAur4dI8,Can you identify the event logo displayed at the beginning of the video?,v_4-KiAur4dI8_0,"The event featured in the video is Red Bull CROSSWAYS, as indicated by the logo displayed at the beginning of the video.",0 340,v_1XNHcfxTqW0,Can you describe the appearance of the man playing the harmonica on the sidewalk?,v_1XNHcfxTqW0_0,The man playing the harmonica on the sidewalk is wearing a white T-shirt and has long hair.,0 341,v_AE2gHOwcV14,What is visible through the divider wall separating the gym from the rest of the hall?,v_AE2gHOwcV14_0,The video is shot in a gym with a visible glass door through a divider wall separating the gym from the rest of the hall.,0 342,v_bphckj0BV5U,Can you describe the woman in the video?,v_bphckj0BV5U_0,The woman is wearing a grey top and is sitting on the ground in the woods while demonstrating how to start a fire.,0 343,v_E5YBb4rzV30,Can you describe the steps taken by the woman to prepare the tuna wraps?,v_E5YBb4rzV30_0,"Before adding a can of tuna to the mixing bowl, the woman adds mayonnaise, relish, mustard, celery, and chopped onion. She then arranges lettuce leaves on a plate, places a spoonful of the tuna mixture on each leaf and folds them into wraps.",0 344,v_dRF1C_sBE5M,What task did the man teach the girl to do with the axe in the video?,v_dRF1C_sBE5M_0,The man taught the girl how to chop wood using an axe.,0 345,v_H33jSILKmfI,Can you describe the clothes worn by the boy practicing training drills in the gym?,v_H33jSILKmfI_0,The boy is wearing a white martial arts uniform while practicing training drills in the gym.,0 346,v_JiNcVb97CnA,Can you describe what the man and woman are wearing in the video?,v_JiNcVb97CnA_0,The man is wearing a white t-shirt and the woman is wearing a black coat over a pink top.,0 347,v_lIo8HfzzSNs,Can you describe the process of making the Russian salad dressing?,v_lIo8HfzzSNs_0,"The dressing for the Russian salad was made by mixing two T-spoons of cream, two T-spoons of mayonnaise, salt, and pepper in a glass bowl.",0 348,v_dN8LBey17O8,How does the man measure the length of the grass before and after mowing his lawn?,v_dN8LBey17O8_0,The man measures the length of the grass using a ruler before and after mowing his lawn.,0 349,v_I7slpTgl0jc,Can you describe what the man is doing in the field?,v_I7slpTgl0jc_0,The man is practicing a hammer throw in a field surrounded by trees. He is standing on a round platform holding a handle with a hammer attached to it. He is wearing a red shirt and releases the hammer through the open end of the practice net.,0 350,v_ks018ZYzrx4,Can you describe the dirt bike with the number 2?,v_ks018ZYzrx4_0,The dirt bike with the number 2 is green.,0 351,v_KsFid_YVsn0,Can you describe the outfits that the girls and the boys are wearing during the start of the tango dance?,v_KsFid_YVsn0_0,"The girls are wearing black dresses, and the boys are wearing red dress shirts and black trousers while dancing.",0 352,v_hFpSoRlpyMo,What does the fielder do when the batsman hits the ball towards the boundary?,v_hFpSoRlpyMo_0,The fielder prevents the ball from touching the boundary rope and falls over it.,0 353,v_aOxRwTlkY80,What were the steps taken by the man to prepare the pasta dish?,v_aOxRwTlkY80_0,The man added garlic to the pan with oil first and then added chillies. He cooked these two for a minute and later added the cooked pasta and chopped parsley. He added ground pepper and mixed everything before finishing the dish.,0 354,v_4VdS1eN3dv4,"Are multiple games of cricket being played in the video, both during the day and at night?",v_4VdS1eN3dv4_0,"Yes, multiple games of cricket are being played in the video, both during the day and at night.",0 355,v_EhzHU0gkrzA,Can you describe the gymnastics routine the boy is doing using the parallel bars?,v_EhzHU0gkrzA_0,"The boy is performing gymnastics on the parallel bar in a track field with blue flooring. He swings, performs a handstand, and repeats this while turning in the other direction. Another person is doing gymnastics on the far right of the field.",0 356,v_6G8m-vsGTA8,Can you describe the setting in the video?,v_6G8m-vsGTA8_0,"The video shows a man getting his hair cut in a hair salon while recording himself, with a woman using scissors and trimmers to cut his hair. Other customers can be seen in the salon and the video ends with the man driving in a car wearing a hat and sunglasses.",0 357,v_kfO5PGlsMJw,Can you describe what the first boy is wearing while performing on stage?,v_kfO5PGlsMJw_0,The first boy is wearing a black karate uniform with a black belt.,0 358,v_86Unahb4sJM,Can you describe the process of the makeup application demonstrated in the video?,v_86Unahb4sJM_0,"The woman demonstrated the application of concealer, foundation, bronzer, eyeliner, mascara, lipgloss, and eyebrow mascara in the video.",0 359,v_jN2CFk0xKp8,Describe the appearance and activity of the man in the first clip.,v_jN2CFk0xKp8_0,The man is wearing a red polo shirt and blue trousers and carrying a vacuum on his back while vacuuming the carpet in an office.,0 360,v_JG7T6qtO4jg,Can you describe the outfit of the boy who starts breakdancing in the beginning of the video?,v_JG7T6qtO4jg_0,The boy who starts breakdancing in the beginning of the video is wearing a black T-shirt and olive shorts.,0 361,v__ja1fre9OTE,"Where is the gymnast performing the different balance poses, jumps, and leaps?",v__ja1fre9OTE_0,The gymnast is performing on a balance beam located on an elevated platform at a gymnastics competition.,0 362,v_82EtiBkAsPg,Can you describe the attire of the man playing the bagpipe in the bar?,v_82EtiBkAsPg_0,The man is wearing a black jacket while playing the bagpipe at the bar.,0 363,v_7OcxT66BxX0,Can you describe the clothes the man is wearing while playing the harmonica on stage?,v_7OcxT66BxX0_0,The man is wearing a black jacket and a black fedora while playing the harmonica on stage.,0 364,v_aDe5hUB3AdY,Can you describe the activities of the sailors?,v_aDe5hUB3AdY_0,The sailors are performing capsizing training and sailing dinghies.,0 365,v_5qY9yPt-5Go,Can you describe the opening scene in the video?,v_5qY9yPt-5Go_0,"The video starts with a black French bulldog standing on a checkered red tablecloth with a cup of coffee placed in front of it. The dog goes to the cup and starts to drink the coffee, while the boy attempts to move the dog away from the cup gently.",0 366,v_hvrKRg166eQ,Can you describe the scene on the couch?,v_hvrKRg166eQ_0,"Three people are sitting on a curved couch behind a coffee table, with three coffee cups on the table. A woman is sitting in the middle with two men on either side of her.",0 367,v_a_JlhLnJM98,Can you describe the setting of the video and the woman’s attire?,v_a_JlhLnJM98_0,"The woman is wearing a green sweater and there is a jeans jacket visible hanging behind her. She is standing in a well-lit room with a window behind her. Behind her, to the left, is a rack of different products. ",0 368,v_9Ufy_JGbnys,Can you describe the type of dance the couple is performing?,v_9Ufy_JGbnys_0,The couple is doing a tango dance.,0 369,v_9eniCub7u60,Is there a visible door and photo frames on the back wall?,v_9eniCub7u60_0,"Yes, there is a door visible on the back right side of the room and a few photo frames hanging on the wall.",0 370,v_k1GP0cJOXbQ,Can you describe the scenes depicted in the video?,v_k1GP0cJOXbQ_0,"The video shows people kayaking in rapids and calm waters, with some scenes of them paddling alone and others in pairs, culminating in a group of people standing around drinking beer with the sunset in the background.",0 371,v_7bwruwic1CI,What sport is being played when the third player falls on the field?,v_7bwruwic1CI_0,"The players in orange uniforms are celebrating a baseball game, and when the third player falls on the field, handball is being played.",0 372,v_bYxVbXzQToI,Can you describe what happens when the man in the white suit and the man in the black tux sit together in the bar?,v_bYxVbXzQToI_0,The man in the white suit sits on a chair on a raised platform in a bar and picks up a guitar with a man in a black tux sitting next to him holding a guitar. They start playing while people in the bar watch and drink.,0 373,v_hI11n4_r178,Can you describe the clothing worn by the two women in the video?,v_hI11n4_r178_0,The two women in the video are wearing red shirts.,0 374,v_hP-xRyx88aA,Can you describe the second jump made by the woman in the video?,v_hP-xRyx88aA_0,"The woman in the white jacket is pole vaulting over the bar, using her pole to clear it and landing on the foam mat. This is the second jump she makes in the video.",0 375,v_HxrtuZSCwvY,Can you describe what the boy is doing in the video?,v_HxrtuZSCwvY_0,The boy is holding a violin and playing it in a dimly lit living room while people sit and watch. He stops playing at the end and people applaud.,0 376,v_af05Mqm03Y4,Describe the clothing worn by the two men playing squash in the video?,v_af05Mqm03Y4_0,One man is wearing a white T-shirt and the other is wearing a grey T-shirt.,0 377,v_ddzfgHw_qlU,Can you describe the appearance and activity of the man in the video?,v_ddzfgHw_qlU_0,"The man, who is wearing a grey dress shirt and glasses, is seen playing a harmonica in front of a painting in a well-lit room with a yellow overhead light. He continues to play until the end of the video.",0 378,v_h_r8gioFi4k,Can you describe the gym and the activity the people are engaged in?,v_h_r8gioFi4k_0,"The man is wearing a black outfit and punch mitts while the woman is wearing a black outfit and boxing gloves. They are practicing kickboxing by using various moves including punching, kicking, and using elbows. The gym is well-lit and has posters on the walls while a multicolor mat covers the floor. Through an open door, a hall with chairs and wooden flooring can be seen.",0 379,v_EnMS9O1U6E0,Can you describe the scene at the stadium?,v_EnMS9O1U6E0_0,A man wearing blue shorts and a vest with the number tag of 2736 is shown performing a high jump at a track and field event hosted at an open-roof stadium with numerous spectators.,0 380,v_CeXtKbFnPIQ,Can you describe the tennis player and his equipment?,v_CeXtKbFnPIQ_0,The man is wearing a black shirt and black track pants and holding a racket and a tennis ball on an outdoor tennis court.,0 381,v_K_ia4VP3w2c,Who is the subject of the makeup tutorial?,v_K_ia4VP3w2c_0,Irina Shayk is the model for the makeup tutorial and photoshoot in the video.,0 382,v_IDIALY6Ayk8,Can you describe what the people are doing in the wine cellar?,v_IDIALY6Ayk8_0,"The people are at a winery, where they are shown a bottle of wine and then served wine to drink while seated in a dining room.",0 383,v_ij9czNGMR5I,Can you describe the attire of the woman getting her tongue pierced?,v_ij9czNGMR5I_0,The woman getting her tongue pierced is wearing a grey hoodie.,0 384,v_jEOtcfk220s,Can you describe the scene in the school gymnasium?,v_jEOtcfk220s_0,A women volleyball match is being played in a light wood-floored gymnasium with white walls and bleachers at the bottom. The players on the left wear blue uniforms and a player makes a successful serve while a referee watches over the net. The video ends as the team on the left wins the exchange.,0 385,v_j6OcN4OQZVM,Can you describe what the breakdancers are wearing in the video?,v_j6OcN4OQZVM_0,The breakdancers in the video are wearing black outfits.,0 386,v_bz4QwqHiVlo,Can you describe the outfit of the man who is vacuuming in the living room?,v_bz4QwqHiVlo_0,The man is wearing a purple shirt while vacuuming in the living room.,0 387,v_hPYGgv_75SY,In what setting is the woman wearing a black outfit seen performing the hammer throw?,v_hPYGgv_75SY_0,The woman wearing a black outfit is performing hammer throws on a field in the daytime.,0 388,v_jWH-2aa1gJY,Can you describe the appearance of the room and the girl in it?,v_jWH-2aa1gJY_0,The girl in the video is wearing a hoodie and jeans and sitting on a chair with a closed window behind her. There is various music gear visible around her on the ground and the room is lit by diffuse light from the window.,0 389,v_BAtlo_AGFWs,Can you describe the scene of Chris Hadfield holding a tortilla?,v_BAtlo_AGFWs_0,Chris Hadfield is holding a tortilla and squeezing honey on it while floating in the International Space Station.,0 390,v_9lAT3oA9Ixs,Can you describe the man and his clothing while he chops wood near a cabin in the woods?,v_9lAT3oA9Ixs_0,The man is wearing a blue jacket and blue jeans while chopping wood near a cabin in the woods.,0 391,v_0rr7iGHamw0,Can you explain what Valarie is demonstrating with the iron?,v_0rr7iGHamw0_0,"Valarie is using iron-on transfer to imprint a design on a white t-shirt with a Twitter username and blue bird picture, while standing in front of an ironing board holding an iron in the crowded hall.",0 392,v_6utacRir3uM,Can you describe the people and their workout in the aerobics studio?,v_6utacRir3uM_0,People are working out in a well-lit aerobics studio using aerobic steps with an instructor giving instructions. A man falls down while trying to follow the instructor and receives help from the instructor and some other participants.,0 393,v_5cijPqKVc84,Can you describe the different types of kayaks featured in the video?,v_5cijPqKVc84_0,"The video shows various types of kayaks being rowed in different water bodies including rapids, rivers, and the sea. Some have open cockpits while others are closed.",0 394,v_l5ZUUChppHU,Can you describe the wood-chopping contest with multiple participants and their respective wooden logs?,v_l5ZUUChppHU_0,"The video shows a wood-chopping contest with participants standing over their respective logs and two sets of competitions - wooden blocks laid horizontally on chopping stands and contestants assembling wooden blocks on horizontal chopping stands. They are wearing black vests and light-colored trousers, and the contest takes place outside in an arena during the daytime.",0 395,v_52Xw6TZcysc,Can you describe the activity the woman is performing in the video?,v_52Xw6TZcysc_0,The woman is doing a long jump in an indoor track and field stadium.,0 396,v_l_0HvMt2tGg,Can you describe the equipment and clothing the boy is wearing and using in the video?,v_l_0HvMt2tGg_0,"The video features the boy playing lacrosse, wearing a red and white jersey, and using a lacrosse stick.",0 397,v_1jgsRbGzCls,Can you describe the different scenes shown in the video?,v_1jgsRbGzCls_0,"The video is about Tai chi and its practice by people of different ages and in different settings, including a newsroom, sandy ground outdoors, a hospital, and individuals practicing on their own.",0 398,v_kl-2y3jtPNE,Can you describe the sports activity taking place in the field?,v_kl-2y3jtPNE_0,The game being played in the field is cricket.,0 399,v_j_r7zJWxI8w,Can you describe the clothing of the man who makes a hole in the beer can?,v_j_r7zJWxI8w_0,The man wearing the Adidas blue t-shirt makes a hole in the beer can using a key and drinks from it.,0 400,v_l_pp-1qu9Ig,Can you describe the process of gift wrapping performed by the woman in the video?,v_l_pp-1qu9Ig_0,"The woman is wrapping a brown cardboard box with gift wrap by cutting, folding and taping it, and then placing it on the counter.",0 401,v_8r4bF9RF0Kc,Can you describe the opening scene of the video?,v_8r4bF9RF0Kc_0,The people in the video are playing a game of cricket at the beginning.,0 402,v_iUiXNXRs4rU,Can you describe the surroundings and the clothing of the man in the video?,v_iUiXNXRs4rU_0,"The man is wearing a brown shirt and a cap, standing in a well-lit bike shop with shelves filled with tools and bike parts. He is fixing a broken chain by attaching a master link on one end and pushing on the pedal to check the fix.",0 403,v_Lf_7RurLgp0,Can you describe the attire of the child washing his hands?,v_Lf_7RurLgp0_0,The little boy is wearing a black polo shirt while washing his hands in the video.,0 404,v_34ZxyyFjbHQ,What colors are the T-shirts of the boys playing squash and who wins the starting-over games?,v_34ZxyyFjbHQ_0,One boy is wearing a blue T-shirt and the other a red T-shirt. The game gets started over when one of them misses their shot. The video ends with the two boys playing and a boy wearing a white t-shirt standing outside the court watching. It doesn’t mention which boy wins the starting-over games.,0 405,v_Db9VWkgMpbE,Can you describe the appearance of the woman learning to use an exercise bike?,v_Db9VWkgMpbE_0,The woman who is learning to use an exercise bike is wearing a black top.,0 406,v_Il9Ara3IqeY,Can you describe the scene and activity of the man on Marble Bridge during daytime?,v_Il9Ara3IqeY_0,"The man is standing on an elevated section of Marble Bridge, playing a flute. He is wearing a black polo shirt and a rice hat. The Palace Museum can be seen at his back. People are walking around Meridian Gate Square, some of whom are walking under an umbrella. He continues playing the flute until the end of the video.",0 407,v_HkbOI7gEtKk,Could you describe the scene in the video with the two women?,v_HkbOI7gEtKk_0,"The video features two women, one wearing a teal top and the other wearing a white one. The woman in the teal top is a beautician and she is demonstrating how to make a cleansing with baking soda while the woman in the white top, the model, follows the instructions by mixing yogurt and baking soda to apply to her face.",0 408,v_cEa87QoI3Do,Can you describe the ingredients used by the two men to make sandwiches?,v_cEa87QoI3Do_0,"The two men make sandwiches using various ingredients like peanut butter, jelly, lettuce, and ham.",0 409,v_ARpoJIBF2NM,What are the players wearing on one side of the basketball court?,v_ARpoJIBF2NM_0,The players on one side of the basketball court are wearing teal t-shirts.,0 410,v_H8oehT8eeGc,Can you describe the play with the red ball in the video?,v_H8oehT8eeGc_0,"The red ball is thrown by a boy, retrieved by another boy wearing a green shirt who then kicks it. The ball flies through the air and lands near the opposite chain-link fence. A boy wearing a red shirt then runs toward the ball.",0 411,v_jQzBXawu29s,Can you describe the man and his surroundings when he plays the black wooden Irish flute?,v_jQzBXawu29s_0,The man is wearing a brown sweater and glasses while playing the black wooden Irish flute in a living room with a television stand behind him and various framed items hung on the wall. Sunlight is coming in from the left side at the back.,0 412,v_51faGoLPJgM,Can you describe the initial action of the boy in the video?,v_51faGoLPJgM_0,The boy is chopping wood next to a pile of chopped logs while wearing blue jeans and a sweater.,0 413,v_AB480dHyDeM,What is the first step the man takes before brushing the shoe?,v_AB480dHyDeM_0,The man first removes the insole and laces from the shoe before putting some cleaning solution on the brush and dipping it in the water bowl to start brushing the shoe.,0 414,v_lPw_BRbPw5s,Can you describe what the man and woman are wearing while dancing in the alley?,v_lPw_BRbPw5s_0,"The man is dressed in a blue T-shirt and a blue cap, while the woman is wearing a brown top and blue jeans.",0 415,v_Kofjs0rkwxc,Can you describe the process of making a turkey sandwich by the chef?,v_Kofjs0rkwxc_0,"The chef uses bread, butter, sliced turkey, cranberry sauce, and green leaves to make sandwiches. For the turkey sandwich, he spreads butter on the bread, places sliced turkey, adds cranberry sauce and green leaves and covers it with the other slice.",0 416,v_jiM0HUFn0e8,Can you describe the participation of the little kids in the ballet practice?,v_jiM0HUFn0e8_0,"The little kids are sitting a few feet away from the trio of dancers, mimicking the hand moves and following the movements of the instructor and the other two dancers.",0 417,v_4oi6dXfpJS4,What outfit is the gymnast wearing when she mounts the balance beam?,v_4oi6dXfpJS4_0,The gymnast is wearing a pink outfit when she mounts the balance beam.,0 418,v_4KMG6lEDSIM,Can you describe the last martial arts demonstration shown in the video?,v_4KMG6lEDSIM_0,"In the final scene of the video, a man wearing a black gi breaks tiles placed on two cinder blocks.",0 419,v_889_kqLFM0E,What type of activities are people engaged in throughout the video?,v_889_kqLFM0E_0,All people in the video are engaged in different forms of rock climbing activities.,0 420,v_1YU4MSK80cQ,Can you describe what the woman did on the outdoor fitness equipment in the park?,v_1YU4MSK80cQ_0,"The woman did exercises like swaying, moving back using her hands, doing the split, and swinging using the bars.",0 421,v_IDuoF51IMJ8,Where does the video begin and what are the players doing?,v_IDuoF51IMJ8_0,The video begins on a basketball court where two teams are playing dodgeball.,0 422,v_jkrlHzTRTvo,Can you describe the scene with the group of boys with paintball gear?,v_jkrlHzTRTvo_0,"The young boys are getting ready for a paintball game, and they are seen in a room putting on their gear and taking defensive positions in an arena with various inflatable bunkers used as obstacles.",0 423,v_dhsSq0K1xEg,Can you describe the decoration on the saxophone case?,v_dhsSq0K1xEg_0,'GUNS-N-ROSES' with a rose drawn underneath is written on the decorated saxophone case.,0 424,v_0x6ZV9Y8g_c,Can you describe the toddler's pajamas in the opening scene?,v_0x6ZV9Y8g_c_0,"In the beginning of the video, the toddler is seen wearing blue and red pajamas.",0 425,v_-IMXSEIabMM,Can you describe what the people in the beginning of the video are wearing and what they are doing?,v_-IMXSEIabMM_0,The people in the beginning of the video are wearing winter clothes and shoveling snow around a car parked in front of a garage in the daytime.,0 426,v_dVpHF8tE2qo,Can you describe the appearance of the man while he is lifting the barbell in the well-lit gym?,v_dVpHF8tE2qo_0,The man is wearing a red vest while lifting the barbell in the gym.,0 427,v_Kic33dtLja8,Can you describe the movements of the women in the video?,v_Kic33dtLja8_0,"The women in the video are belly dancing. They move their hands, from side to side, forward and back while turning sideways.",0 428,v_4mRkWNLE66E,Which player in white jersey scored a goal and celebrated with his teammates at the end of the video?,v_4mRkWNLE66E_0,The player in the white number 15 jersey is being pointed to by the red arrow and he scored a goal and celebrated with his teammates at the end of the video.,0 429,v_FOZdNPQ7d5Q,Can you describe the scene in the video?,v_FOZdNPQ7d5Q_0,"A man is getting a tattoo on his left arm from a woman in a dimly lit room. The woman is wearing a purple check shirt with black gloves and using a tattoo gun. The man is wearing a black beanie cap, a chain, and blue jeans. There are plants outside the window. The video ends with a close-up shot of the tattoo.",0 430,v_BSwChZlOb0k,Can you describe the sequence of events when the man drinks the flaming shot?,v_BSwChZlOb0k_0,"The flames from the shot glass stick to his mouth and he throws the glass on the table, which causes the table and a man standing near it to catch fire.",0 431,v_cqxiLraI8uY,Can you describe the weightlifting activity performed by the man in the gym?,v_cqxiLraI8uY_0,The man lifts a barbell and holds it over his head before dropping it to the floor in a gym with black floors and fixed equipment.,0 432,v_d6PdD2O3Yrs,"Can you describe the activity in which the boy is engaged, in the gymnasium?",v_d6PdD2O3Yrs_0,The boy in black tights is practicing gymnastics by balancing and swinging on horizontal bars in the well-lit gymnasium.,0 433,v_3V9tzjyr51I,Can you describe the equipment used by the man standing on the right in the video?,v_3V9tzjyr51I_0,The man on the right is holding a racquet in the video.,0 434,v_di5f5hM05Vw,Can you describe the indoor studio where the man is practicing Tai Chi?,v_di5f5hM05Vw_0,"The man is practicing Tai Chi movements in an indoor studio with well-lit light wood flooring, a mirror covering the wall at his back, and a window covered in purple drapes visible on the right side wall.",0 435,v_JN1wuOpCZvk,Can you describe the attire of the men in the video?,v_JN1wuOpCZvk_0,"The men are wearing black briefs with the one on the left wearing a grey sweatshirt and the one on the right, a white vest.",0 436,v_JH9qiuPCkY4,Can you describe the wall with the logo in the dirt bike yard at the beginning of the video?,v_JH9qiuPCkY4_0,There is a wall with a red logo on it in the dirt bike yard at the beginning of the video.,0 437,v_aQ-F9wr0HQ4,Can you describe the bottle being used in the video?,v_aQ-F9wr0HQ4_0,The 'Favor' spray bottle is being used in the video.,0 438,v_0UTrTg3DF5g,Can you name the ingredients Pinky uses to make her cocktail?,v_0UTrTg3DF5g_0,"Pinky is making a cocktail called 'GIN E HENDRIX' and she uses a variety of ingredients including cucumber, lime, lemon, basil, and different bottles of alcohol visible behind her on glass shelves.",0 439,v_Ie09KEAPP2I,Can you describe the appearance of the labrador retriever in the video?,v_Ie09KEAPP2I_0,The labrador retriever in the video is brown.,0 440,v_Jdu5AqaWfz8,Can you describe the scene where the men are standing at the edge of the platform?,v_Jdu5AqaWfz8_0,"The bungee jump platform is yellow and the inflatable boat is located to the left near the shore. Three men, with two attendants in green shirts and one jumper wearing a t-shirt and a strap, are standing on the platform during the day. One of the attendants is belaying the bungee cord. After jumping off the platform and being pulled back up, the man is slowly reeled down and drawn to the shore by two attendants.",0 441,v_Erje-PwY9hE,Can you describe the kayaks at the pier and the clothing of the person kayaking down the river?,v_Erje-PwY9hE_0,The kayaks at the pier are yellow and the person kayaking down the river is wearing a yellow shirt. ,0 442,v_HgYuRKZ_V90,Is one of the teams wearing a blue uniform or a white uniform during the hockey game?,v_HgYuRKZ_V90_0,One of the teams is wearing a blue uniform and the other is wearing white.,0 443,v__jV5sAOOHLk,Can you describe the bike repair Brandt is doing?,v__jV5sAOOHLk_0,"Brandt is repairing a punctured tire on a bicycle by unscrewing the derailleur guard, removing the tire, inserting a new tube, inflating it using a pump, fixing it back to the bicycle with a wrench and reapplying the rear brake.",0 444,v_JDwd6Ec454A,Describe the setting of the video and what action takes place with the rabbit?,v_JDwd6Ec454A_0,The rabbit has a reddish coat with dark brown highlights and is grooming himself in a wooden box with a mesh floor. A person reaches in and pets the rabbit.,0 445,v_34SBoGK8mT8,Can you describe the actions of the little girl in the video?,v_34SBoGK8mT8_0,"The little girl is playing hopscotch on a court drawn on the ground, picking up and throwing a pebble a few times before successfully landing it in a square and hopping to that square.",0 446,v_fNhw7xE3NM8,Can you describe the room in which the girl is making the video?,v_fNhw7xE3NM8_0,"The girl making the video is wearing a black top and the room has printed walls with a chandelier, dolls, a green sofa, and a big green plant. There is also a white door present.",0 447,v_83f0iwb8VW8,Can you describe the flooring in the dojo where the men are sparring?,v_83f0iwb8VW8_0,The floor of the dojo is made of blue and red carpet.,0 448,v_Lb7Q8qv3MHU,What does the girl do right after she gargles the mouthwash?,v_Lb7Q8qv3MHU_0,"The girl picks up her toothbrush, squeezes toothpaste on it, and starts brushing her teeth.",0 449,v_7dXqXFoju2M,Can you describe the setting of the beginning scene?,v_7dXqXFoju2M_0,The video begins in a dimly lit bathroom with a bathtub visible in the background. A woman stands in front of a mirror with a drinking glass in one hand and a cigarette in the other.,0 450,v_A20uQSBtYMs,Can you describe the banner behind the men playing saxophones?,v_A20uQSBtYMs_0,The banner behind the men playing saxophones reads 'TWIN JAZZ'.,0 451,v_9InwA-ajB2M,Can you describe the man present inside the compound?,v_9InwA-ajB2M_0,A man wearing a cowboy hat and an orange shirt is standing in the middle of the enclosure and looking at the rider.,0 452,v_2nDbYhgdw2A,What is the first dance move executed by the person wearing the yellow shirt in the video?,v_2nDbYhgdw2A_0,The person in the yellow shirt performs the backspin as the first dance move.,0 453,v_eRco7yXc-40,Can you describe how the person entered the water from the diving board?,v_eRco7yXc-40_0,The person performed a reverse somersault dive off the diving board.,0 454,v_IGZvj1J9tNc,Can you describe the drill that the players are performing in the basketball arena?,v_IGZvj1J9tNc_0,"The players are running across the court in groups of three, while the one in the middle dribbles the ball and shoots it in the basket, and then they repeat the drill with a different player among the three, while the coach watches from outside the court.",0 455,v_49PbyLbrxlE,Can you describe the scene in the bathroom with the woman?,v_49PbyLbrxlE_0,"The woman is washing a piece of cloth in front of the mirror and sink in a bathroom while wearing a blue top. Toiletries and a bottle of dish soap are on a shelf in front of the mirror and walls are lined with white tiles. As she continues to wash the cloth, she rinses it in the sink, which is filled with dirty water.",0 456,v_4QRRxub6L5Q,Can you describe the activity of the girl on the foam platform and the one sitting by the side in the indoor well-lit setup with a poster of cartoon sloth on the wall?,v_4QRRxub6L5Q_0,The video shows a girl performing multiple backflips on a foam platform indoors while another girl watches. There is a poster of a cartoon sloth on the far wall. The video ends with the girl doing backflips and landing.,0 457,v_0DFz3sgfda0,Can you describe the activity of the girls in the kitchen?,v_0DFz3sgfda0_0,"The girls are making a salad in the kitchen with various ingredients like lettuce, tomatoes, and peanuts.",0 458,v_cCDffwsJvsY,Can you describe how the person lights the fire?,v_cCDffwsJvsY_0,The person lights a piece of chips and then uses it as kindling to light the arranged firewood. They also use a Bic lighter and light a few more pieces of kindling to help the fire light faster.,0 459,v_11p9goB2rm8,Can you describe the scene with the teenagers in the playground?,v_11p9goB2rm8_0,The teenagers were hopping through the hopscotch court and attempting a pull-up from the basketball hoop before walking away from it. They were in a playground with multiple basketball hoops visible in the distance.,0 460,v_4Gx_8vuxzAk,What is the woman using to clean the coffee table in the video?,v_4Gx_8vuxzAk_0,The woman is using wood polish and a towel to clean the coffee table.,0 461,v_HMs703DhjQU,Can you describe the clothing of the men in the well-lit kitchen?,v_HMs703DhjQU_0,"The man on the left is wearing a black suit, and the man on the right is Will Smith, the actor wearing a multi-colored shirt.",0 462,v_Jy93pLzV2uw,What is the outcome of the rally?,v_Jy93pLzV2uw_0,The team wearing the orange uniform wins the exchange and celebrates.,0 463,v_6wPVO7I8iIY,Can you describe the process of making a cocktail as shown in the video?,v_6wPVO7I8iIY_0,"The bartender is making a cocktail by picking up various bottles of alcohol, adding flavoring agent, ice cubes, and stirring the mixture in a mixing glass. He then empties the cocktail glass of ice and pours the drink into it. The video shows a cutaway of the ingredients for the drink. At the end of the video, the bartender is seen wiping the bar.",0 464,v_Fb4X1PWfOvY,Can you describe the attire of the woman while she is exercising on the parallel bars in the park?,v_Fb4X1PWfOvY_0,"The woman is wearing a neon green T-shirt, black track pants with white stripes, and white sports shoes.",0 465,v_IfugNwywj-k,Can you describe the old man and his attire as he fixes the bicycle in the well-lit shop?,v_IfugNwywj-k_0,The old man is wearing a black vest over a white shirt while repairing the bicycle in a well-lit shop.,0 466,v_dZsk5Dp_5FE,Can you describe the boy chopping wood in terms of his clothing?,v_dZsk5Dp_5FE_0,The boy is wearing an off-white T-shirt and shorts while chopping wood.,0 467,v_AL1W3HkjJ2Y,Can you describe what the woman is wearing in the basketball court?,v_AL1W3HkjJ2Y_0,The woman is wearing black trousers and a black top while holding a bow with a quiver full of arrows.,0 468,v_j_1kNiGcepU,Can you describe the scene with the two men in the parking lot?,v_j_1kNiGcepU_0,"The harmonica player is wearing a checkered shirt and has a backpack on. The man next to him in a hoodie is standing with his hands in his pockets, bobbing his head up and down before taking out his phone to record the harmonica player.",0 469,v_le7JdKQB65I,Can you describe the woman's outfit in the video?,v_le7JdKQB65I_0,The woman is wearing a white coat over a teal top.,0 470,v_-6dz6tBH77I,Can you describe what the man is holding in his right hand in the video?,v_-6dz6tBH77I_0,The man is holding a disk in his right hand.,0 471,v_BnO8AfQS8yE,Describe the attire of the player who missed the shot.,v_BnO8AfQS8yE_0,The player who missed the shot is wearing a yellow T-shirt.,0 472,v_CvbBSwz-9XI,Can you describe the scene in the video?,v_CvbBSwz-9XI_0,A man is pouring water from a bucket on a dog standing under an open tap while shaking the water dry in slow motion.,0 473,v_-cAcA8dO7kA,Can you describe the initial scene of the video?,v_-cAcA8dO7kA_0,A man is riding a dirt bike in a dirt field with houses visible beyond the field.,0 474,v_9snScUyE8_4,Is the woman washing dishes in the video?,v_9snScUyE8_4_0,"The woman is washing dishes in the well-lit kitchen with a window behind her, while shelves of dishes are visible on one side and a house is visible through the window.",0 475,v_96ADEnJy4GU,Can you describe what the monster truck is doing in the video?,v_96ADEnJy4GU_0,The monster truck is driving through a mud track and splashing mud as it turns.,0 476,v_-D1gdv_gQyw,How does the man light the stack of firewood on fire?,v_-D1gdv_gQyw_0,The man lights the stack of firewood on fire by striking a fire starter with his knife.,0 477,v__a527xEzhkw,Can you describe what the girl is holding while sitting in the room?,v__a527xEzhkw_0,The girl is holding a harmonica.,0 478,v_cH3H-arDsH4,Can you describe the game being played in the video?,v_cH3H-arDsH4_0,The video shows a game of water polo being played in a swimming pool with two teams trying to score goals.,0 479,v_hvhny4-sI-w,Can you describe the presence of cameramen with cameras on tripods in the video?,v_hvhny4-sI-w_0,Cameramen with cameras on tripods are standing in front of the spectators capturing polo match going on in a polo field.,0 480,v_d09u-0k3LdE,Can you describe the woman in the video and what she is doing?,v_d09u-0k3LdE_0,The woman is wearing a red vest and holding a hammer attached to a string. She is standing in a net in a field with a red mat on the ground. She swings the hammer with the string and releases it through the open end of the netting.,0 481,v_B0GCHDqEsRU,Can you describe the surroundings of the couple dancing in the video?,v_B0GCHDqEsRU_0,"Children are running around in the background near the woods, and a man is tending to a barbeque a few feet behind the dancing couple. There is a red truck visible all the way back towards the fence.",0 482,v_aH39BSM0-Ag,"Can you describe the jersey that Samuel Shearin is wearing, including the number?",v_aH39BSM0-Ag_0,Samuel Shearin is wearing a blue-green jersey with the number 24.,0 483,v_iqhdqhVttEM,Can you describe the activity the man is leading?,v_iqhdqhVttEM_0,The man is leading a Zumba class where people are following his lead and dancing during the daytime and a crowd is gathered to watch.,0 484,v_cECycCDw1Nc,Can you describe the components used to make the sandwich shown in the video?,v_cECycCDw1Nc_0,"The ingredients for the sandwich in the video are a French roll, mayonnaise, pizza sauce, tomato slices, shredded lettuce, cheese, and pepperoni.",0 485,v_egowZOcbEkI,Can you describe the outfit of the instructor?,v_egowZOcbEkI_0,The instructor is wearing a white shirt and green shorts.,0 486,v_HURRgbZGz8Q,Can you describe the spear-throw competition being held in the outdoor stadium?,v_HURRgbZGz8Q_0,"The video shows a spear-throw competition where athletes holding spears run and throw them in an outdoor stadium filled with spectators. The landing area has numbered lanes, and a man in a suit is seen near the number 70 marker. The scoreboard with names and throw distances is shown towards the end.",0 487,v_afMQA352X_A,Can you describe the attire of the trainer during the kickboxing practice?,v_afMQA352X_A_0,The trainer is wearing focus mitts on both hands during the kickboxing practice.,0 488,v_l8gg9TYh_B0,Can you describe the attire of the news anchors?,v_l8gg9TYh_B0_0,The woman anchor is wearing a black top and the man anchor is wearing a black suit.,0 489,v_Ds2O0-8Labs,Can you tell the weight of the barbell the man lifts at the end?,v_Ds2O0-8Labs_0,The man lifts a barbell of 130 kilograms at the end.,0 490,v_k1QAWLupB-I,What is the woman holding in front of her face with a picture of a man in it?,v_k1QAWLupB-I_0,"The people at the beginning are holding an Old Spice-branded ping pong paddle, and the woman is holding a paddle in front of her face with a picture of the man she is standing next to on it.",0 491,v_9UvVeUYQLgA,Can you describe some of the objects used for cover in the paintball arena?,v_9UvVeUYQLgA_0,"Cable drums, old tires, weeds, and cinderblocks are used as cover in the paintball arena.",0 492,v_dEpUIpmBvow,Is the man climbing the rock during the day or night?,v_dEpUIpmBvow_0,The man is climbing the rock during daytime.,0 493,v_EZyLBq2jJtE,Can you describe Bethany's attire and actions?,v_EZyLBq2jJtE_0,"Bethany is shaving her legs while wearing a red T-shirt, black & purple short track pants, white sports shoes, rings on both hands, and a bracelet on her left hand. She is also speaking to the cameraman.",0 494,v_2fzIi1lPd8U,Can you describe the people in the video?,v_2fzIi1lPd8U_0,The video shows an elderly woman playing with a little boy wearing a red shirt and a little girl standing on the side of the porch.,0 495,v_C7yd6yEkxXE,Can you describe the environment surrounding the dirt bike track?,v_C7yd6yEkxXE_0,The video shows a dirt bike track surrounded by trees and vegetation with a cloudy sky in the background.,0 496,v_IN23CO8Kotk,"On what container is the butterfly painted, that the parrot is eating from on the kitchen counter?",v_IN23CO8Kotk_0,The parrot is eating cream from a pink coffee cup with a butterfly painted on it.,0 497,v_BFChXuwZ4wo,Can you describe the stencil the woman got on her wrist?,v_BFChXuwZ4wo_0,The woman got a stencil tattooed on her wrist at the tattoo parlor.,0 498,v_9k19UUJtldg,Can you describe the first scene in the video?,v_9k19UUJtldg_0,"In the first scene, the boy is playing ping-pong alone in a room.",0 ================================================ FILE: data/text_generation_benchmark/Generic_QA.csv ================================================ ,video_name,question,question_id,answer,question_type 0,v_hFi6S_guB7I,What is the appearance of the women dancers at the beginning of the video?,v_hFi6S_guB7I_0,"The women dancers are a group of five, wearing different colored belly-dancing outfits, holding their right hands up and facing away from the audience.",0 1,v_18yZR3NDaXM,Who can be seen scattered throughout the field in the first clip?,v_18yZR3NDaXM_1,People can be seen scattered throughout the field in the first clip.,0 2,v_BjjN_aq_wq4,What is happening in the kitchen sink in the video?,v_BjjN_aq_wq4_2,"In the first clip, a woman is scrubbing dirty dishes using soap and a board while speaking to the camerawoman. In the second clip, the same woman is seen washing plates with sunlight streaming through the window in front of her and light coming through the side door. In the third clip, a young girl is cleaning dishes in the sink filled with foam while speaking into the camera. The video ends with two girls cleaning dishes in the same kitchen sink.",0 3,v_DJTvj9lfSWU,What is the man doing in the rooftop video clip?,v_DJTvj9lfSWU_3,The man is cleaning his foot and then shaving his right leg with a razor blade.,0 4,v_0BtHd6dvm78,What is the man wearing?,v_0BtHd6dvm78_4,The man is wearing a white hoodie and glasses while washing dishes.,0 5,v_dKJMP8EmZjw,What color sail is the dinghy in the beginning of the video using and what color is the sailor’s wetsuit?,v_dKJMP8EmZjw_5,The dinghy in the beginning of the video has white sails and the sailor’s wetsuit is red.,0 6,v_kGdxtU3NwWo,What is the man doing with the shoe polish tin and glass vile with a clear liquid?,v_kGdxtU3NwWo_6,The man applies the liquid and the polish to a piece of cloth and polishes the shoe with it.,0 7,v_b4xvXZq5uD8,Who takes the trimmer from the boy and continues trimming the man's hair?,v_b4xvXZq5uD8_7,Another individual takes the trimmer from the boy and starts trimming the hair of the man.,0 8,v_aLb79wtvxoQ,What color is the sink and how many basins does it have in the video?,v_aLb79wtvxoQ_8,The sink in the video is mint green and has two basins.,0 9,v_KlgrI3Ngwv0,What techniques does the athlete perform during the routine on the pommel horse?,v_KlgrI3Ngwv0_9,"The athlete performs a circle around the pommel horse, scissors, a handstand, a routine where he moves the length of the pommel horse, and finishes with a handstand and an upside-down split.",0 10,v_jN-jnIgzd6k,What type of drills are the children doing in the video?,v_jN-jnIgzd6k_10,"The children are doing different stances, punch and kick drills along with movement.",0 11,v_araMJB23T1s,What is visible at the bottom after the boy jumps from the bungee platform?,v_araMJB23T1s_11,A stream is visible at the bottom after the boy jumps from the bungee platform.,0 12,v_dW6OZV43ulU,What does the man use to clean the couch in the video?,v_dW6OZV43ulU_12,The man sprays foam cleaner on a brush and uses it to clean the couch.,0 13,v_JcAAwYpJhm8,What cartoon character is on the plate that the little girl washes?,v_JcAAwYpJhm8_13,The little girl washes a plate with Dora the Explorer on it.,0 14,v_aYxni8ohTfU,What colors of vest are being worn by the opposing teams in the volleyball match?,v_aYxni8ohTfU_14,The Italian team is wearing red vests while the Latvian team is wearing blue vests.,0 15,v_6Xsfwn5M6qs,What routine does the man perform on the parallel bars?,v_6Xsfwn5M6qs_15,"The man performs a swinging routine while holding on to both parallel bars with his hands. He also holds a position with his legs parallel to the ground while holding himself up from the bars. Finally, he attempts to land while performing multiple backswings.",0 16,v_CecqF_uHeOI,What items did the man use to clean the glass door?,v_CecqF_uHeOI_16,"The man used a wiper, a smaller wiper, cleaning fluid, and a blue towel to clean the glass door.",0 17,v_7-taNK5mW8E,What happens after the player is pushed into the pool?,v_7-taNK5mW8E_17,The ball is snatched by the person who pushed the first player down.,0 18,v_IcR28Yqt4mY,What are the contestants holding in their hands and what are they wearing?,v_IcR28Yqt4mY_18,The contestants are holding axes in their hands and they are all wearing blue polo shirts and white trousers.,0 19,v_B3xMfP_UOt4,What does the man do as he approaches the high jump bar?,v_B3xMfP_UOt4_19,"As he approaches the high jump bar, the man clears it by flopping backward over the bar.",0 20,v_4XnXyKYxnQQ,What is visible in the distance at the shore?,v_4XnXyKYxnQQ_20,A hill is visible in the distance at the shore.,0 21,v_hq48S65dlyo,What is the woman wearing and what is she doing in the beginning of the video?,v_hq48S65dlyo_21,"The woman is wearing a black outfit and boxing gloves, and she starts punching into a punch mitt worn by a man in the beginning of the video.",0 22,v_gWbIoFrpwTY,What safety gear is the little boy wearing while skateboarding?,v_gWbIoFrpwTY_22,"The boy is wearing a helmet, kneepads, and elbow guards while skateboarding.",0 23,v_eoSwoeLmeyQ,What are the couples doing in the video?,v_eoSwoeLmeyQ_23,The couples are salsa dancing on a well-lit wooden floor.,0 24,v_1d_U_2HIPmY,What did the man do with the hammer?,v_1d_U_2HIPmY_24,The man swung the hammer around his body two times and then swung it two more times while turning before releasing it through the open side of the cage.,0 25,v_Hz7-mBFGsSs,What is happening in the video?,v_Hz7-mBFGsSs_25,"A crying girl sitting on a barber chair is having her hair cut by a woman while other people are visible in the well-lit salon. The girl refuses the lollies brought to her by another woman and cries throughout the video while the barber cuts and combs her hair, sprays water, and does touch-up cuts.",0 26,v_B_U7vUtoCKY,Who is the main player that the video follows and what is he trying to do?,v_B_U7vUtoCKY_26,The main player that the video follows is Cole Flowler who is wearing a white jersey. He is attempting to check the ball from the other team members.,0 27,v_7pfHxav4b0U,What is the woman wearing while rowing down the rapid river?,v_7pfHxav4b0U_27,The woman is wearing a life vest and a white helmet.,0 28,v_htzAYwoAZkg,What is visible through the windows in the gym?,v_htzAYwoAZkg_28,Parked cars are visible through the windows in the gym.,0 29,v_ijrjRNwZjqQ,What do the two men do after speaking?,v_ijrjRNwZjqQ_29,They walk over to the other side of the stage.,0 30,v_IhmtmKxEU40,What equipment are the people using for surfing in the video?,v_IhmtmKxEU40_30,The people in the video are windsurfing using boards and sails.,0 31,v_3zpODTqnYLs,What is the toddler doing when another boy with a towel walks towards her?,v_3zpODTqnYLs_31,"The toddler is washing her face with pool water while sitting on the pool wall with a man holding onto her. She is laughing and looking at the boy with the towel draped over himself, who then walks towards her for a moment before returning back.",0 32,v_1KONAdZGdWU,What color is the T-shirt that the girl is wearing?,v_1KONAdZGdWU_32,The girl is wearing a blue T-shirt.,0 33,v_DIhyfNJAm-M,What are some instruments being played by the backing musicians in the video?,v_DIhyfNJAm-M_33,A cutaway shows various instruments being played by the backing musicians throughout the video.,0 34,v_K6QunmuTZOQ,What type of exercise is the woman practicing in the gym?,v_K6QunmuTZOQ_34,The woman is practicing the movement patterns of weightlifting.,0 35,v_l7qSKJyq6mA,What is visible on the man's left?,v_l7qSKJyq6mA_35,A small wooden drawer and a pile of white clothes hangers are visible on the man’s left.,0 36,v_2VZumBKJuPs,What is the man wearing while piercing the woman's belly button?,v_2VZumBKJuPs_36,The man is wearing black gloves while piercing the woman's belly button.,0 37,v_7EeO9V2B574,What is the background visible behind the women in the video?,v_7EeO9V2B574_37,Two palm trees and a hedge wall are visible in the background behind the women in the video.,0 38,v_IgDBDaIoNAM,What is visible behind the man and the woman when they are taking the fighting pose?,v_IgDBDaIoNAM_38,There is a wall with graffiti behind the man and woman.,0 39,v_325CAs4hhq8,What do players from other teams do in the video?,v_325CAs4hhq8_39,"In the next clip, several girls from other teams are introduced.",0 40,v_CTJej0rZMiI,What instrument is the man playing in the video?,v_CTJej0rZMiI_40,The man is playing an accordion.,0 41,v_CTyvQHkAKuY,Who is wearing a scarf in the video and what do they do?,v_CTyvQHkAKuY_41,A woman wearing a scarf walks up to the man playing the piano and speaks to him briefly before beginning to sing.,0 42,v_3M290KZV5lo,Who else is visible in the gym besides the girl performing her routine?,v_3M290KZV5lo_42,There are judges sitting by the edge of the padding behind a table and people sitting or standing across the gym. There are also people visible on the balcony looking down towards the gym. There are chairs for people to sit on the balcony.,0 43,v_itXYuf_Cj_Q,What does the man do with the banana peel?,v_itXYuf_Cj_Q_43,The man uses the banana peel to wipe a shoe.,0 44,v_JspVuT6rsLA,What instrument is the little boy playing in the video?,v_JspVuT6rsLA_44,The little boy is playing the violin.,0 45,v_cPIsE2ZCWzM,What is the name of the tournament that the team in green polo shirts won?,v_cPIsE2ZCWzM_45,The team in green polo shirts won The Barbour Cup tournament.,0 46,v_IL8__uSFpqg,What is the man wearing in the video?,v_IL8__uSFpqg_46,The man is wearing a blue polo shirt.,0 47,v_JguRZtFN-Ck,What is the woman wearing while playing squash in the video?,v_JguRZtFN-Ck_47,The woman is wearing a white t-shirt and shorts.,0 48,v_cFOaL4Ir4hg,What type of dives are shown in the video?,v_cFOaL4Ir4hg_48,"Several types of dives are shown in the video, including backflip dives and front flip dives.",0 49,v_BdRH3lpopLQ,What happened at the end of the volleyball game between USC and BYU?,v_BdRH3lpopLQ_49,"The team on the right got the ball and passed it between themselves four times before passing it to the other team. The other team started celebrating before the game was won. The ball landed near them and they lost the game. The first team, USC, celebrated.",0 50,v_JHKAcpYlxkQ,What is happening in the beginning of the video?,v_JHKAcpYlxkQ_50,A tennis player is starting a serve on an outdoor tennis court while practicing with a basket of tennis balls kept a few feet behind her.,0 51,v_1xBdquA6dx8,Which girl's jersey number is shown in the video?,v_1xBdquA6dx8_51,The girl in the blue-wearing team with the number ten jersey is shown in the video.,0 52,v_kdOsmDACtqw,What is the man wearing who first appears in the video?,v_kdOsmDACtqw_52,"The man first seen in the video is wearing a white t-shirt and a backward-turned cap, and he has a backpack.",0 53,v_kIFHChO_-vg,What is the toddler doing in the first clip of the video?,v_kIFHChO_-vg_53,"The toddler is sitting on a vanity table, with hair rollers on her hair, while listening to her mother.",0 54,v_5P9Tbut04xE,What does the bald man in the white shirt explain in the video?,v_5P9Tbut04xE_54,The bald man explains how to use different holes on a harmonica to get different sounds and how to correctly position the harmonica near the mouth and blow.,0 55,v_7gaC3b5nJqs,What type of clothes are the women wearing?,v_7gaC3b5nJqs_55,The women are wearing gym clothes.,0 56,v_15yU0R2MBQM,What is the girl wearing while brushing her teeth in the video?,v_15yU0R2MBQM_56,The girl is wearing a white t-shirt while brushing her teeth in the video.,0 57,v_kgz7c2kb4Rg,What is the woman in the video wearing?,v_kgz7c2kb4Rg_57,The woman in the video is wearing a life vest and a white cap.,0 58,v_0k0xNs8Zjb4,What moves does the girl perform in the video?,v_0k0xNs8Zjb4_58,"The girl performs backflips, standing back-tucks, back handspring tucks, running front flips and a tumbling sequence consisting of backward flips and running front flips.",0 59,v_9pavfCL1HvU,What happened after a player threw the ball towards the goal?,v_9pavfCL1HvU_59,The throw was intercepted by an opponent.,0 60,v_i5qTK0mInTc,What are the two old women doing at the table?,v_i5qTK0mInTc_60,The two old women sitting at the table are drinking coffee and talking to each other. Another woman joins them later.,0 61,v_EK7qW-oavQY,What are the people on the bench wearing and where are they sitting?,v_EK7qW-oavQY_61,Some of the spectators on the bench are wearing red shirts and some are wearing swimwear. They are sitting on the poolside.,0 62,v_jCxQQ9DMpT0,What instructions does the man in the blue polo shirt give to the archer?,v_jCxQQ9DMpT0_62,The man in the blue polo shirt instructs the archer on how to grip the bow.,0 63,v_4NPVpI9zUpI,What is the fifth-degree jump called and how does Stefan perform it?,v_4NPVpI9zUpI_63,The fifth-degree jump is called the 'Scissor kick'. Stefan performs it by jumping one leg after another over the bar as several clips are shown in the video.,0 64,v_Ku76zinwWkg,What are the obstacles the girl jumps over in the video?,v_Ku76zinwWkg_64,The girl jumps over obstacles as she makes her way to a sand pit and finally performs a high jump.,0 65,v_Hy54nZSDxTk,What is the color of the shirt worn by a person in the video?,v_Hy54nZSDxTk_65,A person wearing an orange shirt is visible in the video.,0 66,v_KApqxr02rcQ,What is the name of the player in the dark blue uniform who scores three goals and is the focus of the video?,v_KApqxr02rcQ_66,The player in the dark blue uniform who scores three goals and is the focus of the video is named 'Jessica Skillings'.,0 67,v_BBKSKU6dGGk,What is the man wearing and what is he doing in the video?,v_BBKSKU6dGGk_67,The man is wearing a blue jacket and he is shoveling snow on a snowy sidewalk. He is slowly clearing snow as he walks forward.,0 68,v_-HpCLXdtcas,What is the man doing in the video and what is he wearing?,v_-HpCLXdtcas_68,The man is lifting a barbell over his head. He is wearing a black polo shirt and shorts.,0 69,v_9VtxNvLx6zA,Who serves the ball first?,v_9VtxNvLx6zA_69,The girl holding the volleyball serves the ball first.,0 70,v_AwgGYaV1lT0,What objects are visible behind or around the man?,v_AwgGYaV1lT0_70,"There are trailers, a truck, a tent, a bike, a foldable table with chairs, and a log placed upright in front of the man.",0 71,v_0X0u_3xUBPE,What is the man doing in the video?,v_0X0u_3xUBPE_71,The man is practicing Tai Chi by slowly moving his hands and feet and going over several stances over a few minutes.,0 72,v_iABuDhagUm8,What happens to the log after the man swings the axe for the final time?,v_iABuDhagUm8_72,The log finally breaks apart and falls on the ground.,0 73,v_jt-Vnap5KP4,What is the old man wearing in the video?,v_jt-Vnap5KP4_73,"The old man is wearing winter clothes, a hat, and sunglasses in the video.",0 74,v_agu58IVL7IQ,What kind of tricks is the man performing while skating?,v_agu58IVL7IQ_74,The man with the skateboard is performing flip tricks while skating.,0 75,v_9AfQ2Q-96oE,What is happening in the video?,v_9AfQ2Q-96oE_75,The video shows a man competing in a disk throw competition. He is standing in the middle of a netting with an opening on the side for throwing the disk. Hundreds of spectators are visible sitting on seats. The man begins to spin to build momentum and throws the disk. A referee marks the spot where the disk landed. Replays of the throw are played several times and there are several clips of the man making different disk throws one after another.,0 76,v_A904-cbaYDw,What is the man wearing?,v_A904-cbaYDw_76,The man is wearing all-black clothing.,0 77,v__B7rGFDRIww,What is happening in the beginning of the video?,v__B7rGFDRIww_77,A woman is doing a pirouette in a few blurry black-and-white frames.,0 78,v_5tFfEA1JWjA,What is the boy on the left holding and what does he do with it?,v_5tFfEA1JWjA_78,The boy on the left is holding a basketball and he dunks it through the basket. He catches the ball as it comes through the basket and continuously dunks the ball by jumping high. The boy continues to dunk the ball from either side of the basket while jumping.,0 79,v_AQnp2QAnwI0,What kind of projection is displayed on the screen behind the dancers?,v_AQnp2QAnwI0_79,The video shows a screen at the back of the stage with a projection on it.,0 80,v_ANaMmXJFE54,What kind of stunts do the cheerleaders perform?,v_ANaMmXJFE54_80,"The cheerleaders perform basket tosses where the bases lift and throw flyers into the air, and the flyers perform acrobatic movements before landing back down. They also do flips and form different formations.",0 81,v_7orO93DICYw,What kind of moves is the man performing on the balance beam?,v_7orO93DICYw_81,"The man is practicing various gymnastics moves, including a backflip and other balancing techniques.",0 82,v_9hTcvGUnMBs,What is the objective of the people in the field?,v_9hTcvGUnMBs_82,The objective of the people in the field is to compete in a high jump contest where they attempt to jump over a horizontal bar placed with an elevated foam pad beside it.,0 83,v_60tIsGR0Zzg,What is happening in the video?,v_60tIsGR0Zzg_83,"A boy is mowing the lawn with a lawn mower. He struggles to move it forward, and is seen starting to mow one corner of a yard before moving on to the next patch of lawn. He gets stuck in a subsequent patch and pulls back the mower. There is a black car and a line of houses visible in the background, and a silver sedan parked in the driveway next door.",0 84,v_IRua6QGP-Ow,What method does the bartender use to taste the drink?,v_IRua6QGP-Ow_84,The bartender dribbles some drink onto the back of his hand using a long spoon to taste the drink.,0 85,v_DOI6tsATsE4,What is the boy doing in the video?,v_DOI6tsATsE4_85,The boy wearing a dark blue sweatshirt is sitting at a table and holding his right hand to the side of his head while looking into the camera.,0 86,v_ej9TkJVjK9M,What is the man doing at the beginning of the video?,v_ej9TkJVjK9M_86,The man is standing behind a barbell.,0 87,v_8L1UjGLOCeI,What does the woman do after completing a pass on the hopscotch court?,v_8L1UjGLOCeI_87,"After completing a pass on the hopscotch court, the woman turns around and hops back to the spot she started from.",0 88,v_c7S423zJqPo,Who is the only man in the aerobics class and where is he located?,v_c7S423zJqPo_88,The only man in the aerobics class is wearing a green t-shirt and he is working out next to the mirror.,0 89,v_Bkhr72sazvQ,What is the man in the video promoting?,v_Bkhr72sazvQ_89,The man in the video is promoting a weight loss product.,0 90,v_d-RYiiPzVKg,What does the man do after adding a few drops of oil inside the vinegar bottle?,v_d-RYiiPzVKg_90,The man shakes the vinegar bottle to blend the mixture.,0 91,v_BmLDHLKiIdQ,What kind of bow are the archers using?,v_BmLDHLKiIdQ_91,The archers are shooting arrows through a compound bow.,0 92,v_9VflCeoPr9I,Who caught the ball after the little boy threw it to the man wearing the red shirt?,v_9VflCeoPr9I_92,The man wearing the red shirt caught the ball after the little boy threw it to him.,0 93,v_1kwIYXB4b8s,Who is getting their head shaved in the video?,v_1kwIYXB4b8s_93,A man is getting his head shaved in the video.,0 94,v_kPn9NzU4W48,What is the color of the walls on the basketball court where the video takes place?,v_kPn9NzU4W48_94,The walls on the basketball court are painted white at the top half and blue at the bottom.,0 95,v_4iFlM_Zu7xs,What type of stunts are performed by the riders in the video?,v_4iFlM_Zu7xs_95,The riders perform a series of jumps on the dirt track.,0 96,v_Dbas61NkTV0,What roles do the two men in black outfits play during the cheer squad’s routine?,v_Dbas61NkTV0_96,The two men in black outfits are supervising the stunts being performed by the cheer squad on stage.,0 97,v_j6ElczD-Pw4,What is the girl doing with the luffa?,v_j6ElczD-Pw4_97,She picks up the luffa and taps it on her face. Suds stick to her face. She then washes it off with water.,0 98,v_e3DB_y78IHc,What animals are shown grazing at the end of the video?,v_e3DB_y78IHc_98,"The video ends with shots of ostriches, alpacas, and camels grazing one after another.",0 99,v_9ZVWD0ZKXZg,What safety equipment is the boy wearing while climbing?,v_9ZVWD0ZKXZg_99,The boy is wearing a harness and a belay rope is fastened to him.,0 100,v_1dDAcUliXrQ,What happens to one of the women in the first team during the game?,v_1dDAcUliXrQ_100,One of the women in the first team walks out of the court and picks up a purse while walking towards the back of the court. She briefly speaks to one of her teammates while walking away.,0 101,v_KvtqF0LaWU0,What is the girl wearing and what is the color of the kitchen counter behind her?,v_KvtqF0LaWU0_101,"The girl is wearing a red outfit and glasses, and the kitchen counter behind her is black stone.",0 102,v_3VjaC7wdMso,What is the girl doing in the video?,v_3VjaC7wdMso_102,The girl is sitting by an open window playing the piano and referencing the sheet music in front of her. She starts to sing as she is playing.,0 103,v_cms1BP4eKOA,What kind of drill are the players performing in the video?,v_cms1BP4eKOA_103,The players are performing a point guard drill.,0 104,v_Ivq9_wPFNs4,What is displayed on the screen when the video starts and who is performing the high jump?,v_Ivq9_wPFNs4_104,"When the video starts, a graphic displaying the name and stats of Britney Reese, a woman in sportswear, is displayed. She is the one performing the high jump into a sand pit.",0 105,v_dO01vfB9z4g,What is the woman wearing and what is she doing in the video?,v_dO01vfB9z4g_105,The woman is wearing a yellow top and recording the boy with her phone.,0 106,v_4-KiAur4dI8,What is the event shown in the video and what brand is sponsoring it?,v_4-KiAur4dI8_106,"The event shown in the video is a Red Bull CROSSWAYS competition which features kayaking, running, and cycling. The Red Bull brand is sponsoring the event.",0 107,v_1XNHcfxTqW0,What is the man doing at the beginning of the video?,v_1XNHcfxTqW0_107,The man is playing a harmonica while sitting on the sidewalk.,0 108,v_AE2gHOwcV14,What does the girl do once she reaches the end of the balance beam?,v_AE2gHOwcV14_108,"Once the girl reaches the end of the balance beam, she turns around and performs a front summersault.",0 109,v_bphckj0BV5U,What did the woman use to start the fire?,v_bphckj0BV5U_109,The woman used a carbon knife and a Ferro rod to start the fire after breaking up and placing dry leaves and tinder in front of her. She also held up a green Bic lighter and a box of matches during the demonstration.,0 110,v_E5YBb4rzV30,What is the woman doing in the opening shot of the video?,v_E5YBb4rzV30_110,"In the opening shot of the video, the woman is standing in a kitchen behind a counter.",0 111,v_dRF1C_sBE5M,What is happening in the beginning of the video?,v_dRF1C_sBE5M_111,A man wearing a green jacket is standing near a Dodge truck while trying to dislodge an axe stuck in a log. A dog is standing next to the man. A man in a t-shirt and khaki pants walks to the back of the truck with a bottle of beer.,0 112,v_H33jSILKmfI,What is the boy wearing who is performing the training drills in the gym?,v_H33jSILKmfI_112,The boy is wearing a white martial arts uniform while performing the training drills in the well-lit gym with a light wooden floor.,0 113,v_JiNcVb97CnA,What kind of clothing are the couple wearing?,v_JiNcVb97CnA_113,The man is wearing a white t-shirt and the woman is wearing a black coat over a pink top.,0 114,v_lIo8HfzzSNs,What ingredients are added to the dressing?,v_lIo8HfzzSNs_114,The chef adds two T-spoons of cream and two T-spoons of mayonnaise to a glass bowl. He mixes the two ingredients and adds some salt and pepper to it.,0 115,v_dN8LBey17O8,What is the man doing in the video?,v_dN8LBey17O8_115,The man is mowing his lawn.,0 116,v_I7slpTgl0jc,What is the man doing in the video?,v_I7slpTgl0jc_116,"The man in the video is practicing a hammer throw in a field using a handle attached to a hammer, standing on a round platform surrounded by a lawn.",0 117,v_ks018ZYzrx4,What is the boy wearing who is seen pushing a dirtbike?,v_ks018ZYzrx4_117,"The boy is wearing a black jacket, a cap, and sunglasses.",0 118,v_KsFid_YVsn0,What is the color of the dresses that the girls are wearing in the video?,v_KsFid_YVsn0_118,All the girls are wearing black dresses.,0 119,v_hFpSoRlpyMo,What happened after the batsman hit the ball through the off side towards the boundary and a fielder tried to prevent it from touching the rope?,v_hFpSoRlpyMo_119,"The fielder prevented the ball from going over the boundary line but fell on the other side. He was able to throw the ball to the wicket player who removed the bails from the stumps, resulting in an appeal for a run out that was ultimately confirmed by the third umpire, resulting in the batsman being out.",0 120,v_aOxRwTlkY80,What ingredients did the man use to make the pasta dish?,v_aOxRwTlkY80_120,"The ingredients used in making the pasta dish include parsley, olive oil, garlic, chilies, and dry pasta.",0 121,v_4VdS1eN3dv4,Where are the people playing cricket in the beginning of the video?,v_4VdS1eN3dv4_121,The people are playing cricket in a backyard.,0 122,v_EhzHU0gkrzA,What is the boy wearing while doing gymnastics using a parallel bar in the video?,v_EhzHU0gkrzA_122,The boy is wearing tights.,0 123,v_6G8m-vsGTA8,Who is getting their hair cut in the video?,v_6G8m-vsGTA8_123,The man is getting his hair cut in the hair salon.,0 124,v_kfO5PGlsMJw,What type of clothing is the first boy wearing and what is his position on the stage?,v_kfO5PGlsMJw_124,The first boy is wearing a karate uniform and holding a stance on the stage.,0 125,v_86Unahb4sJM,What kind of makeup products does the woman use in the video?,v_86Unahb4sJM_125,"The woman uses concealer, foundation, bronzer, eyeliner, mascara, and lipgloss in the video.",0 126,v_jN2CFk0xKp8,What is the man in the red polo shirt doing in the office in the first clip?,v_jN2CFk0xKp8_126,"In the first clip, the man in the red polo shirt and blue trousers is vacuuming the carpet in the office while carrying a vacuum on his back.",0 127,v_JG7T6qtO4jg,What move does the boy in olive shorts demonstrate?,v_JG7T6qtO4jg_127,"The boy in olive shorts demonstrates the ""Zulu Spin"" move.",0 128,v__ja1fre9OTE,What types of movements did the gymnast perform on the balance beam?,v__ja1fre9OTE_128,"The gymnast performed a handstand, a front flip, a back flip, different balance poses, turns, jumps, and leaps on the balance beam.",0 129,v_82EtiBkAsPg,What is seen in the background while the man is playing the bagpipe?,v_82EtiBkAsPg_129,Glasses and bottles are visible on the shelves behind the man.,0 130,v_7OcxT66BxX0,What item did the man fix back on the stand before walking off?,v_7OcxT66BxX0_130,The man fixed the mic back on the stand before walking off.,0 131,v_aDe5hUB3AdY,What training are the sailors performing in the video?,v_aDe5hUB3AdY_131,The sailors are performing capsizing training.,0 132,v_5qY9yPt-5Go,What is happening in the starting scene of the video?,v_5qY9yPt-5Go_132,A black French bulldog is standing on a checkered red tablecloth while a boy places a cup of coffee in front of it. The dog then starts drinking the coffee and the boy attempts to move the dog away from the cup.,0 133,v_hvrKRg166eQ,What is happening in the video?,v_hvrKRg166eQ_133,"In the video, there are different clips of people and events. Initially, there are three people sitting on a curved couch behind a coffee table with cups on it. A woman is sitting at the center with two men on either side of her. Next, a man in a suit is speaking to the camera. Then, a teen student is shown giving a presentation in a classroom. Following that, there is a clip of girls in cheerleader outfits sitting on a bench, and then a man in a black T-shirt and a cap giving instructions to cheerleaders in a hall lit by overhead lights. The video also includes multiple cheer squads performing on a stage, including men who are in back spots standing behind the bases. There are also clips of girls watching the stage and walking away crying, cheerleaders training, and finally the cheerleaders celebrating.",0 134,v_a_JlhLnJM98,What is the woman wearing and what is she doing in the video?,v_a_JlhLnJM98_134,The woman is wearing a green sweater and is standing behind an ironing board with a shirt and an iron on it. She is ironing a men`s cotton dress shirt while demonstrating the process in a well-lit room with a window behind her.,0 135,v_9Ufy_JGbnys,What kind of event is taking place in the video?,v_9Ufy_JGbnys_135,The video shows a tango performance at an event with tables arranged in a hall and attendees seated watching the dancers.,0 136,v_9eniCub7u60,What is the attire of the man in the video?,v_9eniCub7u60_136,The man in the video is wearing a checkered shirt.,0 137,v_k1GP0cJOXbQ,What is the color of the kayak that the person holding a paddle is standing in front of?,v_k1GP0cJOXbQ_137,The person holding a paddle is standing in front of a yellow kayak.,0 138,v_7bwruwic1CI,What happens in the first clip of the video?,v_7bwruwic1CI_138,Players wearing orange uniforms and blue helmets celebrate on a baseball field.,0 139,v_bYxVbXzQToI,What is the outfit of the man sitting on the chair?,v_bYxVbXzQToI_139,The man sitting on the chair is wearing a white suit.,0 140,v_hI11n4_r178,Who is leading the workout routine and what is he wearing?,v_hI11n4_r178_140,The leader who is calling out instructions is a man wearing a black outfit.,0 141,v_hP-xRyx88aA,What details can you provide about the woman's pole-vaulting?,v_hP-xRyx88aA_141,"The woman is wearing a black outfit while pole vaulting during the daytime in an outdoor field. She plants her pole to go over the bar, landing on the foam mat on the other side. A referee is standing near the bar with a big measuring stick while other people are visible around the bar. In another clip, the same woman is now wearing a white jacket and holds her pole at the starting point. She runs towards the bar and jumps over it, landing on the other side. In both instances, she takes a drink from a bottle of water afterwards.",0 142,v_HxrtuZSCwvY,What is the boy holding and what is he wearing?,v_HxrtuZSCwvY_142,The boy is holding a violin and wearing a sweater vest.,0 143,v_af05Mqm03Y4,What color T-shirts are the players wearing?,v_af05Mqm03Y4_143,One player is wearing a white T-shirt and the other is wearing a grey T-shirt.,0 144,v_ddzfgHw_qlU,What color is the dress shirt of the man playing the harmonica?,v_ddzfgHw_qlU_144,The man is wearing a grey dress shirt.,0 145,v_h_r8gioFi4k,What type of moves were the woman performing during the kickboxing practice?,v_h_r8gioFi4k_145,"The woman was practicing punching, kicking and occasionally using her elbows on the man.",0 146,v_EnMS9O1U6E0,What number tag is the man wearing on his vest and what color are his shorts?,v_EnMS9O1U6E0_146,The man is wearing the number tag 2736 on his vest and his shorts are blue.,0 147,v_CeXtKbFnPIQ,What is the man wearing and what is he holding?,v_CeXtKbFnPIQ_147,The man is wearing a black shirt and black track pants. He is holding a raquet and a tennis ball.,0 148,v_K_ia4VP3w2c,What colors of eyeshadow does the makeup artist use on Irina Shayk?,v_K_ia4VP3w2c_148,The makeup artist uses different colors of eyeshadow on Irina's eyelid.,0 149,v_IDIALY6Ayk8,What is shown in the shot at the end of the video?,v_IDIALY6Ayk8_149,The shot at the end of the video shows the facade of the winery.,0 150,v_ij9czNGMR5I,What type of clothing is the man wearing in the video?,v_ij9czNGMR5I_150,The man is wearing a black shirt and a black cap.,0 151,v_jEOtcfk220s,What color uniforms are the players on the left wearing?,v_jEOtcfk220s_151,The players on the left are wearing blue uniforms.,0 152,v_j6OcN4OQZVM,What type of outfit are the breakdancers wearing in the video?,v_j6OcN4OQZVM_152,The breakdancers are wearing black outfits.,0 153,v_bz4QwqHiVlo,What is the man wearing in the video?,v_bz4QwqHiVlo_153,"In the video, the man is wearing a purple shirt.",0 154,v_hPYGgv_75SY,What happens after the woman throws the hammer in the field?,v_hPYGgv_75SY_154,"In a cutaway shot, a couple on a blanket in the field panics and runs to the side as the hammer attached to a string lands on the blanket they were on.",0 155,v_jWH-2aa1gJY,What instrument is the girl holding?,v_jWH-2aa1gJY_155,The girl is holding a guitar.,0 156,v_BAtlo_AGFWs,What food item is Chris Hadfield holding in the beginning of the video?,v_BAtlo_AGFWs_156,Chris Hadfield is holding a tortilla in his hand in the beginning of the video.,0 157,v_9lAT3oA9Ixs,What is the man doing in the video and what is he wearing?,v_9lAT3oA9Ixs_157,"In the video, a man wearing a blue jacket and blue jeans is standing in a wooded area and using an axe to chop wood placed on a tree stump. He is picking up the chopped pieces and stacking them with uniform lengths of wooden logs behind him. After he has chopped the current piece, he picks up another wooden block and places it on the tree stump. The video ends with the man coming back to stand over the block.",0 158,v_0rr7iGHamw0,What is Valarie doing with the ironing board and iron?,v_0rr7iGHamw0_158,Valarie is using the iron on transfer to imprint a design on a t-shirt that is laying on the ironing board.,0 159,v_6utacRir3uM,What happens to the man wearing black in the video?,v_6utacRir3uM_159,"As the instructor issues a new instruction, the man wearing black trips and falls down over his aerobics step.",0 160,v_5cijPqKVc84,What types of kayaks are shown in the video?,v_5cijPqKVc84_160,"The video shows kayaks being rowed in rapids, in the sea, in different rivers, and with open and closed cockpits.",0 161,v_l5ZUUChppHU,What color are the trousers worn by the contestants on the right?,v_l5ZUUChppHU_161,The contestants on the right are wearing light-colored trousers.,0 162,v_52Xw6TZcysc,What event is the woman attempting to do in the video?,v_52Xw6TZcysc_162,The woman is attempting to do a long jump.,0 163,v_l_0HvMt2tGg,What position is the little boy playing in the video and what team is he playing for?,v_l_0HvMt2tGg_163,The little boy is playing in different positions throughout the video and is shown wearing a red jersey for the Salem lacrosse team. He is also shown wearing a white jersey while doing a face-off at the start of a new game.,0 164,v_1jgsRbGzCls,What is the video about?,v_1jgsRbGzCls_164,"The video is about people practicing tai chi, a martial art practiced for its health benefits, in different locations including a studio, outdoors, and a hospital. It includes footage of people practicing individually and being taught by others, as well as historical footage of tai chi being taught in 1957.",0 165,v_kl-2y3jtPNE,Who is speaking to the camera and what clothes is he wearing?,v_kl-2y3jtPNE_165,A boy wearing a school uniform is speaking to the camera. He is wearing a white shirt and a green tie.,0 166,v_j_r7zJWxI8w,What brand was the logo on the t-shirt of the man on the left?,v_j_r7zJWxI8w_166,The logo on the t-shirt of the man on the left was 'Adidas'.,0 167,v_l_pp-1qu9Ig,What steps did the woman take to wrap the brown cardboard box?,v_l_pp-1qu9Ig_167,"The woman unrolled a roll of wrapping paper, placed the brown cardboard box on it, cut the wrapping paper based on the size of the box, wrapped the box and taped it shut, folded the sides of the box carefully, and folded it using tape. She then turned the wrapped box on every side to show the wrapping.",0 168,v_8r4bF9RF0Kc,What happens after the batsman hits the ball?,v_8r4bF9RF0Kc_168,The batsman and non-striker start running between the wickets while the fielders start looking for the ball.,0 169,v_iUiXNXRs4rU,What problem is the man fixing in the video?,v_iUiXNXRs4rU_169,"The chain on the bike in front of the man is broken, and he is showing how he is going to fix it.",0 170,v_Lf_7RurLgp0,What color is the jacket that the woman is wearing and what kind of shirt is visible under it?,v_Lf_7RurLgp0_170,The woman is wearing a green jacket over an olive turtleneck.,0 171,v_34ZxyyFjbHQ,What color is the clothing worn by the two boys playing squash on the squash court?,v_34ZxyyFjbHQ_171,One of the boys is wearing a blue t-shirt and the other a red t-shirt while playing squash on the squash court.,0 172,v_Db9VWkgMpbE,What is the woman wearing while sitting on the elliptic machine?,v_Db9VWkgMpbE_172,The woman is wearing a green top while sitting on the elliptic machine.,0 173,v_Il9Ara3IqeY,What is the man wearing and what is he doing in the video?,v_Il9Ara3IqeY_173,The man is wearing a black polo shirt and a rice hat and is playing a flute while standing on an elevated section of the Marble Bridge with the Palace Museum in the background.,0 174,v_HkbOI7gEtKk,What does the beautician instruct the model to mix with the yogurt?,v_HkbOI7gEtKk_174,The beautician instructs the model to mix baking soda with the yogurt.,0 175,v_cEa87QoI3Do,What are the two men doing in the video before making sandwiches?,v_cEa87QoI3Do_175,The two identical men stand at the entrance to another room.,0 176,v_ARpoJIBF2NM,What happened when the game started?,v_ARpoJIBF2NM_176,"A player got hit and fell, but immediately got up. A boy jumped and caught the ball that bounced off the fallen player. A girl a few feet away from the fallen player held her hands to her face.",0 177,v_H8oehT8eeGc,What happens after the ball is kicked by the boy in green shirt? ,v_H8oehT8eeGc_177,"The ball travels through the air and lands near the opposite chain-link fence, where a boy wearing a red shirt runs towards it.",0 178,v_jQzBXawu29s,What is the man doing in the video?,v_jQzBXawu29s_178,The video starts with a man holding a black wooden Irish flute and speaking into the camera.,0 179,v_51faGoLPJgM,What is the boy wearing while chopping the wood?,v_51faGoLPJgM_179,The boy is wearing blue jeans and a sweater.,0 180,v_AB480dHyDeM,What cleaning solution does the man use to clean the shoes in the video?,v_AB480dHyDeM_180,The man uses a cleaning product called Jason Markk to clean the shoes.,0 181,v_lPw_BRbPw5s,What color T-shirt and cap is the man wearing?,v_lPw_BRbPw5s_181,The man is wearing a blue T-shirt and a blue cap.,0 182,v_Kofjs0rkwxc,What kind of sandwich does the chef make in the video?,v_Kofjs0rkwxc_182,"The chef makes a turkey sandwich in the video, spreading soft butter on both slices of bread, placing sliced turkey on the bread, and adding cranberry sauce and green leaves before covering it with the other slice.",0 183,v_jiM0HUFn0e8,What is happening at the start of the video in the ballet class?,v_jiM0HUFn0e8_183,"At the beginning of the video, the ballet class is starting its practice with hand movements. The instructor is at the front with two students at her back on either side, while little kids are sitting a few feet away from the trio and mimicking their moves.",0 184,v_4oi6dXfpJS4,What is the color of the gymnast’s outfit in the video?,v_4oi6dXfpJS4_184,The gymnast is wearing a pink outfit while performing on the balance beam.,0 185,v_4KMG6lEDSIM,What is the video about?,v_4KMG6lEDSIM_185,The video is about different martial arts fights and demonstrations.,0 186,v_889_kqLFM0E,In which clip can a group of people be seen rowing past a large rock in the sea?,v_889_kqLFM0E_186,The clip that shows people in a boat rowing past a large rock island in the sea is visible in the video.,0 187,v_1YU4MSK80cQ,What kind of exercises does the woman do on the bars?,v_1YU4MSK80cQ_187,"The woman does exercises like swaying, moving back using her hands, doing the split, and swinging using the bars.",0 188,v_IDuoF51IMJ8,What happened after the boy in the pink cutoff shirt missed the throw?,v_IDuoF51IMJ8_188,"The boy in the pink cutoff shirt turned around and walked away, while the people who were standing right outside the court rushed the boy in grey and celebrated.",0 189,v_jkrlHzTRTvo,What color shirt is the man wearing in the video?,v_jkrlHzTRTvo_189,The man in the video is seen wearing a black shirt while speaking to a boy wearing glasses.,0 190,v_dhsSq0K1xEg,What is written on the saxophone case?,v_dhsSq0K1xEg_190,The words 'GUNS-N-ROSES' is written on the saxophone case with a rose drawn under the text.,0 191,v_0x6ZV9Y8g_c,What is the toddler wearing?,v_0x6ZV9Y8g_c_191,The toddler is wearing blue and red pajamas.,0 192,v_-IMXSEIabMM,What are the people doing behind the car at the beginning of the video?,v_-IMXSEIabMM_192,The people are shoveling snow from around the car.,0 193,v_dVpHF8tE2qo,What is the man wearing and what does he do with the barbell?,v_dVpHF8tE2qo_193,"The man is wearing a red vest and he lifts the barbell over his head with visible difficulty before dropping it, causing it to bounce on the ground.",0 194,v_Kic33dtLja8,What kind of dance are the women doing in the video?,v_Kic33dtLja8_194,The women are belly dancing in the video.,0 195,v_4mRkWNLE66E,Who is the player being pointed by the red arrow?,v_4mRkWNLE66E_195,The player being pointed by the red arrow is wearing a white number 15 jersey.,0 196,v_FOZdNPQ7d5Q,What kind of clothes is the woman wearing while tattooing the man?,v_FOZdNPQ7d5Q_196,The woman is wearing a purple-colored check shirt with blue jeans and a pair of black gloves.,0 197,v_BSwChZlOb0k,What causes the table and a man standing near it catch fire in the video?,v_BSwChZlOb0k_197,The alcohol spilled from the shot glass that was lit on fire caused the table and a man standing near it catch fire.,0 198,v_cqxiLraI8uY,What is the man wearing?,v_cqxiLraI8uY_198,The man is wearing a red t-shirt.,0 199,v_d6PdD2O3Yrs,What is the boy doing in the video?,v_d6PdD2O3Yrs_199,The boy in the video is balancing above a pair of horizontal bars.,0 200,v_3V9tzjyr51I,What is happening on the tennis court at the beginning of the video?,v_3V9tzjyr51I_200,"The man with the racquet is standing on the right side of the court, throws the ball in the air, and hits it towards the other end of the court.",0 201,v_di5f5hM05Vw,What type of clothing is the man wearing while performing Tai Chi in the video?,v_di5f5hM05Vw_201,The man is wearing a grey Tai Chi uniform.,0 202,v_JN1wuOpCZvk,What type of training do the men in the video engage in?,v_JN1wuOpCZvk_202,"The men in the video engage in different types of training such as drills on a small trampoline, doing push-ups, and training for ballet.",0 203,v_JH9qiuPCkY4,What safety gear is the driver wearing in the video?,v_JH9qiuPCkY4_203,The driver at the end of the video is shown wearing full safety gear while standing outside in the dirt bike yard.,0 204,v_aQ-F9wr0HQ4,What is the woman in the video doing with the towel?,v_aQ-F9wr0HQ4_204,The woman in the video is wiping the top of a stereo with a towel.,0 205,v_0UTrTg3DF5g,What drink is Pinky making in the video?,v_0UTrTg3DF5g_205,Pinky is making a drink called 'GIN E HENDRIX'.,0 206,v_Ie09KEAPP2I,Who is walking with the little boy and what is he wearing?,v_Ie09KEAPP2I_206,"A man is walking with the little boy, he is wearing a blue T-shirt and glasses.",0 207,v_Jdu5AqaWfz8,Who is jumping off the bungee jump platform?,v_Jdu5AqaWfz8_207,The person jumping is wearing a t-shirt and is wearing a strap.,0 208,v_Erje-PwY9hE,What color are the kayaks the group of people is using in the river?,v_Erje-PwY9hE_208,The group of people on kayaks are using yellow kayaks in the river.,0 209,v_HgYuRKZ_V90,What happens at the end of the video and how do people react to it?,v_HgYuRKZ_V90_209,"At the end of the video, the girl in number 1 uniform scores a goal and people celebrate.",0 210,v__jV5sAOOHLk,What is the setting of the video and who introduces himself as a repairman?,v__jV5sAOOHLk_210,"The video starts with a web address appearing with a background of images of people from a particular university. A man in shorts is riding a bicycle on a path. A green field being watered by sprinklers is visible in the background and people are walking on the path. The man introduces himself as Brandt, standing in front of a bike placed on a table.",0 211,v_JDwd6Ec454A,What is the color of the rabbit's coat?,v_JDwd6Ec454A_211,The rabbit has a reddish coat with dark brown highlights.,0 212,v_34SBoGK8mT8,What does the little girl do after running towards the camera?,v_34SBoGK8mT8_212,The little girl immediately goes to the hopscotch court drawn on the ground behind her.,0 213,v_fNhw7xE3NM8,What color is the top the girl making a video for her friend is wearing?,v_fNhw7xE3NM8_213,The girl making a video for her friend is wearing a black top.,0 214,v_83f0iwb8VW8,What type of protective gear are the men wearing?,v_83f0iwb8VW8_214,The men are wearing protective gear.,0 215,v_Lb7Q8qv3MHU,What does the girl do after spitting the mouthwash?,v_Lb7Q8qv3MHU_215,"After spitting the mouthwash by bending forward, the girl starts to beatbox.",0 216,v_7dXqXFoju2M,What is the woman doing in the bathroom at the start of the video?,v_7dXqXFoju2M_216,"At the start of the video, the woman is in the bathroom holding a drinking glass in one hand and a cigarette in the other. She is standing in front of the mirror and examining herself, tapping the cigarette in front of the mirror.",0 217,v_A20uQSBtYMs,What is written on the banner behind the men playing saxophones?,v_A20uQSBtYMs_217,The banner behind the men playing saxophones has the words 'TWIN JAZZ' written on it.,0 218,v_9InwA-ajB2M,How is the woman directing the horse?,v_9InwA-ajB2M_218,The woman is using the reins to direct the horse as she slowly rides inside the ranch.,0 219,v_2nDbYhgdw2A,Who are the people standing around the breakdancer wearing a yellow shirt?,v_2nDbYhgdw2A_219,It is not specified who the people standing around the breakdancer are.,0 220,v_eRco7yXc-40,What kind of dive did the person perform?,v_eRco7yXc-40_220,The person performed a reverse somersault dive.,0 221,v_IGZvj1J9tNc,What do the players do in the drill?,v_IGZvj1J9tNc_221,"In the drill shown in the video, the players run across the court while one in the middle dribbles the ball and shoots it into the basket, and then collect the ball and run back to the other side while dribbling. The other two players turn around to block the shooter, and the drill is then repeated with a different group of three players until the end of the video.",0 222,v_49PbyLbrxlE,What is the woman doing in the video?,v_49PbyLbrxlE_222,"The woman is standing in a bathroom in front of the mirror, washing a piece of cloth in the sink while wearing a blue top. She looks into the camera once to speak to the cameraman. She rinses the clothing in the sink which is filled with dirty water, and there are toiletries placed on a shelf in front of the mirror including a bottle of dish soap. The bathroom walls are lined with white tiles.",0 223,v_4QRRxub6L5Q,What is the background on the far wall in the video?,v_4QRRxub6L5Q_223,The background on the far wall in the video is a poster of a cartoon sloth.,0 224,v_0DFz3sgfda0,What ingredients did the girls add to the salad?,v_0DFz3sgfda0_224,"The girls added various food items to the salad including lettuce, tomatoes, peanuts, oil and salt.",0 225,v_cCDffwsJvsY,What is the person doing at the beginning of the video?,v_cCDffwsJvsY_225,"At the beginning of the video, the person is holding a piece of chips and lights it like kindling to the camera and then places it on the arranged firewood.",0 226,v_11p9goB2rm8,What activity are the teenagers doing in the basketball court?,v_11p9goB2rm8_226,The teenagers are hopping through the hopscotch court and attempting to do a pull-up from the basketball hoop.,0 227,v_4Gx_8vuxzAk,What is the woman doing in the video and what is she holding?,v_4Gx_8vuxzAk_227,"In the video, the woman is holding a towel in one hand and a bottle of wood polish in the other. She drips some polish on the coffee table and proceeds to wipe it with the towel.",0 228,v_HMs703DhjQU,What clothing is Will Smith wearing in the video?,v_HMs703DhjQU_228,Will Smith is wearing a multi-colored shirt.,0 229,v_Jy93pLzV2uw,What color t-shirts are the teams wearing and which team starts the game?,v_Jy93pLzV2uw_229,The team wearing orange t-shirts and knee guards is one of the teams playing and the team wearing the yellow t-shirts is the other team. The team wearing yellow uniform starts the game.,0 230,v_6wPVO7I8iIY,What flavors does the bartender add to the mixing glass?,v_6wPVO7I8iIY_230,The bartender adds a flavoring agent to the alcohol in the mixing glass.,0 231,v_Fb4X1PWfOvY,What is the woman wearing while exercising on the parallel bars?,v_Fb4X1PWfOvY_231,"The woman is wearing a neon green T-shirt, black track pants with white stripes, and white sports shoes. She is also wearing glasses and a ring on her left hand.",0 232,v_IfugNwywj-k,What is the man doing at the beginning of the video?,v_IfugNwywj-k_232,The man is repairing a bicycle.,0 233,v_dZsk5Dp_5FE,What is the boy wearing while chopping wood in the woods?,v_dZsk5Dp_5FE_233,The boy is wearing an off-white T-shirt and shorts.,0 234,v_AL1W3HkjJ2Y,What is the woman wearing and where is she standing in the beginning of the video?,v_AL1W3HkjJ2Y_234,"The woman is wearing a black top, black trousers and a quiver with arrows in it. She is standing on an indoor basketball court.",0 235,v_j_1kNiGcepU,What is the man wearing who starts to play the harmonica in the video?,v_j_1kNiGcepU_235,The man who starts to play the harmonica in the video is wearing a checkered shirt and a backpack.,0 236,v_le7JdKQB65I,What is the woman wearing and what items are on the table in front of her when the video starts?,v_le7JdKQB65I_236,The woman is wearing a white coat over a teal top and there are tubes and bottles of makeup on the table in front of her.,0 237,v_-6dz6tBH77I,What direction did the man look after throwing the disk?,v_-6dz6tBH77I_237,The man looked towards the direction where he threw the disk.,0 238,v_BnO8AfQS8yE,What color shirt is the player who missed the shot wearing?,v_BnO8AfQS8yE_238,The player who missed the shot is wearing a yellow T-shirt.,0 239,v_CvbBSwz-9XI,What is the man doing in the video?,v_CvbBSwz-9XI_239,"In the next clip, the man is seen filling the blue bucket with water while the dog shakes the water dry in slow motion.",0 240,v_-cAcA8dO7kA,What happens after the biker rides towards the middle of the dirt field?,v_-cAcA8dO7kA_240,The biker tries to jump over a slight elevation but lands with the front wheel first and crashes. He lands in the dirt.,0 241,v_9snScUyE8_4,What did the woman clean before she turned towards the camera?,v_9snScUyE8_4_241,"The woman cleaned a tumbler, a spoon, and a fork before turning towards the camera.",0 242,v_96ADEnJy4GU,What is the man doing in the first clip of the video?,v_96ADEnJy4GU_242,"In the first clip of the video, the man is washing his hands in a sink.",0 243,v_-D1gdv_gQyw,What is the man wearing and what is his action in the beginning of the video?,v_-D1gdv_gQyw_243,The man is wearing a yellow t-shirt and holding a knife in his right hand. He kneels down and lights a stack of firewood on fire with a fire starter.,0 244,v__a527xEzhkw,What kind of music was the girl listening to before she started playing the harmonica?,v__a527xEzhkw_244,The given information doesn't provide any details about the kind of music the girl was listening to before playing the harmonica.,0 245,v_cH3H-arDsH4,Who scores a goal and what does the goalkeeper do after that in the water polo game in the video?,v_cH3H-arDsH4_245,"In the water polo game in the video, a player throws the ball to another player, who in turn throws the ball into the goalpost and scores a goal. The goalkeeper then throws the ball outside.",0 246,v_hvhny4-sI-w,What color are the polo shirts of the teams playing the polo match?,v_hvhny4-sI-w_246,One team is wearing a white polo shirt and the other team is wearing a red polo shirt.,0 247,v_d09u-0k3LdE,What is the woman wearing and what is she holding?,v_d09u-0k3LdE_247,The woman is wearing a red vest and is holding a hammer attached to a string.,0 248,v_B0GCHDqEsRU,Who else is visible in the video besides the dancing couple?,v_B0GCHDqEsRU_248,Other people are visible standing to the side.,0 249,v_aH39BSM0-Ag,What is the color of the jersey of the team Samuel Shearin is playing for?,v_aH39BSM0-Ag_249,Samuel Shearin is playing for the blue-green team.,0 250,v_iqhdqhVttEM,What type of class is the man conducting?,v_iqhdqhVttEM_250,The man is conducting a Zumba class.,0 251,v_cECycCDw1Nc,What ingredients are in the sandwich that the woman makes in the video?,v_cECycCDw1Nc_251,"The ingredients of the sandwich shown in the video are French roll, pepperoni, mayonnaise, pizza sauce, cheese, tomato, and shredded lettuce.",0 252,v_egowZOcbEkI,Who appears on the instructor's right when the camera angle widens?,v_egowZOcbEkI_252,A boy wearing a white t-shirt appears on the instructor's right when the camera angle widens.,0 253,v_HURRgbZGz8Q,What kind of competition is being shown in the video?,v_HURRgbZGz8Q_253,The video shows a spear-throw competition.,0 254,v_afMQA352X_A,What type of clothes is the man wearing and what equipment is the other man carrying in the video?,v_afMQA352X_A_254,"The man is wearing a white T-shirt and shorts and is wearing boxing gloves. The other man is wearing a camo gi, focus mitts on both hands, and carrying kick pads in his left hand.",0 255,v_l8gg9TYh_B0,What is the scene shown in the first cutaway?,v_l8gg9TYh_B0_255,The first cutaway shows two men shoveling snow in front of a house during the daytime.,0 256,v_Ds2O0-8Labs,What is the heaviest weight that the man lifts in the video and what does he do after lifting it?,v_Ds2O0-8Labs_256,"The heaviest weight that the man lifts in the video is a barbell of 130 kilograms. After lifting the barbell above his head, he drops it to the floor.",0 257,v_k1QAWLupB-I,What is the woman holding in front of her face in a photograph?,v_k1QAWLupB-I_257,The woman is holding a paddle with the picture of the man she is standing next to on it in front of her face in a photograph.,0 258,v_9UvVeUYQLgA,What type of objects are arranged in the arena for people to hide behind?,v_9UvVeUYQLgA_258,Cable drums and old tires are arranged in the arena as places for people to hide behind.,0 259,v_dEpUIpmBvow,What is the man wearing while climbing the rock?,v_dEpUIpmBvow_259,The man is wearing a grey west while climbing the rock.,0 260,v_EZyLBq2jJtE,What is the woman wearing while she is shaving her legs?,v_EZyLBq2jJtE_260,"The woman is wearing a red T-shirt, black & purple short track pants, and white sports shoes while she is shaving her legs.",0 261,v_2fzIi1lPd8U,What is happening in the beginning of the video?,v_2fzIi1lPd8U_261,"Two kids and an elderly lady are playing. One of the kids is a little girl who is standing on the side of a porch. A little boy wearing a red shirt is a few feet away, while the woman holds her hands in front of her, first to the girl and to the boy.",0 262,v_C7yd6yEkxXE,What direction are the riders turning after clearing the second ramp?,v_C7yd6yEkxXE_262,The riders are visible turning left after they clear the second ramp.,0 263,v_IN23CO8Kotk,What is the color of the coffee cup?,v_IN23CO8Kotk_263,The coffee cup is mostly pink and has a butterfly painted on it.,0 264,v_BFChXuwZ4wo,What was the tattoo design and where was it placed?,v_BFChXuwZ4wo_264,The tattoo was a stencil on the girl's wrist.,0 265,v_9k19UUJtldg,What venues did the boy play in?,v_9k19UUJtldg_265,The boy played in venues with multiple tables arranged next to each other and with dividers in between. He played against people of different nationalities in various venues.,0 266,v_hFi6S_guB7I,Can you describe the video in detail?,v_hFi6S_guB7I_266,"The video features a performance by a group of five women belly dancers, entering the stage from the right and standing facing away from the audience, with their right hands up. They are dressed in different colored belly-dancing outfits, and are on a stage in an auditorium, which is lit from above and has a curtain at the back. Some members of the audience are holding up cameras. As the music begins, the women slowly turn around and start to belly dance. The video continues with the women dancing, and towards the end, as the music slows down, the women turn around and hold up their right hands in the air again.",0 267,v_18yZR3NDaXM,Can you describe the video in detail?,v_18yZR3NDaXM_267,"The video begins with a man standing in front of a fence, facing the camera. Behind him is a stadium that is lit by floodlights. The camera then cuts to footage of people scattered throughout the field. In the next clip, a person wearing a body cam is running on the kickball field. The camera then cuts to a man throwing the ball underhanded to waiting players, followed by a clip of a player kicking the ball into the air and running some distance. Another clip shows a man kicking a ball while wearing a bodycam. The camera then focuses on a man in a blue t-shirt wearing a bodycam, who is speaking to the cameraman. In the next clip, the same man runs towards the ball. The cameraman then focuses on another man wearing a black t-shirt and a kilt. This is followed by more bodycam footage of a man running on the field playing kickball. The video ends with a man speaking into the camera in a darkened room. Overall, the video seems to be a series of shots of people playing kickball, with some shots utilizing bodycams for a first-person perspective.",0 268,v_BjjN_aq_wq4,Can you please describe what happens in the video in detail?,v_BjjN_aq_wq4_268,"In the video, we see a woman standing in front of a kitchen sink with dirty dishes visible in it and a curtained door behind her. She turns on the tap, pours soap on a board, and starts scrubbing while speaking to the camerawoman. In the next clip, the woman is seen washing a plate in the same kitchen sink, with sunlight streaming through the window in front of her and light coming through the door beside her. She continues washing plates and placing the clean ones on the side of the sink. In the following clip, a young girl is shown speaking into the camera while cleaning dishes in the sink. The sink is filled with foam, and she holds up a handful of suds. The video ends with two girls cleaning dishes in the same kitchen sink.",0 269,v_DJTvj9lfSWU,Can you describe the video in detail?,v_DJTvj9lfSWU_269,"In the video, a man wearing a grey hoodie is speaking into the camera while holding a microphone in his hand. There is a woman wearing an apron over a black top standing to his right. They both look into a bathroom and start laughing before entering and then immediately stepping back out. The woman is holding a bucket and wiping her tears while they both speak to the camera. In the next clip, the man is standing in front of a closed toilet with a framed poster hung on the wall to the left. A corridor with red walls can be seen down the hallway from the toilet. In the following scene, the man is sitting on a rooftop on a plastic chair with his right foot in a tub with water, cleaning it before switching to shaving his right leg with a razor blade. The woman is standing beside him holding a mic as she speaks to him while the man shaves his leg and she runs her hand over his shaved calf. The video ends with the man walking toward the exit holding the bucket.",0 270,v_0BtHd6dvm78,Can you describe the video in detail?,v_0BtHd6dvm78_270,"In the video, a man wearing glasses and a white hoodie is seen standing in front of a sink washing dishes. He is in a kitchen surrounded by cupboards and other kitchen implements including a coffee machine. A microwave is mounted on the kitchen cupboard and there is sunlight streaming through a window in front of him. A potted plant can also be seen on the window sill. He is washing a tea strainer and talking to the cameraman, laughing and joking while doing so.",0 271,v_dKJMP8EmZjw,Can you describe the video content in detail?,v_dKJMP8EmZjw_271,"The video begins with a man maneuvering a dinghy with white sails in cloudy daytime weather, with a pier visible in the distance. In the next clip, a dinghy with red and white sails is sailing fast in the sea, with the sailor wearing a red wetsuit. Following this, a dinghy with a white sail is seen sailing fast with the sailor maneuvering it. The video then shows more dinghies sailing fast on the water. In another clip, a man sitting on the hull side of the boat gives a thumbs-up, indicating a successful maneuver. Finally, the video ends with a sailor with red sails leaning flat on his dinghy and maneuvering it. Overall, the video depicts sailors sailing and maneuvering dinghies with different colored sails in varying weather conditions.",0 272,v_kGdxtU3NwWo,Can you describe the video in detail?,v_kGdxtU3NwWo_272,"The video features a well-lit room with a man dressed in a shirt sitting behind a wooden desk. On the right side of the man, there is a visible laptop. A black desk mat placed on the desk has a shoe and shoe polish tin, and a glass vile containing a clear liquid. The man applies the liquid and the polish to a piece of cloth and polishes the shoe with it.",0 273,v_b4xvXZq5uD8,Can you describe the video in detail?,v_b4xvXZq5uD8_273,"The video begins with a slideshow of images showing a man in a white shirt and glasses standing in a kitchen. A person's hand holding a phone up to take his picture is visible in one of the shots. The man is getting a haircut, and a boy wearing a grey hoodie and kippah starts trimming his hair with a trimmer, running it slowly in the middle of the man's head. As the boy trims the hair, another person walks behind the man getting a haircut and walks back. Other people also walk in and out of the frame in the background. Another person then takes the trimmer from the boy and continues trimming the man's hair. As the man's haircut ends, a man wearing a black coat brings out a chocolate cake, and the group sings. Finally, an image of the first man's face, smeared with chocolate cake, is shown.",0 274,v_aLb79wtvxoQ,Can you describe the entire process that took place in the video?,v_aLb79wtvxoQ_274,"In the video, we can see a lot of dirty dishes in a mint green sink with two basins. A bottle of dish soap is placed on the sink. A person wearing a mask pours soap into a dirty pot and fills the sink with water. She scrubs the dirty pots inside and out with a scrubber and places the clean pots next to the sink. The woman then proceeds to wash a ladle and keeps it next to the clean pot. She cleans various dishes, rinses them, and places them next to the sink. Next, the woman tears a few pulls of kitchen towels to dry the clean dishes. She hangs them from a hook at the top and drains the sink. Lastly, she wipes the sink and its surroundings with a kitchen towel. Overall, the video shows a person doing a thorough job of cleaning a large pile of dishes with the use of dish soap, a scrubber, and kitchen towels.",0 275,v_KlgrI3Ngwv0,Can you describe the video in detail?,v_KlgrI3Ngwv0_275,"The video features a man in a blue outfit standing by a well-lit stage with a pommel horse. He begins his routine by gripping the handles and doing a circle around the pommel horse, followed by scissors and a handstand, and other techniques. He then does a routine where he moves the length of the pommel horse in circles. He ends the routine with a handstand and an upside-down split. There is another athlete visible briefly in the background. The video ends as the athlete jumps off the pommel horse and turns towards the spectators.",0 276,v_jN-jnIgzd6k,Can you describe what happens in the video?,v_jN-jnIgzd6k_276,"In the video, a group of children are seen wearing karate uniforms facing the instructor on a carpeted floor. They are doing various drills, including punch and kick drills along with movement, and are having difficulty with some of the drills. An instructor walks into the frame, and there is a mirror on the back wall covering the entire wall. The children make different stances, move forward and back while doing the drills. The video ends with the children turning towards the teacher.",0 277,v_araMJB23T1s,Can you describe the video content in detail?,v_araMJB23T1s_277,"The video begins with a boy wearing a bungee chord standing on a bungee platform with people standing behind him. There are trees visible in the background. The boy jumps to a countdown and a stream is visible at the bottom. The camera then pans to look down through the grate of the bungee platform. In the following clip, a woman is seen wearing a bungee chord and is strapped between two attendants wearing red t-shirts. Misty hills are visible in the distance from the platform. The woman jumps after counting down. Next, a man wearing a yellow t-shirt is seen ready to jump. He is strapped in a harness with two attendants on either side of him. He jumps by holding his hands wide open.",0 278,v_dW6OZV43ulU,Can you describe the steps taken to clean and restore the damaged leather sofa in the video?,v_dW6OZV43ulU_278,"The video demonstrates the process of cleaning and restoring a damaged leather sofa. A man can be seen in the video using a foam cleaner and a brush to clean the surface of the sofa. He then proceeds to degrees the damaged areas by spraying some cleaner on a towel and wiping the surface of the sofa. Next, he uses a scrub pad to sand the rough surfaces before applying the color refresh liquid with a sponge. He also uses a hair drier to dry the surface of the sofa. In addition, the man applies UV protection liquid on the sofa to keep it safe from sunlight. Finally, the video ends with a shot of the clean sofa.",0 279,v_JcAAwYpJhm8,Can you describe the video in detail?,v_JcAAwYpJhm8_279,"In the video, a little girl is seen in a kitchen washing a glass in the sink filled with water. A white spoon can be seen on the sink adjacent to the girl and a white plastic can is placed on her right side. The little girl is washing the glass under running water when suddenly the spoon falls down, making the girl look down. After finishing washing the glass, a woman wearing a white t-shirt appears and helps the little girl wash other utensils. They can be seen washing a spoon, a pot, and a plate with Dora the Explorer on it. The video ends with the girl washing a plastic jar, showing her learning to do household chores with the help of an elder.",0 280,v_aYxni8ohTfU,Can you describe the video content in detail?,v_aYxni8ohTfU_280,"The video starts with a man serving a volleyball on a beach volleyball court. He is one of two players on a team wearing red vests, playing against the opposing team wearing blue vests, which is between Italy and Latvia. The presence of people sitting on seats and referees near the court can also be observed. As the Latvian team serves the ball, the Italian team hits it back, and one of the Latvian team members chases the ball near the boundary, saving it from going out, and then passes it back to their teammate. However, the Latvian team loses a point from the next exchange. In the next few clips, we see the Italian team playing against Brazil, with the latter winning the game. Latvia also plays against Germany and wins. Further, we see Brazil winning the game against Italy. The video ends with Latvia winning against Italy.",0 281,v_6Xsfwn5M6qs,Can you describe the video in detail?,v_6Xsfwn5M6qs_281,"In the video, a man in black shorts and t-shirt is seen in a gym with two other people, one wearing a green shirt and another in white sportswear. The man jumps onto the parallel bar and begins his first routine by performing a handstand and swinging from the bars while holding on to both of them with his hands. He completes several maneuvers and finishes with a backflip, landing on a foam mat on the ground. In the next clip, he starts a new routine with another handstand and swinging routine. He then holds a position with his legs parallel to the ground while holding himself up from the bars and performs another handstand, followed by turning using one hand on the bar. He completes several backswings, but fails to stick the landing. He smiles at the camera as the video ends. There are other people visible in the gym, standing to the back and right of the man, throughout the video.",0 282,v_CecqF_uHeOI,Can you describe the video in detail?,v_CecqF_uHeOI_282,"The video begins with a man standing on the deck during daytime. He is wearing a dark blue shirt and khaki pants. There is a glass door framed in wood and the man is wiping it with a wiper. After some time, he picks up a smaller wiper from his right and wipes the glass again, then picks up the larger wiper and repeats the process. Afterwards, he sprays cleaning fluid on the glass and wipes it with a blue towel. Towards the end of the video, the man kneels down to wipe the bottom half of the glass door.",0 283,v_7-taNK5mW8E,Can you describe the video in detail?,v_7-taNK5mW8E_283,"The video is a slow-motion footage of women playing water polo, as seen from both above and below the water. The shot begins from underwater, where several women can be seen kicking their legs. One player loses the ball and dunks into the water. The camera then moves above to show two other players swimming in place, searching for the ball. Suddenly, the player in front is pushed from behind and falls into the water, while the person who pushed her snatches the ball. Other players are visible on either side of the first two players. Overall, the video shows the intensity of the game as players compete to possess the ball.",0 284,v_IcR28Yqt4mY,Can you describe the video in detail?,v_IcR28Yqt4mY_284,"This video is a wood-chopping competition that takes place in a studio with overhead lights and boom mics hovering above. Four men are present, all wearing blue polo shirts and white trousers, holding axes in their hands. The competition consists of the contestants standing on blocks of wood placed on a stand on the ground and chopping the wood they are standing on as fast as they can. Wood chips are seen flying away from the logs, and two men turn around and start chopping the other side. The video ends with the winner, named Lawrence O'Toole, who is the first on the left, bending down to secure his axe after having chopped his wooden block completely and stepped away. Cameramen and other studio personnel can be seen at the back, and individual shots of the contestants are shown. The other contestants finish one after another and congratulate each other.",0 285,v_B3xMfP_UOt4,Can you describe the video of the high jump in detail?,v_B3xMfP_UOt4_285,"The video begins with a man, Ukhov, wearing a green fluorescent vest, preparing for a high jump in an outdoor stadium illuminated by floodlights, as spectators watch from the stands. Ukhov starts off his run towards the high jump bar by running and small hops. Upon reaching the bar, he clears it by flopping backward over it. He then walks towards the side of the bar and away from the field. A clip of a man in the stands watching the jump is shown. The man turns away after the jump. Additionally, a little boy with his hand over his mouth can be seen standing beside him. Finally, the video shows a replay of Ukhov's jump.",0 286,v_4XnXyKYxnQQ,Can you describe in detail what happens in the video?,v_4XnXyKYxnQQ_286,"The video depicts a ship in the sea during the daytime, with a hill visible in the distance at the shore. The ship is dangerously tilted towards the left and appears to be on the verge of capsizing, while all its sails are fully deployed. Another group of people can be seen approaching the ship in a motorboat. The video ends with the camera panning around the motorboat and the surrounding area. There are no visible signs of distress or emergency response. Overall, the video captures a dramatic and potentially hazardous situation on the high seas.",0 287,v_hq48S65dlyo,Can you describe the video in detail?,v_hq48S65dlyo_287,"The video takes place in a well-lit gym and starts with a woman wearing a black outfit and boxing gloves punching into a punch mitt worn by a man. She then proceeds to kick the kick pads worn by another man, and kicks the focus pads worn by a third person. After repeating these steps a few times, the man who wore the punch mitts is now wearing boxing gloves and starts to practice punching it again. He then kicks the kick pads and focus pads, and returns to the woman wearing the punch mitts. These steps are also repeated a few times. Finally, the video ends with a screen showing the contact information for the club they belong to.",0 288,v_gWbIoFrpwTY,Can you describe the video content in detail?,v_gWbIoFrpwTY_288,"The video starts with a photo of a little boy standing in a parking lot wearing a black t-shirt and holding a juice box in his left hand. At the back end of a white van behind him, there are two skateboards, and a blue cooler with a can of Red Bull is kept next to the boy. In the next clip, the boy is seen wearing a helmet and skating on a sidewalk during the daytime with parked cars visible on the street to his left. Succulents are planted along a wall on the sidewalk. In the following scenes, the boy is seen skating through a tunnel, jumping down a concrete bench in a skateboarding park, and skating up a ramp. The boy can be seen skateboarding on various ramps while wearing a helmet, kneepads, and elbow guards. However, he also falls in a few instances when he jumps off a ramp and once when he reaches the top of a ramp. The video ends as the boy is skating on a sidewalk and waving at passersby. In the end, there is a photo of the boy smiling with grease stains on his face.",0 289,v_eoSwoeLmeyQ,Can you describe what happens in the video in detail?,v_eoSwoeLmeyQ_289,"The video features a group of people salsa dancing on a well-lit wooden floor while a person holding a phone records on the left of the camera. The men participating in the dance have a piece of paper with a number on it, attached to their backs, with one man wearing a purple dress shirt with number 3 dancing to the left. Throughout the video, the dance floor is illuminated with spotlights while the rest of the hall appears dark. It is a visually stunning display of graceful movement and excellent choreography.",0 290,v_1d_U_2HIPmY,Can you describe the video in detail?,v_1d_U_2HIPmY_290,"The video features a man standing on a circular platform within a cage in a field while holding a hammer attached to a grip by a cable. Another man in a blue shirt can be seen walking away from the cage. The man on the platform swings the hammer around his body twice and then swings it two more times while also turning. On the fifth swing, he releases the hammer through the open side of the cage. The video ends with the hammer landing quite far from the cage while a few spectators off-screen applaud. Prior to releasing the hammer, the man on the platform is seen speaking to people out of frame on the other side of the cage, with his back turned to the open end of the cage.",0 291,v_Hz7-mBFGsSs,Can you describe the video scene with the crying girl and the people in the salon?,v_Hz7-mBFGsSs_291,"In this video, a young girl is seen crying while wrapped in a hairdressing cape and sitting on a barber chair in a well-lit salon. There are other chairs visible around her, with some people sitting in them. The girl refuses lollies brought by a woman and continues crying as the barber begins cutting her hair using a comb and scissors. The woman then sprays water on the girl's hair and moves to the back to cut her hair there. She combs the hair at the back of the girl's head and does some touch-up cuts before the end of the video.",0 292,v_B_U7vUtoCKY,Can you describe what happens in the video in detail?,v_B_U7vUtoCKY_292,"The video shows a lacrosse game taking place on a field, with two teams playing against each other. Spectators are sitting on lawn chairs outside the area, and there are trees visible in the distance from the field. The camera follows Cole Fowler, who is wearing a white jersey, as he attempts to check the ball from the other team members. Throughout the game, Cole tries various methods to check the ball. Towards the end of the video, Cole can be seen running and avoiding a player from the opposite team. Overall, the video seems to capture the intense and competitive nature of a lacrosse game.",0 293,v_7pfHxav4b0U,Can you describe the video in detail?,v_7pfHxav4b0U_293,"The video is about a woman kayaking down a rapid river during the day. She is wearing a life vest and a white helmet while navigating an orange kayak down the eddy. Trees are visible on either side of the banks. As the woman rows down the eddy, she turns into the turn and stops. She starts speaking to the camera explaining how to make turns while rowing. The video ends as the woman finishes her instructions.",0 294,v_htzAYwoAZkg,Can you describe the video in detail?,v_htzAYwoAZkg_294,"In the video, a man wearing a black polo shirt is seen speaking to the camera in a well-lit gym, while a woman wearing a grey top stands next to him. Behind them is a resistance trainer and other exercise equipment is visible in the gym. Through a window in the far wall, parked cars can be seen outside. The woman climbs onto the resistance machine and starts pedaling as the man continues speaking into the camera. We also get a close-up view of the instrument cluster on the resistance machine as the woman adjusts the settings. The man then picks up a book from a sofa behind him but continues speaking until the end of the video.",0 295,v_ijrjRNwZjqQ,Can you describe the video in detail?,v_ijrjRNwZjqQ_295,"In the video, Kevin Spacey and tennis player Rafael Nadal are on stage wearing tuxedos amidst Bogo lights. As they walk to the other side of the stage, a screen displays an image and three people in white hats bring in a ping pong table with paddles and balls. Nadal serves and Spacey wins the last game. The video ends with a woman garlanding Spacey.",0 296,v_IhmtmKxEU40,Can you describe the video in detail?,v_IhmtmKxEU40_296,"This video shows windsurfing enthusiasts riding the waves in the sea during the day. The video starts with a view of the sea with several people windsurfing against the waves. Some of the windsurfers are highlighted, including a boy in an orange and black wetsuit. We can also see different colored marker buoys in the vicinity and a person in a white motorboat moving among the surfers. As the video progresses, we see a woman assembling her sailboard on the shore, while in the next clip, a woman is falling into the sea and climbing back onto her sailboard. The sail seems to have fallen into the water too. Throughout the video, we see different people windsurfing, and the camera follows individual surfers one after the other. Also, we can see a large ship in the far back and other structures near the horizon, such as a smokestack of a power plant. Eventually, the video ends with text on a black screen indicating the conclusion.",0 297,v_3zpODTqnYLs,Can you describe the video content in detail?,v_3zpODTqnYLs_297,"The video begins by showing a man sitting at the edge of a pool with a toddler sitting on the wall. Other people are visible on the other edge of the pool. A person jumps into the pool, causing a splash. The toddler bends forward and playfully splashes water on her face while the man holds onto her. She appears happy and excited. Meanwhile, a boy with a towel draped over himself walks toward the toddler and stands beside her for a moment, before walking back. In the background, a person wearing a green swim cap can be seen swimming some distance behind the man. As the boy leaves, the toddler, still giggling, again washes her face with pool water. The video ends with the toddler attempting to stand up before sitting back down again, possibly indicating her reluctance to leave the pool.",0 298,v_1KONAdZGdWU,Can you describe the video in detail?,v_1KONAdZGdWU_298,"The video starts with a young girl sitting on a carpeted floor, surrounded by people lounging on a sofa at the back, who are watching something on a screen. She is wearing a blue T-shirt and is seen shaving her left leg while occasionally speaking to the camera. The room appears to be dark with little light, occasionally lit up by flashing light from the screen. She wipes her razor on a yellow paper and continues to speak with people around the room while shaving. As the video progresses, we see people lounging and chatting around the room. The video ends as she gets up and walks back while everyone else remains seated. ",0 299,v_DIhyfNJAm-M,"Can you describe the video in detail, including the man playing the saxophone, the backing musicians, the stage, the audience, and the shots shown in the video?",v_DIhyfNJAm-M_299,"The video depicts a man wearing a black suit and white shirt playing the saxophone on stage while backed up by other musicians playing various instruments farther back from him. The stage has red floors, a set of stairs in front of him, and a blue-curtained background. There are also a music stand with a transparent top placed next to him. The audience is visible sitting a few feet from the staircase, and the auditorium appears to be full. The video alternates close-ups of the saxophonist with cutaways of the backing musicians playing their instruments. Additionally, a shot of a wide-angle view of the audience sitting on both the ground floor and the balcony is shown. Finally, the video ends with the saxophonist dominating the stage and his performance before the audience shows their appreciation by applauding him.",0 300,v_K6QunmuTZOQ,Can you describe the video in detail?,v_K6QunmuTZOQ_300,"The video shows a woman in a small gym wearing a grey t-shirt and black track pants. There is sunlight streaming from an open door in front of her and other exercise equipment around her. She is seen holding a bar without weights in her hands and practices the movement patterns of weightlifting by lifting the bar over her head. In the next clip, a barbell with red colored weights is placed in front of her. She then bends down and lifts the barbell, following the movement patterns she practiced before. The gym floor is made of concrete.",0 301,v_l7qSKJyq6mA,Can you describe in detail what is happening in the video?,v_l7qSKJyq6mA_301,"In the video, a man wearing a black sweater vest over a grey shirt is shown ironing a dress shirt on an ironing stand in a well-lit room. On the left side of the man, there is a small wooden drawer with several white clothes hangers piled under it. The man irons one section of the shirt at a time, including both sides of the arm. Once he has finished ironing the shirt, he places it on a clothes hanger before starting to iron another small portion. The man hangs the ironed shirt among the other already ironed shirts.",0 302,v_2VZumBKJuPs,Can you describe what happens in the video in detail?,v_2VZumBKJuPs_302,"In the video, we see a woman lying down in a well-lit studio while a tattooed man pierces her belly button with a needle piercer. He inserts jewelry and secures it with a ball after screwing it on. Throughout the video, the woman can be seen speaking to the person holding the camera. Once the process is finished, the woman gets up.",0 303,v_7EeO9V2B574,Can you describe the video content in detail?,v_7EeO9V2B574_303,"The video begins with four women standing on the grass outside, with two palm trees visible in the background and a hedge wall. The women start dancing with synchronized moves while listening to music. They are dancing during the daytime under the shadow of a tree. The dance continues until the song ends, and the women finally turn to look at the camera. Overall, the video depicts four women dancing together in a synchronized manner in an outdoor setting with palm trees and a hedge wall in the background.",0 304,v_IgDBDaIoNAM,Can you describe the video in detail?,v_IgDBDaIoNAM_304,"The video begins with a man and a woman dressed like characters from the Street Fighter game standing under an overpass during the daytime. They take a fighting pose in the shadow of the overpass, with a wall bearing graffiti behind them. They start fighting and move around during the fight, eventually moving away from under the overpass. During the fight, a green field is visible next to the path they are fighting on. The fight continues for the rest of the video with them moving around as they fight. Finally, they take a fighting stance under the underpass again. Throughout the video, there is no audio and the focus is solely on the fight scene.",0 305,v_325CAs4hhq8,Can you describe the video in detail?,v_325CAs4hhq8_305,"The video starts with players wearing orange uniforms playing field hockey on a hockey field. In the next clip, several players are present on the field, leaning forward and anticipating a player to hit the ball. In the following clip, several girls from other teams are introduced and individual players are speaking into the camera. Then a coach is seen instructing players. The next few clips are of players standing on the field and getting instructions while individual players are being interviewed. A still photo of a team is shown. In the next clip, a play is shown with players on the field chasing a ball, and two teams are visible. The coach is speaking into the camera during the game. The video ends with a goal in the game by a player in an orange uniform.",0 306,v_CTJej0rZMiI,Can you describe the video in detail?,v_CTJej0rZMiI_306,"The video shows a man wearing a grey shirt, sitting in a dimly lit room with an accordion strapped to him. He is seated next to a wall that has framed Spanish sayings on it, and there is a bookshelf visible behind him. To his right is a door frame. The man briefly speaks before starting to play the accordion, and the video continues to show him playing until he finishes.",0 307,v_CTyvQHkAKuY,Can you describe the video in detail?,v_CTyvQHkAKuY_307,"The video features a man in an olive suit playing piano while people stand around the hall listening to him. The hall is illuminated by overhead lights. A woman wears a scarf and walks up to the man to speak to him briefly, and a man in a black jacket dances near the far wall. As soon as the woman starts to sing while the man plays the piano, a man in a white jacket walks behind and to the right of her, and a man in a red shirt holds a coffee cup near the wall to her left. People look at the dancing man and cheer. After he finishes dancing, the video continues with the man playing the piano and the woman singing. The video concludes with both the man and woman completing their performance, and the man getting up to hug the woman.",0 308,v_3M290KZV5lo,Can you describe what happens in the video in detail?,v_3M290KZV5lo_308,"The video takes place in a well-lit gymnasium with a balance beam surrounded by foam padding on the floor. Judges are situated by the edge of the padding behind a table. There are people visible on the balcony looking down towards the gym, and chairs available for people to sit on the balcony. Other people are sitting or standing across the gym. A girl walks towards the balance beam and begins to perform her routine, which includes a backflip, jumps, balancing, and skips on the beam. She finishes with a running front flip off the balance beam and lands on the ground with a celebratory flourish. At the end of the video, another contestant can be seen getting up to perform, and other people in the gym can be seen clapping.",0 309,v_itXYuf_Cj_Q,Could you describe the video in detail?,v_itXYuf_Cj_Q_309,"The video starts by showing a man sitting on a red chair, wearing a green sweatshirt, and peeling a banana. He places a single black dress shoe on each thigh and uses the banana peel to clean one of the shoes thoroughly, wiping all sides before holding it up to the camera. He then throws the used peel to the side. Next to the man is a visible curtain. The video ends with an advertisement for a shoe polish.",0 310,v_JspVuT6rsLA,Can you describe the video content in detail?,v_JspVuT6rsLA_310,"The video features a little boy who starts playing the violin while standing in a well-lit room. Behind him are two pianos and in front of them is a woman with her back facing the camera, playing one of the pianos. The boy continues to play the violin throughout the video, and towards the end, he forcefully finishes the last three notes. Overall, the video showcases an impressive display of classical music performed by a young boy and a woman playing the piano.",0 311,v_cPIsE2ZCWzM,Can you describe the video content in detail?,v_cPIsE2ZCWzM_311,"The video begins at a polo field where players are seen playing during the daytime. Throughout the video, players are seen striking the ball with their mallets while others ride on horses to catch up with the ball. The spectators can be seen walking down the stairs of the seating area, wearing sunglasses due to the direct sunlight on the seating area. The players from both teams compete to strike the ball while the referee throws the ball to the ground. The trees close together can be seen outside the polo field. The game continues with players fighting for the ball and a group of spectators standing and clapping. The team wearing green polo shirts wins the Barbour Cup and holds a cup below a banner with the same text. A man in a black suit and a white hat holds up the banner while spectators can be seen clapping and congratulating the winners. The video ends with a black screen with the email ""BARBOUR.COM"".",0 312,v_IL8__uSFpqg,Can you describe in detail what happens in the video?,v_IL8__uSFpqg_312,"The video starts with an upside-down view of the mid-section of a bicycle. A person then holds up various bottles to the camera, along with a tool. The man is wearing a blue polo shirt and sits on the bike to tinker with it by removing the crankset. He wipes the grease off of the crankset and bottom bracket using a paper towel and applies a substance from a tube on the bottom bracket, spreading it with his finger. He then reattaches the crankset and tightens the bolt before testing the pedal to end the video.",0 313,v_JguRZtFN-Ck,Can you describe the details of what happens in the video?,v_JguRZtFN-Ck_313,"In the video, a woman wearing a white t-shirt and shorts plays squash in an empty, well-lit room with light wooden flooring and white walls on all sides. She strikes the ball on different sections of the walls and follows the ball as it bounces back. The woman makes a few more strikes until she walks to the middle of the hall after a strike and stops.",0 314,v_cFOaL4Ir4hg,Can you describe the video in detail?,v_cFOaL4Ir4hg_314,"The video is a series of clips showing several people diving off two diving boards into a swimming pool. There are people sitting near the walls of the pool as they watch the divers. The divers perform various types of dives, including backflips and front flips. One man is seen doing a backflip dive from the edge of the diving board, while another man does a front flip dive. A woman is also seen doing a dive at one end of the pool while some of the other divers perform their flips. The video ends with a man jumping off the diving board and flipping horizontally into the pool. Overall, the video showcases the skill of the divers as they perform various dives in a swimming pool.",0 315,v_BdRH3lpopLQ,Can you describe what happens in the indoor volleyball game between USC and BYU?,v_BdRH3lpopLQ_315,"In this volleyball game played indoors, two teams - USC and BYU played against each other. The game was watched by a full seating area and spectators. There was also a visible scoreboard high up, and balcony seating that was full of people. During the game, the team on the right got the ball and passed it between themselves four times before passing it to the other team. The other team started celebrating before they had won the game, and then the ball lands by them, leading to their loss. The first team celebrating their victory can be seen at the end of the video.",0 316,v_JHKAcpYlxkQ,Can you describe the video in detail?,v_JHKAcpYlxkQ_316,"The video features a woman tennis player wearing a white top and teal shorts practicing her serve on an outdoor tennis court. A basket with tennis balls is seen a few feet behind her while a street with a parked truck is visible to the left and trees line the edge of the court. We can also see a man wearing a white t-shirt and black shorts on the right side of the court. As the woman serves, we can see the ball hit the opposite wall and bounce off the black wall. The woman proceeds to practice another serve with another ball which also bounces on the other side of the court before hitting the black wall.",0 317,v_1xBdquA6dx8,Can you describe the video in detail?,v_1xBdquA6dx8_317,"The video starts by showing a hockey field with two teams of girls playing. One of the teams is wearing blue while the other is wearing green. The field is surrounded by parked cars. The video follows a girl in the blue-wearing team who is wearing the number ten jersey as she maneuvers the ball toward the goal. She is briefly intercepted by a girl from the opposing team who is wearing a number nineteen jersey, but manages to regain possession of the ball. The girl runs towards the goal and, after being intercepted again near the end of the video, kicks the ball into the goal. Overall, the video captures a competitive game of field hockey between two teams of young girls.",0 318,v_kdOsmDACtqw,Can you describe the video in detail?,v_kdOsmDACtqw_318,"The video opens with a black screen displaying the web address for Vandaliss.com. We see a man wearing a white t-shirt and a backward-turned cap, along with a backpack, speaking to a crowd of people. There are other people visible around the man as he speaks. After finishing his speech, a man in a black outfit enters a white sheet on the ground and begins breakdancing, followed by the man in the white t-shirt who also dances for a moment and interacts with the crowd. As this is happening, a family can be seen walking by in the background. The man in the white shirt later enters the dance area with another man, and they perform a head spin. The video concludes with some people addressing the camera.",0 319,v_kIFHChO_-vg,Can you describe the video in detail?,v_kIFHChO_-vg_319,"In the video, a toddler is sitting on a vanity table that is filled with different makeup products and bottles, while a hair straightener is plugged into an outlet on the left side of the table. The room is well-lit with a mirror reflecting the toddler's image in the background. Her hair is rolled with hair rollers which were taken off by her mother in the next clip. The mother fluffs the toddler's hair and she herself checks out her hair in the mirror before the video ends.",0 320,v_5P9Tbut04xE,Can you describe the video tutorial on how to play an octave in a harmonica?,v_5P9Tbut04xE_320,"The video tutorial shows a bald man wearing a white shirt demonstrating how to play an octave in a harmonica. He begins by explaining how different holes on the harmonica can produce different sounds. He shows the correct positioning of the harmonica near the mouth and how to blow on it to produce the desired sounds. The video ends with the man playing an octave and double notes on the harmonica. Overall, the video provides a step-by-step guide on how to play an octave on a harmonica.",0 321,v_7gaC3b5nJqs,Can you describe the video content in detail? ,v_7gaC3b5nJqs_321,"In the video, there are three women wearing gym clothes standing in a studio with a wood floor. The studio is lit by yellow lights with mirrors on the right wall, and windows visible high up on the left wall. Furthermore, there are punching bags hanging from the ceiling at the back. These three women are standing in a triangle formation and start to dance to music by moving left and right while moving their hands. Their reflection can be seen in a mirror all the way at the back of the gym. The dance involves both slow and fast movements which they continue until the music stops. The lead dancer walks up to the camera as the music ends.",0 322,v_15yU0R2MBQM,Can you describe the content of the video in detail?,v_15yU0R2MBQM_322,"The video begins by showing a blue toothbrush in front of the camera in a room with a green wall and a painting of flowers hanging on it. The camera shows an open door at the end of the room and a bed with two white and an orange pillow. Next, a girl wearing a white t-shirt appears, smiling at the camera while brushing her teeth with the blue toothbrush. The camera captures the brushing motion and toothpaste inside her mouth. Finally, she removes the toothbrush from her mouth, still smiling, and the video ends. ",0 323,v_kgz7c2kb4Rg,Can you describe in detail what the woman in the yellow kayak is doing in the video?,v_kgz7c2kb4Rg_323,"In the video, a woman in a yellow kayak wearing a life vest and a white cap is demonstrating how to properly use the paddle to turn the kayak. She is stationed in a calm river that is visible during the daytime. The backdrop consists of hills covered with greenery in the far background and a shore on the right with trees. The woman starts by doing a reverse sweep, which involves turning her torso to her left and sweeping the left paddle from back to front. This motion causes the kayak to turn to the left. She repetitively performs this action, after which she switches sides; doing a forward sweep with the left paddle and a reverse sweep with the right paddle. Finally, she repeats this action once more. The video ends with the woman addressing the camera, followed by contact information for 'Expert Village' displayed on the screen.",0 324,v_0k0xNs8Zjb4,Can you describe the video in detail?,v_0k0xNs8Zjb4_324,"The video begins with the words ""Grass Tumbling"" appearing on a black screen, followed by a negative photo of a girl with the words ""Warming Up"" in the next shot. The girl, wearing different outfits throughout the video, is seen performing various gymnastics moves such as backflips, back handspring tucks, and running front flips. The surroundings change from a garden with green plants and a hedge visible in the background to a park with trees visible in the background. In the end, the girl performs a tumbling sequence by flipping backward and doing running front flips, while the names of different moves done by the girl are named. Although in some clips, she stumbles or lands unsteadily, her skill and grace are evident throughout the video.",0 325,v_9pavfCL1HvU,Can you describe the video in detail?,v_9pavfCL1HvU_325,"The video shows a group of people playing water polo in a swimming pool during the daytime. Spectators can be seen sitting on bleachers on the poolside watching the game. The players are trying to get the ball at one of the corners of the pool, specifically two players in one instance. A clip of a player throwing the ball towards the goal gets intercepted by an opponent. Afterwards, all the players swim back as the goalkeeper throws the ball back. Another attempt to score a goal is made, but it gets stopped by the goalkeeper at the end. ",0 326,v_i5qTK0mInTc,Can you describe the video in detail?,v_i5qTK0mInTc_326,"In the beginning of the video, an old woman enters a house and proceeds to watch a movie on the sofa. Her daughter enters the living room from a door on the right side and sits next to her. Meanwhile, two women enter the house carrying a flower pot, one wearing a blue outfit and the other wearing pink. The old woman eats popcorn while they are in the room. The following day, the old woman and her daughter are sitting on the sofa conversing. Later in the video, two old women are sitting at a table drinking coffee. One woman wears a dark green sweater while the other wears a blue vest over a yellow outfit. Another woman joins them at the table and they continue to talk until the end of the video. The whole video takes place in a well-lit living room.",0 327,v_EK7qW-oavQY,Can you describe the video content in detail?,v_EK7qW-oavQY_327,"The video portrays a game of water polo being played in a swimming pool. The pool is well-lit with lights along the top of the walls, and people can be seen standing on the poolside. The players are scattered in the pool and can be seen converging towards a goal post. One of the players makes an attempt to score a goal, but the goalkeeper successfully deflects the ball. The spectators are sitting on a bench alongside the poolside and are wearing red shirts or swimwear. A man dressed in a white outfit is seen blowing a whistle. The game subsequently continues with one of the players retrieving the ball from the edge of the pool, and the game starts again. Players can be seen passing the ball to their teammates, and eventually, one of the teammates near the opposite goalpost scores a goal. The video clip concludes with the players swimming away.",0 328,v_jCxQQ9DMpT0,Can you describe what happens in the video?,v_jCxQQ9DMpT0_328,"The video starts with a logo and website for HuntinClub.com. Then, a man wearing a beige shirt and cap on a green lawn golf course draws the string of a compound bow with an arrow notched in it. He shoots the arrow towards trees and shrubs in the far back. In the following clip, he is joined by a man wearing a blue polo shirt and grey cap who is standing a few feet to his right. The archer draws his bow and shoots an arrow before handing the bow to the man with the blue shirt. The man instructs him on how to grip the bow before returning it to the archer who takes aim and releases the arrow again following the instruction. The man in the blue polo shirt walks away at the end of the video after giving the instructions.",0 329,v_4NPVpI9zUpI,Can you describe in detail what happens in the video of Stefan Holm performing the six degrees of jumping?,v_4NPVpI9zUpI_329,"The video shows Stefan Holm from Karlstad, Sweden, performing six jumps as part of his jumping routine. In the first clip, he successfully jumps over a horizontal bar on an indoor field while being watched by several people. The second clip shows him attempting the California roll, jumping over a pole, but failing and knocking the pole down. He retries the jump and is successful. The third-degree jump, called the 'Holm Roll,' is demonstrated by him rolling over the bar. A cameraman records him as he completes his jump. In the fourth-degree jump, called the 'Stradle,' he jumps with a sideways turn and being parallel to the bar. He repeats the jump, then adjusts the bar to the next level up. The fifth-degree jump, called the 'Scissor kick,' shows Stefan performing this jump by jumping one leg after another over the bar in several clips. The sixth-degree jump, called the 'Fosbury Flop,' has Stefan running towards the bar and jumping over it backward. Overall, the video showcases Stefan Holm's impressive skills in performing these six different types of jumps.",0 330,v_Ku76zinwWkg,Can you describe the video in detail?,v_Ku76zinwWkg_330,"The video showcases a girl and a boy both wearing black outfits, running on a track during the daytime. As the girl runs, she jumps over several obstacles before reaching a sand pit where she performs a high jump. In the background, buildings including a smoke stack can be seen. The sky is filled with cloudy weather. The boy also runs on the track, dodging obstacles and finally jumps into the sand pit. The shot of the boy's run is replayed a few times to showcase his jump. Overall, the video portrays the athletic abilities of the two individuals who are determined to perform their best in a challenging context.",0 331,v_Hy54nZSDxTk,Can you describe in detail what happens in the paintball park in the video?,v_Hy54nZSDxTk_331,"The video starts with a group of people wearing paintball helmets and carrying paintball guns, standing around in a paintball park with false walls in the back while conversing. The cameraman finishes giving instructions and runs forward while shooting people in the distance. During the shooting, a person wearing an orange shirt is visible. On the shooter’s right, there is a net separating the park from the outside. The shooter continues to move and shoot, and a few people crouched in front of him hold their hands up and walk back as he approaches. People can be seen walking back towards the exit with their hands up, and the video ends with the shooter still shooting and avoiding being shot. All the people are wearing hoodies over their helmets, giving the video a game-like feel. The video seems to be shot from first-person perspective as the cameraman is actively shooting while moving throughout the park.",0 332,v_KApqxr02rcQ,Can you describe the video in detail?,v_KApqxr02rcQ_332,"The video depicts a women's field hockey match being played in an outdoor hockey rink with green ground, fenced off at the boundary. The field is surrounded by a lawn where people are visible sitting and watching the game. Two teams, one wearing white and the other wearing dark blue are playing against each other. The video follows the gameplay of a single player on the dark blue team named 'Jessica Skillings'. The game begins with Jessica scoring a goal followed by her team's celebration. The clip shows another goal scored by Jessica and her team's celebration. The video ends with Jessica scoring another goal and the team's ecstasy. The digital scoreboard is displayed at the end of the video, showcasing the final score of the match.",0 333,v_BBKSKU6dGGk,Can you describe the details in the video of a man shoveling snow?,v_BBKSKU6dGGk_333,"In the video, a man dressed in a blue jacket is seen shoveling snow from a sidewalk. The sidewalk and lawn on two sides are covered with snow, and the sky appears cloudy. A tree covered in snow is seen next to him, while snow-covered trees can be viewed down the street from the man. The man seems to be slowly clearing the snow while walking forward, with the edge of a car visible behind him. This video presents a serene winter scene with a man carefully shoveling snow off the sidewalk.",0 334,v_-HpCLXdtcas,Can you describe the video in detail?,v_-HpCLXdtcas_334,"In this video, we see a man wearing a black polo shirt and shorts, standing indoors behind a barbell laid on the floor. Behind him, we can see a closed shutter, and a door is visible on his left side. There is a fan installed on the right wall, with pipes running near it. The barbell has multi-colored weights on it. The man bends down and squats to lift the barbell. Then, he lifts the barbell over his head and drops it to the floor. Later, he walks towards the side and turns back. The video ends with another man wearing a white t-shirt who comes into view on the right.",0 335,v_9VtxNvLx6zA,Can you describe the video in detail?,v_9VtxNvLx6zA_335,"The video is shot inside a gym and starts with a girl holding a volleyball. There are two teams playing on a court, and spectators are seen sitting on chairs next to the wall. The wall behind the second team has paw prints as a design, and a digital scoreboard is visible on the top of the same wall. The girl serving from the first team dribbles the ball and serves it to the opposite team. A girl from the opposite team strikes the ball, but the ball goes outside the court. An umpire can be seen standing on a ladder next to the net. The ball is passed back to the first team to serve again, and the same girl serves the ball once more. The video ends with a member of the opposite team hitting the ball outside the court.",0 336,v_AwgGYaV1lT0,Can you describe the video in detail?,v_AwgGYaV1lT0_336,"The black and white video starts with a man in a wooded area chopping wood with an axe. The man is standing on the grass with a log placed upright in front of him. There are trailers visible in the back along with a truck. A tent with a parked bike in front of it is set up some distance in the back from the man. A foldable table with chairs is visible at the back and right of the man. We see the man strike the log with an axe and the wood breaks into pieces. Finally, the man sticks the axe to the ground in front of him.",0 337,v_0X0u_3xUBPE,Can you describe the video content in detail?,v_0X0u_3xUBPE_337,"The video is about a Tai Chi practitioner in a black uniform practicing Tai Chi outdoors on a concrete floor surrounded by trees. The video opens with a white screen featuring a drawing of a woman in a Tai Chi pose, the yin-yang symbol and the words ""TAI CHI CHUAN YANG"", and a red screen with the words ""Tai Chi Chuan Forma 8"". The man goes through several stances by moving his hands and feet slowly over a few minutes, interspersed with short periods of rest, before winding down his practice. There is also a flight of outdoor steps visible with two people sitting on top, a few feet apart. Overall, the video showcases a peaceful and well-controlled Tai Chi practice session in a serene outdoor location.",0 338,v_iABuDhagUm8,Can you describe the video content in detail?,v_iABuDhagUm8_338,"The video begins with a shot of a backyard of a house where there is a lawn and a tree by the fence that stretches around the yard. The view beyond the fence includes several trees. Then a man carrying an axe in his right hand walks in slow motion toward a chopping block where a log is placed. As the man swings the axe down on the wooden log, it cracks in the middle. After swinging the axe again, a slight crack appears on the log. Meanwhile, a dog jumps up and down near the man on his right. When the man swings the axe down again, a piece breaks off before the log finally breaks and falls on the ground. The dog then walks closer to the log and runs back just as the axe is coming down. Finally, the video ends with the man throwing the axe in front of him and walking towards the camera.",0 339,v_jt-Vnap5KP4,Can you describe the video content in detail?,v_jt-Vnap5KP4_339,"This video starts with text about the video, followed by an old man wearing winter clothes, a hat, and sunglasses sitting on a mobility scooter outdoors during the daytime. Tables and chairs are arranged neatly near him in rows. He starts to play the harmonica and looks into the camera while playing. As he finishes playing, he laughs and speaks to the camera, ending the video. Overall, this video features an older man showcasing his talent on the harmonica while in an outdoor setting with arranged seating nearby.",0 340,v_agu58IVL7IQ,Can you describe the details of the video content?,v_agu58IVL7IQ_340,"The video starts with two men in a playground during the daytime. One man is holding a skateboard while the other is sitting down. Next to them is a fence with a garden in it and people are visible sitting on benches some distance away. Shortly after, the man with the skateboard begins to perform flip tricks while skating. People can be seen skating in the background as he continues to skate and do more flip tricks. The video ends with the man still skating.",0 341,v_9AfQ2Q-96oE,Can you describe the video in detail?,v_9AfQ2Q-96oE_341,The video features a man participating in a disc throw competition in front of a large crowd of spectators. The man is positioned in the middle of a netted area which has an opening on the side for throwing the disc. He begins by spinning to create momentum and then throws the disc. A referee marks the spot where the disc lands and replays of the throw from different angles are shown. The video also includes several clips of the man making different disc throws in succession.,0 342,v_A904-cbaYDw,Can you describe the video content in detail?,v_A904-cbaYDw_342,"The video is titled ""Slant Flying"" and starts with the text appearing on a black background. The scene then transitions to a man wearing all-black clothing standing on a sunny lawn with trees and other plants in the background. He begins to demonstrate a tai chi practice by showing each stance and instructing on the proper hand and leg positions. He showcases the leg and hand positions by physically demonstrating them himself. The video continues with the man instructing on different hand and leg positions for the duration until the video ends.",0 343,v__B7rGFDRIww,Can you describe the video content in detail?,v__B7rGFDRIww_343,"The video begins with a few blurry black-and-white frames where a woman is doing a pirouette, set to the song 'Let it Go' from the movie Frozen, which continues playing throughout the video. We then see different shots of single and multiple people in different ballet poses. There is a black and white shot of a woman in black clothes dancing inside a large building with a wet floor. Another woman is dancing on a white stage with a white background. The next few shots are of different women continuing to dance. There is a group of dancers in green outfits dancing on stage with a black background and overhead lights. A clip of a girl in a white tutu on a black stage is dancing. Another girl is dancing in front of an empty stage with chairs on it. We also see a clip of a man on a white floor with a plastic background doing a pirouette and jumping in the air. The video continues with shots of the same people from the beginning in various poses. We see a woman in an empty ballet studio practicing different poses in front of a mirror. The video ends with more shots of single and multiple women dancing in different poses.",0 344,v_5tFfEA1JWjA,Can you describe the video content in detail?,v_5tFfEA1JWjA_344,"In this video, there are two people standing on an indoor basketball court, with many frames hanging on the far wall. One of the individuals is a boy holding a basketball and the other is his coach. The coach appears to be instructing the boy as he proceeds to dunk the ball through the basket. The boy catches the ball as it comes through the basket and continuously dunks the ball by jumping high. He successfully dunks the ball from either side of the basket while jumping. Overall, the video captures a coach and his student practicing and perfecting their dunking skills on a basketball court.",0 345,v_AQnp2QAnwI0,Can you describe the video?,v_AQnp2QAnwI0_345,"The video starts in a darkened auditorium, and the lights on the stage turn on to reveal a group of dancers. There is a screen at their back with a projection on it. As the women start dancing, darkened silhouettes of people wearing headphones can be seen sitting in front of the stage. The dancers go through various moves, showcasing their skills before converging for a final bow.",0 346,v_ANaMmXJFE54,Can you describe the video in detail?,v_ANaMmXJFE54_346,"In the video, a team of cheerleaders is seen running into an indoor basketball court and waving towards the spectators as they enter. There are people standing near the team, as well as a photographer and a few judges seated behind a table. The stands are crowded with many people. The cheerleaders start their routine by forming bases and performing a basket toss, where a group of bases lift and throw flyers into the air, who perform various acrobatic moves before landing back down. They then proceed to break apart and stand in formation some distance from each other. They perform flips and reform into bases to start another stunt, throwing several flyers into the air, and executing different poses as they are held up. The cheerleaders continue doing various routines with different formations and stunts until they end with another stunt.",0 347,v_7orO93DICYw,Can you describe the video in detail?,v_7orO93DICYw_347,"The video starts in a gym that is illuminated by overhead lights. The gym features several balance beams that are fixed to the ground with foam pads lining the floor to provide cushioning. The wall of the gym is adorned with numerous flags. A man walks up to one of the balance beams and mounts it, exhibiting various gymnastics moves with impressive balance, including a backflip and several spins. He concludes his routine with a jump onto a mat, incorporating a flip as part of his landing.",0 348,v_9hTcvGUnMBs,Can you describe the video in detail?,v_9hTcvGUnMBs_348,"The video takes place in a field where a high jump contest is being held. The scene shows a horizontal bar with an elevated foam pad next to it, and two people standing on each side of the bar while a referee with a notepad is watching the competition from a distance. In the background, we can see a group of people sitting on chairs and on the ground. The competition starts and we see several girls running towards the horizontal bar and attempting to jump over it. The jump either succeeds or fails, and the man standing near the bar holds up a specific color flag depending on the result. As the competition progresses, the height of the bar increases. Finally, the video ends with a girl running towards the bar and jumping over it, but unfortunately knocking it over. Overall, the video is a depiction of a high jump competition where athletes compete to jump over a horizontal bar while gradually increasing its height.",0 349,v_60tIsGR0Zzg,Can you describe what happens in the video with the boy mowing the lawn?,v_60tIsGR0Zzg_349,"In this video, a boy is seen holding the handle of a lawn mower in a yard with a black car visible next to it. The yard is located next to a street from which a line of houses is visible. It appears to be daytime as the boy struggles to move the mower and begins mowing one corner of the yard. Before starting, he switches on the mower and moves it forward. The video then shows the boy starting in the next patch of lawn by moving the mower forward and back. In the process, he gets stuck in a subsequent patch and pulls back the mower while the front end of a silver sedan is visible in the driveway next door. Finally, the video shows a shot of the boy from afar as he starts to mow the lawn from the edge of the yard.",0 350,v_IRua6QGP-Ow,Can you describe in detail what happens in the video?,v_IRua6QGP-Ow_350,"The video is a demonstration of a bartender making a cocktail. The bartender is standing behind a well-lit bar with bottles of drinks behind him on shelves. He is wearing a black vest and tie over a white shirt. Using a jigger, he measures quantities of various spirits, mixes them with a tea whisk, then strains them into a mixer with a tea strainer. After tasting, he adds ice cubes to the mixer and shakes it. Lastly, he strains the mixture through a tea strainer into a glass with ice cubes and runs a lime on the rim of the glass before serving.",0 351,v_DOI6tsATsE4,Can you describe the video in detail?,v_DOI6tsATsE4_351,"The video begins with a boy, who is wearing a dark blue sweatshirt, sitting at a table with a plate of food in front of him. He holds his right hand to the side of his head while looking at the camera. In the background, there is a lamp visible near the wall. Then, there is a cutaway shot of a man wearing a white t-shirt looking at the camera in a room with a packed shelf in the back. Finally, the video ends with several cutaway shots of the boy looking at and away from the camera. Although there is not much context provided, the video seems to be a simple footage of a boy and a man looking at the camera.",0 352,v_ej9TkJVjK9M,Can you describe the video in detail?,v_ej9TkJVjK9M_352,"The video shows a man in black tights standing behind a barbell in a well-lit gym with other exercise equipment visible to his side. He tightens his belt, walks to the barbell, and lifts it above his head before throwing it down. As he walks off to the side of the gym, a man in a green shirt is visible sitting on a red chair. Overall, the video captures a weightlifting exercise performed by a man in a gym with good lighting and other exercise equipment in the background.",0 353,v_8L1UjGLOCeI,Can you describe the activities and contents of the video in detail?,v_8L1UjGLOCeI_353,"The video depicts a woman who is standing inside a room and there is a hopscotch court drawn on the ground. She is positioned near a white wall with a clock hanging on it, and a closed door can be seen behind her. The woman begins to hop on the court and successfully completes a pass. Later, she turns around and hops back to the original starting position. Then, the woman proceeds to open the door and turns to face the camera. Finally, she holds her hands to the side with an expressionless face. ",0 354,v_c7S423zJqPo,Can you describe in detail what happened in the aerobics class in the video?,v_c7S423zJqPo_354,"The video depicts an aerobics class where all participants, except one man wearing a green t-shirt, are women. The studio is brightly lit by overhead lights and wall-mounted fans are positioned on the far wall, with mirrors covering most of the wall to the right of the people. Two air conditioner units can be seen mounted on the wall as well. All the participants are using an aerobics step as they work out. At one point, the first woman on the right appears to struggle to follow the rhythm and eventually steps away from the aerobics step. A woman in the back, wearing a red top, also stops and walks away. Towards the end, the man in the green t-shirt slows down and walks to the back of the class before the music stops.",0 355,v_Bkhr72sazvQ,Can you describe what happens in the video about the weight loss product?,v_Bkhr72sazvQ_355,"In the video, a man wearing a white shirt is seen drinking coffee from a coffee cup while holding up a sachet of coffee. The date is displayed next to him on the screen. He speaks about a weight loss product and continues to do so as a cutaway image of five pounds of fat is shown. As he speaks, an image of five pounds of muscle is displayed. He holds up the sachet and continues to speak into the camera. Finally, the text ""5 pounds lost in 7 days"" appears on the screen, and the video ends with the man still speaking about the weight loss product.",0 356,v_d-RYiiPzVKg,Can you describe the video in detail?,v_d-RYiiPzVKg_356,"In the beginning of the video, a wooden table is shown along with a man placing a bottle of white vinegar and a bottle of olive oil on it. The man then adds a few drops of oil inside the vinegar bottle and shakes it to blend the mixture. The video then shows a fast forward clip of the man polishing the table with the mixture. In the end, the man speaks while showing the polished table top. Overall, the video demonstrates how one can make a homemade furniture polish using vinegar and oil.",0 357,v_BmLDHLKiIdQ,Can you describe the archery competition in detail?,v_BmLDHLKiIdQ_357,"The video showcases an archery competition between two competitors in an indoor track and field stadium with well-lit overhead lights. Spectators are seated in the stands as the archers use a compound bow to fire arrows one after another, with the points awarded for each shot appearing on the screen. The video captures the reactions of not only the competitors themselves but also their teammates and the audience in the stands. In the end, the second contender wins the contest, resulting in applause from both the commentators and spectators alike. The video also shows the winner celebrating their victory while the audience cheers and the runner-up congratulates the winner.",0 358,v_9VflCeoPr9I,Can you describe in detail what is happening in the video?,v_9VflCeoPr9I_358,"The video shows a group of people playing with a red ball on a big lawn-covered field surrounded by trees visible outside the fence. A man wearing a red shirt rolls the ball to another person who runs towards the ball, kicks it and passes it to the next waiting person. An old woman in a pink sweater is seen standing in the distance who later runs towards the ball. Children are playing on the swing to the right. When the ball is kicked towards the left side of the field, the old woman runs towards a ring near other people and celebrates by holding her footwear in her hand. She then walks back to the spot where she ran from. The video also shows a man wearing a blue shirt and holding a water bottle pointing in the direction of the man wearing the red shirt while a group of children standing and looking towards them. The video ends when a girl kicks the ball towards a waiting boy who catches it.",0 359,v_1kwIYXB4b8s,Can you describe the video in detail?,v_1kwIYXB4b8s_359,"The video is titled 'DISCOVER Moose Jaw' and begins with this text displayed on a light blue screen with an image of a moose. The scene then shifts to a man sitting on a chair while a woman stands behind him, using a trimmer to shave his head. There is another man in the room who is recording the haircut using a mobile phone. Other individuals can be seen standing around the room, including a person sitting on a sofa towards the back. The man getting his head shaved is speaking to someone in front of a mirror, and there is a close-up shot of the shave behind the man's head. At the end of the video, the lady shaving is done and walks away while the man gives a thumbs up.",0 360,v_kPn9NzU4W48,Can you describe in detail what happens in the video?,v_kPn9NzU4W48_360,"In the video, the scene opens with a teen walking towards the camera while putting on his boxing gloves in a white and blue-colored basketball court. He is dressed in a black T-shirt and shorts, and there is a basketball hoop mounted on the wall behind him. The video introduces 'Tyler,' who is already in the court wearing a cutoff T-shirt and boxing gloves. Eventually, the first teen is introduced as 'John.' Both John and Tyler touch gloves and begin to spar, starting with kicks and subsequently moving onto punches. They dodge each other's hits while making contact and moving around the court. In the background of the court, there are other people visible. At the end of the video, Tyler keeps pushing John back, and the clip ends.",0 361,v_4iFlM_Zu7xs,Can you describe the dirt bike video in detail?,v_4iFlM_Zu7xs_361,"The video begins on a dirt bike track with a rider jumping over an incline on his bike, with white flat-top buildings visible in the far background. Another scene shows a different biker jumping over another dirt incline. The video continues with a series of stunts performed by two riders taking turns, riding and jumping on the dirt track in a circle. A person holding a camera in the middle of the track can be seen recording the riders. The riders perform a sequence of jumps one after another in a clip. The video ends with the two bikers jumping over a hill one after the other. Overall, the video showcases different stunts and jumps performed by dirt bikers in a track.",0 362,v_Dbas61NkTV0,Can you describe the cheerleading routine performed in the video in detail?,v_Dbas61NkTV0_362,"The video starts with a cheer squad on a well-lit stage, with a wall projected with gobo lighting in different shapes. The squad members then begin their performance in a formation, incorporating impressive acrobatic stunts. During the routine, some members execute backflips, while others are lifted by multiple bases and thrown into the air. The thrown girls twirl and perform flips before landing safely. The routine continues with different formations, with the two men in black outfits supervising the stunts. The squad also performs a dance and ends their performance in a group formation. Overall, the cheerleading routine combines intricate, synchronized choreography and acrobatics, demonstrating a high level of skill and teamwork among the members.",0 363,v_j6ElczD-Pw4,Can you describe the scene in the video about the girl leaning toward the sink in the bathroom?,v_j6ElczD-Pw4_363,"In the video, we see a girl wearing a black top leaning down toward a sink in a well-lit bathroom. There is a luffa placed beside the sink, and a mirror is hung on the wall above it. On the girl's left, a maroon towel is hung from a ring on the wall. The water is running in the sink, and an open door is visible behind the girl. She picks up the luffa and taps it on her face, causing the suds to stick to her face. She then washes it off with water to clean her skin.",0 364,v_e3DB_y78IHc,Can you describe the video in detail?,v_e3DB_y78IHc_364,"The video begins by showing a few hoardings advertising ""CHEYENNE WYOMING"" and other activities, followed by a beige and black building providing fishing information. Next, a wooden cabin located near a flowing stream is shown with a sign pointing towards a fishing pond. The video then shows a red building with a blue thatched room situated near a lake and a sign advertising ""Cowboy Country"" placed next to a tree. Two men are seen standing near a metal fence and talking to each other, while a horse grazes near the other side of the fence. Moving forward, the video shows horses saddled and tied to the fence, and people riding them near a barn, through a brush, and near a stream walking a path on a green hill. They are followed by shots of three chickens in a coop, a goat eating hay, a horse trying to fit its nose through the netting of a fence, a black bull sitting outside a metal gate, and a brown cow sitting inside a fenced area. Finally, the video concludes with ostriches, alpacas, and camels grazing one after another.",0 365,v_9ZVWD0ZKXZg,Can you describe the video starting from the climbing of the rock?,v_9ZVWD0ZKXZg_365,"The video starts by showing a young boy wearing a harness and an orange T-shirt climbing up a rock. He had a belay rope fastened to him for safety. After a few moments, he paused to apply chalk to his hands from a bag attached to his back and continued the climb with good visibility during the day. While climbing up, the tree on his right side was also visible. The boy managed to climb up to his right and continued by looking for handholds and applying chalk. He paused a few feet from the top to rest and applied chalk to his hand before continuing the climb. Finally, he reaches the top and looks down. After that, the next clip shows him climbing down the rock. We see another boy holding the belay rope as he descends, and he finally steps down from the rock.",0 366,v_1dDAcUliXrQ,Can you describe the video content in detail?,v_1dDAcUliXrQ_366,"The video is an indoor badminton game featuring two teams of three women each. The court has dark blue floors and walls. One of the players from the first team leaves the game briefly to pick up a purse and talks to her teammate. The remaining players keep playing, but occasionally they miss hitting the shuttle. The first team continues to play with only two players. Towards the end, one of the players from the second team misses hitting the shuttle, and the remaining players converge towards the net to talk. ",0 367,v_KvtqF0LaWU0,Can you describe in detail what happens in the video?,v_KvtqF0LaWU0_367,"The video begins with a credit roll and depicts a girl wearing glasses and a red outfit standing behind a black stone kitchen counter attempting to open a jar. There is a wooden cutting board and a steel bowl on the counter along with shelves visible to the right and back of the girl holding different condiments. A woman wearing a sweater eventually joins her next to the counter as the girl holds up various ingredients to the camera before proceeding to chop cherry tomatoes and adding basil paste and sprinkles some contents from a bottle into the bowl. A man wearing a white shirt later walks next to the girl, tastes some of the mixture with a spoon, and proceeds to speak to the camera. The video ends with a list of ingredients used.",0 368,v_3VjaC7wdMso,Can you describe the video in detail?,v_3VjaC7wdMso_368,"The video starts with a girl sitting on a wooden chair next to an open window while playing the piano. The sunlight is streaming through the window, and outside the window, we can see some trees. The edge of a bed is visible behind the chair where the girl is sitting, and she is playing the piano by looking at the sheet music in front of her. After a few seconds, the girl starts to sing softly while continuing to play the piano. ",0 369,v_cms1BP4eKOA,Can you describe the video in detail?,v_cms1BP4eKOA_369,"The video features players from two different teams standing on either side of a basketball court, but not divided according to teams. The drill being performed is a point guard drill and begins with the players running around a cone to attack the basket. After shooting, they retrieve the ball from a rebounding machine under the basket. The players then dribble to the opposite basket to attack, while making a point guard entry pass. The video concludes with the players still executing the drill.",0 370,v_Ivq9_wPFNs4,Can you describe the video in detail?,v_Ivq9_wPFNs4_370,"The video features Britney Reese, a woman in sportswear, performing a high jump into a sand pit. The video starts with her leaning forward, followed by a graphic displaying her name and stats on the screen. There are two men sitting on stools next to the sand pit with measuring sticks, while a man sits behind a banner with measurements. After the jump, Reese gets up and is seen running in the lane she ran through while clapping her hands. People can be seen in the seating area, and flags of different countries are hung on the railings. Towards the end of the video, a shot is shown in the spectator's stand where a man in a suit is clapping, while other people are sitting around him.",0 371,v_dO01vfB9z4g,Can you describe the video in detail?,v_dO01vfB9z4g_371,"In the video, a young boy wearing a dark blue t-shirt is seen standing on a box and scrubbing a white bowl in a well-lit kitchen sink. There are other dirty dishes in the sink and a basket of dishes next to it. After scrubbing the bowl clean, he places it in an empty sink and continues scrubbing the rest of the dishes. At one point, a woman wearing a yellow top enters the scene and records the boy while holding up her phone. She then hands the boy a scrubber to use. The video continues until the boy finishes scrubbing all the dishes. In the end, the boy looks back and continues scrubbing.",0 372,v_4-KiAur4dI8,Can you describe the video content in detail?,v_4-KiAur4dI8_372,"The video starts with an aerial view of a lakeside area with several people carrying their kayaks on the shore. We see several kayaks in the river from an aerial view. A man carrying his kayak and paddle is seen running on the street. The video also shows several people rowing through first a wide river then a narrow stream on their kayaks. There are shots of people running and cycling through the woods, with cyclists struggling to pedal through uphill and raised pathways. Towards the end, a cyclist makes it through the finish line followed by another one. We also see people drinking from red bull cans throughout the video. Overall, the video showcased a Red Bull Crossways event where people were kayaking, running, and cycling through various terrains.",0 373,v_1XNHcfxTqW0,Can you describe the video in detail?,v_1XNHcfxTqW0_373,"Sure, the video starts off with a long-haired man sitting on a sidewalk playing a harmonica. He is dressed in a white T-shirt and is sitting beside a store with a glass facade. Inside the store, you can see mannequins on display. Behind the man, there is a blue door visible. On the sidewalk, there is a white bag lying a few feet from the man. As people walk by, the man continues to play the harmonica until he stops and holds out his hand to someone, ending the video.",0 374,v_AE2gHOwcV14,Can you describe the video in detail?,v_AE2gHOwcV14_374,"The video takes place in a gym with blue foam padding covering the floor and a balance beam positioned lengthwise in the center of the space. A girl stands near one end of the beam, then mounts it and proceeds to do a series of gymnastic moves. She starts by performing a few balancing acts, then works her way down towards the other end of the beam. Once there, she executes a front summersault before leaning back onto the beam and doing another balancing act. The girl then proceeds to perform a handstand for a moment before landing back on the foam padding. Throughout the video, a divider wall can be seen separating the gym from the rest of the hall, and a glass door is visible in the background.",0 375,v_bphckj0BV5U,Can you describe the video in detail?,v_bphckj0BV5U_375,"The video features a woman wearing a grey top who is sitting on the ground in the woods during the daytime. Dry leaves are scattered all around the woman. She starts demonstrating how to start a fire by holding up a green Bic lighter and a box of matches while dry leaves and tinder are placed in front of her. Further, she uses a carbon knife and a Ferro rod to light up the tinder she has gathered. The video ends with the woman holding up the green Bic lighter.",0 376,v_E5YBb4rzV30,Can you describe the video in detail?,v_E5YBb4rzV30_376,This video features a woman in a well-lit kitchen wearing a light yellow top. The kitchen has bottles of wine and a knife holder visible in the background. The woman is shown scooping some mayonnaise into a mixing bowl and adding relish and mustard to it before mixing it until it becomes smooth. She then adds celery and chopped onion to the mixture and then adds a can of tuna. The woman mixes the ingredients together and then arranges four large lettuce leaves on a plate. She places a spoonful of the tuna mixture in the center of each of the lettuce leaves making wraps of them. Then she folds the lettuce leaves over the mixture and holds them up to the camera. The video ends with an advertisement for the cans of tuna and website information.,0 377,v_dRF1C_sBE5M,Can you describe what happens in the video?,v_dRF1C_sBE5M_377,"The video starts with information about the video appearing on a black screen. A man wearing a green jacket walks up to an axe that is stuck in a log while standing near a Dodge truck. A dog is standing near the man, wagging his tail. In the scene, another man carrying a bottle of beer in a t-shirt and khaki pants walks to the back of the truck. He removes the cap and throws it to the side. He then opens the back door of the truck, takes a drink of the beer and places the glass in the back of the open truck. He walks back to the man trying to dislodge the axe from the log and yanks it out. He then proceeds to strike the log and cut it in two. The man wearing the green jacket walks a few steps back and watches. The man with the axe picks another log from the ground and places it on the chopping block. He then chops the block with the axe. He chops another log. In the following scene, a woman is holding an axe stuck into a log. The man in the T-shirt is standing a few feet from her. The man demonstrates to the girl how to dislodge the axe from the log and instructs her on how to chop the wood with an axe. The girl then tries to bring the axe down on the log which gets stuck. She tries to tap the end to dislodge it but eventually resorts to yanking it without success. The man then walks over to the log and chops it, after which the girl proceeds to chop another block of wood, splits it and repeats the process with the rest of the blocks. She then moves on to chop a bigger half and places it on the chopping block, which she successfully chops. The video ends with the girl standing back triumphantly.",0 378,v_H33jSILKmfI,Can you describe the video in detail?,v_H33jSILKmfI_378,"In the video, a boy wearing a white martial arts uniform practices training drills in a well-lit gym with a light wooden floor. Behind him, an American flag is hung vertically on the far wall. To the left of the boy, a group of boys sit behind a table, while a few men in suits are seated behind tables on the opposite side. They are observing the boy as he performs the drills, moving to the right of the frame. In the background, a young boy stands facing away from the camera and watches the drills. The boy continues to perform the drills until the video ends.",0 379,v_JiNcVb97CnA,Can you describe in detail the content of the video?,v_JiNcVb97CnA_379,The video starts with a man wearing a white t-shirt and a woman wearing a black coat over a pink top dancing together indoors. They are in a dimly lit living room with wooden flooring and posters hung on the walls. A curtain is visible at the back as they twirl and move around the room. There is a television on a pedestal in the corner and a white sofa visible on the left. The couple mostly does partner twirls as they continue to dance around the room. The video ends with the two still dancing. ,0 380,v_lIo8HfzzSNs,Can you describe the video in as much detail as possible?,v_lIo8HfzzSNs_380,"The video features a man in an orange chef's uniform speaking to the camera in a well-lit kitchen with walls painted a dark shade of yellow. A cutaway of a Russian salad is shown, followed by the man preparing the salad. A steel stove is visible behind him as he makes the dressing in a glass bowl, adding two teaspoons each of cream and mayonnaise, along with salt and pepper. He then mixes the dressing and adds cooked potatoes, carrots, and peas to a separate bowl along with chopped onion and spring onion, tops them with the dressing, and mixes everything together. The chef then proceeds to circle a glass plate with half-sliced lemons and adds the Russian salad in the middle. To finish, he adds a tomato cut like a rose on top and tastes the salad before the video ends with the chef speaking to the camera. Overall, the focus of the video is on preparing a Russian salad in a step-by-step manner.",0 381,v_dN8LBey17O8,Can you describe what happens in the video in detail?,v_dN8LBey17O8_381,"The video begins with a shot of a front yard with houses visible across the street. A man's hand is then seen grasping the grass on the lawn, running his fingers through it. He then measures the length of the grass with a ruler before adjusting a lawn mower to cut longer blades of grass, which he does by mowing straight lines across the yard. The man then empties the clippings from the mower and continues to mow, measuring the length of the grass and adjusting the mower settings until the grass is cut to three inches. Throughout the video, cars can be seen moving on the street in the background. Finally, the man measures the length of the lawn's grass with a ruler and displays a panoramic view of his cut lawn.",0 382,v_I7slpTgl0jc,Can you describe what happens in the video in detail?,v_I7slpTgl0jc_382,"In the video, we see a man wearing a red shirt standing in a practice cage in a field. He is holding a handle with a hammer attached to it and is standing on a round platform with a lawn surrounding it. There are trees visible at the edge of the field. The man then starts to practice a hammer throw during the day by swinging the hammer around himself. After a few swings, he releases the hammer through the open end of the practice net. He waits for the landing of the hammer and turns around to clap in satisfaction. Overall, the video shows a man practicing his hammer throw skills in an open field with the help of a functional practice cage.",0 383,v_ks018ZYzrx4,Can you describe the video in detail?,v_ks018ZYzrx4_383,"Sure, the video starts with the text 'Arenacross 2012' appearing on a black screen. Then, the video shows a montage filmed from inside a camper van passing through various locations, including a bridge over a river and an intersection. Afterwards, a boy wearing a black jacket, cap, and sunglasses is seen pushing a dirtbike, and a clip of a green dirtbike with the number '2' is shown. Next, the video takes us inside an indoor dirt biking arena filled with spectators, with a jumbotron fixed to the middle of the ceiling. We see bikers riding through berms and turning at the end of the bike path. The camera then shows some clips of different scenes from the camper, such as a little boy in a helmet and safety gear walking around. The video then goes back to the dirt bike arena, showing earth movers preparing the berms, people walking around, and different scenes of bikers. After that, the video shows two boys riding dirt bikes in a field, doing doughnuts and posing in front of the camera. Finally, we see kids racing at the dirt bike arena, and the video ends with an image of two boys posing in front of their dirt bikes.",0 384,v_KsFid_YVsn0,Can you describe the video in detail?,v_KsFid_YVsn0_384,"In the video, we see a group of girls wearing black dresses standing outdoors during the daytime with palm trees and buildings visible in the background. They take some deliberate steps and turn around and walk back. Then a few boys wearing red dress shirts and black trousers walk towards the girls and pair up with them. They begin to dance the tango slowly following the music. The scene then changes, and we see the dancers on an indoor basketball court, lit by dim red light. They first stand apart and then start dancing while walking towards each other. The boys and girls continue to dance and stand in a line. Lastly, the video ends with the credits.",0 385,v_hFpSoRlpyMo,Can you describe what happens in the cricket match between England and India that is shown in the video?,v_hFpSoRlpyMo_385,"The video displays a cricket match played during the daytime between England and India, with players on the field wearing white uniforms. Two batsmen are on the pitch- one batting and one at the non-striker's end, with an umpire standing behind the wickets on the non-striker's end, and a wicketkeeper a few feet behind the batsman. There are two fielders on the leg side of the wicketkeeper's left. The clip then starts with a bowler bowling a ball to the batsman. The batsman hits the ball through the gap in the off side towards the boundary where a fielder runs towards the ball to prevent it from crossing the boundary, and he falls on the other side of the rope after preventing the ball from touching the rope. The wicket player catches the ball which is thrown to him and removes the bails from the stumps. The batsman then walks to the non-striker's end and the players gather around the pitch. One of the umpires awards the run out to the third umpire with the message 'OUT' displayed on the big screen in the stadium. In the next clip, the fielding team is huddled in a circle on the field, with the batsman coming back onto the field after a break, and a close-up of the wicketkeeper is shown. Subsequently, the bowler bowls a ball and the batsman hits a six, and the video ends with an umpire holding up both hands in the air.",0 386,v_aOxRwTlkY80,Can you describe the details of the video content in the kitchen?,v_aOxRwTlkY80_386,"In the video, a man wearing a black T-shirt can be seen standing in a kitchen in front of a chimney. The camera then switches to a cutaway shot of pasta being served on a square plate. The ingredients in the dish are then shown, including parsley, olive oil, garlic, chilies, and dry pasta. The man then starts to cook the dish by adding garlic in a pan with oil, followed by chillies. After a minute of cooking, he adds cooked pasta and chopped parsley, ground pepper, and mixes to finish the dish. Lastly, an end screen appears where the man gives additional information and asks people to subscribe to his other social media accounts.",0 387,v_4VdS1eN3dv4,Can you describe the video in detail?,v_4VdS1eN3dv4_387,"The video starts with people playing a game of cricket in a backyard with the batsman holding the bat in front of the wicket. In another scene, three men are playing cricket in a garage when the batsman hits the ball towards the bowler who is struck in the head. The video then shows the same people playing cricket at night in the backyard under a floodlight, followed by a day game where the batsman hits the ball towards a fence. The video consists of several clips of these games played both during the day and night. Towards the end of the video, a shot of a fluorescent wicket set is shown, and it ends with several still images of the batsman holding the bat.",0 388,v_EhzHU0gkrzA,Can you describe the gymnastics video with the boy in tights and others doing stunts?,v_EhzHU0gkrzA_388,"The video features a boy wearing tights doing gymnastics using a parallel bar. The scene is set in a track field with a blue floor, lit by overhead lights. Other people are visible standing and sitting in various places, including a few sitting behind a table a few feet behind the boy. Another person is visibly doing gymnastics on the far right towards the corner of the hall. The boy starts by swinging and performing stunts, doing a handstand and then swinging back and repeating it while turning in the other direction. In the end, the first gymnast swings using the bars and lands on the foam mat below. The video ends with a person walking across the camera and another doing somersaults. Overall, the video showcases impressive gymnastics skills, with the boy in tights being the primary focus of the video.",0 389,v_6G8m-vsGTA8,Can you describe the video in detail?,v_6G8m-vsGTA8_389,"The video begins inside a hair salon with a man sitting in a chair holding a camera and recording himself. The salon is well-lit and there are shelves filled with hair products in the background. A woman sprays the man's hair with water using a spray can and combs his hair before beginning to cut it with scissors. The man can be seen waving and gesturing at the camera while other customers receive haircuts in the background. The video shows the haircut process from different angles and the woman switches from scissors to a trimmer. People can be seen walking in the background. The video ends with the man sitting in his car wearing a hat and sunglasses after his haircut, speaking to the camera while driving.",0 390,v_kfO5PGlsMJw,Can you describe the video in detail?,v_kfO5PGlsMJw_390,"The video features two boys performing karate on a stage with a black curtain in the back. The stage has red strobe lights on either end, with a speaker mounted on a tripod on the left side. An American flag is placed on the left side of the stage. The first boy, wearing a black belt, starts with a karate stance and moves through different karate moves quickly, after which he bows to the audience and exits the stage on the right. The second boy then enters the stage, takes a bow before his demonstration, and moves through different karate moves quickly. After finishing his demonstration, the first boy enters the stage and high-fives the second boy. The two boys then start a routine with synchronized movements and take a bow as the video ends. Two adults enter the stage from either side.",0 391,v_86Unahb4sJM,Can you describe in detail what happens in the video?,v_86Unahb4sJM_391,"In the video, a woman is seen in a room with a mirror visible behind and to the right of her. She is doing a tutorial on how to apply full makeup. Starting with concealer, she applies it to different areas of her face, then spreads it using her finger. Afterward, she applies foundation using a brush and uses a handheld mirror to look closely while applying it throughout her face. The woman then applies bronzer diagonally on her cheeks using a small brush. She proceeds to apply eyeliner, followed by mascara using a small applier on her eyelashes. Next, she applies lip gloss and darkens her eyebrows with mascara. The video ends with the woman smiling, showing off her earrings to the camera.",0 392,v_jN2CFk0xKp8,Can you describe the video in detail?,v_jN2CFk0xKp8_392,"In the video, a man dressed in a red polo shirt and blue trousers can be seen carrying a vacuum on his back and cleaning the carpet in an office with cubicles on either side. In the next clip, the same man is in a different office with a window that overlooks the outside, which is covered in frost. Outside the window there is a parked truck, and bare trees can be seen. In this second scene, the man is vacuuming the ceiling of the office. Finally, a different man, wearing a backpack vacuum, is shown speaking to the camera while standing sideways in the office.",0 393,v_JG7T6qtO4jg,Can you describe what happens in the video in detail?,v_JG7T6qtO4jg_393,"In the video, we see a boy break dancing in a garage adorned with tires and rims on the back wall as decorations. The first boy is wearing a black T-shirt and olive shorts. In the following clip, another boy wearing a white hat and black T-shirt is kneeling in the garage and speaking to the camera while the word 'JUNKYARD' can be seen written on the wall. Next, both boys are standing in the middle of the junkyard and speaking to the camera. Later, the boy in the olive shorts begins to demonstrate the 'Zulu Spin' move while the boy with the white cap is standing to the right side and giving instructions. The boy in the olive shorts slowly demonstrates the moves in the Zulu Spin, kneeling on the ground when he is done demonstrating. The video concludes with the boy in olive shorts showing the complete steps of the Zulu spin slowly.",0 394,v__ja1fre9OTE,Can you describe the gymnastics competition that is shown in the video in detail?,v__ja1fre9OTE_394,"This video shows a gymnastics competition which begins with an overhead shot. A gymnast is seen next to a balance beam on an elevated platform, while judges sit at a table attached to the same platform. Some distance away, there is another platform perpendicular to the first one where people are sitting on chairs. On the left side, another group of judges sits behind a table. The gymnast mounts the balance beam and starts the competition with a handstand, followed by a front flip and back flip. She performs various balance poses, including turns, jumps, and leaps. Finally, she does a dismount with cartwheels and jumps off the balance wheel, poses, and walks off the stage. Two people holding video cameras can be seen recording the gymnast. The video provides an interesting perspective from the point of view of the spectators, and the different shots provide a detailed description of the competition.",0 395,v_82EtiBkAsPg,Can you describe the video in detail?,v_82EtiBkAsPg_395,"The video is a recording of a man in a black jacket playing the bagpipe in a dimly lit bar. Several people surround the man, cheering and clapping as he performs. There are glasses and bottles visible on the shelves behind the man, and he is standing by a wooden beam with lamps fixed at the top. As he plays, flashes of light periodically illuminate the scene. The video ends with a shaky shot of the man playing the bagpipe, and overall captures the energetic and captivating atmosphere of the moment.",0 396,v_7OcxT66BxX0,Can you describe in detail what happens in the video?,v_7OcxT66BxX0_396,"In the video, a man wearing a black jacket and fedora stands on a stage while playing the harmonica and singing. The light shines from the top of the stage, revealing the audience in the darkened seats. During the performance, the man includes the audience, and at some point, he takes an opportunity to play the harmonica for a few stretches. The song ends with the man fixing the mic back on the stand before walking off to the side.",0 397,v_aDe5hUB3AdY,Can you describe the video in detail?,v_aDe5hUB3AdY_397,"The video starts with three dinghies sailing in the sea. The skies are cloudy, and in the next clip, the sailors are seen performing capsizing training. We can see that a few dinghies are capsized in the sea, and another one is being turned over by its sailors, who then righten it. The subsequent clip shows a boy sailing a dinghy, followed by a shot of several dinghies sailed by multiple people, with a capsized dinghy visible as a boy sails and turns near the boat that the cameraperson is filming from. Finally, the video ends with a story of two boys sitting and sailing on a dinghy. Overall, the video depicts sailors practicing capsizing and honing sailing skills in dinghies, as well as some shots of boys enjoying sailing.",0 398,v_5qY9yPt-5Go,Can you describe in detail what happens in the video?,v_5qY9yPt-5Go_398,"The video begins with a black French bulldog standing on a checkered red tablecloth illuminated with sunlight. The table is accompanied by chairs and a window can be seen in the background. A young boy then places a cup of coffee in front of the dog, which proceeds to drink from it. The boy tries to gently move the dog away from the cup but is unsuccessful. ",0 399,v_hvrKRg166eQ,Can you describe the video content in detail?,v_hvrKRg166eQ_399,"The video starts with a black and white footage of three people, a woman in the middle and two men on either side of her, sitting on a curved couch behind a coffee table with three coffee cups placed on it. Next, a man in a suit is seen speaking to the camera, followed by a teen standing behind a podium in a classroom giving a speech to the class. A whiteboard can be seen behind the teen, and a window is visible on the right wall. The video then shows women sitting on a bench in cheerleader outfits. A man wearing a black T-shirt and a cap is seen giving instructions to girls in a hall which is lit by overhead lights. A cheer squad performs a routine on a stage while men serving as back spots stand behind the bases. Different cheer squads are shown performing on stage, followed by a clip of girls watching the stage and walking away crying. The video then shows cheerleaders training and performing various routines. Finally, cheerleaders celebrating is shown.",0 400,v_a_JlhLnJM98,Can you describe the video content in detail?,v_a_JlhLnJM98_400,"In the video, we see a woman wearing a green sweater standing in a well-lit room with a window behind her. Hanging behind her is a jeans jacket and on the ironing board in front of her is an iron and a men's cotton dress shirt which is being ironed. To the left and behind her is a rack displaying various products. She begins by spraying starch on the shirt and ironing it, so that steam can be seen escaping from the holes of the iron. She then proceeds to iron the sleeve of the shirt, flipping it over once it's done to smooth it into a flat surface and sprays more starch before ironing it again. The woman then irons the ends of the sleeve before flipping the shirt over and continuing the process on the other side.",0 401,v_9Ufy_JGbnys,Can you describe what happened in the video in detail?,v_9Ufy_JGbnys_401,"In the video, a man speaking into a mic walks to the middle of a hall which is brightly lit and has tables arranged to make space in the middle. People are seated on chairs turned towards the middle and there are bottles on the tables. A man and a woman enter the middle area, holding hands and stand a distance away from each other. They both are dressed in evening dresses. When the music starts, they walk towards each other and start to tango. The couple moves around while dancing and continues to slowly dance as the other seated guests watch. Flashes of photographs are visible. As the tango progresses, they cover a wide area of the hall. In the end, as the music comes to the end, the dancers walk apart and bow toward the people who are applauding.",0 402,v_9eniCub7u60,Can you describe the video in detail?,v_9eniCub7u60_402,"The video starts in a dimly lit wooden room with a man wearing a checkered shirt and a woman dancing. In the right corner of the room, there is a small child who walks into the next room through a door. The wooden floor has a door visible in the back on the right and the back wall has a few photo frames hanging from it. The couple continue dancing and at the end of the video, the man spins the woman several times.",0 403,v_k1GP0cJOXbQ,Can you describe the video?,v_k1GP0cJOXbQ_403,"The video starts with a man and a woman placing their kayaks on the truckbed of a red Toyota truck while being surrounded by trees. They then get into the truck and drive away. In the following clips, people can be seen kayaking down a narrow and fast-moving body of water, wearing safety gear. There is a shot of a couple kayaking in a two-person kayak and two other kayaks floating next to them. Some clips show kayaking in calm waters with a sunset in the background, while others show kayaking in turbulent and rough waters. The video ends with people drinking beer on land, with a sunset in the background.",0 404,v_7bwruwic1CI,Can you describe the video in detail?,v_7bwruwic1CI_404,"The video starts with players wearing orange uniforms and blue helmets celebrating on a baseball field. It then switches to a sunny outdoor field where people are playing handball. A player throws the ball towards another player who kicks it; a referee is visible behind. A replay is shown and three positions are marked out with numbers and an ""x"" on the field while the third player falls. The video then switches back to another baseball game, where a pitcher throws a ball and the batter hits it. The batter starts running while another player catches the ball and throws it towards a base.",0 405,v_bYxVbXzQToI,Can you describe what happens in the video in detail?,v_bYxVbXzQToI_405,"In the video, a man wearing a white suit makes his way to a raised platform in a bar and sits on a chair. A man in a black tuxedo, holding a guitar, is sitting next to him. They are surrounded by a group of people wearing tuxes who are sitting around a table facing the two men with guitars. The man in the white suit picks up a guitar next to him and starts playing with the man in the black tuxedo. The room is decorated with Chinese lamps and lit with lamps, while other people in the bar are watching and taking a drink from a glass or smoking. The man in the white suit continues playing until the video ends.",0 406,v_hI11n4_r178,Can you describe what happens in the video in detail?,v_hI11n4_r178_406,"The video shows three people, two women and a man, doing aerobic movements using an aerobics step in a studio with overhead lighting. They are wearing mics and the leader of the group, who is wearing a black outfit, is calling out instructions as they follow along in a workout routine. In the background, there are white screens with frames, and two screens displaying a rotating green letter 'e' mounted on stands in between the screens. The video continues until partway through when a cutaway starts with a new routine. Additionally, there is a shot in which a Gobo projector is visible as the camera pans.",0 407,v_hP-xRyx88aA,Can you describe the video in detail?,v_hP-xRyx88aA_407,"In the video, there is a woman wearing a black outfit holding a pole in an outdoor field in the daytime, participating in a pole vaulting competition. She runs toward the bar and plants the pole on the ground to jump over the bar before landing on the foam mat on the other side. A referee with a measuring stick and other people are visible around the bar. The same woman, now wearing a white jacket and standing at the starting point with her pole, gets ready for another jump and jumps over the bar again. A red Toyota banner and two athletes warming up for a run are visible in the background. After the jump, she turns to the side to speak to someone. The video shows her taking a drink from a bottle of water several times. Additionally, we see people walking with their backs to the camera, two men measuring the height of the bar with a measuring stick, and a replay of the pole vault from different angles.",0 408,v_HxrtuZSCwvY,Can you describe what is happening in the video in detail?,v_HxrtuZSCwvY_408,"In the video, a boy wearing a sweater vest is standing in a dimly lit living room with a violin. People are sitting on chairs next to him, and there is a lit lamp on a table at the end. Behind the boy, there is a painting hung on the wall, and a man wearing a black shirt is sitting under the painting. Through an open door behind the boy, windows are visible. The boy starts playing the violin and continues until the end of the video when he stops, and the people sitting around him applaud.",0 409,v_af05Mqm03Y4,Can you describe the video in detail?,v_af05Mqm03Y4_409,"The video starts with two men wearing different colored t-shirts playing squash in a squash court. As they continue playing, each of the players misses a shot and they keep playing. They run around the court until they slow down and the man in the white t-shirt seems tired. Despite this, the two men continue to play until they eventually stop and share a handshake. Overall, the video depicts two men engaged in a squash game, displaying their athleticism and sportsmanship throughout the match.",0 410,v_ddzfgHw_qlU,Can you describe the video in detail?,v_ddzfgHw_qlU_410,"In the video, a man dressed in a grey dress shirt and wearing glasses is seated in front of a painting. He is playing a harmonica, and the room is well-lit with a yellow overhead light. The man continues to play the harmonica until the end of the video. Overall, the video features a man playing a harmonica in front of a painting in a bright room with a yellow overhead light.",0 411,v_h_r8gioFi4k,Can you describe the video in detail?,v_h_r8gioFi4k_411,"The video shows two people, a man and a woman, practicing kickboxing in a well-lit gym. The man is wearing a black outfit and punch mitts, while the woman is wearing a black outfit and boxing gloves. The woman is seen practicing various punching and kicking moves, occasionally using her elbows on the man. Throughout the video, the walls with various posters and a multicolor mat on the floor are visible. Additionally, there is a hall with chairs and wooden flooring visible through an open door. The two people continue their practice by using numerous kickboxing moves until the video ends with both of them stopping their routine.",0 412,v_EnMS9O1U6E0,Can you describe the video in detail?,v_EnMS9O1U6E0_412,"The video features a top-down view of a track and field stadium with an open roof, which appears to be filled with spectators. The rectangular field in the center of the stadium is surrounded by a track. The video focuses on a man wearing blue shorts and a vest with the number tag of 2736 who is jogging slowly on the track towards a high jump bar. He then jumps over it by flipping back and parallel to it. He gets up quickly and walks away from the foam mat. The video shows a replay of the jump multiple times from different angles until the end of the video to emphasize the technique used for the high jump. Overall, it appears to be a high jump competition at a track and field event.",0 413,v_CeXtKbFnPIQ,Can you provide a detailed description of the video?,v_CeXtKbFnPIQ_413,"In the video, a man is seen standing on a tennis court. He is wearing a black shirt and black track pants, and holding a racket and a tennis ball. The court is outdoors and there are trees visible in the distance with sunlight shining down. The man throws the tennis ball into the air and hits it with his racket to the other side of the court where the ball can be seen landing before bouncing and rolling towards the tree line.",0 414,v_K_ia4VP3w2c,Can you describe the video in detail?,v_K_ia4VP3w2c_414,"In this video, a woman is seen introducing herself in a well-lit makeup studio while wearing a black top. There is a vanity table with bulbs around the mirror situated behind her. As the video progresses, the model 'Irina Shayk' is shown in a makeup session and photoshoot, while the makeup artist speaks. In another clip, the makeup artist holds an eyeshadow palette and starts applying makeup on Irina, beginning with different colors for her eyelids and moving on to her eyelashes. Later, the makeup artist changes Irina's lipstick and reapplies her eye makeup, before applying a different lip color. The video ends with a display of Irina with completed makeup, showcasing the work of the makeup artist.",0 415,v_IDIALY6Ayk8,Can you describe the video in detail?,v_IDIALY6Ayk8_415,"The video opens with a panoramic shot of a vineyard, followed by a grazing horse behind a fence. A rider with a helmet leads a horse down an inclined path, and then a circle of riders on horses appears in an enclosed area. They leave the enclosure and ride their horses along a dirt path next to a vineyard during the daytime. A woman in a black turtleneck leads the riders towards a winery, where she welcomes them inside to a wine cellar with stacks of wine barrels. Then, grapes are hung and stacked on a drying platform, and closed clap barrels are shown. The video also includes a clip of the dining room where people are seated with wine glasses in front of them. The woman in the black top showcases a wine bottle and pours wine into the glasses. A woman swirls her wine glass and takes a sip. The video ends with a shot of the facade of the winery.",0 416,v_ij9czNGMR5I,Can you describe the video content in detail?,v_ij9czNGMR5I_416,"In the video, a girl wearing a grey hoodie sits in a chair to get her tongue pierced. A man wearing a black shirt, a black cap, and surgical gloves starts the piercing procedure. The well-lit room has a guitar hanging on the wall behind the woman. The man clamps the girl's tongue and pierces it with a needle, then inserts the piercing and secures it by screwing something under it. The video concludes with the man stepping out of frame, and the woman sticking her tongue out to show the piercing.",0 417,v_jEOtcfk220s,Can you describe the video and the scene in detail?,v_jEOtcfk220s_417,"The video starts in a school gymnasium with a light wood floor and white walls with bleachers drawn in at the bottom. The video shows a women's volleyball match being played with players on the left side wearing blue uniforms. A group of people can be seen sitting at the back near the bleachers while the players on the court volley the ball back and forth. One of the players walks to the back and gets ready to serve, while a referee is visible in the middle, standing on a platform over the net. The teams continue to volley the ball back and forth until the team on the right misses a hit. The video ends as the team on the left wins the exchange and passes the ball back to the team on the right.",0 418,v_j6OcN4OQZVM,Can you describe the video content in detail?,v_j6OcN4OQZVM_418,"The video shows several clips of breakdancing in a hall, with people standing and sitting a few feet away. Each performer is wearing a black outfit and showcasing different moves, such as twisting, turning upside down, and doing headspins. The hall is lit by overhead tubes, creating an atmospheric effect. Some of the performers have an audience while others are dancing alone. Towards the end of the video, there is an outro and a message. Overall, the video is a showcase of the impressive and dynamic art of breakdancing.",0 419,v_bz4QwqHiVlo,Can you describe the video in detail?,v_bz4QwqHiVlo_419,"The video starts with a green screen slideshow displaying instructions for a test followed by a clip displaying an uppercase letter 'A' against a starry background. Then, the screen displays the first clue which is the letter 'F'. Subsequently, a man is shown rolling a cable from a vacuum cleaner in a living room with a black sofa and a television set with speakers mounted nearby. The room is well-lit with natural light coming from the door and has wood flooring. The man takes the cable to the left of the living room and vacuums the kitchen which has white cabinets and a two-door fridge between them. He opens the door of a cabinet and vacuums near the bottom as well as for the fridge. He then vacuums beneath a red sofa, its cushions, and the whole room before returning to the living room to roll the cable back up.",0 420,v_hPYGgv_75SY,Can you describe the video?,v_hPYGgv_75SY_420,"The video features a woman in a black outfit inside a net, beginning a hammer throw on a field during the daytime. She spins the hammer around and throws it, which transitions to a cutaway shot of a couple on a blanket in a field, who are talking to each other panicking and running to the side. A hammer attached to a string lands on the blanket they were on. The video then shows the woman throwing the hammer again, with a cutaway shot of a hammer landing in the pool behind a swimmer just as she is reaching the wall. Next, the woman throws the hammer, which flies over a gymnast standing on a balance beam in an indoor gym, causing the gymnast to fall over. Then, as the woman throws again, the hammer lands in front of a catcher on a baseball field who is wearing full gear and in exasperation gets up. Finally, as the hammer thrower walks off to the side, the video ends with the text ""WEAREBG"" appearing on the screen.",0 421,v_jWH-2aa1gJY,Can you describe the video in detail?,v_jWH-2aa1gJY_421,"The video starts with a girl sitting on a chair while wearing a hoodie and jeans. Behind her, there is a closed window. On the ground around her, there is visible music gear. The room is illuminated by diffuse light coming from the window. She is holding a guitar and listening to music while mimicking the guitar notes without actually plucking the strings. ",0 422,v_BAtlo_AGFWs,Can you describe the video content in detail?,v_BAtlo_AGFWs_422,"Sure! The video starts with astronaut Chris Hadfield on the International Space Station holding a tortilla in his hand. He picks up a bottle of honey and squeezes some on the tortilla before holding it up to the camera. In the next clip, Hadfield is seen playing the guitar while floating in the space station. Following this, Hadfield can be seen getting a haircut from someone wearing a teal t-shirt, while holding onto handles to stay in place. The person giving the haircut uses a trimmer with a hose attached to it. In the next clip, Hadfield is seen walking down a path with other astronauts with people on either side, and an image of a rocket in the launchpad is shown. The video also shows an image of Chris Hadfield's Twitter page. In the subsequent clip, Hadfield is giving an interview on the International Space Station with different images of Earth and space shown in a slideshow as he speaks. Finally, the video ends with a clip of Hadfield rearranging his hair.",0 423,v_9lAT3oA9Ixs,Can you describe the activities of the man in the video?,v_9lAT3oA9Ixs_423,"In the video, a man wearing a blue jacket and jeans is standing in a wooded area surrounded by numerous trees. He is using an axe to chop wood placed on a tree stump, and wooden logs cut into uniform lengths are piled up behind him. The man is chopping a block of wood and picking up the chopped pieces. After he has chopped the current piece, he picks up another wooden block and places it on the tree stump. The video ends with the man coming back to stand over the block. Overall, the video depicts a man chopping wood in a natural setting with a cabin visible nearby.",0 424,v_0rr7iGHamw0,Can you describe in detail what happens in the video?,v_0rr7iGHamw0_424,"In the video, we see a woman named Valarie in a crowded hall standing in front of an ironing board holding an iron. Valarie is imprinting a design on a white t-shirt using iron-on transfer while speaking and laughing with the cameraman. There is another iron visible at the end of the ironing board. Valarie walks towards another table with people standing near it and picks up a white t-shirt with a Twitter username and a picture of a blue bird on it. She quickly walks back to her own ironing board and continues to press the shirt. She removes the paper laying on the t-shirt and shows the finished design. In the end, Valarie covers the t-shirt with another and waves bye to the camera. Throughout the video, many people can be seen in the hall.",0 425,v_6utacRir3uM,Can you describe what happens in the video in detail?,v_6utacRir3uM_425,"The video is shot in an aerobics studio where a group of people are performing workout routines behind aerobic steps. The well-lit studio has a wooden floor and windows on the far left through which light streams inside. An instructor dressed in fitness clothes gives instructions using an aerobics step while standing in front of the class. There is a wall-to-wall mirror behind the instructor, allowing everyone to see themselves as they work out. One man, dressed in black, seems to be struggling to keep up with the rest of the class and falls over his aerobics step when attempting a new move. The video then shows the instructor and a few other class members moving in his direction, presumably to help him up and ensure he is okay.",0 426,v_5cijPqKVc84,Can you describe the video in detail?,v_5cijPqKVc84_426,"The video starts with a woman wearing a green outfit standing in front of kayaks hanging on hangers at a lakeshore during the daytime. She interviews a man wearing a hat while a variety of kayakers are shown rowing in different water bodies, including rapids and the sea. Throughout the video, there are cutaways showing kayakers in various rivers and rapids, as well as different kayaks with open and closed cockpits. The video ends with a kayaker navigating down a rapid stream. ",0 427,v_l5ZUUChppHU,Can you describe the video in detail?,v_l5ZUUChppHU_427,"The video is a chopped wood competition with two sets of contestants. The participants are shown in a wood-chopping context, standing over their respective logs in an outdoor arena during the day. On the left side, the contestants have their wooden blocks laid horizontally on chopping stands while on the right side, contestants assemble wooden blocks on horizontal chopping stands. The contestants are wearing black vests and light-colored trousers. People can be seen on seats on either side. A bridge can be seen in the back. The contestants start chopping wood and some players on the left finish before the players on the right. The first player on the left side heads over to the right side and speaks to another contestant.",0 428,v_52Xw6TZcysc,Can you describe the video in detail?,v_52Xw6TZcysc_428,"The video shows a woman wearing a blue top doing long jump training. The first clip shows her landing on a dirt pit and the second clip shows her standing on an indoor track field, with people visible in the distance. She takes a running leap and jumps into the dirt pit, attempting to do a long jump. The subsequent clips show the woman running and jumping into the pit in a front perspective. People are milling about in the back of the indoor stadium. The video ends with the woman jumping and landing in the pit and looking towards the camera.",0 429,v_l_0HvMt2tGg,Can you provide a detailed description of the video content?,v_l_0HvMt2tGg_429,"The video starts with a young boy wearing a purple jacket picking up a stick and tapping it on a wooden fence behind him. The boy is then shown playing lacrosse for the Salem lacrosse team while holding a lacrosse stick in his hands. The camera zooms in on the logo found on the boy's shorts. Throughout the video, the boy is followed as he plays different positions, scoring goals, and chasing the ball across various games. The video shows a huddle of the lacrosse team standing with their lacrosse sticks raised, two face-offs between teams, and other players joining in the game. Towards the end of the video, the boy is wearing a white jersey and starts the game with a face-off against a player from the opposing team. The video ends with a player scoring a goal. Overall, the video provides a detailed visual representation of a young boy's lacrosse journey through different games and positions.",0 430,v_1jgsRbGzCls,Can you describe the video content in detail?,v_1jgsRbGzCls_430,"The video features a news anchor behind a desk reporting news with multiple blurry videos playing in the background. A big screen with the words ""TAI-CHI-CHUAN"" is seen on the side of the studio, and a wide shot of the studio shows the anchor gesturing with his hands while reading news. The video then cuts to people in winter clothes practicing tai chi outdoors on sandy ground in front of a copse of trees without leaves. Close-up shots of people practicing tai chi are shown, along with people speaking into the camera. The video also includes a black-and-white clip from 1957 with an old man teaching tai chi and several clips of different people doing tai chi. There is a clip from a hospital where a doctor talks to the camera and walks towards people doing tai chi, after which people are shown doing tai chi individually and being taught by others.",0 431,v_kl-2y3jtPNE,Can you describe the details of the cricket game shown in the video?,v_kl-2y3jtPNE_431,"The video starts with a boy wearing a school uniform speaking to the camera. He is wearing a white shirt and a green tie, while other students can be seen standing behind him. The boy then points to a cricket field, where a game of cricket is being played. The cricket pitch is surrounded by a grass field, with two sets of stumps fixed to the ground on either side of the pitch. Trees can be seen at the outer edge of the ground, with a building sporting white pillars visible in the distance. The game continues as one boy gets ready to bat, and the bowler starts his bowling run. However, the ball goes wide, and the wicketkeeper is seen running after it. In the next ball, the batsman jumps to let it pass behind him, and he starts to run to the other side. The non-striker runs towards the striker's end and gets ready to bat. The video also shows a girl in school uniform smiling, along with a woman who speaks to the camera person. The video ends with another shot of the cricket pitch, where the game is still being played.",0 432,v_j_r7zJWxI8w,Can you describe the video in detail?,v_j_r7zJWxI8w_432,"The video starts with two men standing in the woods - one wearing a black T-shirt holding a beer can, and the other wearing a dark blue Adidas T-Shirt picking up a beer can from a pack. The men are out during the daytime. The man in the blue T-Shirt makes a hole in his beer can using a key and throws the key down. He proceeds to drink from the hole in the can. As he finishes the can and belches, the man on his left comes into the frame and talks to the camera as he leans toward the other man. The video only focuses on the men and trees in the background are visible throughout the video.",0 433,v_l_pp-1qu9Ig,Can you describe the video of the woman wrapping a gift in detail?,v_l_pp-1qu9Ig_433,"In the video, a woman's hand is seen picking up three rolls of gift wrap from a blue wooden counter next to wrapped gifts. She later lays out the gift-wrapping rolls on a light wood table and starts wrapping a brown cardboard box with one of the rolls. The video captures how she cuts the wrapping paper to fit the size of the box, tapes it shut, and carefully folds the sides and corners of the box. The woman then turns the wrapped box on every side to show the wrapping and places the box on the same counter. The background shows a tray with other gift-wrapping accessories in the corner, and throughout the video, these accessories appear on the light wood table with jump cuts.",0 434,v_8r4bF9RF0Kc,Can you describe the content of the video in detail?,v_8r4bF9RF0Kc_434,"The video is in black and white and shows a game of cricket being played. It starts with a bowler running and bowling a ball, which is repeated three times. The batsman hits the ball towards the woods and begins to run between the wickets with the non-striker while the fielders search for the ball. The batsman stops running when the ball is found, and the fielder throws the ball to the bowler.",0 435,v_iUiXNXRs4rU,Can you describe what happens in the video where a man is standing in a bike shop?,v_iUiXNXRs4rU_435,"In the video, a man wearing a brown shirt and a cap is seen standing in front of a bike that is placed on an elevated platform inside a well-lit bike shop. The shelves of the shop are filled with various tools and bike parts. The bike in front of the man has a broken chain and he holds a master link of a chain in his palm, demonstrating how he will fix the chain. The man attaches the master link on one end of the broken chain and pulls both sides together until they lock together. He then checks the chain by pushing on the pedal. The video ends as the man turns to the camera and speaks.",0 436,v_Lf_7RurLgp0,Can you describe the video content in detail?,v_Lf_7RurLgp0_436,"In the video, we see a woman wearing a green jacket over an olive turtleneck speaking to the camera in a well-lit bathroom. Behind her is a wooden shelf with a vine climbing down from the top. The walls are painted a light shade of green. She presents a soap dispenser for kids to the camera. Then, a little boy wearing a black polo shirt appears, and his hands pump soap from the dispenser, revealing a red dot on his palm. He washes his hands under running water in the sink and scrubs them. The woman then presents a bottle of hand sanitizer. The boy turns off the tap and walks over to a towel to dry his hands as the woman gestures towards the towel rack. A sink with a mirror and a window through which sunlight enters the bathroom can be seen in the background. The video ends as the woman continues to talk to the camera.",0 437,v_34ZxyyFjbHQ,Can you describe the video in detail?,v_34ZxyyFjbHQ_437,"The video shows two kids playing squash in a well-lit squash court. One of the kids is wearing a blue T-shirt while the other is wearing a red T-shirt. The walls of the court are white and the floor is dark. At the back of the court, there is a glass door covering the entrance. During the game, the boy wearing the blue T-shirt misses a shot, and they start over. People can be seen walking by the door of the squash court. As the game continues, the boy wearing the red T-shirt miss a shot and they start over again. Towards the end of the video, a boy wearing a white T-shirt is seen standing outside the court watching the two boys play. The video gives a clear view of the details of the squash court and the players’ attire, which helps to create a vivid picture in the viewer’s mind.",0 438,v_Db9VWkgMpbE,Can you describe what happens in the video of the woman in the green top at the gym?,v_Db9VWkgMpbE_438,"The video shows a woman wearing a green top in a well-lit gym, leaning on an elliptic bike and then moving to sit on it while a person in a red top exercises on an elliptic machine to her right. The woman speaks to the camera before switching to an exercise bike where another woman in a black top instructs her on how to use it. She then cycles on the exercise bike while looking at herself in the mirror. The video also cuts to men on exercise bikes, an instrument cluster on an exercise bike, and a clip of the instructor using the exercise bike. At one point, the woman in green opens a bottle of water and takes a drink. The video ends with the woman speaking to the camera as she pedals on the exercise bike.",0 439,v_Il9Ara3IqeY,Can you describe the video in detail?,v_Il9Ara3IqeY_439,"The video shows a man wearing a black polo shirt and a rice hat standing on an elevated section of the Marble Bridge during the daytime. He is seen playing a flute with the Palace Museum in the background. The Meridian Gate Square is also visible with people walking around, some of whom are carrying umbrellas. The man continues playing the flute until the end of the video.",0 440,v_HkbOI7gEtKk,Can you describe what happens in the video in detail?,v_HkbOI7gEtKk_440,"In this video, we see two women standing in a well-lit room with shuttered windows on either side. The woman on the left introduces herself as a beautician and proceeds to demonstrate how to make a cleansing with baking soda. She brings in a model who is wearing a white top while she herself is wearing a teal top. On the table in front of them, there is a bowl of yogurt and a box of baking soda. The beautician then shows how to mix the yogurt and baking soda and apply it to the face. The model follows the instructions and demonstrates it by applying the mixture to her face. The beautician gives further instructions and the model wipes her face with a washcloth. The video ends with the beautician ending her instructions.",0 441,v_cEa87QoI3Do,Can you describe the video content in detail?,v_cEa87QoI3Do_441,"In the video, a man is shown standing in front of a mirror adjusting his shirt in a bedroom. A pull-up bar is visible in the background attached to a door. Another man, who looks identical except for his glasses and different shirt, is sitting and reading a magazine. A girl wearing a backpack enters the house through the door and walks through the kitchen into the living room. She sits on the sofa after putting her backpack down. The two identical men stand at the entrance of another room, and the girl greets them while they wave back. The men then proceed to make sandwiches. The one wearing a black shirt spreads peanut butter and jelly on one side of the bread and the other man makes a sandwich with lettuce and ham. The man in the black shirt runs inside a bathroom and shuts the door. The next scene shows the sandwiches placed in front of the girl. The video ends with the two men looking at each other and frowning.",0 442,v_ARpoJIBF2NM,Can you describe the dodgeball game shown in the video in detail?,v_ARpoJIBF2NM_442,"The video shows a dodgeball game played indoors on a basketball court. One side of the court has players wearing teal t-shirts, throwing balls at the other side where a group of amateur players is playing. The players in the teal t-shirts move around the court and try to hit the opposing team with the balls. People sitting on bleachers surrounding the court are cheering both the teams. A man with a mic stands outside the court, evidently announcing the game. The game starts with a player getting hit and falling, but he immediately gets up. A boy jumps and catches the ball that bounced off the fallen player. A girl nearby the fallen player holds her hands to her face, visibly shocked. Throughout the game, some players get hit by the balls while some catch them. A player in a teal t-shirt is dismissed as he crosses the midline, and the game comes to a stop.",0 443,v_H8oehT8eeGc,Can you please describe the video in detail?,v_H8oehT8eeGc_443,"The video appears to be shot from the other side of a chain-link fence. Within the yard, there is a group of boys standing together, while one boy wearing a black outfit stands a few feet away. On the left, there is a building with an open facade. The video captures a scenario where a boy from some distance throws a red ball and one of the boys, who is wearing a green shirt, runs up to the ball and kicks it. The ball travels through the air and lands near the opposite chain-link fence, where another boy wearing a red shirt runs towards it.",0 444,v_jQzBXawu29s,Can you describe the video content in detail?,v_jQzBXawu29s_444,"The video starts with a man wearing a brown sweater and glasses holding a black wooden Irish flute in a living room. There is a television stand and various framed items on the wall. The man speaks into the camera before starting to play the flute. As he plays, he lowers the flute to speak to the camera, showing how to breathe while playing. The video ends as the man demonstrates breathing exercises and plays the flute again for a short moment. Sunlight enters the room from the left side at the back.",0 445,v_51faGoLPJgM,Can you describe in detail what happens in the video with the boy chopping wood?,v_51faGoLPJgM_445,"In the video, a boy wearing blue jeans and a sweater is standing next to a pile of chopped logs and chopping a block of wood in the daytime. A street can be seen some distance from the boy. However, as he attempts to chop the wood, it slips and turns to the side. But the boy straightens the log and attempts to chop the wood once again before the video ends.",0 446,v_AB480dHyDeM,Can you describe the steps shown in the video of cleaning a shoe?,v_AB480dHyDeM_446,"In the video, a man wearing a grey t-shirt is standing behind a table with a green basin, a bottle of sope, a cup of water, and an Adidas shoe. He removes the insole and laces from the shoe and applies a solution on the brush which he dips in the water bowl to start brushing the shoes. The man holds the shoe over the basin as he cleans all sides by turning it and then wipes it with a towel. The video is then sped up to show the cleaning process. Finally, he holds the clean shoes to the camera, and compares it to a dirty shoe. At the end of the video, he holds a bottle of cleaning product labeled ""jason markk"" which was presumably used to clean the shoe.",0 447,v_lPw_BRbPw5s,Can you describe the video in detail?,v_lPw_BRbPw5s_447,"The video features two people - a man wearing a blue T-shirt and a blue cap, and a woman wearing a brown top and blue jeans - dancing in an alley. Behind them, a wall with windows is visible. The man leads the woman as they move around while dancing. In the next clip, they are still in the alley, and the man can be seen turning the woman forward and backward. Then, a new person wearing a white t-shirt joins them, and he dances with the woman, and they turn each other. The video ends as the two stop dancing, leaving the alley behind.",0 448,v_Kofjs0rkwxc,Can you describe the video in detail?,v_Kofjs0rkwxc_448,"The video features a chef in a well-lit kitchen preparing various sandwiches. It starts with the chef buttering a slice of bread placed on a cutting board with three other slices and surrounded by bowls of different ingredients. The chef then slices tomatoes and introduces himself, standing behind a counter with pans and ladles hanging above a stove. He then proceeds to make different sandwiches, displaying a montage of adding toppings to bread slices. In one clip, the chef makes a turkey sandwich with two slices of bread on the cutting board. He spreads butter on both slices, places sliced turkey and cranberry sauce, and adds green leaves before covering it with the other slice. The video ends as the chef cuts and plates the sandwich.",0 449,v_jiM0HUFn0e8,Can you describe the entire video from start to end in detail?,v_jiM0HUFn0e8_449,"The video begins at a ballet class where an instructor and two students stand at the front of the studio with their backs to a group of little kids who are sitting a few feet away. The instructor starts the practice with some hand movements and the two students behind her mimic her actions. The little girls sitting in a half circle behind them are also seen following the movements and repeating them. As the practice continues, the instructor and the two students slowly move their hands and legs to showcase the movements. The ballet studio is well-lit with a light wood color floor creating a bright environment. The video ends as the three dancers finish the movements and stand in a pose. Overall, the video showcases a ballet practice session with an instructor and two students demonstrating hand and leg movements which students around them mimic.",0 450,v_4oi6dXfpJS4,Can you describe the gymnastics routine in the video?,v_4oi6dXfpJS4_450,"The video takes place in a well-lit stadium with multiple levels of seats visible in the background occupied by people. A gymnast can be seen wearing a pink outfit mounting the balance beam with a front flip. She then proceeds to do several poses on the balance beam, including multiple backflips. While attempting to spin, she almost slips but quickly regains her balance. After running a few steps, she does a backflip and continues with several more poses. Unfortunately, she eventually loses her balance and jumps down before jumping back on the board to do a front flip. Finally, the video ends when she executes three backflips and lands gracefully on the ground.",0 451,v_4KMG6lEDSIM,Can you describe the video content in detail?,v_4KMG6lEDSIM_451,"The video is a compilation of different martial arts fights and demonstrations that took place on a stage. It begins with a man in a white gi jogging towards a stage and another man in a red and white gi running to the stage from the opposite side. They start exchanging kicks and hits. Next, a clip of people wearing red gi fighting on stage, and a person knocks out everyone and poses while spectators are clapping. The video continues with a man in red and an opponent in white exchanging blows in a martial arts contest with a referee wearing a white gi standing to the side. The man in the red gi knocks out his opponent. The video shows a clip of two people wearing black gis fighting, and one knocks out the other. Quick transitions between fights where two people are engaged in fighting each other follow. A clip of a man holding up a winner's hand on stage is seen while spectators are applauding. A series of clips with contestants breaking bricks placed or held in different places can be seen. Additionally, there are clips where people are performing different martial arts moves on stage. The video ends with a man wearing a black gi breaking a few tiles placed on two cinder blocks.",0 452,v_889_kqLFM0E,Can you describe the video content in detail?,v_889_kqLFM0E_452,"The video showcases various instances of people engaging in different climbing and trekking activities outdoors. It begins with a shot of a rock climber on a steep hill with a clear sky visible and birds circling above. The subsequent scenes depict people climbing up and down various types of rocks and boulders with the help of ropes and an instructor. A woman is seen behind one of the climbers in a safety position while another man is sitting on a nearby rock. The video then transitions to a group of people rowing a boat past a large rock island in the sea and climbing onto it from the boat. In another shot, a man is seen jumping into the water from hanging onto a rock. The video ends with a shot of a person high up on a rock climbing using a rope. Throughout the video, individuals are carrying backpacks and trekking up rocky hills during the day. The video also includes a panoramic view of a rocky hill and a high up view of a valley. ",0 453,v_1YU4MSK80cQ,Can you provide a detailed description of the video?,v_1YU4MSK80cQ_453,"The video captures a woman in a park, standing between two bars used for fitness exercises. She lifts herself up using the bars and performs a number of exercises including swaying, moving back using her hands, doing the split, and swinging using the bars. Behind the woman, trees can be seen a few meters away. Other outdoor fitness equipment is also visible in the background. Overall, the video captures the woman engaging in a full-body workout routine using the available equipment in the park.",0 454,v_IDuoF51IMJ8,Can you describe what happens in the video?,v_IDuoF51IMJ8_454,"The video depicts a basketball court where two teams are playing dodgeball. The court is well-lit, and there are spectators scattered throughout the seating area, as well as people standing at the side of the court. There are several balls scattered on the floor. At one point, a boy in a pink cutoff shirt throws a ball at a boy wearing a grey shirt, who is coming towards him from the front. The boy in the grey shirt skillfully evades the dodgeball by flipping in midair, and then lands and throws a ball he is carrying at the boy wearing the pink shirt. Unfortunately, he misses the throw. Subsequently, a boy behind him picks up a ball. The boy in the pink shirt turns around and walks away. Finally, the people who were standing right outside the court rushed the boy in grey and celebrate.",0 455,v_jkrlHzTRTvo,Can you describe the video in detail?,v_jkrlHzTRTvo_455,"The video starts with an animation showcasing famous buildings in New York. It then proceeds to show a group of young boys getting ready with paintball gear in a room. The boys are then seen taking defensive positions with their paintball guns and ducking behind various inflated bunkers used as obstacles in the field. The video contains clips of the kids playing in the arena and loading their paintball guns with pellets. There is also a clip of kids listening to another boy before a game. The video ends with a boy walking towards a curtain and lifting it to walk behind it. People who get hit in the game are seen walking away with their hands up. Additionally, a man wearing a black shirt is seen speaking to a boy wearing glasses at one point. Overall, the video captures a paintball game being played by a group of young boys in what seems like an indoor arena.",0 456,v_dhsSq0K1xEg,Can you describe the video in detail?,v_dhsSq0K1xEg_456,"The video starts with a close-up shot of a saxophone case that is decorated with the words 'GUNS-N-ROSES' on it, with a rose drawing underneath. Next, there is a cutaway to a woman wearing a green vest holding a saxophone as she stands next to the case at the side of a street. The sidewalk where she stands has grass growing on it, and a parking lot with cars is visible. We also see a man wearing a black shirt walking on the sidewalk. Then, there is a clip of people walking on a sidewalk with metal gates. The woman with the saxophone speaks into the camera, and people are seen walking on the street next to her.",0 457,v_0x6ZV9Y8g_c,Can you describe what is happening in the video?,v_0x6ZV9Y8g_c_457,"In the video, a woman and a toddler wearing blue and red pajamas are inside a bathroom. The woman is wearing makeup, and the toddler is attempting to wipe it away with a cloth. There is a white towel hanging on a towel stand in the background, with a few more towels folded on it. There is also a sink behind the woman. Behind the toddler, on a platform, there are various jars with lids visible. The toddler continues to slowly wipe the women's face with a cloth until the end of the video.",0 458,v_-IMXSEIabMM,Can you describe the video in detail?,v_-IMXSEIabMM_458,"The video begins with two people who are wearing winter clothes and shoveling snow around a car parked in front of a garage. The car is covered in a layer of snow and a house with a red brick facade is visible behind them. At the beginning and end of the video, a man wearing suspenders and sunglasses is also seen shoveling snow from different locations. In another part of the video, a doctor wearing a white coat and a stethoscope is seen speaking to the camera from a clinic. The two people continue shoveling snow, with one of them shoveling from a distance behind the car while the other is next to the car. The shots of snow-shoveling during the daytime, the snow-covered plant next to the house and the doctor speaking from a clinic all create a wintry atmosphere. ",0 459,v_dVpHF8tE2qo,Can you describe the video in detail?,v_dVpHF8tE2qo_459,"The video shows a man wearing a red vest standing in a well-lit gym. Bars and weights are stacked on a shelf next to the wall. The bottom half of the wall is painted blue, while the top is painted white. The man fixes grips to the barbell and with visible effort lifts it over his head. Finally, he drops the barbell, and it bounces on the ground a couple of times. ",0 460,v_Kic33dtLja8,Can you provide a detailed description of the video content?,v_Kic33dtLja8_460,"The video begins in a well-lit dance studio with a light-colored wooden floor, visible mirror on the left wall, and six people, including an instructor in black, standing with hands on either side. The dancers start to belly dance as the music begins, moving their hands and swaying from side to side. As the dance progresses, they start to move forward and back while turning sideways. The video continues to show the women dancing until the music stops and the credits roll. Overall, the video features five participants following the lead of the instructor in a lively belly-dancing routine.",0 461,v_4mRkWNLE66E,Can you describe in detail what happens in the video?,v_4mRkWNLE66E_461,"The video starts with a lacrosse game being played outdoors at night with floodlights turned on. Two teams are playing on the field, with one wearing white and the other wearing dark blue jerseys. A referee is present. During the game, a player wearing a white number 11 jersey catches the ball and runs towards the goal while dodging opponents but ultimately fails to score. The video then switches to a daytime clip where the same teams are playing and a player in a white number 15 jersey shoots and scores the ball towards the goal, pointed out by a red arrow. The video then switches to another clip where two teams, one wearing red and the other white jerseys, can be seen practicing on the field with their respective coaches throwing balls towards the players. The same player in the white number 15 jersey is pointed out by the arrow catching the correct ball and successfully scoring a goal, celebrating with his teammates. The video then continues with several clips where the same player, again pointed out by a red arrow, is seen scoring a goal or attempting to score one at different times of the day, with some clips being played in the evening with the floodlights on. The video concludes with a clip where the player in the white number 15 jersey scores a goal and celebrates with his teammates.",0 462,v_FOZdNPQ7d5Q,Can you tell me about the video in detail?,v_FOZdNPQ7d5Q_462,"The video depicts a man getting a tattoo on his left arm from a woman in a dimly lit room, where the woman is wearing a purple-colored check shirt with blue jeans and a pair of black gloves, while the man is dressed in a black beanie cap, a chain, and blue jeans. The room has a window with open shutters that provide a view of some plants outside, as well as some paintings, tattoo inks, a chair, and a small mirror. The woman is seen making a tattoo on his left hand using a tattoo gun, after observing a drawing on paper. The tattoo area is illuminated by bright lights, and the video ends with a close-up of the finished tattoo.",0 463,v_BSwChZlOb0k,Can you describe the video in detail?,v_BSwChZlOb0k_463,"The video starts in a room with a group of men sitting around a table containing bottles of alcohol and cups. One of the shot glasses filled with alcohol is lit on fire, and a man sitting on the sofa picks it up while he is drinking from his red cup. He attempts to drink the flaming shot, but the flames stick to his mouth and he panics, causing him to throw the glass onto the table. The alcohol spills onto the table, igniting and lighting one of the men standing nearby on fire. The man who is on fire is screaming and jumping around, falling at some point while trying to put the fire out. Finally, another man near him helps him put the fire out.",0 464,v_cqxiLraI8uY,Can you describe what happens in the video in detail?,v_cqxiLraI8uY_464,"In the video, we see a man wearing a red t-shirt in a gym with a black floor. Upon walking up to a barbell, the man bends down and lifts it. We can see that there is equipment fixed to the wall and overhead lights illuminating the gym. The man successfully holds the weight over his head for a short moment before dropping it to the floor, where it bounces a few times. After this, the man walks away. ",0 465,v_d6PdD2O3Yrs,Can you describe the video in detail?,v_d6PdD2O3Yrs_465,"The video is set in a well-lit gymnasium and features a boy wearing black tights, standing atop a pair of horizontal bars. To his side stands an instructor wearing a white shirt, while a few feet behind the bars stand a few kids wearing the same outfit as the boy. To the left, a woman in a red shirt is standing on the foam padding, which is under the horizontal bars. The boy swings a few times on both bars before making a jump to the padded foam next to him.",0 466,v_3V9tzjyr51I,Can you describe the content of the video in detail?,v_3V9tzjyr51I_466,"The video starts with a cloudy sky overlooking a tennis court which is separated by a metal fence from another area with houses in the distance. On the right side of the court, a man holding a racquet throws the ball in the air and hits it towards the other end. The video ends with a hand blocking the camera lens, leaving us unable to see any additional information. Overall, the video seems to showcase a man playing tennis on a cloudy day in an outdoor court with nearby houses visible in the distance.",0 467,v_di5f5hM05Vw,Can you describe the video in detail?,v_di5f5hM05Vw_467,"The video depicts a man dressed in a grey Tai Chi uniform practicing Tai Chi movements in a well-lit indoor studio. The studio has light wood flooring, and a mirror covers the entire wall behind the man. On the right side of the man, there is a window covered with purple drapes. The man performs various Tai Chi stances, moving slowly and deliberately, until he stops at the end. This video provides insight into how Tai Chi is practiced in a studio setting, and the lighting and decor of the studio.",0 468,v_JN1wuOpCZvk,Can you describe the video in detail?,v_JN1wuOpCZvk_468,"The video starts with two men standing outside a building with support pillars on either side of the entrance. They are both wearing black briefs, the one on the left has a grey sweatshirt on while the one on the right has a white vest. Then, the scene changes to show a group of men training in a hall with large windows, and one man is seen doing drills on a small trampoline. There is a clip of men in black briefs doing push-ups. The video continues to show different types of training, including men training for ballet in different rooms and a clip of a man in briefs training in different ballet movements in a hall. Eventually, the video shows a line of men wearing black briefs and facing the camera, before the credits roll.",0 469,v_JH9qiuPCkY4,Can you describe the video content in detail?,v_JH9qiuPCkY4_469,"The video is about people riding dirt bikes on a dirt path with inclines during the daytime and undergoing lessons on different ways to ride dirt bikes on different surfaces. Along the path, there are yellow painted tires stuck a distance apart from each other as markers. In one clip, a rider wearing white gear is seen speaking to the camera from a well-lit indoor location. There is a wall at the edge of the yard with a red logo on it. The video ends with a shot of the driver wearing full safety gear standing outside in the dirt bike yard, and credits roll at the end of the video.",0 470,v_aQ-F9wr0HQ4,Can you describe the video in detail?,v_aQ-F9wr0HQ4_470,"In the video, we see a woman using a towel to wipe the top of a stereo while nodding to the voiceover. A person holding a spray bottle labeled ""Favor"" is seen pressing the bottle. We then see another person wiping a wooden surface as words appear in between. A bottle of ""Favor"" is placed on a wooden surface, and an advertisement is shown. Another person is seen wiping a wooden cabinet while nodding to the voiceover. This sequence is then repeated with the ""Favor"" bottle. Overall, the video showcases people using and promoting the ""Favor"" spray bottle on various surfaces.",0 471,v_0UTrTg3DF5g,Can you describe the video content in detail?,v_0UTrTg3DF5g_471,"The video features a woman named Pinky standing behind a bar and wearing a black fedora. Behind her are glass shelves holding different brands of bottles of alcohol that are lit from below. As Pinky introduces herself, a logo with ""Apache Cafe"" appears on the top right of the screen, followed by a screen with ""STUPIDDOPE"". She is shown mixing a drink called ""GIN E HENDRIX"" by lifting some of the bottles which will go into making the drink and proceeds to mix different ingredients into a tall glass including ice cubes. Pinky later uses a shaker to mix everything before pouring the finished mixture in a glass with ice cubes in it. She finishes the drink by adding cucumber, a slice of lime, lemon and a basil leaf before dropping in a black straw. The video ends with a black screen with the address of the bar and credits.",0 472,v_Ie09KEAPP2I,Can you please describe the video in detail?,v_Ie09KEAPP2I_472,"The video starts with a happy brown Labrador Retriever walking on a dirt path with his tail excitedly wagging, wearing a leash around his neck. The camera then pans to a little boy, who is wearing a black T-shirt and red trousers, walking with a man while holding hands. The man is wearing a blue T-shirt, glasses, and a baby sling. Trees are visible on the side of the path. The cameraman then turns the camera to himself and smiles. Finally, the video ends with the camera panning back to the dog. The video captures a happy family enjoying a walk outdoors with their furry friend.",0 473,v_Jdu5AqaWfz8,Can you describe what happens in the video in detail?,v_Jdu5AqaWfz8_473,"In the video, three men are seen standing at the edge of a yellow bungee jump platform. Two of the men are attendants wearing green shirts, and the one in the middle is wearing a t-shirt and a strap. The scene takes place during the day beside a stream with a visible yellow inflatable boat on the left bank. One of the attendants belays the bungee cord and then walks out of view. The jumper walks to the edge and holds a thumbs up to the camera before jumping with his hands wide open. The camera follows him as he falls down and reaches the bottom. He is pulled back up for a few meters before dropping down again. After the rope loses energy, the man dangles from the rope and is slowly reeled down by the attendants who draw him to the shore.",0 474,v_Erje-PwY9hE,Can you describe the video in detail?,v_Erje-PwY9hE_474,"The video depicts a river where several yellow kayaks are tied to the pier. The kayaks are then seen floating on the river with thick tree cover visible on the opposite shore. Next, a man wearing a red life vest is seen sitting in a yellow kayak which is placed in a kayak training notch, while another man pushes the kayak out of the notch. Afterwards, a man wearing a yellow shirt and cap is rowing down the river with a black backpack slung over his shoulder. A tortoise is then shown on a fallen log in the river. Following this, a group of kids wearing life vests and rowing blue and red kayaks are shown, followed by adults and kids in yellow kayaks rowing through a canopy of tree branches in the river. The video ends with more scenes of people kayaking in the river.",0 475,v_HgYuRKZ_V90,Can you describe the video content in detail?,v_HgYuRKZ_V90_475,"The video shows two teams playing hockey on a field during the day, one wearing blue uniforms and the other wearing white. The main focus of the video is a player in blue uniform number 1 who is followed as she dribbles the ball across the field, receives passes from teammates, and attempts to score a goal. However, at one point the ball is taken from her. The video then shows this same player in matches during both the day and the night, sometimes wearing a white uniform with number 1. Additionally, a referee wearing a teal shirt can be seen on the field. The video ends with the girl scoring a goal, which prompts celebrations from the people around her.",0 476,v__jV5sAOOHLk,Can you describe the video in detail?,v__jV5sAOOHLk_476,"The video is about a man named Brandt who repairs a bicycle. It starts with a web address appearing with a background of images of people from a particular university. A man in shorts is riding a bicycle on a path. A green field being watered by sprinklers is visible in the background, while people are walking on the path. Brandt introduces himself in front of a bike while a cutaway of a library is shown. There are different stalls visible on either side of the path, including what appears to be a juice stand. Brandt then proceeds to repair a bicycle by fixing a punctured tire. He starts by undoing the brakes of the back tire and using a wrench to unscrew the derailleur guard. He then removes the tire from the rim, opens a new tube from a box, inflates it a little using a pump, inserts it into the tire, and fills it up fully. A shot of the hand pump with a pressure gauge can be seen. Brandt then fixes the tire back to the bicycle using the wrench and also reapplies the rear brake. He hands the repaired bike back to a girl who rides away on the path. The video ends with different Brandt and other volunteers handing repaired bikes to their owners.",0 477,v_JDwd6Ec454A,Can you describe the video in detail?,v_JDwd6Ec454A_477,"The video starts by showing a reddish rabbit grooming himself in the corner of a wooden box that has a mesh floor, through which the ground is visible. The rabbit has dark brown highlights on its coat. A person then reaches out and pets the bunny on its head.",0 478,v_34SBoGK8mT8,Can you describe the video of the little girl playing hopscotch in detail?,v_34SBoGK8mT8_478,"In the video, we see a young girl wearing a pink sweater running towards the camera. She addresses the camerawoman and heads straight to the hopscotch court drawn on the ground behind her. To her side is a yard with visible grass and, in the distance, other houses can be seen. The girl starts to play hopscotch and eventually reaches the last square. She picks up a pebble and throws it outside of the squares, but then picks it up again and throws it back inside. She tosses the pebble several times until it lands on the square she wants, and then hops over to that square. The video gives us a delightful scene of a young girl having fun playing hopscotch on a beautiful sunny day.",0 479,v_fNhw7xE3NM8,Can you describe the video in detail?,v_fNhw7xE3NM8_479,"The video starts with a girl wearing a black top in a room with printed walls, a chandelier, dolls, a green sofa, and a large green plant. There is also a white door in the room. The girl is making a video for her friend Bethany. She turns the camera and shows two other girls in the room. One of the girls is sitting and having her hair styled while wearing a white sweatshirt and glasses. The other girl is styling her hair and wearing a white top with blue jeans. There is also a make-up table visible in the room.",0 480,v_83f0iwb8VW8,Can you describe the video in detail?,v_83f0iwb8VW8_480,"In the video, there are two men sparring in a dojo wearing protective gear. The floor is covered with blue and red carpet and there is a poster with a skull and words ""THE CHOSEN FEW"" on the wall behind them. One of the men is wearing all black and the other is wearing a red headgear. As they spar, they move around the dojo, trying different moves and techniques. In the background, there are people sitting with their backs to the wall. A man in a red t-shirt is seen walking across the camera, who appears to be instructing the boxers. The man wearing black is trying to kick and punch the other boxer, while the man in the red t-shirt is moving around observing them. The two men move towards a mirror wall as they spar. Finally, the video ends as they stop sparring.",0 481,v_Lb7Q8qv3MHU,Can you describe the video in detail?,v_Lb7Q8qv3MHU_481,"In the video, a girl wearing a red shirt is shown picking up a bottle of mouthwash from her side and taking a sip before gargling. She is in a dimly lit room and spits the mouthwash out by bending forward. After that, she begins to beatbox and picks up her toothbrush to squeeze some toothpaste on it. She continues to brush her teeth and spit by bending forward. The video ends as she finishes brushing and sticks her tongue out.",0 482,v_7dXqXFoju2M,Can you describe the video content in detail?,v_7dXqXFoju2M_482,The video starts with a dimly lit bathroom scene where a woman is holding a drinking glass in one hand and a cigarette in the other while standing in front of a mirror. She seems to be examining herself closely by turning in different directions. The bathtub attached to a tiled wall is visible behind her. The woman taps her cigarette in front of the mirror before placing both the cigarette and the glass in front of her at the end of the video.,0 483,v_A20uQSBtYMs,Can you describe the video content in detail?,v_A20uQSBtYMs_483,"The video titled ""TWIN JAZZ"" starts with a group of men playing saxophones in a darkened room with a banner behind them that reads ""TWIN JAZZ."" A man sitting behind a piano speaks into a microphone before he starts playing the piano, and the saxophone players add to the music. A man plays the guitar while standing behind the saxophone players. The video shows all the musicians playing their instruments. Lastly, the music stops and the saxophone player steps forward to shake hands with the pianist.",0 484,v_9InwA-ajB2M,Can you describe what happens in the video?,v_9InwA-ajB2M_484,"In the video, we see a woman riding a horse inside a ranch. The ranch is surrounded by a concrete wall, and there is a man in the middle of the enclosure wearing a cowboy hat and an orange shirt, watching the rider. Outside the compound wall, there is a sloping hill with trees visible on it. The woman is slowly riding the horse while using the reins to direct it. At the end of the video, we see a last still image of the woman on the horse.",0 485,v_2nDbYhgdw2A,Can you describe the video in detail?,v_2nDbYhgdw2A_485,"The video starts off with a person wearing a yellow shirt breakdancing and doing the backspin while other people stand around watching. Soon, the focus shifts to a child breakdancing for a brief moment before going back to the person in the yellow shirt who continues to do the backspin. Then, a boy wearing black shirts and jeans enters the frame and starts dancing, performing a few moonwalks. Following this, a shot of a group of boys walking backward with their hands on each other's shoulders is shown. As they pass by, an old man wearing beige overcoat and cap walks towards the camera and starts talking about the breakdancing. The video also has several clips of different kids dancing while people are standing around them and one clip showcasing the dancer's foot movement. Finally, the video ends with a sequence depicting the same group of people dancing.",0 486,v_eRco7yXc-40,Can you describe the video in detail?,v_eRco7yXc-40_486,"The video features a dimly lit swimming pool with lane ropes visible in the breadth of the pool several distances from the person on the diving board. The person performed several jumps on the diving board before jumping high and executing a reverse somersault dive into the pool. The dive was successful, and the person disappeared into the water with a ripple. ",0 487,v_IGZvj1J9tNc,Can you describe the video content in detail?,v_IGZvj1J9tNc_487,"Sure, the video starts with a woman coach standing in a basketball arena wearing a blue jacket, while a group of players is visible in the far back and a blue cover is placed at the bottom half of the back wall. The coach is gesturing while she speaks before turning towards the players. The bleachers in the arena are folded as three players start a drill by running across the court, while the one in the middle dribbles the ball all the way and shoots it in the basket. The players then turn back, while a different player among the three, wearing a white uniform, collects the ball and runs back to the other side of the court with the others while dribbling the ball. Once they reach the basket, the girl with the basketball attempts to shoot the ball into the basket, while the other two turn around to block her. A different group of three players then takes the ball from them and continues the drill. Meanwhile, another group of players is performing the same drill simultaneously. The players continue the same drill in groups of three as the coach is visible standing outside the court until the end of the video. Finally, the screen displays the drill instructions followed by credits.",0 488,v_49PbyLbrxlE,Can you describe the scene in the video?,v_49PbyLbrxlE_488,"In the video, a woman wearing a blue top is standing in a bathroom in front of a sink washing a piece of cloth. The bathroom walls are lined with white tiles. Toiletries are placed on a shelf in front of the mirror, along with a bottle of dish soap. During the video, the woman looks into the camera once while continuing to wash the clothing. As she washes the clothing, she rinses it in the sink that is filled with dirty water. The video ends with the woman still washing and speaking into the camera.",0 489,v_4QRRxub6L5Q,Can you describe the content of the video in detail?,v_4QRRxub6L5Q_489,"The video shows an indoor scene of a girl performing multiple backflips on a foam platform. Another girl is sitting and watching to the side. The platform is well-lit from above, with a poster of a cartoon sloth on the far wall. The girl finishes her backflips and lands perfectly. Overall, the video captures the impressive athleticism and skill of the backflipping girl in a fun and lighthearted setting.",0 490,v_0DFz3sgfda0,Can you describe the video in detail?,v_0DFz3sgfda0_490,"In the video, three girls walked into a light green colored kitchen and stood behind a table with various food items including cabbage, juice box, loaf of bread, etc. The girls introduced themselves and started making a salad by adding ingredients such as lettuce, tomatoes, oils, salt, and peanuts, and finally holding up the finished plate of salad to the camera. One of the girls named the items on the table, while the other two picked them up and showed them to the camera. The kitchen had a mounted cupboard on the wall behind the girls.",0 491,v_cCDffwsJvsY,Can you describe the video in detail?,v_cCDffwsJvsY_491,"The video starts with a person in a backyard where there is a pile of logs laid out on the ground and some kindling is placed on top of it. Behind the logs, there is a wooden fence and a plant growing beside it. The person holds a piece of chips and lights it using a Bic lighter before placing it on the arranged firewood. They continue lighting other pieces of kindling and placing them on the firewood to help it light faster. A slideshow of images is shown, with the person holding up lit kindling to the camera. The video ends with a closeup shot of the top of the woodpile, where the logs are burning steadily.",0 492,v_11p9goB2rm8,Can you describe the contents of the video starting from the beginning?,v_11p9goB2rm8_492,"The video begins with a basketball court in a playground with a hopscotch court drawn in one corner. A teenager takes a running start towards the hopscotch and quickly hops through the court, followed by two other teens. The three of them then make their way around the outside of the court and hop through the hopscotch court again. After this, two of the boys run towards a basketball hoop nearby and attempt to do a pull-up from the basket. They jump and pull themselves up once before jumping down and running a few feet away. There are other basketball hoops and people scattered on the basketball court in the distance. The video ends with the cameraperson walking slowly towards the boys.",0 493,v_4Gx_8vuxzAk,"Can you describe the video in detail including the woman, the room, the furniture, and the actions she takes?",v_4Gx_8vuxzAk_493,"In this video, a woman is standing inside what appears to be a living room with a white wall and a small curtain hanging on it as well as various decorations. Behind the woman, a maroon sofa can be seen and a lamp is sitting on a table next to it. Additionally, there is a coffee table in front of a two-seater red sofa. The woman is holding a bottle of wood polish in one hand and a towel in the other hand. She drips the wood polish on the coffee table and proceeds to wipe it with the towel. The video ends with her standing over the coffee table and explaining how to fill cracks in it.",0 494,v_HMs703DhjQU,Can you describe in detail what happens in the video?,v_HMs703DhjQU_494,"In the video, two men are seen standing and leaning against a well-lit kitchen counter. One man is wearing a black suit, while the other is Will Smith, the actor, who is wearing a multi-colored shirt. Behind the actors, there are steel door ovens and a shelf with wine glasses on it. Throughout the video, both men are conversing, and at one point, Will Smith removes his sunglasses from his pocket and begins to play the harmonica while singing intermittently. The video concludes with Will Smith pausing from his harmonica playing and looking to his right. Overall, the video depicts a casual conversation between two individuals in a kitchen, with an impromptu musical performance from Will Smith.",0 495,v_Jy93pLzV2uw,Can you describe the video content of the volleyball match?,v_Jy93pLzV2uw_495,"The video starts with text appearing on a black screen introducing the volleyball match. As the clip progresses, two teams on either side of a well-lit volleyball court are visible. Other people outside the court are present watching the game. The player on the near side is wearing orange t-shirts while the team on the far side is wearing yellow t-shirts. All the players are wearing knee guards. The team wearing the yellow uniform starts the game and hit the ball back and forth between the two teams a few times before the players wearing the orange uniform get the ball. They almost missed the hit when a player dives and hits the ball, but another player from the same team then hits the ball to the other side. The team wearing the yellow uniform misses the ball as they are already celebrating, and the team wearing the orange uniform wins the exchange and celebrates. The last play is replayed a few times before the two teams get back into positions again.",0 496,v_6wPVO7I8iIY,Can you describe the video of making cocktails in detail?,v_6wPVO7I8iIY_496,"The video showcases the art of making classy cocktails. It begins with a close-up of a martini glass on a table with the text ""The Art of Making Cocktails"" displayed beside it. Behind a bar, a bartender is polishing a glass followed by shots of various drink bottles lined up on the bar and shelves. Next, the bartender lays out limes beside the lemons & places a cocktail glass, filled with ice, on the bar. He picks up a variety of alcohol bottles and places them beside him. Then, he pours different kinds of alcohol into a mixing glass followed by a flavoring agent. He throws ice cubes into the mix, stirs with a stirrer, empties the ice from the cocktail glass and pours the blend into it. The ingredients for the drink are shown in a cutaway. Lastly, the bartender wipes the bar. Two windows with shutters down are visible to his right.",0 497,v_Fb4X1PWfOvY,Can you describe the video content in detail?,v_Fb4X1PWfOvY_497,"The video is titled 'The Strength it Takes' and begins with the Indiana University Health logo displayed on a light yellow background, followed by a title saying 'Parallel Bars Basic Level'. Next, a woman wearing a neon green t-shirt, black track pants with white stripes, and white sports shoes is seen exercising on the parallel bars in a park during the day. The park also has seesaws and there are cars parked beside it. A man is walking in the park. After the woman finishes, the video displays another title saying 'Parallel Bars Advance Level'. A man is then seen exercising on the parallel bars, wearing a light green t-shirt, black short track pants with white stripes, and neon green and black sports shoes. The video ends with the text 'THE STRENGTH IT TAKES', and the web address 'www.iuhealth.org/workout' is displayed on a light yellow background.",0 498,v_IfugNwywj-k,Can you describe the content of the video?,v_IfugNwywj-k_498,"The video starts with an old man wearing a black vest over a white shirt repairing a bicycle. He is in a well-lit shop sitting on a wooden chair in front of the bicycle which is propped up vertically. Another bicycle is parked next to the man against the wall. As the man turns the wheel of the bicycle, a woman wearing a pink top enters the shop. They start to converse, and the woman checks if the bike is working. At the end of the video, the old man holds the woman by the ear, and they are still conversing.",0 499,v_dZsk5Dp_5FE,Can you describe what's happening in the video?,v_dZsk5Dp_5FE_499,"In the video, we see a boy standing in a dirt patch in the woods wearing an off-white T-shirt and shorts. He picks up an axe and starts chopping a wooden log that is placed on a chopping block. After swinging the axe a few times, the log splits and falls to the ground. The boy then picks up another log and places it on the chopping block. He swings the axe again and splits the log, and then he holds up a thumbs-up sign to the camera.",0 500,v_AL1W3HkjJ2Y,Can you describe the video in detail?,v_AL1W3HkjJ2Y_500,"In the beginning of the video, we see a woman holding a bow and wearing a quiver with arrows on an indoor basketball court. Wearing black trousers and a black top, she draws arrows from her quiver and shoots them one after another until her quiver is empty. In the next clip, she is shown from the back shooting toward a makeshift target made of sheets hung near the basketball hoop. She shoots arrows one after another into a sheet in the middle of the target.",0 501,v_j_1kNiGcepU,Can you describe what happens in the video in detail?,v_j_1kNiGcepU_501,"In the video, a man wearing a checkered shirt and a backpack is speaking to others around him in a parking lot lit by sodium vapor lamps. Another man, wearing a hoodie and standing next to him with his hands in his pockets, bobs his head up and down as the harmonica player starts to play. Cars are parked in lanes behind them. The man next to the harmonica player takes out his phone and starts to record the harmonica player while he plays. After a few moments, the harmonica player finishes one song and starts another. He waves to someone on his left side as he continues to play. The video ends as the harmonica player finishes playing, pockets his harmonica and greets someone walking behind him.",0 502,v_le7JdKQB65I,Can you describe the video in detail?,v_le7JdKQB65I_502,"In the video, we see a woman sitting behind a small, round table with tubes and bottles of makeup in front of her. She is wearing a white coat over a teal top and there is a portable mirror next to the makeup. The room is well-lit and there is a large framed photograph on the wall behind her, along with a shelf containing books, framed art, and statues. The woman introduces herself and applies a cream from the table before moving on to applying eyeliner and smudging it with her fingers. She then applies lipstick, does contouring, and follows up with a highlight and blush. Finally, she picks up the mirror and inspects her work.",0 503,v_-6dz6tBH77I,Can you describe the video in detail?,v_-6dz6tBH77I_503,"The video depicts a man dressed in athletic clothes standing in a net while holding a disk in his right hand. He looks towards the direction where he throws the disk after spinning a few times. The net has several people sitting and standing outside it while there are also several people sitting on bleachers in the background. The video was filmed on a sunny day with several hills visible in the distance. After throwing the disk, people can be seen applauding, indicating that the man has likely performed a successful display of his skills, possibly in a form of a frisbee game.",0 504,v_BnO8AfQS8yE,Can you describe the video in detail?,v_BnO8AfQS8yE_504,"The video features a squash court with two players playing a game. The court appears to be well-lit and has a wooden floor. One of the players is wearing a black shirt while the other is wearing a yellow T-shirt. As the players continue the game, the player in the yellow shirt misses his shot and the other player kneels down to tie his shoes. The video ends when the man in the yellow shirt looks up to the cameraman. Overall, the video showcases a typical game of squash with two players wearing different colored shirts and the game being interrupted momentarily when one player ties his shoe.",0 505,v_CvbBSwz-9XI,Can you describe the video in detail?,v_CvbBSwz-9XI_505,"In the video, a dog is standing under an open tap with water splashing on its back. There is a blue bucket placed near the dog, and a man wearing shorts is kneeling in front of the dog. The scene is outdoors during the day, with a wall visible behind them. A closeup of the dog's face is shown, before the man fills the bucket with water. As the dog shakes itself dry in slow motion, the man pours the water from the bucket over the dog. The video ends with a close-up of the dog's face while the man kneels next to her.",0 506,v_-cAcA8dO7kA,Can you describe the video in detail?,v_-cAcA8dO7kA_506,"The video begins with a man riding a dirt bike in a dirt field surrounded by houses during the daytime. He enters the field from outside and rides towards the center. As he approaches the middle, he tries to jump over a slight elevation but lands with the front wheel first and crashes into the dirt. A man wearing a black t-shirt walks past the camera as the biker crashes. The video ends with the man trying to get up. ",0 507,v_9snScUyE8_4,Can you describe what happens in the video?,v_9snScUyE8_4_507,"In the video, a woman is seen standing in front of a sink in a kitchen, which is well-lit by natural light coming in from outside through a window. The woman starts cleaning a plate with a scrubber in the sink which is filled with water and a few other cleaning scrubs are visible floating in it. After cleaning the plate, she stacks it on a shelf beside the window where shelves of dishes are visible. She then proceeds to wash a spoon and a fork with the scrubber before placing them on the shelf along with the plate. The woman then cleans a tumbler and stacks it on the side. Additionally, there is a house visible through the window where the woman is standing, and she turns to the camera at the end and yells after cleaning the dishes.",0 508,v_96ADEnJy4GU,Can you describe what happens in the video in detail?,v_96ADEnJy4GU_508,"The video starts with a man washing his hands in a sink positioned in front of a mirror, with toiletries on the right side of the sink. The next clip shows people carrying bags and suitcases while crossing the street through a zebra crossing. Moving forward, the video captures a man wearing a welding mask welding something in a dimly lit workshop where a tank is placed on his left, against the wall. The sparks are visible as the man continues to weld. Another clip shows a monster truck driving through a muddy track, splashing mud as it turns. An animated hand appears on a black background swiping before it moves on to the next video clip. The final clip shows several cars moving through traffic with sunlight reflecting from them, and a building visible far behind the traffic.",0 509,v_-D1gdv_gQyw,Can you describe the video in detail?,v_-D1gdv_gQyw_509,"In the video, a man wearing a yellow t-shirt and glasses is seen holding a knife in his right hand while standing amidst weeds and plants in a wooded area. The sky is cloudy, and trees are visible in the distance. He then kneels down and strikes his knife against a fire starter, igniting a stack of firewood. The stack is comprised of heavy logs placed against each other and a few thinner sticks in the middle, with a green piece of paper visible there as well. The firewood stack is placed on an area with sand and pebbles, and the video concludes with the fire growing larger as the man celebrates.",0 510,v__a527xEzhkw,Can you describe what happens in the video in detail?,v__a527xEzhkw_510,"In the video, we see a girl sitting in a room holding a harmonica. She is wearing glasses and a grey shirt. Behind her is a bookshelf with a few empty shelves, and there appears to be another room behind the girl with the lights off. Next to her is a grey door. The girl listens to music for a few moments and begins to play the harmonica along with it. She sways back and forth as she plays the harmonica for several minutes. The video ends when the girl finishes playing the harmonica along with the music. Overall, the video shows a girl playing a harmonica in a cozy, dimly-lit room with a bookshelf in the background.",0 511,v_cH3H-arDsH4,Can you provide a detailed description of the video?,v_cH3H-arDsH4_511,"The video features a game of water polo being played in a swimming pool. In the pool, a few players can be seen passing the ball to others, while two players try to grab the ball from each other. Some players score goals while others defend the goalpost. Behind a table on the poolside, a few people can be seen sitting and watching the game. A coach is also present on the poolside, supervising the game. Another game of water polo is being played on the other half of the pool. In the end, the players of the first game can be seen swimming to the other side of the pool. Overall, the video shows an intense game of water polo with players displaying their skills.",0 512,v_hvhny4-sI-w,Can you describe the video content in detail?,v_hvhny4-sI-w_512,"In this video, we see a group of spectators sitting on white chairs placed on a lawn during daytime. There is a building with a sloping roof visible in the background, and a few cameramen with cameras on tripods are standing in front of them. The camera pans to show a polo match taking place on a polo field. Players are riding their horses and using mallets to hit the ball. We can see two teams competing against each other, one wearing white polo shirts and the other wearing red. As the camera moves around the field, we can notice trees lining the end of the field. Overall, it seems like a beautiful day outside, with a thrilling polo match entertaining the crowd.",0 513,v_d09u-0k3LdE,Can you describe the video content in detail?,v_d09u-0k3LdE_513,"The video features a woman wearing a red vest standing in a net that is covered on three sides. In the background, trees are visible at the edge of the field. The woman is holding a hammer attached to a string while standing on a red mat. She swings the hammer with the string and spins a few times before releasing it through the open end of the netting. The video ends with the woman walking off to the side. ",0 514,v_B0GCHDqEsRU,Could you describe the video in detail?,v_B0GCHDqEsRU_514,"The video starts in front of a garage where a couple is dancing. The couple is surrounded by other people standing to the side. The setting is outdoors during the daytime, but there is no direct sunlight streaming down. On the left, there is a red truck that stretches all the way back towards the fence. Beyond the fence, there are woods visible. Towards the back of the scene, children are seen running around. A man is tending to a barbecue a few feet behind the dancing couple. The camera flashes intermittently, capturing the scene as the couple keeps dancing. Later in the video, another couple, with the man wearing a red jacket and cap joins in on the dancing. The video ends with the couples continuing to dance. Overall, the video depicts an outdoor gathering of people at an open space outside a garage, dancing and enjoying barbecue.",0 515,v_aH39BSM0-Ag,Can you describe the video in detail?,v_aH39BSM0-Ag_515,"The video features a lacrosse game played in the daytime between two teams, one wearing blue-green jerseys and the other wearing grey ones. Throughout the game, the camera follows Samuel Shearin, who wears a blue-green jersey with number 24, as he plays various positions and tries to check the ball from the player on the opposing team. The game takes place on a field surrounded by trees and shrubs, and there are spectators seated along the boundaries. At one point, a photographer is seen taking pictures behind a tripod. The video concludes with Samuel chasing an opposing player in an attempt to check the ball.",0 516,v_iqhdqhVttEM,Can you describe the contents of the video in detail?,v_iqhdqhVttEM_516,"The video shows a man wearing a white T-shirt starting to dance during the daytime. People standing some distance from the man start to dance following his lead, as he conducts a Zumba class. There are also people gathered beyond the dancing group to watch. The camera pans to show individual people dancing and a clip of the man's legs as he dances. The video ends with the man turning toward the dancers and dancing, after which the class stops as the music ends and the man walks to the side, clapping.",0 517,v_cECycCDw1Nc,Can you describe the video content in detail?,v_cECycCDw1Nc_517,"The video begins with a woman putting a slice of pepperoni on a sandwich in a well-lit kitchen. We see a slideshow of the ingredients, including an oven, a baking sheet, a French roll, a pack of pepperoni, a bottle of mayonnaise, slices of cheese, sliced tomato, and shredded lettuce. The woman then slices a roll of bread in half and spreads one-half of the roll in pizza sauce. Next, she adds slices of pepperoni and cheese to the slice of bread and places the sandwich in an oven, taking it out once it is done. Lastly, she tops the sandwich with slices of tomato and shredded lettuce before putting the two halves of the sandwich together.",0 518,v_egowZOcbEkI,Can you describe what happens in the video in detail?,v_egowZOcbEkI_518,"The video starts with an animated shot of Earth and ends with a website address. The next scene takes place on a basketball court where an instructor wearing a white shirt and green shorts stands, holding a basketball in the crook of his left hand. A person in a gray T-shirt stands behind him, and folded chairs are visible in the back. The instructor speaks into the camera, and the angle then widens to show another boy wearing a white T-shirt on the instructor's right. When the instructor bounces the basketball under the basket, the boy in the white T-shirt runs to the edge of the court, catches the ball, and dunks it in the basket. This process is repeated several times, with the instructor asking the boy to repeat certain steps when he makes mistakes. The drill ends, and the instructor turns back to the camera to speak about the boy's performance.",0 519,v_HURRgbZGz8Q,Can you describe the video in detail?,v_HURRgbZGz8Q_519,"The video depicts a black-and-white footage of a spear-throwing competition in an outdoor stadium. Athletes holding a spear can be seen running and throwing spears in the competition, while the audience seated in the stadium and people standing in suits on the field watch and cheer. The clip further shows the landing of the spears in an area marked with numbered lanes. Clearly visible is a man standing near the number 70 marker, dressed in a suit. The video continues to show athletes running and throwing spears, followed by a shot of an athlete throwing a spear and camera following its path to the destination. Once the spear lands, the audience applauds. In the end, a moment shows Adolf Hitler clapping, and a scoreboard with the names and throw distances of athletes is displayed. ",0 520,v_afMQA352X_A,Can you describe the video in detail?,v_afMQA352X_A_520,"In this video, a man wearing a white T-shirt and shorts is standing in a park wearing boxing gloves, with trees visible behind him. People are walking and sitting in the far background while the man is standing in the shadow of a tree. Next, the man begins practicing kickboxing with another man who is wearing a camo gi and focus mitts, and holding kick pads in his left hand. The student starts with punches and kicks, while the trainer calls out which move he should do next and in what count. Meanwhile, a woman walks her dog in the background. The two men then start sparring, shifting into punches, deflecting punches, and dodging kicks. Finally, the video ends with a still image of the student kicking. ",0 521,v_l8gg9TYh_B0,Can you describe the video in detail?,v_l8gg9TYh_B0_521,"The video starts with two news anchors, a woman on the left and a man on the right, reading the news from behind a glass news desk marked with the number '10'. A cutaway to two men shoveling snow outside a house is then shown. These men are wearing winter clothes as they shovel snow during the day time. The video then cuts to the two men speaking to the camera one after the other, with their names displayed on ribbons on the screen. The men are then shown shoveling snow and speaking to each other. After this, a doctor is interviewed, and clips of people shoveling snow are shown as cutaways of the doctor speaking. Next, a woman wearing a black jacket reports in front of the camera with a brown building visible in the far back of the reporter, and a few cars parked a few feet behind her. She holds up her phone, and a woman is shown holding up her phone displaying her heart rate before shoveling snow. Another cutaway of the doctor speaking is shown. Finally, the video returns to the two men from the first clip speaking to the camera, and ultimately ends with the news anchors in the studio finishing their reporting.",0 522,v_Ds2O0-8Labs,Can you describe the video content in detail?,v_Ds2O0-8Labs_522,"The video starts in a brightly lit gym with a man wearing a black t-shirt and pants bending down to lift a barbell, surrounded by exercise equipment visible through the windows. He slowly lifts the barbell above his head but drops it on the floor, causing it to bounce a few times. The scene then shifts to a well-lit area with a red wall where the man is attempting to lift an 85-kilogram barbell. He successfully lifts it over his head and drops it on the floor. This process is repeated a few times with increasing weights, until the man lifts a barbell of 130 kilograms and successfully lifts it above his head. Overall, the video showcases a man performing weightlifting exercises with gradually increasing weights.",0 523,v_k1QAWLupB-I,Can you describe the video in detail?,v_k1QAWLupB-I_523,"The video begins with four people comprising three men and a woman, all standing outdoors in front of cameras holding an old spice-branded ping pong paddle. There is a ping pong table at their back. After that, the woman in black dress is seen being photographed by several photographers with an Old Spice banner in the background. Next, a man in a red polo shirt joins her on the red carpet to get photographed. The woman holds up a paddle that displays the image of the man next to her. In the following scene, the woman and the man in the red T-shirt are seen playing ping pong. The game appears to take place in the same outdoor location with the same distinctive backdrop. The woman hits the ball and it goes out of the bounds of the table, and the video comes to an end.",0 524,v_9UvVeUYQLgA,Can you describe the video in detail?,v_9UvVeUYQLgA_524,"The video takes place in an outdoor paintball arena during the day time. An aerial shot of people in fluorescent vests and a pirate flag fluttering in the wind is shown, followed by a shot of an armory. Subsequent shots feature people in different camo outfits putting on helmets, running through the arena, and hiding behind cable drums and old tires. Shots of people shooting paintball guns while dodging and avoiding getting shot are also displayed. A fence around the arena and a street with moving vehicles can be seen. Finally, the video ends with a shot of a different area of the arena, with more weeds and cinderblocks providing cover for the players.",0 525,v_dEpUIpmBvow,Can you describe what happens in the video where a man is climbing a rock?,v_dEpUIpmBvow_525,"In the video, a man wearing a gray vest is free climbing up a rocky hill surrounded by trees during the day. Patches of sunlight are seen streaming down through the tree cover. On his left, a rope is visible being used by another man at the bottom for belaying. The climber continues to climb without the assistance of the rope, pausing briefly to find a handhold, as another cutaway shows the belayer. The video ends with the climber reaching the top of the rock face. Additionally, a woman appears at the end of the video and turns the camera towards herself and speaks into it.",0 526,v_EZyLBq2jJtE,Can you describe the video in detail?,v_EZyLBq2jJtE_526,"The video starts in a well-lit room with white walls and a woman seated on a chair wearing a red shirt, black & purple track pants, and white sports shoes. Her name is Bethany and she proceeds to shave her legs with a razor while talking to the cameraman. A woman enters the room through an open door on the left and shows some papers to Bethany before leaving. Bethany then stands up and strikes a pose, with a woman in a grey top and glasses standing behind her. The room contains a sofa, printer, wall clock, landline phone, and documents on the shelf. Bethany finishes by skipping out of frame and the video fades to black. The video begins and ends with black screens, with the text ""REALLY BETHANY Shaving Your Legs In My Office…REALLY?"" shown at the start. Overall, the video depicts the act of Bethany shaving her legs in an office setting and featuring a brief interaction with another woman.",0 527,v_2fzIi1lPd8U,Can you describe what happens in the video in detail?,v_2fzIi1lPd8U_527,"The video starts off with two kids and an elderly woman playing, with one of the kids, a little girl, standing on the side of a porch, while a little boy wearing a red shirt is a few feet away. The elderly woman holds her hands in front of her, first to the girl and then to the boy. The woman proceeds by helping the little girl jump down the porch and then starts teaching her how to play hopscotch. She begins to hop forward a few steps while teaching, but unfortunately, she trips and falls down towards the end of the video.",0 528,v_C7yd6yEkxXE,Can you describe the video in detail?,v_C7yd6yEkxXE_528,"The video starts on a dirt bike track surrounded by trees and vegetation. The sky appears to be cloudy. A pair of bikers is approaching from behind a jumping ramp. The first biker jumps over the ramp and continues on to the next one. Shortly after, another rider parallel to the first one jumps over a ramp on the right side. As they successfully clear the second ramp, the riders are visible turning left.",0 529,v_IN23CO8Kotk,Can you describe the video in detail?,v_IN23CO8Kotk_529,"Sure! The video is of a parrot that is perched on a kitchen counter and is eating cream from a pink coffee cup. The cup has a butterfly painted on it and a spoon sticking out of it. The wall behind the parrot is white and tiled, and a birdcage can be seen behind it. The lighting in the kitchen is good, illuminating the scene well. Towards the end of the video, the parrot is still eating cream from the coffee cup. Overall, the video captures a cute and funny moment of a parrot enjoying some cream.",0 530,v_BFChXuwZ4wo,Can you describe the video in detail?,v_BFChXuwZ4wo_530,"The video follows two women as they enter a tattoo parlor. Inside, there are various types of equipment and pictures on the wall. One of the women goes to the tattoo artist to get a stencil on her wrist. The tattoo artist is wearing a white shirt and glasses. A close-up of the stencil is shown and the girl is seen standing in front of the mirror, examining the stencil. In the next clip, the tattoo artist starts to clean the area and dips the needle in the ink to start tattooing. A close-up is also shown of this process with blood visible. Once the tattoo is complete, the girl holds it up to the camera and walks out of the tattoo parlor while the cameraman turns the camera towards himself and another girl standing next to him.",0 531,v_9k19UUJtldg,Can you describe the video in detail?,v_9k19UUJtldg_531,"In the video, a boy is seen standing in a well-lit room in front of a ping pong table with an overhead light. There is a window visible on the back wall. The boy then hits a ball with a paddle. In the next scene, the boy is participating in a ping pong competition where multiple tables are arranged side by side with dividers in between. The competition includes different venues with the boy playing against opponents of different nationalities. The video includes different scenes showing the boy playing against different opponents. The video ends with a clip of the boy playing against an opponent, and he misses a hit.",0 532,v_hFi6S_guB7I,What movements do the women make as the music starts?,v_hFi6S_guB7I_532,"As the music starts, the women slowly turn around and begin belly dancing.",0 533,v_18yZR3NDaXM,What is happening in the video?,v_18yZR3NDaXM_533,"A man is talking to the camera in front of a fence, behind which is a lit stadium with people scattered throughout the field. There are clips of a person wearing a body cam running on the kickball field, a man throwing a ball underhanded towards waiting players, a player kicking the ball into the air and running some distance while being filmed, a clip of the man being filmed kicking the ball is also shown. In another clip, the cameraman walks towards a person, then brings the camera close to the person's face and walks behind him. He then focuses on the man who is wearing a blue t-shirt and a bodycam, followed by a man in a black t-shirt wearing a kilt. Another clip shows a man in a blue T-shirt speaking to the cameraman and then running towards the ball. The video ends with a man in a darkened room speaking into the camera.",0 534,v_BjjN_aq_wq4,What is happening in the first clip of the video?,v_BjjN_aq_wq4_534,"In the first clip of the video, a woman is standing in front of a kitchen sink with dirty dishes visible in it. She turns the tap on and pours soap on a board and starts scrubbing while speaking to the camerawoman.",0 535,v_DJTvj9lfSWU,What is the man doing in the bathroom?,v_DJTvj9lfSWU_535,The man and woman enter the bathroom and step out immediately while laughing. The woman is carrying a bucket. Both of them are speaking into the camera while inside the bathroom.,0 536,v_0BtHd6dvm78,What is the man wearing while washing dishes and talking to the cameraman?,v_0BtHd6dvm78_536,The man is wearing a white hoodie and glasses while washing dishes and talking to the cameraman.,0 537,v_dKJMP8EmZjw,What is the distinguishing feature of the dinghies shown in the video?,v_dKJMP8EmZjw_537,"The dinghies shown in the video have sails of different colors, with one having white sails, another having red and white sails, and yet another having just a white sail.",0 538,v_kGdxtU3NwWo,What is the man polishing with the clear liquid?,v_kGdxtU3NwWo_538,The man is polishing a shoe with the clear liquid.,0 539,v_b4xvXZq5uD8,Who takes the trimmer from the boy and continues trimming the hair of the man?,v_b4xvXZq5uD8_539,Another individual takes the trimmer from the boy and starts trimming the hair of the man.,0 540,v_aLb79wtvxoQ,What does the person do after filling the sink with water?,v_aLb79wtvxoQ_540,"After filling the sink with water, the person starts scrubbing the dirty pots using a scrubber both inside and out.",0 541,v_KlgrI3Ngwv0,What techniques did the athlete perform during his routine on the pommel horse?,v_KlgrI3Ngwv0_541,"The athlete started his routine by doing a circle around the pommel horse, followed by scissors and a handstand. He then continued with other techniques before doing a routine where he moved the length of the pommel horse and finished up by doing a handstand and an upside-down split.",0 542,v_jN-jnIgzd6k,What kind of drills are the children doing in the video?,v_jN-jnIgzd6k_542,"The children are doing different stances, punch and kick drills along with movement drills.",0 543,v_araMJB23T1s,What is visible at the bottom once the boy jumps?,v_araMJB23T1s_543,A stream is visible at the bottom once the boy jumps.,0 544,v_dW6OZV43ulU,What tools did the man use to clean the leather sofa in the video?,v_dW6OZV43ulU_544,"The man used a hand brush, a bottle of leather cleaner, some foam cleaner, a towel, a scrub pad, a hair drier, a piece of sponge, and a UV protection liquid to clean the leather sofa.",0 545,v_JcAAwYpJhm8,What is the little girl washing in the video?,v_JcAAwYpJhm8_545,"The little girl is washing a glass, a spoon, a pot, and a plate with Dora the Explorer on it, and a plastic jar in the end.",0 546,v_aYxni8ohTfU,Which teams were playing against each other in the video and who won the match featuring Italy and Brazil teams?,v_aYxni8ohTfU_546,"The teams playing against each other in the video were Italy and Latvia, Italy and Brazil, and Latvia and Germany. Latvia won the match against Italy in the end and Brazil won the exchange against Italy, but Brazil's opponent was not specified, so we do not know which team won the match between Brazil and Italy.",0 547,v_6Xsfwn5M6qs,What kind of maneuvers did the man perform on the parallel bars?,v_6Xsfwn5M6qs_547,The man performed a handstand and swung from the bars while holding on to them with his hands. He also held a position with his legs parallel to the ground while holding himself up from the bars. He turned using one hand on the bar and attempted to land while performing multiple backswings.,0 548,v_CecqF_uHeOI,What items does the man use to wipe the glass door?,v_CecqF_uHeOI_548,The man wipes the glass door with a wiper and a blue towel.,0 549,v_7-taNK5mW8E,What movements can be seen in the video?,v_7-taNK5mW8E_549,"In the video, several people can be seen kicking their legs and two people are shown swimming in place close together looking for the ball.",0 550,v_IcR28Yqt4mY,Who won the wood-chopping competition in the video and where was he positioned among the contestants?,v_IcR28Yqt4mY_550,"Lawrence O'Toole, who was the first contestant on the left, won the wood-chopping competition and stepped away after completely chopping his wooden block.",0 551,v_B3xMfP_UOt4,What is the man's attire as he prepares for the high jump in the video?,v_B3xMfP_UOt4_551,The man is wearing a green fluorescent vest with the name tag 'UKHOV'.,0 552,v_4XnXyKYxnQQ,What is happening to the ship in the video?,v_4XnXyKYxnQQ_552,The ship is tilted left and looks like it is about to capsize.,0 553,v_hq48S65dlyo,What activities are being done in the gym in the video?,v_hq48S65dlyo_553,"In the video, a woman is seen punching into a punch mitt worn by a man, kicking kick pads held by a man, and kicking focus pads held by a person. The man with the punch mitts later starts practicing punching with the woman as well as goes on to kick the pads held by other men in the gym.",0 554,v_gWbIoFrpwTY,What safety gear does the little boy wear while skateboarding in the video?,v_gWbIoFrpwTY_554,"The little boy wears a helmet, kneepads, and elbow guards while skateboarding in the video. He falls a few times when jumping off ramps and once when reaching the top of a ramp.",0 555,v_eoSwoeLmeyQ,What kind of dancing are the couples in the video doing?,v_eoSwoeLmeyQ_555,The couples in the video are salsa dancing.,0 556,v_1d_U_2HIPmY,What does the man do with the hammer after he swings it around his body?,v_1d_U_2HIPmY_556,"After swinging the hammer around his body twice, the man then swings it two more times while turning before releasing it through the open side of the cage.",0 557,v_Hz7-mBFGsSs,What is happening in the video?,v_Hz7-mBFGsSs_557,"In the video, a girl who is crying is getting her hair cut in a salon; a woman brings her lollies which she refuses, and the barber starts cutting her hair.",0 558,v_B_U7vUtoCKY,Who is the player wearing a white jersey that the video follows?,v_B_U7vUtoCKY_558,The player wearing a white jersey that the video follows is Cole Fowler.,0 559,v_7pfHxav4b0U,What is the woman wearing in the video and what does she explain towards the end?,v_7pfHxav4b0U_559,"The woman is wearing a life vest and a white helmet. Towards the end, she explains the way to make turns while rowing.",0 560,v_htzAYwoAZkg,What is the woman doing in the video?,v_htzAYwoAZkg_560,The woman climbs onto the resistance machine and starts pedaling.,0 561,v_ijrjRNwZjqQ,What do Kevin Spacey and Rafael Nadal do at the beginning of the video?,v_ijrjRNwZjqQ_561,"At the beginning of the video, Kevin Spacey and Rafael Nadal appear on the stage wearing tuxedos and interacting with each other.",0 562,v_IhmtmKxEU40,What colored marker buoys can be seen near the windsurfers in the video?,v_IhmtmKxEU40_562,Different colored marker buoys are visible in the vicinity of the windsurfers.,0 563,v_3zpODTqnYLs,What is the toddler doing when someone dives into the pool?,v_3zpODTqnYLs_563,"The toddler bends forward and washes her face with the water, while the man is holding onto her.",0 564,v_1KONAdZGdWU,What is the girl doing in the video?,v_1KONAdZGdWU_564,The girl in the video is seen shaving her left leg while occasionally talking to the camera person.,0 565,v_DIhyfNJAm-M,What color suit is the man wearing while playing the saxophone on stage?,v_DIhyfNJAm-M_565,The man is wearing a black suit and white shirt while playing the saxophone on the red-floored stage.,0 566,v_K6QunmuTZOQ,What is the woman doing in the gym?,v_K6QunmuTZOQ_566,The woman is practicing weightlifting movement patterns.,0 567,v_l7qSKJyq6mA,What is the man wearing while ironing the dress shirt in the video?,v_l7qSKJyq6mA_567,The man is wearing a black sweater vest over a grey shirt.,0 568,v_2VZumBKJuPs,What is the man doing in the video?,v_2VZumBKJuPs_568,The man is piercing the woman's belly button using a needle piercer and inserting jewelry.,0 569,v_7EeO9V2B574,What is the background of the video during the dance performance?,v_7EeO9V2B574_569,Two palm trees are visible at the back with a hedge wall.,0 570,v_IgDBDaIoNAM,Where does the fight scene take place in the video?,v_IgDBDaIoNAM_570,The fight scene takes place under an overpass during the daytime.,0 571,v_325CAs4hhq8,What team scored the goal in the final clip of the video?,v_325CAs4hhq8_571,A player in an orange uniform scored the goal in the final clip of the video.,0 572,v_CTJej0rZMiI,What is the man playing?,v_CTJej0rZMiI_572,The man is playing the accordion.,0 573,v_CTyvQHkAKuY,What color is the jacket of the man who dances near the far wall?,v_CTyvQHkAKuY_573,The man who dances near the far wall is wearing a black jacket.,0 574,v_3M290KZV5lo,What does the girl do after mounting the balance beam?,v_3M290KZV5lo_574,The girl performs a backflip after mounting the balance beam.,0 575,v_itXYuf_Cj_Q,What is the man wearing and where is he sitting in the video?,v_itXYuf_Cj_Q_575,"The man is wearing a green sweatshirt, sitting on a red chair, and has a single black dress shoe on each of his thighs.",0 576,v_JspVuT6rsLA,What is the little boy doing in the video?,v_JspVuT6rsLA_576,The little boy is playing the violin throughout the video.,0 577,v_cPIsE2ZCWzM,What are the spectators doing and what does the seating area look like?,v_cPIsE2ZCWzM_577,The spectators are walking down the stairs in the seating area which has red-colored and folded seats. They are wearing sunglasses as there is direct sunlight falling on the seating area.,0 578,v_IL8__uSFpqg,What is the man doing to the bike's crankset in the video?,v_IL8__uSFpqg_578,"In the video, the man is removing the crankset to tinker with it. He wipes off the grease from the crankset and the bottom bracket using a paper towel before applying something from a tube on the bottom bracket. He then reattaches the crankset and tightens the bolt, testing the pedal at the end of the video.",0 579,v_JguRZtFN-Ck,What is the woman wearing in the video?,v_JguRZtFN-Ck_579,The woman is wearing a white t-shirt and shorts.,0 580,v_cFOaL4Ir4hg,What type of dives are performed in the video?,v_cFOaL4Ir4hg_580,"In the video, several people can be seen performing various types of dives, including backflip dives, front flip dives, and horizontal flips into the pool.",0 581,v_BdRH3lpopLQ,What happened to the team on the right during the volleyball game?,v_BdRH3lpopLQ_581,The team on the right passed the ball between themselves four times before passing it to the other team. The other team started celebrating before the game was won. The ball lands by them and they lose the game. The first team celebrates.,0 582,v_JHKAcpYlxkQ,What is the woman doing in the video?,v_JHKAcpYlxkQ_582,The woman in the video is starting a serve and practicing serving on an outdoor tennis court. She hits the balls to the opposite wall after making a serve.,0 583,v_1xBdquA6dx8,Which team is wearing blue in the video?,v_1xBdquA6dx8_583,One of the teams in the video is wearing blue jerseys.,0 584,v_kdOsmDACtqw,What is the man in the white t-shirt doing in the video?,v_kdOsmDACtqw_584,The man is dancing and interacting with the crowd after a man wearing a black outfit breakdances on a white sheet.,0 585,v_kIFHChO_-vg,What is happening in the first scene of the video?,v_kIFHChO_-vg_585,"In the first scene of the video, a toddler is shown sitting on a vanity table with various bottles and makeup products on it. A hair straightener is also plugged into an outlet on the left side of the table. The table has a mirror in the back reflecting the toddler.",0 586,v_5P9Tbut04xE,What is the main focus of the video?,v_5P9Tbut04xE_586,The video is a tutorial on how to play an octave in a harmonica.,0 587,v_7gaC3b5nJqs,What type of clothes are the women wearing?,v_7gaC3b5nJqs_587,The women are wearing gym clothes.,0 588,v_15yU0R2MBQM,What is the color of the toothbrush used in the video?,v_15yU0R2MBQM_588,The toothbrush used in the video is blue.,0 589,v_kgz7c2kb4Rg,What demonstration does the woman in the video provide?,v_kgz7c2kb4Rg_589,"The woman in the video provides a demonstration of how to use the paddle to turn the kayak, specifically doing a reverse sweep by turning her torso to her left and sweeping the left paddle from back to front, which turns the kayak to the left. She repeats this once more. Additionally, she demonstrates a forward sweep with the left side and a reverse sweep with the right paddle and repeats this again.",0 590,v_0k0xNs8Zjb4,What moves does the girl perform in the video?,v_0k0xNs8Zjb4_590,"The girl performs a backflip, standing back-tuck, back handspring tuck, running front flip, front and back flips, and a tumbling sequence that consists of backward flips and running front flips.",0 591,v_9pavfCL1HvU,What are the players doing in the video?,v_9pavfCL1HvU_591,The players are in a swimming pool playing water polo.,0 592,v_i5qTK0mInTc,Who enters the living room and sits next to the old woman while she is watching a movie?,v_i5qTK0mInTc_592,The old woman's daughter enters the room and sits next to her.,0 593,v_EK7qW-oavQY,What is happening in the video?,v_EK7qW-oavQY_593,"In the video, a game of water polo is being played in a swimming pool. Players are scattered in the pool, converging towards a goal post and attempting to score. Spectators are sitting on a bench on the poolside. The game continues as players start to pass the ball to their teammates and eventually, one of the teammates near the opposite goal post scores a goal.",0 594,v_jCxQQ9DMpT0,What is happening in the first clip of the video?,v_jCxQQ9DMpT0_594,"The first clip shows a man on a golf course drawing the string of a compound bow, notching an arrow, and releasing it. Before that, a logo and website for HuntinClub.com is shown.",0 595,v_4NPVpI9zUpI,"What is the ""Scissor kick"" in the video?",v_4NPVpI9zUpI_595,"The ""Scissor kick"" is the fifth-degree jump performed by Stefan where he jumps one leg after another over the bar.",0 596,v_Ku76zinwWkg,Can you describe the appearance of the girl and the boy in the video?,v_Ku76zinwWkg_596,"Yes. The girl and the boy are both wearing black outfits while running on the track. However, there is no description given about their physical features or any other details.",0 597,v_Hy54nZSDxTk,What is the shooter doing in the video?,v_Hy54nZSDxTk_597,The shooter is running around the paintball park with a paintball gun and shooting at other people.,0 598,v_KApqxr02rcQ,Who scored all the goals in the video of the women's field hockey game?,v_KApqxr02rcQ_598,"The video follows a single player named Jessica Skillings, who scores all the goals shown in the video.",0 599,v_BBKSKU6dGGk,What task is the man performing in the video?,v_BBKSKU6dGGk_599,The man is shoveling snow on a sidewalk.,0 600,v_-HpCLXdtcas,What is the man doing in the video?,v_-HpCLXdtcas_600,The man is lifting a barbell over his head and dropping it to the floor.,0 601,v_9VtxNvLx6zA,Which team won the game in the video?,v_9VtxNvLx6zA_601,There is no information provided about which team won the game in the video.,0 602,v_AwgGYaV1lT0,What objects were visible in the background?,v_AwgGYaV1lT0_602,"Trailers, a truck, a tent some distance back from the man, a foldable table with chairs, and a motorcycle parked in front of the tent were visible in the background of the video.",0 603,v_0X0u_3xUBPE,Where does the man practice Tai Chi?,v_0X0u_3xUBPE_603,The man is standing on a concrete floor outdoors with trees in the background.,0 604,v_iABuDhagUm8,What does the man do in the video?,v_iABuDhagUm8_604,The man walks in slow motion towards a chopping block with an axe in his right hand. He swings the axe down on a wooden log placed on the chopping block until it breaks and falls on the ground. He also throws the axe in front of him before walking towards the camera.,0 605,v_jt-Vnap5KP4,What is the man wearing while playing the harmonica?,v_jt-Vnap5KP4_605,"The man is wearing winter clothes, a hat, and sunglasses.",0 606,v_agu58IVL7IQ,What is the man doing in the video?,v_agu58IVL7IQ_606,"The man in the video is holding a skateboard, and then he starts skating while performing flip tricks. The video ends with him still skating.",0 607,v_9AfQ2Q-96oE,What is the throwing technique used by the man in the video?,v_9AfQ2Q-96oE_607,The man first spins to build momentum and then throws the disk through the opening in the netting.,0 608,v_A904-cbaYDw,What type of practice is the man in the video doing?,v_A904-cbaYDw_608,The man is doing a tai chi practice.,0 609,v__B7rGFDRIww,What type of dance is performed in the video?,v__B7rGFDRIww_609,Ballet dance is performed in the video with dancers performing different poses.,0 610,v_5tFfEA1JWjA,Who is holding the basketball in the video?,v_5tFfEA1JWjA_610,The boy on the left is holding the basketball.,0 611,v_AQnp2QAnwI0,What is happening on the screen behind the dancers?,v_AQnp2QAnwI0_611,There is a projection on the screen behind the dancers.,0 612,v_ANaMmXJFE54,What kind of stunts do the cheerleaders perform in the video?,v_ANaMmXJFE54_612,"The cheerleaders perform basket tosses where bases lift and throw flyers into the air, acrobatic movements like toe touch and twist are done by flyers before they land back down, flips and reform into bases to begin another stunt, and throw several flyers into the air and hold poses.",0 613,v_7orO93DICYw,What equipment is present in the gym?,v_7orO93DICYw_613,The gym has balance beams fixed to the ground with foam pads lining the floor.,0 614,v_9hTcvGUnMBs,Who is watching the competition?,v_9hTcvGUnMBs_614,"There is a referee with a notepad observing the competition, and a group of people sitting on chairs and on the ground watching.",0 615,v_60tIsGR0Zzg,What is the boy doing in the video?,v_60tIsGR0Zzg_615,The boy is mowing the lawn.,0 616,v_IRua6QGP-Ow,What is the bartender's attire?,v_IRua6QGP-Ow_616,The bartender is wearing a black vest and tie over white shirt.,0 617,v_DOI6tsATsE4,What is visible in the background near the wall?,v_DOI6tsATsE4_617,A lamp is visible in the back near the wall.,0 618,v_ej9TkJVjK9M,What is the man wearing in the video?,v_ej9TkJVjK9M_618,"In the video, the man is seen wearing black tights.",0 619,v_8L1UjGLOCeI,What is the woman doing in the video?,v_8L1UjGLOCeI_619,The woman is standing in a room with a hopscotch court drawn on the ground. She is standing near a white wall with a clock hung on it. There is a closed door behind the woman. The woman starts to hop on the hopscotch court and completes a pass. She then turns around and hops back to the spot she started from. She then opens the door and turns to the camera and holds her hands to the side.,0 620,v_c7S423zJqPo,Who can be seen struggling to follow the rhythm in the aerobics class?,v_c7S423zJqPo_620,The first woman on the right can be seen struggling to follow the rhythm in the aerobics class.,0 621,v_Bkhr72sazvQ,What is the man advertising in the video?,v_Bkhr72sazvQ_621,The man is speaking about a weight loss product and holding up a sachet of coffee.,0 622,v_d-RYiiPzVKg,What is the man doing in the video?,v_d-RYiiPzVKg_622,"In the video, the man is polishing a table using a mixture of olive oil and vinegar.",0 623,v_BmLDHLKiIdQ,What is the scoring mechanism in the archery competition?,v_BmLDHLKiIdQ_623,The contestants shoot arrows through a compound bow and their points for that particular shot appear on the screen.,0 624,v_9VflCeoPr9I,Who celebrates near a ring with other people in the video?,v_9VflCeoPr9I_624,"The old woman in a pink sweater runs towards a ring near other people and celebrates after the next person kicks the ball. She holds her footwear in her hands, and then walks back to her spot.",0 625,v_1kwIYXB4b8s,Who is seen recording the man getting his haircut?,v_1kwIYXB4b8s_625,Another man is seen holding a mobile phone recording the man getting his haircut.,0 626,v_kPn9NzU4W48,Who are the two teens introduced in the video and what are they doing?,v_kPn9NzU4W48_626,The two teens introduced in the video are John and Tyler. They are sparring and kickboxing in a basketball court.,0 627,v_4iFlM_Zu7xs,What is happening in the video?,v_4iFlM_Zu7xs_627,"The video shows two bikers performing stunts on a dirt bike track. The video begins with a man jumping over an incline on his bike on the track. In between, there is another scene of a different biker jumping over another dirt incline. The riders are riding and jumping on the dirt track in a circle, while a person holding a camera records them in the middle of the dirt track. The video ends with the two bikers jumping over a hill one after the other.",0 628,v_Dbas61NkTV0,What kind of lighting is used on the stage?,v_Dbas61NkTV0_628,Overhead lighting is used on the stage with gobo lighting of different shapes projected onto the stage wall.,0 629,v_j6ElczD-Pw4,What is the girl wearing in the video?,v_j6ElczD-Pw4_629,The girl is wearing a black top.,0 630,v_e3DB_y78IHc,What animals can be seen grazing in the video's final shots?,v_e3DB_y78IHc_630,"In the video's final shots, ostriches, alpacas, and camels can be seen grazing one after another.",0 631,v_9ZVWD0ZKXZg,What is the color of the boy's T-shirt in the video?,v_9ZVWD0ZKXZg_631,The boy is wearing an orange T-shirt.,0 632,v_1dDAcUliXrQ,What happens in the video when one of the women in the first team walks out of the court?,v_1dDAcUliXrQ_632,"When one of the women in the first team walks out of the court, she picks up a purse while walking towards the back of the court and briefly speaks to one of her teammates while walking away. The remaining players briefly celebrate and continue playing, with the first team now short a teammate.",0 633,v_KvtqF0LaWU0,What is the man doing in the video?,v_KvtqF0LaWU0_633,"In the video, the man wearing a white shirt walks next to the girl and uses a spoon to taste the mixture in the bowl. He then turns to the camera and speaks.",0 634,v_3VjaC7wdMso,What instrument is the girl playing in the video?,v_3VjaC7wdMso_634,The girl is playing the piano by referencing the sheet music in front of her.,0 635,v_cms1BP4eKOA,What drill are the players performing in the video?,v_cms1BP4eKOA_635,"The players are performing a point guard drill where they run around the cone, attack the basket, retrieve the ball back from the rebounder machine under the basket, run to the opposite basket, dribble as they run and attack the basket again. They make a point guard entry pass to attack the basket.",0 636,v_Ivq9_wPFNs4,Who is the woman in the video and what does she do?,v_Ivq9_wPFNs4_636,The woman in the video is Britney Reese. She is seen running and performing a high jump into a sand pit.,0 637,v_dO01vfB9z4g,What does the woman do while the boy is scrubbing dishes?,v_dO01vfB9z4g_637,The woman walks near the boy holding a phone up. She records the boy scrubbing dishes. She picks up a scrubber from the sink and hands it to the boy.,0 638,v_4-KiAur4dI8,What is the event depicted in the video?,v_4-KiAur4dI8_638,"The video depicts the Red Bull CROSSWAYS event where people are seen kayaking, running and cycling through various terrains.",0 639,v_1XNHcfxTqW0,What is the man doing with his harmonica in the beginning of the video and who does he interact with at the end?,v_1XNHcfxTqW0_639,"In the beginning of the video, the man is sitting on a sidewalk and playing a harmonica. At the end of the video, he stops playing and holds his hand out to someone.",0 640,v_AE2gHOwcV14,What type of gymnastics does the girl perform on the balance beam?,v_AE2gHOwcV14_640,"The girl performs a few balancing acts, a front summersault, a handstand, and a balancing act on the balance beam.",0 641,v_bphckj0BV5U,What items does the woman use to start the fire?,v_bphckj0BV5U_641,"The woman uses a green Bic lighter, a box of matches, a carbon knife, and a Ferro rod to start the fire.",0 642,v_E5YBb4rzV30,What does the woman add to the mixing bowl after scooping mayonnaise into it?,v_E5YBb4rzV30_642,The woman adds relish and mustard to the mixing bowl after scooping mayonnaise into it.,0 643,v_dRF1C_sBE5M,What is happening in the part where a man is shown with a bottle of beer near a Dodge truck?,v_dRF1C_sBE5M_643,"The man with the beer removes the cap and throws it to the side. He then opens the back door of the truck, takes a drink of the beer, and places the glass in the back of the open truck. He then walks back to the man trying to dislodge the axe from the log and yanks it out. He then proceeds to strike the log and cut it in two.",0 644,v_H33jSILKmfI,What is the color of the martial arts uniform worn by the boy in the video?,v_H33jSILKmfI_644,The boy in the video is wearing a white martial arts uniform.,0 645,v_JiNcVb97CnA,What is visible on the pedestal in the corner of the room?,v_JiNcVb97CnA_645,A television is visible on the pedestal in the corner of the room.,0 646,v_lIo8HfzzSNs,What ingredients did the chef use to make the dressing for the Russian salad?,v_lIo8HfzzSNs_646,"The chef used cream, mayonnaise, salt, and pepper to make the dressing.",0 647,v_dN8LBey17O8,How did the man measure the length of the grass before adjusting the lawn mowing machine?,v_dN8LBey17O8_647,The man measured the length of the grass using a ruler.,0 648,v_I7slpTgl0jc,What is the man holding in the video?,v_I7slpTgl0jc_648,The man is holding a handle with a hammer attached to it.,0 649,v_ks018ZYzrx4,What is the number on the green dirtbike?,v_ks018ZYzrx4_649,The number on the green dirtbike is 2.,0 650,v_KsFid_YVsn0,What kind of clothing are the boys and girls wearing during the dance?,v_KsFid_YVsn0_650,The girls are wearing black dresses and the boys are wearing red dress shirts and black trousers.,0 651,v_hFpSoRlpyMo,What happens in the video after the batsman hits the ball towards the boundary?,v_hFpSoRlpyMo_651,"A fielder runs towards the ball and prevents it from touching the rope. He falls on the other side of the rope after preventing the ball from touching the rope. The wicket player catches the ball thrown to him and removes the bails from the stumps. The batsman is walking to the nonstriker's end. The players gather around the pitch. One of the umpires appeals the run out to the third umpire. A big screen in the stadium displays the message 'OUT'. In the next clip, the fielding team is huddled in a circle on the field. The batsman is coming onto the field after a break. A closeup of the wicketkeeper is shown.",0 652,v_aOxRwTlkY80,What ingredients are added to the pan with oil by the man in the video?,v_aOxRwTlkY80_652,Garlic and chillies are added to the pan by the man in the video.,0 653,v_4VdS1eN3dv4,What is shown in the final shot of the video?,v_4VdS1eN3dv4_653,The final shot of the video shows several still images of the batsman holding the bat.,0 654,v_EhzHU0gkrzA,What is happening in the video and where is it taking place?,v_EhzHU0gkrzA_654,"In the video, a boy wearing tights is doing gymnastics using a parallel bar in a track field with a blue floor. There are other people visible standing and sitting in various places, and a few people are sitting behind a table a few feet behind the boy. The track and field are lit by overhead lights.",0 655,v_6G8m-vsGTA8,What is the man doing in the video?,v_6G8m-vsGTA8_655,The man is getting his hair cut and recording himself.,0 656,v_kfO5PGlsMJw,What does the first boy do after completing his karate moves?,v_kfO5PGlsMJw_656,"After completing his karate moves, the first boy bows to the audience and exits the stage on the right.",0 657,v_86Unahb4sJM,What makeup did the woman apply first and how did she apply it?,v_86Unahb4sJM_657,The woman applied concealer first and she used her finger to spread it on different areas of her face.,0 658,v_jN2CFk0xKp8,What is the second man doing in the office?,v_jN2CFk0xKp8_658,The second man is wearing a backpack vacuum and speaking to the camera.,0 659,v_JG7T6qtO4jg,What is the name of the break dancing move demonstrated by the boy wearing olive shorts?,v_JG7T6qtO4jg_659,The boy in olive shorts demonstrates the 'Zulu Spin' move in the video.,0 660,v__ja1fre9OTE,What are some of the different poses the gymnast does on the balance beam?,v__ja1fre9OTE_660,"The gymnast does different balance poses along with turns, jumps, and leaps on the balance beam.",0 661,v_82EtiBkAsPg,What kind of lighting is present in the bar while the man is playing the bagpipe?,v_82EtiBkAsPg_661,The bar is not lit completely.,0 662,v_7OcxT66BxX0,What instrument does the man play during the video and how does he involve the audience in his performance?,v_7OcxT66BxX0_662,The man plays a harmonica during the video and involves the audience in his performance by including them while singing. He also plays the harmonica for a few stretches.,0 663,v_aDe5hUB3AdY,What is happening in the first clip of the video?,v_aDe5hUB3AdY_663,The first clip of the video shows three dinghies sailing in the sea with cloudy skies.,0 664,v_5qY9yPt-5Go,What does the boy do after placing the cup of coffee?,v_5qY9yPt-5Go_664,The boy attempts to move the dog away from the cup gently.,0 665,v_hvrKRg166eQ,What events are shown in the video?,v_hvrKRg166eQ_665,"The video shows various events such as people sitting on a couch, a man in a suit speaking to the camera, a teen speaking in a classroom, cheerleaders practicing and performing a routine on a stage. It also shows some girls watching the stage and walking away crying, cheerleaders training, and cheerleaders celebrating.",0 666,v_a_JlhLnJM98,What is the woman showing how to do in the video?,v_a_JlhLnJM98_666,The woman in the video is showing how to iron a men's cotton dress shirt.,0 667,v_9Ufy_JGbnys,What kind of dresses are the couple wearing while dancing?,v_9Ufy_JGbnys_667,The couple are wearing evening dresses.,0 668,v_9eniCub7u60,What kind of shirt is the man wearing in the video?,v_9eniCub7u60_668,The man in the video is wearing a checkered shirt.,0 669,v_k1GP0cJOXbQ,What is the setting of the video?,v_k1GP0cJOXbQ_669,"The video is set outdoors, with trees surrounding a path and featuring a stream and rapids.",0 670,v_7bwruwic1CI,What happens in the first clip of the video?,v_7bwruwic1CI_670,"In the first clip of the video, players wearing orange uniforms and blue helmets are celebrating on a baseball field.",0 671,v_bYxVbXzQToI,What is the setting of the video?,v_bYxVbXzQToI_671,"The video is set in a bar with a raised platform, decorated with Chinese lamps, where a group of people wearing tuxes sit around a table.",0 672,v_hI11n4_r178,Who is the leader in the video and what is he wearing?,v_hI11n4_r178_672,The leader in the video is a man who is wearing a black outfit.,0 673,v_hP-xRyx88aA,What is the woman doing in the outdoor field during the daytime?,v_hP-xRyx88aA_673,The woman is participating in a pole vaulting competition.,0 674,v_HxrtuZSCwvY,What is happening in the video?,v_HxrtuZSCwvY_674,"In the video, a boy holding a violin is playing in a dimly lit living room while people sit around him. He starts playing the violin and continues until the end of the video, when he stops and the people sitting around him applaud.",0 675,v_af05Mqm03Y4,Which player seemed tired towards the end of the game and who won the squash match?,v_af05Mqm03Y4_675,The man in the white T-shirt seemed tired and it is not mentioned who won the match. The video ends with the two men sharing a handshake.,0 676,v_ddzfgHw_qlU,What is the man wearing and what is he doing in the video?,v_ddzfgHw_qlU_676,The man in the video is wearing a grey dress shirt and glasses. He is playing the harmonica in front of a painting until the end of the video.,0 677,v_h_r8gioFi4k,What are the two people in the video doing?,v_h_r8gioFi4k_677,The two people in the video are practicing kickboxing.,0 678,v_EnMS9O1U6E0,What is happening in the video?,v_EnMS9O1U6E0_678,"The video starts with a view from the top of a track and field stadium with an open roof. Spectators are seen filling up the seats. A man wearing blue shorts and a vest with the number tag 2736 is seen slowly jogging in a track and field, running towards a high jump bar. He then jumps over the bar by flipping back and parallel with the bar. Multiple replays of the jump from different angles are shown until the end of the video.",0 679,v_CeXtKbFnPIQ,What does the man do at the beginning of the video?,v_CeXtKbFnPIQ_679,"At the beginning of the video, the man is standing on a tennis court holding a racket and a tennis ball. He throws the ball into the air and hits it towards the other side of the court.",0 680,v_K_ia4VP3w2c,What is the makeup artist doing in the video?,v_K_ia4VP3w2c_680,"The makeup artist is applying makeup on Irina, starting with eyeshadow, then moving to her eyelashes, and finally finishing with lipstick.",0 681,v_IDIALY6Ayk8,Who leads the group of riders?,v_IDIALY6Ayk8_681,The riders are led by a woman wearing a black turtleneck.,0 682,v_ij9czNGMR5I,What is the color of the hoodie the woman is wearing while getting her tongue pierced?,v_ij9czNGMR5I_682,The woman is wearing a grey hoodie while getting her tongue pierced.,0 683,v_jEOtcfk220s,What sporting event is taking place in the gymnasium and which team is wearing the blue uniforms?,v_jEOtcfk220s_683,A women's volleyball match is being played in the gymnasium with the team on the left wearing blue uniforms.,0 684,v_j6OcN4OQZVM,"In the video, how are the dancers dressed?",v_j6OcN4OQZVM_684,The dancers in the video are dressed in black outfits.,0 685,v_bz4QwqHiVlo,What is happening in the first clip of the video?,v_bz4QwqHiVlo_685,"In the first clip of the video, a green screen slideshow with instructions for a test is being shown and then the letter 'A' with a background of stars appears in the next clip.",0 686,v_hPYGgv_75SY,What happens after the woman throws the hammer towards the couple on the blanket?,v_hPYGgv_75SY_686,A hammer attached to a string lands on the blanket they were on.,0 687,v_jWH-2aa1gJY,What is the girl in the video doing?,v_jWH-2aa1gJY_687,"The girl in the video is sitting on a chair, holding a guitar, and listening to music. She is mimicking the guitar notes on her guitar without plucking the strings.",0 688,v_BAtlo_AGFWs,What is Chris Hadfield doing in the first clip of the video?,v_BAtlo_AGFWs_688,"In the first clip of the video, Chris Hadfield can be seen holding a tortilla in his hand and squeezing honey on it.",0 689,v_9lAT3oA9Ixs,What is the man wearing and what is he doing in the video?,v_9lAT3oA9Ixs_689," The man is wearing a blue jacket and blue jeans. He is standing in a wooded area with numerous trees growing nearby and a cabin is visible nearby. He is using an axe to chop wood placed on a tree stump. Wooden logs cut into uniform lengths are piled up behind the man. After he has chopped the current piece, he picks up another wooden block and places it on the tree stump. The video ends with the man coming back to stand over the block.",0 690,v_0rr7iGHamw0,What is Valarie doing in the video?,v_0rr7iGHamw0_690,Valarie is imprinting a design on a t-shirt using iron on transfer.,0 691,v_6utacRir3uM,Who falls down in the video?,v_6utacRir3uM_691,A man wearing a black outfit falls down over his aerobics step.,0 692,v_5cijPqKVc84,What is the location and time of day at the beginning of the video?,v_5cijPqKVc84_692,"At the beginning of the video, the woman in a green outfit is standing in front of kayaks hanging on hangers on a lakeshore during the daytime.",0 693,v_l5ZUUChppHU,What are the contestants wearing and where is the competition taking place?,v_l5ZUUChppHU_693,"The contestants are wearing black vests and light-colored trousers. The competition is taking place outside in an arena during the daytime. People can be seen on seats on either side, and a bridge is seen in the back.",0 694,v_52Xw6TZcysc,What event is the woman attempting to compete in?,v_52Xw6TZcysc_694,The woman is attempting to do a long jump.,0 695,v_l_0HvMt2tGg,What position does the little boy play in the video and can you describe an instance where he scores a point?,v_l_0HvMt2tGg_695,The video follows the little boy as he plays different positions; he is shown scoring a goal or chasing the ball.,0 696,v_1jgsRbGzCls,What activity are the people practicing in the video?,v_1jgsRbGzCls_696,The people in the video are practicing tai chi.,0 697,v_kl-2y3jtPNE,What are the visible features of the cricket field in the video?,v_kl-2y3jtPNE_697,"The cricket field has a pitch surrounded by a grass field. There are two sets of stumps fixed to the ground on either side of the pitch. Trees are present at the outer edge of the ground, and a building with white pillars is visible in the distance.",0 698,v_j_r7zJWxI8w,What is the man on the left wearing and what logo is on his t-shirt?,v_j_r7zJWxI8w_698,The man on the left is wearing a dark blue t-shirt with the logo of Adidas on it.,0 699,v_l_pp-1qu9Ig,What is the woman doing in the video?,v_l_pp-1qu9Ig_699,The woman is wrapping a gift.,0 700,v_8r4bF9RF0Kc,What happens after the batsman hits the ball towards the woods?,v_8r4bF9RF0Kc_700,The batsman and the non-striker start running between the wickets while the fielders try to find the ball.,0 701,v_iUiXNXRs4rU,Can you describe how the man fixed the broken chain on the bike?,v_iUiXNXRs4rU_701,The man fixed the broken chain by attaching a master link on one end of the chain and pulling both sides together until they lock together. He then checked it by pushing on the pedal.,0 702,v_Lf_7RurLgp0,What object does the woman hold up to the camera?,v_Lf_7RurLgp0_702,The woman holds up a soap dispenser for kids to the camera.,0 703,v_34ZxyyFjbHQ,What is the color of the shirt of the boy who missed his shot before the video ended?,v_34ZxyyFjbHQ_703,The boy wearing the red t-shirt missed a shot before the video ended.,0 704,v_Db9VWkgMpbE,What is the woman doing in the beginning of the video and she is wearing what color of top?,v_Db9VWkgMpbE_704,"In the beginning of the video, the woman wearing a green top is seen leaning with her hands on an elliptic bike and is speaking to the camera.",0 705,v_Il9Ara3IqeY,What is the man wearing and what is he playing on the Marble Bridge during the daytime?,v_Il9Ara3IqeY_705,The man is wearing a black polo shirt and a rice hat. He is playing a flute while standing on an elevated section of the Marble Bridge with the Palace Museum in the background.,0 706,v_HkbOI7gEtKk,What is the beautician demonstrating in the video?,v_HkbOI7gEtKk_706,"In the video, the beautician demonstrates how to make a cleansing with baking soda.",0 707,v_cEa87QoI3Do,What are the two men doing in the kitchen and what ingredients are they using?,v_cEa87QoI3Do_707,The two men are making sandwiches in the kitchen. The man wearing the black shirt is spreading peanut butter and jelly on the bread while the man in glasses is using lettuce and ham.,0 708,v_ARpoJIBF2NM,What color shirts are the players wearing on one side of the court?,v_ARpoJIBF2NM_708,The players on one side of the court are wearing teal t-shirts.,0 709,v_H8oehT8eeGc,Who kicks the red ball after it is thrown by one of the boys in the video?,v_H8oehT8eeGc_709,A boy wearing a green shirt runs up to the ball and kicks it.,0 710,v_jQzBXawu29s,What is the man showing in the video?,v_jQzBXawu29s_710,The man is showing how to breathe when playing the flute and uses it to play the flute for a moment.,0 711,v_51faGoLPJgM,What is the boy wearing while chopping the wood in the video?,v_51faGoLPJgM_711,The boy is wearing blue jeans and a sweater.,0 712,v_AB480dHyDeM,What items are placed on the table at the beginning of the video?,v_AB480dHyDeM_712,"At the beginning of the video, a green basin with a bottle of sope, a brush, and a cup of water is placed on the table.",0 713,v_lPw_BRbPw5s,Can you describe the appearance of the man and the woman who are dancing outside in the video?,v_lPw_BRbPw5s_713,"Certainly! The man is wearing a blue T-shirt and a blue cap, while the woman is wearing a brown top and blue jeans.",0 714,v_Kofjs0rkwxc,What ingredients did the chef use to make a turkey sandwich?,v_Kofjs0rkwxc_714,"The chef used sliced turkey, butter, cranberry sauce, and green leaves to make a turkey sandwich.",0 715,v_jiM0HUFn0e8,What activity are the dancers in the video doing?,v_jiM0HUFn0e8_715,The dancers in the video are beginning ballet practice with hand movements.,0 716,v_4oi6dXfpJS4,What is the final pose that the gymnast performs in the video?,v_4oi6dXfpJS4_716,The gymnast ends the routine by performing three backflips and landing on the ground.,0 717,v_4KMG6lEDSIM,What are some examples of fighting and martial arts moves that can be seen in the video?,v_4KMG6lEDSIM_717,"The video shows people in white and red gis fighting each other by exchanging kicks and hits, as well as contestants breaking bricks and performing different martial arts moves on stage. One person wearing a red gi knocks out his opponent, and another wearing a black gi breaks tiles placed on two cinder blocks.",0 718,v_889_kqLFM0E,What is happening in the first clip of the video?,v_889_kqLFM0E_718,"The first clip shows a view from below of a mountain rock climber up on a steep hill, with a clear sky visible and birds circling.",0 719,v_1YU4MSK80cQ,What kind of exercises did the woman perform using the bars in the park?,v_1YU4MSK80cQ_719,"The woman did exercises like swaying, moving back using her hands, doing the split, and swinging using the bars.",0 720,v_IDuoF51IMJ8,Who evades the dodgeball by flipping midair?,v_IDuoF51IMJ8_720,The boy wearing the grey shirt evades the dodgeball by flipping midair.,0 721,v_jkrlHzTRTvo,What are the young boys doing in the video?,v_jkrlHzTRTvo_721,The young boys in the video are getting ready with paintball gear and taking defensive positions with their paintball guns held forward.,0 722,v_dhsSq0K1xEg,What is written on the saxophone case and what is shown under the text?,v_dhsSq0K1xEg_722,The saxophone case is decorated with the words 'GUNS-N-ROSES' and a rose is drawn under the text.,0 723,v_0x6ZV9Y8g_c,What is the woman wearing on her face?,v_0x6ZV9Y8g_c_723,The woman is wearing makeup which the toddler is attempting to wipe away with a cloth.,0 724,v_-IMXSEIabMM,What is the setting of the video?,v_-IMXSEIabMM_724,"The setting of the video is during the daytime outside a house with a red brick facade. Two people start by shoveling snow behind a car parked in front of a closed garage, while a snow-covered plant grows nearby. Later, a man wearing suspenders and sunglasses appears, shoveling snow from a different location. There is also a clip of a doctor talking to the camera inside a clinic wearing a white coat and a stethoscope around his shoulder.",0 725,v_dVpHF8tE2qo,What kind of vest is the man wearing?,v_dVpHF8tE2qo_725,The man is wearing a red vest.,0 726,v_Kic33dtLja8,What kind of dance are the women doing in the video?,v_Kic33dtLja8_726,The women are doing belly dancing.,0 727,v_4mRkWNLE66E,Which player does the red arrow point to in the first clip on the lacrosse field?,v_4mRkWNLE66E_727,The red arrow points to the player wearing the white number 11 jersey.,0 728,v_FOZdNPQ7d5Q,What are the woman and man wearing in the video?,v_FOZdNPQ7d5Q_728,"The man is wearing a black beanie cap, a chain, and blue jeans while the woman is wearing a purple-colored check shirt with blue jeans and a pair of black gloves.",0 729,v_BSwChZlOb0k,What caused the man standing near the table to catch fire?,v_BSwChZlOb0k_729,The alcohol spilled on the table and caught fire when the flaming shot glass was thrown onto it. The man standing near the table caught fire along with it.,0 730,v_cqxiLraI8uY,What kind of equipment can be seen fixed to the wall in the gym?,v_cqxiLraI8uY_730,The gym has equipment fixed to the wall.,0 731,v_d6PdD2O3Yrs,What is the boy wearing in the video?,v_d6PdD2O3Yrs_731,The boy in the video is wearing black tights.,0 732,v_3V9tzjyr51I,What is the man doing in the video?,v_3V9tzjyr51I_732,The man holding a racquet is throwing the ball in the air and hitting it towards the other end of the court.,0 733,v_di5f5hM05Vw,What type of movements is the man performing in the video?,v_di5f5hM05Vw_733,The man is practicing Tai Chi movements in the indoor studio.,0 734,v_JN1wuOpCZvk,What are the men wearing in the room?,v_JN1wuOpCZvk_734,"The men are wearing black briefs, with one wearing a grey sweatshirt and the other wearing a white vest.",0 735,v_JH9qiuPCkY4,What is the purpose of the video?,v_JH9qiuPCkY4_735,The purpose of the video is to teach different techniques of riding dirt bikes on different surfaces through a lesson.,0 736,v_aQ-F9wr0HQ4,What is the product being advertised in the video?,v_aQ-F9wr0HQ4_736,The product being advertised in the video is 'Favor'.,0 737,v_0UTrTg3DF5g,What are the different ingredients that Pinky uses to make the drink?,v_0UTrTg3DF5g_737,"Pinky mixes different ingredients into a tall glass including ice cubes. She then finishes the drink by adding cucumber, a slice of lime, lemon and a basal leaf.",0 738,v_Ie09KEAPP2I,Who is walking with the little boy in the video?,v_Ie09KEAPP2I_738,The man is holding hands with the little boy.,0 739,v_Jdu5AqaWfz8,Who is belaying the bungee cord in the video?,v_Jdu5AqaWfz8_739,One of the attendants wearing a green shirt is belaying the bungee cord in the video. He walks back and out of frame after the jumper jumps off the platform.,0 740,v_Erje-PwY9hE,What can be seen on the opposite shore of the river in the video?,v_Erje-PwY9hE_740,Thick tree cover can be seen on the opposite shore of the river.,0 741,v_HgYuRKZ_V90,What is the color of the uniform worn by the team that the player in the blue number 1 uniform is playing against? ,v_HgYuRKZ_V90_741,The team playing against the player in blue number 1 uniform is wearing a white uniform.,0 742,v__jV5sAOOHLk,What task is the man performing in the beginning of the video?,v__jV5sAOOHLk_742,The man is riding a bicycle on a path.,0 743,v_JDwd6Ec454A,What is the color of the rabbit in the video?,v_JDwd6Ec454A_743,The rabbit has a reddish coat with dark brown highlights.,0 744,v_34SBoGK8mT8,What is the girl doing and where does she go in the beginning of the video?,v_34SBoGK8mT8_744,The girl runs towards the camera and goes to the hopscotch court drawn on the ground behind her.,0 745,v_fNhw7xE3NM8,What is the color and style of the clothing that one of the girls is wearing while having her hair curled?,v_fNhw7xE3NM8_745,One of the girls is wearing a white sweatshirt and glasses while having her hair curled.,0 746,v_83f0iwb8VW8,Who is walking across the camera? ,v_83f0iwb8VW8_746,A man in a red t-shirt is walking across the camera. He appears to be instructing the boxers.,0 747,v_Lb7Q8qv3MHU,What does the girl do after she spits the mouthwash?,v_Lb7Q8qv3MHU_747,"After spitting the mouthwash, the girl begins beatboxing.",0 748,v_7dXqXFoju2M,What is the woman doing in the beginning of the video?,v_7dXqXFoju2M_748,"The woman is standing in a dimly lit bathroom with a drinking glass in one hand and a cigarette in the other, and looking at herself in the mirror.",0 749,v_A20uQSBtYMs,What musical instruments were being played in the video?,v_A20uQSBtYMs_749,"The group of people were playing saxophones, and there was a man playing the piano. Additionally, there was a man playing guitar.",0 750,v_9InwA-ajB2M,What is the man in the orange shirt doing in the video?,v_9InwA-ajB2M_750,The man in the orange shirt is standing in the middle of the ranch enclosure and looking at the woman riding the horse.,0 751,v_2nDbYhgdw2A,What types of dance moves do the dancers perform in the video?,v_2nDbYhgdw2A_751,"The video features breakdancing, specifically the backspin and moonwalk, as well as various types of dancing by different children.",0 752,v_eRco7yXc-40,What type of dive does the person perform?,v_eRco7yXc-40_752,The person performs a reverse somersault dive.,0 753,v_IGZvj1J9tNc,What is the drill performed by the players in the video?,v_IGZvj1J9tNc_753,"The players are performing a drill where three of them run across the court, while the one in the middle dribbles the ball all the way and finally shoots the ball in the basket. Once they reach the basket, the girl with the basketball attempts to shoot the ball into the basket, while the other two turn around to block her.",0 754,v_49PbyLbrxlE,What color top is the woman wearing in the video?,v_49PbyLbrxlE_754,The woman is wearing a blue top.,0 755,v_4QRRxub6L5Q,How many girls are present in the video?,v_4QRRxub6L5Q_755,"There are two girls present in the video. One girl is on the foam platform, doing backflips, while the other is sitting and watching to the side.",0 756,v_0DFz3sgfda0,What are some of the ingredients that the girls put in the salad in the video?,v_0DFz3sgfda0_756,"Some of the ingredients that the girls put in the salad in the video include lettuce, tomatoes, cabbage, and peanuts. They also added oil and salt to the salad.",0 757,v_cCDffwsJvsY,How does the person ignite the fire in the video?,v_cCDffwsJvsY_757,The person holds a piece of chips and lights it like kindling to the camera and lights it on fire using a Bic lighter. They then place it on the arranged firewood.,0 758,v_11p9goB2rm8,Can you describe the actions of the two boys who tried to do a pull-up from the basketball hoop?,v_11p9goB2rm8_758,"Yes, the two boys ran towards a basketball hoop and attempted to do a pull-up from the basket. They were able to jump and pull themselves once from the basket before jumping down and running few feet away from the basketball hoop.",0 759,v_4Gx_8vuxzAk,What is the woman doing in the video?,v_4Gx_8vuxzAk_759,The woman is standing in a living room and using a towel to wipe wood polish on a coffee table. She is explaining how to fill cracks in the table.,0 760,v_HMs703DhjQU,What is happening in the video?,v_HMs703DhjQU_760,"Two men are speaking in the kitchen and leaning on the kitchen counter. Will Smith, the actor wearing a multi-colored shirt, removes sunglasses from his pocket and starts playing the harmonica while singing in between. The video ends with Will Smith stopping playing and looking to his right.",0 761,v_Jy93pLzV2uw,Who starts the game and what color is their uniform?,v_Jy93pLzV2uw_761,The team wearing the yellow uniform starts the game.,0 762,v_6wPVO7I8iIY,What does the bartender do before placing various bottles of alcohol near him?,v_6wPVO7I8iIY_762,The bartender inspects a glass and places it on the bar. He then places a few limes next to the lemons.,0 763,v_Fb4X1PWfOvY,What is the woman wearing while she exercises on parallel bars in the park?,v_Fb4X1PWfOvY_763,"The woman is wearing a neon green T-shirt, black track pants with white stripes, white sports shoes, glasses, and a ring on her left hand.",0 764,v_IfugNwywj-k,What are the old man and the woman doing in the video?,v_IfugNwywj-k_764,"In the video, the old man is repairing a bicycle in a well-lit shop. The woman wearing a pink top enters the shop, and they start to converse while checking the working of the bike.",0 765,v_dZsk5Dp_5FE,What is the boy wearing while chopping the log in the video?,v_dZsk5Dp_5FE_765,The boy is wearing an off-white T-shirt and shorts.,0 766,v_AL1W3HkjJ2Y,What is the woman doing in the video?,v_AL1W3HkjJ2Y_766,The woman in the video is shooting arrows with a bow towards a makeshift target made of sheets hung near the basketball hoop.,0 767,v_j_1kNiGcepU,What is the man wearing and doing at the beginning of the video?,v_j_1kNiGcepU_767,The man is wearing a checkered shirt and a backpack. He is speaking and playing the harmonica.,0 768,v_le7JdKQB65I,What items are on the table in front of the woman at the beginning of the video?,v_le7JdKQB65I_768,Tubes and bottles of makeup are on the table in front of the woman.,0 769,v_-6dz6tBH77I,What was the man holding in his right hand?,v_-6dz6tBH77I_769,The man was holding a disk in his right hand.,0 770,v_BnO8AfQS8yE,What happened at the end of the video?,v_BnO8AfQS8yE_770,"The video ended when the man in the yellow shirt looked up to the cameraman after missing his shot, and the other player knelt down to tie his shoes.",0 771,v_CvbBSwz-9XI,What is happening in the beginning of the video?,v_CvbBSwz-9XI_771,"In the beginning of the video, a dog is standing under an open tap and water is splashing on its back. A blue bucket is placed near the dog. A man wearing shorts is kneeling in front of the dog.Both are by a wall on the outside during the day.",0 772,v_-cAcA8dO7kA,What caused the biker to crash in the dirt field?,v_-cAcA8dO7kA_772,"The biker tried to jump over a slight elevation in the middle of the field, but he landed with the front wheel first and crashed.",0 773,v_9snScUyE8_4,What is the woman doing in the video?,v_9snScUyE8_4_773,The woman is standing in front of a sink and washing the dishes.,0 774,v_96ADEnJy4GU,What is happening in the first clip of the video?,v_96ADEnJy4GU_774,"In the first clip of the video, a man is washing his hands in a sink while standing in front of a mirror. Only his hands are visible and there are toiletries placed on the right side of the sink.",0 775,v_-D1gdv_gQyw,What is the man lighting on fire in the video?,v_-D1gdv_gQyw_775,The man is lighting a stack of firewood on fire using a knife and a fire starter.,0 776,v__a527xEzhkw,What is the girl wearing and what is behind her?,v__a527xEzhkw_776,"The girl is wearing a grey shirt and glasses, and there is a bookshelf behind her with a few empty shelves. ",0 777,v_cH3H-arDsH4,What happens at the beginning of the video?,v_cH3H-arDsH4_777,"At the beginning of the video, a game of water polo is being played in a swimming pool with people playing and others sitting behind a table on the poolside.",0 778,v_hvhny4-sI-w,What are the two teams wearing during the polo match?,v_hvhny4-sI-w_778,The two teams are wearing white and red polo shirts.,0 779,v_d09u-0k3LdE,What is the woman holding and what does she do with it in the video?,v_d09u-0k3LdE_779,"The woman is holding a hammer attached to a string. In the video, she swings with the string and spins a few times before releasing the hammer through the open end of the netting.",0 780,v_B0GCHDqEsRU,Who else is visible in the video besides the couple dancing?,v_B0GCHDqEsRU_780,Other people standing to the side are visible in the video.,0 781,v_aH39BSM0-Ag,Who is Samuel Shearin in the video and what is his jersey number?,v_aH39BSM0-Ag_781,Samuel Shearin is a lacrosse player who is wearing a blue-green jersey with the number 24.,0 782,v_iqhdqhVttEM,What type of class is the man teaching in the video?,v_iqhdqhVttEM_782,The man is conducting a Zumba class.,0 783,v_cECycCDw1Nc,What ingredients are shown in the slideshow?,v_cECycCDw1Nc_783,"The slideshow displays pictures of an oven, a baking sheet, a French roll, a pack of pepperoni, a bottle of mayonnaise, slices of cheese on a plate, sliced tomato, and shredded lettuce on a plate.",0 784,v_egowZOcbEkI,Who is standing on the basketball court with a basketball in hand in the video?,v_egowZOcbEkI_784,An instructor wearing a white shirt and green shorts is standing on the basketball court with a basketball in the crook of his left hand.,0 785,v_HURRgbZGz8Q,"What is the object being thrown in the video, and what do the athletes do?",v_HURRgbZGz8Q_785,"The athletes are participating in a spear-throw competition, where they run and throw spears. The landing of the spears is shown, and there are lanes marked with numbers at their heads in the landing area. Additionally, the camera follows the thrown spear to its destination and the athletes' names and throw distances are recorded on a scoreboard at the end of the video.",0 786,v_afMQA352X_A,What is the trainer doing during the sparring practice?,v_afMQA352X_A_786,"During the sparring practice, the trainer is wearing focus mitts on both hands and guiding the student, practicing punches and deflecting punches and dodging kicks.",0 787,v_l8gg9TYh_B0,What are the people doing in the video behind the news anchors?,v_l8gg9TYh_B0_787,A cutaway of two men shoveling snow is shown.,0 788,v_Ds2O0-8Labs,What is the maximum weight of the barbell that the man lifts in the video and what does he do with it?,v_Ds2O0-8Labs_788,"In the end, the man lifts a barbell weighing 130 kilograms and drops it after lifting it above his head.",0 789,v_k1QAWLupB-I,Who is playing ping pong in the video and what are they holding?,v_k1QAWLupB-I_789,Three men and a woman are playing ping pong in the video. They are holding an old spice-branded ping pong paddle.,0 790,v_9UvVeUYQLgA,What kind of objects are used by people as hideouts in the arena?,v_9UvVeUYQLgA_790,People are hiding behind cable drums and stacked tires to duck and shoot other players.,0 791,v_dEpUIpmBvow,What equipment is being used by the climbers in the video?,v_dEpUIpmBvow_791,"In the video, the man climbing is free climbing the rock face without any apparent equipment, but a rope is visible to his left, indicating that he may be using it later for safety. The other man at the bottom is belaying the rope to make sure the climber does not fall.",0 792,v_EZyLBq2jJtE,What is Bethany wearing in the video?,v_EZyLBq2jJtE_792,"Bethany is wearing a red T-shirt, black & purple short track pants, white sports shoes, rings on both her hands, and a bracelet on her left hand.",0 793,v_2fzIi1lPd8U,What happens at the beginning of the video and who is involved?,v_2fzIi1lPd8U_793,"At the beginning of the video, two kids and an elderly woman can be seen playing. One of the kids is a little girl standing on the side of a porch, while a little boy wearing a red shirt is a few feet away. The woman holds her hands in front of her, first to the girl and to the boy.",0 794,v_C7yd6yEkxXE,What is the direction of the riders' turn after they clear the second ramp?,v_C7yd6yEkxXE_794,The riders are visible turning left after they clear the second ramp.,0 795,v_IN23CO8Kotk,What is the color of the coffee cup?,v_IN23CO8Kotk_795,The coffee cup is mostly pink with a butterfly painted on it.,0 796,v_BFChXuwZ4wo,What is the tattoo artist wearing and what equipment and pictures can be seen in the tattoo parlor?,v_BFChXuwZ4wo_796,The tattoo artist is wearing a white t-shirt and glasses. Various equipment and pictures are displayed on the wall of the tattoo parlor.,0 797,v_9k19UUJtldg,Where does the ping pong competition take place?,v_9k19UUJtldg_797,The ping pong competition takes place where multiple tables are arranged next to each other with dividers in between.,0 798,v_hFi6S_guB7I,What happens in the video?,v_hFi6S_guB7I_798,"In the video, a group of five women wearing different colored belly-dancing outfits enter the stage from the right and stand with facing away from the audience while holding their right hands up. As the music starts, they slowly turn around and start belly dancing. They continue dancing until the music slows down and they turn around once again, holding up their right hands in the air.",0 799,v_18yZR3NDaXM,What are the main events in the video?,v_18yZR3NDaXM_799,A man is playing kickball and there are shots of the game and the players from various angles. The video ends with a man in a darkened room speaking into the camera.,0 800,v_BjjN_aq_wq4,What is happening in the video?,v_BjjN_aq_wq4_800,"In the video, a woman and a young girl can be seen cleaning dishes in a kitchen sink with soap and water. The woman starts by scrubbing the dishes, and the young girl later joins in, holding up a handful of suds.",0 801,v_DJTvj9lfSWU,Can you describe the actions of the man and woman in the video?,v_DJTvj9lfSWU_801,"In the video, a man in a grey hoodie and a woman in an apron can be seen entering and quickly exiting a bathroom while laughing. The woman is carrying a bucket. Later, the man is seen on a rooftop shaving his leg while the woman records him with a microphone. The video ends with the man walking out holding the bucket.",0 802,v_0BtHd6dvm78,What is happening in the video?,v_0BtHd6dvm78_802,"In the video, a man wearing a white hoodie is standing in a kitchen washing dishes, specifically a tea strainer. He is chatting and laughing with the cameraman while doing so. There are kitchen implements such as a coffee machine and cupboards behind him, and a microwave oven is mounted on one of the cupboards. Sunlight is streaming through a window in front of him, and there is a potted plant on the window sill.",0 803,v_dKJMP8EmZjw,What are some activities shown in the video?,v_dKJMP8EmZjw_803,"The video shows various scenes of dinghies sailing fast on the water, with sailors maneuvering them. The sailors are wearing red wetsuits and can be seen sitting on the hull side of the boats, as well as moving around to maneuver the dinghies. In one scene, a man is shown holding a thumbs-up sign while sitting on the boat. The video ends with the man with red sails leaning flat on his dinghy and maneuvering it.",0 804,v_kGdxtU3NwWo,What is happening in the video?,v_kGdxtU3NwWo_804,"In the video, a man polishes his shoe while sitting behind a wooden desk, using a clear liquid and a cloth. He had a shoe placed on a black desk mat and a laptop visible to the right of him.",0 805,v_b4xvXZq5uD8,Can you describe what happens throughout this video?,v_b4xvXZq5uD8_805,"The video shows a man getting a haircut in his kitchen while others walk in and out of shot. Another person takes over the haircutting. Afterwards, a chocolate cake is brought out and the group sings while the man who got the haircut has his face smeared with cake.",0 806,v_aLb79wtvxoQ,What are the steps the woman takes to clean the dishes in the video?,v_aLb79wtvxoQ_806,"The woman in the video starts by pouring soap into a dirty pot filled with water. She then scrubs the dirty pots using a scrubber and places the clean ones next to the sink along with the washed ladle. She continues to wash various dishes, rinse them and place them next to the sink. Afterward, she dries the dishes using a few pull of kitchen towels and hangs them to a hook at the top. Finally, she drains the sink and wipes its surroundings using a kitchen towel.",0 807,v_KlgrI3Ngwv0,Can you describe the gymnastics routine performed in the video?,v_KlgrI3Ngwv0_807,"In the video, an athlete wearing a blue outfit performs an artistic gymnastics routine on a well-lit stage on a pommel horse. He starts by gripping the handles and doing a circle around the pommel horse. He follows up with scissors and a handstand. Then, he does a routine where he does a circle by moving the length of the pommel horse and finishes up by doing a handstand and an upside-down split before jumping off the pommel horse and turning to the spectators.",0 808,v_jN-jnIgzd6k,Can you describe the scene in the video with the instructor and children?,v_jN-jnIgzd6k_808,"The video shows a group of children in karate uniforms doing drills on a carpeted floor. An instructor walks into the frame and the children do different stances, punch and kick drills and other movements. Some children have difficulty with the drills, and the video ends with all the students turning towards the teacher.",0 809,v_araMJB23T1s,What happens in the video?,v_araMJB23T1s_809,"The video shows a few people standing on a bungee platform and jumping off while strapped to a bungee cord. We see a countdown before each jump, and the camera shows us the view of the stream at the bottom and the misty hills in the background from the platform.",0 810,v_dW6OZV43ulU,What are the steps involved in cleaning a leather sofa as shown in the video?,v_dW6OZV43ulU_810,"The video shows a man using a foam cleaner and towel to clean the surface of the sofa, sanding rough surfaces using a scrub pad, applying color refresh liquid to the sofa using a sponge, drying the surface using a hair drier, and finally applying a UV protection liquid to the sofa.",0 811,v_JcAAwYpJhm8,Can you describe the actions of the little girl in the video?,v_JcAAwYpJhm8_811,"The little girl is shown washing several dishes in the kitchen sink, including a glass, a spoon, a pot, a plate with Dora the Explorer on it, and a plastic jar. The woman wearing a white t-shirt helps her with washing utensils, and she hands her more dishes to wash as she finishes washing the previous dish.",0 812,v_aYxni8ohTfU,What is the video about and can you provide a brief summary of the volleyball matches that were played in it?,v_aYxni8ohTfU_812,"The video shows beach volleyball matches between various teams including Italy, Latvia, and Brazil. It starts with a man serving a volleyball and then shows different exchanges between the teams. Latvia wins against Germany and Italy plays against Brazil where Brazil wins. Finally, the video ends with Latvia winning.",0 813,v_6Xsfwn5M6qs,What is happening in the video?,v_6Xsfwn5M6qs_813,"A man is performing various gymnastics maneuvers on the parallel bar in a gym, including handstands, swinging routines, and attempted backflips while other people are visible in the background.",0 814,v_CecqF_uHeOI,What actions does the man in the video perform?,v_CecqF_uHeOI_814,"The man in the video is seen cleaning a glass door made of wood frame. He initially wipes the door using a wiper and later sprays cleaning fluid on it before wiping it clean with a blue towel. He is dressed in a dark blue shirt and khaki pants. In the end, the man kneels down to clean the lower part of the glass door.",0 815,v_7-taNK5mW8E,Can you describe the scene in the video?,v_7-taNK5mW8E_815,"The video shows women playing water polo in slow motion. The shot starts from underwater and shows several people kicking their legs. One woman can be seen losing the ball as she dunks into the water. A shot from above the water shows two people swimming in place in search of the ball. One player is pushed from behind before reaching the ball, and the ball is taken by the person who pushed the player down. There are also other players visible on either side of the first two players.",0 816,v_IcR28Yqt4mY,What happens in the wood-chopping competition shown in the video?,v_IcR28Yqt4mY_816,"The video shows four men wearing blue polo shirts and white trousers competing in a wood-chopping competition. They are standing on blocks of wood and holding axes in their hands. One contestant, Lawrence O'Toole, is declared the winner after he chops his wooden block completely and steps away. The video ends with the winner securing his axe.",0 817,v_B3xMfP_UOt4,Can you describe the main events in the video?,v_B3xMfP_UOt4_817,"The video shows a man named Ukhov preparing and successfully performing a high jump in an outdoor stadium with spectators. There is a short clip of a man in the stands watching the jump, and the video ends with a replay of the jump.",0 818,v_4XnXyKYxnQQ,What does the video show?,v_4XnXyKYxnQQ_818,"The video shows a ship in the sea, that is dangerously tilted to the left like it is about to capsize. There is a hill visible in the distance at the shore. All its sails are deployed. Another group of people is seen headed towards the ship in a motorboat. Lastly, the video ends with the camera panning all the way around the motorboat.",0 819,v_hq48S65dlyo,Can you describe the scene in the video and what the people are doing?,v_hq48S65dlyo_819,"The video shows a woman wearing boxing gloves and a black outfit practicing her punches and kicks on a man wearing punch mitts, kick pads, and focus pads. The man also switches roles and practices punching and kicking on the same equipment.",0 820,v_gWbIoFrpwTY,What are the different scenes shown in the video?,v_gWbIoFrpwTY_820,"The video shows a little boy skateboarding in a parking lot, on a sidewalk, through a tunnel, in a skateboarding park, and on various ramps. He wears protective gear like a helmet, kneepads, and elbow guards. There are instances where he falls down while skating. In the end, he is seen skating on a sidewalk and smiling at passersby.",0 821,v_eoSwoeLmeyQ,Can you describe the setting and outfits of the people in the video?,v_eoSwoeLmeyQ_821,"In the video, there is a well-lit wooden dance floor where couples are seen salsa dancing. The men wore a piece of paper on their back with their respective numbers. The man wearing a purple dress shirt was dancing to the left with the number three. A person holding a mobile phone can be seen to the left of the camera recording the event.",0 822,v_1d_U_2HIPmY,Can you describe what happens in the video?,v_1d_U_2HIPmY_822,The video shows a man standing on a circular platform in a field surrounded by a cage. He swings a hammer attached to a grip by a cable around his body a few times before releasing it through the open side of the cage. The hammer lands quite a distance away while people off-screen applaud.,0 823,v_Hz7-mBFGsSs,What happens in the video at the hair salon?,v_Hz7-mBFGsSs_823,"The video shows a girl crying while getting her hair cut in a well-lit salon. Another woman tries to comfort her by offering lollies, but the girl refuses. The barber cuts her hair with a comb and scissors while the girl continues to cry. The woman sprays water on her hair and moves to the back to cut it. The video ends with the woman doing touch-up cuts and combing the girl's hair.",0 824,v_B_U7vUtoCKY,What is the video about?,v_B_U7vUtoCKY_824,"The video features a lacrosse game where two teams are playing and spectators sit on lawn chairs outside the area. It specifically follows Cole Flowler, who wears a white jersey, as he tries to check the ball from other team members. The video ends with him running and avoiding a player from the opposite team.",0 825,v_7pfHxav4b0U,What does the woman in the video do and what instructions does she give?,v_7pfHxav4b0U_825,"In the video, the woman is seen kayaking down a rapid river in an orange kayak while wearing a life vest and a white helmet. She is surrounded by trees on either side of the banks. Once she reaches an eddy, she turns and stops her kayak and begins instructing on how to make turns while rowing. The video ends after she finishes giving her instructions.",0 826,v_htzAYwoAZkg,What is happening in the video?,v_htzAYwoAZkg_826,"In the video, a man wearing a black polo shirt is speaking to the camera in a well-lit gym. A woman wearing a grey top is standing next to him and they are behind a resistance trainer. The woman climbs the machine and starts pedaling while the man speaks into the camera. Other exercise equipment and a window can be seen in the gym. The woman adjusts the settings on the resistance machine and continues peddling while the man picks up a book and talks until the end of the video.",0 827,v_ijrjRNwZjqQ,Can you describe the main events that occurred in the video?,v_ijrjRNwZjqQ_827,"The video features Kevin Spacey and Rafael Nadal on stage wearing tuxedos. They engage in a game of ping pong after a brief conversation and are provided with a table, paddles, and ping pong balls by three people wearing white hats. They play three games in total, with Kevin Spacey winning the last game. The video ends with a woman placing a garland on Kevin Spacey.",0 828,v_IhmtmKxEU40,Can you describe the scenes captured in the video starting with the windsurfers?,v_IhmtmKxEU40_828,"The video shows people windsurfing during the day against the waves. A boy in an orange and black wetsuit can be seen on his windsurfing board. Different colored marker buoys are visible in the vicinity of the windsurfers. A person in a white motorboat is seen moving among the surfers. The camera then focuses on a few windsurfers while they are surfing. In the following clips, a woman behind a sailboat is assembling her sailboard, and another woman is seen climbing back onto her sailboard after falling into the water. Finally, the video shows more shots of people windsurfing with a large ship visible in the far back and other structures visible near the horizon like a smoke stack of a power plant.",0 829,v_3zpODTqnYLs,What are the main events that happened in the video?,v_3zpODTqnYLs_829,"In the video, a man is sitting by a pool with a toddler on the wall. The toddler washes her face with water as the man holds onto her. Another boy walks over and the toddler washes her face again. There is a person wearing a green swim cap who is swimming behind the man. The video ends with the toddler trying to stand and immediately sitting back down.",0 830,v_1KONAdZGdWU,What is happening in the video and where does it take place?,v_1KONAdZGdWU_830,"The video starts with a girl sitting on a carpeted floor in a dimly lit room. She is wearing a blue T-shirt and shaving her left leg while occasionally talking to the camera person. Other people can be seen sitting on a sofa in the background, watching a screen to the left. Throughout the video, the girl converses with various people while continuing to shave. In the end, she gets up and walks away while the others continue lounging in the room.",0 831,v_DIhyfNJAm-M,Can you describe the setting of the performance shown in the video?,v_DIhyfNJAm-M_831,"In the video, a man in a black suit and white shirt is seen playing the saxophone on stage with a set of stairs in front of him. The stage has a blue-curtained background, and backing musicians can be seen further back from him playing various instruments. The audience is visible sitting a few feet from the staircase, and the auditorium appears to be full.",0 832,v_K6QunmuTZOQ,What is happening in the video?,v_K6QunmuTZOQ_832,"The video shows a woman in a small gym practicing the movement patterns of weightlifting without weights, and later lifting a barbell with red colored weights by following the same patterns.",0 833,v_l7qSKJyq6mA,What is happening in the video?,v_l7qSKJyq6mA_833,"The video shows a man ironing a dress shirt on an ironing stand in a well-lit room. He irons the shirt one section at a time and finishes both sides, then puts it over a clothes hanger. He repeats the process for a small portion and hangs the shirt among other ironed shirts.",0 834,v_2VZumBKJuPs,Can you summarize what happens in the video?,v_2VZumBKJuPs_834,"In the video, a woman gets her belly button pierced by a man wearing black gloves. The man uses a needle piercer to insert the piercing and then secures it with jewelry by screwing on a ball. Both the man's hands are tattooed and the woman can be seen talking to the person behind the camera.",0 835,v_7EeO9V2B574,What are the women doing in the video and where are they dancing?,v_7EeO9V2B574_835,The video shows four women dancing with synchronized moves under the shadow of a tree. They are dancing to music during the daytime.,0 836,v_IgDBDaIoNAM,What is happening in the video?,v_IgDBDaIoNAM_836,"In the video, a man and a woman dressed like characters from the street fighter game are fighting each other under an overpass during the daytime. They are standing in the shadow of the overpass while taking a fighting pose. They eventually move away from under the overpass and continue the fight on a path next to a green field, and in the end, they again take a fighting stance under the underpass.",0 837,v_325CAs4hhq8,What is happening in the video?,v_325CAs4hhq8_837,"The video shows players in orange uniforms playing field hockey on a hockey field, with several clips of girls from other teams being introduced, players being instructed, players being interviewed, and a coach providing instructions. The video ends with a goal being scored by a player in an orange uniform during a match between two teams.",0 838,v_CTJej0rZMiI,What happens in the video with the man and the accordion?,v_CTJej0rZMiI_838,"In the video, a man wearing a grey shirt is seen sitting in a dimly lit room with an accordion strapped to him. Next to him is a wall with a bookshelf in view, and framed Spanish sayings hung on the walls. The man speaks briefly before starting to play the accordion. The video ends as he finishes playing.",0 839,v_CTyvQHkAKuY,Can you describe what is happening in the video?,v_CTyvQHkAKuY_839,"In the video, a man wearing an olive suit is playing the piano while people stand along the walls of the hall listening to him. As he plays, a woman wearing a scarf walks up to him and speaks to him briefly. Then, the woman begins to sing and a man in a black jacket is dancing near the far wall, while a man in a red t-shirt holds a coffee cup near the woman. As they finish, the man gets up and hugs the woman.",0 840,v_3M290KZV5lo,What happens in the video?,v_3M290KZV5lo_840,"The video shows a girl performing a routine on a balance beam in a well-lit gymnasium. There are judges and spectators present, and the routine involves backflips, jumps, balancing, and skips on the beam. The girl finishes with a front flip off the beam and lands on the ground. Another contestant gets up after her performance, and people can be seen clapping.",0 841,v_itXYuf_Cj_Q,What happens in the video?,v_itXYuf_Cj_Q_841,"The video shows a man using a banana peel to clean a black dress shoe that is resting on his thighs. He wipes all sides of the shoe and holds it to the camera, before throwing the used peel to the side. The video ends with an advertisement for a shoe polish.",0 842,v_JspVuT6rsLA,Can you describe what happens in the video?,v_JspVuT6rsLA_842,"In the video, a little boy plays the violin in a well-lit room with two pianos at his back while a woman sits in front of one piano. The woman plays the piano while the boy finishes his performance with the last three notes played forcefully.",0 843,v_cPIsE2ZCWzM,What is happening in the video?,v_cPIsE2ZCWzM_843,"In the video, a polo game is going on at a field during the daytime. Players are seen striking the ball with their mallets while spectators are watching and walking down the stairs. The game continues with players riding and striking the ball throughout the field until one team wins and is seen holding up a cup with the banner ""The Barbour Cup"".",0 844,v_IL8__uSFpqg,What is shown in the video?,v_IL8__uSFpqg_844,"In the video, a man is seen tinkering with a bicycle by removing and reattaching the crankset after wiping the grease off both the crankset and the bottom bracket using a paper towel. The video ends by showing the man testing the pedal.",0 845,v_JguRZtFN-Ck,What does the woman do in the video?,v_JguRZtFN-Ck_845,"The video shows a woman playing squash in an empty room. She strikes the ball against different sections of the walls and follows its bounces back. After few strikes, she walks back to the middle of the court and stops.",0 846,v_cFOaL4Ir4hg,What happens in the video?,v_cFOaL4Ir4hg_846,The video shows people diving and performing various flips from different diving boards at a swimming pool. The video ends with a man diving horizontally into the pool.,0 847,v_BdRH3lpopLQ,What happens in the volleyball game between USC and BYU?,v_BdRH3lpopLQ_847,"In the game between USC and BYU, USC wins after the other team celebrates prematurely and the ball lands by them, causing them to lose the game. Spectators are visible in the seating area with the seats filled and a scoreboard visible high up. There is also balcony seating which appears full.",0 848,v_JHKAcpYlxkQ,What is happening in the video?,v_JHKAcpYlxkQ_848,"In the video, a woman tennis player can be seen practicing her serve on an outdoor tennis court. She is hitting the tennis ball towards the opposite black wall. A man is also visible on the court. The surroundings include a parked truck, trees, and a street.",0 849,v_1xBdquA6dx8,What is happening in the video on the hockey field?,v_1xBdquA6dx8_849,"The video shows two teams of girls playing hockey, one wearing blue jerseys and the other wearing green jerseys, and one of the girls in the blue team with the number ten jersey is followed as she moves towards the goal and manages to score despite being intercepted by a player from the opposing team wearing a number nineteen jersey.",0 850,v_kdOsmDACtqw,What happens in the video?,v_kdOsmDACtqw_850,"The video features a man wearing a white t-shirt and a backward-turned cap who speaks to the crowd and then dances with another person. A man wearing a black outfit also breakdances on a white sheet placed on the ground. Additionally, there are some people who talk to the camera.",0 851,v_kIFHChO_-vg,What happens in the video with the toddler?,v_kIFHChO_-vg_851,"The video starts with a toddler sitting on a vanity table filled with makeup products and hair rollers. A hair straightener is plugged in and the room is well-lit. The toddler listens to her mother and then her hair rollers are removed, fluffed by her mother and she admires her hair in the mirror before the video ends.",0 852,v_5P9Tbut04xE,Can you explain the steps for playing an octave on a harmonica as shown in the tutorial video?,v_5P9Tbut04xE_852,"The video demonstrates how to produce an octave sound on a harmonica by using different holes. The presenter also explains how to position the harmonica near the mouth and how to blow to get the desired sound. In the end, he successfully plays an octave and double notes on the harmonica.",0 853,v_7gaC3b5nJqs,What is happening in the video?,v_7gaC3b5nJqs_853,"Three women in gym clothes are dancing choreographed moves to music in a studio with mirrors, yellow lights, and punching bags hanging from the ceiling. They dance in a triangle formation and use their hands while moving left and right. The lead dancer walks up to the camera as the music stops.",0 854,v_15yU0R2MBQM,What is shown in the video?,v_15yU0R2MBQM_854,The video shows a girl brushing her teeth with a blue toothbrush in a room with a green wall and a painting of flowers. She smiles as she brushes and removes the brush with toothpaste visible in her mouth.,0 855,v_kgz7c2kb4Rg,What does the woman in the video demonstrate?,v_kgz7c2kb4Rg_855,The woman in the video demonstrates how to use a kayak paddle to turn the kayak.,0 856,v_0k0xNs8Zjb4,Can you describe the gymnastic moves performed by the girl in the video?,v_0k0xNs8Zjb4_856,"The video showcases a girl performing various gymnastics moves including backflip, standing back-tuck, back handspring tucks, running front flips and tumbling sequences by flipping backwards.",0 857,v_9pavfCL1HvU,What is happening in the video?,v_9pavfCL1HvU_857,"The video shows a group of people playing water polo in a swimming pool while others watch from the poolside bleachers during the daytime. Players are seen attempting to get the ball at both corners of the pool, and there is an interception when a player throws the ball towards the goal. The goalkeeper is seen stopping a goal attempt towards the end of the video.",0 858,v_i5qTK0mInTc,Can you describe the main events in the video?,v_i5qTK0mInTc_858,"In the video, an old woman enters a house and puts a movie in the VCR. Her daughter joins her and two other women later arrive with a flower pot. The old woman is seen eating popcorn while watching the movie. The following day, the old woman is seen conversing with her daughter in the living room. A later clip shows the old woman and two other ladies sitting at a table drinking coffee and talking to each other until the video ends.",0 859,v_EK7qW-oavQY,What happens in the video?,v_EK7qW-oavQY_859,"The video shows a game of water polo being played in a swimming pool, with players passing the ball and attempting to score goals. Spectators are watching from the poolside.",0 860,v_jCxQQ9DMpT0,Can you describe what happens in the video?,v_jCxQQ9DMpT0_860,"In the video, a man is seen on a golf course using a compound bow to shoot arrows with the help of another man wearing a blue polo shirt. The blue-shirted man instructs the archer on how to grip the bow and makes gestures while the archer notches an arrow and aims at a target. Eventually, the blue-shirted man walks away.",0 861,v_4NPVpI9zUpI,What are the different types of jumps that Stefan Holm performs in the video?,v_4NPVpI9zUpI_861,"The video showcases Stefan Holm performing six degrees of jumping. He starts with the first degree jump, then moves on to the California Roll, the Holm Roll, the Straddle, the Scissor Kick and finally, the Fosbury Flop.",0 862,v_Ku76zinwWkg,What activities are shown in the video?,v_Ku76zinwWkg_862,The video features a girl and a boy wearing black outfits running and jumping over obstacles on a track. They take turns jumping into a sandpit. The girl performs a high jump while the boy dodges and jumps.,0 863,v_Hy54nZSDxTk,What happens in the video at the paintball park?,v_Hy54nZSDxTk_863,"The video depicts people in paintball helmets and hoodies carrying paintball guns. After receiving instructions, a cameraman runs forward and starts shooting people in the distance. The shooter continues to move and shoot, while some people crouching in front of him hold their hands up and walk back. The video ends with the shooter still shooting and avoiding being shot.",0 864,v_KApqxr02rcQ,What is the video of?,v_KApqxr02rcQ_864,"The video is a game of women's field hockey, played in an outdoor hockey rink with green ground. Two teams, one wearing a white uniform and the other in a dark blue uniform are playing. People can be seen sitting and watching the game. The game specifically follows a player called Jessica Skillings who scores multiple goals throughout the match.",0 865,v_BBKSKU6dGGk,What activities is the man in the video doing?,v_BBKSKU6dGGk_865,The man is shoveling snow on a sidewalk while wearing a blue jacket. He is slowly clearing the snow as he walks forward. The video ends as he is still shoveling snow.,0 866,v_-HpCLXdtcas,What is the man doing in the video?,v_-HpCLXdtcas_866,"In the video, the man is lifting a barbell with multi-colored weights above his head and dropping it to the ground after squatting. He is wearing a black polo shirt and shorts and is seen standing indoors behind a barbell placed on the floor. Additionally, a door and a closed shutter can be seen in the background along with pipes running beside a fan mounted on the right wall. The video ends with another man wearing a white t-shirt coming into view on the right.",0 867,v_9VtxNvLx6zA,Can you give a brief overview of the volleyball match depicted in the video?,v_9VtxNvLx6zA_867,"The video shows two teams playing a volleyball match in a gym. One team serves the ball, and a player from the other team sends it outside the court. An umpire is visible standing on a ladder next to the net and a digital scoreboard can be seen behind the second team. After serving the ball again, the opposite team member hits it outside the court, and the video ends.",0 868,v_AwgGYaV1lT0,Can you describe the actions of the man depicted in the video?,v_AwgGYaV1lT0_868,"In the video, a man is shown chopping wood with an axe in a wooded area. He then breaks up the wood into pieces before sticking the axe into the ground.",0 869,v_0X0u_3xUBPE,Can you describe the setting and actions shown in the video?,v_0X0u_3xUBPE_869,"The video shows a man in a black Tai Chi uniform standing on a concrete floor outdoors, with a flight of stairs and two people sitting behind him. He performs various Tai Chi stances slowly with his hands and feet and finishes his practice after a few minutes.",0 870,v_iABuDhagUm8,Can you describe the initial scene and actions of the man in the video?,v_iABuDhagUm8_870,"At the beginning of the video, we see a shot of a backyard with a lawn, a tree by the fence, and trees visible beyond it. A man enters the scene walking in slow motion towards a chopping block with an axe in his right hand. He then swings the axe at a wooden log placed on the chopping block, cracking it in the middle. After a few swings, the log breaks into pieces and falls on the ground.",0 871,v_jt-Vnap5KP4,Can you describe the appearance and actions of the man in the video?,v_jt-Vnap5KP4_871,"In the video, an elderly man is shown sitting on a mobility scooter wearing winter clothes, a hat, and sunglasses. He is outdoors and plays the harmonica while looking at the camera, ending his performance with a laugh. The video concludes with him speaking directly to the camera.",0 872,v_agu58IVL7IQ,What is happening in the video?,v_agu58IVL7IQ_872,"In the video, a man is skateboarding in a playground during the daytime. He performs flip tricks while skating and people are visible skating in the background. There is also another man present who is sitting down.",0 873,v_9AfQ2Q-96oE,What is the video about?,v_9AfQ2Q-96oE_873,The video is about a man competing in a disc throw competition. He throws the disc several times while the spectators watch.,0 874,v_A904-cbaYDw,What is happening in the video?,v_A904-cbaYDw_874,"In the video, a man wearing black clothing is performing tai chi on a lawn, demonstrating various stances and instructing on proper hand and leg positions.",0 875,v__B7rGFDRIww,Can you provide a summary of the video?,v__B7rGFDRIww_875,"The video contains multiple shots of dancers performing ballet poses while the song ""Let it Go"" from Frozen plays in the background. The video begins with a woman doing a pirouette and continues with shots of dancers on different stages with different backgrounds. Some shots include single dancers while others feature larger groups, including dancers in green outfits performing on a black stage. The video also includes shots of dancers practicing in empty ballet studios.",0 876,v_5tFfEA1JWjA,What happens in the video?,v_5tFfEA1JWjA_876,"In the video, a boy and his coach are in an indoor basketball court. The coach is instructing the boy, who then proceeds to dunk the ball through the basket. The boy continuously dunks the ball by jumping high, from both sides of the basket.",0 877,v_AQnp2QAnwI0,What happens in the video with the group of dancers?,v_AQnp2QAnwI0_877,The video shows a group of dancers appearing on stage with a projection on the screen behind them. They perform a dance routine while silhouettes of people wearing headphones can be seen in the audience. The dance routine concludes with the performers taking a bow.,0 878,v_ANaMmXJFE54,Can you describe the cheerleaders’ routine in the basketball court?,v_ANaMmXJFE54_878,"The video shows a cheerleading team entering an indoor basketball court, waving towards the spectators. They then proceed to do various routines, including a basket toss where flyers perform acrobatic movements, flips and reformations, until they end with another stunt.",0 879,v_7orO93DICYw,Can you describe the setting of the video?,v_7orO93DICYw_879,The video starts in a gym that is lit by overhead lights. There are several balance beams fixed to the ground with foam pads lining the floor. The wall of the gym is lined with numerous flags.,0 880,v_9hTcvGUnMBs,Can you describe the setting and the activity shown in the video?,v_9hTcvGUnMBs_880,"The video depicts a high jump contest taking place in an outdoor field. There is a horizontal bar with an elevated foam pad located in the field, and contestants are attempting to jump over it. A referee with a notepad is also present, as is a group of people sitting on chairs and on the ground watching the competition. The height of the bar is increased as the competition goes on, and the video ends with a girl successfully jumping over the bar and knocking it over.",0 881,v_60tIsGR0Zzg,What is happening in the video?,v_60tIsGR0Zzg_881,"In the video, a boy is seen mowing the lawn in a residential area during the daytime. He struggles to move the mower to start mowing one corner of the yard before moving on to the next patches of lawn. At one point, he gets stuck and pulls the mower back. There is a black car visible next to the yard and a line of houses on the other side of the street behind him. In the end, the boy is shown mowing from the edge of the yard.",0 882,v_IRua6QGP-Ow,What are the steps that the bartender performs in the video?,v_IRua6QGP-Ow_882,"In the video, the bartender starts by pouring measured spirits into a cup using a jigger, then mixes them using a tea whisk before straining them into a mixer using a tea strainer. After taste testing the drink, he adds ice cubes to the mixer and shakes it before pouring it into a glass using a tea strainer. Finally, he runs a lime on the rim of the glass.",0 883,v_DOI6tsATsE4,Can you describe the scene and characters in the video?,v_DOI6tsATsE4_883,The video shows a boy in a dark blue sweatshirt sitting at a table with a plate in front of him. He is holding his right hand to the side of his head while looking into the camera. There is a lamp visible in the background near the wall. Another cutaway shot shows a man wearing a white t-shirt looking at the camera while standing in a room with a packed shelf in the back. The video ends with cutaway shots of the boy looking at the camera and looking away.,0 884,v_ej9TkJVjK9M,What does the video depict?,v_ej9TkJVjK9M_884,The video shows a man in a well-lit gym standing behind a barbell. He wears black tights and lifts the barbell above his head before throwing it down and walking off to the side of the gym. A man in a green shirt sitting on a red chair is visible as he walks by.,0 885,v_8L1UjGLOCeI,What is happening in the video?,v_8L1UjGLOCeI_885,"In the video, a woman is standing in a room with a hopscotch court drawn on the ground. She hops on the court, completes a pass, hops back to the starting point, opens a door, and turns to the camera holding her hands to the side.",0 886,v_c7S423zJqPo,What is happening in the video?,v_c7S423zJqPo_886,"The video shows people working out in an aerobics class, with most of the participants being women. They are using an aerobics step, with two air conditioner units mounted on the wall and wall-mounted fans on the far wall.",0 887,v_Bkhr72sazvQ,What is happening in the video?,v_Bkhr72sazvQ_887,"In the video, a man is promoting a weight loss product while holding up a sachet of coffee. He talks about the product and the screen displays the text ""5 pounds lost in 7 days"" while showing images of 5 pounds of fat and muscle. The video ends with the man still discussing the weight loss product.",0 888,v_d-RYiiPzVKg,What is the process shown in the video?,v_d-RYiiPzVKg_888,"The video shows a man creating a homemade cleaning solution for a wooden table using white vinegar and olive oil, and then polishing the table with the mixture.",0 889,v_BmLDHLKiIdQ,What is the video about?,v_BmLDHLKiIdQ_889,"The video is of an indoor archery competition between two players, wherein the contestants shoot arrows through compound bows with spectators seated in the stands. The winner celebrates and the runner-up congratulates him.",0 890,v_9VflCeoPr9I,What is happening in the video?,v_9VflCeoPr9I_890,"In the video, people are playing and kicking a red ball in a big lawn-covered field. There are tees visible outside the fence. As the ball is passed from one person to another, a variety of people of different ages, including an old woman and children, join in the game. The video ends when the man again rolls the ball to a waiting girl, who kicks it toward a waiting boy who catches it.",0 891,v_1kwIYXB4b8s,What happens in the video?,v_1kwIYXB4b8s_891,"In the video, a man gets his head shaved by a woman using a trimmer as other people stand around the room. The man gives a thumbs up at the end.",0 892,v_kPn9NzU4W48,What happens in the video?,v_kPn9NzU4W48_892,"In the video, two teens named John and Tyler take a boxing stance and spar in a basketball court. They start with kicks and proceed to punches, moving around the court while kickboxing. The video ends with Tyler pushing John back.",0 893,v_4iFlM_Zu7xs,What events occurred in the video?,v_4iFlM_Zu7xs_893,"The video features multiple dirt bike stunts performed by two riders on a dirt track. The stunts include jumping over inclines and hills, all while being recorded by a person in the middle of the track.",0 894,v_Dbas61NkTV0,What is the video about?,v_Dbas61NkTV0_894,"The video captures the performance of a cheer squad showcasing their routine, stunts and dance on a stage with overhead lighting and gobo lighting projected on the stage wall.",0 895,v_j6ElczD-Pw4,What actions does the girl perform in the bathroom?,v_j6ElczD-Pw4_895,The girl is seen leaning towards a sink while wearing a black top. She picks up a luffa and taps it on her face before washing it off with water.,0 896,v_e3DB_y78IHc,What are the main events shown in the video?,v_e3DB_y78IHc_896,"The video showcases various scenes of Cheyenne, Wyoming including views of hoardings advertising Cheyenne, a fishing information building, wooden cabin near a flowing stream, a sign pointing towards a fishing pond, a red building near a lake, two men near a metal fence, saddled horses, riding horses near a barn, a man petting a horse, farm animals such as chickens, goats, black bull and brown cow and grazing ostriches, alpacas, and camels.",0 897,v_9ZVWD0ZKXZg,What are some key actions shown in the video?,v_9ZVWD0ZKXZg_897,The video shows a boy climbing a rock while wearing a harness and belay rope. He carefully looks for handholds and applies chalk as he makes his way up the rock. He pauses a few feet from the top to rest before ultimately reaching the top and looking down. The next clip shows him climbing down with the help of another boy holding the belay rope.,0 898,v_1dDAcUliXrQ,Can you describe the game of badminton being played in the video?,v_1dDAcUliXrQ_898,"The video shows a game of badminton being played by two teams comprising three women each. The court is indoor and has dark blue walls and flooring. One member of the first team walks out of the court mid-game to pick up a purse and have a brief conversation with a teammate. Despite being short of a teammate, the remaining two members of the first team continue playing against the other team.",0 899,v_KvtqF0LaWU0,What is the video about and what happens in it?,v_KvtqF0LaWU0_899,"The video is about the process of preparing a dish and features a girl standing behind a black stone kitchen counter wearing glasses and a red outfit. The girl and a woman wearing a sweater prepare ingredients by chopping cherry tomatoes, squeezing basil paste, and sprinkling contents from a bottle into a steel bowl. A man wearing a white shirt tastes the mixture in the bowl and speaks to the camera. The video ends with a list of ingredients used in the process.",0 900,v_3VjaC7wdMso,Can you describe the setting and actions of the girl in the beginning of the video?,v_3VjaC7wdMso_900,"At the beginning of the video, a girl is seen playing the piano by an open window with sunlight streaming in. Trees are visible outside the window, and the edge of a bed is visible behind the chair she is sitting on. She is referencing sheet music in front of her and starts singing as she is playing.",0 901,v_cms1BP4eKOA,What were the players doing in the video?,v_cms1BP4eKOA_901,"The players were performing a point guard drill where they run around cones, attack the basket, and make point guard entry passes.",0 902,v_Ivq9_wPFNs4,What events take place in the video?,v_Ivq9_wPFNs4_902,"The video shows Britney Reese, a woman in sportswear, performing a high jump into a sand pit while two men with measuring sticks watch. She then runs in the lane and claps her hands. The spectators, along with flags of different countries, can be seen in the seating area. In the end, a man in a suite is seen clapping with the other spectators.",0 903,v_dO01vfB9z4g,What happens in the video?,v_dO01vfB9z4g_903,"The video shows a little boy in a dark blue t-shirt scrubbing dirty dishes in a well-lit kitchen sink. He stands on a box while scrubbing the dishes and places them in an adjacent empty sink. A woman wearing a yellow top records the boy with her cellphone. After the boy finishes scrubbing all the dishes, he continues to scrub another bowl.",0 904,v_4-KiAur4dI8,What are the main events that take place in the video?,v_4-KiAur4dI8_904,"The video shows people with kayaks on the lake shore, several kayaks in the river from an aerial view, people rowing through first a wide river then a narrow stream, people running and cycling through the woods with cyclists struggling to pedal through uphill and raised pathways, and finally, a cyclist making it through the finish line where people are gathered on either side and lifting a can of Red Bull.",0 905,v_1XNHcfxTqW0,What is happening in the video?,v_1XNHcfxTqW0_905,The video shows a man playing harmonica on a sidewalk near a store with mannequins visible inside. He is sitting beside a white bag and people are walking by on the sidewalk. The video ends when the man stops playing and holds his hand out to someone.,0 906,v_AE2gHOwcV14,What events take place in the gym video?,v_AE2gHOwcV14_906,"The video shows a girl doing gymnastics on a balance beam in a gym, starting with some balancing acts and finishing with a front summersault and a handstand before landing on the ground.",0 907,v_bphckj0BV5U,Can you describe the steps shown in the video for starting a fire?,v_bphckj0BV5U_907,The video features a woman demonstrating how to start a fire while camping. She shows the process of breaking up dry leaves and tinder and lighting them using a carbon knife and a Ferro rod. She also holds up a green Bic lighter and a box of matches as alternative fire-starting tools.,0 908,v_E5YBb4rzV30,What is the main content of the video?,v_E5YBb4rzV30_908,"The video shows a woman in a well-lit kitchen making tuna lettuce wraps using canned tuna. She mixes mayonnaise, relish, mustard, celery, onions and tuna to make the filling for the wraps, then arranges them on a plate and folds the lettuce leaves over the mixture like wraps. The video ends with an advertisement for the canned tuna and website information.",0 909,v_dRF1C_sBE5M,What happens in the video?,v_dRF1C_sBE5M_909,The video shows a man wearing a green jacket chopping logs and instructing a woman on how to chop logs with an axe. There is also a man drinking a beer and a dog in the scene.,0 910,v_H33jSILKmfI,Can you describe the scene in the gym where the boy is practicing training drills?,v_H33jSILKmfI_910,"In the video, a boy dressed in a white martial arts uniform is training in a well-lit gym with a light wooden floor. An American flag is hung on the far wall, while a group of boys are sitting on the left behind a table, and a few men in suits are sitting on the right behind tables observing the drills. As the boy moves to the right, another young boy can be seen standing and observing the drilling boy. The boy continues to perform the drills until the video ends.",0 911,v_JiNcVb97CnA,What happens in the video and what do the people wear?,v_JiNcVb97CnA_911,"The video features two individuals dancing together inside a dimly lit living room with wooden flooring. There is a man in a white t-shirt and a woman wearing a black coat over a pink top. They perform several twirls while dancing and the background includes a curtain, a TV on a pedestal, posters, and a corner of a white sofa. The video ends with them still dancing.",0 912,v_lIo8HfzzSNs,What is the video about?,v_lIo8HfzzSNs_912,"The video is about a chef making a Russian salad. He adds cooked potatoes, carrots, and peas to a bowl and tops it with a dressing made of mayonnaise, cream, salt, and pepper. He then places the salad in the center of a glass plate surrounded by lemons and topped with a tomato cut into a rose shape.",0 913,v_dN8LBey17O8,What are some of the actions performed by the man in the video?,v_dN8LBey17O8_913,"The man in the video is shown mowing his lawn, measuring the length of the grass before and after mowing using a ruler, adjusting his mower to cut the grass to a desired length, and removing the mulch bag from the mower.",0 914,v_I7slpTgl0jc,What does the video show happening in the field?,v_I7slpTgl0jc_914,"The video shows a man practicing his hammer throw on a round platform in a field surrounded by a lawn and trees. He is holding a handle with a hammer attached to it and is wearing a red shirt. After a few swings, he releases the hammer through the open end of the practice net and claps after watching its landing.",0 915,v_ks018ZYzrx4,Can you describe the main events in the video?,v_ks018ZYzrx4_915,"The video showcases a montage from inside a camper van passing through different locations, a boy pushing a dirt bike, an indoor dirt biking arena filled with spectators and with bikes parked at near end of the arena, people preparing berms, various scenes from the arena, two boys riding a dirt bike and doing doughnuts and kids racing in the dirt bike arena.",0 916,v_KsFid_YVsn0,Can you describe the outdoor and indoor settings of the dancing scenes in the video?,v_KsFid_YVsn0_916,"The video features dancers wearing black dresses and red dress shirts and black trousers, dancing outdoors among palm trees and other buildings, and then indoors on a dimly lit basketball court.",0 917,v_hFpSoRlpyMo,Can you describe the scene in the video where the batsman gets out?,v_hFpSoRlpyMo_917,"The batsman hits the ball through the gap in the off side towards the boundary. A fielder runs towards the ball and prevents it from touching the rope at the boundary. He falls on the other side of the rope after preventing the ball from touching the rope. The wicket player catches the ball thrown to him and removes the bails from the stumps. The players gather around the pitch. One of the umpires appeals the run out to the third umpire. A big screen in the stadium displays the message ""OUT"". A clip of the batsman near the exit of the field is shown.",0 918,v_aOxRwTlkY80,What is the man cooking in the video?,v_aOxRwTlkY80_918,"In the video, the man is shown cooking ""dry pasta"" along with ingredients including parsley, olive oil, garlic, and chilies.",0 919,v_4VdS1eN3dv4,What are the different scenes in the video?,v_4VdS1eN3dv4_919,"The video shows footage of people playing cricket in a backyard during the day and at night, three men playing cricket in a garage, and a shot of a fluorescent wicket set. There are also several clips of gameplay showing a bowler bowling a ball and the batsman hitting it towards the field, sometimes hitting the fence, and sometimes hitting the stumps. The video ends with several still images of the batsman holding the bat.",0 920,v_EhzHU0gkrzA,What are some of the gymnastics stunts that were performed in the video?,v_EhzHU0gkrzA_920,"The gymnast in the video performed stunts such as swinging and doing a handstand, swinging back and repeating it while turning in the other direction. Another person was also visibly doing gymnastics on the far right towards the corner of the hall.",0 921,v_6G8m-vsGTA8,What happens in the video at the hair salon?,v_6G8m-vsGTA8_921,"The video starts in a hair salon where a man is sitting in a chair, having his hair cut. A woman is using a spray can and comb to wet and comb his hair before cutting it. There are other customers in the salon as well, and at the end of the video, the man can be seen in his car wearing a hat and sunglasses.",0 922,v_kfO5PGlsMJw,Can you describe the karate performance in the video?,v_kfO5PGlsMJw_922,The video features two boys wearing karate uniforms and demonstrating their skills on a stage with black curtain and red strobe lights. They perform synchronized moves and finish their demonstration with a bow. An American flag is placed on the left side of the stage.,0 923,v_86Unahb4sJM,What is the video about?,v_86Unahb4sJM_923,"The video is a makeup tutorial where a woman applies full makeup including concealer, foundation, bronzer, eyeliner, mascara, lipgloss and darkening her eyebrows. The video ends with the woman looking into the camera and smiling and showing earrings.",0 924,v_jN2CFk0xKp8,What is happening in the first clip of the video?,v_jN2CFk0xKp8_924,"In the first clip, a man in an office is using a vacuum to clean the carpet. He is wearing a red polo shirt and blue pants while carrying the vacuum in his back.",0 925,v_JG7T6qtO4jg,Can you describe the setting and actions of the breakdancers in the video?,v_JG7T6qtO4jg_925,"The video shows two boys breakdancing in a garage filled with tires and rims. The boy in olive shorts demonstrates the ""Zulu Spin"" move while the other boy gives instructions.",0 926,v__ja1fre9OTE,What are the highlights of the gymnastics competition?,v__ja1fre9OTE_926,"The video shows a gymnast performing different moves such as a handstand, front flip, back flip, and balance poses. She finishes with a cartwheel and jumps off the balance beam.",0 927,v_82EtiBkAsPg,What is happening in the video?,v_82EtiBkAsPg_927,A man in a black jacket is playing the bagpipe in a bar and several people are standing around him cheering and clapping. The bar is dimly lit and there are glasses and bottles visible on the shelves behind the man.,0 928,v_7OcxT66BxX0,What is happening in the video?,v_7OcxT66BxX0_928,"In the video, a man wearing a black jacket and fedora sings and plays harmonica on a stage with lights shining from above. The audience can be seen in the darkened seats.",0 929,v_aDe5hUB3AdY,What are the different activities that can be seen in this video?,v_aDe5hUB3AdY_929,"The video showcases sailors sailing dinghies in the sea, performing capsizing training, sailing the dinghies with multiple individuals, and even a story of two boys sailing on a dinghy.",0 930,v_5qY9yPt-5Go,What happens in the video with the black French bulldog and the cup of coffee?,v_5qY9yPt-5Go_930,The black French bulldog stands on a checkered red tablecloth and the boy places a cup of coffee in front of him. The dog then drinks the coffee and the boy gently tries to move him away from the cup.,0 931,v_hvrKRg166eQ,What events and scenes can be seen in the video?,v_hvrKRg166eQ_931,"The video showcases a group of people sitting on a couch, a man speaking to the camera, a teen giving a speech in a classroom, cheerleaders performing routines on stage, cheerleaders training, and cheerleaders celebrating. There are also scenes showcasing a man giving instructions to girls in a hall, a group of cheerleaders watching the stage and some of them crying, and multiple cheer squads performing on stage.",0 932,v_a_JlhLnJM98,What is the woman in the video demonstrating?,v_a_JlhLnJM98_932,The woman in the video is demonstrating how to iron a men's cotton dress shirt while standing in a well-lit room with a window behind her. She starts by spraying starch on the shirt and then proceeds to iron the sleeves of the shirt. She finishes with ironing the ends of the sleeve.,0 933,v_9Ufy_JGbnys,Can you describe the event that took place in the video?,v_9Ufy_JGbnys_933,"In the video, a dancing event was held in a well-lit hall surrounded by tables where the guests were seated. A man and a woman entered the center holding hands and started to tango as soon as the music began. They moved around the hall progressively as the dance continued, and finally separated and bowed towards the applauding audience when the music stopped.",0 934,v_9eniCub7u60,What is happening in the video?,v_9eniCub7u60_934,"In the video, there are two people, a man in a checkered shirt and a woman, dancing in a darkened room with a wooden floor. A small child walks into the next room through a door on the right. The wall at the back has a few photo frames hanging from it. At the end, the man spins the woman several times.",0 935,v_k1GP0cJOXbQ,What are the main events shown in the video?,v_k1GP0cJOXbQ_935,"The video shows people carrying kayaks, driving to a location and then kayaking down rapids with some shots of the kayakers in calmer waters as well. Finally, people are seen drinking beer on land with the sunset in the background.",0 936,v_7bwruwic1CI,What is happening in the video?,v_7bwruwic1CI_936,"The video shows players celebrating on a baseball field, followed by a handball match outdoors where a player kicks the ball. A referee is visible. There is a replay of the play with positions marked out on the field. Another clip shows a baseball game where a batter hits a ball, runs, and the ball is caught and thrown to a base.",0 937,v_bYxVbXzQToI,Can you describe what happens in the video?,v_bYxVbXzQToI_937,"In the video, a man wearing a white suit sits on a raised platform in a bar next to another man playing a guitar. Other people are seen around the bar, some are sitting together around a table, while others watch the man playing the guitar and take a drink from a glass or smoke. The man in the white suit eventually picks up a guitar and starts playing until the video ends.",0 938,v_hI11n4_r178,What is happening in the video?,v_hI11n4_r178_938,"The video shows three people, a man and two women, doing aerobic movements using an aerobics step in a studio with overhead lighting. They are wearing microphones and the man is leading the routine while calling out instructions. There are white screens with frames in the background and two screens displaying a rotating green letter 'e' mounted on stands in between them. At one point, a new routine starts after a cutaway. The camera also pans over and shows a Gobo projector.",0 939,v_hP-xRyx88aA,What happens in the video?,v_hP-xRyx88aA_939,"A woman participates in a pole vaulting competition, successfully jumping over the bar twice and taking a drink of water in between attempts. Other people are visible around the bar, including a referee and two athletes warming up.",0 940,v_HxrtuZSCwvY,Can you describe the scene of the boy playing the violin in the living room?,v_HxrtuZSCwvY_940,"In the dimly lit living room, a boy wearing a sweater vest is standing while holding a violin. He is accompanied by people sitting on chairs next to him and there is a painting on the wall behind him. A man wearing a black shirt can be seen sitting under the painting and windows are visible through an open door behind the boy. The boy starts playing the violin and continues until the end of the video when the audience applauds.",0 941,v_af05Mqm03Y4,What happens in the video?,v_af05Mqm03Y4_941,"The video shows two men playing squash, running around the court, until the man in the white t-shirt appears tired. They continue playing until they stop and share a handshake.",0 942,v_ddzfgHw_qlU,Can you describe what the man in the video is doing?,v_ddzfgHw_qlU_942,"In the video, a man is sitting in front of a painting while playing a harmonica. He is wearing a grey dress shirt and glasses, and the room is well-lit with a yellow overhead light. He continues to play the harmonica until the end of the video.",0 943,v_h_r8gioFi4k,What activities are the man and woman doing in the video?,v_h_r8gioFi4k_943,"In the video, the man and woman are practicing kickboxing. The man is wearing punch mitts while the woman is wearing boxing gloves. They are using various kickboxing moves such as punching, kicking, and elbow strikes while moving around in a well-lit gym. The video also shows posters on the walls and a multicolor mat covering the floor. At the end of the video, their practice ends and both of them stop fighting.",0 944,v_EnMS9O1U6E0,What happens in the video and who is featured in it?,v_EnMS9O1U6E0_944,The video shows a man wearing blue shorts and a vest with the number tag of 2736 running slowly in a track and field stadium. He jumps over a high jump bar by flipping back and parallels to the bar before walking away from the foam mat. The video also features replays of the jump from different angles until the end of the video.,0 945,v_CeXtKbFnPIQ,What is shown in the video?,v_CeXtKbFnPIQ_945,The video shows a man in a black shirt and black track pants hitting a tennis ball across an outdoor tennis court. The ball is seen landing on the other side and heading towards the trees.,0 946,v_K_ia4VP3w2c,Can you describe the makeup process in the video?,v_K_ia4VP3w2c_946,"The video showcases a makeup artist applying makeup on the model Irina Shayk. The artist starts with eyeshadow, moves to eyelashes, lipstick, and then redoing the eye makeup while using different colors. The video ends with a show of Irina with completed makeup.",0 947,v_IDIALY6Ayk8,What are some of the key scenes depicted in the video?,v_IDIALY6Ayk8_947,"The video begins with a view of a vineyard, followed by a rider leading a horse down an incline and riders on horses riding in a circle. After exiting the enclosure, they ride on a dirt path near the vineyard. The riders, led by a woman in a black turtleneck, make their way to a winery where they stand in a wine cellar with stacks of wine barrels. The video also shows grapes being hung and stacked on a drying platform and people seated in a dining room with wine glasses in front of them. The video ends with a shot of the facade of the winery.",0 948,v_ij9czNGMR5I,What happens in the video?,v_ij9czNGMR5I_948,"In the video, a girl wearing a grey hoodie gets her tongue pierced by a man wearing a black shirt and surgical gloves. The man clamps her tongue, pierces it with a needle, and inserts a piercing before securing it with something. The video ends with the man stepping out of frame and the woman showing off her new piercing.",0 949,v_jEOtcfk220s,What is happening in the video?,v_jEOtcfk220s_949,"The video shows a women's volleyball match being played in a light wood school gymnasium with white walls and bleachers. The players on the left are wearing blue uniforms, and a referee is visible in the middle standing on a platform over the net. The players volley the ball back and forth until the team on the right misses a hit, and the video ends as the team on the left wins the exchange.",0 950,v_j6OcN4OQZVM,Can you describe the outfits worn by the breakdancers in the video?,v_j6OcN4OQZVM_950,The breakdancers in the video are all seen wearing black outfits while performing their moves.,0 951,v_bz4QwqHiVlo,What happens in the video?,v_bz4QwqHiVlo_951,The video starts with instructions for a test followed by a green screen slideshow. It then shows a man wearing a purple shirt vacuuming the living room and the kitchen. He vacuums under furniture and also rolls up the cable in the end.,0 952,v_hPYGgv_75SY,Can you describe the events that take place in the video?,v_hPYGgv_75SY_952,"In the video, a woman wearing a black outfit is performing a hammer throw on a field. In the first throw, the hammer lands on a blanket where a couple is sitting and talking. In the second throw, the hammer lands in a swimming pool just as a swimmer reaches the wall. In the third throw, the hammer flies over a gymnast standing on a balance beam causing her to fall over. In the final throw, the hammer lands in front of a baseball catcher who is wearing full gear and gets up in exasperation. The video ends with the hammer thrower walking off to the side.",0 953,v_jWH-2aa1gJY,Can you describe the scene in the video?,v_jWH-2aa1gJY_953,"In the video, we see a girl sitting on a chair wearing a hoodie and jeans with a closed window behind her. There are various music instruments lying on the ground around her. She is holding a guitar and listening to music. She is following the music and mimics the guitar notes on her guitar without plucking the strings.",0 954,v_BAtlo_AGFWs,What are some of the activities of Chris Hadfield shown in the video?,v_BAtlo_AGFWs_954,"The video shows Chris Hadfield holding a tortilla and adding honey to it, playing the guitar while floating in the space station, getting a haircut from someone in a teal t-shirt, walking down a path with other astronauts, giving an interview on the space station, rearranging his hair, and various images of space and Earth shown in a slideshow.",0 955,v_9lAT3oA9Ixs,What is the man in the video doing?,v_9lAT3oA9Ixs_955,The man in the video is chopping wood in a wooded area with a cabin nearby. He is using an axe to chop wooden blocks on a tree stump into uniform lengths and then piling them up behind him.,0 956,v_0rr7iGHamw0,What is Valarie doing in the video?,v_0rr7iGHamw0_956,Valarie is imprinting a design on a T-shirt using an iron on transfer and pressing the design on the shirt while speaking and laughing with the cameraman.,0 957,v_6utacRir3uM,What happens in the aerobics studio in the video?,v_6utacRir3uM_957,The video begins in an aerobics studio where people are working out behind aerobic steps with an instructor giving instructions. A man wearing black falls down over his aerobics step when struggling to follow the instructor’s pace.,0 958,v_5cijPqKVc84,What is the video about?,v_5cijPqKVc84_958,The video showcases various types of kayaks being used in different bodies of water while a man wearing a hat is interviewed by a woman on a lakeshore.,0 959,v_l5ZUUChppHU,What is happening in the video?,v_l5ZUUChppHU_959,"The video shows a wood-chopping competition with contestants on both sides standing over their respective logs. There are two sets of competitions happening with contestants on the left having their wooden blocks laid horizontally on chopping stands, while contestants on the right are assembling wooden blocks on horizontal chopping stands. They are wearing black vests and light-colored trousers, outside in an arena during the daytime. The contest begins as the two sides begin chopping wood, and some players on the left finish before the players on the right. The first player on the left side then heads over to the right and speaks to another contestant.",0 960,v_52Xw6TZcysc,What is happening in the video?,v_52Xw6TZcysc_960,The video shows a woman attempting to do a long jump by running towards and jumping into a dirt pit. There are clips of her taking multiple attempts and people are visible in the background.,0 961,v_l_0HvMt2tGg,What are the key events that take place in the video?,v_l_0HvMt2tGg_961,The video showcases a little boy playing lacrosse for the Salem team in different games. It depicts him holding a stick and scoring goals as well as chasing the ball. Face-offs between players from different teams are also shown.,0 962,v_1jgsRbGzCls,What is the video about?,v_1jgsRbGzCls_962,"The video is about the practice of tai chi and its history. It shows people practicing tai chi outdoors in winter clothes, in a hospital, and being taught by others. The video also includes clips of an old man teaching tai chi, and a news anchor reporting on the practice of tai chi.",0 963,v_kl-2y3jtPNE,Can you describe the cricket match shown in the video?,v_kl-2y3jtPNE_963,"The video shows a cricket match being played on a field with a pitch surrounded by a grass field. The match is between two teams and several students can be seen watching and playing. The video features a batsman hitting a ball, a bowler delivering it, and other movements commonly seen in a cricket match. Trees and a building with white pillars can be seen in the background.",0 964,v_j_r7zJWxI8w,What are the men doing in the video?,v_j_r7zJWxI8w_964,"In the video, two men are seen in the woods, holding beer cans. The man on the left picks up a can from a pack, makes a hole in it with a key, and drinks through the hole. The man on the right drinks from his own can and belches at the end. Another man comes into the frame and talks to the camera.",0 965,v_l_pp-1qu9Ig,What is shown in the video?,v_l_pp-1qu9Ig_965,"The video shows a woman picking up three rolls of gift wrap from a blue wooden counter, laying them out on a light wood table, and wrapping a brown cardboard box. Gift wrapping accessories are shown appearing on the table with jump cuts. The woman carefully folds the sides of the box and wraps it with tape. The video ends with her turning the wrapped box on every side to show the wrapping.",0 966,v_8r4bF9RF0Kc,Can you describe the key events in the video?,v_8r4bF9RF0Kc_966,"The video shows a game of cricket being played, with a bowler throwing a ball to the batsman who hits it towards the woods. The batsman and a non-striker start running between the wickets, but they stop when the ball is found by a fielder who throws it back to the bowler.",0 967,v_iUiXNXRs4rU,What is the man doing in the video?,v_iUiXNXRs4rU_967,The man in the video is fixing a broken chain on a bike in a well-lit bike shop by attaching a master link to one end of the broken chain and pulling both sides together until they lock together.,0 968,v_Lf_7RurLgp0,What is happening in the video?,v_Lf_7RurLgp0_968,"In the video, a woman showcases a soap dispenser for kids in a well-lit bathroom with a wooden shelf and a vine climbing down from the top. She is joined by a little boy who pumps soap from the dispenser, washes his hands in the sink, and wipes it on a towel. The woman also presents a bottle of hand sanitizer to the camera.",0 969,v_34ZxyyFjbHQ,What is happening in the video of two kids playing squash?,v_34ZxyyFjbHQ_969,"The video features two kids playing squash on a well-lit court. One is in a blue t-shirt while the other is in a red t-shirt, and they continuously start over as one of them misses their shot. A boy in a white t-shirt also stands outside the court watching while people can be seen passing by the glass door at the back of the court.",0 970,v_Db9VWkgMpbE,Can you describe the woman in green and what she does in the video?,v_Db9VWkgMpbE_970,"In the video, a woman wearing a green top is seen leaning on an elliptic bike before sitting on it and speaking to the camera. Later, she is shown learning how to use an exercise bike from an instructor while a person wearing red top is exercising on an elliptic machine to her right. The woman in green cycles on the exercise bike while looking at herself in the mirror.",0 971,v_Il9Ara3IqeY,What is happening in the video?,v_Il9Ara3IqeY_971,A man is playing a flute on the Marble Bridge with the Palace Museum in the background while people walk around Meridian Gate Square. He wears a black polo shirt and a rice hat and continues playing until the end of the video.,0 972,v_HkbOI7gEtKk,What steps are involved in the cleansing process demonstrated in the video?,v_HkbOI7gEtKk_972,"The beautician introduces herself and the model, shows how to create a cleansing mixture with baking soda and yogurt, teaches how to apply it on the face, demonstrates wiping the face with a washcloth, and speaks about the final results.",0 973,v_cEa87QoI3Do,Can you describe the scene captured in the video?,v_cEa87QoI3Do_973,"Two identical men are featured in the video. They make a sandwich for a girl who visits them. The men appear to be in a bedroom and a girl walks in through the door wearing a backpack. The men then proceed to make a sandwich by assembling various ingredients, while the girl sits on the sofa. They then offer the sandwich to the girl and the video ends with the men looking at each other with a frown.",0 974,v_ARpoJIBF2NM,What can you tell me about the dodgeball game in the video?,v_ARpoJIBF2NM_974,The video shows players in teal t-shirts on one side of an indoor basketball court playing against a group of amateur players. The players in teal move around the court and throw balls at the opposing team while some players get hit and some catch the ball. There are also students wearing white shirts cheering in the bleachers and a man with a mic standing on the outside of the court. The game ends with a player in teal being dismissed as he crosses the midline and the players slowing down and stopping playing.,0 975,v_H8oehT8eeGc,What is happening in the video and who are the main characters?,v_H8oehT8eeGc_975,"The video features a group of boys standing inside a yard, with one boy in black standing a few feet away. Another boy throws a red ball, and a boy in a green shirt runs up to kick it. The ball lands near the opposite fence and a boy in a red shirt runs toward it.",0 976,v_jQzBXawu29s,Can you describe what happens in the video?,v_jQzBXawu29s_976,"In the video, a man is seen holding a wooden Irish flute in a living room with various framed items hanging on the wall. He speaks to the camera and then plays the flute while showing how to breathe when playing it. The video ends as the man demonstrates some breathing exercises and plays the flute for a moment.",0 977,v_51faGoLPJgM,What is happening in the video?,v_51faGoLPJgM_977,"The video showcases a boy in blue jeans and a sweater who is chopping wood next to a pile of chopped logs. He attempts to chop the wood, but it slips and turns to the side, so he straightens the log and tries again.",0 978,v_AB480dHyDeM,Can you describe the process of cleaning the shoes in the video?,v_AB480dHyDeM_978,"A man wearing a grey t-shirt is cleaning Adidas shoes by removing the insole and laces, brushing the shoes with a solution, dipping the brush in the water bowl, and wiping the shoes with a towel once done. The video also shows a comparison between a clean and dirty shoe and ends with the man holding a cleaning product labeled ""jason markk"".",0 979,v_lPw_BRbPw5s,Can you describe the setting and the people in the video?,v_lPw_BRbPw5s_979,"In the video, a man wearing a blue T-shirt and a blue cap and a woman wearing a brown top and blue jeans are dancing outside in an alley with a wall with windows visible behind them. In another clip, a man wearing a white t-shirt dances with the woman as well.",0 980,v_Kofjs0rkwxc,Can you describe what happens in the video?,v_Kofjs0rkwxc_980,The video showcases a chef making sandwiches by adding toppings to slices of bread. He introduces himself and shows the different ingredients he uses while preparing sandwiches. The video ends as the chef cuts the finished sandwich and plates it.,0 981,v_jiM0HUFn0e8,What is happening in the ballet class?,v_jiM0HUFn0e8_981,"In the video, the ballet instructor is at the front with two students at her back on either side, starting ballet practice with hand movements. Little kids sitting a few feet away from the trio are mimicking the hand moves the trio makes while the instructor and the other two dancers slowly move their hands and legs to showcase the movements. The girls sitting in a half circle behind the three dancers are seen following the movements and repeating them. The video ends as the three dancers finish the movements and stand in a pose.",0 982,v_4oi6dXfpJS4,What happens in the video?,v_4oi6dXfpJS4_982,"The video features a gymnast performing various poses on the balance beam, including multiple backflips and spins. She loses balance at one point but continues and finishes her routine by doing three backflips and landing on the ground.",0 983,v_4KMG6lEDSIM,Can you describe the various fights that take place in the video?,v_4KMG6lEDSIM_983,"The video showcases several fights between contestants who are dressed in different colored gis. There are exchanges of kicks and hits between the fighters. In one of the clips, a person in red gi knocks out all the opponents and strikes a pose while spectators are clapping. The fights range from martial arts contests to breaking bricks and tiles placed in different positions.",0 984,v_889_kqLFM0E,What are some of the activities captured in the video?,v_889_kqLFM0E_984,"The video captures various activities such as mountain rock climbing, marking spots on rocks, climbing boulders, climbing down ropes, climbing rocky hills, and standing on the top of hills.",0 985,v_1YU4MSK80cQ,What is happening in the beginning of the video?,v_1YU4MSK80cQ_985,The video starts with a woman lifting herself from two bars on either side in a park with other outdoor fitness equipment visible in the back.,0 986,v_IDuoF51IMJ8,What is happening in the beginning of the video?,v_IDuoF51IMJ8_986,"At the start of the video, two teams are playing dodgeball on a well-lit basketball court with spectators seated around. ",0 987,v_jkrlHzTRTvo,Can you describe the setting and activities shown in the video?,v_jkrlHzTRTvo_987,"The video showcases a group of young boys getting ready for a paintball game, taking defensive positions and ducking behind inflated bunkers used as obstacles in the field. The video also features quick clips of kids playing in the paintball arena or loading paintball guns with pellets.",0 988,v_dhsSq0K1xEg,What is shown in the beginning of the video and what is written on the decorated saxophone case?,v_dhsSq0K1xEg_988,"The video starts with a close view of a saxophone case with the text ""GUNS-N-ROSES"" and a rose drawn under it.",0 989,v_0x6ZV9Y8g_c,What is happening in the video?,v_0x6ZV9Y8g_c_989,"In the video, a woman and a toddler are inside a bathroom. The toddler is wearing blue and red pajamas and attempts to wipe off the makeup the woman is wearing with a cloth. The video ends with the toddler still wiping the woman’s face with a cloth.",0 990,v_-IMXSEIabMM,What is happening in the video?,v_-IMXSEIabMM_990,"In the video, two people are seen shoveling snow behind a car parked in front of a red brick house. A doctor in a white coat is talking to the camera in a clinic. The video ends with a man wearing suspenders shoveling snow.",0 991,v_dVpHF8tE2qo,What is happening in the video?,v_dVpHF8tE2qo_991,"In the video, a man is lifting a barbell in a gym. He is wearing a red vest and there are bars and weights on a shelf next to the wall. He lifts the barbell over his head with visible difficulty and drops it, causing it to bounce on the ground a few times.",0 992,v_Kic33dtLja8,What is happening in the video?,v_Kic33dtLja8_992,"In the video, a group of women are seen belly dancing in a well-lit dance studio, with a mirror visible on the left wall. The instructor is leading the group, and there are five participants in total. The dancers begin by holding a position and then start moving their hands and bodies side to side, rotating, and moving forward and back as the music progresses, with the video ending with the women stopping their dance as the music comes to an end and credits roll.",0 993,v_4mRkWNLE66E,Can you describe the events that unfold in the video?,v_4mRkWNLE66E_993,"In the video, we see two lacrosse teams playing against each other. The players are wearing either white or dark blue jerseys, and the games are played at different times of the day, some under the floodlights during the evening. The footage shows a player in white number 15 jersey who successfully scores a goal in multiple clips, after dodging his opponents and catching the right ball thrown by coaches during practice.",0 994,v_FOZdNPQ7d5Q,What is happening in the video?,v_FOZdNPQ7d5Q_994,"In the video, a man is getting a tattoo on his left arm from a woman in a room. The woman is using a tattoo gun and there are lights shining directly on the tattoo area. The room has dim lights and a window with shutters. The window shutters are open and there are some plants outside the window. The room has some paintings, tattoo inks, a chair, and a small mirror.",0 995,v_BSwChZlOb0k,What happens in the video?,v_BSwChZlOb0k_995,"The video shows men sitting around a table with bottles and cups on it. One man drinks from a flaming shot glass, which does not go out and sticks to his mouth. The man panics, throwing the glass on the table, which sets the table and a man standing near it on fire. The man on fire screams, falls, and tries to put the fire out, while another man helps him.",0 996,v_cqxiLraI8uY,What is happening in the gym in the video?,v_cqxiLraI8uY_996,A man wearing a red t-shirt lifts a barbell in the gym and then drops it on the ground before walking away. The gym has a black floor and has various equipment fixed to the wall. The entire gym is illuminated by overhead lights.,0 997,v_d6PdD2O3Yrs,Can you describe the scene in the video with the boy in the black tights?,v_d6PdD2O3Yrs_997,"The video features a boy in black tights balancing above a pair of horizontal bars while an instructor in a white shirt stands next to him. There are also a few kids standing behind the bars wearing similar outfits, and a woman in a red shirt standing near foam padding beneath the bars. The gym appears to be well-lit with overhead lighting. After swinging on the bars a few times, the boy jumps onto the foam padding next to him.",0 998,v_3V9tzjyr51I,Can you describe the scene in the video?,v_3V9tzjyr51I_998,The video shows a man holding a racquet on a cloudy day playing tennis on a court surrounded by a metal fence with houses in the distance. The tennis player hits the ball towards the other end of the court before the video abruptly ends with a hand covering the camera lens.,0 999,v_di5f5hM05Vw,What is the video about?,v_di5f5hM05Vw_999,"The video primarily shows a man practicing Tai Chi movements in a well-lit indoor studio with light wood flooring and a mirror on the back wall, and a window on the right side wall covered in purple drapes. The man moves slowly and performs different Tai Chi stances until the end when he stops.",0 1000,v_JN1wuOpCZvk,What activities are the men in the video engaged in?,v_JN1wuOpCZvk_1000,"The video shows men engaged in different kinds of training such as drills on a trampoline, push-ups, ballet training, and performing a jumping routine in ballet costumes.",0 1001,v_JH9qiuPCkY4,What is the video about?,v_JH9qiuPCkY4_1001,"The video showcases people riding dirt bikes on a dirt path and going through lessons on different ways to ride dirt bikes on different surfaces. They are going over inclines in the path and riding during the daytime. The video also includes shots of tires painted yellow stuck on either side of the path, a wall with a red logo on it, and a clip with a rider wearing white gear speaking to the camera. The video ends with a shot of the driver wearing full safety gear, standing outside in the dirt bike yard and credits rolling.",0 1002,v_aQ-F9wr0HQ4,What actions are being taken in the video?,v_aQ-F9wr0HQ4_1002,"In the video, people are seen wiping various surfaces and using a spray bottle of ""Favor"" cleaning product. They are nodding to the voiceover and advertisements for the product are shown on wooden surfaces.",0 1003,v_0UTrTg3DF5g,What is Pinky doing in the video?,v_0UTrTg3DF5g_1003,"In the video, Pinky is standing behind a bar and mixing a drink called ""GIN E HENDRIX"" by adding different ingredients including ice cubes, cucumbers, lime, lemon, and basil leaves. She then pours the mixture in a tall glass with ice cubes and drops a black straw into it.",0 1004,v_Ie09KEAPP2I,What is the video about and what are the different things captured in it?,v_Ie09KEAPP2I_1004,The video captures a brown labrador retriever walking on a dirt path with a leash around its neck. It also shows a little boy wearing a black T-shirt and red trousers walking with a man who is wearing a baby sling. The cameraman who is wearing a blue T-shirt and glasses can be seen briefly on camera. Trees can be seen on the side of the path.,0 1005,v_Jdu5AqaWfz8,Can you describe what happens in the video?,v_Jdu5AqaWfz8_1005,"In the video, three men are on a yellow bungee jump platform during the day. One man wearing a strap jumps off while holding a thumbs up to the camera. He falls down, reaches the bottom and is pulled back up before dropping down again. He is then reeled down and two attendants draw him to the shore.",0 1006,v_Erje-PwY9hE,What scenes are shown in the video?,v_Erje-PwY9hE_1006,"The video shows kayaks tied to a pier, a man sitting in a yellow kayak, a man pushing the kayak out of a kayak training notch, another man rowing down a river wearing a yellow shirt and a yellow cap with a black backpack slung over his shoulder, a tortoise laying on a fallen log in the river, a group of kids in blue and red kayaks wearing life vests rowing, a group of people on yellow kayaks rowing in a river going through a canopy of tree branches, and adults and kids shown rowing on kayaks in the river.",0 1007,v_HgYuRKZ_V90,What happens in the video?,v_HgYuRKZ_V90_1007,"The video shows two teams playing field hockey during the day. One team is wearing blue and the other is wearing white. The video follows a player in a blue number 1 uniform as she dribbles the ball, receives a pass, or scores a goal. The player is sometimes wearing a white uniform with the number 1. The video also shows the player playing matches during the day and night, with a referee wearing a teal shirt. The video ends with the player scoring a goal and people celebrating.",0 1008,v__jV5sAOOHLk,Can you describe the events that take place in the video?,v__jV5sAOOHLk_1008,"The video begins with a man named Brandt introducing himself in front of a bike placed on a table. Next, he repairs a bicycle by fixing a punctured tire. He removes the tire, inserts a new tube, inflates it using a pump, and fixes the tire back to the bicycle using a wrench. The video ends by showing Brandt and other volunteers handing repaired bikes to their owners.",0 1009,v_JDwd6Ec454A,What is the rabbit doing at the beginning of the video?,v_JDwd6Ec454A_1009,"At the start of the video, the rabbit is grooming himself.",0 1010,v_34SBoGK8mT8,Can you describe the actions performed by the little girl in the video?,v_34SBoGK8mT8_1010,"In the video, the girl in a pink sweater runs towards the camera and goes to the hopscotch court drawn on the ground behind her. She hops on the squares and picks up a pebble from the last square. After throwing the pebble outside of the squares, she picks it up again and throws it into the hopscotch square. She repeats this a few more times before finally landing the pebble on the desired square and hopping towards it.",0 1011,v_fNhw7xE3NM8,What are the items and people shown in the room at the beginning of the video?,v_fNhw7xE3NM8_1011,"At the beginning of the video, the girl is in a room with printed walls and a chandelier. There are also some dolls, a green sofa, and a big green plant in the room. The room has a white door. The girl is wearing a black top.",0 1012,v_83f0iwb8VW8,What is happening in the video?,v_83f0iwb8VW8_1012,"In the video, two men are sparring in a dojo wearing protective gear while a man in a red t-shirt instructs them. They try different moves as they box, and the video ends as they stop sparring. The wall behind the men has a poster with the words ""THE CHOSEN FEW"" and a skull on it. People are visible sitting with their backs to the wall.",0 1013,v_Lb7Q8qv3MHU,Can you describe the main actions and movements happening in the video?,v_Lb7Q8qv3MHU_1013,"The video shows a girl in a dimly lit room picking up a bottle of mouthwash, taking a sip, gargling, and then spitting it out. She then proceeds to beatbox and picks up her toothbrush to brush her teeth with toothpaste. Finally, the video ends with the girl sticking her tongue out after finishing brushing her teeth.",0 1014,v_7dXqXFoju2M,What happens in the video?,v_7dXqXFoju2M_1014,"The video shows a woman standing in a dimly lit bathroom with a drinking glass and a cigarette. She looks at herself in the mirror, turns around, and taps her cigarette in front of the mirror. In the end, she places both the cigarette and the glass in front of her.",0 1015,v_A20uQSBtYMs,What is happening in the video?,v_A20uQSBtYMs_1015,"The video showcases a group of musicians playing various instruments including saxophones, piano, and guitar in a darkened room with a ""TWIN JAZZ"" banner in the background. The musicians all take turns playing their instruments and the video ends with the saxophone player stepping forward and shaking hands with the pianist.",0 1016,v_9InwA-ajB2M,What is happening in the video?,v_9InwA-ajB2M_1016,"In the video, a woman is seen riding a horse inside a ranch while a man wearing a cowboy hat and an orange shirt observes her. There is a concrete wall surrounding the ranch, and there is a sloping hill with trees visible outside the wall. The woman is using the reins to direct the horse, and the video ends with a still image of her on the horse.",0 1017,v_2nDbYhgdw2A,What are the different types of dance moves shown in the video?,v_2nDbYhgdw2A_1017,The video shows breakdancing moves such as the backspin and moonwalk. There are also clips of various kids dancing while others watched.,0 1018,v_eRco7yXc-40,What happens in the video with the person and the diving board?,v_eRco7yXc-40_1018,"The video shows a person jumping up and down from a diving board in a swimming pool. After a few jumps on the diving board, the person jumps high and performs a reverse somersault dive into the pool. The pool is dimly lit and lane ropes can be seen through the breadth of the pool some distance from the diver.",0 1019,v_IGZvj1J9tNc,Can you describe the training drill shown in the video?,v_IGZvj1J9tNc_1019,"The video features a basketball training drill where three players run across the court while the one in the middle dribbles the ball all the way and shoots the ball in the basket. The players then turn back, while a different player among the three, wearing a white uniform, collects the ball and runs back to the other side of the court with the others while dribbling the ball. Once they reach the basket, the girl with the basketball attempts to shoot the ball into the basket, while the other two turn around to block her. This is done repeatedly with multiple groups of players throughout the video.",0 1020,v_49PbyLbrxlE,Can you describe the scene in the bathroom portrayed in the video?,v_49PbyLbrxlE_1020,"In the video, a woman is standing in a bathroom in front of the mirror, washing a piece of cloth in the sink filled with dirty water. There are toiletries and a bottle of dish soap on the shelf in front of the mirror, and the bathroom walls are lined with white tiles. The woman is wearing a blue top and looks into the camera to speak to the cameraman.",0 1021,v_4QRRxub6L5Q,What is happening in the video and how does it end?,v_4QRRxub6L5Q_1021,The video shows a girl doing backflips on a foam platform while another girl watches. The platform is indoors and well-lit from above. The video ends with the girl successfully landing her backflips. There is also a cartoon sloth poster visible on the far wall.,0 1022,v_0DFz3sgfda0,What is the video about?,v_0DFz3sgfda0_1022,"The video showcases three girls making a salad in their kitchen. They add various ingredients to the salad and finish it off with oil, salt, and peanuts before holding up the finished plate to the camera.",0 1023,v_cCDffwsJvsY,What is shown in the video?,v_cCDffwsJvsY_1023,"The video shows a person lighting a fire in a backyard using kindling and arranging wood on the ground. Then, they light a few more pieces of kindling and place it on the firewood to help it light faster.",0 1024,v_11p9goB2rm8,What activities were the teenagers engaged with in the video?,v_11p9goB2rm8_1024,"In the video, the teenagers were seen playing basketball in a playground with other people. One of the boys was shown hopping through a hopscotch court that was drawn on the basketball court, followed by two other teens. Later, two of the boys attempted to do a pull-up from the basketball hoop by jumping and pulling themselves once from the basket before running a few feet away from it.",0 1025,v_4Gx_8vuxzAk,What is the woman doing in the video?,v_4Gx_8vuxzAk_1025,"In the video, the woman is polishing a coffee table using wood polish and a towel. She later explains how to fix cracks in the table.",0 1026,v_HMs703DhjQU,What is happening in the video?,v_HMs703DhjQU_1026,"In the video, two men are seen speaking in a well-lit kitchen, leaning on the counter. One of them is wearing a black suit and the other is Will Smith, the actor in a multi-colored shirt. They are standing in front of steel door ovens and a shelf with wine glasses behind them. Will Smith takes out his sunglasses and starts playing the harmonica while singing in between. The video ends with Will Smith stopping playing and looking to his right.",0 1027,v_Jy93pLzV2uw,What happens in the video?,v_Jy93pLzV2uw_1027,"The video shows a clip of a volleyball game between two teams. The team wearing the yellow uniform starts the game and hits the ball back and forth a few times with the team wearing the orange uniform. The team wearing orange gets the ball after a spectacular dive and hits it to the other side, causing the team wearing yellow to miss the ball and lose the exchange. The last play is replayed a few times before the teams get back into positions again.",0 1028,v_6wPVO7I8iIY,What happens in the video about making cocktails?,v_6wPVO7I8iIY_1028,"The video demonstrates a bartender making a cocktail by mixing various kinds of alcohol with flavoring agents, stirring it with ice, and pouring it into a cocktail glass. The video also shows the ingredients used for the cocktail and the bartender wiping the bar at the end.",0 1029,v_Fb4X1PWfOvY,What is shown in the video?,v_Fb4X1PWfOvY_1029,"The video shows a woman wearing a neon green T-shirt and black track pants with white stripes exercising on parallel bars in a park, followed by a man doing the same on an advanced level. The video promotes strength and ends with a text displaying a website for workouts.",0 1030,v_IfugNwywj-k,What is happening in the video?,v_IfugNwywj-k_1030,"In the video, an old man is shown repairing a bicycle in a well-lit shop. Another bicycle is parked next to the man against the wall. While he repairs the bike, a woman wearing a pink top enters the shop and they start to converse. The video ends with the two conversing and the man holding the woman by the ear.",0 1031,v_dZsk5Dp_5FE,What is happening in the video?,v_dZsk5Dp_5FE_1031,"In the video, a boy is chopping wood in the woods. He swings an axe and splits the log placed on a chopping block. He then picks a fresh log and repeats the process until the video ends with him holding a thumbs-up sign to the camera.",0 1032,v_AL1W3HkjJ2Y,Can you describe the woman in the video and what she is doing?,v_AL1W3HkjJ2Y_1032,The video starts with a woman holding a bow and shooting arrows on an indoor basketball court at a makeshift target made of sheets hung near the basketball hoop. She shoots arrows one after another until her quiver is empty.,0 1033,v_j_1kNiGcepU,What happens in the video?,v_j_1kNiGcepU_1033,The video shows a man playing the harmonica in a parking lot while another man records him on his phone. The harmonica player changes songs and greets someone walking behind him at the end.,0 1034,v_le7JdKQB65I,What is the woman doing in the video?,v_le7JdKQB65I_1034,"In the video, the woman is applying makeup, starting with a cream and then moving on to eyeliner, lipstick, contours, highlight, and blush. She finishes by looking at herself in a mirror.",0 1035,v_-6dz6tBH77I,What is happening in the video?,v_-6dz6tBH77I_1035,"In the video, we can see a man in athletic clothes standing in a net and holding a disk in his right hand. He spins a few times and then throws the disk from the open end of the net towards a direction where he looks. People outside the net and on the bleachers applaude him.",0 1036,v_BnO8AfQS8yE,Can you describe the physical appearance of the squash court and the players?,v_BnO8AfQS8yE_1036,The squash court is well-lit with a wooden floor. One player wears a black shirt and the other wears a yellow T-shirt.,0 1037,v_CvbBSwz-9XI,Can you describe what happens in the video?,v_CvbBSwz-9XI_1037,"In the video, a man pours water from a bucket on a dog who shakes the water dry. There are also close-up shots of the dog's face throughout the video.",0 1038,v_-cAcA8dO7kA,What happens in the video?,v_-cAcA8dO7kA_1038,"In the video, a man is seen riding a dirt bike in a dirt field during the daytime. He attempts to jump over a slight elevation, but lands with his front wheel first and crashes. In the end, the man can be seen struggling to get up.",0 1039,v_9snScUyE8_4,What is happening in the video?,v_9snScUyE8_4_1039,"In the video, a woman is washing dishes in a well-lit kitchen with a window behind her. She scrubs a few dishes with a scrubber and places them on the shelf next to the sink. In the end, she turns to the camera and yells after cleaning the dishes.",0 1040,v_96ADEnJy4GU,What are the different scenes shown in the video?,v_96ADEnJy4GU_1040,"The video starts with a man washing his hands, then shows people crossing a street, followed by a person welding in a dimly lit workshop, a monster truck splashing mud on a mud track, and a scene with cars moving through traffic.",0 1041,v_-D1gdv_gQyw,What actions does the man take in the video?,v_-D1gdv_gQyw_1041,The man in the video starts by lighting a firewood stack in the woods using a knife and fire starter. He then celebrates as the fire grows.,0 1042,v__a527xEzhkw,What is the video about and what happens in it?,v__a527xEzhkw_1042,The video features a girl wearing glasses and a grey shirt seated in a room holding a harmonica. She begins to play the harmonica while swaying back and forth to the music and continues playing for several minutes until the end of the video.,0 1043,v_cH3H-arDsH4,What is happening in the video of water polo?,v_cH3H-arDsH4_1043,"The video shows a game of water polo being played in a swimming pool. Players are seen passing the ball, scoring goals, and swimming to fight for the ball while others watch from the poolside. Two games of water polo are being played on either end of the pool.",0 1044,v_hvhny4-sI-w,Can you give a brief overview of what happens in the video?,v_hvhny4-sI-w_1044,"In the video, we see people sitting on white chairs on a lawn while watching a polo match going on in a polo field. There are two teams, one wearing a white polo shirt and the other wearing a red polo shirt, and the players are riding their horses and hitting the ball with mallets. Cameramen with cameras on tripods stand in front of the spectators and there is a building with a sloping roof in the back. Trees line the end of the field.",0 1045,v_d09u-0k3LdE,Can you describe the scene and action in the video?,v_d09u-0k3LdE_1045,The video shows a woman standing in a red vest inside a net with a hammer attached to a string. She swings and spins with the hammer before releasing it through the open end of the netting. There is a red mat on the ground and trees visible on the right side at the edge of the field.,0 1046,v_B0GCHDqEsRU,What is happening in the video?,v_B0GCHDqEsRU_1046,"In the video, a couple is dancing outside a garage while other people stand to the side. Children are playing in the background and a man is tending to a barbecue. Another couple, with the man wearing a red jacket and cap, joins in the dancing later on.",0 1047,v_aH39BSM0-Ag,What happens in the video?,v_aH39BSM0-Ag_1047,"The video is about a lacrosse game played by two teams, one wearing a blue-green jersey and the other wearing a grey jersey. Samuel Shearin, who is number 24 and wearing the blue-green jersey, is followed by the camera as he plays various positions on the field and tries to check the ball from his opponents. The game takes place in the daytime with spectators sitting near the boundary of the field and trees and shrubs dotting the outside. The video ends with Samuel chasing a player to check the ball.",0 1048,v_iqhdqhVttEM,What is happening in the video?,v_iqhdqhVttEM_1048,"In the video, we see a man leading a Zumba class outdoors during the daytime, with people following his lead. A crowd is gathered to watch and the class stops when the music ends.",0 1049,v_cECycCDw1Nc,Can you describe the process of making the sandwich in the video?,v_cECycCDw1Nc_1049,"In the video, a woman makes a sandwich by slicing a French roll in half and spreading pizza sauce on one side of the bread. She then adds pepperoni and cheese and bakes the sandwich in an oven. After taking it out, she adds tomato slices and shredded lettuce and puts the sandwich together.",0 1050,v_egowZOcbEkI,What happens in the video?,v_egowZOcbEkI_1050,The video shows an instructor speaking to the camera on a basketball court while showing a drill where a boy catches a basketball and dunks it in the basket. The instructor provides the boy with feedback during the drill and comments on his performance at the end of it.,0 1051,v_HURRgbZGz8Q,Can you describe the competition shown in the video?,v_HURRgbZGz8Q_1051,The video shows a spear-throw competition in an outdoor stadium where athletes throw spears while running. The landing of the spears is shown with numbered lanes. The audience applauds after each successful throw and a scoreboard with names and throw distances is shown at the end.,0 1052,v_afMQA352X_A,What is happening in the video?,v_afMQA352X_A_1052,"The video shows two men kickboxing in a park, with one man wearing boxing gloves and the other wearing a camo gi and focus mitts. They are practicing various punches and kicks while the trainer guides them and counts the moves. There are also people walking and sitting in the background of the park.",0 1053,v_l8gg9TYh_B0,What are the main events described in the video?,v_l8gg9TYh_B0_1053,"The video shows news anchors reporting behind a glass news desk. Then, there are some cutaway clips of people shoveling snow during the daytime. The video also includes interviews with two men and a doctor, as well as a clip of a reporter standing in front of a brown building. The video ends with the news anchors finishing their reporting.",0 1054,v_Ds2O0-8Labs,What is the man doing in the video?,v_Ds2O0-8Labs_1054,"In the video, the man is lifting barbells of increasing weights and repeatedly dropping them on the floor. He starts with a smaller barbell, lifts it above his head, and drops it a few times. He then moves to a well-lit area with a red wall and lifts an 85-kilogram barbell over his head before dropping it. He repeats this a few times with increasing weights and finally lifts a barbell of 130 kilograms before dropping it after lifting it above his head.",0 1055,v_k1QAWLupB-I,What happens in the video?,v_k1QAWLupB-I_1055,"The video begins with four people standing in front of cameras holding an old spice-branded ping pong paddle. They are outdoors during the day, with a ping pong table at their back. A woman wearing a black dress is photographed by multiple photographers, followed by a man in a red polo shirt joining her on the red carpet. They play a game of ping pong, ending as the woman hits the ball outside the table.",0 1056,v_9UvVeUYQLgA,What is the video about?,v_9UvVeUYQLgA_1056,The video is about a paintball arena with people in fluorescent vests and camo outfits shooting paintball guns while hiding behind cable drums and stacked tires.,0 1057,v_dEpUIpmBvow,What happens in the video?,v_dEpUIpmBvow_1057,The video shows a man wearing a grey vest climbing a rocky hill surrounded by trees. He is climbing free-handed and a rope is visible to his left with another man belaying it at the bottom. He reaches the top of the rock face and a woman turns the camera to herself and speaks into it.,0 1058,v_EZyLBq2jJtE,What happens in the video?,v_EZyLBq2jJtE_1058,"The video shows a woman named Bethany shaving her legs in an office while talking to the cameraman. Another woman enters the office and shows some papers to Bethany. There is also a woman standing behind Bethany wearing a grey top with black pants, black shoes, and glasses. Bethany then strikes a pose while standing in the office and eventually skips out of the frame.",0 1059,v_2fzIi1lPd8U,What is happening in the video?,v_2fzIi1lPd8U_1059,The video shows two kids playing with an elderly woman. They start playing hopscotch and the woman falls down towards the end.,0 1060,v_C7yd6yEkxXE,What happens in the video?,v_C7yd6yEkxXE_1060,"In the video, we see bikers riding on a dirt track with trees and vegetation visible around them. They approach a jumping ramp and jump over it before moving to the next one, with one rider jumping on the right and the other on the left. They then turn left after clearing the second ramp.",0 1061,v_IN23CO8Kotk,What is happening in the video?,v_IN23CO8Kotk_1061,"In the video, there is a parrot seen eating cream from a coffee cup. The coffee cup has a pink color and a butterfly painted on it. The wall behind the parrot is white and tiled. The birdcage can also be seen behind the wall. The video ends with the parrot still eating cream from the coffee cup.",0 1062,v_BFChXuwZ4wo,What does the video show about the women and the tattoo parlor?,v_BFChXuwZ4wo_1062,"The video follows two women as they enter a tattoo parlor. One woman gets a stencil on her wrist from the tattoo artist, who is wearing a white t-shirt and glasses. The tattoo artist cleans the area to tattoo and starts tattooing the girl's wrist. Once the tattoo is done, the girl holds it up to the camera and walks out of the tattoo parlor.",0 1063,v_9k19UUJtldg,What is the video about?,v_9k19UUJtldg_1063,The video shows a boy playing ping pong in various venues and against different opponents of different nationalities. It ends with a clip of him missing a hit against an opponent during a match.,0 1064,v_p1QGn0IzfW0,What kind of movements did the boy wearing the red t-shirt do?,v_p1QGn0IzfW0_1064,"The boy wearing the red t-shirt started his routine by swinging on the bars and doing a handstand. He then did other artistic gymnastics movements on the parallel bars, including handstands and swinging his legs to gain momentum.",0 1065,v_UZm05CvtxkA,What happened after the ball bounced once on the floor?,v_UZm05CvtxkA_1065,A player at the back hit the ball to the other side and the team on the right missed their hit.,0 1066,v_oR8o_PuKS28,What body parts are the men using to play beach volleyball in the video?,v_oR8o_PuKS28_1066,The men are only using their heads and legs to punt the ball back and forth.,0 1067,v_YIq3Tar9x6s,What do the girls do at the end of the video?,v_YIq3Tar9x6s_1067,"At the end of the video, the girl with the brush points her finger at the camera and her friend points her finger toward her nose.",0 1068,v_U3-MtKZeUXM,What is the color of the athlete's jersey and shoes?,v_U3-MtKZeUXM_1068,The athlete is wearing a blue and red jersey and white and red sports shoes.,0 1069,v_q_QR5HoROhI,What is the man wearing in the video?,v_q_QR5HoROhI_1069,The man is wearing a black coat over a white shirt.,0 1070,v_qsEnLQ2UnEA,What is the man carrying as he steps into the throwing circle?,v_qsEnLQ2UnEA_1070,The man is carrying a hammer attached to a handle through a metal string as he steps into the throwing circle.,0 1071,v_ZwK52lXCbhA,What is the man wearing in the video?,v_ZwK52lXCbhA_1071,The man is wearing a red sleeveless shirt.,0 1072,v_Y9d4iPDeigI,What do the boxers in the video wear and what colors are their boxing gloves?,v_Y9d4iPDeigI_1072,The boxer in the left corner is wearing blue shorts and blue boxing gloves while the boxer in the right corner is wearing red shorts and red boxing gloves.,0 1073,v_qtKa7Lr3URA,What are the people doing outside the house?,v_qtKa7Lr3URA_1073,"The three people are outside during the day. One woman is washing clothes using a stone on the ground. Another woman wearing a white top and jeans is watching the washerwoman as she washes the clothes, while a girl in a dark-colored top and yellow skirt is standing behind with her hands folded.",0 1074,v_P7Z4i1gmzjs,What type of equipment are there in the gym?,v_P7Z4i1gmzjs_1074,There are parallel bars and other equipment in the gym.,0 1075,v_ojIhxWrBM0s,What activities are depicted in the video?,v_ojIhxWrBM0s_1075,"The video shows a man seated in a barber chair, other customers getting their hair cut, a man reclining on a chair getting his hair washed, people waiting outside the salon, a shot of a man getting his hair cut in a well-lit salon, and the video ends with the barber finishing cutting the customer's hair and holding a mirror at his back to let him look at the back of his head.",0 1076,v_w4pO-1-FG5w,What kind of cape is the boy wearing during his haircut?,v_w4pO-1-FG5w_1076,The boy is wearing a blue cape with animated characters on it.,0 1077,v_vo2M4sY0E38,What is the woman doing in the video?,v_vo2M4sY0E38_1077,The woman is brushing a horse.,0 1078,v_WOUkPgHtt4E,What is the boy wearing and what is he doing on the armbar?,v_WOUkPgHtt4E_1078,"The boy is wearing a white vest and dark blue shorts. He jumps on the armbar from a white platform, swings both his legs in the air and stands on the armbar using his hands, changes his position on the armbar, and again stands on it with his hands.",0 1079,v_RjztFj0Zl40,What is happening in the beginning of the video with the yellow background?,v_RjztFj0Zl40_1079,"At the beginning of the video, some text appears on the screen with a yellow background.",0 1080,v_tSNg5rvDvVc,What is the man wearing while playing the saxophone in the video?,v_tSNg5rvDvVc_1080,"The man is wearing a black coat, black pants with a white shirt, and black shoes. He also has a mic attached to his right ear.",0 1081,v_Y16uL6dYDzQ,What are the clothes worn by one of the weightlifters?,v_Y16uL6dYDzQ_1081,"One of the weightlifters is wearing a grey T-shirt, black, and red shorts, and white sports shoes. Another weightlifter behind him is wearing a grey T-shirt, black shorts, and white sports shoes.",0 1082,v_wiaZCl-poRw,What is the man wearing and what is he doing?,v_wiaZCl-poRw_1082,"The man is wearing a black polo shirt and cargo pants, and he is mowing the lawn in a yard during the daytime.",0 1083,v_qqZLs6j3YII,What do the five children on the stage do when they play certain parts of the music?,v_qqZLs6j3YII_1083,The children turn left and right when they are playing certain parts of the music.,0 1084,v_IRBrTKrVCxo,What tools is the man using to polish the shoes in the video?,v_IRBrTKrVCxo_1084,The man is using a brush and a cloth to polish the shoes.,0 1085,v_xS5JDBeMxOs,What clothes are the men wearing in the video?,v_xS5JDBeMxOs_1085,One man is wearing a white T-shirt with grey capris while the other is wearing a yellow T-shirt and black jeans with a yellow and black cap.,0 1086,v_-uJnucdW6DY,What is happening in the video?,v_-uJnucdW6DY_1086,"The video shows kids playing in a grassy field, throwing and kicking a ball to each other while someone catches the ball and bumps it into another kid. This happens throughout the entire video.",0 1087,v_PzJsoZT2hXk,What are the women doing in the video?,v_PzJsoZT2hXk_1087,The women in the video are wrapping gifts and putting gift cards in them.,0 1088,v_YAMhMB1jdio,What are the barbershop employees wearing?,v_YAMhMB1jdio_1088,"The woman giving a haircut is wearing a white coat, grey top, black trousers, and a white mask. All the customers are wearing a white cloth cape. ",0 1089,v_EWNqkVaOfbE,What is the news reporter wearing during the cricket match introduction?,v_EWNqkVaOfbE_1089,The news reporter is wearing a dark grey coat during the cricket match introduction.,0 1090,v_Pjnuoa4o55c,What are the players wearing in the video?,v_Pjnuoa4o55c_1090,The players are wearing T-shirts and shorts with squash racquets. Three of them are wearing a cap turned backward.,0 1091,v_QOsG3BeQeX0,What is the man wearing and how is he positioned on the parallel bars?,v_QOsG3BeQeX0_1091,"The man is wearing a blue shirt and khaki shorts while swinging upside down from the bottom of the parallel bars. He is positioned in such a way that he is swinging back and forth, and he then rights himself and goes back to his previous position.",0 1092,v_zxpQHLwZCug,What is the man wearing and what is he holding?,v_zxpQHLwZCug_1092,The man is wearing a blue shirt and jeans and is holding an axe in his left hand.,0 1093,v_uvglcAUnQv0,What is the man wearing and what do they do in the video?,v_uvglcAUnQv0_1093,"The man is wearing a white shirt and black trousers. In the video, he walks over to the woman in the middle of the dance floor and they begin to slow dance.",0 1094,v_T7YcO-sOLuU,What does the label on the bottle of clear liquid say?,v_T7YcO-sOLuU_1094,"The label on the bottle of clear liquid says ""JASON MARKK"".",0 1095,v_OkvWTZ4XLyM,What is the man wearing and what is he holding?,v_OkvWTZ4XLyM_1095,"The man is wearing a white sleeveless shirt and tights, and he is holding a discus in his hands.",0 1096,v_sPK-sbHIb3w,What drill are the players practicing on the court?,v_sPK-sbHIb3w_1096,The players are practicing a drill where they take the ball and dunk it into the hoop with a spin.,0 1097,v_TEgPIueNqTI,What is the woman wearing in the video?,v_TEgPIueNqTI_1097,The woman is wearing a white top.,0 1098,v_zTHkqpNFGno,What is the woman wearing?,v_zTHkqpNFGno_1098,The woman is wearing a black top.,0 1099,v_vska7f8Zm9s,Where does the video take place and what is the weather condition?,v_vska7f8Zm9s_1099,The video takes place outside during the day in a snow-covered area.,0 1100,v_SV3v-nA6hXM,What kind of harness is the man wearing?,v_SV3v-nA6hXM_1100,The man is wearing a harness on his white shirt.,0 1101,v_w46wkDledek,What style of dancing are the girls doing in the video?,v_w46wkDledek_1101,The girls are doing Spanish-style partner dancing.,0 1102,v_TB5AeIdAndA,What is the man wearing and what is he doing in the video?,v_TB5AeIdAndA_1102,The man is wearing a blue jacket and jeans and he is playing the guitar and singing while sitting on the ground next to a lawn during the daytime. He also has an empty can next to him and between his legs. He plays the guitar until he finishes his song.,0 1103,v_sbnF7VVeopM,What types of footage are shown in the montage?,v_sbnF7VVeopM_1103,"The montage shows footage of people crossing the street, a person welding in a dimly lit workshop, a monster truck driving through a muddy track, and cars driving through traffic during the day.",0 1104,v_OESjoURo19U,What is the gender composition of the team on the near side of the basketball court?,v_OESjoURo19U_1104,The team on the near side of the basketball court has both girls and boys.,0 1105,v_SLHPvKh-_x8,What does the woman in the video demonstrate?,v_SLHPvKh-_x8_1105,The woman demonstrates how to wash her hands effectively using soap.,0 1106,v_ypfWA4aDL6k,What is happening in the video?,v_ypfWA4aDL6k_1106,"In the video, a man wearing a kilt is playing the bagpipe on a sidewalk during daytime. A person wearing a black hoodie and holding a little child is kneeling a few meters in front of the bagpipe player. People are walking past in front of the camera. People stop by in front of the musician to drop some change in front of him.",0 1107,v_rpjxjU-mLiw,What is the man wearing and what does he do in the video?,v_rpjxjU-mLiw_1107,"The man is wearing a teal T-shirt and black shorts. He walks into a throwing circle and starts his discus throw. After the throw, he walks towards the camera and claps his hands.",0 1108,v_sk_pnoqXxhs,What is happening in the beginning of the video?,v_sk_pnoqXxhs_1108,"The video starts with a toddler in a diaper standing on the sink, in front of the bathroom mirror bruising his teeth. A woman wearing a white shirt is standing behind them and to his right helping him. They are in a well-lit bathroom. The woman is teaching the toddler how to brush.",0 1109,v_YK9BIL9fKA0,What is the girl wearing in the beginning of the video?,v_YK9BIL9fKA0_1109,"The girl is wearing a maroon T-shirt, blue jeans, and red and white sneakers.",0 1110,v_GvMep9y7d7c,What is the man doing in the beginning of the video?,v_GvMep9y7d7c_1110,"The man is standing in front of a pegboard with some tools hung from it and displaying ""Calvin's Corner"" under his image.",0 1111,v_ZSdnDVGXU3k,What are the judges doing in the video?,v_ZSdnDVGXU3k_1111,The judges are seated some distance to the right of the balance beam.,0 1112,v_u3XOLSC7lg0,What is the man wearing in the breakdancing performance and what is the color of the hallway floor?,v_u3XOLSC7lg0_1112,"The man is wearing a black T-shirt, black pants, and black and white sneakers. The hallway floor has blue and red colors.",0 1113,v_skk-nX55gvA,Who is shown scoring a goal in slow motion?,v_skk-nX55gvA_1113,The person in the white cap identified as Justin Harrison is shown scoring a goal in slow motion.,0 1114,v_fh21bbDSVmA,What is the gymnast wearing?,v_fh21bbDSVmA_1114,The gymnast is wearing blue track pants and a white vest with blue and red stripes.,0 1115,v_wCexKIuAj3A,What is placed behind the sofa in the news studio?,v_wCexKIuAj3A_1115,"A TV screen with the word ""Daybreak"" is placed behind the sofa.",0 1116,v_tF8Nv-QxbIU,What type of shoes is the man cleaning in the video?,v_tF8Nv-QxbIU_1116,The man in the video is cleaning red suede shoes and dark blue high-heeled suede shoes using a suede block and suede brush.,0 1117,v_vAHR3iJhBXU,What type of nail art is the woman doing in the video?,v_vAHR3iJhBXU_1117,The woman in the video is doing a combination of pink nail polish with black blocks and two black rhinestones on the ring finger.,0 1118,v_tC5eMgePakk,What is the little girl wearing while playing the violin in the video?,v_tC5eMgePakk_1118,The little girl is wearing a pink outfit and a pink headdress while playing the violin in front of a tree by the shore of a lake during the daytime.,0 1119,v_UtV69uNmzlE,What is the woman doing in the beginning of the video?,v_UtV69uNmzlE_1119,The woman is sitting next to a toilet bowl and shaving her legs.,0 1120,v_vMcXLYBcHsM,Who walks behind the man and gives him a haircut?,v_vMcXLYBcHsM_1120,A woman wearing a hoodie walks behind the man and starts to give him a haircut.,0 1121,v_u7THn6D6y5w,What color is the gymnastics uniform of the little boy at the beginning of the video?,v_u7THn6D6y5w_1121,The little boy at the beginning of the video is wearing a maroon gymnastics uniform.,0 1122,v_yggwFa68Cp4,What is the boy wearing while playing the bagpipes in the video?,v_yggwFa68Cp4_1122,"The boy is wearing a white shirt, a sleeveless black sweater, and brown pants.",0 1123,v_PwTwGnAVFhQ,What is the woman wearing in the video?,v_PwTwGnAVFhQ_1123,The woman is wearing a pink top and black shorts.,0 1124,v_QT4d1nTQYSE,What tools does Jonas use to create the painting?,v_QT4d1nTQYSE_1124,Jonas uses a palette knife to spread paint from a bottle on the canvas.,0 1125,v_Xmp_twSbkAg,What is the girl wearing and what is on her study table?,v_Xmp_twSbkAg_1125,"The girl is wearing a black T-shirt and a pink full-sleeve top. There is a photo, some books, and a stuffed toy on her study table.",0 1126,v_zDdD_qA86rg,What safety precautions are being taken during the woman's climb?,v_zDdD_qA86rg_1126,"The woman is anchoring her rope as she climbs up, and another person is belaying the rope at the bottom to ensure her safety.",0 1127,v_tt-uDaZQWWc,What is the woman wearing while shaving the leg?,v_tt-uDaZQWWc_1127,The woman is wearing a yellow T-shirt and multi-colored pajamas.,0 1128,v_r6l4mxphtX0,What object does the woman sneeze into?,v_r6l4mxphtX0_1128,The woman sneezes into a tissue.,0 1129,v_Oskk7eLgerM,What does the man use to bathe the dog?,v_Oskk7eLgerM_1129,The man uses a handheld showerhead to bathe the dog.,0 1130,v_T35cHr4pjkc,What is the man wearing and what is he doing in the cafe?,v_T35cHr4pjkc_1130,The man is wearing a white dress shirt and black trousers. He is drinking from a cup and dancing in the cafe.,0 1131,v_Pr5K2Jh2X94,What color is the outfit worn by the athlete preparing for a long jump?,v_Pr5K2Jh2X94_1131,The athlete is wearing a red outfit.,0 1132,v_YU-dUWGOoD4,What is the gymnast wearing at the beginning of the video?,v_YU-dUWGOoD4_1132,The gymnast is wearing a white vest and red pants.,0 1133,v_zRqJZ0u6f88,What is the man doing in the video?,v_zRqJZ0u6f88_1133,The man is cleaning a closed window with a cloth and spray bottle while speaking to the camera.,0 1134,v_QY3q4DuiGq8,What is the girl doing in the video?,v_QY3q4DuiGq8_1134,The girl is participating in a discus throwing competition.,0 1135,v_X9Y-b-SbkIU,What is the attire of the instructor teaching squash?,v_X9Y-b-SbkIU_1135,"The instructor is wearing a white T-shirt, white shorts, and blue sports shoes.",0 1136,v_uub0z8wJfhU,What interrupted the violinist during his performance in the video?,v_uub0z8wJfhU_1136,"The man was interrupted during his performance, although it is not specified what caused the interruption.",0 1137,v_X5kj4fZ38rc,What is the woman wearing in the video?,v_X5kj4fZ38rc_1137,The woman in the video is wearing a dark blue printed top.,0 1138,v_rGOOlcdpfLg,What makeup does the woman apply first?,v_rGOOlcdpfLg_1138,The woman applies black makeup on her eyebrows first.,0 1139,v_fMVuGUBs2cs,What is the bartender wearing in the video?,v_fMVuGUBs2cs_1139,"The bartender is wearing a dark grey sleeveless coat, a white shirt, and a black tie.",0 1140,v_PSB1nM3QXxg,What are the two boys doing in the video?,v_PSB1nM3QXxg_1140,The two boys are demonstrating martial arts movements and then bowing.,0 1141,v_TKgU9QJXw2w,Who gets hit by the ball in the video?,v_TKgU9QJXw2w_1141,One of the boys playing in the racquetball court gets hit by the ball. He goes down and lies on the ground with his hand on his head.,0 1142,v_WAvz9zHwWo4,What did the girl do after swinging from the high bar?,v_WAvz9zHwWo4_1142,"After swinging from the high bar, the girl swung onto a smaller high bar next to it, stood on it and jumped back to the bigger high bar. She swung from it a few more times and landed on the mat.",0 1143,v_uIcMgjypbqk,What happens when the bright light on the stage transitions into red light?,v_uIcMgjypbqk_1143,A man is seen on the stage with a guitar and a man is running on the stage.,0 1144,v_vaV6_bxiTLI,What is the girl wearing in the video?,v_vaV6_bxiTLI_1144,The girl is wearing a white top and black shorts in the video.,0 1145,v_z-EPAHsmTMA,What is the girl wearing in the advertisement on the TV?,v_z-EPAHsmTMA_1145,The girl in the advertisement on the TV is wearing a white outfit.,0 1146,v_pJ3sECWr5Xg,What color outfit is the boy wearing in the video?,v_pJ3sECWr5Xg_1146,The boy is wearing a white shirt and black pants.,0 1147,v_vI-O6QWIIGU,What caused the gymnast to drop to the floor in the middle of his routine?,v_vI-O6QWIIGU_1147,The gymnast missed a hold and dropped to the floor.,0 1148,v_XPiMnbCr-sc,What is being gift-wrapped in the video?,v_XPiMnbCr-sc_1148,The white box on the wooden table is being gift-wrapped in the video using a peach-colored cloth.,0 1149,v_w_CXbraJr58,What is happening in the video?,v_w_CXbraJr58_1149,"A man is playing the bagpipe in a walkway. He is wearing a Scottish kilt and beret, and is standing near a light pole. There are people around, some of them watching him and taking photos. A little boy wearing a white shirt and shorts is standing next to the man. A man wearing a blue shirt and shorts is laying on the ground, taking pictures of the bagpipe player. There are a few people sitting on a bench at the far back, with a flower patch behind them. As the bagpipe player continues to play, different people come to watch him, take pictures or record him. The video ends as people are still standing in front of the musician as he has stopped playing. Moreover, a boy in a grey t-shirt and a backpack can be seen walk in front of the camera.",0 1150,v_ZLJ2BmBkLJg,What does the man do after he finishes trimming his face and neck?,v_ZLJ2BmBkLJg_1150,"After the man finishes trimming his face and neck, he applies shaving foam to his face and uses a razor to shave his face and neck. He wipes his face with a cloth after he is done and applies aftershave to finish the process, and adjusts his hair.",0 1151,v_Sf27WmcLb2w,Who serves the ball at the beginning of the video?,v_Sf27WmcLb2w_1151,A man wearing a black sleeveless t-shirt and red shorts serves the ball at the beginning of the video.,0 1152,v_vSv1qMMt4Bk,What is the setting of the video?,v_vSv1qMMt4Bk_1152,"The video is set in a well-lit studio where two newscasters are seated behind a newsdesk with two tablets and two wireless mice on it. There is a screen with the text ""Health News"" visible behind them.",0 1153,v_p9lhwYsBWdc,What are the window cleaners wearing in the video?,v_p9lhwYsBWdc_1153,The window cleaners are wearing costumes of the Hulk and Batman.,0 1154,v_ZrSK-fisXGg,What is the woman wearing while getting her ears pierced?,v_ZrSK-fisXGg_1154,The woman is wearing a white top.,0 1155,v_p07Y--q4JQw,What is the man wearing who is applying the clear solution to the woman’s nails?,v_p07Y--q4JQw_1155,The man applying the solution is wearing a camouflage pattern shirt.,0 1156,v_TsHek6oZYXU,What is the web address displayed on the digital poster at the beginning of the video and at the end?,v_TsHek6oZYXU_1156,The web address displayed on the digital poster at the beginning of the video and at the end is taichisecretmovements.com.,0 1157,v_QN-4aLiDhiQ,What is the tattoo artist cleaning before starting the tattooing process?,v_QN-4aLiDhiQ_1157,The tattoo artist is starting to clean the area on the right side of the girl's stomach to start tattooing.,0 1158,v_UGWOtDmIcns,What is the woman wearing and where is she located in the video?,v_UGWOtDmIcns_1158,The woman is wearing an orange top and blue jeans and is located in a forest with big trees holding the rope tied to the man who is rock climbing.,0 1159,v_PNuJUYo3Hf8,What type of boats are seen in the video?,v_PNuJUYo3Hf8_1159,Several foiling catamarans with different brand names painted on them are seen in the video.,0 1160,v_TMAXjnsN0Mk,What utilities are shown in the video alongside the Uggs?,v_TMAXjnsN0Mk_1160,"In the video, a woman stands behind a pair of Uggs and some utilities to clean it.",0 1161,v_skr8x0kUVwg,What color is the shirt of the person who runs towards the little boy?,v_skr8x0kUVwg_1161,The person who runs towards the little boy is wearing a red T-shirt.,0 1162,v_YnjITZnk6OE,What equipment are the players wearing on the hockey rink?,v_YnjITZnk6OE_1162,The players on the hockey rink are wearing full gear including hockey sticks and gloves.,0 1163,v_UNJTM62HyqQ,What ingredients did the chef point to on the metal table?,v_UNJTM62HyqQ_1163,The chef pointed to the ingredients kept in front of him on a metal table.,0 1164,v_SEVVSei-r6w,What does the man wear and hold at the beginning of the video?,v_SEVVSei-r6w_1164,The man wears a blue vest and black shorts and he is holding a hammer with a handle attached to a string inside a practice net.,0 1165,v_UaO7bS5Ky6M,What is the woman wearing in the video?,v_UaO7bS5Ky6M_1165,"The woman is wearing a maroon top, black trousers, and pointe shoes.",0 1166,v_wEehiYq9ttE,What item is visible in the store display case?,v_wEehiYq9ttE_1166,A guitar is visible in the display case of the store.,0 1167,v_rklYNAAaI3Y,What is the little boy doing in the video?,v_rklYNAAaI3Y_1167,The little boy is standing next to the woman and trying to help her by pulling clothes from the bucket.,0 1168,v_ZVjLscGMOs8,Who is leading the workout session in the video?,v_ZVjLscGMOs8_1168,The woman in the front is the instructor.,0 1169,v_z6pmp8TrAVo,What kind of shirt is the man wearing while washing the plate?,v_z6pmp8TrAVo_1169,The man is wearing a grey T-shirt while washing the plate in the kitchen.,0 1170,v_vzUeFzhVYLg,What type of dive did the woman perform?,v_vzUeFzhVYLg_1170,The woman performed a dive with a tuck and several turns into the pool.,0 1171,v_wFVukrQfQhI,What safety gear are the girls wearing?,v_wFVukrQfQhI_1171,Both the girls are wearing safety glasses.,0 1172,v_rOtmhurweqo,What is the old man wearing while peddling the exercise bike?,v_rOtmhurweqo_1172,The old man is wearing a white T-shirt and track pants while peddling the exercise bike.,0 1173,v_RXT17X7lRoQ,What do the girls in the video wear?,v_RXT17X7lRoQ_1173,The girls in the video are wearing black and pink lacrosse uniforms.,0 1174,v_YOk1cMsyk88,What causes the man to fall off the skateboard?,v_YOk1cMsyk88_1174,The man loses his balance causing him to fall off the skateboard.,0 1175,v_qmHjHk0Hzz8,What is the man wearing in the video?,v_qmHjHk0Hzz8_1175,The man is shirtless and wearing black shorts.,0 1176,v_rc-DiL5er28,What are the colors of the t-shirts worn by the two dodgeball teams?,v_rc-DiL5er28_1176,The team on the right is wearing blue t-shirts and the team on the left is wearing yellow t-shirts.,0 1177,v_fM5egP_1DvQ,What is the color of the vest the man who won the gold medal is wearing?,v_fM5egP_1DvQ_1177,The man who won the gold medal is wearing a dark blue T-shirt.,0 1178,v_R_JKmGmURvA,What is the man wearing in the video?,v_R_JKmGmURvA_1178,The man is wearing a black polo shirt and shorts.,0 1179,v_vIQPDP8jW8A,What ingredients does the bartender use to prepare the cocktail in the video?,v_vIQPDP8jW8A_1179,"The bartender uses cucumber, Bombay Sapphire Gin, St. Germain liquor, lemon juice, ginger syrup, elderflower syrup, and egg whites to make the cocktail in the video.",0 1180,v_-pkfcMUIEMo,What is the man wearing and what is he doing in the video?,v_-pkfcMUIEMo_1180,The man is wearing winter weather clothing and holding a snow shovel. He speaks to the camera and demonstrates how to shovel snow by scooping a large pile of snow and throwing it to the side. He repeats this a few times and then walks over to the camera to shut it off.,0 1181,v_VhdidrZKuTU,What does the man do after he arranges the firewood in front of the crumpled newspapers?,v_VhdidrZKuTU_1181,He sprinkles some table salt and white pepper powder on the arrangement before lighting the paper with a lighter.,0 1182,v_W4mJsJGa0CY,What caused the man to slip during his routine?,v_W4mJsJGa0CY_1182,The man loses balance in the middle of his routine and slips to the floor.,0 1183,v_TkhUtx0Eyfw,What is happening at the beginning of the video?,v_TkhUtx0Eyfw_1183,"At the beginning of the video, a girl is sitting on a chair in a well-lit store, with jewelry and clothes on sale on racks in the back. She is wearing a black outfit and sitting next to a jewelry display while a technician wearing white gloves is marking the girl’s ear to pierce it.",0 1184,v_Q3ZNFGE8PZE,What is the boy wearing while he is dancing in the alley?,v_Q3ZNFGE8PZE_1184,"The boy is wearing a sweater over a shirt, khaki trousers, white gloves, and a white cap.",0 1185,v_QriYk3MKSnM,What kind of room are the girls in?,v_QriYk3MKSnM_1185,The girls are in a dimly lit living room with a shut window at the back.,0 1186,v_x90zpDHTpjQ,What is happening in the video and where is it taking place?,v_x90zpDHTpjQ_1186,"In the video, a man wearing a white and black t-shirt is in a well-lit gym with wooden walls and windows at the top allowing sunlight to come through. He is seen attempting to lift a barbell while a person in the back is lifting one too. The video ends as he walks towards the camera and speaks.",0 1187,v_X4J9UBXb0FM,What do the athletes wear during the pole vaulting competition?,v_X4J9UBXb0FM_1187,"The man at the start of the video wears a vest and black shorts. An athlete later wears a blue vest and shorts, while another athlete wears an orange vest and shorts later in the video.",0 1188,v_zXHyFBrj5Ag,What is the man wearing and what is he ironing?,v_zXHyFBrj5Ag_1188,The man is wearing a striped blue and black t-shirt and shorts and he is ironing a blue and white Hawaiian shirt on an ironing board.,0 1189,v_PwRqqR1YmPM,What are the observers near the bars doing?,v_PwRqqR1YmPM_1189,The observers near the bars are using binoculars to watch the athletes pole vaulting.,0 1190,v_peiF2E05u8g,What is the girl doing in the beauty salon?,v_peiF2E05u8g_1190,The girl is getting makeup applied to her face by a beautician while sitting in a well-lit beauty salon.,0 1191,v_GChGC-VJZHs,What type of gear are the motorcyclists wearing?,v_GChGC-VJZHs_1191,The motorcyclists are equipped with off-road gear and helmets riding on dirt bikes.,0 1192,v_Ur_ToogEkCA,What is the woman on the sideline wearing and what color is it?,v_Ur_ToogEkCA_1192,The woman on the sideline is wearing a blue vest over a red top.,0 1193,v_YAKXrBinGD4,What are the people wearing in the video?,v_YAKXrBinGD4_1193,"The woman is wearing a light blue T-shirt, black trousers, and a life vest. One of the men is wearing a white T-shirt, a white cap, and a life vest while the other one is wearing a sleeveless black T-shirt, a grey and black cap, and a life vest.",0 1194,v_qU4GmCN2e1Y,What type of tricks does the man perform on the parallel bars?,v_qU4GmCN2e1Y_1194,"The man performs a handstand and holds himself up using the parallel bars, followed by holding a sitting position by keeping his legs parallel to the ground. He finishes up with another handstand.",0 1195,v_FqYhC6_CMfI,What happens at the end of the video with the windsurfer and what is he wearing?,v_FqYhC6_CMfI_1195,"At the end of the video, the windsurfer falls off his board while windsurfing. He is wearing a dark blue vest and white shorts.",0 1196,v_s9PkkDEl6aY,What is the instructor wearing?,v_s9PkkDEl6aY_1196,The instructor is wearing a green top and khaki pants.,0 1197,v_ROrLMf0zXko,What is the name of the breakdancing move the man in white does on the mat?,v_ROrLMf0zXko_1197,The man in white does a breakdancing move called helicopter spin on the mat on the street.,0 1198,v_W6fPv5eoXC4,What is the man wearing and how is he positioned on the tennis court?,v_W6fPv5eoXC4_1198,"The man is wearing a grey sleeveless shirt and blue shorts, and he is on a tennis court during the daytime. He picks up a tennis ball from a basket, bounces it on the ground a few times, and serves it. He walks a few steps forward as he serves the ball.",0 1199,v_zB8knKX0W8Q,What is the man doing in the beginning of the video?,v_zB8knKX0W8Q_1199,The man sitting inside an antique store is speaking in the beginning of the video.,0 1200,v_OlykXdYeQOI,Who else enters the frame during the video?,v_OlykXdYeQOI_1200,A little girl walks into the frame on the left.,0 1201,v_PdwWFueQErM,What is the man wearing in the video?,v_PdwWFueQErM_1201,The man in the video is wearing a black sweater and jeans while shoveling snow.,0 1202,v_TZOhIMjwEE8,What is the woman wearing while lawn-mowing in the video?,v_TZOhIMjwEE8_1202,"The woman is wearing a white vest, grey trousers, and white sports shoes while lawn-mowing in the video.",0 1203,v_GH0Umpw6tME,What is the instructor wearing?,v_GH0Umpw6tME_1203,"The instructor is wearing a grey vest, black cap, and black shorts with sports shoes.",0 1204,v_UvOEuhS0V3E,What is the man wearing in the second clip?,v_UvOEuhS0V3E_1204,The man is wearing an olive T-shirt.,0 1205,v_ZY0cdXr_1MA,What is the brand shown at the end of the video?,v_ZY0cdXr_1MA_1205,The brand shown at the end of the video is Under Armor.,0 1206,v_QOaPQpXemCA,What is the name of the beautician in the video?,v_QOaPQpXemCA_1206,"The beautician in the video is introduced as ""Swathi Gupta"".",0 1207,v_ZK4Y6nOton8,What happened to the shuttlecock while the two girls were playing?,v_ZK4Y6nOton8_1207,"The shuttlecock was missed by both girls, and a child standing outside the court picked it up and threw it at one of the girls.",0 1208,v_uCvjzcVCtEs,What is the color of the athlete's vest in the video?,v_uCvjzcVCtEs_1208,The athlete in the video is wearing a blue vest.,0 1209,v_zoWqv-sIdBY,What is happening to Ivan's hair in the video?,v_zoWqv-sIdBY_1209,"Ivan's hair is being combed by Oscar, who is standing behind him in the bedroom.",0 1210,v_qmfZw9eEpIU,What safety gear is the man wearing and what is he standing on while windsurfing in the video?,v_qmfZw9eEpIU_1210,The man is wearing a life vest and sunglasses while windsurfing on a red windsurfing board with an attached sail.,0 1211,v_tLk0Y04OaCA,What does the girl in the blue shirt do after exiting the toilet stall?,v_tLk0Y04OaCA_1211,The girl in the blue shirt walks to a brightly-lit sink and starts to wash her hands.,0 1212,v_VWGV8I5byKI,What type of clothing is the man in the video wearing?,v_VWGV8I5byKI_1212,The man in the video is wearing a T-shirt and black shorts while training for shotput.,0 1213,v_sNJ6_N0j9Ts,Who starts the game and what is he wearing?,v_sNJ6_N0j9Ts_1213,A man in a blue t-shirt starts the game. ,0 1214,v_t13MQSYjlas,What is the man doing in the video?,v_t13MQSYjlas_1214,The man is performing a hammer throw.,0 1215,v_syfyM1Pble8,What is the woman wearing who can be seen walking away?,v_syfyM1Pble8_1215,The woman is wearing a grey t-shirt.,0 1216,v_u0A5NIUKEQo,What costumes are the boys wearing and what are they doing in the mall?,v_u0A5NIUKEQo_1216,"The boy wearing a Santa costume is carrying a huge box and the other boy is wearing an Elves costume. The boy wearing the Santa costume keeps the box on the floor and knocks the box, the other boy jumps out of the box and they two start dancing in the mall.",0 1217,v_-vnSFKJNB94,What types of diving maneuvers does the man perform in the video?,v_-vnSFKJNB94_1217,"The man performs dives using tucks, twists, forwards dives, and other maneuvers from the diving board.",0 1218,v_Ws12Dt0Ny5Q,What is the color of the crop top and sports shoes worn by the first athlete in the video?,v_Ws12Dt0Ny5Q_1218,The first athlete in the video is wearing a red crop top and red sports shoes.,0 1219,v_tY9dmG6IyPo,What is the athlete wearing while performing the hammer throw and where is she competing?,v_tY9dmG6IyPo_1219,"The athlete is wearing a red and white short vest, blue shorts, and black sports shoes while competing in a hammer throw competition in a stadium with a grassy field and stadium lights. ",0 1220,v_wJk3KOUAwXA,What is the man doing inside the woodworking shop with the steel wool and the car buffing wheel?,v_wJk3KOUAwXA_1220,The man is applying wax on the surface of the table using a ball of steel wool and polishing it with a car buffing wheel. He then buffs the surface with a wet rag.,0 1221,v_wh4JNeQh9FQ,What is the technician doing with the tattoo gun?,v_wh4JNeQh9FQ_1221,The technician is tattooing the girl's earlobe with the tattoo gun.,0 1222,v_WdJUMmy2ox8,What is the man on the left wearing and doing?,v_WdJUMmy2ox8_1222, The man on the left is wearing a black shirt and jeans. He is smoking a hookah and using his mobile phone.,0 1223,v_ooFuSspUuVY,What kind of obstacles does the girl ride the horse over in the video?,v_ooFuSspUuVY_1223,"The girl leads her horse through a few obstacles, and the horse jumps over them. She leads the horse multiple times over different obstacles.",0 1224,v_tXUssW4vT3o,What is the color of the belly dancer dress?,v_tXUssW4vT3o_1224,The belly dancer is wearing a sparkling turquoise-colored dress.,0 1225,v_TGIQtaINzCY,What type of exercise bikes are the people in the class using?,v_TGIQtaINzCY_1225,The video does not specify what type of exercise bikes are being used by the people in the class.,0 1226,v_ZUl43hNzGjA,What is the teacher wearing in the beginning of the video and what are the students doing in the ballet studio?,v_ZUl43hNzGjA_1226,"In the beginning of the video, the teacher is wearing a white t-shirt and pants. The students in the ballet studio are practicing ballet while the teacher talks to them.",0 1227,v_sBwUwgTjhAU,What does the woman wearing a sweater over a red outfit do after looking into the camera?,v_sBwUwgTjhAU_1227,The woman walks to a desk with a computer in the back and sits down.,0 1228,v_WCS8dzRT7Xk,What is the woman wearing and how is she positioned in the video?,v_WCS8dzRT7Xk_1228,The woman is wearing a grey shirt and is standing behind an ironing board in a well-lit room with a wood wall behind her. A bookcase is placed behind and to the left of the woman.,0 1229,v_wjr5M-6qEWI,What is the color of the court where the players are playing?,v_wjr5M-6qEWI_1229,The players are playing on an orange court.,0 1230,v_GOF5guH_kuI,What is the color of the female gymnast’s costume?,v_GOF5guH_kuI_1230,The female gymnast is wearing a sparkling red gymnast costume.,0 1231,v_uqwf903l5-E,What are the members of the group doing in the video?,v_uqwf903l5-E_1231,"The group is performing cheerleading dance steps and lifts throughout the video, doing flips and cartwheels. Some of the group members also clap and do backflips. One of the boys falls after doing a backflip.",0 1232,v_zxr6UZKPDh4,What is the color of the life vest worn by the man rowing the kayak?,v_zxr6UZKPDh4_1232,The man is wearing a red life vest over a black shirt.,0 1233,v_SNJgJB2PGdI,What is the woman doing in the video?,v_SNJgJB2PGdI_1233,The woman is belly dancing.,0 1234,v_Zhx6BYVb64g,What is the sequence of events that the boy plays the violin in different locations?,v_Zhx6BYVb64g_1234,"The boy wearing a white t-shirt and glasses starts playing the violin with text on a black screen in the background. Then the video shifts to a dimly lit room where the boy is wearing a grey shirt and sunglasses and walking through the room and house as he plays. Other people join him as he walks. The clip changes again as he is shown sitting on a couch, then getting up and leaving, before returning wearing a grey shirt and sunglasses and taking selfies with a girl. Cutaways of the boy playing the violin are shown in between shots. Another boy, wearing a black t-shirt, joins the first while he is playing the violin. Finally, the video ends with the boy knocking on a door and handing a stuffed animal to a girl.",0 1235,v_oncTwYfvCD8,What are the different locations where the man is demonstrating various martial arts movements?,v_oncTwYfvCD8_1235,"The man is seen demonstrating martial arts movements in a well-lit studio with people sitting down on the floor, on the lawn outdoors during the daytime, and in an indoor venue with people sitting on the sides.",0 1236,v_yttmx8mcjGw,What is happening in the video?,v_yttmx8mcjGw_1236,"In the video, two women are sitting on a beach wearing yellow and pink Ford logo T-shirts, while people are seen walking around and playing cricket. In one clip, a man rolls up a carpet and lowers a box, and a woman in a yellow T-shirt and sunglasses is getting ready to bat with people around her fielding or watching. The video features a montage of cricket games being played professionally or informally at homes, beaches, and stadiums, including clips of matches played by the Australian cricket team. The video ends with a child with a cricket bat near the stumps getting ready to bat.",0 1237,v_wcxEkMoOmBk,What are the women doing in the next clip after they are shown seated in the salon?,v_wcxEkMoOmBk_1237,The women are shown attaching hair rollers to their hair one at a time.,0 1238,v_zEttEkAdHts,What is being taped to the gift in the video?,v_zEttEkAdHts_1238,Currency notes of one US dollar are being taped to the gift in the video to look like gift wrapping.,0 1239,v_z3MP0yJBtGg,What is the woman wearing and what is she doing with the ladles?,v_z3MP0yJBtGg_1239,"The woman is wearing a black hoodie and jeans skirt and she is using the ladles arranged on top of the stone dipper well to scoop out water and wash both of her hands. First, she uses the ladle with her right hand, then washes her left hand, after which, she uses her left hand to scoop out water and washes her right hand.",0 1240,v_Omvg9UtGOes,What is the color of the cloth on the inside?,v_Omvg9UtGOes_1240,The cloth on the inside is pink.,0 1241,v_oni9K1_MCuw,What instrument do the five people in the orchestra play?,v_oni9K1_MCuw_1241,The five people in the orchestra play different instruments.,0 1242,v_Rn6_IwckXg4,What is happening in the video?,v_Rn6_IwckXg4_1242,"In the video, a woman wearing a black coat over a blue top is smoking an e-cigarette with another woman behind her watching. A man wearing a checkered shirt and glasses also smokes an e-cigarette. The video continues as a montage of different people smoking the e-cigarette is shown. A woman wearing a red outfit with a hat is standing next to most of the people.",0 1243,v_TNqc2yWZztE,What is the woman wearing while gift-wrapping in the video?,v_TNqc2yWZztE_1243,The woman is wearing a grey and white sweater.,0 1244,v_UNXLfqkwKFc,What is the man wearing and what is he doing in the video?,v_UNXLfqkwKFc_1244,The man is wearing blue shorts and he is vacuuming the dust off the floor.,0 1245,v_W9H2qVnIWXs,What is the visual appearance of the man that enters the shop with his dog in a harness?,v_W9H2qVnIWXs_1245,The man who enters the shop with his dog in a harness is wearing a brown jacket and jeans.,0 1246,v_ZxPF3s_OLDo,What equipment is the man wearing?,v_ZxPF3s_OLDo_1246,"The man is wearing a red t-shirt, a belt with a chalk pouch, and rappelling down with a rope.",0 1247,v_p1QGn0IzfW0,Can you describe the detailed sequence of events in the video with parallel bars and gymnastics movements?,v_p1QGn0IzfW0_1247,"In the video, we see two boys dressed in red and black t-shirts, respectively. The boy in the red t-shirt is standing on an elevated platform at the end of parallel bars, while the boy in the black t-shirt is standing next to him. The gym is well-lit and we can see other equipment such as a high bar and still rings. People are visible walking around and using other equipment. Behind the boy in the red t-shirt, there is a glass door. As the boy starts his routine, he swings on the bars and performs a handstand. He then goes on to do other artistic gymnastics movements on the bars, including more handstands and leg swings to gain momentum. Overall, the video captures the impressive and skilled athletic movements of the gymnasts on the parallel bars.",0 1248,v_UZm05CvtxkA,Can you describe the video in detail?,v_UZm05CvtxkA_1248,"The video begins on a well-lit, indoor volleyball court, with two teams in the middle of a game. There are spectators sitting near the back where a stage covered in drapes can be seen. As the game progresses, the team on the left almost misses a hit, but a player at the back manages to hit the ball to the other side, causing the team on the right to miss their hit. The team on the left wins the exchange and the spectators can be seen celebrating. Overall, the video captures a dramatic volleyball game with spectators cheering on their favorite teams.",0 1249,v_oR8o_PuKS28,Can you describe the video content in detail?,v_oR8o_PuKS28_1249,The video depicts a scene of beach volleyball with four men playing over the net using only their heads and legs to punt the ball back and forth. The players are positioned near the shores during the daytime. One man is standing near the right pole while trees can be seen in the far back. The sea is also visible with a few boats sailing. There is a lawn to the left of the players.,0 1250,v_YIq3Tar9x6s,Can you describe the video in detail?,v_YIq3Tar9x6s_1250,"The video starts in a dimly lit room with green walls, where a girl is combing her friend's hair, who is wearing a black sweatshirt, while the girl combing is wearing a black sweatshirt, white top, and blue jeans. In the room, there is a bed with multicolored bedsheets and a white couch to their right. While the girl is combing her friend's hair with a brush, someone takes a photo, and the friend covers her face with both palms. They pose for the camera by doing a thumbs-up gesture, hugging, and giving flying kisses. Soon after, the girl continues combing her friend's hair. The video ends with the girl with the brush pointing her finger at the camera, and her friend pointing her finger toward her nose.",0 1251,v_U3-MtKZeUXM,Can you describe the video in detail?,v_U3-MtKZeUXM_1251,"In the video, a male athlete wearing a blue and red jersey and white and red sports shoes is seen preparing to perform a hammer throw. He is surrounded by a green net tied to silver poles, walking towards the center of the ground. Buildings and trees can be seen outside the ground and some people are standing on the left side of the athlete. The athlete starts by swinging the hammer using both his hands and then rotates his entire body to throw the hammer in the air. The video ends with him throwing the hammer and walking out of the throwing circle.",0 1252,v_q_QR5HoROhI,Can you describe the video in detail?,v_q_QR5HoROhI_1252,"In the video, a man wearing a black coat over a white shirt is seen sitting behind a desk with various nail paints in a well-lit room. The video starts with a web address and the text ""Mosaic Nail."" He is shown painting the index finger nail of a woman with black ink using a small brush and then placing her fingers under a curing lamp for drying. Later, the man begins to apply glitter of different colors on the black-painted nail and seals the glitter with instant seal, curing the paint under a curing lamp. In the end, he applies cuticle oil around the nail.",0 1253,v_qsEnLQ2UnEA,Could you describe the video in detail?,v_qsEnLQ2UnEA_1253,"The video starts off by showing a man wearing a white T-shirt and shorts stepping into a throwing circle on a concrete patch of a field surrounded by a practice net. On the left, there is an open field while on the right, there is a white building with a blue roof situated behind the practice net. The man is carrying a hammer attached to a handle through a metal string as he steps into the throwing circle, facing away from the camera. He swings the hammer a few times, spins in place, and then turns around to throw the hammer. The video ends as the man watches the thrown hammer and walks towards the camera.",0 1254,v_ZwK52lXCbhA,Can you describe what is happening in the video in detail?,v_ZwK52lXCbhA_1254,"In the video, we see a man in a well-lit tattoo studio with white walls decorated with framed art. He is wearing a red, sleeveless shirt and is sitting in a chair while a tattoo artist, wearing a black t-shirt and a bandana, tattoos him with a tattoo gun. The tattoo artist is wearing black gloves and is using a cloth to wipe as he tattoos. Meanwhile, the man is rapping, adding to the energetic atmosphere of the video. Behind the tattoo artist, we can see a shelf filled with bottles. The video ends before we see the completion of the tattoo, with the artist still actively working on it.",0 1255,v_Y9d4iPDeigI,Can you describe the video content in detail?,v_Y9d4iPDeigI_1255,"The video is of a boxing match between two boxers in a ring. The boxer in the left corner is wearing blue shorts and gloves, while the boxer in the right corner is wearing red shorts and gloves. The referee is wearing a light blue T-shirt, black pants, and black shoes. There is an audience watching the match, and cameramen standing on the edge of the ring. At the start of the match, the boxer in the left corner intimidates the other boxer, who then attempts to kick him. They then start clinching and attempting to hit each other with their knees. The boxer in the red shorts succeeds in hitting the other boxer with a kick, causing the coach of the other boxer who has been hit to step into the ring. The two continue to fight, with the boxer in the red shorts grabbing the other boxer's leg and hitting him with punches, while the other boxer defends his crotch. The video ends with the boxer in the red shorts continuously punching the other boxer until his mouthpiece falls out of his mouth.",0 1256,v_qtKa7Lr3URA,Can you describe the video content in detail?,v_qtKa7Lr3URA_1256,"The video features three individuals standing outside a house with white walls, and is set during the day. One of the women is seen washing clothes using a stone on the ground, while the other woman in a white top and jeans observes her. The third individual is a girl wearing a dark-colored top and yellow skirt who stands behind with her hands folded. There are cars parked in front of the house. The washerwoman rinses and finishes washing the clothes using buckets next to her, and the woman in the white top watches her finish up.",0 1257,v_P7Z4i1gmzjs,Can you describe the video in detail?,v_P7Z4i1gmzjs_1257,"The video appears to be taken in a well-lit gym with overhead lights and foam mats laid out on the floors under equipment. It starts with a boy lifting himself up from parallel bars using one hand on each bar. He swings back and forth a few times and then drops to the ground. The video pans out to show other people in the background of the gym. Overall, the video depicts a skilled gymnast performing some parallel bar routine, supported by appropriate equipment and a well-prepared gym.",0 1258,v_ojIhxWrBM0s,Can you provide a detailed description of the video?,v_ojIhxWrBM0s_1258,"The video starts with a man seated in a barber chair, draped in a cape, who is looking through a magazine while sitting in front of a mirror in a salon with other chairs occupied by customers who are getting their hair cut. In the following clip, a man is seen reclined in a chair and getting his hair washed by a barber. Viewers also see people waiting outside the salon in the next shot. Then, a shot of a well-lit salon is shown, where a man is getting his hair cut by a barber; other customers are visible in the background getting their hair cut. The video ends as the barber finishes the customer's haircut and holds a mirror at his back for him to look at the back of his head.",0 1259,v_w4pO-1-FG5w,Could you describe in detail what happens in the video?,v_w4pO-1-FG5w_1259,"In the video, we see a little boy sitting on a booster seat in a hair salon, surrounded by pictures of animated characters on a blue cape. A woman uses a trimmer attached to a vacuum to cut the boy's hair, while he sits still. A mirror reflecting overhead lights is seen behind the chair. The video ends with the woman continuing to cut the boy's hair.",0 1260,v_vo2M4sY0E38,Can you describe in detail what is happening in the video?,v_vo2M4sY0E38_1260,"In this video, a woman wearing a black top and jeans is brushing a horse's torso and face outdoors during daytime. The horse is tied to a fence with a wooden door visible in the background along with trees. After cleaning the brush, the woman proceeds to brush the horse's tail, mane and inspects its back left hoof. She uses a hoof pick to clean the hooves. The video ends with the woman cleaning her brushes after finishing grooming the horse.",0 1261,v_WOUkPgHtt4E,Can you describe the video in detail?,v_WOUkPgHtt4E_1261,"In the video, a group of children are practicing gymnastics in a well-lit gymnasium with cream color walls. The gymnasium has blue mattresses scattered all over the floor and armbars and balance beams installed. Windows are located on the left side of the children practicing, and there are some trophies kept on the edge of the window. A small wall clock is placed on the left side of the gymnasium. A boy, dressed in a white vest and dark blue shorts, is seen jumping on to the armbar from a white platform, he then swings both his legs in the air and stands on the armbar using his hands. He then changes his position on the armbar and performs the same thing again. Other children are practicing behind him, and some girls are practicing at his side. The video ends with him jumping off the armbar.",0 1262,v_RjztFj0Zl40,Can you describe the video in detail?,v_RjztFj0Zl40_1262,"The video starts with text appearing on a yellow background. Next, the scene cuts to a group of people standing on one side of a basketball court surrounded by a chain link fence in the daytime with parked cars next to the sidewalk. A building can be seen in the distance. The team starts a game of dodgeball with another team standing on the other side of the court. There are spectators standing outside the fence, and a few people are inside the fence taking pictures with cameras and phones. Some people are sitting on the grass behind the right team. The video continues to show the team on the left losing one player after another. The last player tries to throw a ball with each hand but ultimately gets hit in the legs and walks away. The video ends as the winning team exits the court.",0 1263,v_tSNg5rvDvVc,Can you describe what happens in the video with the man playing the saxophone?,v_tSNg5rvDvVc_1263,"In the video, a man wearing a black coat, black pants, and a white shirt plays the saxophone while standing in a public place with many people watching from behind. He has a mic attached to his right ear, and there are huge black speakers and illuminated stalls behind him. A big lighting banner is also visible behind him. As he plays, a man wearing a black jacket, blue jeans, and white shoes walks past his performance while carrying a white bag. The video ends with a closeup of the saxophone player's face as he raises his hand to signal the completion of his performance.",0 1264,v_Y16uL6dYDzQ,Can you describe the weightlifting competition in the video?,v_Y16uL6dYDzQ_1264,"The video shows a weightlifting competition taking place on a grassy field with black-colored mats laid down for the weightlifters to use. The weightlifters are seen lifting big dumbbells on these mats while black buckets are placed on the right side of the mats. On the left side, there are some officials and a cameraman, while a jimmy jib camera is recording from above. The weightlifters are wearing grey and black-colored T-shirts, shorts, and white sports shoes. The video captures one weightlifter lifting the dumbbell using both hands for some time and then dropping it, while the weightlifter behind him struggles to lift the dumbbell and also drops it. The weightlifters then proceed to apply powder to their hands from the black buckets. Another attempt is made, with the weightlifter at the back failing again. Finally, the weightlifter at the front lifts the dumbbell for a while before dropping it and raising his hand for the audience, walking off the stage. Overall, the video showcases a competitive weightlifting event in an outdoor setting with various players competing against each other in lifting heavy dumbbells.",0 1265,v_wiaZCl-poRw,Can you please describe what happens in the video in detail?,v_wiaZCl-poRw_1265,"In the video, a man is dressed in a black polo shirt and cargo pants and is mowing a lawn during the daytime. The yard appears to be near a street with houses on the other side. Next to the yard, there is a car parked on the sidewalk. The man mows the lawn in sections, guiding the lawn mower straight and turning around to continue mowing. Throughout the video, the man consistently keeps to mowing the lawn in a grid-like pattern, without any apparent interruptions or deviations in his work.",0 1266,v_qqZLs6j3YII,Can you describe the video in detail?,v_qqZLs6j3YII_1266,"The video starts with five children on a stage playing guitars while wearing red and white uniforms and sitting on stools. The stage is well-lit and has a purple background, and there are little mikes on stands in front of all the children. Throughout the video, the children turn left and right when they are playing certain parts of the music. The background music gets faster as the video progresses, leading to an energetic finish before the screen fades.",0 1267,v_IRBrTKrVCxo,Can you describe in detail what happens in the video?,v_IRBrTKrVCxo_1267,"The video shows an outdoor scene where a man is getting his shoes shined by another man wearing a blue shirt. The shoe shiner is using a brush to polish the black shoes, and there is a tin of polish on the ground nearby. The man getting his shoes shined has a cloth draped on his thigh while he sits on a stool. The video ends as the shoe shiner finishes polishing the shoes. Overall, it is a simple scene of a man getting his shoes shined outdoors during the daytime.",0 1268,v_xS5JDBeMxOs,Can you describe the video content in detail?,v_xS5JDBeMxOs_1268,"The video is shot in a public place where a group of men is sitting at a table with beers. They pull out their shoes and add beer to them, and then drink it simultaneously. The colors of their clothes are described in the video as a man in a white t-shirt and grey capris, and the other one in a yellow t-shirt, black jeans, and a yellow and black cap. The people around them are seen cheering and making videos. After drinking the beer, they raise both their hands in the air and high-five each other. The girls sitting next to them can be seen talking to the men. Towards the end of the video, the man in the white t-shirt shows some hand signs and thumps his chest.",0 1269,v_-uJnucdW6DY,Can you describe the video content in detail?,v_-uJnucdW6DY_1269,"The video shows a group of kids playing in a grassy field surrounded by a metal fence with towering light poles. The field is bordered by trees and there are cars parked outside. Throughout the video, the kids throw a ball to one another, with one child throwing the ball, another kicking it, and yet another catching it and bumping it into someone else. At one point, a kid kicks the ball far back where a girl is unable to catch it. This same pattern continues for the rest of the video. ",0 1270,v_PzJsoZT2hXk,Can you describe what happens in the video in detail?,v_PzJsoZT2hXk_1270,"The video begins with a montage of gift wraps and gift-wrapped gifts, followed by a shot of two women standing in a well-lit room beside a gift-wrapping table. One of the women puts a gift card into a wrapped gift box, while the other starts to fold wrapping paper around a box. She completes wrapping it up, tapes it shut, and then tucks a gift card inside a fold in the wrapping. Finally, both women exchange their wrapped gifts and show them off to the camera.",0 1271,v_YAMhMB1jdio,Can you describe the video in detail?,v_YAMhMB1jdio_1271,"The video takes place in a well-lit barbershop with white walls and a dark brown wooden door with a broom hanging on the side. A woman, wearing a white coat, grey top, black trousers, and a white mask, is giving a haircut to a customer by combing and cutting his hair with scissors. There is another customer on the left side getting a haircut from another woman, and both customers are wearing white cloth capes. Mirrors are present in front of the customers. Behind the customers, there is a whiteboard mounted on a wooden railing with some text on it. The video ends with a man giving a haircut to a customer. Overall, the video gives a clear view of barbershop activities such as hair cutting and styling.",0 1272,v_EWNqkVaOfbE,Can you describe the video content in detail?,v_EWNqkVaOfbE_1272,"The video starts with a news reporter wearing a dark grey coat who is talking about TACK with some papers in front of her. Then it shifts to a cricket field with huge stadium lights where a cricket match is taking place. The scene switches back to the news reporter interviewing the patron-in-chief and then cuts back to the cricket match on the field. The video then shifts to the news reporter interviewing the president of TACK who is wearing a white shirt and a black coat. Afterwards, it cuts to the reporter interviewing the Pakistani ambassador who is wearing a black coat and a light blue shirt while the news reporter is wearing a grey full-sleeve top and holding a book. There are many people in the background and a huge stadium light is also visible. The video cuts back to the cricket match on the field once again. Finally, the video ends with the news reporter wearing a grey full-sleeve top and blue T-shirt holding a mic. There are some trophies in the background on a white table and a poster behind her with two chairs visible on the left side of the screen. The news reporter ends the report.",0 1273,v_Pjnuoa4o55c,Can you describe the actions and appearances of the players in the video?,v_Pjnuoa4o55c_1273,"The video opens up on a blue-walled squash court with four men dressed in T-shirts and shorts, each holding squash racquets. Three of the players have their caps turned backward. As the game begins, the players can be seen running around on the court, hitting the ball towards the wall and continuing with the game.",0 1274,v_QOsG3BeQeX0,Can you describe the video in detail?,v_QOsG3BeQeX0_1274,"In the video, a man wearing a blue shirt and khaki shorts can be seen swinging back and forth, while upside down from the bottom of the parallel bars. The gymnasium where the activity takes place is well-lit with cushioned mats placed on either side of the parallel bars for safety. The man then manages to righten himself and goes back to the previous position. Overall, the video captures a cool display of body strength and balance.",0 1275,v_zxpQHLwZCug,Can you describe what happens in the video in detail?,v_zxpQHLwZCug_1275,"In the video, a man wearing a blue shirt and jeans stands in a yard with plants visible in the background. A fence is visible at the back, and a tree is located behind and to the right of the man. He is holding an axe in his left hand while standing over a partially cut log. The man stops to speak before continuing to chop the log, causing pieces to fly off in different directions. Eventually, the log breaks into two pieces. In the background, a house can be seen past the fence.",0 1276,v_uvglcAUnQv0,Can you describe the video in detail?,v_uvglcAUnQv0_1276,"In the video, a woman wearing a pink top and black skirt is standing in the middle of a well-lit dance studio, surrounded by people sitting down next to floor-to-ceiling mirrors. With her high heels, she slowly dances with a man wearing a white shirt and black trousers who walks over to her in the middle of the dance floor. The dance is captured by several people holding up their phones and recording the couple. As they sway and move around the dance floor, they are surrounded by a few people near the edge of the venue. The video ends with the couple stopping dancing and separating and the man walking away.",0 1277,v_T7YcO-sOLuU,Can you describe the video in detail?,v_T7YcO-sOLuU_1277,"In this video, a man wearing a dark-colored t-shirt is seated behind a table with three different types of shoes, a glass of water, and a pack of cleaning supplies. The room is well-lit with a red wall as the background. The man is seen holding up a white shoe in one hand and a Nike shoe in another while demonstrating various sides of them. A bottle of clear liquid, labeled “JASON MARKK,” and a hand brush are placed on the table next to the shoes. The man then dips the hand brush into the glass of water and adds the liquid from the bottle. He proceeds to clean a shoe with the brush and then wipes the foam with a cloth. Finally, the man cleans all the shoes with different colors and styles and holds the pack of cleaning supplies up to the camera. Overall, the video showcases how to clean shoes using JASON MARKK cleaning products.",0 1278,v_OkvWTZ4XLyM,Can you describe in detail what happens in the video?,v_OkvWTZ4XLyM_1278,"In the video, a man wearing a white sleeveless shirt and tights is seen holding a discus in his hands on a square platform located in a sunny field with hills visible in the distance. A chainlink fence runs along the length of the field to the left. The man builds momentum by spinning the discus held out in his right hand a few times before releasing it and walking towards the landing area. ",0 1279,v_sPK-sbHIb3w,Can you describe the content of the video in detail?,v_sPK-sbHIb3w_1279,"The video is shot in an indoor basketball court and features players practicing a drill instructed by a coach. The video starts with a slow-motion shot of a player in a white basketball jersey dribbling a basketball and dunking it through the hoop. The next shot features a man in a grey shirt and black pants holding a basketball and speaking to the camera while a player in a black jersey stands by his side. The coach tosses the ball to the player who performs a drill where he spins and dunks the ball into the hoop. The drill is then repeated multiple times. The following scene shows more players practicing the same drill as the coach looks on and tries to block their shots. After the coach speaks, the players continue the drill. Another slow-motion clip of a player in a white jersey performing the drill is then shown. Overall, the video showcases a basketball practice session with focus on a specific drill.",0 1280,v_TEgPIueNqTI,Can you describe the video in detail?,v_TEgPIueNqTI_1280,"Sure, the video depicts a woman wearing a white top sitting on a chair in a well-lit tattoo parlor with white tile floors. She is getting her right wrist tattooed by a tattoo artist who is wearing a black outfit and black nitrile gloves. The artist is using a tattoo gun dipped in ink to create the tattoo. The woman has placed her wrist on the arm of the chair that the artist is sitting in. There are other people sitting on chairs to the right side of the woman, some of them are getting tattoos as well. The video ends with the woman still getting tattooed.",0 1281,v_zTHkqpNFGno,Can you describe the video in detail?,v_zTHkqpNFGno_1281,"In the video, we can see a woman wearing a black top and combing her hair in a well-lit room. There is a desk on her right, and the wall behind her is white. The woman is leaning forward while combing her hair and at one point, she laughs at something she reads. She then places the comb at her side and continues to lean forward. Overall, the video seems to showcase a simple act of personal grooming in a clean and well-lit environment.",0 1282,v_vska7f8Zm9s,Can you describe the video starting from the person lighting the matchstick in detail?,v_vska7f8Zm9s_1282,"The video starts with a shot of a person holding a matchbox and lighting a matchstick using the striker on the side of the box. He then holds the lit matchstick to some kindling on the ground and adds more kindling over the flame. Additionally, he adds some fresh firewood to the kindling. The person is outside, surrounded by snow, and it appears to be daytime. As the kindling catches fire, the camera pans to a dog that walks some distance away from the fire. Finally, the video ends by showing the burning kindling and the flames growing in size.",0 1283,v_SV3v-nA6hXM,Can you describe the video in detail?,v_SV3v-nA6hXM_1283,"The video depicts a man in a white shirt with a harness on it and a cap who is standing on a bungee jumping platform in a valley covered with trees during the daytime. He is holding a bungee cord and counting down before jumping. Afterward, a person wearing a camera jumps off the platform, and the camera pans to show people standing on the platform and looking down. Following this, a line of people looks at the camera and waves. The video also features a montage of people jumping off the bungee platform from different angles, all wearing safety harnesses. Some dive while looking forward, while others jump while standing backward. The video concludes as a woman in an orange top jumps off the platform, and the screen fades.",0 1284,v_w46wkDledek,Can you describe the video content in detail?,v_w46wkDledek_1284,"The video begins in a bright living room, where two girls are dancing Spanish-style partner dancing. One of the girls is wearing a grey hoodie and pants while the other is wearing a white and blue shirt and jeans. The room has green walls, a TV running in the back, and a draped window behind it. They continue to dance to music while one partner takes turns spinning the other. Finally, the video ends as the girl wearing the white shirt walks away from the dancing area.",0 1285,v_TB5AeIdAndA,Can you describe the video in detail?,v_TB5AeIdAndA_1285,"The video shows a man wearing a blue jacket and jeans sitting on the ground while playing a guitar during the daytime. He is sitting on a sidewalk next to a lawn, and there is an empty can placed next to him and between his crossed legs. While playing the guitar, he sings a song until he finishes it. Despite the lack of additional background information, the video provides a simple yet serene and calming scene of a musician showcasing his talent in a relaxed outdoor setting.",0 1286,v_sbnF7VVeopM,Can you describe the video in detail?,v_sbnF7VVeopM_1286,"The video starts with text on the screen, after which a person wearing a chef's uniform is shown in a well-lit washing area wearing rubber gloves and washing dishes over a counter. To the right of the person, a basket with plates stacked in it can be seen, while a white can is placed near the wall to their left. The person washes a plate with steel wool and uses a handheld kitchen faucet sprayer to rinse it before stacking it with the others on their right. The following clip shows a montage of stock footage such as people crossing the street during the daytime, a person in a dimly lit workshop welding something and a monster truck driving through a muddy track. The video ends with a clip of cars moving through traffic during the day.",0 1287,v_OESjoURo19U,Can you describe the video in detail?,v_OESjoURo19U_1287,"The video starts with a group of kids playing dodgeball on an indoor basketball court which is well-lit by overhead lights. Three people are standing on one side of the basketball court facing the rest of the players who are throwing balls at them. The team on the near side comprises of both boys and girls, while the opposite team switches people who get hit. The game continues as people from both teams are swapped out as they get hit. Finally, both teams stop playing and walk over to the middle of the basketball court.",0 1288,v_SLHPvKh-_x8,Can you describe the video in detail?,v_SLHPvKh-_x8_1288,"The video begins with the text 'Infection Control' displayed on a black screen, followed by a woman wearing a black top sitting in an examination room and addressing the camera. The room is well-lit, and there is an exam table next to her. The camera then shifts to the woman walking towards a sink where she demonstrates how to wash hands effectively using liquid soap dispensed from a soap dispenser located near the sink. She then turns off the tap and takes tissue paper from a tissue paper dispenser above the sink to dry her hands. Finally, as the video ends, she throws the tissue that was used in a trash can nearby. This video can serve as an aid to educate people on infection control practices.",0 1289,v_ypfWA4aDL6k,Can you describe the video in detail?,v_ypfWA4aDL6k_1289,"The video starts by showing a man playing the bagpipe wearing a kilt on a busy sidewalk during daytime. He stands in front of a lamp post and behind him, we can see vehicles moving on the street; buildings can also be seen past the street. To his front, a person wearing a black hoodie and holding a little child is kneeling. The scene is quite busy as people are walking past in front of the camera, and some of them stop by the musician to drop some change in front of him. The man continues to play the bagpipe while people pass by and the little child in the hoodie watches on. ",0 1290,v_rpjxjU-mLiw,Can you describe the video in detail?,v_rpjxjU-mLiw_1290,"In the video, a man wearing a teal T-shirt and black shorts can be seen walking into a throwing circle that is surrounded by a practice net. The man seems to be preparing for a discus throw as he spins a few times before throwing the discus. This occurs in an outdoor field during the daytime. While the man is preparing for his throw, a person wearing a yellow shirt can be seen jogging on the track behind the practice net. After the man successfully throws his discus, he walks towards the camera and claps his hands.",0 1291,v_sk_pnoqXxhs,Can you describe what happens in the video?,v_sk_pnoqXxhs_1291,"In the video, a woman wearing a white shirt is helping a toddler in a diaper standing on the sink in front of a well-lit bathroom mirror, to brush his teeth. The toddler continues to brush his teeth as the woman uses tissue paper to clean him. A man holding the camera is visible in the mirror wearing a black T-shirt. A brown dog, standing near the woman, looks up at the camera as the camera pans down.",0 1292,v_YK9BIL9fKA0,Can you describe in detail what happens in the video?,v_YK9BIL9fKA0_1292,"Sure! The video starts with a girl greeting the camera while standing in front of a house wearing a maroon t-shirt, blue jeans, and red and white sneakers. The surroundings include multiple trees and a grassy field with a concrete path drawn across it, where there are several other houses in the vicinity. After recording the initial shot, she turns the camera to her friend, who is wearing a black t-shirt, blue jeans, and white shoes and waves to the camera. Next, they walk over to a hopscotch course drawn on the concrete path where her friend shows her three rocks before doing a graceful turn followed by throwing the rocks onto the course. Thereafter, they both play hopscotch by hopping on one leg and then both legs. Next, the first girl interviews her friend, who then runs off into the grassy field with the camera in hand. The first girl then takes the camera and repeats the hopscotch dance quite similarly to how her friend did. Lastly, the video ends with the first girl standing in front of a car parked on the road, speaking to the camera.",0 1293,v_GvMep9y7d7c,Can you describe the video in detail?,v_GvMep9y7d7c_1293,"The video titled 'Calvin's Corner' begins with a man standing in front of a pegboard with tools, wearing a dark blue T-shirt, black shorts, neon-colored sports shoes, and a pair of blue & black gloves. As the camera pans out, a bicycle rolls down and hits a tree, causing it to fall down. The next shot is a close-up of the cycle's chain bearing as the same man turns the pedal. He then proceeds to insert an Allen key into the screws and tightens them. In the following shot, the same man has a huge stone and a thick tree branch in his hand. He points towards the cycle bearing and seems to be speaking. He puts one end of the tree branch on the cycle bearing and on the other end of the branch he smashes it with the stone in his hand. This action is repeated on the cycle's chain bearing to adjust it. The man picks up the cycle, adjusts the chain, and starts rolling the pedal. The video ends with a slow motion of the man rolling the cycle's pedal and some text displaying on the screen. ",0 1294,v_ZSdnDVGXU3k,Can you describe the video in detail?,v_ZSdnDVGXU3k_1294,"In the video, we see various gymnasts performing on a balance beam in arenas filled with spectators. The video starts with a gymnast using a springboard to jump onto the balance beam. The gymnast is wearing a red outfit and is in an arena with good lighting and people sitting in the seating area. After she jumps on the balance beam, the gymnast stands on it. In the following clip, we see another gymnast wearing a red outfit getting on a balance beam. This gymnast is also in an arena filled with spectators, and there are judges seated to the right of the balance beam. The rest of the video is a montage of various gymnasts performing different gymnastics movements on the balance beams in different arenas during events. Overall, the video showcases the talent and skill of these gymnasts in performing on a balance beam, in front of a live audience.",0 1295,v_u3XOLSC7lg0,Can you describe the video in detail?,v_u3XOLSC7lg0_1295,"The video starts by displaying a digital poster and progresses to showcasing a man breakdancing in a well-lit hallway with blue and red floors. He is seen wearing black T-shirt, pants, and black and white sneakers while performing a variety of moves. People are shown standing on the right side of the man while he performs, and black bags are seen on his left side. He moves his legs on the floor and then does a spring jump using both his hands. Next, he lifts his body using his hands, puts his head on the floor, and rotates. After completing the performance, he can be seen laughing. The video finishes by displaying another digital poster and fading out to a white background.",0 1296,v_skk-nX55gvA,Can you describe the video content in detail?,v_skk-nX55gvA_1296,"The video starts with a water polo game in a swimming pool where a person, identified as 'Justin Harrison', in a white cap throws the ball towards the goalpost, while a player in black tries to block the throw. Justin scores the goal, and a replay is shown from a different angle, from the poolside of the goal. In the next clip, a man identified as 'Coach Mark Conner' is seen speaking to a group of swimmers wearing black t-shirts and sunglasses. Justin is shown to score another goal in a different game, but this time with a blue cap on. The video ends with a group of swimmers talking by the poolside, and one of them jumps into the pool.",0 1297,v_fh21bbDSVmA,Can you describe the video in detail?,v_fh21bbDSVmA_1297,"The video features a male gymnast performing on a pommel horse in a well-lit arena with blue walls and chairs. The gymnast is wearing blue track pants and a white vest with blue and red stripes. The pommel horse is situated in the middle of the arena on a blue platform with the judges sitting a few feet away behind tables. At the beginning of his performance, the spectators cheer for the gymnast as he spins and moves along the pommel horse, performing a handstand, and concludes his performance by wishing luck to his opponent.",0 1298,v_wCexKIuAj3A,Can you describe the video content in detail?,v_wCexKIuAj3A_1298,"The video starts in a well-lit news studio, where five people are seated on a sofa. Behind them, a TV screen displays the word ""Daybreak."" On the white coffee table in front of them, there are coffee cups and a laptop. One of the men on the left picks up an electronic cigarette and begins speaking while holding it. The video then cuts to a bar where people are smoking e-cigarettes, with one man in a black shirt blowing smoke circles. The people in the news studio continue their conversation as the man on the left puts the e-cigarette down. The man on the right then picks up a coffee cup and takes a drink. Overall, the video features discussions regarding e-cigarettes in a news studio setting and footage of people using e-cigarettes in a bar.",0 1299,v_tF8Nv-QxbIU,Can you describe what happens in the video in detail?,v_tF8Nv-QxbIU_1299,"In the video, a man dressed in a green t-shirt and khaki trousers is seen standing inside a well-lit shoe maker’s shop. He is standing behind a wooden counter which has shoes on them, while shelves behind him hold various shoe repair kits. There are also a few shoe brushes on the counter. The man picks up a suede block and a suede brush and shows them to the camera, before proceeding to clean a pair of red suede shoes. He vigorously rubs them with the brush. Later, he picks up a dark blue high-heeled suede shoe and brushes it with the suede brush.",0 1300,v_vAHR3iJhBXU,Can you describe in detail the process of painting the nails in the video?,v_vAHR3iJhBXU_1300,"The video begins by showing close-up shots of a woman's painted fingernails. In the next scene, she applies a clear base coat to all her fingers before applying pink nail polish specifically to the ring finger. The next thing she does is draw black blocks randomly onto the white nail polish. She then places two black rhinestones on the pink nail to add some decoration. Lastly, she finishes off the look by applying a top coat to all the nails. The video ends with a still image showcasing the finished look.",0 1301,v_tC5eMgePakk,Can you describe the video in detail?,v_tC5eMgePakk_1301,"In this video, a little girl dressed in a pink outfit and a pink headdress is seen standing in front of a tree by the shore of a lake during the daytime, holding a violin. The camera shows the reflection of trees on the calm and clear water of the lake. The girl starts to play the violin, and the music fills in the background. She plays the violin intermittently, pausing to adjust her position and readjust her grip on the instrument before resuming to play. She plays the violin throughout the video, which ends as she finishes the song, and the screen fades to black.",0 1302,v_UtV69uNmzlE,Can you describe the entire video content in detail?,v_UtV69uNmzlE_1302,The video starts with a woman sitting next to a toilet bowl in a well-lit bathroom and shaving her right leg with a razor. She looks at the cameraperson and laughs before continuing to shave her leg. The woman then dips the razor in the toilet bowl before continuing to shave her leg. The video ends with the woman still shaving her leg.,0 1303,v_vMcXLYBcHsM,Can you describe the video in detail?,v_vMcXLYBcHsM_1303,"The video starts off with a man sitting in a well-lit kitchen, wearing an orange t-shirt and glasses. Behind him is a pot on the stove with steam coming out of it. A woman wearing a hoodie walks in and starts cutting his hair with an electric trimmer. A boy in a grey sweatshirt walks in and adds something to the pot, indicating that he is cooking. The camera pans over to another man sitting on a chair near the wall, who is reading. The woman continues to give the man a haircut, while the boy uses scissors to cut hair at the top of the man’s head and then uses clippers to clip hair behind the man’s ears. After the haircut is finished, the boy takes out a box from a cabinet and shows it to the camera. The video ends with the man in the orange shirt holding up a peace sign, while the boy leaves.",0 1304,v_u7THn6D6y5w,Can you describe the video in detail?,v_u7THn6D6y5w_1304,"This gymnastics video features a little boy practicing in a well-lit gymnasium filled with sports equipment and blue mattresses on the floor. The boy is wearing a maroon gymnastics uniform and is working on an armbar in front of him. There are posters on the wall to his left and other children practicing around him, with some seated to his right. His coach, dressed in black T-shirt, black track pants, and black sports shoes, assists him in his exercise on the armbar. The boy places both hands on the armbar and swings his legs in the air before putting them back on the armbar. The video ends with the coach coming to the boy and waving both his hands, bringing the practice session to a close.",0 1305,v_yggwFa68Cp4,Can you describe in detail what happens in the video?,v_yggwFa68Cp4_1305,"The video starts with a boy standing to the side of a brown wooden door. He is dressed in a white shirt, sleeveless black sweater, and brown pants. There is a black stool behind him with a brown bag on it, and some equipment kept behind the boy to his left side. A glass table is in front of him, and there is a door behind him with glass panels and a brown cloth-like curtain covering the top half. The boy holds the bagpipes with his left hand and begins to play by blowing air into the mouthpiece and pressing the chanter using his fingers. As he plays, there is a close-up of his hands on the bagpipes. Lastly, the video ends with the boy finishing playing the bagpipes.",0 1306,v_PwTwGnAVFhQ,Can you describe the video in detail?,v_PwTwGnAVFhQ_1306,The video features a woman in a well-lit studio with white walls and wooden flooring. She is standing on an aerobics step and practicing stepping on and off the step. The woman is wearing a pink top and black shorts. The video ends with the woman still practicing on the step. ,0 1307,v_QT4d1nTQYSE,Can you describe the video in detail?,v_QT4d1nTQYSE_1307,"The video starts in an art studio where a man named Jonas Gerard is about to begin a live painting performance. The studio is well-lit and has red and brown walls filled with paintings. There is a woman standing behind Jonas wearing an apron splattered with paint over a green top. In front of Jonas, a canvas is placed on a table. He starts the performance by pouring paint from a bottle and spreading it with a palette knife. An audience is seated a few feet away from the canvas on chairs, watching the live painting event on a large screen TV. After he finishes the painting, Jonas turns to the audience. In the next clip, the audience members walk up to the table with the canvas and admire the finished painting.",0 1308,v_Xmp_twSbkAg,Can you describe in detail what happens in the video?,v_Xmp_twSbkAg_1308,"In the video, a girl wearing a black T-shirt and a pink full-sleeve top is seen in a well-lit room with white walls, a brown door, and a red curtain behind her. There is also a desktop on a study table behind her, with a photo, some books, and a stuffed toy on it. Stickers can be seen on the left wall behind her, along with some boards and a small blue table. The girl places her stuffed toy on the table and begins to talk. The scene then changes to her painting Ironman on a canvas, while wearing a green and white long-sleeved T-shirt. She can be seen with some paint on a white plate and she paints using a brush. Later on, she starts talking with her hands, and rubs her eyes with one hand while the other hand is on her head. The video ends with text showcasing her YouTube page, prompting to subscribe.",0 1309,v_zDdD_qA86rg,Can you describe in detail the events that unfold in the video?,v_zDdD_qA86rg_1309,"In the video, there is a man scaling a rocky hill whilst wearing a white t-shirt and a utility belt with a rope attached to it. The video angle then switches to a woman, wearing a red and white shirt, as she climbs up the hill, anchoring her rope as she climbs. The video is shot from a top-down perspective, with another person belaying the rope at the bottom. The woman continues her climb by finding handholds and attaching her rope to anchors along the way. It is daytime during the climb. The video ends with the woman still making her way towards the top.",0 1310,v_tt-uDaZQWWc,Can you describe what happens in the video?,v_tt-uDaZQWWc_1310,"In the video, a woman wearing a yellow t-shirt and multi-colored pajamas is shaving another woman's leg with a pink razor. The room is well-lit and has white walls with cream and cosmetic bottles beside her. At the end of the video, the woman getting her legs shaved shakes her hand while making a fist, and then shows her hands to the other woman.",0 1311,v_r6l4mxphtX0,Can you describe in detail what is happening in the video?,v_r6l4mxphtX0_1311,"In the video, a woman dressed in a white outfit is sitting in front of a mirror in a dimly-lit room. She is seen applying makeup to her face and eyes after finishing applying her lipstick. Soon after, she sneezes into a tissue which she holds up to her nose as she sneezes again before wiping her nose with it. A bed placed against the wall with some pillows near the top can be seen in the bedroom environment where she is sitting.",0 1312,v_Oskk7eLgerM,Can you describe the video in detail?,v_Oskk7eLgerM_1312,"In the video, a man is shown lowering a brown dog into a bathtub. He then uses a handheld showerhead to bathe the dog and adjusts the water temperature as needed. The man applies soap from a bottle and massages the dog with his hands to make sure it is clean. Finally, he rinses off the soap using the showerhead and towels the dog dry. The video ends with a shot of the clean dog laying on a blue towel and looking at the camera.",0 1313,v_T35cHr4pjkc,Can you describe the activities of the man in the well-lit cafe in detail?,v_T35cHr4pjkc_1313,"In the video, a man is seen wearing a white dress shirt and black trousers while sitting in a well-lit cafe and drinking from a cup. The cafe has tables where people are sitting and a service counter where a server wearing an apron and a black cap is present. A fridge with bottles of drinks can be seen against the wall behind the man. In the next clip, the man is shown dancing in the cafe. Later, he can be seen holding another cup in his left hand while still drinking from one in his right hand. In the following clip, the man is dancing again with his hands at his sides and a person sitting near the counter is watching him.",0 1314,v_Pr5K2Jh2X94,Can you describe what happens in the video in detail?,v_Pr5K2Jh2X94_1314,"In the video, an athlete wearing a red outfit with several branding logos on his shirt is seen on an indoor track field getting ready for a long jump. The surrounding area has several people including photographers visible. As the athlete begins his run, he jumps into a sandpit and gets up, celebrating his successful jump. Onlookers nearby include observers and people coming down a set of stairs in the spectators section. A referee subsequently holds up a white flag. The athlete continues to celebrate and speak to observers before walking away. The video ends as another athlete wearing a yellow outfit walks towards the start of the track.",0 1315,v_YU-dUWGOoD4,Can you describe the video in detail?,v_YU-dUWGOoD4_1315,"The video features a gymnast wearing a white vest and red pants who is getting ready to compete on a pommel horse. The venue is well-lit with overhead lights and cushioned mats are positioned around the pommel horse. There are people sitting around a table a few feet from the pommel horse and people seated behind tables at the head of the venue. A balcony with spectators is visible on the left side of the venue. The gymnast places his hands on the pommel horse and starts his demonstration, rotating and spinning around the horse. He drops to the floor after he reaches the edge of the pommel horse, walks back to the pommel horse and gets on it again. He finishes his routine with a handstand and jumps to the floor. Overall, the video shows a gymnastics competition with a skilled gymnast performing a routine on the pommel horse in a well-lit venue with spectators watching from the balcony.",0 1316,v_zRqJZ0u6f88,Can you describe what happens in the video in detail?,v_zRqJZ0u6f88_1316,"In the video, a man wearing a red shirt and trousers stands next to a closed window in a dimly lit room. He is wearing a tool belt and speaks to the camera as he gestures toward the window, through which the street is visible, including parked cars and a house across the street. He then starts to clean the window with a cloth and sprays liquid on it with a spray bottle. Throughout the video, he continues talking to the camera while holding the spray can and cloth in his hands.",0 1317,v_QY3q4DuiGq8,Can you describe the video of the girl in blue outfit throwing a discus in a competition?,v_QY3q4DuiGq8_1317,"In the video, a girl dressed in a blue outfit is seen standing inside a throwing circle located within a practice net. The scene appears to be a discus throwing competition taking place during the day, with trees visible in the background behind the practice net. The girl prepares to throw by swinging her arm and then spins in place to release the discus. As soon as she throws it, she jogs away from the throwing circle. ",0 1318,v_X9Y-b-SbkIU,Can you describe the video content in detail?,v_X9Y-b-SbkIU_1318,"The video begins with some text displayed on a background, followed by a scene in a squash court where a man and a woman are playing squash. The woman is dressed in a light green T-shirt and black shorts while the man is wearing a black sweatshirt, grey shorts, and white sports shoes. The squash court is well-lit with white walls and red stripes, with a glass panel behind the players. They hit the ball back and forth with their rackets towards the wall. The frame changes to an instructor dressed in a white T-shirt, white shorts, and blue sports shoes, teaching two men how to play. Then, the video shows the instructor teaching people how to play squash through multiple scenes, with players serving the ball and hitting it with their rackets towards the wall. The video ends with some text displayed and a web address ""bu.edu/fitrec.""",0 1319,v_uub0z8wJfhU,Can you describe the video starting with the appearance of the man and the venue?,v_uub0z8wJfhU_1319,"In the video, a man wearing a black full-sleeve shirt and glasses is seen playing a violin in a well-lit venue. On the wall to the left of the man, an altar is visible, illuminated with electric candelabras. The man plays uninterrupted until he is momentarily distracted, and after a brief pause he resumes playing until he eventually stops. The video concludes as the man takes a bow and steps back.",0 1320,v_X5kj4fZ38rc,Can you describe the video content in detail?,v_X5kj4fZ38rc_1320,"The video features a woman wearing a dark blue printed top, holding a violin, and standing in a well-lit room with white walls. There are books and photo frames behind her on her right, and a black table to her right side. In the other room, there is a dining table set and a chandelier. The background also includes a kitchen with a fridge and a microwave, along with brown wooden shelves. The woman appears to be using her fingers to control the violin strings while playing it by vibrating the bow on her shoulder. She stops playing briefly before starting again. The video ends with her stopping playing and fading to black.",0 1321,v_rGOOlcdpfLg,Can you describe the video content in detail?,v_rGOOlcdpfLg_1321,"In the video, a woman wearing a red and blue checkered shirt over a black top is seen talking to the camera while standing in a bedroom with posters on the back wall. She then proceeds to apply black makeup to her eyebrows, eye shadow, eyeliner, and some highlights to her lower eyelid. However, she pokes her eye while trying to apply the back highlights and holds her hand against it in pain. The video ends with her buttoning her shirt and holding a gun to the back of a man's head, who she had dragged in from her left.",0 1322,v_fMVuGUBs2cs,Can you describe what happens in the video of the bartender making a Bloody Mary drink?,v_fMVuGUBs2cs_1322,"In the video, a bartender wearing a dark grey sleeveless coat, white shirt, and a black tie stands behind the bar counter. There are various bottles on the shelf, and some bottles and glasses are in front of him. The area has dim lighting. As he explains how to make the Bloody Mary drink, he grabs a cocktail mixer and puts it on the bar counter in front of him. He shows how to make the drink by adding ingredients to the mixer and then grabbing another mixer and adding ice to it from beneath the bar counter. He then mixed the drink using the two mixers, and strained the drink into another glass with ice. Finally, the bartended garnished the drink with an unmentioned ingredient, and the video ends with a close-up of the Bloody Mary drink with a text indicating that it was a Bloody Mary.",0 1323,v_PSB1nM3QXxg,Can you describe the scene in the video?,v_PSB1nM3QXxg_1323,"In the video, we can see a group of boys wearing white martial arts uniforms and standing in a dirt field surrounded by trees. They are practicing martial arts during the day, and parked trucks are visible near the treeline. Two of the boys are standing apart from the group and are demonstrating the martial arts movements. After they finish, they turn left and bow while the rest of the students clap. Overall, the video captures a martial arts practice session in an outdoor setting with several boys participating and showcasing their skills.",0 1324,v_TKgU9QJXw2w,Can you describe in detail the content of the video?,v_TKgU9QJXw2w_1324,"The video depicts a group of boys playing racquetball in a brightly lit court with white walls and a light wooden floor. One of the boys in a grey t-shirt and black pants serves the ball, which bounces off the wall towards the back where the other players join in the game. While they're playing, a boy wearing a white t-shirt and red pants accidentally hits another boy standing in front of him in the head with the ball. The boy who was hit immediately drops to the ground and stays there with his hand on his head, possibly in pain. ",0 1325,v_WAvz9zHwWo4,Can you describe the video in detail?,v_WAvz9zHwWo4_1325,"The video captures a gymnastics competition in a high-ceilinged gym. A girl can be seen starting the routine with a jump and a swing from a high bar. Other girls are present and watching near the mat of the high bar while other gymnasts practice on the nearby high bars. The girl performs a handstand and swings from the bar a few times before leaping onto a smaller high bar adjacent to it. From there, she jumps back to the bigger high bar and continues her routine by swinging from it and landing on the mat. ",0 1326,v_uIcMgjypbqk,Can you describe the video in detail?,v_uIcMgjypbqk_1326,"The video begins with a bright light on the stage and the audience screaming. The stage is equipped with two mic stands and music systems on the edge. Smoke fills the stage as a man holding a musical instrument steps into the light. Soon after, a large white ball is thrown on stage and the man leaves the frame. The scene then transitions to a red light where another man is seen entering with a guitar, accompanied by another man running on the stage. Shortly after, a third man joins in with his guitar and begins playing on the edge of the stage while the audience cheers. The video concludes with the audience giving a round of applause and the third man walking off the stage.",0 1327,v_vaV6_bxiTLI,Can you describe the video in detail?,v_vaV6_bxiTLI_1327,"The video starts with a group of five people, four boys and a girl, standing on a sidewalk near trees during the daytime. One boy is seated on the sidewalk, holding a camera while the others are standing. Among them, a girl wearing a white top and black shorts can be seen hopping on the ground. She walks back to the group, and the video ends as the boy with a camera gets up from the sidewalk. ",0 1328,v_z-EPAHsmTMA,Can you describe the video in detail?,v_z-EPAHsmTMA_1328,"The video starts with the camera panning to a TV in a dimly lit room. An advertisement is shown with a girl wearing a white outfit smearing her face with white foam using both hands. The channel momentarily changes to show a man with a phone receiver in his ear, before returning to the girl washing her face with water. She takes her time to carefully wash off all the foam using water.",0 1329,v_pJ3sECWr5Xg,Can you describe the video in detail?,v_pJ3sECWr5Xg_1329,"The video starts with an animated intro for a news channel and then cuts to a stage where a girl wearing a white ballet dress is kneeling. Eventually, she is joined by other ballet dancers wearing black dresses. As they dance, a boy in a white shirt and black pants enters from the right and dances around them. The girl in the white dress and the boy start holding hands as the other dancers exit the stage. In the next clip, girls in white ballet dresses are kneeling and touching their foreheads to the ground, with their hands on their backs, before beginning to dance. The video ends as the dancers finish their performance and the screen fades to black.",0 1330,v_vI-O6QWIIGU,Can you describe what happens in the video?,v_vI-O6QWIIGU_1330,"The video shows a male gymnast wearing a blue vest and pants standing behind a beige-colored pommel horse. He places his hands on each of the handles and begins his routine, spinning his body around the pommel horse. There is a viewer wearing a red polo shirt in the background along with other spectators whose heads are visible at the bottom of the frame. In the middle of his routine, the gymnast misses a hold and falls to the floor. He proceeds to walk over to a bowl next to the pommel horse and applies chalk to his hands. A man wearing a grey sweater then walks over and speaks to him briefly. Afterwards, the gymnast returns to the pommel horse and restarts his routine, completing a few spins and a handstand before dropping back down to the ground.",0 1331,v_XPiMnbCr-sc,Can you describe the video in detail?,v_XPiMnbCr-sc_1331,"The video starts with text being displayed on a black background. A white box and a peach-colored cloth are placed on a wooden table, with the box at the center of the cloth. A woman wearing a black top can be seen gift-wrapping the box with the cloth on the wooden table. First, she covers one end of the box with the cloth and then covers it with the other end while folding it neatly. She then takes the other two ends of the cloth and ties a knot. This shows a step-by-step process of wrapping a gift with a unique wrap. Finally, the video ends with a text and a website address, bobowrap.com, appearing on the screen.",0 1332,v_w_CXbraJr58,Can you describe the video in detail?,v_w_CXbraJr58_1332,"The video captures a man wearing a Scottish kilt and beret, playing the bagpipe in a walkway. He stands adjacent to a light pole surrounded by people who are taking photos and watching him play. The man is outside during the daytime, accompanied by a little boy in a white shirt and shorts. A man in a blue shirt and shorts is seen lying on the ground and taking pictures of the bagpipe player. At the far back are a few people sitting on a bench positioned against a flower patch. Throughout the duration of the video, the bagpipe player continues to play as different people come and watch him, accompanied by several who take pictures or record him. At one point, the camera pans to show a boy in a grey t-shirt and backpack walking in front of it. The video concludes as people remain standing in front of the musician, although he has stopped playing.",0 1333,v_ZLJ2BmBkLJg,Can you describe the process of the man shaving his beard and neck in detail?,v_ZLJ2BmBkLJg_1333,"The video shows a man with a beard wearing a black T-shirt in a well-lit room. He starts by using a trimmer to shave the left side of his face. He then walks to the side to get a different trimmer to shave his neck. After using it for a while, he switches back to the first trimmer to continue trimming his face and neck. Once he is done trimming, he applies shaving foam to his face and uses a razor to shave his face and neck. Finally, he wipes his face with a cloth and applies aftershave before adjusting his hair. In the background, there is a white sheet draped, adding to the aesthetic of the video.",0 1334,v_Sf27WmcLb2w,Can you describe the video in detail?,v_Sf27WmcLb2w_1334,"The video begins with a well-lit indoor volleyball court, featuring light wood flooring, white, and grey walls. Two teams are standing on either side of the court, with a man wearing black sleeveless t-shirt and red shorts serving the ball to start the game. He then moves to stand inside the left court. The team on the right misses the hit, allowing the ball to be returned to the left side, where the same player again serves the ball. The team on the right bounces the ball amongst themselves before hitting it back to the other side, but they miss the return hit, resulting in the left side winning the exchange. The video continues to showcase both teams exchanging hits, and it ends as the players stop playing.",0 1335,v_vSv1qMMt4Bk,Can you describe the video content in detail?,v_vSv1qMMt4Bk_1335,"The video features two newscasters seated behind a newsdesk, reading the news. Behind them is a well-lit studio with a screen displaying the text 'Health News'. As they speak, the video switches to another reporter, Jocelyn Maminta, reporting outdoors at night, surrounded by parked cars as she bends down to shovel snow. In a later clip, a man is seen shoveling snow on the sidewalk during the daytime, with brick houses visible in the background. This man is then interviewed. Next, a woman wearing a black winter coat is seen shoveling snow on a driveway, also being interviewed. The reporter is then shown being taught how to use a shovel by another woman, and they have a brief conversation before the video ends.",0 1336,v_p9lhwYsBWdc,Can you describe the video in detail?,v_p9lhwYsBWdc_1336,"The video starts with window cleaners cleaning the glass windows of a building from outside while being suspended from ropes tied to harnesses fixed to the roof. The scene then switches inside the building where children in hospital gowns and adults watch the window cleaners work as a woman speaks. A little boy wearing a hospital gown is also watching the cleaners clean the glass near the window, and a woman wearing a pink top is standing behind him. Notably, the window cleaners are dressed up as the Hulk and Batman, respectively. The next clip shows an interview with the window cleaner dressed as Batman. Lastly, the video shows the window cleaners being lowered onto the ground.",0 1337,v_ZrSK-fisXGg,Can you describe the video in detail?,v_ZrSK-fisXGg_1337,"In the video, there is a woman wearing a white top who is seated in a well-lit store where clothes and bags are hung on racks on the back wall. On her right is a water bottle. Another woman wearing transparent gloves uses an ear-piercing gun to attach a stud to the woman's earlobe. She then moves to the other ear for piercing. Once the piercing is done, the technician secures the studs from behind the ears. The video ends with close-up shots of the pierced ears, giving a detailed view of the earrings attached to the woman's ears.",0 1338,v_p07Y--q4JQw,Can you describe the video in detail?,v_p07Y--q4JQw_1338,"In the video, there is a man wearing a camouflage pattern shirt applying a clear solution to a woman's nails as other people sit around the table. Another man sitting on the table wears a black hoodie. The room is well-lit. The man applies the solution to each finger, one after the other. As the video progresses, the man continues to apply the solution on all of the woman's fingers. The video ends as the man finishes applying the nail solution and places his left hand on the table.",0 1339,v_TsHek6oZYXU,Can you describe in detail the content of the Tai Chi video?,v_TsHek6oZYXU_1339,"The video begins by showcasing a digital poster with the website 'taichisecretmovements.com', followed by an outdoor scene of a man practicing Tai Chi with his master as music plays in the background. The master wears a black Tai Chi uniform, while the other man wears white. They are in front of a white wall with a glass window and two mounted bulbs. The man in white attacks his master, who defends against his punches and subsequent attacks. The master then attacks the pupil, who defends himself with kicks. The master attacks with both a kick and a punch, which the pupil successfully defends against. The video also shows the master performing Tai Chi movements, with text on the screen accompanying him. The Tai Chi movements involve the master moving both hands forward and backward. Finally, the video ends with the master positioning both hands in front of him as the screen switches to another digital poster, again displaying the website.",0 1340,v_QN-4aLiDhiQ,Can you describe the video in detail?,v_QN-4aLiDhiQ_1340,"The video starts at a tattoo stall located in a mall where a girl wearing a blue shirt over a light blue top is getting a star tattoo on the right side of her stomach. A tattoo artist is cleaning the area before starting the tattooing process with a henna cone. As the tattooing process begins, a little girl walks behind the chair. The girl getting the tattoo converses with people off-camera and holds up her shirt while the artist works. The tattoo artist slowly draws the star tattoo and the camera zooms in as the tattoo nears completion. Other individuals are visible in the back of the stall during this time.",0 1341,v_UGWOtDmIcns,Can you describe in detail what happens in the video?,v_UGWOtDmIcns_1341,"The video depicts a man rock climbing, wearing dark blue jeans and black & red shoes with a rope tied to his waist. He is shown climbing the rock with the support of his hands put inside the cracks of the rock walls and his legs. At one point, his fingers get stuck in the crack. Although the man almost reaches the top, he eventually falls down. The frame then changes, focusing on a woman holding the rope tied to the man. The woman is in a forest surrounded by tall trees and a few people sitting on her right side. She is wearing an orange top and blue jeans. At the end of the video, the woman holding the rope is thrown in the air as the man falls down from the top of the rock wall.",0 1342,v_PNuJUYo3Hf8,Can you describe the video in detail?,v_PNuJUYo3Hf8_1342,"The video begins with a man, who is wearing a blue wetsuit and a beanie, inside a boat picking up and speaking through a handheld radio. We then see a group of sailors preparing for a race on a foiling catamaran with red bull branding, followed by a show of several catamarans with different brand names painted on them sailing in low light and foggy weather conditions. The video then transitions to a montage of the sailors of the red bull branded catamaran working out, followed by a montage of several boats sailing fast through the water. An aerial view of the starting line of a foil racing competition where several catamarans line up is shown, with several observer boats sailing around. The race, which takes place during the day, starts and several shots from the onboard cameras of the red bull boat are shown, including aerial shots of the race. Finally, we see the team with the red bull branding catamaran winning the race.",0 1343,v_TMAXjnsN0Mk,Can you describe the video and what it showcases in detail?,v_TMAXjnsN0Mk_1343,"The video is an advertisement for the Uggs care kit and is shot in a well-lit room with pink walls. It starts with a textual title on a pink background and then shows a pair of brown Uggs which are to be cleaned using the kit. The frame then changes to a woman wearing a maroon top standing behind the Uggs and the cleaning utilities. As she cleans the boots, she stuffs them with tissue paper and brushes them before wetting them with a sponge and a bit of water. She then dilutes the Ugg cleaner and conditioner with water and applies this mixture to the boots using the sponge. She brushes the boots again and wears a grey top and black pants. She then sprays the Uggs protector on the boots, rolls them down, and sprays freshener inside them. Each step is accompanied by text on the screen and the video ends by showcasing the Uggs care kit along with the text 'schuh'.",0 1344,v_skr8x0kUVwg,Can you describe the video in detail?,v_skr8x0kUVwg_1344,"The video begins with a group of people wearing orange T-shirts standing in a line outdoors, surrounded by trees in a field. The focus then shifts to a little boy in an orange T-shirt who kicks the ball that comes towards him. Suddenly, a person wearing a red T-shirt runs towards him. Then, a little girl wearing an orange t-shirt is seen running away while kicking the ball. The girl in the red T-shirt follows her, and other people are visible throughout the field. In the background, a man with a white cap turned backward can be seen holding a camera. A girl wearing an orange T-shirt then speaks to the little girl and takes her back to the line. The video concludes with the girl in a red T-shirt throwing the ball towards the little girl and running towards her. Overall, the video captures a group of people enjoying a day out in a field, engaging in some friendly outdoor activities.",0 1345,v_YnjITZnk6OE,Can you describe the video in detail?,v_YnjITZnk6OE_1345,"The video starts in a hockey rink on a sunny day with players wearing full gear doing drills. In the background, there are brown buildings, with trees surrounding them. The players are running side to side, diving, and jumping through obstacles on the ground, while also holding a hockey stick in one hand and wearing hockey gloves on the other. The video provides a good view of the players doing some intense training sessions and perfecting their skills on the rink.",0 1346,v_UNJTM62HyqQ,Can you describe the video in detail?,v_UNJTM62HyqQ_1346,"In this video, we see a chef wearing a white coat in a restaurant kitchen. The kitchen seems well-lit and is equipped with fridges and dishwashers behind the chef. There is also a microwave and some dishes kept on top of the dishwasher. Another man, also wearing a white coat along with a red cloth on his head, passes behind the chef. The video begins with the chef pointing towards the ingredients kept in front of him on a metal table. He then pulls out spaghetti from a packet and adds it to boiling water while stirring it with tongs. The same man again passes behind the chef. The video ends with the chef continuing to boil the spaghetti.",0 1347,v_SEVVSei-r6w,Can you describe the video in detail?,v_SEVVSei-r6w_1347,"In the video, a man wearing a blue vest and black shorts is seen practicing hammer throwing during the daytime inside a practice net. The man is holding a hammer with a handle attached to a string, and he swings it a few times before spinning and throwing the hammer through the open end of the practice net. There are people visible outside the practice net in the back. The man appears to be practicing his technique, and seems to be focused on his movements and form as he goes through the motions of the hammer throw.",0 1348,v_UaO7bS5Ky6M,Can you describe the video in detail?,v_UaO7bS5Ky6M_1348,"The video shows a woman performing ballet on a well-lit stage in an empty theatre. She is wearing a maroon top, black trousers, and pointe shoes. The stage has huge speakers mounted on both sides, and there are two galleries with speakers mounted on the edge of each gallery. A huge light flashes from the middle of the theatre, adding to the ambiance. The woman starts by standing on her toes and moving both her hands before doing twists and turns on her toes. She elegantly jumps with both her hands up and rotates her whole body while standing on one leg. She performs numerous ballet steps, always gracefully moving and twisting before ending her performance by laying on the floor.",0 1349,v_wEehiYq9ttE,Can you describe the video in detail?,v_wEehiYq9ttE_1349,"The video features a woman wearing a black T-shirt and khaki shorts, standing in front of a shop with a glass display case holding a glass of beer in her left hand. As she receives a shoe cleaning, a man is seen bending down and cleaning her shoe using a cloth. A guitar is visible in the display case behind the woman. While the man is cleaning her shoe, the woman dances to the music that can be heard in the background. The man then stands up and speaks to her before continuing to clean her shoe. He spritzes some liquid from a spray bottle onto the shoe and proceeds to clean it with a toothbrush.",0 1350,v_rklYNAAaI3Y,Can you describe what happens in the video in detail?,v_rklYNAAaI3Y_1350,"In the video, a woman is sitting on a chair washing clothes with the help of a little boy standing next to her. They are in a well-lit room with sunlight streaming through an open door on the right. The woman has a bucket filled with soaked clothes, while a green tub with water and soaked clothes are placed on a counter to her left. The woman and the boy speak to the cameraman as they continue to remove clothes from the bucket. The little boy tries to help the woman as he pulls clothes from the bucket. At one point, the woman points to the green tub and speaks to the child. The camera then focuses on the tub before panning towards the little boy waving goodbye as the video ends.",0 1351,v_ZVjLscGMOs8,Can you describe the video in detail?,v_ZVjLscGMOs8_1351,The video depicts three women in white vests and track pants doing aerobics steps in a dimly lit studio with a black floor. There are monitors displaying a logo in the darkened back of the studio. One of the women is the instructor. The routine continues throughout the video and ends with the women still working out. ,0 1352,v_z6pmp8TrAVo,Can you describe the entire video content in detail?,v_z6pmp8TrAVo_1352,"The video shows a man wearing a grey T-shirt and glasses leaning over a white kitchen sink and washing a plate. The kitchen appears to be well-lit with white walls and a visible refrigerator at the back. The counter around the sink is also white and a potted plant is placed next to the sink. As the man continues to wash the plate, another person wearing a striped t-shirt walks behind him and taps him twice before walking away. The man washing the dishes chuckles before the video ends.",0 1353,v_vzUeFzhVYLg,Can you describe the video in detail?,v_vzUeFzhVYLg_1353,"The video features a woman standing on the second level of a diving platform in an indoor swimming pool with overhead lights. The camera shows people visible near the bottom of the diving board. The woman then runs to the edge of the board and executes a dive with a tuck and several turns into the pool. The dive seems to be executed perfectly and looks graceful while entering into the water. Overall, the video showcases skilled diving executed by the woman, and the surroundings contribute to the enjoyment of the performance.",0 1354,v_wFVukrQfQhI,Can you describe what happens in the video of the two girls playing racquetball?,v_wFVukrQfQhI_1354,"The video starts with two girls in a well-lit racquetball court wearing white T-shirts, shorts, and safety glasses. The court has white walls and a light wooden floor. They begin by hitting the ball on the wall and when one of them misses a hit, they start over. The two move around inside the court and follow the ball with each of them missing a few times and the other player getting the ball to serve. The game continues until the end when the two players stop and shake hands.",0 1355,v_rOtmhurweqo,Can you describe the video in detail?,v_rOtmhurweqo_1355,"In the video, an elderly man wearing a white t-shirt and track pants is seen peddling an exercise bike in a well-lit bedroom with white walls. On the right wall, there are photos hung, while wardrobes can be seen on the left. In the frame, we can also see the edge of a bed on the right and an open door a few feet behind the man. The man pedals the exercise bike for some time before eventually stopping. ",0 1356,v_RXT17X7lRoQ,Can you describe the video content in detail?,v_RXT17X7lRoQ_1356,The video starts with text appearing on a green background and then transitions to a team of girls wearing black and pink uniforms posing for a photo with some of them holding lacrosse sticks in a field during daylight. Buildings and trees can be seen in the background outside the field. The video shows additional images before showcasing a game of lacrosse where the team is playing with a referee present. The video follows a player wearing a number six uniform as she takes the ball and scores goals in different lacrosse games. The video ends with another slideshow of group photos of the lacrosse team.,0 1357,v_YOk1cMsyk88,Can you describe the video in detail?,v_YOk1cMsyk88_1357,"The video begins with a man sporting a white t-shirt and a red cap, carrying a backpack, skateboarding along an empty road covered with grass during the daytime. The sky appears overcast, and hills can be seen in the far distance. As he continues to skate straight, other vehicles can be seen moving on the road to the right of the man. Suddenly, as he loses balance, he falls off the skateboard, and the cameraperson skates past him and then turns back. The camera is momentarily covered, and then the cameraman removes it.",0 1358,v_qmHjHk0Hzz8,Can you describe the video in detail?,v_qmHjHk0Hzz8_1358,"In the video, a shirtless man wearing black shorts is seen standing in a throwing circle which is inside a practice net. The throwing circle is located in a field during the daytime, and in the distance, a tall pole with floodlights facing toward the field is visible. The man begins to spin a few times in place and then throws his discus with a great force. ",0 1359,v_rc-DiL5er28,Can you describe the video in detail?,v_rc-DiL5er28_1359,"The video shows a team of dodgeball players waiting outside a basketball court in a school gymnasium while kids sit on the side. An American flag hangs from the wall behind the team, and a basketball hoop is visible above them. A man in a light-colored jacket records the team with his phone as a yellow mat is placed in front of them. The camera then pans to the referee placing dodgeballs in the middle of the court, while the mascot 'HAWKS' is painted on the wall. Two teams, one wearing blue t-shirts and the other wearing yellow t-shirts, run towards the dodge balls as the game begins. There are people sitting behind a desk by the wall with the mascot painting. The game comes to an end as a player from the blue team falls on his back and the referee helps him up.",0 1360,v_fM5egP_1DvQ,Can you describe the video in detail?,v_fM5egP_1DvQ_1360,"The video shows a high jump competition that takes place in a stadium with an audience in it. The participants wear different colored vests, shorts, and sports shoes. The first participant wears a red and green vest, black shorts, and white shoes. He jumps over a yellow pole and lands on a red platform. His jump replays are shown, and then the frame changes to the next participant, who wears a red and cream vest, black shorts, and white sports shoes. He also jumps over the pole and lands on the platform, celebrates his jump by raising both hands in the air. The audience cheers for him, and his jump replays are shown. The frame then changes to the third participant who wears a light blue jersey and red & white sports shoes. He successfully jumps over the pole and lands on the platform, celebrates his jump, and then his jump replays are also shown. Finally, the video shows the first participant, who wears a dark blue T-shirt, packing his bags, indicating that he has won the gold medal. The video ends with a table showing the final standings of all the participants.",0 1361,v_R_JKmGmURvA,Can you describe the video in detail?,v_R_JKmGmURvA_1361,"The video shows a man wearing a black polo shirt and shorts placing a camera on a table in front of him. On the table, there are cocktail glasses lined up in the middle and a cocktail mixer on the left with various cocktail ingredients surrounding it. There are also kitchen implements on the counter at the back wall along with shelves lining the wall. He walks to the left of the table, picks up some ice cubes, dumps them into the cocktail mixer, and then places a lemon squeezer in front of him. After browsing his phone, he begins to speak to the camera and mix a cocktail starting with jin. He then mixes other liquors into the cocktail mixer, adds freshly squeezed lemon juice, shakes the mixer vigorously, and pours the cocktail into the cocktail glasses while speaking to someone behind the camera. Finally, he holds up the cocktail glass and takes a drink. There are draped windows at the back wall.",0 1362,v_vIQPDP8jW8A,Can you describe the process of making the cocktail shown in the video?,v_vIQPDP8jW8A_1362,"In the video, a bartender wearing a black shirt can be seen standing in a well-lit bar with shelves of alcohol on the back wall. He starts by adding slices of cucumber to a glass and crushing them using a wooden pestle. Then, he measures a cap of Bombay Sapphire Gin and pours it into the glass followed by a cap of St. Germain liquor. He then adds some lemon juice, ginger syrup, and elderflower syrup. Next, he adds egg whites to the glass and covers it with a cocktail mixer which he shakes vigorously. He pours the mixture into a glass filled with ice cubes, mixes it again and adds a slice of cucumber on top. The process is shown step by step with close-up shots of each ingredient being added to the glass.",0 1363,v_-pkfcMUIEMo,Can you describe what happens in the video with the man holding a snow shovel?,v_-pkfcMUIEMo_1363,"In the video, a man dressed in winter clothing is outside standing next to a wall during the daytime. The camera captures him demonstrating how to shovel snow using a snow shovel. As the man speaks, snow can be seen falling around him. He then proceeds to scoop a large pile of snow and throws it aside repetitively. After a few shovels, the man walks to the camera and shuts it off, ending the demonstration.",0 1364,v_VhdidrZKuTU,Can you describe the actions of the man in the video in detail?,v_VhdidrZKuTU_1364,"In the video, a man is seen wearing a flannel shirt, jeans, and a cap, while kneeling in front of firewood and scrunched-up newspapers on a grassy field with trees in the background. He crumples more newspapers and places them in front of him before arranging some firewood over the crumpled pieces of newspapers. He then sprinkles table salt and white pepper powder on the arrangement, before lighting the paper using a lighter. Afterwards, he pours gasoline on the firewood, and it instantly catches fire. The video ends with the man standing next to the burning campfire, speaking to the camera.",0 1365,v_W4mJsJGa0CY,Can you describe the video in detail?,v_W4mJsJGa0CY_1365,"The video shows a man in a black vest and track pants standing beside a pommel horse in a well-lit indoor arena. Other athletes and spectators are seated at the back, visible on one floor above the ground. The man places his hands on the handles of the pommel horse and begins his routine, doing handstands and spins. However, he loses balance and slips to the floor. He then walks to a bowl, applies some chalk to his hands, mounts the pommel horse again, and continues his routine. The video ends as he does a handstand and lands on the floor.",0 1366,v_TkhUtx0Eyfw,Can you describe the events in the video in detail?,v_TkhUtx0Eyfw_1366,"The video starts with a girl sitting on a chair in a well-lit store with jewelry and clothes placed on racks in the background. She is dressed in black and sitting next to a jewelry display. A technician wearing white gloves is using a pen to make marks on the girl's ear to pierce it. The technician ensures that the marks are symmetrical on both ears and then cleans the area with a swab. The technician then proceeds to use an ear-piercing gun, causing the girl to become frightened initially, but she eventually calms down. Meanwhile, the camera's position changes as it moves to show two girls playing in the back. A person wearing a dark sweater leans the girl's head against her, and the technician pierces the girl's ear. The technician then repeats the process on the girl's other ear. The video concludes with the girl sitting in the chair, looking excited.",0 1367,v_Q3ZNFGE8PZE,Can you describe what is happening in the video in detail?,v_Q3ZNFGE8PZE_1367,"In the video, a boy is seen wearing a sweater over a shirt and khaki trousers, with white gloves and a white cap, dancing in an alley during the day. There is a stereo with its antenna extended on the left. Two women are walking towards the boy from the back. Another boy, wearing a black jacket and white gloves, joins the boy and they continue dancing. The boy uses a black umbrella as a prop to dance. As the dancers breakdance one at a time, a group of people joins the girls as they watch and cheer the boys.",0 1368,v_QriYk3MKSnM,Can you describe the video in detail?,v_QriYk3MKSnM_1368,"Sure, the video starts with two girls who are sitting in a dimly lit living room with a shut window at the back. They are combing each other's hair while speaking to each other and the camerawoman. They first comb one side of their hair and then the other. At one point, the girl on the right combs the other girl's hair and accidentally pulls it. Then the girl on the left tries to comb the other girl's hair and her own hair gets caught in the comb, causing it to be pulled as well. The video ends as the girl on the right manages to free her hair from the comb. Overall, the video is a simple interaction between two friends spending time together.",0 1369,v_x90zpDHTpjQ,Can you describe what happens in the video in detail?,v_x90zpDHTpjQ_1369,"In the video, a man can be seen wearing a white and black t-shirt in a well-lit gym with wooden walls and windows at the top, where sunlight is coming through. Another person can be seen in the background, lifting a barbell. The man walks towards the barbell, takes a deep breath, bends down, and tries to lift it. After slowly lifting it for a few feet, he drops it, and he tries again but drops it once more. He then walks towards the camera, speaks, and the video ends.",0 1370,v_X4J9UBXb0FM,Can you describe the video content in detail?,v_X4J9UBXb0FM_1370,"The video opens with a slow-motion shot of a man starting his run at a pole vaulting competition taking place in a track field during the daytime, wearing a vest and black shorts. As he begins his run, the athlete vaults over the bar. In the following scene, an athlete in a blue vest and shorts is shown competing at night, as the field is lit by floodlights. The athlete is seen vaulting over a bar in a pole-vaulting competition. Soon after, an athlete dressed in an orange vest and shorts is shown doing the same. The competition includes various athletes pole-vaulting, both during the day and night. Finally, the video concludes with shots of athletes standing atop medal podiums wearing wreaths.",0 1371,v_zXHyFBrj5Ag,Can you describe the video in detail?,v_zXHyFBrj5Ag_1371,"The video shows a man in a well-lit room wearing a striped blue and black t-shirt and shorts ironing a blue and white Hawaiian shirt on an ironing board. The camera first shows him ironing one half of the shirt and then he moves on to the other. As the camera pans out, we can see clothes visible behind the man, with a hanger sticking out of the shirt. The video appears to be a tutorial on how to properly iron a shirt.",0 1372,v_PwRqqR1YmPM,Can you describe the video of the pole vaulting competition in detail?,v_PwRqqR1YmPM_1372,"The video starts with an athlete running on a track field to compete in the pole vaulting competition held in the daytime. Other people are seen standing and sitting in the same field. The athlete holds the pole ahead of him and runs before vaulting over the bar and landing on the cushion mat. After each athlete completes their run, the video shows replays. Observers with binoculars are seen by the bars, and the video continues with athletes completing their jumps. The video ends with stats of the athletes.",0 1373,v_peiF2E05u8g,Can you describe the video in detail?,v_peiF2E05u8g_1373,"The video follows a girl outside a shopping mall during the daytime. She is seen wearing a white top and has a bag slung on her shoulder. In the beginning, she speaks to the camera and then enters the mall. Inside the mall, she visits a makeup shop and then goes to a salon where a beautician applies makeup to her face. She speaks to the camera in between these shots. Later, she is seen sitting on a red sofa chair and flipping through a magazine while speaking to the camera before getting her nails painted. There are numerous salon workers painting nails as other people in the salon also get their nails painted. Finally, the girl stands outside and speaks to the camera near an escalator before the video ends.",0 1374,v_GChGC-VJZHs,Can you describe the video content in detail?,v_GChGC-VJZHs_1374,"The video starts with a fast-paced sequence of images flashing and a countdown, leading to clips of dirt bikers performing stunts and jumps in a forest. The forest features a dirt bike track with many bumps and obstacles on which motorcyclists are equipped with off-road gear and helmets. The frame changes to a motorcyclist falling from his bike and giving a thumbs-up sign assuring that he is unharmed. The video ending showcases the motorcyclist riding the track and performing jumps to the rhythms of music in the background.",0 1375,v_Ur_ToogEkCA,Can you describe the video in detail?,v_Ur_ToogEkCA_1375,"The video depicts a daytime scene where four people are playing volleyball on either side of a volleyball net. A woman wearing a blue vest over a red top can be seen on the sideline. Thick clouds can be observed in the sky. The game begins with a man on the left side of the court passing the ball to the other side. The man in a black sweatshirt and white shorts then passes the ball back, and this process continues for a while. Eventually, the man on the right passes the ball to his teammate, who catches the ball, and the game comes to a close. At the end of the game, a few people appear in the frame.",0 1376,v_YAKXrBinGD4,Can you describe the video in detail?,v_YAKXrBinGD4_1376,"The video starts with a view of a canyon and a river with a boat in the river. The camera then changes quickly between a houseboat, a jet-ski and a motorboat. After that, a woman and two men are shown talking with each other. The woman is wearing a light blue T-shirt and black trousers alongside a life vest. One of the men is wearing a white T-shirt, a white cap, and a life vest while the other one is wearing a sleeveless black T-shirt, a grey, and black cap, and a life vest. Behind them, a lot of kayak boats can be seen where some are kept under a shed. The man with the grey and black cap shows some hand signs. Next, the view changes to the canyon and a woman kayaking in the river. The man with the grey and black cap hi-fives the woman and then the woman puts her hand on the other man's shoulder. Following that is a scene where the three are kayaking in the river between the canyon by sitting on the kayak and using a double-bladed paddle to pull front-to-back on one side and then the other in rotation. Lastly, we see the same woman talking with a man in a motorboat. The man is wearing a red T-shirt, grey pants, and a black cap, and he is steering the boat. The video ends with the woman kayaking in the river with the two men.",0 1377,v_qU4GmCN2e1Y,Can you describe the video in detail?,v_qU4GmCN2e1Y_1377,"In the video, a man dressed in a dark blue vest and pants is seen performing a routine on parallel bars in a brightly lit arena. There are cushioned mats placed on either side of the bars, and photos are hung high up on the left wall. The arena is streaming with sunlight from a glass window. A few people are standing a few feet away from the parallel bars observing the routine. The routine starts with the man jumping and holding onto the parallel bars, followed by swinging and doing a handstand. Then he holds himself up using the bars and maintains a sitting position by keeping his legs parallel to the ground. Finally, he finishes the routine with another handstand and jumps down to the ground.",0 1378,v_FqYhC6_CMfI,Can you describe what happens in the video of the man windsurfing?,v_FqYhC6_CMfI_1378,"In the video, a man is seen windsurfing on a beach. He wears a dark blue vest and white shorts, and attaches the sail to his board before starting to windsurf. On the left of the man, stilt houses are visible while trees are on the far left side. The sky appears cloudy. The man is then shown windsurfing across the calm beach water with mild waves, but eventually falls from the board. The video concludes with the man falling from the board.",0 1379,v_s9PkkDEl6aY,Can you describe the video in detail?,v_s9PkkDEl6aY_1379,"The video shows a Zumba class being conducted indoors in a basketball court for children. The instructor, wearing a green top and khaki pants, leads the class on a raised platform. The floor of the court is blue with white and brown walls, and there are windows on the right wall. Throughout the video, the instructor leads the class with different moves and dances. The video comes to an end as the instructor walks down the platform, signaling the end of the class.",0 1380,v_ROrLMf0zXko,Can you describe the video in detail?,v_ROrLMf0zXko_1380,"The video starts with text on a white screen and then transitions to a street scene during the daytime. There are many people standing around a black and white mat, and a man in a white outfit is preparing to breakdance. Stores line the sidewalk. The man, wearing a white t-shirt and track pants, dances briefly before stepping onto the mat and performing a breakdancing move called the helicopter spin. He spins while holding himself up with one hand, showing off his impressive breakdancing skills.",0 1381,v_W6fPv5eoXC4,Can you describe the video of the man on the tennis court in detail?,v_W6fPv5eoXC4_1381,"In the slow-motion video, a man wearing a grey sleeveless shirt and blue shorts can be seen standing on a tennis court during the day, with cloudy skies overhead. A chain-link fence runs along the left side of the court, next to which are adjacent courts. In the background, a few trees are visible. The man picks up a ball from a basket, bounces it on the ground a few times and serves it. As he serves, he takes a few steps forward. In the following clip, a replay of the serve at normal speed is shown.",0 1382,v_zB8knKX0W8Q,Can you describe the video in detail?,v_zB8knKX0W8Q_1382,"The video provides a glimpse into the world of antique furniture restoration. It begins with a shot of a projecting store sign before moving into an antique store where a man is speaking while seated inside. The camera then cuts to an exterior shot of the building and the surrounding street. Next, the man walks to a shutter and opens it from inside before introducing a woman who speaks to the camera. The scene then shifts to a man brushing a wooden piece of furniture and using a white cloth to wipe it. Two women are then seen standing in front of an old photograph. The exterior of a house with sloping roofs is briefly shown before returning to the antique store where the man is restoring different pieces of furniture. Another man in a green shirt is seen fixing the top of a coffee table, while a man is polishing different wooden surfaces. The camera then shows different furniture and equipment inside the antique store including tools hanging on the wall, gloves, and bottles of liquids on shelves before the video ends.",0 1383,v_OlykXdYeQOI,Can you describe the video in detail?,v_OlykXdYeQOI_1383,"This is a video of a shirtless man giving a haircut to a boy who is seated on a chair covered with a white cape. They are outdoors during the daytime, seemingly on a sidewalk with cars parked next to them and plants behind the boy. The barber hands the boy a handheld mirror, which he uses to look at himself and gesture towards his head. The barber then proceeds to cut the boy's hair at the indicated area using a comb and scissors. The boy looks at his hair in the mirror as the barber cuts it. The barber then uses a trimmer to trim the edges of the boy's hair. A little girl walks into the frame on the left. The video ends with the barber using the trimmer to trim the hair on the back of the boy's neck.",0 1384,v_PdwWFueQErM,Can you describe the video in detail?,v_PdwWFueQErM_1384,"The video shows a man wearing a black sweater and jeans shoveling snow slowly in the daytime outdoors. The background shows trees in the distance and a roof on his left covered in snow. After shoveling and clearing a small area, he turns around and slings the shovel over his shoulder before speaking to the cameraman. Overall, the video captures a peaceful winter scene of a man clearing snow in a calm and methodical manner.",0 1385,v_TZOhIMjwEE8,Can you describe the video in detail?,v_TZOhIMjwEE8_1385,"The video starts with a woman wearing a white vest, grey trousers, and white sports shoes who is lawn-mowing on a sunny day. She is mowing the lawn by moving the lawnmower and making turns, leaving some grass on the sidewalks. There are small trees on the green lawn, which is surrounded by wooden walls and a small shed outside. A white dog is also present on the lawn. In front of the woman, there is a house with some chairs, a table, and an umbrella. Throughout the video, the woman continues to move the lawnmower across the lawn and at the end, she gives the cameraman a thumbs up.",0 1386,v_GH0Umpw6tME,Can you describe the video in detail?,v_GH0Umpw6tME_1386,"Sure! The video captures an aerobic class in a well-lit studio with overhead lighting and fans on the roof. The studio walls are white with half of them covered with mirrors and there is a black speaker mounted on the wall to the right of the women working out. The class is using aerobic steps and silver gym balls are kept on a shelf to the right of the women working out. The instructor, wearing a grey vest, black cap, and black shorts with sports shoes, is calling out instructions while the women follow the routine. However, a woman in the back row, wearing a black t-shirt and pants, appears to be missing steps. The video ends as the instructor claps and calls for a stop.",0 1387,v_UvOEuhS0V3E,Can you describe the video in detail?,v_UvOEuhS0V3E_1387,"The video starts with a woman sitting in a well-lit room in front of a mirror wearing a white top. Light is streaming in from her right side. She is shown applying lipstick. In the next clip, a man sits in front of the same mirror wearing an olive t-shirt. He removes something from a box that is placed in front of him and proceeds to wipe them on his eyebrows one at a time. Surprisingly, he even eats them. ",0 1388,v_ZY0cdXr_1MA,Can you describe the video in detail?,v_ZY0cdXr_1MA_1388,"The video begins in a white room where a woman is doing ballet. Sunlight fills the room from the right side, creating a serene atmosphere. The scene then shifts to a stage where the woman continues to showcase her skills in ballet. Overhead lights illuminate the stage, setting the tone for the performance. The camera zooms in for a closer look at the dancer as she gracefully moves across the stage, her movements flowing in perfect harmony. The video ends with a close-up shot of the dancer's face, revealing her intense focus and concentration. Finally, the logo for 'Under Armor' appears on a black screen, indicating the brand behind the video.",0 1389,v_QOaPQpXemCA,Can you describe the video content in detail?,v_QOaPQpXemCA_1389,"The video begins with a graphic showing the website's URL for mDhil.com, followed by a shot of a woman wearing a sari sitting in a garden with plants in the background, speaking to the camera. The name and information of the woman, Lakshmi Rebecca, appears on a ribbon on the screen. The following shot shows Lakshmi in a beauty salon with two other women: a customer in a chair and a beautician in a dark blue outfit, Swathi Gupta. Swathi starts to apply makeup to the customer's eyes as she speaks, using different shades of makeup. She then applies lipstick to the customer and finishes the makeup by applying it to her cheeks. The walls of the salon are white, and there is a sink near the back wall. Finally, Lakshmi speaks for a moment before the credits roll at the end of the video.",0 1390,v_ZK4Y6nOton8,Can you provide a detailed description of the video content?,v_ZK4Y6nOton8_1390,"In the video, a young girl wearing a pink t-shirt is shown serving a shuttlecock in a well-lit indoor venue. The venue appears to host a game of badminton, with other players and children present. Outside the court, two individuals can be seen playing badminton by the back wall, while a few children stand outside the court as the girl and her opponent play. At one point, both players miss hitting the shuttlecock, and a child standing on the side throws it back to the girl. The camera then pans to people sitting on chairs, and a person sitting on one of them smiles. The girls continue to play, but each of them misses hitting the shuttlecock despite their attempts.",0 1391,v_uCvjzcVCtEs,Can you describe the video content in detail?,v_uCvjzcVCtEs_1391,"The video features a male athlete who is about to perform a long jump. The athlete is wearing a blue vest, black shorts, and red sports shoes. He is surrounded by other male athletes who are standing beside him in a stadium. Additionally, there are some female athletes walking on the track behind him. The stadium has a grassy field in the center and a running track around it. The seats in the stadium are orange and black and many trees can be seen outside the stadium. As he starts running on the track, the athlete moves both his hands forward and jumps on the sandy area. The video ends with people measuring the distance he jumped.",0 1392,v_zoWqv-sIdBY,Can you describe the video content in detail?,v_zoWqv-sIdBY_1392,"The video starts with text appearing on a blue screen, followed by a scene where a boy with long hair, referred to as Ivan, is sitting on a chair in a well-lit bedroom. Another boy named Oscar is standing behind him, combing Ivan's hair, which causes Ivan's head to be pulled back. Ivan is sitting in front of a table with a computer on it, next to a wooden drawer. The video ends as Ivan stops Oscar and the screen fades to black. The credits then start rolling. Overall, the video features Ivan and Oscar in a bedroom, with a focus on the act of grooming Ivan's long hair.",0 1393,v_qmfZw9eEpIU,Can you describe the video in detail?,v_qmfZw9eEpIU_1393,"The video starts with a man windsurfing on a red board with an attached sail. He is wearing a life vest and sunglasses while surfing past green hilly land, rock faces, and boulders on the shore. In the distance, we can see buildings. We get a top view of the surfer at one point. There are other windsurfers visible in the sea. The man continues to windsurf till the end of the video before the screen fades to black.",0 1394,v_tLk0Y04OaCA,Can you describe the video content in detail?,v_tLk0Y04OaCA_1394,"The video starts off inside a seemingly public restroom with a girl wearing a blue shirt walking out of a stall and approaching a sink that is brightly lit by what appears to be overhead lights. The sink, positioned underneath a mirror, is cluttered with assorted toiletries and belongings scattered both on top of and beneath the mirror. A person wearing a grey sweatshirt is standing close to the girl at the sink, holding a notebook and a pen. In the reflection of the mirror, another individual, wearing a red top, is visible, holding up a phone to capture the scene. The girl in the blue shirt proceeds to wash her hands and looks back at the person in the grey sweatshirt a few times. As she continues to wash her hands, she uses a soap dispenser located next to the sink. Ultimately, the video ends with the girl still washing her hands.",0 1395,v_VWGV8I5byKI,Can you describe the content of the video in detail?,v_VWGV8I5byKI_1395,"The video starts with an empty field with a football goalpost at the edge of the field, beyond which trees are visible. A man wearing a T-shirt and black shorts walks in front of the camera and prepares to train for a shotput. He stands on the concrete ground, while another man watches him from the edge of the concrete area. The man in the red t-shirt spins in place before throwing the shotput to the left, turns toward the camera and repeats the action. Subsequently, the camera angle changes to show the concrete throwing circle, with a wire mesh fence in the far background. The man walks into the circle and throws the shotput again by spinning and turning before throwing. The video shows slow-motion replays of his throw, with frames frozen for a moment as the man turns. Finally, the man is seen inside a gym with exercise equipment visible around him. He walks to the barbell with weights stacked on either end and lifts it once before letting it go and dropping it to the ground.",0 1396,v_sNJ6_N0j9Ts,Can you describe the video in detail?,v_sNJ6_N0j9Ts_1396,"The video shows four men playing squash in a well-lit squash court with a wooden floor. They are all wearing shorts and sports shoes. The game starts with an old man wearing a black t-shirt hitting the ball. One of the players, wearing a blue t-shirt, starts the game and the rest of the players try to hit the ball. A man wearing a red polo shirt hits the ball on the glass door and bounces it to the other side. The video ends as the man in a red polo shirt taps his racket on the glass door in front of the camera.",0 1397,v_t13MQSYjlas,Can you describe the video in detail?,v_t13MQSYjlas_1397,"In the video, we see a man wearing a red shirt and black pants standing inside a practice net in a field during the daytime with buildings visible beyond the edge of the field. He holds a hammer connected to a handle in his hands and begins the hammer throw by swinging the hammer around himself a few times before spinning it in place a few more times. He then throws the hammer through the open end of the practice net and watches it land. Towards the end of the video, a man walks from the right side of the frame a few meters from the practice net before the video ends.",0 1398,v_syfyM1Pble8,Can you describe what happens in the video in detail?,v_syfyM1Pble8_1398,"The video begins in a dimly lit gym with people on exercise bikes, with a man at the front of the gym calling out instructions while also peddling an exercise bike. The people on the bikes can be seen following his instructions. In the background, a mirror covers the back wall of the gym. A woman wearing a grey t-shirt can be seen walking away as the others exercise. Toward the front row, the first person has a towel draped over the handle of his exercise bike.",0 1399,v_u0A5NIUKEQo,Can you describe the video content in detail?,v_u0A5NIUKEQo_1399,"The video starts with a Christmas tree and a text that reads ""MERRY CHRISTMAS"". It then changes to two boys wearing Santa and Elves costumes respectively, walking in a mall. The boy in the Santa costume puts a huge box on the floor and knocks on it, prompting the other boy to jump out of it and start dancing. Spectators gather in the background as the two boys perform backflips, twists, and turns on the floor. The video then alternates between focusing on each boy individually, with shots of them dancing in front of a Christmas tree and interacting with people. Specifically, they talk to a woman and take a picture with a girl wearing a black T-shirt, with two other girls also present. One of them takes their picture. A clothes showroom is visible on their right side. The video ends with a digital page displaying some text. Overall, the video showcases the two boys dancing in festive costumes, interacting with others, and spreading Christmas cheer.",0 1400,v_-vnSFKJNB94,Can you describe Michal Navratil’s diving maneuvers in detail from the provided video description?,v_-vnSFKJNB94_1400,"The video features Michal Navratil doing different diving maneuvers off a diving board. He begins with flips and moves on to execute tucks, twists, forward dives, among others. The pool where Navratil is diving in is both well-lit by lights inside the building and sunlight from outside. Other people are visible around the pool area and Navratil can be seen executing his dives with perfect form and control. The video concludes with Navratil executing a forward tuck dive while an image of him shirtless and in jeans doing a split is displayed on the screen.",0 1401,v_Ws12Dt0Ny5Q,Can you please describe in detail what happens in the video?,v_Ws12Dt0Ny5Q_1401,"In the video, we see a female athlete carrying a pole, wearing a red crop top, red bikini bottoms, and red sports shoes, standing in a well-lit stadium with yellow and black seats, and officials on both sides of the athlete. She runs towards a blue platform with a bar above it supported by two white pillars, jumps above the bar using her pole, and lands on the platform. Then another female athlete wearing a purple crop top, grey bikini bottoms, and white sports shoes runs towards the platform with her pole and similarly jumps above the bar, with replays of both jumps in slow motion. After that, the first athlete attempts the jump again and lands on the platform, raising both her hands while making a fist, with another replay shown. The video then changes to a female athlete running on a track and jumping in a sandy area where athletes and officials are standing on her left side. Replay of her long jump is shown, and another woman athlete starts running down the track and attempts the long jump, with another replay shown. The video ends with the female athletes attempting the long jump one after another with replays shown in the end.",0 1402,v_tY9dmG6IyPo,Can you describe the video content in detail?,v_tY9dmG6IyPo_1402,"The video is of a woman athlete wearing a red and white short vest, blue shorts, and black sports shoes competing in a hammer throw competition. She is in a stadium with stadium lights all around and a grassy field. Spectators can be seen in the stands. The woman is standing in a throwing circle, surrounded by a huge green practice net. To the left side of the woman, there is a man in a blue tracksuit and a blue cap standing outside the net. The woman swings the hammer in the air with both her hands and then rotates her whole body to throw the hammer in the air. The hammer travels through the air and falls on the grassy field, where some people wearing the same uniform are standing and walking toward the hammer.",0 1403,v_wJk3KOUAwXA,Can you describe the video in detail?,v_wJk3KOUAwXA_1403,"The video showcases a man wearing a white apron and T-shirt in a well-lit woodworking shop surrounded by wooden planks and furniture. He is standing beside a small table with a wooden chair placed on it. The man is wearing a blue glove over his right hand and also has glasses and a cap on. In the video, he is using a ball of steel wool to apply wax on the surface of the table and then uses a car buffing wheel to polish the section he waxed. To finish, he uses a wet rag to give the surface a final buff.",0 1404,v_wh4JNeQh9FQ,Can you describe what is happening in the video?,v_wh4JNeQh9FQ_1404,"In the well-lit parlor, a woman dressed in black is lying on a retractable bed with a white sheet, facing right. The camera then zooms in on the technician, wearing white gloves, cleansing the woman's ear and follows as they mark her ear. As they begin to tattoo the girl's earlobe using a tattoo gun, the camera moves to the other side of the bed for a closer look. The technician finishes the tattoo and proceeds to clean the area.",0 1405,v_WdJUMmy2ox8,Can you describe the video in detail?,v_WdJUMmy2ox8_1405,"In the video, there are two men sitting on a sofa in a dimly-lit room. One of the men is smoking a hookah, wearing a black shirt and jeans and using his mobile phone. The other man, who is wearing a cap and a red sweater, accepts the pipe and starts smoking blowing smoke rings. The man on the left drinks from a glass before resuming smoking the hookah and making smoke rings. Both men hold up their blackberries before the video ends as the man on the right turns off the camera. A window is visible behind the men.",0 1406,v_ooFuSspUuVY,Can you describe the video in detail?,v_ooFuSspUuVY_1406,"Sure, the video starts with a girl wearing a blue top and a white helmet riding a horse in a riding arena during the daytime. The arena is surrounded by a boundary fence and other riders can be seen riding their horses in the background. The girl leads her horse through various obstacles, while holding her hands to her sides, and the horse jumps over them. She repeats this multiple times with different obstacles such as poles on the ground. The video ends as she brings the horse around near the camera and goes for another round. Overall, the video showcases the girl and her horse practicing their skills at the riding arena with other riders present in the background.",0 1407,v_tXUssW4vT3o,Can you describe the video in detail?,v_tXUssW4vT3o_1407,"The video begins with a spotlight shining on a white curtain that has red lighting on the stage. Then, a belly dancer enters wearing a sparkling turquoise-colored belly dancer dress. As the music plays in the background, she begins to move her hands and perform various steps while moving around the stage. There are camera flashes throughout her performance which highlight her movements. She twists, turns, and bends her body as she dances her way across the stage. The performance ends with the audience applauding her.",0 1408,v_TGIQtaINzCY,Can you describe in detail what happens in the video?,v_TGIQtaINzCY_1408,"The video starts with a graphic and text 'Voice of America'. A woman wearing a black t-shirt and a mic in her year is shown on an exercise bike, instructing a class with people on their exercise bikes. The well-lit gym has white walls and a grey floor. The instructor calls out instructions and there are clips of people exercising from different angles. One of the participants, a woman wearing a grey t-shirt and a hairband, is featured in an interview. Next, a man is seen moving a display tower into the class and demonstrates how to change the resistance on the exercise bikes. The cycling class continues with clips of people peddling. The man is seen speaking to the camera again and the video ends with clips of people on different exercise machines. Overall, the video shows a cycling class being instructed by a woman in a gym, with various participants and machines being shown throughout.",0 1409,v_ZUl43hNzGjA,Can you describe the video in detail?,v_ZUl43hNzGjA_1409,"The video starts with an exterior shot of a white building during daytime, followed by scenes inside a ballet studio where children are practicing ballet under the guidance of a teacher wearing a white t-shirt and pants. The camera then cuts to a hallway where some of the students are practicing while others sit at the bottom of the stairs in the back. Next, a well-lit studio is shown where a girl is speaking, while other girls dance with one hand on a handle. A woman wearing a green top then appears talking to the camera. A shot of the dome in the building is shown, followed by a scene of a classroom where students are seated and one of them is writing on the chalkboard. In the next scene, children are seen walking through the school while a woman wearing a red shirt speaks to the camera. Finally, a girl and a boy are dancing in a studio while the other children watch.",0 1410,v_sBwUwgTjhAU,Can you describe the video in detail?,v_sBwUwgTjhAU_1410,"In the video, a man wearing a grey shirt can be seen sitting in front of the camera, in what appears to be a study. He is trimming his beard while sitting in front of a shelf that is filled with a fax machine, books, boxes, and a stack of papers in the top row. Meanwhile, a woman wearing a sweater over a red outfit looks into the camera for a brief moment before walking away. As the man continues to shave, the camera cuts to the woman who walks towards a desk with a computer placed on it, and sits down. Eventually, the man shaves his mustache and the video ends. ",0 1411,v_WCS8dzRT7Xk,Can you describe the video in detail?,v_WCS8dzRT7Xk_1411,"In the video, we can see a woman wearing a grey shirt standing behind an ironing board. The room is well-lit with a wood wall behind her, while a bookcase is positioned behind and to her left. There is a green piece of clothing lying on the ironing board, which she turns inside out and lays flat to iron. She uses a white ironing cloth to iron the fabric, starting with slow circular motions on the ironing cloth and then moves on to an up and down motion with the fabric. This pattern is repeated until the entire fabric is ironed. Finally, the woman pulls the fabric off the ironing board and holds it up. Overall, the video demonstrates the process of ironing a green piece of clothing in a room with a wood wall and a bookcase in the background.",0 1412,v_wjr5M-6qEWI,Can you describe the video in detail?,v_wjr5M-6qEWI_1412,"The video shows two ping-pong players playing a game on an orange court in a well-lit arena with seats for spectators near the walls and flags of different countries hung near the rafters. A man wearing a jacket and khaki pants is sitting near the separator of the court. A referee is also present, wearing a coat and sitting behind a table at the edge of the court. The video then moves on to show matches being played in different courts, with one player shown having only one hand.",0 1413,v_GOF5guH_kuI,Can you describe the gymnastics performance in detail?,v_GOF5guH_kuI_1413,"The video features a female gymnast wearing a sparkling red gymnast costume, performing for a large crowd on a balance beam. A cameraman is also recording her performance. Cushioned mats are strategically placed around the balance beam. She hops onto the beam using a springboard and begins her routine with a backflip, unfortunately slipping and dropping to the mat. After regaining her composure, she continues her routine featuring flips, balancing acts, and jumps. She briefly loses her balance again but manages to get back on the beam and finishes her routine to a resounding cheer from the crowd.",0 1414,v_uqwf903l5-E,Can you describe the video in detail?,v_uqwf903l5-E_1414,"The video starts with a group of cheerleaders entering a well-lit hall with white and maroon walls, carrying blue cheerleading uniforms with white shoes. The hall is decorated with posters to the left side of the group performing, trophies behind them, and a board mounted on the wall. The audience sits on both sides and applauds as the group takes their position. Then, the group lifts five girls, followed by four other girls while a girl in the front does backflips and cartwheels. Next, some group members do flips, clap, and some of them do backflips. The group members lift four girls, and they all do a leaning forward pose by standing on one leg. Then some of them do cartwheels and backflips. One of the boys falls after doing the backflip. The video ends with the group doing cheerleading dance steps, and the audience applauding them at the same time.",0 1415,v_zxr6UZKPDh4,Can you describe the content of the video in detail?,v_zxr6UZKPDh4_1415,"The video starts with a man wearing a red life vest over a black shirt rowing a kayak down a stream surrounded by shrubs and trees. The video switches perspectives to show the front half of a green kayak as it moves with the man in the red lift vest visible on the left. This is followed by a man wearing a blue life vest rowing in a green kayak. Then, clips of people kayaking down rapids are shown, including one of two kayakers on the shore removing their life vests. The video continues with different shots of people kayaking down the stream. Finally, the video ends with the kayakers rowing down the stream.",0 1416,v_SNJgJB2PGdI,Can you describe the video in detail?,v_SNJgJB2PGdI_1416,"The video begins on a darkened stage with a lit candelabra visible. A woman enters and begins to dance to music while balancing the candelabra on her head. She performs a belly dance while continuing to balance the candelabra. Faint outlines of people can be seen at the back of the stage where a door is open. The woman continues to dance until the end of the song, at which point she holds her hands to her sides and walks away. ",0 1417,v_Zhx6BYVb64g,What happens in the video?,v_Zhx6BYVb64g_1417,"The video starts with text on a black screen and then a boy in a white t-shirt and glasses playing the violin with a bright light behind him. The scene shifts to the same boy now wearing a grey shirt and sunglasses playing the violin in a dimly lit room and walking through the room and house as he plays. Other people join behind him as he walks. The clip changes again with the boy sitting on a couch wearing a sweater over a shirt, then getting up and leaving. He returns wearing a grey shirt and sunglasses and sits next to a girl, taking selfies with his phone as she gets up and leaves. Throughout the video, there are cutaways of the boy playing the violin in different settings. Another boy in a black t-shirt also joins in playing the violin. The boy in the grey shirt and sunglasses sits on a couch, changes his glasses to the old ones, and leaves. The video ends with him knocking on a door and handing a stuffed animal to a girl.",0 1418,v_oncTwYfvCD8,Can you describe the video in detail?,v_oncTwYfvCD8_1418,"The video features a man performing various martial arts movements in different settings. In the first scene, he is wearing a white polo shirt and trousers and demonstrating the movements in a well-lit studio with people sitting on the floor by the walls. The studio has curtains covering the windows. In the next shot, he is still in a well-lit room with white walls and darkened windows at the back wall while a man performs various martial arts movements and people sit and watch. Next, the man is outside on a lawn during the daytime, dressed in a green martial arts uniform, and demonstrating various movements while people stand a few feet away and observe. In the next scene, the man is inside an indoor venue and demonstrating various martial arts movements while people sit on the sides. Finally, he wears a white martial arts uniform and demonstrates different movements with people observing him, and the video ends. Overall, the video showcases different martial arts techniques and settings where they can be practiced.",0 1419,v_yttmx8mcjGw,Can you describe the video in detail?,v_yttmx8mcjGw_1419,"The video starts with two women in Ford T-shirts on a beach with people walking around and playing cricket. Following that, a man is seen rolling up a carpet and lowering a box in a house. Then, a woman in a yellow t-shirt and sunglasses grabs a cricket bat and prepares to bat while people are seen fielding or watching around her. The video then showcases various cricket games played professionally and by people at homes and beaches, including clips from games played by professional players from the Australian cricket team and in a stadium. Lastly, a child with a cricket bat is standing near the stumps, preparing to bat. Overall, the video showcases people enjoying the sport of cricket in various settings and situations.",0 1420,v_wcxEkMoOmBk,Can you describe what happens in the video in detail?,v_wcxEkMoOmBk_1420,"In the video, we see a woman named Julie wearing a green sweater standing in a well-lit hair salon next to a round tabletop swivel mirror. Julie speaks to the camera and there is another woman sitting next to her. The next scene shows women seated in the salon, one at a time, each attaching different types of hair rollers to their hair. Finally, the women are seen removing their hair rollers and spraying their hair while looking at mirrors. Overall, the video provides a glimpse into the process of getting hair done at a salon and the variety of tools and techniques used.",0 1421,v_zEttEkAdHts,Can you describe the video in detail?,v_zEttEkAdHts_1421,"The video begins with rolls of gift wrappers stacked on top of each other. Then, a stack of US one dollar bills is shown on a white surface and text appears above and below it. Two scotch tapes are placed next to each other and the left tape has a red X mark on it and disappears after. After that, a gift is placed on the white surface and US one dollar bills are taped to it to mimic gift wrapping. Then, a green string is used to tie a bow on top of the gift.",0 1422,v_z3MP0yJBtGg,Can you describe the video in detail?,v_z3MP0yJBtGg_1422,"In the video, a girl is visible wearing a black hoodie and a jeans skirt. She is seen standing in front of a stone dipper well, which has several ladles arranged on the top. The dipper is filled with water from a tank placed at the top of the well. The girl is standing on a stone floor under a roof, and some pillars are visible on her left side. The location seems to be a venue during the daytime, where a yard is visible outside, fenced at the end. There is a tree to the left of the yard. The girl starts scooping out some water using a ladle in her right hand. She then washes her left hand and uses it to scoop out water to wash her right hand. Finally, she places the ladle back on top of the dipper well and walks away from there.",0 1423,v_Omvg9UtGOes,Can you describe the video in detail?,v_Omvg9UtGOes_1423,"The video opens with some text displayed on a black screen. After that, a woman can be seen sitting in a bright room. She places a box on a table and covers it with a pink cloth, which has a green exterior. The woman carefully folds the edges of the fabric over the box and ties them together. The camera stays focused on the wrapped box as the video fades out.",0 1424,v_oni9K1_MCuw,Can you describe the video in detail?,v_oni9K1_MCuw_1424,"The video begins with people seated at tables in a ballroom, each table having wine glasses on them. Some people get up from their tables and stand aside. An orchestra is visible in the background playing near the tables. The orchestra comprises five people with different instruments who start playing music. Meanwhile, a man and a woman walk towards an open space in the ballroom and begin to waltz. The man lifts the woman up, and they spin a few times before starting to dance and move around the dancefloor. They perform various side steps and back steps as they continue to dance and are shown from different angles. Towards the end of the video, the man again lifts the woman, and they spin before separating and bowing to the audience and the orchestra. They then walk away, holding hands.",0 1425,v_Rn6_IwckXg4,Can you describe the video content in detail?,v_Rn6_IwckXg4_1425,"The video starts with text appearing on screen before cutting to a woman wearing a black coat over a blue top smoking an e-cigarette, standing against a wooden wall, with another woman watching her. The next scene features a man with glasses and a checkered shirt also smoking an e-cigarette. The video continues with a montage of different people smoking the e-cigarette, with a woman in a red outfit and hat standing next to most of the people. Overall, the video seems to be a compilation of people enjoying e-cigarettes with a focus on the different types of people who indulge in this activity.",0 1426,v_TNqc2yWZztE,Can you describe the video in detail?,v_TNqc2yWZztE_1426,"The video is an instructional guide on gift-wrapping and contains step-by-step instructions. It starts with a title ""how to wrap a gift"" displayed on a black background. A woman, wearing a grey and white sweater, is shown wrapping a small box on a wooden table in a well-lit room. She takes a gift-wrapping paper to wrap the small box and applies tape to its sides. The frame then changes to another text displayed on a black background. Next, she takes a bigger red square box and measures its sides with a plastic scale before taking gift-wrapping paper and folding it so that it covers the box completely. She applies tape on the center of the paper. The frame changes to another text being displayed on a black background. Mathematical formulas are shown on a white paper, and an Excel sheet is displayed. The frame again changes to the woman putting a rectangular box on the table and gift-wrapping it similarly to the previous boxes. The video ends with the woman putting all the gift-wrapped boxes on the table.",0 1427,v_UNXLfqkwKFc,Can you describe the video in detail?,v_UNXLfqkwKFc_1427,"The video starts with a man wearing blue shorts standing in a well-lit room with white walls. To the left of the man is a glass table with golden stands that has photo frames on it. The man switches on the vacuum cleaner and hovers it over the dust on the floor. The sound of the vacuum cleaner is audible throughout the video. The camera focuses on the man as he completes the cleaning process and switches off the vacuum cleaner before moving out of the frame. Overall, the video is a simple demonstration of a man using a vacuum cleaner to clean the floor of a room.",0 1428,v_W9H2qVnIWXs,Can you describe the video in detail?,v_W9H2qVnIWXs_1428,"The video begins with a white labrador retriever panting outside, while a man in a red polo shirt is bathing a golden retriever who is secured with a harness. The groomer lathers and washes the dog with a hose, dries him with a towel and a blow-drier, wipes him with a towel again, and then brushes his coat. A man wearing a brown jacket and jeans is then seen entering a shop with his dog in a harness. Next, a golden retriever is shown lying down on the floor. A labrador retriever is then shown jumping through an orange tube, and onto the ground in a wooden area, panting in a different location. The video ends with contact information for the groomer.",0 1429,v_ZxPF3s_OLDo,Can you describe the video in detail?,v_ZxPF3s_OLDo_1429,"The video starts with a man wearing a red t-shirt climbing a rocky hill during the daytime. He is wearing a belt with a chalk pouch on it. A tree can be seen past the hill and a green field with houses is visible on the ground. After climbing up, there is a panoramic view of the city with the buildings visible. The man then rappels down the hill using a rope and removing anchors as he descends. To his right, there is a yellow metal staircase attached to the hill. The video ends as the man reaches the bottom where a woman is belaying the rope.",0 1430,v_p1QGn0IzfW0,What equipment is visible in the gym?,v_p1QGn0IzfW0_1430,"In the gym, other equipment visible includes a high bar and still rings.",0 1431,v_UZm05CvtxkA,What event is happening in the video?,v_UZm05CvtxkA_1431,A volleyball game is being played indoors with two teams and spectators watching.,0 1432,v_oR8o_PuKS28,What are the players using to hit the ball?,v_oR8o_PuKS28_1432,The players are only using their heads and legs to punt the ball back and forth.,0 1433,v_YIq3Tar9x6s,What are the girls wearing while combing their hair?,v_YIq3Tar9x6s_1433,"The girl combing the hair is wearing a black sweatshirt, a white top, and blue jeans while her friend is wearing a black sweatshirt.",0 1434,v_U3-MtKZeUXM,What type of shoes is the athlete wearing and what color are they?,v_U3-MtKZeUXM_1434,The athlete is wearing white and red sports shoes.,0 1435,v_q_QR5HoROhI,What is the man wearing in the video?,v_q_QR5HoROhI_1435,The man is wearing a black coat over a white shirt.,0 1436,v_qsEnLQ2UnEA,What is the throwing circle made of?,v_qsEnLQ2UnEA_1436,The throwing circle is made of concrete.,0 1437,v_ZwK52lXCbhA,What is the man wearing in the video?,v_ZwK52lXCbhA_1437,The man is wearing a red sleeveless shirt.,0 1438,v_Y9d4iPDeigI,What do the boxers do after the clinching?,v_Y9d4iPDeigI_1438,"After the clinching, the two boxers keep both their hands on top of each other shoulders and try to hit each other with their knee.",0 1439,v_qtKa7Lr3URA,What is the girl behind the washerwoman doing?,v_qtKa7Lr3URA_1439,The girl in a dark-colored top and yellow skirt is standing behind with her hands folded.,0 1440,v_P7Z4i1gmzjs,What is the boy doing in the gym at the beginning of the video?,v_P7Z4i1gmzjs_1440,The boy is lifting himself up from parallel bars in the gym.,0 1441,v_ojIhxWrBM0s,What activity is the man doing in the beginning of the video?,v_ojIhxWrBM0s_1441,The man is looking through a magazine while seated in a barber chair.,0 1442,v_w4pO-1-FG5w,What kind of cape is draped around the little boy's neck as he is getting a haircut?,v_w4pO-1-FG5w_1442,The cape draped around the little boy's neck has pictures of animated characters on them.,0 1443,v_vo2M4sY0E38,What is the woman doing at the beginning of the video?,v_vo2M4sY0E38_1443,The woman is brushing a horse.,0 1444,v_WOUkPgHtt4E,What equipment was used by the children in the gymnasium?,v_WOUkPgHtt4E_1444,The gymnasium had armbars and balance beams installed.,0 1445,v_RjztFj0Zl40,What kind of court surface do the teams play on in the video?,v_RjztFj0Zl40_1445,The video shows a basketball court with a chain link fence surrounding it. It is not clear what kind of surface the court has.,0 1446,v_tSNg5rvDvVc,What is the man wearing while playing the saxophone in the video and what is the setting of his performance?,v_tSNg5rvDvVc_1446,"The man is wearing a black coat, black pants with a white shirt, and black shoes while playing the saxophone in a public place with many people watching his performance from behind. He is performing in front of huge black speakers and many stalls, illuminated by lights and with a big lighting banner behind him.",0 1447,v_Y16uL6dYDzQ,What is the weightlifter wearing in the video?,v_Y16uL6dYDzQ_1447,"The weightlifter in front is wearing a grey T-shirt, black and red shorts, and white sports shoes. The weightlifter behind him is wearing a grey T-shirt, black shorts, and white sports shoes.",0 1448,v_wiaZCl-poRw,What is visible at the edge of the yard in the video?,v_wiaZCl-poRw_1448,A street is visible at the edge of the yard in the video.,0 1449,v_qqZLs6j3YII,What is the color of the uniforms worn by the children on the stage in the video?,v_qqZLs6j3YII_1449,The children are wearing red and white uniforms while playing guitars on the stage in the well-lit set with a purple background.,0 1450,v_IRBrTKrVCxo,What is the color of the shirt worn by the man who is polishing the shoe?,v_IRBrTKrVCxo_1450,The man who is polishing the shoe is wearing a blue shirt.,0 1451,v_xS5JDBeMxOs,What are the men doing with their shoes in the video?,v_xS5JDBeMxOs_1451,The two men sitting at the table pour beer into their shoes and drink it while the surrounding people cheer them on.,0 1452,v_-uJnucdW6DY,What are the kids doing in the video?,v_-uJnucdW6DY_1452,The kids in the video are playing with a ball in a grassy field.,0 1453,v_PzJsoZT2hXk,What are the women doing in the video?,v_PzJsoZT2hXk_1453,"In the video, two women are standing by a gift-wrapping table and wrapping gifts.",0 1454,v_YAMhMB1jdio,What are the people in the barbershop wearing?,v_YAMhMB1jdio_1454,"The woman giving a haircut is wearing a white coat, grey top, black trousers, and a white mask. All the customers are wearing a white cloth cape.",0 1455,v_EWNqkVaOfbE,What is the color of the coat worn by the news reporter in the TACK video?,v_EWNqkVaOfbE_1455,The news reporter is wearing a dark grey coat.,0 1456,v_Pjnuoa4o55c,What are the players wearing in the video?,v_Pjnuoa4o55c_1456,"The players are wearing T-shirts and shorts with squash racquets. Three of them are also wearing a cap, turned backward.",0 1457,v_QOsG3BeQeX0,What is the man wearing and what is he doing in the video?,v_QOsG3BeQeX0_1457,The man is wearing a blue shirt and khaki shorts. He is swinging back and forth while upside down from the bottom of the parallel bars.,0 1458,v_zxpQHLwZCug,What is the man wearing and what is he holding in his left hand?,v_zxpQHLwZCug_1458,The man is wearing a blue shirt and jeans and he is holding an axe in his left hand.,0 1459,v_uvglcAUnQv0,What kind of clothes was the man wearing before he started dancing with the woman in pink? ,v_uvglcAUnQv0_1459,The man was wearing a white shirt and black trousers before he started dancing with the woman in pink.,0 1460,v_T7YcO-sOLuU,What is the man using to clean the shoes on the table?,v_T7YcO-sOLuU_1460,"The man is using a hand brush, water from a glass, and a bottle of clear liquid labeled ""JASON MARKK"" to clean the shoes on the table.",0 1461,v_OkvWTZ4XLyM,What is the purpose of the man spinning before releasing the discus?,v_OkvWTZ4XLyM_1461,The man spins the discus in order to build momentum and increase the distance of the throw.,0 1462,v_sPK-sbHIb3w,What drill are the players practicing on the basketball court?,v_sPK-sbHIb3w_1462,The players are practicing a drill where they take the ball and dunk it into the hoop with a spin.,0 1463,v_TEgPIueNqTI,What is the location and ambiance of the tattoo parlor like?,v_TEgPIueNqTI_1463,"The tattoo parlor in the video is well-lit with white tile floors. The video starts with a woman wearing a white top sitting on a chair in the parlor, with other chairs visible on the right side of the woman. Some people are also sitting on the chairs.",0 1464,v_zTHkqpNFGno,What is the woman wearing and what is she doing?,v_zTHkqpNFGno_1464,The woman in the video is wearing a black top and is combing her hair while leaning forward. She laughs at something she reads and places the comb at her side before continuing to lean forward.,0 1465,v_vska7f8Zm9s,What does the video show at the beginning?,v_vska7f8Zm9s_1465,The video starts with a person lighting a matchstick using the striker on the matchbox.,0 1466,v_SV3v-nA6hXM,What is the man doing in the video?,v_SV3v-nA6hXM_1466,The man is holding a bungee cord and counting down as he gets ready to jump off a platform for bungee jumping.,0 1467,v_w46wkDledek,What style of dancing are the girls doing in the video?,v_w46wkDledek_1467,The girls are doing Spanish-style partner dancing.,0 1468,v_TB5AeIdAndA,What is the man wearing while he plays the guitar?,v_TB5AeIdAndA_1468,The man is wearing a blue jacket and jeans.,0 1469,v_sbnF7VVeopM,What type of footage is shown in the montage?,v_sbnF7VVeopM_1469,"The montage includes footage of people crossing the street, a person welding something in a dimly lit workshop, a monster truck driving through a muddy track, and cars moving through traffic during the day.",0 1470,v_OESjoURo19U,What activity are the kids doing in the video?,v_OESjoURo19U_1470,The kids are playing dodgeball on an indoor basketball court.,0 1471,v_SLHPvKh-_x8,Can you describe the appearance of the examination room in the video?,v_SLHPvKh-_x8_1471,"Yes, the examination room in the video was well-lit and had an exam table next to the woman. ",0 1472,v_ypfWA4aDL6k,What musical instrument is the man playing in the video?,v_ypfWA4aDL6k_1472,The man is playing the bagpipe.,0 1473,v_rpjxjU-mLiw,What color is the T-shirt worn by the man in the video?,v_rpjxjU-mLiw_1473,The man in the video is wearing a teal T-shirt.,0 1474,v_sk_pnoqXxhs,Who is in the bathroom with the toddler and what are they doing?,v_sk_pnoqXxhs_1474,A woman wearing a white shirt is in the bathroom with the toddler and she is teaching him how to brush his teeth.,0 1475,v_YK9BIL9fKA0,What is the girl wearing in the video?,v_YK9BIL9fKA0_1475,"The girl is wearing a maroon T-shirt, blue jeans, and red and white sneakers.",0 1476,v_GvMep9y7d7c,What is the man doing in front of Calvin's Corner?,v_GvMep9y7d7c_1476,The man is standing with his arms folded in front of a pegboard with some tools hung from it. A text displaying 'Calvin's Corner' is displayed under his image.,0 1477,v_ZSdnDVGXU3k,What is the specific gymnastics event being performed in the video?,v_ZSdnDVGXU3k_1477,The gymnastics event being performed in the video is the balance beam routine.,0 1478,v_u3XOLSC7lg0,What is the man wearing in the video?,v_u3XOLSC7lg0_1478,"The man is wearing a black T-shirt, black pants, and black and white sneakers.",0 1479,v_skk-nX55gvA,Who is Justin Harrison in the video and what does he do?,v_skk-nX55gvA_1479,"Justin Harrison is a person in a white cap playing water polo. In the video, he is throwing the ball towards the goalpost and successfully scores a goal. Later, he is shown scoring another goal wearing a blue cap in a different game.",0 1480,v_fh21bbDSVmA,What is the gymnast wearing in the video and where is he performing?,v_fh21bbDSVmA_1480,"In the video, the gymnast is wearing blue track pants and a white vest with blue and red stripes. He is performing on a pommel horse in a well-lit arena with blue walls and blue chairs.",0 1481,v_wCexKIuAj3A,What are the people in the bar doing?,v_wCexKIuAj3A_1481,They are smoking e-cigarettes and blowing smoke circles.,0 1482,v_tF8Nv-QxbIU,What type of kit does the man pick up first?,v_tF8Nv-QxbIU_1482,The man picks up a suede block and a suede brush to show to the camera.,0 1483,v_vAHR3iJhBXU,What color nail polish did the woman apply to her ring finger?,v_vAHR3iJhBXU_1483,Pink nail polish was applied to the woman's ring finger.,0 1484,v_tC5eMgePakk,Can you describe the appearance of the little girl in the video?,v_tC5eMgePakk_1484,"Yes, the little girl is wearing a pink outfit and a pink headdress.",0 1485,v_UtV69uNmzlE,What is the woman doing in the video?,v_UtV69uNmzlE_1485,The woman is shaving her legs next to a toilet bowl in a well-lit bathroom.,0 1486,v_vMcXLYBcHsM,What is the boy wearing while cooking something in the pot?,v_vMcXLYBcHsM_1486,The boy is wearing a grey sweatshirt while cooking something in the pot.,0 1487,v_u7THn6D6y5w,What is the little boy wearing and where is he? ,v_u7THn6D6y5w_1487,The little boy is wearing a maroon gymnastics uniform and he is in a well-lit gymnasium with white walls.,0 1488,v_yggwFa68Cp4,How does the boy start playing the bagpipes in the video?,v_yggwFa68Cp4_1488,The boy starts playing the bagpipes by blowing air into the mouthpiece and pressing the chanter using his fingers.,0 1489,v_PwTwGnAVFhQ,What is the woman wearing and what is she doing in the video?,v_PwTwGnAVFhQ_1489,"The woman is wearing a pink top and black shorts, and she is practicing stepping on and off an aerobics step in a well-lit studio with white walls and a wood floor.",0 1490,v_QT4d1nTQYSE,What colors are the walls of the art studio?,v_QT4d1nTQYSE_1490,"The walls of the art studio are well-lit and are painted with shades of red and brown, and the walls are filled with paintings.",0 1491,v_Xmp_twSbkAg,What is the girl wearing and what does the room look like in the beginning of the video?,v_Xmp_twSbkAg_1491,"In the beginning of the video, the girl is wearing a black T-shirt and a pink full-sleeve top. The room is well-lit with white walls. There is a brown door and a red curtain behind her. There is also a desktop on a study table behind her. There is a photo, some books, and a stuffed toy on her study table. There are also stickers on the left wall behind her. There are also some boards on the wall and a small blue table behind her.",0 1492,v_zDdD_qA86rg,"What safety equipment does the climber, who starts at the bottom, have attached to her?",v_zDdD_qA86rg_1492,"The climber, who starts at the bottom, has a rope attached to her utility belt.",0 1493,v_tt-uDaZQWWc,What is the woman wearing in the video?,v_tt-uDaZQWWc_1493,The woman is wearing a yellow T-shirt and multi-colored pajamas.,0 1494,v_r6l4mxphtX0,What does the woman do after applying lipstick?,v_r6l4mxphtX0_1494,She proceeds to apply makeup to her face and eyes.,0 1495,v_Oskk7eLgerM,What does the man use to bathe the dog?,v_Oskk7eLgerM_1495,The man uses a handheld showerhead to bathe the dog.,0 1496,v_T35cHr4pjkc,What is the man doing in the video?,v_T35cHr4pjkc_1496,"The man is seen drinking from a cup in a well-lit cafe, and later he is dancing. In another clip, he is then seen drinking from a cup with one hand and holding another cup in his left hand while dancing with his hands at his sides.",0 1497,v_Pr5K2Jh2X94,What happened after the athlete jumped into the sandpit?,v_Pr5K2Jh2X94_1497,"After the athlete jumped into the sandpit, a referee held up a white flag which indicates that the jump was legal. The athlete celebrated and spoke to the observers before walking away. The video also ends with another athlete wearing a yellow outfit walking towards the start of the track.",0 1498,v_YU-dUWGOoD4,What is the gymnast wearing in the video?,v_YU-dUWGOoD4_1498,The gymnast is wearing a white vest and red pants.,0 1499,v_zRqJZ0u6f88,What is the man doing in the video and where is he doing it?,v_zRqJZ0u6f88_1499,"The man is standing next to a closed window in a dimly lit room. He is wearing a red shirt and trousers along with a tool belt. He is speaking to the camera, gesturing toward the window and then proceeds to clean it with a cloth and a spray bottle.",0 1500,v_QY3q4DuiGq8,What is the girl doing in the video?,v_QY3q4DuiGq8_1500,The girl is participating in a discus throwing competition within a practice net.,0 1501,v_X9Y-b-SbkIU,What are the players wearing in the video?,v_X9Y-b-SbkIU_1501,"The woman is wearing a light green T-shirt and black shorts, while the man is wearing a black sweatshirt, grey shorts, and white sports shoes.",0 1502,v_uub0z8wJfhU,What is visible on the wall to the left of the man?,v_uub0z8wJfhU_1502,An altar lit with electric candelabras is visible on the wall to the left of the man.,0 1503,v_X5kj4fZ38rc,What is the appearance of the room where the woman is playing the violin?,v_X5kj4fZ38rc_1503,"The woman is playing the violin in a well-lit room with white walls. There are books and photo frames behind her on her right side. There is also a black table to her right side. In the other room behind her on the left side, there is a dining table set and a chandelier. Behind the woman, there is a kitchen with a fridge and a microwave. The kitchen also has brown wooden shelves.",0 1504,v_rGOOlcdpfLg,What is the woman wearing in the beginning of the video?,v_rGOOlcdpfLg_1504,The woman is wearing a red and blue checkered shirt over a black top in the beginning of the video.,0 1505,v_fMVuGUBs2cs,What is the bartender wearing in the video?,v_fMVuGUBs2cs_1505,"The bartender is wearing a dark grey sleeveless coat, a white shirt, and a black tie behind the bar counter.",0 1506,v_PSB1nM3QXxg,What are the two boys doing differently from the rest of the group?,v_PSB1nM3QXxg_1506,The two boys are standing apart from the rest of the group and demonstrating martial arts movements.,0 1507,v_TKgU9QJXw2w,What caused the boy in the grey t-shirt and black pants to hit the ball towards the wall in the racquetball court?,v_TKgU9QJXw2w_1507,The boy in the grey t-shirt and black pants hit the ball towards the wall to start the game.,0 1508,v_WAvz9zHwWo4,What kind of competition is taking place in the video and what is the girl doing at the beginning?,v_WAvz9zHwWo4_1508,The video shows a gymnastics competition and the girl starts by jumping and swinging from a high bar.,0 1509,v_uIcMgjypbqk,What kind of musical instrument was the man standing in the bright light holding?,v_uIcMgjypbqk_1509,"The man standing in the bright light was holding a musical instrument, but the given information does not specify what type of instrument it was.",0 1510,v_vaV6_bxiTLI,What is the color of the t-shirt worn by the boy holding the camera?,v_vaV6_bxiTLI_1510,The boy holding the camera is wearing a green t-shirt.,0 1511,v_z-EPAHsmTMA,What is the person in the advertisement wearing?,v_z-EPAHsmTMA_1511,The person in the advertisement is wearing a white outfit.,0 1512,v_pJ3sECWr5Xg,What color ballet dresses are the girl and the other dancers wearing?,v_pJ3sECWr5Xg_1512,"The girl is wearing a white ballet dress, and the other dancers are wearing black dresses.",0 1513,v_vI-O6QWIIGU,What led the gymnast to stop his routine?,v_vI-O6QWIIGU_1513,The gymnast missed a hold and dropped to the ground in the middle of his routine.,0 1514,v_XPiMnbCr-sc,What color is the cloth used for gift-wrapping the box in the video?,v_XPiMnbCr-sc_1514,The cloth used for gift-wrapping the box in the video is peach-colored.,0 1515,v_w_CXbraJr58,What is the man wearing while playing bagpipe in the walkway?,v_w_CXbraJr58_1515,The man is wearing a Scottish kilt and a beret while playing the bagpipe in the walkway.,0 1516,v_ZLJ2BmBkLJg,What does the man do once he finishes trimming his face and neck?,v_ZLJ2BmBkLJg_1516,"Once the man finishes trimming his face and neck, he applies shaving foam to his face and then uses a razor to shave his face and neck. After he is done, he wipes his face with a cloth and applies aftershave while adjusting his hair.",0 1517,v_Sf27WmcLb2w,What is the attire of the man serving the ball in the video?,v_Sf27WmcLb2w_1517,The man is wearing a black sleeveless t-shirt and red shorts.,0 1518,v_vSv1qMMt4Bk,"Who is the reporter in the outdoor location during the nighttime, and what activity does she perform?",v_vSv1qMMt4Bk_1518,The reporter in the outdoor location during the nighttime is identified as Jocelyn Maminta. She shovels snow once.,0 1519,v_p9lhwYsBWdc,What costumes are the window cleaners wearing?,v_p9lhwYsBWdc_1519,The window cleaners are wearing costumes of the Hulk and Batman.,0 1520,v_ZrSK-fisXGg,What is the woman doing in the video?,v_ZrSK-fisXGg_1520,The woman is sitting on a chair and getting her ear pierced by a technician wearing transparent gloves.,0 1521,v_p07Y--q4JQw,What is the man wearing while applying the clear solution on the woman's nails?,v_p07Y--q4JQw_1521,The man is wearing a camouflage pattern shirt while applying the clear solution to each of the woman's fingers.,0 1522,v_TsHek6oZYXU,What is being showcased at the start of the video?,v_TsHek6oZYXU_1522,"At the start of the video, a digital poster along with a web address ""taichisecretmovements.com"" is being showcased.",0 1523,v_QN-4aLiDhiQ,What is the girl wearing in the video?,v_QN-4aLiDhiQ_1523,The girl is wearing a blue shirt over a light blue top.,0 1524,v_UGWOtDmIcns,What is the woman wearing and where is she located during the second part of the video?,v_UGWOtDmIcns_1524,The woman is wearing an orange top and blue jeans and she is located in a forest with big trees. There are also some other people sitting on her right side.,0 1525,v_PNuJUYo3Hf8,What type of clothing is the man inside the boat wearing and what did he do?,v_PNuJUYo3Hf8_1525,The man is wearing a blue wetsuit and a beanie. He picks up the handheld radio and speaks into it.,0 1526,v_TMAXjnsN0Mk,What does the woman do to the Uggs after stuffing them with tissue paper?,v_TMAXjnsN0Mk_1526,"The woman brushes the Uggs and wets them with a sponge and water. After diluting the water with Ugg cleaner and conditioner, she uses the sponge to apply the mixture to the Uggs. She again brushes the Uggs and then uses the Uggs protector and freshener.",0 1527,v_skr8x0kUVwg,Who is holding a camera in the video and what is he/she wearing?,v_skr8x0kUVwg_1527,A man in a white cap turned backward is holding a camera in his hands.,0 1528,v_YnjITZnk6OE,What are the players doing in the video?,v_YnjITZnk6OE_1528,"The players in the video are doing drills. Specifically, they are running side to side, jumping through obstacles on the ground, and diving while moving.",0 1529,v_UNJTM62HyqQ,What are the surroundings in the video?,v_UNJTM62HyqQ_1529,"The video shows a chef in a restaurant kitchen wearing a white chef's coat. Behind him, there are fridges, dishwashers, a microwave, and some dishes on top of the dishwasher. Another man is passing behind the chef who is wearing a white chef's coat, grey trousers, black shoes, and a red cloth on his head. The kitchen is well-lit.",0 1530,v_SEVVSei-r6w,What is the man wearing in the video?,v_SEVVSei-r6w_1530,The man is wearing a blue vest and black shorts.,0 1531,v_UaO7bS5Ky6M,What kind of performance is the woman doing in the video and what is she wearing?,v_UaO7bS5Ky6M_1531,"The woman is performing ballet in a theatre. She is wearing a maroon top, black trousers and pointe shoes.",0 1532,v_wEehiYq9ttE,What is the woman doing while getting her shoes cleaned?,v_wEehiYq9ttE_1532,The woman is dancing as she is getting her shoes cleaned.,0 1533,v_rklYNAAaI3Y,What are the woman and the little boy doing in the video?,v_rklYNAAaI3Y_1533,The woman is washing clothes while the little boy stands next to her and tries to help by pulling clothes from the bucket.,0 1534,v_ZVjLscGMOs8,What are the women wearing in the video?,v_ZVjLscGMOs8_1534,The women are wearing white vests and track pants.,0 1535,v_z6pmp8TrAVo,What does the other person wearing a striped t-shirt do while the man is washing the plate?,v_z6pmp8TrAVo_1535,The person wearing a striped t-shirt taps the man washing dishes twice before walking away.,0 1536,v_vzUeFzhVYLg,What type of dive did the woman perform from the diving platform?,v_vzUeFzhVYLg_1536,The woman performed a dive with a tuck and several turns into the pool.,0 1537,v_wFVukrQfQhI,What type of game are the girls playing in the video and what color clothing are they wearing?,v_wFVukrQfQhI_1537,The girls are playing racquetball in the video and both of them are wearing white T-shirts and shorts.,0 1538,v_rOtmhurweqo,What kind of shirt is the old man wearing and what is he doing?,v_rOtmhurweqo_1538,"The old man is wearing a white T-shirt and track pants, and he is peddling an exercise bike.",0 1539,v_RXT17X7lRoQ,What is happening in the opening scene of the video?,v_RXT17X7lRoQ_1539,Text is appearing on a green background.,0 1540,v_YOk1cMsyk88,What was the man wearing and doing in the video?,v_YOk1cMsyk88_1540,"The man in the video was wearing a white T-shirt, a red cap, and a backpack while skateboarding on an empty road during the daytime. He lost balance and fell off the skateboard while continuing to skate straight on the road.",0 1541,v_qmHjHk0Hzz8,What is the man wearing?,v_qmHjHk0Hzz8_1541,The man is shirtless and wearing black shorts.,0 1542,v_rc-DiL5er28,What is the color of the t-shirt worn by the team on the left?,v_rc-DiL5er28_1542,The team on the left is wearing yellow t-shirts.,0 1543,v_fM5egP_1DvQ,What kind of clothes is the man wearing in the video's opening scene and how does he react after completing his jump?,v_fM5egP_1DvQ_1543,"The man is wearing a red and green vest, black shorts, and white sports shoes in the video. After completing his jump, the video shows replays of his jump and he lands on a red platform. His jump replays are shown.",0 1544,v_R_JKmGmURvA,What is the man making in the video?,v_R_JKmGmURvA_1544,"The man is making a cocktail in the video using jin, other liquors, fresh-squeezed lemon juice and ice cubes.",0 1545,v_vIQPDP8jW8A,What ingredients did the bartender add to the cocktail?,v_vIQPDP8jW8A_1545,"The bartender added cucumber, Bombay Sapphire Gin, St. Germain liquor, lemon juice, ginger syrup, elderflower syrup, and egg whites to the glass.",0 1546,v_-pkfcMUIEMo,What is the man demonstrating in the video?,v_-pkfcMUIEMo_1546,The man is demonstrating how to shovel snow using the snow shovel.,0 1547,v_VhdidrZKuTU,What kind of spices did the man sprinkle on the firewood?,v_VhdidrZKuTU_1547,The man sprinkled table salt and white pepper powder on the firewood.,0 1548,v_W4mJsJGa0CY,What caused the man to slip during his routine on the pommel horse and how did he recover?,v_W4mJsJGa0CY_1548,The man lost balance in the middle of his routine and slipped to the floor. He walked over to a bowl and applied chalk to his hands before remounting the pommel horse to continue his routine.,0 1549,v_TkhUtx0Eyfw,What happens at the beginning of the video?,v_TkhUtx0Eyfw_1549,"The video starts with a girl sitting on a chair in a well-lit store, with jewelry and clothes on sale on racks in the back. She is wearing a black outfit and sitting next to a jewelry display. A technician wearing white gloves is marking the girl's ear to pierce it. She is using a pen. She then makes sure the marks are in the same place on both ears. Then, she wipes her ear with a swab.",0 1550,v_Q3ZNFGE8PZE,What are the boys wearing during their dance performance in the video?,v_Q3ZNFGE8PZE_1550,"During their dance performance, the boys are wearing khaki trousers, a sweater over a shirt, white gloves, and a white cap. One of the boys who joins the dance later is wearing a black jacket and white gloves.",0 1551,v_QriYk3MKSnM,What are the girls doing in the video?,v_QriYk3MKSnM_1551,The girls are sitting and combing their hair.,0 1552,v_x90zpDHTpjQ,What is the man saying towards the end of the video?,v_x90zpDHTpjQ_1552,The man walks towards the camera and speaks before the video ends.,0 1553,v_X4J9UBXb0FM,What are the athletes wearing as they compete in the pole vaulting competition?,v_X4J9UBXb0FM_1553,The athletes are wearing vests and shorts of different colors as they compete in the pole vaulting competition.,0 1554,v_zXHyFBrj5Ag,What is the man wearing in the video?,v_zXHyFBrj5Ag_1554,The man is wearing a striped blue and black t-shirt and shorts.,0 1555,v_PwRqqR1YmPM,What equipment does the athlete hold in front of him while starting his run?,v_PwRqqR1YmPM_1555,The athlete holds the pole in front of him while starting his run.,0 1556,v_peiF2E05u8g,What is the girl doing when she is first introduced in the video?,v_peiF2E05u8g_1556,"The girl is standing outside a mall, wearing a white top and carrying a bag on her shoulder.",0 1557,v_GChGC-VJZHs,What type of gear are the motorcyclists wearing?,v_GChGC-VJZHs_1557,The motorcyclists are equipped with off-road gear and helmets.,0 1558,v_Ur_ToogEkCA,Who catches the ball to end the game?,v_Ur_ToogEkCA_1558,A teammate of the man who passed the ball on the right side catches the ball to end the game.,0 1559,v_YAKXrBinGD4,What are the people wearing in the video?,v_YAKXrBinGD4_1559,"The woman is wearing a light blue T-shirt, black trousers, and a life vest. One of the men is wearing a white T-shirt, a white cap, and a life vest while the other one is wearing a sleeveless black T-shirt, a grey and black cap, and a life vest.",0 1560,v_qU4GmCN2e1Y,What are some of the actions a man performs on the parallel bars in the video?,v_qU4GmCN2e1Y_1560,"In the video, the man starts his routine by jumping and holding onto the parallel bars. He swings, does a handstand, holds himself up and holds a sitting position by keeping his legs parallel to the ground. He finishes up with another handstand and jumps down to the ground.",0 1561,v_FqYhC6_CMfI,What is the man wearing and where is he windsurfing?,v_FqYhC6_CMfI_1561,The man is wearing a dark blue vest and white shorts while windsurfing on a beach with stilt houses visible on the left and trees on the far left side.,0 1562,v_s9PkkDEl6aY,What is the instructor wearing in the video?,v_s9PkkDEl6aY_1562,The instructor is wearing a green top and khaki pants.,0 1563,v_ROrLMf0zXko,What is the breakdance move called that the man does on the mat?,v_ROrLMf0zXko_1563,The man does a breakdancing move called helicopter spin.,0 1564,v_W6fPv5eoXC4,What is the man doing in the video?,v_W6fPv5eoXC4_1564,"The man is playing tennis on a court during the daytime. He picks up a tennis ball, bounces it on the ground a few times, and serves it. In the following clip, a replay is shown of the man serving the ball at normal speed.",0 1565,v_zB8knKX0W8Q,What is happening in the beginning of the video?,v_zB8knKX0W8Q_1565,The video begins with a projecting store sign.,0 1566,v_OlykXdYeQOI,What tools does the barber use to cut the boy’s hair?,v_OlykXdYeQOI_1566,The barber uses a comb and scissors to cut the boy’s hair and a trimmer to trim the hair on the edges.,0 1567,v_PdwWFueQErM,What is the man wearing in the video?,v_PdwWFueQErM_1567,The man is wearing a black sweater and jeans.,0 1568,v_TZOhIMjwEE8,What is the woman wearing while lawn-mowing in the video?,v_TZOhIMjwEE8_1568,"The woman is lawn-mowing wearing a white vest, grey trousers, and white sports shoes.",0 1569,v_GH0Umpw6tME,What instructions is the instructor giving to the women during the aerobic class?,v_GH0Umpw6tME_1569,The instructor is calling out instructions which the women follow while doing steps using aerobic steps.,0 1570,v_UvOEuhS0V3E,What is the man wearing in the next clip?,v_UvOEuhS0V3E_1570,The man is wearing an olive T-shirt in the next clip.,0 1571,v_ZY0cdXr_1MA,What is the name of the brand advertised at the end of the video?,v_ZY0cdXr_1MA_1571,The name of the brand advertised at the end of the video is 'Under Armor'.,0 1572,v_QOaPQpXemCA,What is the name of the beautician in the video?,v_QOaPQpXemCA_1572,The beautician in the video is introduced as Swathi Gupta.,0 1573,v_ZK4Y6nOton8,Who picks up the shuttlecock and throws it at the girl?,v_ZK4Y6nOton8_1573,A child standing on the side picks up the shuttlecock and throws it at the girl.,0 1574,v_uCvjzcVCtEs,What is the athlete wearing in the video?,v_uCvjzcVCtEs_1574,"The male athlete is wearing a blue vest, black shorts, and red sports shoes.",0 1575,v_zoWqv-sIdBY,"What is the name of the person combing Ivan’s hair, and his relationship with Ivan?",v_zoWqv-sIdBY_1575,'Oscar' is the name of the person combing Ivan's hair. He is introduced as a boy standing behind Ivan.,0 1576,v_qmfZw9eEpIU,What is the man wearing while windsurfing in the video?,v_qmfZw9eEpIU_1576,The man is wearing a life vest and sunglasses while windsurfing in the video.,0 1577,v_tLk0Y04OaCA,Who else is visible in the mirror?,v_tLk0Y04OaCA_1577,Another person wearing a red top is visible in the mirror holding up a phone and recording.,0 1578,v_VWGV8I5byKI,What type of equipment does the man lift in the gym?,v_VWGV8I5byKI_1578,The man walks to the barbell with weights stacked on either end and picks it up before dropping it to the ground.,0 1579,v_sNJ6_N0j9Ts,Who starts the game on the squash court in the video?,v_sNJ6_N0j9Ts_1579,A man in a blue t-shirt starts the game.,0 1580,v_t13MQSYjlas,What is the man holding in the video?,v_t13MQSYjlas_1580,The man is holding a hammer connected to a handle in his hands.,0 1581,v_syfyM1Pble8,Who can be seen walking away in the video?,v_syfyM1Pble8_1581,A woman wearing a grey t-shirt can be seen walking away as the others are exercising.,0 1582,v_u0A5NIUKEQo,"What are the boys wearing in the video, and what activity are they doing?",v_u0A5NIUKEQo_1582,"In the video, the two boys are walking in a mall, and one is wearing a Santa costume while the other is wearing an Elves costume. The boy wearing the Santa costume carries a huge box which he keeps on the floor and knocks. The other boy jumps out and they both start dancing, doing backflips, twists, and turns on the floor.",0 1583,v_-vnSFKJNB94,What kind of dives did Michal Navratil perform in the video?,v_-vnSFKJNB94_1583,"Michal Navratil performed different kinds of dives including tucks, twists, and forwards dives.",0 1584,v_Ws12Dt0Ny5Q,What is happening in the video?,v_Ws12Dt0Ny5Q_1584,"The video shows footage of women pole vaulting, followed by footage of women executing long jumps on a track. The athletes are wearing different colored tops and bottoms. The stadium is well-lit with stadium lights and has yellow and black seats. The athletes are being watched by an audience and officials are present to oversee the competition. ",0 1585,v_tY9dmG6IyPo,What is the athlete wearing and what kind of stadium is she in during the hammer throw competition?,v_tY9dmG6IyPo_1585,"The athlete is wearing a red and white short vest, blue shorts, and black sports shoes. She is in a stadium with a grassy field and stadium lights all around the stadium competing in a hammer throw competition.",0 1586,v_wJk3KOUAwXA,What type of tool does the man use to apply wax on the surface of the table?,v_wJk3KOUAwXA_1586,The man uses a ball of steel wool to apply wax on the surface of the table.,0 1587,v_wh4JNeQh9FQ,What is happening to the woman in the video?,v_wh4JNeQh9FQ_1587,The woman in the video is getting a tattoo on her earlobe.,0 1588,v_WdJUMmy2ox8,What are the two men doing in the video and where are they positioned?,v_WdJUMmy2ox8_1588,"In the video, the two men are inside a darkened room sitting on a sofa and speaking to the camera. Specifically, the man on the left, who is smoking a hookah and wearing a black shirt and jeans, is positioned on the left side of the sofa; while the man on the right, who is wearing a cap and a red sweater, is positioned on the right side of the sofa.",0 1589,v_ooFuSspUuVY,What type of obstacles do the girl and her horse overcome in the video?,v_ooFuSspUuVY_1589,"In the video, the girl leads her horse through a few obstacles and jumps over them, including poles on the ground.",0 1590,v_tXUssW4vT3o,What is the color of the belly dancer dress?,v_tXUssW4vT3o_1590,The belly dancer is wearing a sparkling turquoise-colored dress.,0 1591,v_TGIQtaINzCY,What is happening in the video?,v_TGIQtaINzCY_1591,"In the video, an instructor wearing a black t-shirt and mic is leading a cycling class in a well-lit gym with white walls and grey floor. The participants are on exercise bikes, and the instructor calls out instructions while a clip of an interview with one of the participants is shown. Afterwards, a man moves a display tower into the class to demonstrate how to change resistance on the bike. The video ends with clips of people on different exercise machines.",0 1592,v_ZUl43hNzGjA,Who is talking to the students in the ballet studio and what are they wearing?,v_ZUl43hNzGjA_1592,A teacher is talking to the students in the ballet studio and they are wearing a white t-shirt and pants.,0 1593,v_sBwUwgTjhAU,What is happening in the beginning of the video?,v_sBwUwgTjhAU_1593,"In the beginning of the video, a man wearing a grey shirt is sitting in front of the camera and trimming his beard in a study with a bookshelf behind him. A woman wearing a sweater over a red outfit looks into the camera for a moment before walking away.",0 1594,v_WCS8dzRT7Xk,What color shirt is the woman wearing and what is she doing in the video?,v_WCS8dzRT7Xk_1594,The woman is wearing a grey shirt and she is ironing a green piece of clothing on an ironing board.,0 1595,v_wjr5M-6qEWI,What is the man wearing near the separator of the court?,v_wjr5M-6qEWI_1595,The man is wearing a jacket and khaki pants near the separator of the court.,0 1596,v_GOF5guH_kuI,What does the opening of the video showcase?,v_GOF5guH_kuI_1596,The opening of the video showcases a female gymnast about to perform on a balance beam. She is wearing a sparkling red gymnast costume and there is a cameraman recording the performance. Spectators can also be seen around the balance beam.,0 1597,v_uqwf903l5-E,What are the cheerleaders wearing in the video?,v_uqwf903l5-E_1597,The cheerleaders are wearing blue cheerleading uniforms with white shoes.,0 1598,v_zxr6UZKPDh4,What is the scenery like along the stream?,v_zxr6UZKPDh4_1598,The shores of the river are filled with shrubs and trees.,0 1599,v_SNJgJB2PGdI,What was the woman holding on her head while dancing?,v_SNJgJB2PGdI_1599,The woman was holding a candelabra on her head while belly dancing.,0 1600,v_Zhx6BYVb64g,What is happening at the end of the video?,v_Zhx6BYVb64g_1600,"At the end of the video, the boy knocks on a door and hands a stuffed animal to a girl.",0 1601,v_oncTwYfvCD8,What are the different venues featured in the video where the man demonstrates martial arts movements?,v_oncTwYfvCD8_1601,"The man is seen demonstrating martial arts movements in a well-lit studio, on the lawn outdoors during daytime, and in an indoor venue with people observing him.",0 1602,v_yttmx8mcjGw,Who is getting ready to bat with a cricket bat in the video?,v_yttmx8mcjGw_1602,A woman in a yellow t-shirt and sunglasses is holding a cricket bat and getting ready to bat.,0 1603,v_wcxEkMoOmBk,What is the common tool used by the women in the video?,v_wcxEkMoOmBk_1603,The women in the video are attaching hair rollers to their hair. They are using different types of rollers.,0 1604,v_zEttEkAdHts,What is shown on the white surface in the beginning of the video?,v_zEttEkAdHts_1604,"At the beginning of the video, a stack of one US dollar notes placed on a white surface with text above and below it is shown.",0 1605,v_z3MP0yJBtGg,What is the woman wearing and where is she standing in the video?,v_z3MP0yJBtGg_1605,"The woman is wearing a black hoodie and jeans skirt and standing in front of a stone dipper well with ladles arranged on top. She is on a stone floor with a roof, and there are pillars visible to her left. The venue is located in a yard with a fence at the end and a tree visible to the left.",0 1606,v_Omvg9UtGOes,What is the color of the cloth being used in the video?,v_Omvg9UtGOes_1606,The cloth being used in the video is pink on the inside and green on the outside.,0 1607,v_oni9K1_MCuw,What type of music is being played in the video?,v_oni9K1_MCuw_1607,An orchestra is visible playing music in the ballroom.,0 1608,v_Rn6_IwckXg4,Who is smoking an e-cigarette in the video?,v_Rn6_IwckXg4_1608,A woman wearing a black coat over a blue top and a man wearing a checkered shirt and glasses are smoking e-cigarettes in the video.,0 1609,v_TNqc2yWZztE,What is displayed on the black background before the woman starts gift-wrapping the small box?,v_TNqc2yWZztE_1609,A text titled 'how to wrap a gift' is displayed on the black background before the woman starts gift-wrapping the small box.,0 1610,v_UNXLfqkwKFc,What color are the shorts that the man is wearing in the video?,v_UNXLfqkwKFc_1610,The man is wearing blue shorts.,0 1611,v_W9H2qVnIWXs,What does the groomer do after washing the golden retriever with a hose?,v_W9H2qVnIWXs_1611,"After washing the golden retriever with a hose, the groomer dries the dog with a towel and a blow-drier. He also wipes the dog with a towel again and brushes its coat.",0 1612,v_ZxPF3s_OLDo,What is the man wearing while climbing the rocky hill and what accessory does he have?,v_ZxPF3s_OLDo_1612,The man is wearing a red t-shirt and a belt with a chalk pouch on it while climbing the rocky hill.,0 1613,v_p1QGn0IzfW0,What happens in the video?,v_p1QGn0IzfW0_1613,"The video shows a boy in a red shirt and black shorts performing gymnastic moves on parallel bars, while being watched by other people in a well-lit gym.",0 1614,v_UZm05CvtxkA,What is happening in the video?,v_UZm05CvtxkA_1614,The video shows two teams playing indoor volleyball on a well-lit court. The team on the left hits the ball to the other side and the team on the right misses their hit. The camera then pans to the spectators celebrating.,0 1615,v_oR8o_PuKS28,What is happening at the beginning of the video?,v_oR8o_PuKS28_1615,"At the beginning of the video, four men are playing beach volleyball near the shores during the daytime. They are using only their heads and legs to punt the ball back and forth over the net while another man is standing near the right pole. Trees are visible in the far back, and a few boats are sailing in the sea. Additionally, a lawn is visible to the left of the players.",0 1616,v_YIq3Tar9x6s,What activities did the two girls in the video engage in?,v_YIq3Tar9x6s_1616,"The video starts with one girl combing the hair of the other girl, who poses for a photo by covering her face with her palms. The girls make different poses for the camera, hug each other, and blow flying kisses.",0 1617,v_U3-MtKZeUXM,What happens in the video?,v_U3-MtKZeUXM_1617,"The video shows a male athlete in a blue and red jersey and white and red sports shoes, preparing and performing a hammer throw on the ground surrounded by a green net tied to silver poles. He swings the hammer using both his hands and rotates his body to throw the hammer in the air, before walking out of the throwing circle.",0 1618,v_q_QR5HoROhI,What is happening in the video?,v_q_QR5HoROhI_1618,"In the video, a man is painting a woman's nails with black ink and glitter of different colors. He then seals the glitter with an instant seal and cures the paint under a curing lamp. Lastly, he applies cuticle oil around the nail.",0 1619,v_qsEnLQ2UnEA,What does the man in the video do with the hammer?,v_qsEnLQ2UnEA_1619,"In the video, a man wearing a white T-shirt and shorts steps into a throwing circle on a concrete patch of a field, carrying a hammer attached to a handle through a metal string. He swings the hammer a few times then spins in place before turning around and throwing the hammer.",0 1620,v_ZwK52lXCbhA,What happens in the video?,v_ZwK52lXCbhA_1620,"The video shows a man getting a tattoo while rapping. The tattoo artist, who wears a black t-shirt and a bandana, tattoos the man using a tattoo gun while wiping it with a cloth. The well-lit tattoo studio has white walls decorated with framed art, with a shelf of bottles behind the tattoo artist.",0 1621,v_Y9d4iPDeigI,What happens in the boxing match in the video?,v_Y9d4iPDeigI_1621,"The video shows two boxers in a boxing ring, with one wearing blue shorts and the other wearing red shorts. The fight starts with the blue-shorts boxer intimidating the other, and the red-shorts boxer tries to kick the blue-shorts boxer. They then both start clinching and hitting each other with their knees. The red-shorts boxer hits the blue-shorts boxer with a kick, and his coach steps in. They continue to fight, with the red-shorts boxer grabbing the blue-shorts boxer's leg and hitting him with punches while the blue-shorts boxer defends his crotch. The video ends with the blue-shorts boxer being punched continuously and his mouthpiece falling from his mouth.",0 1622,v_qtKa7Lr3URA,What is happening in the video?,v_qtKa7Lr3URA_1622,"In the video, there are three people standing next to a house with white walls and a partially open window. One woman is washing clothes using a stone on the ground, another woman wearing a white top and jeans is watching her, and a girl in a dark-colored top and yellow skirt is standing behind with her hands folded. The washerwoman uses the buckets next to her to rinse and finish washing the clothes while the woman in the white top watches.",0 1623,v_P7Z4i1gmzjs,What does the video show happening in the gym?,v_P7Z4i1gmzjs_1623,"The video shows a boy performing gymnastics on a set of parallel bars in a well-lit gym with other equipment and foam mats on the floors, while other people are visible in the background.",0 1624,v_ojIhxWrBM0s,What happens in the video?,v_ojIhxWrBM0s_1624,"The video shows a man getting his hair cut in a salon with other customers also getting their hair cut. The man first sits in a barber chair and looks through a magazine, and then a different man gets his hair washed. Later, a man is seen getting his hair cut in a well-lit salon, while other people wait outside. The video ends with the barber finishing his customer’s hair cut and holding a mirror at his back to let him look at the back of his head.",0 1625,v_w4pO-1-FG5w,Can you describe the process of the haircut in the video?,v_w4pO-1-FG5w_1625,"The video showcases a little boy getting a haircut in a salon chair while a woman uses a trimmer attached to a vacuum to clip his hair, while also showcasing a blue cape with animated characters and a mirror reflecting overhead lights.",0 1626,v_vo2M4sY0E38,What happens in the video?,v_vo2M4sY0E38_1626,"A woman is shown brushing a horse that is tied to a fence, cleaning its torso, face, tail, and hooves while manning a beautiful outdoor space.",0 1627,v_WOUkPgHtt4E,What is happening in the video?,v_WOUkPgHtt4E_1627,"In the video, children are practicing gymnastics in a well-lit gymnasium with cream walls, blue mattresses on the floor, and armbars and balance beams installed. A boy wearing a white vest and dark blue shorts performs various moves on the armbar, while other children practice behind him and some girls practice at his side. The video ends with the boy jumping off the armbar.",0 1628,v_RjztFj0Zl40,What takes place in the beginning of the video?,v_RjztFj0Zl40_1628,The video starts off with text appearing on the screen with a yellow background.,0 1629,v_tSNg5rvDvVc,What is happening in the video?,v_tSNg5rvDvVc_1629,The video shows a man playing a saxophone in a public place with many people watching his performance. There are stalls and speakers around him and a man walks past while carrying a white bag. The video ends with the man raising his hand to complete the performance.,0 1630,v_Y16uL6dYDzQ,What happened in the weightlifting competition?,v_Y16uL6dYDzQ_1630,"The weightlifters participated in a competition held in a grassy field. They lifted big dumbbells on black mats while officials, a cameraman, and an audience watched. Two weightlifters, one in a grey T-shirt and black and red shorts, and another in a grey T-shirt and black shorts, attempted to lift the dumbbells. The weightlifter in the front lifted the dumbbell for some time and dropped it and then the weightlifter behind him struggled to lift the dumbbell and dropped it. The video ends with the weightlifter in the front raising his hand for the audience and walking off the mat.",0 1631,v_wiaZCl-poRw,What happens in the video?,v_wiaZCl-poRw_1631,A man wearing a black polo shirt and cargo pants is seen mowing the lawn in a yard during the daytime. He mows one section after another and turns around. There is a street visible at the edge of the yard with houses on the other side. A car is parked next to the sidewalk by the yard.,0 1632,v_qqZLs6j3YII,What happens in the beginning of the video?,v_qqZLs6j3YII_1632,"The video starts with five children playing guitars on a well-lit stage, wearing red and white uniforms, sitting on stools, with a purple background. There are little mikes on stands in front of all the children. They turn left and right when they play certain parts of the music.",0 1633,v_IRBrTKrVCxo,What is happening in the video?,v_IRBrTKrVCxo_1633,"In the video, a man is getting his shoes polished by another man wearing a blue shirt outdoors during the daytime. The man polishing the shoes is seen using a brush and a cloth draped on his thigh and there is a tin of polish on the ground next to him. The video ends when the man finishes polishing the shoes.",0 1634,v_xS5JDBeMxOs,What happens in the video?,v_xS5JDBeMxOs_1634,"The video shows a group of men in a public place, drinking beer from their shoes. The people around them cheer and record videos, and the two men high-five each other after finishing their drinks. The man in the white T-shirt also shows some hand signs and thumps his chest at the end of the video.",0 1635,v_-uJnucdW6DY,What's happening in the video?,v_-uJnucdW6DY_1635,The video starts with boys playing in a grassy field. One boy throws a ball and other kids kick it and run across the field while someone catches the ball and bumps it into another kid. This continues for the rest of the video.,0 1636,v_PzJsoZT2hXk,What is shown in the video?,v_PzJsoZT2hXk_1636,"The video captures two women wrapping gifts in a well-lit room, exchanging them, and showing the wrapped gifts to the camera. The video also includes a montage of gift wraps and gift-wrapped gifts at the beginning.",0 1637,v_YAMhMB1jdio,Can you describe the scene in the barbershop from the video?,v_YAMhMB1jdio_1637,"In the video, we see a well-lit barbershop with white walls. There are two women giving a haircut to two customers who are all wearing cloth capes. The customers are seated in front of mirrors and there is a whiteboard mounted on a wooden railing behind them. The video starts with one woman giving a haircut and ends with a man giving a haircut to a customer.",0 1638,v_EWNqkVaOfbE,Can you describe the events and people featured in the video?,v_EWNqkVaOfbE_1638,"The video begins with a news reporter talking about TACK. There are various scenes including a cricket match in a grassy field with huge stadium lights, and interviews with the patron-in-chief and the president of TACK, as well as the Pakistani ambassador. The reporters are seen wearing different outfits and holding mics while conducting interviews with various people. The video ends with the reporter wrapping up the report with some trophies in the background.",0 1639,v_Pjnuoa4o55c,What does the video display at the start?,v_Pjnuoa4o55c_1639,The video starts on a squash court where four men with squash racquets are playing.,0 1640,v_QOsG3BeQeX0,What is happening in the video?,v_QOsG3BeQeX0_1640,"In the video, a man wearing a blue shirt and khaki shorts is shown swinging back and forth upside down from the bottom of the parallel bars in a well-lit gymnasium, while cushioned mats are placed on either side of the bars. He then straightens himself and goes back to the previous position.",0 1641,v_zxpQHLwZCug,What is happening in the video?,v_zxpQHLwZCug_1641,"In this video, a man wearing a blue shirt and jeans is seen standing over a log and holding an axe in his left hand. He is in a yard with plants at the back, with a tree next to the fence behind and to the right of the man. The log is partially cut, and the man stops to speak before continuing to chop it. Pieces of the log fly off in different directions until the log breaks into two pieces.",0 1642,v_uvglcAUnQv0,Can you describe the dancing couple in the video and what happens at the end?,v_uvglcAUnQv0_1642,"In the video, a woman wearing a pink top and black skirt dances with a man wearing a white shirt and black trousers. The other people in the studio are sitting on the floor watching and recording them on their phones. The dancing continues for a while and it ends with the man walking away from the woman.",0 1643,v_T7YcO-sOLuU,What process did the man use to clean shoes on the table?,v_T7YcO-sOLuU_1643,The man used a hand brush dipped in a glass of water with Jason Markk cleaning liquid to clean the shoes on the table. He then wiped the foam with a cloth and proceeded to clean the rest of the shoes on the table before holding the clean shoes and cleaning supplies pack to the camera.,0 1644,v_OkvWTZ4XLyM,What is happening in the video?,v_OkvWTZ4XLyM_1644,"In the video, a man is shown holding a discus on a square platform in a field during the daytime. He starts building momentum by spinning the discus a few times, releases it and walks toward the landing area while hills are visible in the distance.",0 1645,v_sPK-sbHIb3w,What is happening in the video?,v_sPK-sbHIb3w_1645,"In the video, players are shown practicing basketball drills on a well-lit indoor basketball court under the coaching of a man in a grey shirt and black pants. The drills involve taking the ball and dunking it into the hoop with a spin, and the coach is seen trying to block their shots. Slow-motion clips of various players doing the drill are also shown.",0 1646,v_TEgPIueNqTI,"Can you describe the scene in the tattoo parlor, especially the woman who received the tattoo?",v_TEgPIueNqTI_1646,"A woman wearing a white top is getting a tattoo on her right wrist while sitting in a well-lit tattoo parlor. The tattoo artist is wearing a black outfit and is seen dipping the tattoo gun in an ink next to him. There are other chairs in the parlor, and some people are seen sitting on them while others are also getting tattoos on the side.",0 1647,v_zTHkqpNFGno,Can you describe the setting of the video?,v_zTHkqpNFGno_1647,The video shows a woman wearing a black top who is in a well-lit room. There is a desk on her right and the wall behind her is white.,0 1648,v_vska7f8Zm9s,What happens in the video?,v_vska7f8Zm9s_1648,"In the video, a person in a snow-covered area lights a matchstick and uses it to start a fire. The person collects some kindling and adds it over the flame along with fresh firewood, as the kindling catches fire. The camera also shows a dog walking away from the fire. The video ends with a pan of the camera over the burning kindling.",0 1649,v_SV3v-nA6hXM,What happens in the video?,v_SV3v-nA6hXM_1649,"The video shows people bungee jumping in a valley while wearing safety harnesses. The scenes include different angles of people jumping, with some diving forward and others jumping backward.",0 1650,v_w46wkDledek,Can you describe the dancing style performed in the video?,v_w46wkDledek_1650,The two girls in the video are performing Spanish-style partner dancing.,0 1651,v_TB5AeIdAndA,Can you describe the environment in which the man is playing the guitar?,v_TB5AeIdAndA_1651,The man in the blue jacket and jeans is sitting on the sidewalk by the lawn during daytime while playing the guitar and singing. There is an empty can next to him and also between his crossed legs. He continues playing the guitar until he finishes his song.,0 1652,v_sbnF7VVeopM,Can you describe the scenes in the video?,v_sbnF7VVeopM_1652,"The video starts with a person washing dishes in a well-lit washing area. We then see a montage of stock footage including people crossing the street, a person welding in a dimly lit workshop, a monster truck driving through mud, and cars moving through traffic. ",0 1653,v_OESjoURo19U,What's happening in the video?,v_OESjoURo19U_1653,"The video shows a game of dodgeball being played by a group of kids on an indoor basketball court, with people throwing balls at three people standing on one side of the court. Both boys and girls are on one team, and the opposite team is seen switching out players who get hit. The game continues until both teams stop playing and walk over to the middle of the basketball court.",0 1654,v_SLHPvKh-_x8,Can you explain the steps in the video?,v_SLHPvKh-_x8_1654,"The video shows a woman demonstrating effective hand washing technique using soap and tissue paper. She starts by applying liquid soap from a dispenser near the sink, then turns off the tap, and dries her hands using tissue paper from a dispenser above the sink. Finally, she throws the used tissue paper in a trash can.",0 1655,v_ypfWA4aDL6k,What is happening in the video?,v_ypfWA4aDL6k_1655,The video shows a man playing the bagpipe on a sidewalk during the day. People are passing by and dropping some change in front of him. Another person wearing a black hoodie and holding a little child is kneeling in front of the musician.,0 1656,v_rpjxjU-mLiw,What happens in the video?,v_rpjxjU-mLiw_1656,"In the video, a man in a teal T-shirt and black shorts throws a discus in a throwing circle located outside in a field during the daytime. There is a practice net surrounding the circle and a person in a yellow shirt jogging on the track behind the net. After the throw, the man in the teal T-shirt walks towards the camera and claps his hands.",0 1657,v_sk_pnoqXxhs,What is happening in the video?,v_sk_pnoqXxhs_1657,"In the video, a toddler and a woman are in a bathroom with a black-shirted man holding the camera, and the woman is teaching the toddler how to brush his teeth while standing on the sink. A brown dog is also visible in the video.",0 1658,v_YK9BIL9fKA0,What happens in the video?,v_YK9BIL9fKA0_1658,"In the video, two girls play hopscotch on a concrete path in a grassy field surrounded by trees and houses. They show three rocks and take turns throwing them on the hopscotch course. They complete the course by jumping with one leg up and then with both hands up. The girl with the camera interviews each of them before the video ends with a car coming down the road.",0 1659,v_GvMep9y7d7c,What is the video about?,v_GvMep9y7d7c_1659,"The video shows a man fixing a bicycle chain with some tools, a tree branch, and a stone. He tightens the chain-bearing screws and then smashes the chain-bearing with the branch and stone before finally adjusting the chain and testing the pedal.",0 1660,v_ZSdnDVGXU3k,Can you describe the gymnastics performances shown in the video?,v_ZSdnDVGXU3k_1660,The video showcases various gymnasts performing on a balance beam in different arenas during events. They execute various gymnastics movements on the balance beam.,0 1661,v_u3XOLSC7lg0,What is shown in the video?,v_u3XOLSC7lg0_1661,"The video showcases a man breakdancing in a well-lit hallway with blue and red floors, white walls, and people standing to the right of him. He is wearing a black T-shirt, black pants, and black and white sneakers. The man moves his legs on the floor, does a spring jump, puts his head on the floor, and rotates. He completes his performance and laughs. The video starts and ends with showcasing a digital poster.",0 1662,v_skk-nX55gvA,What is happening in the video?,v_skk-nX55gvA_1662,"The video follows a water polo game being played in a swimming pool. It starts with a slow-motion shot of a person identified as Justin Harrison throwing the ball toward the goalpost while being blocked by another player. Justin successfully scores the goal, and the video shows a replay of the shot from a different angle. The video also shows Coach Mark Conner speaking to a group of swimmers and Justin scoring another goal in a different game wearing a blue cap. The video ends with a group of swimmers talking by the pool, and one of them jumps into the pool.",0 1663,v_fh21bbDSVmA,What is happening in the video?,v_fh21bbDSVmA_1663,"In the video, a male gymnast wearing blue track pants and a white vest with blue and red stripes performs on a pommel horse in a well-lit arena with blue walls and chairs. The judges are sitting behind tables, a few feet from the blue platform where the pommel horse is located. The gymnast does a handstand and concludes his performance by wishing luck to his opponent.",0 1664,v_wCexKIuAj3A,Can you describe the setting of the video?,v_wCexKIuAj3A_1664,"The video begins in a well-lit news studio with a glass window at the back. There is a white coffee table on the set with coffee cups and a laptop. The set showcases five people who continue to converse throughout the video. Additionally, the video shows a cutaway shot of people smoking e-cigarettes in a bar.",0 1665,v_tF8Nv-QxbIU,Can you describe what the man is doing in the video?,v_tF8Nv-QxbIU_1665,"In the video, the man is cleaning shoes inside a well-lit shoe maker's shop. He starts by using a suede block and then a suede brush to clean a pair of red suede shoes, and then he proceeds to brush a dark blue high-heeled suede shoe.",0 1666,v_vAHR3iJhBXU,Can you describe the process of the nail art in the video?,v_vAHR3iJhBXU_1666,"The video features a woman who starts by applying a base coat to her fingernails before proceeding to apply pink nail polish on only one finger. She then draws random blocks on the white polish and sticks two black rhinestones on the pink nail. Finally, she applies a top coat to all the nails before ending the video with a shot of the painted nails.",0 1667,v_tC5eMgePakk,What is happening in the video?,v_tC5eMgePakk_1667,"In the video, a little girl in a pink outfit is playing the violin in front of a tree by the shore of a lake during daytime. The lake behind reflects the surrounding trees. She pauses occasionally and continues the song until the end, then the video fades to black.",0 1668,v_UtV69uNmzlE,What is happening in the video?,v_UtV69uNmzlE_1668,"In the video, a woman is sitting next to a toilet bowl in a well-lit bathroom, shaving her right leg with a razor. At one point, she dips the razor in the toilet bowl, and ends the video continuing to shave her leg.",0 1669,v_vMcXLYBcHsM,What happens in the video?,v_vMcXLYBcHsM_1669,"In the video, a man receives a haircut in a well-lit kitchen by a woman using an electric trimmer while a boy cooks something in a pot. The boy also helps cut the hair behind the man's ears using scissors and the trimmer. The man then drinks something from a cup and the video ends with him holding up a peace sign.",0 1670,v_u7THn6D6y5w,Can you describe the scene in the gymnasium shown in the video?,v_u7THn6D6y5w_1670,"In the video, a little boy in a maroon gymnastics uniform is practicing on an armbar with his coach. The gymnasium is well-lit with white walls, and has various sports equipment including blue mattresses on the floor. Other children are also seen practicing and sitting in the gymnasium. The coach asks the boy to exercise on the armbar, and he swings his legs in the air and puts them on the armbar. The video ends with the coach waving his hands to the boy.",0 1671,v_yggwFa68Cp4,Can you describe what happens in the video?,v_yggwFa68Cp4_1671,"In the video, a boy wearing a white shirt and black sweater plays the bagpipes while standing beside a wooden door. He blows air into the mouthpiece and presses the chanter with his fingers. The video ends with him finishing playing the bagpipes.",0 1672,v_PwTwGnAVFhQ,Can you describe the setting and attire of the woman in the video?,v_PwTwGnAVFhQ_1672,The video shows a woman wearing a pink top and black shorts standing on an aerobics step in a well-lit studio with white walls and a wood floor.,0 1673,v_QT4d1nTQYSE,What happens in the video?,v_QT4d1nTQYSE_1673,"In the video, Jonas Gerard begins a live painting performance in a well-lit art studio. He pours paint from a bottle and spreads it with a palette knife while a woman wearing an apron splattered with paint is standing behind him. There is an audience sitting a few feet away from the canvas, and the painting event is displayed on a large screen TV. After finishing the painting, Jonas turns to the audience and the audience members walk up to the table with the canvas to look at the finished painting.",0 1674,v_Xmp_twSbkAg,Can you describe the scene in the beginning of the video?,v_Xmp_twSbkAg_1674,"The video starts with a girl in a well-lit room wearing a black T-shirt and a pink full-sleeve top. There is a brown door, a red curtain, a desktop on a study table along with books, a photo, and a stuffed toy. The left wall behind her has stickers and some boards, and there is a small blue table behind her. She puts her stuffed toy on the table and begins talking.",0 1675,v_zDdD_qA86rg,What is happening in the video?,v_zDdD_qA86rg_1675,"In the video, a man and a woman are seen climbing up a rocky hill by finding handholds and attaching their ropes to anchors as they climb. The woman who is climbing is wearing a red and white shirt, anchors her rope as she climbs, and another person is belaying the rope at the bottom. The video is shot from the top down, during the daytime, and ends as the woman is still making her way to the top.",0 1676,v_tt-uDaZQWWc,What happens in the video?,v_tt-uDaZQWWc_1676,"In the video, a woman is shown shaving another woman’s leg while wearing a yellow T-shirt and multi-colored pajamas. The room is well-lit, and there are some cream and cosmetics bottles beside the woman. The woman getting her legs shaved shakes her hand while making a fist and then shows her hands to the other woman.",0 1677,v_r6l4mxphtX0,What is happening in the video?,v_r6l4mxphtX0_1677,The video is showing a woman wearing white who is sitting in front of a mirror and applying makeup. She then sneezes into a tissue and wipes her nose with it.,0 1678,v_Oskk7eLgerM,What is happening in the video?,v_Oskk7eLgerM_1678,"In the video, a man is giving a bath to a brown dog. He wets the dog using a handheld showerhead, then uses soap and his hands to clean it. Finally, he finishes off by toweling the dog dry and lifting it off the bathtub. The video ends with a picture of the dog looking at the camera while it lays on a blue towel.",0 1679,v_T35cHr4pjkc,What is happening in the video?,v_T35cHr4pjkc_1679,"In the video, a man dressed in a white shirt and black pants is seen drinking from a cup in a well-lit cafe with people sitting by tables and waiting near the counters. He is later seen dancing in the cafe while holding two cups of drinks, and then seen again dancing with his hands at his sides. A server wearing an apron and a black cap can be seen behind the service counter.",0 1680,v_Pr5K2Jh2X94,Can you describe the scene of the video?,v_Pr5K2Jh2X94_1680,"In the video, an athlete in a red outfit is getting ready for a long jump on an indoor track field with branding logos on his shirt. There are people on the periphery of the field, photographers visible, and people sitting in seating areas with red seats. During the jump, observers near the sandpit watch as the athlete jumps into the sandpit and gets up, celebrating as a referee holds up a white flag. The athlete speaks with the observers and then walks away. The video ends as another athlete wearing a yellow outfit walks to the start of the track.",0 1681,v_YU-dUWGOoD4,Can you describe the setting and the actions of the gymnast in the video?,v_YU-dUWGOoD4_1681,"The video showcases a man in a white vest and red pants performing on a pommel horse in a well-lit venue with overhead lights. There are cushioned mats around the pommel horse and people seated around tables nearby. The gymnast starts his demonstration by spinning and rotating around the pommel horse, dropping to the floor after reaching the edge, walking back to the pommel horse, restarting his demonstration, and finishing it with a handstand and a jump.",0 1682,v_zRqJZ0u6f88,What is happening in the video?,v_zRqJZ0u6f88_1682,"In the video, a man wearing a red shirt and trousers and holding a tool belt is standing by a window in a dimly lit room. He speaks to the camera, gestures towards the window and then cleans it using a spray bottle and a cloth while parked cars and a house across the street are visible.",0 1683,v_QY3q4DuiGq8,What is happening in the video?,v_QY3q4DuiGq8_1683,"In the video, a girl is seen wearing a blue outfit and participating in a discus throwing competition during the daytime. She stands in a throwing circle within a practice net with trees visible at the back. Beginning her throw by swinging her arm, the girl spins to throw the discus and eventually jogs away from the throwing circle.",0 1684,v_X9Y-b-SbkIU,What are some of the activities captured in the video?,v_X9Y-b-SbkIU_1684,"The video shows a woman and a man engaged in a game of squash in a squash court. An instructor is also teaching two men how to play squash, and several other people are also seen learning how to play the game. The video ends with some text and a web address 'bu.edu/fitrec'.",0 1685,v_uub0z8wJfhU,Can you describe the scene depicted in the video?,v_uub0z8wJfhU_1685,The video shows a man wearing a black full-sleeve shirt and glasses playing a violin in a well-lit venue. An altar lit with electric candelabras is visible on the wall to the left of the man. He is interrupted during his performance but continues to play until he finishes and takes a bow before stepping back.,0 1686,v_X5kj4fZ38rc,What happens in the video with the woman holding a violin?,v_X5kj4fZ38rc_1686,"The video features a woman in a well-lit room with white walls, holding a violin. She wears a dark blue printed top and stands next to a black table with books and photo frames behind her. In the background, there is a dining table, a chandelier, a fridge, and a microwave in the kitchen with brown wooden shelves. She starts playing the violin, briefly stops, and then plays again before the video ends.",0 1687,v_rGOOlcdpfLg,What is the video about?,v_rGOOlcdpfLg_1687,"The video shows a woman in a bedroom applying makeup on her eyebrows, eye shadow, eyeliner, lower eyelid highlights, and liner on her lips. It ends with her holding a gun to a man she pulled from her left.",0 1688,v_fMVuGUBs2cs,Can you provide a summary of the bartender making a Bloody Mary drink?,v_fMVuGUBs2cs_1688,"The video features a bartender explaining and demonstrating how to make a Bloody Mary drink. He wears a dark grey sleeveless coat, a white shirt, and a black tie, and stands behind a bar counter with many bottles on the shelf and some bottles and glasses in front of him. He adds ingredients to a cocktail mixer and then adds ice from beneath the bar counter, mixes the drink, strains it into another glass with ice, and finally garnishes it. The video ends with a close-up of the drink and a text display of ""Bloody Mary"".",0 1689,v_PSB1nM3QXxg,Can you describe the setting and activities shown in the video?,v_PSB1nM3QXxg_1689,"The video shows a group of boys wearing white martial arts uniforms practicing in a dirt field surrounded by trees and parked trucks. Two boys are demonstrating martial arts movements while standing apart from the group, and after they finish, they turn left and bow while the other students clap.",0 1690,v_TKgU9QJXw2w,What happens in the video?,v_TKgU9QJXw2w_1690,"The video shows a group of boys playing racquetball in a well-lit court with a light wooded floor and white walls. One of the boys accidentally hits another boy in the head with the ball, causing him to fall down and hold his head.",0 1691,v_WAvz9zHwWo4,What happens in the video?,v_WAvz9zHwWo4_1691,"In the video, a girl participates in a gymnastics competition and performs on a high bar. She swings and jumps from the high bar, and also moves to a smaller high bar next to it. She performs a handstand and lands on the mat in the end.",0 1692,v_uIcMgjypbqk,What happens in the beginning of the video?,v_uIcMgjypbqk_1692,The video starts with a bright light on the stage and the audience screaming. There is a bright light on the stage with two mic stands and music systems on the edge of the stage. There is smoke on the stage. There is a man standing in the bright light with a musical instrument. A big white ball is thrown on the stage. The man leaves the frame. ,0 1693,v_vaV6_bxiTLI,What are the events captured in the video?,v_vaV6_bxiTLI_1693,"The video shows a group of four boys and a girl standing on the street during the daytime. One of the boys is sitting on the sidewalk holding a camera, while a girl wearing a white top and black shorts is hopping on the ground in front of the others. She later walks back to the others and the video ends as the boy with the camera gets up from the sidewalk.",0 1694,v_z-EPAHsmTMA,What happens in the beginning of the video?,v_z-EPAHsmTMA_1694,The video starts with a running TV in a dimly lit room showing an advertisement featuring a girl in a white outfit smearing her face with white foam with both hands.,0 1695,v_pJ3sECWr5Xg,Can you describe the performance in the video?,v_pJ3sECWr5Xg_1695,"In the video, ballet dancers wearing white and black dresses perform a routine on the stage. The performance starts with a girl in a white ballet dress kneeling on stage, followed by other ballet dancers. A boy later enters the stage and dances around the dancers wearing black dresses. Towards the end, girls wearing white ballet dresses kneel and touch their foreheads to the ground before beginning to dance.",0 1696,v_vI-O6QWIIGU,What is happening in the video?,v_vI-O6QWIIGU_1696,"In the video, we see a man performing a gymnastics routine on a beige-colored pommel horse. He spins his body while holding onto the handles, but unfortunately, he misses a hold and drops to the ground. After applying chalk to his hands, he restarts the routine and performs a few spins, a handstand, and drops back to the ground.",0 1697,v_XPiMnbCr-sc,Can you describe the process shown in the video?,v_XPiMnbCr-sc_1697,The video shows a woman wearing a black top gift-wrapping a box with peach-colored cloth on a wooden table. She covers one end of the box with the cloth and then covers the other end while folding it. Then she ties a knot using the remaining two sides of the cloth. The video ends with a text and web address being displayed.,0 1698,v_w_CXbraJr58,What is happening in the video?,v_w_CXbraJr58_1698,"The video shows a man wearing a Scottish kilt and a beret playing the bagpipe outside during the daytime. There are people around taking photos and watching him. A little boy and a man taking pictures are also present. The man continues to play as the camera pans to show different people coming to watch him, and the video ends with people still standing in front of the musician who has stopped playing.",0 1699,v_ZLJ2BmBkLJg,Can you describe the process shown in the video of shaving a beard?,v_ZLJ2BmBkLJg_1699,"The video depicts a man in a well-lit room wearing a black T-shirt shaving his beard and neck using two different trimmers and a razor. He starts by trimming the left side of his face and then switches to a different trimmer to shave his neck before switching back to the first trimmer. After trimming, he applies shaving foam before using a razor for a closer shave. Finally, he wipes his face with a cloth and applies aftershave.",0 1700,v_Sf27WmcLb2w,Can you describe the game of volleyball played in the video?,v_Sf27WmcLb2w_1700,"The video showcases a game of volleyball played indoors on a well-lit court with a light wood floor and white and grey walls. A man wearing black sleeveless t-shirt and red shorts serves the ball on the left side of the court and then stands inside the left court. The team on the right side misses the hit and the ball is returned back to the left side, where the same person who served the ball before does it again. As both teams continue to exchange hits, the team on the right misses the return hit and loses the exchange. The video ends as the players stop playing.",0 1701,v_vSv1qMMt4Bk,Can you describe the setting and characters in the video?,v_vSv1qMMt4Bk_1701,"The video features two newscasters seated behind a newsdesk with tablets and wireless mice. They are in a well-lit studio and are reporting on health news. Additionally, there are a man and a woman shoveling snow in different scenes, with the reporter interviewing them and following the directions of another woman on how to use a shovel.",0 1702,v_p9lhwYsBWdc,What can you tell me about the video?,v_p9lhwYsBWdc_1702,"The video shows window cleaners dressed as Batman and the Hulk cleaning the glass windows of a building while wearing harnesses tied to the roof. Children in hospital gowns and other adults watch from inside the building. A little boy wearing a hospital gown is standing next to the windows inside the hospital, observing the window cleaners clean the glass. The cleaners are interviewed later and the video ends with them being lowered onto the ground.",0 1703,v_ZrSK-fisXGg,Can you describe the process shown in the video?,v_ZrSK-fisXGg_1703,"The video shows a woman getting her ears pierced by another woman wearing transparent gloves using an ear-piercing gun. After piercing both earlobes, the technician secures the studs from behind the ears and the video ends with close-up shots of the pierced ears. The woman getting her ears pierced is sitting on a chair in a well-lit store that has clothes and bags hung on racks on the back wall. There is also a water bottle on her right.",0 1704,v_p07Y--q4JQw,What's the video about and what happens in it?,v_p07Y--q4JQw_1704,"The video shows a man applying a clear solution to a woman's nail while other people sit around the table. The man in the camouflage pattern shirt applies the solution to each finger, and the video ends when he finishes and places his left hand on the table.",0 1705,v_TsHek6oZYXU,What happens in the video?,v_TsHek6oZYXU_1705,"The video shows a man practicing Tai chi with his master who is wearing a black Tai chi uniform. They are outdoors and music is being played in the background. The student wearing a white Tai chi uniform attacks his master and he defends it. The master then attacks his pupil and he defends it. The frame then changes to the master performing some Tai Chi movements accompanied by text on the screen. The master moves both his hands forward and backward, and the video ends with the master putting both of his hands in the front.",0 1706,v_QN-4aLiDhiQ,Can you describe what is happening in the video?,v_QN-4aLiDhiQ_1706,"In the video, a girl is getting a star tattoo on the right side of her stomach from a tattoo artist using a henna cone. The girl wears a blue shirt and holds up her shirt as the tattoo artist works. The video was shot in a mall tattoo stall with other people visible in the back. The video ends with a close-up view of the finished tattoo.",0 1707,v_UGWOtDmIcns,What is happening in the video?,v_UGWOtDmIcns_1707,The video shows a man rock climbing. He falls down from the top of the rock wall while being tied by a rope to a woman who is holding it and is standing in a forest with some other people sitting on her right side. ,0 1708,v_PNuJUYo3Hf8,Can you describe the events in the video about the foil racing competition?,v_PNuJUYo3Hf8_1708,"The video shows a man in a blue wetsuit speaking on a handheld radio in a boat. Next, it shows a red bull branded foiling catamaran preparing for a race along with several other catamarans with different brand names. The race takes place on a foggy day with several observer boats present. The team on the red bull branded catamaran wins the race and the video shows various shots of the race from different angles.",0 1709,v_TMAXjnsN0Mk,Can you describe the process of cleaning Uggs shown in the video?,v_TMAXjnsN0Mk_1709,"The video showcases a woman cleaning her Uggs using products from the Uggs care kit. She stuffs the Uggs with tissue paper, brushes them, wets them using a sponge and water, dilutes water with Ugg cleaner and conditioner and applies this mixture to the boots using a sponge. She repeats the brushing process and applies Uggs protector and freshener to the boots.",0 1710,v_skr8x0kUVwg,What happens in the video?,v_skr8x0kUVwg_1710,"In the video, we see a group of people in orange T-shirts standing in a field surrounded by trees. A little boy kicks a ball that comes towards him, and a person in a red T-shirt runs towards him. The girl in the red T-shirt follows the girl, who kicks the ball as she runs away. Other people are visible throughout the field, and a man in a white cap turned backward has a camera in his hands. We also see a girl wearing an orange t-shirt who speaks to the little girl and takes her back to the line. The video ends with the girl in a red t-shirt again throwing the ball toward the girl and running toward her.",0 1711,v_YnjITZnk6OE,What is happening at the beginning of the video and who is on the field?,v_YnjITZnk6OE_1711,The video starts with players on a hockey rink during the daytime wearing full gear and doing drills.,0 1712,v_UNJTM62HyqQ,Can you describe the setting and actions in the video?,v_UNJTM62HyqQ_1712,"The video shows a chef in a well-lit restaurant kitchen wearing a white coat, pointing toward ingredients on a metal table. He then adds spaghetti to boiling water and stirs it with tongs while another man passes behind him.",0 1713,v_SEVVSei-r6w,What is happening in the video?,v_SEVVSei-r6w_1713,"In the video, a man is practicing hammer throwing in a daytime setting while inside a practice net. He swings the hammer a few times before spinning and throwing it through the open end of the practice net.",0 1714,v_UaO7bS5Ky6M,What happens in the video and where does it take place?,v_UaO7bS5Ky6M_1714,"The video shows a woman wearing ballet clothing performing ballet steps while laying on the stage floor and standing on her toes while moving both her hands. She performs in an empty theatre with many lights and chandeliers. There are speakers mounted in various places, including on both sides of the stage and the edge of the galleries. The performance concludes with her laying on the floor.",0 1715,v_wEehiYq9ttE,What is happening at the beginning of the video?,v_wEehiYq9ttE_1715,"At the beginning of the video, a woman is getting her shoe cleaned in front of a shop with a glass display case. A man is cleaning her shoe with a cloth while the woman is holding a glass of beer and dancing. The woman seems to be enjoying the experience.",0 1716,v_rklYNAAaI3Y,What can you tell me about the video?,v_rklYNAAaI3Y_1716,"The video showcases a woman wearing a white t-shirt washing clothes with the help of a little boy. The room is well-lit with sunlight streaming through an open door. There is a green tub with water and soaked clothes placed on a counter. The woman and the boy are seen removing clothes from a bucket, and the woman later speaks to the boy while pointing at the tub. The video ends with the boy waving goodbye.",0 1717,v_ZVjLscGMOs8,Can you describe the setting and the activity in the video?,v_ZVjLscGMOs8_1717,"In the video, three women wearing white vests and track pants are seen exercising on aerobics steps in a dimly lit studio with a black floor. The back of the studio is darkened and monitors displaying a logo can be seen on the wall. The woman in the front is the instructor and the video ends with the women still working out.",0 1718,v_z6pmp8TrAVo,What is happening in the video?,v_z6pmp8TrAVo_1718,"In the video, a man is washing a plate in a well-lit kitchen with white walls. Another person wearing a striped t-shirt walks behind the man and taps him twice before walking away. The man washing the dishes laughs before the video ends. There is also a noticeable potted plant next to the sink.",0 1719,v_vzUeFzhVYLg,What happens in the video?,v_vzUeFzhVYLg_1719,A woman dives from the second level of a diving platform into an indoor swimming pool with overhead lights while people are visible near the bottom of the diving board.,0 1720,v_wFVukrQfQhI,What happens in the video with two girls on a well-lit racquetball court?,v_wFVukrQfQhI_1720,"The two girls wear white T-shirts and shorts and safety glasses. They play racquetball, hitting the ball on the wall, with both of them missing a few times. One gets the ball to serve after the other misses. The video ends with both girls stopping and shaking hands.",0 1721,v_rOtmhurweqo,Can you describe what is happening in the video?,v_rOtmhurweqo_1721,"In the video, an old man is seen exercising on an exercise bike in a well-lit bedroom with white walls and wardrobes visible on the left side. He is wearing a white t-shirt and track pants. There are photos hung on the right wall and an open door is visible a few feet behind the man. He pedals the bike for a while and then stops.",0 1722,v_RXT17X7lRoQ,What does the video mainly show?,v_RXT17X7lRoQ_1722,"The video shows a team of girls wearing black and pink uniforms playing lacrosse on a field during the day. The video includes a montage of different lacrosse games, following a player with a number six uniform as she takes the ball from others or scores goals, and ends with a slideshow of group photos of the lacrosse team.",0 1723,v_YOk1cMsyk88,What is happening in the video?,v_YOk1cMsyk88_1723,The video shows a man skateboarding on an empty road during the daytime. He falls off his skateboard and the cameraperson skates past him before the camera is covered and then removed.,0 1724,v_qmHjHk0Hzz8,What does the man do before throwing the discus?,v_qmHjHk0Hzz8_1724,"The man stands in a throwing circle and begins the discus throw. Before throwing, he spins a few times.",0 1725,v_rc-DiL5er28,Can you describe the scene in the video?,v_rc-DiL5er28_1725,"In the video, a team of dodgeball players are waiting on a basketball court in a school gymnasium while children sit on the sidelines. An American flag is hung on the wall behind them, and a man records them with his phone. The game begins with the placing of dodgeballs in the center of the court, and two teams wearing blue and yellow t-shirts respectively run to the balls. The game ends with a player from the blue team being helped up by the referee.",0 1726,v_fM5egP_1DvQ,What happens in the video?,v_fM5egP_1DvQ_1726,"The video shows a high jump competition with different participants attempting the jump, wearing different colored vests and shoes. The first participant who wore a red and green vest won the competition and the video showed the standings of all participants in the end.",0 1727,v_R_JKmGmURvA,Can you describe the process the man in the video follows to make a cocktail?,v_R_JKmGmURvA_1727,"In the video, the man wearing a black polo shirt and shorts places a cocktail mixer on the left side of the camera. He starts making a cocktail by adding some ice cubes, and then pours Jin and other liquors into the mixer. He also adds some fresh-squeezed lemon juice into the mixer before shaking it vigorously. Finally, he pours the cocktail into cocktail glasses and takes a drink.",0 1728,v_vIQPDP8jW8A,Can you describe the process of making the cocktail in the video?,v_vIQPDP8jW8A_1728,"The video shows a bartender adding cucumber slices to a glass and crushing them with a wooden pestle. Then, he measures a cap of Bombay Sapphire Gin and pours it into the glass. He retrieves a bottle of St. Germain liquor and adds a cap of it to the glass. He tops it off with lemon juice, ginger syrup, and elderflower syrup. Finally, he adds some egg whites to the glass, covers it with a cocktail mixer, and shakes it vigorously. He then pours the mixture into a glass and adds some ice cubes. The cocktail is finished with a slice of cucumber and a straw.",0 1729,v_-pkfcMUIEMo,What is the man doing in the video?,v_-pkfcMUIEMo_1729,"The man is demonstrating how to shovel snow while standing outdoors and wearing winter weather clothing. He scoops a large pile of snow and throws it to the side, repeating the process a few times before ending the demonstration.",0 1730,v_VhdidrZKuTU,What is happening in the video with the man in the flannel shirt?,v_VhdidrZKuTU_1730,"In the video, the man in the flannel shirt is building a campfire in a grassy field during the daytime. He arranges firewood and crumpled newspaper, adds table salt and white pepper powder, then lights the paper using a lighter before pouring gasoline on the arrangement and setting the firewood ablaze. The video ends as he stands next to the campfire and speaks to the camera.",0 1731,v_W4mJsJGa0CY,Can you describe the events in the video?,v_W4mJsJGa0CY_1731,"In the video, a man wearing a black vest and track pants performs a routine on the pommel horse in an indoor arena with other athletes and spectators watching. He loses balance in the middle of his routine but manages to get back up after applying chalk to his hands. The video ends as he successfully does a handstand and lands on the floor.",0 1732,v_TkhUtx0Eyfw,What happens in the video?,v_TkhUtx0Eyfw_1732,"In the video, a girl gets her ears pierced by a technician while sitting in a store with clothes and jewelry on sale in the background. Initially, the girl is afraid, but she calms down and lets the technician pierce her ears, one at a time. Two girls can be seen playing in the background as this happens, and the video ends with the girl sitting in the chair looking excited.",0 1733,v_Q3ZNFGE8PZE,What is happening in the video?,v_Q3ZNFGE8PZE_1733,"In the video, a group of boys are dancing in an alley with white gloves and a black umbrella as a prop, while a group of people watch and cheer them on.",0 1734,v_QriYk3MKSnM,What is happening in the video?,v_QriYk3MKSnM_1734,Two girls are sitting in a dimly lit living room and combing their hair while talking to each other and the camerawoman. One girl accidentally pulls the hair of the other while combing and then the same thing happens when the other girl tries to comb her friend’s hair causing the video to end.,0 1735,v_x90zpDHTpjQ,What is the video about?,v_x90zpDHTpjQ_1735,"The video is about a man in a gym, wearing a white and black t-shirt who attempts to lift a barbell while someone in the background is lifting weights, and he speaks to the camera afterwards.",0 1736,v_X4J9UBXb0FM,What does the video depict?,v_X4J9UBXb0FM_1736,The video shows a pole vaulting competition that takes place both during the daytime and nighttime. Various athletes wearing different colored vests and shorts are seen vaulting over a bar. The video concludes with athletes standing on medal podiums wearing wreaths.,0 1737,v_zXHyFBrj5Ag,What is happening in the beginning of the video?,v_zXHyFBrj5Ag_1737,The video starts with a man wearing a striped blue and black t-shirt and shorts ironing a blue and white Hawaiian shirt on an ironing board in a well-lit room.,0 1738,v_PwRqqR1YmPM,What happens in the video?,v_PwRqqR1YmPM_1738,"The video shows a pole vaulting competition on a track field during the daytime. Athletes run and then vault over a bar, landing on a cushion mat on the other side. Replays are shown after each athlete completes their run, and the video ends with stats of the athletes.",0 1739,v_peiF2E05u8g,Can you describe the activities the girl does in the mall?,v_peiF2E05u8g_1739,"The girl in the video is shown entering a mall, browsing makeup in a shop, getting makeup applied by a beautician, getting her nails painted with flowers, holding up the painted nails to the camera and speaking to it several times, and finally standing near an escalator and speaking to the camera.",0 1740,v_GChGC-VJZHs,What happens in the video?,v_GChGC-VJZHs_1740,"The video depicts motorcyclists performing stunts and jumps on a dirt bike track in a forest, while wearing off-road gear and helmets. Additionally, it shows a motorcyclist falling and giving a thumbs up to indicate he is okay, and ends with another motorcyclist riding the track and performing jumps with music playing in the background.",0 1741,v_Ur_ToogEkCA,What is happening in the video?,v_Ur_ToogEkCA_1741,"In the video, four people are playing volleyball on either side of a volleyball net during the daytime. A woman wearing a blue vest over a red top is on the sideline while the men play. The game continues as they pass the ball back and forth until it ends and a few people come into frame.",0 1742,v_YAKXrBinGD4,What is the video about?,v_YAKXrBinGD4_1742,"The video shows a woman and her friends kayaking in a river between canyons. They also ride other watercrafts, such as a houseboat, a jet-ski, and a motorboat.",0 1743,v_qU4GmCN2e1Y,Can you describe the man’s routine on the parallel bars?,v_qU4GmCN2e1Y_1743,"The man wearing a dark blue vest and pants performs a routine on the parallel bars which includes jumps, a handstand, a sitting position with his legs parallel to the ground, and finishes up with another handstand before jumping down to the ground.",0 1744,v_FqYhC6_CMfI,What are the main events in the video?,v_FqYhC6_CMfI_1744,The video shows a man windsurfing on a beach. He attaches the sail to his board and starts windsurfing across the beach water. He falls from his board while windsurfing.,0 1745,v_s9PkkDEl6aY,What happens in the video?,v_s9PkkDEl6aY_1745,"In the video, a Zumba class is being conducted in an indoor basketball court for children and the instructor leads the class with different moves and dances. The instructor is standing on a raised platform and wearing a green top and khaki pants. The video ends with the instructor walking down the platform after ending the class.",0 1746,v_ROrLMf0zXko,What happens at the beginning of the video?,v_ROrLMf0zXko_1746,The video starts with text on a white screen.,0 1747,v_W6fPv5eoXC4,Can you describe the setting and actions in the video?,v_W6fPv5eoXC4_1747,"The video shows a man playing tennis on a court during the daytime. He is wearing a grey sleeveless shirt and blue shorts. The tennis court is surrounded by a chainlink fence and there are trees visible in the background. In the video, the man picks up a tennis ball from a basket, bounces it on the ground a few times, and serves it. The man takes a few steps forward as he serves the ball. There is also a slow-motion and normal-speed replay of the man serving the ball shown.",0 1748,v_zB8knKX0W8Q,What happens in the video?,v_zB8knKX0W8Q_1748,"The video shows an antique store and its different parts. It features a man and woman speaking to the camera, men restoring pieces of furniture, and different equipment and tools used in the store.",0 1749,v_OlykXdYeQOI,What is happening in the video?,v_OlykXdYeQOI_1749,"In the video, a shirtless man is giving a haircut to a boy outdoors in the daytime while a little girl walks by. The boy is covered with a white cape and they are on a sidewalk with plants and parked cars in the background. The barber hands the boy a mirror to check his haircut and uses a comb, scissors, and a trimmer to cut his hair.",0 1750,v_PdwWFueQErM,What is happening in the video?,v_PdwWFueQErM_1750,"In the video, a man shovels snow outdoors during the daytime while wearing a black sweater and jeans. He clears a small area and speaks to the cameraman before slinging the shovel over his shoulder. There are visible trees and a snow-covered roof in the background.",0 1751,v_TZOhIMjwEE8,What does the video depict?,v_TZOhIMjwEE8_1751,"The video shows a woman lawn-mowing a grassy lawn covered with wooden walls. She is wearing white vest, grey trousers and white sports shoes. The woman is mowing the lawn by moving the lawnmower and turning it, leaving some grass on the sidewalks. There is also a white dog on the lawn. The video ends as she gives the cameraman a thumbs up.",0 1752,v_GH0Umpw6tME,What happens in the video?,v_GH0Umpw6tME_1752,"The video depicts a group of women in an aerobic class doing workouts while following the instructions of a trainer who is wearing a grey vest, black cap, and black shorts with sports shoes. The studio is well-lit, has mirrors on half of the walls, silver gym balls kept on a shelf, and a black speaker mounted on the wall to the right of the women working out. One of the women in the back row, who is wearing a black t-shirt and pants, is missing steps while performing the routine. The video ends with the instructor clapping and calling for the class to stop.",0 1753,v_UvOEuhS0V3E,What is happening in the first clip of the video?,v_UvOEuhS0V3E_1753,"In the first clip of the video, a woman wearing a white top is applying lipstick in a well-lit room, sitting in front of a mirror with light streaming from her right.",0 1754,v_ZY0cdXr_1MA,What is the video about?,v_ZY0cdXr_1MA_1754,"The video showcases a woman doing ballet in a white room and on stage while being filmed. It features a closer view of the woman as she dances, and ends with a shot of her face and a logo for Under Armor.",0 1755,v_QOaPQpXemCA,What is happening in the video?,v_QOaPQpXemCA_1755,"The video features Lakshmi Rebecca, who is first seen sitting in a garden speaking to the camera, and then later in a beauty salon. She is joined by a beautician named Swathi Gupta, and together they apply makeup to a customer. The video ends with Lakshmi speaking briefly and the credits rolling.",0 1756,v_ZK4Y6nOton8,What happens in the video?,v_ZK4Y6nOton8_1756,"In the video, a girl in a pink t-shirt plays badminton with someone else in a well-lit venue while other people are present. They both miss the shuttlecock and a child on the side picks it up and throws it at the girl. The camera shows people sitting on the chairs and one of them smiles. The girls continue to play but keep missing the shuttlecock.",0 1757,v_uCvjzcVCtEs,Can you describe the scene depicted in the video?,v_uCvjzcVCtEs_1757,"The video shows a male athlete wearing a blue vest, black shorts, and red sports shoes about to perform a long jump in a stadium with other male athletes and some female athletes walking on the track behind him. The stadium is surrounded by many trees and has orange and black seats. The athlete runs on the track and jumps on the sandy area while people measure the distance he jumped.",0 1758,v_zoWqv-sIdBY,Can you describe the scene in the bedroom at the beginning of the video?,v_zoWqv-sIdBY_1758,"At the start of the video, text appears on a blue screen and then we see a well-lit bedroom where a boy named Ivan is sitting on a chair in front of a table with a computer on it. Another boy named Oscar is standing behind him and combing Ivan's long hair.",0 1759,v_qmfZw9eEpIU,Can you describe the scene portrayed in the video?,v_qmfZw9eEpIU_1759,"The video features a man windsurfing on a red board with an attached sail, wearing a life vest and sunglasses. The shore is visible with rock faces and buildings in the distance, while trees and green hilly land can be seen on the shore. There are also other windsurfers visible in the sea.",0 1760,v_tLk0Y04OaCA,Can you describe the actions and surroundings depicted in the video?,v_tLk0Y04OaCA_1760,The video shows a girl in a blue shirt washing her hands at a sink with a mirror on top and toiletries scattered around. Another person wearing a grey sweatshirt is standing next to her holding a notebook and a pen while another person in a red top records on a phone. The girl pumps soap from a dispenser and looks back before the video ends.,0 1761,v_VWGV8I5byKI,Can you describe the training activities of the man in the video?,v_VWGV8I5byKI_1761,The video shows a man training shotput in an empty field. He throws the shotput multiple times while spinning and turning before throwing. There is also a clip of him lifting weights in a gym.,0 1762,v_sNJ6_N0j9Ts,What happens in the video?,v_sNJ6_N0j9Ts_1762,"The video shows four men playing squash on a well-lit wooden floor court, predominantly focusing on an old man wearing a black t-shirt hitting a ball with three other players. The men all wear shorts and sports shoes. One of the players, wearing a red polo shirt hits the ball on the glass door, bounces it to the other side, and the video ends as he taps his raquet on the glass door in front of the camera.",0 1763,v_t13MQSYjlas,What is happening in the video?,v_t13MQSYjlas_1763,"In the video, a man wearing a red shirt and black pants is practicing hammer throwing in a field. He swings the hammer around and spins it before throwing it through a practice net. A man also appears in the frame walking towards the net.",0 1764,v_syfyM1Pble8,What is happening in the gym at the beginning of the video?,v_syfyM1Pble8_1764,The video begins in a dimly lit gym with people on exercise bikes and a man at the front calling out instructions as he also pedals an exercise bike. People on the bikes can be seen following his instructions.,0 1765,v_u0A5NIUKEQo,Can you describe the events that happened in the video?,v_u0A5NIUKEQo_1765,"In the video, two boys dressed as Santa and Elves were dancing in a mall in front of a Christmas tree. They also posed for a picture with a girl wearing a black t-shirt and two other girls. The video ends with the display of some text on a digital page.",0 1766,v_-vnSFKJNB94,What are some of the diving maneuvers that Michal Navratil performs in the video?,v_-vnSFKJNB94_1766,"The video shows Michal Navratil doing different diving maneuvers from the diving board, such as tucks, twists, and forwards dives.",0 1767,v_Ws12Dt0Ny5Q,Can you describe the events that took place in the video of female athletes?,v_Ws12Dt0Ny5Q_1767,"Certainly. The video features female athletes performing pole jumps and long jumps in a well-lit stadium with an audience. Their outfits are described as red crop tops, red bikini bottoms, red sports shoes, purple crop tops, grey bikini bottoms, and white sports shoes. Slow-motion replays are shown for both athletes and they both successfully land their jumps. The video also features a women’s triple jump event in a sandy area with officials and athletes present. Replays are shown for their jumps as well.",0 1768,v_tY9dmG6IyPo,What is happening in the video?,v_tY9dmG6IyPo_1768,"In the video, a female athlete is seen competing in a hammer throw competition in a stadium. She is wearing a red and white short vest, blue shorts, and black sports shoes. There is also a man in a blue tracksuit standing nearby. The video ends with the hammer falling on the grassy field where people wearing the same uniform are standing and walking towards it.",0 1769,v_wJk3KOUAwXA,What is happening in the woodworking shop?,v_wJk3KOUAwXA_1769,"A man is using steel wool to apply wax on a wooden table before using a car buffing wheel to polish the section he waxed, and then using a wet rag to give the surface a buff. There are also other wooden planks and furniture visible in the shop, and a wooden chair is placed on a table behind the man who is wearing a white apron over a white t-shirt, glasses, a cap, and a blue glove over his right hand.",0 1770,v_wh4JNeQh9FQ,What is happening in the video?,v_wh4JNeQh9FQ_1770,The video shows a woman getting a tatoo on her earlobe while lying on a retractable bed with a white sheet on it. The tattoo artist marks and cleans her ear before proceeding with the tattoo. The technician is using a tattoo gun and the artist finishes by cleaning the ear.,0 1771,v_WdJUMmy2ox8,Can you describe what happens in the video?,v_WdJUMmy2ox8_1771,"In the video, two men are seen in a dark room seated on a sofa. One is smoking a hookah while the other is on his mobile phone. They exchange the pipe, smoke and blow smoke rings, and hold up their blackberries. Finally, the man on the right turns off the camera.",0 1772,v_ooFuSspUuVY,What is happening in the video?,v_ooFuSspUuVY_1772,"The video shows a girl riding a horse in a riding arena during the daytime, leading the horse through various obstacles and jumping over them. Other riders are also present in the arena.",0 1773,v_tXUssW4vT3o,Can you describe the outfit and personality of the belly dancer in the video?,v_tXUssW4vT3o_1773,"In the video, a belly dancer wearing a sparkling turquoise-colored dress performs on stage. She moves her hands and twists her body gracefully around the stage while music plays in the background. The audience gives her a standing ovation at the end of her performance.",0 1774,v_TGIQtaINzCY,What happens in the video?,v_TGIQtaINzCY_1774,"The video depicts an indoor cycling class being instructed by a woman wearing a black T-shirt and a microphone. The class takes place in a well-lit gym with white walls and a grey floor. The video also includes an interview with one of the participants, clips of people exercising from different angles, and a demonstration on how to change the resistance on the exercise bike. The video ends with clips of people on different exercise machines.",0 1775,v_ZUl43hNzGjA,What are the main scenes in the video?,v_ZUl43hNzGjA_1775,"The video shows a white building from the outside, the inside of a ballet studio where children practice, a girl speaking from inside a well-lit studio, children walking through the school, and a boy and a girl dancing in a studio as other children watch.",0 1776,v_sBwUwgTjhAU,Could you describe the setting of the video?,v_sBwUwgTjhAU_1776,"The video shows a man in a study with a shelf behind him that has a fax machine and stack of papers in the top row, while the rest is filled with books and boxes. A woman wearing a sweater over a red outfit briefly looks at the camera before walking away. The man shaves his beard, including his mustache, and the woman sits down at a desk with a computer in the background.",0 1777,v_WCS8dzRT7Xk,Can you describe what the woman is doing in the video?,v_WCS8dzRT7Xk_1777,"In the video, a woman wearing a grey shirt is seen ironing a green piece of clothing on an ironing board. She turns the fabric inside out and lays it flat on the ironing board, irons it with slow circular motions, pulls the fabric and irons the next section, before pulling the fabric off the ironing board and holding it up at the end.",0 1778,v_wjr5M-6qEWI,What is happening in the video?,v_wjr5M-6qEWI_1778,The video shows two ping-pong players playing a game in a well-lit arena. A man wearing a jacket and khaki pants is also sitting near the separator of the court. The video also shows a player with one hand recorded during matches. The matches are held in different courts.,0 1779,v_GOF5guH_kuI,Can you describe the performance of the female gymnast on the balance beam?,v_GOF5guH_kuI_1779,"In the video, the female gymnast, wearing a sparkling red gymnast costume, performs a routine on a balance beam in front of spectators. She performs flips, balancing acts, and jumps. She falls twice but manages to complete her performance, receiving cheers from the crowd.",0 1780,v_uqwf903l5-E,What is happening in the video?,v_uqwf903l5-E_1780,"In the video, a group of cheerleaders wearing blue uniforms along with two boys enter a hall with white and maroon walls. They perform various cheerleading stunts including lifts, cartwheels, and flips in front of an audience. The video ends with the group doing cheerleading dance steps and the audience applauding them.",0 1781,v_zxr6UZKPDh4,Can you describe the kayaking scenes displayed in the video?,v_zxr6UZKPDh4_1781,"A man wearing a red lift vest over a black shirt and another wearing a blue lift vest are seen kayaking down a stream with various other kayakers. Shots from different perspectives are shown as they navigate the river, passing by lush greenery and rapids. The video ends with the kayakers continuing down the stream.",0 1782,v_SNJgJB2PGdI,What is the video about?,v_SNJgJB2PGdI_1782,The video is about a woman belly dancing while balancing a lit candelabra on her head.,0 1783,v_Zhx6BYVb64g,What happens in the video?,v_Zhx6BYVb64g_1783,"The video features a boy playing the violin while his surroundings change, and other people join behind him. He also takes selfies with a girl before handing a stuffed animal to her at the end.",0 1784,v_oncTwYfvCD8,What are the different scenes depicted in the video?,v_oncTwYfvCD8_1784,"The video showcases a man performing various martial arts movements in different settings including a well-lit studio, a white-walled room with darkened windows and an indoor venue with people observing him. There is also a scene where the man is performing outdoors on the lawn with people standing a few feet away.",0 1785,v_yttmx8mcjGw,What is the video about?,v_yttmx8mcjGw_1785,"The video is about cricket games being played in various locations, including the beach, homes, and stadiums. The video shows clips of both professional players from the Australian cricket team and regular people playing cricket. The video begins with two women sitting on the beach, followed by a man rolling up a carpet inside a house, then a woman with a cricket bat preparing to bat on the beach. The video ends with a child standing near the stumps and getting ready to bat. ",0 1786,v_wcxEkMoOmBk,What is the video about?,v_wcxEkMoOmBk_1786,The video is about a group of women in a hair salon who are attaching hair rollers to their hair and later removing them to style their hair while looking at mirrors.,0 1787,v_zEttEkAdHts,Can you explain what happens in the video?,v_zEttEkAdHts_1787,The video shows the process of using currency notes to wrap a gift. Scotch tape is used to tape the notes onto the gift to make it look like gift wrapping. A green string is tied around the gift and bows are added to complete the look.,0 1788,v_z3MP0yJBtGg,What is happening in the video?,v_z3MP0yJBtGg_1788,"A girl wearing a black hoodie and jeans skirt is seen at a stone dipper well, where she washes her hands and leaves after using the ladles arranged on top of the dipper.",0 1789,v_Omvg9UtGOes,Could you describe the process shown in the video?,v_Omvg9UtGOes_1789,"In the video, we see a woman wrapping a box with a pink and green cloth. She carefully brings the edges of the cloth together over the box and ties them together.",0 1790,v_oni9K1_MCuw,What happens in the video?,v_oni9K1_MCuw_1790,"People are seated at tables in a ballroom, an orchestra starts playing music, a man and a woman waltz and perform various dance moves and steps, and they separate and bow to the audience and orchestra.",0 1791,v_Rn6_IwckXg4,What happens in the video?,v_Rn6_IwckXg4_1791,"The video shows people smoking an e-cigarette, including a woman in a black coat and blue top, a man wearing a checkered shirt and glasses, and a montage of different people. A woman wearing a red outfit and hat is also shown standing next to most of the people.",0 1792,v_TNqc2yWZztE,Can you give me an overview of the video on gift-wrapping?,v_TNqc2yWZztE_1792,"Sure. The video shows a woman wrapping small and large boxes with gift-wrapping paper and tape on a wooden table in a well-lit room. There are also some mathematical formulas shown on a white paper and an Excel sheet. At the end, the woman places all the gift-wrapped boxes on the table.",0 1793,v_UNXLfqkwKFc,What happens in the video?,v_UNXLfqkwKFc_1793,The video starts with a man wearing blue shorts and holding a vacuum cleaner in a well-lit room with white walls. He turns on the vacuum and cleans the dust on the floor. He then turns off the vacuum and leaves the frame. There is a glass table with golden stands to the left of the man that has photo frames on it.,0 1794,v_W9H2qVnIWXs,What are some of the activities that the groomer does to the golden retriever in the video?,v_W9H2qVnIWXs_1794,"The groomer lathers the dog, washes him with a hose, dries him with a towel and a blow-drier, wipes him with a towel, and brushes his coat.",0 1795,v_ZxPF3s_OLDo,Can you give me a brief overview of the video?,v_ZxPF3s_OLDo_1795,"Sure! The video starts with a man wearing a red t-shirt climbing a rocky hill during the daytime. He has a chalk pouch and rope with him. The scene then shifts to a view of the city with buildings visible in the background. The man then rappels down the hill with a yellow metal staircase visible to his right, and a woman belaying the rope at the bottom. He also removes the anchors as he descends.",0 1796,v_Mf3IyeMF8ug,What color is the gift wrap used to wrap the box?,v_Mf3IyeMF8ug_1796,The woman wraps the box with an orange gift wrap.,0 1797,v_mNiFmkm5OZA,What is the man wearing and what is he holding?,v_mNiFmkm5OZA_1797,The man is wearing a white t-shirt and is holding a pipe from a hookah.,0 1798,v_MbjyQGdTtK8,What ingredients are used in making the furniture polish?,v_MbjyQGdTtK8_1798,The woman uses olive oil and lemon juice to make the furniture polish.,0 1799,v_Gvc1z9qypFQ,What is the color of the jerseys worn by the two opposing teams playing hockey?,v_Gvc1z9qypFQ_1799,"One team is wearing a maroon jersey with numbers on the back and black shorts, while the other team is wearing a red jersey with numbers on the back and black shorts.",0 1800,v_ObrXN_FjVD8,What is the man in the blue t-shirt doing on the sailboat?,v_ObrXN_FjVD8_1800,The man in the blue t-shirt and glasses is cranking a lever connected to a chain on the sailboat in the sea during the daytime.,0 1801,v_N75m1Z4RqbA,Where are the dancers located in the video?,v_N75m1Z4RqbA_1801,The dancers are in a well-lit indoor studio with people standing by the walls to make space in the middle.,0 1802,v_Ocid5pcnSVY,What type of dance are the women performing?,v_Ocid5pcnSVY_1802,The women are performing a contemporary ballet.,0 1803,v_MxvKscpouzY,What color is the floor of the arena in the video?,v_MxvKscpouzY_1803,The floor of the arena in the video is red with text painted on it.,0 1804,v_LzPppxSWYNY,What is happening as the woman jumps into the sand pit during the competition?,v_LzPppxSWYNY_1804,"As the woman jumps into the sand pit during the competition, a woman standing a few feet back walks into the frame holding a measuring tape.",0 1805,v_mMebSMn5D0E,What is happening in the video?,v_mMebSMn5D0E_1805,"In the video, a man and a woman walk into a piano store. The man is wearing a brown coat and the woman is wearing a black top. The man sits at a piano and starts playing while the woman stands next to him. Later in the video, the man is at a closed restaurant with round tables, and a woman wearing a white robe approaches him. Next, a man in a brown jacket is standing near the back of the audience at an orchestra and walks towards the stage to conduct the orchestra.",0 1806,v_FzqZsQx20jY,What is the gymnast wearing and what colour is it?,v_FzqZsQx20jY_1806,The female gymnast is wearing a sparkling dark green and white gymnast costume.,0 1807,v_-nl4G-00PtA,What is the man doing in the video?,v_-nl4G-00PtA_1807,The man is washing dishes in a kitchen sink.,0 1808,v_NvRH4SoF09c,What is the man wearing and what is he doing in the meadow?,v_NvRH4SoF09c_1808,The man is wearing a black shirt and pants along with glasses and he is playing a flute in the meadow during the daytime.,0 1809,v_MidLOhRnpnU,What are the men doing when they step away from the lighter after hearing the message?,v_MidLOhRnpnU_1809,The men are attempting to light cigarettes.,0 1810,v_N5LZMH9mZVU,What kind of formation do the cheer squad stand in and what is written on the banner they carry?,v_N5LZMH9mZVU_1810,The cheer squad stands in a triangular formation and they carry a large banner that has 'JAPAN' painted on it.,0 1811,v_oD8sGLt2FR0,What is the boy doing and where is he located?,v_oD8sGLt2FR0_1811,The boy is shoveling snow in a driveway in front of an open garage during the daytime.,0 1812,v_N1_pNhVqG20,What stunts does the windsurfer perform on his surfboard in the video?,v_N1_pNhVqG20_1812,"In the video, the windsurfer performs flips, turns around, maneuvers his sail, jumps and rotates on his surfboard. He also performs a one-handed burner by pushing the sail all the way down and jump-twisting on his board.",0 1813,v_LuH7I7Rxju8,What is the man wearing in the video?,v_LuH7I7Rxju8_1813,"The man is wearing a black T-shirt, grey trousers, and a beanie.",0 1814,v_NojaHuKBagQ,What is the man doing in the video and what tools is he using to do it?,v_NojaHuKBagQ_1814,The man in the video is cleaning a pair of shoes. He uses an adhesive eraser to clean the bottom edge of the shoe on his right and then cleans a white Nike shoe with the same eraser. He holds the eraser while handling the shoe and speaking.,0 1815,v_Mk7Yjq1U8OI,What is happening in the first clip of the video?,v_Mk7Yjq1U8OI_1815,"A clip with a women’s beach volleyball warmup is shown on a grass field, with people standing and sitting around a tree in front of a building visible in the back.",0 1816,v_F9mk2Dn2tFw,What is the appearance of the boy who passes the ball to the girl?,v_F9mk2Dn2tFw_1816,The boy who passes the ball to the girl is wearing a white T-shirt and black shorts.,0 1817,v_o5F7X-UBETE,What is happening in the video?,v_o5F7X-UBETE_1817,A weightlifting competition is being shown in the video. Different weightlifters from different countries lift a barbell in front of judges and drop it after holding it over their head. The video ends with a Chinese weightlifter lifting the barbell and yelling.,0 1818,v_mShp2gzuPOM,What are some visible elements in the gym where the badminton court is located?,v_mShp2gzuPOM_1818,"The gym is lit with overhead lights. People can be seen standing at the edges of the gym. There is a woman with a camera sitting near the netting at the left pole and taking pictures. A scoreboard is visible at the top of the wall at the back of the gym, and an American flag is hung vertically from the wall. Bleachers retracted to the wall can be seen to the left.",0 1819,v_meNgZdu8tIk,What are the different ingredients used to make the sandwich?,v_meNgZdu8tIk_1819,"The sandwich is prepared with slices of bread, butter, green chutney, boiled potatoes, chopped onions, sliced tomatoes, chopped bell pepper, grated cheese, and chat masala.",0 1820,v_ERYwCKVUTSQ,What type of clothing is the woman wearing in the video?,v_ERYwCKVUTSQ_1820,The woman is wearing a black shirt and black pants.,0 1821,v_myGBEXiYGOU,What is the woman painting in the video?,v_myGBEXiYGOU_1821,The woman is painting the head and torso of a peacock.,0 1822,v_ltlJ2sOx4as,What animals are visible a few feet from the horses?,v_ltlJ2sOx4as_1822,Two dogs are visible a few feet from the horses.,0 1823,v_nywOe9C3ajM,What is the beautician doing to the girl in the beauty salon?,v_nywOe9C3ajM_1823,The beautician is shaping the girl's eyebrows using threads.,0 1824,v_mLFjww64sX8,Which side of the customer is the barber standing on in the beginning?,v_mLFjww64sX8_1824,The barber is standing on the customer's left.,0 1825,v_nDHupsLdar0,What is the man wearing and where is he sitting?,v_nDHupsLdar0_1825,The man is wearing a grey sweatshirt and sitting on the edge of a dark blue sofa.,0 1826,v_lSVj34-DR0o,What is the name of the diver featured in the video and how many rounds of diving are shown?,v_lSVj34-DR0o_1826,"The diver featured in the video is Thomas Daley, as displayed in the graphics. Four rounds of diving are shown.",0 1827,v_lU6DMCif3eE,What is the man wearing while he plays the bagpipe in the video?,v_lU6DMCif3eE_1827,The man is wearing a black T-shirt while playing the bagpipe.,0 1828,v_gmbC7D6HfuM,What color clothes is the man wearing?,v_gmbC7D6HfuM_1828,The man is wearing a turquoise T-shirt and blue jeans with white shoes.,0 1829,v_MWQ9mb_mB8U,What are the colors of the clothes worn by the women's teams in the volleyball game?,v_MWQ9mb_mB8U_1829,"The women's teams in the volleyball game are wearing white tops with numbers on them. However, two women wearing red t-shirts and black track pants are holding the Kenyan flag.",0 1830,v_mMm1LfVb8Pg,What is the woman wearing while riding the lawn mower?,v_mMm1LfVb8Pg_1830,The woman is wearing a green T-shirt.,0 1831,v_Nvf-BZNEGdI,What is the color of the T-shirt worn by the boy who dances after the boy in the black t-shirt?,v_Nvf-BZNEGdI_1831,The boy who dances after the boy in the black T-shirt is wearing a white T-shirt.,0 1832,v_-MbZ-W0AbN0,Who is shown standing in front of the platform in the video and what are they holding?,v_-MbZ-W0AbN0_1832,The video shows a man wearing a white lab coat standing in front of a platform and holding a can of furniture polish.,0 1833,v_mY7QdIn51S8,What type of delivery is the Indian bowler employing in the cricket match?,v_mY7QdIn51S8_1833,The Indian bowler is employing spin while delivering the ball.,0 1834,v_nI6l7BP0odw,What type of clothing is the musician wearing and what is he doing in the video?,v_nI6l7BP0odw_1834,The musician is wearing a Scottish kilt and playing the bagpipe. ,0 1835,v_NwlIZ1T93xE,Can you describe the setting of the video?,v_NwlIZ1T93xE_1835,"Yes, the video takes place in a dimly lit bar with people sitting at tables and lights on the walls. There is also a band playing music on the left side of the screen.",0 1836,v_Ntyl5alZXeM,What is the woman wearing when she cleans the girl’s ear before piercing it?,v_Ntyl5alZXeM_1836,The woman is wearing gloves and a dark blue top when she cleans the girl’s ear before piercing it.,0 1837,v_N4qhryre_TE,What are the athletes doing on the tumbling track in the video?,v_N4qhryre_TE_1837,"The athletes are performing various acrobatic movements including high-flying flips, twists, and other dynamic tumbling elements.",0 1838,v_MgjxjBxGrQU,What are the men doing while smoking hookah?,v_MgjxjBxGrQU_1838,"The three men are smoking hookah, speaking to each other, and dancing to music. They also blew smoke at each other and did a chest bump.",0 1839,v_LvaU_4xbxb0,What instructions are the two girls in the video following?,v_LvaU_4xbxb0_1839,The two girls are following instructions from an instructor who is outside the frame.,0 1840,v_nTY4IaGRFIc,What do we see in the poolside?,v_nTY4IaGRFIc_1840,"We can see chairs and bonsai plants in white pots by the poolside. Additionally, there are white villas in the back.",0 1841,v_QG2xYcN_bl0,What is the boy wearing and what is he doing in the video?,v_QG2xYcN_bl0_1841,"The boy is wearing a grey vest and he is dribbling a basketball on a basketball court. He is doing a crisscross drill around little orange agility cones and throws the ball through the basket, before repeating the drill.",0 1842,v_Lshue6AmrIw,What color outfit is the little girl wearing on the shoe-shine chair?,v_Lshue6AmrIw_1842,The little girl is wearing a black outfit.,0 1843,v_eS-VU_XV1K8,What type of flooring does the studio have and what is mounted on the wall to the left of the instructor?,v_eS-VU_XV1K8_1843,The studio has wooden flooring and a large speaker is mounted on the wall to the left of the instructor.,0 1844,v_NM7Vye5nxj8,What causes the bar to fall when the man in blue vest and tights jumps over it during the high jump?,v_NM7Vye5nxj8_1844,The man in blue vest and tights makes contact with the bar as he jumps causing it to fall as he lands on the cushion.,0 1845,v_ghxiG0Dnrt0,What is the woman wearing while cleaning the kitchen sink?,v_ghxiG0Dnrt0_1845,The woman is wearing a black apron over a T-shirt and jeans.,0 1846,v_Mf3IyeMF8ug,Can you describe the process of wrapping the box in detail?,v_Mf3IyeMF8ug_1846,"In the video, a woman's hand is seen starting to wrap a box that is placed on a wooden table. On the table, there is also a folded green cloth and tape. The woman proceeds to wrap the box with an orange gift wrap, and applies tape as she folds each corner. She finishes it by tucking the wrapping paper on the sides and folding the last edge. She then tapes it shut using a paper sticker with Chinese characters and the word 'ROGUE' on it. She holds the wrapped box to the camera. Next, the woman picks up the folded green cloth and wraps it around the gift-wrapped box. She ties the cloth into a knot and holds it to the camera. This entire process is shown in detail, allowing for a clear understanding of how the wrapping is done.",0 1847,v_mNiFmkm5OZA,Can you describe in detail what happens in the video?,v_mNiFmkm5OZA_1847,"In the video, a man wearing a white t-shirt is holding a pipe from a hookah, while standing next to a booth where two women are sitting. Four hookahs are visible on the table in front of the women, along with glasses filled with beer. One of the beer bottles is open at the edge of the table. The man speaks to the camera briefly before proceeding to smoke from the hookah. A window can be seen behind the booth with the shutters pulled up, while a glass door with an exit sign lit up is visible some distance behind the man. The man smokes the hookah and blows smoke rings, causing the women to laugh. He then picks up a glass filled with beer and smokes from the pipe again, blowing smoke into the glass before drinking from it. The video ends as the man talks to the camera once again.",0 1848,v_MbjyQGdTtK8,Can you describe the video in detail?,v_MbjyQGdTtK8_1848,"In the video, a woman wearing a white polo shirt is standing behind a table in a well-lit room. A shelf filled with different objects is visible to the right and an unlit hallway leading to a closed door is visible behind the woman. The woman is demonstrating how to make furniture polish by pointing to the ingredients needed. In the next scene, the woman measures and pours olive oil and lemon juice into a spray bottle using a yellow funnel. She then closes the lid on the bottle and shakes it to mix the ingredients. The next shot shows the woman standing behind the table with everything removed from it as she sprays the solution onto the surface. She then wipes it with a cloth and rubs it in the solution on the table until the table is polished. The video ends with a girl in a pink top speaking to the camera.",0 1849,v_Gvc1z9qypFQ,Can you describe the video of the little girls playing hockey?,v_Gvc1z9qypFQ_1849,The video starts with two teams of little girls playing hockey on a grass field that has a goalpost installed. The first team is wearing a maroon jersey with numbers on the back and black shorts. The second team is wearing a red jersey with numbers on the back and black shorts. There are spectators watching the match from the side and a referee standing behind the goalpost. The grounds are surrounded by trees and hills can be seen far in the distance. The match starts with one of the players hitting the ball and passing it to her teammate as soon as the whistle is blown. The video then goes into slow motion. The game ends when a player attempts to score a goal and is blocked by the goalkeeper. The game stops as the whistle is blown.,0 1850,v_ObrXN_FjVD8,Can you describe the video in detail?,v_ObrXN_FjVD8_1850,"In the video, a man is seen wearing a blue t-shirt and glasses while cranking a lever connected to a chain on a sailboat in the daytime sea. Another shot in the video shows a maroon sailboat sailing in the open sea with cloudy skies. The sailboat is tilted to its side indicating a strong wind. Overall, the video primarily shows two boats sailing in the sea with one shot depicting a person working on a sailboat.",0 1851,v_N75m1Z4RqbA,Can you describe what happens in the video in detail?,v_N75m1Z4RqbA_1851,"In the video, a man dressed in a black shirt and pants is seen waiting in front of the camera in a well-lit studio. A woman dressed in a black outfit then walks up to him and the two proceed to the dance floor. As the music starts playing, the man holds his hand to the woman as they begin to dance, slowly making their way around the dance floor. People are seen standing against the wall and on an elevated platform with a music stand visible on the right. The video ends as the music stops and the dancers separate, with the audience applauding as they cheer the dancers on.",0 1852,v_Ocid5pcnSVY,Can you describe the video in detail?,v_Ocid5pcnSVY_1852,"The video shows a contemporary ballet performance by a group of women wearing white dancing attire with translucent skirts. They are standing on a stage with a green background and their hair is tied into buns. The dancers turn around and slowly step forward to begin their performance. Throughout the video, they move around the stage with hops, turns, and some synchronized moves, showcasing their skills. The performance ends with the dancers bending forward. Overall, the video displays a graceful and fluid dance routine performed by a group of talented female dancers.",0 1853,v_MxvKscpouzY,Can you describe the video content in detail?,v_MxvKscpouzY_1853,"The video starts with a table tennis match taking place in a well-lit arena. The player on the near side is wearing a red t-shirt while the player on the far end is wearing a blue t-shirt and shorts. The arena has a red floor with text painted on it, and there are spectators sitting on blue seats. In addition, a few photographers are standing outside the playing area. During the match, the player in the red t-shirt hits the ball, and the player in the blue t-shirt misses. The exchange is shown from behind the player in the blue t-shirt as he plays and misses the ball. The video continues to show matches between different players of different nationalities. Finally, a man in a blue and yellow t-shirt with ""Wang Hao"" printed on its back wins the game and celebrates by holding his hands up as the spectators cheer. He later shakes hands with the referees, and a still image of the player with his hands held wide at his sides is shown.",0 1854,v_LzPppxSWYNY,Can you describe in detail what happens in the video?,v_LzPppxSWYNY_1854,"The video shows a long jump competition being held in a track field during the daytime. A woman is seen running up to a sand pit and jumping into it while a man in an orange t-shirt and jeans stands next to the track. People and a building can be seen in the back. The clips are in slow motion and, as the woman jumps, another woman walks into the frame holding a measuring tape. The video continues with multiple athletes running up to the sand pit and performing the long jump. Once they jump into the pit and stand back up, the next athlete is shown running up to the sand pit to jump in.",0 1855,v_mMebSMn5D0E,Can you describe the video in detail?,v_mMebSMn5D0E_1855,"The video starts with a man and a woman walking into a piano store. The man, wearing a brown coat, sits down and starts playing the piano, while the woman stands next to him. The store has overhead bulbs, illuminating the place. After playing, the man moves to another piano and starts playing again. The woman slowly walks towards him and stands a few feet away. In the next clip, the man is in a dimly lit, closed restaurant with round tables, and a woman wearing a white robe comes to stand near him. Following that, the video shows a man in a brown jacket standing near the back of an orchestra audience. He moves towards the stage, climbs on it, and makes gestures like a conductor. The theater is also dimly lit. Overall, the video captures various scenes with different people, locations, and lighting conditions.",0 1856,v_FzqZsQx20jY,Can you describe the video in detail?,v_FzqZsQx20jY_1856,"The video features a female gymnast wearing a sparkling dark green and white gymnast costume practicing on a well-lit balance beam in a gymnasium which has yellow and brown walls. Other gymnasts can be seen practicing in the background. The gymnast is cheered on as she performs twists and aerial somersaults; however, she stumbles while landing after a somersault and almost falls. Meanwhile, another gymnast wearing a red outfit can be seen swinging from a bar near the back. Eventually, the gymnast wearing the green outfit successfully performs multiple somersaults on the balance beam and lands on the mat, which concludes the video.",0 1857,v_-nl4G-00PtA,Can you describe what happens in the video?,v_-nl4G-00PtA_1857,"In the video, a shirtless man is seen washing dishes in a kitchen sink while light streams through a window in front of him. Behind him, there is a visible curtain. Suddenly, a woman wearing an orange top walks up to the man and throws a few items into the sink, startles him, and he steps away. Unfortunately, without further information, it is difficult to ascertain the context of the video.",0 1858,v_NvRH4SoF09c,Can you describe the video in detail?,v_NvRH4SoF09c_1858,"In the video, a man wearing a black shirt and pants can be seen playing the flute in a meadow during the daytime. He also wears glasses. To his right, there are bushes with yellow flowers growing, and behind him, a dirt path stretches up the incline. The sky is cloudy. As the camera pans right, we can see the bushes with flowers growing on them before the video ends.",0 1859,v_MidLOhRnpnU,Can you describe the video content in detail?,v_MidLOhRnpnU_1859,"The video starts with text displayed on a black screen one line at a time. A man walks up to an electric lighter with a cigarette in his mouth. He leans towards the lighter and lights his cigarette by turning the electric lighter on. The lighter is by a small street stall where glass jars with snacks in them are visible on the left. An old man also walks up to the lighter and lights his cigarette. In the next scene, a man in a yellow t-shirt fixes a yellow light with a speaker in place of the previous one. Afterwards, a man in a khaki shirt walks up to the lighter and turns it on. He leans in to listen closely to a message he hears from the lighter. At this point, the shopkeeper enters the frame from the left. The next scene is a montage of men attempting to light their cigarettes and hearing the chant from the electric lighter. They step away from it after hearing the message. Then a man in a yellow shirt is seen speaking to the shopkeeper. Finally, the video ends as multiple frames of the video are played in a single frame in a mosaic pattern, and the logo and text with 'CANCER PATIENTS AID ASSOCIATION' appear on the screen.",0 1860,v_N5LZMH9mZVU,Can you describe what happens in the video in detail?,v_N5LZMH9mZVU_1860,"The video features an all-female cheerleading squad running into an arena, with the last few members carrying a large banner with 'JAPAN' painted on it. The arena is well-lit and filled with people on the seats. The squad stands in a triangular formation and starts their routine as the music begins. They perform flips, somersaults and basket tosses, with spotters present near each of the bases. The squad then proceeds with another round of basket tosses and stunts that involve fliers with pom-poms who wave it around while on top of the base. The squad then performs a dance routine, which leads into another series of stunts involving multiple bases and fliers. The video ends with the bases lifting up members of the cheer squad and posing for the audience.",0 1861,v_oD8sGLt2FR0,Can you describe what is happening in the video in detail?,v_oD8sGLt2FR0_1861,"In the video, we see a boy working shirtless, shoveling snow outside in the driveway which is covered with snow. It is daytime and there are houses covered in snow visible on the other side of the street. There is also a car parked in the driveway, covered in snow and another car parked in the open garage. The cameraman is walking towards the boy from inside the garage while filming. As the cameraman stops at the garage door, a dog walks by in front of him. The boy is shoveling snow in a straight line and then scooping the snow up into the shovel, throwing it to the side of the driveway.",0 1862,v_N1_pNhVqG20,Can you describe the video content in detail?,v_N1_pNhVqG20_1862,"The video features a man windsurfing during the daytime in the sea. In the background, hills are visible with buildings and trees dotting the shore. The man is seen wearing a white t-shirt and performing flips and turns on his surfing board. There are slow-motion clips of the surfer, with the narrator giving instructions as the surfer performs different stunts with his sailboard. The surfer bends his sail, jumps, and rotates on his board. A one-handed burner is performed by pushing the sail down and jump-twisting on the board, which is shown in replay. The video concludes with a montage of surfers performing various jumps and twists with their boards.",0 1863,v_LuH7I7Rxju8,Can you describe the video in as much detail as possible?,v_LuH7I7Rxju8_1863,"In the video, a man wearing a black T-shirt and grey trousers walks into a living room with a black and white checkered floor mat. He is also wearing a beanie and carrying a laptop. A portable fan is visible by the wall behind him, as well as an oval mirror that is hung from the back wall. The room has drapes covering a window on the left side, and a walkway leading to another room is visible in the back. The man begins to breakdance, but as he swings his leg, it accidentally hits the laptop, knocking it away. The video then shows a slow-motion shot of the man kicking the laptop, causing it to break at the hinge. The man notices this and picks up the laptop along with a piece that had fallen off.",0 1864,v_NojaHuKBagQ,Can you describe the video in detail?,v_NojaHuKBagQ_1864,"In the video, a man sitting behind a table in a well-lit room is seen holding an adhesive eraser and a pair of blue shoes are placed on the table in front of him. After cleaning the bottom edge of the shoe on his right, he picks up a white Nike shoe and starts to clean it too. He then proceeds to clean the right shoe of the pair. The video ends with the man holding the eraser and speaking while handling the shoe.",0 1865,v_Mk7Yjq1U8OI,Can you describe the video content in detail?,v_Mk7Yjq1U8OI_1865,"The video begins with text appearing on a black screen, followed by a clip of women participating in a beach volleyball warm-up on a grass field with a building visible in the background. People can be seen standing and sitting around a tree in front of the building, while the women are practicing during the daytime. The next clip shows the women doing an official warm-up on a sandy beach volleyball court, with two teams participating and people sitting under shelters in the back. The back of the court has flag poles with flags visible. There is also a highlights reel, featuring two teams playing beach volleyball, with two players in each team. A clip from the game shows the team on the right missing a hit, and in the next clip, the team on the left starts the game, with the team on the right losing the exchange. The video ends with the players on the left high-fiving each other.",0 1866,v_F9mk2Dn2tFw,Can you describe the video content in detail?,v_F9mk2Dn2tFw_1866,"The video shows a group of children playing in a grassy field with patches of dirt. A chain link fence separates the play area from the rest of the field, and there are many trees outside the field, with parked cars visible as well. In the distance, cars are driving on the street. Throughout the video, several children kick a ball around while running across the field. The children are wearing various color T-shirts and jeans or shorts. The video ends with a boy in a black T-shirt walking in front of the camera while smiling and talking to the cameraman. Overall, the video captures a fun and active day of play for these children in an outdoor setting.",0 1867,v_o5F7X-UBETE,Can you describe in detail what happens in the video of the weightlifting competition?,v_o5F7X-UBETE_1867,"The weightlifting competition video starts with a man wearing a red outfit standing on a wooden platform and lifting a barbell. He crouches down, stands up with the barbell over his head for a few seconds, and then drops it on the floor. In the next shot, another weightlifter is shown from a side view lifting a barbell. Judges are seen sitting above the weightlifter, observing the athlete. The weightlifter holds the barbell over his head before dropping it on the ground. The video then shifts to a different angle of another weightlifter lifting the barbell, wearing a black and white outfit. However, he falls back and drops the barbell. This is followed by a montage of different weightlifters from different countries in the competition, and the well-lit area above the athletes is shown. The video ends with a Chinese weightlifter, wearing a red outfit, lifting the barbell and holding it over his head, dropping it onto the ground and shouting.",0 1868,v_mShp2gzuPOM,Can you describe the content of the video in detail?,v_mShp2gzuPOM_1868,"The video shows a badminton game being played on a court in a gym. At the beginning of the video, the shot is blurry, but it becomes clearer to reveal the badminton court and its surroundings. The player wearing a green top is shown walking to the court to start playing. The gym is brightly lit with overhead lights, and there are people standing on the edges of the court. A woman with a camera is sitting near the netting on the left pole, taking pictures of the girl playing. There is a scoreboard on the top of the wall in the back of the gym, and an American flag is hung vertically on the wall. There are bleachers to the left that are retracted to the wall. The game starts with the girl in the green top serving, and the player at the far end drops the shuttle. The game restarts with the girl in the green top serving again. The players continue to play, making hits and misses, and a girl is visible sitting on the right end of the net. The video ends with the player in the green t-shirt serving, and the player at the other end hitting the shuttle into the net. Then, the two players shake hands and walk away.",0 1869,v_meNgZdu8tIk,Can you describe the video in detail?,v_meNgZdu8tIk_1869,"The video starts with the text “nautanki. tv presents” on a white background, followed by a montage of different street food being prepared. The focus then shifts to a sandwich shop where a man is seen applying butter and green chutney to slices of bread, and adding sliced boiled potatoes, chopped onions, chopped tomatoes, chopped bell pepper, chat masala, and grated cheese before covering the sandwich with another slice of bread. The man then grates cheese over four sandwiches and places them in an electric grill. Once ready, one of the sandwiches is cut into pieces and placed on a paper plate. The video ends with another montage of street food being prepared.",0 1870,v_ERYwCKVUTSQ,Can you describe the video in detail?,v_ERYwCKVUTSQ_1870,"The video features a woman holding a saxophone in a well-lit room with blue and white walls. She is wearing a black shirt, black pants, and glasses. Sheet music is visible on a stand positioned behind and to her right. There is also a wooden chair to her left and back and a whiteboard fixed on the back wall. The woman talks and demonstrates how to play a particular note on the saxophone after which she gives further instructions. The video provides a clear and detailed guide to playing the saxophone and is a great resource for beginners looking to improve their skills.",0 1871,v_myGBEXiYGOU,Can you describe the video in detail?,v_myGBEXiYGOU_1871,"The video starts with a woman smiling at the camera and turning around to a blank canvas where she begins to paint. The room is well-lit and a painting of a bird is placed on an easel to the left of the woman. The woman starts by painting the head of a peacock using different shades of blue while looking at the camera on her left hand. The video is sped up as she fills in the outline and continues painting different parts of the peacock with different colors. The video ends with her painting the fanned-out tail of the peacock. Overall, the video is an artistic portrayal of the woman painting a peacock on a large canvas.",0 1872,v_ltlJ2sOx4as,Can you describe the video in detail?,v_ltlJ2sOx4as_1872,"The video starts with a view of the Terelj River in Mongolia, where several people are riding their horses along the banks of the river. Some of the riders are leading pack horses by a leash as they ride across the river. Two dogs can be seen a few feet from the horses. The riders are wearing hats, and some of the horses are standing in the water. The camera showcases the hills in the far back and the trees a few feet from the shore, where some of the fallen trees are visible. As the riders reach the opposite shore, the camera remains stationary. The riders disappear into the woods, and a dog is the last one to reach the riverbank and walk into the forest.",0 1873,v_nywOe9C3ajM,Can you describe what happens in the video in detail?,v_nywOe9C3ajM_1873,"The video starts with two women hugging each other, one of whom is wearing glasses. In the background, people can be seen clapping out of focus near the camera. In the next shot, a girl is getting her hair cut by a barber, while two women standing nearby watch. The barber finishes cutting her hair, and it is swept up on a dustpan. The shot then transitions to the girl sitting in a chair at a beauty salon, with hair clips attached to her hair. A woman with a hooded hair dryer over her head, reading a magazine in the background. The girl is getting her eyebrows shaped by a beautician, who uses threads to shape them. In the next shot, a woman in glasses is seen cleaning a mannequin's head, while another woman sits under a hooded hair dryer and watches. Finally, the video ends with the girl doing situps in a gym, with a woman walking on a treadmill reflected in a mirror in the background.",0 1874,v_mLFjww64sX8,Could you describe the video in detail?,v_mLFjww64sX8_1874,"In the video, a man is sitting on a barber shop chair draped in a black blanket, while a barber is standing on his left, using a blade to cut his hair. The walls of the barber shop are red, and there is overhead lighting illuminating the entire room. There is a mirror placed at the back of the barber, with various products and bottles arranged neatly on the stand. At one point in the video, the barber walks to the other side of the customer, standing with his back to the camera, while another barber is visible to the left. Overall, the video depicts the process of getting a haircut in a classic barber shop setting, with attention paid to the various tools and products used in the process.",0 1875,v_nDHupsLdar0,Can you describe the video in detail?,v_nDHupsLdar0_1875,"The video begins with a blurry shot of a man wearing grey sweatshirt and sunglasses, sitting on the edge of a dark blue sofa and speaking to the camera. Beside him on a wooden table sits a CPU and a lamp can be seen in the background. The wall is painted in a cream color. As the man starts playing the harmonica, he turns to his right and continues playing until the end of the video.",0 1876,v_lSVj34-DR0o,Can you describe what happens in the video?,v_lSVj34-DR0o_1876,"The video features Thomas Daley, a diver, who is seen walking to the edge of a platform diving board in a swimming pool with overhead lights. A graphic displaying his name is shown on the screen. He then executes a dive with a backward jump, twists, and flips midair before entering the water. In the following clips, he executes multiple backward somersaults in his dives. Onlookers can be seen at the back of the poolside watching, and as Thomas dives into the pool, people can be seen walking to the poolside and leaning in to see the diver. Additionally, graphics displaying his name and scorecard are shown after each dive. The video ends with people walking across the camera.",0 1877,v_lU6DMCif3eE,Can you describe the video featuring the bagpipe player in detail?,v_lU6DMCif3eE_1877,"The video captures a man wearing a black T-shirt as he practices playing the bagpipe in a dimly lit room. The camera focuses on his hands as he covers and uncovers his fingers on the bagpipe's finger holes while playing the instrument. The walls behind him are adorned with posters containing text and art. The video progresses with the man continuously playing the bagpipe until he stops and lets go of the instrument. Overall, the video showcases a close-up view of a bagpipe player's hands, a dimly lit room with posters, and the sound of the bagpipe being played.",0 1878,v_gmbC7D6HfuM,Can you describe the video in detail?,v_gmbC7D6HfuM_1878,"The video starts with a man wearing a turquoise T-shirt and blue jeans with white shoes and a woman wearing a black top and blue jeans with black shoes dancing together in a well-lit room. The room has white walls and a brown door at the back and right. There are eight chairs in the room, with a few bags on them. The man and woman continue dancing to background music. The video ends with both of them stopping the dance and laughing together.",0 1879,v_MWQ9mb_mB8U,Can you please describe the video and its content in detail?,v_MWQ9mb_mB8U_1879,"The video starts with women standing in a line in the middle of a well-lit volleyball court, wearing white tops with numbers on them, and clapping as they face the seated spectators. Two women holding the Kenyan flag are seen wearing red t-shirts and black track pants. Coca-Cola banners are visible on the ground in the background. The camera angle then changes to show two women's volleyball teams playing, with spectators watching the game from the stands right below the camera. The game is also shown from a bird's eye view and a closer shot where two men are seen cheering. We see a clip of Kenya losing a hit in the game. The video then shifts to a press conference with the coaches sitting behind tables before it ends with another clip of the game. Overall, the video depicts a volleyball game being played between two teams with spectators cheering and coaches' press conference in between the game.",0 1880,v_mMm1LfVb8Pg,Can you describe in detail what is happening in the video?,v_mMm1LfVb8Pg_1880,"In the video, a woman wearing a green T-shirt is riding a lawn mower in a backyard during the daytime. The grass is overgrown, and the woman is mowing the lawn while being filmed. At the beginning of the video, the camera is tilted to the left, but as the woman drives towards the camera, the camera is straightened. Behind the woman is a wooden fence with the top of the trees visible beyond it. The woman stops in front of the camera for a brief moment and continues to drive the lawn mower. She rides near a tire swing and circles back to the route she first took. A second woman wearing a black top walks towards the tire swing and holds the rope attached to the swing, moving it aside to let the first woman mow the lawn under it.",0 1881,v_Nvf-BZNEGdI,Can you describe the video in detail?,v_Nvf-BZNEGdI_1881,"The video shows a young boy wearing a black T-shirt and jeans who is dancing in a well-lit skating rink. He is wearing roller skates and is surrounded by other people who are also wearing roller skates. The floor of the skating rink is made of polished wood. After dancing for a while, the boy in black moves to the side as another boy enters the dance floor wearing a white T-shirt and jeans. He is followed by a boy wearing a red T-shirt. They dance for a moment before the first two boys re-enter the floor and continue their dance. The video ends with the boy in the black T-shirt dancing alone on the floor as a small boy skates next to him. ",0 1882,v_-MbZ-W0AbN0,Can you describe the video in detail?,v_-MbZ-W0AbN0_1882,"The video starts by showing an advertisement for furniture polish and leather shine on a black screen with a clip of a can of polish on a tile floor. Next, a glass beaker filled with white liquid is placed next to it. The screen fades out to text on a black screen, followed by a man wearing a white lab coat standing in front of a platform, holding a can of furniture polish. The platform behind him contains bottles of chemicals. Cut to a wooden table, where a man pours liquid onto a cloth and starts wiping a wooden surface. A beaker with the polish is placed on the table, and the man proceeds to polish until the wooden surface shines. Next, different shots of the polished surface are shown. The video concludes with the advertisement for furniture polish and the display of company information on a black screen.",0 1883,v_mY7QdIn51S8,Can you describe the video content in detail?,v_mY7QdIn51S8_1883,"The video starts with black text appearing on a grey screen and then proceeds to show various clips of different cricket matches played between different teams at different times of the day. The first clip shows a night-time cricket match between Pakistan and India where the Indian bowler is using spin to deliver the ball to the Pakistani batsman, who hits the ball for a six. The camera follows the ball as it flies through the air and lands in the stands, and the spectators are seen cheering. Throughout the video, different ways of getting the batsman out are shown, such as catching the ball as the batsman hits it in the air, hitting the stumps, and getting the batsman runout. The video concludes with a clip of a Pakistani bowler named Amir getting a batsman out during a daytime match and celebrating by bumping into the batsman as he is running and celebrating.",0 1884,v_nI6l7BP0odw,Can you describe the video in detail?,v_nI6l7BP0odw_1884,"In the video, a man wearing a Scottish kilt plays the bagpipe. The venue is well-lit and it appears to be outdoors. People are continuously walking by in front of the camera and at the back of the venue, with some stopping to watch the man play. A woman holding a child walks past followed by other people. The camera zooms in to show the musician from a little closer. In the background, a man takes a photo with a flash from the back. The video ends with the man still playing, and a man wearing an orange shirt stands in front of the camera.",0 1885,v_NwlIZ1T93xE,Can you describe the video?,v_NwlIZ1T93xE_1885,"In the video, a man wearing a hat and t-shirt is shining the shoes of a customer sitting in front of him. The scene takes place in a dimly lit bar where other people can be seen sitting at tables. The walls are decorated with lights and on the left side there is a live band playing music. The shoe-shiner continues to buff the shoe while the camera pans to the band and then returns to the shoe shiner as he finishes buffing the shoe. ",0 1886,v_Ntyl5alZXeM,Can you describe what happens in the video of the girl getting her ear pierced?,v_Ntyl5alZXeM_1886,"In the video, a young girl wearing a pink top is sitting in a well-lit shop's chair, preparing to get her ear pierced. The piercer, a woman wearing gloves and a dark blue top, starts by cleaning the girl's ear. She then proceeds to grab a marker from a counter filled with bottles and proceed to mark the girl's ear where she intends to pierce it. Afterward, she uses an ear-piercing gun to pierce the top of the girl's ear and then cleans the back of the girl's ear. Overall, the video demonstrates the process used when getting your ear pierced, from cleaning to piercing using an ear-piercing gun.",0 1887,v_N4qhryre_TE,Can you describe the video content in detail?,v_N4qhryre_TE_1887,"The video is a montage of athletes participating in an indoor tumbling competition, which takes place in a large hall with dim overhead lights. The athletes run on a tumbling track and perform various acrobatic movements, including high-flying flips, twists, and other dynamic tumbling elements. There is a camera placed alongside the track, and spectators are seated some distance on either side of the track, with their areas darkened compared to the tumbling track. The video shows various athletes performing, including a female athlete wearing a black jacket and headband, a man named Michael Chaves, and a woman named Hope Bravo, who are all interviewed and shown performing tumbling stunts. Additionally, a clip is shown of a man performing a stunt and stumbling before taking a bow. At the end of the video, a young boy performs a stunt on the track and then walks over to a man wearing a white t-shirt to high-five him.",0 1888,v_MgjxjBxGrQU,Can you describe what happens in the video?,v_MgjxjBxGrQU_1888,"Sure! The video starts with a man dressed in a Mario costume smoking a hookah in a well-lit room with a yellow sheet covering the back wall and a poster of a man with an acoustic guitar on the wall. He then talks to himself before greeting a man in a Luigi costume who enters the room through a door on his right. The two hug and the man in the Luigi costume starts to smoke the hookah. Soon, another man in a yellow Luigi costume joins them and the three smoke and talk to each other. They start to dance to the music while sitting and smoking and the man in the Mario costume and the man in the green Luigi costume blow smoke at the man wearing the yellow Luigi costume. The man in the Mario costume hands the hookah pipe to the man wearing the green Luigi costume and takes it back after the man in the yellow Luigi costume takes one hit. They end up doing a chest bump before continuing to smoke and talk to each other. The video ends with a slideshow of the three men in various poses.",0 1889,v_LvaU_4xbxb0,Can you describe the video in detail?,v_LvaU_4xbxb0_1889,"The video begins with two girls in a well-lit boxing gym, wearing boxing gloves - one girl in a black vest, and the other in a grey t-shirt. A man standing a few feet from them is also wearing boxing gloves and there is a punching bag hanging to his left. The gym's walls are painted an off-white color, and the blue foam mat covers the floor. There are punch mitts hanging from hooks on the wall. The two girls are seen boxing, while an instructor outside the frame provides them with instructions. On the other side of the gym, other people are also visible boxing.",0 1890,v_nTY4IaGRFIc,Please describe the video content in detail.,v_nTY4IaGRFIc_1890,"This video shows a group of people playing water polo in a swimming pool during the daytime. White villas and chairs can be seen on the poolside, along with bonsai plants in white pots. The game starts with a woman catching the ball in the pool and trying to throw it at someone sitting on the edge of the pool. A man jumps up and catches the ball, and the woman and others near him try to snatch the ball from him. The ball is thrown to someone else, and the game continues with people throwing the ball at each other. A girl is seen running on the poolside as well. At one point, the ball is thrown at a man wearing a green t-shirt who is sitting at the edge of the pool, and he throws it across the pool to someone who catches and throws the ball outside the pool. Then a woman sitting at the poolside collects the ball and throws it back in. Later in the game, people near the left goalpost get the ball and try to get it past the goalkeeper, who is sitting in front of the goalpost and blocking it. They finally succeed and get the ball in the goal. The goalkeeper then throws the ball across the pool near the opposite goalpost. The video ends with the people still playing the game.",0 1891,v_QG2xYcN_bl0,Can you describe the video in detail?,v_QG2xYcN_bl0_1891,"The video showcases a young boy wearing a grey vest and dribbling a basketball on a basketball court during daytime, with cloudy skies in the background. A chain link fence is seen on the left, separating the basketball court from a concrete path, which has an overhead shelter. The boy performs a drill by running crisscrossing around little orange agility cones until he reaches the basket and throws the basketball through it. He then runs back to the starting cone and repeats the drill. The video ends as the boy walks back to the starting position to begin the drill again.",0 1892,v_Lshue6AmrIw,Can you describe the video in detail?,v_Lshue6AmrIw_1892,"The video starts with a well-lit mall where a little girl and a little boy are sitting on shoe-shine chairs wearing black and green outfits respectively. Behind the shoe-shine station is a store visible in the background. A woman in a black jacket and gloves is kneeling in front of the girl and shining her shoe using a cloth. Afterward, she turns to her right and speaks to the cameraman. Overall, the video features a scene of shoe-shining in a mall with a woman attending to two children.",0 1893,v_eS-VU_XV1K8,Can you describe the video in detail?,v_eS-VU_XV1K8_1893,"This is an aerobics workout class led by an instructor. The studio is well-lit with overhead lighting and features blue lockers by the back wall and a white dustbin nearby. The walls are painted light yellow and have paintings hanging on them. Wooden glass doors with dark blue curtains can be seen to the left of the instructor. The studio has wooden flooring and a large speaker mounted on the wall to the left side of the instructor. The instructor is wearing a pink top, black track pants, and sports shoes while leading two groups on either side of her by walking back and forth and side to side. One woman wearing a purple top, black track pants, and sports shoes, is struggling with the movements. The group in front of the instructor is shown mirroring her movements.",0 1894,v_NM7Vye5nxj8,Can you describe what is happening in the video?,v_NM7Vye5nxj8_1894,"The video shows a track and field event during daytime. There is a boy wearing a blue vest and shorts who runs up to a high jump bar and jumps over it by jumping backward. Two men are standing near a goalpost at the back. One man is wearing a yellow T-shirt and jeans while the other man is wearing a blue vest and tights. After clearing the bar, the boy speaks to a man wearing a blue t-shirt and walks away. Following this, a man in a blue vest and tights begins his run-up and jumps over the bar, but makes contact with it during the jump causing the bar to fall, and then walks away. In the background, there is an incline with shrubs and trees visible.",0 1895,v_ghxiG0Dnrt0,Can you describe the video in detail?,v_ghxiG0Dnrt0_1895,"The video is set in a restaurant kitchen with white-tiled walls that are well-lit. It begins with a woman wearing a black apron over a T-shirt and jeans, cleaning the kitchen sink by scooping up waste with her hand and throwing it in a garbage can behind her. A metallic shelf beside her has a fridge with a glass door that is full, along with buckets and plates. She closes the dishwasher and proceeds to wash her hands in the sink. After that, she dries her hands on the apron and walks out of the frame.",0 1896,v_Mf3IyeMF8ug,What is the process that the woman did in the video?,v_Mf3IyeMF8ug_1896,"The woman in the video wrapped a box with an orange gift wrap. She applied tape as she folded each corner and finished it by tucking the wrapping paper on the sides and folding the last edge. She then taped it shut using a paper sticker with Chinese characters and the word ""ROGUE"" on it. She picked up a folded green cloth and wrapped it around the gift-wrapped box. She tied the cloth into a knot and held it to the camera.",0 1897,v_mNiFmkm5OZA,What does the man do after he smokes from the hookah?,v_mNiFmkm5OZA_1897,"After smoking from the hookah, the man picks up a glass filled with beer, smokes from the pipe again and blows smoke into the glass, then drinks from the glass.",0 1898,v_MbjyQGdTtK8,What is the video about and what is the woman doing in the video?,v_MbjyQGdTtK8_1898,The video is about making furniture polish. The woman wearing a white polo shirt is demonstrating how to make furniture polish.,0 1899,v_Gvc1z9qypFQ,Which teams were playing hockey on the field and what were their jersey colors?,v_Gvc1z9qypFQ_1899,There were two teams playing hockey on the field. One team was wearing a maroon jersey with numbers on the back and black shorts while the other team was wearing a red jersey with numbers on the back and black shorts.,0 1900,v_ObrXN_FjVD8,What is the man on the sailboat doing?,v_ObrXN_FjVD8_1900,The man on the sailboat is cranking a lever connected to a chain.,0 1901,v_N75m1Z4RqbA,What is visible on the right side of the dancefloor?,v_N75m1Z4RqbA_1901,An elevated platform with a music stand can be seen on the right side of the dancefloor.,0 1902,v_Ocid5pcnSVY,What type of dance are the women performing?,v_Ocid5pcnSVY_1902,The women are performing a contemporary ballet.,0 1903,v_MxvKscpouzY,What is the color of the t-shirt worn by the player who wins the game?,v_MxvKscpouzY_1903,"The player who wins the game wears a blue and yellow t-shirt with the name ""Wang Hao"" printed on its back.",0 1904,v_LzPppxSWYNY,What activity is taking place in the video?,v_LzPppxSWYNY_1904,A long jump competition is taking place in the video.,0 1905,v_mMebSMn5D0E,What is the man wearing while playing the piano in the piano store?,v_mMebSMn5D0E_1905,The man is wearing a brown coat while playing the piano in the piano store.,0 1906,v_FzqZsQx20jY,What is the female gymnast wearing and what color is it?,v_FzqZsQx20jY_1906,The female gymnast is wearing a sparkling dark green and white gymnast costume.,0 1907,v_-nl4G-00PtA,What is happening in the beginning of the video?,v_-nl4G-00PtA_1907,"In the beginning of the video, a shirtless man is washing dishes in a kitchen sink while light streams through a window in front of him and a curtain is visible behind him.",0 1908,v_NvRH4SoF09c,What is the man wearing in the video?,v_NvRH4SoF09c_1908,"The man is wearing a black shirt and pants, and glasses.",0 1909,v_MidLOhRnpnU,What message did the man in khaki shirt hear when he turned on the electric lighter?,v_MidLOhRnpnU_1909,"When the man in khaki shirt turned on the electric lighter, he heard a message and leaned in to listen closely. However, the content of the message is not described in the given information.",0 1910,v_N5LZMH9mZVU,What kind of banner are the last few members of the cheer squad carrying?,v_N5LZMH9mZVU_1910,"The last few members of the cheer squad are carrying a large banner with ""JAPAN"" painted on it.",0 1911,v_oD8sGLt2FR0,What is the cameraman doing in the video?,v_oD8sGLt2FR0_1911,The cameraman is walking towards the boy from inside the garage and stops by the garage door.,0 1912,v_N1_pNhVqG20,What instructions are being given by the narrator in the video?,v_N1_pNhVqG20_1912,The narrator is giving instructions as the surfer is performing different stunts with his surfboard.,0 1913,v_LuH7I7Rxju8,What does the man wear and what's in the living room?,v_LuH7I7Rxju8_1913,"The man wears a black t-shirt, grey trousers, and a beanie. The living room has a black and white checkered floor mat, a portable fan, a laptop, an oval mirror and drapes covering a window.",0 1914,v_NojaHuKBagQ,What is the man using to clean the shoes in the video?,v_NojaHuKBagQ_1914,The man is using an adhesive eraser to clean the shoes in the video.,0 1915,v_Mk7Yjq1U8OI,What is happening in the first clip of the video?,v_Mk7Yjq1U8OI_1915,"A clip with women's beach volleyball warmup is shown with the women practicing on a grass field with a building visible in the back, and people standing and sitting around a tree.",0 1916,v_F9mk2Dn2tFw,What are the colors of the clothes worn by the children playing in the field?,v_F9mk2Dn2tFw_1916,"The girl is wearing a pink T-shirt and blue jeans, while one boy is wearing a black T-shirt and black jeans, and another boy is wearing a white T-shirt and black shorts.",0 1917,v_o5F7X-UBETE,What are the judges doing during the weightlifting competition?,v_o5F7X-UBETE_1917,The judges are observing the athletes from behind desks in the back.,0 1918,v_mShp2gzuPOM,What is the setting of the badminton game in the video?,v_mShp2gzuPOM_1918,"The game is played on a badminton court in a gym with overhead lights. People are standing at the edges of the gym while bleachers, retracted to the wall, can be seen to the left. A woman with a camera is sitting near the netting at the left pole and taking pictures of the girl wearing the green top. A scoreboard is visible at the top of the wall at the back of the gym, and an American flag is hung vertically from the wall.",0 1919,v_meNgZdu8tIk,What ingredients are placed on the sandwich in the video?,v_meNgZdu8tIk_1919,"Boiled potatoes, chopped onions, sliced tomatoes, chopped bell pepper, cheese, butter and green chutney are placed on the sandwich in the video.",0 1920,v_ERYwCKVUTSQ,What instructions did the woman give before demonstrating how to play a particular note?,v_ERYwCKVUTSQ_1920,"Before demonstrating how to play the particular note, the woman paused and gave further instructions.",0 1921,v_myGBEXiYGOU,What animal is the woman painting in the video?,v_myGBEXiYGOU_1921,The woman is painting a peacock in the video.,0 1922,v_ltlJ2sOx4as,What is the location where the riders are crossing the river on their horses?,v_ltlJ2sOx4as_1922,The location where the riders are crossing the river on their horses is the Terelj River in Mongolia.,0 1923,v_nywOe9C3ajM,What activity is the girl shown doing in the gym?,v_nywOe9C3ajM_1923,The girl is shown doing sit-ups in the gym.,0 1924,v_mLFjww64sX8,What is the barber doing in the video?,v_mLFjww64sX8_1924,The barber is cutting the customer's hair using a blade.,0 1925,v_nDHupsLdar0,What is the man wearing and where is he sitting on?,v_nDHupsLdar0_1925,The man is wearing a grey sweatshirt and sitting on the edge of a dark blue sofa.,0 1926,v_lSVj34-DR0o,What kind of dives did Thomas Daley perform in the video?,v_lSVj34-DR0o_1926,"Thomas Daley performed backward jumps and twists, handstands with multiple backward somersaults, and somersaults in the video.",0 1927,v_lU6DMCif3eE,What was the man wearing while playing the bagpipe in the video?,v_lU6DMCif3eE_1927,The man was wearing a black T-shirt while playing the bagpipe in a dimly lit room.,0 1928,v_gmbC7D6HfuM,What is the color of the man’s shoes and T-shirt in the video?,v_gmbC7D6HfuM_1928,The man is wearing white shoes and a turquoise T-shirt.,0 1929,v_MWQ9mb_mB8U,What are the women wearing in the beginning of the video?,v_MWQ9mb_mB8U_1929,The women are wearing white tops with numbers on them.,0 1930,v_mMm1LfVb8Pg,What is the woman wearing and what is she doing in the video?,v_mMm1LfVb8Pg_1930,"The woman is wearing a green T-shirt and is riding on a lawn mower, mowing overgrown grass in a backyard in the daytime.",0 1931,v_Nvf-BZNEGdI,What is the color of the T-shirt worn by the boy who comes to the dance floor after the boy in black T-shirt?,v_Nvf-BZNEGdI_1931,The boy who comes to the dance floor after the boy in black T-shirt is wearing a white T-shirt.,0 1932,v_-MbZ-W0AbN0,What is being shown on the screen at the start of the video?,v_-MbZ-W0AbN0_1932,An advertisement for furniture polish and leather shine on a black screen is being shown at the start of the video. A clip of a can of polish on a tile floor is also displayed.,0 1933,v_mY7QdIn51S8,"What type of match was being played in the video, and which team was batting?",v_mY7QdIn51S8_1933,"The video shows a cricket match between Pakistan and India, with Pakistan batting.",0 1934,v_nI6l7BP0odw,What is the man wearing and what is he doing in the video?,v_nI6l7BP0odw_1934,The man is wearing a Scottish kilt and he starts to play the bagpipe.,0 1935,v_NwlIZ1T93xE,What is the shoe-shiner wearing and what activity is he doing?,v_NwlIZ1T93xE_1935,"The shoe-shiner is wearing a t-shirt and a hat, and he is buffing the shoes of a person sitting in front of him in a dimly lit bar.",0 1936,v_Ntyl5alZXeM,What does the woman do after cleaning the girl's ear?,v_Ntyl5alZXeM_1936,The woman goes to a counter filled with bottles and gets a marker. She then uses the marker to mark the ear of the girl who is getting pierced.,0 1937,v_N4qhryre_TE,What kind of acrobatic movements are the athletes performing in the tumbling competition?,v_N4qhryre_TE_1937,"The athletes are performing high-flying flips, twists, and other dynamic tumbling elements on a tumbling track.",0 1938,v_MgjxjBxGrQU,Who enters the room after the man in the Mario costume opens a door on his right?,v_MgjxjBxGrQU_1938,A man in a dark green Luigi costume enters the room.,0 1939,v_LvaU_4xbxb0,Who is giving instructions to the two girls boxing in the gym?,v_LvaU_4xbxb0_1939,The two girls are following instructions from an instructor who is outside the frame.,0 1940,v_nTY4IaGRFIc,Who catches the ball in the pool and tries to throw it at someone on the edge of the pool?,v_nTY4IaGRFIc_1940,A woman catches the ball in the pool and tries to throw it at someone on the edge of the pool.,0 1941,v_QG2xYcN_bl0,What type of drill is the boy doing on the basketball court?,v_QG2xYcN_bl0_1941,The boy is doing a drill where he runs crisscrossing around little orange agility cones.,0 1942,v_Lshue6AmrIw,What are the two children on the shoe-shine chairs wearing?,v_Lshue6AmrIw_1942,"The little girl is wearing a black outfit, and the little boy is wearing a green shirt.",0 1943,v_eS-VU_XV1K8,What is the instructor wearing in the video?,v_eS-VU_XV1K8_1943,"The instructor is wearing a pink top, black track pants, and sports shoes.",0 1944,v_NM7Vye5nxj8,What happened when the boy cleared the bar during his high jump?,v_NM7Vye5nxj8_1944,"After the boy cleared the bar by jumping backward, he walked away while speaking to a man in a blue t-shirt.",0 1945,v_ghxiG0Dnrt0,What is the woman wearing in the video?,v_ghxiG0Dnrt0_1945, The woman is wearing a black apron over a T-shirt and jeans.,0 1946,v_Mf3IyeMF8ug,Can you describe how the woman wraps the box?,v_Mf3IyeMF8ug_1946,The woman in the video wraps a box placed on a wooden table using an orange gift wrap and tucking the wrapping paper on the sides and folding the last edge. She also uses tape to seal the box and a paper sticker with Chinese characters and the word 'ROGUE' on it. A folded green cloth is then wrapped around the gift-wrapped box and she ties the cloth into a knot.,0 1947,v_mNiFmkm5OZA,What is happening in the video and who are the people involved?,v_mNiFmkm5OZA_1947,The video shows a man smoking a hookah and holding a glass filled with beer while standing next to two women sitting at a booth with four hookahs on the table. They all seem to be enjoying themselves as the man blows smoke rings and the women laugh.,0 1948,v_MbjyQGdTtK8,What is the video about?,v_MbjyQGdTtK8_1948,"The video is about a woman demonstrating how to make furniture polish in a well-lit room. She shows the ingredients needed, measures and pours them into a spray bottle, and mixes it by shaking the solution. Finally, she sprays and wipes the solution onto the table to polish it.",0 1949,v_Gvc1z9qypFQ,What are the main events that occur in the video?,v_Gvc1z9qypFQ_1949,The video displays two teams of little girls playing hockey in a field with people watching from the side. The teams are wearing different colored jerseys with numbers on the back and black shorts. The video then goes into slow motion as a player attempts to score a goal and is blocked by the goalkeeper. The match ends as the whistle is blown.,0 1950,v_ObrXN_FjVD8,What is happening in the video with the man in the blue t-shirt?,v_ObrXN_FjVD8_1950,"In the video, a man wearing a blue t-shirt and glasses can be seen cranking a lever that is connected to a chain while on a sailboat in the sea.",0 1951,v_N75m1Z4RqbA,What is happening in the video?,v_N75m1Z4RqbA_1951,"In the video, a man in a black shirt and pants is waiting in front of the camera while a woman in a black outfit walks up to him. They proceed to the dance floor and begin to dance as the music plays in a well-lit indoor studio. There are people standing by the walls to make space in the middle. Additionally, there is an elevated platform with a music stand visible on the right and a few people standing against the railing of the platform. The dancers slowly make their way around the dance floor while they dance, and the video ends as the music stops and the dancers separate. Lastly, the audience is seen applauding.",0 1952,v_Ocid5pcnSVY,Can you describe the clothing and dance style of the performers in the video?,v_Ocid5pcnSVY_1952,The performers are wearing white dancing attire with translucent skirts and are performing a contemporary ballet.,0 1953,v_MxvKscpouzY,What happens in the video of the arena with table tennis players?,v_MxvKscpouzY_1953,"The video shows a table tennis match in a well-lit arena between players wearing red and blue t-shirts and shorts respectively. The floor is red with text on it and there are spectators watching on blue seats. The game continues with different players from multiple nationalities. The video ends with a player named 'Wang Hao' in a blue and yellow t-shirt winning a game, celebrating, and shaking hands with the referees.",0 1954,v_LzPppxSWYNY,Can you describe the long jump competition in the video?,v_LzPppxSWYNY_1954,"In the video, a woman and other athletes are shown running up to a sand pit and performing long jumps. A man in an orange t-shirt and jeans is standing next to the track. The competition is being held in a track field during the daytime and clips are in slow motion. After each jump, a woman holding a measuring tape comes into the frame to measure the distance.",0 1955,v_mMebSMn5D0E,What happens in the video at the piano store and the closed restaurant?,v_mMebSMn5D0E_1955,"A man and a woman enter a piano store and the man plays the piano while the woman stands next to him. They then enter a dimly lit closed restaurant where a woman wearing a white robe comes to stand near the man. Later in the video, a man in a brown jacket is seen standing near the back of the audience at an orchestra before he walks towards the stage and begins gesturing like a conductor.",0 1956,v_FzqZsQx20jY,What is happening in the video?,v_FzqZsQx20jY_1956,"In the video, a female gymnast wearing a dark green and white costume practices on a balance beam in a well-lit gymnasium, while other gymnasts are practicing in the background. She performs twists and aerial somersaults, stumbles after a somersault and almost falls. Meanwhile, a gymnast wearing a red outfit is swinging from a bar near the back. The video ends with the female gymnast in green doing multiple somersaults on the balance beam and landing on the mat.",0 1957,v_-nl4G-00PtA,What is happening in the kitchen sink in the video?,v_-nl4G-00PtA_1957,A shirtless man is washing dishes while a woman throws a few items into the sink. The man steps away startled when the woman walks up to him.,0 1958,v_NvRH4SoF09c,What is happening in the video?,v_NvRH4SoF09c_1958,"A man wearing a black shirt and pants is playing a flute in a meadow surrounded by yellow flowers during the daytime. The camera pans right, showing the bushes with flowers growing on them before the video ends. ",0 1959,v_MidLOhRnpnU,What happens in the video?,v_MidLOhRnpnU_1959,"The video shows a man and an old man lighting their cigarettes with an electric lighter placed by a street stall. Other men also try to light their cigarettes using the lighter after hearing a message from it. The video ends with a montage of different frames and text displaying ""CANCER PATIENTS AID ASSOCIATION"".",0 1960,v_N5LZMH9mZVU,What happens in the video?,v_N5LZMH9mZVU_1960,"The video shows an all-female cheerleading squad with a banner that says ""JAPAN"" entering an arena and performing various stunts, including basket tosses and flips, with spotters present. They then do a dance routine which transitions into another stunt involving multiple bases and fliers, and end by posing for a lift. ",0 1961,v_oD8sGLt2FR0,What is happening in the video?,v_oD8sGLt2FR0_1961,"In the video, a shirtless boy is shoveling snow in a driveway while the cameraman films him walking towards him. A dog also walks by in front of the cameraman. The boy is able to throw the scooped snow to the side.",0 1962,v_N1_pNhVqG20,What happens in the video?,v_N1_pNhVqG20_1962,"The video shows a man windsurfing and performing flips in the sea during daytime. The surfer performs different stunts and jumps with his surfboard, and a montage of surfers performing various jumps and twists with their boards is shown at the end.",0 1963,v_LuH7I7Rxju8,What happens in the video?,v_LuH7I7Rxju8_1963,"In the video, a man wearing a black t-shirt and grey trousers enters a living room with a black and white checkered floor mat. He is wearing a beanie and there is a walkway leading to an adjacent room visible in the back wall. The man begins to breakdance, but accidentally kicks the laptop that is placed behind him causing it to fall and appear broken at the hinge. The man picks up the laptop with a fallen piece and takes a closer look at it.",0 1964,v_NojaHuKBagQ,What is the man doing with the shoes on the table?,v_NojaHuKBagQ_1964,The man is cleaning a pair of blue shoes and then a white Nike shoe using an adhesive eraser while holding it with his right hand.,0 1965,v_Mk7Yjq1U8OI,What are some of the scenes shown in the video?,v_Mk7Yjq1U8OI_1965,"The video starts with a women’s beach volleyball warm-up on a grass field, followed by an official warm-up on a sandy beach volleyball court with two teams of players. The video concludes with a highlights reel of a beach volleyball game between two teams where the team on the left wins and celebrates with high-fives.",0 1966,v_F9mk2Dn2tFw,What events take place in the video?,v_F9mk2Dn2tFw_1966,"A group of children are seen playing soccer in a grassy field, separated from the rest of the field by a chain-link fence. The children are seen passing the ball and running across the field. The video ends with a boy in a black T-shirt walking in front of the camera while smiling and speaking to the cameraman. ",0 1967,v_o5F7X-UBETE,What is happening in the video?,v_o5F7X-UBETE_1967,"In the video, a weightlifting competition is being held and athletes from different countries are shown participating. The athletes are seen lifting barbells in different ways and positions. The video ends with a Chinese weightlifter lifting the barbell and yelling.",0 1968,v_mShp2gzuPOM,What happens in the video?,v_mShp2gzuPOM_1968,"The video shows a person wearing a green top playing badminton in a gym with people standing around. A woman with a camera is taking pictures, there is a scoreboard on the wall, and the American flag is hanging. The game starts with a serve, and as it continues, the players miss hits. The video ends with the players shaking hands and leaving the court.",0 1969,v_meNgZdu8tIk,Can you describe the process of making the sandwich shown in the video?,v_meNgZdu8tIk_1969,"The video shows the process of making a sandwich with slices of bread, butter, green chutney, boiled potatoes, chopped onions, tomatoes, bell pepper, and cheese. The sandwich is prepared by applying butter and green chutney on slices of bread followed by adding boiled potatoes, chopped onions, tomatoes, bell pepper, and grated cheese in layers between the bread slices. The sandwich is then grilled until fully cooked and cut into pieces before serving.",0 1970,v_ERYwCKVUTSQ,Can you describe the setting of the video?,v_ERYwCKVUTSQ_1970,"A woman is shown in a well-lit room with blue and white walls, holding a saxophone. She is wearing a black shirt and pants, and glasses. There is sheet music on a stand to her right, a wooden chair to her left, and a whiteboard on the back wall.",0 1971,v_myGBEXiYGOU,What is the video about?,v_myGBEXiYGOU_1971,"The video depicts a woman painting a peacock on a large canvas while being recorded by a camera on her left hand. The woman started painting the head of a peacock using blue colors, gradually filled the outline with different blue shades, and continued to paint different parts of the peacock using different colors until she finished painting the fanned-out tail of the peacock.",0 1972,v_ltlJ2sOx4as,What is happening on the shores of Terelj River in Mongolia?,v_ltlJ2sOx4as_1972,"A group of riders are crossing the river with their horses and pack horses, accompanied by two dogs. They ride into the opposite shore and disappear into the woods filled with balding trees.",0 1973,v_nywOe9C3ajM,What are the different activities shown in the video?,v_nywOe9C3ajM_1973,"The video shows a woman hugging another woman, a girl getting her hair cut, her eyebrows shaped, a beautician cleaning a mannequins head while another woman looks on and a girl doing situps in a gym.",0 1974,v_mLFjww64sX8,What is happening in the barber shop?,v_mLFjww64sX8_1974,The video shows a man sitting on a barber shop chair draped in a black blanket getting his hair cut while the barber uses a blade on his head. There is another barber visible to the left and bottles of products placed on a stand in front of a mirror behind them. The walls are red and there is overhead lighting.,0 1975,v_nDHupsLdar0,Can you describe the man and the setting in the video?,v_nDHupsLdar0_1975,"The video features a man wearing a grey sweatshirt and sunglasses, sitting on the edge of a dark blue sofa. He is playing the harmonica in front of a cream-colored wall, with a CPU on a wooden table and a lamp visible in the background.",0 1976,v_lSVj34-DR0o,What are some of the diving techniques demonstrated in the video?,v_lSVj34-DR0o_1976,"The video shows Thomas Daley doing multiple backward somersaults and twists in rounds two and three respectively, and multiple somersaults in round four.",0 1977,v_lU6DMCif3eE,What is the man in the video doing and where is he located?,v_lU6DMCif3eE_1977,The man in the video is wearing a black T-shirt and playing the bagpipe. He is located in a dimly lit room with posters with text and art.,0 1978,v_gmbC7D6HfuM,Can you describe the setting and characters in the video?,v_gmbC7D6HfuM_1978,"The video features a man and a woman dancing in a well-lit room with white walls and chairs along the back wall, with few bags on them. The man is wearing a turquoise T-shirt and blue jeans with white shoes, while the woman is wearing a black top and blue jeans with black shoes.",0 1979,v_MWQ9mb_mB8U,Can you describe the scene at the beginning of the video?,v_MWQ9mb_mB8U_1979,"At the beginning of the video, a group of women wearing white tops with numbers on them are standing in a line in the middle of a volleyball court facing the spectators and clapping. Two women holding the Kenyan flag are also present at the event in a well-lit arena with Coca-Cola banners placed on the ground advertising in the background.",0 1980,v_mMm1LfVb8Pg,What does the woman in the video do?,v_mMm1LfVb8Pg_1980,"In the video, we see a woman riding a lawn mower in a backyard wearing a green T-shirt. She is mowing overgrown grass. The lawn mower circles around a tire swing, which a woman in a black top is holding the rope attached to, and she moves it aside to let the woman mow the grass under it. The wooden fence and top of trees beyond it are visible, and the camera angle is tilted to the left at the beginning, but straightened when the woman approaches the camera.",0 1981,v_Nvf-BZNEGdI,Can you describe the scene at the skating rink in the video?,v_Nvf-BZNEGdI_1981,"In the video, a boy wearing black t-shirt and jeans is seen dancing on a polished wood floor, surrounded by other people wearing roller skates. He is later joined momentarily by two other boys, one in a white t-shirt and jeans, followed by another boy wearing a red t-shirt. The video ends with the boy in the black t-shirt skating alone while a small boy skates next to him.",0 1982,v_-MbZ-W0AbN0,Can you give a brief overview of the video?,v_-MbZ-W0AbN0_1982,"The video features an advertisement for furniture polish and leather shine. Different shots are shown of a wooden table being polished until it shines. Lastly, company information is displayed on a black screen.",0 1983,v_mY7QdIn51S8,What is happening in the video?,v_mY7QdIn51S8_1983,"The video shows clips from different cricket matches played between different teams at various times of the day. The clips include instances of fielders getting the ball and using different ways to get the batsman out like catching the ball as the batsman hits it in the air, the bowler hitting the stumps to get the batsman out, and getting the batsman runout by fielders getting a hold of the ball. Pakistani and Indian cricket teams are also shown playing against each other, and a Pakistani bowler named Amir celebrates getting the batsman out during a daytime match by bumping into the batsman while running and celebrating. The video also shows a particular moment during the night where an Indian bowler is employing spin while delivering the ball, and the Pakistani batsman hits it for a six, which the spectators in the stands cheer for.",0 1984,v_nI6l7BP0odw,What is happening in the video?,v_nI6l7BP0odw_1984,"In the video, a man wearing a Scottish kilt is playing the bagpipe surrounded by people while the camera captures the scene from his side. There are people walking by at the back, and some people stop to watch the musician. The camera zooms in to show the musician from a little closer. A woman holding a child walks past, followed by other people. People are continuously walking by in front of the camera and at the back of the venue. The video ends as the man is still playing, and a man wearing an orange shirt stands in front of the camera.",0 1985,v_NwlIZ1T93xE,What is happening in the video?,v_NwlIZ1T93xE_1985,A man is shining the shoes of a customer while a band is playing music in a dimly lit bar.,0 1986,v_Ntyl5alZXeM,What happens in the video?,v_Ntyl5alZXeM_1986,"A girl is getting her ear pierced by a woman in a well-lit shop. The woman cleans her ear, marks the spot, and pierces her ear using an ear-piercing gun. She then cleans the back of the girl’s ear.",0 1987,v_N4qhryre_TE,What happens in the video?,v_N4qhryre_TE_1987,"The video features a competition where athletes showcase various acrobatic movements on a tumbling track. The video also includes interviews with some of the athletes, and snippets of their performances.",0 1988,v_MgjxjBxGrQU,What happens in the video?,v_MgjxjBxGrQU_1988,"In the video, three men dressed in Mario, Luigi, and green Luigi costumes smoke and speak to each other while dancing in a room with a well-lit yellow sheet-covered back wall and a guitar poster. They share and take turns smoking a hookah and blow smoke at each other. The video ends with a slideshow of the three men in different poses.",0 1989,v_LvaU_4xbxb0,What is happening in the video?,v_LvaU_4xbxb0_1989,The video shows two girls boxing in a well-lit gym with a man wearing boxing gloves standing nearby and a punching bag hanging to his left. The girls are wearing boxing gloves and following instructions from an instructor who is not visible in the frame. Other people are also visible boxing in the gym.,0 1990,v_nTY4IaGRFIc,Can you describe the game being played in the video?,v_nTY4IaGRFIc_1990,The people in the video are playing water polo in a pool during the daytime. They pass the ball around and try to score goals past the goalkeeper. The game continues as they throw the ball at each other until the end of the video.,0 1991,v_QG2xYcN_bl0,Can you describe the basketball drill the boy is doing in the video?,v_QG2xYcN_bl0_1991,"In the video, the boy is doing a drill where he runs crisscrossing around little orange agility cones. He reaches the basket and throws the ball through the basket. He runs back to the starting cone and repeats the drill.",0 1992,v_Lshue6AmrIw,What is happening in the video?,v_Lshue6AmrIw_1992,"In the video, a little girl and a little boy are sitting on shoe-shine chairs in a mall. The girl is wearing a black outfit and the boy is wearing a green shirt. A woman in a black jacket and gloves is shining the girl’s shoes and she turns to talk to the cameraman.",0 1993,v_eS-VU_XV1K8,Can you describe the scene and the people in the video?,v_eS-VU_XV1K8_1993,"The video depicts a group of women led by an instructor doing an aerobics workout in a well-lit studio with wooden flooring. The walls of the studio are of light yellow color and there are colorful paintings hung on them. In the background, there are blue lockers, a white dustbin, and a large speaker mounted on the wall. The instructor wears a pink top, black track pants, and sports shoes, while one participant struggles to follow her movements. The instructor leads the group by walking back and forth and side to side, while the group in front of her mirrors her movements.",0 1994,v_NM7Vye5nxj8,What happens in the video?,v_NM7Vye5nxj8_1994,"A boy in a blue vest and shorts successfully jumps backward over the high jump bar in a track field during the daytime. Two men stand in the background. Then, a man in blue vest and tights attempts the same jump but knocks the bar down as he lands. The man walks away from the bar afterwards.",0 1995,v_ghxiG0Dnrt0,Can you give me a brief overview of what happens in the video?,v_ghxiG0Dnrt0_1995,"In the video, a woman wearing a black apron is seen cleaning the kitchen sink of a restaurant. The kitchen is well-lit with white-tiled walls and there is a metallic shelf beside her with a fridge, buckets, and some plates. She cleans the sink by scooping up the waste in her hand and dumping it in a garbage can behind her. The fridge has a glass door and is full, and she closes the dishwasher and washes her hands in the sink. Finally, she dries her hand on the apron and walks out of the frame.",0 ================================================ FILE: data/text_generation_benchmark/Temporal_QA.csv ================================================ ,video_name,question,question_id,answer,question_type 0,v_p1QGn0IzfW0,What is the first activity that the boy wearing a red t-shirt and black shorts performs in the video?,v_p1QGn0IzfW0_0,"In the video, the boy wearing a red t-shirt and black shorts starts his routine by swinging on the bars and doing a handstand.",0 1,v_hFi6S_guB7I,Can you describe the sequence of events in the video related to the movements of the women dancers?,v_hFi6S_guB7I_0,"The video starts with a group of five women dancers entering the stage from the right and stand with facing away from the audience. They slowly turn around as the music starts and begin belly dancing. At the end of the performance when the music slows down, the women once again turn around and hold up their right hands in the air.",0 2,v_18yZR3NDaXM,What is the sequence of events in the video?,v_18yZR3NDaXM_0,"In the video, a man talks to the camera in front of a fence behind which a stadium is lit by floodlights. People can be seen scattered throughout the field. The next clip shows a person wearing a body cam running on the kickball field, followed by a man throwing the ball underhanded towards waiting players. A player kicks the ball into the air and runs some distance, which is also shown from the bodycam footage. This is followed by a clip of the man being filmed kicking the ball. In the next clip, the cameraman walks towards a person, focuses on the man wearing a blue t-shirt and wearing a bodycam. The cameraman then focuses on a man in a black t-shirt and wearing a kilt. The next clip shows bodycam footage of a man running on the field playing kickball, followed by a man in a blue T-shirt, wearing a bodycam, speaking to the cameraman. Finally, the man in the blue T-shirt runs towards the ball and the video ends with a man in a darkened room speaking into the camera.",0 3,v_BjjN_aq_wq4,What activity is the woman doing in the first clip?,v_BjjN_aq_wq4_0,"In the first clip, the woman is turning the tap on, pouring soap on a board and scrubbing dishes in the kitchen sink while speaking to the camerawoman.",0 4,v_DJTvj9lfSWU,What did the man and woman do after entering the bathroom?,v_DJTvj9lfSWU_0,"After entering the bathroom and stepping out, the woman was carrying a bucket and both of them were laughing. The woman was wiping tears and both of them were speaking into the camera.",0 5,v_0BtHd6dvm78,"What is the man doing while speaking with the cameraman, and what kitchen item is he washing at that moment?",v_0BtHd6dvm78_0,The man is washing dishes in the kitchen and is specifically washing a tea strainer while talking and laughing with the cameraman.,0 6,v_dKJMP8EmZjw,What are some of the different scenes shown in the video and how are they related temporally?,v_dKJMP8EmZjw_0,"The video begins with a man sailing a dinghy during daytime with cloudy skies and a visible pier in the distance. This is followed by clips of different dinghies sailing fast through the water. In one scene, a dinghy with red and white sails is shown, followed by a dinghy with a white sail, and then a few more dinghies sailing fast. Towards the end of the video, a man in a red wetsuit is shown maneuvering his dinghy, followed by clips of other sailors moving their dinghies around. The video ends with the man with the red sails leaning on his dinghy and maneuvering it, thus continuing the temporal sequence of events that began at the start of the video.",0 7,v_kGdxtU3NwWo,What does the man do after placing his shoe on the mat?,v_kGdxtU3NwWo_0,"After placing his shoe on the mat, the man applies the liquid and the polish to a piece of cloth and polishes the shoe with it.",0 8,v_UZm05CvtxkA,What happened after the team on the left missed their hit?,v_UZm05CvtxkA_0,"After the team on the left missed their hit, a player at the back hit the ball to the other side and the team on the right missed their hit. The team on the left had the exchange and the camera panned to the spectators who were celebrating.",0 9,v_b4xvXZq5uD8,What events occur during the man's haircut?,v_b4xvXZq5uD8_0,"The video shows the boy starting the haircut by running a trimmer through the middle of the man's head, with other people walking in and out of the shot behind him. Another individual takes the trimmer from the boy and starts trimming the hair of the man. As the man's haircut ends, a man wearing a black coat brings out a chocolate cake, and the others sing. Finally, an image of the man's face smeared with chocolate cake is shown at the end of the video.",0 10,v_aLb79wtvxoQ,What is the first thing that the woman does when the video starts?,v_aLb79wtvxoQ_0,The woman starts scrubbing the dirty pots after pouring soap into a dirty pot in the sink and filling it with water.,0 11,v_oR8o_PuKS28,What time of the day does the video start and what are the players doing?,v_oR8o_PuKS28_0,The video starts during the daytime and the four men are playing beach volleyball near the shores using only their heads and legs to punt the ball back and forth. Another man is standing near the right pole and trees are visible in the far back. A few boats are sailing in the sea. There is a lawn visible to the left of the players.,0 12,v_YIq3Tar9x6s,What happens after the girl combs her friend’s hair?,v_YIq3Tar9x6s_0,"After the girl combs her friend’s hair, she starts posing with her friend by doing a thumbs-up gesture and hugging her. They both laugh and give flying kisses to the camera. Then, the girl with the brush points her finger at the camera and her friend points her finger toward her nose, after which the video ends.",0 13,v_U3-MtKZeUXM,What is the sequence of events in the video?,v_U3-MtKZeUXM_0,"The athlete, wearing a blue and red jersey and white and red sports shoes, walks toward the center surrounded by a green net that is tied on silver poles. He starts swinging the hammer using both hands and then rotates his whole body to throw the hammer in the air. The video ends with him throwing the hammer and walking out of the throwing circle.",0 14,v_KlgrI3Ngwv0,In what order does the athlete perform some of his routine techniques on the pommel horse?,v_KlgrI3Ngwv0_0,"After the athlete grips the handles on the pommel horse and starts his routine by doing a circle around the horse, he follows up with scissors and a handstand. He then continues his routine with other techniques before doing a routine where he does a circle by moving the length of the pommel horse, and finishes up with a handstand plus an upside down split. ",0 15,v_jN-jnIgzd6k,What type of drills are the children doing in the video?,v_jN-jnIgzd6k_0,The children are doing punch and kick drills while moving forward and back.,0 16,v_araMJB23T1s,What is the sequence of people jumping off the bungee platform in the video?,v_araMJB23T1s_0,"In the video, first a boy jumps off the bungee platform followed by a woman and lastly, a man in yellow t-shirt jumps while holding his hands wide.",0 17,v_dW6OZV43ulU,What is the sequence of steps followed by the man while cleaning the leather sofa?,v_dW6OZV43ulU_0,"The man first sprays foam cleaner on the brush and starts cleaning the couch, then proceeds to degrees the damaged areas by spraying some cleaner on a towel and wiping the surface of the sofa. He then sand rough surfaces using a scrub pad, followed by the use of some color refresh liquid applied with a piece of sponge to wipe the couch. The surface of the sofa is then dried using a hair dryer. He then applies some more color refresh liquid on a sponge and wipes the sides of the cushion on top of the sofa. Finally, a UV protection liquid is used on the sofa and the end result was a clean sofa.",0 18,v_q_QR5HoROhI,What is the sequence of events for painting the woman’s nail in the video?,v_q_QR5HoROhI_0,"First, the man applies black ink to the woman’s index finger nail using a small brush and she places her fingers under a curing lamp to dry the ink. Next, he applies glitter of different colors on the black-painted nail and then seals the glitter with an instant seal. Finally, he applies cuticle oil around the nail.",0 19,v_qsEnLQ2UnEA,What does the man do before he throws the hammer?,v_qsEnLQ2UnEA_0,"Before throwing the hammer, the man wearing a white T-shirt and shorts steps into the throwing circle on a concrete patch of a field while carrying the hammer attached to a handle through a metal string. He swings the hammer a few times, then spins in place before turning around and throwing the hammer towards the open field on the left.",0 20,v_JcAAwYpJhm8,"What items did the little girl wash in the video, and in what order?",v_JcAAwYpJhm8_0,"The little girl washed a glass, a spoon, a pot, a plate with Dora the Explorer on it, and a plastic jar. In that order, she washed the glass first, followed by the spoon, pot, Dora plate, and finally the plastic jar at the end of the video.",0 21,v_ZwK52lXCbhA,What does the man in the red sleeveless shirt do while getting tattooed?,v_ZwK52lXCbhA_0,The man in the red sleeveless shirt is rapping while getting tattooed in the well-lit tattoo studio.,0 22,v_aYxni8ohTfU,What is the result of the last exchange in the video?,v_aYxni8ohTfU_0,"The last exchange in the video is between Latvia and Italy, and Latvia wins it.",0 23,v_6Xsfwn5M6qs,What is the first maneuver the man in black shorts performs on the parallel bars and what is the final maneuver he performs before attempting a backswing?,v_6Xsfwn5M6qs_0,"The man in black shorts performs a handstand as his first maneuver on the parallel bars, and he finishes his routine by performing multiple backswings. However, he is unable to stick the landing and turns to the camera smiling after attempting the trick.",0 24,v_Mf3IyeMF8ug,What is the temporal sequence of events in the video of the woman wrapping a box?,v_Mf3IyeMF8ug_0,"First, the woman wraps the box with orange gift wrap and applies tape as she folds each corner. Then, she tucks the wrapping paper on the sides and folds the last edge. She tapes it shut using a paper sticker with Chinese characters and the word ""ROGUE"" on it. After that, she wraps a folded green cloth around the gift-wrapped box, ties it into a knot, and holds it to the camera.",0 25,v_CecqF_uHeOI,What is the sequence of events in the video as the man cleans the glass door?,v_CecqF_uHeOI_0,"In the video, the man first wipes the glass door with a wiper, then picks up a smaller wiper from his right, and wipes the glass again. Afterwards, he uses the larger wiper to wipe the glass once again. He then sprays cleaning fluid on the glass and wipes it with a blue towel. Finally, the video ends with the man kneeling down to wipe the bottom half of the glass door. All the while, he is wearing a dark blue shirt and khaki pants, and is performing the cleaning during daytime. The door itself is made of glass framed in wood.",0 26,v_7-taNK5mW8E,What happens after the ball lands near the front player?,v_7-taNK5mW8E_0,The front player is pushed into the pool from behind and the person who pushed her down snatches the ball.,0 27,v_IcR28Yqt4mY,What is happening when the video begins?,v_IcR28Yqt4mY_0,"At the start of the video, four men are standing in a row over blocks of wood placed on a stand on the ground, wearing blue polo shirts and white trousers, holding axes in their hands, while in a studio with overhead lights and boom mics hovering above. They are about to start a wood-chopping competition.",0 28,v_B3xMfP_UOt4,What is the sequence of events in the video related to Ukhov's high jump?,v_B3xMfP_UOt4_0,"The video starts with Ukhov preparing for a high jump, followed by his run towards the bar and clearing it by flopping backward. Ukhov then walks towards the side of the bar and away from the field. A clip of a man watching the jump in the stands is shown, while he turns away after the jump. A little boy, standing beside the man and with his hand over his mouth, is also shown in the clip. The video ends by showing a replay of Ukhov's jump.",0 29,v_4XnXyKYxnQQ,What is happening to the ship in the video?,v_4XnXyKYxnQQ_0,The ship in the video is dangerously tilted left and looks like it is about to capsize.,0 30,v_Y9d4iPDeigI,What happens after the two boxers start clinching?,v_Y9d4iPDeigI_0,"After the two boxers start clinching, they keep both their hands on top of each other shoulders and try to hit each other with their knee. ",0 31,v_qtKa7Lr3URA,What is happening when the video begins?,v_qtKa7Lr3URA_0,"When the video starts, three people are outdoors in the daylight. A woman is washing clothes on the ground, using a stone. Another woman, dressed in a white top and jeans, is watching her wash the clothes, while a young girl with her hands folded stands behind her. They are standing next to a white-walled house with a partially open window. A few cars are parked in front of the house.",0 32,v_P7Z4i1gmzjs,What is the sequence of events in the video?,v_P7Z4i1gmzjs_0,"The video starts with the boy lifting himself up from parallel bars and swinging back and forth by holding one hand on each bar. He then drops to the ground after swinging a few times. Other people are visible in the back of the well-lit gym, with foam mats on the floors under other equipment.",0 33,v_ojIhxWrBM0s,What is the sequence of events in the video?,v_ojIhxWrBM0s_0,"The video starts with a man seated in a barber chair looking through a magazine. He is followed by other customers who are getting their hair cut. Next, a man is shown getting his hair washed by a barber. After that, there is a shot of people waiting outside the salon. Finally, the video ends with a man getting his hair cut by the barber who finishes by holding a mirror for him to check his haircut",0 34,v_hq48S65dlyo,What is the sequence of events in the video?,v_hq48S65dlyo_0,"The video starts with a woman punching into a punch mitt worn by a man, followed by her kicking the kick pads and focus pads worn by two other men. She then returns to the man wearing the punch mitts and starts punching it again. In the next clip, the man wearing punch mitts is replaced with boxing gloves and punches the punch mitts worn by the woman, followed by him kicking the two different pads worn by other men. He then returns to the woman and starts punching the mitts again. These sequences are repeated a few times before the video ends with club contact information.",0 35,v_w4pO-1-FG5w,What is the last event in the video?,v_w4pO-1-FG5w_0,The last event in the video is that the woman is still cutting the boy's hair.,0 36,v_gWbIoFrpwTY,What is the first scene shown in the video and where does it take place?,v_gWbIoFrpwTY_0,"The first scene of the video shows a little boy standing in a parking lot in the daytime, wearing a black t-shirt and holding a juice box in his left hand. The back end of a white van is visible behind him, along with two skateboards and a blue cooler with a can of Red Bull next to him.",0 37,v_vo2M4sY0E38,What does the woman do after brushing the horse's torso and face?,v_vo2M4sY0E38_0,"After brushing the horse's torso and face, the woman proceeds to brush the horse's tail. She then uses a hoof pick to clean its hoof. After that, she inspects the back left hoof of the horse and brushes its mane before cleaning her brushes and ending the video.",0 38,v_eoSwoeLmeyQ,Who is dancing on the left side of the floor at the start of the video?,v_eoSwoeLmeyQ_0,"At the start of the video, a man in a purple dress shirt with the number 3 on his back is dancing on the left side of the floor.",0 39,v_WOUkPgHtt4E,What was the first scene in the video and how was the gymnasium described?,v_WOUkPgHtt4E_0,"The video started with children practicing in a well-lit gymnasium with cream color walls, blue mattresses on the floor and armbars and balance beams installed. Windows were located on the left side of the children practicing and there was a small wall clock on the left side of the gym. Some trophies were kept on the edge of the window. ",0 40,v_RjztFj0Zl40,What is the sequence of events in the video related to the game of dodgeball?,v_RjztFj0Zl40_0,"The video starts with text appearing on a yellow background. Next, a group of people is seen standing on one side of a basketball court in the daytime. The court is surrounded by a chain link fence and there are cars parked outside next to the sidewalk. The team starts a game of dodgeball with another team standing on the other side of the basketball court, with spectators outside the fence taking pictures. As the game progresses, the team on the left loses one player after another and the last player tries unsuccessfully to throw a ball with each hand. She then gets hit in the legs and walks away, causing the winning team to exit the court.",0 41,v_tSNg5rvDvVc,What happens at the end of the video?,v_tSNg5rvDvVc_0,The video ends with the man playing the saxophone raising his hand and completing his performance.,0 42,v_1d_U_2HIPmY,What is the sequence of hammer swings by the man on the circular platform in the video?,v_1d_U_2HIPmY_0,The man on the circular platform first swings the hammer around his body two times and then swings it two more times while also turning. He releases the hammer through the open side of the cage on the fifth swing.,0 43,v_Y16uL6dYDzQ,Can you describe the temporal sequence of events in the weightlifting competition?,v_Y16uL6dYDzQ_0,"The weightlifting competition starts with weightlifters lifting big dumbbells on black mats laid out on a grassy field, with an audience watching. The weightlifters start with a weightlifting attempt one by one. First, the weightlifter in front lifts the dumbbell using both his hands, lifts it for some time and drops it. Then, the weightlifter behind him tries but struggles to lift the dumbbell and drops it. Both weightlifters apply powder to their hands from the bucket and then the one in the back attempts to lift the dumbbell again but drops it. Finally, the weightlifter in the front lifts the dumbbell and drops it after some time before raising his hand for the audience and walking off the mat.",0 44,v_Hz7-mBFGsSs,What happens after the woman brings lollies to the crying girl in the salon?,v_Hz7-mBFGsSs_0,"After the woman brings lollies to the crying girl in the salon, the barber starts cutting her hair with a comb and scissors while kneeling in front of her. The girl continues to cry while the woman sprays water on her hair and then moves to the back to cut and comb the hair at the back of her head. The video ends with the woman doing touch-up cuts and combing the girl's hair.",0 45,v_wiaZCl-poRw,What is the man doing after he turns around while mowing the lawn?,v_wiaZCl-poRw_0,"After turning around, the man continues to mow the lawn as he mows one section after another.",0 46,v_qqZLs6j3YII,What happens towards the end of the video with the children performing on stage?,v_qqZLs6j3YII_0,"Towards the end of the video, the children speed up their music and the screen fades.",0 47,v_B_U7vUtoCKY,What is the last event depicted in the video?,v_B_U7vUtoCKY_0,The last event depicted in the video is Cole running and avoiding a player from the opposite team.,0 48,v_IRBrTKrVCxo,What is the first event shown in the video and how does it end?,v_IRBrTKrVCxo_0,The video starts with a man getting his shoes shined and ends with the man finishing polishing his shoes.,0 49,v_xS5JDBeMxOs,What do the two men sitting at the table do while having beer?,v_xS5JDBeMxOs_0,"While having beer, the two men sitting on the table pull out their shoes and add beer to them. They both simultaneously drink the beer from their shoes while the people around them cheer and make videos. After drinking the beer, they raise both their hands in the air and high-five each other.",0 50,v_-uJnucdW6DY,What is the sequence of events that occur in the video?,v_-uJnucdW6DY_0,"The video starts with a boy throwing a ball to some kids who are playing in a grassy field that is surrounded by a metal fence with huge light poles. Some cars are parked outside the field and there are also cars running outside the field. The sequence of events that occur is that the boy throws the ball to some other kid, the kid kicks the ball and another boy catches it. The boy again throws the ball, the kid kicks it and it goes far in the back where a girl was unable to catch it. The boy throws it again and the kid kicks it, a boy catches the ball and bumps the ball into another boy. This sequence continues for the rest of the video as someone throws the ball, another kid kicks it and runs across the field while someone catches the ball and bumps the ball into some other kid.",0 51,v_PzJsoZT2hXk,What is the order of events in the video starting from the gift-wrapping montage?,v_PzJsoZT2hXk_0,"The video starts with a montage of gift wraps and gift-wrapped gifts. Next, there is a clip of two women in a well-lit room standing by a gift-wrapping table. The woman on the right slips a gift card in a wrapped gift box. Then, the woman on the left starts to fold a wrapping paper and starts to wrap it around a box. She finishes wrapping the box and tapes it shut. She then tucks a gift card in a fold in the wrapping. Finally, both women exchange wrapped gifts and show them to the camera.",0 52,v_YAMhMB1jdio,What is happening in the beginning of the video and what can be seen in the barbershop?,v_YAMhMB1jdio_0,The video starts in a barbershop where a woman is giving a haircut to a customer. The shop has a dark brown wooden door with a broom hanging on the side of it. The shop is well-lit with overhead lighting and has white walls. The customers are wearing white cloth capes and there are mirrors in front of them. There is also a whiteboard mounted on a wooden railing behind the customers with some text on it.,0 53,v_EWNqkVaOfbE,What was the sequence of events portrayed in the video?,v_EWNqkVaOfbE_0,"The video starts with a news reporter in a dark grey coat talking about TACK. Then, the frame changes to a cricket match taking place on a grassy cricket field with huge stadium lights. Next, the frame changes to a news reporter interviewing the patron-in-chief of TACK while wearing a blue jersey. The scene then switches back to the cricket match. The frame changes again to another reporter interviewing the president of TACK, who is wearing a white shirt and black coat. Later, the camera shifts to a news reporter interviewing the Pakistan ambassador while being in a grey full-sleeve top and holding a book. The ambassador is wearing a black coat and a light blue shirt. There are many people in the background, and a huge stadium light is visible. Finally, the video shows the earlier cricket match one more time, followed by a news reporter in a grey full-sleeve top and a dark blue T-shirt holding a mic and standing in front of trophies on a white table. The video ends with the reporter ending the reporting.",0 54,v_Pjnuoa4o55c,What happens after the men start playing squash on the court?,v_Pjnuoa4o55c_0,"After the men start playing squash on the court, they run around on the court and hit the ball toward the wall while continuing to play their game.",0 55,v_QOsG3BeQeX0,What is the sequence of events in the video related to the man swinging from the parallel bars?,v_QOsG3BeQeX0_0,The man is swinging back and forth from the bottom of the parallel bars while upside down. He then rightens himself and goes back to the previous position.,0 56,v_7pfHxav4b0U,What does the video start with and what is the woman wearing?,v_7pfHxav4b0U_0,The video starts with a woman rowing an orange kayak down a rapid river. She is wearing a life vest and a white helmet.,0 57,v_htzAYwoAZkg,What does the woman do after standing next to the man in the gym?,v_htzAYwoAZkg_0,"After standing next to the man in the gym, the woman climbs the resistance machine and starts pedaling. She adjusts the settings before continuing to pedal.",0 58,v_ijrjRNwZjqQ,What is the sequence of events in the video with respect to the ping pong game played by Kevin Spacey and Rafael Nadal?,v_ijrjRNwZjqQ_0,"The video starts with Kevin Spacey and Rafael Nadal on stage wearing tuxedos and talking for a moment before walking to the other side of the stage. As they walk over, three people wearing white hats carry a ping pong table and hand paddles and ping pong balls to the two men. Rafael Nadal serves and the two play three games. In the last game, Kevin Spacey wins and celebrates by shaking hands with Nadal. The video then ends with a woman walking up to Kevin Spacey and placing a garland around his neck.",0 59,v_IhmtmKxEU40,What happens after the camera focuses on a few windsurfers?,v_IhmtmKxEU40_0,"After the camera focuses on a few windsurfers, a woman behind a sailboat appears to be assembling her sailboard. In the next clip, the woman is seen climbing back onto her sailboard in the sea after falling into the water. Her sail appears to have fallen into the water as well.",0 60,v_zxpQHLwZCug,What did the man do after he stopped speaking?,v_zxpQHLwZCug_0,"After stopping to speak, the man continued to chop the log. Pieces of the log were seen flying off in different directions and the video ended as the log broke into two pieces.",0 61,v_uvglcAUnQv0,What happens at the end of the video?,v_uvglcAUnQv0_0,"At the end of the video, the dancing couple stops dancing and separates. The man in a white shirt walks away.",0 62,v_3zpODTqnYLs,What are some of the events that occur in the video from start to finish?,v_3zpODTqnYLs_0,"At the start of the video, a man is sitting at the edge of a pool with a small child sitting on the pool wall. Another person dives into the water. Afterwards, the toddler washes her face with pool water twice while the man holds onto her. Meanwhile, another boy with a towel walks by. A person wearing a green swim cap is seen swimming behind the man. Finally, the video ends with the toddler attempting to stand and then immediately sitting back down.",0 63,v_1KONAdZGdWU,What is the girl doing at the beginning of the video and what is her attire?,v_1KONAdZGdWU_0,"At the beginning of the video, the girl is sitting on a carpeted floor in a darkened room with little light. She is wearing a blue T-shirt and shaving her left leg while occasionally talking to the camera person.",0 64,v_DIhyfNJAm-M,What is the sequence of events in the video?,v_DIhyfNJAm-M_0,"The video begins with a man playing the saxophone on stage wearing a black suit and white shirt, while backing musicians are seen further back playing various instruments. The man plays his saxophone while close-ups of him are shown on the screen. A cutaway of various instruments being played by backing musicians is shown, followed by a wide-angle shot of the audience sitting on both the ground floor and balcony. The man continues to play the saxophone, and a music stand with a transparent top is placed next to him. The video ends with the end of his performance and a shot of the audience members applauding him. The auditorium appears to be full, and the stage has a blue-curtained background with red floors and a set of stairs in front of the saxophonist.",0 65,v_K6QunmuTZOQ,What is the sequence of events in the video related to the woman practicing weightlifting movements?,v_K6QunmuTZOQ_0,"At first, the woman practices the movement patterns of weightlifting holding a bar without weights in her hand in the small gym. In the next clip, a barbell with red colored weights is placed in front of her and she lifts the barbell two times following the movement patterns she practiced before.",0 66,v_l7qSKJyq6mA,How does the man iron the shirt and what does he do afterwards in the video?,v_l7qSKJyq6mA_0,"The man irons the shirt one section at a time and finishes both sides. He then puts the ironed shirt over a clothes hanger. Subsequently, he places the shirt again on the ironing stand to iron a small portion and hangs the shirt among other ironed shirts.",0 67,v_2VZumBKJuPs,What is the temporal sequence of events in the video?,v_2VZumBKJuPs_0,"The video starts with a woman laying down while a man pierces her belly button. The man uses a needle piercer to insert the piercing, secures it by screwing on a ball, and the woman speaks to the person holding the camera while this is happening. Once the jewelry is secured, the woman gets up. ",0 68,v_T7YcO-sOLuU,What is the sequence of events in the video?,v_T7YcO-sOLuU_0,"In the video, a man wearing a dark-colored t-shirt is sitting behind a table that has shoes placed on it. He is holding up a white shoe. Next, the table with the three shoes, a pack with various cleaning supplies, and a glass of water at the back are shown. Then, the man is sitting behind the table holding a Nike shoe. A bottle of clear liquid, with the label ""JASON MARKK"" is on the table next to the shoes. A hand brush is placed next to the bottle of liquid. In the following clip, the man shows all sides of different shoes. The man then dips the hand brush in the glass of water and adds the liquid from the bottle. He proceeds to clean a shoe with the brush before wiping the foam with a cloth. Finally, he cleans the rest of the shoes on the table and holds the clean shoes to the camera along with the pack of cleaning supplies.",0 69,v_OkvWTZ4XLyM,What is the sequence of events in the video while the man throws the discus?,v_OkvWTZ4XLyM_0,"The man builds momentum by holding the discus out in his right hand and spins slowly. After spinning the discus a few times, he releases it and walks toward the landing area. The sequence of events includes building momentum, spinning, releasing the discus, and walking to the landing area.",0 70,v_7EeO9V2B574,What time of the day were the women dancing under the tree's shadow?,v_7EeO9V2B574_0,The women were dancing under a tree's shadow during the daytime.,0 71,v_sPK-sbHIb3w,What drill are the players practicing on the basketball court and how does the coach assist them?,v_sPK-sbHIb3w_0,The players are practicing a drill where they take the ball and dunk it into the hoop with a spin. The coach passes the ball to the players and helps them by blocking their shots and giving instructions.,0 72,v_IgDBDaIoNAM,When does the fight start and where are they located?,v_IgDBDaIoNAM_0,The fight starts during the daytime when the man and woman are standing under an overpass. They take a fighting pose in the shadow of the overpass. There is a wall with graffiti behind them.,0 73,v_325CAs4hhq8,What is the order of events captured in the video?,v_325CAs4hhq8_0,"The video starts on a hockey field with players wearing orange uniforms playing field hockey. In the next clip, several players are visible on the field, leaning forward and waiting for a player to hit the ball. In the next clip, several girls from other teams are introduced, and individual players are speaking into the camera. In the next clip, a coach is instructing players. The next few clips are of players on the field standing and being instructed, and individual players being interviewed. A still photo of a team is shown, followed by a play of the game as players are on the field chasing a ball. Two teams are visible. As the clip of the game is being played, a coach is speaking into the camera. The video ends with a goal in the game by a player in an orange uniform.",0 74,v_CTJej0rZMiI,When does the video end?,v_CTJej0rZMiI_0,The video ends as the man finishes playing the accordion.,0 75,v_CTyvQHkAKuY,What happens when the woman wearing the scarf walks up to the man playing the piano?,v_CTyvQHkAKuY_0,"When the woman wearing the scarf walks up to the man playing the piano, she speaks to him briefly before beginning to sing as he continues playing. A man in a white jacket can be seen walking behind and to the right of the singing woman. People look at the dancing man and cheer, and the man is seen finishing his dance before the video continues with the man playing the piano and the woman singing.",0 76,v_3M290KZV5lo,What is the sequence of events in the girl’s performance on the balance beam?,v_3M290KZV5lo_0,"The girl mounts the balance beam, performs a backflip, does jumps, balancing and skipping on the beam, and finishes her routine with a running front flip off the beam and a flourish.",0 77,v_TEgPIueNqTI,What is happening at the start of the video and who is involved?,v_TEgPIueNqTI_0,"At the beginning of the video, a woman is wearing a white top and sitting on a chair in a tattoo parlor, while a tattoo artist wearing black outfit and black nitrile gloves is starting to tattoo the woman’s right wrist. The woman has put her wrist on the arm of the chair. Other people can be seen sitting on chairs on the side.",0 78,v_itXYuf_Cj_Q,What does the man do with the banana peel in the video?,v_itXYuf_Cj_Q_0,"In the video, after the man peels a banana, he uses the peel to wipe a single black dress shoe placed on each of his thighs. He wipes all sides of the shoe and holds it to the camera before throwing the used peel to the side.",0 79,v_mNiFmkm5OZA,What does the man do before drinking from the glass?,v_mNiFmkm5OZA_0,The man smokes from the hookah and blows smoke rings before picking up the glass filled with beer and blowing smoke into it before drinking.,0 80,v_JspVuT6rsLA,What is the last thing the little boy does in the video?,v_JspVuT6rsLA_0,The little boy finishes playing the violin forcefully by playing the last three notes.,0 81,v_cPIsE2ZCWzM,What time of day does the polo game take place in the video?,v_cPIsE2ZCWzM_0,"The game takes place during the daytime, as mentioned at the beginning of the video.",0 82,v_IL8__uSFpqg,What does the man do after he removes the crankset from the bike?,v_IL8__uSFpqg_0,"After removing the crankset from the bike, the man wipes the grease off of the crankset and the bottom bracket with a paper towel. He then applies something from a tube on the bottom bracket using his finger to spread it. Finally, he reattaches the crankset and tightens the bolt.",0 83,v_zTHkqpNFGno,What was the woman doing towards the end of the video?,v_zTHkqpNFGno_0,"Towards the end of the video, the woman places the comb at her side and continues to lean forward.",0 84,v_JguRZtFN-Ck,What is the last action of the woman in the video?,v_JguRZtFN-Ck_0,The woman walks to the middle of the hall after a strike and stops.,0 85,v_cFOaL4Ir4hg,What kind of dives were performed by the different people in the video and in what order did they occur?,v_cFOaL4Ir4hg_0,"Various types of dives were performed in the video, including backflip dives and front flip dives. The man in the beginning of the video performed a backflip dive, followed by a woman who jumped off a diving board and performed a separate dive. Another man did a backflip dive next, followed by a man who did a dive while facing away from the pool and then another man who did a front flip dive. The video continues with several people performing dives with flips until the end, where a man jumps off the diving board horizontally and flips before entering the pool.",0 86,v_vska7f8Zm9s,What does the person do after lighting the matchstick?,v_vska7f8Zm9s_0,"After lighting the matchstick with the striker, the person holds the lit matchstick to some kindling on the ground. He then adds more kindling over the flame and fresh firewood as well.",0 87,v_MbjyQGdTtK8,What is the sequence of events shown in the video for making furniture polish?,v_MbjyQGdTtK8_0,"The video begins with a woman wearing a white polo shirt standing behind a table in a well-lit room. She then shows the ingredients required for making furniture polish. Next, she puts a yellow funnel in a spray bottle and measures and pours olive oil and lemon juice into the bottle from different angles. She then shakes and mixes the solution by closing the lid of the bottle. Further, she removes everything from the table and sprays the solution onto the surface and rubs it with a cloth until the table is polished. Finally, the video ends with a girl in a pink top speaking to the camera.",0 88,v_BdRH3lpopLQ,What happened when the team on the right had the ball during the volleyball game?,v_BdRH3lpopLQ_0,"When the team on the right had the ball during the volleyball game, they passed the ball between themselves four times before passing it to the other team. The other team started celebrating prematurely before the game was won, and the ball landed by them resulting in their loss. The first team then celebrated their victory. ",0 89,v_SV3v-nA6hXM,What is the sequence of events in the video?,v_SV3v-nA6hXM_0,"The video starts with a man on a bungee jumping platform counting down, wearing a white shirt with a harness and a cap in a valley covered in trees during the day. Another person wearing a camera jumps off the platform, followed by a line of people waving at the camera. Next, a woman in a safety harness jumps off the platform, followed by a montage of people bungee jumping captured from different angles. Some dive while looking forward and some jump while standing backward. The video ends as a woman wearing an orange top jumps off the platform, and the screen fades.",0 90,v_w46wkDledek,What style of partner dancing were the two girls doing in the video?,v_w46wkDledek_0,The two girls were doing Spanish-style partner dancing in the well-lit living room. They continued dancing to music as one partner took turns spinning the other.,0 91,v_JHKAcpYlxkQ,What is the sequence of events in the video related to the woman tennis player practicing her serve?,v_JHKAcpYlxkQ_0,"The woman tennis player starts practicing her serve on the outdoor tennis court. She is wearing a white top and teal shorts, and a basket of tennis balls is kept a few feet behind her. She serves the ball, which hits the opposite wall and bounces off the black wall. A man wearing a white t-shirt and black shorts is visible on the right, and the woman practices another serve which hits the black wall after bouncing once on the court. The sequence of events is the woman practicing her serve twice and hitting the black wall both times.",0 92,v_Gvc1z9qypFQ,Can you describe the sequence of events that occurred during the hockey game in the video?,v_Gvc1z9qypFQ_0,"The video starts with two teams of little girls playing hockey on a field, where one team is wearing a maroon jersey with numbers on the back and black shorts, while the other team is wearing a red jersey with numbers on the back and black shorts. The players begin the game with a hit-off and slowly move the ball around the field trying to score. The match ends as a player attempts to score a goal and is blocked by the goalkeeper, after which the game stops as the whistle is blown.",0 93,v_1xBdquA6dx8,Can you describe the temporal sequence of events from the beginning of the video until the end?,v_1xBdquA6dx8_0,"Sure, the video first shows two teams of girls playing hockey, one in blue and the other in green jerseys. Then it follows a girl with number ten jersey from the blue team, guiding the ball towards the goal while being quickly intercepted by a girl with a number nineteen jersey from the opposite team. However, she regains control of the ball and runs towards the goal. At the end of the video, the girl is again intercepted but she manages to hit the goal.",0 94,v_kdOsmDACtqw,In what order do the breakdancers appear in the video?,v_kdOsmDACtqw_0,"In the video, after the man in the white t-shirt finishes speaking to the crowd, a man wearing a black outfit breaks into a dance on a white sheet placed on the ground. He is followed by the man wearing the white t-shirt. The man in the white t-shirt then enters the dance area with another man and the two of them dance with their heads on the ground and spin.",0 95,v_kIFHChO_-vg,What happens in the video concerning the toddler’s hair?,v_kIFHChO_-vg_0,"In the video, the toddler starts with hair rollers secured in her hair while listening to her mother. In the following clip, her mother removes the hair rollers before fluffing her hair. The toddler then looks at her hair in the mirror before ultimately fluffing it herself, signaling the end of the video.",0 96,v_TB5AeIdAndA,What time of day was the man playing the guitar?,v_TB5AeIdAndA_0,The man was playing the guitar during the daytime.,0 97,v_5P9Tbut04xE,What is the temporal sequence of events in the video?,v_5P9Tbut04xE_0,"The video starts with the bald man explaining how to use different holes on a harmonica, followed by showing how to correctly position the harmonica near the mouth and blow. The video ends with the man playing an octave and double notes on the harmonica again.",0 98,v_sbnF7VVeopM,What events can be seen in the montage of stock footage?,v_sbnF7VVeopM_0,"The montage of stock footage in the video shows people crossing the street during the daytime, a person welding something in a dimly lit workshop, a monster truck driving through a muddy track and, finally, a clip of cars moving through traffic during the day.",0 99,v_7gaC3b5nJqs,What was the sequence of events during the dance in the video?,v_7gaC3b5nJqs_0,"The three women wearing gym clothes stood in front of the camera in a studio with yellow lights and a wood floor, with mirrors lining the right wall and windows visible high up on the left wall. They started dancing in a triangle formation by moving left and right and moving their hands to the music. The women continued dancing with slow and fast movements until the music stops and they all stopped dancing. After that, the lead dancer walked up to the camera.",0 100,v_OESjoURo19U,What is happening towards the end of the video?,v_OESjoURo19U_0,"Towards the end of the video, both teams stop playing and walk over to the middle of the basketball court.",0 101,v_SLHPvKh-_x8,What is the first thing that appears on the screen and how does the video end?,v_SLHPvKh-_x8_0,"The video starts with the text 'Infection Control' on a black screen and ends as the woman throws the used tissue in a trash can. In between, the woman demonstrates how to wash her hands effectively using soap and dries her hands using tissue paper after turning off the tap.",0 102,v_15yU0R2MBQM,What does the video depict about the temporal sequence of events regarding brushing teeth?,v_15yU0R2MBQM_0,"The video shows the temporal sequence of events starting from a blue toothbrush being held in front of the camera to demonstrating the brushing motion, followed by a girl wearing a white t-shirt brushing her teeth with the blue toothbrush while smiling into the camera, and ending with her removing the brush from her mouth and smiling, with toothpaste visible in her mouth.",0 103,v_ypfWA4aDL6k,What is the temporal sequence of the events in the video?,v_ypfWA4aDL6k_0,The video starts in the daytime on a sidewalk where a man wearing a kilt is playing the bagpipe and standing in front of a lamp post. There are vehicles moving on the street behind him and buildings are visible in the background. A person wearing a black hoodie and holding a little child is kneeling a few meters in front of the bagpipe player. People are seen walking past the camera. People stop by in front of the musician to drop some change in front of him and the man continues to play the bagpipe.,0 104,v_rpjxjU-mLiw,What does the man in the teal T-shirt do after he finishes his discus throw?,v_rpjxjU-mLiw_0,"After the man in the teal T-shirt finishes his discus throw, he walks towards the camera and claps his hands.",0 105,v_sk_pnoqXxhs,What is happening at the beginning of the video and who is helping the toddler?,v_sk_pnoqXxhs_0,"At the beginning of the video, a toddler in a diaper is standing on the sink, in front of the bathroom mirror brushing his teeth. A woman wearing a white shirt is standing behind the toddler and to his right, helping him brush his teeth.",0 106,v_YK9BIL9fKA0,What is the sequence of events when the friend shows the hopscotch course?,v_YK9BIL9fKA0_0,"After showing the three rocks, the friend raises one hand and one leg in the air and does a turn. She then proceeds to throw the three rocks on the hopscotch course and starts playing by jumping with one leg up. The friend later reaches the end of the course and starts jumping with both her hands up.",0 107,v_kgz7c2kb4Rg,What is the sequence of the paddle strokes demonstrated by the woman in the video?,v_kgz7c2kb4Rg_0,"The woman in the video starts with a reverse sweep by turning her torso to her left and sweeping the left paddle from back to front, which turns the kayak to the left. She repeats this once more. Next, she does a forward sweep with the left side and a reverse sweep with the right paddle. She repeats this again.",0 108,v_GvMep9y7d7c,What are the events that take place in a temporal sequence in the video?,v_GvMep9y7d7c_0,"The video starts with a man standing in front of a pegboard with some tools hung from it, followed by a bicycle rolling down and hitting a tree. Then, there is a close-up shot of the cycle’s chain bearing and a man turning it. He inserts an Allen key into the chain-bearing screws and tightens them. The man then smashes the bearing with a stone and a tree branch. Finally, he picks up the cycle, adjusts its chain and starts rolling the cycle’s pedal in slow motion.",0 109,v_0k0xNs8Zjb4,What is the sequence of gymnastic moves that the girl performs in the video?,v_0k0xNs8Zjb4_0,"The sequence of gymnastic moves performed by the girl in the video starts with a backflip on the ground covered in green plants, followed by backflips and back-tucks in a park among trees, and running front flips where she stumbles in the first clip. She then proceeds to do various other gymnastics moves like front and back flips and back tucks. Finally, she performs a tumbling sequence that consists of flipping backward and doing running front flips. The names of different moves done by the girl are named at the end.",0 110,v_ZSdnDVGXU3k,What is the first event shown in the video?,v_ZSdnDVGXU3k_0,The first event shown in the video is a gymnast using a springboard to leap onto a balance beam.,0 111,v_u3XOLSC7lg0,What sequence of moves does the man breakdancing in the hallway perform in the video?,v_u3XOLSC7lg0_0,"The man in black T-shirt and black pants starts by moving his legs on the floor, followed by a spring jump using both his hands. He then lifts his body using his hands, puts his head on the floor, and rotates to complete his performance.",0 112,v_9pavfCL1HvU,What happens after the players attempt to score a goal is stopped by the goalkeeper?,v_9pavfCL1HvU_0,"After the players attempt to score a goal is stopped by the goalkeeper, all players swim back as the goalkeeper throws the ball back to the other end of the pool, leading to another attempt to score a goal.",0 113,v_skk-nX55gvA,"What event did Justin Harrison successfully score a goal in, according to the video?",v_skk-nX55gvA_0,"Justin Harrison successfully scored a goal in a water polo game, which is shown at the beginning of the video. He threw the ball toward the goalpost and the player wearing black attempted to block the throw, but Justin successfully scored the goal.",0 114,v_fh21bbDSVmA,What is the sequence of events in the gymnastics performance on the pommel horse?,v_fh21bbDSVmA_0,"The male gymnast starts his performance on the pommel horse in front of the judges while wearing blue track pants and a white vest with blue and red stripes. He spins and moves along the pommel horse and does a handstand. Spectators start cheering for him as he performs. He concludes his performance and wishes luck to his opponent, all in a well-lit arena with blue walls and chairs.",0 115,v_i5qTK0mInTc,What did the old woman do after putting the cassette in the VCR and sitting on the sofa?,v_i5qTK0mInTc_0,"After putting the cassette in the VCR and sitting on the sofa, the old woman starts to watch a movie. Later, her daughter enters the room from a door on the right side of the living room and sits next to the old woman. They are both sitting in a well-lit living room eating popcorn and watching the movie together. Two women later enter the house through the main door, one of them carrying a flower pot, wearing a blue outfit while the other is wearing a pink outfit.",0 116,v_EK7qW-oavQY,What happens towards the end of the video?,v_EK7qW-oavQY_0,"Towards the end of the video, one of the teammates near the opposite goalpost scores a goal and the players swimming away.",0 117,v_jCxQQ9DMpT0,What is the sequence of events involving the archery scene in the video?,v_jCxQQ9DMpT0_0,"The video starts with a man drawing the string of a compound bow on a golf course, followed by him shooting an arrow. In the next clip, the man is shown with his bow again, and a man in a blue polo shirt instructs him on how to hold the bow properly. The man hands the bow back to the archer, who follows the instruction and shoots another arrow. The man in the blue polo shirt then walks away at the end of the video.",0 118,v_wCexKIuAj3A,What is the first action performed in the video?,v_wCexKIuAj3A_0,The video begins in a news studio where five people are seated on a sofa.,0 119,v_4NPVpI9zUpI,What is the sequence of jumps that Stefan Holm performs in the video?,v_4NPVpI9zUpI_0,"Stefan Holm performs six degrees of jumping in the following sequence: the first-degree jump, the California roll, the Holm Roll (third-degree jump), the Stradle (fourth-degree jump), the Scissor Kick (fifth-degree jump), and the Fosbury Flop (sixth-degree jump).",0 120,v_tF8Nv-QxbIU,What did the man do after he picked up the suede block and suede brush?,v_tF8Nv-QxbIU_0,"After picking up the suede block and suede brush, the man proceeded to clean a pair of red suede shoes. He vigorously rubbed them with the brush. Afterwards, he picked up a dark blue high-heeled suede shoe and began to brush it.",0 121,v_vAHR3iJhBXU,What is the sequence of events in the video starting with the application of the base coat on the woman’s fingers?,v_vAHR3iJhBXU_0,"After applying the base coat on all fingers, the woman applies pink nail polish on the woman’s ring finger, draws random black blocks on the white nail polish, adds two black rhinestones on the pink nail, and finishes off by applying a top coat to all the nails.",0 122,v_Ku76zinwWkg,What kind of obstacle does the girl overcome in the video?,v_Ku76zinwWkg_0,"In the video, the girl jumps over obstacles as she makes her way to a sand pit and performs a high jump.",0 123,v_tC5eMgePakk,What can you tell me about the timing of the little girl’s violin performance in the video?,v_tC5eMgePakk_0,"The video shows the little girl wearing a pink outfit and headdress starting to play the violin during the daytime by the shore of a lake in front of a tree. As she continues to play, the lake behind her reflects the trees surrounding it. The video ends as she finishes playing and the screen fades to black.",0 124,v_Hy54nZSDxTk,What is the sequence of events in the video?,v_Hy54nZSDxTk_0,"The video starts with a group of people holding paintball guns and wearing paintball helmets while conversing. The cameraman finishes giving instructions and runs forward, shooting at people in the distance. The shooter makes his way through the park, shooting at people. A few people in front of him crouch and move back while holding their hands up. The video concludes with people walking back towards the exit with their hands up and the shooter avoiding being shot.",0 125,v_KApqxr02rcQ,What is the sequence of events in the video?,v_KApqxr02rcQ_0,"The video starts with Jessica Skillings from the dark blue team scoring a goal, followed by her team celebrating. Later, there is another clip of Jessica scoring another goal and the team celebrating again. The digital scoreboard is displayed at the end. ",0 126,v_BBKSKU6dGGk,In what way is the man clearing the snow?,v_BBKSKU6dGGk_0,The man is slowly clearing snow as he walks forward.,0 127,v_-HpCLXdtcas,What is the temporal sequence of events in the video?,v_-HpCLXdtcas_0,"The man is standing behind a barbell on the floor indoors. He bends down to lift the multi-colored barbell, squats and lifts it over his head, and drops it on the floor. He walks to the side and turns back before a man in a white t-shirt enters the scene on the right, ending the video.",0 128,v_9VtxNvLx6zA,What is the sequence of events in the volleyball game depicted in the video?,v_9VtxNvLx6zA_0,"The video shows a girl holding a volleyball in a gym. Two teams are seen playing and people can be seen sitting on chairs next to the wall. The wall is decorated with paw prints. The scoreboard can be spotted high up the wall behind the second team. The first girl dribbles the ball and serves it to the opposite team. A girl from the opposite team strikes the ball and sends it outside the court. An umpire is visible standing on a ladder next to the net, and later the ball is passed to the first team to serve again. The same girl serves the ball again, and the video concludes with the opposite team member hitting the ball outside the court.",0 129,v_AwgGYaV1lT0,What does the man in the video do after he breaks the wood into pieces with his axe?,v_AwgGYaV1lT0_0,"After breaking the wood into pieces with his axe, the man sticks the axe to the ground in front of him.",0 130,v_0X0u_3xUBPE,What is the sequence of events in the video related to the Tai Chi practice?,v_0X0u_3xUBPE_0,"The video begins with a white screen featuring a drawing of a woman in a Tai Chi pose, followed by a screen with a red background displaying the words 'Tai Chi Chuan Forma 8'. Next, the screen switches to show a man in a black Tai Chi uniform standing on a concrete floor outdoors, practicing Tai Chi and going through several stances over a few minutes. Throughout the practice, the background features stairs with two people sitting on top and a few trees dotted in the background, and the place the man is practicing seems to be in the shadow of the trees. The man then slowly winds down his practice, and the video ends with a red screen.",0 131,v_iABuDhagUm8,What is the sequence of events when the man starts chopping the log?,v_iABuDhagUm8_0,"The man walks slowly towards the chopping block with the axe in his right hand. He places a log on the block and swings the axe down, causing the log to crack. He repeats the action, causing a slight crack in the middle of the log. As he swings again, a piece of wood breaks off, and he continues to swing until the log finally breaks and falls to the ground. Throughout the process, a dog approaches and jumps up and down near the man to watch. At one point, the dog even runs away when the axe is about to strike the log. The video ends with the man throwing the axe and walking towards the camera.",0 132,v_jt-Vnap5KP4,What is the first action the old man takes in the video?,v_jt-Vnap5KP4_0,The video starts with the old man sitting on a mobility scooter.,0 133,v_agu58IVL7IQ,What does the man do in the next clip after holding the skateboard?,v_agu58IVL7IQ_0,"In the next clip, the man starts skating and performs flip tricks while other people are visible skating in the background. The man continues to skate and do flip tricks until the end of the video.",0 134,v_UtV69uNmzlE,What is the woman doing at the end of the video?,v_UtV69uNmzlE_0,"At the end of the video, the woman is continuing to shave her leg while sitting next to the toilet bowl.",0 135,v_ObrXN_FjVD8,What happens after the man cranks the lever on the sailboat?,v_ObrXN_FjVD8_0,"After the man in the blue t-shirt and glasses cranks the lever connected to a chain on the sailboat in the sea during the daytime, the following shot shows another sailboat with maroon sails sailing in the open sea. The sky is cloudy and the second boat is tilted to its side.",0 136,v_9AfQ2Q-96oE,In what order did events unfold during the disk throw competition?,v_9AfQ2Q-96oE_0,"First, the man began to spin to build momentum and threw the disk. A referee marked the spot where the disk landed. Replays of the throw were played several times, showing different angles of the man throwing the disk. The video then continues with several clips of the man making different disk throws one after another. Throughout the entire event, there were hundreds of spectators visible sitting on seats.",0 137,v_vMcXLYBcHsM,What happens in the kitchen after the woman finishes cutting the man's hair?,v_vMcXLYBcHsM_0,"After the woman finishes cutting the man's hair, a boy wearing a grey sweatshirt walks into the kitchen and pours something into the steaming pot. He is cooking something in the pot. As the camera pans, a man can be seen sitting on a chair by the wall and reading. The woman continues to give the man a haircut. In the following clip, the boy wearing the grey hoodie uses scissors to cut the hair at the top of the man's head. He then uses the clippers to clip hair behind the man's ears. The boy opens a cabinet to his right and takes a box out and holds it to the camera. The video ends as the boy leaves and the man in the orange shirt holds up a peace sign.",0 138,v_A904-cbaYDw,What does the video show about the Tai Chi practice?,v_A904-cbaYDw_0,The video shows a man wearing all-black clothes standing in sunlight on a lawn and instructing Tai Chi by demonstrating different hand and leg positions in a specific order.,0 139,v__B7rGFDRIww,What is the temporal sequence of events in the video?,v__B7rGFDRIww_0,"The video begins with a few blurry black-and-white frames where a woman is doing a pirouette, followed by the dance being performed for the song ""Let it Go"" from the movie Frozen. The song continues throughout the video with all the dancers dancing to it. The video continues with different shots of single and multiple people in different ballet poses. This is followed by a black and white shot of a woman wearing black clothes dancing inside a large building with a wet floor, and another woman dancing on a white stage with a white background. The next few shots are of different women continuing to dance, with a group of dancers in green outfits dancing on stage with a black background with overhead lights. A clip of a girl in a white tutu on a black stage is dancing, and another girl is dancing in front of an empty stage with chairs. Finally, the video ends with the same people from the beginning who are doing different poses, and a woman in an empty ballet studio practicing different poses in front of a mirror.",0 140,v_5tFfEA1JWjA,What is the temporal sequence of events in the video?,v_5tFfEA1JWjA_0,"The coach instructs the boy on the left, who is holding a basketball, and the boy proceeds to dunk the ball through the basket. He then catches the ball as it comes through the basket and continuously dunks the ball by repeatedly jumping high. Throughout the video, the boy continues to dunk the ball from either side of the basket while jumping.",0 141,v_u7THn6D6y5w,What does the little boy do on the armbar?,v_u7THn6D6y5w_0,The little boy puts both his hands on the armbar and swings his legs in the air and then puts them on the armbar.,0 142,v_AQnp2QAnwI0,Can you describe the sequence in which the dancers appeared on stage?,v_AQnp2QAnwI0_0,The video starts with a darkened auditorium. The lights on the stage turn on and a group of dancers appear.,0 143,v_N75m1Z4RqbA,What is the sequence of events in the video with regards to the dance performance?,v_N75m1Z4RqbA_0,"A man wearing a black shirt and pants is waiting in front of the camera. A woman in a black outfit walks up to him and he holds his hand to the woman. They proceed to the dance floor and begin to dance as the music plays. They are in a well-lit indoor studio with people standing by the walls to make space in the middle. An elevated platform with a music stand is visible on the right, with a few people standing against the railing of the platform. The dancers slowly make their way around the dance floor while they dance. The video ends as the music stops and the dancers separate. The audience is seen applauding.",0 144,v_yggwFa68Cp4,What is the first action that the boy takes in the video?,v_yggwFa68Cp4_0,"The video starts with the boy standing to the side of a brown wooden door, holding the bagpipes with his left hand. He is wearing a white shirt, a sleeveless black sweater, and brown pants. There is a black stool behind him with a brown bag on it and some equipment kept behind the boy to his left side. There is also a door behind him with glass panels and a brown cloth-like curtain covering the upper part of the door. ",0 145,v_ANaMmXJFE54,What is the sequence of events in the cheerleading routine performed in the video?,v_ANaMmXJFE54_0,"The video starts with the cheerleaders running into the basketball court and waving towards the spectators. They form bases and perform a basket toss where a group of bases lift and throw flyers into the air, who perform acrobatic movements, such as toe touch and twist before they land back down. They proceed to break apart and stand in formation some distance from each other. They perform flips and reform into bases to begin another stunt. They throw several flyers into the air and the flyers do several poses when they are held up. They continue doing routines with different formations and stunts until they end it with another stunt. At the beginning and throughout the routine, there are people standing near the team, a photographer near the basketball court, a few people behind a table who appear to be judges, and many people seated in the stands.",0 146,v_7orO93DICYw,What is the sequence of events in the video?,v_7orO93DICYw_0,"The video starts in a gym lit by overhead lights where there are several balance beams fixed to the ground with foam pads lining the floor. A man walks up to a balance beam and mounts it, then performs various gymnastics moves including a backflip and other balancing techniques. He spins in place and jumps onto the mat with a flip.",0 147,v_9hTcvGUnMBs,What is the progression of events in the high jump contest that is conducted in the video?,v_9hTcvGUnMBs_0,"The video begins with a high jump contest being conducted in a field. The participants attempt to jump over the horizontal bar and depending on their success, a particular colored flag is held up by the person standing near the bar. As the competition progresses, the height of the bar is increased. Finally, the video ends with a girl successfully jumping over the bar, followed by knocking it over.",0 148,v_60tIsGR0Zzg,What is the series of events when the boy starts to mow the lawn?,v_60tIsGR0Zzg_0,"First, the boy switches on the lawn mower and moves it forward. He then starts to mow one corner of the yard, with a black car visible next to the yard and a street behind him. Next, he moves on to the next patch of lawn and struggles to move the mower forward and back. He gets stuck in a subsequent patch and pulls back the mower. The front end of a silver sedan is visible in the driveway next door as the boy pulls back the mower. Finally, there is a shot of him from afar as he starts to mow the lawn from the edge of the yard during the daytime.",0 149,v_Ocid5pcnSVY,What is the order of the movements performed in the contemporary ballet dance by the women?,v_Ocid5pcnSVY_0,"The women start by turning around and slowly stepping forward and then they continue to move around the stage with hops, turns, and some synchronized moves.",0 150,v_PwTwGnAVFhQ,What was the woman doing in the video and how did the video end?,v_PwTwGnAVFhQ_0,The woman was practicing stepping on and stepping off the aerobics step. The video ended as the woman was still practicing.,0 151,v_IRua6QGP-Ow,What are the steps in the process of making the drink in the video?,v_IRua6QGP-Ow_0,"The bartender first pours measured spirits into a black cup using a jigger. He then mixes them using a tea whisk, and strains them into a mixer using a tea strainer. After adding ice cubes to the mixer, he shakes it and pours the mixture into a glass using a tea strainer. Finally, he rubs a lime on the rim of the glass and pushes it forward.",0 152,v_DOI6tsATsE4,What is the sequence of events in the video?,v_DOI6tsATsE4_0,"In the video, the initial scene shows a boy sitting at a table while holding his right hand to the side of his head, with a plate in front of him. A lamp is visible in the back near the wall, and the boy is looking into the camera. The video then shows a cutaway of a man wearing a white t-shirt looking at the camera in a room with a packed shelf in the back. Finally, the video ends with cutaway shots of the boy looking at the camera and looking away.",0 153,v_QT4d1nTQYSE,What is the first event that happens in the video?,v_QT4d1nTQYSE_0,"The video starts in an art studio as a man, whose name is Jonas Gerard, is about to begin a live painting performance.",0 154,v_ej9TkJVjK9M,What does the man do after tightening his belt?,v_ej9TkJVjK9M_0,"After tightening his belt, the man bends down and lifts the barbell. He then lifts it above his head before throwing it down.",0 155,v_8L1UjGLOCeI,What did the woman do after she completed the hopscotch pass?,v_8L1UjGLOCeI_0,"After completing the hopscotch pass, the woman turned around and hopped back to the spot she started from before opening the closed door behind her. She then turned to the camera and held her hands to the side.",0 156,v_c7S423zJqPo,What happens towards the end of the video in relation to the man working out?,v_c7S423zJqPo_0,"Towards the end of the video, the man wearing a green t-shirt who was working out can be seen slowing down and walking to the back of the class before the music stops. ",0 157,v_Bkhr72sazvQ,What event occurs while the man is speaking about the weight loss product?,v_Bkhr72sazvQ_0,"While speaking about the weight loss product, a cutaway image of five pounds of fat is shown followed by an image of five pounds of muscle. This shot sequence can be interpreted to signal weight loss and muscle gain.",0 158,v_Xmp_twSbkAg,What does the girl do after she puts her stuffed toy on the table?,v_Xmp_twSbkAg_0,"After the girl puts her stuffed toy on the table, the frame changes to her painting Ironman on a canvas. She is wearing a green and white long-sleeved T-shirt. She has some paint on a white plate and she is painting using a brush.",0 159,v_d-RYiiPzVKg,What does the man do after adding the oil into the vinegar bottle?,v_d-RYiiPzVKg_0,"After adding the oil, the man shakes the vinegar bottle to blend the mixture.",0 160,v_zDdD_qA86rg,What was the woman doing to ensure her safety as she climbed the hill?,v_zDdD_qA86rg_0,"The woman was anchoring her rope as she climbed the hill and attaching it to anchors, which helped to ensure her safety during the climb. Additionally, another person was belaying the rope at the bottom, providing extra safety. ",0 161,v_BmLDHLKiIdQ,Can you describe the temporal sequence of events in the archery competition?,v_BmLDHLKiIdQ_0,"Sure! The competitors start the contest by shooting arrows through a compound bow one after another while their points for that particular shot appear on the screen. Then, the reactions of the teammate and the spectators are shown after each shoot. They continue shooting until the final round where the second contender shoots and wins the contest. The commentators are shown applauding while the winner celebrates. Lastly, the audience is shown cheering for the winner and the runner-up is shown congratulating the winner.",0 162,v_9VflCeoPr9I,What is the sequence of events in the video related to kicking the red ball?,v_9VflCeoPr9I_0,"People are rolling the red ball towards each other and kicking it in turns. A man in a red shirt rolls the ball towards another person who runs towards the ball and kicks it. An old woman in a pink sweater standing in the distance runs towards the ball. A little boy catches the ball and throws it back to the man wearing the red shirt who rolls it to the next person. A woman runs towards the ball and kicks it to the left side of the field. The ball is caught by the old woman again, and as the next person kicks the ball, the old woman runs towards a ring near other people and celebrates. Finally, a young girl kicks the ball towards a waiting boy who catches it to end the video.",0 163,v_1kwIYXB4b8s,What is the sequence of events in the video?,v_1kwIYXB4b8s_0,"The video starts with the words ""DISCOVER Moose Jaw"" displayed on a light blue screen with a picture of a moose. Then a man sitting on a chair can be seen, with a woman standing behind using a trimmer to shave his head. Another man is seen holding a mobile phone recording the man getting his haircut. Other people can be seen standing around the room, with a person sitting on a sofa towards the back. The man getting his head shaved is sitting in front of a mirror speaking to someone. A close-up of the shave behind the man's head is shown. In the end, the lady shaving is done and walks away. The man holds a thumbs up.",0 164,v_kPn9NzU4W48,What is the sequence of events in the video?,v_kPn9NzU4W48_0,"The video begins with a teen walking towards the camera and putting on his boxing gloves. He is in a basketball court with walls painted white at the top half and blue at the bottom. Another boy, Tyler, wearing a cutoff t-shirt and boxing gloves is introduced and they both take a boxing stance. They begin sparring with kicks and proceed to punches while dodging each other’s hits. They move around the court while kickboxing until Tyler keeps pushing John back and the video ends.",0 165,v_4iFlM_Zu7xs,What is the sequence of stunts performed by the two riders in the video?,v_4iFlM_Zu7xs_0,"The two riders are shown riding and jumping in a circle, performing a series of jumps one after another, with a person holding a camera in the middle of the dirt track. The video ends with the two bikers jumping over a hill one after the other.",0 166,v_tt-uDaZQWWc,What is the woman doing at the beginning of the video and how does it end?,v_tt-uDaZQWWc_0,"At the beginning of the video, the woman is shown shaving another woman’s leg with a pink razor while she is wearing a yellow t-shirt and multi-colored pajamas with some cosmetics and cream bottles present in the room. The video ends with the woman who got her leg shaved shaking her hand while making a fist and then showing it to the other woman.",0 167,v_Dbas61NkTV0,What is the sequence of events in the cheer squad routine shown in the video?,v_Dbas61NkTV0_0,"The cheer squad routine in the video starts with the girls standing in formation on a stage. As they begin their routine, a few members perform backflips. Two groups are formed in the back, which throw two girls into the air and catch them. Next, a few girls in the front of the group perform backflips and move to the side of the stage. Two more bases are formed in the back and one lifts a girl and throws her to the other group. The squad then forms multiple bases and lifts a member of the squad up. The girls are then thrown into the air, twist and land back down. The routine continues with the squad performing different stunts while in various formations. Two men wearing black outfits are seen on the stage during the stunts, supervising. The video ends with the squad performing a dance and ending it with a group formation.",0 168,v_j6ElczD-Pw4,What did the girl do after tapping the luffa?,v_j6ElczD-Pw4_0,"After tapping the luffa on her face, sud stuck to the girl’s face. She washed the suds off with water.",0 169,v_e3DB_y78IHc,What is the order of the different animals shown in the video?,v_e3DB_y78IHc_0,"The video opens with views of hoardings advertising ""CHEYENNE WYOMING"" and a beige and black building for fishing information. Then, a wooden cabin, a sign pointing to a ""Fishing Pond,"" and a building advertising ""Cowboy Country"" are shown. After that, there are clips of two men talking near a fence with a horse nearby. Horses are then shown saddled and tied to a fence, followed by people riding horses near a barn, through a brush, and near a stream on a green hill. Other animals shown later in the video include chickens, a goat, a black bull, and a brown cow. The video ends with shots of ostriches, alpacas, and camels grazing one after another.",0 170,v_r6l4mxphtX0,What does the woman do after applying lipstick?,v_r6l4mxphtX0_0,"After applying lipstick, the woman proceeds to apply makeup to her face and eyes. She then sneezes into a tissue, holds it to her nose as she sneezes again before wiping her nose with it.",0 171,v_Oskk7eLgerM,In what order does the man bathe the dog in the video?,v_Oskk7eLgerM_0,"The man first lowers the dog into the bathtub, then starts to bathe the dog using a handheld showerhead. He adjusts the water and holds it over the dog. He then squeezes soap from a bottle and rubs the dog down. Using his hands to clean the dog, he washes the soap away using the showerhead, and finally finishes off by toweling the dog dry. He then lifts the dog off the bathtub.",0 172,v_T35cHr4pjkc,What is the temporal sequence of events in the video?,v_T35cHr4pjkc_0,"In the first clip, a man is seen drinking from a cup in a well-lit cafe. In the next clip, the man is dancing in the cafe. Following that, he is shown drinking from a cup with one hand while having another cup in his left hand. In the final clip, he is again dancing with his hands at his sides while a person sitting near the counter is watching him. During all the clips, people can be seen sitting by the tables and waiting near the counters. Additionally, there is a fridge with bottles of drinks placed against the wall in the back of the man. A server wearing an apron and a black cap can be seen behind the service counter.",0 173,v_9ZVWD0ZKXZg,What does the boy do just a few feet away from the top of the rock?,v_9ZVWD0ZKXZg_0,"Just a few feet away from the top of the rock, the boy pauses to rest and applies chalk to his hand before continuing to climb to the top.",0 174,v_1dDAcUliXrQ,What happens on the badminton court after one of the women from the first team walks out of the court?,v_1dDAcUliXrQ_0,"After one of the women from the first team walks out of the court, the remaining players continue to play the game while occasionally one of the teams fails to hit the shuttle. The woman who walked out of the court picks up a purse while walking towards the back of the court and briefly speaks to one of her teammates while walking away. The remaining players briefly celebrate and continue playing. The game continues with the first team short a teammate for a few exchanges where the team with three players also fails to hit their shuttle. In the end, one of the members of the team with two players also fails to hit the shuttle, when the rest of the players converge towards the net to talk.",0 175,v_KvtqF0LaWU0,What is the order of events in the video?,v_KvtqF0LaWU0_0,"The video starts with a credit roll, followed by a clip showing a girl in a red outfit struggling to open a jar while standing behind a black stone kitchen counter. A wooden cutting board and a steel bowl can be seen on the counter, and a chrome-colored fridge and ovens are visible in the back. In the next clip, a woman wearing a sweater joins the girl at the counter, and the girl holds up different ingredients to the camera. The girl then prepares the ingredients by chopping cherry tomatoes and squeezing basil paste from a tube into the bowl. She then sprinkles some contents from a bottle into the bowl. In the next clip, a man wearing a white shirt tastes the mixture with a spoon and speaks to the camera. Finally, the video ends with a list of ingredients.",0 176,v_3VjaC7wdMso,What is the sequence of events in the beginning of the video?,v_3VjaC7wdMso_0,"The video starts with a girl playing the piano by referencing the sheet music in front of her. She is sitting by an open window with sunlight streaming through it. Trees are visible outside the window and the edge of a bed is visible behind the chair. Eventually, the girl starts to sing while playing the piano.",0 177,v_Pr5K2Jh2X94,What happens after the athlete completes his long jump?,v_Pr5K2Jh2X94_0,"After the athlete completes his long jump, a white flag is held up by a referee signifying a valid jump. The athlete then celebrates and speaks to observers before eventually walking away. Meanwhile, other people in yellow outfits can be seen walking towards the start of the track.",0 178,v_cms1BP4eKOA,What is the sequence of events in the basketball drill shown in the video?,v_cms1BP4eKOA_0,"The players start by running around the cone and attacking the basket. Then, they retrieve the ball from the rebounder machine under the basket and run to the opposite basket to attack it. They dribble as they run to the opposite basket and make a point guard entry pass to attack the basket. The video ends with the players still performing the drill.",0 179,v_YU-dUWGOoD4,What is the sequence of events in the gymnastics demonstration?,v_YU-dUWGOoD4_0,"The gymnastics demonstration begins with a man wearing a white vest and red pants getting ready to compete on a pommel horse. He then places his hands on the pommel horse and begins his demonstration as he spins and rotates around the pommel horse. After he reaches the edge of the pommel horse, he drops to the floor before getting back on the pommel horse to restart his demonstration. He finishes his demonstration with a handstand and jumps to the floor.",0 180,v_zRqJZ0u6f88,What task did the man perform after gesturing toward the window in the dimly lit room?,v_zRqJZ0u6f88_0,"After gesturing toward the window, the man started cleaning the window with a cloth and a spray bottle. He sprayed liquid on the window using the spray bottle before rubbing it with the cloth. He was still holding both the bottle and cloth while he talked to the camera at the end of the video.",0 181,v_Ivq9_wPFNs4,What is the order of events in the video?,v_Ivq9_wPFNs4_0,"The video starts with Britney Reese, a woman in sportswear, leaning forward. Her name and stats is then shown on a graphic on the screen, after which she runs and performs a high jump into a sand pit. Two men with measuring sticks are sitting on stools near the sand pit and a man is sitting behind a banner with the measurements. After her jump, Britney Reese gets up and is seen running in the lane while clapping her hands. There are people in the seating area and flags of different countries are hung on the railings near the seating area. The video ends with a shot of a man in the spectator stand dressed in a suit, clapping with other people sitting around him.",0 182,v_MxvKscpouzY,Can you describe the temporal sequence of events in the video?,v_MxvKscpouzY_0,"Sure! The video starts with a table tennis match between two players, one wearing a red t-shirt and the other wearing a blue t-shirt and shorts. As they play, the player in the red t-shirt hits the ball and the player in the blue t-shirt misses. A shot of the exchange from behind the player in the blue t-shirt is shown. After this, the video continues to show matches between different players of different nationalities. Finally, the video ends with a man in a blue and yellow t-shirt with the name 'Wang Hao' printed on its back winning a game and celebrating. He holds his hands up as the spectators cheer, and then shakes hands with the referees. A still image of the player with his hands held wide at his sides is shown.",0 183,v_LzPppxSWYNY,What happens as the first woman completes her long jump in the video?,v_LzPppxSWYNY_0,"As the first woman completes her long jump, a woman standing a few feet back walks into the frame holding a measuring tape. This indicates that she is there to measure and record the distance of the jump.",0 184,v_QY3q4DuiGq8,What is the sequence of events during the discus throwing competition shown in the video?,v_QY3q4DuiGq8_0,"First, the girl wearing a blue outfit swings her arm and then spins in place to throw the discus while standing in a throwing circle within a practice net during the daytime. After the throw, she jogs away from the throwing circle. Trees are visible in the background behind the practice net.",0 185,v_mMebSMn5D0E,What is the temporal sequence of events in the video?,v_mMebSMn5D0E_0,"The man and woman walk into a piano store and sit at a piano. The man starts playing while the woman stands next to him. He moves to another piano and starts playing again, the woman slowly walks towards him. In the following clip, the man is at a closed restaurant with a woman in a white robe standing near him. Next, a man in a brown jacket watches an orchestra from the back of the audience. He then walks towards the stage and gestures like a conductor.",0 186,v_dO01vfB9z4g,What does the video show about the temporal sequence of events in the kitchen?,v_dO01vfB9z4g_0,"The video depicts the sequence of a little boy scrubbing dishes in the kitchen sink, with the sink full of dirty dishes. The boy first starts scrubbing a white bowl and then continues on to the next bowl, placing the already cleaned bowl in the second empty sink. As he continues scrubbing and placing the dishes, the water in the second sink is turned on and dishes are being rinsed and cleaned. During this entire process, a woman recording the boy comes near and hands him a scrubber. The video ends with the boy looking back and continuing to scrub dishes.",0 187,v_4-KiAur4dI8,What is the sequence of events in the video?,v_4-KiAur4dI8_0,"The video begins with an aerial shot showing several people with kayaks on the lakeshore, and buildings in the distance. It then cuts to a man wearing a lifejacket carrying a red kayak, followed by shots of several kayaks in the river and people rowing through wide and narrow streams on their kayaks. Next, a man is seen carrying his kayak and running on the street, followed by shots of people running on paths and up outdoor stairs. The video then shows people running and cycling through the woods, with cyclists struggling to pedal through uphill and raised pathways, and finally, a cyclist makes it through the finish line and drinks from a can of Red Bull. Another cyclist crosses the finish line, and the video ends with the Red Bull CROSSWAYS logo.",0 188,v_X9Y-b-SbkIU,Can you describe the temporal sequence of events in the video?,v_X9Y-b-SbkIU_0,"The video starts with a display of text on a background, followed by a scene where a woman and a man are playing squash in a well-lit court with white walls and red stripes. The camera then shifts to an instructor teaching two men how to play squash, and then changes multiple times to the instructor teaching people how to play squash. Each player serves the ball and hits it towards the wall with their rackets. The video ends with some text displayed and a web address.",0 189,v_1XNHcfxTqW0,What happens right before the man stops playing the harmonica?,v_1XNHcfxTqW0_0,"Right before the man stops playing the harmonica, he holds his hand out to someone.",0 190,v_FzqZsQx20jY,What happened when the female gymnast was performing a somersault?,v_FzqZsQx20jY_0,"While performing a somersault, the female gymnast stumbled and almost fell.",0 191,v_uub0z8wJfhU,What interrupts the man while he is playing the violin?,v_uub0z8wJfhU_0,"The man is interrupted while playing the violin, and he stops and looks to the side before continuing to play.",0 192,v_X5kj4fZ38rc,What is the sequence of events in the video relating to the woman playing the violin?,v_X5kj4fZ38rc_0,"The woman starts by standing and smiling, before playing the violin by putting it on her shoulder and vibrating the violin strings with the bow while using her fingers to control the strings. She then stops playing the violin for a brief amount of time and starts again before eventually stopping and fading into a black screen",0 193,v_AE2gHOwcV14,What is the temporal sequence of events in the video?,v_AE2gHOwcV14_0,"The girl starts by doing a few balancing acts and proceeds towards the end of the balance beam. Once she is at the end, she turns around and does a front summersault. She then leans back on the balance beam and does a balancing act. She proceeds to do a handstand for a moment and lands on the ground.",0 194,v_bphckj0BV5U,What is the sequence of events in the video related to starting a fire?,v_bphckj0BV5U_0,"The video begins with the woman gathering dry leaves and tinder, then she breaks them up and places them in front of her. She holds up a carbon knife and a Ferro rod and strikes them against each other to light the tinder. The video ends with the woman holding up the green Bic lighter.",0 195,v_rGOOlcdpfLg,What is the sequence of events in the video?,v_rGOOlcdpfLg_0,"The woman starts by speaking to the camera wearing a red and blue checkered shirt in a bedroom with posters on the back wall. She then applies black makeup to her eyebrows, eye shadow, eyeliner, attempts to apply back highlights to her lower eyelid causing herself pain, and finally applies liner to her lips. The video ends with her buttoning her shirt and holding a gun to the back of a man's head she dragged from her left.",0 196,v_E5YBb4rzV30,What is the sequence of events of the woman preparing the tuna wrap?,v_E5YBb4rzV30_0,"First, she added mayonnaise, relish, and mustard into a mixing bowl and mixed the ingredients until they were smooth. Then, she added celery, chopped onion, and a can of tuna to the bowl and mixed all the ingredients together. After that, she arranged large lettuce leaves on a plate and placed spoonfuls of the tuna mixture in the center of each leaf. Finally, she folded the lettuce leaves over the mixture like wraps and held them up to the camera.",0 197,v_dRF1C_sBE5M,What happens after the man in the T-shirt finishes his drink?,v_dRF1C_sBE5M_0,"After finishing his drink, the man in the T-shirt yanks the axe out of the log and cuts it in two. Then, he proceeds to chop several more logs before showing a girl how to dislodge an axe from a log. The girl tries to dislodge the axe on her own but fails. The man then shows her how to chop the wood properly and she eventually succeeds in splitting the logs.",0 198,v_fMVuGUBs2cs,What is the sequence of steps the bartender takes when making the Bloody Mary drink in the video?,v_fMVuGUBs2cs_0,"The bartender in the video first grabs a cocktail mixer and places it in front of him on the bar counter. He then adds the necessary ingredients to the mixer while explaining how the drink is made. He grabs another cocktail mixer from beneath the bar counter and adds ice to it. He then starts mixing the drink using the two mixers. Finally, he strains the drink into another glass with ice in it and garnishes the drink. ",0 199,v_H33jSILKmfI,What is the sequence of events observed in the video?,v_H33jSILKmfI_0,"The video shows a boy in a white martial arts uniform practicing training drills in a well-lit gym with a light wooden floor. A group of boys are sitting behind a table by the left wall, while a few men in suits are sitting behind tables on the other side by the right wall, observing the drills performed by the boy. As the boy moves to the right, a young boy can be seen standing while facing away from the camera and observing the drilling boy. The boy continues to perform the drills until the video ends.",0 200,v_-nl4G-00PtA,What happens after the woman wearing an orange top walks up to the man in the kitchen?,v_-nl4G-00PtA_0,"After the woman in the orange top walks up to the man washing dishes in the kitchen and throws a few items into the sink, the man steps away startled.",0 201,v_NvRH4SoF09c,What time of day is the man playing the flute in the meadow?,v_NvRH4SoF09c_0,"The man is playing the flute in the meadow during the daytime, as mentioned in the given information.",0 202,v_PSB1nM3QXxg,Can you describe the sequence of the martial arts demonstration?,v_PSB1nM3QXxg_0,"Sure! Two boys stood apart from the rest of the group and demonstrated martial arts movements. Once they were done, they turned left and bowed. The other students then clapped.",0 203,v_JiNcVb97CnA,What type of dancing do the couple do during the video and how does the video end?,v_JiNcVb97CnA_0,The couple in the video mostly do partner twirls during their dance. The video ends with the two still dancing.,0 204,v_MidLOhRnpnU,What happens in the last clip of the video?,v_MidLOhRnpnU_0,"In the last clip of the video, multiple frames of the video are played in a single frame in a mosaic pattern and the logo and text with ""CANCER PATIENTS AID ASSOCIATION"" appear on the screen. This clip indicates the end of the video.",0 205,v_lIo8HfzzSNs,What is the first step the chef takes in preparing the Russian salad?,v_lIo8HfzzSNs_0,"The chef begins preparing the Russian salad by making the dressing. He adds two T-spoons of cream and two T-spoons of mayonnaise to a glass bowl, mixes the two ingredients, and adds some salt and pepper.",0 206,v_TKgU9QJXw2w,What happens after the boy wearing a grey t-shirt and black pants hits the ball towards the wall?,v_TKgU9QJXw2w_0,"After the boy in the grey t-shirt and black pants serves the ball and hits it towards the wall, the ball bounces towards the back where the other players join the game. As they are playing, a boy wearing a white t-shirt and red pants accidentally hits a boy in the head who is standing in front of him. The boy who was hit goes down and lies on the ground with his hand on his head.",0 207,v_WAvz9zHwWo4,What does the girl do after swinging onto the smaller high bar?,v_WAvz9zHwWo4_0,"After swinging onto the smaller high bar, the girl stands on it and jumps back to the bigger high bar. She continues to swing from it a few more times before landing on the mat.",0 208,v_uIcMgjypbqk,"Can you describe the sequence of events from the beginning of the video to the end, with respect to the lighting on stage and the musicians appearing on stage?",v_uIcMgjypbqk_0,"The video starts with a bright light on the stage and the audience screaming, followed by a man standing in the light with a musical instrument. Then, a big white ball is thrown on the stage and the man leaves the frame. Afterwards, the bright light transitions into red light and a man with a guitar appears on stage along with another man running on stage. Later, a man comes on stage with his guitar, sits on the edge of the stage, and plays his guitar while the audience cheers for him. Finally, the video ends with the audience applauding and the man walking off the stage.",0 209,v_vaV6_bxiTLI,What happens last in the video?,v_vaV6_bxiTLI_0,"At the end of the video, the boy wearing a green t-shirt who was sitting on the sidewalk holding a camera gets up.",0 210,v_N5LZMH9mZVU,What part of the routine involves multiple bases and fliers?,v_N5LZMH9mZVU_0,"After their dance routine, the cheer squad performs another stunt involving multiple bases and fliers.",0 211,v_z-EPAHsmTMA,What happens after the channel changes to a man with a phone receiver in his ear?,v_z-EPAHsmTMA_0,"After the channel changes to a man with a phone receiver in his ear, it changes back to show the girl washing her face with water and carefully washing all the foam with water.",0 212,v_pJ3sECWr5Xg,What happens after the boy enters the stage and dances around the ballet dancers wearing black dresses?,v_pJ3sECWr5Xg_0,"After the boy enters the stage and dances around the ballet dancers wearing black dresses, they leave as they dance. The boy and the girl wearing the white ballet dress then hold hands. In the following clip, girls wearing white ballet dresses are on the stage kneeling and touching their foreheads to the ground. They have their hands on their back. They are fluttering their hands. They then begin dancing.",0 213,v_vI-O6QWIIGU,What happens when the gymnast misses a hold in his routine?,v_vI-O6QWIIGU_0,"When the gymnast misses a hold in his routine, he drops to the floor and walks over to a bowl next to the pommel horse to apply chalk to his hands. After that, a man wearing a grey sweater walks over to the gymnast and speaks to him for a moment. The gymnast then walks back to the pommel horse and restarts his routine.",0 214,v_XPiMnbCr-sc,How does the woman gift-wrap the box with the cloth on the wooden table?,v_XPiMnbCr-sc_0,"The woman first covers the box with one end of the cloth, then covers it with the other end while folding it, and finally takes the other two sides of the cloth and ties a knot.",0 215,v_dN8LBey17O8,What was the sequence of events for the man mowing his lawn?,v_dN8LBey17O8_0,"The man began by measuring the length of the grass on his lawn using a ruler. Next, he adjusted his lawn mower to cut longer grass and proceeded to mow the lawn straight across his yard. He then emptied the clippings from the mower and measured the length of the grass again. The man then adjusted his mower to cut the grass down to three inches and continued to mow from north to south. In the end, he measured the length of the grass using a ruler and showed a panoramic view of his cut lawn.",0 216,v_w_CXbraJr58,What is the scene sequence at the end of the video?,v_w_CXbraJr58_0,"At the end of the video, the musician has stopped playing and people are still standing in front of him. The camera pans to show a boy in a grey t-shirt and backpack walking in front of the camera.",0 217,v_I7slpTgl0jc,What does the man do after releasing the hammer through the open end of the practice net?,v_I7slpTgl0jc_0,"After releasing the hammer through the open end of the practice net, the man watches for the landing of the hammer and turns around and claps.",0 218,v_ks018ZYzrx4,What is the first thing shown in the video?,v_ks018ZYzrx4_0,"The video begins with the text ""Arenacross 2012"" appearing on a black screen.",0 219,v_ZLJ2BmBkLJg,What does the man do after he trims his face and neck with the trimmers?,v_ZLJ2BmBkLJg_0,"Once the man has trimmed his face and neck with the trimmers, he keeps the trimmer aside and applies shaving foam on his face. He then uses a razor to shave his face and neck. After he is done, he wipes his face with a cloth and applies aftershave while adjusting his hair.",0 220,v_oD8sGLt2FR0,What time of day was the boy seen shoveling snow in the driveway?,v_oD8sGLt2FR0_0,The boy was seen shoveling snow in the driveway during the daytime.,0 221,v_Sf27WmcLb2w,What happens after the team on the right misses the hit?,v_Sf27WmcLb2w_0,"After the team on the right misses the hit, the ball is given back to the left side, and the same person who served the ball before does it again. The team on the right bounces the ball amongst themselves and hit it to the other side, they miss the return hit and lose the exchange. The video continues as both teams continue to exchange hits until the players stop playing.",0 222,v_vSv1qMMt4Bk,What is the temporal sequence of events in the video?,v_vSv1qMMt4Bk_0,"The video begins with two newscasters in a well-lit studio reading the news. As they speak, a reporter identified as Jocelyn Maminta is shown reporting outdoors during the nighttime. In the next clip, a man shovels snow during the daytime. The following clip shows the man being interviewed, followed by a woman shoveling snow on a driveway and being interviewed. Finally, the reporter is shown following the directions of a woman on how to use a shovel, after which they speak for a while before the video ends.",0 223,v_KsFid_YVsn0,How do the dancers transition from dancing outdoors to indoors in the video?,v_KsFid_YVsn0_0,"The dancers transition from dancing outdoors to indoors in the video when they move to an indoor basketball court. At the beginning, the dancers stand apart from each other and then walk towards each other when the music starts. The basketball court is dimly lit with red light while they continue their tango dance.",0 224,v_hFpSoRlpyMo,What happened after the fielder prevented the ball from touching the boundary rope?,v_hFpSoRlpyMo_0,"After the fielder prevented the ball from touching the boundary rope, he fell on the other side of the rope. He then threw the ball back to the wicket player who removed the bails from the stumps, resulting in the batsman being given out. The players gathered around the pitch and one of the umpires appealed the run out to the third umpire. The big screen in the stadium displayed the message 'OUT' and the batsman was seen looking at the big screen near the exit of the field.",0 225,v_p9lhwYsBWdc,What happens after the window cleaners in costumes are interviewed?,v_p9lhwYsBWdc_0,"After the window cleaners in costumes are interviewed, the next clip shows the two cleaners being lowered onto the ground.",0 226,v_aOxRwTlkY80,What is the sequence of events in preparing the pasta dish shown in the video?,v_aOxRwTlkY80_0,"The man starts by adding garlic to a pan with oil, followed by chillies. After cooking these two ingredients for a minute, he adds the cooked pasta and chopped parsley. He adds ground pepper and finishes the dish by mixing it all together.",0 227,v_4VdS1eN3dv4,What is the sequence of the cricket games played throughout the video?,v_4VdS1eN3dv4_0,"The video starts with people playing cricket in a backyard during the daytime. Later, they are seen playing in a garage with a green ball that hits the bowler in the head. They then appear to be playing in the same backyard at night under floodlights. There is also a clip of a different game being played during the day, where a batsman hits the ball towards the fence. The game is played over several clips both in the daytime and at night before ending with still images of the batsman holding the bat. Moreover, there is a shot of a fluorescent wicket set in between the clips.",0 228,v_EhzHU0gkrzA,What is the order in which the gymnast performs their stunts?,v_EhzHU0gkrzA_0,"The gymnast starts by swinging on the parallel bars and performing a handstand. They then swing back and repeat the stunt while turning in the opposite direction. Finally, they swing on the bars and land on the foam mat below.",0 229,v_6G8m-vsGTA8,What events occur in the beginning of the video and how do they contribute to the temporal understanding of the video?,v_6G8m-vsGTA8_0,"The video starts with a man sitting in a hair salon chair holding a camera and recording himself. A woman is seen spraying water and combing his hair before cutting it at the back. Other customers were also present in the salon, getting their hair cut. These events indicate that the beginning of the video shows the preparation for the main event, which is the man getting a haircut, and sets the stage for the rest of the video.",0 230,v_ZrSK-fisXGg,What was the sequence of events in the video of the woman getting her ears pierced in the store?,v_ZrSK-fisXGg_0,"In the video, we see a woman sitting on a chair in a well-lit store. A woman wearing transparent gloves then uses an ear-piercing gun to attach a stud to the woman's earlobe. She pierces the other ear as well and then secures the studs from behind the ears. Finally, the video ends with close-up shots of the freshly pierced ears.",0 231,v_p07Y--q4JQw,In what order was the clear solution applied to the woman's fingers?,v_p07Y--q4JQw_0,The man started applying the solution on one finger after another until he completed all the fingers of the woman.,0 232,v_TsHek6oZYXU,What are the different Tai Chi movements performed by the master?,v_TsHek6oZYXU_0,"The master performs several Tai Chi movements, where he moves both his hands forward and backward. He also performs a kick followed by a punch and another forward movement with both his hands. These movements are accompanied by text on the screen, indicating the name and purpose of the movements.",0 233,v_kfO5PGlsMJw,What is the sequence of events in the karate demonstration?,v_kfO5PGlsMJw_0,"The video starts with a boy in a karate uniform on a stage, wearing a black belt. He goes through different karate moves quickly, then bows to the audience and exits the stage on the right. After that, a different boy enters the stage and starts his own demonstration. Both boys high-five each other and start a routine together with synchronized movements. The two boys take a bow and two adults enter the stage from either side to end the demonstration.",0 234,v_QN-4aLiDhiQ,What is the sequence of events in the video related to the tattoo on the girl's stomach?,v_QN-4aLiDhiQ_0,"The video starts with a girl in a blue shirt leaning back in a chair as a tattoo artist cleans the area on the right side of her stomach. A little girl walks behind the chair as the tattoo artist starts to tattoo using a henna cone. Throughout the process, the girl getting the tattoo is speaking to people off-camera and holding up her shirt. As the tattoo artist slowly finishes a star tattoo on the girl's stomach, she looks down. The video ends as the artist completes the tattoo and the camera focuses on the finished design.",0 235,v_86Unahb4sJM,What is the temporal sequence of events in the makeup tutorial video?,v_86Unahb4sJM_0,"The video starts with the woman applying concealer on different areas of her face, followed by spreading the makeup using her finger. She then applies foundation throughout her face using a brush, followed by bronzer diagonally on her cheeks using a small brush. The woman then applies eyeliner and mascara on her eyelashes using a small applier. She continues by darkening her eyebrows with mascara and applies lipgloss. The video ends with the woman looking into the camera and smiling, while showing earrings.",0 236,v_jN2CFk0xKp8,What is the sequence of events in the video related to the man carrying a vacuum in the office?,v_jN2CFk0xKp8_0,"In the beginning of the video, a man wearing a red polo shirt and blue trousers is seen carrying a vacuum in his back in an office with cubicles visible on either side of him. He is vacuuming the carpet. In the next clip, the man is in a different office with a window overlooking the outside that is covered in frost. A truck is seen parked outside and trees without leaves are visible. The man is vacuuming the ceiling of the office. Finally, a different man wearing a backpack vacuum is standing sideways in the office and speaking to the camera.",0 237,v_UGWOtDmIcns,What happens to the man rock climbing in the video?,v_UGWOtDmIcns_0,"The man wearing dark blue jeans and black & red shoes, rock climbs up the wall by putting both his hands in the crack of the rock walls for support and climbing with his legs. However, his fingers get stuck into the crack of the rock wall and he falls down as he reaches almost to the top of the wall.",0 238,v_PNuJUYo3Hf8,What time of day did the foil racing competition take place in the video?,v_PNuJUYo3Hf8_0,The foil racing competition took place during the day as shown by the aerial view of the starting line with several observer boats sailing around.,0 239,v_TMAXjnsN0Mk,What does the woman do after stuffing the Uggs with tissue paper?,v_TMAXjnsN0Mk_0,"After stuffing the Uggs with tissue paper, the woman can be seen brushing the Uggs, then wetting them using a sponge and some water, and finally diluting the water with Ugg cleaner and conditioner and using the sponge to apply this mixture to the Uggs. She again brushes the Uggs.",0 240,v_JG7T6qtO4jg,What move is demonstrated by the boy in olive shorts towards the end of the video?,v_JG7T6qtO4jg_0,"The boy in olive shorts starts to demonstrate the Zulu Spin move towards the end of the video. He kneels on the ground when he is done demonstrating and shows the complete steps of the Zulu spin slowly, which is the last scene in the video.",0 241,v__ja1fre9OTE,What is the sequence of events in the gymnastics competition shown in the video?,v__ja1fre9OTE_0,"The video begins with an overhead shot of a gymnastics competition. A gymnast is standing next to a balance beam on an elevated platform. Judges are visible sitting at a table attached to the platform. Two people holding video cameras, recording the gymnast can be seen. There is another platform perpendicular to the first one, some distance away. People are sitting on chairs near this platform. Off to the left, we see another group of judges sitting behind a table. The gymnast starts the competition by mounting the balance beam and doing a handstand. She follows up with a front flip and backflip. She continues to do different balance poses along with turns, jumps, and leaps. The video ends with the gymnast doing a dismount with cartwheels and jumping off the balance wheel. She then poses and walks off the stage.",0 242,v_N1_pNhVqG20,What type of stunt does the surfer perform after performing flips and turns while windsurfing?,v_N1_pNhVqG20_0,The surfer bends his sail and jumps and rotates on his surfboard. He then performs a one-handed burner by pushing the sail all the way down and jump-twisting on his board.,0 243,v_skr8x0kUVwg,What is the temporal sequence of events in the video?,v_skr8x0kUVwg_0,"The video starts with a group of people in orange T-shirts standing in a line outdoors during the daytime. Then, a little boy in an orange t-shirt kicks a ball that comes towards him. After that, a person in a red T-shirt runs towards him. Then, the little girl kicks the ball as she runs away, and the girl in the red T-shirt follows the girl. Throughout the field, other people are visible, including a man in a white cap who has a camera in his hands. After that, a girl wearing an orange t-shirt speaks to the little girl and takes her back to the line. Finally, the video ends with the girl in a red t-shirt again throwing the ball toward the girl and running toward her.",0 244,v_82EtiBkAsPg,What happens at the end of the video with the man playing the bagpipe?,v_82EtiBkAsPg_0,The video ends with a shaky shot of the man playing the bagpipe.,0 245,v_YnjITZnk6OE,What are the players doing on the hockey rink?,v_YnjITZnk6OE_0,The players on the hockey rink are doing drills. They are running side to side and diving and jumping through obstacles placed on the ground while holding a hockey stick in one hand and wearing hockey gloves in the other.,0 246,v_UNJTM62HyqQ,What is the first action the chef takes in the video?,v_UNJTM62HyqQ_0,The chef in the video starts by pointing towards the ingredients kept on a metal table in front of him.,0 247,v_7OcxT66BxX0,What events occur at the beginning and end of the video?,v_7OcxT66BxX0_0,"At the beginning of the video, a man is shown wearing a black jacket and fedora, playing a harmonica and singing on a stage with lights shining from the top while people are visible sitting in darkened seats. As the man continues to sing, he includes the audience and plays the harmonica for a few stretches. At the end of the video, he finishes singing and fixes the mic back on the stand before walking off to the side.",0 248,v_aDe5hUB3AdY,What is the temporal sequence of events in the video?,v_aDe5hUB3AdY_0,"The video starts with the scene of three dinghies sailing in the sea. In the next clip, sailors are practicing capsizing training. After that, a boy is seen sailing a dingy, and then multiple people are seen sailing dinghies; one boy sails and turns near the boat the camera person is on. The video ends with the story of two boys sitting and sailing on a dingy. ",0 249,v_5qY9yPt-5Go,What happens after the boy places the cup of coffee in front of the dog?,v_5qY9yPt-5Go_0,The dog goes to the cup and starts to drink the coffee.,0 250,v_hvrKRg166eQ,What is the order of the events shown in the video?,v_hvrKRg166eQ_0,"The video starts with three people sitting on a curved couch with coffee cups on the table, followed by a man in a suit speaking to the camera. Next, a teen is shown standing behind a podium in a classroom speaking to the class. This is followed by women sitting on a bench in cheerleader outfits with the subsequent clip showing a man wearing a black T-shirt and a cap giving instructions to girls in a hall. Next, a cheer squad performing a routine on a stage is shown. The video continues to show different cheer squads performing on stage, with a clip of girls who are watching the stage and walk away crying included. The video further features cheerleaders training and concludes with cheerleaders celebrating.",0 251,v_SEVVSei-r6w,How does the man start his practice of hammer throwing in the video?,v_SEVVSei-r6w_0,"The man starts his practice by swinging the hammer around him a few times before spinning, and then he throws the hammer through the open end of the practice net.",0 252,v_LuH7I7Rxju8,What happened after the man broke the laptop with his leg?,v_LuH7I7Rxju8_0,"After the man accidentally kicked the laptop while breakdancing, he sat down and turned around to look at the laptop. He then picked up the broken laptop along with a fallen piece and it appeared to be broken at the hinge.",0 253,v_UaO7bS5Ky6M,What is the first thing the woman does when the performance starts and how does she continue?,v_UaO7bS5Ky6M_0,The woman starts her performance by doing ballet steps by standing on her toes and moving both her hands. She does ballet steps by doing twists and turns on her toes and raising both her hands. She also jumps elegantly with both her hands up across the whole stage. She rotates her whole body standing on one leg while she is on her toes with her hands curled with each other.,0 254,v_a_JlhLnJM98,What is the sequence of events in the video related to ironing a men's cotton dress shirt?,v_a_JlhLnJM98_0,"In the video, a woman wearing a green sweater and standing in a well-lit room with a window behind her, shows how to iron a men's cotton dress shirt. She starts by spray starching the shirt and then ironing it, while steam escapes from the iron. Next, she irons the shirt sleeve and turns it over to smooth it in a flat surface before proceeding to spray starch and iron it again. Finally, she irons the ends of the sleeve and the video ends with her flipping over the shirt.",0 255,v_9Ufy_JGbnys,What is the sequence of events in the tango performance?,v_9Ufy_JGbnys_0,"In the beginning, a man speaking into a mic walks to the center of the hall where tables are arranged, people are sitting on chairs facing him. Then a man and a woman enter the middle area holding hands, they stand some distance from each other. Once the music starts, the couple walks towards each other and starts to tango. As the tango progresses, they cover a wide area of the hall while moving around. The couple continues to slowly dance as the other seated guests watch, and flashes of photographs are visible. At the end of the performance, the two dancers walk apart and bow towards the people who are applauding.",0 256,v_9eniCub7u60,What happens after the small child walks into the next room?,v_9eniCub7u60_0,"After the small child walks into the next room, the couple keeps dancing, and the man spins the woman several times at the end. ",0 257,v_k1GP0cJOXbQ,What is the order in which the kayaking events occur in the video?,v_k1GP0cJOXbQ_0,"The first scene shows a man and woman placing their kayaks on a red truck and driving away. Next, a person with a yellow kayak is standing on a boulder by a stream, followed by a group of people in safety gear standing on the shore of a narrow body of water. A person in a yellow kayak is then seen rowing down the rapids, followed by clips of different people kayaking in turbulent waters. There is a clip of a couple in safety jackets in a two-person kayak rowing along with others kayaking around them, followed by a clip of two kayaks rowing in calm waters with a sunset in the background. The final clip shows two people in a kayak rowing through turbulent waters, followed by people standing around drinking beer on land with a sunset in the background.",0 258,v_7bwruwic1CI,What is the sequence of events shown in the video?,v_7bwruwic1CI_0,"The video starts with players celebrating on a baseball field wearing orange uniforms and blue helmets. Then, it switches to a shot of people playing handball outdoors, where a player throws the ball towards another player, who kicks it. A referee is visible in the background, and a replay is shown with markings on the field. The third player is seen falling on the field. Afterwards, the video switches to another clip of a baseball game, where a pitcher throws a ball and the batter hits it, followed by the batter running. The ball is then caught and thrown by another player towards a base.",0 259,v_bYxVbXzQToI,What does the man in the white suit do after he sits on the chair?,v_bYxVbXzQToI_0,"After the man in the white suit sits on the chair, he picks up a guitar next to him and begins playing it. The man wearing a black tux, holding a guitar and sitting next to him also starts playing their guitar. They are facing a group of people wearing tuxes and sitting around a table.",0 260,v_hI11n4_r178,At what point in the video does a new routine start?,v_hI11n4_r178_0,A new routine starts partway through the video.,0 261,v_hP-xRyx88aA,Can you describe the temporal sequence of events during the pole vaulting competition in the video?,v_hP-xRyx88aA_0,"The woman in black with a pole starts her run towards the bar, plants the pole, and goes over the bar to land on the foam mat at the beginning. Later, the same woman, now wearing a white jacket, takes a drink from a water bottle, stands at the starting point with her pole, runs towards the bar again, jumps over it and lands on the other side. Two men are seen measuring the height of the bar with a measuring stick, and the video ends with a replay of the pole vault from a different angle.",0 262,v_HxrtuZSCwvY,When does the boy stop playing violin in the video?,v_HxrtuZSCwvY_0,"The boy stops playing the violin at the end of the video, when the people sitting around him applaud.",0 263,v_af05Mqm03Y4,What happens towards the end of the video?,v_af05Mqm03Y4_0,"Towards the end of the video, the two men playing squash slow down until the man in the white T-shirt appears tired. They eventually stop and share a handshake.",0 264,v_ddzfgHw_qlU,At what point does the man stop playing the harmonica in the video?,v_ddzfgHw_qlU_0,The man continues to play the harmonica until the end of the video.,0 265,v_h_r8gioFi4k,What kind of moves are the woman and man using in their kickboxing practice and how does the video end?,v_h_r8gioFi4k_0,"The woman and man are using numerous kickboxing moves including punching, kicking, and occasionally using elbows. The video ends with their practice ending and both of them stopping fighting.",0 266,v_NojaHuKBagQ,What is the sequence of events in the video?,v_NojaHuKBagQ_0,"In the video, the man first cleans the bottom edge of the shoe on his right with an adhesive eraser and shows it to the camera. Then, he picks up a white Nike shoe from his right and cleans it with the eraser. He cleans both the shoes and then handles the right shoe while speaking before the video ends.",0 267,v_EnMS9O1U6E0,What happens after the man in blue shorts jumps over the high jump bar?,v_EnMS9O1U6E0_0,"After the man in blue shorts jumps over the high jump bar, he gets up and walks away from the foam mat. The video then shows a replay of the jump from different angles until the end of the video.",0 268,v_wEehiYq9ttE,What happens after the man speaks to the woman while cleaning her shoe?,v_wEehiYq9ttE_0,"After the man speaks to the woman while cleaning her shoe, he uses a spray bottle to spritz some liquid on the shoe before cleaning it with a toothbrush.",0 269,v_rklYNAAaI3Y,What is happening in the beginning of the video?,v_rklYNAAaI3Y_0,"In the beginning of the video, a woman wearing a white t-shirt is sitting on a chair, next to a little boy wearing a white shirt, and washing clothes in a bucket filled with soaked clothes in a well-lit room.",0 270,v_ZVjLscGMOs8,What is the first thing that the three women are doing at the beginning of the video?,v_ZVjLscGMOs8_0,The three women are wearing white vests and track pants working out on aerobics steps at the beginning of the video.,0 271,v_CeXtKbFnPIQ,What does the man do after throwing the tennis ball into the air?,v_CeXtKbFnPIQ_0,The man hits the tennis ball to the other side of the court after throwing it into the air.,0 272,v_K_ia4VP3w2c,What is the sequence of the makeup application shown in the video?,v_K_ia4VP3w2c_0,"The makeup artist starts by applying eyeshadow on Irina with different colors for her eyelid and eyelashes, followed by lipstick. Then, the makeup artist redoes her eye makeup and changes her lip color. The video ends with a show of Irina with completed makeup.",0 273,v_z6pmp8TrAVo,What happens after the man finishes washing the plate in the video?,v_z6pmp8TrAVo_0,"In the video, after the man finishes washing the plate, another person wearing a striped t-shirt walks behind him and taps him twice before walking away. The man washing dishes laughs before the video ends.",0 274,v_Mk7Yjq1U8OI,What is the sequence of events in the video related to the women’s beach volleyball game?,v_Mk7Yjq1U8OI_0,"The video of women’s beach volleyball starts with text appearing on a black screen. Then, the women are shown warming up on a grass field on a sunny day, with a building visible in the back and people standing and sitting around a tree. Next, the women are seen performing an official warm-up on a sandy beach volleyball court with two teams participating and people sitting under shelters in the back, with flag poles and flags visible. A highlights reel is then shown with two teams playing beach volleyball and a clip from a game as the team on the right miss a hit is shown. Following that, the team on the left starts the game, and the team on the right loses the exchange after missing a hit. Finally, the video ends with the players on the left celebrating a point by high-fiving each other.",0 275,v_IDIALY6Ayk8,What is the temporal sequence of events in the video?,v_IDIALY6Ayk8_0,"The video starts with a panoramic view of a vineyard followed by a clip of a horse grazing behind a fence. Next, a rider wearing a helmet is seen leading a horse down an inclined path. A clip of riders on horses riding in a circle, in an enclosed space is shown, followed by them exiting the enclosure and riding their horses on a dirt path with a view of the riders from a distance, with the vineyard next to the path. The people are riding on their horses during the daytime, led by a woman wearing a black turtleneck. They make their way to a winery, walk inside and stand in a wine cellar with stacks of wine barrels. A woman wearing a black top speaks to them. Next, grapes are hung and stacked on a drying platform with a clip of closed clap barrels. In the following clip, people are seated in a dining room with wine glasses in front of them. The woman in the black top is showing them a bottle of wine, and she pours it into the glasses. A woman swirls her wine glass and takes a sip. Finally, the video ends with a shot of the facade of the winery.",0 276,v_vzUeFzhVYLg,What does the woman do after running to the edge of the diving board?,v_vzUeFzhVYLg_0,"After running to the edge of the diving board, the woman dives with a tuck and several turns into the pool.",0 277,v_ij9czNGMR5I,What is the sequence of events in the video?,v_ij9czNGMR5I_0,"The video begins with a girl sitting in a chair wearing a grey hoodie while a man, wearing a black shirt, and a black cap and surgical gloves, pierces her tongue. He starts by clamping her tongue and then uses a needle to pierce it. After that he inserts the piercing into her tongue and secures it by screwing something under the piercing. Finally, the man steps out of frame and the woman sticks out her tongue to show the piercing.",0 278,v_F9mk2Dn2tFw,What is the order in which the children pass the ball in the video?,v_F9mk2Dn2tFw_0,"The girl in the pink T-shirt receives the ball from the boy in the white T-shirt and blue shorts and kicks the ball to the boy in the black T-shirt and black jeans, who then kicks the ball and runs across the field. Another boy catches the ball and bumps it into the boy running.",0 279,v_wFVukrQfQhI,What is the final scene of the video and what took place before it?,v_wFVukrQfQhI_0,"The final scene of the video shows the two players shaking hands after playing racquetball. Before that, both girls were playing racquetball while wearing safety glasses, white t-shirts, and shorts in a well-lit racquetball court with white walls and a light wooden floor. The game continued as the two players moved around inside the court and followed the ball, missing a few times. Each time one of them missed, the other player got the ball to serve.",0 280,v_rOtmhurweqo,How long did the old man pedal the exercise bike?,v_rOtmhurweqo_0,"The old man peddles the bike and stops after some time. However, the exact duration of pedaling is not provided in the given information.",0 281,v_RXT17X7lRoQ,What is the first scene of the video and what comes after that?,v_RXT17X7lRoQ_0,"The first scene of the video shows text appearing on a green background. After that, a team of girls wearing black and pink uniforms and holding lacrosse sticks are posing for a photo in a field during the daytime. Buildings and trees are visible outside the field at the back. Few more images are shown before a clip of girls playing a game of lacrosse during the day is shown, where a referee is also visible among them. ",0 282,v_jEOtcfk220s,What is happening at the end of the video?,v_jEOtcfk220s_0,"At the end of the video, the team on the left wins the volleyball exchange after the team on the right misses a hit.",0 283,v_j6OcN4OQZVM,What is the sequence of breakdancing clips that are shown in the video?,v_j6OcN4OQZVM_0,"The video starts with a clip of a man breakdancing in a hall. In the next clip, another man is breakdancing and doing a headspin. Following that is a clip of a man breakdancing in a large, overhead-tube-lit hall. In this clip, he is spinning on his hands and slowly lowers himself. The video then continues with additional clips of various people breakdancing either with an audience or alone, and ends with an outro and a message.",0 284,v_bz4QwqHiVlo,"What was the sequence of events in the video after the appearance of the letter ""A"" with a background of stars?",v_bz4QwqHiVlo_0,"After the appearance of the letter ""A"" with a background of stars, the text ""First Clue: F"" was displayed on the screen. Then a man wearing a purple shirt was seen rolling a cable from a vacuum cleaner in a well-lit living room with a black sofa and a TV with speakers next to it. He took the cable to the left of the living room and then was seen vacuuming the kitchen which had white cabinets and a two-door fridge placed in between cabinets. After vacuuming the kitchen, he vacuumed beneath a red sofa and its cushions. Later, he returned to the living room to roll the cable up.",0 285,v_hPYGgv_75SY,What was the sequence of events during the hammer throw in the video?,v_hPYGgv_75SY_0,"The woman wearing a black outfit started her hammer throw by spinning the hammer around while turning. She then threw the hammer in the field during the daytime. The next cutaway showed a couple on a blanket in a field who panicked and ran to the side as a hammer attached to a string landed on the blanket they were on. In the following sequences, the woman threw the hammer again. In one cutaway, a hammer landed in the pool behind a swimmer just as she was swimming and reached the wall. In another cutaway, the hammer flew over a gymnast standing on a balance beam in an indoor gym and the gymnast fell over. The woman threw the hammer once more and it landed in front of a catcher on a baseball field who was wearing full gear. The catcher got up in exasperation. The video ended with the text ""WEAREBG"" appearing on the screen as the hammer thrower walked off to the side.",0 286,v_jWH-2aa1gJY,What is the girl doing in the beginning of the video?,v_jWH-2aa1gJY_0,"In the beginning of the video, the girl is sitting on a chair wearing a hoodie and jeans, holding a guitar and following the music by mimicking the guitar notes without plucking the strings. Various music gear can be seen scattered around her on the ground.",0 287,v_BAtlo_AGFWs,What sequence of events did Chris Hadfield experience while on the International Space Station?,v_BAtlo_AGFWs_0,"Chris Hadfield first squeezed honey onto a tortilla and held it up to the camera, then played the guitar while floating in space, followed by getting a haircut from someone wearing a teal t-shirt. He was holding onto handles to stay in place while the person giving him a haircut was holding a trimmer with a hose attached to it. After that, he and other astronauts were seen walking down a path with people on either side and an image of a rocket on a launchpad was shown. Next, his Twitter page was displayed and he gave an interview on the International Space Station while different images of Earth and space were shown in a slideshow as he spoke. The video ends with a clip of Chris Hadfield rearranging his hair.",0 288,v_9lAT3oA9Ixs,What is the sequence of events in the video depicting the man using an axe to chop wood?,v_9lAT3oA9Ixs_0,"The man is standing in a wooded area wearing a blue jacket and blue jeans. He is using an axe to chop wood placed on a tree stump. After chopping the current piece, he picks up another wooden block and places it on the tree stump. Once he has chopped the new block, he picks up the chopped pieces and piles them up with the other logs. The video ends with him coming back to stand over the block.",0 289,v_0rr7iGHamw0,What is the order of events in which Valarie imprints the design on the t-shirt using iron on transfer?,v_0rr7iGHamw0_0,"Valarie is standing in front of an ironing board holding an iron, with a shirt laying on it. She uses iron on transfer to imprint a design on the shirt. While pressing the design on the shirt with the iron, she speaks and laughs with the cameraman. Valarie walks toward another table, picks up a white t-shirt with a Twitter username on it and a picture of a blue bird, and quickly walks back to her ironing board to continue pressing the shirt. She removes the paper laying on the t-shirt and shows the finished design. In the end, Valarie covers the t-shirt with another and waves bye to the camera.",0 290,v_6utacRir3uM,What happens to the man in the black outfit during the aerobics session?,v_6utacRir3uM_0,"As the instructor issues a new instruction, the man wearing black trips and falls down over his aerobics step.",0 291,v_5cijPqKVc84,What type of kayaks were shown during the interview?,v_5cijPqKVc84_0,"During the interview, a series of cutaways to different types of kayaks were shown. Kayaks in rapids, in the sea and different rivers were shown, with different types of cockpits, open and closed.",0 292,v_l5ZUUChppHU,What is the sequence of events in the wood-chopping contest based on the given information?,v_l5ZUUChppHU_0,"In the video, two sets of competitions are shown with contestants on both the left and the right. The contestants on the left have their wooden blocks laid horizontally on chopping stands. On the other hand, contestants on the right are assembling wooden blocks on horizontal chopping stands. The contest begins as both sides begin chopping wood. Some players on the left finish before the players on the right. The first player on the left side heads over to the right and speaks to another contestant.",0 293,v_52Xw6TZcysc,What is the sequence of events in the video depicting the woman attempting a long jump?,v_52Xw6TZcysc_0,"The woman starts by landing on a dirt pit while wearing a blue top, then stands on an indoor track field with people visible in the distance. She takes a running leap into a dirt pit, attempting a long jump. The video continues with the woman shown trying to jump longer distances, and ends with the woman jumping and landing in the pit while looking into the camera. Throughout the video, people can be seen milling about in the back of the indoor stadium.",0 294,v_YOk1cMsyk88,What happens to the skateboarder on the road?,v_YOk1cMsyk88_0,"The skateboarder loses balance and falls off the skateboard while continuing to skate on a road covered with grass during daytime, with hills visible in the far distance. The cameraman skates past him and then turns back, while the camera is covered. Afterward, the camera is removed.",0 295,v_qmHjHk0Hzz8,What is the sequence of events in the video starting from the man standing in the throwing circle?,v_qmHjHk0Hzz8_0,"The man first begins to spin in place after standing in the throwing circle. He spins a few times before throwing his discus. The throwing circle is inside a practice net, and the man is shirtless and wearing black shorts. The video is taken during the daytime in a field with a tall pole with floodlights facing towards it visible in the distance.",0 296,v_l_0HvMt2tGg,What are the different events that occur in the video with respect to the boy's lacrosse games?,v_l_0HvMt2tGg_0,"The video starts with the boy wearing a purple jacket picking up a stick off the ground and tapping it on a wooden fence behind him. In the following clip, the boy is wearing a red jersey for the Salem lacrosse team and holding a lacrosse stick in his hands. The camera zooms in on the logo on the boy's shorts. The video follows the boy as he plays in different games, starting with the team standing in a huddle with their lacrosse sticks raised, followed by a face-off between two lacrosse players from different teams, and then the game continues with the boy playing different positions, scoring a goal or chasing the ball. Another face-off is shown, and the video ends with a player scoring a goal.",0 297,v_1jgsRbGzCls,What is the sequence of events related to tai chi in the video?,v_1jgsRbGzCls_0,"The video begins with news anchor reporting news and showing a still image of two people in tai chi poses. Then, a cutaway of people in winter clothes practicing tai chi outdoors is seen, followed by a few shots with close-ups of people practicing tai chi. Next, there is a cutaway to a black-and-white clip from 1957 showing an old man teaching tai chi, followed by different colored clips of people doing tai chi. A clip from a hospital is shown where a doctor talks to the camera and walks towards people doing tai chi. In the end, people in the hospital doing tai chi individually and being taught by others are shown.",0 298,v_o5F7X-UBETE,Can you describe the temporal sequence of events in the weightlifting competition?,v_o5F7X-UBETE_0,"The man wearing a red outfit lifted a barbell, crouched down, stood up with the barbell over his head, held the position for a few seconds, and dropped it on the floor. In the next shot, a weightlifter lifted a barbell from a side view, held it over his head, and dropped it. Then, a weightlifter wearing black and white lifted the barbell, crouched down, lifted it, and then dropped it. The video shows a montage of different weightlifters in the competition, with athletes from different countries. The video ends with a Chinese weightlifter wearing a red outfit lifting the barbell, holding it over his head, dropping it, and yelling.",0 299,v_rc-DiL5er28,What happens after the referee places the dodgeballs in the middle of the court?,v_rc-DiL5er28_0,"After the referee places the dodgeballs in the middle of the court, the game begins and two teams run to the dodge balls. The team on the right is wearing blue t-shirts and the team on the left is wearing yellow t-shirts.",0 300,v_fM5egP_1DvQ,In what order do the participants attempt their high jumps?,v_fM5egP_1DvQ_0,"The first participant, wearing a red and green vest, attempts the high jump first, followed by the participant in the red and cream vest, and then lastly, the participant in the light blue jersey.",0 301,v_R_JKmGmURvA,What are the steps taken by the man in the video while making the cocktail?,v_R_JKmGmURvA_0,"The man in the video starts by placing a camera in front of him and backing away. He wears black polo shirt and shorts while standing in front of a kitchen counter with cocktail glasses lining the middle. He then retrieves ice cubes from the left of the table and places them in a mixer before adding other liquors to it. The man then squeezes fresh lemon juice into the mixer before shaking it vigorously. Finally, he pours the resulting cocktail mix into cocktail glasses, holds up the glass, and takes a drink while speaking to someone behind the camera.",0 302,v_kl-2y3jtPNE,What happens after the batsman jumps to let the ball pass behind him in the cricket game?,v_kl-2y3jtPNE_0,"After the batsman jumps to let the ball pass behind him in the cricket game, he starts to run to the other side while the nonstriker runs towards the striker’s end and gets ready to bat.",0 303,v_j_r7zJWxI8w,What does the man on the left do after picking up the beer can?,v_j_r7zJWxI8w_0,"After picking up the beer can, the man on the left makes a hole in it using a key and throws the key down before snapping the tab on the beer can. He then proceeds to drink from the hole in the can.",0 304,v_l_pp-1qu9Ig,What is the sequence of events in the video related to gift-wrapping?,v_l_pp-1qu9Ig_0,"In the video, a woman picks up three rolls of gift wrap from a blue wooden counter, and lays them out on a light wood table. Then, she unrolls a roll of the wrapper and places a brown cardboard box on it. She cuts the wrapping paper according to the size of the box and wraps it, taping it shut. The sides of the box are carefully folded using tape as well. Finally, she turns the wrapped box on every side to show the wrapping and places it on the counter.",0 305,v_vIQPDP8jW8A,What is the sequence of events in making the cocktail as shown in the video?,v_vIQPDP8jW8A_0,"The bartender first places slices of cucumber into a glass and crushes them using a wooden pestle. Then, he adds a cap of Bombay Sapphire Gin, followed by a cap of St. Germain liquor. He adds lemon juice, ginger syrup, and elderflower syrup, and then adds egg whites to the glass and shakes it vigorously. He finally pours the mixture into a glass with some ice cubes and places a slice of cucumber on a straw to serve.",0 306,v_-pkfcMUIEMo,What does the man do after he starts speaking to the camera in the snowy weather?,v_-pkfcMUIEMo_0,"After the man starts speaking to the camera in the snowy weather, he shows how to shovel snow using the snow shovel. He scoops a large pile of snow and throws it to the side, repeating this a few times and demonstrating how to shovel snow. Finally, he ends his demonstration and walks over to the camera to shut it off.",0 307,v_mShp2gzuPOM,What actions do we see in the video that provides a clear indication of the temporal sequence of the events?,v_mShp2gzuPOM_0,"In the video, we first see a blurry shot, followed by the resolution of a badminton court. Then we see a girl approaches the court wearing a green top and starting to play badminton. The game begins with her serving, and the player at the other end missing their shot. The game restarts with the girl in green serving again. The players continue to play, and a girl sitting on the right end of the net is visible. The video ends with the girl in green t-shirt serving and the player at the other end hitting the shuttle into the net. The two players then shake hands and exit the court. Besides, we can also see a woman with a camera sitting near the netting at the left pole taking pictures of the girl wearing the green top. A scoreboard is visible at the top of the wall at the back of the gym, and an American flag is hung vertically from the wall. Bleachers can be seen retracted to the wall to the left of the court. People are visible standing at the edges of the gym throughout the video.",0 308,v_8r4bF9RF0Kc,What is the sequence of events in the video related to the running between the wickets?,v_8r4bF9RF0Kc_0,"In the video, as the batsman hits the ball towards the woods, the batsman and the non-striker start running between the wickets. Meanwhile, the fielders begin to search for the ball. As they find the ball, the batsman stops running, and the fielder throws it back to the bowler.",0 309,v_iUiXNXRs4rU,What is the process that the man goes through to fix the broken chain on the bike in the video?,v_iUiXNXRs4rU_0,"The man starts by holding a master link of a chain in his palm and shows it to the camera. He then attaches the master link on one end of the broken chain and pulls both sides together until they lock together. Finally, he checks it by pushing on the pedal.",0 310,v_Lf_7RurLgp0,What is the sequence of events in the video related to hand washing?,v_Lf_7RurLgp0_0,"In the video, a woman wearing a green jacket over an olive turtleneck shows a soap dispenser for kids to the camera. A little boy pumps soap from the dispenser and washes his hands in the sink wearing his black polo shirt. A red dot is visible on his palm. The woman holds a bottle of hand sanitizer to the camera as the boy turns off the tap and wipes his hands on a towel hung from a towel rack. ",0 311,v_VhdidrZKuTU,What does the man do after he arranges the firewood over the crumpled pieces of newspaper?,v_VhdidrZKuTU_0,"After the man arranges the firewood over the crumpled pieces of newspaper, he sprinkles some table salt on the arrangement and then adds some white pepper powder. He then proceeds to light the paper using a lighter and pours some gasoline on the firewood, which instantly catches fire.",0 312,v_W4mJsJGa0CY,What happens after he falls off the pommel horse?,v_W4mJsJGa0CY_0,"After he falls off the pommel horse, he walks to a bowl and applies some chalk to his hands. Then, he mounts the pommel horse again and continues his routine. Finally, the video ends as he does a handstand and lands on the floor.",0 313,v_34ZxyyFjbHQ,What happened when the boy wearing the blue T-shirt missed a shot during the squash game?,v_34ZxyyFjbHQ_0,"When the boy wearing the blue T-shirt missed a shot during the squash game, the two started over. As the game continued, the boy wearing the red T-shirt also missed a shot, and they started over again. The video ends with the two boys playing and a boy wearing a white t-shirt standing outside the court watching.",0 314,v_TkhUtx0Eyfw,What is the sequence of events when the technician pierces the girl's ear in the video?,v_TkhUtx0Eyfw_0,"First, the technician marks the girl's ear using a pen. She then makes sure the marks are in the same place on both ears and wipes her ear with a swab. The technician then uses an ear-piercing gun, but the girl is initially afraid and tries to back away. After calming down, the technician pierces the girl's ear, followed by her other ear. Finally, the video ends with the girl sitting in the chair looking excited.",0 315,v_Db9VWkgMpbE,What is the sequence of events in the video as the woman wearing the green top exercises?,v_Db9VWkgMpbE_0,"The woman wearing the green top starts by leaning on the elliptic bike with her hands, while speaking to the camera, then she sits on the elliptic machine and starts exercising. To her right, a person wearing a red top is also exercising on an elliptic machine. After a while, the woman transitions to using an exercise bike and is shown how to use it by another woman wearing a black top. She then cycles on the exercise bike while looking at herself in the mirror to her right. The video ends with the woman still peddling and speaking to the camera.",0 316,v_Q3ZNFGE8PZE,What is the order in which the people join the boy dancing in the alley?,v_Q3ZNFGE8PZE_0,"First, another boy wearing a black jacket and white gloves joins the boy with a black umbrella. Later, other dancers join the first two boys one at a time, and eventually a group of people joins the girls as they watch and cheer.",0 317,v_QriYk3MKSnM,What happens to the girl on the left after the girl on the right combs the other girl’s hair for a moment?,v_QriYk3MKSnM_0,"After the girl on the right combs the other girl’s hair for a moment, the girl on the left tries to comb the other girl’s hair and her hair gets stuck in the comb and is pulled.",0 318,v_x90zpDHTpjQ,What is the sequence of events when the man tries to lift the barbell in the gym?,v_x90zpDHTpjQ_0,"The man in the white and black t-shirt walks towards the camera in the well-lit gym with wooden walls and windows at the top. A person in the back is shown lifting a barbell. The man tries to lift the barbell, takes a deep breath, bends down, and slowly lifts it for a few feet but drops it. He tries again and drops it. He then walks to the camera and speaks before the video ends.",0 319,v_Il9Ara3IqeY,What is the man on the Marble Bridge doing during the daytime?,v_Il9Ara3IqeY_0,The man is standing on a section of the Marble Bridge and playing a flute during the daytime.,0 320,v_HkbOI7gEtKk,What is the sequence of events in the video starting from the introduction of the beautician?,v_HkbOI7gEtKk_0,"The sequence of events in the video is as follows: The video starts with two women in a well-lit room with shuttered windows. The woman on the left, who is a beautician, introduces herself and shows how to make a cleansing with baking soda. She then introduces the model on the right. A shot of the table is shown with a bowl of yogurt with a spoon and a box of baking soda. The beautician places a spoon of yogurt and a quarter teaspoon of baking soda in the cupped hands of the model. The model rubs her hands together to mix the yogurt and baking soda and applies the mixture to her face. The beautician then gives further instructions and the model wipes her face with a washcloth and shows the dirty washcloth to the camera. The video ends with the beautician ending her instructions.",0 321,v_cEa87QoI3Do,What happens after the girl walks through the kitchen and enters the living room?,v_cEa87QoI3Do_0,"After the girl walks through the kitchen and enters the living room, she puts her backpack down and sits on the sofa. The two identical men stand at the entrance to another room and greet the girl. They wave back and proceed to make sandwiches. The man wearing the black shirt spreads peanut butter on one of the pieces of bread and the man wearing glasses makes a sandwich using lettuce and ham. The man in the black shirt spreads jelly on the other side of the sandwich. The next clip shows the sandwiches being placed in front of the girl and the video ends with the two men looking at each other and frowning.",0 322,v_X4J9UBXb0FM,Can you describe the temporal sequence of events in the video?,v_X4J9UBXb0FM_0,"Yes, the video starts with a slow-motion shot of a man starting his run at a pole vaulting competition during the daytime. The first athlete is wearing a vest and black shorts. He then vaults over the bar. The next clip shows an athlete wearing a blue vest and shorts pole vaulting over a bar in a competition held during the night. The field is lit by floodlights. Following this, an athlete wearing an orange vest and shorts is also shown pole vaulting over a bar. The video continues with various athletes involved in pole vaulting competitions held both during the day and night. Finally, the video ends with athletes standing on medal podiums wearing wreaths.",0 323,v_ARpoJIBF2NM,Can you describe the sequence of events during the dodgeball game?,v_ARpoJIBF2NM_0,"The game starts with a player in the teal t-shirt getting hit and falling. He immediately gets up and a boy jumps to catch the ball that bounced off the fallen player. A girl a few feet away from the fallen player holds her hands to her face. Players wearing teal shirts are seen throwing balls to the other side and walking back. Some of the players get hit and some catch the ball. The camera then pans to the other side of the court where a group of amateur players is playing against the players wearing the teal shirts. The video continues to show the players in the teal t-shirts moving around the court and throwing balls at the opposing team. A man with a mic is standing on the outside of the court and a group of students wearing white shirts can be seen cheering in the bleachers. Eventually, a player in teal is dismissed as he crosses the midline, after which the players start to slow down and then stop playing.",0 324,v_zXHyFBrj5Ag,What is the sequence in which the man irons the Hawaiian shirt on the ironing board?,v_zXHyFBrj5Ag_0,"The man first irons one half of the shirt and then moves on to the other half of the shirt, with a hanger visible sticking out of it.",0 325,v_H8oehT8eeGc,What is the temporal sequence of events in the video?,v_H8oehT8eeGc_0,"First, a group of boys are visible inside a yard. Then, one boy wearing a black outfit is standing a few feet away. Next, a boy from some distance throws a red ball and one of the boys, wearing a green shirt runs up to the ball and kicks it. The ball flies through the air and lands near the opposite chain-link fence. Finally, a boy wearing a red shirt runs toward the ball.",0 326,v_meNgZdu8tIk,What is the sequence in which the man makes the sandwich in the video?,v_meNgZdu8tIk_0,"In the video, the man first applies butter on slices of bread and then applies green chutney on a slice of bread. He slices boiled potatoes over it, adds chopped onion, and covers it with another slice of bread. Then, he chops tomatoes and sprinkles chat masala and chopped bell pepper over the tomatoes. The man then grates cheese over the sandwich, spreads some butter and green chutney on a final slice of bread and covers the sandwich. Next, the man grates cheese over four sandwiches placed next to each other, places four slices of bread on the cheese, and spreads butter over the sandwiches. Finally, he places them in an electric grill and closes it over the sandwich.",0 327,v_ERYwCKVUTSQ,What does the woman do after talking for a while?,v_ERYwCKVUTSQ_0,"After talking for a while, the woman starts to play the saxophone. She then pauses and gives further instructions on how to play a particular note.",0 328,v_jQzBXawu29s,What does the man do after speaking into the camera for some time?,v_jQzBXawu29s_0,"After speaking into the camera for some time, the man starts to play the flute in the next clip. He plays for some time and lowers the flute to talk about how to breathe when playing the flute. He demonstrates what breathing exercises to do and then uses it to play to flute for a moment before the video ends.",0 329,v_51faGoLPJgM,What happens to the log while the boy is chopping wood?,v_51faGoLPJgM_0,"While attempting to chop the wood, it slips and turns to the side.",0 330,v_AB480dHyDeM,What is the first thing the man does in the video?,v_AB480dHyDeM_0,"The video begins with a man standing behind a table wearing a grey t-shirt, who shows an Adidas shoe to the camera and begins to clean the shoes.",0 331,v_lPw_BRbPw5s,Can you describe the temporal sequence of events in the video?,v_lPw_BRbPw5s_0,"In the first clip, a man and a woman are dancing outside in an alley. The man leads the woman and they move around while dancing. The second clip shows the same man and woman still in the alley, but now the man turns the woman forward and backward. In the third clip, a man in a white t-shirt joins the woman and they dance and turn. The video ends with the two stopping their dance.",0 332,v_PwRqqR1YmPM,In what order do the events happen in the video?,v_PwRqqR1YmPM_0,"The video starts with an athlete starting his run for a pole vaulting competition in a track field during the daytime. After the athlete vaults over the bar and lands on the cushion mat on the other side, the video continues with other athletes pole vaulting. Replays are shown after each athlete completes their run, with observers near the bars with binoculars. The video continues with athletes completing their jumps, and ends with stats of the athletes.",0 333,v_myGBEXiYGOU,What is the first thing the woman does in the video and what does she paint?,v_myGBEXiYGOU_0,The video starts with a woman smiling at the camera and turning around to a blank canvas to paint the head and torso of a peacock using various shades of blue before progressing to other parts of the bird. ,0 334,v_Kofjs0rkwxc,What does the chef do after buttering the bread at the beginning of the video?,v_Kofjs0rkwxc_0,"After buttering the slice of bread, the chef slices tomatoes.",0 335,v_ltlJ2sOx4as,What is happening when the camera is pointed stationary towards the riders and the dog?,v_ltlJ2sOx4as_0,"When the camera is pointed stationary towards the riders and the dog, they are crossing the river on their horses and riding into the opposite shore filled with balding trees. The riders are also leading pack horses by a leash while the dogs cross the river along with the horses. The last one to reach the riverbank and walk into the forest is a dog.",0 336,v_peiF2E05u8g,What does the girl do after she speaks to the camera outside the mall?,v_peiF2E05u8g_0,"After the girl finishes speaking to the camera outside the mall, she turns around and enters the mall. In the following clip, she is seen browsing makeup in a shop inside the mall. After that, she is sitting in a beauty salon getting makeup applied to her face. The girl then speaks to the camera before sitting on a red sofa chair and getting her nails painted. After the painting is done, she stands outside and speaks to the camera again.",0 337,v_jiM0HUFn0e8,What are the initial movements showcased by the three dancers in the video?,v_jiM0HUFn0e8_0,"The video begins with the three dancers performing hand movements, kicking off their ballet practice while being followed by little kids sitting in a half circle behind them who mimic their moves.",0 338,v_GChGC-VJZHs,"What happens in the beginning of the video, and how does it progress temporally from there?",v_GChGC-VJZHs_0,"In the beginning of the video, there are some images flashing and a countdown. The video then shows motorcyclists performing stunts and jumps in a forest with a dirt bike track full of bumps. The clip shows the motorcyclists equipped with off-road gear and helmets, followed by one of them falling from their bike and giving a thumbs up to indicate they are okay. The video ends with the motorcyclist riding the track and performing jumps with music playing in the background.",0 339,v_4oi6dXfpJS4,What moves did the gymnast perform on the balance beam in the given video?,v_4oi6dXfpJS4_0,"The gymnast performed multiple backflips, attempted to spin in place, ran a few steps and did a backflip, did several poses before losing balance and jumping down, jumped back on the board and did a front flip, and finally did three backflips before landing on the ground.",0 340,v_4KMG6lEDSIM,What are some of the fighting scenes shown in the video and in what order do they appear?,v_4KMG6lEDSIM_0,"The video begins with a man in white gi jogging towards a stage, followed by another man in a red and white gi. They then start fighting by exchanging a few kicks and hits. Next, a clip of people wearing red gi fighting on stage, and a person knocks out everyone and poses while spectators are clapping. This is followed by a man in red and an opponent in white exchanging blows, with the man in red ultimately knocking out his opponent. Next, there is a clip of two people who are both wearing black gis fighting and one knocks out the other. Additionally, a series of quick transitions between fights can be seen throughout the video. Lastly, the video ends with a man wearing a black gi breaking a few tiles placed on two cinder blocks.",0 341,v_889_kqLFM0E,What is the temporal sequence of events shown in the video?,v_889_kqLFM0E_0,"The video begins with a view of a mountain rock climber followed by a person marking a spot on a rock, a man attempting to climb a boulder, and a woman leaning in for safety. A man then walks by the sitting man followed by a man holding a climbing rope. The sequence then shows a person climbing down a rope, climbing a rock from a boat, and a man jumping into water. Next, a man starts to climb a rock with an instructor behind him, followed by a view from high up of a valley, and a person fastening a rope into a hook pierced into a rock. The video then shows people trekking up a rocky hill carrying backpacks during the day, with a panoramic view of a rocky hill shown with people climbing on it. The video lastly shows people rock climbing and standing on the top of a hill, and ends with a person high-up on the rock climbing using a rope.",0 342,v_Ur_ToogEkCA,What happens at the end of the volleyball game?,v_Ur_ToogEkCA_0,"At the end of the volleyball game, a few people come into frame.",0 343,v_1YU4MSK80cQ,What exercises does the woman in the video do after lifting herself from the bars?,v_1YU4MSK80cQ_0,"After lifting herself from the bars, the woman in the video performs swaying, moves back using her hands, does the split, and swings using the bars.",0 344,v_IDuoF51IMJ8,What happens after the boy in grey evades the dodgeball thrown by the boy in pink?,v_IDuoF51IMJ8_0,"After the boy in grey evades the dodgeball thrown by the boy in pink, he lands and throws a ball he is carrying towards the boy in pink, but he misses. A boy behind him picks up a ball. The boy in the pink shirt turns around and walks away. The people who were standing right outside the court rushed the boy in grey and celebrate.",0 345,v_YAKXrBinGD4,What is the temporal sequence of events in the video?,v_YAKXrBinGD4_0," The video starts with a view of a canyon and a river followed by a frame switching between various boats. Then, a woman and two men are shown talking with kayaking boats in the background. Next, the man with a grey and black cap shows some hand signs. After that, the frame shows the view of the canyon and a woman kayaking in the river and later, hi-fiving the man with the grey and black cap, and then kayaking in the river with the two men. Finally, the video ends with the woman kayaking in the river with the two men.",0 346,v_jkrlHzTRTvo,What are the various events that happen in the video in a chronological order?,v_jkrlHzTRTvo_0,"The video begins with an animation of famous buildings in New York. The following clip shows a group of young boys getting ready with paintball gear and taking defensive positions in a paintball arena. Then, a man wearing a black shirt is seen speaking to a boy with glasses. The kids are then seen playing with paintball guns held forward and ducking behind inflated bunkers used as obstacles in the field. Throughout the video, there are various clips of kids playing in the paintball arena and loading their paintball guns with pellets. Towards the end of the video, there is a clip of kids listening to another boy before a game and the video ends with a boy walking towards a curtain and lifting it to walk behind it.",0 347,v_qU4GmCN2e1Y,What was the sequence of events that the man performed on the parallel bars?,v_qU4GmCN2e1Y_0,"The man started his routine by jumping and holding onto the parallel bars. He then swung and did a handstand, followed by holding himself up using the parallel bars and holding a sitting position by keeping his legs parallel to the ground. Finally, he finished up with another handstand and jumped down to the ground. ",0 348,v_nywOe9C3ajM,What is happening in the first shot of the video and who are the people involved?,v_nywOe9C3ajM_0,"In the first shot of the video, a woman is hugging another woman from behind while they both smile. The woman who is sitting wears glasses. People clapping are seen out of focus, near the camera.",0 349,v_dhsSq0K1xEg,What is the first shot of in the video and what is written on it?,v_dhsSq0K1xEg_0,"The first shot of the video is a close up of a decorated saxophone case with the words ""GUNS-N-ROSES"" written on it, with a rose drawn underneath the text.",0 350,v_FqYhC6_CMfI,What happens towards the end of the video?,v_FqYhC6_CMfI_0,"Towards the end of the video, the man falls from his windsurf board while windsurfing across the beach water.",0 351,v_mLFjww64sX8,What was the barber doing after he used a blade on the customer's head?,v_mLFjww64sX8_0,"After using a blade on the customer's head, the barber walked to the other side of the customer and stood with his back to the camera.",0 352,v_0x6ZV9Y8g_c,What is the toddler wearing and where are they located in the beginning of the video?,v_0x6ZV9Y8g_c_0,"In the beginning of the video, the toddler is wearing blue and red pajamas and they are inside a bathroom.",0 353,v_-IMXSEIabMM,What is the order of events depicted in the video?,v_-IMXSEIabMM_0,"The video starts with two people shoveling snow behind a car parked in front of a red brick house during the daytime. They clear snow from around the car. Next, a doctor in a white coat and stethoscope speaks to the camera from a clinic. The video then switches back to the two people shoveling snow, with one of them doing so from a little distance behind the car while the other is next to the car. In the next clip, another man wearing suspenders is seen shoveling snow from a different location. Finally, the video ends with the man wearing suspenders shoveling snow.",0 354,v_s9PkkDEl6aY,What does the video show about the instructor towards the end of the class?,v_s9PkkDEl6aY_0,"Towards the end of the class, the instructor is seen walking down the platform as she ends the class.",0 355,v_nDHupsLdar0,What does the man do throughout the duration of the video?,v_nDHupsLdar0_0,"Throughout the video, the man is playing the harmonica as he sits on the edge of a dark blue sofa. He plays the harmonica from the beginning to the end of the video as he sits back and turns to his right. Initially, the shot is blurry and the man is wearing a grey sweatshirt and sunglasses, and a CPU is placed on a wooden table next to him while a lamp is visible at the back.",0 356,v_dVpHF8tE2qo,What happened after the man lifted the barbell over his head?,v_dVpHF8tE2qo_0,"After the man lifted the barbell over his head, he dropped it onto the ground, causing it to bounce a few times.",0 357,v_Kic33dtLja8,How do the women progress in their dance as the music plays in the video?,v_Kic33dtLja8_0,"As the music plays, the women move forward and back while turning sideways in their belly dance routine.",0 358,v_4mRkWNLE66E,Can you describe the temporal sequence of events in the video related to the player wearing the white number 15 jersey?,v_4mRkWNLE66E_0,"In the first clip, the number 15 player shoots the ball towards the goal and scores in the daytime. In the second clip, which seems to be during practice, he successfully catches the ball and scores while his teammates celebrate. The rest of the clips show him attempting to score or scoring goals during different times of the day, some being in the evening with the floodlights turned on. The video ends with a clip where he scores a goal and celebrates with his teammates.",0 359,v_lSVj34-DR0o,What is the sequence of dives Thomas Daley executes in the video?,v_lSVj34-DR0o_0,"In the video, Thomas Daley executes four rounds of dives. In round one, he executes a backward jump with twists and flips midair. In round two, he does a handstand on the edge of the diving board and dives with multiple backward somersaults. In round three, he jumps with multiple backward somersaults while facing back towards the pool. In round four, he executes multiple somersaults while diving.",0 360,v_FOZdNPQ7d5Q,What is happening at the end of the video?,v_FOZdNPQ7d5Q_0,"At the end of the video, a close-up shot of the tattoo being made on the man’s left arm is shown.",0 361,v_ROrLMf0zXko,"What is the first scene shown in the video, and what follows it?",v_ROrLMf0zXko_0,"The video starts with text on a white screen, which is followed by a street scene where a man in a white outfit is getting ready to breakdance on a black and white mat. In this street scene, there are many people standing around the mat, and the stores are lining the sidewalk. The scene takes place during the daytime.",0 362,v_W6fPv5eoXC4,Can you describe the sequence of events during the serve in the video?,v_W6fPv5eoXC4_0,"During the serve in the video, the man picks up a tennis ball from a basket, bounces it on the ground a few times, and walks a few steps forward. He then serves the ball, which is shown in slow-motion. The clip then replays the serve at normal speed.",0 363,v_lU6DMCif3eE,What happens at the end of the video?,v_lU6DMCif3eE_0,"At the end of the video, the man stops playing the bagpipe and lets go of it.",0 364,v_BSwChZlOb0k,What happened after the man on the sofa tried to drink the flaming shot?,v_BSwChZlOb0k_0,The alcohol spilled and lit the table and a man standing near it on fire. The man lit on fire started screaming and jumping around before falling and trying to put the fire out. Another man near him helped put the fire out.,0 365,v_cqxiLraI8uY,What is the sequence of events when the man lifts the barbell in the gym?,v_cqxiLraI8uY_0,"The man wearing a red t-shirt walks up to the barbell in the gym with a black floor. He bends down to lift the barbell and lifts the heavy weight up over his head for a moment. Then he drops the barbell to the floor, where it bounces a few times before he walks away. The gym is lit by overhead lights and equipment can be seen fixed to the wall.",0 366,v_gmbC7D6HfuM,What is the duration of the dance performed by the man and the woman in the video?,v_gmbC7D6HfuM_0,"The given video shows a man and a woman continuously dancing together throughout the entire video until they stop and laugh together at the end. Therefore, the duration of their dance is the entire length of the video.",0 367,v_zB8knKX0W8Q,What is the order of events in the video with regards to the antique store?,v_zB8knKX0W8Q_0,"The video begins with a projecting store sign, followed by a clip of a man speaking inside the antique store, a view of the exterior of the building, and the man walking to open the shutter from the inside. A woman then speaks to the camera, followed by a man brushing and wiping a piece of furniture. Next, two women are shown in front of an old photograph, before the video moves to show the outside of a house with sloping roofs. The video then returns to the interior of the antique store, where we see a man restoring various pieces of furniture. Another man in a green shirt is seen fixing the top of a coffee table, while a man can be seen polishing different wooden surfaces. The video ends with a clip of different furniture and equipment inside the antique store, including tools hanging on the wall, gloves, and bottles of liquids on shelves.",0 368,v_d6PdD2O3Yrs,What did the boy do on the horizontal bars in the video?,v_d6PdD2O3Yrs_0,"In the video, the boy swings with his hands on either bar a few times before jumping to the foam padding next to him. The boy seems to be practicing his balancing skills on the horizontal bars with the help of an instructor in the gymnasium.",0 369,v_OlykXdYeQOI,What did the barber do after the boy gestures towards his head while looking at himself in the mirror?,v_OlykXdYeQOI_0,"After the boy gestures towards his head while looking at himself in the mirror, the barber proceeds to cut the boy's hair at the indicated area using a comb and scissors.",0 370,v_PdwWFueQErM,What time of day is the man shoveling snow?,v_PdwWFueQErM_0,The man is shoveling snow during the daytime.,0 371,v_3V9tzjyr51I,Can you describe the sequence of events in the video involving the man with the racquet?,v_3V9tzjyr51I_0,The man with the racquet is seen standing on the right of the tennis court. He then throws the ball in the air and hits it towards the other end of the court.,0 372,v_di5f5hM05Vw,What does the video show about the man practicing Tai Chi?,v_di5f5hM05Vw_0,"The video shows that the man in the grey Tai Chi uniform is performing different Tai Chi stances, moving slowly until he stops at the end. The man is practicing these movements in an indoor studio that has light wood flooring, and a mirror covering the wall at his back. Additionally, a window covered in purple drapes is visible on the right side wall to him. The studio is well-lit.",0 373,v_JN1wuOpCZvk,What is the order in which the ballet training clips appear in the video?,v_JN1wuOpCZvk_0,"The first clip features a man training for ballet in a hall, followed by multiple clips of different men training for ballet in different rooms. Finally, a clip of men in ballet costumes performing a jumping routine is shown, followed by a clip of a man in briefs in a hall training in different ballet movements.",0 374,v_JH9qiuPCkY4,What time of the day were the riders riding their dirt bikes through lessons on different surfaces?,v_JH9qiuPCkY4_0,The riders were riding their dirt bikes through lessons on different surfaces during the daytime.,0 375,v_TZOhIMjwEE8,What is the woman lawn-mowing wearing in the video and what is the environment around her like?,v_TZOhIMjwEE8_0,"In the video, the woman lawn-mowing is wearing a white vest, grey trousers, and white sports shoes. The environment around her consists of a grassy lawn, small trees, and a concrete sidewalk. The lawn is surrounded by wooden walls and there is a small shed outside the lawn. There are also chairs, a table, and an umbrella in front of the woman. It is a sunny day and she is moving the lawnmower and turning it to mow the lawn which leaves some grass on the sidewalk.",0 376,v_aQ-F9wr0HQ4,What is the sequence of events in the video?,v_aQ-F9wr0HQ4_0,"The woman is first seen wiping the top of a stereo with a towel while nodding to the voiceover. A cutaway of a person holding a spray bottle labeled Favor with the bottle being pressed is shown. The next clip shows a person wiping a wooden surface with words appearing in between. This is followed by a bottle of Favor being placed on a wooden surface with words of an advertisement appearing. Another person is seen wiping a wooden cabinet while nodding to what the voiceover is saying, and the sequence with the bottle of Favor is repeated.",0 377,v_0UTrTg3DF5g,"What are the different steps involved in making the ""GIN E HENDRIX"" drink that Pinky is mixing behind the bar?",v_0UTrTg3DF5g_0,"Pinky starts by mixing different ingredients including ice cubes into a tall glass. Then, she uses a shaker to mix the ingredients. After that, she pours the mixture in a glass with ice cubes in it. Finally, she finishes the drink by adding cucumber, a slice of lime, lemon, and a basal leaf, and drops a black straw into the glass.",0 378,v_GH0Umpw6tME,What is the instructor doing as the video progresses?,v_GH0Umpw6tME_0,"As the video progresses, the instructor keeps calling out instructions for the class and the women keep following them. Finally, the instructor claps and calls for a stop, indicating the end of the workout session.",0 379,v_Ie09KEAPP2I,What is the sequence of events in the video?,v_Ie09KEAPP2I_0,"In the beginning of the video, a brown labrador retriever with a leash around his neck is seen walking with his tail wagging on a dirt path during the daytime. The camera then pans to a little boy wearing a black T-shirt and red trousers who is holding hands with a man walking to his side. Next, the camera turns to the cameraman who is wearing a blue T-shirt and glasses and is holding a baby in a sling. The man looks at the camera and smiles. Finally, the camera again pans to the dog as the video ends.",0 380,v_Jdu5AqaWfz8,What happens immediately after the jumper reaches the bottom in the video?,v_Jdu5AqaWfz8_0,"After the jumper reaches the bottom, he is pulled back up for a few meters before dropping down again. The rope loses energy and the man starts dangling from it while slowly being reeled down. Two attendants eventually draw him to the shore.",0 381,v_Erje-PwY9hE,What event occurs in the video after the man in the yellow kayak is pushed off from the training notch?,v_Erje-PwY9hE_0,"Following the man being pushed off from the training notch, a man in a yellow shirt and yellow cap is seen rowing down the river with a black backpack over his shoulder. ",0 382,v_HgYuRKZ_V90,Can you describe the order of events in the video involving player number 1?,v_HgYuRKZ_V90_0,"In the video, the player in the blue number 1 uniform is seen dribbling the ball across the field, receiving a pass from another player, and attempting to score a goal before losing possession. The video then follows her as she plays matches during both the day and night, sometimes wearing a white number 1 uniform. Finally, the video ends with her scoring a goal and people celebrating.",0 383,v_UvOEuhS0V3E,What is happening in the second clip compared to the first one in terms of temporal sequence?,v_UvOEuhS0V3E_0,"In the first clip, a woman wearing a white top is applying lipstick in a well-lit room while sitting in front of a mirror with light streaming from her right. In the second clip, a man replaces the woman, wearing an olive T-shirt. He removes something from a box placed in front of him and wipes them on his eyebrows one at a time before eating them. Therefore, the second clip occurs after the first clip in the temporal sequence of events in the video.",0 384,v__jV5sAOOHLk,What is the order of the steps taken by Brandt to repair the punctured tire?,v__jV5sAOOHLk_0,"Brandt first undoes the brakes of the back tire, then uses a wrench to unscrew the derailleur guard, and removes the tire from the rim. He then opens a new tube from a box and inflates it a little using a pump before inserting it into the tire and filling it up fully. Finally, he fixes the tire back to the bicycle using the wrench and reapplies the rear brake.",0 385,v_ZY0cdXr_1MA,What is the order of events shown in the video?,v_ZY0cdXr_1MA_0,"The video begins with a woman in a white room doing ballet, with sunlight streaming through the window from the right. Then, the woman is shown on a stage doing ballet while being lit by overhead lights. The video then provides a closer view of the woman dancing, before ending with a shot of her face and a logo for ""Under Armor"" on a black screen.",0 386,v_JDwd6Ec454A,What is the first event shown in the video?,v_JDwd6Ec454A_0,The first event shown in the video is a rabbit grooming himself.,0 387,v_MWQ9mb_mB8U,What happens after the women in the white tops with numbers on them clap and face the spectators at the start of the video?,v_MWQ9mb_mB8U_0,"After the women in the white tops with numbers on them clap and face the spectators at the start of the video, the camera shows a shot of the spectators seated below it. In the following clip, two women's teams are playing volleyball and the spectators can be seen watching the game. A bird's eye shot of the game is shown, and then the camera angle changes to show the game from closer. Additionally, a shot of people in the spectators' stand is shown, where two men get up and cheer as they watch the game. Finally, the video ends with another clip of the game where Kenya loses a hit.",0 388,v_QOaPQpXemCA,What is the first shot in the video and who appears in the next shot?,v_QOaPQpXemCA_0,"The first shot in the video is a graphic of a web address for mDhil.com, and in the next shot, a woman named Lakshmi Rebecca is sitting in a garden with plants in the back while speaking to the camera.",0 389,v_34SBoGK8mT8,In what order does the little girl hop on the squares?,v_34SBoGK8mT8_0,The little girl begins to hop on the squares starting from the first one and continues until she reaches the last one before throwing the pebble outside the square. She then hops back to the square with the pebble in it.,0 390,v_fNhw7xE3NM8,What is the first thing that the girl does when the video starts and what can you say about the room she is in?,v_fNhw7xE3NM8_0,"The first thing the girl does when the video starts is trying to make a video for her friend Bethany. The room she is in has printed walls and a chandelier. It has a green sofa, a big green plant, a white door, and some dolls. The girl herself is wearing a black top.",0 391,v_mMm1LfVb8Pg,What is the sequence of events in the video?,v_mMm1LfVb8Pg_0,"In the video, a woman wearing a green T-shirt is mowing overgrown grass on a lawn mower in a backyard during the daytime. The camera starts off tilted to the left, but is straightened as the woman rides towards the camera. A wooden fence and the top of the trees beyond the fence are visible in the back. After stopping briefly in front of the camera, the woman drives the lawn mower near a tire swing and circles back to the route she first took. Another woman, wearing a black top, walks to the tire swing and is holding onto the rope attached to it. She moves it aside to let the woman mow the lawn under it.",0 392,v_Nvf-BZNEGdI,What is the sequence of events in the skating rink based on the video?,v_Nvf-BZNEGdI_0,"The boy wearing a black T-shirt and jeans starts dancing on roller skates. Then, two boys wearing a white T-shirt and a red T-shirt respectively come to the dance floor one by one. After dancing, the second boy wearing a red T-shirt moves back and the first two boys enter the dance floor together. At the end, the boy in the black T-shirt is dancing alone on the dance floor, while a small boy skates near him.",0 393,v_83f0iwb8VW8,What kind of moves were the two boxers trying as they sparred in the dojo?,v_83f0iwb8VW8_0,The two men were trying different moves as they boxed.,0 394,v_-MbZ-W0AbN0,What event occurs after the screen fades out to text on a black screen in the video?,v_-MbZ-W0AbN0_0,"After the screen fades out to text on a black screen, a man wearing a white lab coat is shown standing in front of a platform holding a can of furniture polish.",0 395,v_mY7QdIn51S8,What happens after the batsman hits the ball for a six?,v_mY7QdIn51S8_0,"After the batsman hits the ball for a six, the camera follows the ball as it flies through the air and lands in the stands, while the spectators in the stand can be seen cheering. The camera then shifts to the two batsmen as they speak and replays of the shot are shown. Later, the video shows clips from different matches played by different teams at various times of the day, which include instances of fielders getting the ball and using different ways to get the batsman out.",0 396,v_Lb7Q8qv3MHU,What is the temporal sequence of events in the video?,v_Lb7Q8qv3MHU_0,"First, the girl picks up a bottle of mouthwash and takes a sip, followed by gargling. Then, she spits by bending forward and begins to beatbox. After that, she picks up her toothbrush, squeezes some toothpaste on it, and starts to brush her teeth. She continues to brush and spit by bending forward, and the video ends as she finishes brushing and sticks her tongue out.",0 397,v_7dXqXFoju2M,What action does the woman take after looking at herself in front of the mirror?,v_7dXqXFoju2M_0,"After looking at herself in front of the mirror, the woman taps her cigarette and proceeds to look by turning in one direction and then the other. She places both the cigarette and the glass in her hand in front of her at the end of the video.",0 398,v_A20uQSBtYMs,What happens in the video after the man sitting behind the piano speaks into a mic?,v_A20uQSBtYMs_0,"After the man sitting behind the piano speaks into a mic, he starts playing the piano, and the men with saxophones start playing as well. A man with a guitar strumming is standing behind the men playing saxophones. The video continues with all these musicians being shown playing their instruments.",0 399,v_9InwA-ajB2M,What can we say about the end of the video in terms of the woman and the horse?,v_9InwA-ajB2M_0,"At the end of the video, the woman is still riding the horse inside the ranch and a last still image shows the woman on the horse.",0 400,v_ZK4Y6nOton8,What happens after the shuttlecock is missed by both players?,v_ZK4Y6nOton8_0,"After the shuttlecock is missed by both players, a child standing on the side picks it up and throws it at the girl. The camera then pans to people sitting on the side of chairs and one person is seen smiling. After this, the girls continue to play but keep missing the shuttlecock.",0 401,v_2nDbYhgdw2A,What is the temporal sequence of events shown in the video?,v_2nDbYhgdw2A_0,"The video starts with a person wearing a yellow shirt break dancing and doing the backspin. Other people are standing around the dancer. A short clip of a different child dancing is shown. The dancer in yellow continues to do the backspin for a few moments. Next, a boy in jeans, wearing a black shirt starts dancing, doing a few moonwalks. A different show of a group of boys walking backward in a straight line, with their hands on each other's shoulders is shown. As the group of boys passes by, an old man walks towards the camera and starts talking about break dancing. Cutaway of different kids dancing while people are standing around them can be seen. A clip of the dancer's foot movement is shown. The video ends with a sequence of the same people dancing.",0 402,v_nI6l7BP0odw,What interruptions can be seen in the video while the man plays the bagpipe?,v_nI6l7BP0odw_0,"Throughout the video, people continuously walk by at the front and back of the venue as the man plays the bagpipe. Additionally, a woman holding a child walk past followed by others. At one point, a man takes a photo with a flash from the back. Eventually, a man wearing an orange shirt stands in front of the camera as the video ends.",0 403,v_uCvjzcVCtEs,What does the athlete do after running on the track?,v_uCvjzcVCtEs_0,"After running on the track, the athlete moves both his hands forward and jumps on the sandy area.",0 404,v_eRco7yXc-40,How many dives did the person do off the diving board before executing a reverse somersault dive?,v_eRco7yXc-40_0,The person did a few jumps on the diving board before executing the reverse somersault dive.,0 405,v_IGZvj1J9tNc,What happens after the coach finishes speaking in the basketball arena?,v_IGZvj1J9tNc_0,"Once the coach finishes speaking, she turns toward the players, and a group of three players start a drill where they run across the court, while the one in the middle dribbles the ball all the way and finally shoots the ball in the basket. The players then turn back, while a different player among the three, wearing a white uniform, collects the ball and runs back to the other side of the court with the others while dribbling the ball. This drill is then performed by different groups of players simultaneously, and the players continue the drill until the end of the video.",0 406,v_49PbyLbrxlE,What is the woman doing in the bathroom and what does she do at the end of the video?,v_49PbyLbrxlE_0,"The woman is standing in front of the mirror in the bathroom and washing a piece of cloth. As she continues to wash the cloth, she rinses it in the sink filled with dirty water. The video ends with the woman still washing and speaking into the camera.",0 407,v_4QRRxub6L5Q,What was the last action of the girl in the video and how was the environment around her?,v_4QRRxub6L5Q_0,The last action of the girl was doing backflips and landing. The platform she was on was indoors and well-lit from above. There was a poster of a cartoon sloth on the far wall. Another girl was sitting and watching to the side.,0 408,v_zoWqv-sIdBY,What is the initial scene of the video and what happens next?,v_zoWqv-sIdBY_0,"The video starts with text appearing on a blue screen. Next, a boy named Ivan is sitting on a chair in a well-lit bedroom. His hair is being combed by another boy standing behind him, who is introduced as Oscar. Ivan is sitting in front of a table with a computer on it and there is a wooden drawer next to him. As Oscar brushes Ivan’s hair, his head is pulled back.",0 409,v_NwlIZ1T93xE,What is the sequence of events in the video?,v_NwlIZ1T93xE_0,"A man wearing a t-shirt and a hat is shown buffing the shoes of a customer in a dimly lit bar. People are seen sitting at tables, with lights on the walls. A band is playing music on the left. The camera pans to the band and then back to the shoe-shiner, who continues to buff the customer’s shoe until the video ends.",0 410,v_0DFz3sgfda0,What is the order in which the girls add ingredients to the salad in the video?,v_0DFz3sgfda0_0,"The girls start by cutting lettuce and tomatoes and putting them on the salad plate. This is followed by the other two girls picking various ingredients to put in the salad. The girls continue to add various ingredients to the salad, with the girl in the middle adding oil, the girl on the left sprinkling salt out of a salt shaker and the one on the left adding peanuts.",0 411,v_qmfZw9eEpIU,What happens at the end of the video?,v_qmfZw9eEpIU_0,"Towards the end of the video, the man continues to windsurf until the screen fades to black.",0 412,v_tLk0Y04OaCA,What is the first thing the girl does after exiting the toilet stall and walking to the brightly lit sink?,v_tLk0Y04OaCA_0,"After exiting the toilet stall and walking to the brightly lit sink, the girl in the blue shirt starts to wash her hands.",0 413,v_cCDffwsJvsY,What is the sequence of events in lighting the fire in the video?,v_cCDffwsJvsY_0,"The person in the video lights a piece of chip and places it on the arranged firewood laid out on the ground in the backyard. They then light a few more pieces of kindling and place them on the firewood to help it light faster. Finally, the video ends with a closeup of the top of the woodpile.",0 414,v_Ntyl5alZXeM,What is the sequence of events in the video related to the process of getting the ear pierced?,v_Ntyl5alZXeM_0,"First, a girl wearing a pink top sits in a chair of a well-lit shop to get her ear pierced. Then, a woman wearing gloves and a dark blue top cleans her ear before marking it with a marker from the counter that is filled with bottles. Next, the woman uses an ear-piercing gun to pierce the top of the girl’s ear and finally, she cleans the back of the girl’s ear.",0 415,v_VWGV8I5byKI,What is the sequence of events that the man performs while training for shotput in the video?,v_VWGV8I5byKI_0,"The man starts with preparing for shotput on a concrete ground and throws the shotput to the left, after which he moves to the throwing circle and throws the shotput again by spinning and turning before throwing. A slow-motion replay of his throw is shown a few times, with frames frozen for a moment as the man turns. Next, he throws the shotput again. In the following clip, the man is inside a gym with exercise equipment visible around him, and he lifts a barbell with weights stacked on either end once before dropping it to the ground.",0 416,v_sNJ6_N0j9Ts,What is the sequence of events in the video related to the game played on the squash court?,v_sNJ6_N0j9Ts_0,"The video starts with an old man hitting a ball on a squash court. Three other players join him on the court, all wearing shorts and sports shoes. A man in a blue t-shirt starts the game and all the players try to hit the ball. Finally, a man in a red polo shirt hits the ball on the glass door and bounces it to the other side. The video ends as the man in a red polo shirt taps his raquet on the glass door in front of the camera.",0 417,v_t13MQSYjlas,Can you describe the sequence of events in the hammer throw practice session?,v_t13MQSYjlas_0,"Sure, the man wearing a red shirt and black pants stands in a throwing circle with a hammer connected to a handle in his hands. He swings the hammer around himself a few times and spins it a few times before throwing it through the open end of the practice net. He watches the hammer land and then a man walks from the right side of the frame a few meters from the practice net before the video ends.",0 418,v_syfyM1Pble8,What is the sequence of events shown in the beginning of the video?,v_syfyM1Pble8_0,"The video begins in a dimly lit gym with people on exercise bikes, followed by the camera panning to show a man at the front of the gym who is calling out instructions and also peddling an exercise bike. The people on the bikes can be seen following his instructions. A mirror covers the back wall of the gym, and a woman wearing a grey t-shirt can be seen walking away as the others are exercising. The first person on the front row has a towel draped over the handle of his exercise bike.",0 419,v_u0A5NIUKEQo,What happens after the two boys perform in front of the Christmas trees?,v_u0A5NIUKEQo_0,"After the two boys perform in front of the Christmas trees, they talk to a woman and get their picture clicked with a girl wearing a black T-shirt. There are also two other girls sitting with her. One of them is taking their picture. There is a clothes showroom on their right side. Finally, the video ends by showcasing a digital page with some text displayed on it.",0 420,v_11p9goB2rm8,What are the sequences of events in the video in terms of timing?,v_11p9goB2rm8_0,"The video begins in a playground with a basketball court followed by a teenager taking a running start and hopping through the hopscotch court. The two other teens follow suit and all three of them hop through the hopscotch court again. Two of the boys then attempt to do a pull-up from the basketball hoop and jump down. After that, they run a few feet away from the basketball hoop. The video ends with the cameraperson slowly walking towards the boys. Throughout the video, there are other basketball hoops visible in the distance with people scattered on the basketball court.",0 421,v_4Gx_8vuxzAk,What is the woman doing at the beginning of the video and how does it end?,v_4Gx_8vuxzAk_0,"At the beginning of the video, the woman is standing in a living room holding a towel and a bottle of wood polish. She drips some polish on the coffee table and proceeds to wipe it with the towel. The video ends with the woman standing over the coffee table and explaining how to fill cracks in the table.",0 422,v_HMs703DhjQU,What happens after Will Smith and the other man finish their conversation in the kitchen?,v_HMs703DhjQU_0,"After the conversation ends, Will Smith takes out his sunglasses, plays the harmonica while singing in between, and then stops playing and looks to his right, bringing the video to an end.",0 423,v_N4qhryre_TE,In what order are the athletes shown performing on the tumbling track?,v_N4qhryre_TE_0,"The video begins with a montage of athletes participating in an indoor tumbling competition, performing various acrobatic movements. The video then continues with another montage of people tumbling. Throughout the video, several individual clips of athletes performing on the tumbling track are shown interspersed with interviews of the athletes. In the final clip, a young boy performs a stunt on the track and then walks over to a man wearing a white t-shirt and high-fives him.",0 424,v_Jy93pLzV2uw,What happens after the team wearing the yellow uniform hits the ball back and forth with the team wearing the orange uniform?,v_Jy93pLzV2uw_0,"After the team wearing the yellow uniform hits the ball back and forth with the team wearing the orange uniform, the players wearing the orange uniform get the ball and almost miss the hit. However, a player dives and hits the ball before another player from the same team hits it to the other side. The team wearing the yellow uniform misses the ball as they are already celebrating, and the team wearing the orange uniform wins the exchange and celebrates. The last play is replayed a few times before the two teams get back into positions again.",0 425,v_-vnSFKJNB94,What are some diving maneuvers that Michal Navratil performs in the video?,v_-vnSFKJNB94_0,"In the video, Michal Navratil performs a range of diving maneuvers including tucks, twists, and forward dives. He does various flips from the diving board, showcasing his skills and control in the air. The video ends with him performing a forward tuck dive.",0 426,v_6wPVO7I8iIY,What is the first action performed by the bartender in the beginning of the video and what follows it?,v_6wPVO7I8iIY_0,"The bartender places a glass on the table and the text ""The Art of Making Cocktails"" is displayed. After this, the bartender can be seen standing behind the bar and wiping a glass with a cloth.",0 427,v_Fb4X1PWfOvY,What are some of the details present in the video related to the temporal sequence of events?,v_Fb4X1PWfOvY_0,"The video starts with the logo of Indiana University Health on a light yellow background. Following that, the title ""Parallel Bars Basic Level"" is displayed, and a woman exercises on the parallel bars in the park during daylight hours. A man is also seen walking in the park. After that, there is a title displaying ""Parallel Bars Advance Level"" and a man exercises on the parallel bars. The video ends with a text saying ""THE STRENGTH IT TAKES"" and the website URL for ""www.iuhealth.org/workout"" is displayed on a light yellow background.",0 428,v_Ws12Dt0Ny5Q,What sequence of events occurs in the pole vault competition part of the video?,v_Ws12Dt0Ny5Q_0,"In the pole vault competition, the first female athlete in a red crop top, bikini bottoms, and sports shoes runs towards the blue platform with the bar above it supported by two white pillars, jumps above the bar using her pole, lands on the platform, slow-motion replay of her jump is shown. Then, the second female athlete in a purple crop top, grey bikini bottoms, and white sports shoes runs towards the platform, jumps above the bar, lands on the platform and claps. Another replay of her jump is shown. After that, the first athlete tries again and lands on the platform raising both her hands, another replay of her jump is shown.",0 429,v_tY9dmG6IyPo,What sequence of movements did the athlete perform in the video?,v_tY9dmG6IyPo_0,"In the video, the woman athlete swung the hammer in the air with both her hands, then rotated her whole body to throw the hammer in the air. The hammer then traveled in the air before falling on the grassy field where some people wearing the same uniform were standing and walking toward it.",0 430,v_IfugNwywj-k,What is the temporal sequence of events in the video?,v_IfugNwywj-k_0,"The video starts with an old man repairing a bicycle in a well-lit shop. The man is sitting on a wooden chair in front of the bicycle, which is propped up vertically against the wall. Another bicycle is parked next to him. A woman wearing a pink top enters the shop and they start to converse. The old man turns the wheel of the bicycle and the woman checks if it is working. The video ends with the two of them still conversing, and the man holding the woman by the ear.",0 431,v_dZsk5Dp_5FE,In what specific sequence of events did the boy chop the wooden log in the video?,v_dZsk5Dp_5FE_0,"The boy started chopping a wooden log placed on a chopping block while standing in a patch of dirt in the woods. He first swung the axe and struck the log, causing it to split and fall to the ground. Then he picked up a fresh log and placed it on the chopping block. He walked back and swung the axe on the log, resulting in it also splitting and dropping to the ground. Finally, he held a thumbs-up sign to the camera.",0 432,v_wJk3KOUAwXA,What is the sequence of actions performed by the man in the woodworking shop?,v_wJk3KOUAwXA_0,"The man in the woodworking shop first applies wax on the surface of the table with a ball of steel wool. Then, he uses a car buffing wheel to polish the section he waxed. Lastly, he uses a wet rag to buff the surface.",0 433,v_wh4JNeQh9FQ,What happens after the tattoo artist marks the girl's ear?,v_wh4JNeQh9FQ_0,"After the tattoo artist marks the girl's ear, the cameraperson gets a closer look and then walks back as the girl is getting tattooed on her ear by the technician using a tattoo gun. Once the tattoo artist is done tattooing, they proceed to clean the girl's earlobe.",0 434,v_WdJUMmy2ox8,"What actions do the two men take in the video, and in what order do they occur?",v_WdJUMmy2ox8_0,"The man on the left smokes from a hookah, uses his mobile phone, drinks from a glass, takes the pipe from the other man, and makes smoke rings as he smokes. The man on the right wears a cap and a red sweater, passes the pipe to the man on the left who starts smoking, and blows smoke rings while smoking. The video ends as the man on the right turns off the camera. Overall, the actions occur in the following sequence: man on left smokes hookah, man on right passes pipe and smokes, man on left uses mobile phone and drinks, man on right blows smoke rings, man on left takes pipe and smokes, and finally, man on right turns off camera.",0 435,v_AL1W3HkjJ2Y,Can you explain the order in which the woman shoots the arrows in the video?,v_AL1W3HkjJ2Y_0,"Yes, the woman in the video starts shooting arrows from her quiver one after another until her quiver is empty. She is standing on an indoor basketball court, and is then shown from the back as she starts to shoot at a makeshift target made of sheets near the basketball hoop. She is shown shooting arrows one after another into the middle of the sheet on the target.",0 436,v_ooFuSspUuVY,What is the sequence of events in the video related to the girl and her horse?,v_ooFuSspUuVY_0,"The video starts with a girl wearing a blue top riding a horse, leading it through a few obstacles and jumping over them. Other riders are visible in the arena as they ride their horses. The girl leads her horse multiple times over different obstacles while riding or simply around poles on the ground. The video ends as the girl brings the horse around near the camera and goes for another round.",0 437,v_j_1kNiGcepU,What happens after the harmonica player finishes playing the first song?,v_j_1kNiGcepU_0,"After the harmonica player stops one song and begins another, he waves to someone to his left, indicating he knows someone in the area. The video continues until the harmonica player finishes playing this second song and pockets his harmonica, greeting someone walking behind him.",0 438,v_le7JdKQB65I,What is the sequence of events of the woman's makeup application?,v_le7JdKQB65I_0,"The woman first applies cream, then eyeliner, followed by lipstick. She then does contours and follows up with a highlight and blush before picking up the mirror and looking at herself.",0 439,v_-6dz6tBH77I,What did the man do after he spun a few times while standing in the net?,v_-6dz6tBH77I_0,"After the man spun a few times while standing in the net, he threw the disk from the open end of the net and looked toward the direction where he threw it. The people outside the net applauded.",0 440,v_BnO8AfQS8yE,Can you describe the sequence of events that occurred in the video?,v_BnO8AfQS8yE_0,"In the video, we see two people playing squash on a well-lit court with a wooden floor. One player is wearing a black shirt and the other is wearing a yellow T-shirt. During the game, the player in the yellow shirt misses his shot, while the other player kneels down to tie his shoes. The video ends when the man in the yellow shirt looks up to the cameraman.",0 441,v_tXUssW4vT3o,What is the sequence of events in the belly dancer performance?,v_tXUssW4vT3o_0,"The video starts with a spotlight aimed at a white curtain with red lighting on the stage. A belly dancer enters the stage wearing a sparkling turquoise-colored belly dancer dress. She starts moving her hands and performs her steps by moving around the stage. There is music playing in the background and camera flashes in between her performance. She twists, turns, and bends her body throughout her performance. The video ends with her performance finishing and the audience applauding her.",0 442,v_MgjxjBxGrQU,What happens after the man in the Mario costume smokes from the hookah again?,v_MgjxjBxGrQU_0,"After the man in the Mario costume smokes from the hookah again, he opens a door on his right and a man in a dark green Luigi costume enters the room. The two hug and start to smoke the hookah. Shortly after, a man in a yellow Luigi costume enters the room and they all start to smoke together while talking to each other. They also start dancing to music while sitting and smoking, and blow smoke at each other. The three men share the hookah and at one point the man in the Mario costume hands the pipe to the man in the green Luigi costume, then takes it back after the man in the yellow Luigi costume smokes once. They then do a chest bump and continue to smoke and converse. The video ends with a slideshow of the three in different poses.",0 443,v_TGIQtaINzCY,What is the sequence of events in the video with respect to the cycling class?,v_TGIQtaINzCY_0,"The video starts with a graphic and text ""Voice of America"" and then shows a woman instructor on her exercise bike wearing a black t-shirt and a mic in her ear. She is instructing a class with people on their exercise bikes in a well-lit gym with white walls and a grey floor. The instructor calls out instructions as the class members pedal. A clip of an interview with one of the participants, a woman wearing a grey t-shirt and a hairband, is shown, followed by a clip of people exercising from different angles. Next, a man moves a display tower into the class and demonstrates how to change the resistance on the exercise bike. The video continues to show the cycling class as people are pedaling, and in the following clip, the man speaks to the camera again. The video ends with clips of people on different exercise machines.",0 444,v_CvbBSwz-9XI,What happens in the next clip after the man fills the bucket with water?,v_CvbBSwz-9XI_0,"After the man fills the blue bucket with water, the dog is seen shaking the water dry in slow motion. The man then pours the water from the bucket on the dog.",0 445,v_-cAcA8dO7kA,When does the biker ride the dirt bike in the field?,v_-cAcA8dO7kA_0,The biker rides the dirt bike in the field during the daytime.,0 446,v_9snScUyE8_4,What is the sequence of events in the video?,v_9snScUyE8_4_0,"In the video, a woman standing in front of a sink begins by scrubbing a plate with a scrubber followed by washing it and stacking it on the shelf next to the sink. She then proceeds to wash a spoon and a fork using a scrubber and places them on the shelf before cleaning a tumbler and stacking it on the side. Finally, she turns to the camera and yells after cleaning the dishes.",0 447,v_LvaU_4xbxb0,What is happening in the beginning of the video?,v_LvaU_4xbxb0_0,"In the beginning of the video, two girls wearing boxing gloves are seen boxing in a gym. One girl is wearing a black vest while the other is wearing a grey t-shirt. They are being instructed by a trainer who is out of frame. There is also a man wearing boxing gloves standing nearby, leaning against a punching bag. Other people can be seen boxing on the other side of the gym and the gym is well-lit with an off-white painted wall and a blue foam mat covering the floor. Punch mitts are also hanging from hooks on the wall.",0 448,v_96ADEnJy4GU,What is the order of events in the video?,v_96ADEnJy4GU_0,"The video starts with a man washing his hands in a sink followed by people crossing a street on a zebra crossing. Then a person can be seen welding something in a workshop with dim lights, and a monster truck drives through a mud track. Before the next clip, an animated hand appears to swipe on a black background. In the following clip, there is a scene with cars moving through traffic with a building visible far in the back of the cars.",0 449,v_ZUl43hNzGjA,What is the sequence of events in the video?,v_ZUl43hNzGjA_0,"The video begins with a view of a white building from the outside, followed by a glimpse inside a ballet studio where children practice ballet with a teacher wearing a white t-shirt and pants. Then, students are seen practicing in a hallway while some sit at the bottom of the stairs at the back. A girl is speaking from inside a well-lit studio, followed by girls dancing with one hand on a handle. A woman wearing a green top is talking to the camera, and then there is a shot of the dome in the building. The clip changes to a classroom with students seated and one of the students writing on the chalkboard. After that, children are seen walking through the school as a woman wearing a red shirt speaks to the camera. Finally, a girl and a boy are dancing in a studio while the children watch.",0 450,v_sBwUwgTjhAU,What does the woman wearing a sweater over a red outfit do after looking into the camera?,v_sBwUwgTjhAU_0,"After looking into the camera, the woman walks to a desk with a computer in the back and sits down.",0 451,v_nTY4IaGRFIc,What happens towards the end of the video?,v_nTY4IaGRFIc_0,"Towards the end of the video, people near the left goalpost get the ball and try to get it past the goalkeeper who is sitting in front of the goalpost and blocking it. Eventually, they get the ball past the goalkeeper and score a goal. The goalkeeper then throws the ball across the pool near the opposite goalpost. The video ends as the people are still playing.",0 452,v_-D1gdv_gQyw,What does the man do after holding a knife in his right hand?,v_-D1gdv_gQyw_0,"After holding a knife in his right hand, the man kneels down and strikes his knife on a fire starter to light a stack of firewood on fire. The firewood stack has heavy logs placed against each other and a few thinner sticks placed in the middle. A green piece of paper is visible in the middle. The stack is placed in an area with sand and pebbles, and the fire grows as the video ends with the man celebrating.",0 453,v_WCS8dzRT7Xk,What is the order of steps for ironing the green piece of clothing shown in the video?,v_WCS8dzRT7Xk_0,"The woman starts by turning the fabric inside out and lays it flat on the ironing board. She then puts a white ironing cloth on the fabric and begins to iron it with slow circular motions, starting from the top and working downwards. Finally, she pulls the fabric to iron the next section. The video ends with the woman lifting the fabric off of the ironing board.",0 454,v_wjr5M-6qEWI,What is the sequence of events during the beginning of the video as two ping pong players play a game in the arena?,v_wjr5M-6qEWI_0,"The video begins with two ping pong players playing a game in a well-lit arena, with seats for spectators near the walls and flags of different countries hung near the rafters. A man wearing a jacket and khaki pants is sitting near the separator of the court. Later, a referee wearing a coat is seen sitting behind a table at the edge of the court while the two players are on an orange court playing ping pong.",0 455,v_GOF5guH_kuI,Can you describe the order in which the gymnast performed her routine?,v_GOF5guH_kuI_0,"The gymnast started her routine on the balance beam after hopping onto it using a springboard. She first performed a backflip and unfortunately slipped and fell on the mat. She then got back up on the balance beam and continued her routine which included flips, balancing acts, and jumps. However, she lost balance again and landed on the mats before completing her routine. She got back up on the beam again and completed her routine, which was followed by cheers from the crowd.",0 456,v__a527xEzhkw,How long does the girl play the harmonica in the video?,v__a527xEzhkw_0,The girl plays the harmonica for several minutes while swaying back and forth.,0 457,v_cH3H-arDsH4,What happens after a goal is scored in the water polo game in the video?,v_cH3H-arDsH4_0,"After a goal is scored in the water polo game in the video, the goalkeeper throws the ball outside and a few players can be seen passing the ball to others. Two players can be seen swimming and fighting for the ball while others swim away.",0 458,v_uqwf903l5-E,What sequence of events did the cheerleading group perform in the video?,v_uqwf903l5-E_0,"The cheerleading group first lifted five girls, and then lifted four other girls while a girl in the front did backflips and cartwheels. Next, some group members did flips and clapped while some of them did backflips. The group lifted four girls in the air and they all did a leaning forward pose by standing on one leg. Then some of them did cartwheels and backflips, and a boy fell after doing the backflip. Finally, the group ended with cheerleading dance steps and the audience applauded them.",0 459,v_hvhny4-sI-w,What is happening in the video and what are the two teams wearing?,v_hvhny4-sI-w_0,"In the video, a polo match is taking place on a polo field with players riding horses and hitting the ball with mallets. The two teams are distinguished by the color of their polo shirts - one team is wearing white and the other is wearing red.",0 460,v_d09u-0k3LdE,Can you describe the sequence of events in the video?,v_d09u-0k3LdE_0,"The video begins with the woman in a red vest standing in a net, holding a hammer attached to a string in a field with a red mat. She swings with the string and spins a few times before releasing the hammer through the open end of the netting. The video ends with the woman walking off to the side.",0 461,v_B0GCHDqEsRU,What is happening during the end of the video?,v_B0GCHDqEsRU_0,"As the video ends, both couples are still dancing.",0 462,v_aH39BSM0-Ag,What does Samuel do in the video?,v_aH39BSM0-Ag_0,"In the video, Samuel, who is wearing a blue-green jersey with the number 24, can be seen running through the field, checking the ball, chasing the player with the ball, and trying to check it while playing different positions.",0 463,v_iqhdqhVttEM,What activity does the man start at the beginning of the video?,v_iqhdqhVttEM_0,"The man wearing a white T-shirt starts to dance at the beginning of the video, and the people behind him start to follow his lead, indicating the start of the Zumba class.",0 464,v_cECycCDw1Nc,What is the sequence of events in the video regarding the creation of the sandwich?,v_cECycCDw1Nc_0,"The woman begins by introducing herself, then shows the ingredients of the sandwich. She slices a roll of bread in half, spreads pizza sauce on one-half of the roll, adds slices of pepperoni and cheese to the slice of bread and then places the sandwich in the oven. Once finished, the sandwich is topped with slices of tomato and shredded lettuce before the two halves are put together to complete the sandwich.",0 465,v_zxr6UZKPDh4,What is shown in the video after the man wearing a red vest kayaks down the stream?,v_zxr6UZKPDh4_0,"After the man wearing a red lift vest kayaks down the stream, a man wearing a blue lift vest is shown rowing a green kayak. Following that, people can be seen rowing their kayaks down the rapids, and a clip of two kayakers on the shore removing their life vests is shown. The clip then continues from the perspective of a person on a green kayak as they go down the stream. Throughout the video, shots of various individuals kayaking are shown until the video ends with the kayakers still rowing down the stream.",0 466,v_egowZOcbEkI,What happens in the video after the animated shot of Earth?,v_egowZOcbEkI_0,"In the next clip, an instructor wearing a white shirt and green shorts is seen standing on a basketball court with a basketball tucked in the crook of his left hand. He is speaking into the camera while another person wearing a grey T-shirt stands behind him and folded chairs are visible in the background.",0 467,v_SNJgJB2PGdI,What does the woman do throughout the video?,v_SNJgJB2PGdI_0,"Throughout the video, the woman belly dances while balancing a candelabra on her head. She begins her performance with the candelabra on her head and continues to dance with it until the end of her performance, where she finishes her dance, holds her hands to her sides, and walks away.",0 468,v_HURRgbZGz8Q,What is the sequence of events in the spear-throw competition shown in the video?,v_HURRgbZGz8Q_0,"The video shows athletes holding a spear running and throwing it in a competition in an outdoor stadium. The audience sitting in the seats and standing in the field in suits cheered them on as they aimed to throw the spears as far as possible. The landing of the spears was shown, with lanes marked with numbers in the landing area. The video ended with an athlete throwing a spear, which was followed by its landing, leading the audience to applaud. Additionally, a moment featuring Adolf Hitler clapping was shown, and the video ends by displaying the scoreboard with the names and throw distances.",0 469,v_afMQA352X_A,What type of training did the man in the white T-shirt start with before the sparring session?,v_afMQA352X_A_0,The man started his practice with punches and kicks before the sparring session. The trainer was calling out which move he should do next and in what count.,0 470,v_Zhx6BYVb64g,How does the video showcase the boy’s activities related to the temporal sequence of events?,v_Zhx6BYVb64g_0,"The video shows the boy playing the violin in the beginning wearing a white t-shirt and glasses and standing before a bright light, before it shifts to a dimly lit room where he continues playing while walking through the room and the house and being joined by other people. The clip then shifts to him sitting on a couch in a sweater over a shirt and then getting up and leaving, only to return wearing a grey shirt and sunglasses and taking selfies with a girl who later leaves. The boy is then seen sitting on a couch again before changing his glasses and leaving as footage of him playing the violin is shown in between. Finally, the video ends with him knocking on a door and giving a stuffed animal to a girl.",0 471,v_l8gg9TYh_B0,What is the sequence of events in the video?,v_l8gg9TYh_B0_0,"The video starts with two newscasters, a woman on the left and a man on the right, standing behind a glass news desk with the number ""10"" displayed on the front. A cutaway of two men shoveling snow during the day is shown. In the next clip, the two men speak to the camera one after the other and their names are shown on ribbons on the screen. Next, the two men are shown again shoveling snow and then speaking to each other. In the following clip, a doctor is interviewed and a few clips of people shoveling snow are shown as cutaways of the doctor speaking. In the next clip, a woman wearing a black jacket reports in front of the camera. She holds up her phone and shows her heart rate. Next, a woman is shown shoveling snow. Another cutaway of the doctor speaking is shown. Finally, the two men from the first clip are shown speaking to the camera and the video ends with the news anchors in the studio finishing their reporting.",0 472,v_Ds2O0-8Labs,What is the temporal sequence of events in the video related to weightlifting?,v_Ds2O0-8Labs_0,"The video begins with a man lifting a barbell and dropping it, followed by clips of the man lifting progressively heavier barbells and dropping them after lifting them above his head. The man lifts an 85-kilogram barbell and drops it on the floor multiple times. He then lifts a barbell of 130 kilograms and drops it after lifting it above his head. The temporal sequence of events is such that the man starts with lifting a lighter weight, then gradually increases the weight until he lifts the heaviest weight at the end of the video.",0 473,v_k1QAWLupB-I,What happens after the woman is photographed by multiple photographers?,v_k1QAWLupB-I_0,"After the woman is photographed by multiple photographers, a man in a red polo shirt joins her on the red carpet to get photographed. The woman holds up a paddle in front of her face with the picture of the man she is standing next to on it.",0 474,v_oncTwYfvCD8,What is the temporal sequence of events in the video relating to the martial artist's performances?,v_oncTwYfvCD8_0,"The video starts with the martial artist wearing a white polo shirt and trousers performing various martial arts movements in a well-lit studio, followed by a shot of another man doing martial arts movements in a well-lit room with people observing him. Then, there is a scene where a man in a green martial arts uniform does various movements outdoors on the lawn during the daytime with people observing him. The final scene shows the martial artist in an indoor venue demonstrating different movements, with people observing him. ",0 475,v_QG2xYcN_bl0,What does the boy do in the video and how does he do it?,v_QG2xYcN_bl0_0,"In the video, the boy wearing a grey vest dribbles a basketball on a basketball court during the daytime. He runs crisscrossing around little orange agility cones, and reaches the basket and throws the ball through it. He repeats this drill by running back to the starting cone.",0 476,v_9UvVeUYQLgA,What was shown in the video with respect to the temporal sequence of events in the paintball arena?,v_9UvVeUYQLgA_0,"The video showed different shots of people putting on helmets, people wearing different camo outfits and running in the arena, cable drums and old tires arranged in the arena as places for people to hide behind, and people shooting the paintball guns while moving and avoiding being shot at. It also showed different videos of the arena always during the day time and people hiding behind cable drums and stacked tires to duck and shoot other players. A fence visible around the arena and a street with cars and other vehicles driving by were shown. The video ended with a shot of a different area of the arena with more weeds and cinderblocks as covers. ",0 477,v_yttmx8mcjGw,What is the first event that takes place in the video?,v_yttmx8mcjGw_0,"The video starts with two women sitting on a beach, with one wearing a yellow T-shirt and a Ford logo on the back while the other is wearing a pink T-shirt with a Ford logo on its back. People are seen walking and playing cricket on the beach.",0 478,v_Lshue6AmrIw,What is happening in the beginning of the video?,v_Lshue6AmrIw_0,"In the beginning of the video, a little girl wearing a black outfit is sitting on a shoe-shine chair in a well-lit mall. A little boy wearing a green shirt is next to her. A woman is kneeling in front of the girl and shining her shoe while wearing a black jacket and gloves. A store is visible behind the shoe-shine station. She turns to her right and speaks to the cameraman.",0 479,v_wcxEkMoOmBk,What happens after the initial scene of Julie speaking to the camera in the well-lit hair salon?,v_wcxEkMoOmBk_0,"After the initial scene of Julie speaking to the camera in the well-lit hair salon, the women seated in the salon are shown one at a time as they attach hair rollers to their hair. They are seen using different types of rollers. Near the end of the video, the women are shown as they have removed their hair rollers and spraying their hair, while they are looking at mirrors.",0 480,v_dEpUIpmBvow,"What time of day is the man climbing the rock, and what can be seen streaming down through the tree cover?",v_dEpUIpmBvow_0,"The man is climbing the rock during the daytime, and patches of sunlight can be seen streaming down through the tree cover.",0 481,v_zEttEkAdHts,What is the order of events in the video starting from the rolls of gift wrappers?,v_zEttEkAdHts_0,"The video starts with rolls of gift wrappers stacked on top of each other, followed by a stack of one US dollar notes placed on a white surface with text displayed above and below it. Two scotch tapes are placed next to each other with the one on the left with a red ""X"" over it. The left scotch tape disappears, and in the following clip, a gift is placed on the white surface. Currency notes of one US dollar are then taped to the gift to look like gift wrapping. Finally, a green string is tied around the box, with bows on top.",0 482,v_eS-VU_XV1K8,What is happening in the beginning of the video?,v_eS-VU_XV1K8_0,"The video starts with a group of women doing an aerobics workout, led by an instructor.",0 483,v_z3MP0yJBtGg,What was the sequence of actions of the woman at the dipper well?,v_z3MP0yJBtGg_0,"The woman first scooped out some water using the ladle with her right hand. She then washed her left hand and used it to scoop out water and wash her right hand. Lastly, she placed the ladle back on top of the dipper well and walked away.",0 484,v_EZyLBq2jJtE,What is the temporal sequence of events in the video?,v_EZyLBq2jJtE_0,"The video starts with a black screen displaying the text “REALLY BETHANY Shaving Your Legs In My Office…REALLY?”. Then, a woman named Bethany is seen shaving her legs while sitting on a chair in a well-lit room with white walls. She shaves her right leg followed by her left leg. A woman enters the office through the open door on Bethany’s left and shows some papers to her before leaving. Bethany then holds a pose while standing in the office with a woman standing behind her. The woman behind Bethany is wearing a grey top with black pants, black shoes, and glasses. Bethany then skips out of the frame and the video ends with a fade-out into a black screen. ",0 485,v_Omvg9UtGOes,What is the order in which the events occur in the video?,v_Omvg9UtGOes_0,"The video starts with text on a black screen, followed by a woman wrapping a box with a cloth on a table. The cloth is pink on the inside and green on the outside. Afterward, the woman brings the edges of the cloth together over the box and ties them together with care.",0 486,v_oni9K1_MCuw,What is the first thing that happens in the video?,v_oni9K1_MCuw_0,The video starts by showing people seated at tables in a ballroom.,0 487,v_Rn6_IwckXg4,What is the temporal sequence of events in the video?,v_Rn6_IwckXg4_0,"The video starts with text on the screen and then shows a woman wearing a black coat smoking an e-cigarette followed by another woman watching her. Next, a man wearing a checkered shirt and glasses smokes an e-cigarette and then a montage of different people smoking the e-cigarette is shown. Throughout the video, a woman wearing a red outfit with a hat is standing next to most of the people who are smoking.",0 488,v_2fzIi1lPd8U,What happens immediately after the woman helps the little girl jump down the porch in the video?,v_2fzIi1lPd8U_0,"After the woman helps the little girl jump down the porch in the video, she begins to teach the girl how to play hopscotch.",0 489,v_C7yd6yEkxXE,What is the order of events in the beginning of the video?,v_C7yd6yEkxXE_0,"The video begins on a dirt bike track with trees and vegetation visible outside the track. Bikers can be seen approaching from behind a jumping ramp. A rider jumps over a jumping ramp and continues on to the next one, while another rider parallel to the first one jumps over a ramp on the right. The clip ends with the riders making a left turn after they clear the second ramp.",0 490,v_NM7Vye5nxj8,What sequence of events occurred during the high jump competition in the daytime?,v_NM7Vye5nxj8_0,"During the high jump competition in the daytime, a boy in a blue vest and shorts started his run, jumped over the bar by jumping backward and cleared it. He then walked away while speaking to a man wearing a blue t-shirt. Following that, a man in a blue vest and tights began his run, jumped over the bar, but unfortunately made contact with it which fell as he landed on the cushion. He then got up and walked away. In the background, an incline with shrubs and trees is visible.",0 491,v_TNqc2yWZztE,What does the woman do after wrapping the small box?,v_TNqc2yWZztE_0,"After wrapping the small box, the woman takes a bigger red square box and measures its sides with a plastic scale. She then takes a gift-wrapping paper and folds it so that it covers the box completely and applies tape on the center. The frame then changes to another text being displayed on a black background.",0 492,v_UNXLfqkwKFc,What does the man do at the start and end of the video?,v_UNXLfqkwKFc_0,The man starts the video standing with a vacuum cleaner and ends the video by switching off the vacuum cleaner and moving out of the frame.,0 493,v_ghxiG0Dnrt0,What does the woman do after washing her hands?,v_ghxiG0Dnrt0_0,"After washing her hands, the woman dries them on her apron and then walks out of the frame.",0 494,v_W9H2qVnIWXs,What is the sequence of events involving the groomer in the video?,v_W9H2qVnIWXs_0,"The video begins with a white labrador retriever outside followed by a man wearing a red polo shirt bathing a golden retriever secured with a harness. The groomer is shown lathering and washing the dog with a hose, then drying it off with a towel and a blow-drier. He then wipes the dog with a towel again and brushes its coat. After that, the video transitioned to a man entering a shop with his dog in a harness. The following clip shows a golden retriever laying down on the floor. Subsequently, a labrador retriever is shown jumping through an orange tube followed by jumping down onto the ground in a wooden area. Finally, the dog is shown panting in a different location and the video ends with the contact information for the groomer displayed.",0 495,v_IN23CO8Kotk,What is the last event shown in the video?,v_IN23CO8Kotk_0,The last event in the video is the parrot still eating cream from the coffee cup.,0 496,v_ZxPF3s_OLDo,What does the man do after he climbs up the rocky hill?,v_ZxPF3s_OLDo_0,The man rappels down with a rope and removes anchors as he is descending.,0 497,v_BFChXuwZ4wo,What was the first design that was created on a girl in the video?,v_BFChXuwZ4wo_0,"In the video, the first woman who enters the tattoo parlor goes to the tattoo artist and gets a stencil on her wrist.",0 498,v_9k19UUJtldg,Can you describe the temporal sequence of events in the video?,v_9k19UUJtldg_0,"Sure! The video begins with a boy standing in a room in front of a ping-pong table. He hits a ball with a paddle before the scene switches to him playing against an opponent in a ping-pong competition. Next, the video shows the boy playing against different opponents and in different venues. The boy is also seen playing against people of different nationalities. The video ends with him playing against an opponent and missing a hit.",0 ================================================ FILE: eval_gpt4v_multiplechoice.py ================================================ """ Copyright (c) 2024, Deep Representation Learning Research Group, Seoul National University. All rights reserved. SPDX-License-Identifier: BSD-3-Clause For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause """ import sys, os import time from io import BytesIO import argparse import re import uuid sys.path.append(os.path.dirname(os.path.abspath(os.path.dirname(__file__)))) from vision_processor.fps_gridview_processor import * from pipeline_processor.gpt4_pipeline import * from evaluation.direct_answer_eval import * def infer_and_eval_model(args): path_qa = args.path_qa_pair_csv path_video = args.path_video path_result_dir = args.path_result api_key = args.api_key system_prompt, user_prompt, assistant_prompt = get_prompt() frame_fixed_number = 6 # In case of NExT-QA, TVQA, IntentQA and EgoSchema, These has five options on multiple-choice func_user_prompt = lambda prompt, row: prompt % ( row["question"], row["a0"], row["a1"], row["a2"], row["a3"], row["a4"], ) # In case of STAR benchamrk, with four options on multiple-choice, please use the following codes and select prompt according to llm size. """ func_user_prompt = lambda prompt, row: prompt % ( row["question"], row["a0"], row["a1"], row["a2"], row["a3"], ) user_prompt = "The provided image arranges key frames from a video in a grid view. They are arranged in chronological order, holding temporal information from the top left to the bottom right. You need to choose one of the following five options to answer the question, '%s?' : A.'%s', B.'%s', C.'%s', D.'%s'. Please provide a single-character answer (A, B, C, or D) to the multiple-choice question, and your answer must be one of the letters (A, B, C or D). Your response must only contain one character without any other string." """ print("loading model") gpt4vPipeline = Gpt4Pipeline( path_qa, path_video, dir=path_result_dir, ) gpt4vPipeline.set_component( api_key, system_prompt, user_prompt, assistant_prompt, frame_fixed_number=frame_fixed_number, func_user_prompt=func_user_prompt, ) df_merged, path_df_merged = gpt4vPipeline.do_pipeline() print("gpt4 prediction result : " + path_df_merged) print("start multiple-choice evaluation") eval_multiple_choice_gpt4(df_merged) def get_prompt(): system_prompt = "You are an intelligent chatbot designed for understanding videos with key frames in grid view.\n-----\n##INSTRUCTIONS:\n- Focus and answer the question on the meaningful spatial and temporal information in grid view refering to question \n- Even if you're not sure of the answer, please choose the most likely option and answer it" user_prompt = "The provided image arranges key frames from a video in a grid view. They are arranged in chronological order, holding temporal information from the top left to the bottom right. You need to choose one of the following five options to answer the question, '%s?' : 0.'%s', 1.'%s', 2.'%s', 3.'%s', 4.'%s'. Please provide a single-number answer (0, 1, 2, 3 or 4) to the multiple-choice question, and your answer must be one of the letters (0, 1, 2, 3 or 4). Your response must only contain one number without any string." assistant_prompt = "" return system_prompt, user_prompt, assistant_prompt def validate_video_path(filename): pattern = r"\.(avi|mp4|mkv|gif|webm)$" # %s.avi 또는 %s.mp4 형식을 따르는지 확인하는 정규 표현식 if not re.search(pattern, filename): raise argparse.ArgumentTypeError( f"No valid video path. You must include %s and the extension of video file. (e.g., /tmp/%s.mp4)" ) return filename if __name__ == "__main__": parser = argparse.ArgumentParser(description="LLaVA v1.6 with IG-VLM") parser.add_argument( "--path_qa_pair_csv", type=str, required=True, help="path of question and answer. It should be csv files", ) parser.add_argument( "--path_video", type=validate_video_path, required=True, metavar="/tmp/%s.mp4", help="path of video files. You must include string format specifier and the extension of video file.", ) parser.add_argument( "--path_result", type=str, required=True, help="path of output directory" ) parser.add_argument( "--api_key", type=str, required=True, help="api key for gpt-4v", ) args = parser.parse_args() infer_and_eval_model(args) ================================================ FILE: eval_gpt4v_openended.py ================================================ """ Copyright (c) 2024, Deep Representation Learning Research Group, Seoul National University. All rights reserved. SPDX-License-Identifier: BSD-3-Clause For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause """ import sys, os import time from io import BytesIO import argparse import re import uuid sys.path.append(os.path.dirname(os.path.abspath(os.path.dirname(__file__)))) from vision_processor.fps_gridview_processor import * from pipeline_processor.gpt4_pipeline import * from evaluation.gpt3_evaluation_utils import * def infer_and_eval_model(args): path_qa = args.path_qa_pair_csv path_video = args.path_video path_result_dir = args.path_result api_key = args.api_key system_prompt, user_prompt, assistant_prompt = get_prompt() frame_fixed_number = 6 print("loading model") gpt4vPipeline = Gpt4Pipeline( path_qa, path_video, dir=path_result_dir, ) gpt4vPipeline.set_component( api_key, system_prompt, user_prompt, assistant_prompt, frame_fixed_number=frame_fixed_number, ) df_merged, path_df_merged = gpt4vPipeline.do_pipeline() print("GPT-4V prediction result : " + path_df_merged) print("start gpt3-evaluation") gpt3_dir = os.path.join(path_result_dir, "results_gpt3_evaluation") df_qa, path_merged = eval_gpt3(df_merged, gpt3_dir, api_key) print("Gpt-3-evaluation file : " + path_merged) yes_count = df_qa[df_qa["gpt3_pred"] == "yes"].shape[0] score = df_qa["gpt3_score"].mean() print("Acc : %s" % (str(yes_count / df_qa.shape[0]))) print("Score : %s" % (str(score))) def get_prompt(): system_prompt = "" user_prompt = "The provided image arranges keyframes from a video in a grid view. Answer concisely with overall content and context of the video, highlighting any significant events, characters, or objects that appear throughout the frames. Question: %s?" assistant_prompt = "In the video," return system_prompt, user_prompt, assistant_prompt def validate_video_path(filename): pattern = r"\.(avi|mp4|mkv|gif|webm)$" # %s.avi 또는 %s.mp4 형식을 따르는지 확인하는 정규 표현식 if not re.search(pattern, filename): raise argparse.ArgumentTypeError( f"No valid video path. You must include %s and the extension of video file. (e.g., /tmp/%s.mp4)" ) return filename if __name__ == "__main__": parser = argparse.ArgumentParser(description="LLaVA v1.6 with IG-VLM") parser.add_argument( "--path_qa_pair_csv", type=str, required=True, help="path of question and answer. It should be csv files", ) parser.add_argument( "--path_video", type=validate_video_path, required=True, metavar="/tmp/%s.mp4", help="path of video files. You must include string format specifier and the extension of video file.", ) parser.add_argument( "--path_result", type=str, required=True, help="path of output directory" ) parser.add_argument( "--api_key", type=str, required=True, help="api key for gpt-4v and gpt-3 evaluation", ) args = parser.parse_args() infer_and_eval_model(args) ================================================ FILE: eval_gpt4v_textgeneration_openended.py ================================================ """ Copyright (c) 2024, Deep Representation Learning Research Group, Seoul National University. All rights reserved. SPDX-License-Identifier: BSD-3-Clause For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause """ import sys, os import time from io import BytesIO import argparse import re import uuid sys.path.append(os.path.dirname(os.path.abspath(os.path.dirname(__file__)))) from vision_processor.fps_gridview_processor import * from pipeline_processor.gpt4_pipeline import * from evaluation.gpt3_evaluation_utils import * def infer_and_eval_model(args): path_qa = args.path_qa_pair_csv path_video = args.path_video path_result_dir = args.path_result api_key = args.api_key system_prompt, user_prompt, assistant_prompt = get_prompt() frame_fixed_number = 6 print("loading model") gpt4vPipeline = Gpt4Pipeline( path_qa, path_video, dir=path_result_dir, ) gpt4vPipeline.set_component( api_key, system_prompt, user_prompt, assistant_prompt, frame_fixed_number=frame_fixed_number, ) df_merged, path_df_merged = gpt4vPipeline.do_pipeline() print("GPT-4V prediction result : " + path_df_merged) print("start gpt3-evaluation") gpt3_dir = os.path.join(path_result_dir, "results_gpt3_evaluation") # Correctness Information(CI) Evaluation on Text Genearation Performance df_qa, path_merged = eval_gpt3( df_merged, gpt3_dir, api_key, gpt_eval_type=EvaluationType.CORRECTNESS ) """ Text Generation Benchmark has five evaluations. CI(Correctness Information), DO(Detailed Orientation), CU(Context Understanding), TU(Temporal Understanding), CO(Consistency) In case of Do, Please use the following. # df_qa, path_merged = eval_gpt3(df_merged, gpt3_dir, api_key, gpt_eval_type=EvaluationType.DETAILED_ORIENTATION) In case of CU, Please use the following. # df_qa, path_merged = eval_gpt3(df_merged, gpt3_dir, api_key, gpt_eval_type=EvaluationType.CONTEXT) In case of TU, Please use the following. # df_qa, path_merged = eval_gpt3(df_merged, gpt3_dir, api_key, gpt_eval_type=EvaluationType.TEMPORAL) In case of CO, we need to evaluate llava twice on two questions. Then, Please use the following # df_qa, path_merged = eval_gpt3_consistency(df_merged1, df_merged2, gpt3_dir, api_key) """ print("Gpt-3-evaluation file : " + path_merged) yes_count = df_qa[df_qa["gpt3_pred"] == "yes"].shape[0] score = df_qa["gpt3_score"].mean() print("Acc : %s" % (str(yes_count / df_qa.shape[0]))) print("Score : %s" % (str(score))) def get_prompt(): system_prompt = "" user_prompt = "The provided image arranges keyframes from a video in a grid view. Answer concisely with overall content and context of the video, highlighting any significant events, characters, or objects that appear throughout the frames. Question: %s?" assistant_prompt = "In the video," return system_prompt, user_prompt, assistant_prompt def validate_video_path(filename): pattern = r"\.(avi|mp4|mkv|gif|webm)$" # %s.avi 또는 %s.mp4 형식을 따르는지 확인하는 정규 표현식 if not re.search(pattern, filename): raise argparse.ArgumentTypeError( f"No valid video path. You must include %s and the extension of video file. (e.g., /tmp/%s.mp4)" ) return filename if __name__ == "__main__": parser = argparse.ArgumentParser(description="LLaVA v1.6 with IG-VLM") parser.add_argument( "--path_qa_pair_csv", type=str, required=True, help="path of question and answer. It should be csv files", ) parser.add_argument( "--path_video", type=validate_video_path, required=True, metavar="/tmp/%s.mp4", help="path of video files. You must include string format specifier and the extension of video file.", ) parser.add_argument( "--path_result", type=str, required=True, help="path of output directory" ) parser.add_argument( "--api_key", type=str, required=True, help="api key for gpt-4v and gpt-3 evaluation", ) args = parser.parse_args() infer_and_eval_model(args) ================================================ FILE: eval_llava_multiplechoice.py ================================================ """ Copyright (c) 2024, Deep Representation Learning Research Group, Seoul National University. All rights reserved. SPDX-License-Identifier: BSD-3-Clause For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause """ import sys, os import time from io import BytesIO import argparse import re import uuid sys.path.append(os.path.dirname(os.path.abspath(os.path.dirname(__file__)))) from vision_processor.fps_gridview_processor import * from pipeline_processor.llava_pipeline import * from evaluation.direct_answer_eval import * def infer_and_eval_model(args): path_qa = args.path_qa_pair_csv path_video = args.path_video path_result_dir = args.path_result llm_size = args.llm_size model_name, user_prompt = get_llava_and_prompt(llm_size) frame_fixed_number = 6 # In case of NExT-QA, TVQA, IntentQA and EgoSchema, user the following codes. func_user_prompt = lambda prompt, row: prompt % ( row["question"], row["a0"], row["a1"], row["a2"], row["a3"], row["a4"], ) # In case of STAR benchamrk, use the following codes and select prompt according to llm size. """ func_user_prompt = lambda prompt, row: prompt % ( row["question"], row["a0"], row["a1"], row["a2"], row["a3"] ) # 7b user_prompt = "Select correct option to answer the question. USER: \nThe provided image arranges keyframes from a video in a grid view. Question: %s A:%s. B:%s. C:%s. D:%s. \nSelect the correct answer from the options. \nASSISTANT:\nAnswer:" # 13b user_prompt = "USER: \nThe provided image arranges keyframes from a video in a grid view. Question: %s?\n A:%s. B:%s. C:%s. D:%s. \n Select the correct answer from the options(A,B,C,D). \nASSISTANT: \nAnswer:" # 34b user_prompt = "<|im_start|>system\n Select correct option to answer the question.<|im_end|>\n<|im_start|>user\n \n Question: %s? A:%s. B:%s. C:%s. D:%s. Select the correct answer from the options. <|im_end|>\n<|im_start|>assistant\nAnswer:" """ print("loading [%s]" % (model_name)) llavaPipeline = LlavaPipeline( model_name, path_qa, path_video, dir=path_result_dir, ) llavaPipeline.set_component( user_prompt, frame_fixed_number=frame_fixed_number, func_user_prompt=func_user_prompt, ) df_merged, path_df_merged = llavaPipeline.do_pipeline() print("llava prediction result : " + path_df_merged) print("start multiple-choice evaluation") eval_multiple_choice(df_merged) def get_llava_and_prompt(llm_size): if llm_size in ["7b"]: prompt = "Select correct option to answer the question. USER: \nThe provided image arranges keyframes from a video in a grid view. Question: %s A:%s. B:%s. C:%s. D:%s. E:%s. \nSelect the correct answer from the options. \nASSISTANT:\nAnswer:" model_name = "llava-v1.6-vicuna-%s" % (llm_size) elif llm_size in ["13b"]: prompt = "USER: \nThe provided image arranges keyframes from a video in a grid view. Question: %s?\n A:%s. B:%s. C:%s. D:%s. E:%s. \n Select the correct answer from the options(A,B,C,D,E). \nASSISTANT: \nAnswer:" model_name = "llava-v1.6-vicuna-%s" % (llm_size) else: prompt = "<|im_start|>system\n Select correct option to answer the question.<|im_end|>\n<|im_start|>user\n \n Question: %s? A:%s. B:%s. C:%s. D:%s. E: %s. Select the correct answer from the options. <|im_end|>\n<|im_start|>assistant\nAnswer:" model_name = "llava-v1.6-%s" % (llm_size) return model_name, prompt def validate_llm_size(type_llm_size): if type_llm_size not in {"7b", "13b", "34b"}: raise argparse.ArgumentTypeError(f"No valid LLM size.") return type_llm_size def validate_video_path(filename): pattern = r"\.(avi|mp4|mkv|gif|webm)$" # %s.avi 또는 %s.mp4 형식을 따르는지 확인하는 정규 표현식 if not re.search(pattern, filename): raise argparse.ArgumentTypeError( f"No valid video path. You must include %s and the extension of video file. (e.g., /tmp/%s.mp4)" ) return filename if __name__ == "__main__": parser = argparse.ArgumentParser(description="LLaVA v1.6 with IG-VLM") parser.add_argument( "--path_qa_pair_csv", type=str, required=True, help="path of question and answer. It should be csv files", ) parser.add_argument( "--path_video", type=validate_video_path, required=True, metavar="/tmp/%s.mp4", help="path of video files. You must include string format specifier and the extension of video file.", ) parser.add_argument( "--path_result", type=str, required=True, help="path of output directory" ) parser.add_argument( "--llm_size", type=validate_llm_size, default="7b", help="You can choose llm size of LLaVA. 7b | 13b | 34b", ) args = parser.parse_args() infer_and_eval_model(args) ================================================ FILE: eval_llava_openended.py ================================================ """ Copyright (c) 2024, Deep Representation Learning Research Group, Seoul National University. All rights reserved. SPDX-License-Identifier: BSD-3-Clause For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause """ import sys, os import time from io import BytesIO import argparse import re import uuid sys.path.append(os.path.dirname(os.path.abspath(os.path.dirname(__file__)))) from vision_processor.fps_gridview_processor import * from pipeline_processor.llava_pipeline import * from evaluation.gpt3_evaluation_utils import * def infer_and_eval_model(args): path_qa = args.path_qa_pair_csv path_video = args.path_video path_result_dir = args.path_result llm_size = args.llm_size api_key = args.api_key model_name, user_prompt = get_llava_and_prompt(llm_size) frame_fixed_number = 6 print("loading [%s]" % (model_name)) llavaPipeline = LlavaPipeline( model_name, path_qa, path_video, dir=path_result_dir, ) llavaPipeline.set_component( user_prompt, frame_fixed_number=frame_fixed_number, ) df_merged, path_df_merged = llavaPipeline.do_pipeline() print("llava prediction result : " + path_df_merged) print("start gpt3-evaluation") gpt3_dir = os.path.join(path_result_dir, "results_gpt3_evaluation") df_qa, path_merged = eval_gpt3(df_merged, gpt3_dir, api_key) print("Gpt-3-evaluation file : " + path_merged) yes_count = df_qa[df_qa["gpt3_pred"] == "yes"].shape[0] score = df_qa["gpt3_score"].mean() print("Acc : %s" % (str(yes_count / df_qa.shape[0]))) print("Score : %s" % (str(score))) def get_llava_and_prompt(llm_size): if llm_size in ["7b", "13b"]: prompt = "USER: \nThe provided image arranges keyframes from a video in a grid view. Answer concisely with overall content and context of the video, highlighting any significant events, characters, or objects that appear throughout the frames. Question: %s? \nASSISTANT:\nAnswer: In the video," model_name = "llava-v1.6-vicuna-%s" % (llm_size) else: prompt = "<|im_start|>system\n Answer the question. <|im_end|>\n<|im_start|>user\n \nThe provided image arranges keyframes from a video in a grid view. Answer concisely with overall content and context of the video, highlighting any significant events, characters, or objects that appear throughout the frames. Question: %s? <|im_end|>\n<|im_start|>assistant\nAnswer: In the video," model_name = "llava-v1.6-%s" % (llm_size) return model_name, prompt def validate_llm_size(type_llm_size): if type_llm_size not in {"7b", "13b", "34b"}: raise argparse.ArgumentTypeError(f"No valid LLM size.") return type_llm_size def validate_video_path(filename): pattern = r"\.(avi|mp4|mkv|gif|webm)$" # %s.avi 또는 %s.mp4 형식을 따르는지 확인하는 정규 표현식 if not re.search(pattern, filename): raise argparse.ArgumentTypeError( f"No valid video path. You must include %s and the extension of video file. (e.g., /tmp/%s.mp4)" ) return filename if __name__ == "__main__": parser = argparse.ArgumentParser(description="LLaVA v1.6 with IG-VLM") parser.add_argument( "--path_qa_pair_csv", type=str, required=True, help="path of question and answer. It should be csv files", ) parser.add_argument( "--path_video", type=validate_video_path, required=True, metavar="/tmp/%s.mp4", help="path of video files. You must include string format specifier and the extension of video file.", ) parser.add_argument( "--path_result", type=str, required=True, help="path of output directory" ) parser.add_argument( "--llm_size", type=validate_llm_size, default="7b", help="You can choose llm size of LLaVA. 7b | 13b | 34b", ) parser.add_argument( "--api_key", type=str, required=True, help="api key for gpt-3 evaluation", ) args = parser.parse_args() infer_and_eval_model(args) ================================================ FILE: eval_llava_textgeneration_openended.py ================================================ """ Copyright (c) 2024, Deep Representation Learning Research Group, Seoul National University. All rights reserved. SPDX-License-Identifier: BSD-3-Clause For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause """ import sys, os import time from io import BytesIO import argparse import re import uuid sys.path.append(os.path.dirname(os.path.abspath(os.path.dirname(__file__)))) from vision_processor.fps_gridview_processor import * from pipeline_processor.llava_pipeline import * from evaluation.gpt3_evaluation_utils import * def infer_and_eval_model(args): path_qa = args.path_qa_pair_csv path_video = args.path_video path_result_dir = args.path_result llm_size = args.llm_size api_key = args.api_key model_name, user_prompt = get_llava_and_prompt(llm_size) frame_fixed_number = 6 print("loading [%s]" % (model_name)) llavaPipeline = LlavaPipeline( model_name, path_qa, path_video, dir=path_result_dir, ) llavaPipeline.set_component( user_prompt, frame_fixed_number=frame_fixed_number, ) df_merged, path_df_merged = llavaPipeline.do_pipeline() print("llava prediction result : " + path_df_merged) print("start gpt3-evaluation") gpt3_dir = os.path.join(path_result_dir, "results_gpt3_evaluation") # Correctness Information Evaluation for Text Genearation Performance df_qa, path_merged = eval_gpt3( df_merged, gpt3_dir, api_key, gpt_eval_type=EvaluationType.CORRECTNESS ) """ Text Generation Benchmark has five evaluations. CI(Correctness Information), DO(Detailed Orientation), CU(Context Understanding), TU(Temporal Understanding), CO(Consistency) In case of Do, Please use the following. # df_qa, path_merged = eval_gpt3(df_merged, gpt3_dir, api_key, gpt_eval_type=EvaluationType.DETAILED_ORIENTATION) In case of CU, Please use the following. # df_qa, path_merged = eval_gpt3(df_merged, gpt3_dir, api_key, gpt_eval_type=EvaluationType.CONTEXT) In case of TU, Please use the following. # df_qa, path_merged = eval_gpt3(df_merged, gpt3_dir, api_key, gpt_eval_type=EvaluationType.TEMPORAL) In case of CO, we need to evaluate llava twice on two questions. Then, Please use the following # df_qa, path_merged = eval_gpt3_consistency(df_merged1, df_merged2, gpt3_dir, api_key) """ print("Gpt-3-evaluation file : " + path_merged) yes_count = df_qa[df_qa["gpt3_pred"] == "yes"].shape[0] score = df_qa["gpt3_score"].mean() print("Acc : %s" % (str(yes_count / df_qa.shape[0]))) print("Score : %s" % (str(score))) def get_llava_and_prompt(llm_size): if llm_size in ["7b", "13b"]: prompt = "USER: \nThe provided image arranges keyframes from a video in a grid view. Answer concisely with overall content and context of the video, highlighting any significant events, characters, or objects that appear throughout the frames. Question: %s? \nASSISTANT:\nAnswer: In the video," model_name = "llava-v1.6-vicuna-%s" % (llm_size) else: prompt = "<|im_start|>system\n Answer the question. <|im_end|>\n<|im_start|>user\n \nThe provided image arranges keyframes from a video in a grid view. Answer concisely with overall content and context of the video, highlighting any significant events, characters, or objects that appear throughout the frames. Question: %s? <|im_end|>\n<|im_start|>assistant\nAnswer: In the video," model_name = "llava-v1.6-%s" % (llm_size) return model_name, prompt def validate_llm_size(type_llm_size): if type_llm_size not in {"7b", "13b", "34b"}: raise argparse.ArgumentTypeError(f"No valid LLM size.") return type_llm_size def validate_video_path(filename): pattern = r"\.(avi|mp4|mkv|gif|webm)$" # %s.avi 또는 %s.mp4 형식을 따르는지 확인하는 정규 표현식 if not re.search(pattern, filename): raise argparse.ArgumentTypeError( f"No valid video path. You must include %s and the extension of video file. (e.g., /tmp/%s.mp4)" ) return filename if __name__ == "__main__": parser = argparse.ArgumentParser(description="LLaVA v1.6 with IG-VLM") parser.add_argument( "--path_qa_pair_csv", type=str, required=True, help="path of question and answer. It should be csv files", ) parser.add_argument( "--path_video", type=validate_video_path, required=True, metavar="/tmp/%s.mp4", help="path of video files. You must include string format specifier and the extension of video file.", ) parser.add_argument( "--path_result", type=str, required=True, help="path of output directory" ) parser.add_argument( "--llm_size", type=validate_llm_size, default="7b", help="You can choose llm size of LLaVA. 7b | 13b | 34b", ) parser.add_argument( "--api_key", type=str, required=True, help="api key for gpt-3 evaluation", ) args = parser.parse_args() infer_and_eval_model(args) ================================================ FILE: evaluation/__init__.py ================================================ ================================================ FILE: evaluation/direct_answer_eval.py ================================================ """ Copyright (c) 2024, Deep Representation Learning Research Group, Seoul National University. All rights reserved. SPDX-License-Identifier: BSD-3-Clause For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause """ import pandas as pd def eval_multiple_choice(df): df["predicted_answer"] = df.apply(map_prediction_to_answer_v2, axis=1) df["is_correct"] = df["predicted_answer"] == df["answer"] total_accuracy = df["is_correct"].mean() print(f"Total Accuracy: {total_accuracy:.4f}") if "question_type" in df.columns: accuracy_report = df.groupby("question_type")["is_correct"].mean() print(accuracy_report) df["prefix"] = df["question_type"].apply(lambda x: x[0]) grouped_accuracy = df.groupby("prefix")["is_correct"].mean() print(grouped_accuracy) def map_prediction_to_answer_v2(row): answer_column = None if isinstance(row["pred"], str): prediction_letter = row["pred"][0] if prediction_letter in ["A", "B", "C", "D", "E"]: answer_column = "a" + str(ord(prediction_letter) - ord("A")) if "answer is " in row["pred"]: row["pred"] = row["pred"][row["pred"].index("answer is") :] if "A:" in row["pred"] or "A)" in row["pred"]: answer_column = "a0" elif "B:" in row["pred"] or "B)" in row["pred"]: answer_column = "a1" elif "C:" in row["pred"] or "C)" in row["pred"]: answer_column = "a2" elif "D:" in row["pred"] or "D)" in row["pred"]: answer_column = "a3" elif "E:" in row["pred"] or "E)" in row["pred"]: answer_column = "a4" if answer_column in ["a0", "a1", "a2", "a3", "a4"]: return row[answer_column] elif answer_column: print(prediction_letter) return "None" def eval_multiple_choice_gpt4(df): df["predicted_answer"] = df.apply(map_prediction_to_answer_gpt4, axis=1) df["is_correct"] = df["predicted_answer"] == df["answer"] total_accuracy = df["is_correct"].mean() print(f"Total Accuracy: {total_accuracy:.4f}") if "question_type" in df.columns: accuracy_report = df.groupby("question_type")["is_correct"].mean() print(accuracy_report) df["prefix"] = df["question_type"].apply(lambda x: x[0]) grouped_accuracy = df.groupby("prefix")["is_correct"].mean() print(grouped_accuracy) def map_prediction_to_answer_gpt4(row): answer_column = None if isinstance(row["pred"], str): row["pred"] = row["pred"].replace(".", "") prediction_letter = row["pred"][0] if prediction_letter in ["0", "1", "2", "3", "4"]: return row["a" + str(prediction_letter)] return "" return row["a" + str(int(float(row["pred"])))] ================================================ FILE: evaluation/gpt3_consistency_utils.py ================================================ """ Copyright (c) 2024, Deep Representation Learning Research Group, Seoul National University. All rights reserved. SPDX-License-Identifier: BSD-3-Clause For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause """ import math import os import glob from tqdm import tqdm import openai import pandas as pd def eval_gpt3_consistency(df_merged1, df_merged2, path_result, api_key): os.makedirs(path_result, exist_ok=True) for (idx1, row1), (idx2, row2) in zip(df_merged1.iterrows(), df_merged2.iterrows()): process_gpt3_evaluation_consistency(row1, row2, path_result, api_key) result_path = os.path.join(path_result, "result.csv") if not os.path.exists(result_path): df_qa, path_merged = merge_qa_and_answer_consistency( df_merged1, df_merged2, path_result ) return df_qa, path_merged else: path_merged_already = result_path df_already = pd.read_csv(path_merged_already, index_col=0) return df_already, path_merged_already def process_gpt3_evaluation_consistency(row1, row2, path_result, api_key): client = openai.OpenAI(api_key=api_key) file_path_saved = os.path.join(path_result, str(row1["question_id"]) + ".txt") if not os.path.exists(file_path_saved): question1 = row1["question"] question2 = row2["question"] answer = row1["answer"] pred1 = row1["pred"] pred2 = row2["pred"] message = [ { "role": "system", "content": "You are an intelligent chatbot designed for evaluating the consistency of generative outputs for similar video-based question-answer pairs. " "You will be given two very similar questions, a common answer common to both the questions and predicted answers for the two questions ." "Your task is to compare the predicted answers for two very similar question, with a common correct answer and determine if they are consistent. Here's how you can accomplish the task:" "------" "##INSTRUCTIONS: " "- Focus on the consistency between the two predicted answers and the correct answer. Both predicted answers should correspond to the correct answer and to each other, and should not contain any contradictions or significant differences in the conveyed information.\n" "- Both predicted answers must be consistent with each other and the correct answer, in terms of the information they provide about the video content.\n" "- Consider synonyms or paraphrases as valid matches, but only if they maintain the consistency in the conveyed information.\n" "- Evaluate the consistency of the two predicted answers compared to the correct answer.", }, { "role": "user", "content": "Please evaluate the following video-based question-answer pair:\n\n" f"Question 1: {question1}\n" f"Question 2: {question2}\n" f"Correct Answer: {answer}\n" f"Predicted Answer to Question 1: {pred1}\n" f"Predicted Answer to Question 2: {pred2}\n\n" "Provide your evaluation only as a consistency score where the consistency score is an integer value between 0 and 5, with 5 indicating the highest level of consistency. " "Please generate the response in the form of a Python dictionary string with keys 'score', where its value is the consistency score in INTEGER, not STRING." "DO NOT PROVIDE ANY OTHER OUTPUT TEXT OR EXPLANATION. Only provide the Python dictionary string. " "For example, your response should look like this: {''score': 4.8}.", }, ] completion = client.chat.completions.create( model="gpt-3.5-turbo", messages=message ) response_message = completion.choices[0].message.content with open(file_path_saved, "w") as f: f.write(response_message) else: print("exist") def merge_qa_and_answer_consistency(df_qa1, df_qa2, path_result): df_qa = df_qa1.copy() # Copy df_qa1 to create df_qa # Rename columns in df_qa df_qa.rename(columns={"question": "question1", "pred": "pred1"}, inplace=True) df_qa["gpt3_score"] = None df_qa["question2"] = df_qa2["question"] df_qa["pred2"] = df_qa2["pred"] for (idx1, row1), (idx2, row2) in zip(df_qa1.iterrows(), df_qa2.iterrows()): file_path_saved = path_result + str(row1["question_id"]) + ".txt" if os.path.exists(file_path_saved): with open(file_path_saved, "r") as file: try: file_contents = file.read() if file_contents.endswith("."): file_contents = file_contents[:-1] content_dict = eval(file_contents) df_qa.loc[idx1, "gpt3_score"] = content_dict["score"] except Exception as e: print(e) print(file_path_saved) continue else: print(file_path_saved + " not exist") path_merged = os.path.join(path_result, "result.csv") df_qa.to_csv(path_merged) print(df_qa["gpt3_score"].describe()) return df_qa, path_merged ================================================ FILE: evaluation/gpt3_evaluation_utils.py ================================================ """ Copyright (c) 2024, Deep Representation Learning Research Group, Seoul National University. All rights reserved. SPDX-License-Identifier: BSD-3-Clause For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause """ import math import os import glob from tqdm import tqdm import openai import pandas as pd from pipeline_processor.record import * def eval_gpt3(df_merged, path_result, api_key, gpt_eval_type=EvaluationType.DEFAULT): os.makedirs(path_result, exist_ok=True) for idx, row in df_merged.iterrows(): process_gpt3_evaluation_v2( row, path_result, api_key, gpt_eval_type=gpt_eval_type ) result_path = os.path.join(path_result, "result.csv") if not os.path.exists(result_path): df_qa, path_merged = merge_qa_and_answer(df_merged, path_result) return df_qa, path_merged else: path_merged_already = result_path df_already = pd.read_csv(path_merged_already, index_col=0) return df_already, path_merged_already def process_gpt3_evaluation_v2( row, path_result, api_key, gpt_eval_type=EvaluationType.DEFAULT ): client = openai.OpenAI( api_key=api_key, ) file_path_saved = os.path.join(path_result, str(row["question_id"]) + ".txt") if not os.path.exists(file_path_saved): question = row["question"] answer = row["answer"] pred = row["pred"] message = make_messages(question, answer, pred, gpt_eval_type) completion = client.chat.completions.create( model="gpt-3.5-turbo", messages=message ) # Convert response to a Python dictionary. response_message = completion.choices[0].message.content with open(file_path_saved, "w") as f: f.write(response_message) else: print("exist") def merge_qa_and_answer(df_qa, path_result): df_qa["gpt3_pred"] = None df_qa["gpt3_score"] = None for idx, row in df_qa.iterrows(): file_path_saved = os.path.join(path_result, str(row["question_id"]) + ".txt") if os.path.exists(file_path_saved): with open(file_path_saved, "r") as file: try: file_contents = file.read() if file_contents.endswith("."): file_contents = file_contents[:-1] content_dict = eval(file_contents) if "pred" in content_dict: df_qa.loc[idx, "gpt3_pred"] = content_dict["pred"] else: df_qa.loc[idx, "gpt3_pred"] = "" df_qa.loc[idx, "gpt3_score"] = content_dict["score"] except Exception as e: print(e) print(file_path_saved) continue else: print(file_path_saved + " not exist") path_merged = os.path.join(path_result, "result.csv") df_qa.to_csv(path_merged) yes_count = df_qa[df_qa["gpt3_pred"] == "yes"].shape[0] print(yes_count / df_qa.shape[0]) print(df_qa["gpt3_score"].describe()) return df_qa, path_merged def make_messages(question, answer, pred, gpt_eval_type): if gpt_eval_type == EvaluationType.DEFAULT: # default return [ { "role": "system", "content": "You are an intelligent chatbot designed for evaluating the correctness of generative outputs for question-answer pairs. " "Your task is to compare the predicted answer with the correct answer and determine if they match meaningfully. Here's how you can accomplish the task:" "------" "##INSTRUCTIONS: " "- Focus on the meaningful match between the predicted answer and the correct answer.\n" "- Consider synonyms or paraphrases as valid matches.\n" "- Evaluate the correctness of the prediction compared to the answer.", }, { "role": "user", "content": "Please evaluate the following video-based question-answer pair:\n\n" f"Question: {question}\n" f"Correct Answer: {answer}\n" f"Predicted Answer: {pred}\n\n" "Provide your evaluation only as a yes/no and score where the score is an integer value between 0 and 5, with 5 indicating the highest meaningful match. " "Please generate the response in the form of a Python dictionary string with keys 'pred' and 'score', where value of 'pred' is a string of 'yes' or 'no' and value of 'score' is in INTEGER, not STRING." "DO NOT PROVIDE ANY OTHER OUTPUT TEXT OR EXPLANATION. Only provide the Python dictionary string. " "For example, your response should look like this: {'pred': 'yes', 'score': 4.8}.", }, ] elif gpt_eval_type == EvaluationType.CORRECTNESS: return [ { "role": "system", "content": "You are an intelligent chatbot designed for evaluating the factual accuracy of generative outputs for video-based question-answer pairs. " "Your task is to compare the predicted answer with the correct answer and determine if they are factually consistent. Here's how you can accomplish the task:" "------" "##INSTRUCTIONS: " "- Focus on the factual consistency between the predicted answer and the correct answer. The predicted answer should not contain any misinterpretations or misinformation.\n" "- The predicted answer must be factually accurate and align with the video content.\n" "- Consider synonyms or paraphrases as valid matches.\n" "- Evaluate the factual accuracy of the prediction compared to the answer.", }, { "role": "user", "content": "Please evaluate the following video-based question-answer pair:\n\n" f"Question: {question}\n" f"Correct Answer: {answer}\n" f"Predicted Answer: {pred}\n\n" "Provide your evaluation only as a factual accuracy score where the factual accuracy score is an integer value between 0 and 5, with 5 indicating the highest level of factual consistency. " "Please generate the response in the form of a Python dictionary string with keys 'score', where its value is the factual accuracy score in INTEGER, not STRING." "DO NOT PROVIDE ANY OTHER OUTPUT TEXT OR EXPLANATION. Only provide the Python dictionary string. " "For example, your response should look like this: {''score': 4.8}.", }, ] elif gpt_eval_type == EvaluationType.DETAILED_ORIENTATION: return [ { "role": "system", "content": "You are an intelligent chatbot designed for evaluating the detail orientation of generative outputs for video-based question-answer pairs. " "Your task is to compare the predicted answer with the correct answer and determine its level of detail, considering both completeness and specificity. Here's how you can accomplish the task:" "------" "##INSTRUCTIONS: " "- Check if the predicted answer covers all major points from the video. The response should not leave out any key aspects.\n" "- Evaluate whether the predicted answer includes specific details rather than just generic points. It should provide comprehensive information that is tied to specific elements of the video.\n" "- Consider synonyms or paraphrases as valid matches.\n" "- Provide a single evaluation score that reflects the level of detail orientation of the prediction, considering both completeness and specificity.", }, { "role": "user", "content": "Please evaluate the following video-based question-answer pair:\n\n" f"Question: {question}\n" f"Correct Answer: {answer}\n" f"Predicted Answer: {pred}\n\n" "Provide your evaluation only as a detail orientation score where the detail orientation score is an integer value between 0 and 5, with 5 indicating the highest level of detail orientation. " "Please generate the response in the form of a Python dictionary string with keys 'score', where its value is the detail orientation score in INTEGER, not STRING." "DO NOT PROVIDE ANY OTHER OUTPUT TEXT OR EXPLANATION. Only provide the Python dictionary string. " "For example, your response should look like this: {''score': 4.8}.", }, ] elif gpt_eval_type == EvaluationType.CONTEXT: return [ { "role": "system", "content": "You are an intelligent chatbot designed for evaluating the contextual understanding of generative outputs for video-based question-answer pairs. " "Your task is to compare the predicted answer with the correct answer and determine if the generated response aligns with the overall context of the video content. Here's how you can accomplish the task:" "------" "##INSTRUCTIONS: " "- Evaluate whether the predicted answer aligns with the overall context of the video content. It should not provide information that is out of context or misaligned.\n" "- The predicted answer must capture the main themes and sentiments of the video.\n" "- Consider synonyms or paraphrases as valid matches.\n" "- Provide your evaluation of the contextual understanding of the prediction compared to the answer.", }, { "role": "user", "content": "Please evaluate the following video-based question-answer pair:\n\n" f"Question: {question}\n" f"Correct Answer: {answer}\n" f"Predicted Answer: {pred}\n\n" "Provide your evaluation only as a contextual understanding score where the contextual understanding score is an integer value between 0 and 5, with 5 indicating the highest level of contextual understanding. " "Please generate the response in the form of a Python dictionary string with keys 'score', where its value is contextual understanding score in INTEGER, not STRING." "DO NOT PROVIDE ANY OTHER OUTPUT TEXT OR EXPLANATION. Only provide the Python dictionary string. " "For example, your response should look like this: {''score': 4.8}.", }, ] elif gpt_eval_type == EvaluationType.TEMPORAL: return [ { "role": "system", "content": "You are an intelligent chatbot designed for evaluating the temporal understanding of generative outputs for video-based question-answer pairs. " "Your task is to compare the predicted answer with the correct answer and determine if they correctly reflect the temporal sequence of events in the video content. Here's how you can accomplish the task:" "------" "##INSTRUCTIONS: " "- Focus on the temporal consistency between the predicted answer and the correct answer. The predicted answer should correctly reflect the sequence of events or details as they are presented in the video content.\n" "- Consider synonyms or paraphrases as valid matches, but only if the temporal order is maintained.\n" "- Evaluate the temporal accuracy of the prediction compared to the answer.", }, { "role": "user", "content": "Please evaluate the following video-based question-answer pair:\n\n" f"Question: {question}\n" f"Correct Answer: {answer}\n" f"Predicted Answer: {pred}\n\n" "Provide your evaluation only as a temporal accuracy score where the temporal accuracy score is an integer value between 0 and 5, with 5 indicating the highest level of temporal consistency. " "Please generate the response in the form of a Python dictionary string with keys 'score', where its value is the temporal accuracy score in INTEGER, not STRING." "DO NOT PROVIDE ANY OTHER OUTPUT TEXT OR EXPLANATION. Only provide the Python dictionary string. " "For example, your response should look like this: {''score': 4.8}.", }, ] ================================================ FILE: model_processor/__init__.py ================================================ # from llava_model_processor import LlavaProcessor # from base_model_inference import BaseModelInference # from videollava_model_processor import VideoLLavaProcessor ================================================ FILE: model_processor/base_model_inference.py ================================================ """ Copyright (c) 2024, Deep Representation Learning Research Group, Seoul National University. All rights reserved. SPDX-License-Identifier: BSD-3-Clause For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause """ import os from abc import ABC, abstractmethod from enum import Enum class BaseModelInference(ABC): def __init__(self, model_name, local_save_path): self.model_name = model_name self.local_save_path = local_save_path self.error_list = [] @abstractmethod def load_model(self, **kwargs): pass @abstractmethod def inference(self, **kwargs): pass @abstractmethod def extract_answers(self): pass def save_local_file(self, answer): directory = os.path.dirname(self.local_save_path) if not os.path.exists(directory): os.makedirs(directory) with open(self.local_save_path, "w") as file: file.write(answer) def infer_and_save(self, **kwargs): try: self.inference(**kwargs) answer = self.extract_answers() return answer except Exception as e: self.error_list.append(e) print(e) return -1 ================================================ FILE: model_processor/gpt4_model_processor.py ================================================ """ Copyright (c) 2024, Deep Representation Learning Research Group, Seoul National University. All rights reserved. SPDX-License-Identifier: BSD-3-Clause For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause """ from .base_model_inference import * import requests import sys, os from PIL import Image class GPT4Inference(BaseModelInference): def __init__(self, model_name, local_save_path=""): super().__init__(model_name, local_save_path) def load_model(self, **kwargs): self.api_key = kwargs["api_key"] self.header = self._make_headers() def inference(self, *args, **kwargs): self._extract_arguments(**kwargs) payload = self._make_payload() self.response = self._request_gpt_api(payload) def _request_gpt_api(self, payload): response = requests.post( "https://api.openai.com/v1/chat/completions", headers=self.header, json=payload, ) return response.json() def extract_answers(self): if "error" in self.response: raise Exception("error on gpt4 api" + str(self.response)) return self.response["choices"][0]["message"]["content"] def _make_headers(self): return { "Content-Type": "application/json", "Authorization": f"Bearer {self.api_key}", } def _make_payload(self): if "" == self.assistant_prompt: return { "model": "gpt-4-vision-preview", "messages": [ self._make_system_prompt(), self._make_user_prompt(), ], "max_tokens": self.max_tokens, } else: return { "model": "gpt-4-vision-preview", "messages": [ self._make_system_prompt(), self._make_user_prompt(), self._make_assistant_prompt(), ], "max_tokens": self.max_tokens, } def _make_system_prompt(self): return {"role": "system", "content": [self.system_prompt]} def _make_user_prompt(self): return { "role": "user", "content": [ {"type": "text", "text": self.user_prompt}, { "type": "image_url", "image_url": { "url": f"data:image/jpeg;base64,{self.base64_image}", "detail": "high", }, }, ], } def _make_assistant_prompt(self): return {"role": "assistant", "content": [self.assistant_prompt]} def _extract_arguments(self, **kwargs): self.system_prompt = kwargs["system_prompt"] self.user_prompt = kwargs["user_prompt"] self.assistant_prompt = kwargs["assistant_prompt"] self.base64_image = kwargs["base64_img"] self.max_tokens = kwargs.get("max_tokens", 500) ================================================ FILE: model_processor/llava2_model_processor.py ================================================ """ Copyright (c) 2024, Deep Representation Learning Research Group, Seoul National University. All rights reserved. SPDX-License-Identifier: BSD-3-Clause For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause """ from .base_model_inference import * import math import re from io import BytesIO import torch import torch.nn.functional as F from llava.model.builder import load_pretrained_model from llava.constants import ( IMAGE_TOKEN_INDEX, DEFAULT_IM_START_TOKEN, DEFAULT_IM_END_TOKEN, IMAGE_PLACEHOLDER, ) from llava.conversation import conv_templates from llava.mm_utils import ( process_images, tokenizer_image_token, get_model_name_from_path, ) class Llava2Processor(BaseModelInference): def __init__(self, model_name, local_save_path=""): super().__init__(model_name, local_save_path) def load_model(self): model_name = get_model_name_from_path(self.model_name) ( self.tokenizer, self.model, self.image_processor, self.context_len, ) = load_pretrained_model( self.model_name, None, model_name, device=torch.cuda.current_device(), device_map="cuda", ) def inference(self, *args, **kwargs): self._extract_arguments(**kwargs) # Prepare images image_sizes = [self.raw_image.size] images_tensor = process_images( [self.raw_image], self.image_processor, self.model.config ).to(self.model.device, dtype=torch.float16) # Prepare input_ids input_ids = ( tokenizer_image_token( self.user_prompt, self.tokenizer, IMAGE_TOKEN_INDEX, return_tensors="pt" ) .unsqueeze(0) .to(self.model.device) ) # Generate output with torch.inference_mode(): output_ids = self.model.generate( input_ids, images=images_tensor, image_sizes=image_sizes, do_sample=False, temperature=1.0, top_p=0.9, num_beams=1, max_new_tokens=512, use_cache=True, ) # Decode and return outputs self.result_rext = self.tokenizer.batch_decode( output_ids, skip_special_tokens=True )[0].strip() def extract_answers(self): return self.result_rext.split("ASSISTANT:")[-1] def _extract_arguments(self, **kwargs): self.user_prompt = kwargs["user_prompt"] self.raw_image = kwargs["raw_image"] self.max_new_tokens = kwargs.get("max_new_tokens", 300) self.do_sample = kwargs.get("do_sample", False) self.temperature = kwargs.get("temperature", 1) ================================================ FILE: pipeline_processor/__init__.py ================================================ ================================================ FILE: pipeline_processor/gpt4_pipeline.py ================================================ """ Copyright (c) 2024, Deep Representation Learning Research Group, Seoul National University. All rights reserved. SPDX-License-Identifier: BSD-3-Clause For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause """ import uuid import pandas as pd import os import sys from tqdm import tqdm sys.path.append(os.path.dirname(os.path.abspath(os.path.dirname(__file__)))) from model_processor.gpt4_model_processor import * from vision_processor.fps_gridview_processor import * from pipeline_processor.record import * class Gpt4Pipeline: def __init__(self, path_qa, path_video_file_format, dir="./gpt4_pipeline_result/"): self.path_qa = path_qa self.path_result = dir self.path_video_file_format = path_video_file_format self.error_video_name = [] self.make_video_file_list() def make_video_file_list(self): self._load_qa_file() self.df_qa["path_video"] = self.df_qa.apply( lambda x: (self.path_video_file_format % (x["video_name"])), axis=1 ) def set_component( self, api_key, system_prompt, user_prompt, assistant_prompt, func_user_prompt=lambda prompt, row: prompt % (row["question"]), calculate_max_row=lambda x: round(math.sqrt(x)), frame_fixed_number=6, ): self.system_prompt = system_prompt self.user_prompt = user_prompt self.assistant_prompt = assistant_prompt self.func_user_prompt = func_user_prompt self.calculate_max_row = calculate_max_row self.frame_fixed_number = frame_fixed_number self.model = GPT4Inference("gpt4-inference") self.model.load_model(api_key=api_key) self.fps_data_processor = FpsDataProcessor( save_option=SaveOption.BASE64, calcualte_max_row=self.calculate_max_row, frame_fixed_number=self.frame_fixed_number, ) extra_dir = "ffn=%s/" % (str(self.frame_fixed_number),) self._make_directory(extra_dir) def do_pipeline(self): for idx, row in tqdm(self.df_qa.iterrows()): question_id = str(row["question_id"]) video_path = row["path_video"] video_extensions = ["avi", "mp4", "mkv", "webm", "gif"] if not os.path.exists(video_path): base_video_path, _ = os.path.splitext(video_path) for ext in video_extensions: temp_path = f"{base_video_path}.{ext}" if os.path.exists(temp_path): video_path = temp_path break if not os.path.exists(self._make_file_path(question_id)): try: image_data = self.fps_data_processor.process([video_path]) answer = self.model.infer_and_save( system_prompt=self.system_prompt, user_prompt=self.func_user_prompt(self.user_prompt, row), assistant_prompt=self.assistant_prompt, base64_img=image_data, ) if -1 != answer: self.write_result_file(question_id, answer) else: self.error_video_name.append(video_path) except Exception as e: print(e) print(video_path) continue return self.merge_qa_and_answer() def write_result_file(self, question_id, answer, extension=".txt"): file_path = self._make_file_path(question_id, extension) with open(file_path, "w") as file: file.write(answer) def _make_file_path(self, question_id, extension=".txt"): return os.path.join(self.path_result, question_id + extension) def _load_qa_file(self): self.df_qa = pd.read_csv(self.path_qa, index_col=0) def _make_directory(self, extra_dir): self.path_result = self.path_result + extra_dir os.makedirs(self.path_result, exist_ok=True) def merge_qa_and_answer(self): self.df_qa["pred"] = None if "answer_string" in self.df_qa.columns: # in case of NextQA self.df_qa = self.df_qa.drop("answer", axis=1).rename( {"answer_string": "answer"}, axis=1 ) for idx, row in self.df_qa.iterrows(): question_id = str(row["question_id"]) file_path = self._make_file_path( question_id, ) if os.path.exists(file_path): with open(file_path, "r") as file: file_contents = file.read() self.df_qa.loc[idx, "pred"] = file_contents path_merged = os.path.join(self.path_result, "result.csv") self.df_qa.to_csv(path_merged) return self.df_qa, path_merged ================================================ FILE: pipeline_processor/llava_pipeline.py ================================================ """ Copyright (c) 2024, Deep Representation Learning Research Group, Seoul National University. All rights reserved. SPDX-License-Identifier: BSD-3-Clause For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause """ import uuid import math import pandas as pd from tqdm import tqdm import os import sys sys.path.append(os.path.dirname(os.path.abspath(os.path.dirname(__file__)))) from model_processor.llava2_model_processor import * from vision_processor.fps_gridview_processor import * from .record import * class LlavaPipeline: def __init__( self, model_name, path_qa, path_video_file_format, dir="./llava_pipeline_result/", ): self.model_name = "liuhaotian/" + model_name self.path_qa = path_qa self.path_dir = dir self.path_result = dir self.path_video_file_format = path_video_file_format self.error_video_name = [] self.make_video_file_list() self.load_model() def make_video_file_list(self): self._load_qa_file() self.df_qa["path_video"] = self.df_qa.apply( lambda x: (self.path_video_file_format % (x["video_name"])), axis=1 ) def load_model(self): self.model = Llava2Processor(self.model_name) self.model.load_model() def set_component( self, user_prompt, frame_fixed_number=6, func_user_prompt=lambda prompt, row: prompt % (row["question"]), calculate_max_row=lambda x: round(math.sqrt(x)), ): if not hasattr(self, "model"): raise AttributeError("Model is not loaded. Please call load_model()") self.frame_fixed_number = frame_fixed_number self.user_prompt = user_prompt self.func_user_prompt = func_user_prompt self.calculate_max_row = calculate_max_row self.fps_data_processor = FpsDataProcessor( save_option=SaveOption.IMAGE, calcualte_max_row=self.calculate_max_row, frame_fixed_number=self.frame_fixed_number, ) extra_dir = "ffn=%s/" % (str(self.frame_fixed_number)) self._make_directory(extra_dir) def do_pipeline(self): print("start pipeline") for idx, row in tqdm(self.df_qa.iterrows()): question_id = str(row["question_id"]) video_path = row["path_video"] ts = row["ts"] if "ts" in row else None video_extensions = ["avi", "mp4", "mkv", "webm", "gif"] if not os.path.exists(video_path): base_video_path, _ = os.path.splitext(video_path) for ext in video_extensions: temp_path = f"{base_video_path}.{ext}" if os.path.exists(temp_path): video_path = temp_path break if not os.path.exists(self._make_file_path(question_id)): try: image_data = self.fps_data_processor.process([video_path], ts) answer = self.model.infer_and_save( user_prompt=self.func_user_prompt(self.user_prompt, row), raw_image=image_data, ) if -1 != answer: self.write_result_file(question_id, answer) else: self.error_video_name.append(video_path) except Exception as e: print(e) print(video_path) continue return self.merge_qa_and_answer() def write_result_file(self, question_id, answer, extension=".txt"): file_path = self._make_file_path(question_id, extension) with open(file_path, "w") as file: file.write(answer) def _make_file_path(self, question_id, extension=".txt"): return os.path.join(self.path_result, question_id + extension) def _load_qa_file(self): try: self.df_qa = pd.read_csv(self.path_qa, index_col=0) except Exception as e: print(e) raise Exception("not valid qa files") def _make_directory(self, extra_dir): self.path_result = os.path.join(self.path_dir, extra_dir) os.makedirs(self.path_result, exist_ok=True) def merge_qa_and_answer(self): print("start merge_qa_and_answer") self.df_qa["pred"] = None path_merged = os.path.join(self.path_result, "result.csv") if not os.path.exists(path_merged): for idx, row in self.df_qa.iterrows(): question_id = str(row["question_id"]) file_path = self._make_file_path( question_id, ) if os.path.exists(file_path): try: with open(file_path, "r") as file: file_contents = file.read() self.df_qa.loc[idx, "pred"] = file_contents except Exception as e: print(file_path) raise (e) self.df_qa.to_csv(path_merged) else: self.df_qa = pd.read_csv(path_merged, index_col=0) return self.df_qa, path_merged ================================================ FILE: pipeline_processor/record.py ================================================ """ Copyright (c) 2024, Deep Representation Learning Research Group, Seoul National University. All rights reserved. SPDX-License-Identifier: BSD-3-Clause For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause """ from enum import Enum class EvaluationType(Enum): DEFAULT = 0 CORRECTNESS = 1 DETAILED_ORIENTATION = 2 CONTEXT = 3 TEMPORAL = 4 ================================================ FILE: requirements.txt ================================================ tqdm moviepy opencv-python openai==1.14.0 torch==2.2.0 bitsandbytes==0.42.0 flash_attn==2.5.3 transformers==4.36.2 transformers-stream-generator==0.0.4 torchvision==0.17.0 pytorchvideo @ git+https://github.com/facebookresearch/pytorchvideo.git@28fe037d212663c6a24f373b94cc5d478c8c1a1d ================================================ FILE: vision_processor/__init__.py ================================================ ================================================ FILE: vision_processor/base_frame_extractor.py ================================================ import os import cv2 from abc import ABC, abstractmethod import numpy as np from enum import Enum import os import sys sys.path.append(os.path.dirname(os.path.abspath(os.path.dirname(__file__)))) from .decorator_processor import * from .video_validation import VideoValidator class SaveOption(Enum): BYTES = "bytes" FILE = "file" BASE64 = "base64" NUMPY = "numpy" IMAGE = "image" class BaseFrameExtractor(ABC): def __init__(self, video_path_with_list): self.video_path = os.path.join(*video_path_with_list) self._check_video_valid() @abstractmethod def extract_frames(self, **kwargs): pass def _extract_frame_on_option(self, **kwargs): data = self.extract_frames(**kwargs) return data def save_data_based_on_option(self, option, filename=None, quality=95, **kwargs): data = self._extract_frame_on_option(**kwargs) if option == SaveOption.BYTES: return self._save_data(data) elif option == SaveOption.FILE: return self._save_data_to_file(data, filename, quality) elif option == SaveOption.BASE64: return self._save_data_to_base64(data) elif option == SaveOption.NUMPY: return np.array(data) else: raise ValueError("Invalid option: {}".format(option)) def _check_video_valid(self): VideoValidator(self.video_path) @save_to_bytes def _save_data(self, data): return data @save_to_file def _save_data_to_file(self, data, filename, quality): data = cv2.cvtColor(data, cv2.COLOR_BGR2RGB) cv2.imwrite(filename, data, [int(cv2.IMWRITE_JPEG_QUALITY), quality]) pass @save_to_base64 def _save_data_to_base64(self, data): return data ================================================ FILE: vision_processor/base_post_processor.py ================================================ import os import cv2 from abc import ABC, abstractmethod import numpy as np from enum import Enum from PIL import Image import os import sys sys.path.append(os.path.dirname(os.path.abspath(os.path.dirname(__file__)))) from .decorator_processor import * from .base_frame_extractor import * class BasePostProcessor(ABC): def __init__(self): pass @abstractmethod def post_process(self, **kwargs): pass def _post_processo_on_option(self, *args, **kwargs): data = self.post_process(*args, **kwargs) return data def post_process_based_on_options(self, option, *args, **kwargs): self.option = option data = self._post_processo_on_option(*args, **kwargs) if option == SaveOption.BASE64: return self._save_data_to_base64(data, quality=self.quality) elif option == SaveOption.IMAGE: return Image.fromarray(data) else: raise ValueError("Invalid option: {}".format(option)) @save_to_base64 def _save_data_to_base64(self, data, quality=95): return data @save_to_file def _save_data_to_file(self, data, filename=None, quality=95): cv2.imwrite(filename, data, [int(cv2.IMWRITE_JPEG_QUALITY), quality]) pass ================================================ FILE: vision_processor/decorator_processor.py ================================================ import pickle import base64 import os from io import BytesIO from PIL import Image def save_to_bytes(func): def wrapper(self, data): bytes_data = pickle.dumps(data) return func(self, bytes_data) return wrapper def save_to_one_file(func): def wrapper(self, data, filename): with open(filename, "wb") as file: func(self, data, file) return wrapper def save_to_file(func): def wrapper(self, data, filename, quality): os.makedirs(filename, exist_ok=True) for i, image_data in enumerate(data): file_path = os.path.join(filename, f"{i+1}.jpg") func(self, image_data, file_path, quality) return wrapper def save_to_base64(func): def wrapper(self, data, quality=95): rlt = Image.fromarray(data) with BytesIO() as byte_output: rlt.save(byte_output, format="JPEG", quality=quality) byte_output.seek(0) byte_data = byte_output.read() base64_data = base64.b64encode(byte_data).decode("utf-8") return func(self, base64_data) return wrapper ================================================ FILE: vision_processor/fps_extractor.py ================================================ import sys import os import math sys.path.append(os.path.dirname(os.path.abspath(os.path.dirname(__file__)))) from .base_frame_extractor import * from .video_validation import * from pipeline_processor.record import * from .gridview_generator import * class FpsExtractor(BaseFrameExtractor): def __init__(self, video_path): super().__init__(video_path) def __del__(self): self._release_video() def extract_frames(self, **kwargs): self._extract_arguments(**kwargs) self._open_video(self.ts) self.image_data, self.frame_count = self._process_video() return self.image_data def _open_video(self, ts=None): self.video_loader = VideoLoader(self.video_path) ( self.video_capture, self.fps, self.total_frames, self.video_length, ) = self.video_loader.open_video(ts=ts) def _release_video(self): self.video_loader.release_video() def _extract_arguments(self, **kwargs): try: self.frame_fixed_number = kwargs.get("frame_fixed_number", 6) self.ts = kwargs.get("ts", None) except Exception as e: raise Exception(e) def _process_video(self): frame_count = 0 output_frame_index = 0 list_frame_data = [] self._adjust_interval_fixed() frames = self.video_capture.iter_frames() for frame in frames: if frame_count % self.frames_per_interval == 0: start = output_frame_index * self.frames_per_interval frame_index_selected = start if frame_index_selected == frame_count: list_frame_data.append(frame) output_frame_index += 1 if len(list_frame_data) == self.frame_fixed_number: break if frame_count == self.total_frames: break frame_count += 1 return list_frame_data, output_frame_index def _adjust_interval_fixed(self): self.frames_per_interval = math.floor( self.total_frames / self.frame_fixed_number ) def main(): path = ["example", "ysTmUTQ5wZE_17_45.mp4"] tmp = FpsExtractor(path) print(tmp.video_path) tmp.save_data_based_on_option( SaveOption.FILE, filename="/example/extraction_sample/ysTmUTQ5wZE_17_45/", frame_fixed_number=6, ) if __name__ == "__main__": main() ================================================ FILE: vision_processor/fps_gridview_processor.py ================================================ import sys import os import math import numpy as np sys.path.append(os.path.dirname(os.path.abspath(os.path.dirname(__file__)))) from pipeline_processor.record import * from .fps_extractor import * from .gridview_generator import * from .video_validation import * class FpsDataProcessor: def __init__( self, calcualte_max_row=lambda x: round(math.sqrt(x)), save_option=SaveOption.IMAGE, frame_fixed_number=6, ): self.calculate_max_row = calcualte_max_row self.frame_fixed_number = frame_fixed_number self.save_option = save_option def process(self, video_path, ts=None): fps_extractor = FpsExtractor(video_path) grid_view_creator = GridViewCreator( self.calculate_max_row, ) try: rlt_fps_extractor = fps_extractor.save_data_based_on_option( SaveOption.NUMPY, frame_fixed_number=self.frame_fixed_number, ts=ts, ) rlt_grid_view_creator = grid_view_creator.post_process_based_on_options( self.save_option, rlt_fps_extractor ) except Exception as e: print("Exception : %s on %s" % (str(e), str(video_path))) return -1 return rlt_grid_view_creator def main(): video_name = "rlQ2kW-FvMk_66_79.mp4" fps_data_processor = FpsDataProcessor( save_option=SaveOption.IMAGE, frame_fixed_number=6, ) print(vars(fps_data_processor)) rlt = fps_data_processor.process(["example", video_name]) print(rlt) rlt.save("./example/imagegrid_sample/%s.jpg" % (video_name.split(".")[0])) if __name__ == "__main__": main() ================================================ FILE: vision_processor/gridview_generator.py ================================================ import cv2 import glob import numpy as np import math import os import sys import random sys.path.append(os.path.dirname(os.path.abspath(os.path.dirname(__file__)))) from pipeline_processor.record import * from .base_post_processor import * from .fps_extractor import * class GridViewCreator(BasePostProcessor): def __init__(self, func_max_per_row, quality=95): self.func_max_per_row = func_max_per_row self.quality = quality def post_process(self, *args, **kwargs): return self.create_grid_view_as_array_from_image_array(*args) def _extract_arguments(self, **kwargs): try: self.images = kwargs.get("images", []) except Exception as e: raise Exception(e) def create_grid_view_as_array_from_image_array(self, images): images = images self.max_images_per_row = self.func_max_per_row(len(images)) min_width = min(img.shape[1] for img in images) min_height = min(img.shape[0] for img in images) resized_images = [cv2.resize(img, (min_width, min_height)) for img in images] while len(resized_images) % self.max_images_per_row != 0: resized_images.append( np.ones((min_height, min_width, 3), dtype=np.uint8) * 255 ) image_rows = [ resized_images[i : i + self.max_images_per_row] for i in range(0, len(resized_images), self.max_images_per_row) ] concatenated_rows = [np.hstack(row) for row in image_rows] grid_image = np.vstack(concatenated_rows) image_array_rgb = cv2.cvtColor(grid_image, cv2.COLOR_BGR2RGB) if self.option == SaveOption.BASE64: return image_array_rgb else: return grid_image def _get_frame_number(self, file_path): numbers = file_path.split("/")[-1].split(".")[0] return int(numbers) if numbers else -1 ================================================ FILE: vision_processor/video_validation.py ================================================ import os from moviepy.editor import VideoFileClip class VideoLoader: def __init__(self, video_path): self.video_path = video_path self.video_capture = None def file_exists(self): return os.path.isfile(self.video_path) def check_open_video(self): try: VideoFileClip(self.video_path) return True except Exception as e: print(f"Error opening video file: {self.video_path}. Reason: {str(e)}") return False def open_video(self, ts=None): try: self.video_capture = VideoFileClip(self.video_path) fps = self.video_capture.fps total_frames = int(self.video_capture.reader.nframes) video_length = total_frames / fps if ts is not None: start_time, end_time = ts.split("-") start_frame = int(float(start_time) * fps) end_frame = int(float(end_time) * fps) self.video_capture = self.video_capture.subclip(start_time, end_time) return ( self.video_capture, fps, end_frame - start_frame + 1, (end_frame - start_frame + 1) / fps, ) return self.video_capture, fps, total_frames, video_length except Exception as e: print(f"Error opening video file: {self.video_path}. Reason: {str(e)}") return False def release_video(self): del self.video_capture class VideoValidator: def __init__(self, video_path): self.video_path = video_path self.video_loader = VideoLoader(video_path) self.check_and_open_video() def check_and_open_video(self): if not self.video_loader.file_exists(): raise FileNotFoundError(f"File not found: {self.video_path}") if not self.video_loader.check_open_video(): raise Exception(f"Unable to open video file: {self.video_path}")